diff options
author | NotZed <notzed@zedzone.helixcode.com> | 2000-02-14 13:39:02 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2000-02-14 13:39:02 +0800 |
commit | aeaa2ed70043e607e1da431d8f33726590f4c83b (patch) | |
tree | 6b017340f52b51b3eb55c0c847089ec5ca505263 /camel/camel-folder.c | |
parent | ddcfc699c72ee253307f2939492eb469beba3834 (diff) | |
download | gsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.tar gsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.tar.gz gsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.tar.bz2 gsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.tar.lz gsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.tar.xz gsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.tar.zst gsoc2013-evolution-aeaa2ed70043e607e1da431d8f33726590f4c83b.zip |
New file, implements the search api for mbox folders.
2000-02-13 NotZed <notzed@zedzone.helixcode.com>
* providers/mbox/camel-mbox-search.c: New file, implements the
search api for mbox folders.
* providers/mbox/Makefile.am: Link with ibex.
* camel-folder.c (camel_folder_has_search_capability): Api
additions.
(camel_folder_search_by_expression): Ditto.
2000-02-12 NotZed <notzed@zedzone.helixcode.com>
* providers/mbox/camel-mbox-folder.c (_set_name): Setup index
filename as well.
(_init_with_store): Init index filename. Hmm, none of these
names ever seem to get free'd (FIXME?)
* providers/mbox/camel-mbox-folder.h: Add index file name.
2000-02-12 NotZed <notzed@helixcode.com>
* camel-folder.h: Add folder search functions.
** Created ChangeLog just for camel **
- refer to ../ChangeLog for changes prior to this date.
svn path=/trunk/; revision=1772
Diffstat (limited to 'camel/camel-folder.c')
-rw-r--r-- | camel/camel-folder.c | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/camel/camel-folder.c b/camel/camel-folder.c index 0930550cbf..d7366d51b4 100644 --- a/camel/camel-folder.c +++ b/camel/camel-folder.c @@ -1807,5 +1807,39 @@ camel_folder_get_uid_list (CamelFolder *folder, CamelException *ex) return CF_CLASS (folder)->get_uid_list (folder, ex); } +/** + * camel_folder_has_search_capability: + * @folder: Folder object + * + * Checks if a folder supports searching. + * + * Return value: TRUE if the folder supports UIDs + **/ +gboolean +camel_folder_has_search_capability (CamelFolder *folder, CamelException *ex) +{ + if (!CAMEL_IS_FOLDER(folder)) { + camel_exception_set (ex, + CAMEL_EXCEPTION_FOLDER_INVALID, + "Invalid folder"); + return FALSE; + } + + return folder->has_search_capability; +} + +GList *camel_folder_search_by_expression (CamelFolder *folder, + const char *expression, + CamelException *ex) +{ + if (!CAMEL_IS_FOLDER(folder)) { + camel_exception_set (ex, + CAMEL_EXCEPTION_FOLDER_INVALID, + "Invalid folder"); + return NULL; + } + + return CF_CLASS (folder)->search_by_expression (folder, expression, ex); +} /* **** */ |