gdbusintrospection.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. /* GDBus - GLib D-Bus Library
  2. *
  3. * Copyright (C) 2008-2010 Red Hat, Inc.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General
  16. * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
  17. *
  18. * Author: David Zeuthen <davidz@redhat.com>
  19. */
  20. #ifndef __G_DBUS_INTROSPECTION_H__
  21. #define __G_DBUS_INTROSPECTION_H__
  22. #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
  23. #error "Only <gio/gio.h> can be included directly."
  24. #endif
  25. #include <gio/giotypes.h>
  26. G_BEGIN_DECLS
  27. /**
  28. * GDBusAnnotationInfo:
  29. * @ref_count: The reference count or -1 if statically allocated.
  30. * @key: The name of the annotation, e.g. "org.freedesktop.DBus.Deprecated".
  31. * @value: The value of the annotation.
  32. * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations.
  33. *
  34. * Information about an annotation.
  35. *
  36. * Since: 2.26
  37. */
  38. struct _GDBusAnnotationInfo
  39. {
  40. /*< public >*/
  41. volatile gint ref_count;
  42. gchar *key;
  43. gchar *value;
  44. GDBusAnnotationInfo **annotations;
  45. };
  46. /**
  47. * GDBusArgInfo:
  48. * @ref_count: The reference count or -1 if statically allocated.
  49. * @name: Name of the argument, e.g. @unix_user_id.
  50. * @signature: D-Bus signature of the argument (a single complete type).
  51. * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations.
  52. *
  53. * Information about an argument for a method or a signal.
  54. *
  55. * Since: 2.26
  56. */
  57. struct _GDBusArgInfo
  58. {
  59. /*< public >*/
  60. volatile gint ref_count;
  61. gchar *name;
  62. gchar *signature;
  63. GDBusAnnotationInfo **annotations;
  64. };
  65. /**
  66. * GDBusMethodInfo:
  67. * @ref_count: The reference count or -1 if statically allocated.
  68. * @name: The name of the D-Bus method, e.g. @RequestName.
  69. * @in_args: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusArgInfo structures or %NULL if there are no in arguments.
  70. * @out_args: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusArgInfo structures or %NULL if there are no out arguments.
  71. * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations.
  72. *
  73. * Information about a method on an D-Bus interface.
  74. *
  75. * Since: 2.26
  76. */
  77. struct _GDBusMethodInfo
  78. {
  79. /*< public >*/
  80. volatile gint ref_count;
  81. gchar *name;
  82. GDBusArgInfo **in_args;
  83. GDBusArgInfo **out_args;
  84. GDBusAnnotationInfo **annotations;
  85. };
  86. /**
  87. * GDBusSignalInfo:
  88. * @ref_count: The reference count or -1 if statically allocated.
  89. * @name: The name of the D-Bus signal, e.g. "NameOwnerChanged".
  90. * @args: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusArgInfo structures or %NULL if there are no arguments.
  91. * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations.
  92. *
  93. * Information about a signal on a D-Bus interface.
  94. *
  95. * Since: 2.26
  96. */
  97. struct _GDBusSignalInfo
  98. {
  99. /*< public >*/
  100. volatile gint ref_count;
  101. gchar *name;
  102. GDBusArgInfo **args;
  103. GDBusAnnotationInfo **annotations;
  104. };
  105. /**
  106. * GDBusPropertyInfo:
  107. * @ref_count: The reference count or -1 if statically allocated.
  108. * @name: The name of the D-Bus property, e.g. "SupportedFilesystems".
  109. * @signature: The D-Bus signature of the property (a single complete type).
  110. * @flags: Access control flags for the property.
  111. * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations.
  112. *
  113. * Information about a D-Bus property on a D-Bus interface.
  114. *
  115. * Since: 2.26
  116. */
  117. struct _GDBusPropertyInfo
  118. {
  119. /*< public >*/
  120. volatile gint ref_count;
  121. gchar *name;
  122. gchar *signature;
  123. GDBusPropertyInfoFlags flags;
  124. GDBusAnnotationInfo **annotations;
  125. };
  126. /**
  127. * GDBusInterfaceInfo:
  128. * @ref_count: The reference count or -1 if statically allocated.
  129. * @name: The name of the D-Bus interface, e.g. "org.freedesktop.DBus.Properties".
  130. * @methods: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusMethodInfo structures or %NULL if there are no methods.
  131. * @signals: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusSignalInfo structures or %NULL if there are no signals.
  132. * @properties: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusPropertyInfo structures or %NULL if there are no properties.
  133. * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations.
  134. *
  135. * Information about a D-Bus interface.
  136. *
  137. * Since: 2.26
  138. */
  139. struct _GDBusInterfaceInfo
  140. {
  141. /*< public >*/
  142. volatile gint ref_count;
  143. gchar *name;
  144. GDBusMethodInfo **methods;
  145. GDBusSignalInfo **signals;
  146. GDBusPropertyInfo **properties;
  147. GDBusAnnotationInfo **annotations;
  148. };
  149. /**
  150. * GDBusNodeInfo:
  151. * @ref_count: The reference count or -1 if statically allocated.
  152. * @path: The path of the node or %NULL if omitted. Note that this may be a relative path. See the D-Bus specification for more details.
  153. * @interfaces: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusInterfaceInfo structures or %NULL if there are no interfaces.
  154. * @nodes: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusNodeInfo structures or %NULL if there are no nodes.
  155. * @annotations: (array zero-terminated=1): A pointer to a %NULL-terminated array of pointers to #GDBusAnnotationInfo structures or %NULL if there are no annotations.
  156. *
  157. * Information about nodes in a remote object hierarchy.
  158. *
  159. * Since: 2.26
  160. */
  161. struct _GDBusNodeInfo
  162. {
  163. /*< public >*/
  164. volatile gint ref_count;
  165. gchar *path;
  166. GDBusInterfaceInfo **interfaces;
  167. GDBusNodeInfo **nodes;
  168. GDBusAnnotationInfo **annotations;
  169. };
  170. GLIB_AVAILABLE_IN_ALL
  171. const gchar *g_dbus_annotation_info_lookup (GDBusAnnotationInfo **annotations,
  172. const gchar *name);
  173. GLIB_AVAILABLE_IN_ALL
  174. GDBusMethodInfo *g_dbus_interface_info_lookup_method (GDBusInterfaceInfo *info,
  175. const gchar *name);
  176. GLIB_AVAILABLE_IN_ALL
  177. GDBusSignalInfo *g_dbus_interface_info_lookup_signal (GDBusInterfaceInfo *info,
  178. const gchar *name);
  179. GLIB_AVAILABLE_IN_ALL
  180. GDBusPropertyInfo *g_dbus_interface_info_lookup_property (GDBusInterfaceInfo *info,
  181. const gchar *name);
  182. GLIB_AVAILABLE_IN_ALL
  183. void g_dbus_interface_info_cache_build (GDBusInterfaceInfo *info);
  184. GLIB_AVAILABLE_IN_ALL
  185. void g_dbus_interface_info_cache_release (GDBusInterfaceInfo *info);
  186. GLIB_AVAILABLE_IN_ALL
  187. void g_dbus_interface_info_generate_xml (GDBusInterfaceInfo *info,
  188. guint indent,
  189. GString *string_builder);
  190. GLIB_AVAILABLE_IN_ALL
  191. GDBusNodeInfo *g_dbus_node_info_new_for_xml (const gchar *xml_data,
  192. GError **error);
  193. GLIB_AVAILABLE_IN_ALL
  194. GDBusInterfaceInfo *g_dbus_node_info_lookup_interface (GDBusNodeInfo *info,
  195. const gchar *name);
  196. GLIB_AVAILABLE_IN_ALL
  197. void g_dbus_node_info_generate_xml (GDBusNodeInfo *info,
  198. guint indent,
  199. GString *string_builder);
  200. GLIB_AVAILABLE_IN_ALL
  201. GDBusNodeInfo *g_dbus_node_info_ref (GDBusNodeInfo *info);
  202. GLIB_AVAILABLE_IN_ALL
  203. GDBusInterfaceInfo *g_dbus_interface_info_ref (GDBusInterfaceInfo *info);
  204. GLIB_AVAILABLE_IN_ALL
  205. GDBusMethodInfo *g_dbus_method_info_ref (GDBusMethodInfo *info);
  206. GLIB_AVAILABLE_IN_ALL
  207. GDBusSignalInfo *g_dbus_signal_info_ref (GDBusSignalInfo *info);
  208. GLIB_AVAILABLE_IN_ALL
  209. GDBusPropertyInfo *g_dbus_property_info_ref (GDBusPropertyInfo *info);
  210. GLIB_AVAILABLE_IN_ALL
  211. GDBusArgInfo *g_dbus_arg_info_ref (GDBusArgInfo *info);
  212. GLIB_AVAILABLE_IN_ALL
  213. GDBusAnnotationInfo *g_dbus_annotation_info_ref (GDBusAnnotationInfo *info);
  214. GLIB_AVAILABLE_IN_ALL
  215. void g_dbus_node_info_unref (GDBusNodeInfo *info);
  216. GLIB_AVAILABLE_IN_ALL
  217. void g_dbus_interface_info_unref (GDBusInterfaceInfo *info);
  218. GLIB_AVAILABLE_IN_ALL
  219. void g_dbus_method_info_unref (GDBusMethodInfo *info);
  220. GLIB_AVAILABLE_IN_ALL
  221. void g_dbus_signal_info_unref (GDBusSignalInfo *info);
  222. GLIB_AVAILABLE_IN_ALL
  223. void g_dbus_property_info_unref (GDBusPropertyInfo *info);
  224. GLIB_AVAILABLE_IN_ALL
  225. void g_dbus_arg_info_unref (GDBusArgInfo *info);
  226. GLIB_AVAILABLE_IN_ALL
  227. void g_dbus_annotation_info_unref (GDBusAnnotationInfo *info);
  228. /**
  229. * G_TYPE_DBUS_NODE_INFO:
  230. *
  231. * The #GType for a boxed type holding a #GDBusNodeInfo.
  232. *
  233. * Since: 2.26
  234. */
  235. #define G_TYPE_DBUS_NODE_INFO (g_dbus_node_info_get_type ())
  236. /**
  237. * G_TYPE_DBUS_INTERFACE_INFO:
  238. *
  239. * The #GType for a boxed type holding a #GDBusInterfaceInfo.
  240. *
  241. * Since: 2.26
  242. */
  243. #define G_TYPE_DBUS_INTERFACE_INFO (g_dbus_interface_info_get_type ())
  244. /**
  245. * G_TYPE_DBUS_METHOD_INFO:
  246. *
  247. * The #GType for a boxed type holding a #GDBusMethodInfo.
  248. *
  249. * Since: 2.26
  250. */
  251. #define G_TYPE_DBUS_METHOD_INFO (g_dbus_method_info_get_type ())
  252. /**
  253. * G_TYPE_DBUS_SIGNAL_INFO:
  254. *
  255. * The #GType for a boxed type holding a #GDBusSignalInfo.
  256. *
  257. * Since: 2.26
  258. */
  259. #define G_TYPE_DBUS_SIGNAL_INFO (g_dbus_signal_info_get_type ())
  260. /**
  261. * G_TYPE_DBUS_PROPERTY_INFO:
  262. *
  263. * The #GType for a boxed type holding a #GDBusPropertyInfo.
  264. *
  265. * Since: 2.26
  266. */
  267. #define G_TYPE_DBUS_PROPERTY_INFO (g_dbus_property_info_get_type ())
  268. /**
  269. * G_TYPE_DBUS_ARG_INFO:
  270. *
  271. * The #GType for a boxed type holding a #GDBusArgInfo.
  272. *
  273. * Since: 2.26
  274. */
  275. #define G_TYPE_DBUS_ARG_INFO (g_dbus_arg_info_get_type ())
  276. /**
  277. * G_TYPE_DBUS_ANNOTATION_INFO:
  278. *
  279. * The #GType for a boxed type holding a #GDBusAnnotationInfo.
  280. *
  281. * Since: 2.26
  282. */
  283. #define G_TYPE_DBUS_ANNOTATION_INFO (g_dbus_annotation_info_get_type ())
  284. GLIB_AVAILABLE_IN_ALL
  285. GType g_dbus_node_info_get_type (void) G_GNUC_CONST;
  286. GLIB_AVAILABLE_IN_ALL
  287. GType g_dbus_interface_info_get_type (void) G_GNUC_CONST;
  288. GLIB_AVAILABLE_IN_ALL
  289. GType g_dbus_method_info_get_type (void) G_GNUC_CONST;
  290. GLIB_AVAILABLE_IN_ALL
  291. GType g_dbus_signal_info_get_type (void) G_GNUC_CONST;
  292. GLIB_AVAILABLE_IN_ALL
  293. GType g_dbus_property_info_get_type (void) G_GNUC_CONST;
  294. GLIB_AVAILABLE_IN_ALL
  295. GType g_dbus_arg_info_get_type (void) G_GNUC_CONST;
  296. GLIB_AVAILABLE_IN_ALL
  297. GType g_dbus_annotation_info_get_type (void) G_GNUC_CONST;
  298. G_END_DECLS
  299. #endif /* __G_DBUS_INTROSPECTION_H__ */