-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStatistics.cpp
487 lines (394 loc) · 14 KB
/
Statistics.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
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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
/****************************************************************************/
/* */
/* Statistics class implementation */
/* */
/****************************************************************************/
#include "Statistics.h"
#include <cstdlib> // NULL definition
#include <new> // bad_alloc definition
#include "AppsByDownloadCountTree.h"
using std::bad_alloc;
using std::exception;
Statistics::Statistics() :
mAppsList(), mOSVersionsList(), mAppsById(), mAppsByDownloadCount(),
mTopAppId(INVALID_TOP_APP_ID), mTopAppDownloadCount(-1) {}
Statistics::~Statistics() {
// Nothing important to destruct (all private members are automatically
// destructed anyway)
}
StatusType Statistics::AddVersion(int versionCode) {
if (versionCode <= 0) {
return INVALID_INPUT;
}
try {
mOSVersionsList.addVersion(versionCode);
} catch (const bad_alloc& e) {
return ALLOCATION_ERROR;
} catch (const InvalidVersionCodeException& e) {
return INVALID_INPUT;
} catch (const VersionCodeNotLargerThanCurrentException& e) {
return FAILURE;
}
return SUCCESS;
}
StatusType Statistics::AddApplication(int appId, int versionCode, int downloadCount) {
if (appId <= 0 || versionCode <= 0 || downloadCount < 0) {
return INVALID_INPUT;
}
try {
// 1. Create a new AppData record with the app's params, and insert it
// into the apps list
AppData appData(appId, versionCode, downloadCount);
AppsListIterator appDataIter = mAppsList.insertFront(appData);
// 2. Insert new app to mAppsById and mAppsByDownloadCount
try {
mAppsById.addApp(appDataIter);
} catch (const exception& e) {
mAppsList.remove(appDataIter);
throw;
}
// 3. Insert a pointer to the new app to mOSVersionsList
try {
mOSVersionsList.addApp(appDataIter);
} catch (const exception& e) {
mAppsById.removeApp(appId);
mAppsList.remove(appDataIter);
throw;
}
try {
mAppsByDownloadCount.addApp(appDataIter);
} catch (const exception& e) {
mAppsById.removeApp(appId);
mOSVersionsList.removeApp(versionCode, downloadCount, appId);
mAppsList.remove(appDataIter);
throw;
}
// 4. Update mTopAppId and mTopAppDownloadCount if needed
updateTopAppData();
} catch (const bad_alloc& e) {
return ALLOCATION_ERROR;
} catch (const InvalidVersionCodeException& e) {
return INVALID_INPUT;
} catch (const NullArgumentException& e) {
return INVALID_INPUT;
} catch (const NoSuchVersionCodeException& e) {
return FAILURE;
} catch (const AppAlreadyExistsException& e) {
return FAILURE;
} catch (const DuplicateNodeException& e) {
return FAILURE;
} catch (const ElementNotFoundException& e) {
return FAILURE;
} catch (...) {
return FAILURE;
}
return SUCCESS;
}
StatusType Statistics::RemoveApplication(int appId) {
if (appId <= 0) {
return INVALID_INPUT;
}
// Find the app's data using mAppsById
AppsListIterator* appDataIterPtr = NULL;
try {
appDataIterPtr = mAppsById.getAppById(appId);
} catch (const ElementNotFoundException& e) {
return FAILURE;
}
AppsListIterator appDataIter = *appDataIterPtr;
try {
// Remove the app from the mAppsById tree
mAppsById.removeApp(appId);
// Remove the app from the mAppsByDownloadCount tree
mAppsByDownloadCount.removeApp(appDataIter->downloadCount,
appDataIter->appId);
// Remove the app from the mOSVersionsList data structure
mOSVersionsList.removeApp(appDataIter->versionCode,
appDataIter->downloadCount, appDataIter->appId);
// Finally, remove the AppData structure from mAppsList
mAppsList.remove(appDataIter);
} catch (const ElementNotFoundException& e) {
return FAILURE;
}
// Update mTopAppId and mTopAppDownloadCount if needed
updateTopAppData();
return SUCCESS;
}
StatusType Statistics::IncreaseDownloads(int appId, int downloadIncrease) {
if (appId <= 0 || downloadIncrease <= 0) {
return INVALID_INPUT;
}
// Find the app's data using mAppsById
AppsListIterator* appDataIterPtr = NULL;
try {
appDataIterPtr = mAppsById.getAppById(appId);
} catch (const ElementNotFoundException& e) {
return FAILURE;
}
AppsListIterator appDataIter = *appDataIterPtr;
try {
// Extract the app's current download count and calculate the new one
int oldDownloadCount = appDataIter->downloadCount;
int newDownloadCount = oldDownloadCount + downloadIncrease;
// First remove the outdated data from mOSVersionsList and
// mAppsByDownloadCount
mOSVersionsList.removeApp(appDataIter->versionCode, oldDownloadCount,
appId);
mAppsByDownloadCount.removeApp(oldDownloadCount, appId);
// Update the app's AppData structure
appDataIter->downloadCount = newDownloadCount;
// Now re-add the data to mOSVersionsList and mAppsByDownloadCount
// (so that it will be added to the correct new place)
mOSVersionsList.addApp(appDataIter);
mAppsByDownloadCount.addApp(appDataIter);
// Update mTopAppId and mTopAppDownloadCount if needed
updateTopAppData();
} catch (const bad_alloc& e) {
return ALLOCATION_ERROR;
} catch (const InvalidVersionCodeException& e) {
return INVALID_INPUT;
} catch (const NoSuchVersionCodeException& e) {
return FAILURE;
} catch (const NoSuchAppException& e) {
return FAILURE;
}
return SUCCESS;
}
StatusType Statistics::UpgradeApplication(int appId) {
if (appId <= 0) {
return INVALID_INPUT;
}
// Find the app's data using mAppsById
AppsListIterator* appDataIterPtr = NULL;
try {
appDataIterPtr = mAppsById.getAppById(appId);
} catch (const ElementNotFoundException& e) {
return FAILURE;
}
AppsListIterator appDataIter = *appDataIterPtr;
try {
// Extract the app's current versionCode
int oldVersionCode = appDataIter->versionCode;
// Get the following versionCode in the mOSVersionsList
int newVersionCode = mOSVersionsList.getFollowingVersion(oldVersionCode);
// Remove old appData pointer from the old place in tthe mOSVersionsList tree
mOSVersionsList.removeApp(oldVersionCode, appDataIter->downloadCount,
appId);
// Update the AppData structure with the new version
appDataIter->versionCode = newVersionCode;
// Re-insert the appData pointer to the new place in the mOSVersionsList tree
mOSVersionsList.addApp(appDataIter);
} catch (const bad_alloc& e) {
return ALLOCATION_ERROR;
} catch (const InvalidVersionCodeException& e) {
return INVALID_INPUT;
} catch (const NoSuchVersionCodeException& e) {
return FAILURE;
} catch (const VersionCodeIsLastException& e) {
return FAILURE;
} catch (const NoSuchAppException& e) {
return FAILURE;
} catch (const AppAlreadyExistsException& e) {
// Shouldn't really happen
return FAILURE;
}
return SUCCESS;
}
StatusType Statistics::GetTopApp(int versionCode, int *appId) {
if (versionCode == 0 || appId == NULL) {
return INVALID_INPUT;
}
*appId = -1; // Default value for appId in case of an error
if (versionCode < 0) {
// User wants the global top app in the whole system
if (mTopAppId == INVALID_TOP_APP_ID) {
// There are no apps in the system
return SUCCESS;
}
*appId = mTopAppId;
return SUCCESS;
}
// User wants the top app of the specified versionCode
try {
*appId = mOSVersionsList.getTopAppId(versionCode);
} catch (const InvalidVersionCodeException& e) {
return INVALID_INPUT;
} catch (const NoSuchVersionCodeException& e) {
// There is no OSVersion with the specified versionCode
return FAILURE;
} catch (const NoSuchAppException& e) {
// There are no apps with the specified versionCode
return SUCCESS;
}
return SUCCESS;
}
StatusType Statistics::GetAllAppsByDownloads(int versionCode, int **apps, int *numOfApps) {
if (versionCode == 0 || apps == NULL || numOfApps == NULL) {
return INVALID_INPUT;
}
// Default values in case of error
*numOfApps = 0;
*apps = NULL;
AppsByDownloadCountTree* tree;
if (versionCode < 0) {
// User wants all apps in the system by downloads - Traverse
// mAppsByDownloadCount
tree = &mAppsByDownloadCount;
} else {
// User wants all apps with a specific versionCode by downloads - Traverse
// the tree inside the relevant node in mOSVersionsList
try {
tree = mOSVersionsList.getAppsByDownloadCountTree(versionCode);
} catch (const InvalidVersionCodeException& e) {
return INVALID_INPUT;
} catch (const NoSuchVersionCodeException& e) {
// versionCode is valid but doesn't exist in the system - return
// FAILURE, and default values for numOfApps and apps.
return FAILURE;
}
}
// Now that we got our tree:
// Get the tree's size and check if empty
int treeSize = tree->getTreeSize();
if (treeSize == 0) {
// There are no apps with the specified versionCode
// Return defaults for apps and numOfApps
return SUCCESS;
}
// Enumerate the tree's data into an array
AppsListIterator* appDataItersArray = NULL;
try {
appDataItersArray = new AppsListIterator[treeSize];
} catch (const std::bad_alloc& e) {
return ALLOCATION_ERROR;
}
tree->enumerateData(appDataItersArray);
// We need to extract the data we want from the AppData pointers array
// to an array of AppIds
// Allocate array using malloc() because the user uses free() later
int* appIdsArray = (int*) malloc(sizeof(int) * treeSize);
if (appIdsArray == NULL) {
// Cleanup previously allocated array
delete[] appDataItersArray;
return ALLOCATION_ERROR;
}
// Translate the AppData pointers array into an array of appIds.
// This is also a good place to reverse the list (since we need to return
// the list sorted from highest appId to lowest)
for (int i=0; i<treeSize; i++) {
// NOTE: We trust enumerateData() here in that all the elements in
// the array it returned are valid pointers
appIdsArray[i] = appDataItersArray[treeSize-i-1]->appId;
}
delete[] appDataItersArray;
// Got everything we need, return it to the user
*numOfApps = treeSize;
*apps = appIdsArray;
return SUCCESS;
}
StatusType Statistics::UpdateDownloads(int groupBase, int multiplyFactor) {
if (groupBase < 1 || multiplyFactor <= 0) {
return INVALID_INPUT;
}
try {
// Update the complete tree and actually modify the download counters
doUpdateDownloadsInTree(&(mAppsByDownloadCount), groupBase,
multiplyFactor, true);
// Update mTopAppId and mTopAppDownloadCount if needed
updateTopAppData();
// Update the k OSVersion trees, this time not updating the actual data
for (OSVersionsList::Iterator it = mOSVersionsList.begin();
it != mOSVersionsList.end(); it++) {
AppsByDownloadCountTree* tree = &(it->versionAppsByDownloadCount);
doUpdateDownloadsInTree(tree, groupBase, multiplyFactor, false);
mOSVersionsList.updateVersionTopApp(it);
}
} catch(std::bad_alloc& e) {
return ALLOCATION_ERROR;
}
return SUCCESS;
}
void Statistics::doUpdateDownloadsInTree(AppsByDownloadCountTree* tree,
int groupBase, int multiplyFactor, bool shouldUpdateValues) {
// Dump the AppsByDownloadCountTree into an array
int treeSize = tree->getTreeSize();
// This may throw bad_alloc
AppsListIterator* apps = new AppsListIterator[treeSize];
int arraySize = tree->enumerateData(apps);
// Create two stacks using DoubleLinkedLists, one for holding the elements that
// were will not be modified and the second for storing only modified elements. Both stacks
// will already be sorted, as the original array is sorted.
AppsStack stack1;
AppsStack stack2;
// Increase the download count for each application that is associated
// with the provided groupBase and push into one of the stack in reverse,
// so that at the end the head element in both stacks will be the lowest
for (int i = (arraySize - 1) ; i >= 0 ; i--) {
if (apps[i]->appId % groupBase == 0) {
// Update the actual downloadCount values only if
// shouldUpdateValues is true, otherwise assume the values have
// already been updated and rearrange the tree
if (shouldUpdateValues) {
apps[i]->downloadCount *= multiplyFactor;
}
stack1.insertFront(apps[i]);
} else {
stack2.insertFront(apps[i]);
}
}
// Reuse the allocated array to merge the stacks, creating a sorted array
for (int i = 0 ; i < arraySize ; i++) {
// Get the download count from the top element in both stacks
// Select the next stack from which to pop into apps by the element
// with the lowest download count. If download counts are equal, select
// the element with highest id.
AppsStack* nextAppsStackToPopFrom = NULL;
if (stack1.isEmpty()) {
nextAppsStackToPopFrom = &stack2;
} else if (stack2.isEmpty()) {
nextAppsStackToPopFrom = &stack1;
} else {
// NOTE: Each of the stacks' elements is actually an
// AppsListIterator
AppsListIterator iter1 = *(*(stack1.begin()));
AppsListIterator iter2 = *(*(stack2.begin()));
int dlCount1 = iter1->downloadCount;
int appId1 = iter1->appId;
int dlCount2 = iter2->downloadCount;
int appId2 = iter2->appId;
if (dlCount1 < dlCount2) {
nextAppsStackToPopFrom = &stack1;
} else if (dlCount1 > dlCount2) {
nextAppsStackToPopFrom = &stack2;
} else {
// Both elements have the same download count, compare by app ID
if (appId1 > appId2) {
nextAppsStackToPopFrom = &stack1;
} else {
nextAppsStackToPopFrom = &stack2;
}
}
}
// Pop from nextAppsStackToPopFrom into apps
apps[i] = *(*(nextAppsStackToPopFrom->begin()));
nextAppsStackToPopFrom->removeFront();
}
// Restore the array into the tree
tree->arrayFillTree(apps);
// Make sure everything's deallocated
delete[] apps;
}
void Statistics::updateTopAppData() {
// Update mTopAppId and mTopAppDownloadCount if needed
try {
AppsListIterator* maxAppDataIterPtr = mAppsByDownloadCount.getMax();
AppsListIterator maxAppDataIter = *maxAppDataIterPtr;
mTopAppDownloadCount = maxAppDataIter->downloadCount;
mTopAppId = maxAppDataIter->appId;
} catch (const ElementNotFoundException& e) {
// This happens when there are no elements in mAppsByDownloadCount
// In this case update the versionTopApp to an invalid value
mTopAppDownloadCount = -1;
mTopAppId = INVALID_TOP_APP_ID;
}
}