diff options
Diffstat (limited to 'binding/gdbus')
-rw-r--r-- | binding/gdbus/ofono_voicecallmanager.c | 48 | ||||
-rw-r--r-- | binding/gdbus/ofono_voicecallmanager.h | 1 |
2 files changed, 49 insertions, 0 deletions
diff --git a/binding/gdbus/ofono_voicecallmanager.c b/binding/gdbus/ofono_voicecallmanager.c index 78924dc..8118f1f 100644 --- a/binding/gdbus/ofono_voicecallmanager.c +++ b/binding/gdbus/ofono_voicecallmanager.c @@ -276,3 +276,51 @@ gboolean ofono_voicecallmanager_swap_calls(OrgOfonoVoiceCallManager *manager) return (error == NULL); } + +json_object* ofono_voicecallmanager_get_calls(OrgOfonoVoiceCallManager *manager) +{ + GError *error = NULL; + gboolean res; + GVariant *reply = NULL; + g_autoptr(GVariantIter) iter1 = NULL; + g_autoptr(GVariantIter) iter2 = NULL; + GVariant *value = NULL; + const gchar *key1 = NULL; + const gchar *key2 = NULL; + json_object *jprop = NULL; + if (!manager) { + AFB_ERROR("Ofono VoiceCallmanager uninitialized\n"); + return NULL; + } + + res = org_ofono_voice_call_manager_call_get_calls_sync(manager, &reply, NULL, &error); + + json_object *jarray = json_object_new_array(); + json_object *jresp = json_object_new_object(); + json_object_object_add(jresp, "active calls", jarray); + + if (res) { + g_variant_get(reply, "a(oa{sv})", &iter1); + jprop = json_object_new_object(); + while (g_variant_iter_loop(iter1, "(&oa{sv})", &key1, &iter2)) { + json_object_object_add(jprop, "Object Path", json_object_new_string(key1)); + while (g_variant_iter_loop(iter2, "{&sv}", &key2, &value)) { + const char* type = g_variant_get_type_string(value); + switch (*type) { + case 'o': + case 's': + json_object_object_add(jprop,key2, json_object_new_string(g_variant_get_string(value, NULL))); + break; + case 'b': + json_object_object_add(jprop,key2,json_object_new_boolean(g_variant_get_boolean(value))); + break; + default: + break; + } + } + json_object_array_add(jarray, jprop); + } + g_variant_unref(reply); + } + return jresp; +} diff --git a/binding/gdbus/ofono_voicecallmanager.h b/binding/gdbus/ofono_voicecallmanager.h index df058a2..770c409 100644 --- a/binding/gdbus/ofono_voicecallmanager.h +++ b/binding/gdbus/ofono_voicecallmanager.h @@ -34,3 +34,4 @@ gboolean ofono_voicecallmanager_hold_and_answer(OrgOfonoVoiceCallManager *); gboolean ofono_voicecallmanager_release_and_answer(OrgOfonoVoiceCallManager *); gboolean ofono_voicecallmanager_swap_calls(OrgOfonoVoiceCallManager *); gchar **ofono_voicecallmanager_create_multiparty(OrgOfonoVoiceCallManager *); +json_object *ofono_voicecallmanager_get_calls(OrgOfonoVoiceCallManager *); |