libamxo  4.3.4
Object Definition Language (ODL) parsing
amxo_auto_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 
62  UNUSED void* priv) {
63  amxc_var_t* config = amxo_parser_claim_config(parser, "auto-resolver-order");
64  amxc_var_set_type(config, AMXC_VAR_ID_LIST);
65 
66  amxc_var_add(cstring_t, config, "ftab");
67  amxc_var_add(cstring_t, config, "import");
68  amxc_var_add(cstring_t, config, "*");
69 
70  return;
71 }
72 
74  const char* fn_name,
75  amxo_fn_type_t type,
76  UNUSED const char* data,
77  UNUSED void* priv) {
78  int retval = -1;
79  amxc_var_t* config = amxo_parser_claim_config(parser, "auto-resolver-order");
80  const amxc_llist_t* order = amxc_var_constcast(amxc_llist_t, config);
81  amxc_htable_t* resolvers = amxo_parser_get_resolvers();
82  amxc_var_t used_resolvers;
83  const char* name = NULL;
84 
85  amxc_var_init(&used_resolvers);
86  amxc_var_set_type(&used_resolvers, AMXC_VAR_ID_HTABLE);
87  amxc_var_add_key(bool, &used_resolvers, "auto", true);
88  amxc_llist_for_each(it, order) {
89  name = amxc_var_constcast(cstring_t, amxc_var_from_llist_it(it));
90  if(name[0] == '*') {
91  break;
92  }
93  retval = amxo_parser_resolve(parser, name, fn_name, type, NULL);
94  when_true(retval == 0, exit);
95  amxc_var_add_key(bool, &used_resolvers, name, true);
96  }
97 
98  when_true((name != NULL && name[0] != '*'), exit);
99 
100  amxc_htable_for_each(hit, resolvers) {
101  name = amxc_htable_it_get_key(hit);
102  if(amxc_var_get_key(&used_resolvers, name, AMXC_VAR_FLAG_DEFAULT)) {
103  continue;
104  }
105  retval = amxo_parser_resolve(parser, name, fn_name, type, NULL);
106  when_true(retval == 0, exit);
107  }
108 
109 exit:
110  amxc_var_clean(&used_resolvers);
111  if(retval == 0) {
112  return parser->resolved_fn;
113  } else {
114  return NULL;
115  }
116 }
117 
119  .hit = { .ait = NULL, .key = NULL, .next = NULL },
121  .resolve = amxo_resolver_auto,
122  .clean = NULL,
123  .priv = NULL
124 };
125 
126 CONSTRUCTOR_LVL(110) static void amxo_auto_init(void) {
128 }
129 
130 DESTRUCTOR_LVL(110) static void amxo_auto_cleanup(void) {
131  amxo_unregister_resolver("auto");
132 }
static amxo_fn_ptr_t amxo_resolver_auto(amxo_parser_t *parser, const char *fn_name, amxo_fn_type_t type, UNUSED const char *data, UNUSED void *priv)
static void amxo_resolver_auto_defaults(amxo_parser_t *parser, UNUSED void *priv)
static amxo_resolver_t res_auto
CONSTRUCTOR_LVL(110)
DESTRUCTOR_LVL(110)
PRIVATE amxc_htable_t * amxo_parser_get_resolvers(void)
PRIVATE int amxo_parser_resolve(amxo_parser_t *parser, const char *resolver_name, const char *func_name, amxo_fn_type_t type, const char *data)
static amxc_htable_t resolvers
void(* amxo_fn_ptr_t)(void)
Definition: amxo_types.h:71
enum _amxo_fn_type amxo_fn_type_t
config
amxc_var_t * amxo_parser_claim_config(amxo_parser_t *parser, const char *path)
Gets or creates a configuration option.
int amxo_unregister_resolver(const char *name)
Unregisters a function resolver.
int amxo_register_resolver(const char *name, amxo_resolver_t *resolver)
Registers a function resolver.
The ODL parser structure.
Definition: amxo_types.h:245
amxo_fn_ptr_t resolved_fn
Definition: amxo_types.h:266
amxc_htable_it_t hit
Definition: amxo_types.h:101
#define UNUSED
Definition: test_issue_48.c:84