| Server IP : 182.53.201.61 / Your IP : 216.73.217.175 Web Server : Apache/2.2.15 (Fedora) System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686 User : apache ( 48) PHP Version : 5.3.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/2843/cwd/usr/include/evolution-data-server-2.28/camel/ |
Upload File : |
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* camel-session.h : Abstract class for an email session */
/*
*
* Author :
* Bertrand Guiheneuf <bertrand@helixcode.com>
*
* Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU Lesser 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
* USA
*/
#ifndef CAMEL_SESSION_H
#define CAMEL_SESSION_H 1
#include <camel/camel-msgport.h>
#include <camel/camel-object.h>
#include <camel/camel-provider.h>
#include <camel/camel-junk-plugin.h>
#define CAMEL_SESSION_TYPE (camel_session_get_type ())
#define CAMEL_SESSION(obj) (CAMEL_CHECK_CAST((obj), CAMEL_SESSION_TYPE, CamelSession))
#define CAMEL_SESSION_CLASS(k) (CAMEL_CHECK_CLASS_CAST ((k), CAMEL_SESSION_TYPE, CamelSessionClass))
#define CAMEL_IS_SESSION(o) (CAMEL_CHECK_TYPE((o), CAMEL_SESSION_TYPE))
G_BEGIN_DECLS
typedef gboolean (*CamelTimeoutCallback) (gpointer data);
typedef enum {
CAMEL_SESSION_ALERT_INFO,
CAMEL_SESSION_ALERT_WARNING,
CAMEL_SESSION_ALERT_ERROR
} CamelSessionAlertType;
enum {
CAMEL_SESSION_PASSWORD_REPROMPT = 1 << 0,
CAMEL_SESSION_PASSWORD_SECRET = 1 << 2,
CAMEL_SESSION_PASSWORD_STATIC = 1 << 3,
CAMEL_SESSION_PASSPHRASE = 1 << 4
};
struct _CamelSession
{
CamelObject parent_object;
struct _CamelSessionPrivate *priv;
gchar *storage_path;
CamelJunkPlugin *junk_plugin;
guint online:1;
guint check_junk:1;
guint network_state:1;
};
typedef struct _CamelSessionThreadOps CamelSessionThreadOps;
typedef struct _CamelSessionThreadMsg CamelSessionThreadMsg;
typedef struct {
CamelObjectClass parent_class;
CamelService * (*get_service) (CamelSession *session,
const gchar *url_string,
CamelProviderType type,
CamelException *ex);
gchar * (*get_storage_path) (CamelSession *session,
CamelService *service,
CamelException *ex);
gchar * (*get_password) (CamelSession *session,
CamelService *service,
const gchar *domain,
const gchar *prompt,
const gchar *item,
guint32 flags,
CamelException *ex);
void (*forget_password) (CamelSession *session,
CamelService *service,
const gchar *domain,
const gchar *item,
CamelException *ex);
gboolean (*alert_user) (CamelSession *session,
CamelSessionAlertType type,
const gchar *prompt,
gboolean cancel);
CamelFilterDriver * (*get_filter_driver) (CamelSession *session,
const gchar *type,
CamelException *ex);
/* mechanism for creating and maintaining multiple threads of control */
gpointer (*thread_msg_new) (CamelSession *session,
CamelSessionThreadOps *ops,
guint size);
void (*thread_msg_free) (CamelSession *session,
CamelSessionThreadMsg *msg);
gint (*thread_queue) (CamelSession *session,
CamelSessionThreadMsg *msg,
gint flags);
void (*thread_wait) (CamelSession *session,
gint id);
void (*thread_status) (CamelSession *session,
CamelSessionThreadMsg *msg,
const gchar *text,
gint pc);
gboolean (*lookup_addressbook)(CamelSession *session,
const gchar *name);
void (*forward_to) (CamelSession *session,
struct _CamelFolder *folder,
struct _CamelMimeMessage *message,
const gchar *address,
CamelException *ex);
} CamelSessionClass;
/* public methods */
/* Standard Camel function */
CamelType camel_session_get_type (void);
void camel_session_construct (CamelSession *session,
const gchar *storage_path);
CamelService * camel_session_get_service (CamelSession *session,
const gchar *url_string,
CamelProviderType type,
CamelException *ex);
CamelService * camel_session_get_service_connected (CamelSession *session,
const gchar *url_string,
CamelProviderType type,
CamelException *ex);
#define camel_session_get_store(session, url_string, ex) \
((CamelStore *) camel_session_get_service_connected \
(session, url_string, CAMEL_PROVIDER_STORE, ex))
#define camel_session_get_transport(session, url_string, ex) \
((CamelTransport *) camel_session_get_service_connected \
(session, url_string, CAMEL_PROVIDER_TRANSPORT, ex))
gchar * camel_session_get_storage_path (CamelSession *session,
CamelService *service,
CamelException *ex);
gchar * camel_session_get_password (CamelSession *session,
CamelService *service,
const gchar *domain,
const gchar *prompt,
const gchar *item,
guint32 flags,
CamelException *ex);
void camel_session_forget_password (CamelSession *session,
CamelService *service,
const gchar *domain,
const gchar *item,
CamelException *ex);
gboolean camel_session_alert_user (CamelSession *session,
CamelSessionAlertType type,
const gchar *prompt,
gboolean cancel);
gchar * camel_session_build_password_prompt
(const gchar *type,
const gchar *user,
const gchar *host);
gboolean camel_session_is_online (CamelSession *session);
void camel_session_set_online (CamelSession *session,
gboolean online);
CamelFilterDriver *camel_session_get_filter_driver (CamelSession *session,
const gchar *type,
CamelException *ex);
gboolean camel_session_check_junk (CamelSession *session);
void camel_session_set_check_junk (CamelSession *session,
gboolean check_junk);
struct _CamelSessionThreadOps {
void (*receive)(CamelSession *session, struct _CamelSessionThreadMsg *m);
void (*free)(CamelSession *session, struct _CamelSessionThreadMsg *m);
};
struct _CamelSessionThreadMsg {
CamelMsg msg;
gint id;
CamelException ex;
CamelSessionThreadOps *ops;
struct _CamelOperation *op;
CamelSession *session;
gpointer data; /* free for implementation to define, not used by camel, do not use in client code */
/* user fields follow */
};
gpointer camel_session_thread_msg_new (CamelSession *session,
CamelSessionThreadOps *ops,
guint size);
void camel_session_thread_msg_free (CamelSession *session,
CamelSessionThreadMsg *msg);
gint camel_session_thread_queue (CamelSession *session,
CamelSessionThreadMsg *msg,
gint flags);
void camel_session_thread_wait (CamelSession *session,
gint id);
gboolean camel_session_get_network_state (CamelSession *session);
void camel_session_set_network_state (CamelSession *session,
gboolean network_state);
const GHashTable * camel_session_get_junk_headers (CamelSession *session);
void camel_session_set_junk_headers (CamelSession *session,
const gchar **headers,
const gchar **values,
gint len);
gboolean camel_session_lookup_addressbook (CamelSession *session,
const gchar *name);
void camel_session_forward_to (CamelSession *session,
struct _CamelFolder *folder,
struct _CamelMimeMessage *message,
const gchar *address,
CamelException *ex);
G_END_DECLS
#endif /* CAMEL_SESSION_H */