-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathPathModifier.cpp
158 lines (125 loc) · 3.85 KB
/
PathModifier.cpp
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
#include "PathModifier.hpp"
#include "Util.hpp"
#include "YamlWstring.hpp"
#include <yaml-cpp/yaml.h>
#include <deque>
#include <fstream>
#include <optional>
#include <stdexcept>
#include <string>
#include <string_view>
#include <unordered_map>
#include <Windows.h>
using namespace std::literals;
class ModifyRule {
std::string mType;
bool mLast;
protected:
ModifyRule(const YAML::Node& node) :
mType(node["type"].as<std::string>()),
mLast(node["last"].as<bool>())
{}
public:
const std::string& GetType() const {
return mType;
}
const bool IsLast() const {
return mLast;
}
virtual std::optional<std::wstring> Modify(const std::wstring& src) const = 0;
};
class ModifyRuleFilepath : public ModifyRule {
public:
static const std::string_view gType;
private:
std::wstring sourcePrefix;
std::wstring destinationPrefix;
std::deque<std::wstring> excludes;
static std::wstring GetPrefix(const std::wstring& filepath) {
const auto fqPath = ToAbsoluteFilepath(ExpandEnvironmentVariable(filepath));
// TODO: support UNC paths
return L"\\??\\"s + fqPath;
}
public:
ModifyRuleFilepath(const YAML::Node& node) :
ModifyRule(node)
{
sourcePrefix = GetPrefix(node["source"].as<std::wstring>());
destinationPrefix = GetPrefix(node["destination"].as<std::wstring>());
const auto& exclude = node["exclude"];
if (exclude.Type() == YAML::NodeType::Sequence) {
for (const auto& excludeItem : exclude) {
excludes.emplace_back(L"\\"s + excludeItem.as<std::wstring>());
}
}
}
std::optional<std::wstring> Modify(const std::wstring& src) const {
if (src.size() < sourcePrefix.size()) {
return std::nullopt;
}
if (src.size() > sourcePrefix.size() && src[sourcePrefix.size()] != L'\\') {
return std::nullopt;
}
if (_wcsnicmp(src.c_str(), sourcePrefix.c_str(), sourcePrefix.size()) != 0) {
return std::nullopt;
}
{
const auto srcAfterPrefix = src.c_str() + sourcePrefix.size();
const auto srcSizeAfterPrefix = src.size() - sourcePrefix.size();
for (const auto& excludeItem : excludes) {
if (srcSizeAfterPrefix < excludeItem.size()) {
continue;
}
if (srcSizeAfterPrefix > excludeItem.size() && srcAfterPrefix[excludeItem.size()] != L'\\') {
continue;
}
if (_wcsnicmp(srcAfterPrefix, excludeItem.c_str(), excludeItem.size()) != 0) {
continue;
}
return std::nullopt;
}
}
return destinationPrefix + src.substr(sourcePrefix.size());
}
};
const std::string_view ModifyRuleFilepath::gType = "filepath"sv;
template<typename T, typename... Rest>
std::unique_ptr<ModifyRule> CreateModifyRuleImpl(const YAML::Node& node, const std::string& type) {
if (type == T::gType) {
return std::make_unique<T>(node);
}
if constexpr (sizeof...(Rest) == 0) {
throw std::runtime_error("unknown type specified");
} else {
return CreateModifyRuleImpl<Rest...>(node, type);
}
}
std::unique_ptr<ModifyRule> CreateModifyRule(const YAML::Node& node) {
const auto type = node["type"].as<std::string>();
return CreateModifyRuleImpl<ModifyRuleFilepath>(node, type);
}
PathModifier::PathModifier(const std::wstring& filepath) {
{
std::ifstream ifs(filepath);
mNode = YAML::Load(ifs);
}
for (const auto& ynRule : mNode["rules"]) {
mModifyRules.emplace_back(CreateModifyRule(ynRule));
}
}
PathModifier::~PathModifier() = default;
std::optional<std::wstring> PathModifier::Modify(const std::wstring& src) const {
bool modified = false;
std::wstring dest = src;
for (const auto& modifyRule : mModifyRules) {
const auto ret = modifyRule->Modify(dest);
if (ret) {
modified = true;
dest = ret.value();
if (modifyRule->IsLast()) {
break;
}
}
}
return modified ? std::make_optional(dest) : std::nullopt;
}