Better addresses split (fixes NB#98684).
[modest] / src / modest-default-connection-policy.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 #include <config.h>
31 #include <glib.h>
32
33 #include "modest-default-connection-policy.h"
34 #include "modest-account-mgr-helpers.h"
35 #include "modest-runtime.h"
36 #include <tny-account.h>
37 #include <tny-store-account.h>
38
39 static GObjectClass *parent_class = NULL;
40
41 static void
42 modest_default_connection_policy_set_current (TnyConnectionPolicy *self, TnyAccount *account, TnyFolder *folder)
43 {
44         return;
45 }
46
47 static void
48 modest_default_connection_policy_on_connect (TnyConnectionPolicy *self, TnyAccount *account)
49 {
50         /* Set the username as succedded */
51         if (TNY_IS_STORE_ACCOUNT (account))
52                 modest_account_mgr_set_server_account_username_has_succeeded (modest_runtime_get_account_mgr (), 
53                                                                               tny_account_get_id (account), 
54                                                                               TRUE);
55
56         return;
57 }
58
59 static void
60 modest_default_connection_policy_on_connection_broken (TnyConnectionPolicy *self, TnyAccount *account)
61 {
62         return;
63 }
64
65 static void
66 modest_default_connection_policy_on_disconnect (TnyConnectionPolicy *self, TnyAccount *account)
67 {
68         return;
69 }
70
71 static void
72 modest_default_connection_policy_finalize (GObject *object)
73 {
74         parent_class->finalize (object);
75 }
76
77 static void
78 modest_default_connection_policy_instance_init (GTypeInstance *instance, gpointer g_class)
79 {
80 }
81
82 static void
83 tny_connection_policy_init (TnyConnectionPolicyIface *klass)
84 {
85         klass->on_connect= modest_default_connection_policy_on_connect;
86         klass->on_connection_broken= modest_default_connection_policy_on_connection_broken;
87         klass->on_disconnect= modest_default_connection_policy_on_disconnect;
88         klass->set_current= modest_default_connection_policy_set_current;
89 }
90
91 static void
92 modest_default_connection_policy_class_init (ModestDefaultConnectionPolicyClass *klass)
93 {
94         GObjectClass *object_class;
95
96         parent_class = g_type_class_peek_parent (klass);
97         object_class = (GObjectClass*) klass;
98         object_class->finalize = modest_default_connection_policy_finalize;
99 }
100
101
102
103 /**
104  * modest_default_connection_policy_new:
105  * 
106  * A connection policy
107  *
108  * Return value: A new #TnyConnectionPolicy instance 
109  **/
110 TnyConnectionPolicy*
111 modest_default_connection_policy_new (void)
112 {
113         return TNY_CONNECTION_POLICY (g_object_new (MODEST_TYPE_DEFAULT_CONNECTION_POLICY, NULL));
114 }
115
116 GType
117 modest_default_connection_policy_get_type (void)
118 {
119         static GType type = 0;
120         if (G_UNLIKELY(type == 0))
121         {
122                 static const GTypeInfo info = 
123                 {
124                         sizeof (ModestDefaultConnectionPolicyClass),
125                         NULL,   /* base_init */
126                         NULL,   /* base_finalize */
127                         (GClassInitFunc) modest_default_connection_policy_class_init,   /* class_init */
128                         NULL,   /* class_finalize */
129                         NULL,   /* class_data */
130                         sizeof (ModestDefaultConnectionPolicy),
131                         0,      /* n_preallocs */
132                         modest_default_connection_policy_instance_init,    /* instance_init */
133                         NULL
134                 };
135
136
137                 static const GInterfaceInfo tny_connection_policy_info = 
138                 {
139                         (GInterfaceInitFunc) tny_connection_policy_init, /* interface_init */
140                         NULL,         /* interface_finalize */
141                         NULL          /* interface_data */
142                 };
143
144                 type = g_type_register_static (G_TYPE_OBJECT,
145                         "ModestDefaultConnectionPolicy",
146                         &info, 0);
147
148                 g_type_add_interface_static (type, TNY_TYPE_CONNECTION_POLICY,
149                         &tny_connection_policy_info);
150
151         }
152         return type;
153 }