menu: added new Keywords tag to .desktop files
[barry.git] / opensync-plugin-0.4x / src / environment.h
blobf6ac5df81101dff97918805351bae7881fa2b0aa
1 //
2 // \file environment.h
3 // Container / environment class for the sync module.
4 //
6 /*
7 Copyright (C) 2006-2013, 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 private:
59 std::string m_password;
61 public:
62 OSyncMember *member;
63 OSyncPluginInfo *info;
65 // user config data
66 std::string m_ConfigData;
67 uint32_t m_pin;
68 bool m_DebugMode;
70 // device communication
71 std::auto_ptr<Barry::DesktopConnector> m_con;
73 // sync data
74 DatabaseSyncState m_CalendarSync, m_ContactsSync, m_JournalSync, m_TodoSync;
76 protected:
77 void DoConnect();
79 public:
80 BarryEnvironment(OSyncPluginInfo *info);
81 ~BarryEnvironment();
83 Barry::Mode::Desktop* GetDesktop() { return &m_con->GetDesktop(); }
84 void SetPassword(const std::string &password);
86 void Connect(const Barry::ProbeResult &result);
87 void Reconnect();
88 void Disconnect();
89 bool isConnected();
90 void ReconnectForDirtyFlags();
91 void RequireDirtyReconnect();
93 DatabaseSyncState* GetSyncObject(OSyncChange *change);
95 void ClearDirtyFlags(Barry::RecordStateTable &table, const std::string &dbname);
96 void ClearCalendarDirtyFlags();
97 void ClearContactsDirtyFlags();
98 void ClearJournalDirtyFlags();
99 void ClearTodoDirtyFlags();
102 #endif