* fix some memory leaks (valgrind helps)
[modest] / src / modest-local-folder-info.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/gi18n.h>
31 #include <string.h> /* strcmp */
32 #include <modest-local-folder-info.h>
33 #include <stdio.h>
34
35 typedef struct {
36         TnyFolderType   type;
37         const gchar     *name;
38         const gchar     *display_name;
39 } ModestLocalFolder;
40
41 const ModestLocalFolder ModestLocalFolderMap[] = {
42         { TNY_FOLDER_TYPE_UNKNOWN,  "<unknown>",  N_("<Unknown>")},
43         { TNY_FOLDER_TYPE_NORMAL,   "<normal>",   N_("<Normal>")},
44         { TNY_FOLDER_TYPE_INBOX,    "inbox",      N_("mcen_me_folder_inbox")},
45         { TNY_FOLDER_TYPE_OUTBOX,   "outbox",     N_("mcen_me_folder_outbox")},
46         { TNY_FOLDER_TYPE_TRASH,    "trash",      N_("Trash")},
47         { TNY_FOLDER_TYPE_JUNK,     "junk",       N_("Junk")},
48         { TNY_FOLDER_TYPE_SENT,     "sent",       N_("mcen_me_folder_sent")},
49         { TNY_FOLDER_TYPE_ROOT,     "<root>",     N_("<root>")},
50         { TNY_FOLDER_TYPE_NOTES,    "notes",      N_("Notes")},
51         { TNY_FOLDER_TYPE_DRAFTS,   "drafts",     N_("mcen_me_folder_drafts")},
52 /* TODO: Do we want these? If so, they need a type ID: 
53  *      { TNY_FOLDER_TYPE_OUTBOX,   "contacts",   N_("Contacts")},
54         { TNY_FOLDER_TYPE_OUTBOX,   "calendar",   N_("Calendar")},
55 */
56         { TNY_FOLDER_TYPE_ARCHIVE,  "archive",    N_("Archive")}
57 };
58
59
60 TnyFolderType
61 modest_local_folder_info_get_type (const gchar *name)
62 {
63         int i;
64         g_return_val_if_fail (name, TNY_FOLDER_TYPE_UNKNOWN);
65
66         for (i = 0; i != G_N_ELEMENTS(ModestLocalFolderMap); ++i) {
67                 if (strcmp (ModestLocalFolderMap[i].name, name) == 0)
68                         return ModestLocalFolderMap[i].type;
69         }
70         return TNY_FOLDER_TYPE_UNKNOWN;
71 }
72
73
74 const gchar*
75 modest_local_folder_info_get_type_name (TnyFolderType type)
76 {
77         int i = 0;
78         g_return_val_if_fail (type >= TNY_FOLDER_TYPE_UNKNOWN &&
79                               type <  TNY_FOLDER_TYPE_NUM, NULL);
80         
81         for (i = 0; i != G_N_ELEMENTS(ModestLocalFolderMap); ++i) {
82                 if (ModestLocalFolderMap[i].type == type)
83                         return ModestLocalFolderMap[i].name;
84         }
85         return NULL;    
86 }
87
88 const gchar*
89 modest_local_folder_info_get_type_display_name (TnyFolderType type)
90 {
91         int i = 0;
92         g_return_val_if_fail (type >= TNY_FOLDER_TYPE_UNKNOWN &&
93                               type <  TNY_FOLDER_TYPE_NUM, NULL);
94         
95         /* Note that we call _() to get the localized name.
96          * This works because we used N_() on the static string when we initialized the array,
97          * to mark the string for translation.
98          */
99         for (i = 0; i != G_N_ELEMENTS(ModestLocalFolderMap); ++i) {
100                 if (ModestLocalFolderMap[i].type == type)
101                         return _(ModestLocalFolderMap[i].display_name);
102         }
103         return NULL;    
104 }
105
106
107 gchar *
108 modest_local_folder_info_get_maildir_path (const gchar* location_filepath)
109 {
110         return g_build_filename (location_filepath ? location_filepath : g_get_home_dir(),
111                                  MODEST_DIR,
112                                  MODEST_LOCAL_FOLDERS_MAILDIR, 
113                                  NULL);
114 }
115
116 gchar *modest_per_account_local_outbox_folder_info_get_maildir_path (const gchar* account_name)
117 {
118         /* This directory should contain an "outbox" child directory: */
119         return g_build_filename (g_get_home_dir(),
120                                  MODEST_DIR,
121                                  MODEST_PER_ACCOUNT_LOCAL_OUTBOX_FOLDERS_MAILDIR, 
122                                  account_name,
123                                  NULL);
124 }
125
126 gchar *modest_per_account_local_outbox_folder_info_get_maildir_path_to_outbox_folder (const gchar* account_name)
127 {
128         gchar *path_to_account_folder = 
129                 modest_per_account_local_outbox_folder_info_get_maildir_path(account_name);
130         if (!path_to_account_folder)
131                 return NULL;
132
133         gchar *path = g_build_filename (path_to_account_folder, "outbox", NULL);
134
135         g_free (path_to_account_folder);
136
137         return path;
138 }
139
140
141