plugin.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. *
  3. * oFono - Open Source Telephony
  4. *
  5. * Copyright (C) 2008-2011 Intel Corporation. All rights reserved.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  19. *
  20. */
  21. #ifndef __OFONO_PLUGIN_H
  22. #define __OFONO_PLUGIN_H
  23. #include <ofono/version.h>
  24. #include <ofono/log.h>
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28. #ifndef OFONO_API_SUBJECT_TO_CHANGE
  29. #error "Please define OFONO_API_SUBJECT_TO_CHANGE to acknowledge your \
  30. understanding that oFono hasn't reached a stable API."
  31. #endif
  32. #define OFONO_PLUGIN_PRIORITY_LOW -100
  33. #define OFONO_PLUGIN_PRIORITY_DEFAULT 0
  34. #define OFONO_PLUGIN_PRIORITY_HIGH 100
  35. /**
  36. * SECTION:plugin
  37. * @title: Plugin premitives
  38. * @short_description: Functions for declaring plugins
  39. */
  40. struct ofono_plugin_desc {
  41. const char *name;
  42. const char *description;
  43. const char *version;
  44. int priority;
  45. int (*init) (void);
  46. void (*exit) (void);
  47. void *debug_start;
  48. void *debug_stop;
  49. };
  50. /**
  51. * OFONO_PLUGIN_DEFINE:
  52. * @name: plugin name
  53. * @description: plugin description
  54. * @version: plugin version string
  55. * @init: init function called on plugin loading
  56. * @exit: exit function called on plugin removal
  57. *
  58. * Macro for defining a plugin descriptor
  59. */
  60. #ifdef OFONO_PLUGIN_BUILTIN
  61. #define OFONO_PLUGIN_DEFINE(name, description, version, priority, init, exit) \
  62. struct ofono_plugin_desc __ofono_builtin_ ## name = { \
  63. #name, description, version, priority, init, exit \
  64. };
  65. #else
  66. #define OFONO_PLUGIN_DEFINE(name, description, version, priority, init, exit) \
  67. extern struct ofono_debug_desc __start___debug[] \
  68. __attribute__ ((weak, visibility("hidden"))); \
  69. extern struct ofono_debug_desc __stop___debug[] \
  70. __attribute__ ((weak, visibility("hidden"))); \
  71. extern struct ofono_plugin_desc ofono_plugin_desc \
  72. __attribute__ ((visibility("default"))); \
  73. struct ofono_plugin_desc ofono_plugin_desc = { \
  74. #name, description, version, priority, init, exit, \
  75. __start___debug, __stop___debug \
  76. };
  77. #endif
  78. #ifdef __cplusplus
  79. }
  80. #endif
  81. #endif /* __OFONO_PLUGIN_H */