b73bbed22b8edddafa9949a13d2e375c2a9b345e
[platform/upstream/nodejs.git] / lib / _linklist.js
1 // Copyright Joyent, Inc. and other Node contributors.
2 //
3 // Permission is hereby granted, free of charge, to any person obtaining a
4 // copy of this software and associated documentation files (the
5 // "Software"), to deal in the Software without restriction, including
6 // without limitation the rights to use, copy, modify, merge, publish,
7 // distribute, sublicense, and/or sell copies of the Software, and to permit
8 // persons to whom the Software is furnished to do so, subject to the
9 // following conditions:
10 //
11 // The above copyright notice and this permission notice shall be included
12 // in all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
17 // NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18 // DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19 // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20 // USE OR OTHER DEALINGS IN THE SOFTWARE.
21
22 function init(list) {
23   list._idleNext = list;
24   list._idlePrev = list;
25 }
26 exports.init = init;
27
28
29 // show the most idle item
30 function peek(list) {
31   if (list._idlePrev == list) return null;
32   return list._idlePrev;
33 }
34 exports.peek = peek;
35
36
37 // remove the most idle item from the list
38 function shift(list) {
39   var first = list._idlePrev;
40   remove(first);
41   return first;
42 }
43 exports.shift = shift;
44
45
46 // remove a item from its list
47 function remove(item) {
48   if (item._idleNext) {
49     item._idleNext._idlePrev = item._idlePrev;
50   }
51
52   if (item._idlePrev) {
53     item._idlePrev._idleNext = item._idleNext;
54   }
55
56   item._idleNext = null;
57   item._idlePrev = null;
58 }
59 exports.remove = remove;
60
61
62 // remove a item from its list and place at the end.
63 function append(list, item) {
64   remove(item);
65   item._idleNext = list._idleNext;
66   list._idleNext._idlePrev = item;
67   item._idlePrev = list;
68   list._idleNext = item;
69 }
70 exports.append = append;
71
72
73 function isEmpty(list) {
74   return list._idleNext === list;
75 }
76 exports.isEmpty = isEmpty;