use the proper variable type for these unixODBC API calls, eliminating warnings on...
[asterisk-bristuff.git] / main / autoservice.c
blob1d9670794dab29e2d57729972e0153b0ed4f628e
1 /*
2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2006, Digium, Inc.
6 * Mark Spencer <markster@digium.com>
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.
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.
19 /*! \file
21 * \brief Automatic channel service routines
23 * \author Mark Spencer <markster@digium.com>
26 #include "asterisk.h"
28 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <sys/time.h>
34 #include <signal.h>
35 #include <errno.h>
36 #include <unistd.h>
38 #include "asterisk/pbx.h"
39 #include "asterisk/frame.h"
40 #include "asterisk/sched.h"
41 #include "asterisk/options.h"
42 #include "asterisk/channel.h"
43 #include "asterisk/logger.h"
44 #include "asterisk/file.h"
45 #include "asterisk/translate.h"
46 #include "asterisk/manager.h"
47 #include "asterisk/chanvars.h"
48 #include "asterisk/linkedlists.h"
49 #include "asterisk/indications.h"
50 #include "asterisk/lock.h"
51 #include "asterisk/utils.h"
53 #define MAX_AUTOMONS 256
55 struct asent {
56 struct ast_channel *chan;
57 AST_LIST_ENTRY(asent) list;
60 static AST_LIST_HEAD_STATIC(aslist, asent);
62 static pthread_t asthread = AST_PTHREADT_NULL;
64 static void *autoservice_run(void *ign)
67 for(;;) {
68 struct ast_channel *mons[MAX_AUTOMONS];
69 struct ast_channel *chan;
70 struct asent *as;
71 int x = 0, ms = 500;
73 AST_LIST_LOCK(&aslist);
74 AST_LIST_TRAVERSE(&aslist, as, list) {
75 if (!as->chan->_softhangup) {
76 if (x < MAX_AUTOMONS)
77 mons[x++] = as->chan;
78 else
79 ast_log(LOG_WARNING, "Exceeded maximum number of automatic monitoring events. Fix autoservice.c\n");
82 AST_LIST_UNLOCK(&aslist);
84 chan = ast_waitfor_n(mons, x, &ms);
85 if (chan) {
86 /* Read and ignore anything that occurs */
87 struct ast_frame *f = ast_read(chan);
88 if (f)
89 ast_frfree(f);
92 asthread = AST_PTHREADT_NULL;
93 return NULL;
96 int ast_autoservice_start(struct ast_channel *chan)
98 int res = -1;
99 struct asent *as;
100 AST_LIST_LOCK(&aslist);
102 /* Check if the channel already has autoservice */
103 AST_LIST_TRAVERSE(&aslist, as, list) {
104 if (as->chan == chan)
105 break;
108 /* If not, start autoservice on channel */
109 if (!as && (as = ast_calloc(1, sizeof(*as)))) {
110 as->chan = chan;
111 AST_LIST_INSERT_HEAD(&aslist, as, list);
112 res = 0;
113 if (asthread == AST_PTHREADT_NULL) { /* need start the thread */
114 if (ast_pthread_create_background(&asthread, NULL, autoservice_run, NULL)) {
115 ast_log(LOG_WARNING, "Unable to create autoservice thread :(\n");
116 /* There will only be a single member in the list at this point,
117 the one we just added. */
118 AST_LIST_REMOVE(&aslist, as, list);
119 free(as);
120 res = -1;
121 } else
122 pthread_kill(asthread, SIGURG);
125 AST_LIST_UNLOCK(&aslist);
126 return res;
129 int ast_autoservice_stop(struct ast_channel *chan)
131 int res = -1;
132 struct asent *as;
134 AST_LIST_LOCK(&aslist);
135 AST_LIST_TRAVERSE_SAFE_BEGIN(&aslist, as, list) {
136 if (as->chan == chan) {
137 AST_LIST_REMOVE_CURRENT(&aslist, list);
138 free(as);
139 if (!chan->_softhangup)
140 res = 0;
141 break;
144 AST_LIST_TRAVERSE_SAFE_END
146 if (asthread != AST_PTHREADT_NULL)
147 pthread_kill(asthread, SIGURG);
148 AST_LIST_UNLOCK(&aslist);
150 /* Wait for it to un-block */
151 while(ast_test_flag(chan, AST_FLAG_BLOCKING))
152 usleep(1000);
153 return res;