* Added support to asynchronously update an account
[modest] / tests / update-account.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 <glib.h>
31 #include <string.h>
32
33 #include <tny-list.h>
34 #include <tny-iterator.h>
35 #include <tny-simple-list.h>
36 #include <tny-account-store.h>
37 #include <tny-store-account.h>
38 #include <tny-folder.h>
39 #include <tny-folder-store.h>
40 #include <modest-tny-platform-factory.h>
41
42
43 #include <modest-account-mgr.h>
44 #include <modest-mail-operation.h>
45
46 GMainLoop *main_loop;
47
48 static void
49 update_cb (ModestMailOperation *mail_op, gpointer user_data)
50 {
51         g_object_unref (G_OBJECT (mail_op));
52         g_main_loop_quit (main_loop);
53 }
54
55 static void
56 progress_cb (ModestMailOperation *mail_op, gpointer user_data)
57 {
58         g_print ("Refreshed %d of %d\n", 
59                  modest_mail_operation_get_task_done  (mail_op), 
60                  modest_mail_operation_get_task_total (mail_op));
61 }
62
63 static gboolean
64 func (gpointer_data) 
65 {
66         TnyStoreAccount *account;
67         TnyIterator *iter;
68         TnyPlatformFactory *fact = NULL;
69         ModestAccountMgr *acc_mgr = NULL;
70         ModestMailOperation *mail_op = NULL;
71         TnyAccountStore *account_store = NULL;
72         TnyList *accounts;
73
74         fact = TNY_PLATFORM_FACTORY (modest_tny_platform_factory_get_instance ());
75         acc_mgr = MODEST_ACCOUNT_MGR (modest_tny_platform_factory_get_modest_account_mgr_instance (fact));
76         account_store = tny_platform_factory_new_account_store (fact);  
77
78         /* Get accounts */
79         accounts = tny_simple_list_new ();
80
81         tny_account_store_get_accounts (account_store, accounts,
82                                         TNY_ACCOUNT_STORE_STORE_ACCOUNTS);
83     
84         iter = tny_list_create_iterator (accounts);
85         account = TNY_STORE_ACCOUNT (tny_iterator_get_current (iter));
86
87         g_object_unref (G_OBJECT (iter));
88         g_object_unref (G_OBJECT (accounts));
89
90         mail_op = modest_mail_operation_new ();
91         
92         g_signal_connect (G_OBJECT (mail_op), "progress_changed", 
93                           G_CALLBACK (progress_cb), NULL);
94         modest_mail_operation_update_account (mail_op, account, update_cb, NULL);
95
96         return FALSE;
97 }
98
99 int
100 main (int argc, char **argv)
101 {   
102         guint id;
103
104         g_type_init ();
105         g_thread_init(NULL);
106
107         main_loop = g_main_loop_new (NULL, FALSE);
108         id = g_timeout_add(1000, func, main_loop);
109         g_main_loop_run(main_loop);
110
111         return 0;
112 }