2010-05-22 07:45:40 +02:00
|
|
|
/* The Ruby interface to the notmuch mail library
|
|
|
|
*
|
2012-05-07 17:02:45 +02:00
|
|
|
* Copyright © 2010, 2011, 2012 Ali Polatel
|
2010-05-22 07:45:40 +02:00
|
|
|
*
|
|
|
|
* 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 3 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
|
2016-06-02 18:26:14 +02:00
|
|
|
* along with this program. If not, see https://www.gnu.org/licenses/ .
|
2010-05-22 07:45:40 +02:00
|
|
|
*
|
|
|
|
* Author: Ali Polatel <alip@exherbo.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DEFS_H
|
|
|
|
#define DEFS_H
|
|
|
|
|
2012-05-25 15:08:17 +02:00
|
|
|
#include <notmuch.h>
|
2010-05-22 07:45:40 +02:00
|
|
|
#include <ruby.h>
|
2021-05-17 21:39:15 +02:00
|
|
|
#include <talloc.h>
|
2010-05-22 07:45:40 +02:00
|
|
|
|
2012-06-24 20:48:34 +02:00
|
|
|
extern VALUE notmuch_rb_cDatabase;
|
|
|
|
extern VALUE notmuch_rb_cDirectory;
|
|
|
|
extern VALUE notmuch_rb_cFileNames;
|
|
|
|
extern VALUE notmuch_rb_cQuery;
|
|
|
|
extern VALUE notmuch_rb_cThreads;
|
|
|
|
extern VALUE notmuch_rb_cThread;
|
|
|
|
extern VALUE notmuch_rb_cMessages;
|
|
|
|
extern VALUE notmuch_rb_cMessage;
|
2010-05-22 07:45:40 +02:00
|
|
|
|
2012-06-24 20:48:34 +02:00
|
|
|
extern VALUE notmuch_rb_eBaseError;
|
|
|
|
extern VALUE notmuch_rb_eDatabaseError;
|
|
|
|
extern VALUE notmuch_rb_eMemoryError;
|
|
|
|
extern VALUE notmuch_rb_eReadOnlyError;
|
|
|
|
extern VALUE notmuch_rb_eXapianError;
|
|
|
|
extern VALUE notmuch_rb_eFileError;
|
|
|
|
extern VALUE notmuch_rb_eFileNotEmailError;
|
|
|
|
extern VALUE notmuch_rb_eNullPointerError;
|
|
|
|
extern VALUE notmuch_rb_eTagTooLongError;
|
|
|
|
extern VALUE notmuch_rb_eUnbalancedFreezeThawError;
|
|
|
|
extern VALUE notmuch_rb_eUnbalancedAtomicError;
|
2010-05-22 07:45:40 +02:00
|
|
|
|
2012-06-24 20:48:34 +02:00
|
|
|
extern ID ID_call;
|
2010-05-22 07:45:40 +02:00
|
|
|
|
2011-10-04 15:57:33 +02:00
|
|
|
/* RSTRING_PTR() is new in ruby-1.9 */
|
|
|
|
#if !defined(RSTRING_PTR)
|
|
|
|
# define RSTRING_PTR(v) (RSTRING((v))->ptr)
|
|
|
|
#endif /* !defined (RSTRING_PTR) */
|
|
|
|
|
ruby: move towards more modern RTypedData
Virtually the whole ruby core moved from RData to RTypeData, let's do so
ourselves too.
Basically the information typically passed through Data_Wrap_Struct is
now stored in a struct rb_data_type_t (mark and free functions). This
has the advantage that more information can be easily added, like the
name of the type, a custom data ponter, and more.
Data_Wrap_Struct is replaced with TypedData_Wrap_Struct, and the
information is stored in a struct rb_data_type_t, rather than passed
as arguments.
Check_Type is replaced with Check_TypedStruct, which is a wrapper for
rb_check_typeddata (with casts).
#define Check_TypedStruct(v, t) \
rb_check_typeddata(RBIMPL_CAST((VALUE)(v)), (t))
We can use rb_check_typeddata directly, just like we use rb_data_object_get
directly.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
2021-05-15 23:21:01 +02:00
|
|
|
extern const rb_data_type_t notmuch_rb_object_type;
|
2021-05-15 23:21:02 +02:00
|
|
|
extern const rb_data_type_t notmuch_rb_database_type;
|
|
|
|
extern const rb_data_type_t notmuch_rb_directory_type;
|
|
|
|
extern const rb_data_type_t notmuch_rb_query_type;
|
|
|
|
extern const rb_data_type_t notmuch_rb_threads_type;
|
|
|
|
extern const rb_data_type_t notmuch_rb_thread_type;
|
|
|
|
extern const rb_data_type_t notmuch_rb_messages_type;
|
|
|
|
extern const rb_data_type_t notmuch_rb_message_type;
|
|
|
|
extern const rb_data_type_t notmuch_rb_tags_type;
|
|
|
|
|
2021-05-17 21:39:14 +02:00
|
|
|
#define Data_Get_Notmuch_Rb_Object(obj, type, ptr) \
|
2021-05-15 23:20:58 +02:00
|
|
|
do { \
|
2021-05-15 23:21:02 +02:00
|
|
|
(ptr) = rb_check_typeddata ((obj), (type)); \
|
2021-05-15 23:20:59 +02:00
|
|
|
if (RB_UNLIKELY (!(ptr))) { \
|
2021-05-15 23:20:58 +02:00
|
|
|
VALUE cname = rb_class_name (CLASS_OF ((obj))); \
|
|
|
|
rb_raise (rb_eRuntimeError, "%"PRIsVALUE" object destroyed", cname); \
|
|
|
|
} \
|
2011-10-04 15:41:52 +02:00
|
|
|
} while (0)
|
|
|
|
|
2021-05-17 21:39:14 +02:00
|
|
|
#define Data_Get_Notmuch_Object(obj, type, ptr) \
|
|
|
|
do { \
|
|
|
|
notmuch_rb_object_t *rb_wrapper; \
|
|
|
|
Data_Get_Notmuch_Rb_Object ((obj), (type), rb_wrapper); \
|
|
|
|
(ptr) = rb_wrapper->nm_object; \
|
|
|
|
} while (0)
|
|
|
|
|
2021-05-15 23:21:02 +02:00
|
|
|
#define Data_Wrap_Notmuch_Object(klass, type, ptr) \
|
2021-05-17 21:39:15 +02:00
|
|
|
TypedData_Wrap_Struct ((klass), (type), notmuch_rb_object_create ((ptr), "notmuch_rb_object: " __location__))
|
2021-05-15 23:21:00 +02:00
|
|
|
|
2021-05-04 10:17:41 +02:00
|
|
|
#define Data_Get_Notmuch_Database(obj, ptr) \
|
2021-05-15 23:21:02 +02:00
|
|
|
Data_Get_Notmuch_Object ((obj), ¬much_rb_database_type, (ptr))
|
2011-10-04 15:41:52 +02:00
|
|
|
|
2021-05-04 10:17:41 +02:00
|
|
|
#define Data_Get_Notmuch_Directory(obj, ptr) \
|
2021-05-15 23:21:02 +02:00
|
|
|
Data_Get_Notmuch_Object ((obj), ¬much_rb_directory_type, (ptr))
|
2011-10-04 15:41:52 +02:00
|
|
|
|
2021-05-04 10:17:41 +02:00
|
|
|
#define Data_Get_Notmuch_Query(obj, ptr) \
|
2021-05-15 23:21:02 +02:00
|
|
|
Data_Get_Notmuch_Object ((obj), ¬much_rb_query_type, (ptr))
|
2011-10-04 15:41:52 +02:00
|
|
|
|
2021-05-04 10:17:41 +02:00
|
|
|
#define Data_Get_Notmuch_Threads(obj, ptr) \
|
2021-05-15 23:21:02 +02:00
|
|
|
Data_Get_Notmuch_Object ((obj), ¬much_rb_threads_type, (ptr))
|
2011-10-04 15:41:52 +02:00
|
|
|
|
2021-05-04 10:17:41 +02:00
|
|
|
#define Data_Get_Notmuch_Messages(obj, ptr) \
|
2021-05-15 23:21:02 +02:00
|
|
|
Data_Get_Notmuch_Object ((obj), ¬much_rb_messages_type, (ptr))
|
2011-10-04 15:41:52 +02:00
|
|
|
|
2021-05-04 10:17:41 +02:00
|
|
|
#define Data_Get_Notmuch_Thread(obj, ptr) \
|
2021-05-15 23:21:02 +02:00
|
|
|
Data_Get_Notmuch_Object ((obj), ¬much_rb_thread_type, (ptr))
|
2011-10-04 15:41:52 +02:00
|
|
|
|
2021-05-04 10:17:41 +02:00
|
|
|
#define Data_Get_Notmuch_Message(obj, ptr) \
|
2021-05-15 23:21:02 +02:00
|
|
|
Data_Get_Notmuch_Object ((obj), ¬much_rb_message_type, (ptr))
|
2021-05-04 10:17:41 +02:00
|
|
|
|
|
|
|
#define Data_Get_Notmuch_Tags(obj, ptr) \
|
2021-05-15 23:21:02 +02:00
|
|
|
Data_Get_Notmuch_Object ((obj), ¬much_rb_tags_type, (ptr))
|
2010-05-26 19:56:07 +02:00
|
|
|
|
2021-05-17 21:39:14 +02:00
|
|
|
typedef struct {
|
|
|
|
void *nm_object;
|
|
|
|
} notmuch_rb_object_t;
|
|
|
|
|
|
|
|
static inline void *
|
2021-05-17 21:39:15 +02:00
|
|
|
notmuch_rb_object_create (void *nm_object, const char *name)
|
2021-05-17 21:39:14 +02:00
|
|
|
{
|
2021-05-17 21:39:15 +02:00
|
|
|
notmuch_rb_object_t *rb_wrapper = talloc_named_const (NULL, sizeof (*rb_wrapper), name);
|
|
|
|
|
2021-05-17 21:39:14 +02:00
|
|
|
if (RB_UNLIKELY (!rb_wrapper))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
rb_wrapper->nm_object = nm_object;
|
2021-05-17 21:39:15 +02:00
|
|
|
talloc_steal (rb_wrapper, nm_object);
|
2021-05-17 21:39:14 +02:00
|
|
|
return rb_wrapper;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
notmuch_rb_object_free (void *rb_wrapper)
|
|
|
|
{
|
2021-05-17 21:39:15 +02:00
|
|
|
talloc_free (rb_wrapper);
|
2021-05-17 21:39:14 +02:00
|
|
|
}
|
|
|
|
|
2021-08-03 20:44:57 +02:00
|
|
|
static inline void
|
2021-05-15 23:21:03 +02:00
|
|
|
notmuch_rb_object_destroy (VALUE rb_object, const rb_data_type_t *type)
|
|
|
|
{
|
2021-05-17 21:39:14 +02:00
|
|
|
notmuch_rb_object_t *rb_wrapper;
|
2021-05-15 23:21:03 +02:00
|
|
|
|
2021-05-17 21:39:14 +02:00
|
|
|
Data_Get_Notmuch_Rb_Object (rb_object, type, rb_wrapper);
|
2021-05-15 23:21:03 +02:00
|
|
|
|
|
|
|
/* Call the corresponding notmuch_*_destroy function */
|
2021-08-03 20:44:57 +02:00
|
|
|
((void (*)(void *)) type->data) (rb_wrapper->nm_object);
|
2021-05-17 21:39:14 +02:00
|
|
|
notmuch_rb_object_free (rb_wrapper);
|
2021-05-15 23:21:03 +02:00
|
|
|
DATA_PTR (rb_object) = NULL;
|
|
|
|
}
|
|
|
|
|
2010-05-22 07:45:40 +02:00
|
|
|
/* status.c */
|
|
|
|
void
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_status_raise (notmuch_status_t status);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
/* database.c */
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_database_alloc (VALUE klass);
|
2010-05-26 19:56:07 +02:00
|
|
|
|
2021-07-07 05:45:32 +02:00
|
|
|
VALUE
|
|
|
|
notmuch_rb_database_destroy (VALUE self);
|
|
|
|
|
2010-05-26 19:56:07 +02:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_database_initialize (int argc, VALUE *argv, VALUE klass);
|
2010-05-26 19:56:07 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_database_open (int argc, VALUE *argv, VALUE klass);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_database_close (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_database_path (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_database_version (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_database_needs_upgrade (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_database_upgrade (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
2011-09-24 14:43:43 +02:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_database_begin_atomic (VALUE self);
|
2011-09-24 14:43:43 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_database_end_atomic (VALUE self);
|
2011-09-24 14:43:43 +02:00
|
|
|
|
2010-05-22 07:45:40 +02:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_database_get_directory (VALUE self, VALUE pathv);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_database_add_message (VALUE self, VALUE pathv);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_database_remove_message (VALUE self, VALUE pathv);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
2011-10-04 15:48:34 +02:00
|
|
|
VALUE
|
|
|
|
notmuch_rb_database_find_message (VALUE self, VALUE idv);
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
notmuch_rb_database_find_message_by_filename (VALUE self, VALUE pathv);
|
|
|
|
|
2016-03-06 12:56:28 +01:00
|
|
|
VALUE
|
|
|
|
notmuch_rb_database_get_all_tags (VALUE self);
|
|
|
|
|
2010-05-22 07:45:40 +02:00
|
|
|
VALUE
|
2021-05-24 04:19:09 +02:00
|
|
|
notmuch_rb_database_query_create (int argc, VALUE *argv, VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
/* directory.c */
|
2010-05-26 17:54:25 +02:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_directory_destroy (VALUE self);
|
2010-05-26 17:54:25 +02:00
|
|
|
|
2010-05-22 07:45:40 +02:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_directory_get_mtime (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_directory_set_mtime (VALUE self, VALUE mtimev);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_directory_get_child_files (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_directory_get_child_directories (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
/* filenames.c */
|
2023-03-27 23:59:40 +02:00
|
|
|
VALUE
|
|
|
|
notmuch_rb_filenames_get (notmuch_filenames_t *fnames);
|
|
|
|
|
2010-05-22 07:45:40 +02:00
|
|
|
/* query.c */
|
2010-05-26 17:54:25 +02:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_query_destroy (VALUE self);
|
2010-05-26 17:54:25 +02:00
|
|
|
|
2011-01-10 14:59:18 +01:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_query_get_sort (VALUE self);
|
2011-01-10 14:59:18 +01:00
|
|
|
|
2010-05-22 07:45:40 +02:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_query_set_sort (VALUE self, VALUE sortv);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
2011-01-10 14:59:18 +01:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_query_get_string (VALUE self);
|
2011-01-10 14:59:18 +01:00
|
|
|
|
2012-05-07 17:02:44 +02:00
|
|
|
VALUE
|
|
|
|
notmuch_rb_query_add_tag_exclude (VALUE self, VALUE tagv);
|
|
|
|
|
2012-05-07 17:02:46 +02:00
|
|
|
VALUE
|
|
|
|
notmuch_rb_query_set_omit_excluded (VALUE self, VALUE omitv);
|
|
|
|
|
2010-05-22 07:45:40 +02:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_query_search_threads (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_query_search_messages (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
2012-05-07 17:02:43 +02:00
|
|
|
VALUE
|
|
|
|
notmuch_rb_query_count_messages (VALUE self);
|
|
|
|
|
2014-05-10 23:40:11 +02:00
|
|
|
VALUE
|
|
|
|
notmuch_rb_query_count_threads (VALUE self);
|
|
|
|
|
2010-05-22 07:45:40 +02:00
|
|
|
/* threads.c */
|
2010-05-26 17:54:25 +02:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_threads_destroy (VALUE self);
|
2010-05-26 17:54:25 +02:00
|
|
|
|
2010-05-22 07:45:40 +02:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_threads_each (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
/* messages.c */
|
2010-05-26 17:54:25 +02:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_messages_destroy (VALUE self);
|
2010-05-26 17:54:25 +02:00
|
|
|
|
2010-05-22 07:45:40 +02:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_messages_each (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_messages_collect_tags (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
/* thread.c */
|
2010-05-26 17:54:25 +02:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_thread_destroy (VALUE self);
|
2010-05-26 17:54:25 +02:00
|
|
|
|
2010-05-22 07:45:40 +02:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_thread_get_thread_id (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_thread_get_total_messages (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_thread_get_toplevel_messages (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
2012-11-25 05:57:07 +01:00
|
|
|
VALUE
|
|
|
|
notmuch_rb_thread_get_messages (VALUE self);
|
|
|
|
|
2010-05-22 07:45:40 +02:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_thread_get_matched_messages (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_thread_get_authors (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_thread_get_subject (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_thread_get_oldest_date (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_thread_get_newest_date (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_thread_get_tags (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
/* message.c */
|
2010-05-26 17:54:25 +02:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_message_destroy (VALUE self);
|
2010-05-26 17:54:25 +02:00
|
|
|
|
2010-05-22 07:45:40 +02:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_message_get_message_id (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_message_get_thread_id (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_message_get_replies (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_message_get_filename (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
2011-01-10 15:03:31 +01:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_message_get_filenames (VALUE self);
|
2011-01-10 15:03:31 +01:00
|
|
|
|
2010-05-22 07:45:40 +02:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_message_get_flag (VALUE self, VALUE flagv);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_message_set_flag (VALUE self, VALUE flagv, VALUE valuev);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_message_get_date (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_message_get_header (VALUE self, VALUE headerv);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_message_get_tags (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_message_add_tag (VALUE self, VALUE tagv);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_message_remove_tag (VALUE self, VALUE tagv);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_message_remove_all_tags (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
2011-01-10 15:02:43 +01:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_message_maildir_flags_to_tags (VALUE self);
|
2011-01-10 15:02:43 +01:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_message_tags_to_maildir_flags (VALUE self);
|
2011-01-10 15:02:43 +01:00
|
|
|
|
2010-05-22 07:45:40 +02:00
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_message_freeze (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
VALUE
|
2011-10-04 15:41:52 +02:00
|
|
|
notmuch_rb_message_thaw (VALUE self);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
/* tags.c */
|
2023-03-23 00:43:44 +01:00
|
|
|
VALUE
|
|
|
|
notmuch_rb_tags_get (notmuch_tags_t *tags);
|
|
|
|
|
2010-05-22 07:45:40 +02:00
|
|
|
/* init.c */
|
|
|
|
void
|
2011-10-04 15:41:52 +02:00
|
|
|
Init_notmuch (void);
|
2010-05-22 07:45:40 +02:00
|
|
|
|
|
|
|
#endif
|