X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafm-main-binding.c;fp=src%2Fafm-main-plugin.c;h=1af3d8a0ec6e6fd7f883de1c947ab87051286c0d;hb=d432d8e6918e2e665f1c1179915fed3e0647380a;hp=fe0e8bd9aa433ba6c533dc51861cd38324dfa58f;hpb=d08b0ecf6d5e0a1a46db5723fd473a391d0f001a;p=src%2Fapp-framework-main.git diff --git a/src/afm-main-plugin.c b/src/afm-main-binding.c similarity index 95% rename from src/afm-main-plugin.c rename to src/afm-main-binding.c index fe0e8bd..1af3d8a 100644 --- a/src/afm-main-plugin.c +++ b/src/afm-main-binding.c @@ -21,7 +21,7 @@ #include #include -#include +#include #include "utils-jbus.h" @@ -45,7 +45,7 @@ static const char _terminate_[] = "terminate"; static const char _uninstall_[] = "uninstall"; static const char _uri_[] = "uri"; -static const struct AFB_interface *binder; +static const struct afb_binding_interface *binder; static struct jbus *jbus; @@ -138,7 +138,7 @@ static struct json_object *embed(const char *tag, struct json_object *obj) */ static void embed_call_void_callback(int status, struct json_object *obj, struct memo *memo) { - DEBUG(binder, "(afm-main-plugin) %s(true) -> %s\n", memo->method, + DEBUG(binder, "(afm-main-binding) %s(true) -> %s\n", memo->method, obj ? json_object_to_json_string(obj) : "NULL"); if (obj == NULL) { @@ -169,7 +169,7 @@ static void embed_call_void(struct afb_req request, const char *method) */ static void call_xxxid_callback(int status, struct json_object *obj, struct memo *memo) { - DEBUG(binder, "(afm-main-plugin) %s -> %s\n", memo->method, + DEBUG(binder, "(afm-main-binding) %s -> %s\n", memo->method, obj ? json_object_to_json_string(obj) : "NULL"); if (obj == NULL) { @@ -242,7 +242,7 @@ static void detail(struct afb_req request) static void start_callback(int status, struct json_object *obj, struct memo *memo) { - DEBUG(binder, "(afm-main-plugin) %s -> %s\n", memo->method, + DEBUG(binder, "(afm-main-binding) %s -> %s\n", memo->method, obj ? json_object_to_json_string(obj) : "NULL"); if (obj == NULL) { @@ -369,7 +369,7 @@ static void uninstall(struct afb_req request) call_appid(request, _uninstall_); } -static const struct AFB_verb_desc_v1 verbs[] = +static const struct afb_verb_desc_v1 verbs[] = { {_runnables_, AFB_SESSION_CHECK, runnables, "Get list of runnable applications"}, {_detail_ , AFB_SESSION_CHECK, detail, "Get the details for one application"}, @@ -384,8 +384,8 @@ static const struct AFB_verb_desc_v1 verbs[] = { NULL, 0, NULL, NULL } }; -static const struct AFB_plugin plug_desc = { - .type = AFB_PLUGIN_VERSION_1, +static const struct afb_binding plug_desc = { + .type = AFB_BINDING_VERSION_1, .v1 = { .info = "Application Framework Master Service", .prefix = "afm-main", @@ -393,7 +393,7 @@ static const struct AFB_plugin plug_desc = { } }; -const struct AFB_plugin *pluginAfbV1Register(const struct AFB_interface *itf) +const struct afb_binding *afbBindingV1Register(const struct afb_binding_interface *itf) { int rc; struct sd_bus *sbus;