stats.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386
  1. /*
  2. * Copyright Runtime.io 2018. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Statistics.
  9. *
  10. * Statistics are per-module event counters for troubleshooting, maintenance,
  11. * and usage monitoring. Statistics are organized into named "groups", with
  12. * each group consisting of a set of "entries". An entry corresponds to an
  13. * individual counter. Each entry can optionally be named if the STATS_NAMES
  14. * setting is enabled. Statistics can be retrieved with the mcumgr management
  15. * subsystem.
  16. *
  17. * There are two, largely duplicated, statistics sections here, in order to
  18. * provide the optional ability to name statistics.
  19. *
  20. * STATS_SECT_START/END actually declare the statistics structure definition,
  21. * STATS_SECT_DECL() creates the structure declaration so you can declare
  22. * these statistics as a global structure, and STATS_NAME_START/END are how
  23. * you name the statistics themselves.
  24. *
  25. * Statistics entries can be declared as any of several integer types.
  26. * However, all statistics in a given structure must be of the same size, and
  27. * they are all unsigned.
  28. *
  29. * - STATS_SECT_ENTRY(): default statistic entry, 32-bits.
  30. *
  31. * - STATS_SECT_ENTRY16(): 16-bits. Smaller statistics if you need to fit into
  32. * specific RAM or code size numbers.
  33. *
  34. * - STATS_SECT_ENTRY32(): 32-bits.
  35. *
  36. * - STATS_SECT_ENTRY64(): 64-bits. Useful for storing chunks of data.
  37. *
  38. * Following the static entry declaration is the statistic names declaration.
  39. * This is compiled out when the CONFIGURE_STATS_NAME setting is undefined.
  40. *
  41. * When CONFIG_STATS_NAMES is defined, the statistics names are stored and
  42. * returned to the management APIs. When the setting is undefined, temporary
  43. * names are generated as needed with the following format:
  44. *
  45. * s<stat-idx>
  46. *
  47. * E.g., "s0", "s1", etc.
  48. */
  49. #ifndef ZEPHYR_INCLUDE_STATS_STATS_H_
  50. #define ZEPHYR_INCLUDE_STATS_STATS_H_
  51. #include <stddef.h>
  52. #include <zephyr/types.h>
  53. #ifdef __cplusplus
  54. extern "C" {
  55. #endif
  56. struct stats_name_map {
  57. uint16_t snm_off;
  58. const char *snm_name;
  59. } __attribute__((packed));
  60. struct stats_hdr {
  61. const char *s_name;
  62. uint8_t s_size;
  63. uint16_t s_cnt;
  64. uint8_t s_pad1;
  65. #ifdef CONFIG_STATS_NAMES
  66. const struct stats_name_map *s_map;
  67. int s_map_cnt;
  68. #endif
  69. struct stats_hdr *s_next;
  70. };
  71. /**
  72. * @brief Declares a stat group struct.
  73. *
  74. * @param group__ The name to assign to the structure tag.
  75. */
  76. #define STATS_SECT_DECL(group__) \
  77. struct stats_ ## group__
  78. /**
  79. * @brief Ends a stats group struct definition.
  80. */
  81. #define STATS_SECT_END }
  82. /* The following macros depend on whether CONFIG_STATS is defined. If it is
  83. * not defined, then invocations of these macros get compiled out.
  84. */
  85. #ifdef CONFIG_STATS
  86. /**
  87. * @brief Begins a stats group struct definition.
  88. *
  89. * @param group__ The stats group struct name.
  90. */
  91. #define STATS_SECT_START(group__) \
  92. STATS_SECT_DECL(group__) { \
  93. struct stats_hdr s_hdr;
  94. /**
  95. * @brief Declares a 32-bit stat entry inside a group struct.
  96. *
  97. * @param var__ The name to assign to the entry.
  98. */
  99. #define STATS_SECT_ENTRY(var__) uint32_t var__;
  100. /**
  101. * @brief Declares a 16-bit stat entry inside a group struct.
  102. *
  103. * @param var__ The name to assign to the entry.
  104. */
  105. #define STATS_SECT_ENTRY16(var__) uint16_t var__;
  106. /**
  107. * @brief Declares a 32-bit stat entry inside a group struct.
  108. *
  109. * @param var__ The name to assign to the entry.
  110. */
  111. #define STATS_SECT_ENTRY32(var__) uint32_t var__;
  112. /**
  113. * @brief Declares a 64-bit stat entry inside a group struct.
  114. *
  115. * @param var__ The name to assign to the entry.
  116. */
  117. #define STATS_SECT_ENTRY64(var__) uint64_t var__;
  118. /**
  119. * @brief Increases a statistic entry by the specified amount.
  120. *
  121. * Increases a statistic entry by the specified amount. Compiled out if
  122. * CONFIG_STATS is not defined.
  123. *
  124. * @param group__ The group containing the entry to increase.
  125. * @param var__ The statistic entry to increase.
  126. * @param n__ The amount to increase the statistic entry by.
  127. */
  128. #define STATS_INCN(group__, var__, n__) \
  129. ((group__).var__ += (n__))
  130. /**
  131. * @brief Increments a statistic entry.
  132. *
  133. * Increments a statistic entry by one. Compiled out if CONFIG_STATS is not
  134. * defined.
  135. *
  136. * @param group__ The group containing the entry to increase.
  137. * @param var__ The statistic entry to increase.
  138. */
  139. #define STATS_INC(group__, var__) \
  140. STATS_INCN(group__, var__, 1)
  141. /**
  142. * @brief Sets a statistic entry to zero.
  143. *
  144. * Sets a statistic entry to zero. Compiled out if CONFIG_STATS is not
  145. * defined.
  146. *
  147. * @param group__ The group containing the entry to clear.
  148. * @param var__ The statistic entry to clear.
  149. */
  150. #define STATS_CLEAR(group__, var__) \
  151. ((group__).var__ = 0)
  152. #define STATS_SIZE_16 (sizeof(uint16_t))
  153. #define STATS_SIZE_32 (sizeof(uint32_t))
  154. #define STATS_SIZE_64 (sizeof(uint64_t))
  155. #define STATS_SIZE_INIT_PARMS(group__, size__) \
  156. (size__), \
  157. ((sizeof(group__)) - sizeof(struct stats_hdr)) / (size__)
  158. /**
  159. * @brief Initializes and registers a statistics group.
  160. *
  161. * @param group__ The statistics group to initialize and
  162. * register.
  163. * @param size__ The size of each entry in the statistics group,
  164. * in bytes. Must be one of: 2 (16-bits), 4
  165. * (32-bits) or 8 (64-bits).
  166. * @param name__ The name of the statistics group to register.
  167. * This name must be unique among all
  168. * statistics groups.
  169. *
  170. * @return 0 on success; negative error code on failure.
  171. */
  172. #define STATS_INIT_AND_REG(group__, size__, name__) \
  173. stats_init_and_reg( \
  174. &(group__).s_hdr, \
  175. (size__), \
  176. (sizeof(group__) - sizeof(struct stats_hdr)) / (size__), \
  177. STATS_NAME_INIT_PARMS(group__), \
  178. (name__))
  179. /**
  180. * @brief Initializes a statistics group.
  181. *
  182. * @param hdr The header of the statistics structure,
  183. * contains things like statistic section
  184. * name, size of statistics entries, number of
  185. * statistics, etc.
  186. * @param size The size of each individual statistics
  187. * element, in bytes. Must be one of: 2
  188. * (16-bits), 4 (32-bits) or 8 (64-bits).
  189. * @param cnt The number of elements in the stats group.
  190. * @param map The mapping of stat offset to name.
  191. * @param map_cnt The number of items in the statistics map
  192. *
  193. * @param group__ The group containing the entry to clear.
  194. * @param var__ The statistic entry to clear.
  195. */
  196. void stats_init(struct stats_hdr *shdr, uint8_t size, uint16_t cnt,
  197. const struct stats_name_map *map, uint16_t map_cnt);
  198. /**
  199. * @brief Registers a statistics group to be managed.
  200. *
  201. * @param name The name of the statistics group to register.
  202. * This name must be unique among all
  203. * statistics groups. If the name is a
  204. * duplicate, this function will return
  205. * -EALREADY.
  206. * @param shdr The statistics group to register.
  207. *
  208. * @return 0 on success, non-zero error code on failure.
  209. */
  210. int stats_register(const char *name, struct stats_hdr *shdr);
  211. /**
  212. * @brief Initializes and registers a statistics group.
  213. *
  214. * Initializes and registers a statistics group. Note: it is recommended to
  215. * use the STATS_INIT_AND_REG macro instead of this function.
  216. *
  217. * @param hdr The header of the statistics group to
  218. * initialize and register.
  219. * @param size The size of each individual statistics
  220. * element, in bytes. Must be one of: 2
  221. * (16-bits), 4 (32-bits) or 8 (64-bits).
  222. * @param cnt The number of elements in the stats group.
  223. * @param map The mapping of stat offset to name.
  224. * @param map_cnt The number of items in the statistics map
  225. * @param name The name of the statistics group to register.
  226. * This name must be unique among all
  227. * statistics groups. If the name is a
  228. * duplicate, this function will return
  229. * -EALREADY.
  230. *
  231. * @return 0 on success; negative error code on failure.
  232. *
  233. * @see STATS_INIT_AND_REG
  234. */
  235. int stats_init_and_reg(struct stats_hdr *hdr, uint8_t size, uint16_t cnt,
  236. const struct stats_name_map *map, uint16_t map_cnt,
  237. const char *name);
  238. /**
  239. * Zeroes the specified statistics group.
  240. *
  241. * @param shdr The statistics group to clear.
  242. */
  243. void stats_reset(struct stats_hdr *shdr);
  244. /** @typedef stats_walk_fn
  245. * @brief Function that gets applied to every stat entry during a walk.
  246. *
  247. * @param hdr The group containing the stat entry being
  248. * walked.
  249. * @param arg Optional argument.
  250. * @param name The name of the statistic entry to process
  251. * @param off The offset of the entry, from `hdr`.
  252. *
  253. * @return 0 if the walk should proceed;
  254. * nonzero to abort the walk.
  255. */
  256. typedef int stats_walk_fn(struct stats_hdr *hdr, void *arg,
  257. const char *name, uint16_t off);
  258. /**
  259. * @brief Applies a function to every stat entry in a group.
  260. *
  261. * @param hdr The stats group to operate on.
  262. * @param walk_cb The function to apply to each stat entry.
  263. * @param arg Optional argument to pass to the callback.
  264. *
  265. * @return 0 if the walk completed;
  266. * nonzero if the walk was aborted.
  267. */
  268. int stats_walk(struct stats_hdr *hdr, stats_walk_fn *walk_cb, void *arg);
  269. /** @typedef stats_group_walk_fn
  270. * @brief Function that gets applied to every registered stats group.
  271. *
  272. * @param hdr The stats group being walked.
  273. * @param arg Optional argument.
  274. *
  275. * @return 0 if the walk should proceed;
  276. * nonzero to abort the walk.
  277. */
  278. typedef int stats_group_walk_fn(struct stats_hdr *hdr, void *arg);
  279. /**
  280. * @brief Applies a function every registered statistics group.
  281. *
  282. * @param walk_cb The function to apply to each stat group.
  283. * @param arg Optional argument to pass to the callback.
  284. *
  285. * @return 0 if the walk completed;
  286. * nonzero if the walk was aborted.
  287. */
  288. int stats_group_walk(stats_group_walk_fn *walk_cb, void *arg);
  289. /**
  290. * @brief Retrieves the next registered statistics group.
  291. *
  292. * @param cur The group whose successor is being retrieved, or
  293. * NULL to retrieve the first group.
  294. *
  295. * @return Pointer to the retrieved group on success;
  296. * NULL if no more groups remain.
  297. */
  298. struct stats_hdr *stats_group_get_next(const struct stats_hdr *cur);
  299. /**
  300. * @brief Retrieves the statistics group with the specified name.
  301. *
  302. * @param name The name of the statistics group to look up.
  303. *
  304. * @return Pointer to the retrieved group on success;
  305. * NULL if there is no matching registered group.
  306. */
  307. struct stats_hdr *stats_group_find(const char *name);
  308. #else /* CONFIG_STATS */
  309. #define STATS_SECT_START(group__) \
  310. STATS_SECT_DECL(group__) {
  311. #define STATS_SECT_ENTRY(var__)
  312. #define STATS_SECT_ENTRY16(var__)
  313. #define STATS_SECT_ENTRY32(var__)
  314. #define STATS_SECT_ENTRY64(var__)
  315. #define STATS_RESET(var__)
  316. #define STATS_SIZE_INIT_PARMS(group__, size__)
  317. #define STATS_INCN(group__, var__, n__)
  318. #define STATS_INC(group__, var__)
  319. #define STATS_CLEAR(group__, var__)
  320. #define STATS_INIT_AND_REG(group__, size__, name__) (0)
  321. #endif /* !CONFIG_STATS */
  322. #ifdef CONFIG_STATS_NAMES
  323. #define STATS_NAME_MAP_NAME(sectname__) stats_map_ ## sectname__
  324. #define STATS_NAME_START(sectname__) \
  325. const struct stats_name_map STATS_NAME_MAP_NAME(sectname__)[] = {
  326. #define STATS_NAME(sectname__, entry__) \
  327. { offsetof(STATS_SECT_DECL(sectname__), entry__), #entry__ },
  328. #define STATS_NAME_END(sectname__) }
  329. #define STATS_NAME_INIT_PARMS(name__) \
  330. &(STATS_NAME_MAP_NAME(name__)[0]), \
  331. (sizeof(STATS_NAME_MAP_NAME(name__)) / sizeof(struct stats_name_map))
  332. #else /* CONFIG_STATS_NAMES */
  333. #define STATS_NAME_START(name__)
  334. #define STATS_NAME(name__, entry__)
  335. #define STATS_NAME_END(name__)
  336. #define STATS_NAME_INIT_PARMS(name__) NULL, 0
  337. #endif /* CONFIG_STATS_NAMES */
  338. #ifdef __cplusplus
  339. }
  340. #endif
  341. #endif /* ZEPHYR_INCLUDE_STATS_STATS_H_ */