aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-stream-fs.c
blob: acff58738fb241f0057f42163940bd888c4f2dde (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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* camel-stream-fs.c : file system based stream */

/* inspired by gnome-stream-fs.c in bonobo by Miguel de Icaza */
/* 
 *
 * Author : 
 *  Bertrand Guiheneuf <bertrand@helixcode.com>
 *
 * 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
 */
#include <config.h>
#include "camel-stream-fs.h"
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>
#include "camel-log.h"

static CamelSeekableStreamClass *parent_class=NULL;


/* Returns the class for a CamelStreamFS */
#define CSFS_CLASS(so) CAMEL_STREAM_FS_CLASS (GTK_OBJECT(so)->klass)

static gint _read (CamelStream *stream, gchar *buffer, gint n);
static gint _write (CamelStream *stream, const gchar *buffer, gint n);
static void _flush (CamelStream *stream);
static gint _available (CamelStream *stream);
static gboolean _eos (CamelStream *stream);
static void _close (CamelStream *stream);
static gint _seek (CamelSeekableStream *stream, gint offset, CamelStreamSeekPolicy policy);

static void _finalize (GtkObject *object);
static void _destroy (GtkObject *object);

static void _init_with_fd (CamelStreamFs *stream_fs, int fd);
static void _init_with_fd_and_bounds (CamelStreamFs *stream_fs, int fd, guint32 inf_bound, gint32 sup_bound);
static void _init_with_name (CamelStreamFs *stream_fs, const gchar *name, CamelStreamFsMode mode);
static void _init_with_name_and_bounds (CamelStreamFs *stream_fs, const gchar *name, CamelStreamFsMode mode,
                    guint32 inf_bound, gint32 sup_bound);

static void
camel_stream_fs_class_init (CamelStreamFsClass *camel_stream_fs_class)
{
    CamelSeekableStreamClass *camel_seekable_stream_class = CAMEL_SEEKABLE_STREAM_CLASS (camel_stream_fs_class);
    CamelStreamClass *camel_stream_class = CAMEL_STREAM_CLASS (camel_stream_fs_class);
    GtkObjectClass *gtk_object_class = GTK_OBJECT_CLASS (camel_stream_fs_class);

    parent_class = gtk_type_class (camel_stream_get_type ());
    
    /* virtual method definition */
    camel_stream_fs_class->init_with_fd = _init_with_fd;
    camel_stream_fs_class->init_with_fd_and_bounds = _init_with_fd_and_bounds;
    camel_stream_fs_class->init_with_name = _init_with_name;
    camel_stream_fs_class->init_with_name_and_bounds = _init_with_name_and_bounds;
    
    /* virtual method overload */
    camel_stream_class->read = _read;
    camel_stream_class->write = _write;
    camel_stream_class->flush = _flush;
    camel_stream_class->available = _available;
    camel_stream_class->eos = _eos;
    camel_stream_class->close = _close;

    camel_seekable_stream_class->seek = _seek;

    gtk_object_class->finalize = _finalize;
    gtk_object_class->destroy = _destroy;

}

static void
camel_stream_fs_init (gpointer   object,  gpointer   klass)
{
    CamelStreamFs *stream = CAMEL_STREAM_FS (object);

    stream->name = NULL;
}


GtkType
camel_stream_fs_get_type (void)
{
    static GtkType camel_stream_fs_type = 0;
    
    if (!camel_stream_fs_type)  {
        GtkTypeInfo camel_stream_fs_info =  
        {
            "CamelStreamFs",
            sizeof (CamelStreamFs),
            sizeof (CamelStreamFsClass),
            (GtkClassInitFunc) camel_stream_fs_class_init,
            (GtkObjectInitFunc) camel_stream_fs_init,
                /* reserved_1 */ NULL,
                /* reserved_2 */ NULL,
            (GtkClassInitFunc) NULL,
        };
        
        camel_stream_fs_type = gtk_type_unique (camel_seekable_stream_get_type (), &camel_stream_fs_info);
    }
    
    return camel_stream_fs_type;
}


static void           
_destroy (GtkObject *object)
{
    CamelStreamFs *stream_fs = CAMEL_STREAM_FS (object);
    gint close_error;
    
    CAMEL_LOG_FULL_DEBUG ("Entering CamelStreamFs::destroy\n");
    
    close_error = close (stream_fs->fd);
    if (close_error) {
        CAMEL_LOG_FULL_DEBUG ("CamelStreamFs::destroy Error while closing file descriptor\n");
        CAMEL_LOG_FULL_DEBUG ( "  Full error text is : %s\n", strerror(errno));
    }
    GTK_OBJECT_CLASS (parent_class)->destroy (object);
    
    CAMEL_LOG_FULL_DEBUG ("Leaving CamelStreamFs::destroy\n");
}


static void           
_finalize (GtkObject *object)
{
    CamelStreamFs *stream_fs = CAMEL_STREAM_FS (object);


    CAMEL_LOG_FULL_DEBUG ("Entering CamelStreamFs::finalize\n");
    
    g_free (stream_fs->name);

    GTK_OBJECT_CLASS (parent_class)->finalize (object);
    CAMEL_LOG_FULL_DEBUG ("Leaving CamelStreamFs::finalize\n");
}



static void 
_set_bounds (CamelStreamFs *stream_fs, guint32 inf_bound, guint32 sup_bound)
{
    
    printf ("sup_bounds = %u\n", sup_bound);
    /* store the bounds */
    stream_fs->inf_bound = inf_bound;
    stream_fs->sup_bound = sup_bound;

    /* go to the first position */
    lseek (stream_fs->fd, inf_bound, SEEK_SET);

    stream_fs->cur_pos = inf_bound;
    
    CAMEL_LOG_FULL_DEBUG ("In CamelStreamFs::_set_bounds, "
                  "setting inf bound to %u, "
                  "sup bound to %ld, current postion to %u from %u\n", 
                  stream_fs->inf_bound, stream_fs->sup_bound,
                  stream_fs->cur_pos, inf_bound);
    
}




static void
_init_with_fd (CamelStreamFs *stream_fs, int fd)
{
    stream_fs->fd = fd;
    stream_fs->inf_bound = 0;
    stream_fs->sup_bound = -1;
    stream_fs->cur_pos = 0;
}




static void
_init_with_fd_and_bounds (CamelStreamFs *stream_fs, int fd, guint32 inf_bound, gint32 sup_bound)
{
    
    CSFS_CLASS (stream_fs)->init_with_fd (stream_fs, fd);
    _set_bounds (stream_fs, inf_bound, sup_bound);
    
}



static void
_init_with_name (CamelStreamFs *stream_fs, const gchar *name, CamelStreamFsMode mode)
{
    struct stat s;
    int v, fd;
    int flags;
    
    g_assert (name);
    CAMEL_LOG_FULL_DEBUG ( "Entering CamelStream::new_with_name, name=\"%s\", mode=%d\n", name, mode); 


    v = stat (name, &s);
    
    if (mode & CAMEL_STREAM_FS_READ){
        if (mode & CAMEL_STREAM_FS_WRITE)
            flags = O_RDWR | O_CREAT;
        else
            flags = O_RDONLY;
    } else {
        if (mode & CAMEL_STREAM_FS_WRITE)
            flags = O_WRONLY | O_CREAT;
        else
            return;
    }

    if ( (mode & CAMEL_STREAM_FS_READ) && !(mode & CAMEL_STREAM_FS_WRITE) )
        if (v == -1) return;

    fd = open (name, flags, 0600);
    if (fd==-1) {
        CAMEL_LOG_WARNING ( "CamelStreamFs::new_with_name can not obtain fd for file \"%s\"\n", name);
        CAMEL_LOG_FULL_DEBUG ( "  Full error text is : %s\n", strerror(errno));
        return;
    }
    
    stream_fs->name = g_strdup (name);
    CSFS_CLASS (stream_fs)->init_with_fd (stream_fs, fd);
        
}



static void
_init_with_name_and_bounds (CamelStreamFs *stream_fs, const gchar *name, CamelStreamFsMode mode,
                guint32 inf_bound, gint32 sup_bound)
{
    CSFS_CLASS (stream_fs)->init_with_name (stream_fs, name, mode);
    _set_bounds (stream_fs, inf_bound, (gint32)sup_bound);
    CAMEL_LOG_FULL_DEBUG ("In CamelStreamFs::init_with_name_and_bounds, "
                  "setting inf bound to %u, "
                  "sup bound to %ld, current postion to %u\n", 
                  stream_fs->inf_bound, stream_fs->sup_bound,
                  stream_fs->cur_pos);
}




CamelStream *
camel_stream_fs_new_with_name (const gchar *name, CamelStreamFsMode mode)
{
    CamelStreamFs *stream_fs;
    stream_fs = gtk_type_new (camel_stream_fs_get_type ());
    CSFS_CLASS (stream_fs)->init_with_name (stream_fs, name, mode);
    
    return CAMEL_STREAM (stream_fs);
    
}
 

CamelStream *
camel_stream_fs_new_with_name_and_bounds (const gchar *name, CamelStreamFsMode mode,
                      guint32 inf_bound, gint32 sup_bound)
{
    CamelStreamFs *stream_fs;
    stream_fs = gtk_type_new (camel_stream_fs_get_type ());
    CSFS_CLASS (stream_fs)->init_with_name_and_bounds (stream_fs, name, mode, inf_bound, sup_bound);
    
    return CAMEL_STREAM (stream_fs);
    
}






CamelStream *
camel_stream_fs_new_with_fd (int fd)
{
    CamelStreamFs *stream_fs;
    
    CAMEL_LOG_FULL_DEBUG ( "Entering CamelStream::new_with_fd  fd=%d\n",fd);
    stream_fs = gtk_type_new (camel_stream_fs_get_type ());
    CSFS_CLASS (stream_fs)->init_with_fd (stream_fs, fd);

    
    return CAMEL_STREAM (stream_fs);
}



CamelStream *
camel_stream_fs_new_with_fd_and_bounds (int fd, guint32 inf_bound, gint32 sup_bound)
{
    CamelStreamFs *stream_fs;
    
    CAMEL_LOG_FULL_DEBUG ( "Entering CamelStream::new_with_fd  fd=%d\n",fd);
    stream_fs = gtk_type_new (camel_stream_fs_get_type ());
    CSFS_CLASS (stream_fs)->init_with_fd_and_bounds (stream_fs, fd, inf_bound, sup_bound);
    
    return CAMEL_STREAM (stream_fs);
}



/**
 * _read: read bytes from a stream
 * @stream: stream
 * @buffer: buffer where bytes are stored
 * @n: max number of bytes to read
 * 
 * 
 * 
 * Return value: number of bytes actually read.
 **/
static gint
_read (CamelStream *stream, gchar *buffer, gint n)
{
    CamelStreamFs *stream_fs = CAMEL_STREAM_FS (stream);
    gint v;
    gint nb_to_read;
    
    if (stream_fs->sup_bound != -1)
        nb_to_read = MIN (stream_fs->sup_bound - stream_fs->cur_pos, n);
    else 
        nb_to_read = n;
    
    do {
        v = read ( (CAMEL_STREAM_FS (stream))->fd, buffer, nb_to_read);
    } while (v == -1 && errno == EINTR);
    if (v<0)
        CAMEL_LOG_FULL_DEBUG ("CamelStreamFs::read v=%d\n", v);
    else 
        stream_fs->cur_pos += v;

    return v;
}


/**
 * _write: write bytes to a stream
 * @stream: the stream
 * @buffer: byte buffer
 * @n: number of bytes to write
 * 
 * 
 * 
 * Return value: the number of bytes actually written
 *  in the stream.
 **/
static gint
_write (CamelStream *stream, const gchar *buffer, gint n)
{
    CamelStreamFs *stream_fs = CAMEL_STREAM_FS (stream);
    int v;
    gint nb_to_write;
    
    g_assert (stream);
    g_assert (stream_fs->fd);
    CAMEL_LOG_FULL_DEBUG ( "CamelStreamFs:: entering write. n=%d\n", n);

    if (stream_fs->sup_bound != -1)
        nb_to_write =  MIN (stream_fs->sup_bound - stream_fs->cur_pos, n);
    else 
        nb_to_write = n;

    do {
        v = write ( stream_fs->fd, buffer, nb_to_write);
    } while (v == -1 && errno == EINTR);
    
#if HARD_LOG_LEVEL >= FULL_DEBUG
    if (v==-1) {
        perror("");
        CAMEL_LOG_FULL_DEBUG ( "CamelStreamFs::write could not write bytes in stream\n");
    }
#endif

    if (v>0)
        stream_fs->cur_pos += v;

    return v;

}



/**
 * _flush: flush pending changes 
 * @stream: the stream
 * 
 * 
 **/
static void
_flush (CamelStream *stream)
{
    fsync ((CAMEL_STREAM_FS (stream))->fd);
}



/**
 * _available: return the number of bytes available for reading
 * @stream: the stream
 * 
 * Return the number of bytes available without blocking.
 * 
 * Return value: the number of bytes available
 **/
static gint 
_available (CamelStream *stream)
{
    g_warning ("Not implemented yet");
    return -1;
}


/**
 * _eos: test if there are bytes left to read
 * @stream: the stream
 * 
 * 
 * 
 * Return value: true if all stream has been read
 **/
static gboolean
_eos (CamelStream *stream)
{
    g_warning ("Not implemented yet");
    return FALSE;
}


/**
 * _close: close a stream
 * @stream: the stream
 * 
 * 
 **/
static void
_close (CamelStream *stream)
{
    close ((CAMEL_STREAM_FS (stream))->fd);
}


static gint
_seek (CamelSeekableStream *stream, gint offset, CamelStreamSeekPolicy policy)
{
    int whence;
    gint return_position;
    gint real_offset; 
    CamelStreamFs *stream_fs = CAMEL_STREAM_FS (stream);

    switch  (policy) {
    case CAMEL_STREAM_SET:
        real_offset = MAX (stream_fs->inf_bound + offset, stream_fs->inf_bound);
        if (stream_fs->sup_bound > 0)
            real_offset = MIN (real_offset, stream_fs->sup_bound);
        whence = SEEK_SET;      
        break;

    case CAMEL_STREAM_CUR:
        if ((stream_fs->sup_bound == -1) && ((stream_fs->cur_pos + offset) > stream_fs->sup_bound)) {
            real_offset = stream_fs->sup_bound;
            whence = SEEK_SET;  
        } else if ((stream_fs->cur_pos + offset) < stream_fs->inf_bound) {
            real_offset = stream_fs->inf_bound;
            whence = SEEK_SET;  
        } else 
            {
                real_offset = offset;
                whence = SEEK_CUR;
            }
        break;

    case CAMEL_STREAM_END:
        if (stream_fs->sup_bound != -1) {
            real_offset = stream_fs->sup_bound - offset;
            whence = SEEK_SET;
        } else {
            real_offset = offset;
            whence = SEEK_END;
        }
        
        
        break;
    default:
        return -1;
    }
        
    
        
    return_position =  lseek (stream_fs->fd, real_offset, whence) - stream_fs->inf_bound;
    stream_fs->cur_pos = return_position;

    return return_position;
}