mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 04:30:28 +00:00
Revert parts of r391855 that were not ready to go in to trunk
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@391856 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -39,8 +39,6 @@ struct ast_bridge_snapshot {
|
|||||||
AST_STRING_FIELD(uniqueid);
|
AST_STRING_FIELD(uniqueid);
|
||||||
/*! Bridge technology that is handling the bridge */
|
/*! Bridge technology that is handling the bridge */
|
||||||
AST_STRING_FIELD(technology);
|
AST_STRING_FIELD(technology);
|
||||||
/*! Bridge subclass that is handling the bridge */
|
|
||||||
AST_STRING_FIELD(subclass);
|
|
||||||
);
|
);
|
||||||
/*! AO2 container of bare channel uniqueid strings participating in the bridge.
|
/*! AO2 container of bare channel uniqueid strings participating in the bridge.
|
||||||
* Allocated from ast_str_container_alloc() */
|
* Allocated from ast_str_container_alloc() */
|
||||||
|
@@ -92,7 +92,6 @@ struct ast_bridge_snapshot *ast_bridge_snapshot_create(struct ast_bridge *bridge
|
|||||||
|
|
||||||
ast_string_field_set(snapshot, uniqueid, bridge->uniqueid);
|
ast_string_field_set(snapshot, uniqueid, bridge->uniqueid);
|
||||||
ast_string_field_set(snapshot, technology, bridge->technology->name);
|
ast_string_field_set(snapshot, technology, bridge->technology->name);
|
||||||
ast_string_field_set(snapshot, subclass, bridge->v_table->name);
|
|
||||||
|
|
||||||
snapshot->feature_flags = bridge->feature_flags;
|
snapshot->feature_flags = bridge->feature_flags;
|
||||||
snapshot->capabilities = bridge->technology->capabilities;
|
snapshot->capabilities = bridge->technology->capabilities;
|
||||||
@@ -292,68 +291,24 @@ void ast_bridge_publish_leave(struct ast_bridge *bridge, struct ast_channel *cha
|
|||||||
stasis_publish(ast_bridge_topic(bridge), msg);
|
stasis_publish(ast_bridge_topic(bridge), msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef struct ast_json *(*json_item_serializer_cb)(void *obj);
|
|
||||||
|
|
||||||
static struct ast_json *container_to_json_array(struct ao2_container *items, json_item_serializer_cb item_cb)
|
|
||||||
{
|
|
||||||
RAII_VAR(struct ast_json *, json_items, ast_json_array_create(), ast_json_unref);
|
|
||||||
void *item;
|
|
||||||
struct ao2_iterator it;
|
|
||||||
if (!json_items) {
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
it = ao2_iterator_init(items, 0);
|
|
||||||
while ((item = ao2_iterator_next(&it))) {
|
|
||||||
if (ast_json_array_append(json_items, item_cb(item))) {
|
|
||||||
ao2_iterator_destroy(&it);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ao2_iterator_destroy(&it);
|
|
||||||
|
|
||||||
return ast_json_ref(json_items);
|
|
||||||
}
|
|
||||||
|
|
||||||
static const char *capability2str(uint32_t capabilities)
|
|
||||||
{
|
|
||||||
if (capabilities & AST_BRIDGE_CAPABILITY_HOLDING) {
|
|
||||||
return "holding";
|
|
||||||
} else {
|
|
||||||
return "mixing";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
struct ast_json *ast_bridge_snapshot_to_json(const struct ast_bridge_snapshot *snapshot)
|
struct ast_json *ast_bridge_snapshot_to_json(const struct ast_bridge_snapshot *snapshot)
|
||||||
{
|
{
|
||||||
RAII_VAR(struct ast_json *, json_bridge, NULL, ast_json_unref);
|
RAII_VAR(struct ast_json *, json_chan, NULL, ast_json_unref);
|
||||||
struct ast_json *json_channels;
|
int r = 0;
|
||||||
|
|
||||||
if (snapshot == NULL) {
|
if (snapshot == NULL) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
json_channels = container_to_json_array(snapshot->channels,
|
json_chan = ast_json_object_create();
|
||||||
(json_item_serializer_cb)ast_json_string_create);
|
if (!json_chan) { ast_log(LOG_ERROR, "Error creating channel json object\n"); return NULL; }
|
||||||
if (!json_channels) {
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
json_bridge = ast_json_pack("{s: s, s: s, s: s, s: s, s: s, s: s, s: s, s: s, s: o}",
|
r = ast_json_object_set(json_chan, "bridge-uniqueid", ast_json_string_create(snapshot->uniqueid));
|
||||||
"bridgeUniqueid", snapshot->uniqueid,
|
if (r) { ast_log(LOG_ERROR, "Error adding attrib to channel json object\n"); return NULL; }
|
||||||
"bridgeTechnology", snapshot->technology,
|
r = ast_json_object_set(json_chan, "bridge-technology", ast_json_string_create(snapshot->technology));
|
||||||
"bridgeType", capability2str(snapshot->capabilities),
|
if (r) { ast_log(LOG_ERROR, "Error adding attrib to channel json object\n"); return NULL; }
|
||||||
"one_to_one", (snapshot->capabilities & AST_BRIDGE_CAPABILITY_1TO1MIX) ? "yes" : "no",
|
|
||||||
"multimix", (snapshot->capabilities & AST_BRIDGE_CAPABILITY_MULTIMIX) ? "yes" : "no",
|
|
||||||
"native", (snapshot->capabilities & AST_BRIDGE_CAPABILITY_NATIVE) ? "yes" : "no",
|
|
||||||
"holding", (snapshot->capabilities & AST_BRIDGE_CAPABILITY_HOLDING) ? "yes" : "no",
|
|
||||||
"bridgeClass", snapshot->subclass,
|
|
||||||
"channels", json_channels);
|
|
||||||
if (!json_bridge) {
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
return ast_json_ref(json_bridge);
|
return ast_json_ref(json_chan);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct ast_bridge_snapshot *ast_bridge_snapshot_get_latest(const char *uniqueid)
|
struct ast_bridge_snapshot *ast_bridge_snapshot_get_latest(const char *uniqueid)
|
||||||
|
@@ -34,7 +34,8 @@
|
|||||||
"allowedValues": {
|
"allowedValues": {
|
||||||
"type": "LIST",
|
"type": "LIST",
|
||||||
"values": [
|
"values": [
|
||||||
"mixing",
|
"two-party",
|
||||||
|
"multi-party",
|
||||||
"holding"
|
"holding"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -239,7 +240,8 @@
|
|||||||
"allowedValues": {
|
"allowedValues": {
|
||||||
"type": "LIST",
|
"type": "LIST",
|
||||||
"values": [
|
"values": [
|
||||||
"mixing",
|
"two-party",
|
||||||
|
"multi-party",
|
||||||
"holding"
|
"holding"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user