gdb/registry.h - gdb

Data types defined

Macros defined

Source code

  1. /* Macros for general registry objects.

  2.    Copyright (C) 2011-2015 Free Software Foundation, Inc.

  3.    This file is part of GDB.

  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 3 of the License, or
  7.    (at your option) any later version.

  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.

  12.    You should have received a copy of the GNU General Public License
  13.    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */

  14. #ifndef REGISTRY_H
  15. #define REGISTRY_H

  16. /* The macros here implement a template type and functions for
  17.    associating some user data with a container object.

  18.    A registry is associated with a struct tag name.  To attach a
  19.    registry to a structure, use DEFINE_REGISTRY.  This takes the
  20.    structure tag and an access method as arguments.  In the usual
  21.    case, where the registry fields appear directly in the struct, you
  22.    can use the 'REGISTRY_FIELDS' macro to declare the fields in the
  23.    struct definition, and you can pass 'REGISTRY_ACCESS_FIELD' as the
  24.    access argument to DEFINE_REGISTRY.  In other cases, use
  25.    REGISTRY_FIELDS to define the fields in the appropriate spot, and
  26.    then define your own accessor to find the registry field structure
  27.    given an instance of your type.

  28.    The API user requests a key from a registry during gdb
  29.    initialization.  Later this key can be used to associate some
  30.    module-specific data with a specific container object.

  31.    The exported API is best used via the wrapper macros:

  32.    - register_TAG_data(TAG)
  33.    Get a new key for the container type TAG.

  34.    - register_TAG_data_with_cleanup(TAG, SAVE, FREE)
  35.    Get a new key for the container type TAG.
  36.    SAVE and FREE are defined as void (*) (struct TAG *object, void *data)
  37.    When the container object OBJECT is destroyed, first all registered SAVE
  38.    functions are called.
  39.    Then all FREE functions are called.
  40.    Either or both may be NULL.  DATA is the data associated with the
  41.    container object OBJECT.

  42.    - clear_TAG_data(TAG, OBJECT)
  43.    Clear all the data associated with OBJECT.  Should be called by the
  44.    container implementation when a container object is destroyed.

  45.    - set_TAG_data(TAG, OBJECT, KEY, DATA)
  46.    Set the data on an object.

  47.    - TAG_data(TAG, OBJECT, KEY)
  48.    Fetch the data for an object; returns NULL if it has not been set.
  49. */

  50. /* This structure is used in a container to hold the data that the
  51.    registry uses.  */

  52. struct registry_fields
  53. {
  54.   void **data;
  55.   unsigned num_data;
  56. };

  57. /* This macro is used in a container struct definition to define the
  58.    fields used by the registry code.  */

  59. #define REGISTRY_FIELDS                                \
  60.   struct registry_fields registry_data

  61. /* A convenience macro for the typical case where the registry data is
  62.    kept as fields of the object.  This can be passed as the ACCESS
  63.    method to DEFINE_REGISTRY.  */

  64. #define REGISTRY_ACCESS_FIELD(CONTAINER) \
  65.   (CONTAINER)

  66. /* Opaque type representing a container type with a registry.  This
  67.    type is never defined.  This is used to factor out common
  68.    functionality of all struct tag names into common code.  IOW,
  69.    "struct tag name" pointers are cast to and from "struct
  70.    registry_container" pointers when calling the common registry
  71.    "backend" functions.  */
  72. struct registry_container;

  73. /* Registry callbacks have this type.  */
  74. typedef void (*registry_data_callback) (struct registry_container *, void *);

  75. struct registry_data
  76. {
  77.   unsigned index;
  78.   registry_data_callback save;
  79.   registry_data_callback free;
  80. };

  81. struct registry_data_registration
  82. {
  83.   struct registry_data *data;
  84.   struct registry_data_registration *next;
  85. };

  86. struct registry_data_registry
  87. {
  88.   struct registry_data_registration *registrations;
  89.   unsigned num_registrations;
  90. };

  91. /* Registry backend functions.  Client code uses the frontend
  92.    functions defined by DEFINE_REGISTRY below instead.  */

  93. const struct registry_data *register_data_with_cleanup
  94.   (struct registry_data_registry *registry,
  95.    registry_data_callback save,
  96.    registry_data_callback free);

  97. void registry_alloc_data (struct registry_data_registry *registry,
  98.                           struct registry_fields *registry_fields);

  99. /* Cast FUNC and CONTAINER to the real types, and call FUNC, also
  100.    passing DATA.  */
  101. typedef void (*registry_callback_adaptor) (registry_data_callback func,
  102.                                            struct registry_container *container,
  103.                                            void *data);

  104. void registry_clear_data (struct registry_data_registry *data_registry,
  105.                           registry_callback_adaptor adaptor,
  106.                           struct registry_container *container,
  107.                           struct registry_fields *fields);

  108. void registry_container_free_data (struct registry_data_registry *data_registry,
  109.                                    registry_callback_adaptor adaptor,
  110.                                    struct registry_container *container,
  111.                                    struct registry_fields *fields);

  112. void registry_set_data (struct registry_fields *fields,
  113.                         const struct registry_data *data,
  114.                         void *value);

  115. void *registry_data (struct registry_fields *fields,
  116.                      const struct registry_data *data);

  117. /* Define a new registry implementation.  */

  118. #define DEFINE_REGISTRY(TAG, ACCESS)                                        \
  119. struct registry_data_registry TAG ## _data_registry = { NULL, 0 };        \
  120.                                                                         \
  121. const struct TAG ## _data *                                                \
  122. register_ ## TAG ## _data_with_cleanup (void (*save) (struct TAG *, void *), \
  123.                                         void (*free) (struct TAG *, void *)) \
  124. {                                                                        \
  125.   struct registry_data_registration **curr;                                \
  126.                                                                         \
  127.   return (struct TAG ## _data *)                                        \
  128.     register_data_with_cleanup (&TAG ## _data_registry,                        \
  129.                                 (registry_data_callback) save,                \
  130.                                 (registry_data_callback) free);                \
  131. }                                                                        \
  132.                                                                         \
  133. const struct TAG ## _data *                                                \
  134. register_ ## TAG ## _data (void)                                        \
  135. {                                                                        \
  136.   return register_ ## TAG ## _data_with_cleanup (NULL, NULL);                \
  137. }                                                                        \
  138.                                                                         \
  139. static void                                                                \
  140. TAG ## _alloc_data (struct TAG *container)                                \
  141. {                                                                        \
  142.   struct registry_fields *rdata = &ACCESS (container)->registry_data;        \
  143.                                                                         \
  144.   registry_alloc_data (&TAG ## _data_registry, rdata);                        \
  145. }                                                                        \
  146.                                                                         \
  147. static void                                                                \
  148. TAG ## registry_callback_adaptor (registry_data_callback func,                \
  149.                                   struct registry_container *container, \
  150.                                   void *data)                                \
  151. {                                                                        \
  152.   struct TAG *tagged_container = (struct TAG *) container;                \
  153.   struct registry_fields *rdata                                                \
  154.     = &ACCESS (tagged_container)->registry_data;                        \
  155.                                                                         \
  156.   registry_ ## TAG ## _callback tagged_func                                \
  157.     = (registry_ ## TAG ## _callback) func;                                \
  158.                                                                         \
  159.   tagged_func (tagged_container, data);                                        \
  160. }                                                                        \
  161.                                                                         \
  162. void                                                                        \
  163. clear_ ## TAG ## _data (struct TAG *container)                                \
  164. {                                                                        \
  165.   struct registry_fields *rdata = &ACCESS (container)->registry_data;        \
  166.                                                                         \
  167.   registry_clear_data (&TAG ## _data_registry,                                \
  168.                        TAG ## registry_callback_adaptor,                \
  169.                        (struct registry_container *) container,                \
  170.                        rdata);                                                \
  171. }                                                                        \
  172.                                                                         \
  173. static void                                                                \
  174. TAG ## _free_data (struct TAG *container)                                \
  175. {                                                                        \
  176.   struct registry_fields *rdata = &ACCESS (container)->registry_data;        \
  177.                                                                         \
  178.   registry_container_free_data (&TAG ## _data_registry,                        \
  179.                                 TAG ## registry_callback_adaptor,        \
  180.                                 (struct registry_container *) container, \
  181.                                 rdata);                                        \
  182. }                                                                        \
  183.                                                                         \
  184. void                                                                        \
  185. set_ ## TAG ## _data (struct TAG *container,                                \
  186.                       const struct TAG ## _data *data,                        \
  187.                       void *value)                                        \
  188. {                                                                        \
  189.   struct registry_fields *rdata = &ACCESS (container)->registry_data;        \
  190.                                                                         \
  191.   registry_set_data (rdata,                                                \
  192.                      (struct registry_data *) data,                        \
  193.                      value);                                                \
  194. }                                                                        \
  195.                                                                         \
  196. void *                                                                        \
  197. TAG ## _data (struct TAG *container, const struct TAG ## _data *data)        \
  198. {                                                                        \
  199.   struct registry_fields *rdata = &ACCESS (container)->registry_data;        \
  200.                                                                         \
  201.   return registry_data (rdata,                                                \
  202.                         (struct registry_data *) data);                        \
  203. }


  204. /* External declarations for the registry functions.  */

  205. #define DECLARE_REGISTRY(TAG)                                                \
  206. struct TAG ## _data;                                                        \
  207. typedef void (*registry_ ## TAG ## _callback) (struct TAG *, void *);        \
  208. extern const struct TAG ## _data *register_ ## TAG ## _data (void);        \
  209. extern const struct TAG ## _data *register_ ## TAG ## _data_with_cleanup \
  210. (registry_ ## TAG ## _callback save, registry_ ## TAG ## _callback free); \
  211. extern void clear_ ## TAG ## _data (struct TAG *);                \
  212. extern void set_ ## TAG ## _data (struct TAG *,                        \
  213.                                   const struct TAG ## _data *data, \
  214.                                   void *value);                        \
  215. extern void *TAG ## _data (struct TAG *,                        \
  216.                            const struct TAG ## _data *data);

  217. #endif /* REGISTRY_H */