Remove libogs dependency in fremantle (fixes NB#108071)
[modest] / src / modest-plugin.h
1 /* Copyright (c) 2008, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29 #ifndef __MODEST_PLUGIN_H__
30 #define __MODEST_PLUGIN_H__
31
32 #include <glib-object.h>
33 #include <glib/gi18n.h>
34 #include <modest-account-mgr.h>
35 #include <modest-protocol-registry.h>
36
37 #define MODEST_API_VERSION_STR2_HELPER(x) #x
38 #define MODEST_API_VERSION_STR_HELPER(x) MODEST_API_VERSION_STR2_HELPER(x)
39 #define MODEST_API_VERSION_STR MODEST_API_VERSION_STR_HELPER(MODEST_API_VERSION)
40
41 G_BEGIN_DECLS
42
43 /* convenience macros */
44 #define MODEST_TYPE_PLUGIN             (modest_plugin_get_type())
45 #define MODEST_PLUGIN(obj)             (G_TYPE_CHECK_INSTANCE_CAST((obj),MODEST_TYPE_PLUGIN,ModestPlugin))
46 #define MODEST_PLUGIN_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST((klass),MODEST_TYPE_PLUGIN,ModestPluginClass))
47 #define MODEST_IS_PLUGIN(obj)          (G_TYPE_CHECK_INSTANCE_TYPE((obj),MODEST_TYPE_PLUGIN))
48 #define MODEST_IS_PLUGIN_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE((klass),MODEST_TYPE_PLUGIN))
49 #define MODEST_PLUGIN_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS((obj),MODEST_TYPE_PLUGIN,ModestPluginClass))
50
51 typedef struct _ModestPlugin      ModestPlugin;
52 typedef struct _ModestPluginClass ModestPluginClass;
53
54 struct _ModestPlugin {
55         GObject parent;
56 };
57
58 struct _ModestPluginClass {
59         GObjectClass parent_class;
60         const gchar * (*get_version) (void);
61 };
62
63 /**
64  * modest_plugin_get_type:
65  *
66  * Returns: GType of the account store
67  */
68 GType  modest_plugin_get_type   (void) G_GNUC_CONST;
69
70 #define MODEST_PLUGIN_REGISTER_TYPE(PluginName, plugin_name)                    \
71                                                                                 \
72 static GType plugin_name##_type = 0;                                            \
73                                                                                 \
74 GType                                                                           \
75 plugin_name##_get_type (void)                                                   \
76 {                                                                               \
77         return plugin_name##_type;                                              \
78 }                                                                               \
79                                                                                 \
80 static void     plugin_name##_init              (PluginName        *self);      \
81 static void     plugin_name##_class_init        (PluginName##Class *klass);     \
82 static gpointer plugin_name##_parent_class = NULL;                              \
83 static const gchar *plugin_name##_internal_get_version (void)                   \
84 {                                                                               \
85         return MODEST_API_VERSION_STR;                                          \
86 }                                                                               \
87 static void     plugin_name##_class_intern_init (gpointer klass)                \
88 {                                                                               \
89         plugin_name##_parent_class = g_type_class_peek_parent (klass);          \
90         plugin_name##_class_init ((PluginName##Class *) klass);                 \
91         ((ModestPluginClass *)klass)->get_version = plugin_name##_internal_get_version; \
92 }                                                                               \
93                                                                                 \
94 G_MODULE_EXPORT GType                                                           \
95 register_modest_plugin (GTypeModule *module)                                    \
96 {                                                                               \
97         static const GTypeInfo our_info =                                       \
98         {                                                                       \
99                 sizeof (PluginName##Class),                                     \
100                 NULL, /* base_init */                                           \
101                 NULL, /* base_finalize */                                       \
102                 (GClassInitFunc) plugin_name##_class_intern_init,               \
103                 NULL,                                                           \
104                 NULL, /* class_data */                                          \
105                 sizeof (PluginName),                                            \
106                 0, /* n_preallocs */                                            \
107                 (GInstanceInitFunc) plugin_name##_init                          \
108         };                                                                      \
109                                                                                 \
110                                                                                 \
111         plugin_name##_type = g_type_module_register_type (module,               \
112                                             MODEST_TYPE_PLUGIN,                 \
113                                             #PluginName,                        \
114                                             &our_info,                          \
115                                             0);                                 \
116                                                                                 \
117         return plugin_name##_type;                                              \
118 }
119
120 /* Global methods providing access to singletons without using modest runtime */
121 ModestAccountMgr *modest_plugin_get_account_mgr (void);
122 ModestProtocolRegistry *modest_plugin_get_protocol_registry (void);
123 const gchar *modest_plugin_get_api_version (ModestPlugin *plugin);
124
125 G_END_DECLS
126
127 #endif /* __MODEST_PLUGIN_H__ */