blob: 54c8216dee615b00b380812185a20aa22c81ceb7 [file] [log] [blame]
Piotr Krysik93154d12018-02-27 12:16:25 +01001#pragma once
2
3#include <stdbool.h>
4
5//#include <osmocom/core/backtrace.h>
6//#include <osmocom/core/talloc.h>
7
8/*! \defgroup utils General-purpose utility functions
9 * @{
10 * \file utils.h */
11
12/*! Determine number of elements in an array of static size */
13#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
14/*! Return the maximum of two specified values */
15#define OSMO_MAX(a, b) ((a) >= (b) ? (a) : (b))
16/*! Return the minimum of two specified values */
17#define OSMO_MIN(a, b) ((a) >= (b) ? (b) : (a))
18/*! Stringify the name of a macro x, e.g. an FSM event name.
19 * Note: if nested within another preprocessor macro, this will
20 * stringify the value of x instead of its name. */
21#define OSMO_STRINGIFY(x) #x
22/*! Stringify the value of a macro x, e.g. a port number. */
23#define OSMO_STRINGIFY_VAL(x) OSMO_STRINGIFY(x)
24/*! Make a value_string entry from an enum value name */
25#define OSMO_VALUE_STRING(x) { x, #x }
26/*! Number of bytes necessary to store given BITS */
27#define OSMO_BYTES_FOR_BITS(BITS) ((BITS + 8 - 1) / 8)
28
29#include <stdbool.h>
30#include <stdint.h>
31#include <stdio.h>
32
33#define __attribute__(_arg_)
34#define __deprecated__
35
36/*! A mapping between human-readable string and numeric value */
37struct value_string {
38 unsigned int value; /*!< numeric value */
39 const char *str; /*!< human-readable string */
40};
41
42//const char *get_value_string(const struct value_string *vs, uint32_t val);
43const char *get_value_string_or_null(const struct value_string *vs,
44 uint32_t val);
45
46int get_string_value(const struct value_string *vs, const char *str);
47
48char osmo_bcd2char(uint8_t bcd);
49/* only works for numbers in ascci */
50uint8_t osmo_char2bcd(char c);
51
52int osmo_hexparse(const char *str, uint8_t *b, int max_len);
53
54char *osmo_ubit_dump(const uint8_t *bits, unsigned int len);
55char *osmo_hexdump(const unsigned char *buf, int len);
56char *osmo_hexdump_nospc(const unsigned char *buf, int len);
57char *osmo_osmo_hexdump_nospc(const unsigned char *buf, int len) __attribute__((__deprecated__));
58
59#define osmo_static_assert(exp, name) typedef int dummy##name [(exp) ? 1 : -1] __attribute__((__unused__));
60
61void osmo_str2lower(char *out, const char *in);
62void osmo_str2upper(char *out, const char *in);
63
64#define OSMO_SNPRINTF_RET(ret, rem, offset, len) \
65do { \
66 len += ret; \
67 if (ret > rem) \
68 ret = rem; \
69 offset += ret; \
70 rem -= ret; \
71} while (0)
72
73/*! Helper macro to terminate when an assertion failes
74 * \param[in] exp Predicate to verify
75 * This function will generate a backtrace and terminate the program if
76 * the predicate evaluates to false (0).
77 */
78#define OSMO_ASSERT(exp) \
79 if (!(exp)) { \
80 fprintf(stderr, "Assert failed %s %s:%d\n", #exp, __BASE_FILE__, __LINE__); \
81 /*osmo_generate_backtrace(); \ */\
82 abort(); \
83 }
84
85/*! duplicate a string using talloc and release its prior content (if any)
86 * \param[in] ctx Talloc context to use for allocation
87 * \param[out] dst pointer to string, will be updated with ptr to new string
88 * \param[in] newstr String that will be copieed to newly allocated string */
89/*static inline void osmo_talloc_replace_string(void *ctx, char **dst, const char *newstr)*/
90/*{*/
91/* if (*dst)*/
92/* talloc_free(*dst);*/
93/* *dst = talloc_strdup(ctx, newstr);*/
94/*}*/
95
96/*! Append to a string and re-/allocate if necessary.
97 * \param[in] ctx Talloc context to use for initial allocation.
98 * \param[in,out] dest char* to re-/allocate and append to.
99 * \param[in] fmt printf-like string format.
100 * \param[in] args Arguments for fmt.
101 *
102 * \a dest may be passed in NULL, or a string previously allocated by talloc.
103 * If an existing string is passed in, it will remain associated with whichever
104 * ctx it was allocated before, regardless whether it matches \a ctx or not.
105 */
106/*#define osmo_talloc_asprintf(ctx, dest, fmt, args ...) \*/
107/* do { \*/
108/* if (!dest) \*/
109/* dest = talloc_asprintf(ctx, fmt, ## args); \*/
110/* else \*/
111/* dest = talloc_asprintf_append((char*)dest, fmt, ## args); \*/
112/* } while (0)*/
113
114int osmo_constant_time_cmp(const uint8_t *exp, const uint8_t *rel, const int count);
115uint64_t osmo_decode_big_endian(const uint8_t *data, size_t data_len);
116uint8_t *osmo_encode_big_endian(uint64_t value, size_t data_len);
117
118size_t osmo_strlcpy(char *dst, const char *src, size_t siz);
119
120bool osmo_is_hexstr(const char *str, int min_digits, int max_digits,
121 bool require_even);
122
123bool osmo_identifier_valid(const char *str);
124bool osmo_separated_identifiers_valid(const char *str, const char *sep_chars);
125
126const char *osmo_escape_str(const char *str, int len);
127const char *osmo_escape_str_buf(const char *str, int in_len, char *buf, size_t bufsize);
128
129/*! @} */