[go: up one dir, main page]

Menu

[r369]: / main / src / osplist.c  Maximize  Restore  History

Download this file

408 lines (363 with data), 13.4 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
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
/**************************************************************************
*** COPYRIGHT (c) 2002 by TransNexus, Inc. ***
*** ***
*** This software is property of TransNexus, Inc. ***
*** This software is freely available under license from TransNexus. ***
*** The license terms and conditions for free use of this software by ***
*** third parties are defined in the OSP Toolkit Software License ***
*** Agreement (LICENSE.txt). Any use of this software by third ***
*** parties, which does not comply with the terms and conditions of the ***
*** OSP Toolkit Software License Agreement is prohibited without ***
*** the prior, express, written consent of TransNexus, Inc. ***
*** ***
*** Thank you for using the OSP ToolKit(TM). Please report any bugs, ***
*** suggestions or feedback to support@transnexus.com ***
*** ***
**************************************************************************/
/*
* osplist.c - Utility functions for linked lists.
*/
#include "osp/osp.h"
#include "osp/osplist.h"
/*
* The following functions implement a fairly straightforward
* linked list, though there is a small twist. Specifically,
* a la Knuth, the List structure actually points to the last
* item on the list, which is then circularly linked to the
* first item. This approach minimizes the time needed to
* find either the front (2 memory references) or back (1
* memory reference) of the list.
*
* List Head: ---------------------------------+
* |
* v
* +-------+ +-------+ +-------+
* +--->| Item1 |--->| Item2 |---> ... --->| ItemN |---+
* | +-------+ +-------+ +-------+ |
* +---------------------------------------------------+
*
*/
/*
* Many of the following functions are also implemented as
* macros for speed. If so implemented, the macro implementation
* takes precedence. To force the use of the function
* implementation (e.g. for debugging), simply comment out
* the macro definition in osplist.h.
*/
/* */
/*-----------------------------------------------------------------------*/
/* OSPPListLinkNew() - initialize a list link */
/*-----------------------------------------------------------------------*/
void /* no return value */
OSPPListLinkNew(
OSPTLISTLINK *ospvLink /* address of link to initialize */
)
{
if (ospvLink != OSPC_OSNULL)
{
/* just NULL out the link pointer */
ospvLink->ospmLinkNext = OSPC_OSNULL;
}
}
/* */
/*-----------------------------------------------------------------------*/
/* OSPPListNew() - initialize a list */
/*-----------------------------------------------------------------------*/
void /* no return value */
OSPPListNew(
OSPTLIST *ospvList /* address of list to initialize */
)
{
if (ospvList != OSPC_OSNULL)
{
/* just NULL out the list pointer */
*ospvList = OSPC_OSNULL;
}
}
/* */
/*-----------------------------------------------------------------------*/
/* OSPPListDelete() - clean up for a list that's not needed */
/*-----------------------------------------------------------------------*/
void /* no return value */
OSPPListDelete(
OSPTLIST *ospvList /* address of list to destroy */
)
{
if(ospvList != OSPC_OSNULL)
{
/* check to see that the list is empty */
if (*ospvList == OSPC_OSNULL)
{
/* NULL out the list pointer */
*ospvList = OSPC_OSNULL;
}
}
}
/* */
/*-----------------------------------------------------------------------*/
/* OSPPListEmpty() - is a list empty? */
/*-----------------------------------------------------------------------*/
unsigned /* non-zero if empty, zero otherwise */
OSPPListEmpty(
OSPTLIST *ospvList /* list to check */
)
{
unsigned ospvEmpty = OSPC_TRUE;
if (ospvList != OSPC_OSNULL)
{
ospvEmpty = (*ospvList == OSPC_OSNULL);
}
return(ospvEmpty);
}
/* */
/*-----------------------------------------------------------------------*/
/* OSPPListLast() - returns last item on a list */
/*-----------------------------------------------------------------------*/
void * /* returns pointer to item or NULL */
OSPPListLast(
OSPTLIST *ospvList /* list to reference */
)
{
/* see introductory comment on list structure at beginning of file */
OSPTLISTLINK *ospvLast = OSPC_OSNULL;
if (ospvList != OSPC_OSNULL)
{
ospvLast = *ospvList;
}
return(ospvLast);
}
/* */
/*-----------------------------------------------------------------------*/
/* OSPPListFirst() - returns first item on list */
/*-----------------------------------------------------------------------*/
void * /* returns pointer to item or null */
OSPPListFirst(
OSPTLIST *ospvList /* list to reference */
)
{
/* see introductory comment on list structure at beginning of file */
OSPTLISTLINK *ospvFirst = OSPC_OSNULL; /* item to return */
if (ospvList != OSPC_OSNULL)
{
if (OSPPListEmpty(ospvList))
{
ospvFirst = OSPC_OSNULL;
}
else
{
ospvFirst = ((OSPTLISTLINK *)(*ospvList))->ospmLinkNext;
}
}
return(ospvFirst);
}
/* */
/*-----------------------------------------------------------------------*/
/* OSPPListNext() - returns next item on list without removing any item */
/*-----------------------------------------------------------------------*/
void * /* returns pointer to item or null */
OSPPListNext(
OSPTLIST *ospvList, /* list to reference */
void *ospvItem /* current item */
)
{
/* see introductory comment on list structure at beginning of file */
OSPTLISTLINK *ospvNext = OSPC_OSNULL; /* item to return */
if(ospvList != OSPC_OSNULL)
{
if (ospvItem != OSPC_OSNULL)
{
if (OSPPListLast(ospvList) == ospvItem)
{
ospvNext = OSPC_OSNULL;
}
else
{
ospvNext = ((OSPTLISTLINK *)ospvItem)->ospmLinkNext;
}
}
}
return(ospvNext);
}
/* */
/*-----------------------------------------------------------------------*/
/* OSPPListMove() - move list contents from one list to another */
/*-----------------------------------------------------------------------*/
void /* no return */
OSPPListMove(
OSPTLIST *ospvDst, /* destination list */
OSPTLIST *ospvSrc /* source list */
)
{
if (ospvDst != OSPC_OSNULL)
{
if (ospvSrc != OSPC_OSNULL)
{
*ospvDst = *ospvSrc;
OSPPListNew(ospvSrc);
}
}
}
/* */
/*-----------------------------------------------------------------------*/
/* OSPPListAppend() - add item to end of list */
/*-----------------------------------------------------------------------*/
void /* no return value */
OSPPListAppend(
OSPTLIST *ospvList, /* list to which item is to be added */
void *ospvItem /* item to add */
)
{
/* see introductory comment on list structure at beginning of file */
if (ospvList != OSPC_OSNULL)
{
if (ospvItem != OSPC_OSNULL)
{
if (OSPPListEmpty(ospvList))
{
((OSPTLISTLINK *)ospvItem)->ospmLinkNext = (OSPTLISTLINK *)ospvItem;
}
else
{
((OSPTLISTLINK *)ospvItem)->ospmLinkNext =
((OSPTLISTLINK *)(*ospvList))->ospmLinkNext;
((OSPTLISTLINK *)(*ospvList))->ospmLinkNext = (OSPTLISTLINK *)ospvItem;
}
*ospvList = (OSPTLISTLINK *)ospvItem;
}
}
}
/* */
/*-----------------------------------------------------------------------*/
/* OSPPListRemove() */
/*-----------------------------------------------------------------------*/
void * /* returns item removed or NULL */
OSPPListRemove(
OSPTLIST *ospvList
)
{
/* see introductory comment on list structure at beginning of file */
OSPTLISTLINK *ospvItem = OSPC_OSNULL; /* item to return */
if (ospvList != OSPC_OSNULL)
{
if (OSPPListEmpty(ospvList))
{
ospvItem = OSPC_OSNULL;
}
else if (OSPPListFirst(ospvList) == OSPPListLast(ospvList))
{
ospvItem = *ospvList;
*ospvList = OSPC_OSNULL;
ospvItem->ospmLinkNext = OSPC_OSNULL;
}
else
{
ospvItem = ((OSPTLISTLINK *)(*ospvList))->ospmLinkNext;
((OSPTLISTLINK *)(*ospvList))->ospmLinkNext =
ospvItem->ospmLinkNext;
ospvItem->ospmLinkNext = OSPC_OSNULL;
}
}
return(ospvItem);
}
/* */
/*-----------------------------------------------------------------------*/
/* OSPPListNextToLast() - returns next to last item */
/*-----------------------------------------------------------------------*/
void * /* returns item or NULL */
OSPPListNextToLast(
OSPTLIST *ospvList
)
{
void *lastitem = OSPC_OSNULL,
*curritem = OSPC_OSNULL,
*nextolast = OSPC_OSNULL;
lastitem = OSPPListLast(ospvList);
curritem = OSPPListFirst(ospvList);
while (curritem != OSPC_OSNULL &&
((OSPTLISTLINK *)curritem)->ospmLinkNext != lastitem)
curritem = OSPPListNext(ospvList, curritem);
nextolast = curritem;
return nextolast;
}
/* */
/*-----------------------------------------------------------------------*/
/* OSPPListRemoveSpecificItem() - removes a specific item */
/*-----------------------------------------------------------------------*/
void * /* returns item removed or NULL */
OSPPListRemoveSpecificItem(
OSPTLIST *ospvList,
void *ospvItem
)
{
/* see introductory comment on list structure at beginning of file */
void *curritem = OSPC_OSNULL,
*previtem = OSPC_OSNULL;
if (ospvList != OSPC_OSNULL)
{
if (OSPPListEmpty(ospvList))
{
ospvItem = OSPC_OSNULL;
}
else
{
previtem = curritem = OSPPListFirst(ospvList);
if (ospvItem == curritem && curritem == OSPPListLast(ospvList))
{
ospvItem = (void *)*ospvList;
*ospvList = OSPC_OSNULL;
((OSPTLISTLINK *)ospvItem)->ospmLinkNext = OSPC_OSNULL;
}
else
{
for (; curritem != OSPC_OSNULL;
curritem = OSPPListNext(ospvList,curritem))
{
if (curritem == ospvItem)
{
/* if first item in list */
if (curritem == previtem)
{
ospvItem = ((OSPTLISTLINK *)(*ospvList))->ospmLinkNext;
((OSPTLISTLINK *)(*ospvList))->ospmLinkNext =
((OSPTLISTLINK *)ospvItem)->ospmLinkNext;
((OSPTLISTLINK *)ospvItem)->ospmLinkNext = OSPC_OSNULL;
}
else
{
/* if last item in list */
if (curritem == OSPPListLast(ospvList))
{
ospvItem = (void *)*ospvList;
previtem = OSPPListNextToLast(ospvList);
*ospvList = (OSPTLIST)previtem;
}
((OSPTLISTLINK *)previtem)->ospmLinkNext =
((OSPTLISTLINK *)ospvItem)->ospmLinkNext;
}
break;
}
previtem = curritem;
}
}
}
}
return(ospvItem);
}
/* */
/*-----------------------------------------------------------------------*/
/* OSPPListCount() - returns list count */
/*-----------------------------------------------------------------------*/
unsigned /* returns list count */
OSPPListCount(
OSPTLIST *ospvList)
{
unsigned count = 0;
void *item = OSPC_OSNULL;
for (item = OSPPListFirst(ospvList);
item != OSPC_OSNULL;
item = OSPPListNext(ospvList, item))
{
count++;
}
return count;
}