lib: set ProbeResult's constructor to private
[barry.git] / opensync-plugin-0.4x / src / environment.h
blob0c4b540b7d48b3e4e6ac410a7f60f4bd05fc533f
1 //
2 // \file environment.h
3 // Container / environment class for the sync module.
4 //
6 /*
7 Copyright (C) 2006-2010, Net Direct Inc. (http://www.netdirect.ca/)
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU General Public License in the COPYING file at the
19 root directory of this project for more details.
22 #ifndef __BARRY_SYNC_ENVIRONMENT_H__
23 #define __BARRY_SYNC_ENVIRONMENT_H__
25 #include <opensync/opensync.h>
26 #include <barry/barry.h>
27 #include <string>
28 #include <memory>
29 #include <glib.h>
32 struct DatabaseSyncState
34 public:
35 OSyncObjTypeSink *sink;
37 public:
38 // device data
39 unsigned int m_dbId;
40 std::string m_dbName;
41 Barry::RecordStateTable m_Table;
43 bool m_Sync;
45 private:
46 std::string m_Desc;
48 public:
49 DatabaseSyncState(OSyncPluginInfo *info, const char *description);
50 ~DatabaseSyncState();
52 std::string Map2Uid(uint32_t recordId) const;
56 struct BarryEnvironment
58 public:
59 OSyncMember *member;
60 OSyncPluginInfo *info;
62 // user config data
63 std::string m_ConfigData;
64 uint32_t m_pin;
65 bool m_DebugMode;
66 std::string m_password;
68 // device communication
69 Barry::IConverter m_IConverter;
70 std::auto_ptr<Barry::ProbeResult> m_ProbeResult;
71 Barry::Controller *m_pCon;
72 Barry::Mode::Desktop *m_pDesktop;
74 // sync data
75 DatabaseSyncState m_CalendarSync, m_ContactsSync, m_JournalSync, m_TodoSync;
77 // optimization state
78 bool m_NeedsReconnect;
80 protected:
81 void DoConnect();
83 public:
84 BarryEnvironment(OSyncPluginInfo *info);
85 ~BarryEnvironment();
87 void Connect(const Barry::ProbeResult &result);
88 void Reconnect();
89 void Disconnect();
90 bool isConnected();
91 void ReconnectForDirtyFlags();
92 void RequireDirtyReconnect();
94 DatabaseSyncState* GetSyncObject(OSyncChange *change);
96 void ClearDirtyFlags(Barry::RecordStateTable &table, const std::string &dbname);
97 void ClearCalendarDirtyFlags();
98 void ClearContactsDirtyFlags();
99 void ClearJournalDirtyFlags();
100 void ClearTodoDirtyFlags();
103 #endif