blob: b8d333780446b86605d58a58751dc407c62b5f31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
#ifndef MO_REGISTER_FILEREGISTERFWD_INCLUDED
#define MO_REGISTER_FILEREGISTERFWD_INCLUDED
namespace MOShared
{
struct DirectoryEntryFileKey
{
DirectoryEntryFileKey(std::wstring v)
: value(std::move(v)), hash(getHash(value))
{
}
bool operator==(const DirectoryEntryFileKey& o) const
{
return (value == o.value);
}
static std::size_t getHash(const std::wstring& value)
{
return std::hash<std::wstring>()(value);
}
std::wstring value;
const std::size_t hash;
};
class DirectoryEntry;
class OriginConnection;
class FileRegister;
class FilesOrigin;
class FileEntry;
struct DirectoryStats;
using FileEntryPtr = boost::shared_ptr<FileEntry>;
using FileIndex = unsigned int;
// a vector of {originId, {archiveName, order}}
//
// if a file is in an archive, archiveName is the name of the bsa and order
// is the order of the associated plugin in the plugins list
//
// is a file is not in an archive, archiveName is empty and order is usually
// -1
using AlternativesVector = std::vector<std::pair<int, std::pair<std::wstring, int>>>;
struct DirectoryStats
{
static constexpr bool EnableInstrumentation = false;
std::string mod;
std::chrono::nanoseconds dirTimes;
std::chrono::nanoseconds fileTimes;
std::chrono::nanoseconds sortTimes;
std::chrono::nanoseconds subdirLookupTimes;
std::chrono::nanoseconds addDirectoryTimes;
std::chrono::nanoseconds filesLookupTimes;
std::chrono::nanoseconds addFileTimes;
std::chrono::nanoseconds addOriginToFileTimes;
std::chrono::nanoseconds addFileToOriginTimes;
std::chrono::nanoseconds addFileToRegisterTimes;
int64_t originExists;
int64_t originCreate;
int64_t originsNeededEnabled;
int64_t subdirExists;
int64_t subdirCreate;
int64_t fileExists;
int64_t fileCreate;
int64_t filesInsertedInRegister;
int64_t filesAssignedInRegister;
DirectoryStats();
DirectoryStats& operator+=(const DirectoryStats& o);
static std::string csvHeader();
std::string toCsv() const;
};
} // namespace
#endif // MO_REGISTER_FILEREGISTERFWD_INCLUDED
|