blob: 3005d02b4cb7f2475d72090404b8024f1d87f73c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
// -*- mode: c++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2; coding: utf-8-unix -*-
// ***** BEGIN LICENSE BLOCK *****
//////////////////////////////////////////////////////////////////////////
// Copyright (c) 2011-2014 RALOVICH, Kristóf //
// //
// This program is free software; you can redistribute it and/or modify //
// it under the terms of the GNU General Public License as published by //
// the Free Software Foundation; either version 3 of the License, or //
// (at your option) any later version. //
// //
// This program is distributed in the hope that it will be useful, //
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
// GNU General Public License for more details. //
// //
//////////////////////////////////////////////////////////////////////////
// ***** END LICENSE BLOCK *****
#pragma once
#include "AntMessenger.hpp"
#include <queue>
#include "antdefs.hpp"
#include <list>
#include <memory>
#include <boost/thread.hpp>
#include "FIT.hpp"
namespace antpm{
class DeviceSettings;
struct AntFr405_EventLoop;
// State-machine for ANT+ communication with Forerunner 405.
class AntFr405: public AntCallback
{
public:
AntFr405(bool eventLoopInBgTh = true);
virtual ~AntFr405();
void setModeForcePairing() { doPairing=true; }
void setModeDownloadAll();
void setModeDownloadSingleFile(const uint16_t fileIdx);
void setModeDirectoryListing();
void setModeEraseSingleFile(const uint16_t fileIdx);
void setModeEraseAllActivities();
virtual void onAntReceived(const AntMessage m);
virtual void onAntSent(const AntMessage m);
void start();
void stop();
void stopAsync();
const int getSMState() const;
const char* getSMStateStr() const;
AntMessenger* getMessenger() { return m_antMessenger.get(); }
void postEvent(const AntMessage& m);
protected:
boost::scoped_ptr<Serial> m_serial;
boost::scoped_ptr<AntMessenger> m_antMessenger;
typedef enum { LINK,AUTHENTICATION,TRANSPORT,BUSY} StateANTFS;
StateANTFS clientState;
int state;
boost::mutex stateMtx;
volatile int m_eventThKill;
boost::thread m_eventTh;
lqueue4<AntMessage> m_evQue;
AntParsedLoggerCallback aplc;
boost::scoped_ptr<DeviceSettings> m_ds;
FIT fit;
ZeroFileContent zfc;
GPX gpx;
uint clientSN;
std::string clientDevName;
uint64_t pairedKey;
bool m_eventLoopInBgTh;
bool doPairing;
std::string folder;
int mode;
uint16_t singleFileIdx;
private:
friend struct AntFr405_EventLoop;
void* th_eventLoop();
bool handleEvents();
int changeState(const int newState, bool force = false);
StateANTFS changeFSState(const StateANTFS newState);
bool createDownloadFolder();
static bool guessDeviceType(const ushort devNum, const uchar devId, const uchar transType, GarminProducts *prod);
};
}
|