hash.c 27.1 KB
Newer Older
D
Daniel Veillard 已提交
1
/*
2
 * hash.c: chained hash tables for domain and domain/connection deallocations
D
Daniel Veillard 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
 *
 * Reference: Your favorite introductory book on algorithms
 *
 * Copyright (C) 2000 Bjorn Reese and Daniel Veillard.
 *
 * Permission to use, copy, modify, and distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
 * MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE AUTHORS AND
 * CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER.
 *
 * Author: breese@users.sourceforge.net
18
 *         Daniel Veillard <veillard@redhat.com>
D
Daniel Veillard 已提交
19 20 21
 */

#include <string.h>
22
#include <stdlib.h>
23 24
#include <libxml/threads.h>
#include "internal.h"
D
Daniel Veillard 已提交
25 26 27 28 29 30 31 32 33
#include "hash.h"

#define MAX_HASH_LEN 8

/* #define DEBUG_GROW */

/*
 * A single entry in the hash table
 */
34 35 36 37
typedef struct _virHashEntry virHashEntry;
typedef virHashEntry *virHashEntryPtr;
struct _virHashEntry {
    struct _virHashEntry *next;
D
Daniel Veillard 已提交
38 39 40 41 42 43 44 45
    char *name;
    void *payload;
    int valid;
};

/*
 * The entire hash table
 */
46 47
struct _virHashTable {
    struct _virHashEntry *table;
D
Daniel Veillard 已提交
48 49 50 51 52
    int size;
    int nbElems;
};

/*
53
 * virHashComputeKey:
D
Daniel Veillard 已提交
54 55 56
 * Calculate the hash key
 */
static unsigned long
57 58
virHashComputeKey(virHashTablePtr table, const char *name)
{
D
Daniel Veillard 已提交
59 60
    unsigned long value = 0L;
    char ch;
61

D
Daniel Veillard 已提交
62
    if (name != NULL) {
63 64 65 66 67
        value += 30 * (*name);
        while ((ch = *name++) != 0) {
            value =
                value ^ ((value << 5) + (value >> 3) + (unsigned long) ch);
        }
D
Daniel Veillard 已提交
68 69 70 71 72
    }
    return (value % table->size);
}

/**
73
 * virHashCreate:
D
Daniel Veillard 已提交
74 75
 * @size: the size of the hash table
 *
76
 * Create a new virHashTablePtr.
D
Daniel Veillard 已提交
77 78 79
 *
 * Returns the newly created object, or NULL if an error occured.
 */
80
virHashTablePtr
81 82
virHashCreate(int size)
{
83
    virHashTablePtr table;
84

D
Daniel Veillard 已提交
85 86
    if (size <= 0)
        size = 256;
87

88
    table = malloc(sizeof(virHashTable));
D
Daniel Veillard 已提交
89 90
    if (table) {
        table->size = size;
91
        table->nbElems = 0;
92
        table->table = malloc(size * sizeof(virHashEntry));
D
Daniel Veillard 已提交
93
        if (table->table) {
94 95
            memset(table->table, 0, size * sizeof(virHashEntry));
            return (table);
D
Daniel Veillard 已提交
96 97 98
        }
        free(table);
    }
99
    return (NULL);
D
Daniel Veillard 已提交
100 101 102
}

/**
103
 * virHashGrow:
D
Daniel Veillard 已提交
104 105 106 107 108 109 110 111
 * @table: the hash table
 * @size: the new size of the hash table
 *
 * resize the hash table
 *
 * Returns 0 in case of success, -1 in case of failure
 */
