2e4b0565f2e67998ab8b7f32f19f637834314891
[modest] / src / modest-tny-account.h
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 /*
31  * TnyAccount Decorator
32  */
33
34 #ifndef __MODEST_TNY_ACCOUNT_H__
35 #define __MODEST_TNY_ACCOUNT_H__
36
37 #include <tny-account.h>
38 #include <tny-folder.h>
39 #include <modest-account-mgr.h>
40 #include <modest-local-folder-info.h>
41 #include <tny-session-camel.h>
42
43 G_BEGIN_DECLS
44
45 /**
46  * modest_tny_account_new_from_account:
47  * @account_mgr: a valid account mgr instance
48  * @account_name: the modest account name for which to create a corresponding tny account of the given type.
49  * @type: the type of account to create (TNY_ACCOUNT_TYPE_STORE or TNY_ACCOUNT_TYPE_TRANSPORT)
50  * @session: a tny camel session
51  * @get_pass_func: the get-password function
52  * @forget_pass_func: the forget-password function
53  * 
54  * get a tnyaccount corresponding to the server_accounts (store or transport) for this account.
55  * NOTE: this function does not set the camel session or the get/forget password functions
56  * 
57  * Returns: a new TnyAccount or NULL in case of error.
58  */
59 TnyAccount*
60 modest_tny_account_new_from_account (ModestAccountMgr *account_mgr, const gchar *account_name,
61                                      TnyAccountType type,
62                                      TnySessionCamel *session,
63                                      TnyGetPassFunc get_pass_func,
64                                      TnyForgetPassFunc forget_pass_func);
65
66
67 /**
68  * modest_tny_account_new_for_local_folders:
69  * @account_mgr: a valid account mgr instance
70  * @session: a tny camel session
71  * @location_filepath: The location at which the local-folders directory exists, or NULL to specify $HOME.
72  * 
73  * get the local folders (pseudo) account; you should only need one such account.
74  * 
75  * Returns: a new local folders TnyAccount or NULL in case of error.
76  */
77 TnyAccount* modest_tny_account_new_for_local_folders (ModestAccountMgr *account_mgr,
78                                                       TnySessionCamel *session,
79                                                       const gchar* location_filepath);
80
81 /**
82  * modest_tny_account_new_for_per_account_local_outbox_folder:
83  * @account_mgr: a valid account mgr instance
84  * @account_name: a modest account name.
85  * @session: a tny camel session
86  * 
87  * get the per-account local outbox folder (pseudo) account.
88  * 
89  * Returns: a new per-account local outbox folder TnyAccount or NULL in case of error.
90  */
91 TnyAccount* modest_tny_account_new_for_per_account_local_outbox_folder (
92         ModestAccountMgr *account_mgr, const gchar* account_name,
93         TnySessionCamel *session);
94
95 /**
96  * modest_tny_account_new_from_server_account_name:
97  * @account_mgr: a valid account mgr instance
98  * @server_account_name: the name of a server account in the configuration system.
99  *
100  * Returns: a new TnyAccount or NULL in case of error.
101  */
102 TnyAccount*
103 modest_tny_account_new_from_server_account_name (ModestAccountMgr *account_mgr, 
104         const gchar* server_account_name);
105         
106 /**
107  * modest_tny_account_get_special_folder:
108  * @self: a TnyAccount
109  * @special_type: the special folder to get
110  * 
111  * get the special (Inbox,Outbox,Sent,Draft etc.) folder for this server account's parent modest account.
112  * Note: currently, the implementation will always return a local folder for this.
113  * This can be changed later to return really account-specific special folders,
114  * such as (for example) server-side Sent/Junk mail for IMAP accounts 
115  * 
116  * Returns: the tny folder corresponding to this special folder, or NULL in case
117  * of error, or if the special folder does not exist for this account
118  */
119 TnyFolder*    modest_tny_account_get_special_folder   (TnyAccount *self,
120                                                        TnyFolderType special_type);
121
122
123 /**
124  * modest_tny_folder_store_get_folder_count:
125  * @self: a #TnyFolderStore
126  * 
127  * gets the number of folders of the account
128  * 
129  * Returns: the number of folder, or -1 in case of error
130  **/
131 gint          modest_tny_folder_store_get_folder_count  (TnyFolderStore *self);
132
133 /**
134  * modest_tny_folder_store_get_message_count:
135  * @self: 
136  * 
137  * gets the number of messages in the account
138  * 
139  * Returns: the number of messages, or -1 in case of error
140  **/
141 gint          modest_tny_folder_store_get_message_count (TnyFolderStore *self);
142
143 /**
144  * modest_tny_folder_store_get_local_size:
145  * @self: 
146  * 
147  * gets the total size occupied by the account in the local storage
148  * device
149  * 
150  * Returns: the total size in bytes, or -1 in case of error
151  **/
152 gint          modest_tny_folder_store_get_local_size    (TnyFolderStore *self);
153
154 /** modest_tny_account_get_parent_modest_account_name_for_server_account:
155  * Get the name of the parent modest account of which the server account is a part.
156  */
157 const gchar* modest_tny_account_get_parent_modest_account_name_for_server_account (TnyAccount *self);
158
159 /** modest_tny_account_set_parent_modest_account_name_for_server_account:
160  * Set the name of the parent modest account of which the server account is a part,
161  * so it can be retrieved later with 
162  * modest_tny_account_get_parent_modest_account_name_for_server_account().
163  */
164 void modest_tny_account_set_parent_modest_account_name_for_server_account (TnyAccount *self, const gchar* parent_modest_acount_name);
165
166 G_END_DECLS
167
168 #endif /* __MODEST_TNY_ACCOUNT_H__*/