libamxo  4.3.4
Object Definition Language (ODL) parsing
amxo_parser_main.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 #include "amxo_parser_hooks_priv.h"
61 #include "amxo_parser.tab.h"
62 
64  char* buf,
65  size_t max_size) {
66  ssize_t result = 0;
67  result = amxc_rbuffer_read(&parser->rbuffer, (char*) buf, max_size);
68  errno = 0;
69 
70  return result;
71 }
72 
74  int fd,
75  amxd_object_t* object) {
76  int retval = -1;
77 
78  parser->fd = fd;
79  parser->object = object;
80  parser->reader = amxo_parser_fd_reader;
81  parser->status = amxd_status_ok;
82 
83  amxc_string_reset(&parser->msg);
84  amxo_parser_create_lex(parser);
85  retval = yyparse(parser->scanner);
87 
89 
90  parser->fd = -1;
91 
92  if(retval == 0) {
93  amxc_string_clean(&parser->msg);
94  }
95 
96  return retval;
97 }
98 
99 static void amxo_parser_entry_point_free(amxc_llist_it_t* it) {
100  amxo_entry_t* entry = amxc_llist_it_get_data(it, amxo_entry_t, it);
101  free(entry);
102 }
103 
104 ssize_t amxo_parser_fd_reader(amxo_parser_t* parser, char* buf, size_t max_size) {
105  ssize_t result = 0;
106  off_t offset = 0;
107 
108  errno = 0;
109  result = read(parser->fd, buf, max_size - 1);
110  if((result == -1) && (errno != EAGAIN)) {
111  printf("Read failed %d\n", errno);
112  goto exit;
113  }
114  errno = 0;
115 
116  buf[result] = 0;
117  while(result - offset > 0 && buf[result - offset - 1] != '\n') {
118  offset++;
119  }
120  if(result - offset > 0) {
121  lseek(parser->fd, -offset, SEEK_CUR);
122  result -= offset;
123  }
124 
125 exit:
126  return result;
127 }
128 
129 static void amxo_parser_pop_event(event_t* e, amxd_dm_t* dm) {
130  amxd_object_t* object = amxd_dm_findf(dm, "%s", e->path);
131 
132  when_null(object, exit);
133 
134  if(dm->sigmngr.enabled) {
135  if(e->id == event_instance_add) {
136  amxd_object_send_add_inst(object, false);
137  } else if(e->id == event_object_change) {
138  amxd_object_send_changed(object, &e->data, false);
139  }
140  }
141 
142 exit:
143  amxc_llist_it_take(&e->it);
144  amxc_var_clean(&e->data);
145  free(e->path);
146  free(e);
147 }
148 
149 static void amxo_parser_send_events(amxo_parser_t* parser, amxd_dm_t* dm) {
150  amxc_llist_for_each(it, &parser->event_list) {
151  event_t* e = amxc_container_of(it, event_t, it);
152  amxo_parser_pop_event(e, dm);
153  }
154 }
155 
157  const char* file_path,
158  amxd_object_t* object) {
159  int retval = -1;
160  int fd = -1;
161 
162  fd = open(file_path, O_RDONLY);
163  if(fd == -1) {
164  retval = errno;
165  if(errno == ENOENT) {
166  amxo_parser_msg(parser, "File not found %s", file_path);
167  } else {
168  amxo_parser_msg(parser, "File open error 0x%8.8X", errno);
169  }
170  goto exit;
171  }
172  parser->file = file_path;
173  retval = amxo_parser_parse_fd_internal(parser, fd, object);
174  parser->file = NULL;
175  close(fd);
176 
177 exit:
178  return retval;
179 }
180 
182  when_null(parser, exit);
183 
184  parser->fd = -1;
185  parser->object = NULL;
186  parser->param = NULL;
187  parser->func = NULL;
188  parser->status = amxd_status_ok;
189  parser->resolved_fn = NULL;
190  parser->resolvers = NULL;
191  parser->include_stack = NULL;
192  parser->hooks = NULL;
193  parser->entry_points = NULL;
194  parser->_unused_1 = NULL;
195  parser->_unused_2 = NULL;
196  parser->post_includes = NULL;
197  parser->parent = NULL;
198  parser->resolved_fn_name = NULL;
199  parser->buffer_len = 0;
200  parser->data = NULL;
201  parser->sync_contexts = NULL;
202 
203  memset(parser->buffer, 0, 128);
204  amxc_rbuffer_init(&parser->rbuffer, 0);
205  amxc_string_init(&parser->msg, 0);
206  amxc_astack_init(&parser->object_stack);
207  amxc_llist_init(&parser->event_list);
208  amxc_var_init(&parser->config);
209  amxc_llist_init(&parser->global_config);
210  amxc_htable_init(&parser->mibs, 5);
211  amxc_llist_init(&parser->function_names);
212 
213  parser->file = "<unknown>";
214 
215 exit:
216  return;
217 }
218 
220  int retval = -1;
221  amxc_var_t* inc_dirs = NULL;
222  when_null(parser, exit);
223 
224  amxo_parser_child_init(parser);
225 
226  amxc_var_set_type(&parser->config, AMXC_VAR_ID_HTABLE);
227  inc_dirs = amxc_var_add_key(amxc_llist_t, &parser->config, "include-dirs", NULL);
228  amxc_var_add(cstring_t, inc_dirs, ".");
229 
231 
232  retval = 0;
233 
234 exit:
235  return retval;
236 }
237 
239  when_null(parser, exit);
240 
241  parser->fd = -1;
242  parser->object = NULL;
243  parser->param = NULL;
244  parser->func = NULL;
245  parser->status = amxd_status_ok;
246  parser->resolved_fn = NULL;
247 
248  amxc_rbuffer_clean(&parser->rbuffer);
249  amxc_string_clean(&parser->msg);
250  amxc_astack_clean(&parser->object_stack, NULL);
251  amxc_llist_clean(&parser->event_list, amxo_parser_free_event);
252  amxc_llist_clean(&parser->global_config, amxc_string_list_it_free);
253 
255  if(parser->resolvers != NULL) {
256  amxc_htable_delete(&parser->resolvers, NULL);
257  }
258 
259  amxc_llist_delete(&parser->hooks, NULL);
260  amxc_var_clean(&parser->config);
261  amxc_var_delete(&parser->include_stack);
262  amxc_llist_delete(&parser->entry_points, amxo_parser_entry_point_free);
263  amxc_llist_clean(&parser->function_names, amxc_string_list_it_free);
264  amxc_htable_clean(&parser->mibs, amxo_parser_del_mib_info);
265  if(parser->sync_contexts != NULL) {
266  amxc_llist_delete(&parser->sync_contexts, amxo_parser_del_sync_data);
267  }
268  amxc_var_delete(&parser->post_includes);
269 
270 exit:
271  return;
272 }
273 
275  int retval = -1;
276  when_null(parser, exit);
277 
278  *parser = (amxo_parser_t*) calloc(1, sizeof(amxo_parser_t));
279  when_null((*parser), exit);
280 
281  retval = amxo_parser_init(*parser);
282 
283 exit:
284  if((retval != 0) && (*parser != NULL)) {
285  amxo_parser_clean(*parser);
286  free(*parser);
287  *parser = NULL;
288  }
289  return retval;
290 }
291 
293  when_null(parser, exit);
294  when_null(*parser, exit);
295 
296  amxo_parser_clean(*parser);
297  free(*parser);
298  *parser = NULL;
299 
300 exit:
301  return;
302 }
303 
305  int fd,
306  amxd_object_t* object) {
307  int retval = -1;
308  struct rlimit nofile = { 0, 0 };
309  when_null(parser, exit);
310  when_null(object, exit);
311 
312  when_failed(getrlimit(RLIMIT_NOFILE, &nofile), exit);
313 
314  when_true(fd < 0 || (rlim_t) llabs(fd) > nofile.rlim_max, exit);
315  when_failed(fcntl((int) llabs(fd), F_GETFD), exit);
316 
317  amxo_hooks_start(parser);
318  retval = amxo_parser_parse_fd_internal(parser, fd, object);
319  amxc_llist_clean(&parser->global_config, amxc_string_list_it_free);
320  amxo_hooks_end(parser);
321 
322  amxo_parser_send_events(parser, amxd_object_get_dm(object));
323 
324 exit:
325  return retval;
326 }
327 
329  const char* file_path,
330  amxd_object_t* object) {
331  int retval = -1;
332  char* current_wd = getcwd(NULL, 0);
333  char* real_path = NULL;
334  char* dir_name = NULL;
335  amxc_string_t res_file_path;
336  amxc_string_init(&res_file_path, 0);
337 
338  when_null(parser, exit);
339  when_str_empty(file_path, exit);
340  when_null(object, exit);
341 
342  if(amxc_string_set_resolved(&res_file_path, file_path, &parser->config) > 0) {
343  file_path = amxc_string_get(&res_file_path, 0);
344  }
345 
346  real_path = realpath(file_path, NULL);
347  if(real_path != NULL) {
348  dir_name = dirname(real_path);
349  when_true(chdir(dir_name) == -1, exit);
350  if(dir_name[1] != 0) {
351  dir_name[strlen(dir_name)] = '/';
352  } else {
353  free(real_path);
354  real_path = realpath(file_path, NULL);
355  }
356  }
357 
358  parser->file = (real_path == NULL) ? file_path : real_path;
359  amxo_hooks_start(parser);
360  retval = amxo_parser_parse_file_impl(parser,
361  real_path == NULL ? file_path : real_path,
362  object);
363  amxc_llist_clean(&parser->global_config, amxc_string_list_it_free);
364  amxo_hooks_end(parser);
365 
366  amxo_parser_send_events(parser, amxd_object_get_dm(object));
367 
368  if(real_path != NULL) {
369  when_true(chdir(current_wd) == -1, exit);
370  }
371 
372 exit:
373  amxc_string_clean(&res_file_path);
374  free(current_wd);
375  free(real_path);
376  return retval;
377 }
378 
380  const char* text,
381  amxd_object_t* object) {
382  int retval = -1;
383  when_null(parser, exit);
384  when_null(object, exit);
385  when_str_empty(text, exit);
386 
387  amxc_rbuffer_write(&parser->rbuffer, text, strlen(text));
388  parser->object = object;
390  parser->status = amxd_status_ok;
391 
392  amxo_hooks_start(parser);
393  amxc_string_reset(&parser->msg);
394  amxo_parser_create_lex(parser);
395  retval = yyparse(parser->scanner);
396  amxo_parser_destroy_lex(parser);
397  amxo_hooks_end(parser);
398 
400 
401  amxo_parser_send_events(parser, amxd_object_get_dm(object));
402 
403  amxc_rbuffer_clean(&parser->rbuffer);
404  parser->object = NULL;
405 
406 exit:
407  return retval;
408 }
409 
411  const char* path) {
412  amxc_var_t* retval = NULL;
413  when_null(parser, exit);
414  when_str_empty(path, exit);
415 
416  retval = amxo_parser_get_config(parser, path);
417  if(retval == NULL) {
418  // add a NULL variant
419  amxc_var_t dummy;
420  amxc_var_init(&dummy);
421  amxo_parser_set_config(parser, path, &dummy);
422  retval = amxo_parser_get_config(parser, path);
423  amxc_var_clean(&dummy);
424  }
425 
426 exit:
427  return retval;
428 }
429 
431  const char* path) {
432  amxc_var_t* retval = NULL;
433  when_null(parser, exit);
434  when_str_empty(path, exit);
435 
436  retval = amxc_var_get_path(&parser->config, path, AMXC_VAR_FLAG_DEFAULT);
437 
438 exit:
439  return retval;
440 }
441 
443  const char* path,
444  amxc_var_t* value) {
445  int retval = 0;
446  when_null(parser, exit);
447  when_null(value, exit);
448  when_str_empty(path, exit);
449 
450  retval = amxc_var_set_path(&parser->config,
451  path,
452  value,
453  AMXC_VAR_FLAG_UPDATE | AMXC_VAR_FLAG_COPY | AMXC_VAR_FLAG_AUTO_ADD);
454 
455 exit:
456  return retval;
457 }
458 
460  amxo_entry_point_t fn) {
461  int retval = -1;
462  amxo_entry_t* ep = NULL;
463  when_null(parser, exit);
464  when_null(fn, exit);
465 
466  if(parser->entry_points == NULL) {
467  retval = amxc_llist_new(&parser->entry_points);
468  when_null(parser->entry_points, exit);
469  }
470 
471  amxc_llist_for_each(it, parser->entry_points) {
472  ep = amxc_llist_it_get_data(it, amxo_entry_t, it);
473  if(ep->entry_point == fn) {
474  retval = 0;
475  goto exit;
476  }
477  }
478 
479  ep = (amxo_entry_t*) calloc(1, sizeof(amxo_entry_t));
480  when_null(ep, exit);
481 
482  ep->entry_point = fn;
483  amxc_llist_append(parser->entry_points, &ep->it);
484  retval = 0;
485 
486 exit:
487  if(retval != 0) {
488  free(ep);
489  }
490  return retval;
491 }
492 
494  amxd_dm_t* dm,
495  int reason) {
496  int retval = -1;
497  int fail_count = 0;
498  bool dm_eventing_enabled = true;
499  when_null(parser, exit);
500  when_null(dm, exit);
501 
502  if(parser->entry_points != NULL) {
503  amxc_llist_for_each(it, parser->entry_points) {
504  amxo_entry_t* ep = amxc_llist_it_get_data(it, amxo_entry_t, it);
505  retval = ep->entry_point(reason, dm, parser);
506  if(retval != 0) {
507  fail_count++;
508  }
509  }
510  }
511 
512  retval = fail_count;
513  when_true(fail_count > 0, exit);
514 
515  when_true(parser->post_includes == NULL, exit);
516 
517  while(amxp_signal_read() == 0) {
518  }
519 
520  dm_eventing_enabled = GET_BOOL(&parser->config, "dm-eventing-enabled");
521  amxp_sigmngr_enable(&dm->sigmngr, dm_eventing_enabled);
522  amxc_var_for_each(var, parser->post_includes) {
523  const char* file = amxc_var_constcast(cstring_t, var);
524  if(amxo_parser_parse_file(parser, file, amxd_dm_get_root(dm)) != 0) {
525  fail_count++;
526  }
527  amxc_var_delete(&var);
528  }
529  amxp_sigmngr_enable(&dm->sigmngr, true);
530 
531  retval = fail_count;
532 
533 exit:
534  return retval;
535 }
536 
538  amxd_dm_t* dm,
539  int reason) {
540  int retval = -1;
541  int fail_count = 0;
542  when_null(parser, exit);
543  when_null(dm, exit);
544 
545  if(parser->entry_points != NULL) {
546  amxc_llist_for_each_reverse(it, parser->entry_points) {
547  amxo_entry_t* ep = amxc_llist_it_get_data(it, amxo_entry_t, it);
548  retval = ep->entry_point(reason, dm, parser);
549  if(retval != 0) {
550  fail_count++;
551  }
552  }
553  }
554 
555  retval = fail_count;
556 
557 exit:
558  return retval;
559 }
560 
562  int status = 0;
563  int fail_count = 0;
564  when_null(parser, exit);
565 
566  if(parser->sync_contexts != NULL) {
567  amxc_llist_for_each(it, parser->sync_contexts) {
568  status = amxo_parser_start_sync(it);
569  if(status != 0) {
570  fail_count++;
571  }
572  }
573  }
574 
575 exit:
576  return fail_count;
577 }
578 
580  when_null(parser, exit);
581 
582  if(parser->sync_contexts != NULL) {
583  amxc_llist_for_each(it, parser->sync_contexts) {
585  }
586  }
587 
588 exit:
589  return;
590 }
591 
592 amxs_sync_ctx_t* amxo_parser_new_sync_ctx(const char* sync_template,
593  const char* object_a,
594  const char* object_b) {
595  amxs_sync_ctx_t* templ = NULL;
596  amxs_sync_ctx_t* ctx = NULL;
597  amxs_status_t status = amxs_status_ok;
598 
599  templ = amxo_parser_sync_get(sync_template);
600  status = amxs_sync_ctx_copy(&ctx, templ, NULL);
601  when_failed(status, exit);
602 
603  status = amxs_sync_ctx_set_paths(ctx, object_a, object_b);
604 
605 exit:
606  if(status != amxs_status_ok) {
607  amxs_sync_ctx_delete(&ctx);
608  }
609  return ctx;
610 }
PRIVATE void amxo_hooks_start(amxo_parser_t *parser)
PRIVATE void amxo_hooks_end(amxo_parser_t *parser)
static ssize_t amxo_parser_string_reader(amxo_parser_t *parser, char *buf, size_t max_size)
static void amxo_parser_pop_event(event_t *e, amxd_dm_t *dm)
static void amxo_parser_send_events(amxo_parser_t *parser, amxd_dm_t *dm)
static void amxo_parser_entry_point_free(amxc_llist_it_t *it)
static int amxo_parser_parse_fd_internal(amxo_parser_t *parser, int fd, amxd_object_t *object)
void amxo_parser_child_init(amxo_parser_t *parser)
ssize_t amxo_parser_fd_reader(amxo_parser_t *parser, char *buf, size_t max_size)
int amxo_parser_parse_file_impl(amxo_parser_t *parser, const char *file_path, amxd_object_t *object)
PRIVATE amxs_sync_ctx_t * amxo_parser_sync_get(const char *sync_template)
PRIVATE void amxo_parser_del_mib_info(const char *key, amxc_htable_it_t *it)
PRIVATE void amxo_parser_create_lex(amxo_parser_t *parser)
PRIVATE void amxo_parser_stop_sync(amxc_llist_it_t *it)
PRIVATE void amxo_parser_del_sync_data(amxc_llist_it_t *it)
PRIVATE void amxo_parser_sync_remove_invalid(amxo_parser_t *pctx)
PRIVATE void amxo_parser_destroy_lex(amxo_parser_t *parser)
PRIVATE int amxo_parser_start_sync(amxc_llist_it_t *it)
PRIVATE void amxo_parser_msg(amxo_parser_t *parser, const char *format,...) __attribute__((format(printf
PRIVATE void amxo_parser_clean_resolvers(amxo_parser_t *parser)
PRIVATE void amxo_parser_init_resolvers(amxo_parser_t *parser)
@ event_instance_add
@ event_object_change
PRIVATE void amxo_parser_free_event(amxc_llist_it_t *it)
int(* amxo_entry_point_t)(int reason, amxd_dm_t *dm, amxo_parser_t *parser)
Definition: amxo_types.h:218
amxc_var_t * amxo_parser_get_config(amxo_parser_t *parser, const char *path)
Gets a configuration option.
int amxo_parser_set_config(amxo_parser_t *parser, const char *path, amxc_var_t *value)
Sets a configuration option.
amxc_var_t * amxo_parser_claim_config(amxo_parser_t *parser, const char *path)
Gets or creates a configuration option.
int amxo_parser_parse_fd(amxo_parser_t *parser, int fd, amxd_object_t *object)
Parses an odl file.
int amxo_parser_start_synchronize(amxo_parser_t *parser)
Start all object and parameter synchronizations that were declared in the loaded odl files.
int amxo_parser_parse_string(amxo_parser_t *parser, const char *text, amxd_object_t *object)
Parses a string containing a valid ODL part.
void amxo_parser_clean(amxo_parser_t *parser)
Cleans up the odl parser instance.
int amxo_parser_parse_file(amxo_parser_t *parser, const char *file_path, amxd_object_t *object)
Parses an odl file.
int amxo_parser_add_entry_point(amxo_parser_t *parser, amxo_entry_point_t fn)
Adds an entry point function.
int amxo_parser_new(amxo_parser_t **parser)
Allocates memory for a new parser instance on the heap and initializes the odl parser.
amxs_sync_ctx_t * amxo_parser_new_sync_ctx(const char *sync_template, const char *object_a, const char *object_b)
Create a new synchronization context from a synchronization template.
int amxo_parser_init(amxo_parser_t *parser)
Initializes a new odl parser instance.
int amxo_parser_rinvoke_entry_points(amxo_parser_t *parser, amxd_dm_t *dm, int reason)
Invokes all registered entry points in reversed order.
void amxo_parser_delete(amxo_parser_t **parser)
Cleans the odl parser content and frees the allocated memory.
void amxo_parser_stop_synchronize(amxo_parser_t *parser)
Stop all object and parameter synchronizations that were declared in odl files.
int amxo_parser_invoke_entry_points(amxo_parser_t *parser, amxd_dm_t *dm, int reason)
Invokes all registered entry points.
Definition: amxo_types.h:222
amxo_entry_point_t entry_point
Definition: amxo_types.h:224
amxc_llist_it_t it
Definition: amxo_types.h:223
The ODL parser structure.
Definition: amxo_types.h:245
amxc_htable_t * resolvers
Definition: amxo_types.h:269
amxc_htable_t mibs
Definition: amxo_types.h:282
amxo_fn_ptr_t resolved_fn
Definition: amxo_types.h:266
amxc_llist_t * hooks
Definition: amxo_types.h:274
char buffer[128]
Definition: amxo_types.h:287
amxc_llist_t * _unused_2
Definition: amxo_types.h:272
amxc_astack_t object_stack
Definition: amxo_types.h:261
size_t buffer_len
Definition: amxo_types.h:288
amxc_lstack_t event_list
Definition: amxo_types.h:283
amxc_llist_t function_names
Definition: amxo_types.h:268
amxo_reader_t reader
Definition: amxo_types.h:257
amxc_string_t msg
Definition: amxo_types.h:259
amxd_param_t * param
Definition: amxo_types.h:263
amxc_var_t config
Definition: amxo_types.h:250
amxc_string_t * resolved_fn_name
Definition: amxo_types.h:267
amxc_rbuffer_t rbuffer
Definition: amxo_types.h:256
amxc_var_t * include_stack
Definition: amxo_types.h:277
amxc_llist_t * _unused_1
Definition: amxo_types.h:271
const char * file
Definition: amxo_types.h:279
amxc_llist_t * entry_points
Definition: amxo_types.h:273
amxd_status_t status
Definition: amxo_types.h:258
amxc_var_t * data
Definition: amxo_types.h:265
amxc_llist_t global_config
Definition: amxo_types.h:253
void * scanner
Definition: amxo_types.h:246
amxc_var_t * post_includes
Definition: amxo_types.h:275
amxd_object_t * object
Definition: amxo_types.h:262
amxd_function_t * func
Definition: amxo_types.h:264
amxo_parser_t * parent
Definition: amxo_types.h:285
amxc_llist_t * sync_contexts
Definition: amxo_types.h:290
char * path
event_id_t id
amxc_llist_it_t it
amxc_var_t data