|
| SyncProfile (const QString &aName) |
| Constructs an empty SyncProfile with the given name.
|
|
| SyncProfile (const QDomElement &aRoot) |
| Constructs a SyncProfile from the given XML.
|
|
| SyncProfile (const SyncProfile &aSource) |
| Copy constructor.
|
|
| ~SyncProfile () |
| Destructor.
|
|
virtual SyncProfile * | clone () const |
| Creates a clone of the sync profile.
|
|
virtual void | setName (const QString &aName) |
| Sets the name for the profile and associated log.
|
|
virtual void | setName (const QStringList &aKeys) |
| Sets the name for the profile and associated log.
|
|
virtual QDomElement | toXml (QDomDocument &aDoc, bool aLocalOnly=true) const |
|
virtual bool | syncExternallyEnabled () const |
| Checks if schedule is controlled by a external process (e.g always-up-to-date).
|
|
virtual bool | rushEnabled () const |
| Checks if rush/off-rush schedule is enabled.
|
|
virtual bool | syncExternallyDuringRush () const |
| Checks if external rush schedule is to be obeyed.
|
|
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.
|
|
QDateTime | lastSyncTime () const |
| Gets the time of last completed sync session with this profile.
|
|
QDateTime | lastSuccessfulSyncTime () const |
| Gets the time of the last successful sync session for this profile.
|
|
virtual QDateTime | nextSyncTime (QDateTime aDateTime=QDateTime::currentDateTime()) const |
| Gets the next scheduled sync time.
|
|
QDateTime | nextRushSwitchTime (const QDateTime &aFromTime) const |
| Gets next time to switch rush/off-rush schedule intervals.
|
|
const SyncResults * | lastResults () const |
| Gets the results of the last sync from the sync log.
|
|
SyncLog * | log () const |
| Gets the synchronization log associated with this profile.
|
|
void | setLog (SyncLog *aLog) |
| Sets the synchronization log for this profile.
|
|
void | addResults (const SyncResults &aResults) |
| Adds synchronization results to the log.
|
|
SyncType | syncType () const |
| Gets the sync type of this profile.
|
|
void | setSyncType (SyncType aType) |
| Sets the sync type of this profile (manual/scheduled).
|
|
QStringList | storageBackendNames () const |
| Gets the names of storage backends used by this profile.
|
|
SyncSchedule | syncSchedule () const |
| Gets sync schedule settings.
|
|
void | setSyncSchedule (const SyncSchedule &aSchedule) |
| Sets sync schedule settings.
|
|
QList< Sync::InternetConnectionType > | internetConnectionTypes () const |
| Gets allowed connection types.
|
|
void | setInternetConnectionTypes (const QList< Sync::InternetConnectionType > &aTypes) |
| Sets the internet connection types on which this profile can be synced.
|
|
const Profile * | clientProfile () const |
| Get the first service sub-profile.
|
|
Profile * | clientProfile () |
| Get the first client sub-profile.
|
|
const Profile * | serverProfile () const |
| Get the first server sub-profile.
|
|
Profile * | serverProfile () |
| Get the first server sub-profile.
|
|
QList< const Profile * > | storageProfiles () const |
| Get the storage sub-profiles.
|
|
QList< Profile * > | storageProfilesNonConst () |
| Get the storage sub-profiles.
|
|
DestinationType | destinationType () const |
| Gets sync destination type (device or online).
|
|
SyncDirection | syncDirection () const |
| Gets sync direction (two way, to destination, from destination).
|
|
void | setSyncDirection (SyncDirection aDirection) |
| Sets sync direction.
|
|
ConflictResolutionPolicy | conflictResolutionPolicy () const |
| Gets conflict resolution policy.
|
|
void | setConflictResolutionPolicy (ConflictResolutionPolicy aPolicy) |
| Set conflict resolution policy.
|
|
QString | serviceName () const |
| Get the service name of profile.
|
|
quint32 | syncOnChangeAfter () const |
| If a profiles is interested in SOC, this gets the the SOC after time from that profile. The time should be in seconds and a value of 0 means sync immediately afer change.
|
|
bool | isSOCProfile () const |
| checks if a profile has SOC enabled
|
|
bool | hasRetries () const |
|
QList< quint32 > | retryIntervals () const |
|
CurrentSyncStatus | currentSyncStatus () const |
| Gives the current status of the sync as an enum value If the current status of ongoing syncs is required, check the d-bus API "runningSyncs" which returns the list of currently running sync sessions. The current sync sessions cannot be part of a profiel,.
|
|
| Profile () |
| Default Constructor.
|
|
| Profile (const QString &aName, const QString &aType) |
| Constructs a Profile object with given name and type.
|
|
| Profile (const QDomElement &aRoot) |
| Constructs a Profile object from XML.
|
|
| Profile (const Profile &aSource) |
| Copy constructor.
|
|
virtual Profile * | clone () const |
| Creates a clone of the profile.
|
|
virtual | ~Profile () |
| Destructor.
|
|
QString | name () const |
| Gets the name of the profile.
|
|
QString | displayname () const |
| Gets the display name of the profile.
|
|
virtual void | setName (const QString &aName) |
| Sets the name of the profile.
|
|
virtual void | setName (const QStringList &aKeys) |
| Sets the name of the profile.
|
|
QString | type () const |
| Gets the type of the profile.
|
|
virtual QDomElement | toXml (QDomDocument &aDoc, bool aLocalOnly=true) const |
| Creates a XML representation of the profile.
|
|
QString | toString () const |
| Outputs a XML representation of the profile to a string.
|
|
QString | key (const QString &aName, const QString &aDefault=QString()) const |
| Gets the value of the given key.
|
|
QMap< QString, QString > | allKeys () const |
| Gets all keys and their values.
|
|
QMap< QString, QString > | allNonStorageKeys () const |
| Gets all keys that are not related to storages.
|
|
bool | boolKey (const QString &aName, bool aDefault=false) const |
| Gets the value of the given boolean key.
|
|
QStringList | keyValues (const QString &aName) const |
| Gets the values of all keys with the given name.
|
|
QStringList | keyNames () const |
| Gets the names of all keys.
|
|
void | setKey (const QString &aName, const QString &aValue) |
| Sets the value of a key.
|
|
void | setKeyValues (const QString &aName, const QStringList &aValues) |
| Sets multiple values for a key.
|
|
void | setBoolKey (const QString &aName, bool aValue) |
| Sets the value of a boolean key.
|
|
void | removeKey (const QString &aName) |
| Removes a key from profile. All instances of the key are removed.
|
|
const ProfileField * | field (const QString &aName) const |
| Gets the field with the given name.
|
|
QList< const ProfileField * > | allFields () const |
| Gets all fields.
|
|
QList< const ProfileField * > | visibleFields () const |
| Gets all visible fields of the profile.
|
|
bool | isValid () const |
| Checks if the profile is valid.
|
|
QStringList | subProfileNames (const QString &aType="") const |
| Gets the names of all sub-profiles with the given type.
|
|
Profile * | subProfile (const QString &aName, const QString &aType="") |
| Gets a sub-profile with the given name and type.
|
|
const Profile * | subProfile (const QString &aName, const QString &aType="") const |
| const method for subProfile
|
|
const Profile * | subProfileByKeyValue (const QString &aKey, const QString &aValue, const QString &aType, bool aEnabledOnly) const |
| Gets a sub-profile by key value.
|
|
QList< Profile * > | allSubProfiles () |
| Gets all sub-profiles.
|
|
QList< const Profile * > | allSubProfiles () const |
| Gets all sub-profiles as const.
|
|
void | merge (const Profile &aSource) |
| Merges a profile to this profile.
|
|
bool | isLoaded () const |
| Checks if the profile is fully constructed by loading all sub-profiles from separate profile files.
|
|
void | setLoaded (bool aLoaded) |
| Sets if the profile is fully loaded.
|
|
virtual bool | isEnabled () const |
| Returns if the profile is enabled.
|
|
void | setEnabled (bool aEnabled) |
| Set is the profile is enabled.
|
|
bool | isHidden () const |
| Checks if the profile is hidden.
|
|
bool | isProtected () const |
| Checks if the profile is protected.
|
|
A top level synchronization profile.
SyncProfile is derived from Profile. It represents a top level synchronization profile, which contains all settings needed for a synchronization session. A SyncProfile typically has sub-profiles for the used service, client/server plug-in and storage plug-ins. SyncProfile extends the Profile inteface with functions for accessing information about synchronization schedule and history of finished synchronization sessions with this profile.