2000-11-21 Not Zed <NotZed@HelixCode.com> * providers/local/camel-mh-summary.c (mh_summary_sync_message): Shite, -1 on error, >=0 on success. So i've just been truncating all the messages I touched, good one zed. (mh_summary_sync_message): Sigh, and write to the right damn fd as well. (mh_summary_sync_message): Argh, and we need to compare the length of the old xev -1 to the new xev, to check if we can optimise it. * camel-folder.c (camel_folder_change_info_new): Init the pool. (camel_folder_change_info_add_source): Allocate string in the pool. (camel_folder_change_info_add_source_list): (camel_folder_change_info_add_update): No longer free the key, as it cannot be yet. (change_info_add_uid): Add a new arg, copy, telling it whether to copy the uid argument or not, and copy using mempool_strdup. (change_info_cat): Tell add_uid to copy the string. (camel_folder_change_info_add_update): Call add_uid directly. (change_info_remove): Call add_uid directly, with no copy, and dont free the key. (change_info_free_update): No longer required since we dont malloc the keys. (camel_folder_change_info_add_uid): Fix for add_uid change. (camel_folder_change_info_remove_uid): (camel_folder_change_info_change_uid): (change_info_clear): No longer needed, just set the size to 0 on the array directly. (camel_folder_change_info_clear): Empty the arrays directly, and flush the mempool too, and also clear uid_source, incase anyone was silly enough to call us in the wrong order. (camel_folder_change_info_free): Dont bother clearing the array's contents, just free the pool and throw away all the indexes. * camel-folder.h: Added a mempool to CamelFolderChangeInfo to store the uid's we get. * camel-folder-search.c (search_match_all): If we are only matching a single info, just use that/do the search. (camel_folder_search_match_expression): New function. Matches a single message info against an expression. (camel_folder_search_init): Init a hash table used to map the returned gptrarrays' to mempools. (camel_folder_search_execute_expression): Store all of the string data in a mempool, slightly faster, less wasted space (usually),. (camel_folder_search_free_result): Check for the mempool that stores the data for the list, and free that if we have it, otherwise assume we need to use g_free() (which should only happen if the list is empty at the moment). : commented out the debugging prints. Got sick of 'executing header search' crap. * providers/vee/camel-vee-folder.c (camel_vee_folder_init): Init changes. (camel_vee_folder_finalise): Free changes. (vfolder_add_match): Simple helper to add a new matching info record. (camel_vee_folder_add_folder): Only trigger a changed event if we have changes. (vfolder_change_match): New function, changes our local vfolder info to match the source. (vfolder_add_match): Add a new info to the vfolder list. (vfolder_remove_match): Remove a no-longer matching info from the vfolder summary. (message_changed): check if the message still matches, and remove/etc as required. (camel_vee_folder_finalise, init): init/free search object. (vee_folder_build_folder): Build the changes to the folder into the changes data, as we go. (folder_changed): If the folder gave us an explicit list of changes, then process each one separately (unless there's a lot added/changed). * providers/vee/camel-vee-folder.h: Added a changes field to the folder. svn path=/trunk/; revision=6628
300 lines
9.9 KiB
C
300 lines
9.9 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/* camel-folder.h: Abstract class for an email folder */
|
|
|
|
/*
|
|
* Author:
|
|
* Bertrand Guiheneuf <bertrand@helixcode.com>
|
|
*
|
|
* Copyright 1999, 2000 Helix Code, Inc. (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
|
|
*/
|
|
|
|
|
|
#ifndef CAMEL_FOLDER_H
|
|
#define CAMEL_FOLDER_H 1
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#pragma }
|
|
#endif /* __cplusplus }*/
|
|
|
|
#include <camel/camel-object.h>
|
|
#include <camel/camel-folder-summary.h>
|
|
|
|
#define CAMEL_FOLDER_TYPE (camel_folder_get_type ())
|
|
#define CAMEL_FOLDER(obj) (CAMEL_CHECK_CAST((obj), CAMEL_FOLDER_TYPE, CamelFolder))
|
|
#define CAMEL_FOLDER_CLASS(k) (CAMEL_CHECK_CLASS_CAST ((k), CAMEL_FOLDER_TYPE, CamelFolderClass))
|
|
#define CAMEL_IS_FOLDER(o) (CAMEL_CHECK_TYPE((o), CAMEL_FOLDER_TYPE))
|
|
|
|
typedef struct _CamelFolderChangeInfo CamelFolderChangeInfo;
|
|
|
|
struct _CamelFolderChangeInfo {
|
|
GPtrArray *uid_added;
|
|
GPtrArray *uid_removed;
|
|
GPtrArray *uid_changed;
|
|
|
|
GHashTable *uid_source; /* used to create unique lists */
|
|
struct _EMemPool *uid_pool; /* pool used to store copies of uid strings */
|
|
};
|
|
|
|
struct _CamelFolder
|
|
{
|
|
CamelObject parent_object;
|
|
|
|
int frozen;
|
|
CamelFolderChangeInfo *changed_frozen; /* queues changed events */
|
|
|
|
char *name;
|
|
char *full_name;
|
|
CamelStore *parent_store;
|
|
|
|
guint32 permanent_flags;
|
|
gboolean has_summary_capability:1;
|
|
gboolean has_search_capability:1;
|
|
};
|
|
|
|
typedef struct {
|
|
CamelObjectClass parent_class;
|
|
|
|
/* Virtual methods */
|
|
void (*refresh_info) (CamelFolder *folder, CamelException *ex);
|
|
|
|
void (*sync) (CamelFolder *folder, gboolean expunge,
|
|
CamelException *ex);
|
|
|
|
const char * (*get_name) (CamelFolder *folder);
|
|
const char * (*get_full_name) (CamelFolder *folder);
|
|
|
|
CamelStore * (*get_parent_store) (CamelFolder *folder);
|
|
|
|
void (*expunge) (CamelFolder *folder,
|
|
CamelException *ex);
|
|
|
|
int (*get_message_count) (CamelFolder *folder);
|
|
|
|
int (*get_unread_message_count) (CamelFolder *folder);
|
|
|
|
void (*append_message) (CamelFolder *folder,
|
|
CamelMimeMessage *message,
|
|
const CamelMessageInfo *info,
|
|
CamelException *ex);
|
|
|
|
guint32 (*get_permanent_flags) (CamelFolder *folder);
|
|
guint32 (*get_message_flags) (CamelFolder *folder,
|
|
const char *uid);
|
|
void (*set_message_flags) (CamelFolder *folder,
|
|
const char *uid,
|
|
guint32 flags, guint32 set);
|
|
|
|
gboolean (*get_message_user_flag) (CamelFolder *folder,
|
|
const char *uid,
|
|
const char *name);
|
|
void (*set_message_user_flag) (CamelFolder *folder,
|
|
const char *uid,
|
|
const char *name,
|
|
gboolean value);
|
|
|
|
const char * (*get_message_user_tag) (CamelFolder *folder,
|
|
const char *uid,
|
|
const char *name);
|
|
void (*set_message_user_tag) (CamelFolder *folder,
|
|
const char *uid,
|
|
const char *name,
|
|
const char *value);
|
|
|
|
CamelMimeMessage * (*get_message) (CamelFolder *folder,
|
|
const char *uid,
|
|
CamelException *ex);
|
|
|
|
GPtrArray * (*get_uids) (CamelFolder *folder);
|
|
void (*free_uids) (CamelFolder *folder,
|
|
GPtrArray *array);
|
|
|
|
GPtrArray * (*get_summary) (CamelFolder *folder);
|
|
void (*free_summary) (CamelFolder *folder,
|
|
GPtrArray *summary);
|
|
|
|
gboolean (*has_search_capability) (CamelFolder *folder);
|
|
|
|
GPtrArray * (*search_by_expression) (CamelFolder *folder,
|
|
const char *expression,
|
|
CamelException *ex);
|
|
|
|
void (*search_free) (CamelFolder *folder, GPtrArray *result);
|
|
|
|
const CamelMessageInfo * (*get_message_info) (CamelFolder *, const char *uid);
|
|
|
|
void (*copy_message_to) (CamelFolder *source,
|
|
const char *uid,
|
|
CamelFolder *destination,
|
|
CamelException *ex);
|
|
|
|
void (*move_message_to) (CamelFolder *source,
|
|
const char *uid,
|
|
CamelFolder *destination,
|
|
CamelException *ex);
|
|
|
|
void (*freeze) (CamelFolder *folder);
|
|
void (*thaw) (CamelFolder *folder);
|
|
} CamelFolderClass;
|
|
|
|
/* Standard Camel function */
|
|
CamelType camel_folder_get_type (void);
|
|
|
|
|
|
/* public methods */
|
|
void camel_folder_construct (CamelFolder *folder,
|
|
CamelStore *parent_store,
|
|
const char *full_name,
|
|
const char *name);
|
|
|
|
void camel_folder_refresh_info (CamelFolder * folder,
|
|
CamelException * ex);
|
|
void camel_folder_sync (CamelFolder *folder,
|
|
gboolean expunge,
|
|
CamelException *ex);
|
|
|
|
CamelStore * camel_folder_get_parent_store (CamelFolder *folder);
|
|
|
|
|
|
/* delete operations */
|
|
void camel_folder_expunge (CamelFolder *folder,
|
|
CamelException *ex);
|
|
|
|
|
|
/* folder name operations */
|
|
const char * camel_folder_get_name (CamelFolder *folder);
|
|
const char * camel_folder_get_full_name (CamelFolder *folder);
|
|
|
|
|
|
/* various properties accessors */
|
|
guint32 camel_folder_get_permanent_flags (CamelFolder *folder);
|
|
|
|
guint32 camel_folder_get_message_flags (CamelFolder *folder,
|
|
const char *uid);
|
|
|
|
void camel_folder_set_message_flags (CamelFolder *folder,
|
|
const char *uid,
|
|
guint32 flags,
|
|
guint32 set);
|
|
|
|
gboolean camel_folder_get_message_user_flag (CamelFolder *folder,
|
|
const char *uid,
|
|
const char *name);
|
|
|
|
void camel_folder_set_message_user_flag (CamelFolder *folder,
|
|
const char *uid,
|
|
const char *name,
|
|
gboolean value);
|
|
const char * camel_folder_get_message_user_tag (CamelFolder *folder,
|
|
const char *uid,
|
|
const char *name);
|
|
|
|
void camel_folder_set_message_user_tag (CamelFolder *folder,
|
|
const char *uid,
|
|
const char *name,
|
|
const char *value);
|
|
|
|
|
|
|
|
/* message manipulation */
|
|
void camel_folder_append_message (CamelFolder *folder,
|
|
CamelMimeMessage *message,
|
|
const CamelMessageInfo *info,
|
|
CamelException *ex);
|
|
|
|
|
|
/* summary related operations */
|
|
gboolean camel_folder_has_summary_capability (CamelFolder *folder);
|
|
|
|
|
|
int camel_folder_get_message_count (CamelFolder *folder);
|
|
|
|
int camel_folder_get_unread_message_count (CamelFolder *folder);
|
|
|
|
GPtrArray * camel_folder_get_summary (CamelFolder *folder);
|
|
void camel_folder_free_summary (CamelFolder *folder,
|
|
GPtrArray *array);
|
|
|
|
/* uid based access operations */
|
|
CamelMimeMessage * camel_folder_get_message (CamelFolder *folder,
|
|
const char *uid,
|
|
CamelException *ex);
|
|
#define camel_folder_delete_message(folder, uid) \
|
|
camel_folder_set_message_flags (folder, uid, CAMEL_MESSAGE_DELETED, CAMEL_MESSAGE_DELETED)
|
|
|
|
GPtrArray * camel_folder_get_uids (CamelFolder *folder);
|
|
void camel_folder_free_uids (CamelFolder *folder,
|
|
GPtrArray *array);
|
|
|
|
/* search api */
|
|
gboolean camel_folder_has_search_capability (CamelFolder *folder);
|
|
GPtrArray * camel_folder_search_by_expression (CamelFolder *folder,
|
|
const char *expression,
|
|
CamelException *ex);
|
|
void camel_folder_search_free (CamelFolder *folder, GPtrArray *);
|
|
|
|
/* summary info */
|
|
const CamelMessageInfo *camel_folder_get_message_info (CamelFolder *summary,
|
|
const char *uid);
|
|
|
|
void camel_folder_copy_message_to (CamelFolder *source,
|
|
const char *uid,
|
|
CamelFolder *dest,
|
|
CamelException *ex);
|
|
|
|
void camel_folder_move_message_to (CamelFolder *source,
|
|
const char *uid,
|
|
CamelFolder *dest,
|
|
CamelException *ex);
|
|
|
|
void camel_folder_freeze (CamelFolder *folder);
|
|
void camel_folder_thaw (CamelFolder *folder);
|
|
|
|
|
|
/* For use by subclasses (for free_{uids,summary,subfolder_names}) */
|
|
void camel_folder_free_nop (CamelFolder *folder, GPtrArray *array);
|
|
void camel_folder_free_shallow (CamelFolder *folder, GPtrArray *array);
|
|
void camel_folder_free_deep (CamelFolder *folder, GPtrArray *array);
|
|
|
|
/* update functions for change info */
|
|
CamelFolderChangeInfo * camel_folder_change_info_new (void);
|
|
void camel_folder_change_info_clear (CamelFolderChangeInfo *info);
|
|
void camel_folder_change_info_free (CamelFolderChangeInfo *info);
|
|
gboolean camel_folder_change_info_changed (CamelFolderChangeInfo *info);
|
|
|
|
/* for building diff's automatically */
|
|
void camel_folder_change_info_add_source (CamelFolderChangeInfo *info, const char *uid);
|
|
void camel_folder_change_info_add_source_list(CamelFolderChangeInfo *info, const GPtrArray *list);
|
|
void camel_folder_change_info_add_update (CamelFolderChangeInfo *info, const char *uid);
|
|
void camel_folder_change_info_add_update_list(CamelFolderChangeInfo *info, const GPtrArray *list);
|
|
void camel_folder_change_info_build_diff (CamelFolderChangeInfo *info);
|
|
|
|
/* for manipulating diff's directly */
|
|
void camel_folder_change_info_cat (CamelFolderChangeInfo *info, CamelFolderChangeInfo *s);
|
|
void camel_folder_change_info_add_uid (CamelFolderChangeInfo *info, const char *uid);
|
|
void camel_folder_change_info_remove_uid (CamelFolderChangeInfo *info, const char *uid);
|
|
void camel_folder_change_info_change_uid (CamelFolderChangeInfo *info, const char *uid);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* CAMEL_FOLDER_H */
|
|
|