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