static int
112 113
virHashGrow(virHashTablePtr table, int size)
{
D
Daniel Veillard 已提交
114 115
    unsigned long key;
    int oldsize, i;
116 117
    virHashEntryPtr iter, next;
    struct _virHashEntry *oldtable;
118

D
Daniel Veillard 已提交
119 120 121
#ifdef DEBUG_GROW
    unsigned long nbElem = 0;
#endif
122

D
Daniel Veillard 已提交
123
    if (table == NULL)
124
        return (-1);
D
Daniel Veillard 已提交
125
    if (size < 8)
126
        return (-1);
D
Daniel Veillard 已提交
127
    if (size > 8 * 2048)
128
        return (-1);
D
Daniel Veillard 已提交
129 130 131 132

    oldsize = table->size;
    oldtable = table->table;
    if (oldtable == NULL)
133 134
        return (-1);

135
    table->table = malloc(size * sizeof(virHashEntry));
D
Daniel Veillard 已提交
136
    if (table->table == NULL) {
137 138
        table->table = oldtable;
        return (-1);
D
Daniel Veillard 已提交
139
    }
140
    memset(table->table, 0, size * sizeof(virHashEntry));
D
Daniel Veillard 已提交
141 142
    table->size = size;

143 144 145 146 147 148
    /*  If the two loops are merged, there would be situations where
     * a new entry needs to allocated and data copied into it from 
     * the main table. So instead, we run through the array twice, first
     * copying all the elements in the main array (where we can't get
     * conflicts) and then the rest, so we only free (and don't allocate)
     */
D
Daniel Veillard 已提交
149
    for (i = 0; i < oldsize; i++) {
150 151 152 153 154
        if (oldtable[i].valid == 0)
            continue;
        key = virHashComputeKey(table, oldtable[i].name);
        memcpy(&(table->table[key]), &(oldtable[i]), sizeof(virHashEntry));
        table->table[key].next = NULL;
D
Daniel Veillard 已提交
155 156 157
    }

    for (i = 0; i < oldsize; i++) {
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
        iter = oldtable[i].next;
        while (iter) {
            next = iter->next;

            /*
             * put back the entry in the new table
             */

            key = virHashComputeKey(table, iter->name);
            if (table->table[key].valid == 0) {
                memcpy(&(table->table[key]), iter, sizeof(virHashEntry));
                table->table[key].next = NULL;
                free(iter);
            } else {
                iter->next = table->table[key].next;
                table->table[key].next = iter;
            }
D
Daniel Veillard 已提交
175 176

#ifdef DEBUG_GROW
177
            nbElem++;
D
Daniel Veillard 已提交
178 179
#endif

180 181
            iter = next;
        }
D
Daniel Veillard 已提交
182 183 184 185 186 187
    }

    free(oldtable);

#ifdef DEBUG_GROW
    xmlGenericError(xmlGenericErrorContext,
188 189
                    "virHashGrow : from %d to %d, %d elems\n", oldsize,
                    size, nbElem);
D
Daniel Veillard 已提交
190 191
#endif

192
    return (0);
D
Daniel Veillard 已提交
193 194 195
}

/**
196
 * virHashFree:
D
Daniel Veillard 已提交
197 198 199 200 201 202 203
 * @table: the hash table
 * @f:  the deallocator function for items in the hash
 *
 * Free the hash @table and its contents. The userdata is
 * deallocated with @f if provided.
 */
void
204 205
virHashFree(virHashTablePtr table, virHashDeallocator f)
{
D
Daniel Veillard 已提交
206
    int i;
207 208
    virHashEntryPtr iter;
    virHashEntryPtr next;
D
Daniel Veillard 已提交
209 210 211 212
    int inside_table = 0;
    int nbElems;

    if (table == NULL)
213
        return;
D
Daniel Veillard 已提交
214
    if (table->table) {
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
        nbElems = table->nbElems;
        for (i = 0; (i < table->size) && (nbElems > 0); i++) {
            iter = &(table->table[i]);
            if (iter->valid == 0)
                continue;
            inside_table = 1;
            while (iter) {
                next = iter->next;
                if ((f != NULL) && (iter->payload != NULL))
                    f(iter->payload, iter->name);
                if (iter->name)
                    free(iter->name);
                iter->payload = NULL;
                if (!inside_table)
                    free(iter);
                nbElems--;
                inside_table = 0;
                iter = next;
            }
            inside_table = 0;
        }
        free(table->table);
D
Daniel Veillard 已提交
237 238 239 240 241
    }
    free(table);
}

/**
242
 * virHashAddEntry3:
D
Daniel Veillard 已提交
243 244 245 246 247 248 249 250 251 252
 * @table: the hash table
 * @name: the name of the userdata
 * @userdata: a pointer to the userdata
 *
 * Add the @userdata to the hash @table. This can later be retrieved
 * by using @name. Duplicate entries generate errors.
 *
 * Returns 0 the addition succeeded and -1 in case of error.
 */
