Workshop o mikrokontrolérech na SKSP 2024.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

168 lines
5.7 KiB

2 months ago
/*
* UCW Library -- Extended Types
*
* (c) 2014--2015 Martin Mares <mj@ucw.cz>
*
* This software may be freely distributed and used according to the terms
* of the GNU Lesser General Public License.
*/
#ifndef _UCW_XTYPES_H
#define _UCW_XTYPES_H
#ifdef CONFIG_UCW_CLEAN_ABI
#define xt_bool ucw_xt_bool
#define xt_double ucw_xt_double
#define xt_int ucw_xt_int
#define xt_intmax ucw_xt_intmax
#define xt_s64 ucw_xt_s64
#define xt_str ucw_xt_str
#define xt_u64 ucw_xt_u64
#define xt_uint ucw_xt_uint
#define xt_uintmax ucw_xt_uintmax
#define xtype_format_fmt ucw_xtype_format_fmt
#define xtype_parse_fmt ucw_xtype_parse_fmt
#define xtype_unit_parser ucw_xtype_unit_parser
#endif
struct mempool;
/***
* Definitions of types
* ~~~~~~~~~~~~~~~~~~~~
***/
/**
* A parsing callback. Takes a string, interprets it as a value of the particular
* xtype and stores it where @dest points. Returns NULL on success and an error message
* otherwise. It may allocate memory from the @pool and the parsed value can contain
* pointers to this memory.
**/
typedef const char * (*xtype_parser)(const char *str, void *dest, struct mempool *pool);
/**
* A formatting callback. Takes a value of the particular xtype and a formatting
* mode @fmt (see below for how the modes work) and returns a string representation
* of the value. The string can be allocated from the @pool, but it does not have to.
*
* When @fmt is set to `XTYPE_FMT_DEFAULT`, the resulting string should be
* parseable via the parsing callback and yield a semantically equivalent value.
**/
typedef const char * (*xtype_formatter)(void *src, u32 fmt, struct mempool *pool);
/**
* Formatting of values is controlled by a mode parameter, which is generally
* a 32-bit integer. If the most significant bit is clear, it is one of generic
* well-known modes (`XTYPE_FMT_`'something'), which can be passed to all formatters
* and if it is not understood, it acts like `XTYPE_FMT_DEFAULT`. When the most
* significant bit is set, the meaning of the mode is specific to the particular
* xtype.
**/
enum xtype_fmt {
XTYPE_FMT_DEFAULT = 0, // Default format: readable, but not hostile to machine parsing
XTYPE_FMT_RAW = 1, // Raw data with no frills
XTYPE_FMT_PRETTY = 2, // Try to please humans (e.g., like "ls -h")
XTYPE_FMT_CUSTOM = 0x80000000,
};
/**
* A callback for parsing non-generic formatting modes. See `xtype_parser` for more
* details. It is usually called via `xtype_parse_fmt`, which handles the generic modes.
**/
typedef const char * (*xtype_fmt_parser)(const char *str, u32 *dest, struct mempool *pool);
/**
* A callback for constructing a string representation of non-generic formatting modes,
* analogous to `xtype_formatter`. It is usually called via `xtype_format_fmt`,
* which handles the generic modes. Returns an empty string for unknown modes.
**/
typedef const char * (*xtype_fmt_formatter)(u32 fmt, struct mempool *pool);
/**
* This structure describes an xtype. Among other things, it points to callback
* functions handling this xtype.
**/
struct xtype {
size_t size; // How many bytes does a single value occupy
const char *name; // Name used in debug messages
xtype_parser parse; // Parsing callback
xtype_formatter format; // Formatting callback
xtype_fmt_parser parse_fmt; // Format mode parsing callback (optional)
xtype_fmt_formatter format_fmt; // Format mode formatting callback (optional)
};
/**
* Construct a formatting mode from its string representation. It is a wrapper
* around the `xtype_fmt_parser` hook, which handles generic modes first.
*
* The generic modes are called `default`, `raw`, and `pretty`.
**/
const char *xtype_parse_fmt(const struct xtype *xt, const char *str, u32 *dest, struct mempool *pool);
/**
* Construct a string representation of a formatting mode. It is a wrapper
* around the `xtype_fmt_formatter` hook, which handles generic modes first.
* Returns an empty string for unknown modes.
**/
const char *xtype_format_fmt(struct xtype *xt, u32 fmt, struct mempool *pool);
/***
* Basic pre-defined types
* ~~~~~~~~~~~~~~~~~~~~~~~
*
* We provide xtypes for many basic data types:
*
* * `xt_bool`
* * `xt_double` -- in addition to the generic formatting modes, you can use
* `XT_DOUBLE_FMT_PREC(`'n'`)` to generate a mode for fixed formatting with
* 'n' decimal places.
* * `xt_int`
* * `xt_intmax`
* * `xt_s64`
* * `xt_str` -- string, represented by a `const char *`
* * `xt_u64`
* * `xt_uint`
* * `xt_uintmax`
***/
extern const struct xtype xt_bool;
extern const struct xtype xt_double;
extern const struct xtype xt_int;
extern const struct xtype xt_intmax;
extern const struct xtype xt_s64;
extern const struct xtype xt_str;
extern const struct xtype xt_u64;
extern const struct xtype xt_uint;
extern const struct xtype xt_uintmax;
// Fixed-precision formats for xt_double
#define XT_DOUBLE_FMT_PREC(_prec) (_prec | XT_DOUBLE_FMT_PREC_FLAG)
#define XT_DOUBLE_FMT_PREC_FLAG XTYPE_FMT_CUSTOM
/***
* Tables of units
* ~~~~~~~~~~~~~~~
*
* Various xtypes accept values accompanied by a unit of measure.
* Units by handled by the xtypes themselves, but we provide a couple
* of generic functions for their convenience.
***/
/**
* Each unit is defined by a conversion ratio, which is a fraction with 64-bit numerator
* and denominator. Therefore, a value of 'x' units is interpreted as 'x' * 'num' / 'denom'.
**/
struct unit_definition {
const char *unit; // Symbol (name of the unit, as appended to values)
u64 num; // Numerator
u64 denom; // Denominator
};
/**
* Given an array @units of unit definitions (terminated by an all-zero entry),
* parse a name of a unit and return its index in the array, or -1 if it is not found.
**/
int xtype_unit_parser(const char *str, const struct unit_definition *units);
#endif