Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
alpha portability again (damn size_t)
[simgrid.git] / src / xbt / set.c
1 /* $Id$ */
2
3 /* set - data container consisting in dict+dynar                            */
4
5 /* Authors: Martin Quinson                                                  */
6 /* Copyright (C) 2004 the GRAS posse.                                       */
7
8 /* This program is free software; you can redistribute it and/or modify it
9    under the terms of the license (GNU LGPL) which comes with this package. */
10
11 #include "gras_private.h"
12
13 GRAS_LOG_NEW_DEFAULT_SUBCATEGORY(set,gros,"data container consisting in dict+dynar");
14
15 /*####[ Type definition ]####################################################*/
16 struct gras_set_ {
17   gras_dict_t  *dict;  /* data stored by name */
18   gras_dynar_t *dynar; /* data stored by ID   */
19 };
20
21 /*####[ Memory  ]############################################################*/
22 /**
23  * gras_set_new:
24  * @dst: where to
25  *
26  * Creates a new set.
27  */
28 gras_error_t gras_set_new (gras_set_t **dst) {
29   gras_set_t *res=gras_new(gras_set_t,1);
30   gras_error_t errcode;
31
32   if (!res)
33     RAISE_MALLOC;
34
35   TRY(gras_dict_new (&(res->dict)));
36   TRY(gras_dynar_new(&(res->dynar), sizeof(void*),NULL));
37
38   *dst=res;
39   return no_error;
40 }
41
42 /**
43  * gras_set_free:
44  * @set:
45  *
46  * Frees a set.
47  */
48 void         gras_set_free(gras_set_t **set) {
49   if (*set) {
50     gras_dict_free ( &( (*set)->dict  ) );
51     gras_dynar_free(    (*set)->dynar  );
52     gras_free(*set);
53     *set=NULL;
54   }
55 }
56
57 /**
58  * gras_set_add:
59  * @set: set to populate
60  * @elm: element to add. 
61  * @free_ctn: How to add the data 
62  *
63  * Add an element to a set. 
64  *
65  * elm->name must be set;
66  * elm->name_len is used as is unless it's <= 0 (in which case it's recomputed);
67  * elm->ID is attributed automatically.
68  */
69 gras_error_t gras_set_add    (gras_set_t     *set,
70                               gras_set_elm_t *elm,
71                               void_f_pvoid_t *free_func) {
72
73   gras_error_t    errcode;
74   gras_set_elm_t *found_in_dict;
75
76   if (elm->name_len <= 0) {
77     elm->name_len = strlen(elm->name);
78   }
79
80   errcode = gras_dict_get_ext (set->dict, 
81                                     elm->name, elm->name_len,
82                                     (void**)&found_in_dict);
83   if (errcode == no_error) {
84     if (elm == found_in_dict) {
85       DEBUG2("Ignoring request to insert the same element twice (key %s ; id %d)",
86              elm->name, elm->ID);
87       return no_error;
88     } else {
89       elm->ID=found_in_dict->ID;
90       DEBUG2("Reinsertion of key %s (id %d)", elm->name, elm->ID);
91       TRY(gras_dict_set_ext(set->dict, elm->name, elm->name_len, elm, free_func));
92       TRY(gras_dynar_set(set->dynar, elm->ID, &elm));
93       return no_error;
94     }
95   } else if (errcode != mismatch_error) {
96     return errcode; /* I expected mismatch_error */
97   }
98
99   elm->ID = gras_dynar_length( set->dynar );
100   TRY(gras_dict_set_ext(set->dict, elm->name, elm->name_len, elm, free_func));
101   TRY(gras_dynar_set(set->dynar, elm->ID, &elm));
102   DEBUG2("Insertion of key '%s' (id %d)", elm->name, elm->ID);
103
104   return no_error;
105 }
106
107 /**
108  * gras_set_get_by_name:
109  * @set:
110  * @name: Name of the searched cell
111  * @dst: where to put the found data into
112  *
113  * get a data stored in the cell by providing its name.
114  */
115 gras_error_t gras_set_get_by_name    (gras_set_t     *set,
116                                       const char     *name,
117                                       /* OUT */gras_set_elm_t **dst) {
118   gras_error_t errcode;
119   errcode = gras_dict_get_ext(set->dict, name, strlen(name), (void**) dst);
120   DEBUG2("Lookup key %s: %s",name,gras_error_name(errcode));
121   return errcode;
122 }
123 /**
124  * gras_set_get_by_name_ext:
125  * @set:
126  * @name: Name of the searched cell
127  * @name_len: length of the name, when strlen cannot be trusted
128  * @dst: where to put the found data into
129  *
130  * get a data stored in the cell by providing its name (and the length
131  * of the name, when strlen cannot be trusted because you don't use a char*
132  * as name, you weird guy).
133  */
134 gras_error_t gras_set_get_by_name_ext(gras_set_t     *set,
135                                       const char     *name,
136                                       int             name_len,
137                                       /* OUT */gras_set_elm_t **dst) {
138
139   return gras_dict_get_ext (set->dict, name, name_len, (void**)dst);
140 }
141
142 /**
143  * gras_set_get_by_code:
144  * @set:
145  * @id: what you're looking for
146  * @dst: where to put the found data into
147  *
148  * get a data stored in the cell by providing its id. 
149  * @warning, if the ID does not exists, you're getting into trouble
150  */
151 gras_error_t gras_set_get_by_id      (gras_set_t     *set,
152                                       int             id,
153                                       /* OUT */gras_set_elm_t **dst) {
154
155   /* Don't bother checking the bounds, the dynar does so */
156
157   gras_dynar_get(set->dynar,id,dst);
158   DEBUG3("Lookup type of id %d (of %lu): %s", 
159          id, gras_dynar_length(set->dynar), (*dst)->name);
160   
161   return no_error;
162 }
163
164 /***
165  *** Cursors
166  ***/
167 struct gras_set_cursor_ {
168   gras_set_t *set;
169   int val;
170 };
171
172 /**
173  * gras_set_cursor_first:
174  * @set: on what to let the cursor iterate
175  * @cursor: dest address
176  *
177  * Create the cursor if it does not exists. Rewind it in any case.
178  */
179 void         gras_set_cursor_first       (gras_set_t   *set,
180                                           gras_set_cursor_t **cursor) {
181
182   if (set != NULL) {
183     if (!*cursor) {
184       DEBUG0("Create the cursor on first use");
185       *cursor = gras_new(gras_set_cursor_t,1);
186       gras_assert0(*cursor,
187                    "Malloc error during the creation of the cursor");
188     }
189     (*cursor)->set = set;
190     gras_dynar_cursor_first(set->dynar, &( (*cursor)->val) );
191   } else {
192     *cursor = NULL;
193   }
194 }
195
196 /**
197  * gras_set_cursor_step:
198  * @cursor: the cursor
199  *
200  * Move to the next element. 
201  */
202 void         gras_set_cursor_step        (gras_set_cursor_t  *cursor) {
203   gras_dynar_cursor_step(cursor->set->dynar, &( cursor->val ) );
204 }
205
206 /**
207  * gras_set_cursor_get_or_free:
208  * @cursor: the cursor
209  * @Returns: true if it's ok, false if there is no more data
210  *
211  * Get current data
212  */
213 int          gras_set_cursor_get_or_free (gras_set_cursor_t **curs,
214                                           gras_set_elm_t    **elm) {
215   gras_set_cursor_t *cursor;
216
217   if (!curs || !(*curs))
218     return FALSE;
219
220   cursor=*curs;
221
222   if (! gras_dynar_cursor_get( cursor->set->dynar,&(cursor->val),elm) ) {
223     gras_free(cursor);
224     *curs=NULL;
225     return FALSE;    
226   } 
227   return TRUE;
228 }