// ************************************************************************** // * This file is part of the FreeFileSync project. It is distributed under * // * GNU General Public License: http://www.gnu.org/licenses/gpl.html * // * Copyright (C) Zenju (zenju AT gmx DOT de) - All Rights Reserved * // ************************************************************************** #ifndef DBFILE_H_INCLUDED #define DBFILE_H_INCLUDED #include #include "../file_hierarchy.h" namespace zen { const Zstring SYNC_DB_FILE_ENDING = Zstr(".ffs_db"); enum InSyncType { IN_SYNC_BINARY_EQUAL, //checked file content IN_SYNC_ATTRIBUTES_EQUAL, //only "looks" like they're equal }; //artificial hierarchy of last synchronous state: struct InSyncFile { InSyncFile(const FileDescriptor& l, const FileDescriptor& r, InSyncType type) : left(l), right(r), inSyncType(type) {} FileDescriptor left; FileDescriptor right; InSyncType inSyncType; }; struct InSyncSymlink { InSyncSymlink(const LinkDescriptor& l, const LinkDescriptor& r, InSyncType type) : left(l), right(r), inSyncType(type) {} LinkDescriptor left; LinkDescriptor right; InSyncType inSyncType; }; struct InSyncDir { //for directories we have a logical problem: we cannot have "not existent" as an indicator for "no last synchronous state" since this precludes //child elements that may be in sync! enum InSyncStatus { STATUS_IN_SYNC, STATUS_STRAW_MAN //there is no last synchronous state, but used as container only }; InSyncDir(InSyncStatus statusIn) : status(statusIn) {} InSyncStatus status; //------------------------------------------------------------------ typedef std::map DirList; // typedef std::map FileList; // key: shortName typedef std::map LinkList; // //------------------------------------------------------------------ DirList dirs; FileList files; LinkList symlinks; //non-followed symlinks //convenience InSyncDir& addDir(const Zstring& shortName, InSyncStatus statusIn) { //use C++11 emplace when available return dirs.insert(std::make_pair(shortName, InSyncDir(statusIn))).first->second; } void addFile(const Zstring& shortName, const FileDescriptor& dataL, const FileDescriptor& dataR, InSyncType type) { files.insert(std::make_pair(shortName, InSyncFile(dataL, dataR, type))); } void addSymlink(const Zstring& shortName, const LinkDescriptor& dataL, const LinkDescriptor& dataR, InSyncType type) { symlinks.insert(std::make_pair(shortName, InSyncSymlink(dataL, dataR, type))); } }; DEFINE_NEW_FILE_ERROR(FileErrorDatabaseNotExisting); std::shared_ptr loadLastSynchronousState(const BaseDirMapping& baseMapping); //throw FileError, FileErrorDatabaseNotExisting -> return value always bound! void saveLastSynchronousState(const BaseDirMapping& baseMapping); //throw FileError } #endif //DBFILE_H_INCLUDED