1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
/* nih-dbus-tool
*
* Copyright © 2009 Scott James Remnant <scott@netsplit.com>.
* Copyright © 2009 Canonical Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2, as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef NIH_DBUS_TOOL_METHOD_H
#define NIH_DBUS_TOOL_METHOD_H
#include <expat.h>
#include <nih/macros.h>
#include <nih/list.h>
#include "interface.h"
#include "argument.h"
/**
* Method:
* @entry: list header,
* @name: D-Bus name of method,
* @symbol: name used when constructing C name,
* @deprecated: whether this method is deprecated,
* @async: whether the object implementation should be asynchronous,
* @no_reply: TRUE if no reply should be expected or generated,
* @arguments: arguments accepted by the method.
*
* D-Bus interfaces specify zero or more methods, which are selected by
* @name over the bus and may have zero or more @arguments.
*
* When generating the C symbol names @symbol will be used. If @symbol
* is NULL, @name will be converted into the usual C lowercase and underscore
* style and used instead.
**/
typedef struct method {
NihList entry;
char * name;
char * symbol;
int deprecated;
int async;
int no_reply;
NihList arguments;
} Method;
NIH_BEGIN_EXTERN
int method_name_valid (const char *name);
Method * method_new (const void *parent, const char *name)
__attribute__ ((warn_unused_result, malloc));
int method_start_tag (XML_Parser xmlp, const char *tag,
char * const *attr)
__attribute__ ((warn_unused_result));
int method_end_tag (XML_Parser xmlp, const char *tag)
__attribute__ ((warn_unused_result));
int method_annotation (Method *method,
const char *name, const char *value)
__attribute__ ((warn_unused_result));
Method * method_lookup (Interface *interface,
const char *symbol);
Argument *method_lookup_argument (Method *method, const char *symbol);
char * method_object_function (const void *parent, const char *prefix,
Interface *interface, Method *method,
NihList *prototypes, NihList *handlers,
NihList *structs)
__attribute__ ((warn_unused_result, malloc));
char * method_reply_function (const void *parent, const char *prefix,
Interface *interface, Method *method,
NihList *prototypes, NihList *structs)
__attribute__ ((warn_unused_result, malloc));
char * method_proxy_function (const void *parent, const char *prefix,
Interface *interface, Method *method,
NihList *prototypes, NihList *structs)
__attribute__ ((warn_unused_result, malloc));
char * method_proxy_notify_function (const void *parent, const char *prefix,
Interface *interface, Method *method,
NihList *prototypes, NihList *typedefs,
NihList *structs)
__attribute__ ((warn_unused_result, malloc));
char * method_proxy_sync_function (const void *parent, const char *prefix,
Interface *interface, Method *method,
NihList *prototypes, NihList *structs)
__attribute__ ((warn_unused_result, malloc));
char * method_args_array (const void *parent, const char *prefix,
Interface *interface, Method *method,
NihList *prototypes)
__attribute__ ((warn_unused_result, malloc));
NIH_END_EXTERN
#endif /* NIH_DBUS_TOOL_METHOD_H */
|