ButeoSynchronizationFramework
SyncProfile.h
1 /*
2  * This file is part of buteo-syncfw package
3  *
4  * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5  * Copyright (C) 2014-2019 Jolla Ltd.
6  * Copyright (C) 2020 Open Mobile Platform LLC.
7  *
8  * Contact: Sateesh Kavuri <sateesh.kavuri@nokia.com>
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Lesser General Public License
12  * version 2.1 as published by the Free Software Foundation.
13  *
14  * This library is distributed in the hope that it will be useful, but
15  * WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22  * 02110-1301 USA
23  *
24  */
25 
26 #ifndef SYNCPROFILE_H
27 #define SYNCPROFILE_H
28 
29 #include "Profile.h"
30 #include "SyncLog.h"
31 #include "SyncSchedule.h"
32 #include "SyncCommonDefs.h"
33 
34 namespace Buteo {
35 
36 class SyncProfilePrivate;
37 
48 class SyncProfile : public Profile
49 {
50 public:
52  enum SyncType
53  {
56 
60  };
61 
64  {
67 
70 
73  };
74 
77  {
80 
83 
86 
89  };
90 
93  {
96 
99 
102  };
103 
106  {
109 
112 
115 
118  };
119 
124  explicit SyncProfile(const QString &aName);
125 
130  explicit SyncProfile(const QDomElement &aRoot);
131 
136  SyncProfile(const SyncProfile &aSource);
137 
139  ~SyncProfile();
140 
145  virtual SyncProfile *clone() const;
146 
147 
150  virtual void setName(const QString &aName);
151 
154  virtual void setName(const QStringList &aKeys);
155 
156 
158  virtual QDomElement toXml(QDomDocument &aDoc, bool aLocalOnly = true) const;
159 
165  virtual bool syncExternallyEnabled() const;
166 
171  virtual bool rushEnabled() const;
172 
180  virtual bool syncExternallyDuringRush() const;
181 
186  virtual bool inExternalSyncRushPeriod(QDateTime aDateTime = QDateTime::currentDateTime()) const;
187 
192  QDateTime lastSyncTime() const;
193 
199  QDateTime lastSuccessfulSyncTime() const;
200 
206  virtual QDateTime nextSyncTime(QDateTime aDateTime = QDateTime::currentDateTime()) const;
207 
214  QDateTime nextRushSwitchTime(const QDateTime& aFromTime) const;
215 
220  const SyncResults *lastResults() const;
221 
226  SyncLog *log() const;
227 
234  void setLog(SyncLog *aLog);
235 
241  void addResults(const SyncResults &aResults);
242 
247  SyncType syncType() const;
248 
253  void setSyncType(SyncType aType);
254 
259  QStringList storageBackendNames() const;
260 
265  SyncSchedule syncSchedule() const;
266 
271  void setSyncSchedule(const SyncSchedule &aSchedule);
272 
278 
286 
291  //const Profile *serviceProfile() const;
292 
297  //Profile *serviceProfile();
298 
303  const Profile *clientProfile() const;
304 
310 
315  const Profile *serverProfile() const;
316 
322 
328 
334 
340 
346 
351  void setSyncDirection(SyncDirection aDirection);
352 
358 
364 
369  QString serviceName() const;
370 
378  quint32 syncOnChangeAfter() const;
379 
384  bool isSOCProfile() const;
385 
386  bool hasRetries() const;
387  QList<quint32> retryIntervals() const;
388 
397 
398 private:
399 
400  SyncProfile& operator=(const SyncProfile &aRhs);
401 
402  SyncProfilePrivate *d_ptr;
403 };
404 
405 }
406 
407 #endif // SYNCPROFILE_H
Buteo::SyncProfile::storageProfiles
QList< const Profile * > storageProfiles() const
Get the storage sub-profiles.
Definition: SyncProfile.cpp:488
Buteo::SyncLog
History of completed synchronization sessions and their results.
Definition: SyncLog.h:44
Buteo::SyncProfile::DESTINATION_TYPE_ONLINE
@ DESTINATION_TYPE_ONLINE
Destination is an online service.
Definition: SyncProfile.h:69
Buteo::SyncProfile::DESTINATION_TYPE_DEVICE
@ DESTINATION_TYPE_DEVICE
Destination is a device (N95, Harmattan, OviSuite etc.)
Definition: SyncProfile.h:66
Buteo::SyncProfile::storageProfilesNonConst
QList< Profile * > storageProfilesNonConst()
Get the storage sub-profiles.
Definition: SyncProfile.cpp:503
Buteo::SyncProfile::setName
virtual void setName(const QString &aName)
Sets the name for the profile and associated log.
Definition: SyncProfile.cpp:199
Buteo::SyncProfile::log
SyncLog * log() const
Gets the synchronization log associated with this profile.
Definition: SyncProfile.cpp:306
Buteo::SyncProfile::SYNC_SCHEDULED
@ SYNC_SCHEDULED
Definition: SyncProfile.h:59
Buteo::SyncProfile::SYNC_DIRECTION_TO_REMOTE
@ SYNC_DIRECTION_TO_REMOTE
Data is copied to remote device only.
Definition: SyncProfile.h:85
Buteo::SyncProfile::~SyncProfile
~SyncProfile()
Destructor.
Definition: SyncProfile.cpp:161
Buteo::SyncProfile::SYNC_NEVER_HAPPENED
@ SYNC_NEVER_HAPPENED
NOT_SYNCED - no sync has been done for the profile yet.
Definition: SyncProfile.h:108
Buteo::SyncProfile::setConflictResolutionPolicy
void setConflictResolutionPolicy(ConflictResolutionPolicy aPolicy)
Set conflict resolution policy.
Definition: SyncProfile.cpp:677
Buteo::SyncProfile::CR_POLICY_PREFER_REMOTE_CHANGES
@ CR_POLICY_PREFER_REMOTE_CHANGES
Prefer remote data in conflict situation.
Definition: SyncProfile.h:98
Buteo::SyncProfile::CurrentSyncStatus
CurrentSyncStatus
Current status enum.
Definition: SyncProfile.h:105
Buteo::SyncSchedule
Class for handling sync schedule settings.
Definition: SyncSchedule.h:53
Buteo::SyncProfile::setSyncDirection
void setSyncDirection(SyncDirection aDirection)
Sets sync direction.
Definition: SyncProfile.cpp:614
Buteo::SyncProfile::setInternetConnectionTypes
void setInternetConnectionTypes(const QList< Sync::InternetConnectionType > &aTypes)
Sets the internet connection types on which this profile can be synced.
Definition: SyncProfile.cpp:364
Buteo::SyncProfile::nextRushSwitchTime
QDateTime nextRushSwitchTime(const QDateTime &aFromTime) const
Gets next time to switch rush/off-rush schedule intervals.
Definition: SyncProfile.cpp:284
Buteo::SyncProfile::toXml
virtual QDomElement toXml(QDomDocument &aDoc, bool aLocalOnly=true) const
Definition: SyncProfile.cpp:172
Buteo::SyncProfile::storageBackendNames
QStringList storageBackendNames() const
Gets the names of storage backends used by this profile.
Definition: SyncProfile.cpp:373
Buteo::SyncProfile::DESTINATION_TYPE_UNDEFINED
@ DESTINATION_TYPE_UNDEFINED
Destination type is not defined.
Definition: SyncProfile.h:72
QList
Definition: SyncBackupAdaptor.h:40
Buteo::SyncProfile::internetConnectionTypes
QList< Sync::InternetConnectionType > internetConnectionTypes() const
Gets allowed connection types.
Definition: SyncProfile.cpp:349
Buteo::SyncProfile::SYNC_CANCLLED
@ SYNC_CANCLLED
SYNC_CANCELLED - the last sync has been cancelled.
Definition: SyncProfile.h:117
Buteo::SyncProfile::SyncDirection
SyncDirection
Sync direction for device-to-device syncs.
Definition: SyncProfile.h:76
Buteo::SyncProfile::currentSyncStatus
CurrentSyncStatus currentSyncStatus() const
Gives the current status of the sync as an enum value If the current status of ongoing syncs is requi...
Definition: SyncProfile.cpp:719
Buteo::SyncProfile::SYNC_SUCCESS
@ SYNC_SUCCESS
SYNC_SUCCESS - the last sync has been successful.
Definition: SyncProfile.h:111
Buteo::SyncProfile::destinationType
DestinationType destinationType() const
Gets sync destination type (device or online).
Definition: SyncProfile.cpp:518
Buteo::SyncProfile
A top level synchronization profile.
Definition: SyncProfile.h:48
Buteo::SyncProfile::syncType
SyncType syncType() const
Gets the sync type of this profile.
Definition: SyncProfile.cpp:327
Buteo::SyncProfile::syncSchedule
SyncSchedule syncSchedule() const
Gets sync schedule settings.
Definition: SyncProfile.cpp:339
Buteo::SyncProfile::lastResults
const SyncResults * lastResults() const
Gets the results of the last sync from the sync log.
Definition: SyncProfile.cpp:294
Buteo::SyncProfile::syncDirection
SyncDirection syncDirection() const
Gets sync direction (two way, to destination, from destination).
Definition: SyncProfile.cpp:545
Buteo::SyncProfile::rushEnabled
virtual bool rushEnabled() const
Checks if rush/off-rush schedule is enabled.
Definition: SyncProfile.cpp:227
Buteo::SyncProfile::serverProfile
const Profile * serverProfile() const
Get the first server sub-profile.
Definition: SyncProfile.cpp:460
Buteo::SyncProfile::syncOnChangeAfter
quint32 syncOnChangeAfter() const
If a profiles is interested in SOC, this gets the the SOC after time from that profile....
Definition: SyncProfile.cpp:592
Buteo::SyncProfile::clone
virtual SyncProfile * clone() const
Creates a clone of the sync profile.
Definition: SyncProfile.cpp:167
Buteo::SyncProfile::isSOCProfile
bool isSOCProfile() const
checks if a profile has SOC enabled
Definition: SyncProfile.cpp:576
Buteo::SyncProfile::nextSyncTime
virtual QDateTime nextSyncTime(QDateTime aDateTime=QDateTime::currentDateTime()) const
Gets the next scheduled sync time.
Definition: SyncProfile.cpp:268
Buteo::Profile
This class represents a single profile, a collection of settings or data releated to some entity.
Definition: Profile.h:52
Buteo::SyncProfile::ConflictResolutionPolicy
ConflictResolutionPolicy
Conflict resolution policy for device-to-device syncs.
Definition: SyncProfile.h:92
Buteo::SyncProfile::DestinationType
DestinationType
Sync destination type.
Definition: SyncProfile.h:63
Buteo::SyncProfile::syncExternallyDuringRush
virtual bool syncExternallyDuringRush() const
Checks if external rush schedule is to be obeyed.
Definition: SyncProfile.cpp:232
Buteo::SyncProfile::SYNC_DIRECTION_FROM_REMOTE
@ SYNC_DIRECTION_FROM_REMOTE
Data is copied from remote device only.
Definition: SyncProfile.h:82
Buteo::SyncProfile::SyncProfile
SyncProfile(const QString &aName)
Constructs an empty SyncProfile with the given name.
Definition: SyncProfile.cpp:124
Buteo::SyncProfile::clientProfile
const Profile * clientProfile() const
Get the first service sub-profile.
Definition: SyncProfile.cpp:432
Buteo::SyncProfile::setLog
void setLog(SyncLog *aLog)
Sets the synchronization log for this profile.
Definition: SyncProfile.cpp:311
Buteo::SyncProfile::CR_POLICY_UNDEFINED
@ CR_POLICY_UNDEFINED
Conflict resolution policy is undefined.
Definition: SyncProfile.h:101
Buteo::SyncProfile::serviceName
QString serviceName() const
Get the service name of profile.
Buteo::SyncProfile::SYNC_DIRECTION_UNDEFINED
@ SYNC_DIRECTION_UNDEFINED
Sync direction is not defined.
Definition: SyncProfile.h:88
Buteo::SyncProfile::SYNC_MANUAL
@ SYNC_MANUAL
Synchronization is started manually.
Definition: SyncProfile.h:55
Buteo::SyncProfile::addResults
void addResults(const SyncResults &aResults)
Adds synchronization results to the log.
Definition: SyncProfile.cpp:317
Buteo::SyncProfile::syncExternallyEnabled
virtual bool syncExternallyEnabled() const
Checks if schedule is controlled by a external process (e.g always-up-to-date).
Definition: SyncProfile.cpp:222
Buteo::SyncProfile::CR_POLICY_PREFER_LOCAL_CHANGES
@ CR_POLICY_PREFER_LOCAL_CHANGES
Prefer local data in conflict situation.
Definition: SyncProfile.h:95
Buteo::SyncResults
Contains information about a completed synchronization session.
Definition: SyncResults.h:58
Buteo::SyncProfile::SYNC_DIRECTION_TWO_WAY
@ SYNC_DIRECTION_TWO_WAY
Two way sync.
Definition: SyncProfile.h:79
Buteo::SyncProfile::SYNC_FAILED
@ SYNC_FAILED
SYNC_FAILED - the last sync has failed.
Definition: SyncProfile.h:114
Buteo::SyncProfile::SyncType
SyncType
Synchronization types.
Definition: SyncProfile.h:52
Buteo::SyncProfile::inExternalSyncRushPeriod
virtual bool inExternalSyncRushPeriod(QDateTime aDateTime=QDateTime::currentDateTime()) const
Checks if a given time is inside rush hour and if the sync is controlled by a external process.
Definition: SyncProfile.cpp:238
Buteo::SyncProfile::setSyncType
void setSyncType(SyncType aType)
Sets the sync type of this profile (manual/scheduled).
Definition: SyncProfile.cpp:334
Buteo::SyncProfile::lastSuccessfulSyncTime
QDateTime lastSuccessfulSyncTime() const
Gets the time of the last successful sync session for this profile.
Definition: SyncProfile.cpp:256
Buteo::SyncProfile::conflictResolutionPolicy
ConflictResolutionPolicy conflictResolutionPolicy() const
Gets conflict resolution policy.
Definition: SyncProfile.cpp:650
Buteo::SyncProfile::lastSyncTime
QDateTime lastSyncTime() const
Gets the time of last completed sync session with this profile.
Definition: SyncProfile.cpp:243
Buteo::SyncProfile::setSyncSchedule
void setSyncSchedule(const SyncSchedule &aSchedule)
Sets sync schedule settings.
Definition: SyncProfile.cpp:344