libamxo  4.3.4
Object Definition Language (ODL) parsing
amxo_ftab_resolver.c
Go to the documentation of this file.
1 /****************************************************************************
2 **
3 ** SPDX-License-Identifier: BSD-2-Clause-Patent
4 **
5 ** SPDX-FileCopyrightText: Copyright (c) 2023 SoftAtHome
6 **
7 ** Redistribution and use in source and binary forms, with or without modification,
8 ** are permitted provided that the following conditions are met:
9 **
10 ** 1. Redistributions of source code must retain the above copyright notice,
11 ** this list of conditions and the following disclaimer.
12 **
13 ** 2. Redistributions in binary form must reproduce the above copyright notice,
14 ** this list of conditions and the following disclaimer in the documentation
15 ** and/or other materials provided with the distribution.
16 **
17 ** Subject to the terms and conditions of this license, each copyright holder
18 ** and contributor hereby grants to those receiving rights under this license
19 ** a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable
20 ** (except for failure to satisfy the conditions of this license) patent license
21 ** to make, have made, use, offer to sell, sell, import, and otherwise transfer
22 ** this software, where such license applies only to those patent claims, already
23 ** acquired or hereafter acquired, licensable by such copyright holder or contributor
24 ** that are necessarily infringed by:
25 **
26 ** (a) their Contribution(s) (the licensed copyrights of copyright holders and
27 ** non-copyrightable additions of contributors, in source or binary form) alone;
28 ** or
29 **
30 ** (b) combination of their Contribution(s) with the work of authorship to which
31 ** such Contribution(s) was added by such copyright holder or contributor, if,
32 ** at the time the Contribution is added, such addition causes such combination
33 ** to be necessarily infringed. The patent license shall not apply to any other
34 ** combinations which include the Contribution.
35 **
36 ** Except as expressly stated above, no rights or licenses from any copyright
37 ** holder or contributor is granted under this license, whether expressly, by
38 ** implication, estoppel or otherwise.
39 **
40 ** DISCLAIMER
41 **
42 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
43 ** AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
44 ** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
45 ** ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
46 ** LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
47 ** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
48 ** SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
49 ** CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
50 ** OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
51 ** USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
52 **
53 ****************************************************************************/
54 
55 #ifndef _GNU_SOURCE
56 #define _GNU_SOURCE
57 #endif
58 
59 #include "amxo_parser_priv.h"
60 
61 typedef struct _amxo_ftab_fn {
62  amxc_htable_it_t hit;
65 
67  UNUSED void* priv) {
69  "check_minimum",
70  AMXO_FUNC(amxd_action_param_check_minimum));
72  "check_minimum_length",
73  AMXO_FUNC(amxd_action_param_check_minimum));
75  "check_maximum",
76  AMXO_FUNC(amxd_action_param_check_maximum));
78  "check_maximum_length",
79  AMXO_FUNC(amxd_action_param_check_maximum));
81  "check_range",
82  AMXO_FUNC(amxd_action_param_check_range));
84  "check_enum",
85  AMXO_FUNC(amxd_action_param_check_enum));
87  "check_is_in",
88  AMXO_FUNC(amxd_action_param_check_is_in));
90  "hide_value",
91  AMXO_FUNC(amxd_action_param_read_hidden_value));
93  "verify_max_instances",
94  AMXO_FUNC(amxd_action_object_add_inst));
95 }
96 
98  const char* fn_name,
100  const char* data,
101  UNUSED void* priv) {
102  amxo_fn_ptr_t fn = NULL;
103  amxo_ftab_fn_t* ftab_fn = NULL;
104  amxc_htable_t* ftab_data = NULL;
105  amxc_htable_it_t* it = NULL;
106 
107  ftab_data = amxo_parser_get_resolver_data(parser, "ftab");
108  when_null(ftab_data, exit);
109 
110  if((data != NULL) && (data[0] != 0)) {
111  it = amxc_htable_get(ftab_data, data);
112  } else {
113  amxc_string_t full_name;
114  char* path = amxd_object_get_path(parser->object, AMXD_OBJECT_NAMED);
115  amxc_string_init(&full_name, 0);
116  if((path != NULL) && (*path != 0)) {
117  amxc_string_push_buffer(&full_name, path, strlen(path) + 1);
118  amxc_string_appendf(&full_name, ".%s", fn_name);
119  it = amxc_htable_get(ftab_data, amxc_string_get(&full_name, 0));
120  }
121  amxc_string_clean(&full_name);
122  if(it == NULL) {
123  it = amxc_htable_get(ftab_data, fn_name);
124  }
125  }
126  when_null(it, exit);
127 
128  ftab_fn = amxc_htable_it_get_data(it, amxo_ftab_fn_t, hit);
129  fn = ftab_fn->fn;
130 
131 exit:
132  return fn;
133 }
134 
136  UNUSED void* priv) {
137  amxc_htable_t* ftab_data = NULL;
138  ftab_data = amxo_parser_get_resolver_data(parser, "ftab");
139  amxc_htable_clean(ftab_data, amxo_ftab_fn_free);
140  amxo_parser_remove_resolver_data(parser, "ftab");
141 }
142 
143 static bool amxo_ftab_func_name_is_valid(const char* name) {
144  bool retval = false;
145  when_str_empty(name, exit);
146  when_true(isalpha(name[0]) == 0 && name[0] != '_', exit);
147 
148  for(int i = 0; name[i] != 0; i++) {
149  if(isalnum(name[i]) == 0) {
150  if((name[i] != '_') && (name[i] != '-') && (name[i] != '.')) {
151  goto exit;
152  }
153  }
154  }
155 
156  retval = true;
157 
158 exit:
159  return retval;
160 }
161 
162 
163 void amxo_ftab_fn_free(UNUSED const char* key,
164  amxc_htable_it_t* it) {
165  amxo_ftab_fn_t* ftab_fn = amxc_htable_it_get_data(it, amxo_ftab_fn_t, hit);
166  free(ftab_fn);
167 }
168 
170  const char* fn_name,
171  amxo_fn_ptr_t fn) {
172  int retval = -1;
173  amxo_ftab_fn_t* ftab_fn = NULL;
174  amxc_htable_t* ftab_data = NULL;
175  when_null(parser, exit);
176  when_null(fn, exit);
177  when_true(!amxo_ftab_func_name_is_valid(fn_name), exit);
178 
179  ftab_data = amxo_parser_claim_resolver_data(parser, "ftab");
180  when_null(ftab_data, exit);
181  when_true(amxc_htable_contains(ftab_data, fn_name), exit);
182 
183  ftab_fn = (amxo_ftab_fn_t*) calloc(1, sizeof(amxo_ftab_fn_t));
184  when_null(ftab_fn, exit);
185 
186  ftab_fn->fn = fn;
187  amxc_htable_insert(ftab_data, fn_name, &ftab_fn->hit);
188 
189  retval = 0;
190 
191 exit:
192  return retval;
193 }
194 
196  const char* fn_name) {
197  int retval = -1;
198  amxc_htable_t* ftab_data = NULL;
199  amxc_htable_it_t* it = NULL;
200  when_null(parser, exit);
201  when_str_empty(fn_name, exit);
202  ftab_data = amxo_parser_claim_resolver_data(parser, "ftab");
203  when_null(ftab_data, exit);
204 
205  it = amxc_htable_get(ftab_data, fn_name);
206  if(it != NULL) {
207  amxc_htable_it_clean(it, amxo_ftab_fn_free);
208  }
209  retval = 0;
210 
211 exit:
212  return retval;
213 }
214 
216  when_null(parser, exit);
217  amxo_resolver_ftab_clean(parser, NULL);
218 
219 exit:
220  return;
221 }
222 
224  .hit = { .ait = NULL, .key = NULL, .next = NULL },
226  .resolve = amxo_resolver_ftab,
227  .clean = amxo_resolver_ftab_clean,
228  .priv = NULL
229 };
230 
231 CONSTRUCTOR_LVL(110) static void amxo_ftab_init(void) {
232  amxo_register_resolver("ftab", &ftab);
233 }
234 
235 DESTRUCTOR_LVL(110) static void amxo_ftab_cleanup(void) {
236  amxo_unregister_resolver("ftab");
237 }
struct _amxo_ftab_fn amxo_ftab_fn_t
static bool amxo_ftab_func_name_is_valid(const char *name)
static amxo_fn_ptr_t amxo_resolver_ftab(amxo_parser_t *parser, const char *fn_name, UNUSED amxo_fn_type_t type, const char *data, UNUSED void *priv)
static amxo_resolver_t ftab
void amxo_ftab_fn_free(UNUSED const char *key, amxc_htable_it_t *it)
static void amxo_resolver_ftab_defaults(amxo_parser_t *parser, UNUSED void *priv)
CONSTRUCTOR_LVL(110)
DESTRUCTOR_LVL(110)
static void amxo_resolver_ftab_clean(amxo_parser_t *parser, UNUSED void *priv)
void(* amxo_fn_ptr_t)(void)
Definition: amxo_types.h:71
enum _amxo_fn_type amxo_fn_type_t
int amxo_resolver_ftab_add(amxo_parser_t *parser, const char *fn_name, amxo_fn_ptr_t fn)
Adds a C function to the function table.
int amxo_resolver_ftab_remove(amxo_parser_t *parser, const char *fn_name)
Removes a function from the function table.
void amxo_resolver_ftab_clear(amxo_parser_t *parser)
Removes all functions from the function table.
int amxo_unregister_resolver(const char *name)
Unregisters a function resolver.
amxc_htable_t * amxo_parser_get_resolver_data(amxo_parser_t *parser, const char *resolver_name)
Gets the resolver specific parser data.
amxc_htable_t * amxo_parser_claim_resolver_data(amxo_parser_t *parser, const char *resolver_name)
Fetches resolver specific data for a parser instance.
#define AMXO_FUNC(x)
Function ponter caster macro.
Definition: amxo_types.h:80
int amxo_register_resolver(const char *name, amxo_resolver_t *resolver)
Registers a function resolver.
void amxo_parser_remove_resolver_data(amxo_parser_t *parser, const char *resolver_name)
Removes the resolver specific parser data.
amxc_htable_it_t hit
amxo_fn_ptr_t fn
The ODL parser structure.
Definition: amxo_types.h:245
amxd_object_t * object
Definition: amxo_types.h:262
amxc_htable_it_t hit
Definition: amxo_types.h:101
#define UNUSED
Definition: test_issue_48.c:84