source: roaraudio/include/libroar/roardl.h @ 5512:71b49441933f

Last change on this file since 5512:71b49441933f was 5512:71b49441933f, checked in by phi, 12 years ago

avoid the need for linking plugins against libroar

File size: 18.5 KB
Line 
1//roardl.h:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2010-2012
5 *
6 *  This file is part of libroar a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  libroar is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
23 *
24 *  NOTE for everyone want's to change something and send patches:
25 *  read README and HACKING! There a addition information on
26 *  the license of this document you need to read before you send
27 *  any patches.
28 *
29 *  NOTE for uses of non-GPL (LGPL,...) software using libesd, libartsc
30 *  or libpulse*:
31 *  The libs libroaresd, libroararts and libroarpulse link this lib
32 *  and are therefore GPL. Because of this it may be illigal to use
33 *  them with any software that uses libesd, libartsc or libpulse*.
34 */
35
36#ifndef _LIBROARROARDL_H_
37#define _LIBROARROARDL_H_
38
39#include "libroar.h"
40
41#define ROAR_DL_FLAG_DEFAULTS          -1
42#define ROAR_DL_FLAG_PLUGIN            -2
43#define ROAR_DL_FLAG_NONE               0x0000
44#define ROAR_DL_FLAG_STATIC             0x0001 /* plugins are linked statically -lfoo */
45#define ROAR_DL_FLAG_LAZY               0x0002
46#define ROAR_DL_FLAG_PLUGINPATH         0x0004 /* Use plugin search path */
47
48#define ROAR_DL_HANDLE_DEFAULT          ((struct roar_dl_lhandle*)(void*)0)
49#define ROAR_DL_HANDLE_NEXT             ((struct roar_dl_lhandle*)(void*)1)
50#define ROAR_DL_HANDLE_LIBROAR          ((struct roar_dl_lhandle*)(void*)2)
51#define ROAR_DL_HANDLE_APPLICATION      ((struct roar_dl_lhandle*)(void*)3)
52
53#define ROAR_DL_FN_DSTR                 0 /* VIO and DSTR drivers */
54#define ROAR_DL_FN_CDRIVER              1 /* Client drivers, libroareio */
55#define ROAR_DL_FN_TRANSCODER           2 /* Transcoder, libroardsp */
56#define ROAR_DL_FN_DRIVER               3 /* Driver, roard? */
57#define ROAR_DL_FN_SOURCE               4 /* Sources, roard? */
58#define ROAR_DL_FN_FILTER               5 /* Filter, libroardsp */
59#define ROAR_DL_FN_FF                   6 /* file format??? */
60#define ROAR_DL_FN_AUTH                 7 /* Auth */
61#define ROAR_DL_FN_BRIDGE               8 /* Bridges, roard? */
62#define ROAR_DL_FN_ROARDSCHED           9 /* Like appsched, but roard specific, old */
63#define ROAR_DL_FN_APPSCHED            10 /* AppSched, old interface */
64#define ROAR_DL_FN_PROTO               11 /* Protocols, roard? */
65#define ROAR_DL_FN_NOTIFY              12 /* ??? */
66#define ROAR_DL_FN_INIT                13 /* global plugin instance init. should be avoided */
67#define ROAR_DL_FN_REGFN               14 /* FN Registrations */
68#define ROAR_DL_FN_APPLICATION         15 /* Application specific stuff */
69//#define ROAR_DL_FN_               9
70#define ROAR_DL_FN_MAX                 24
71
72#define ROAR_DL_LIBPARA_VERSION         1
73#define ROAR_DL_LIBNAME_VERSION         0
74#define ROAR_DL_LIBINST_VERSION         1
75#define ROAR_DL_LIBDEP_VERSION          0
76
77#define ROAR_DL_PLUGIN(lib) struct roar_dl_libraryinst *                                          \
78                             _##lib##_roaraudio_library_init(struct roar_dl_librarypara * para);  \
79                            struct roar_dl_libraryinst *                                          \
80                             _roaraudio_library_init(struct roar_dl_librarypara * para) {         \
81                              return _##lib##_roaraudio_library_init(para);                       \
82                            }                                                                     \
83                            struct roar_dl_libraryinst *                                          \
84                             _##lib##_roaraudio_library_init(struct roar_dl_librarypara * para)   \
85
86#define ROAR_DL_PLUGIN_START(xlib) ROAR_DL_PLUGIN(xlib) {                                         \
87                                     static int _inited = 0;                                      \
88                                     static struct roar_dl_libraryinst lib;                       \
89                                     static struct roar_dl_libraryname libname;                   \
90                                     (void)para;                                                  \
91                                     if ( _inited )                                               \
92                                      return &lib;                                                \
93                                     if ( para != NULL &&                                         \
94                                          (para->version != ROAR_DL_LIBPARA_VERSION ||            \
95                                           para->len < sizeof(struct roar_dl_librarypara)) ) {    \
96                                      /* we should set ROAR_ERROR_NSVERSION here but can not */   \
97                                      /* because that would require the plugin to be linked */    \
98                                      /* aginst libroar */                                        \
99                                      return NULL;                                                \
100                                     }                                                            \
101                                     memset(&lib, 0, sizeof(lib));                                \
102                                     lib.version = ROAR_DL_LIBINST_VERSION;                       \
103                                     lib.len     = sizeof(lib);                                   \
104                                     memset(&libname, 0, sizeof(libname));                        \
105                                     libname.version = ROAR_DL_LIBNAME_VERSION;                   \
106                                     libname.len     = sizeof(libname);                           \
107                                     libname.name = #xlib;                                        \
108                                     lib.libname  = &libname;                                     \
109                                     do
110
111#define ROAR_DL_PLUGIN_END          while(0);                                                     \
112                                    _inited = 1;                                                  \
113                                    return &lib;                                                  \
114                                   }
115
116// general stuff:
117#define ROAR_DL_PLUGIN_ABORT_LOADING(err) roar_err_set((err)); return NULL
118#define ROAR_DL_PLUGIN_CHECK_VERSIONS(app,abi) (((lib.host_appname = (app))    != NULL) | \
119                                                ((lib.host_abiversion = (abi)) != NULL) )
120// should we keep this macro at all? Is it helpfull at all?
121// if a plugin can handle multiple hosts it needs to call roar_dl_para_check_version() itself anyway.
122#define ROAR_DL_PLUGIN_CHECK_VERSIONS_NOW(app,abi) if ( roar_dl_para_check_version(para, (app), (abi)) == -1 ) return NULL
123
124// register stuff:
125#define ROAR_DL_PLUGIN_REG(fn, funcptr) (lib.func[(fn)] = (funcptr))
126#define ROAR_DL_PLUGIN_REG_UNLOAD(func) (lib.unload = (func))
127#define ROAR_DL_PLUGIN_REG_APPSCHED(sched) (lib.appsched = (sched))
128#define ROAR_DL_PLUGIN_REG_GLOBAL_DATA(ptr,init) lib.global_data_len = sizeof((init)); \
129                                                 lib.global_data_init = &(init);       \
130                                                 lib.global_data_pointer = (void*)&(ptr)
131#define ROAR_DL_PLUGIN_REG_LIBDEP(deps) (((lib.libdep = (deps)) == NULL) ? \
132                                           (ssize_t)-1 : \
133                                           (ssize_t)(lib.libdep_len = sizeof((deps))/sizeof(struct roar_dl_librarydep)))
134
135// meta data stuff:
136#define ROAR_DL_PLUGIN_META_PRODUCT(x)      (libname.libname     = (x))
137#define ROAR_DL_PLUGIN_META_PRODUCT_NV(name,vendor)      ROAR_DL_PLUGIN_META_PRODUCT(name " <" vendor ">")
138#define ROAR_DL_PLUGIN_META_PRODUCT_NIV_REAL(name,id,vendor)  ROAR_DL_PLUGIN_META_PRODUCT(name " <" #id "/" vendor ">")
139#define ROAR_DL_PLUGIN_META_PRODUCT_NIV(name,id,vendor)  ROAR_DL_PLUGIN_META_PRODUCT_NIV_REAL(name,id,vendor)
140#define ROAR_DL_PLUGIN_META_VERSION(x)      (libname.libversion  = (x))
141#define ROAR_DL_PLUGIN_META_ABI(x)          (libname.abiversion  = (x))
142#define ROAR_DL_PLUGIN_META_DESC(x)         (libname.description = (x))
143#define ROAR_DL_PLUGIN_META_CONTACT(x)      (libname.contact = (x))
144#define ROAR_DL_PLUGIN_META_CONTACT_FL(first,last)        ROAR_DL_PLUGIN_META_CONTACT(first " " last)
145#define ROAR_DL_PLUGIN_META_CONTACT_FLE(first,last,email) ROAR_DL_PLUGIN_META_CONTACT(first " " last " <" email ">")
146#define ROAR_DL_PLUGIN_META_CONTACT_FLNE(first,last,nick,email) ROAR_DL_PLUGIN_META_CONTACT(first " \"" nick "\" " last " <" email ">")
147#define ROAR_DL_PLUGIN_META_AUTHORS(x)      (libname.authors = (x))
148#define ROAR_DL_PLUGIN_META_LICENSE(x)      (libname.license = (x))
149#define ROAR_DL_PLUGIN_META_LICENSE_TAG(x)  ROAR_DL_PLUGIN_META_LICENSE(ROAR_LICENSE_ ## x)
150
151enum roar_dl_loadercmd {
152 ROAR_DL_LOADER_NOOP = 0,
153 ROAR_DL_LOADER_PRELOAD,
154 ROAR_DL_LOADER_LOAD,
155 ROAR_DL_LOADER_POSTLOAD,
156 ROAR_DL_LOADER_PREUNLOAD,
157 ROAR_DL_LOADER_UNLOAD,
158 ROAR_DL_LOADER_POSTUNLOAD
159};
160
161struct roar_plugincontainer;
162
163struct roar_dl_librarypara {
164 int version;               // version of this struct type (must be ROAR_DL_LIBPARA_VERSION)
165 size_t len;                // Length of this struct type (must be sizeof(struct roar_dl_librarypara)
166
167 size_t refc;               // Reference counter.
168
169 size_t argc;               // number of elements in argv
170 struct roar_keyval * argv; // Parameter for the plugin
171 void * args_store;         // Storage area for argv's data.
172                            // If not NULL this and argv will be freed.
173                            // If NULL argv will be left untouched.
174
175 void * binargv;            // A pointer with binary data arguments.
176                            // This can be used to pass any non-string data to
177                            // the plugin. Normally this is NULL or the pointer
178                            // to a struct with members of whatever is needed.
179
180 const char * appname;      // application name in common format:
181                            // Product/Version <VendorID/VendorName> (comments)
182                            // Version and comment are optional and should be avoided.
183                            // When no vendor ID is registered use <VendorName>.
184                            // The VendorName MUST NOT contain a slash and SHOULD
185                            // be as unique as possible.
186                            // Examples: roard <0/RoarAudio>, MyAPP <myapp.org>,
187                            //           AnAPP <Musterman GbR>
188 const char * abiversion;   // The ABI version. For libraries this should be the SONAME.
189                            // For applications this should be the version of the release
190                            // which introduced the current ABI.
191                            // Examples: libroar2, 0.5.1
192 struct roar_notify_core * notifycore;
193 struct roar_plugincontainer * container;
194 int (*loader)(struct roar_dl_librarypara * lhandle, void * loader_userdata, enum roar_dl_loadercmd cmd, void * argp);
195 void * loader_userdata;
196};
197
198struct roar_dl_libraryname {
199 int      version;
200 size_t   len;
201 const char * name;        //Format: shortname
202 const char * libname;     //This is the same as appname in struct roar_dl_librarypara.
203                           //Format: Product <VendorID/VendorName> (comments)
204 const char * libversion;  //This is the pure version number of the library.
205 const char * abiversion;  //This is the same as abiversion in struct roar_dl_librarypara.
206                           //Format: Version
207 const char * description; //Free form.
208 const char * contact;     //Format: first ["']nick["'] last (comment) <email>/OpenPGPkey/Phone/Room
209 const char * authors;     //Other authors as free form.
210 const char * license;     //Format: LicenseName-Version (options)
211                           //Examples: GPL-3.0, LGPL-2.1, LGPL-3.0 (or later).
212};
213
214struct roar_dl_librarydep {
215 int      version;
216 size_t   len;
217 uint32_t flags;
218 const char * name;
219 const char * libname;
220 const char * abiversion;
221};
222
223#define ROAR_DL_DEP(__flags,__name,__libname,__abiversion) \
224                                                   {.version    = ROAR_DL_LIBDEP_VERSION,            \
225                                                    .len        = sizeof(struct roar_dl_librarydep), \
226                                                    .flags      = __flags,                           \
227                                                    .name       = __name,                            \
228                                                    .libname    = __libname,                         \
229                                                    .abiversion = __abiversion}
230
231struct roar_dl_libraryinst {
232 int      version;
233 size_t   len;
234 int    (*unload)(struct roar_dl_librarypara * para, struct roar_dl_libraryinst * lib);
235 int    (*func[ROAR_DL_FN_MAX])(struct roar_dl_librarypara * para, struct roar_dl_libraryinst * lib);
236 struct roar_dl_libraryname * libname;
237 size_t  global_data_len;
238 void *  global_data_init;
239 void ** global_data_pointer;
240 struct roar_dl_librarydep * libdep;
241 size_t libdep_len;
242 struct roar_dl_appsched * appsched;
243 const char * host_appname;
244 const char * host_abiversion;
245};
246
247struct roar_dl_appsched {
248 int (*init)  (struct roar_dl_librarypara * para);
249 int (*free)  (struct roar_dl_librarypara * para);
250 int (*update)(struct roar_dl_librarypara * para);
251 int (*tick)  (struct roar_dl_librarypara * para);
252 int (*wait)  (struct roar_dl_librarypara * para);
253};
254
255enum roar_dl_appsched_trigger {
256 ROAR_DL_APPSCHED_INIT = 1,
257#define ROAR_DL_APPSCHED_INIT ROAR_DL_APPSCHED_INIT
258 ROAR_DL_APPSCHED_FREE,
259#define ROAR_DL_APPSCHED_FREE ROAR_DL_APPSCHED_FREE
260 ROAR_DL_APPSCHED_UPDATE,
261#define ROAR_DL_APPSCHED_UPDATE ROAR_DL_APPSCHED_UPDATE
262 ROAR_DL_APPSCHED_TICK,
263#define ROAR_DL_APPSCHED_TICK ROAR_DL_APPSCHED_TICK
264 ROAR_DL_APPSCHED_WAIT
265#define ROAR_DL_APPSCHED_WAIT ROAR_DL_APPSCHED_WAIT
266};
267
268// parameter functions:
269struct roar_dl_librarypara * roar_dl_para_new(const char * args, void * binargv,
270                                              const char * appname, const char * abiversion);
271int roar_dl_para_ref                    (struct roar_dl_librarypara * para);
272int roar_dl_para_unref                  (struct roar_dl_librarypara * para);
273int roar_dl_para_check_version          (struct roar_dl_librarypara * para,
274                                         const char * appname, const char * abiversion);
275
276// 'core' dynamic loader functions.
277struct roar_dl_lhandle * roar_dl_open   (const char * filename, int flags,
278                                         int ra_init, struct roar_dl_librarypara * para);
279int                      roar_dl_ref    (struct roar_dl_lhandle * lhandle);
280int                      roar_dl_unref  (struct roar_dl_lhandle * lhandle);
281#define roar_dl_close(x) roar_dl_unref((x))
282
283void                   * roar_dl_getsym (struct roar_dl_lhandle * lhandle, const char * sym, int type);
284
285int                      roar_dl_ra_init(struct roar_dl_lhandle * lhandle,
286                                         const char * prefix,
287                                         struct roar_dl_librarypara * para);
288
289const char *             roar_dl_errstr (struct roar_dl_lhandle * lhandle);
290
291// getting meta data:
292struct roar_dl_librarypara       * roar_dl_getpara(struct roar_dl_lhandle * lhandle);
293const struct roar_dl_libraryname * roar_dl_getlibname(struct roar_dl_lhandle * lhandle);
294
295// context switching:
296// _restore() is to switch from main to library context. _store() is to store library context
297// and switch back to main context.
298int                      roar_dl_context_restore(struct roar_dl_lhandle * lhandle);
299int                      roar_dl_context_store(struct roar_dl_lhandle * lhandle);
300
301// appsched:
302int                      roar_dl_appsched_trigger(struct roar_dl_lhandle * lhandle, enum roar_dl_appsched_trigger trigger);
303
304// FN Registration:
305
306// Actions objects can emit:
307enum roar_dl_fnreg_action {
308 ROAR_DL_FNREG   = 1, // The object is been registered
309 ROAR_DL_FNUNREG = 2  // The object is been unregistered
310};
311
312// Callback for registering/unregistering objects:
313struct roar_dl_fnreg {
314 int fn;          // Filter: The FN of the registering object or -1 for any.
315 int subtype;     // Filter: The subtype of the registering object or -1 for any.
316 int version;     // Filter: The version of the registering object or -1 for any.
317 int (*callback)( // Callback to call on register/unregister.
318   enum roar_dl_fnreg_action action, // The action happening
319   int fn,                           // The FN of the object
320   int subtype,                      // The subtype of the object
321   const void * object,              // Pointer to the object
322   size_t objectlen,                 // Length of the object
323   int version,                      // Version of the object
324   int options,                      // Object Options.
325   void * userdata,                  // User data for the callback.
326   struct roar_dl_lhandle * lhandle  // The registering handle.
327                                     // This is valid until the object is unregistered.
328                                     // Only roar_dl_context_restore() and roar_dl_context_store()
329                                     // may be used on this object. Result of all other functions
330                                     // is undefined.
331 );
332 void * userdata; // The user data pointer passed to the callback.
333};
334
335// Parameters for FNREG registration:
336#define ROAR_DL_FNREG_SUBTYPE  0
337#define ROAR_DL_FNREG_VERSION  0
338#define ROAR_DL_FNREG_SIZE     sizeof(struct roar_dl_fnreg)
339
340
341// Reg FN:
342
343// Options:
344#define ROAR_DL_FNREG_OPT_NONE 0   /* no options */
345
346// Register an FN.
347int                      roar_dl_register_fn(struct roar_dl_lhandle * lhandle, int fn, int subtype, const void * object, size_t objectlen, int version, int options);
348
349// Unregister FN for the given plugin.
350// This should not be called directly and is called internally when needed.
351int                      roar_dl_unregister_fn(struct roar_dl_lhandle * lhandle);
352
353#endif
354
355//ll
Note: See TracBrowser for help on using the repository browser.