-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtclPatternList.cpp
More file actions
275 lines (253 loc) · 8.72 KB
/
Copy pathtclPatternList.cpp
File metadata and controls
275 lines (253 loc) · 8.72 KB
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
/* -------------------------------------
This file is part of AnalysePlugin for NotePad++
Copyright (c) 2022 Matthias H. mattesh(at)gmx.net
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
------------------------------------- */
/**
class tclPatternList contains a vector of tclPatterns
*/
//#include "stdafx.h"
#include "tclPatternList.h"
#include "tclPattern.h"
#define MDBG_COMP "PatLst:"
#include "myDebug.h"
// this value is used for the initial, first entry
// it is intentionally high as inserting in front cause ID/2 values before
#define PAT_INIT_ID 1000
#define PAT_LINE_TXT TEXT("Pat. ")
tclPattern tclPatternList::mDefault = tclPattern();
const tclPattern& tclPatternList::getPattern(tPatId i ) const {
tlmPatternList::const_iterator it = mlmPattern.find(i);
if(it!=mlmPattern.end()) {
return it->second;
} else {
return mDefault;
}
}
tPatId tclPatternList::getPatternId(unsigned index) const {
tlmPatternList::const_iterator it = mlmPattern.begin();
if(size() ==0) {
return 0;
}
unsigned i = 0;
while (i < index) {
if(it == mlmPattern.end()) {
return tPatId(unsigned(-1));
}
++i;
++it;
}
return it->first;
}
generic_string tclPatternList::getPatternIdentification(tPatId id) const {
const tclPattern& p = getPattern(id);
generic_string s;
TCHAR index[5];
unsigned idx = getPatternIndex(id);
generic_itoa(idx + 1, index, 10); // show line 1 based
s = PAT_LINE_TXT;
s += index;
return s;
}
unsigned tclPatternList::getPatternIndex(tPatId id) const {
tlmPatternList::const_iterator it = mlmPattern.find(id);
unsigned i = 0;
if(it == mlmPattern.end()) {
i = unsigned(-1);
} else {
while(it != mlmPattern.begin()) {
--it;
++i;
}
}
return i;
}
tPatId tclPatternList::push_back(const tclPattern& pattern) {
tPatId id = PAT_INIT_ID;
if(mlsPatIds.size()>0) {
tPatId last = *mlsPatIds.rbegin();
id = tPatId(int(last) + 1);
}
mlsPatIds.insert(id);
mlmPattern[id] = pattern;
DBG1("push_back() adding id %f.", id);
return id;
}
unsigned tclPatternList::size() const {
return (unsigned)mlmPattern.size();
}
tPatId tclPatternList::insert(tPatId before, const tclPattern& pattern) {
tPatId newId = 0;
if(mlsPatIds.size() > 0) {
tlsPatId::iterator it1 = mlsPatIds.find(before);
if(it1 == mlsPatIds.end()) {
// given before id is not available add it to the begin
it1 = mlsPatIds.begin();
}
if(it1 != mlsPatIds.begin()) {
// before is not first; calc PatId
tlsPatId::iterator it2 = it1;
--it2;
newId = tPatId(((*it2 - *it1) / 2) + *it1);
} else {
newId = tPatId(int(before) - 1);
}
DBG2("insert(before) before %f new %f.", before, newId);
} else {
DBG1("insert(before) before <not found> new %f.", newId);
}
mlsPatIds.insert(newId);
mlmPattern[newId] = pattern;
return newId;
}
tPatId tclPatternList::insertAfter(tPatId after, const tclPattern& pattern) {
tPatId newId = 0;
if(mlsPatIds.size() > 0) {
tlsPatId::iterator it1 = mlsPatIds.find(after);
if(it1 == mlsPatIds.end()) {
// given after id is not available add it to the end
newId = tPatId(int(*mlsPatIds.rbegin()) + 1);
} else {
tlsPatId::iterator it2 = it1;
++it2;
if(it2 == mlsPatIds.end()) {
// given after is the last valid add to the end
newId = tPatId(int(after) + 1);
} else {
// put id between it1 and it2
newId = tPatId(((*it2 - *it1) / 2) + *it1);
}
}
DBG2("insert(after) after %f new %f.", after, newId);
} else {
DBG1("insert(after) after <not found> new %f.", newId);
}
mlsPatIds.insert(newId);
mlmPattern[newId] = pattern;
return newId;
}
void tclPatternList::moveResult(tPatId oldPattId, tPatId newPattId)
{
DBG2("moveResult(old, new) %f %f", oldPattId, newPattId);
tlmPatternList::iterator iOld = mlmPattern.find(oldPattId);
if(iOld != mlmPattern.end()) {
mlmPattern[newPattId] = iOld->second;
tclPatternList::remove(oldPattId);
}
}
void tclPatternList::clear(){
mlsPatIds.clear();
mlmPattern.clear();
}
bool tclPatternList::setPattern(tPatId i, const tclPattern& pattern){
tlmPatternList::iterator it = mlmPattern.find(i);
if(it != mlmPattern.end()) {
DBG1("setPattern() id %f done.", i);
it->second = pattern;
return true;
}else {
DBG1("setPattern() id %f was not in list! adding...", i);
mlmPattern[i] = pattern;
mlsPatIds.insert(i);
return false;
}
}
unsigned tclPatternList::getCommentWidth() const {
tlmPatternList::const_iterator it = mlmPattern.begin();
size_t max = 0;
for (;it != mlmPattern.end();++it) {
size_t s = it->second.getComment().size();
max = (max<s)?s:max;
}
return (int)max;
}
void tclPatternList::remove(tPatId i){
// removal only in pattern list Ids will remain
mlmPattern.erase(i);
if(mlmPattern.size() == 0) {
mlsPatIds.clear();
}
}
void tclPatternList::sort(tFuncStr func, bool bAscending){
tlmPatternList oldList = mlmPattern;
std::multimap <generic_string, tPatId> index;
tlmPatternList::const_iterator it = mlmPattern.begin();
for (; it != mlmPattern.end(); ++it) {
const generic_string& key = func(it->second);
std::pair<generic_string, tPatId> kp = { key , it->first };
index.insert(kp);
}
// after having index we clean the original instance to build up in right order
mlmPattern.clear();
mlsPatIds.clear();
if (bAscending) {
std::multimap < generic_string, tPatId>::const_iterator it = index.begin();
for (; it != index.end(); ++it) {
push_back(oldList.at(it->second)); // creates new patIds in correct order
}
}
else {
std::multimap < generic_string, tPatId>::const_reverse_iterator it = index.rbegin();
for (; it != index.rend(); ++it) {
push_back(oldList.at(it->second)); // creates new patIds in correct order
}
}
}
void tclPatternList::sort(tFuncInt func, bool bAscending){
tlmPatternList oldList = mlmPattern;
std::multimap <int, tPatId> index;
tlmPatternList::const_iterator it = mlmPattern.begin();
for (; it != mlmPattern.end(); ++it) {
const int& key = func(it->second);
std::pair<int, tPatId> kp = { key , it->first };
index.insert(kp);
}
// after having index we clean the original instance to build up in right order
mlmPattern.clear();
mlsPatIds.clear();
if (bAscending) {
std::multimap < int, tPatId>::const_iterator it = index.begin();
for (; it != index.end(); ++it) {
push_back(oldList.at(it->second)); // creates new patIds in correct order
}
}
else {
std::multimap < int, tPatId>::const_reverse_iterator it = index.rbegin();
for (; it != index.rend(); ++it) {
push_back(oldList.at(it->second)); // creates new patIds in correct order
}
}
}
void tclPatternList::sortByOrderNum(bool bAscending) {
tlmPatternList oldList = mlmPattern;
std::map < generic_string, tPatId> index;
tlmPatternList::const_iterator it = mlmPattern.begin();
for (; it != mlmPattern.end(); ++it) {
std::pair<generic_string, tPatId> kp = { it->second.getOrderNumStr() , it->first };
index.insert(kp);
}
// after having index we clean the original instance to build up in right order
mlmPattern.clear();
mlsPatIds.clear();
if (bAscending) {
std::map < generic_string, tPatId>::const_iterator it = index.begin();
for (; it != index.end(); ++it) {
push_back(oldList.at(it->second)); // creates new patIds in correct order
}
}
else {
std::map < generic_string, tPatId>::const_reverse_iterator it = index.rbegin();
for (; it != index.rend(); ++it) {
push_back(oldList.at(it->second)); // creates new patIds in correct order
}
}
}