diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2020-02-10 15:10:27 -0500 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2020-02-18 17:25:03 -0500 |
| commit | 7860e927a771d6a07d9b1905071bd389a0e64001 (patch) | |
| tree | 0b24d49f9b324cda356103f80ca4df8246c82b62 /src/shared/directoryentry.h | |
| parent | 3423b0a59337cf4cf99a24a1421ea33c4c641a22 (diff) | |
removed dead insertFile()
avoided a few string copies
lowercase filename in thread
Diffstat (limited to 'src/shared/directoryentry.h')
| -rw-r--r-- | src/shared/directoryentry.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/shared/directoryentry.h b/src/shared/directoryentry.h index 772899d7..f8c72d77 100644 --- a/src/shared/directoryentry.h +++ b/src/shared/directoryentry.h @@ -80,7 +80,7 @@ public: AlternativesVector;
FileEntry();
- FileEntry(Index index, std::wstring_view name, DirectoryEntry *parent);
+ FileEntry(Index index, std::wstring name, DirectoryEntry *parent);
Index getIndex() const
{
@@ -263,7 +263,7 @@ public: bool indexValid(FileEntry::Index index) const;
- FileEntry::Ptr createFile(std::wstring_view name, DirectoryEntry *parent);
+ FileEntry::Ptr createFile(std::wstring name, DirectoryEntry *parent);
FileEntry::Ptr getFile(FileEntry::Index index) const;
size_t size() const
@@ -459,8 +459,6 @@ public: const FileEntry::Ptr searchFile(
const std::wstring &path, const DirectoryEntry **directory=nullptr) const;
- void insertFile(const std::wstring &filePath, FilesOrigin &origin, FILETIME fileTime);
-
void removeFile(FileEntry::Index index);
// remove the specified file from the tree. This can be a path leading to a
@@ -510,6 +508,10 @@ private: std::wstring_view fileName, FilesOrigin &origin, FILETIME fileTime,
std::wstring_view archive, int order);
+ FileEntry::Ptr insert(
+ env::File& file, FilesOrigin &origin,
+ std::wstring_view archive, int order);
+
void addFiles(
FilesOrigin &origin, wchar_t *buffer, int bufferOffset);
|
