summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/db/mork/morkDeque.h
blob: 54e50802546345113eedecee0960999ddc85236f (plain)
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
/*************************************************************************
This software is part of a public domain IronDoc source code distribution,
and is provided on an "AS IS" basis, with all risks borne by the consumers
or users of the IronDoc software.  There are no warranties, guarantees, or
promises about quality of any kind; and no remedies for failure exist.

Permission is hereby granted to use this IronDoc software for any purpose
at all, without need for written agreements, without royalty or license
fees, and without fees or obligations of any other kind.  Anyone can use,
copy, change and distribute this software for any purpose, and nothing is
required, implicitly or otherwise, in exchange for this usage.

You cannot apply your own copyright to this software, but otherwise you
are encouraged to enjoy the use of this software in any way you see fit.
However, it would be rude to remove names of developers from the code.
(IronDoc is also known by the short name "Fe" and a longer name "Ferrum",
which are used interchangeably with the name IronDoc in the sources.)
*************************************************************************/
/*
 * File:      morkDeque.h
 * Contains:  Ferrum deque (double ended queue (linked list))
 *
 * Copied directly from public domain IronDoc, with minor naming tweaks:
 * Designed and written by David McCusker, but all this code is public domain.
 * There are no warranties, no guarantees, no promises, and no remedies.
 */

#ifndef _MORKDEQUE_
#define _MORKDEQUE_ 1

#ifndef _MORK_
#  include "mork.h"
#endif

/*=============================================================================
 * morkNext: linked list node for very simple, singly-linked list
 */

class morkNext /*d*/ {
 public:
  morkNext* mNext_Link;

 public:
  explicit morkNext(int inZero) : mNext_Link(0) {}

  explicit morkNext(morkNext* ioLink) : mNext_Link(ioLink) {}

  morkNext();  // mNext_Link( 0 ), { }

 public:
  morkNext* GetNextLink() const { return mNext_Link; }

 public:  // link memory management methods
  static void* MakeNewNext(size_t inSize, nsIMdbHeap& ioHeap, morkEnv* ev);
  void ZapOldNext(morkEnv* ev, nsIMdbHeap* ioHeap);

 public:  // link memory management operators
  void* operator new(size_t inSize, nsIMdbHeap& ioHeap,
                     morkEnv* ev) noexcept(true) {
    return morkNext::MakeNewNext(inSize, ioHeap, ev);
  }

  void operator delete(void* ioAddress)  // DO NOT CALL THIS, hope to crash:
  {
    ((morkNext*)0)->ZapOldNext((morkEnv*)0, (nsIMdbHeap*)0);
  }  // boom
};

/*=============================================================================
 * morkList: simple, singly-linked list
 */

/*| morkList: a list of singly-linked members (instances of morkNext), where
**| the number of list members might be so numerous that we must about cost
**| for two pointer link slots per member (as happens with morkLink).
**|
**|| morkList is intended to support lists of changes in morkTable, where we
**| are worried about the space cost of representing such changes. (Later we
**| can use an array instead, when we get even more worried, to avoid cost
**| of link slots at all, per member).
**|
**|| Do NOT create cycles in links using this list class, since we do not
**| deal with them very nicely.
|*/
class morkList /*d*/ {
 public:
  morkNext* mList_Head;  // first link in the list
  morkNext* mList_Tail;  // last link in the list

 public:
  morkNext* GetListHead() const { return mList_Head; }
  morkNext* GetListTail() const { return mList_Tail; }

  mork_bool IsListEmpty() const { return (mList_Head == 0); }
  mork_bool HasListMembers() const { return (mList_Head != 0); }

 public:
  morkList();  // : mList_Head( 0 ), mList_Tail( 0 ) { }

  void CutAndZapAllListMembers(morkEnv* ev, nsIMdbHeap* ioHeap);
  // make empty list, zapping every member by calling ZapOldNext()

  void CutAllListMembers();
  // just make list empty, dropping members without zapping

 public:
  morkNext* PopHead();  // cut head of list

  // Note we don't support PopTail(), so use morkDeque if you need that.

  void PushHead(morkNext* ioLink);  // add to head of list
  void PushTail(morkNext* ioLink);  // add to tail of list
};

/*=============================================================================
 * morkLink: linked list node embedded in objs to allow insertion in morkDeques
 */

class morkLink /*d*/ {
 public:
  morkLink* mLink_Next;
  morkLink* mLink_Prev;

 public:
  explicit morkLink(int inZero) : mLink_Next(0), mLink_Prev(0) {}

