static void *ss_thread(void *data);
-static struct ast_channel *zt_new(struct zt_pvt *, int, int, int, int);
+static struct ast_channel *zt_new(struct zt_pvt *, int, int, int, int, int);
static int attempt_transfer(struct zt_pvt *p)
{
(ast->_state == AST_STATE_RING)) {
if (!alloc_sub(p, SUB_THREEWAY)) {
/* Make new channel */
- chan = zt_new(p, AST_STATE_RESERVED, 0, SUB_THREEWAY, 0);
+ chan = zt_new(p, AST_STATE_RESERVED, 0, SUB_THREEWAY, 0, 0);
/* Swap things around between the three-way and real call */
swap_subs(p, SUB_THREEWAY, SUB_REAL);
/* Disable echo canceller for better dialing */
return res;
}
-static struct ast_channel *zt_new(struct zt_pvt *i, int state, int startpbx, int index, int law)
+#ifdef ZAPATA_PRI
+static void set_calltype(struct ast_channel *chan, int ctype)
+{
+ char *s = "UNKNOWN";
+ switch(ctype) {
+ case PRI_TRANS_CAP_SPEECH:
+ s = "SPEECH";
+ break;
+ case PRI_TRANS_CAP_DIGITAL:
+ s = "DIGITAL";
+ break;
+ case PRI_TRANS_CAP_RESTRICTED_DIGITAL:
+ s = "RESTRICTED_DIGITAL";
+ break;
+ case PRI_TRANS_CAP_3_1K_AUDIO:
+ s = "31KAUDIO";
+ break;
+ case PRI_TRANS_CAP_7K_AUDIO:
+ s = "7KAUDIO";
+ break;
+ case PRI_TRANS_CAP_VIDEO:
+ s = "VIDEO";
+ break;
+ }
+ pbx_builtin_setvar_helper(chan, "CALLTYPE", s);
+}
+#endif
+static struct ast_channel *zt_new(struct zt_pvt *i, int state, int startpbx, int index, int law, int ctype)
{
struct ast_channel *tmp;
int deflaw;
tmp->restrictcid = i->restrictcid;
tmp->callingpres = i->callingpres;
#ifdef ZAPATA_PRI
+ set_calltype(tmp, ctype);
/* Assume calls are not idle calls unless we're told differently */
i->isidlecall = 0;
i->alreadyhungup = 0;
zt_enable_ec(i);
/* The channel is immediately up. Start right away */
res = tone_zone_play_tone(i->subs[SUB_REAL].zfd, ZT_TONE_RINGTONE);
- chan = zt_new(i, AST_STATE_RING, 1, SUB_REAL, 0);
+ chan = zt_new(i, AST_STATE_RING, 1, SUB_REAL, 0, 0);
if (!chan) {
ast_log(LOG_WARNING, "Unable to start PBX on channel %d\n", i->channel);
res = tone_zone_play_tone(i->subs[SUB_REAL].zfd, ZT_TONE_CONGESTION);
}
} else {
/* Check for callerid, digits, etc */
- chan = zt_new(i, AST_STATE_RESERVED, 0, SUB_REAL, 0);
+ chan = zt_new(i, AST_STATE_RESERVED, 0, SUB_REAL, 0, 0);
if (chan) {
if (has_voicemail(i))
#ifdef ZT_TONE_STUTTER
case SIG_SF_FEATB:
case SIG_SF:
/* Check for callerid, digits, etc */
- chan = zt_new(i, AST_STATE_RING, 0, SUB_REAL, 0);
+ chan = zt_new(i, AST_STATE_RING, 0, SUB_REAL, 0, 0);
if (pthread_create(&threadid, &attr, ss_thread, chan)) {
ast_log(LOG_WARNING, "Unable to start simple switch thread on channel %d\n", i->channel);
res = tone_zone_play_tone(i->subs[SUB_REAL].zfd, ZT_TONE_CONGESTION);
}
}
p->outgoing = 1;
- tmp = zt_new(p, AST_STATE_RESERVED, 0, p->owner ? SUB_CALLWAIT : SUB_REAL, 0);
+ tmp = zt_new(p, AST_STATE_RESERVED, 0, p->owner ? SUB_CALLWAIT : SUB_REAL, 0, 0);
/* Make special notes */
if (res > 1) {
if (opt == 'c') {
/* Get the use_callingpres state */
pri->pvt[chan]->callingpres = e->ring.callingpres;
/* Start PBX */
- c = zt_new(pri->pvt[chan], AST_STATE_RING, 1, SUB_REAL, law);
+ c = zt_new(pri->pvt[chan], AST_STATE_RING, 1, SUB_REAL, law, e->ring.ctype);
if (c) {
if (option_verbose > 2)
ast_verbose(VERBOSE_PREFIX_3 "Accepting call from '%s' to '%s' on channel %d, span %d\n",
static int handle_show_application(int fd, int argc, char *argv[])
{
struct ast_app *a;
- int n, app, no_registered_app = 1;
- char *buf;
+ int app, no_registered_app = 1;
if (argc < 3) return RESULT_SHOWUSAGE;
* to 'show application' command ... */
for (app = 2; app < argc; app++) {
if (!strcasecmp(a->name, argv[app])) {
+ /* Maximum number of characters added by terminal coloring is 22 */
+ char infotitle[64 + AST_MAX_APP + 22], syntitle[40], destitle[40];
+ char info[64 + AST_MAX_APP], *synopsis = NULL, *description = NULL;
+ int synopsis_size, description_size;
+
no_registered_app = 0;
- /* ... one of our applications, show info ...*/
- n = asprintf(&buf,
- "\n -= Info about application '%s' =- \n\n"
- "[Synopsis]:\n %s\n\n"
- "[Description]:\n%s\n",
- a->name,
- a->synopsis ? a->synopsis : "Not available",
- a->description ? a-> description : "Not available");
- if (n >= 0) {
- ast_cli(fd, buf);
- free(buf);
+ if (a->synopsis)
+ synopsis_size = strlen(a->synopsis) + 23;
+ else
+ synopsis_size = strlen("Not available") + 23;
+ synopsis = alloca(synopsis_size);
+
+ if (a->description)
+ description_size = strlen(a->description) + 23;
+ else
+ description_size = strlen("Not available") + 23;
+ description = alloca(description_size);
+
+ if (synopsis && description) {
+ snprintf(info, 64 + AST_MAX_APP, "\n -= Info about application '%s' =- \n\n", a->name);
+ term_color(infotitle, info, COLOR_MAGENTA, 0, 64 + AST_MAX_APP + 22);
+ term_color(syntitle, "[Synopsis]:\n", COLOR_MAGENTA, 0, 40);
+ term_color(destitle, "[Description]:\n", COLOR_MAGENTA, 0, 40);
+ term_color(synopsis,
+ a->synopsis ? a->synopsis : "Not available",
+ COLOR_CYAN, 0, synopsis_size);
+ term_color(description,
+ a->description ? a->description : "Not available",
+ COLOR_CYAN, 0, description_size);
+
+ ast_cli(fd,"%s%s%s\n\n%s%s\n", infotitle, syntitle, synopsis, destitle, description);
+ } else {
+ /* ... one of our applications, show info ...*/
+ ast_cli(fd,"\n -= Info about application '%s' =- \n\n"
+ "[Synopsis]:\n %s\n\n"
+ "[Description]:\n%s\n",
+ a->name,
+ a->synopsis ? a->synopsis : "Not available",
+ a->description ? a->description : "Not available");
}
}
}
#include <stdlib.h>
#include <sys/time.h>
#include <unistd.h>
+#include <pthread.h>
+
#include <asterisk/sched.h>
#include <asterisk/logger.h>
#include <asterisk/channel.h>
};
struct sched_context {
+ ast_mutex_t lock;
/* Number of events processed */
int eventcnt;
struct sched_context *tmp;
tmp = malloc(sizeof(struct sched_context));
if (tmp) {
+ ast_mutex_init(&tmp->lock);
tmp->eventcnt = 1;
tmp->schedcnt = 0;
tmp->schedq = NULL;
void sched_context_destroy(struct sched_context *con)
{
struct sched *s, *sl;
+ ast_mutex_lock(&con->lock);
#ifdef SCHED_MAX_CACHE
/* Eliminate the cache */
s = con->schedc;
free(sl);
}
/* And the context */
+ ast_mutex_unlock(&con->lock);
free(con);
}
struct timeval tv;
int ms;
DEBUG(ast_log(LOG_DEBUG, "ast_sched_wait()\n"));
- if (!con->schedq)
- return -1;
- if (gettimeofday(&tv, NULL) < 0) {
+ ast_mutex_lock(&con->lock);
+ if (!con->schedq) {
+ ms = -1;
+ } else if (gettimeofday(&tv, NULL) < 0) {
/* This should never happen */
- return 0;
- };
- ms = (con->schedq->when.tv_sec - tv.tv_sec) * 1000;
- ms += (con->schedq->when.tv_usec - tv.tv_usec) / 1000;
- if (ms < 0)
ms = 0;
+ } else {
+ ms = (con->schedq->when.tv_sec - tv.tv_sec) * 1000;
+ ms += (con->schedq->when.tv_usec - tv.tv_usec) / 1000;
+ if (ms < 0)
+ ms = 0;
+ }
+ ast_mutex_unlock(&con->lock);
return ms;
}
* Schedule callback(data) to happen when ms into the future
*/
struct sched *tmp;
+ int res = -1;
DEBUG(ast_log(LOG_DEBUG, "ast_sched_add()\n"));
if (!when) {
ast_log(LOG_NOTICE, "Scheduled event in 0 ms?\n");
return -1;
}
+ ast_mutex_lock(&con->lock);
if ((tmp = sched_alloc(con))) {
tmp->id = con->eventcnt++;
tmp->callback = callback;
tmp->when.tv_usec = 0;
if (sched_settime(&tmp->when, when)) {
sched_release(con, tmp);
- return -1;
- } else
+ } else {
schedule(con, tmp);
- } else
- return -1;
- return tmp->id;
+ res = tmp->id;
+ }
+ }
+ ast_mutex_lock(&con->lock);
+ return res;
}
int ast_sched_del(struct sched_context *con, int id)
*/
struct sched *last=NULL, *s;
DEBUG(ast_log(LOG_DEBUG, "ast_sched_del()\n"));
+ ast_mutex_lock(&con->lock);
s = con->schedq;
while(s) {
if (s->id == id) {
con->schedq = s->next;
con->schedcnt--;
sched_release(con, s);
- return 0;
+ break;
}
last = s;
s = s->next;
}
- ast_log(LOG_NOTICE, "Attempted to delete non-existant schedule entry %d!\n", id);
+ ast_mutex_unlock(&con->lock);
+ if (!s) {
+ ast_log(LOG_NOTICE, "Attempted to delete non-existant schedule entry %d!\n", id);
#ifdef DO_CRASH
- CRASH;
+ CRASH;
#endif
- return -1;
+ return -1;
+ } else
+ return 0;
}
void ast_sched_dump(struct sched_context *con)
int x=0;
DEBUG(ast_log(LOG_DEBUG, "ast_sched_runq()\n"));
+ ast_mutex_lock(&con->lock);
for(;;) {
if (!con->schedq)
break;
if (gettimeofday(&tv, NULL)) {
/* This should never happen */
ast_log(LOG_NOTICE, "gettimeofday() failed!\n");
- return 0;
+ break;
}
/* We only care about millisecond accuracy anyway, so this will
help us get more than one event at one time if they are very
} else
break;
}
+ ast_mutex_unlock(&con->lock);
return x;
}