Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Do generate the header we need with flexml
[simgrid.git] / include / xbt / set.h
index 7ee9285..d0f0ab8 100644 (file)
 
 BEGIN_DECL()
 
-/*####[ Type definition ]####################################################*/
-/** \name Set and set elements
-    \ingroup XBT_set
-    generic dictionary
+/** @addtogroup XBT_set
+ * 
+ *  The elements stored in such a data structure can be retrieve both by
+ *  name and by ID. For this to work, the first fields of the structures
+ *  stored must begin with:
+ *  \verbatim unsigned int ID;
+ char        *name;
+ unsigned int name_len;\endverbatim
+ *
+ *  It is impossible to remove an element from such a data structure.
+ *
+ *  @todo
+ *  Such a datastructure was necessary/useful to store the GRAS type 
+ *  descriptions, but it should be reworked to become generic.
+ *
+ * @{
 */
-/*@{*/
-typedef struct xbt_set_ *xbt_set_t; /**< Set */
-typedef struct xbt_set_elm_ {
-  unsigned int ID;
-  char        *name;
-  unsigned int name_len;
-} s_xbt_set_elm_t,*xbt_set_elm_t;   /**< Set element */
 
-/*####[ Functions ]##########################################################*/
 
+/** @name 1. Set and set elements, constructor/destructor
+ *
+ *  @{
+ */
+/** \brief Opaque type representing a set */
+typedef struct xbt_set_ *xbt_set_t; 
+/** \brief It must be possible to cast set elements to this type */
+struct xbt_set_elm_ {
+  unsigned int ID;      /**< Identificator (system assigned) */
+  char        *name;    /**< Name (user assigned) */
+  unsigned int name_len;/**< Length of the name */
+};
+
+/*####[ Functions ]##########################################################*/
 xbt_set_t xbt_set_new (void);
 void xbt_set_free(xbt_set_t *set);
 
+/** @} */
+typedef struct xbt_set_elm_  s_xbt_set_elm_t;
+typedef struct xbt_set_elm_ *  xbt_set_elm_t;
+/** @name 2. Main functions
+ *
+ *  @{
+ */
 
 void xbt_set_add (xbt_set_t      set,
                   xbt_set_elm_t  elm,
                   void_f_pvoid_t *free_func);
 
-/*----[ xbt_set_retrieve ]-------------------------------------------------*/
-/* Search the given #key#. data=NULL when not found.                         */
-/*---------------------------------------------------------------------------*/
 xbt_error_t xbt_set_get_by_name    (xbt_set_t      set,
-                                     const char     *key,
-                                     /* OUT */xbt_set_elm_t *dst);
+                                   const char     *key,
+                                   /* OUT */xbt_set_elm_t *dst);
 xbt_error_t xbt_set_get_by_name_ext(xbt_set_t      set,
-                                     const char     *name,
-                                     int             name_len,
-                                     /* OUT */xbt_set_elm_t *dst);
+                                   const char     *name,
+                                   int             name_len,
+                                   /* OUT */xbt_set_elm_t *dst);
 xbt_error_t xbt_set_get_by_id      (xbt_set_t      set,
-                                     int             id,
-                                     /* OUT */xbt_set_elm_t *dst);
+                                   int             id,
+                                   /* OUT */xbt_set_elm_t *dst);
                                      
-/*####[ Cache cursor functions ]#############################################*/
-/* To traverse (simple) caches                                               */
-/* Don't add or remove entries to the cache while traversing !!!             */
-/*###########################################################################*/
-typedef struct xbt_set_cursor_ *xbt_set_cursor_t;  /**< Set cursor */
-/*@}*/
+/** @} */
+/** @name 3. Cursors
+ *
+ *  \warning Don't add or remove entries to the cache while traversing
+ *
+ *  @{
+ */
+
+/** @brief Cursor type */
+typedef struct xbt_set_cursor_ *xbt_set_cursor_t;
 
 void         xbt_set_cursor_first       (xbt_set_t         set,
                                          xbt_set_cursor_t *cursor);
@@ -64,20 +90,16 @@ void         xbt_set_cursor_step        (xbt_set_cursor_t  cursor);
 int          xbt_set_cursor_get_or_free (xbt_set_cursor_t *cursor,
                                          xbt_set_elm_t    *elm);
 
-/**
- \brief Set iterator
- \ingroup XBT_set
- * \param set what to iterate over
- * \param cursor a #xbt_set_cursor_t used as cursor
- * \param elm  a #xbt_set_elm_t
- *
- * Iterates over the whole set. 
+/** @brief Iterates over the whole set
+ *  @hideinitializer
  */
 #define xbt_set_foreach(set,cursor,elm)                       \
   for ((cursor) = NULL, xbt_set_cursor_first((set),&(cursor)) ;   \
        xbt_set_cursor_get_or_free(&(cursor),(xbt_set_elm_t*)&(elm));          \
        xbt_set_cursor_step(cursor) )
 
+/*@}*/
+/*@}*/
 END_DECL()
 
 #endif /* _XBT_SET_H */