24#ifndef SYNCDBUSINTERFACE_H
25#define SYNCDBUSINTERFACE_H
44 Q_CLASSINFO(
"D-Bus Interface",
"com.meego.msyncd")
72 void syncStatus(QString aProfileName,
int aStatus,
73 QString aMessage,
int aMoreDetails);
91 int aTransferType, QString aMimeType,
int aCommittedItems);
162 void statusChanged(
unsigned int aAccountId,
int aNewStatus,
int aFailedReason, qlonglong aPrevSyncTime,
163 qlonglong aNextSyncTime);
208 virtual Q_NOREPLY
void abortSync(QString aProfileId) = 0;
339 virtual Q_NOREPLY
void start(
unsigned int aAccountId) = 0;
345 virtual Q_NOREPLY
void stop(
unsigned int aAccountId) = 0;
366 virtual int status(
unsigned int aAccountId,
int &aFailedReason, qlonglong &aPrevSyncTime, qlonglong &aNextSyncTime) = 0;
376 virtual Q_NOREPLY
void isSyncedExternally(
unsigned int aAccountId,
const QString aClientProfileName) = 0;
Defines a D-Bus interface for the sync daemon.
Definition msyncd/SyncDBusInterface.h:42
void backupDone()
Notifies about Backup done.
Definition moc_SyncDBusInterface.cpp:430
virtual bool startSync(QString aProfileId)=0
Requests to starts synchronizing using a profile with the given name.
virtual QList< unsigned int > syncingAccounts()=0
Returns the list of account IDs for which sync is ongoing.
void signalProfileChanged(QString aProfileName, int aChangeType, QString aProfileAsXml)
Notifies about a change in profile.
Definition moc_SyncDBusInterface.cpp:417
virtual QString createSyncProfileForAccount(uint aAccountId)=0
Create a sync profile for the account if it does not exists.
virtual QStringList allVisibleSyncProfiles()=0
Gets all visible sync profiles.
bool isConnectivityAvailable(int connectivityType)
Returns the connectivity state of a specific medium like bluetooth, USB or network.
Definition moc_SyncDBusInterface.cpp:462
virtual Q_NOREPLY void abortSync(QString aProfileId)=0
Stops synchronizing the profile with the given name.
void statusChanged(unsigned int aAccountId, int aNewStatus, int aFailedReason, qlonglong aPrevSyncTime, qlonglong aNextSyncTime)
Notifies sync status change for a set of account Ids.
Definition moc_SyncDBusInterface.cpp:455
virtual bool saveSyncResults(QString aProfileId, QString aSyncResults)=0
Save SyncResults to log.xml file.
virtual bool getBackUpRestoreState()=0
This function returns true if backup/restore in progress else false.
virtual QStringList syncProfilesByKey(const QString &aKey, const QString &aValue)=0
Gets a sync profiles matching the key-value.
virtual Q_NOREPLY void releaseStorages(QStringList aStorageNames)=0
Releases the given storages so that sync daemon can again use them freely.
void backupInProgress()
Notifies about Backup start.
Definition moc_SyncDBusInterface.cpp:424
virtual bool requestStorages(QStringList aStorageNames)=0
Requests sync daemon to reserve storages for the caller.
virtual QString getLastSyncResult(const QString &aProfileId)=0
To get lastSyncResult.
virtual QStringList syncProfilesByType(const QString &aType)=0
Gets a profiles matching the profile type.
virtual bool updateProfile(QString aProfileAsXml)=0
This function should be called when sync profile information has been changed by someone else than th...
void syncStatus(QString aProfileName, int aStatus, QString aMessage, int aMoreDetails)
Notifies about a change in synchronization status.
Definition moc_SyncDBusInterface.cpp:403
virtual QStringList runningSyncs()=0
Gets the list of profile names of currently running syncs.
void restoreInProgress()
Notifies about Restore start.
Definition moc_SyncDBusInterface.cpp:436
virtual QString syncProfile(const QString &aProfileId)=0
Gets a sync profile.
virtual bool removeProfile(QString aProfileId)=0
This function should be called when sync profile has to be deleted.
virtual Q_NOREPLY void start(unsigned int aAccountId)=0
Starts sync for all profiles matching the given account ID.
virtual Q_NOREPLY void stop(unsigned int aAccountId)=0
Stops sync for all profiles matching the given account ID.
void syncedExternallyStatus(uint aAccountId, const QString &aClientProfileName, bool aState)
Notifies sync externally status for an account and client profile.
Definition moc_SyncDBusInterface.cpp:471
virtual bool setSyncSchedule(QString aProfileId, QString aScheduleAsXml)=0
sets the schedule for a profile
virtual Q_NOREPLY void isSyncedExternally(unsigned int aAccountId, const QString aClientProfileName)=0
Queries the sync externally status of a given account, 'syncedExternallyStatus' signal is emitted wit...
void transferProgress(QString aProfileName, int aTransferDatabase, int aTransferType, QString aMimeType, int aCommittedItems)
Notifies about progress in transferring items.
Definition moc_SyncDBusInterface.cpp:410
void restoreDone()
Notifies about Restore Done.
Definition moc_SyncDBusInterface.cpp:442
void resultsAvailable(QString aProfileName, QString aResultsAsXml)
Notifies about the availability of Results for a recent sync.
Definition moc_SyncDBusInterface.cpp:448
virtual int status(unsigned int aAccountId, int &aFailedReason, qlonglong &aPrevSyncTime, qlonglong &aNextSyncTime)=0
Returns the status of the sync for the given account Id.
Definition SyncBackupAdaptor.h:40