aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-summary-storage.h
blob: 4d5aab7641074039dd4e7ac75108dc3854eb670c (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
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* e-summary-storage.h
 *
 * Copyright (C) 2001  Ximian, Inc.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU General Public
 * License as published by the Free Software Foundation.
 *
 * 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 <ettore@ximian.com>
 */

#ifndef _E_SUMMARY_STORAGE_H_
#define _E_SUMMARY_STORAGE_H_

#include "e-storage.h"

#ifdef __cplusplus
extern "C" {
#pragma }
#endif /* __cplusplus */

#define E_TYPE_SUMMARY_STORAGE          (e_summary_storage_get_type ())
#define E_SUMMARY_STORAGE(obj)          (GTK_CHECK_CAST ((obj), E_TYPE_SUMMARY_STORAGE, ESummaryStorage))
#define E_SUMMARY_STORAGE_CLASS(klass)      (GTK_CHECK_CLASS_CAST ((klass), E_TYPE_SUMMARY_STORAGE, ESummaryStorageClass))
#define E_IS_SUMMARY_STORAGE(obj)           (GTK_CHECK_TYPE ((obj), E_TYPE_SUMMARY_STORAGE))
#define E_IS_SUMMARY_STORAGE_CLASS(klass)       (GTK_CHECK_CLASS_TYPE ((obj), E_TYPE_SUMMARY_STORAGE))


#define E_SUMMARY_STORAGE_NAME "summary"


typedef struct _ESummaryStorage        ESummaryStorage;
typedef struct _ESummaryStoragePrivate ESummaryStoragePrivate;
typedef struct _ESummaryStorageClass   ESummaryStorageClass;

struct _ESummaryStorage {
    EStorage parent;

    ESummaryStoragePrivate *priv;
};

struct _ESummaryStorageClass {
    EStorageClass parent_class;
};


GtkType   e_summary_storage_get_type  (void);
EStorage *e_summary_storage_new       (void);

#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* _E_SUMMARY_STORAGE_H_ */
24'>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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 *  Authors: Jeffrey Stedfast <fejj@ximian.com>
 *
 *  Copyright 2001 Ximian, Inc. (www.ximian.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 Street #330, Boston, MA 02111-1307, USA.
 *
 */

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

#include <sys/time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <string.h>
#include "camel-tcp-stream-raw.h"
#include "camel-operation.h"

static CamelTcpStreamClass *parent_class = NULL;

/* Returns the class for a CamelTcpStreamRaw */
#define CTSR_CLASS(so) CAMEL_TCP_STREAM_RAW_CLASS (CAMEL_OBJECT_GET_CLASS (so))

static ssize_t stream_read (CamelStream *stream, char *buffer, size_t n);
static ssize_t stream_write (CamelStream *stream, const char *buffer, size_t n);
static int stream_flush  (CamelStream *stream);
static int stream_close  (CamelStream *stream);

static int stream_connect (CamelTcpStream *stream, struct hostent *host, int port);
static int stream_getsockopt (CamelTcpStream *stream, CamelSockOptData *data);
static int stream_setsockopt (CamelTcpStream *stream, const CamelSockOptData *data);
static gpointer stream_get_socket (CamelTcpStream *stream);

static void
camel_tcp_stream_raw_class_init (CamelTcpStreamRawClass *camel_tcp_stream_raw_class)
{
    CamelTcpStreamClass *camel_tcp_stream_class =
        CAMEL_TCP_STREAM_CLASS (camel_tcp_stream_raw_class);
    CamelStreamClass *camel_stream_class =
        CAMEL_STREAM_CLASS (camel_tcp_stream_raw_class);
    
    parent_class = CAMEL_TCP_STREAM_CLASS (camel_type_get_global_classfuncs (camel_tcp_stream_get_type ()));
    
    /* virtual method overload */
    camel_stream_class->read = stream_read;
    camel_stream_class->write = stream_write;
    camel_stream_class->flush = stream_flush;
    camel_stream_class->close = stream_close;
    
    camel_tcp_stream_class->connect = stream_connect;
    camel_tcp_stream_class->getsockopt = stream_getsockopt;
    camel_tcp_stream_class->setsockopt = stream_setsockopt;
    camel_tcp_stream_class->get_socket = stream_get_socket;
}

static void
camel_tcp_stream_raw_init (gpointer object, gpointer klass)
{
    CamelTcpStreamRaw *stream = CAMEL_TCP_STREAM_RAW (object);
    
    stream->sockfd = -1;
}

static void
camel_tcp_stream_raw_finalize (CamelObject *object)
{
    CamelTcpStreamRaw *stream = CAMEL_TCP_STREAM_RAW (object);
    
    if (stream->sockfd != -1)
        close (stream->sockfd);
}


CamelType
camel_tcp_stream_raw_get_type (void)
{
    static CamelType type = CAMEL_INVALID_TYPE;
    
    if (type == CAMEL_INVALID_TYPE) {
        type = camel_type_register (camel_tcp_stream_get_type (),
                        "CamelTcpStreamRaw",
                        sizeof (CamelTcpStreamRaw),
                        sizeof (CamelTcpStreamRawClass),
                        (CamelObjectClassInitFunc) camel_tcp_stream_raw_class_init,
                        NULL,
                        (CamelObjectInitFunc) camel_tcp_stream_raw_init,
                        (CamelObjectFinalizeFunc) camel_tcp_stream_raw_finalize);
    }
    
    return type;
}


/**
 * camel_tcp_stream_raw_new:
 *
 * Return value: a tcp stream
 **/
CamelStream *
camel_tcp_stream_raw_new ()
{
    CamelTcpStreamRaw *stream;
    
    stream = CAMEL_TCP_STREAM_RAW (camel_object_new (camel_tcp_stream_raw_get_type ()));
    
    return CAMEL_STREAM (stream);
}

static ssize_t
stream_read (CamelStream *stream, char *buffer, size_t n)
{
    CamelTcpStreamRaw *tcp_stream_raw = CAMEL_TCP_STREAM_RAW (stream);
    ssize_t nread;
    int cancel_fd;
    
    if (camel_operation_cancel_check (NULL)) {
        errno = EINTR;
        return  -1;
    }
    
    cancel_fd = camel_operation_cancel_fd (NULL);
    if (cancel_fd == -1) {
        do {
            nread = read (tcp_stream_raw->sockfd, buffer, n);
        } while (nread == -1 && errno == EINTR);
    } else {
        int flags, fdmax;
        fd_set rdset;
        
        flags = fcntl (tcp_stream_raw->sockfd, F_GETFL);
        fcntl (tcp_stream_raw->sockfd, F_SETFL, flags | O_NONBLOCK);
        
        FD_ZERO (&rdset);
        FD_SET (tcp_stream_raw->sockfd, &rdset);
        FD_SET (cancel_fd, &rdset);
        fdmax = MAX (tcp_stream_raw->sockfd, cancel_fd) + 1;
        
        select (fdmax, &rdset, 0, 0, NULL);
        if (FD_ISSET (cancel_fd, &rdset)) {
            fcntl (tcp_stream_raw->sockfd, F_SETFL, flags);
            errno = EINTR;
            return -1;
        }
        
        nread = read (tcp_stream_raw->sockfd, buffer, n);
        fcntl (tcp_stream_raw->sockfd, F_SETFL, flags);
    }
    
    return nread;
}

static ssize_t
stream_write (CamelStream *stream, const char *buffer, size_t n)
{
    CamelTcpStreamRaw *tcp_stream_raw = CAMEL_TCP_STREAM_RAW (stream);
    ssize_t w, written = 0;
    int cancel_fd;
    
    if (camel_operation_cancel_check (NULL)) {
        errno = EINTR;
        return  -1;
    }
    
    cancel_fd = camel_operation_cancel_fd (NULL);
    if (cancel_fd == -1) {
        do {
            written = write (tcp_stream_raw->sockfd, buffer, n);
        } while (written == -1 && errno == EINTR);
    } else {
        fd_set rdset, wrset;
        int flags, fdmax;
        
        flags = fcntl (tcp_stream_raw->sockfd, F_GETFL);
        fcntl (tcp_stream_raw->sockfd, F_SETFL, flags | O_NONBLOCK);
        
        fdmax = MAX (tcp_stream_raw->sockfd, cancel_fd) + 1;
        do {
            FD_ZERO (&rdset);
            FD_ZERO (&wrset);
            FD_SET (tcp_stream_raw->sockfd, &wrset);
            FD_SET (cancel_fd, &rdset);
            
            select (fdmax, &rdset, &wrset, 0, NULL);
            if (FD_ISSET (cancel_fd, &rdset)) {
                fcntl (tcp_stream_raw->sockfd, F_SETFL, flags);
                errno = EINTR;
                return -1;
            }
            
            w = write (tcp_stream_raw->sockfd, buffer + written, n - written);
            if (w > 0)
                written += w;
        } while (w != -1 && written < n);
        
        fcntl (tcp_stream_raw->sockfd, F_SETFL, flags);
    }
    
    return written;
}

static int
stream_flush (CamelStream *stream)
{
    return fsync (((CamelTcpStreamRaw *)stream)->sockfd);
}

static int
stream_close (CamelStream *stream)
{
    if (close (((CamelTcpStreamRaw *)stream)->sockfd) == -1)
        return -1;
    
    ((CamelTcpStreamRaw *)stream)->sockfd = -1;
    return 0;
}

/* this is a 'cancellable' connect, cancellable from camel_operation_cancel etc */
/* returns -1 & errno == EINTR if the connection was cancelled */
static int
socket_connect (struct hostent *h, int port)
{
    struct sockaddr_in sin;
    int fd;
    int ret;
    socklen_t len;
    struct timeval tv;
    int cancel_fd;
    
    /* see if we're cancelled yet */
    if (camel_operation_cancel_check (NULL)) {
        errno = EINTR;
        return -1;
    }
    
    /* setup connect, we do it using a nonblocking socket so we can poll it */
    sin.sin_port = htons (port);
    sin.sin_family = h->h_addrtype;
    memcpy (&sin.sin_addr, h->h_addr, sizeof (sin.sin_addr));
    
    fd = socket (h->h_addrtype, SOCK_STREAM, 0);
    
    cancel_fd = camel_operation_cancel_fd (NULL);
    if (cancel_fd == -1) {
        ret = connect (fd, (struct sockaddr *)&sin, sizeof (sin));
        if (ret == -1) {
            close (fd);
            return -1;
        }
        
        return fd;
    } else {
        fd_set rdset, wrset;
        int flags, fdmax;
        
        flags = fcntl (fd, F_GETFL);
        fcntl (fd, F_SETFL, flags | O_NONBLOCK);
        
        ret = connect (fd, (struct sockaddr *)&sin, sizeof (sin));
        if (ret == 0) {
            fcntl (fd, F_SETFL, flags);
            return fd;
        }
        
        if (errno != EINPROGRESS) {
            close (fd);
            return -1;
        }
        
        FD_ZERO (&rdset);
        FD_ZERO (&wrset);
        FD_SET (fd, &wrset);
        FD_SET (cancel_fd, &rdset);
        fdmax = MAX (fd, cancel_fd) + 1;
        tv.tv_usec = 0;
        tv.tv_sec = 60 * 4;
        
        if (select (fdmax, &rdset, &wrset, 0, &tv) == 0) {
            close (fd);
            errno = ETIMEDOUT;
            return -1;
        }
        
        if (cancel_fd != -1 && FD_ISSET (cancel_fd, &rdset)) {
            close (fd);
            errno = EINTR;
            return -1;
        } else {
            len = sizeof (int);
            
            if (getsockopt (fd, SOL_SOCKET, SO_ERROR, &ret, &len) == -1) {
                close (fd);
                return -1;
            }
            
            if (ret != 0) {
                close (fd);
                errno = ret;
                return -1;
            }
        }
        
        fcntl (fd, F_SETFL, flags);
    }
    
    return fd;
}

static int
stream_connect (CamelTcpStream *stream, struct hostent *host, int port)
{
    CamelTcpStreamRaw *raw = CAMEL_TCP_STREAM_RAW (stream);
    int fd;
    
    g_return_val_if_fail (host != NULL, -1);
    
    fd = socket_connect (host, port);
    if (fd == -1)
        return -1;
    
    raw->sockfd = fd;
    
    return 0;
}


static int
get_sockopt_level (const CamelSockOptData *data)
{
    switch (data->option) {
    case CAMEL_SOCKOPT_MAXSEGMENT:
    case CAMEL_SOCKOPT_NODELAY:
        return IPPROTO_TCP;
    default:
        return SOL_SOCKET;
    }
}

static int
get_sockopt_optname (const CamelSockOptData *data)
{
    switch (data->option) {
    case CAMEL_SOCKOPT_MAXSEGMENT:
        return TCP_MAXSEG;
    case CAMEL_SOCKOPT_NODELAY:
        return TCP_NODELAY;
    case CAMEL_SOCKOPT_BROADCAST:
        return SO_BROADCAST;
    case CAMEL_SOCKOPT_KEEPALIVE:
        return SO_KEEPALIVE;
    case CAMEL_SOCKOPT_LINGER:
        return SO_LINGER;
    case CAMEL_SOCKOPT_RECVBUFFERSIZE:
        return SO_RCVBUF;
    case CAMEL_SOCKOPT_SENDBUFFERSIZE:
        return SO_SNDBUF;
    case CAMEL_SOCKOPT_REUSEADDR:
        return SO_REUSEADDR;
    case CAMEL_SOCKOPT_IPTYPEOFSERVICE:
        return SO_TYPE;
    default:
        return -1;
    }
}

static int
stream_getsockopt (CamelTcpStream *stream, CamelSockOptData *data)
{
    int optname, optlen;
    
    if ((optname = get_sockopt_optname (data)) == -1)
        return -1;
    
    if (data->option == CAMEL_SOCKOPT_NONBLOCKING) {
        int flags;
        
        flags = fcntl (((CamelTcpStreamRaw *)stream)->sockfd, F_GETFL);
        if (flags == -1)
            return -1;
        
        data->value.non_blocking = flags & O_NONBLOCK;
        
        return 0;
    }
    
    return getsockopt (((CamelTcpStreamRaw *)stream)->sockfd,
               get_sockopt_level (data),
               optname,
               (void *) &data->value,
               &optlen);
}

static int
stream_setsockopt (CamelTcpStream *stream, const CamelSockOptData *data)
{
    int optname;
    
    if ((optname = get_sockopt_optname (data)) == -1)
        return -1;
    
    if (data->option == CAMEL_SOCKOPT_NONBLOCKING) {
        int flags, set;
        
        flags = fcntl (((CamelTcpStreamRaw *)stream)->sockfd, F_GETFL);
        if (flags == -1)
            return -1;
        
        set = data->value.non_blocking ? 1 : 0;
        flags = (flags & ~O_NONBLOCK) | (set & O_NONBLOCK);
        
        if (fcntl (((CamelTcpStreamRaw *)stream)->sockfd, F_SETFL, flags) == -1)
            return -1;
        
        return 0;
    }
    
    return setsockopt (((CamelTcpStreamRaw *)stream)->sockfd,
               get_sockopt_level (data),
               optname,
               (void *) &data->value,
               sizeof (data->value));
}

static gpointer
stream_get_socket (CamelTcpStream *stream)
{
    return GINT_TO_POINTER (CAMEL_TCP_STREAM_RAW (stream)->sockfd);
}