08cbb47344cfdc6aa8280c41d05fd1a2d820b1b7
[asterisk/asterisk.git] / autoservice.c
1 /*
2  * Asterisk -- An open source telephony toolkit.
3  *
4  * Copyright (C) 1999 - 2006, Digium, Inc.
5  *
6  * Mark Spencer <markster@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 /*! \file
20  *
21  * \brief Automatic channel service routines
22  *
23  * \author Mark Spencer <markster@digium.com> 
24  */
25
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <sys/time.h>
30 #include <signal.h>
31 #include <errno.h>
32 #include <unistd.h>
33
34 #include "asterisk.h"
35
36 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
37
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"
52
53 #define MAX_AUTOMONS 256
54
55 struct asent {
56         struct ast_channel *chan;
57         AST_LIST_ENTRY(asent) list;
58 };
59
60 static AST_LIST_HEAD_STATIC(aslist, asent);
61
62 static pthread_t asthread = AST_PTHREADT_NULL;
63
64 static void *autoservice_run(void *ign)
65 {
66
67         for(;;) {
68                 struct ast_channel *mons[MAX_AUTOMONS];
69                 struct ast_channel *chan;
70                 struct asent *as;
71                 int x = 0, ms = 500;
72
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");
80                         }
81                 }
82                 AST_LIST_UNLOCK(&aslist);
83
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);
90                 }
91         }
92         asthread = AST_PTHREADT_NULL;
93         return NULL;
94 }
95
96 int ast_autoservice_start(struct ast_channel *chan)
97 {
98         int res = -1;
99         struct asent *as;
100         AST_LIST_LOCK(&aslist);
101
102         /* Check if the channel already has autoservice */
103         AST_LIST_TRAVERSE(&aslist, as, list) {
104                 if (as->chan == chan)
105                         break;
106         }
107         /* XXX if found, we return -1, why ??? */
108
109         /* If not, start autoservice on channel */
110         if (!as) {
111                 as = calloc(1, sizeof(struct asent));
112                 if (as) {
113                         as->chan = chan;
114                         AST_LIST_INSERT_HEAD(&aslist, as, list);
115                         res = 0;
116                         if (asthread == AST_PTHREADT_NULL) { /* need start the thread */
117                                 if (ast_pthread_create(&asthread, NULL, autoservice_run, NULL)) {
118                                         ast_log(LOG_WARNING, "Unable to create autoservice thread :(\n");
119                                         /* There will only be a single member in the list at this point,
120                                            the one we just added. */
121                                         AST_LIST_REMOVE(&aslist, as, list);
122                                         free(as);
123                                         res = -1;
124                                 } else
125                                         pthread_kill(asthread, SIGURG);
126                         }
127                 }
128         }
129         AST_LIST_UNLOCK(&aslist);
130         return res;
131 }
132
133 int ast_autoservice_stop(struct ast_channel *chan)
134 {
135         int res = -1;
136         struct asent *as;
137
138         AST_LIST_LOCK(&aslist);
139         AST_LIST_TRAVERSE_SAFE_BEGIN(&aslist, as, list) {       
140                 if (as->chan == chan) {
141                         AST_LIST_REMOVE_CURRENT(&aslist, list);
142                         free(as);
143                         if (!chan->_softhangup)
144                                 res = 0;
145                         break;
146                 }
147         }
148         AST_LIST_TRAVERSE_SAFE_END
149
150         if (asthread != AST_PTHREADT_NULL) 
151                 pthread_kill(asthread, SIGURG);
152         AST_LIST_UNLOCK(&aslist);
153
154         /* Wait for it to un-block */
155         while(ast_test_flag(chan, AST_FLAG_BLOCKING))
156                 usleep(1000);
157         return res;
158 }