int
253 254
virHashAddEntry(virHashTablePtr table, const char *name, void *userdata)
{
D
Daniel Veillard 已提交
255
    unsigned long key, len = 0;
256 257
    virHashEntryPtr entry;
    virHashEntryPtr insert;
D
Daniel Veillard 已提交
258 259

    if ((table == NULL) || (name == NULL))
260
        return (-1);
D
Daniel Veillard 已提交
261 262 263 264

    /*
     * Check for duplicate and insertion location.
     */
265
    key = virHashComputeKey(table, name);
D
Daniel Veillard 已提交
266
    if (table->table[key].valid == 0) {
267
        insert = NULL;
D
Daniel Veillard 已提交
268
    } else {
269 270 271 272 273 274 275 276
        for (insert = &(table->table[key]); insert->next != NULL;
             insert = insert->next) {
            if (!strcmp(insert->name, name))
                return (-1);
            len++;
        }
        if (!strcmp(insert->name, name))
            return (-1);
D
Daniel Veillard 已提交
277 278 279
    }

    if (insert == NULL) {
280
        entry = &(table->table[key]);
D
Daniel Veillard 已提交
281
    } else {
282 283 284
        entry = malloc(sizeof(virHashEntry));
        if (entry == NULL)
            return (-1);
D
Daniel Veillard 已提交
285 286 287 288 289 290 291 292
    }

    entry->name = strdup(name);
    entry->payload = userdata;
    entry->next = NULL;
    entry->valid = 1;


293 294
    if (insert != NULL)
        insert->next = entry;
D
Daniel Veillard 已提交
295 296 297 298

    table->nbElems++;

    if (len > MAX_HASH_LEN)
299
        virHashGrow(table, MAX_HASH_LEN * table->size);
D
Daniel Veillard 已提交
300

301
    return (0);
D
Daniel Veillard 已提交
302 303 304
}

/**
305
 * virHashUpdateEntry:
D
Daniel Veillard 已提交
306 307 308 309 310 311 312 313 314 315 316 317
 * @table: the hash table
 * @name: the name of the userdata
 * @userdata: a pointer to the userdata
 * @f: the deallocator function for replaced item (if any)
 *
 * Add the @userdata to the hash @table. This can later be retrieved
 * by using @name. Existing entry for this tuple
 * will be removed and freed with @f if found.
 *
 * Returns 0 the addition succeeded and -1 in case of error.
 */
int
318
virHashUpdateEntry(virHashTablePtr table, const char *name,
319 320
                   void *userdata, virHashDeallocator f)
{
D
Daniel Veillard 已提交
321
    unsigned long key;
322 323
    virHashEntryPtr entry;
    virHashEntryPtr insert;
D
Daniel Veillard 已提交
324 325

    if ((table == NULL) || name == NULL)
326
        return (-1);
D
Daniel Veillard 已提交
327 328 329 330

    /*
     * Check for duplicate and insertion location.
     */
331
    key = virHashComputeKey(table, name);
D
Daniel Veillard 已提交
332
    if (table->table[key].valid == 0) {
333
        insert = NULL;
D
Daniel Veillard 已提交
334
    } else {
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
        for (insert = &(table->table[key]); insert->next != NULL;
             insert = insert->next) {
            if (!strcmp(insert->name, name)) {
                if (f)
                    f(insert->payload, insert->name);
                insert->payload = userdata;
                return (0);
            }
        }
        if (!strcmp(insert->name, name)) {
            if (f)
                f(insert->payload, insert->name);
            insert->payload = userdata;
            return (0);
        }
D
Daniel Veillard 已提交
350 351 352
    }

    if (insert == NULL) {
353
        entry = &(table->table[key]);
D
Daniel Veillard 已提交
354
    } else {
355 356 357
        entry = malloc(sizeof(virHashEntry));
        if (entry == NULL)
            return (-1);
D
Daniel Veillard 已提交
358 359 360 361 362 363 364 365 366 367
    }

    entry->name = strdup(name);
    entry->payload = userdata;
    entry->next = NULL;
    entry->valid = 1;
    table->nbElems++;


    if (insert != NULL) {
368
        insert->next = entry;
D
Daniel Veillard 已提交
369
    }
370
    return (0);
D
Daniel Veillard 已提交
371 372 373
}

