mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-18 18:58:22 +00:00
Complete local channel implementation
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@757 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -239,6 +239,11 @@ static struct ast_channel *wait_for_answer(struct ast_channel *in, struct localu
|
|||||||
case AST_CONTROL_OFFHOOK:
|
case AST_CONTROL_OFFHOOK:
|
||||||
/* Ignore going off hook */
|
/* Ignore going off hook */
|
||||||
break;
|
break;
|
||||||
|
case -1:
|
||||||
|
if (option_verbose > 2)
|
||||||
|
ast_verbose( VERBOSE_PREFIX_3 "%s stopped sounds\n", o->chan->name);
|
||||||
|
ast_indicate(in, -1);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
ast_log(LOG_DEBUG, "Dunno what to do with control type %d\n", f->subclass);
|
ast_log(LOG_DEBUG, "Dunno what to do with control type %d\n", f->subclass);
|
||||||
}
|
}
|
||||||
|
@@ -61,6 +61,7 @@ static struct local_pvt {
|
|||||||
char context[AST_MAX_EXTENSION]; /* Context to call */
|
char context[AST_MAX_EXTENSION]; /* Context to call */
|
||||||
char exten[AST_MAX_EXTENSION]; /* Extension to call */
|
char exten[AST_MAX_EXTENSION]; /* Extension to call */
|
||||||
int reqformat; /* Requested format */
|
int reqformat; /* Requested format */
|
||||||
|
int alreadymasqed; /* Already masqueraded */
|
||||||
struct ast_channel *owner; /* Master Channel */
|
struct ast_channel *owner; /* Master Channel */
|
||||||
struct ast_channel *chan; /* Outbound channel */
|
struct ast_channel *chan; /* Outbound channel */
|
||||||
struct local_pvt *next; /* Next entity */
|
struct local_pvt *next; /* Next entity */
|
||||||
@@ -84,6 +85,8 @@ retrylock:
|
|||||||
ast_pthread_mutex_lock(&p->lock);
|
ast_pthread_mutex_lock(&p->lock);
|
||||||
goto retrylock;
|
goto retrylock;
|
||||||
}
|
}
|
||||||
|
if (f->frametype != AST_FRAME_VOICE)
|
||||||
|
ast_verbose("Queueing frmae %d/%d on %s\n", f->frametype, f->subclass, other->name);
|
||||||
ast_queue_frame(other, f, 0);
|
ast_queue_frame(other, f, 0);
|
||||||
ast_pthread_mutex_unlock(&other->lock);
|
ast_pthread_mutex_unlock(&other->lock);
|
||||||
return 0;
|
return 0;
|
||||||
@@ -98,13 +101,28 @@ static int local_answer(struct ast_channel *ast)
|
|||||||
if (isoutbound) {
|
if (isoutbound) {
|
||||||
/* Pass along answer since somebody answered us */
|
/* Pass along answer since somebody answered us */
|
||||||
struct ast_frame answer = { AST_FRAME_CONTROL, AST_CONTROL_ANSWER };
|
struct ast_frame answer = { AST_FRAME_CONTROL, AST_CONTROL_ANSWER };
|
||||||
local_queue_frame(p, isoutbound, &answer);
|
res = local_queue_frame(p, isoutbound, &answer);
|
||||||
} else
|
} else
|
||||||
ast_log(LOG_WARNING, "Huh? Local is being asked to answer?\n");
|
ast_log(LOG_WARNING, "Huh? Local is being asked to answer?\n");
|
||||||
ast_pthread_mutex_unlock(&p->lock);
|
ast_pthread_mutex_unlock(&p->lock);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void check_bridge(struct local_pvt *p, int isoutbound)
|
||||||
|
{
|
||||||
|
if (p->alreadymasqed)
|
||||||
|
return;
|
||||||
|
if (isoutbound && p->chan && p->chan->bridge && p->owner) {
|
||||||
|
/* Masquerade bridged channel into owner */
|
||||||
|
ast_channel_masquerade(p->owner, p->chan->bridge);
|
||||||
|
p->alreadymasqed = 1;
|
||||||
|
} else if (!isoutbound && p->owner && p->owner->bridge && p->chan) {
|
||||||
|
/* Masquerade bridged channel into chan */
|
||||||
|
ast_channel_masquerade(p->chan, p->owner->bridge);
|
||||||
|
p->alreadymasqed = 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static struct ast_frame *local_read(struct ast_channel *ast)
|
static struct ast_frame *local_read(struct ast_channel *ast)
|
||||||
{
|
{
|
||||||
static struct ast_frame null = { AST_FRAME_NULL, };
|
static struct ast_frame null = { AST_FRAME_NULL, };
|
||||||
@@ -117,9 +135,11 @@ static int local_write(struct ast_channel *ast, struct ast_frame *f)
|
|||||||
int res = -1;
|
int res = -1;
|
||||||
int isoutbound = IS_OUTBOUND(ast, p);
|
int isoutbound = IS_OUTBOUND(ast, p);
|
||||||
|
|
||||||
|
|
||||||
/* Just queue for delivery to the other side */
|
/* Just queue for delivery to the other side */
|
||||||
ast_pthread_mutex_lock(&p->lock);
|
ast_pthread_mutex_lock(&p->lock);
|
||||||
res = local_queue_frame(p, isoutbound, f);
|
res = local_queue_frame(p, isoutbound, f);
|
||||||
|
check_bridge(p, isoutbound);
|
||||||
ast_pthread_mutex_unlock(&p->lock);
|
ast_pthread_mutex_unlock(&p->lock);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
@@ -232,14 +252,21 @@ static struct local_pvt *local_alloc(char *data, int format)
|
|||||||
if (c) {
|
if (c) {
|
||||||
*c = '\0';
|
*c = '\0';
|
||||||
c++;
|
c++;
|
||||||
strncpy(tmp->context, data, sizeof(tmp->context) - 1);
|
strncpy(tmp->context, c, sizeof(tmp->context) - 1);
|
||||||
}
|
} else
|
||||||
|
strncpy(tmp->context, "default", sizeof(tmp->context) - 1);
|
||||||
tmp->reqformat = format;
|
tmp->reqformat = format;
|
||||||
/* Add to list */
|
if (!ast_exists_extension(NULL, tmp->context, tmp->exten, 1, NULL)) {
|
||||||
ast_pthread_mutex_lock(&locallock);
|
ast_log(LOG_NOTICE, "No such extension/context %s@%s creating local channel\n", tmp->context, tmp->exten);
|
||||||
tmp->next = locals;
|
free(tmp);
|
||||||
locals = tmp;
|
tmp = NULL;
|
||||||
ast_pthread_mutex_unlock(&locallock);
|
} else {
|
||||||
|
/* Add to list */
|
||||||
|
ast_pthread_mutex_lock(&locallock);
|
||||||
|
tmp->next = locals;
|
||||||
|
locals = tmp;
|
||||||
|
ast_pthread_mutex_unlock(&locallock);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
return tmp;
|
return tmp;
|
||||||
@@ -259,7 +286,7 @@ static struct ast_channel *local_new(struct local_pvt *p, int state)
|
|||||||
}
|
}
|
||||||
if (tmp) {
|
if (tmp) {
|
||||||
tmp->nativeformats = p->reqformat;
|
tmp->nativeformats = p->reqformat;
|
||||||
tmp->nativeformats = p->reqformat;
|
tmp2->nativeformats = p->reqformat;
|
||||||
snprintf(tmp->name, sizeof(tmp->name), "Local/%s@%s-1", p->exten, p->context);
|
snprintf(tmp->name, sizeof(tmp->name), "Local/%s@%s-1", p->exten, p->context);
|
||||||
snprintf(tmp2->name, sizeof(tmp2->name), "Local/%s@%s-2", p->exten, p->context);
|
snprintf(tmp2->name, sizeof(tmp2->name), "Local/%s@%s-2", p->exten, p->context);
|
||||||
tmp->type = type;
|
tmp->type = type;
|
||||||
@@ -316,7 +343,8 @@ static struct ast_channel *local_request(char *type, int format, void *data)
|
|||||||
struct local_pvt *p;
|
struct local_pvt *p;
|
||||||
struct ast_channel *chan = NULL;
|
struct ast_channel *chan = NULL;
|
||||||
p = local_alloc(data, format);
|
p = local_alloc(data, format);
|
||||||
chan = local_new(p, AST_STATE_DOWN);
|
if (p)
|
||||||
|
chan = local_new(p, AST_STATE_DOWN);
|
||||||
return chan;
|
return chan;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user