aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-local-folder.c
blob: 73ae6734da2541d24751c359ef86d31e0d79a843 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* e-local-folder.c
 *
 * Copyright (C) 2000  Helix Code, Inc.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public
 * License along with this program; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 * Author: Ettore Perazzoli
 */

/* The metafile goes like this:

   <?xml version="1.0"?>
   <efolder>
           <type>mail</type>
       <description>This is the folder where I store mail from my gf</description>
       <homepage>http://www.somewhere.net</homepage>
   </efolder>

   FIXME: Do we want to use a namespace for this?
   FIXME: Do we want to have an internationalized description?
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <string.h>
#include <unistd.h>

#include <gnome-xml/parser.h>
#include <gnome-xml/xmlmemory.h>

#include <libgnome/gnome-defs.h>
#include <libgnome/gnome-util.h>
#include <gal/util/e-util.h>
#include <gal/util/e-xml-utils.h>

#include <libgnome/gnome-util.h>

#include "e-local-folder.h"


#define PARENT_TYPE E_TYPE_FOLDER
static EFolderClass *parent_class = NULL;

#define URI_PREFIX     "file://"
#define URI_PREFIX_LEN 7

struct _ELocalFolderPrivate {
    int dummy;
};


static char *
get_string_value (xmlNode *node,
          const char *name)
{
    xmlNode *p;
    xmlChar *xml_string;
    char *retval;

    p = e_xml_get_child_by_name (node, (xmlChar *) name);
    if (p == NULL)
        return NULL;

    p = e_xml_get_child_by_name (p, (xmlChar *) "text");
    if (p == NULL)
        return NULL;

    xml_string = xmlNodeListGetString (node->doc, p, 1);
    retval = g_strdup ((char *) xml_string);
    xmlFree (xml_string);

    return retval;
}

static gboolean
construct_loading_metadata (ELocalFolder *local_folder,
                const char *path)
{
    EFolder *folder;
    xmlDoc *doc;
    xmlNode *root;
    char *type;
    char *description;
    char *metadata_path;
    char *physical_uri;

    folder = E_FOLDER (local_folder);

    metadata_path = g_concat_dir_and_file (path, E_LOCAL_FOLDER_METADATA_FILE_NAME);

    doc = xmlParseFile (metadata_path);
    if (doc == NULL) {
        g_free (metadata_path);
        return FALSE;
    }

    root = xmlDocGetRootElement (doc);
    if (root == NULL || strcmp (root->name, "efolder") != 0) {
        g_free (metadata_path);
        xmlFreeDoc (doc);
        return FALSE;
    }

    type = get_string_value (root, "type");
    description = get_string_value (root, "description");

    e_folder_construct (folder, g_basename (path), type, description);

    g_free (type);
    g_free (description);

    xmlFreeDoc (doc);

    physical_uri = g_strconcat (URI_PREFIX, path, NULL);
    e_folder_set_physical_uri (folder, physical_uri);
    g_free (physical_uri);

    g_free (metadata_path);

    return TRUE;
}

static gboolean
save_metadata (ELocalFolder *local_folder)
{
    EFolder *folder;
    xmlDoc *doc;
    xmlNode *root;
    const char *physical_directory;
    char *physical_path;

    folder = E_FOLDER (local_folder);

    doc = xmlNewDoc ((xmlChar *) "1.0");
    root = xmlNewDocNode (doc, NULL, (xmlChar *) "efolder", NULL);
    xmlDocSetRootElement (doc, root);

    xmlNewChild (root, NULL, (xmlChar *) "type",
             (xmlChar *) e_folder_get_type_string (folder));

    if (e_folder_get_description (folder) != NULL)
        xmlNewChild (root, NULL, (xmlChar *) "description",
                 (xmlChar *) e_folder_get_description (folder));

    physical_directory = e_folder_get_physical_uri (folder) + URI_PREFIX_LEN - 1;
    physical_path = g_concat_dir_and_file (physical_directory, E_LOCAL_FOLDER_METADATA_FILE_NAME);

    if (xmlSaveFile (physical_path, doc) < 0) {
        unlink (physical_path);
        g_free (physical_path);
        xmlFreeDoc (doc);
        return FALSE;
    }

    g_free (physical_path);

    xmlFreeDoc (doc);
    return TRUE;
}


/* GtkObject methods.  */

static void
destroy (GtkObject *object)
{
    /* No ELocalFolder-specific data to free.  */

    (* GTK_OBJECT_CLASS (parent_class)->destroy) (object);
}


static void
class_init (ELocalFolderClass *klass)
{
    GtkObjectClass *object_class;

    parent_class = gtk_type_class (e_folder_get_type ());

    object_class = GTK_OBJECT_CLASS (klass);
    object_class->destroy = destroy;
}

static void
init (ELocalFolder *local_folder)
{
}


void
e_local_folder_construct (ELocalFolder *local_folder,
              const char *name,
              const char *type,
              const char *description)
{
    g_return_if_fail (local_folder != NULL);
    g_return_if_fail (E_IS_LOCAL_FOLDER (local_folder));
    g_return_if_fail (name != NULL);
    g_return_if_fail (type != NULL);

    e_folder_construct (E_FOLDER (local_folder), name, type, description);
}

EFolder *
e_local_folder_new (const char *name,
            const char *type,
            const char *description)
{
    ELocalFolder *local_folder;

    g_return_val_if_fail (name != NULL, NULL);
    g_return_val_if_fail (type != NULL, NULL);

    local_folder = gtk_type_new (e_local_folder_get_type ());

    e_local_folder_construct (local_folder, name, type, description);

    return E_FOLDER (local_folder);
}

EFolder *
e_local_folder_new_from_path (const char *path)
{
    EFolder *folder;

    g_return_val_if_fail (g_path_is_absolute (path), NULL);

    folder = gtk_type_new (e_local_folder_get_type ());

    if (! construct_loading_metadata (E_LOCAL_FOLDER (folder), path)) {
        gtk_object_unref (GTK_OBJECT (folder));
        return NULL;
    }

    return folder;
}

gboolean
e_local_folder_save (ELocalFolder *local_folder)
{
    g_return_val_if_fail (local_folder != NULL, FALSE);
    g_return_val_if_fail (E_IS_LOCAL_FOLDER (local_folder), FALSE);
    g_return_val_if_fail (e_folder_get_physical_uri (E_FOLDER (local_folder)) != NULL, FALSE);

    return save_metadata (local_folder);
}


E_MAKE_TYPE (e_local_folder, "ELocalFolder", ELocalFolder, class_init, init, PARENT_TYPE)