/**
374
 * virHashLookup:
D
Daniel Veillard 已提交
375 376 377 378 379 380 381 382
 * @table: the hash table
 * @name: the name of the userdata
 *
 * Find the userdata specified by the (@name, @name2, @name3) tuple.
 *
 * Returns the a pointer to the userdata
 */
void *
383 384
virHashLookup(virHashTablePtr table, const char *name)
{
D
Daniel Veillard 已提交
385
    unsigned long key;
386
    virHashEntryPtr entry;
D
Daniel Veillard 已提交
387 388

    if (table == NULL)
389
        return (NULL);
D
Daniel Veillard 已提交
390
    if (name == NULL)
391
        return (NULL);
392
    key = virHashComputeKey(table, name);
D
Daniel Veillard 已提交
393
    if (table->table[key].valid == 0)
394
        return (NULL);
D
Daniel Veillard 已提交
395
    for (entry = &(table->table[key]); entry != NULL; entry = entry->next) {
396 397
        if (!strcmp(entry->name, name))
            return (entry->payload);
D
Daniel Veillard 已提交
398
    }
399
    return (NULL);
D
Daniel Veillard 已提交
400 401 402
}

/**
403
 * virHashSize:
D
Daniel Veillard 已提交
404 405 406 407 408 409 410 411
 * @table: the hash table
 *
 * Query the number of elements installed in the hash @table.
 *
 * Returns the number of elements in the hash table or
 * -1 in case of error
 */
int
412 413
virHashSize(virHashTablePtr table)
{
D
Daniel Veillard 已提交
414
    if (table == NULL)
415 416
        return (-1);
    return (table->nbElems);
D
Daniel Veillard 已提交
417 418 419
}

/**
420
 * virHashRemoveEntry:
D
Daniel Veillard 已提交
421 422 423 424 425 426 427 428 429 430 431
 * @table: the hash table
 * @name: the name of the userdata
 * @f: the deallocator function for removed item (if any)
 *
 * Find the userdata specified by the @name and remove
 * it from the hash @table. Existing userdata for this tuple will be removed
 * and freed with @f.
 *
 * Returns 0 if the removal succeeded and -1 in case of error or not found.
 */
