conf2ael.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786
  1. /*
  2. * Asterisk -- An open source telephony toolkit.
  3. *
  4. * Copyright (C) 2007, Digium, Inc.
  5. *
  6. * Steve Murphy <murf@digium.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. *
  20. * Reverse compile extensions.conf code into prototype AEL code
  21. *
  22. */
  23. /*** MODULEINFO
  24. <depend>res_ael_share</depend>
  25. <support_level>extended</support_level>
  26. ***/
  27. #include "asterisk.h"
  28. ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
  29. #include "asterisk/paths.h" /* CONFIG_DIR */
  30. #include <locale.h>
  31. #include <ctype.h>
  32. #if !defined(SOLARIS) && !defined(__CYGWIN__)
  33. #include <err.h>
  34. #endif
  35. #include <regex.h>
  36. #include "asterisk.h"
  37. #include "asterisk/pbx.h"
  38. #include "asterisk/ast_expr.h"
  39. #include "asterisk/channel.h"
  40. #include "asterisk/chanvars.h"
  41. #include "asterisk/module.h"
  42. #include "asterisk/app.h"
  43. #include "asterisk/config.h"
  44. #include "asterisk/options.h"
  45. #include "asterisk/callerid.h"
  46. #include "asterisk/lock.h"
  47. #include "asterisk/hashtab.h"
  48. #include "asterisk/ael_structs.h"
  49. #include "asterisk/devicestate.h"
  50. #include "asterisk/stringfields.h"
  51. #include "asterisk/pval.h"
  52. #include "asterisk/extconf.h"
  53. struct ast_flags ast_compat = { 7 };
  54. const char *ast_config_AST_CONFIG_DIR = "/etc/asterisk"; /* placeholder */
  55. void get_start_stop(unsigned int *word, int bitsperword, int totalbits, int *start, int *end);
  56. int all_bits_set(unsigned int *word, int bitsperword, int totalbits);
  57. extern char *days[];
  58. extern char *months[];
  59. char *config = "extensions.conf";
  60. /*
  61. static char *registrar = "conf2ael";
  62. static char userscontext[AST_MAX_EXTENSION] = "default";
  63. static int static_config = 0;
  64. static int write_protect_config = 1;
  65. static int autofallthrough_config = 0;
  66. static int clearglobalvars_config = 0;
  67. char ast_config_AST_SYSTEM_NAME[20] = ""; */
  68. /* static AST_RWLIST_HEAD_STATIC(acf_root, ast_custom_function); */
  69. //extern char ast_config_AST_CONFIG_DIR[PATH_MAX];
  70. int option_debug = 0;
  71. int option_verbose = 0;
  72. void ast_register_file_version(const char *file, const char *version);
  73. void ast_register_file_version(const char *file, const char *version)
  74. {
  75. }
  76. void ast_unregister_file_version(const char *file);
  77. void ast_unregister_file_version(const char *file)
  78. {
  79. }
  80. #if !defined(LOW_MEMORY)
  81. int ast_add_profile(const char *x, uint64_t scale) { return 0;}
  82. #endif
  83. /* Our own version of ast_log, since the expr parser uses it. -- stolen from utils/check_expr.c */
  84. void ast_log(int level, const char *file, int line, const char *function, const char *fmt, ...) __attribute__((format(printf,5,6)));
  85. void ast_log(int level, const char *file, int line, const char *function, const char *fmt, ...)
  86. {
  87. va_list vars;
  88. va_start(vars,fmt);
  89. printf("LOG: lev:%d file:%s line:%d func: %s ",
  90. level, file, line, function);
  91. vprintf(fmt, vars);
  92. fflush(stdout);
  93. va_end(vars);
  94. }
  95. /* stolen from pbx.c */
  96. struct ast_context;
  97. struct ast_app;
  98. #ifdef LOW_MEMORY
  99. #define EXT_DATA_SIZE 256
  100. #else
  101. #define EXT_DATA_SIZE 8192
  102. #endif
  103. #define SWITCH_DATA_LENGTH 256
  104. #define VAR_BUF_SIZE 4096
  105. #define VAR_NORMAL 1
  106. #define VAR_SOFTTRAN 2
  107. #define VAR_HARDTRAN 3
  108. #define BACKGROUND_SKIP (1 << 0)
  109. #define BACKGROUND_NOANSWER (1 << 1)
  110. #define BACKGROUND_MATCHEXTEN (1 << 2)
  111. #define BACKGROUND_PLAYBACK (1 << 3)
  112. /*!
  113. \brief ast_exten: An extension
  114. The dialplan is saved as a linked list with each context
  115. having it's own linked list of extensions - one item per
  116. priority.
  117. */
  118. struct ast_exten {
  119. char *exten; /*!< Extension name */
  120. int matchcid; /*!< Match caller id ? */
  121. const char *cidmatch; /*!< Caller id to match for this extension */
  122. int priority; /*!< Priority */
  123. const char *label; /*!< Label */
  124. struct ast_context *parent; /*!< The context this extension belongs to */
  125. const char *app; /*!< Application to execute */
  126. struct ast_app *cached_app; /*!< Cached location of application */
  127. void *data; /*!< Data to use (arguments) */
  128. void (*datad)(void *); /*!< Data destructor */
  129. struct ast_exten *peer; /*!< Next higher priority with our extension */
  130. const char *registrar; /*!< Registrar */
  131. struct ast_exten *next; /*!< Extension with a greater ID */
  132. char stuff[0];
  133. };
  134. /*! \brief ast_include: include= support in extensions.conf */
  135. struct ast_include {
  136. const char *name;
  137. const char *rname; /*!< Context to include */
  138. const char *registrar; /*!< Registrar */
  139. int hastime; /*!< If time construct exists */
  140. struct ast_timing timing; /*!< time construct */
  141. struct ast_include *next; /*!< Link them together */
  142. char stuff[0];
  143. };
  144. /*! \brief ast_sw: Switch statement in extensions.conf */
  145. struct ast_sw {
  146. char *name;
  147. const char *registrar; /*!< Registrar */
  148. char *data; /*!< Data load */
  149. int eval;
  150. AST_LIST_ENTRY(ast_sw) list;
  151. char *tmpdata;
  152. char stuff[0];
  153. };
  154. /*! \brief ast_ignorepat: Ignore patterns in dial plan */
  155. struct ast_ignorepat {
  156. const char *registrar;
  157. struct ast_ignorepat *next;
  158. const char pattern[0];
  159. };
  160. /*! \brief ast_context: An extension context */
  161. struct ast_context {
  162. ast_rwlock_t lock; /*!< A lock to prevent multiple threads from clobbering the context */
  163. struct ast_exten *root; /*!< The root of the list of extensions */
  164. struct ast_context *next; /*!< Link them together */
  165. struct ast_include *includes; /*!< Include other contexts */
  166. struct ast_ignorepat *ignorepats; /*!< Patterns for which to continue playing dialtone */
  167. const char *registrar; /*!< Registrar */
  168. AST_LIST_HEAD_NOLOCK(, ast_sw) alts; /*!< Alternative switches */
  169. ast_mutex_t macrolock; /*!< A lock to implement "exclusive" macros - held whilst a call is executing in the macro */
  170. char name[0]; /*!< Name of the context */
  171. };
  172. /*! \brief ast_app: A registered application */
  173. struct ast_app {
  174. int (*execute)(struct ast_channel *chan, void *data);
  175. const char *synopsis; /*!< Synopsis text for 'show applications' */
  176. const char *description; /*!< Description (help text) for 'show application &lt;name&gt;' */
  177. AST_RWLIST_ENTRY(ast_app) list; /*!< Next app in list */
  178. struct module *module; /*!< Module this app belongs to */
  179. char name[0]; /*!< Name of the application */
  180. };
  181. /*! \brief ast_state_cb: An extension state notify register item */
  182. struct ast_state_cb {
  183. int id;
  184. void *data;
  185. ast_state_cb_type callback;
  186. struct ast_state_cb *next;
  187. };
  188. /*! \brief Structure for dial plan hints
  189. \note Hints are pointers from an extension in the dialplan to one or
  190. more devices (tech/name)
  191. - See \ref AstExtState
  192. */
  193. struct ast_hint {
  194. struct ast_exten *exten; /*!< Extension */
  195. int laststate; /*!< Last known state */
  196. struct ast_state_cb *callbacks; /*!< Callback list for this extension */
  197. AST_RWLIST_ENTRY(ast_hint) list;/*!< Pointer to next hint in list */
  198. };
  199. struct store_hint {
  200. char *context;
  201. char *exten;
  202. struct ast_state_cb *callbacks;
  203. int laststate;
  204. AST_LIST_ENTRY(store_hint) list;
  205. char data[1];
  206. };
  207. AST_LIST_HEAD(store_hints, store_hint);
  208. static const struct cfextension_states {
  209. int extension_state;
  210. const char * const text;
  211. } extension_states[] = {
  212. { AST_EXTENSION_NOT_INUSE, "Idle" },
  213. { AST_EXTENSION_INUSE, "InUse" },
  214. { AST_EXTENSION_BUSY, "Busy" },
  215. { AST_EXTENSION_UNAVAILABLE, "Unavailable" },
  216. { AST_EXTENSION_RINGING, "Ringing" },
  217. { AST_EXTENSION_INUSE | AST_EXTENSION_RINGING, "InUse&Ringing" },
  218. { AST_EXTENSION_ONHOLD, "Hold" },
  219. { AST_EXTENSION_INUSE | AST_EXTENSION_ONHOLD, "InUse&Hold" }
  220. };
  221. #define STATUS_NO_CONTEXT 1
  222. #define STATUS_NO_EXTENSION 2
  223. #define STATUS_NO_PRIORITY 3
  224. #define STATUS_NO_LABEL 4
  225. #define STATUS_SUCCESS 5
  226. extern struct ast_context *local_contexts;
  227. extern struct ast_context *contexts;
  228. struct ast_custom_function *ast_custom_function_find(const char *name);
  229. struct ast_custom_function *ast_custom_function_find(const char *name)
  230. {
  231. return 0; /* in "standalone" mode, functions are just not avail */
  232. }
  233. struct profile_entry {
  234. const char *name;
  235. uint64_t scale; /* if non-zero, values are scaled by this */
  236. int64_t mark;
  237. int64_t value;
  238. int64_t events;
  239. };
  240. struct profile_data {
  241. int entries;
  242. int max_size;
  243. struct profile_entry e[0];
  244. };
  245. static int bit_at(unsigned int *word, int bitsperword, int bitnum)
  246. {
  247. return word[bitnum/bitsperword] & (1 << (bitnum % bitsperword));
  248. }
  249. void get_start_stop(unsigned int *word, int bitsperword, int totalbits, int *start, int *end)
  250. {
  251. int i;
  252. int thisbit, thatbit = bit_at(word, bitsperword, totalbits-1);
  253. for (i=0; i<totalbits; i++) {
  254. thisbit = bit_at(word, bitsperword, i);
  255. if (thisbit != thatbit ) {
  256. if (thisbit) {
  257. *start = i;
  258. } else {
  259. *end = i;
  260. }
  261. }
  262. thatbit = thisbit;
  263. }
  264. }
  265. int all_bits_set(unsigned int *word, int bitsperword, int totalbits )
  266. {
  267. int i, total=totalbits/bitsperword,bitmask = 0;
  268. for (i=0; i<bitsperword; i++)
  269. {
  270. bitmask |= (1 << i);
  271. }
  272. for (i=0; i<total; i++)
  273. {
  274. if (word[i] != bitmask)
  275. return 0;
  276. }
  277. return 1;
  278. }
  279. int main(int argc, char **argv)
  280. {
  281. struct ast_context *tmp;
  282. struct ast_exten *e, *eroot;
  283. pval *tree, *tmptree, *sws;
  284. struct ast_include *tmpi;
  285. struct ast_sw *sw = 0;
  286. struct ast_ignorepat *ipi;
  287. pval *incl=0;
  288. int localdir = 0, i;
  289. tree = 0;
  290. tmptree = 0;
  291. /* process the command line args */
  292. for (i=1; i<argc; i++)
  293. {
  294. if (strcmp(argv[i],"-d")==0)
  295. localdir =1;
  296. }
  297. /* 3 simple steps: */
  298. /* 1. read in the extensions.conf config file
  299. * 2. traverse, and build an AEL tree
  300. * 3. Output the AEL tree into a file
  301. */
  302. printf("WARNING: This is an EXTREMELY preliminary version of a program\n");
  303. printf(" that will someday hopefully do a thoughful and intelligent\n");
  304. printf(" job of transforming your extensions.conf file into an\n");
  305. printf(" extensions.ael file.\n");
  306. printf(" This version has absolutely no intelligence, and pretty\n");
  307. printf(" much just does a direct conversion\n");
  308. printf(" The result will most likely need careful attention to\n");
  309. printf(" finish the job!!!!!\n");
  310. if (!localdir)
  311. printf(" (You could use -d the use the extensions.conf in the current directory!)\n");
  312. printf("Loading %s/%s...\n", ast_config_AST_CONFIG_DIR, config);
  313. if (!localdir)
  314. localized_use_conf_dir();
  315. localized_pbx_load_module();
  316. printf("... Done!\n");
  317. tmp = 0;
  318. while ((tmp = localized_walk_contexts(tmp)) ) {
  319. printf("Context: %s\n", tmp->name);
  320. }
  321. printf("=========\n");
  322. tmp = 0;
  323. while ((tmp = localized_walk_contexts(tmp)) ) {
  324. /* printf("Context: %s\n", tmp->name); */
  325. tmptree = pvalCreateNode(PV_CONTEXT);
  326. if (!tree)
  327. tree = tmptree;
  328. else
  329. pvalTopLevAddObject(tree, tmptree);
  330. pvalContextSetName(tmptree, ast_strdup(tmp->name));
  331. if (tmp->includes) {
  332. incl = pvalCreateNode(PV_INCLUDES);
  333. pvalContextAddStatement(tmptree, incl);
  334. for (tmpi = tmp->includes; tmpi; ) { /* includes */
  335. if (strchr(tmpi->name,'|')==0) {
  336. if (tmpi->hastime)
  337. {
  338. char timerange[15];
  339. char dowrange[10];
  340. char domrange[10];
  341. char monrange[10];
  342. int startbit=0, endbit=0;
  343. if (all_bits_set(tmpi->timing.minmask, 30, 720))
  344. strcpy(timerange, "*");
  345. else {
  346. int hr, min;
  347. char tbuf[20];
  348. get_start_stop(tmpi->timing.minmask, 30, 720, &startbit, &endbit);
  349. hr = startbit/30;
  350. min = (startbit % 30) * 2;
  351. sprintf(tbuf,"%02d:%02d", hr, min);
  352. strcpy(timerange, tbuf);
  353. hr = endbit/30;
  354. min = (endbit % 30) * 2;
  355. sprintf(tbuf,"%02d:%02d", hr, min);
  356. strcat(timerange,"-");
  357. strcat(timerange,tbuf);
  358. }
  359. if (all_bits_set(&tmpi->timing.dowmask, 7, 7))
  360. strcpy(dowrange, "*");
  361. else {
  362. get_start_stop(&tmpi->timing.dowmask, 7, 7, &startbit, &endbit);
  363. strcpy(dowrange, days[startbit]);
  364. strcat(dowrange,"-");
  365. strcat(dowrange, days[endbit]);
  366. }
  367. if (all_bits_set(&tmpi->timing.monthmask, 12, 12))
  368. strcpy(monrange, "*");
  369. else {
  370. get_start_stop(&tmpi->timing.monthmask, 12, 12, &startbit, &endbit);
  371. strcpy(monrange, months[startbit]);
  372. strcat(monrange,"-");
  373. strcat(monrange, months[endbit]);
  374. }
  375. if (all_bits_set(&tmpi->timing.daymask, 31, 31))
  376. strcpy(domrange, "*");
  377. else {
  378. char tbuf[20];
  379. get_start_stop(&tmpi->timing.daymask, 31, 31, &startbit, &endbit);
  380. sprintf(tbuf,"%d", startbit);
  381. strcpy(domrange, tbuf);
  382. strcat(domrange,"-");
  383. sprintf(tbuf,"%d", endbit);
  384. strcat(domrange, tbuf);
  385. }
  386. /* now all 4 fields are set; what do we do? */
  387. pvalIncludesAddIncludeWithTimeConstraints(incl, strdup(tmpi->name), strdup(timerange), strdup(domrange), strdup(dowrange), strdup(monrange));
  388. } else {
  389. pvalIncludesAddInclude(incl, strdup(tmpi->name));
  390. }
  391. } else { /* it appears the timing constraint info is tacked onto the name, carve it up and divvy it out */
  392. char *dow,*dom,*mon;
  393. char *all = strdup(tmpi->name);
  394. char *hr = strchr(all,'|');
  395. if (hr) {
  396. *hr++ = 0;
  397. dow = strchr(hr,'|');
  398. if (dow) {
  399. *dow++ = 0;
  400. dom = strchr(dow,'|');
  401. if (dom) {
  402. *dom++ = 0;
  403. mon = strchr(dom,'|');
  404. if (mon) {
  405. *mon++ = 0;
  406. /* now all 4 fields are set; what do we do? */
  407. pvalIncludesAddIncludeWithTimeConstraints(incl, strdup(all), strdup(hr), strdup(dow), strdup(dom), strdup(mon));
  408. /* the original data is always best to keep (no 2-min rounding) */
  409. } else {
  410. ast_log(LOG_ERROR,"No month spec attached to include!\n");
  411. }
  412. } else {
  413. ast_log(LOG_ERROR,"No day of month spec attached to include!\n");
  414. }
  415. } else {
  416. ast_log(LOG_ERROR,"No day of week spec attached to include!\n");
  417. }
  418. }
  419. free(all);
  420. }
  421. tmpi = tmpi->next;
  422. }
  423. }
  424. for (ipi = tmp->ignorepats; ipi; ) { /* ignorepats */
  425. incl = pvalCreateNode(PV_IGNOREPAT);
  426. pvalIgnorePatSetPattern(incl,(char *)ipi->pattern);
  427. pvalContextAddStatement(tmptree, incl);
  428. ipi = ipi->next;
  429. }
  430. eroot=0;
  431. while ( (eroot = localized_walk_context_extensions(tmp, eroot)) ) {
  432. pval *exten = pvalCreateNode(PV_EXTENSION);
  433. pvalContextAddStatement(tmptree, exten);
  434. pvalExtenSetName(exten, ast_strdup(eroot->exten));
  435. if (eroot->peer) {
  436. pval *block = pvalCreateNode(PV_STATEMENTBLOCK);
  437. pvalExtenSetStatement(exten, block);
  438. e = 0;
  439. while ( (e = localized_walk_extension_priorities(eroot, e)) ) {
  440. pval *statemnt = pvalCreateNode(PV_APPLICATION_CALL);
  441. pval *args = pvalCreateNode(PV_WORD);
  442. /* printf(" %s(%s)\n", e->app, (char*)e->data); */
  443. pvalAppCallSetAppName(statemnt, ast_strdup(e->app));
  444. pvalWordSetString(args, ast_strdup(e->data));
  445. pvalAppCallAddArg(statemnt, args);
  446. pvalStatementBlockAddStatement(block, statemnt);
  447. }
  448. } else if (eroot->priority == -1) {
  449. pval *statemnt = pvalCreateNode(PV_APPLICATION_CALL);
  450. pval *args = pvalCreateNode(PV_WORD);
  451. /* printf("Mike, we have a hint on exten %s with data %s\n", eroot->exten, eroot->app); */
  452. pvalAppCallSetAppName(statemnt, "NoOp");
  453. pvalWordSetString(args, ast_strdup(eroot->app));
  454. pvalExtenSetStatement(exten, statemnt);
  455. pvalExtenSetHints(exten, ast_strdup(eroot->app));
  456. } else {
  457. pval *statemnt = pvalCreateNode(PV_APPLICATION_CALL);
  458. pval *args = pvalCreateNode(PV_WORD);
  459. /* printf(" %s (%s)\n", eroot->app, (char *)eroot->data); */
  460. pvalAppCallSetAppName(statemnt, ast_strdup(eroot->app));
  461. pvalWordSetString(args, ast_strdup(eroot->data));
  462. pvalAppCallAddArg(statemnt, args);
  463. pvalExtenSetStatement(exten, statemnt);
  464. }
  465. /* printf(" extension: %s\n", eroot->exten); */
  466. }
  467. if (AST_LIST_FIRST(&tmp->alts)) {
  468. sws = pvalCreateNode(PV_SWITCHES);
  469. pvalContextAddStatement(tmptree,sws);
  470. sw = 0;
  471. while ((sw = localized_walk_context_switches(tmp,sw)) ) {
  472. pvalSwitchesAddSwitch(sws, ast_strdup(sw->name));
  473. }
  474. }
  475. }
  476. printf("Generating aelout.ael file...\n");
  477. ael2_print("aelout.ael", tree);
  478. printf("...Done!\n");
  479. return 0;
  480. }
  481. /* ==================================== for linking internal stuff to external stuff */
  482. int pbx_builtin_setvar(struct ast_channel *chan, const char *data)
  483. {
  484. return localized_pbx_builtin_setvar(chan, data);
  485. }
  486. void pbx_substitute_variables_helper(struct ast_channel *c,const char *cp1,char *cp2,int count);
  487. void pbx_substitute_variables_helper(struct ast_channel *c,const char *cp1,char *cp2,int count)
  488. {
  489. if (cp1 && *cp1)
  490. strncpy(cp2,cp1,AST_MAX_EXTENSION); /* Right now, this routine is ONLY being called for
  491. a possible var substitution on extension names,
  492. so....! */
  493. else
  494. *cp2 = 0;
  495. }
  496. int ast_add_extension2(struct ast_context *con,
  497. int replace, const char *extension, int priority, const char *label, const char *callerid,
  498. const char *application, void *data, void (*datad)(void *),
  499. const char *registrar)
  500. {
  501. return localized_add_extension2(con, replace, extension, priority, label, callerid, application, data, datad, registrar);
  502. }
  503. int ast_context_add_ignorepat2(struct ast_context *con, const char *value, const char *registrar)
  504. {
  505. return localized_context_add_ignorepat2(con, value, registrar);
  506. }
  507. int ast_context_add_switch2(struct ast_context *con, const char *value,
  508. const char *data, int eval, const char *registrar)
  509. {
  510. return localized_context_add_switch2(con, value, data, eval, registrar);
  511. }
  512. int ast_context_add_include2(struct ast_context *con, const char *value,
  513. const char *registrar)
  514. {
  515. return localized_context_add_include2(con, value,registrar);
  516. }
  517. struct ast_context *ast_context_find_or_create(struct ast_context **extcontexts, struct ast_hashtab *exttable, const char *name, const char *registrar)
  518. {
  519. printf("find/Creating context %s, registrar=%s\n", name, registrar);
  520. return localized_context_find_or_create(extcontexts, exttable, name, registrar);
  521. }
  522. void ast_cli_register_multiple(void);
  523. void ast_cli_register_multiple(void)
  524. {
  525. }
  526. void ast_module_register(const struct ast_module_info *x)
  527. {
  528. }
  529. void ast_module_unregister(const struct ast_module_info *x)
  530. {
  531. }
  532. void ast_cli_unregister_multiple(void);
  533. void ast_cli_unregister_multiple(void)
  534. {
  535. }
  536. struct ast_context *ast_walk_contexts(struct ast_context *con);
  537. struct ast_context *ast_walk_contexts(struct ast_context *con)
  538. {
  539. return localized_walk_contexts(con);
  540. }
  541. void ast_context_destroy(struct ast_context *con, const char *registrar);
  542. void ast_context_destroy(struct ast_context *con, const char *registrar)
  543. {
  544. return localized_context_destroy(con, registrar);
  545. }
  546. int ast_context_verify_includes(struct ast_context *con);
  547. int ast_context_verify_includes(struct ast_context *con)
  548. {
  549. return localized_context_verify_includes(con);
  550. }
  551. void ast_merge_contexts_and_delete(struct ast_context **extcontexts, struct ast_hashtab *exttable, const char *registrar);
  552. void ast_merge_contexts_and_delete(struct ast_context **extcontexts, struct ast_hashtab *exttable, const char *registrar)
  553. {
  554. localized_merge_contexts_and_delete(extcontexts, exttable, registrar);
  555. }
  556. const char *ast_get_context_name(struct ast_context *con);
  557. const char *ast_get_context_name(struct ast_context *con)
  558. {
  559. return con ? con->name : NULL;
  560. }
  561. struct ast_exten *ast_walk_context_extensions(struct ast_context *con, struct ast_exten *exten);
  562. struct ast_exten *ast_walk_context_extensions(struct ast_context *con, struct ast_exten *exten)
  563. {
  564. return NULL;
  565. }
  566. struct ast_include *ast_walk_context_includes(struct ast_context *con, struct ast_include *inc);
  567. struct ast_include *ast_walk_context_includes(struct ast_context *con, struct ast_include *inc)
  568. {
  569. return NULL;
  570. }
  571. struct ast_ignorepat *ast_walk_context_ignorepats(struct ast_context *con, struct ast_ignorepat *ip);
  572. struct ast_ignorepat *ast_walk_context_ignorepats(struct ast_context *con, struct ast_ignorepat *ip)
  573. {
  574. return NULL;
  575. }
  576. struct ast_sw *ast_walk_context_switches(struct ast_context *con, struct ast_sw *sw);
  577. struct ast_sw *ast_walk_context_switches(struct ast_context *con, struct ast_sw *sw)
  578. {
  579. return NULL;
  580. }
  581. struct ast_exten *pbx_find_extension(struct ast_channel *chan,
  582. struct ast_context *bypass,
  583. struct pbx_find_info *q,
  584. const char *context,
  585. const char *exten,
  586. int priority,
  587. const char *label,
  588. const char *callerid,
  589. enum ext_match_t action);
  590. struct ast_exten *pbx_find_extension(struct ast_channel *chan,
  591. struct ast_context *bypass,
  592. struct pbx_find_info *q,
  593. const char *context,
  594. const char *exten,
  595. int priority,
  596. const char *label,
  597. const char *callerid,
  598. enum ext_match_t action)
  599. {
  600. return localized_find_extension(bypass, q, context, exten, priority, label, callerid, action);
  601. }
  602. int ast_hashtab_compare_contexts(const void *ah_a, const void *ah_b);
  603. int ast_hashtab_compare_contexts(const void *ah_a, const void *ah_b)
  604. {
  605. return 0;
  606. }
  607. unsigned int ast_hashtab_hash_contexts(const void *obj);
  608. unsigned int ast_hashtab_hash_contexts(const void *obj)
  609. {
  610. return 0;
  611. }
  612. #ifdef DEBUG_THREADS
  613. #if !defined(LOW_MEMORY)
  614. void ast_mark_lock_acquired(void *lock_addr)
  615. {
  616. }
  617. #ifdef HAVE_BKTR
  618. void ast_remove_lock_info(void *lock_addr, struct ast_bt *bt)
  619. {
  620. }
  621. void ast_store_lock_info(enum ast_lock_type type, const char *filename,
  622. int line_num, const char *func, const char *lock_name, void *lock_addr, struct ast_bt *bt)
  623. {
  624. }
  625. int __ast_bt_get_addresses(struct ast_bt *bt)
  626. {
  627. return 0;
  628. }
  629. char **__ast_bt_get_symbols(void **addresses, size_t num_frames)
  630. {
  631. char **foo = calloc(num_frames, sizeof(char *) + 1);
  632. if (foo) {
  633. int i;
  634. for (i = 0; i < num_frames; i++) {
  635. foo[i] = (char *) foo + sizeof(char *) * num_frames;
  636. }
  637. }
  638. return foo;
  639. }
  640. #else
  641. void ast_remove_lock_info(void *lock_addr)
  642. {
  643. }
  644. void ast_store_lock_info(enum ast_lock_type type, const char *filename,
  645. int line_num, const char *func, const char *lock_name, void *lock_addr)
  646. {
  647. }
  648. #endif /* HAVE_BKTR */
  649. void ast_suspend_lock_info(void *lock_addr)
  650. {
  651. }
  652. void ast_restore_lock_info(void *lock_addr)
  653. {
  654. }
  655. #endif /* !defined(LOW_MEMORY) */
  656. #endif /* DEBUG_THREADS */