nextcloud-desktop/src/libsync/filesystem.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

98 lines
2.7 KiB
C
Raw Normal View History

/*
* Copyright (C) by Olivier Goffart <ogoffart@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
* 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.
*/
#pragma once
#include "config.h"
#include <QString>
#include <ctime>
#include <functional>
2014-07-11 00:58:58 +04:00
#include <owncloudlib.h>
// Chain in the base include and extend the namespace
#include "common/filesystembase.h"
2014-07-11 00:58:58 +04:00
2015-02-25 12:51:05 +03:00
class QFile;
2014-11-10 00:34:07 +03:00
namespace OCC {
class SyncJournal;
2015-06-29 19:56:09 +03:00
/**
* \addtogroup libsync
* @{
*/
/**
2015-06-29 19:56:09 +03:00
* @brief This file contains file system helper
*/
namespace FileSystem {
2015-06-29 19:56:09 +03:00
/**
2018-05-22 11:40:45 +03:00
* @brief compare two files with given filename and return true if they have the same content
*/
bool fileEquals(const QString &fn1, const QString &fn2);
2015-06-29 19:56:09 +03:00
/**
2018-05-22 11:40:45 +03:00
* @brief Get the mtime for a filepath
*
* Use this over QFileInfo::lastModified() to avoid timezone related bugs. See
* owncloud/core#9781 for details.
*/
2015-02-25 12:51:05 +03:00
time_t OWNCLOUDSYNC_EXPORT getModTime(const QString &filename);
bool OWNCLOUDSYNC_EXPORT setModTime(const QString &filename, time_t modTime);
2015-06-29 19:56:09 +03:00
/**
2018-05-22 11:40:45 +03:00
* @brief Get the size for a file
*
* Use this over QFileInfo::size() to avoid bugs with lnk files on Windows.
* See https://bugreports.qt.io/browse/QTBUG-24831.
*/
qint64 OWNCLOUDSYNC_EXPORT getSize(const QString &filename);
2015-02-25 12:51:05 +03:00
2015-06-29 19:56:09 +03:00
/**
2018-05-22 11:40:45 +03:00
* @brief Check if \a fileName has changed given previous size and mtime
*
* Nonexisting files are covered through mtime: they have an mtime of -1.
*
* @return true if the file's mtime or size are not what is expected.
*/
2016-06-03 14:28:44 +03:00
bool OWNCLOUDSYNC_EXPORT fileChanged(const QString &fileName,
qint64 previousSize,
time_t previousMtime);
2015-06-29 19:56:09 +03:00
/**
2018-05-22 11:40:45 +03:00
* @brief Like !fileChanged() but with verbose logging if the file *did* change.
*/
bool verifyFileUnchanged(const QString &fileName,
qint64 previousSize,
time_t previousMtime);
/**
* Removes a directory and its contents recursively
*
* Returns true if all removes succeeded.
* onDeleted() is called for each deleted file or directory, including the root.
* errors are collected in errors.
*/
bool OWNCLOUDSYNC_EXPORT removeRecursively(const QString &path,
const std::function<void(const QString &path, bool isDir)> &onDeleted = nullptr,
QStringList *errors = nullptr);
}
2015-06-29 19:56:09 +03:00
/** @} */
}