-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCommon.cpp
158 lines (133 loc) · 3.88 KB
/
Common.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
//
// Copyright (C) Wojciech Jarosz <wjarosz@gmail.com>. All rights reserved.
// Use of this source code is governed by a BSD-style license that can
// be found in the LICENSE.txt file.
//
#include "Common.h"
#include <regex>
using namespace std;
string getExtension(const string& filename)
{
if (filename.find_last_of(".") != string::npos)
return filename.substr(filename.find_last_of(".")+1);
return "";
}
string getBasename(const string& filename)
{
auto lastSlash = filename.find_last_of("/\\");
auto lastDot = filename.find_last_of(".");
if (lastSlash == std::string::npos && lastDot == std::string::npos)
return filename;
auto start = (lastSlash != string::npos) ? lastSlash + 1 : 0;
auto length = (lastDot != string::npos) ? lastDot-start : filename.size()-start;
return filename.substr(start, length);
}
const vector<string> & channelNames()
{
static const vector<string> names =
{
"RGB",
"Red",
"Green",
"Blue",
"Luminance",
"CIE L*",
"CIE a*",
"CIE b*",
"CIE chromaticity",
"False color",
"Negative-positive"
};
return names;
}
const vector<string> & blendModeNames()
{
static const vector<string> names =
{
"Normal",
"Multiply",
"Divide",
"Add",
"Average",
"Subtract",
"Difference",
"Relative difference",
};
return names;
}
string channelToString(EChannel channel)
{
return channelNames()[channel];
}
string blendModeToString(EBlendMode mode)
{
return blendModeNames()[mode];
}
// The following functions are adapted from tev:
// This file was developed by Thomas Müller <thomas94@gmx.net>.
// It is published under the BSD 3-Clause License within the LICENSE file.
vector<string> split(string text, const string& delim)
{
vector<string> result;
while (true)
{
size_t begin = text.find_last_of(delim);
if (begin == string::npos)
{
result.emplace_back(text);
return result;
}
else
{
result.emplace_back(text.substr(begin + 1));
text.resize(begin);
}
}
return result;
}
string toLower(string str)
{
transform(begin(str), end(str), begin(str), [](unsigned char c) { return (char)tolower(c); });
return str;
}
string toUpper(string str)
{
transform(begin(str), end(str), begin(str), [](unsigned char c) { return (char)toupper(c); });
return str;
}
bool matches(string text, string filter, bool isRegex)
{
auto matchesFuzzy = [](string text, string filter)
{
if (filter.empty())
return true;
// Perform matching on lowercase strings
text = toLower(text);
filter = toLower(filter);
auto words = split(filter, ", ");
// We don't want people entering multiple spaces in a row to match everything.
words.erase(remove(begin(words), end(words), ""), end(words));
if (words.empty())
return true;
// Match every word of the filter separately.
for (const auto& word : words)
if (text.find(word) != string::npos)
return true;
return false;
};
auto matchesRegex = [](string text, string filter)
{
if (filter.empty())
return true;
try
{
regex searchRegex{filter, std::regex_constants::ECMAScript | std::regex_constants::icase};
return regex_search(text, searchRegex);
}
catch (const regex_error&)
{
return false;
}
};
return isRegex ? matchesRegex(text, filter) : matchesFuzzy(text, filter);
}