MtasDataFull.java
10.7 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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
package mtas.codec.util.collector;
import java.io.IOException;
import java.io.Serializable;
import java.util.TreeSet;
import mtas.codec.util.CodecUtil;
import mtas.codec.util.DataCollector;
import mtas.codec.util.DataCollector.MtasDataCollector;
/**
* The Class MtasDataFull.
*
* @param <T1>
* the generic type
* @param <T2>
* the generic type
* @param <T3>
* the generic type
*/
abstract class MtasDataFull<T1 extends Number, T2 extends Number, T3 extends MtasDataItem<T1>>
extends MtasDataCollector<T1, T3> implements Serializable {
/** The Constant serialVersionUID. */
private static final long serialVersionUID = 1L;
/** The new full value list. */
protected T1[][] fullValueList = null, newFullValueList = null;
/** The operations. */
protected MtasDataOperations<T1, T2> operations;
/**
* Instantiates a new mtas data full.
*
* @param collectorType
* the collector type
* @param dataType
* the data type
* @param statsItems
* the stats items
* @param sortType
* the sort type
* @param sortDirection
* the sort direction
* @param start
* the start
* @param number
* the number
* @param subCollectorTypes
* the sub collector types
* @param subDataTypes
* the sub data types
* @param subStatsTypes
* the sub stats types
* @param subStatsItems
* the sub stats items
* @param subSortTypes
* the sub sort types
* @param subSortDirections
* the sub sort directions
* @param subStart
* the sub start
* @param subNumber
* the sub number
* @param operations
* the operations
* @param segmentRegistration
* the segment registration
* @throws IOException
* Signals that an I/O exception has occurred.
*/
public MtasDataFull(String collectorType, String dataType,
TreeSet<String> statsItems, String sortType, String sortDirection,
Integer start, Integer number, String[] subCollectorTypes,
String[] subDataTypes, String[] subStatsTypes,
TreeSet<String>[] subStatsItems, String[] subSortTypes,
String[] subSortDirections, Integer[] subStart, Integer[] subNumber,
MtasDataOperations<T1, T2> operations, boolean segmentRegistration)
throws IOException {
super(collectorType, dataType, CodecUtil.STATS_FULL, statsItems, sortType,
sortDirection, start, number, subCollectorTypes, subDataTypes,
subStatsTypes, subStatsItems, subSortTypes, subSortDirections, subStart,
subNumber, segmentRegistration);
this.operations = operations;
}
/*
* (non-Javadoc)
*
* @see
* mtas.codec.util.DataCollector.MtasDataCollector#error(java.lang.String)
*/
@Override
public final void error(String error) throws IOException {
add(false);
setError(newCurrentPosition, error, newCurrentExisting);
}
/*
* (non-Javadoc)
*
* @see
* mtas.codec.util.DataCollector.MtasDataCollector#error(java.lang.String[],
* java.lang.String)
*/
@Override
public final void error(String[] keys, String error) throws IOException {
if (keys != null && keys.length > 0) {
for (int i = 0; i < keys.length; i++) {
add(keys[i], false);
setError(newCurrentPosition, error, newCurrentExisting);
}
}
}
/**
* Sets the error.
*
* @param newPosition
* the new position
* @param error
* the error
* @param currentExisting
* the current existing
*/
protected void setError(int newPosition, String error,
boolean currentExisting) {
if (!currentExisting) {
newFullValueList[newPosition] = operations.createVector1(0);
}
newErrorNumber[newPosition]++;
if (newErrorList[newPosition].containsKey(error)) {
newErrorList[newPosition].put(error,
newErrorList[newPosition].get(error) + 1);
} else {
newErrorList[newPosition].put(error, 1);
}
}
/*
* (non-Javadoc)
*
* @see mtas.codec.util.DataCollector.MtasDataCollector#increaseNewListSize()
*/
@Override
protected final void increaseNewListSize() {
// register old situation
int tmpOldSize = newKeyList.length;
int tmpNewPosition = newPosition;
// increase
super.increaseNewListSize();
// reconstruct
T1[][] tmpNewFullValueList = newFullValueList;
newFullValueList = operations.createMatrix1(newSize);
newPosition = tmpNewPosition;
System.arraycopy(tmpNewFullValueList, 0, newFullValueList, 0, tmpOldSize);
}
public void reduceToSegmentKeys() {
if(segmentRegistration) {
int sizeCopy = size;
String[] keyListCopy = keyList.clone();
T1[][] fullValueListCopy = fullValueList.clone();
size = 0;
for(int i=0; i< sizeCopy; i++) {
if(segmentKeys.contains(keyListCopy[i])) {
keyList[size] = keyListCopy[i];
fullValueList[size] = fullValueListCopy[i];
size++;
}
}
}
}
/*
* (non-Javadoc)
*
* @see mtas.codec.util.DataCollector.MtasDataCollector#copyToNew(int, int)
*/
@Override
protected void copyToNew(int position, int newPosition) {
newFullValueList[newPosition] = fullValueList[position];
}
/*
* (non-Javadoc)
*
* @see mtas.codec.util.DataCollector.MtasDataCollector#copyFromNew()
*/
@Override
protected void copyFromNew() {
fullValueList = newFullValueList;
}
/**
* Sets the value.
*
* @param newPosition
* the new position
* @param values
* the values
* @param number
* the number
* @param currentExisting
* the current existing
*/
protected void setValue(int newPosition, T1[] values, int number,
boolean currentExisting) {
if (number > 0) {
if (currentExisting) {
T1[] tmpList = operations
.createVector1(newFullValueList[newPosition].length + number);
System.arraycopy(newFullValueList[newPosition], 0, tmpList, 0,
newFullValueList[newPosition].length);
System.arraycopy(values, 0, tmpList,
newFullValueList[newPosition].length, number);
newFullValueList[newPosition] = tmpList;
} else {
if (number < values.length) {
T1[] tmpList = operations.createVector1(number);
System.arraycopy(values, 0, tmpList, 0, number);
newFullValueList[newPosition] = tmpList;
} else {
newFullValueList[newPosition] = values;
}
}
}
}
/*
* (non-Javadoc)
*
* @see mtas.codec.util.DataCollector.MtasDataCollector#remapData(int[][])
*/
@Override
protected void remapData(int[][] mapping) throws IOException {
super.remapData(mapping);
T1[][] originalFullValueList = fullValueList.clone();
fullValueList = operations.createMatrix1(mapping.length);
for (int i = 0; i < mapping.length; i++) {
for (int j = 0; j < mapping[i].length; j++) {
if (j == 0) {
setValue(i, originalFullValueList[mapping[i][j]],
originalFullValueList[mapping[i][j]].length, false);
} else {
setValue(i, originalFullValueList[mapping[i][j]],
originalFullValueList[mapping[i][j]].length, true);
}
}
}
fullValueList = newFullValueList;
}
/*
* (non-Javadoc)
*
* @see mtas.codec.util.DataCollector.MtasDataCollector#merge(mtas.codec.util.
* DataCollector.MtasDataCollector)
*/
@Override
public void merge(MtasDataCollector<?, ?> newDataCollector, boolean increaseSourceNumber)
throws IOException {
closeNewList();
if (!collectorType.equals(newDataCollector.getCollectorType())
|| !dataType.equals(newDataCollector.getDataType())
|| !statsType.equals(newDataCollector.getStatsType())
|| !(newDataCollector instanceof MtasDataFull)) {
throw new IOException("cannot merge different dataCollectors");
} else {
MtasDataFull<T1, T2, T3> newMtasDataFull = (MtasDataFull<T1, T2, T3>) newDataCollector;
closeNewList();
initNewList(newMtasDataFull.getSize());
if (collectorType.equals(DataCollector.COLLECTOR_TYPE_LIST)) {
String[] keys = new String[1];
for (int i = 0; i < newMtasDataFull.getSize(); i++) {
if (newMtasDataFull.fullValueList[i].length > 0) {
MtasDataCollector<?, ?>[] subCollectors = new MtasDataCollector<?, ?>[1];
subCollectors[0] = add(newMtasDataFull.keyList[i], increaseSourceNumber);
setError(newCurrentPosition, newMtasDataFull.errorNumber[i],
newMtasDataFull.errorList[i], newCurrentExisting);
setValue(newCurrentPosition, newMtasDataFull.fullValueList[i],
newMtasDataFull.fullValueList[i].length, newCurrentExisting);
if (hasSub() && newMtasDataFull.hasSub()) {
// single key implies exactly one subCollector if hasSub
subCollectors[0]
.merge(newMtasDataFull.subCollectorListNextLevel[i], increaseSourceNumber);
}
}
}
} else if (collectorType.equals(DataCollector.COLLECTOR_TYPE_DATA)) {
if (newMtasDataFull.getSize() > 0) {
MtasDataCollector<?, ?> subCollector = add(increaseSourceNumber);
setError(newCurrentPosition, newMtasDataFull.errorNumber[0],
newMtasDataFull.errorList[0], newCurrentExisting);
setValue(newCurrentPosition, newMtasDataFull.fullValueList[0],
newMtasDataFull.fullValueList[0].length, newCurrentExisting);
if (hasSub() && newMtasDataFull.hasSub()) {
subCollector.merge(newMtasDataFull.subCollectorNextLevel, increaseSourceNumber);
}
}
} else {
throw new IOException("cannot merge " + collectorType);
}
closeNewList();
}
}
/*
* (non-Javadoc)
*
* @see mtas.codec.util.DataCollector.MtasDataCollector#initNewList(int)
*/
@Override
public final void initNewList(int maxNumberOfTerms) throws IOException {
super.initNewList(maxNumberOfTerms);
initNewListBasic(maxNumberOfTerms);
}
/*
* (non-Javadoc)
*
* @see mtas.codec.util.DataCollector.MtasDataCollector#initNewList(int,
* java.lang.String)
*/
@Override
public final void initNewList(int maxNumberOfTerms, String segmentName,
int segmentNumber) throws IOException {
super.initNewList(maxNumberOfTerms, segmentName, segmentNumber);
initNewListBasic(maxNumberOfTerms);
}
/**
* Inits the new list basic.
*
* @param maxNumberOfTerms
* the max number of terms
*/
private void initNewListBasic(int maxNumberOfTerms) {
newFullValueList = operations.createMatrix1(newSize);
}
}