
* mail-folder-cache.c: Added an async_event handler to store_info. (mail_note_store): Setup async event handler here. (store_finalised): Flush out async events here. (folder_changed): Use async event handler to emit event. (mail_note_folder): Chagned, do most of the work in the calling context, only do the corba stuff in main. (store_folder_subscribed): Use async event, and do more work locally. (store_folder_unsubscribed): Same. (store_folder_deleted): Call store_folder_unsubscribed if we have to do any work. (store_folder_created): Call store_folder_subscribed if we have to do any work. (store_folder_unsubscribed): Ref store while busy. (real_folder_deleted): And unref here. (store_folder_subscribed): Reg store while busy. (real_folder_created): Unref here. (mail_note_folder): Ref folder while busy. (real_note_folder): And unref here. (mail_note_folder): Hook onto folder_deleted event. (folder_deleted): Just mark this folder as no longer available. * mail-session.c (register_timeout): Use mail_call_main instead of proxy_event. (remove_timeout): Same here. * folder-browser.c (folder_changed): use the new mail_async_event stuff. (folder_changed_main): Remove old async event handling stuff. (FOLDER_BROWSER_LOCK/UNLOCK): Removed. (FolderBrowserPrivate): Removed too, sigh. * mail-mt.c (mail_async_event_new, mail_async_event_emit, mail_async_event_destroy): New functions to handle async events. (mail_proxy_event, mail_proxy_event_id): Removed old functions for async events. (do_call): Add suport for MAIL_CALL_p_pp. (mail_msg_free): Use mail_async_event instead of proxy_event. * message-list.c (message_changed): Promote the message_changed to a folder_changed and use main_folder_changed to process it. (main_message_changed): Remove.d (message_list_init): Setup async event handler. (message_list_destroy): Remove async handler. (folder_changed): Use async hanler to emit event in main loop. (message_changed): Same. svn path=/trunk/; revision=13698
115 lines
4.1 KiB
C
115 lines
4.1 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
|
|
*
|
|
* Authors: Michael Zucchi <notzed@ximian.com>
|
|
*
|
|
* Copyright 2000, 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.
|
|
*
|
|
*/
|
|
|
|
#ifndef _MAIL_MT
|
|
#define _MAIL_MT
|
|
|
|
#include <pthread.h>
|
|
#include "camel/camel-exception.h"
|
|
#include "e-util/e-msgport.h"
|
|
#include "camel/camel-object.h"
|
|
#include "camel/camel-operation.h"
|
|
|
|
typedef struct _mail_msg {
|
|
EMsg msg; /* parent type */
|
|
struct _mail_msg_op *ops; /* operation functions */
|
|
unsigned int seq; /* seq number for synchronisation */
|
|
CamelOperation *cancel; /* a cancellation/status handle */
|
|
CamelException ex; /* an initialised camel exception, upto the caller to use this */
|
|
struct _mail_msg_priv *priv; /* private for internal use */
|
|
} mail_msg_t;
|
|
|
|
/* callback functions for thread message */
|
|
typedef struct _mail_msg_op {
|
|
char *(*describe_msg)(struct _mail_msg *msg, int complete);
|
|
|
|
void (*receive_msg)(struct _mail_msg *msg); /* message received */
|
|
void (*reply_msg)(struct _mail_msg *msg); /* message replied */
|
|
void (*destroy_msg)(struct _mail_msg *msg); /* finalise message */
|
|
} mail_msg_op_t;
|
|
|
|
/* setup ports */
|
|
void mail_msg_init(void);
|
|
void mail_msg_cleanup (void);
|
|
|
|
/* allocate a new message */
|
|
void *mail_msg_new(mail_msg_op_t *ops, EMsgPort *reply_port, size_t size);
|
|
void mail_msg_free(void *msg);
|
|
void mail_msg_check_error(void *msg);
|
|
void mail_msg_cancel(unsigned int msgid);
|
|
void mail_msg_wait(unsigned int msgid);
|
|
void mail_msg_wait_all(void);
|
|
|
|
/* request a string/password */
|
|
char *mail_get_password (CamelService *service, const char *prompt,
|
|
gboolean secret, gboolean *cache);
|
|
|
|
/* present information and get an ok (or possibly cancel)
|
|
* "type" is as for gnome_message_box_new();
|
|
*/
|
|
gboolean mail_user_message (const char *type, const char *prompt, gboolean allow_cancel);
|
|
|
|
/* asynchronous event proxies */
|
|
typedef struct _MailAsyncEvent {
|
|
GMutex *lock;
|
|
GSList *tasks;
|
|
} MailAsyncEvent;
|
|
|
|
/* create a new async event handler */
|
|
MailAsyncEvent *mail_async_event_new(void);
|
|
/* forward a camel event (or other call) to the gui thread */
|
|
int mail_async_event_emit(MailAsyncEvent *ea, CamelObjectEventHookFunc func, CamelObject *o, void *event_data, void *data);
|
|
/* wait for all outstanding async events to complete */
|
|
void mail_async_event_destroy(MailAsyncEvent *ea);
|
|
|
|
/* Call a function in the gui thread, wait for it to return, type is the marshaller to use */
|
|
typedef enum {
|
|
MAIL_CALL_p_p,
|
|
MAIL_CALL_p_pp,
|
|
MAIL_CALL_p_ppp,
|
|
MAIL_CALL_p_pppp,
|
|
MAIL_CALL_p_ppippp,
|
|
} mail_call_t;
|
|
|
|
typedef void *(*MailMainFunc)();
|
|
|
|
void *mail_call_main(mail_call_t type, MailMainFunc func, ...);
|
|
|
|
/* a message port that receives messages in the gui thread, used for sending port */
|
|
extern EMsgPort *mail_gui_port;
|
|
/* a message port that receives messages in the gui thread, used for the reply port */
|
|
extern EMsgPort *mail_gui_reply_port;
|
|
|
|
/* some globally available threads */
|
|
extern EThread *mail_thread_queued; /* for operations that can (or should) be queued */
|
|
extern EThread *mail_thread_new; /* for operations that should run in a new thread each time */
|
|
extern EThread *mail_thread_queued_slow; /* for operations that can (or should) be queued, but take a long time */
|
|
|
|
/* The main thread. */
|
|
extern pthread_t mail_gui_thread;
|
|
|
|
/* A generic proxy event for anything that can be proxied during the life of the mailer (almost nothing) */
|
|
/* Note that almost all objects care about the lifecycle of their events, so this cannot be used */
|
|
extern MailAsyncEvent *mail_async_event;
|
|
|
|
#endif /* ! _MAIL_MT */
|