int
432
virHashRemoveEntry(virHashTablePtr table, const char *name,
433 434
                   virHashDeallocator f)
{
D
Daniel Veillard 已提交
435
    unsigned long key;
436 437
    virHashEntryPtr entry;
    virHashEntryPtr prev = NULL;
D
Daniel Veillard 已提交
438 439

    if (table == NULL || name == NULL)
440
        return (-1);
D
Daniel Veillard 已提交
441

442
    key = virHashComputeKey(table, name);
D
Daniel Veillard 已提交
443
    if (table->table[key].valid == 0) {
444
        return (-1);
D
Daniel Veillard 已提交
445
    } else {
446 447
        for (entry = &(table->table[key]); entry != NULL;
             entry = entry->next) {
D
Daniel Veillard 已提交
448 449 450 451
            if (!strcmp(entry->name, name)) {
                if ((f != NULL) && (entry->payload != NULL))
                    f(entry->payload, entry->name);
                entry->payload = NULL;
452 453 454
                if (entry->name)
                    free(entry->name);
                if (prev) {
D
Daniel Veillard 已提交
455
                    prev->next = entry->next;
456 457 458 459 460 461 462 463 464 465 466
                    free(entry);
                } else {
                    if (entry->next == NULL) {
                        entry->valid = 0;
                    } else {
                        entry = entry->next;
                        memcpy(&(table->table[key]), entry,
                               sizeof(virHashEntry));
                        free(entry);
                    }
                }
D
Daniel Veillard 已提交
467
                table->nbElems--;
468
                return (0);
D
Daniel Veillard 已提交
469 470 471
            }
            prev = entry;
        }
472
        return (-1);
D
Daniel Veillard 已提交
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

/**
 * virHashForEach
 * @table: the hash table to process
 * @iter: callback to process each element
 * @data: opaque data to pass to the iterator
 *
 * Iterates over every element in the hash table, invoking the
 * 'iter' callback. The callback must not call any other virHash*
 * functions, and in particular must not attempt to remove the
 * element.
 *
 * Returns number of items iterated over upon completion, -1 on failure
 */
int virHashForEach(virHashTablePtr table, virHashIterator iter, const void *data) {
    int i, count = 0;

    if (table == NULL || iter == NULL)
        return (-1);

    for (i = 0 ; i < table->size ; i++) {
        virHashEntryPtr entry = table->table + i;
        while (entry) {
            if (entry->valid) {
                iter(entry->payload, entry->name, data);
                count++;
            }
            entry = entry->next;
        }
    }
    return (count);
}

/**
 * virHashRemoveSet
 * @table: the hash table to process
 * @iter: callback to identify elements for removal
 * @f: callback to free memory from element payload
 * @data: opaque data to pass to the iterator
 *
 * Iterates over all elements in the hash table, invoking the 'iter'
 * callback. If the callback returns a non-zero value, the element
 * will be removed from the hash table & its payload passed to the
 * callback 'f' for de-allocation.
 *
 * Returns number of items removed on success, -1 on failure
 */
int virHashRemoveSet(virHashTablePtr table, virHashSearcher iter, virHashDeallocator f, const void *data) {
    int i, count = 0;

    if (table == NULL || iter == NULL)
        return (-1);

    for (i = 0 ; i < table->size ; i++) {
        virHashEntryPtr prev = NULL;
        virHashEntryPtr entry = &(table->table[i]);

        while (entry && entry->valid) {
            if (iter(entry->payload, entry->name, data)) {
                count++;
                f(entry->payload, entry->name);
                if (entry->name)
                    free(entry->name);
                if (prev) {
                    prev->next = entry->next;
                    free(entry);
                } else {
                    if (entry->next == NULL) {
                        entry->valid = 0;
                        entry->name = NULL;
                    } else {
                        entry = entry->next;
                        memcpy(&(table->table[i]), entry,
                               sizeof(virHashEntry));
                        free(entry);
                        entry = NULL;
                    }
                }
                table->nbElems--;
            }
            prev = entry;
            if (entry) {
                entry = entry->next;
            } else {
                entry = NULL;
            }
        }
    }
    return (count);
}

/**
 * virHashSearch:
 * @table: the hash table to search
 * @iter: an iterator to identify the desired element
 * @data: extra opaque information passed to the iter
 *
 * Iterates over the hash table calling the 'iter' callback
 * for each element. The first element for which the iter
 * returns non-zero will be returned by this function.
 * The elements are processed in a undefined order
 */
void *virHashSearch(virHashTablePtr table, virHashSearcher iter, const void *data) {
    int i;

    if (table == NULL || iter == NULL)
        return (NULL);

    for (i = 0 ; i < table->size ; i++) {
        virHashEntryPtr entry = table->table + i;
        while (entry) {
            if (entry->valid) {
                if (iter(entry->payload, entry->name, data))
                    return entry->payload;
            }
            entry = entry->next;
        }
    }
    return (NULL);
}

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
/************************************************************************
 *									*
 *			Domain and Connections allocations		*
 *									*
 ************************************************************************/

/**
 * virHashError:
 * @conn: the connection if available
 * @error: the error noumber
 * @info: extra information string
 *
 * Handle an error at the connection level
 */
static void
virHashError(virConnectPtr conn, virErrorNumber error, const char *info)
{
    const char *errmsg;

    if (error == VIR_ERR_OK)
        return;

    errmsg = __virErrorMsg(error, info);
    __virRaiseError(conn, NULL, VIR_FROM_NONE, error, VIR_ERR_ERROR,
                    errmsg, info, NULL, 0, 0, errmsg, info);
}


/**
 * virDomainFreeName:
 * @domain: a domain object
 *
 * Destroy the domain object, this is just used by the domain hash callback.
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
static int
virDomainFreeName(virDomainPtr domain, const char *name ATTRIBUTE_UNUSED)
{
    return (virDomainFree(domain));
}

639 640 641 642 643 644 645 646 647 648 649 650 651 652
/**
 * virNetworkFreeName:
 * @network: a network object
 *
 * Destroy the network object, this is just used by the network hash callback.
 *
 * Returns 0 in case of success and -1 in case of failure.
 */
static int
virNetworkFreeName(virNetworkPtr network, const char *name ATTRIBUTE_UNUSED)
{
    return (virNetworkFree(network));
}

653 654 655 656 657 658 659 660 661 662 663 664 665
/**
 * virGetConnect:
 *
 * Allocates a new hypervisor connection structure
 *
 * Returns a new pointer or NULL in case of error.
 */
virConnectPtr
virGetConnect(void) {
    virConnectPtr ret;

    ret = (virConnectPtr) malloc(sizeof(virConnect));
    if (ret == NULL) {
666
        virHashError(NULL, VIR_ERR_NO_MEMORY, _("allocating connection"));
667 668 669 670 671
        goto failed;
    }
    memset(ret, 0, sizeof(virConnect));
    ret->magic = VIR_CONNECT_MAGIC;
    ret->nb_drivers = 0;
672 673
    ret->handle = -1;
    ret->qemud_fd = -1;
674 675 676
    ret->domains = virHashCreate(20);
    if (ret->domains == NULL)
        goto failed;
677 678 679 680 681
    ret->networks = virHashCreate(20);
    if (ret->networks == NULL)
        goto failed;
    ret->hashes_mux = xmlNewMutex();
    if (ret->hashes_mux == NULL)
682 683 684 685 686 687 688 689 690
        goto failed;

    ret->uses = 1;
    return(ret);

failed:
    if (ret != NULL) {
	if (ret->domains != NULL)
	    virHashFree(ret->domains, (virHashDeallocator) virDomainFreeName);
691 692 693 694
	if (ret->networks != NULL)
	    virHashFree(ret->networks, (virHashDeallocator) virNetworkFreeName);
	if (ret->hashes_mux != NULL)
	    xmlFreeMutex(ret->hashes_mux);
695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712
        free(ret);
    }
    return(NULL);
}

/**
 * virFreeConnect:
 * @conn: the hypervisor connection
 *
 * Release the connection. if the use count drops to zero, the structure is
 * actually freed.
 *
 * Returns the reference count or -1 in case of failure.
 */
int	
virFreeConnect(virConnectPtr conn) {
    int ret;

713
    if ((!VIR_IS_CONNECT(conn)) || (conn->hashes_mux == NULL)) {
714 715 716
        virHashError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return(-1);
    }
717
    xmlMutexLock(conn->hashes_mux);
718 719 720
    conn->uses--;
    ret = conn->uses;
    if (ret > 0) {
721
	xmlMutexUnlock(conn->hashes_mux);
722 723 724 725 726
	return(ret);
    }

    if (conn->domains != NULL)
        virHashFree(conn->domains, (virHashDeallocator) virDomainFreeName);
727 728 729 730
    if (conn->networks != NULL)
        virHashFree(conn->networks, (virHashDeallocator) virNetworkFreeName);
    if (conn->hashes_mux != NULL)
        xmlFreeMutex(conn->hashes_mux);
731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748
    free(conn);
    return(0);
}

/**
 * virGetDomain:
 * @conn: the hypervisor connection
 * @name: pointer to the domain name or NULL
 * @uuid: pointer to the uuid or NULL
 *
 * Lookup if the domain is already registered for that connection,
 * if yes return a new pointer to it, if no allocate a new structure,
 * and register it in the table. In any case a corresponding call to
 * virFreeDomain() is needed to not leak data.
 *
 * Returns a pointer to the domain, or NULL in case of failure
 */
virDomainPtr
749
virGetDomain(virConnectPtr conn, const char *name, const unsigned char *uuid) {
750 751 752
    virDomainPtr ret = NULL;

    if ((!VIR_IS_CONNECT(conn)) || ((name == NULL) && (uuid == NULL)) ||
753
        (conn->hashes_mux == NULL)) {
754 755 756
        virHashError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return(NULL);
    }
757
    xmlMutexLock(conn->hashes_mux);
758 759 760 761 762 763 764 765 766 767 768 769 770 771

    /* TODO search by UUID first as they are better differenciators */

    ret = (virDomainPtr) virHashLookup(conn->domains, name);
    if (ret != NULL) {
        /* TODO check the UUID */
	goto done;
    }

    /*
     * not found, allocate a new one
     */
    ret = (virDomainPtr) malloc(sizeof(virDomain));
    if (ret == NULL) {
772
        virHashError(conn, VIR_ERR_NO_MEMORY, _("allocating domain"));
773 774 775 776 777
	goto error;
    }
    memset(ret, 0, sizeof(virDomain));
    ret->name = strdup(name);
    if (ret->name == NULL) {
778
        virHashError(conn, VIR_ERR_NO_MEMORY, _("allocating domain"));
779 780 781 782
	goto error;
    }
    ret->magic = VIR_DOMAIN_MAGIC;
    ret->conn = conn;
783
    ret->id = -1;
784
    if (uuid != NULL)
785
        memcpy(&(ret->uuid[0]), uuid, VIR_UUID_BUFLEN);
786 787 788

    if (virHashAddEntry(conn->domains, name, ret) < 0) {
        virHashError(conn, VIR_ERR_INTERNAL_ERROR,
789
	             _("failed to add domain to connection hash table"));
790 791 792 793 794
	goto error;
    }
    conn->uses++;
done:
    ret->uses++;
795
    xmlMutexUnlock(conn->hashes_mux);
796 797 798
    return(ret);

error:
799
    xmlMutexUnlock(conn->hashes_mux);
800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822
    if (ret != NULL) {
	if (ret->name != NULL)
	    free(ret->name );
	free(ret);
    }
    return(NULL);
}

/**
 * virFreeDomain:
 * @conn: the hypervisor connection
 * @domain: the domain to release
 *
 * Release the given domain, if the reference count drops to zero, then
 * the domain is really freed.
 *
 * Returns the reference count or -1 in case of failure.
 */
int
virFreeDomain(virConnectPtr conn, virDomainPtr domain) {
    int ret = 0;

    if ((!VIR_IS_CONNECT(conn)) || (!VIR_IS_CONNECTED_DOMAIN(domain)) ||
823
        (domain->conn != conn) || (conn->hashes_mux == NULL)) {
824 825 826
        virHashError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return(-1);
    }
827
    xmlMutexLock(conn->hashes_mux);
828 829 830 831 832 833 834 835 836 837 838 839 840

    /*
     * decrement the count for the domain
     */
    domain->uses--;
    ret = domain->uses;
    if (ret > 0)
        goto done;

    /* TODO search by UUID first as they are better differenciators */

    if (virHashRemoveEntry(conn->domains, domain->name, NULL) < 0) {
        virHashError(conn, VIR_ERR_INTERNAL_ERROR,
841
	             _("domain missing from connection hash table"));
842 843 844
        goto done;
    }
    domain->magic = -1;
845
    domain->id = -1;
846 847
    if (domain->path != NULL)
        free(domain->path);
848 849
    if (domain->xml)
        free(domain->xml);
850 851 852 853 854 855 856 857 858 859 860 861 862
    if (domain->name)
        free(domain->name);
    free(domain);

    /*
     * decrement the count for the connection
     */
    conn->uses--;
    if (conn->uses > 0)
        goto done;
    
    if (conn->domains != NULL)
        virHashFree(conn->domains, (virHashDeallocator) virDomainFreeName);
863 864
    if (conn->hashes_mux != NULL)
        xmlFreeMutex(conn->hashes_mux);
865 866 867 868
    free(conn);
    return(0);

done:
869
    xmlMutexUnlock(conn->hashes_mux);
870 871 872
    return(ret);
}

873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893
/**
 * virGetDomainByID:
 * @conn: the hypervisor connection
 * @id: the ID number for the domain
 *
 * Lookup if the domain ID is already registered for that connection,
 * if yes return a new pointer to it, if no return NULL
 *
 * Returns a pointer to the domain, or NULL if not found
 */
virDomainPtr
virGetDomainByID(virConnectPtr conn, int id) {
    virDomainPtr ret = NULL, cur;
    virHashEntryPtr iter, next;
    virHashTablePtr table;
    int key;

    if ((!VIR_IS_CONNECT(conn)) || (id < 0)) {
        virHashError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return(NULL);
    }
894
    xmlMutexLock(conn->hashes_mux);
895 896 897 898 899 900 901 902 903 904 905

    table = conn->domains;
    if ((table == NULL) || (table->nbElems == 0))
        goto done;
    for (key = 0;key < table->size;key++) {
        if (table->table[key].valid == 0)
	    continue;
	iter = &(table->table[key]);
	while (iter != NULL) {
	    next = iter->next;
	    cur = (virDomainPtr) iter->payload;
906
	    if ((cur != NULL) && (cur->id == id)) {
907 908 909 910 911 912 913
	        ret = cur;
		goto done;
	    }
	    iter = next;
	}
    }
done:
914
    xmlMutexUnlock(conn->hashes_mux);
915 916
    return(ret);
}
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049

/**
 * virGetNetwork:
 * @conn: the hypervisor connection
 * @name: pointer to the network name or NULL
 * @uuid: pointer to the uuid or NULL
 *
 * Lookup if the network is already registered for that connection,
 * if yes return a new pointer to it, if no allocate a new structure,
 * and register it in the table. In any case a corresponding call to
 * virFreeNetwork() is needed to not leak data.
 *
 * Returns a pointer to the network, or NULL in case of failure
 */
virNetworkPtr
virGetNetwork(virConnectPtr conn, const char *name, const unsigned char *uuid) {
    virNetworkPtr ret = NULL;

    if ((!VIR_IS_CONNECT(conn)) || ((name == NULL) && (uuid == NULL)) ||
        (conn->hashes_mux == NULL)) {
        virHashError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return(NULL);
    }
    xmlMutexLock(conn->hashes_mux);

    /* TODO search by UUID first as they are better differenciators */

    ret = (virNetworkPtr) virHashLookup(conn->networks, name);
    if (ret != NULL) {
        /* TODO check the UUID */
	goto done;
    }

    /*
     * not found, allocate a new one
     */
    ret = (virNetworkPtr) malloc(sizeof(virNetwork));
    if (ret == NULL) {
        virHashError(conn, VIR_ERR_NO_MEMORY, _("allocating network"));
	goto error;
    }
    memset(ret, 0, sizeof(virNetwork));
    ret->name = strdup(name);
    if (ret->name == NULL) {
        virHashError(conn, VIR_ERR_NO_MEMORY, _("allocating network"));
	goto error;
    }
    ret->magic = VIR_NETWORK_MAGIC;
    ret->conn = conn;
    if (uuid != NULL)
        memcpy(&(ret->uuid[0]), uuid, VIR_UUID_BUFLEN);

    if (virHashAddEntry(conn->networks, name, ret) < 0) {
        virHashError(conn, VIR_ERR_INTERNAL_ERROR,
	             _("failed to add network to connection hash table"));
	goto error;
    }
    conn->uses++;
done:
    ret->uses++;
    xmlMutexUnlock(conn->hashes_mux);
    return(ret);

error:
    xmlMutexUnlock(conn->hashes_mux);
    if (ret != NULL) {
	if (ret->name != NULL)
	    free(ret->name );
	free(ret);
    }
    return(NULL);
}

/**
 * virFreeNetwork:
 * @conn: the hypervisor connection
 * @network: the network to release
 *
 * Release the given network, if the reference count drops to zero, then
 * the network is really freed.
 *
 * Returns the reference count or -1 in case of failure.
 */
int
virFreeNetwork(virConnectPtr conn, virNetworkPtr network) {
    int ret = 0;

    if ((!VIR_IS_CONNECT(conn)) || (!VIR_IS_CONNECTED_NETWORK(network)) ||
        (network->conn != conn) || (conn->hashes_mux == NULL)) {
        virHashError(conn, VIR_ERR_INVALID_ARG, __FUNCTION__);
        return(-1);
    }
    xmlMutexLock(conn->hashes_mux);

    /*
     * decrement the count for the network
     */
    network->uses--;
    ret = network->uses;
    if (ret > 0)
        goto done;

    /* TODO search by UUID first as they are better differenciators */

    if (virHashRemoveEntry(conn->networks, network->name, NULL) < 0) {
        virHashError(conn, VIR_ERR_INTERNAL_ERROR,
	             _("network missing from connection hash table"));
        goto done;
    }
    network->magic = -1;
    if (network->name)
        free(network->name);
    free(network);

    /*
     * decrement the count for the connection
     */
    conn->uses--;
    if (conn->uses > 0)
        goto done;

    if (conn->networks != NULL)
        virHashFree(conn->networks, (virHashDeallocator) virNetworkFreeName);
    if (conn->hashes_mux != NULL)
        xmlFreeMutex(conn->hashes_mux);
    free(conn);
    return(0);

done:
    xmlMutexUnlock(conn->hashes_mux);
    return(ret);
}

1050 1051 1052 1053 1054 1055 1056 1057
/*
 * Local variables:
 *  indent-tabs-mode: nil
 *  c-indent-level: 4
 *  c-basic-offset: 4
 *  tab-width: 4
 * End:
 */