aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-simple-data-wrapper-stream.c
blob: 5e8973472907a0ff6656eb8e67abf6ac7155db0e (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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* camel-simple-data-wrapper-stream.c
 *
 * Copyright 1999, 2000 HelixCode (http://www.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.
 *
 * Author: Ettore Perazzoli
 */

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

#include "camel-simple-data-wrapper-stream.h"


static CamelStreamClass *parent_class = NULL;


/* CamelStream methods.  */

static  gint 
read (CamelStream *stream,
      gchar *buffer,
      gint n)
{
    CamelSimpleDataWrapperStream *wrapper_stream;
    CamelSimpleDataWrapper *wrapper;
    GByteArray *array;
    gint len;

    wrapper_stream = CAMEL_SIMPLE_DATA_WRAPPER_STREAM (stream);
    wrapper = wrapper_stream->wrapper;
    g_return_val_if_fail (wrapper != NULL, -1);
    array = wrapper->byte_array;

    len = MIN (n, array->len - wrapper_stream->current_position);
    if (len > 0) {
        memcpy (buffer, wrapper_stream->current_position + array->data, len);
        wrapper_stream->current_position += len;
        return len;
    } else {
        return 0;
    }
}

static  gint 
write (CamelStream *stream,
       const gchar *buffer,
       gint n)
{
    CamelSimpleDataWrapperStream *wrapper_stream;
    CamelSimpleDataWrapper *wrapper;
    GByteArray *array;
    gint len;
    const gchar *buffer_next;
    gint left;

    wrapper_stream = CAMEL_SIMPLE_DATA_WRAPPER_STREAM (stream);
    wrapper = wrapper_stream->wrapper;
    g_return_val_if_fail (wrapper != NULL, -1);
    array = wrapper->byte_array;

    len = MIN (n, array->len - wrapper_stream->current_position);
    if (len > 0) {
        memcpy (array->data, buffer, len);
        buffer_next = buffer + len;
        left = n - len;
    } else {
        /* If we are past the end of the array, fill with zeros.  */
        if (wrapper_stream->current_position > array->len) {
            gint saved_length;

            saved_length = array->len;
            g_byte_array_set_size
                (array, wrapper_stream->current_position);
            memset (array->data + saved_length,
                0,
                (wrapper_stream->current_position
                 - saved_length));
        }

        buffer_next = buffer;
        left = n;
    }

    if (n > 0)
        g_byte_array_append (array, buffer_next, left);

    wrapper_stream->current_position += n;
    return n;
}

static void 
flush (CamelStream *stream)
{
    /* No op, as we don't do any buffering.  */
}

static gint 
available (CamelStream *stream)
{
    CamelSimpleDataWrapperStream *wrapper_stream;
    CamelSimpleDataWrapper *wrapper;
    GByteArray *array;
    gint available;

    wrapper_stream = CAMEL_SIMPLE_DATA_WRAPPER_STREAM (stream);
    wrapper = wrapper_stream->wrapper;
    g_return_val_if_fail (wrapper != NULL, -1);
    array = wrapper->byte_array;

    available = array->len - wrapper_stream->current_position;
    return MAX (available, 0);
}

static gboolean
eos (CamelStream *stream)
{
    if (available (stream) > 0)
        return TRUE;
    else
        return FALSE;
}

static void 
close (CamelStream *stream)
{
    /* Nothing to do, we have no associated file descriptor.  */
}

static gint
seek (CamelSeekableStream *stream,
      gint offset,
      CamelStreamSeekPolicy policy)
{
    CamelSimpleDataWrapperStream *wrapper_stream;
    gint new_position;

    wrapper_stream = CAMEL_SIMPLE_DATA_WRAPPER_STREAM (stream);

    switch (policy) {
    case CAMEL_STREAM_SET:
        new_position = offset;
        break;
    case CAMEL_STREAM_CUR:
        new_position = wrapper_stream->current_position + offset;
        break;
    case CAMEL_STREAM_END:
        new_position = wrapper_stream->wrapper->byte_array->len - offset;
        break;
    default:
        g_warning ("Unknown CamelStreamSeekPolicy %d.", policy);
        return -1;
    }

    if (new_position<0)
        new_position = 0;
    else if (new_position>=wrapper_stream->wrapper->byte_array->len)
        new_position = wrapper_stream->wrapper->byte_array->len-1;

    wrapper_stream->current_position = new_position;
    return new_position;
}


/* This handles destruction of the associated CamelDataWrapper.  */
/* Hm, this should never happen though, because we gtk_object_ref() the
   wrapper.  */
static void
wrapper_destroy_cb (GtkObject *object,
            gpointer data)
{
    CamelSimpleDataWrapperStream *stream;

    g_warning ("CamelSimpleDataWrapperStream: associated CamelSimpleDataWrapper was destroyed.");
    stream = CAMEL_SIMPLE_DATA_WRAPPER_STREAM (object);
    stream->wrapper = NULL;
}


/* GtkObject methods.  */

static void
destroy (GtkObject *object)
{
    CamelSimpleDataWrapperStream *stream;

    stream = CAMEL_SIMPLE_DATA_WRAPPER_STREAM (object);

    gtk_object_unref (GTK_OBJECT (stream->wrapper));

    if (GTK_OBJECT_CLASS (parent_class)->destroy != NULL)
        (* GTK_OBJECT_CLASS (parent_class)->destroy) (object);
}


static void
class_init (CamelSimpleDataWrapperStreamClass *klass)
{
    GtkObjectClass *object_class;
    CamelStreamClass *stream_class;
    CamelSeekableStreamClass *seek_class;

    object_class = (GtkObjectClass*) klass;
    stream_class = (CamelStreamClass *)klass;
    seek_class = (CamelSeekableStreamClass *)klass;

    stream_class->read = read;
    stream_class->write = write;
    stream_class->flush = flush;
    stream_class->available = available;
    stream_class->eos = eos;
    stream_class->close = close;

    seek_class->seek = seek;

    object_class->destroy = destroy;

    parent_class = gtk_type_class (camel_stream_get_type ());
}

static void
init (CamelSimpleDataWrapperStream *simple_data_wrapper_stream)
{
    simple_data_wrapper_stream->current_position = 0;
}


GtkType
camel_simple_data_wrapper_stream_get_type (void)
{
    static GtkType type = 0;

    if (type == 0) {
        static const GtkTypeInfo info = {
            "CamelSimpleDataWrapperStream",
            sizeof (CamelSimpleDataWrapperStream),
            sizeof (CamelSimpleDataWrapperStreamClass),
            (GtkClassInitFunc) class_init,
            (GtkObjectInitFunc) init,
            /* reserved_1 */ NULL,
            /* reserved_2 */ NULL,
            (GtkClassInitFunc) NULL,
        };

        type = gtk_type_unique (camel_stream_get_type (), &info);
    }

    return type;
}

void
camel_simple_data_wrapper_stream_construct (CamelSimpleDataWrapperStream *stream,
                        CamelSimpleDataWrapper *wrapper)
{
    g_return_if_fail (stream != NULL);
    g_return_if_fail (CAMEL_IS_SIMPLE_DATA_WRAPPER_STREAM (stream));
    g_return_if_fail (wrapper != NULL);
    g_return_if_fail (CAMEL_IS_SIMPLE_DATA_WRAPPER (wrapper));

    gtk_object_ref (GTK_OBJECT (wrapper));
    stream->wrapper = wrapper;
#if 0
    gtk_signal_connect (GTK_OBJECT (wrapper), "destroy",
                wrapper_destroy_cb, stream);
#endif
}

CamelStream *
camel_simple_data_wrapper_stream_new (CamelSimpleDataWrapper *wrapper)
{
    CamelStream *stream;

    g_return_val_if_fail (wrapper != NULL, NULL);
    g_return_val_if_fail (CAMEL_IS_SIMPLE_DATA_WRAPPER (wrapper), NULL);

    stream = gtk_type_new (camel_simple_data_wrapper_stream_get_type ());

    camel_simple_data_wrapper_stream_construct
        (CAMEL_SIMPLE_DATA_WRAPPER_STREAM (stream), wrapper);

    return stream;
}