  morkLink();  // mLink_Next( 0 ), mLink_Prev( 0 ) { }

 public:
  morkLink* Next() const { return mLink_Next; }
  morkLink* Prev() const { return mLink_Prev; }

  void SelfRefer() { mLink_Next = mLink_Prev = this; }
  void Clear() { mLink_Next = mLink_Prev = 0; }

  void AddBefore(morkLink* old) {
    ((old)->mLink_Prev->mLink_Next = (this))->mLink_Prev = (old)->mLink_Prev;
    ((this)->mLink_Next = (old))->mLink_Prev = this;
  }

  void AddAfter(morkLink* old) {
    ((old)->mLink_Next->mLink_Prev = (this))->mLink_Next = (old)->mLink_Next;
    ((this)->mLink_Prev = (old))->mLink_Next = this;
  }

  void Remove() {
    (mLink_Prev->mLink_Next = mLink_Next)->mLink_Prev = mLink_Prev;
  }

 public:  // link memory management methods
  static void* MakeNewLink(size_t inSize, nsIMdbHeap& ioHeap, morkEnv* ev);
  void ZapOldLink(morkEnv* ev, nsIMdbHeap* ioHeap);

 public:  // link memory management operators
  void* operator new(size_t inSize, nsIMdbHeap& ioHeap,
                     morkEnv* ev) noexcept(true) {
    return morkLink::MakeNewLink(inSize, ioHeap, ev);
  }
};

/*=============================================================================
 * morkDeque: doubly linked list modeled after VAX queue instructions
 */

class morkDeque /*d*/ {
 public:
  morkLink mDeque_Head;

 public:        // construction
  morkDeque();  // { mDeque_Head.SelfRefer(); }

 public:  // methods
  morkLink* RemoveFirst();

  morkLink* RemoveLast();

  morkLink* At(mork_pos index) const; /* one-based, not zero-based */

  mork_pos IndexOf(const morkLink* inMember) const;
  /* one-based index ; zero means member is not in deque */

  mork_num Length() const;

  /* the following method is more efficient for long lists: */
  int LengthCompare(mork_num inCount) const;
  /* -1: length < count, 0: length == count,  1: length > count */

 public:  // inlines
  mork_bool IsEmpty() const {
    return (mDeque_Head.mLink_Next == (morkLink*)&mDeque_Head);
  }

  morkLink* After(const morkLink* old) const {
    return (((old)->mLink_Next != &mDeque_Head) ? (old)->mLink_Next
                                                : (morkLink*)0);
  }

  morkLink* Before(const morkLink* old) const {
    return (((old)->mLink_Prev != &mDeque_Head) ? (old)->mLink_Prev
                                                : (morkLink*)0);
  }

  morkLink* First() const {
    return ((mDeque_Head.mLink_Next != &mDeque_Head) ? mDeque_Head.mLink_Next
                                                     : (morkLink*)0);
  }

  morkLink* Last() const {
    return ((mDeque_Head.mLink_Prev != &mDeque_Head) ? mDeque_Head.mLink_Prev
                                                     : (morkLink*)0);
  }

  /*
  From IronDoc documentation for AddFirst:
  +--------+   +--------+      +--------+   +--------+   +--------+
  | h.next |-->| b.next |      | h.next |-->| a.next |-->| b.next |
  +--------+   +--------+  ==> +--------+   +--------+   +--------+
  | h.prev |<--| b.prev |      | h.prev |<--| a.prev |<--| b.prev |
  +--------+   +--------+      +--------+   +--------+   +--------+
  */

  void AddFirst(morkLink* in) /*i*/
  {
    (mDeque_Head.mLink_Next->mLink_Prev = in)->mLink_Next =
        mDeque_Head.mLink_Next;
    (in->mLink_Prev = &mDeque_Head)->mLink_Next = in;
  }
  /*
  From IronDoc documentation for AddLast:
  +--------+   +--------+      +--------+   +--------+   +--------+
  | y.next |-->| h.next |      | y.next |-->| z.next |-->| h.next |
  +--------+   +--------+  ==> +--------+   +--------+   +--------+
  | y.prev |<--| h.prev |      | y.prev |<--| z.prev |<--| h.prev |
  +--------+   +--------+      +--------+   +--------+   +--------+
  */

  void AddLast(morkLink* in) {
    (mDeque_Head.mLink_Prev->mLink_Next = in)->mLink_Prev =
        mDeque_Head.mLink_Prev;
    (in->mLink_Next = &mDeque_Head)->mLink_Prev = in;
  }
};

#endif /* _MORKDEQUE_ */