| /*****************************************************************************\ |
| * data.h - generic data_t structures |
| ***************************************************************************** |
| * Copyright (C) 2019 SchedMD LLC. |
| * Written by Nathan Rini <nate@schedmd.com> |
| * |
| * This file is part of Slurm, a resource management program. |
| * For details, see <https://slurm.schedmd.com/>. |
| * Please also read the included file: DISCLAIMER. |
| * |
| * Slurm is free software; you can redistribute it and/or modify it under |
| * the terms of the GNU General Public License as published by the Free |
| * Software Foundation; either version 2 of the License, or (at your option) |
| * any later version. |
| * |
| * In addition, as a special exception, the copyright holders give permission |
| * to link the code of portions of this program with the OpenSSL library under |
| * certain conditions as described in each individual source file, and |
| * distribute linked combinations including the two. You must obey the GNU |
| * General Public License in all respects for all of the code used other than |
| * OpenSSL. If you modify file(s) with this exception, you may extend this |
| * exception to your version of the file(s), but you are not obligated to do |
| * so. If you do not wish to do so, delete this exception statement from your |
| * version. If you delete this exception statement from all source files in |
| * the program, then also delete it here. |
| * |
| * Slurm is distributed in the hope that it will be useful, but WITHOUT ANY |
| * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
| * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more |
| * details. |
| * |
| * You should have received a copy of the GNU General Public License along |
| * with Slurm; if not, write to the Free Software Foundation, Inc., |
| * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| \*****************************************************************************/ |
| |
| #ifndef _DATA_H |
| #define _DATA_H |
| |
| #include <inttypes.h> |
| #include <stdbool.h> |
| #include <stddef.h> |
| |
| #include "src/common/list.h" |
| |
| /* |
| * The possible types of data. |
| * |
| * Each one is based on ECMA types. |
| */ |
| typedef enum { |
| DATA_TYPE_NONE = 0, /* invalid or unknown type */ |
| DATA_TYPE_NULL, /* ECMA-262:4.3.13 NULL type */ |
| DATA_TYPE_LIST, /* ECMA-262:22.1 Array Object (ordered list) */ |
| DATA_TYPE_DICT, /* ECMA-262:23.1 Map Object (dictionary) */ |
| DATA_TYPE_INT_64, /* 64bit signed integer |
| This exists as an convenient storage type. |
| ECMA does not have an integer primitive. |
| ECMA-262:7.1.4 ToInteger() returns approx |
| this value with some rounding. */ |
| DATA_TYPE_STRING, /* ECMA-262:4.3.18 String type */ |
| DATA_TYPE_FLOAT, /* ECMA-262:6.1.6 Number type */ |
| DATA_TYPE_BOOL, /* ECMA-262:4.3.15 Boolean type */ |
| DATA_TYPE_MAX /* only for bounds checking */ |
| } data_type_t; |
| |
| /* convert type to readable string */ |
| extern char *data_type_to_string(data_type_t type); |
| |
| /* opaque type for list_u and dict_u */ |
| typedef struct data_list_s data_list_t; |
| |
| /* |
| * Opaque data struct to hold generic data. |
| * data is based on the JSON data type and has the same types. |
| * data forms a tree structure. |
| * please avoid direct access of this struct and only use access functions. |
| * the nature of this struct may change at any time, only pass around pointers |
| * created from data_new(). |
| */ |
| typedef struct { |
| int magic; |
| data_type_t type; |
| union { /* append "_u" to every type to avoid reserved words */ |
| data_list_t *list_u; |
| data_list_t *dict_u; |
| int64_t int_u; |
| char *string_u; |
| double float_u; |
| bool bool_u; |
| } data; |
| } data_t; |
| |
| /* |
| * Enum to control how the foreach will |
| * handle the result of a function call |
| */ |
| typedef enum { |
| DATA_FOR_EACH_INVALID = 0, |
| DATA_FOR_EACH_CONT, /* continue for each processing */ |
| DATA_FOR_EACH_DELETE, /* delete item */ |
| DATA_FOR_EACH_STOP, /* stop for each processing */ |
| DATA_FOR_EACH_FAIL, /* stop for each processing due to failure */ |
| DATA_FOR_EACH_MAX, /* assertion only value on max value */ |
| } data_for_each_cmd_t; |
| |
| /* |
| * Function prototype for operating on each item in a list typed data_t. |
| * Returns command requested for processing |
| */ |
| typedef data_for_each_cmd_t (*DataListForF) (data_t *data, void *arg); |
| /* |
| * Function prototype for operating on each item in a list typed data_t. |
| * Returns command requested for processing |
| */ |
| typedef data_for_each_cmd_t (*DataListForFConst) (const data_t *data, void *arg); |
| |
| /* |
| * Function prototype for operating on each item in a dictionary typed data_t. |
| * Returns command requested for processing |
| */ |
| typedef data_for_each_cmd_t (*DataDictForF) (const char *key, data_t *data, void *arg); |
| |
| /* |
| * Function prototype for operating on each item in a dictionary typed data_t. |
| * Returns command requested for processing |
| */ |
| typedef data_for_each_cmd_t (*DataDictForFConst) (const char *key, const data_t *data, void *arg); |
| |
| /* |
| * Initialize static structs needed by data functions. |
| * WARNING: must be called only once before any data commands |
| * RET SLURM_SUCCESS or error |
| */ |
| extern int data_init_static(void); |
| extern void data_destroy_static(void); |
| |
| /* |
| * Create new data struct. |
| * must call FREE_NULL_DATA() against resultant. |
| * do not xfree(). |
| * RET data structure or will abort() |
| */ |
| extern data_t *data_new(void); |
| /* |
| * safely and recursively frees all parts of data struct. |
| * Try to use FREE_NULL_DATA() instead. |
| * IN data structure to free |
| * */ |
| extern void data_free(data_t *data); |
| |
| #define FREE_NULL_DATA(_X) \ |
| do { \ |
| if (_X) \ |
| data_free(_X); \ |
| _X = NULL; \ |
| } while (0) |
| |
| /* |
| * Get data type enum. |
| * IN data structure to examine |
| * RET enum value of type. |
| * returns DATA_TYPE_NONE if data is NULL. |
| */ |
| extern data_type_t data_get_type(const data_t *data); |
| |
| /* |
| * Set data to float type with given value. |
| * IN data structure to modify |
| * IN value value to set |
| * RET data ptr or NULL on error |
| */ |
| extern data_t *data_set_float(data_t *data, double value); |
| |
| /* |
| * Set data to NULL type (no value possible) |
| * IN data structure to modify |
| * RET data ptr or NULL on error |
| */ |
| extern data_t *data_set_null(data_t *data); |
| |
| /* |
| * Set data to bool type with given value. |
| * IN data structure to modify |
| * IN value value to set |
| * RET data ptr or NULL on error |
| */ |
| extern data_t *data_set_bool(data_t *data, bool value); |
| |
| /* |
| * Set data to signed 64 bit integer type with given value. |
| * IN data structure to modify |
| * IN value value to set |
| * RET data ptr or NULL on error |
| */ |
| extern data_t *data_set_int(data_t *data, int64_t value); |
| |
| /* |
| * Set data to string type with given value. |
| * IN data structure to modify |
| * IN value value to set |
| * RET data ptr or NULL on error |
| */ |
| extern data_t *data_set_string(data_t *data, const char *value); |
| |
| /* |
| * Detect data type and if possible, change to correct type. |
| * WARNING: command is currently only useful for to/from DATA_TYPE_STRING. |
| * WARNING: Does not work on dict or list types |
| * IN data structure to try to type and convert |
| * IN match try to detect this type only |
| * or DATA_TYPE_NONE to try automatic matching |
| * RET new data type or DATA_TYPE_NONE on no change |
| */ |
| extern data_type_t data_convert_type(data_t *data, const data_type_t match); |
| |
| /* |
| * Recursively apply data_convert_type() to entire data tree |
| * IN data structure to try to type and convert |
| * IN match try to detect this type only |
| * or DATA_TYPE_NONE to try automatic matching |
| * RET count of data nodes converted (may be 0) |
| */ |
| extern size_t data_convert_tree(data_t *data, const data_type_t match); |
| |
| /* |
| * Get data as floating point number |
| * IN data data to retrieve as a double |
| * RET NAN (if not a float type) or value |
| * WARNING: only use this function if type already known as DATA_TYPE_FLOAT |
| */ |
| extern double data_get_float(const data_t *data); |
| |
| /* |
| * Get data as Boolean |
| * IN data data to retrieve as a bool |
| * RET false (if not a bool type) or value |
| * WARNING: only use this function if type already known as DATA_TYPE_BOOL |
| */ |
| extern bool data_get_bool(const data_t *data); |
| |
| /* |
| * Get data as bool and force conversion if possible. |
| * IN data data to convert to bool and set to bool if successful |
| * IN ptr_buffer ptr to set if bool conversion is successful |
| * RET SLURM_SUCCESS or error |
| */ |
| extern int data_get_bool_converted(data_t *data, bool *ptr_buffer); |
| |
| /* |
| * Get data as bool and force conversion if possible in clone if required |
| * IN data data to convert to bool |
| * IN ptr_buffer ptr to set if bool value is successful |
| * RET SLURM_SUCCESS or error |
| */ |
| extern int data_copy_bool_converted(const data_t *data, bool *ptr_buffer); |
| |
| /* |
| * Get data as int |
| * IN data data to retrieve as a int64_t |
| * RET false (if not a int type) or value |
| * WARNING: only use this function if type already known as DATA_TYPE_INT_64 |
| */ |
| extern int64_t data_get_int(const data_t *data); |
| |
| /* |
| * Get data as int and force conversion if possible. |
| * IN data data to convert to int |
| * IN ptr_buffer ptr to set if string conversion is successful |
| * RET SLURM_SUCCESS or error |
| */ |
| extern int data_get_int_converted(const data_t *d, int64_t *ptr_buffer); |
| |
| /* |
| * Get data as string and force conversion if possible. |
| * IN data data to convert into a string |
| * RET data converted to string or NULL on failure |
| */ |
| extern const char *data_get_string(const data_t *data); |
| |
| /* |
| * Get data as string and force conversion if possible. |
| * IN data data to convert to string |
| * IN ptr_buffer ptr to set if string conversion is successful (must xfree()) or |
| * will be set to NULL |
| * RET SLURM_SUCCESS or error |
| */ |
| extern int data_get_string_converted(const data_t *d, char **ptr_buffer); |
| |
| /* |
| * Set data as type dictionary. |
| * Warning: this must be called before adding key entries. |
| * IN data data to set as dictionary type |
| * RET ptr to data |
| */ |
| extern data_t *data_set_dict(data_t *data); |
| |
| /* |
| * Set data as type list. |
| * Warning: this must be called before adding list entries. |
| * IN data data to set as list type |
| * RET ptr to data |
| */ |
| extern data_t *data_set_list(data_t *data); |
| |
| /* |
| * For each item in data list [d], invokes the function [f] with [arg]. |
| * |
| * Returns a count of the number of items on which [f] returned |
| * DATA_FOR_EACH_CONT. |
| * |
| * Will process per return of [f] |
| */ |
| extern int data_list_for_each(data_t *d, DataListForF f, void *arg); |
| |
| /* |
| * For each item in data list [d], invokes the function [f] with [arg]. |
| * |
| * Returns a count of the number of items on which [f] returned |
| * DATA_FOR_EACH_CONT. |
| * |
| * Will process per return of [f] |
| */ |
| extern int data_list_for_each_const(const data_t *d, DataListForFConst f, void *arg); |
| |
| /* |
| * For each item in data dictionary [d], invokes the function [f] with [arg]. |
| * |
| * Returns a count of the number of items on which [f] returned |
| * DATA_FOR_EACH_CONT. |
| * |
| * Will process per return of [f] |
| */ |
| extern int data_dict_for_each(data_t *d, DataDictForF f, void *arg); |
| |
| /* |
| * For each item in data dictionary [d], invokes the function [f] with [arg]. |
| * |
| * Returns a count of the number of items on which [f] returned |
| * DATA_FOR_EACH_CONT. |
| * |
| * Will process per return of [f] |
| */ |
| extern int data_dict_for_each_const(const data_t *d, DataDictForFConst f, void *arg); |
| |
| /* |
| * Get number of entities in dictionary |
| * IN data data object to count dictionary entities |
| * RET cardinality of data (may return 0 for empty dictionary) |
| */ |
| extern size_t data_get_dict_length(const data_t *data); |
| |
| /* |
| * Append NULL data to end of list |
| * IN data data object (list type only) to append a new data object |
| * RET new data object at end of list |
| */ |
| extern data_t *data_list_append(data_t *data); |
| |
| /* |
| * Append NULL data to start of list |
| * IN data data object (list type only) to prepend a new data object |
| * RET new data object at start of list |
| */ |
| extern data_t *data_list_prepend(data_t *data); |
| |
| /* |
| * Get number of entities in list |
| * IN data data object to count list entities |
| * RET cardinality of data (may return 0 for empty list) |
| */ |
| extern size_t data_get_list_length(const data_t *data); |
| |
| /* |
| * Get data entry with given key (from constant data). |
| * IN data constant data object to find entity with given key string |
| * IN key string of key to find |
| * RET ptr to data or NULL if it doesn't exist. |
| */ |
| extern const data_t *data_key_get_const(const data_t *data, const char *key); |
| |
| /* |
| * Get data entry with given key |
| * IN data data object to find entity with given key string |
| * IN key string of key to find |
| * RET ptr to data or NULL if it doesn't exist. |
| */ |
| extern data_t *data_key_get(data_t *data, const char *key); |
| |
| /* |
| * Create data entry with given key. |
| * Use this as a quick way to add or update a given key. |
| * |
| * IN data data object to find entity with given key string |
| * IN key string of key to find |
| * RET ptr to new data object or existing data object with given key |
| */ |
| extern data_t *data_key_set(data_t *data, const char *key); |
| |
| /* |
| * set key using integer instead of string. |
| * Same functionality as data_key_set(). |
| * |
| * IN data data object to set entity with given key |
| * IN key integer key of data to set (converted to string) |
| * RET ptr to new data object or existing data object with given key |
| */ |
| extern data_t *data_key_set_int(data_t *data, const int64_t key); |
| |
| /* |
| * remove and free data at given key |
| * |
| * IN data data object to unset entity with given key |
| * IN key key of entity to remove |
| * RET true if key found and removed, false if not found |
| */ |
| extern bool data_key_unset(data_t *data, const char *key); |
| |
| /* |
| * attempt to match two data by type and values |
| * Warning: order matters & lists must not contain list/dict entries |
| * IN data - data source a to check |
| * IN path - data source b to verify a against |
| * IN mask - if true, if b entry is NULL, then ignore value in entry in a |
| * RET true on match, false otherwise |
| */ |
| extern bool data_check_match(const data_t *a, const data_t *b, bool mask); |
| |
| /* |
| * resolve out path based on data object full of dictionary keys |
| * IN data dictionary of dictionaries to search |
| * IN path /key/path/to/value to search |
| * RET ptr to data of value or NULL if not found |
| */ |
| extern const data_t * |
| data_resolve_dict_path(const data_t *data, const char *path); |
| |
| /* |
| * create (or resolve) out path based on data object full of dictionary keys |
| * IN data dictionary of dictionaries to search |
| * IN path /key/path/to/value to search and create if required |
| * RET ptr to data of value or NULL on error (mainly non-dictionary in path) |
| */ |
| extern data_t *data_define_dict_path(data_t *data, const char *path); |
| |
| /* |
| * retrieve data from given dictionary path of type string |
| * IN data dictionary to traverse |
| * IN path path to find |
| * IN ptr_buffer ptr to buffer to set with string ptr (you must xfree()) |
| * will xfree if not null |
| * RET SLURM_SUCCESS if found and copied or error |
| */ |
| extern int data_retrieve_dict_path_string(const data_t *data, const char *path, |
| char **ptr_buffer); |
| |
| /* |
| * retrieve data from given dictionary path of type bool |
| * IN data dictionary to traverse |
| * IN path path to find |
| * IN ptr_buffer ptr to set (true or false) |
| * RET SLURM_SUCCESS if found and copied or error |
| */ |
| extern int data_retrieve_dict_path_bool(const data_t *data, const char *path, |
| bool *ptr_buffer); |
| |
| /* |
| * retrieve data from given dictionary path of type integer |
| * IN data dictionary to traverse |
| * IN path path to find |
| * IN ptr_buffer ptr to set with integer |
| * RET SLURM_SUCCESS if found and copied or error |
| */ |
| extern int data_retrieve_dict_path_int(const data_t *data, const char *path, |
| int64_t *ptr_buffer); |
| |
| /* |
| * deep copy entire data tree from src to dest |
| * IN dest destination data to overwrite |
| * IN src source data to deep copy |
| * RET ptr to dest or NULL on error |
| */ |
| extern data_t *data_copy(data_t *dest, const data_t *src); |
| |
| #endif /* _DATA_H */ |