blob: 1763b6ab8e53415b44d0c15375e7651202c57e0e [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#ifndef __UTIL_STATS_H__
#define __UTIL_STATS_H__
#include <stddef.h>
#include <stdint.h>
#include "os/mynewt.h"
#ifdef __cplusplus
extern "C" {
#endif
struct stats_name_map {
uint16_t snm_off;
char *snm_name;
} __attribute__((packed));
struct stats_hdr {
char *s_name;
uint8_t s_size;
uint8_t s_cnt;
uint16_t s_pad1;
#if MYNEWT_VAL(STATS_NAMES)
const struct stats_name_map *s_map;
int s_map_cnt;
#endif
STAILQ_ENTRY(stats_hdr) s_next;
};
#define STATS_SECT_DECL(__name) \
struct stats_ ## __name
#define STATS_SECT_START(__name) \
STATS_SECT_DECL(__name) { \
struct stats_hdr s_hdr;
#define STATS_SECT_END };
#define STATS_SECT_VAR(__var) \
s##__var
#define STATS_HDR(__sectname) &(__sectname).s_hdr
#define STATS_SIZE_16 (sizeof(uint16_t))
#define STATS_SIZE_32 (sizeof(uint32_t))
#define STATS_SIZE_64 (sizeof(uint64_t))
#define STATS_SECT_ENTRY(__var) uint32_t STATS_SECT_VAR(__var);
#define STATS_SECT_ENTRY16(__var) uint16_t STATS_SECT_VAR(__var);
#define STATS_SECT_ENTRY32(__var) uint32_t STATS_SECT_VAR(__var);
#define STATS_SECT_ENTRY64(__var) uint64_t STATS_SECT_VAR(__var);
#define STATS_RESET(__var) \
memset((uint8_t *)&__var + sizeof(struct stats_hdr), 0, \
sizeof(__var) - sizeof(struct stats_hdr))
#define STATS_SIZE_INIT_PARMS(__sectvarname, __size) \
(__size), \
((sizeof (__sectvarname)) - sizeof (struct stats_hdr)) / (__size)
#define STATS_GET(__sectvarname, __var) \
((__sectvarname).STATS_SECT_VAR(__var))
#define STATS_INC(__sectvarname, __var) \
(STATS_GET(__sectvarname, __var)++)
#define STATS_INCN(__sectvarname, __var, __n) \
(STATS_GET(__sectvarname, __var) += (__n))
#define STATS_CLEAR(__sectvarname, __var) \
(STATS_GET(__sectvarname, __var) = 0)
#if MYNEWT_VAL(STATS_NAMES)
#define STATS_NAME_MAP_NAME(__sectname) g_stats_map_ ## __sectname
#define STATS_NAME_START(__sectname) \
const struct stats_name_map STATS_NAME_MAP_NAME(__sectname)[] = {
#define STATS_NAME(__sectname, __entry) \
{ offsetof(STATS_SECT_DECL(__sectname), STATS_SECT_VAR(__entry)), \
#__entry },
#define STATS_NAME_END(__sectname) \
};
#define STATS_NAME_INIT_PARMS(__name) \
&(STATS_NAME_MAP_NAME(__name)[0]), \
(sizeof(STATS_NAME_MAP_NAME(__name)) / sizeof(struct stats_name_map))
#else /* MYNEWT_VAL(STATS_NAME) */
#define STATS_NAME_START(__name)
#define STATS_NAME(__name, __entry)
#define STATS_NAME_END(__name)
#define STATS_NAME_INIT_PARMS(__name) NULL, 0
#endif /* MYNEWT_VAL(STATS_NAME) */
int stats_init(struct stats_hdr *shdr, uint8_t size, uint8_t cnt,
const struct stats_name_map *map, uint8_t map_cnt);
int stats_register(char *name, struct stats_hdr *shdr);
int stats_init_and_reg(struct stats_hdr *shdr, uint8_t size, uint8_t cnt,
const struct stats_name_map *map, uint8_t map_cnt,
char *name);
void stats_reset(struct stats_hdr *shdr);
typedef int (*stats_walk_func_t)(struct stats_hdr *, void *, char *,
uint16_t);
int stats_walk(struct stats_hdr *, stats_walk_func_t, void *);
typedef int (*stats_group_walk_func_t)(struct stats_hdr *, void *);
int stats_group_walk(stats_group_walk_func_t, void *);
struct stats_hdr *stats_group_find(char *name);
/* Private */
#if MYNEWT_VAL(STATS_NEWTMGR)
int stats_nmgr_register_group(void);
#endif
#if MYNEWT_VAL(STATS_CLI)
int stats_shell_register(void);
#endif
#ifdef __cplusplus
}
#endif
#endif /* __UTIL_STATS_H__ */