var_type_def_st.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2019, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * @file typedvar.h
  8. * @brief Structure declarations for typedvar type definitions.
  9. *
  10. * This structure is used for defining new variable types. If you are not
  11. * defining a new variable type for use by the configuration management
  12. * system, you don't need this structure.
  13. *
  14. * For defining new variables, see the types in conftypes.h.
  15. *
  16. * For data-driven access to configuration variables, see the other members of
  17. * lib/confmgt/.
  18. *
  19. * STATUS NOTE: It is not yet possible to actually define new variables
  20. * outside of config.c, and many of the types that will eventually be used
  21. * to do so are not yet moved. This will change as more of #29211 is
  22. * completed.
  23. **/
  24. #ifndef TOR_LIB_CONFMGT_VAR_TYPE_DEF_ST_H
  25. #define TOR_LIB_CONFMGT_VAR_TYPE_DEF_ST_H
  26. #include <stdbool.h>
  27. struct config_line_t;
  28. /**
  29. * A structure full of functions pointers to implement a variable type.
  30. *
  31. * Every type MUST implement parse or kv_parse and encode or kv_encode;
  32. * the other functions pointers MAY be NULL.
  33. *
  34. * All functions here take a <b>params</b> argument, whose value
  35. * is determined by the type definition. Two types may have the
  36. * same functions, but differ only in parameters.
  37. **/
  38. struct var_type_fns_t {
  39. /**
  40. * Try to parse a string in <b>value</b> that encodes an object of this
  41. * type. On success, adjust the lvalue pointed to by <b>target</b> to hold
  42. * that value, and return 0. On failure, set *<b>errmsg</b> to a newly
  43. * allocated string holding an error message, and return -1.
  44. **/
  45. int (*parse)(void *target, const char *value, char **errmsg,
  46. const void *params);
  47. /**
  48. * Try to parse a single line from the head of<b>line</b> that encodes
  49. * an object of this type. On success and failure, behave as in the parse()
  50. * function.
  51. *
  52. * If this function is absent, it is implemented in terms of parse().
  53. *
  54. * All types for which keys are significant should use this method. For
  55. * example, a "linelist" type records the actual keys that are given
  56. * for each line, and so should use this method.
  57. *
  58. * Note that although multiple lines may be provided in <b>line</b>,
  59. * only the first one should be handled by this function.
  60. **/
  61. int (*kv_parse)(void *target, const struct config_line_t *line,
  62. char **errmsg, const void *params);
  63. /**
  64. * Encode a value pointed to by <b>value</b> and return its result
  65. * in a newly allocated string. The string may need to be escaped.
  66. *
  67. * If this function is absent, it is implemented in terms of kv_encode().
  68. *
  69. * Returns NULL if this option has a NULL value, or on internal error.
  70. *
  71. * Requirement: all strings generated by encode() should produce a
  72. * semantically equivalent value when given to parse().
  73. **/
  74. char *(*encode)(const void *value, const void *params);
  75. /**
  76. * As encode(), but returns a newly allocated config_line_t object. The
  77. * provided <b>key</b> is used as the key of the lines, unless the type is
  78. * one that encodes its own keys.
  79. *
  80. * Unlike kv_parse(), this function will return a list of multiple lines,
  81. * if <b>value</b> is such that it must be encoded by multiple lines.
  82. *
  83. * Returns NULL if there are no lines to encode, or on internal error.
  84. *
  85. * If this function is absent, it is implemented in terms of encode().
  86. **/
  87. struct config_line_t *(*kv_encode)(const char *key, const void *value,
  88. const void *params);
  89. /**
  90. * Free all storage held in <b>arg</b>, and set <b>arg</b> to a default
  91. * value -- usually zero or NULL.
  92. *
  93. * If this function is absent, the default implementation does nothing.
  94. **/
  95. void (*clear)(void *arg, const void *params);
  96. /**
  97. * Return true if <b>a</b> and <b>b</b> hold the same value, and false
  98. * otherwise.
  99. *
  100. * If this function is absent, it is implemented by encoding both a and
  101. * b and comparing their encoded strings for equality.
  102. **/
  103. bool (*eq)(const void *a, const void *b, const void *params);
  104. /**
  105. * Try to copy the value from <b>value</b> into <b>target</b>.
  106. * On success return 0; on failure return -1.
  107. *
  108. * If this function is absent, it is implemented by encoding the value
  109. * into a string, and then parsing it into the target.
  110. **/
  111. int (*copy)(void *target, const void *value, const void *params);
  112. /**
  113. * Check whether <b>value</b> holds a valid value according to the
  114. * rules of this type; return true if it does and false if it doesn't.
  115. *
  116. * The default implementation for this function assumes that all
  117. * values are valid.
  118. **/
  119. bool (*ok)(const void *value, const void *params);
  120. };
  121. /**
  122. * A structure describing a type that can be manipulated with the typedvar_*
  123. * functions.
  124. **/
  125. struct var_type_def_t {
  126. /**
  127. * The name of this type. Should not include spaces. Used for
  128. * debugging, log messages, and the controller API. */
  129. const char *name;
  130. /**
  131. * A function table for this type.
  132. */
  133. const struct var_type_fns_t *fns;
  134. /**
  135. * A pointer to a value that should be passed as the 'params' argument when
  136. * calling the functions in this type's function table.
  137. */
  138. const void *params;
  139. };
  140. #endif /* !defined(TOR_LIB_CONFMGT_VAR_TYPE_DEF_ST_H) */