-
Notifications
You must be signed in to change notification settings - Fork 8
/
list.js
1163 lines (1023 loc) · 32.6 KB
/
list.js
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
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// PixlServer Storage System - List Mixin
// Copyright (c) 2015 Joseph Huckaby
// Released under the MIT License
var util = require("util");
var async = require('async');
var Class = require("pixl-class");
var Tools = require("pixl-tools");
var ListSplice = require("./list-splice.js");
// support for older node versions
var isArray = Array.isArray || util.isArray;
module.exports = Class.create({
__mixins: [ ListSplice ],
listCreate: function(key, opts, callback) {
// Create new list
var self = this;
if (!opts) opts = {};
if (!opts.page_size) opts.page_size = this.listItemsPerPage;
opts.first_page = 0;
opts.last_page = 0;
opts.length = 0;
opts.type = 'list';
this.logDebug(9, "Creating new list: " + key, opts);
this.get(key, function(err, list) {
if (list) {
// list already exists
return callback(null, list);
}
self.put( key, opts, function(err) {
if (err) return callback(err);
// create first page
self.put( key + '/0', { type: 'list_page', items: [] }, function(err) {
if (err) return callback(err);
else callback(null, opts);
} );
} ); // header created
} ); // get check
},
_listLoad: function(key, create_opts, callback) {
// Internal method, load list root, create if doesn't exist
var self = this;
if (create_opts && (typeof(create_opts) != 'object')) create_opts = {};
this.logDebug(9, "Loading list: " + key);
this.get(key, function(err, data) {
if (data) {
// list already exists
callback(null, data);
}
else if (create_opts && err && (err.code == "NoSuchKey")) {
// create new list, ONLY if record was not found (and not some other error)
self.logDebug(9, "List not found, creating it: " + key, create_opts);
self.listCreate(key, create_opts, function(err, data) {
if (err) callback(err, null);
else callback( null, data );
} );
}
else {
// no exist and no create, or some other error
self.logDebug(9, "List could not be loaded: " + key + ": " + err);
callback(err, null);
}
} ); // get
},
_listLoadPage: function(key, idx, create, callback) {
// Internal method, load page from list, create if doesn't exist
var self = this;
var page_key = key + '/' + idx;
this.logDebug(9, "Loading list page: " + page_key);
this.get(page_key, function(err, data) {
if (data) {
// list page already exists
callback(null, data);
}
else if (create && err && (err.code == "NoSuchKey")) {
// create new list page, ONLY if record was not found (and not some other error)
self.logDebug(9, "List page not found, creating it: " + page_key);
callback( null, { type: 'list_page', items: [] } );
}
else {
// no exist and no create
self.logDebug(9, "List page could not be loaded: " + page_key + ": " + err);
callback(err, null);
}
} ); // get
},
_listLock: function(key, wait, callback) {
// internal list lock wrapper
// uses unique key prefix so won't deadlock with user locks
this.lock( '|'+key, wait, callback );
},
_listUnlock: function(key) {
// internal list unlock wrapper
this.unlock( '|'+key );
},
_listShareLock: function(key, wait, callback) {
// internal list shared lock wrapper
// uses unique key prefix so won't deadlock with user locks
this.shareLock( 'C|'+key, wait, callback );
},
_listShareUnlock: function(key) {
// internal list shared unlock wrapper
this.shareUnlock( 'C|'+key );
},
listPush: function(key, items, create_opts, callback) {
// Push new items onto end of list
var self = this;
if (!callback && (typeof(create_opts) == 'function')) {
callback = create_opts;
create_opts = {};
}
var list = null;
var page = null;
if (!isArray(items)) items = [items];
this.logDebug(9, "Pushing " + items.length + " items onto end of list: " + key, this.debugLevel(10) ? items : null);
this._listLock(key, true, function() {
async.series([
function(callback) {
// first load list header
self._listLoad(key, create_opts, function(err, data) {
list = data;
callback(err, data);
} );
},
function(callback) {
// now load last page in list
self._listLoadPage(key, list.last_page, 'create', function(err, data) {
page = data;
callback(err, data);
} );
}
],
function(err, results) {
// list and page loaded, proceed with push
if (err) {
self._listUnlock(key);
return callback(err, null);
}
// populate tasks array with records to save
var tasks = [];
// split items into pages
var item = null;
var count = 0;
while (item = items.shift()) {
// make sure item is an object
if (typeof(item) != 'object') continue;
// if last page is full, we need to create a new one
if (page.items.length >= list.page_size) {
// complete current page, queue for save
if (count) tasks.push({ key: key + '/' + list.last_page, data: page });
// add new page
list.last_page++;
page = { type: 'list_page', items: [] };
}
// push item onto list
page.items.push( item );
list.length++;
count++;
} // foreach item
if (!count) {
self._listUnlock(key);
return callback(new Error("No valid objects found to add."), null);
}
// add current page, and main list record
tasks.push({ key: key + '/' + list.last_page, data: page });
tasks.push({ key: key, data: list });
// save all pages and main list
var lastErr = null;
var q = async.queue(function (task, callback) {
self.put( task.key, task.data, callback );
}, self.concurrency );
q.drain = function() {
// all pages saved, complete
self._listUnlock(key);
callback(lastErr, list);
};
q.push( tasks, function(err) {
lastErr = err;
} );
} ); // loaded
} ); // locked
},
listUnshift: function(key, items, create_opts, callback) {
// Unshift new items onto beginning of list
var self = this;
if (!callback && (typeof(create_opts) == 'function')) {
callback = create_opts;
create_opts = {};
}
var list = null;
var page = null;
if (!isArray(items)) items = [items];
this.logDebug(9, "Unshifting " + items.length + " items onto beginning of list: " + key, this.debugLevel(10) ? items : null);
this._listLock( key, true, function() {
async.series([
function(callback) {
// first load list header
self._listLoad(key, create_opts, function(err, data) {
list = data;
callback(err, data);
} );
},
function(callback) {
// now load first page in list
self._listLoadPage(key, list.first_page, 'create', function(err, data) {
page = data;
callback(err, data);
} );
}
],
function(err, results) {
// list and page loaded, proceed with unshift
if (err) {
self._listUnlock(key);
return callback(err, null);
}
// populate tasks array with records to save
var tasks = [];
// split items into pages
var item = null;
var count = 0;
while (item = items.pop()) {
// make sure item is an object
if (typeof(item) != 'object') continue;
// if last page is full, we need to create a new one
if (page.items.length >= list.page_size) {
// complete current page, queue for save
if (count) tasks.push({ key: key + '/' + list.first_page, data: page });
// add new page
list.first_page--;
page = { type: 'list_page', items: [] };
}
// push item onto list
page.items.unshift( item );
list.length++;
count++;
} // foreach item
if (!count) {
self._listUnlock(key);
return callback(new Error("No valid objects found to add."), null);
}
// add current page, and main list record
tasks.push({ key: key + '/' + list.first_page, data: page });
tasks.push({ key: key, data: list });
// save all pages and main list
var lastErr = null;
var q = async.queue(function (task, callback) {
self.put( task.key, task.data, callback );
}, self.concurrency );
q.drain = function() {
// all pages saved, complete
self._listUnlock(key);
callback(lastErr, list);
};
q.push( tasks, function(err) {
lastErr = err;
} );
} ); // loaded
} ); // locked
},
listPop: function(key, callback) {
// Pop last item off end of list, shrink as necessary, return item
var self = this;
var list = null;
var page = null;
this.logDebug(9, "Popping item off end of list: " + key);
this._listLock( key, true, function() {
async.series([
function(callback) {
// first load list header
self._listLoad(key, false, function(err, data) {
list = data;
callback(err, data);
} );
},
function(callback) {
// now load last page in list
self._listLoadPage(key, list.last_page, false, function(err, data) {
page = data;
callback(err, data);
} );
}
],
function(err, results) {
// list and page loaded, proceed with pop
if (err) {
self._listUnlock(key);
return callback(err, null);
}
if (!page.items.length) {
self._listUnlock(key);
return callback( null, null );
}
var actions = [];
var item = page.items.pop();
var old_last_page = list.last_page;
if (!page.items.length) {
// out of items in this page, delete page, adjust list
if (list.last_page > list.first_page) {
list.last_page--;
actions.push(
function(callback) { self.delete( key + '/' + old_last_page, callback ); }
);
}
else {
// list is empty, create new first page
actions.push(
function(callback) { self.put( key + '/' + old_last_page, { type: 'list_page', items: [] }, callback ); }
);
}
}
else {
// still have items left, save page
actions.push(
function(callback) { self.put( key + '/' + list.last_page, page, callback ); }
);
}
// shrink list
list.length--;
actions.push(
function(callback) { self.put( key, list, callback ); }
);
// save everything in parallel
async.parallel( actions, function(err, results) {
// success, fire user callback
self._listUnlock(key);
callback(err, err ? null : item);
} ); // save complete
} ); // loaded
} ); // locked
},
listShift: function(key, callback) {
// Shift first item off beginning of list, shrink as necessary, return item
var self = this;
var list = null;
var page = null;
this.logDebug(9, "Shifting item off beginning of list: " + key);
this._listLock( key, true, function() {
async.series([
function(callback) {
// first load list header
self._listLoad(key, false, function(err, data) {
list = data;
callback(err, data);
} );
},
function(callback) {
// now load first page in list
self._listLoadPage(key, list.first_page, false, function(err, data) {
page = data;
callback(err, data);
} );
}
],
function(err, results) {
// list and page loaded, proceed with shift
if (err) {
self._listUnlock(key);
return callback(err, null);
}
if (!page.items.length) {
self._listUnlock(key);
return callback( null, null );
}
var actions = [];
var item = page.items.shift();
var old_first_page = list.first_page;
if (!page.items.length) {
// out of items in this page, delete page, adjust list
if (list.first_page < list.last_page) {
list.first_page++;
actions.push(
function(callback) { self.delete( key + '/' + old_first_page, callback ); }
);
}
else {
// list is empty, create new first page
actions.push(
function(callback) { self.put( key + '/' + old_first_page, { type: 'list_page', items: [] }, callback ); }
);
}
}
else {
// still have items left, save page
actions.push(
function(callback) { self.put( key + '/' + list.first_page, page, callback ); }
);
}
// shrink list
list.length--;
actions.push(
function(callback) { self.put( key, list, callback ); }
);
// save everything in parallel
async.parallel( actions, function(err, results) {
// success, fire user callback
self._listUnlock(key);
callback(err, err ? null : item);
} ); // save complete
} ); // loaded
} ); // locked
},
listGet: function(key, idx, len, callback) {
// Fetch chunk from list of any size, in any location
// Use negative idx to fetch from end of list
var self = this;
var list = null;
var page = null;
var items = [];
if (!this.started) return callback( new Error("Storage has not completed startup.") );
idx = parseInt( idx || 0 );
if (isNaN(idx)) return callback( new Error("Position must be an integer.") );
len = parseInt( len || 0 );
if (isNaN(len)) return callback( new Error("Length must be an integer.") );
this.logDebug(9, "Fetching " + len + " items at position " + idx + " from list: " + key);
async.series([
function(callback) {
// first we share lock
self._listShareLock(key, true, callback);
},
function(callback) {
// next load list header
self._listLoad(key, false, function(err, data) {
list = data;
callback(err, data);
} );
},
function(callback) {
// now load first page in list
self._listLoadPage(key, list.first_page, false, function(err, data) {
page = data;
callback(err, data);
} );
}
],
function(err, results) {
// list and page loaded, proceed with get
if (err) {
self._listShareUnlock(key);
return callback(err, null, list);
}
// apply defaults if applicable
if (!idx) idx = 0;
if (!len) len = list.length;
// range check
if (list.length && (idx >= list.length)) {
self._listShareUnlock(key);
return callback( new Error("Index out of range"), null, list );
}
// Allow user to get items from end of list
if (idx < 0) { idx += list.length; }
if (idx < 0) { idx = 0; }
if (idx + len > list.length) { len = list.length - idx; }
// First page is special, as it is variably sized
// and shifts the paging algorithm
while (idx < page.items.length) {
items.push( page.items[idx++] );
len--;
if (!len) break;
}
if (!len || (idx >= list.length)) {
// all items were on first page, return now
self._listShareUnlock(key);
return callback( null, items, list );
}
// we need items from other pages
var num_fp_items = page.items.length;
var chunk_size = list.page_size;
var first_page_needed = list.first_page + 1 + Math.floor((idx - num_fp_items) / chunk_size);
var last_page_needed = list.first_page + 1 + Math.floor(((idx - num_fp_items) + len - 1) / chunk_size);
var page_idx = first_page_needed;
async.whilst(
function() { return page_idx <= last_page_needed; },
function(callback) {
self._listLoadPage(key, page_idx, false, function(err, data) {
if (err) return callback(err);
var page = data;
var page_start_idx = num_fp_items + ((page_idx - list.first_page - 1) * chunk_size);
var local_idx = idx - page_start_idx;
while ((local_idx >= 0) && (local_idx < page.items.length)) {
items.push( page.items[local_idx++] );
idx++;
len--;
if (!len) break;
}
if (!len) page_idx = last_page_needed;
page_idx++;
callback();
} );
},
function(err) {
// all pages loaded
self._listShareUnlock(key);
if (err) return callback(err, null);
callback( null, items, list );
}
); // pages loaded
} ); // list loaded
},
listFind: function(key, criteria, callback) {
// Find single item in list given criteria -- WARNING: this can be slow with long lists
var self = this;
var num_crit = Tools.numKeys(criteria);
this.logDebug(9, "Locating item in list: " + key, criteria);
this._listShareLock(key, true, function() {
// share locked
self._listLoad(key, false, function(err, list) {
// list loaded, proceed
if (err) {
self._listShareUnlock(key);
return callback(err, null);
}
var item = null;
var item_idx = 0;
var page_idx = list.first_page;
if (!list.length) {
self._listShareUnlock(key);
return callback(null, null);
}
async.whilst(
function() { return page_idx <= list.last_page; },
function(callback) {
self._listLoadPage(key, page_idx, false, function(err, page) {
if (err) return callback(err, null);
// now scan page's items
for (var idx = 0, len = page.items.length; idx < len; idx++) {
var matches = 0;
for (var k in criteria) {
if (criteria[k].test) {
if (criteria[k].test(page.items[idx][k])) { matches++; }
}
else if (criteria[k] == page.items[idx][k]) { matches++; }
}
if (matches == num_crit) {
// we found our item!
item = page.items[idx];
idx = len;
page_idx = list.last_page;
}
else item_idx++;
} // foreach item
page_idx++;
callback();
} ); // page loaded
},
function(err) {
// all pages loaded
self._listShareUnlock(key);
if (err) return callback(err, null);
if (!item) item_idx = -1;
callback( null, item, item_idx );
}
); // whilst
} ); // loaded
} ); // _listShareLock
},
listFindCut: function(key, criteria, callback) {
// Find single object by criteria, and if found, delete it -- WARNING: this can be slow with long lists
var self = this;
// This is a two-part macro function, which performs a find followed by a splice,
// so we need an outer lock that lasts the entire duration of both ops, but we can't collide
// with the natural lock that splice invokes, so we must add an additional '|' lock prefix.
this._listLock( '|'+key, true, function() {
self.listFind(key, criteria, function(err, item, idx) {
if (err) {
self._listUnlock( '|'+key );
return callback(err, null);
}
if (!item) {
self._listUnlock( '|'+key );
return callback(new Error("Item not found"), null);
}
self.listSplice(key, idx, 1, null, function(err, items) {
self._listUnlock( '|'+key );
callback(err, items ? items[0] : null);
}); // splice
} ); // find
} ); // locked
},
listFindDelete: function(key, criteria, callback) {
// alias for listFindCut
return this.listFindCut(key, criteria, callback);
},
listFindReplace: function(key, criteria, new_item, callback) {
// Find single object by criteria, and if found, replace it -- WARNING: this can be slow with long lists
var self = this;
// This is a two-part macro function, which performs a find followed by a splice,
// so we need an outer lock that lasts the entire duration of both ops, but we can't collide
// with the natural lock that splice invokes, so we must add an additional '|' lock prefix.
this._listLock( '|'+key, true, function() {
self.listFind(key, criteria, function(err, item, idx) {
if (err) {
self._listUnlock( '|'+key );
return callback(err, null);
}
if (!item) {
self._listUnlock( '|'+key );
return callback(new Error("Item not found"), null);
}
self.listSplice(key, idx, 1, [new_item], function(err, items) {
self._listUnlock( '|'+key );
callback(err);
}); // splice
} ); // find
} ); // locked
},
listFindUpdate: function(key, criteria, updates, callback) {
// Find single object by criteria, and if found, update it -- WARNING: this can be slow with long lists
// Updates are merged into original item, with numerical increments starting with "+" or "-"
var self = this;
// This is a two-part macro function, which performs a find followed by a splice,
// so we need an outer lock that lasts the entire duration of both ops, but we can't collide
// with the natural lock that splice invokes, so we must add an additional '|' lock prefix.
this._listLock( '|'+key, true, function() {
self.listFind(key, criteria, function(err, item, idx) {
if (err) {
self._listUnlock( '|'+key );
return callback(err, null);
}
if (!item) {
self._listUnlock( '|'+key );
return callback(new Error("Item not found"), null);
}
// apply updates
for (var ukey in updates) {
var uvalue = updates[ukey];
if ((typeof(uvalue) == 'string') && (typeof(item[ukey]) == 'number') && uvalue.match(/^(\+|\-)([\d\.]+)$/)) {
var op = RegExp.$1;
var amt = parseFloat(RegExp.$2);
if (op == '+') item[ukey] += amt;
else item[ukey] -= amt;
}
else item[ukey] = uvalue;
}
self.listSplice(key, idx, 1, [item], function(err, items) {
self._listUnlock( '|'+key );
callback(err, item);
}); // splice
} ); // find
} ); // locked
},
listFindEach: function(key, criteria, iterator, callback) {
// fire iterator for every matching element in list, only load one page at a time
var self = this;
var num_crit = Tools.numKeys(criteria);
this.logDebug(9, "Locating items in list: " + key, criteria);
this._listShareLock(key, true, function() {
// share locked
self._listLoad(key, false, function(err, list) {
// list loaded, proceed
if (err) {
self._listShareUnlock(key);
callback(err);
return;
}
var page_idx = list.first_page;
var item_idx = 0;
async.whilst(
function() { return page_idx <= list.last_page; },
function(callback) {
// load each page
self._listLoadPage(key, page_idx++, false, function(err, page) {
if (err) return callback(err);
// iterate over page items
if (page && page.items && page.items.length) {
async.eachSeries( page.items, function(item, callback) {
// for each item, check against criteria
var matches = 0;
for (var k in criteria) {
if (criteria[k].test) {
if (criteria[k].test(item[k])) { matches++; }
}
else if (criteria[k] == item[k]) { matches++; }
}
if (matches == num_crit) {
iterator(item, item_idx++, callback);
}
else {
item_idx++;
callback();
}
}, callback );
}
else callback();
} ); // page loaded
},
function(err) {
// all pages iterated
self._listShareUnlock(key);
if (err) return callback(err);
else callback(null);
} // pages complete
); // whilst
} ); // loaded
} ); // _listShareLock
},
listDelete: function(key, entire, callback) {
// Delete entire list and all pages
var self = this;
this.logDebug(9, "Deleting list: " + key);
this._listLock( key, true, function() {
// locked
self._listLoad(key, false, function(err, list) {
// list loaded, proceed
if (err) {
self._listUnlock(key);
return callback(err, null);
}
var page_idx = list.first_page;
if (!entire) page_idx++; // skip first page, will be rewritten
async.whilst(
function() { return page_idx <= list.last_page; },
function(callback) {
// delete each page
self.delete( key + '/' + page_idx, function(err, data) {
page_idx++;
return callback(err);
} ); // delete
},
function(err) {
// all pages deleted
if (err) {
self._listUnlock(key);
return callback(err, null);
}
// delete list itself, or just clear it?
if (entire) {
// delete entire list
self.delete(key, function(err, data) {
// final delete complete
self._listUnlock(key);
callback(err);
} ); // deleted
} // entire
else {
// zero list for reuse
list.length = 0;
list.first_page = 0;
list.last_page = 0;
self.put( key, list, function(err, data) {
// finished saving list header
if (err) {
self._listUnlock(key);
return callback(err);
}
// now save a blank first page
self.put( key + '/0', { type: 'list_page', items: [] }, function(err, data) {
// save complete
self._listUnlock(key);
callback(err);
} ); // saved
} ); // saved header
} // reuse
} // pages deleted
); // whilst
} ); // loaded
} ); // locked
},
listGetInfo: function(key, callback) {
// Return info about list (number of items, etc.)
this._listLoad( key, false, callback );
},
listCopy: function(old_key, new_key, callback) {
// Copy list to new path (and all pages)
var self = this;
this.logDebug(9, "Copying list: " + old_key + " to " + new_key);
this._listLoad(old_key, false, function(err, list) {
// list loaded, proceed
if (err) {
callback(err);
return;
}
var page_idx = list.first_page;
async.whilst(
function() { return page_idx <= list.last_page; },
function(callback) {
// load each page
self._listLoadPage(old_key, page_idx, false, function(err, page) {
if (err) return callback(err);
// and copy it
self.copy( old_key + '/' + page_idx, new_key + '/' + page_idx, function(err, data) {
page_idx++;
return callback(err);
} ); // copy
} ); // page loaded
},
function(err) {
// all pages copied
if (err) return callback(err);
// now copy list header
self.copy(old_key, new_key, function(err, data) {
// final copy complete
callback(err);
} ); // deleted
} // pages copied
); // whilst
} ); // loaded
},
listRename: function(old_key, new_key, callback) {
// Copy, then delete list (and all pages)
var self = this;
this.logDebug(9, "Renaming list: " + old_key + " to " + new_key);
this.listCopy( old_key, new_key, function(err) {
// copy complete, now delete old list
if (err) return callback(err);
self.listDelete( old_key, true, callback );
} ); // copied
},
listEach: function(key, iterator, callback) {
// fire iterator for every element in list, only load one page at a time
var self = this;
this._listShareLock(key, true, function() {
// share locked
self._listLoad(key, false, function(err, list) {
// list loaded, proceed
if (err) {
self._listShareUnlock(key);
callback(err);
return;
}
var page_idx = list.first_page;
var item_idx = 0;
async.whilst(
function() { return page_idx <= list.last_page; },
function(callback) {
// load each page
self._listLoadPage(key, page_idx++, false, function(err, page) {
if (err) return callback(err);
// iterate over page items
if (page && page.items && page.items.length) {
async.eachSeries( page.items, function(item, callback) {
iterator(item, item_idx++, callback);
}, callback );
}
else callback();
} ); // page loaded
},
function(err) {
// all pages iterated
self._listShareUnlock(key);
if (err) return callback(err);
else callback(null);
} // pages complete
); // whilst
} ); // loaded
} ); // _listShareLock
},
listEachPage: function(key, iterator, callback) {
// fire iterator for every page in list
var self = this;
this._listShareLock(key, true, function() {
// share locked
self._listLoad(key, false, function(err, list) {
// list loaded, proceed
if (err) {
self._listShareUnlock(key);
callback(err);
return;
}
var page_idx = list.first_page;
var item_idx = 0;
async.whilst(
function() { return page_idx <= list.last_page; },
function(callback) {
// load each page
self._listLoadPage(key, page_idx++, false, function(err, page) {
if (err) return callback(err);
// call iterator for page items
if (page && page.items && page.items.length) {
iterator(page.items, callback);
}
else callback();
} ); // page loaded
},
function(err) {
// all pages iterated
self._listShareUnlock(key);
callback( err || null );
} // pages complete