libamxo  4.3.4
Object Definition Language (ODL) parsing
amxo_resolver_mngr.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 static amxc_htable_t resolvers;
62 
64  const char* resolver_name,
65  const char* func_name,
66  amxo_fn_type_t type,
67  const char* data) {
68  int retval = -1;
69  amxo_resolver_t* resolver = NULL;
70  amxc_htable_it_t* hit = NULL;
71  amxc_string_t res_name;
72  amxc_string_init(&res_name, 0);
73 
74  if(amxc_string_set_resolved(&res_name, resolver_name, &parser->config) > 0) {
75  resolver_name = amxc_string_get(&res_name, 0);
76  }
77 
78  hit = amxc_htable_get(&resolvers, resolver_name);
79  when_null(hit, exit);
80 
81  parser->status = amxd_status_ok;
82  resolver = amxc_htable_it_get_data(hit, amxo_resolver_t, hit);
83  parser->resolved_fn = resolver->resolve(parser,
84  func_name,
85  type,
86  data,
87  resolver->priv);
88  if(parser->status == amxd_status_ok) {
89  retval = parser->resolved_fn == NULL ? 1 : 0;
90  } else {
91  retval = -2;
92  }
93 
94 exit:
95  amxc_string_clean(&res_name);
96  return retval;
97 }
98 
99 amxc_htable_t* amxo_parser_get_resolvers(void) {
100  return &resolvers;
101 }
102 
104  amxc_htable_it_t* hit_data = NULL;
105  amxc_htable_it_t* hit_resolver = NULL;
106 
107  when_null(parser->resolvers, exit);
108 
109  hit_data = amxc_htable_get_first(parser->resolvers);
110  while(hit_data) {
111  const char* key = amxc_htable_it_get_key(hit_data);
112  amxo_resolver_t* resolver = NULL;
113  hit_resolver = amxc_htable_get(&resolvers, key);
114  resolver = amxc_htable_it_get_data(hit_resolver, amxo_resolver_t, hit);
115  if(resolver->clean != NULL) {
116  resolver->clean(parser, resolver->priv);
117  }
118  hit_data = amxc_htable_get_first(parser->resolvers);
119  }
120 
121 exit:
122  return;
123 }
124 
126  amxc_htable_for_each(hit, (&resolvers)) {
127  amxo_resolver_t* resolver =
128  amxc_htable_it_get_data(hit, amxo_resolver_t, hit);
129  if(resolver->get != NULL) {
130  resolver->get(parser, resolver->priv);
131  }
132  }
133 
134  return;
135 }
136 
137 int amxo_register_resolver(const char* name,
138  amxo_resolver_t* resolver) {
139  int retval = -1;
140  when_null(resolver, exit);
141  when_true(!amxd_name_is_valid(name), exit);
142  when_not_null(amxc_htable_get(&resolvers, name), exit);
143  when_null(resolver->resolve, exit);
144 
145  amxc_htable_insert(&resolvers, name, &resolver->hit);
146 
147  retval = 0;
148 
149 exit:
150  return retval;
151 }
152 
153 int amxo_unregister_resolver(const char* name) {
154  int retval = -1;
155  amxc_htable_it_t* hit = NULL;
156  when_str_empty(name, exit);
157 
158  hit = amxc_htable_get(&resolvers, name);
159  when_null(hit, exit);
160  amxc_htable_it_clean(hit, NULL);
161 
162  retval = 0;
163 exit:
164  return retval;
165 }
166 
168  const char* resolver_name) {
169  amxc_htable_t* data_table = NULL;
170  amxo_res_data_t* resolver_data = NULL;
171  amxc_htable_it_t* it = NULL;
172  when_null(parser, exit);
173  when_str_empty(resolver_name, exit);
174  when_null(amxc_htable_get(&resolvers, resolver_name), exit);
175 
176  if(parser->resolvers == NULL) {
177  amxc_htable_new(&parser->resolvers, 10);
178  when_null(parser->resolvers, exit);
179  }
180 
181  it = amxc_htable_get(parser->resolvers, resolver_name);
182  if(it == NULL) {
183  resolver_data = (amxo_res_data_t*) calloc(1, sizeof(amxo_res_data_t));
184  when_null(resolver_data, exit);
185  amxc_htable_init(&resolver_data->data, 10);
186  amxc_htable_insert(parser->resolvers, resolver_name, &resolver_data->hit);
187  } else {
188  resolver_data = amxc_htable_it_get_data(it, amxo_res_data_t, hit);
189  }
190 
191  data_table = &resolver_data->data;
192 
193 exit:
194  return data_table;
195 }
196 
198  const char* resolver_name) {
199  amxc_htable_t* data_table = NULL;
200  amxo_res_data_t* resolver_data = NULL;
201  amxc_htable_it_t* it = NULL;
202  when_null(parser, exit);
203  when_str_empty(resolver_name, exit);
204  when_null(parser->resolvers, exit);
205  when_null(amxc_htable_get(&resolvers, resolver_name), exit);
206 
207  it = amxc_htable_get(parser->resolvers, resolver_name);
208  when_null(it, exit);
209  resolver_data = amxc_htable_it_get_data(it, amxo_res_data_t, hit);
210  data_table = &resolver_data->data;
211 
212 exit:
213  return data_table;
214 }
215 
217  const char* resolver_name) {
218  amxo_res_data_t* resolver_data = NULL;
219  amxc_htable_it_t* it = NULL;
220  when_null(parser, exit);
221  when_str_empty(resolver_name, exit);
222  when_null(parser->resolvers, exit);
223  when_null(amxc_htable_get(&resolvers, resolver_name), exit);
224 
225  it = amxc_htable_get(parser->resolvers, resolver_name);
226  when_null(it, exit);
227  resolver_data = amxc_htable_it_get_data(it, amxo_res_data_t, hit);
228  amxc_htable_it_take(&resolver_data->hit);
229  amxc_htable_it_clean(&resolver_data->hit, NULL);
230  free(resolver_data);
231 
232 exit:
233  return;
234 }
235 
236 CONSTRUCTOR_LVL(101) static void amxo_resolvers_init(void) {
237  amxc_htable_init(&resolvers, 10);
238 }
239 
240 DESTRUCTOR_LVL(101) static void amxo_resolvers_cleanup(void) {
241  amxc_htable_clean(&resolvers, NULL);
242 }
int amxo_parser_resolve(amxo_parser_t *parser, const char *resolver_name, const char *func_name, amxo_fn_type_t type, const char *data)
DESTRUCTOR_LVL(101)
void amxo_parser_clean_resolvers(amxo_parser_t *parser)
static amxc_htable_t resolvers
void amxo_parser_init_resolvers(amxo_parser_t *parser)
CONSTRUCTOR_LVL(101)
amxc_htable_t * amxo_parser_get_resolvers(void)
enum _amxo_fn_type amxo_fn_type_t
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.
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.
The ODL parser structure.
Definition: amxo_types.h:245
amxc_htable_t * resolvers
Definition: amxo_types.h:269
amxo_fn_ptr_t resolved_fn
Definition: amxo_types.h:266
amxc_var_t config
Definition: amxo_types.h:250
amxd_status_t status
Definition: amxo_types.h:258
amxc_htable_it_t hit
amxc_htable_t data
amxo_res_get_default_t get
Definition: amxo_types.h:102
amxo_res_resolve_fn_t resolve
Definition: amxo_types.h:103
amxo_res_clean_fn_t clean
Definition: amxo_types.h:104
amxc_htable_it_t hit
Definition: amxo_types.h:101