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
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* *
* This file is part of HDF. The full HDF copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the files COPYING and Copyright.html. COPYING can be found at the root *
* of the source code distribution tree; Copyright.html can be found at *
* http://hdfgroup.org/products/hdf4/doc/Copyright.html. If you do not have *
* access to either file, you may request a copy from help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include <stdio.h>
#include <stdlib.h>
#include "hdiff_table.h"
/*-------------------------------------------------------------------------
* Function: dtable_search
*
* Purpose: search the table for tag and ref
*
* Return: index on success, -1 on failure
*
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
*
* Date: July 3, 2003
*
*-------------------------------------------------------------------------
*/
int dtable_search(dtable_t *table, int32 tag, int32 ref )
{
uint32 i;
for (i = 0; i < table->nobjs; i++)
if (table->objs[i].tag == tag && table->objs[i].ref == ref)
return i;
return -1;
}
/*-------------------------------------------------------------------------
* Function: dtable_add
*
* Purpose: add pair tag/ref and object path to table
*
* Return: void
*
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
*
* Date: July 3, 2003
*
*-------------------------------------------------------------------------
*/
void dtable_add(dtable_t *table, int32 tag, int32 ref, char* path)
{
uint32 i;
if (table->nobjs == table->size) {
table->size *= 2;
table->objs = (dobj_info_t*)realloc(table->objs, table->size * sizeof(dobj_info_t));
for (i = table->nobjs; i < table->size; i++) {
table->objs[i].tag = table->objs[i].ref = -1;
table->objs[i].flags[0] = table->objs[i].flags[1] = -1;
}
}
i = table->nobjs++;
table->objs[i].tag = tag;
table->objs[i].ref = ref;
strcpy(table->objs[i].obj_name,path);
table->objs[i].flags[0] = table->objs[i].flags[1] = -1;
}
/*-------------------------------------------------------------------------
* Function: dtable_init
*
* Purpose: initialize table
*
* Return: void
*
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
*
* Date: July 3, 2003
*
*-------------------------------------------------------------------------
*/
void dtable_init( dtable_t **tbl )
{
uint32 i;
dtable_t* table = (dtable_t*) malloc(sizeof(dtable_t));
table->size = 20;
table->nobjs = 0;
table->objs = (dobj_info_t*) malloc(table->size * sizeof(dobj_info_t));
for (i = 0; i < table->size; i++) {
table->objs[i].tag = table->objs[i].ref = -1;
table->objs[i].flags[0] = table->objs[i].flags[1] = -1;
}
*tbl = table;
}
/*-------------------------------------------------------------------------
* Function: dtable_free
*
* Purpose: free table memory
*
* Return: void
*
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
*
* Date: July 3, 2003
*
*-------------------------------------------------------------------------
*/
void dtable_free( dtable_t *table )
{
free(table->objs);
free(table);
}
/*-------------------------------------------------------------------------
* Function: dtable_print
*
* Purpose: print object list
*
* Return: void
*
* Programmer: Pedro Vicente, pvn@ncsa.uiuc.edu
*
* Date: August 25, 2003
*
*-------------------------------------------------------------------------
*/
void dtable_print(dtable_t *table, char* header)
{
uint32 i;
if ( ! table->nobjs ) /* nothing to do */
return;
printf("---------------------------------------\n");
printf("%s %5s %6s %-15s\n", header, "Tag", "Ref", "Name");
printf("---------------------------------------\n");
for (i = 0; i < table->nobjs; i++)
{
printf(" %5ld %6ld %-15s\n",
table->objs[i].tag,
table->objs[i].ref,
table->objs[i].obj_name);
}
}
|