Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fd36001e6cd1e43d6cd65400a090f6a0204be81d
[simgrid.git] / include / xbt / set.h
1 /* $Id$ */
2
3 /* xbt/set.h -- api to a generic dictionary                                 */
4
5 /* Copyright (c) 2004 Martin Quinson. All rights reserved.                  */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #ifndef _XBT_SET_H
11 #define _XBT_SET_H
12
13 #include "xbt/misc.h" /* SG_BEGIN_DECL */
14
15 SG_BEGIN_DECL()
16
17 /** @addtogroup XBT_set
18  *  @brief A data container consisting in \ref XBT_dict and \ref XBT_dynar
19  * 
20  *  The elements stored in such a data structure can be retrieve both by
21  *  name and by ID. For this to work, the first fields of the structures
22  *  stored must begin with:
23  *  \verbatim unsigned int ID;
24  char        *name;
25  unsigned int name_len;\endverbatim
26  *
27  *  It is impossible to remove an element from such a data structure.
28  *
29  *  @todo
30  *  Such a datastructure was necessary/useful to store the GRAS type 
31  *  descriptions, but it should be reworked to become generic.
32  *
33  */
34
35
36 /** @defgroup XBT_set_cons Set and set elements, constructor/destructor
37  *  @ingroup XBT_set
38  *
39  *  @{
40  */
41 /** \brief Opaque type representing a set */
42 typedef struct xbt_set_ *xbt_set_t; 
43 /** \brief It must be possible to cast set elements to this type */
44 struct xbt_set_elm_ {
45   unsigned int ID;      /**< Identificator (system assigned) */
46   char        *name;    /**< Name (user assigned) */
47   unsigned int name_len;/**< Length of the name */
48 };
49
50 /*####[ Functions ]##########################################################*/
51 xbt_set_t xbt_set_new (void);
52 void xbt_set_free(xbt_set_t *set);
53
54 /** @} */
55 typedef struct xbt_set_elm_  s_xbt_set_elm_t;
56 typedef struct xbt_set_elm_ *  xbt_set_elm_t;
57 /** @defgroup XBT_set_basic Sets basic usage
58  *  @ingroup XBT_set
59  *
60  *  @{
61  */
62
63 void xbt_set_add (xbt_set_t set, xbt_set_elm_t  elm, void_f_pvoid_t *free_func);
64
65 xbt_set_elm_t xbt_set_get_by_name    (xbt_set_t set, const char *key);
66 xbt_set_elm_t xbt_set_get_by_name_ext(xbt_set_t set, const char *key, int key_len);
67 xbt_set_elm_t xbt_set_get_by_id      (xbt_set_t set, int         id);
68                                       
69 /** @} */
70 /** @defgroup XBT_set_curs Sets cursors
71  *  @ingroup XBT_set
72  *
73  *  \warning Don't add or remove entries to the cache while traversing
74  *
75  *  @{
76  */
77
78 /** @brief Cursor type */
79 typedef struct xbt_set_cursor_ *xbt_set_cursor_t;
80
81 void         xbt_set_cursor_first       (xbt_set_t         set,
82                                           xbt_set_cursor_t *cursor);
83 void         xbt_set_cursor_step        (xbt_set_cursor_t  cursor);
84 int          xbt_set_cursor_get_or_free (xbt_set_cursor_t *cursor,
85                                           xbt_set_elm_t    *elm);
86
87 /** @brief Iterates over the whole set
88  *  @hideinitializer
89  */
90 #define xbt_set_foreach(set,cursor,elm)                       \
91   for ((cursor) = NULL, xbt_set_cursor_first((set),&(cursor)) ;   \
92        xbt_set_cursor_get_or_free(&(cursor),(xbt_set_elm_t*)&(elm));          \
93        xbt_set_cursor_step(cursor) )
94
95 /* @} */
96 SG_END_DECL()
97
98 #endif /* _XBT_SET_H */