Asterisk - The Open Source Telephony Project GIT-master-7e7a603
pbx_include.c
Go to the documentation of this file.
1/*
2 * Asterisk -- An open source telephony toolkit.
3 *
4 * Copyright (C) 2016, CFWare, LLC
5 *
6 * Corey Farrell <git@cfware.com>
7 *
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
13 *
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
17 */
18
19/*! \file
20 *
21 * \brief Dialplan context include routines.
22 *
23 * \author Corey Farrell <git@cfware.com>
24 */
25
26/*** MODULEINFO
27 <support_level>core</support_level>
28 ***/
29
30#include "asterisk.h"
31
32#include "asterisk/_private.h"
33#include "asterisk/pbx.h"
34#include "pbx_private.h"
35
36/*! ast_include: include= support in extensions.conf */
38 const char *name;
39 /*! Context to include */
40 const char *rname;
41 /*! Registrar */
42 const char *registrar;
43 /*! If time construct exists */
45 /*! time construct */
47 char stuff[0];
48};
49
50const char *ast_get_include_name(const struct ast_include *inc)
51{
52 return inc ? inc->name : NULL;
53}
54
55const char *include_rname(const struct ast_include *inc)
56{
57 return inc ? inc->rname : NULL;
58}
59
60const char *ast_get_include_registrar(const struct ast_include *inc)
61{
62 return inc ? inc->registrar : NULL;
63}
64
65int include_valid(const struct ast_include *inc)
66{
67 if (!inc->hastime) {
68 return 1;
69 }
70
71 return ast_check_timing(&(inc->timing));
72}
73
74struct ast_include *include_alloc(const char *value, const char *registrar)
75{
76 struct ast_include *new_include;
77 char *c;
78 int valuebufsz = strlen(value) + 1;
79 char *p;
80
81 /* allocate new include structure ... */
82 new_include = ast_calloc(1, sizeof(*new_include) + (valuebufsz * 2));
83 if (!new_include) {
84 return NULL;
85 }
86
87 /* Fill in this structure. Use 'p' for assignments, as the fields
88 * in the structure are 'const char *'
89 */
90 p = new_include->stuff;
91 new_include->name = p;
92 strcpy(p, value);
93 p += valuebufsz;
94 new_include->rname = p;
95 strcpy(p, value);
96 /* Strip off timing info, and process if it is there */
97 if ( (c = strchr(p, '|')) || (c = strchr(p, ',')) ) {
98 *c++ = '\0';
99 new_include->hastime = ast_build_timing(&(new_include->timing), c);
100 }
101 new_include->registrar = registrar;
102
103 return new_include;
104}
105
106void include_free(struct ast_include *inc)
107{
108 ast_destroy_timing(&(inc->timing));
109 ast_free(inc);
110}
Prototypes for public functions only of internal interest,.
Asterisk main include file. File version handling, generic pbx functions.
#define ast_free(a)
Definition: astmm.h:180
#define ast_calloc(num, len)
A wrapper for calloc()
Definition: astmm.h:202
Core PBX routines and definitions.
int ast_build_timing(struct ast_timing *i, const char *info_in)
Construct a timing bitmap, for use in time-based conditionals.
Definition: extconf.c:3806
int ast_check_timing(const struct ast_timing *i)
Evaluate a pre-constructed bitmap as to whether the current time falls within the range specified.
Definition: extconf.c:4000
int ast_destroy_timing(struct ast_timing *i)
Deallocates memory structures associated with a timing bitmap.
Definition: pbx_timing.c:279
static char * registrar
Definition: pbx_ael.c:78
void include_free(struct ast_include *inc)
Definition: pbx_include.c:106
int include_valid(const struct ast_include *inc)
Definition: pbx_include.c:65
struct ast_include * include_alloc(const char *value, const char *registrar)
Definition: pbx_include.c:74
const char * include_rname(const struct ast_include *inc)
Definition: pbx_include.c:55
const char * ast_get_include_name(const struct ast_include *inc)
Definition: pbx_include.c:50
const char * ast_get_include_registrar(const struct ast_include *inc)
Definition: pbx_include.c:60
Private include file for pbx.
#define NULL
Definition: resample.c:96
ast_include: include= support in extensions.conf
Definition: pbx_include.c:37
struct ast_timing timing
Definition: pbx_include.c:46
const char * rname
Definition: pbx_include.c:40
char stuff[0]
Definition: pbx_include.c:47
const char * registrar
Definition: pbx_include.c:42
const char * name
Definition: pbx_include.c:38
int value
Definition: syslog.c:37
static struct test_val c