summaryrefslogtreecommitdiff
path: root/src/shared/fileentry.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/fileentry.h')
-rw-r--r--src/shared/fileentry.h75
1 files changed, 22 insertions, 53 deletions
diff --git a/src/shared/fileentry.h b/src/shared/fileentry.h
index 31655bb1..80d8b292 100644
--- a/src/shared/fileentry.h
+++ b/src/shared/fileentry.h
@@ -9,23 +9,19 @@ namespace MOShared
class FileEntry
{
public:
- static constexpr uint64_t NoFileSize =
- std::numeric_limits<uint64_t>::max();
+ static constexpr uint64_t NoFileSize = std::numeric_limits<uint64_t>::max();
FileEntry();
- FileEntry(FileIndex index, std::wstring name, DirectoryEntry *parent);
+ FileEntry(FileIndex index, std::wstring name, DirectoryEntry* parent);
// noncopyable
- FileEntry(const FileEntry&) = delete;
+ FileEntry(const FileEntry&) = delete;
FileEntry& operator=(const FileEntry&) = delete;
- FileIndex getIndex() const
- {
- return m_Index;
- }
+ FileIndex getIndex() const { return m_Index; }
- void addOrigin(
- OriginID origin, FILETIME fileTime, std::wstring_view archive, int order);
+ void addOrigin(OriginID origin, FILETIME fileTime, std::wstring_view archive,
+ int order);
// remove the specified origin from the list of origins that contain this
// file. if no origin is left, the file is effectively deleted and true is
@@ -37,71 +33,44 @@ public:
// gets the list of alternative origins (origins with lower priority than
// the primary one). if sortOrigins has been called, it is sorted by priority
// (ascending)
- const AlternativesVector &getAlternatives() const
- {
- return m_Alternatives;
- }
+ const AlternativesVector& getAlternatives() const { return m_Alternatives; }
- const std::wstring &getName() const
- {
- return m_Name;
- }
+ const std::wstring& getName() const { return m_Name; }
- OriginID getOrigin() const
- {
- return m_Origin;
- }
+ OriginID getOrigin() const { return m_Origin; }
- OriginID getOrigin(bool &archive) const
+ OriginID getOrigin(bool& archive) const
{
archive = m_Archive.isValid();
return m_Origin;
}
- const DataArchiveOrigin &getArchive() const
- {
- return m_Archive;
- }
+ const DataArchiveOrigin& getArchive() const { return m_Archive; }
bool isFromArchive(std::wstring archiveName = L"") const;
// if originID is -1, uses the main origin; if this file doesn't exist in the
// given origin, returns an empty string
//
- std::wstring getFullPath(OriginID originID=InvalidOriginID) const;
+ std::wstring getFullPath(OriginID originID = InvalidOriginID) const;
std::wstring getRelativePath() const;
- DirectoryEntry *getParent()
- {
- return m_Parent;
- }
+ DirectoryEntry* getParent() { return m_Parent; }
- void setFileTime(FILETIME fileTime) const
- {
- m_FileTime = fileTime;
- }
+ void setFileTime(FILETIME fileTime) const { m_FileTime = fileTime; }
- FILETIME getFileTime() const
- {
- return m_FileTime;
- }
+ FILETIME getFileTime() const { return m_FileTime; }
void setFileSize(uint64_t size, uint64_t compressedSize)
{
- m_FileSize = size;
+ m_FileSize = size;
m_CompressedFileSize = compressedSize;
}
- uint64_t getFileSize() const
- {
- return m_FileSize;
- }
+ uint64_t getFileSize() const { return m_FileSize; }
- uint64_t getCompressedFileSize() const
- {
- return m_CompressedFileSize;
- }
+ uint64_t getCompressedFileSize() const { return m_CompressedFileSize; }
private:
FileIndex m_Index;
@@ -109,14 +78,14 @@ private:
OriginID m_Origin;
DataArchiveOrigin m_Archive;
AlternativesVector m_Alternatives;
- DirectoryEntry *m_Parent;
+ DirectoryEntry* m_Parent;
mutable FILETIME m_FileTime;
uint64_t m_FileSize, m_CompressedFileSize;
mutable std::mutex m_OriginsMutex;
- bool recurseParents(std::wstring &path, const DirectoryEntry *parent) const;
+ bool recurseParents(std::wstring& path, const DirectoryEntry* parent) const;
};
-} // namespace
+} // namespace MOShared
-#endif // MO_REGISTER_FILEENTRY_INCLUDED
+#endif // MO_REGISTER_FILEENTRY_INCLUDED