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
|
/*
* Copyright 1998-1999, University of Notre Dame.
* Authors: Brian W. Barrett, Arun F. Rodrigues, Jeffrey M. Squyres,
* and Andrew Lumsdaine
*
* This file is part of XMPI
*
* You should have received a copy of the License Agreement for XMPI
* along with the software; see the file LICENSE. If not, contact
* Office of Research, University of Notre Dame, Notre Dame, IN 46556.
*
* Permission to modify the code and to distribute modified code is
* granted, provided the text of this NOTICE is retained, a notice that
* the code was modified is included with the above COPYRIGHT NOTICE and
* with the COPYRIGHT NOTICE in the LICENSE file, and that the LICENSE
* file is distributed with the modified code.
*
* LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED.
* By way of example, but not limitation, Licensor MAKES NO
* REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY
* PARTICULAR PURPOSE OR THAT THE USE OF THE LICENSED SOFTWARE COMPONENTS
* OR DOCUMENTATION WILL NOT INFRINGE ANY PATENTS, COPYRIGHTS, TRADEMARKS
* OR OTHER RIGHTS.
*
* Additional copyrights may follow.
*
* $Id: all_list.c,v 1.2 1999/11/08 06:20:19 bbarrett Exp $
*
* Function: - general purpose dynamic list package
* - assumes a fast malloc()
* - doubly linked
* - The dl_head structure is prepended to
* the list element given by the user.
* The user does not see dl_head.
* Thus, we often have to shift back and
* forth between the user element pointer
* and the dl_head pointer, which is used to
* traverse the list.
*
* - The user must supply a function
* that compares two list elements and returns
* -1 if the first element is less than the second,
* 0 if they are equal, and
* 1 if the first element is greater than the second.
* Lists are maintained in increasing element order.
*
* - functions that operate on a list:
*
* al_init - Allocate and initialize a new list.
* al_delete - Delete a list element.
* al_insert - Insert a list element.
* al_append - Insert an element at the end of a list.
* al_free - Blow away a list.
* al_find - Find a list element.
* al_next - Find the next list element.
* al_prev - Find the previous list element.
*/
#include <stdlib.h>
#include <string.h>
#include "all_list.h"
#include "lam.h"
/*
* al_init
*
* Function: - Initialize a new list descriptor.
* Accepts: - size of user element
* - comparison function
* Returns: - ptr to new list descriptor
*/
LIST *
al_init(elemsize, comp)
int4 elemsize; /* element size */
int4 (*comp)(); /* comparison function */
{
LIST *ald; /* new al descriptor */
ald = (LIST *) malloc(sizeof(LIST));
if (ald == 0) {
return((LIST *) 0);
}
ald->al_elemsize = elemsize;
ald->al_nelem = 0;
ald->al_ltop = 0;
ald->al_lbottom = 0;
ald->al_comp = comp;
return(ald);
}
/*
* al_delete
*
* Function: - Delete an element from a list.
* Accepts: - list descriptor ptr
* - ptr to existing element
* Returns: - 0 or ERROR
*/
int4
al_delete(ald, old)
LIST *ald; /* al descriptor */
void *old; /* old list element */
{
struct al_head *curr;
struct al_head *prev;
curr = ald->al_ltop;
prev = 0;
while ((curr != 0) && (al_body(curr) != (char *) old)) {
prev = curr;
curr = curr->al_next;
}
if (curr == 0) {
errno = EDELETE;
return(ERROR);
}
if (curr == ald->al_ltop) {
ald->al_ltop = curr->al_next;
} else {
prev->al_next = curr->al_next;
}
if (curr == ald->al_lbottom) {
ald->al_lbottom = prev;
} else {
curr->al_next->al_prev = prev;
}
free((char *) old - sizeof(struct al_head));
ald->al_nelem--;
return(0);
}
/*
* al_insert
*
* Function: - Insert an element into a list.
* - The user's new element is copied
* into space allocated internally for a
* new list element.
* Accepts: - list descriptor ptr
* - new element ptr
* Returns: - new list element ptr
*/
void *
al_insert(ald, unew)
LIST *ald; /* al descriptor */
void *unew; /* user's new element */
{
struct al_head *curr;
struct al_head *prev;
struct al_head *new_head; /* new internal list element */
char *new; /* user portion of list
element */
new_head = (struct al_head *) malloc((unsigned)
(ald->al_elemsize + sizeof(struct al_head)));
if (new_head == 0) {
return((void *) 0);
}
new = al_body(new_head);
memcpy(new, (char *) unew, ald->al_elemsize);
curr = ald->al_ltop;
prev = 0;
while ((curr != 0) &&
(((*(ald->al_comp))(new, al_body(curr))) >= 0)) {
prev = curr;
curr = curr->al_next;
}
new_head->al_next = curr;
new_head->al_prev = prev;
if (curr == ald->al_ltop) {
ald->al_ltop = new_head;
} else {
prev->al_next = new_head;
}
if (curr == 0) {
ald->al_lbottom = new_head;
} else {
curr->al_prev = new_head;
}
ald->al_nelem++;
return((void *) new);
}
/*
* al_append
*
* Function: - Append a new element to a list.
* - Element is added at the end of the list.
* - A new list element is allocated internally
* and the user supplied element is copied,
* as with al_insert().
* Accepts: - list descriptor ptr
* - new element ptr
* Returns: - new list element ptr
*/
void *
al_append(ald, unew)
LIST *ald; /* al descriptor */
void *unew; /* user's new element */
{
struct al_head *new_head; /* new internal list element */
char *new; /* user portion of list
element */
new_head = (struct al_head *) malloc((unsigned)
(ald->al_elemsize + sizeof(struct al_head)));
if (new_head == 0) {
return((void *) 0);
}
new = al_body(new_head);
memcpy(new, unew, ald->al_elemsize);
new_head->al_next = 0;
new_head->al_prev = ald->al_lbottom;
if (ald->al_lbottom != 0) {
ald->al_lbottom->al_next = new_head;
} else {
ald->al_ltop = new_head;
}
ald->al_lbottom = new_head;
ald->al_nelem++;
return((void *) new);
}
/*
* al_free
*
* Function: - Free all list elements and list descriptor.
* - Effectively, blow away the list.
* Accepts: - list descriptor ptr
* Returns: - 0
*/
int4
al_free(ald)
LIST *ald; /* al descriptor */
{
struct al_head *curr;
struct al_head *next;
curr = ald->al_ltop;
while (curr != 0) {
next = curr->al_next;
free((char *) curr);
curr = next;
}
free((char *) ald);
return(0);
}
/*
* al_find
*
* Function: - Find a list element that matches the
* user supplied element's key.
* - The user supplied comparison function
* is employed to determine equality.
* Accepts: - list descriptor ptr
* - search key element ptr
* Returns: - found list element ptr
*/
void *
al_find(ald, key)
LIST *ald;
void *key;
{
struct al_head *curr;
curr = ald->al_ltop;
while ((curr != 0) && ((*(ald->al_comp))(key, al_body(curr)))) {
curr = curr->al_next;
}
return(curr ? (void *) al_body(curr) : (void *) 0);
}
/*
* al_next
*
* Function: - find the next element in a list
* Accepts: - list descriptor ptr
* - existing list element ptr
* Returns: - next list element ptr
*/
void *
al_next(ald, old)
LIST *ald;
void *old;
{
struct al_head *curr;
curr = (struct al_head *) ((char *) old - sizeof(struct al_head));
return(curr->al_next ? (void *) al_body(curr->al_next) : (void *) 0);
}
/*
* al_prev
*
* Function: - find the previous element in a list
* Accepts: - list descriptor ptr
* - existing list element ptr
* Returns: - previous list element ptr
*/
void *
al_prev(ald, old)
LIST *ald;
void *old;
{
struct al_head *curr;
curr = (struct al_head *) ((char *) old - sizeof(struct al_head));
return((void *) al_body(curr->al_prev));
}
|