From e2a20090f37eb32cdf8beaf9c23cf33a9e9ab7f1 Mon Sep 17 00:00:00 2001 From: Fulup Ar Foll Date: Fri, 29 Sep 2017 12:23:26 +0200 Subject: Initial Commit as submodule --- ctl-dispatch/ctl-plugin.h | 74 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 ctl-dispatch/ctl-plugin.h (limited to 'ctl-dispatch/ctl-plugin.h') diff --git a/ctl-dispatch/ctl-plugin.h b/ctl-dispatch/ctl-plugin.h new file mode 100644 index 0000000..e0ab3dd --- /dev/null +++ b/ctl-dispatch/ctl-plugin.h @@ -0,0 +1,74 @@ +/* + * Copyright (C) 2016 "IoT.bzh" + * Author Fulup Ar Foll + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, something express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + + +#ifndef _CTL_PLUGIN_INCLUDE_ +#define _CTL_PLUGIN_INCLUDE_ + +#define _GNU_SOURCE +#include + +#ifndef CTL_PLUGIN_MAGIC + #define CTL_PLUGIN_MAGIC 852369147 +#endif + +#ifndef PUBLIC + #define PUBLIC +#endif + +#ifndef STATIC + #define STATIC static +#endif + +#ifndef UNUSED_ARG + #define UNUSED_ARG(x) UNUSED_ ## x __attribute__((__unused__)) + #define UNUSED_FUNCTION(x) __attribute__((__unused__)) UNUSED_ ## x +#endif + +typedef struct { + char *label; + char *info; + afb_req request; + void *context; +} CtlSourceT; + + +typedef struct { + long magic; + char *label; + void *handle; +} CtlPluginMagicT; + + +typedef struct { + const char *label; + const char *info; + const char *version; + void *context; + void *dlHandle; +} CtlPluginT; + +typedef void*(*DispatchPluginInstallCbT)(CtlPluginT *plugin, void* handle); + + +#define MACRO_STR_VALUE(arg) #arg +#define CTLP_REGISTER(pluglabel) CtlPluginMagicT CtlPluginMagic={.magic=CTL_PLUGIN_MAGIC,.label=pluglabel}; struct afb_binding_data_v2; +#define CTLP_ONLOAD(plugin, handle) void* CtlPluginOnload(CtlPluginT *plugin, void* handle) +#define CTLP_CAPI(funcname, source, argsJ, queryJ) int funcname(CtlSourceT *source, json_object* argsJ, json_object* queryJ) + +#endif /* _CTL_PLUGIN_INCLUDE_ */ \ No newline at end of file -- cgit 1.2.3-korg