aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/imap/camel-imap-summary.c
blob: ebdf8b98423279a32b53cc4aeab27110b0115050 (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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 *  Copyright (C) 2000 Helix Code Inc.
 *
 *  Authors:
 *    Michael Zucchi <notzed@helixcode.com>
 *    Dan Winship <danw@helixcode.com>
 *
 *  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
 */

#include "camel-imap-summary.h"
#include <camel/camel-mime-message.h>

#include <sys/stat.h>
#include <sys/uio.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>

#define CAMEL_IMAP_SUMMARY_VERSION (0x1000)

static int summary_header_load (CamelFolderSummary *, FILE *);
static int summary_header_save (CamelFolderSummary *, FILE *);

static void camel_imap_summary_class_init (CamelImapSummaryClass *klass);
static void camel_imap_summary_init       (CamelImapSummary *obj);

static CamelFolderSummaryClass *camel_imap_summary_parent;

CamelType
camel_imap_summary_get_type (void)
{
    static CamelType type = CAMEL_INVALID_TYPE;

    if (type == CAMEL_INVALID_TYPE) {
        type = camel_type_register(
            camel_folder_summary_get_type(), "CamelImapSummary",
            sizeof (CamelImapSummary),
            sizeof (CamelImapSummaryClass),
            (CamelObjectClassInitFunc) camel_imap_summary_class_init,
            NULL,
            (CamelObjectInitFunc) camel_imap_summary_init,
            NULL);
    }

    return type;
}

static void
camel_imap_summary_class_init (CamelImapSummaryClass *klass)
{
    CamelFolderSummaryClass *cfs_class = (CamelFolderSummaryClass *) klass;

    camel_imap_summary_parent = CAMEL_FOLDER_SUMMARY_CLASS (camel_type_get_global_classfuncs (camel_folder_summary_get_type()));

    cfs_class->summary_header_load = summary_header_load;
    cfs_class->summary_header_save = summary_header_save;
}

static void
camel_imap_summary_init (CamelImapSummary *obj)
{
    CamelFolderSummary *s = (CamelFolderSummary *)obj;

    /* subclasses need to set the right instance data sizes */
    s->message_info_size = sizeof(CamelImapMessageInfo);
    s->content_info_size = sizeof(CamelImapMessageContentInfo);

    /* and a unique file version */
    s->version += CAMEL_IMAP_SUMMARY_VERSION;
}

/**
 * camel_imap_summary_new:
 * @filename: the file to store the summary in.
 * @validity: the current UIDVALIDITY value of the folder
 *
 * This will create a new CamelImapSummary object and read in the
 * summary data from disk, if it exists and has the right UIDVALIDITY
 * value.
 *
 * Return value: A new CamelImapSummary object.
 **/
CamelFolderSummary *
camel_imap_summary_new (const char *filename, guint32 validity)
{
    CamelFolderSummary *summary = CAMEL_FOLDER_SUMMARY (
        camel_object_new (camel_imap_summary_get_type ()));
    CamelImapSummary *imap_summary = (CamelImapSummary *)summary;

    camel_folder_summary_set_build_content (summary, FALSE);
    camel_folder_summary_set_filename (summary, filename);

    if (camel_folder_summary_load (summary) == -1) {
        if (errno == ENOENT) {
            imap_summary->validity = validity;
            return summary;
        } else {
            camel_object_unref ((CamelObject *)summary);
            return NULL;
        }
    }
    if (imap_summary->validity != validity) {
        camel_folder_summary_clear (summary);
        imap_summary->validity = validity;
    }

    return summary;
}


static int
summary_header_load (CamelFolderSummary *s, FILE *in)
{
    CamelImapSummary *ims = CAMEL_IMAP_SUMMARY (s);

    if (camel_imap_summary_parent->summary_header_load (s, in) == -1)
        return -1;

    return camel_folder_summary_decode_uint32 (in, &ims->validity);
}

static int
summary_header_save (CamelFolderSummary *s, FILE *out)
{
    CamelImapSummary *ims = CAMEL_IMAP_SUMMARY(s);

    if (camel_imap_summary_parent->summary_header_save (s, out) == -1)
        return -1;

    return camel_folder_summary_encode_uint32 (out, ims->validity);
}