2013-10-03 17:27:29 +04:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Klaas Freitag <freitag@owncloud.com>
|
|
|
|
*
|
|
|
|
* 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
|
2016-10-25 12:00:07 +03:00
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
2013-10-03 17:27:29 +04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SYNCJOURNALFILERECORD_H
|
|
|
|
#define SYNCJOURNALFILERECORD_H
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QDateTime>
|
|
|
|
|
2014-09-26 12:07:17 +04:00
|
|
|
#include "owncloudlib.h"
|
|
|
|
|
2014-11-10 00:34:07 +03:00
|
|
|
namespace OCC {
|
2013-10-03 17:27:29 +04:00
|
|
|
|
2013-10-03 22:00:58 +04:00
|
|
|
class SyncFileItem;
|
|
|
|
|
2015-06-29 19:56:09 +03:00
|
|
|
/**
|
|
|
|
* @brief The SyncJournalFileRecord class
|
|
|
|
* @ingroup libsync
|
2015-06-26 18:07:47 +03:00
|
|
|
*/
|
2014-09-26 12:07:17 +04:00
|
|
|
class OWNCLOUDSYNC_EXPORT SyncJournalFileRecord
|
2013-10-03 17:27:29 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
SyncJournalFileRecord();
|
2015-11-10 16:26:25 +03:00
|
|
|
|
|
|
|
/// Creates a record from an existing item while updating the inode
|
2013-10-03 22:00:58 +04:00
|
|
|
SyncJournalFileRecord(const SyncFileItem &, const QString &localFileName);
|
2013-10-03 17:27:29 +04:00
|
|
|
|
2015-11-10 16:26:25 +03:00
|
|
|
/** Creates a basic SyncFileItem from the record
|
|
|
|
*
|
|
|
|
* This is intended in particular for read-update-write cycles that need
|
|
|
|
* to go through a a SyncFileItem, like PollJob.
|
|
|
|
*/
|
|
|
|
SyncFileItem toSyncFileItem();
|
|
|
|
|
2013-10-03 17:27:29 +04:00
|
|
|
bool isValid()
|
|
|
|
{
|
|
|
|
return !_path.isEmpty();
|
|
|
|
}
|
|
|
|
|
2015-07-09 16:57:56 +03:00
|
|
|
QString _path;
|
|
|
|
quint64 _inode;
|
|
|
|
QDateTime _modtime;
|
|
|
|
int _type;
|
2014-06-19 16:27:04 +04:00
|
|
|
QByteArray _etag;
|
|
|
|
QByteArray _fileId;
|
2014-09-05 15:03:33 +04:00
|
|
|
qint64 _fileSize;
|
2014-06-06 17:24:17 +04:00
|
|
|
QByteArray _remotePerm;
|
2015-07-13 16:41:11 +03:00
|
|
|
bool _serverHasIgnoredFiles;
|
2015-11-23 13:53:06 +03:00
|
|
|
QByteArray _contentChecksum;
|
|
|
|
QByteArray _contentChecksumType;
|
2013-10-03 17:27:29 +04:00
|
|
|
};
|
|
|
|
|
2014-11-19 16:14:54 +03:00
|
|
|
bool OWNCLOUDSYNC_EXPORT
|
|
|
|
operator==(const SyncJournalFileRecord &lhs,
|
|
|
|
const SyncJournalFileRecord &rhs);
|
2014-10-23 17:15:47 +04:00
|
|
|
|
2015-01-16 12:17:19 +03:00
|
|
|
class SyncJournalErrorBlacklistRecord
|
2013-11-20 16:44:01 +04:00
|
|
|
{
|
|
|
|
public:
|
2015-01-16 12:17:19 +03:00
|
|
|
SyncJournalErrorBlacklistRecord()
|
2014-10-09 16:49:51 +04:00
|
|
|
: _retryCount(0)
|
|
|
|
, _lastTryModtime(0)
|
|
|
|
, _lastTryTime(0)
|
|
|
|
, _ignoreDuration(0)
|
|
|
|
{
|
|
|
|
}
|
2013-11-20 16:44:01 +04:00
|
|
|
|
2014-10-09 16:49:51 +04:00
|
|
|
/// The number of times the operation was unsuccessful so far.
|
2013-11-20 16:44:01 +04:00
|
|
|
int _retryCount;
|
2014-10-09 16:49:51 +04:00
|
|
|
|
|
|
|
/// The last error string.
|
2013-11-20 16:44:01 +04:00
|
|
|
QString _errorString;
|
2014-10-09 16:49:51 +04:00
|
|
|
|
2013-11-20 16:44:01 +04:00
|
|
|
time_t _lastTryModtime;
|
|
|
|
QByteArray _lastTryEtag;
|
2014-10-09 16:49:51 +04:00
|
|
|
|
|
|
|
/// The last time the operation was attempted (in s since epoch).
|
|
|
|
time_t _lastTryTime;
|
|
|
|
|
|
|
|
/// The number of seconds the file shall be ignored.
|
|
|
|
time_t _ignoreDuration;
|
|
|
|
|
2013-11-20 16:44:01 +04:00
|
|
|
QString _file;
|
2016-05-25 16:01:26 +03:00
|
|
|
QString _renameTarget;
|
2013-11-20 16:44:01 +04:00
|
|
|
|
2014-10-09 16:49:51 +04:00
|
|
|
bool isValid() const;
|
2013-11-20 16:44:01 +04:00
|
|
|
};
|
2013-10-03 17:27:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // SYNCJOURNALFILERECORD_H
|