* update for tinymail changes
[modest] / src / modest-tny-platform-factory.c
1 /* Copyright (c) 2006, 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
30 /* modest-tny-platform-factory.c */
31 #include <config.h>
32
33 #include <modest-runtime.h>
34 #include <modest-platform.h>
35
36 #include <tny-camel-header.h>
37 #include <tny-camel-mime-part.h>
38 #include <tny-camel-msg.h>
39
40 #include "modest-tny-platform-factory.h"
41 #include "modest-tny-account-store.h"
42
43 /* 'private'/'protected' functions */
44 static void modest_tny_platform_factory_class_init (ModestTnyPlatformFactoryClass *klass);
45 static void modest_tny_platform_factory_init       (ModestTnyPlatformFactory *obj);
46 static void modest_tny_platform_factory_finalize   (GObject *obj);
47 static GObject *modest_tny_platform_factory_constructor (GType type, guint n_construct_params,
48                                                          GObjectConstructParam *construct_params);
49 static void tny_platform_factory_init (gpointer g, gpointer iface_data);
50
51 static TnyAccountStore* modest_tny_platform_factory_new_account_store (TnyPlatformFactory *self);
52 static TnyDevice*       modest_tny_platform_factory_new_device        (TnyPlatformFactory *self);
53 static TnyMsgView*      modest_tny_platform_factory_new_msg_view      (TnyPlatformFactory *self);
54 static TnyMsg*          modest_tny_platform_factory_new_msg           (TnyPlatformFactory *self);
55 static TnyMimePart*     modest_tny_platform_factory_new_mime_part     (TnyPlatformFactory *self);
56
57 /* list my signals  */
58 enum {
59         /* MY_SIGNAL_1, */
60         /* MY_SIGNAL_2, */
61         LAST_SIGNAL
62 };
63
64 typedef struct _ModestTnyPlatformFactoryPrivate ModestTnyPlatformFactoryPrivate;
65 struct _ModestTnyPlatformFactoryPrivate {};
66
67 #define MODEST_TNY_PLATFORM_FACTORY_GET_PRIVATE(o)      (G_TYPE_INSTANCE_GET_PRIVATE((o), \
68                                                          MODEST_TYPE_TNY_PLATFORM_FACTORY, \
69                                                          ModestTnyPlatformFactoryPrivate))
70 /* globals */
71 static GObjectClass *parent_class = NULL;
72 static ModestTnyPlatformFactory *singleton = NULL;
73
74 GType
75 modest_tny_platform_factory_get_type (void)
76 {
77         static GType my_type = 0;
78         if (!my_type) {
79                 static const GTypeInfo my_info = {
80                         sizeof(ModestTnyPlatformFactoryClass),
81                         NULL,           /* base init */
82                         NULL,           /* base finalize */
83                         (GClassInitFunc) modest_tny_platform_factory_class_init,
84                         NULL,           /* class finalize */
85                         NULL,           /* class data */
86                         sizeof(ModestTnyPlatformFactory),
87                         1,              /* n_preallocs */
88                         (GInstanceInitFunc) modest_tny_platform_factory_init,
89                         NULL
90                 };
91
92                 static const GInterfaceInfo tny_platform_factory_info = {
93                         (GInterfaceInitFunc) tny_platform_factory_init, /* interface_init */
94                         NULL,         /* interface_finalize */
95                         NULL          /* interface_data */
96                 };
97
98                 my_type = g_type_register_static (G_TYPE_OBJECT,
99                                                   "ModestTnyPlatformFactory",
100                                                   &my_info, 0);
101
102                 g_type_add_interface_static (my_type, TNY_TYPE_PLATFORM_FACTORY, 
103                                              &tny_platform_factory_info);
104         }
105         return my_type;
106 }
107
108 static void
109 modest_tny_platform_factory_class_init (ModestTnyPlatformFactoryClass *klass)
110 {
111         GObjectClass *gobject_class;
112
113         gobject_class = (GObjectClass*) klass;
114         parent_class            = g_type_class_peek_parent (klass);
115
116         gobject_class->finalize = modest_tny_platform_factory_finalize;
117         gobject_class->constructor = modest_tny_platform_factory_constructor;
118
119         g_type_class_add_private (gobject_class, sizeof(ModestTnyPlatformFactoryPrivate));
120 }
121
122 static void
123 modest_tny_platform_factory_init (ModestTnyPlatformFactory *obj)
124 {
125         /* empty */
126 }
127
128 static GObject*
129 modest_tny_platform_factory_constructor (GType type, guint n_construct_params,
130                                          GObjectConstructParam *construct_params)
131 {
132         GObject *object;
133
134         if (!singleton) {
135                 object = G_OBJECT_CLASS (parent_class)->constructor (type,
136                                 n_construct_params, construct_params);
137
138                 singleton = MODEST_TNY_PLATFORM_FACTORY (object);
139         } else {
140                 object = G_OBJECT (singleton);
141                 g_object_freeze_notify (G_OBJECT (singleton));
142         }
143
144         return object;
145 }
146
147 static void
148 modest_tny_platform_factory_finalize (GObject *obj)
149 {
150         G_OBJECT_CLASS(parent_class)->finalize (obj);
151 }
152
153 static void
154 tny_platform_factory_init (gpointer g, gpointer iface_data)
155 {
156         TnyPlatformFactoryIface *klass = (TnyPlatformFactoryIface *)g;
157
158         klass->new_account_store_func = modest_tny_platform_factory_new_account_store;
159         klass->new_device_func        = modest_tny_platform_factory_new_device;
160         klass->new_msg_view_func      = modest_tny_platform_factory_new_msg_view;
161         klass->new_msg_func           = modest_tny_platform_factory_new_msg;
162         klass->new_mime_part_func     = modest_tny_platform_factory_new_mime_part;
163         return;
164 }
165
166 TnyPlatformFactory *
167 modest_tny_platform_factory_get_instance (void)
168 {
169         ModestTnyPlatformFactory *self = g_object_new (MODEST_TYPE_TNY_PLATFORM_FACTORY, NULL);
170
171         return TNY_PLATFORM_FACTORY (self);
172 }
173
174 static TnyAccountStore *
175 modest_tny_platform_factory_new_account_store (TnyPlatformFactory *self)
176 {
177         return TNY_ACCOUNT_STORE(modest_tny_account_store_new
178                                  (modest_runtime_get_account_mgr(),
179                                   modest_runtime_get_device()));
180 }
181
182 static TnyDevice *
183 modest_tny_platform_factory_new_device (TnyPlatformFactory *self)
184 {
185         return modest_platform_get_new_device ();
186 }
187
188 static TnyMsgView*
189 modest_tny_platform_factory_new_msg_view (TnyPlatformFactory *self)
190 {
191         /* TODO */
192         return NULL;
193 }
194
195 static TnyMsg*
196 modest_tny_platform_factory_new_msg (TnyPlatformFactory *self)
197 {
198         return tny_camel_msg_new ();
199 }
200
201
202 static TnyMimePart*
203 modest_tny_platform_factory_new_mime_part (TnyPlatformFactory *self)
204 {
205         return tny_camel_mime_part_new ();
206 }
207
208