You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
179 lines
4.3 KiB
179 lines
4.3 KiB
#ifndef _KPILOT_HOTSYNC_H
|
|
#define _KPILOT_HOTSYNC_H
|
|
/* hotSync.h KPilot
|
|
**
|
|
** Copyright (C) 2001 by Dan Pilone
|
|
** Copyright (C) 2003-2004 Reinhold Kainhofer <reinhold@kainhofer.com>
|
|
** Copyright (C) 2006 Adriaan de Groot <groot@kde.org>
|
|
**
|
|
** This file defines SyncActions, which are used to perform some specific
|
|
** task during a HotSync. Conduits are not included here, nor are
|
|
** sync actions requiring user interaction. Those can be found in the
|
|
** conduits subdirectory or interactiveSync.h.
|
|
*/
|
|
|
|
/*
|
|
** This program is free software; you can redistribute it and/or modify
|
|
** it under the terms of the GNU General Public License as published by
|
|
** the Free Software Foundation; either version 2 of the License, or
|
|
** (at your option) any later version.
|
|
**
|
|
** This program is distributed in the hope that it will be useful,
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
** GNU General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with this program in a file called COPYING; if not, write to
|
|
** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
** MA 02110-1301, USA.
|
|
*/
|
|
|
|
/*
|
|
** Bug reports and questions can be sent to kde-pim@kde.org
|
|
*/
|
|
|
|
|
|
class TQTimer;
|
|
|
|
#include "syncAction.h"
|
|
|
|
class CheckUser : public SyncAction
|
|
{
|
|
public:
|
|
CheckUser(KPilotLink *p,TQWidget *w=0L);
|
|
virtual ~CheckUser();
|
|
|
|
protected:
|
|
virtual bool exec();
|
|
} ;
|
|
|
|
|
|
class BackupAction : public SyncAction
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
/** Constructor. Back up all the databases on
|
|
* the link to a directory on the local disk.
|
|
* If @p full is @c true, then a full backup,
|
|
* including applications, is done. Otherwise,
|
|
* only user data is backed-up.
|
|
*
|
|
* @see setDirectory()
|
|
*/
|
|
BackupAction(KPilotLink *, bool full);
|
|
|
|
enum Status { Init,
|
|
Error,
|
|
FastBackup,
|
|
FullBackup,
|
|
BackupIncomplete,
|
|
BackupEnded,
|
|
BackupComplete
|
|
} ;
|
|
virtual TQString statusString() const;
|
|
|
|
/** By default, a path based on the user name (either
|
|
* on the handheld or set in KPilot) is used to
|
|
* determine the backup directory name ( generally
|
|
* $TDEHOME/share/apps/kpilot/DBBackup/_user_name_ ).
|
|
* Use setDirectory() to change that and use a given
|
|
* @p path as target for the backup. Use an empty
|
|
* @p path to restore the default behavior of using
|
|
* the username.
|
|
*/
|
|
void setDirectory( const TQString &path );
|
|
|
|
// Reimplemented to support threaded backup.
|
|
virtual bool event( TQEvent *e );
|
|
|
|
protected:
|
|
virtual bool exec();
|
|
|
|
private:
|
|
/** Finish the backup and clean up resources. */
|
|
void endBackup();
|
|
|
|
/** Copy the database indicated by @p info to the local
|
|
* disk; returns @c false on failure.
|
|
*/
|
|
bool startBackupThread(DBInfo *info);
|
|
|
|
private slots:
|
|
/** Implementation detail: databases get backed-up
|
|
* one at a time because the backup function in
|
|
* pilot-link isn't threaded.
|
|
*/
|
|
void backupOneDB();
|
|
|
|
private:
|
|
class Private;
|
|
Private *fP;
|
|
class Thread;
|
|
Thread *fBackupThread;
|
|
} ;
|
|
|
|
class FileInstallAction : public SyncAction
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
FileInstallAction(KPilotLink *,
|
|
const TQString &fileDir);
|
|
virtual ~FileInstallAction();
|
|
|
|
virtual TQString statusString() const;
|
|
|
|
protected:
|
|
virtual bool exec();
|
|
|
|
protected slots:
|
|
void installNextFile();
|
|
|
|
private:
|
|
int fDBIndex;
|
|
TQTimer *fTimer;
|
|
TQString fDir;
|
|
TQStringList fList;
|
|
|
|
// TODO: not const because it calls logError(), which is
|
|
// non-const (but might be - can signals be const, anyway?)
|
|
bool resourceOK(const TQString &, const TQString &) /* const */ ;
|
|
} ;
|
|
|
|
class RestoreAction : public SyncAction
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
RestoreAction(KPilotLink *,TQWidget *w=0L);
|
|
|
|
typedef enum { InstallingFiles, GettingFileInfo,Done } Status;
|
|
virtual TQString statusString() const;
|
|
|
|
/** By default, a path based on the user name (either
|
|
* on the handheld or set in KPilot) is used to
|
|
* determine the restory directory name ( generally
|
|
* $TDEHOME/share/apps/kpilot/DBBackup/_user_name_ ).
|
|
* Use setDirectory() to change that and use a given
|
|
* @p path as target for the source. Use an empty
|
|
* @p path to restore the default behavior of using
|
|
* the username.
|
|
*/
|
|
void setDirectory( const TQString &path );
|
|
|
|
protected:
|
|
virtual bool exec();
|
|
|
|
protected slots:
|
|
void installNextFile();
|
|
|
|
private:
|
|
class Private;
|
|
Private *fP;
|
|
} ;
|
|
|
|
#endif
|