2009-10-21 06:03:30 +02:00
|
|
|
/* database-private.h - For peeking into the internals of notmuch_database_t
|
|
|
|
*
|
|
|
|
* Copyright © 2009 Carl Worth
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* along with this program. If not, see http://www.gnu.org/licenses/ .
|
|
|
|
*
|
|
|
|
* Author: Carl Worth <cworth@cworth.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NOTMUCH_DATABASE_PRIVATE_H
|
|
|
|
#define NOTMUCH_DATABASE_PRIVATE_H
|
|
|
|
|
2010-02-09 20:09:30 +01:00
|
|
|
/* According to WG14/N1124, a C++ implementation won't provide us a
|
|
|
|
* macro like PRIx64 (which gives a printf format string for
|
|
|
|
* formatting a uint64_t as hexadecimal) unless we define
|
|
|
|
* __STDC_FORMAT_MACROS before including inttypes.h. That's annoying,
|
|
|
|
* but there it is.
|
|
|
|
*/
|
|
|
|
#define __STDC_FORMAT_MACROS
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
2009-10-21 06:03:30 +02:00
|
|
|
#include "notmuch-private.h"
|
|
|
|
|
|
|
|
#include <xapian.h>
|
|
|
|
|
2010-11-02 06:01:15 +01:00
|
|
|
#pragma GCC visibility push(hidden)
|
|
|
|
|
2009-10-21 06:03:30 +02:00
|
|
|
struct _notmuch_database {
|
2009-11-22 03:54:20 +01:00
|
|
|
notmuch_bool_t exception_reported;
|
2010-02-08 20:33:33 +01:00
|
|
|
|
2009-10-21 06:03:30 +02:00
|
|
|
char *path;
|
2010-02-08 20:33:33 +01:00
|
|
|
|
|
|
|
notmuch_bool_t needs_upgrade;
|
2009-11-21 20:54:25 +01:00
|
|
|
notmuch_database_mode_t mode;
|
2011-06-11 05:35:06 +02:00
|
|
|
int atomic_nesting;
|
2009-11-21 20:54:25 +01:00
|
|
|
Xapian::Database *xapian_db;
|
2010-02-08 20:33:33 +01:00
|
|
|
|
2010-06-04 19:16:53 +02:00
|
|
|
unsigned int last_doc_id;
|
2010-02-08 20:33:33 +01:00
|
|
|
uint64_t last_thread_id;
|
|
|
|
|
2009-10-21 09:35:56 +02:00
|
|
|
Xapian::QueryParser *query_parser;
|
2009-10-28 18:42:07 +01:00
|
|
|
Xapian::TermGenerator *term_gen;
|
2009-11-23 16:58:35 +01:00
|
|
|
Xapian::ValueRangeProcessor *value_range_processor;
|
lib: add date range query support
Add a custom value range processor to enable date and time searches of
the form date:since..until, where "since" and "until" are expressions
understood by the previously added date/time parser, to restrict the
results to messages within a particular time range (based on the Date:
header).
If "since" or "until" describes date/time at an accuracy of days or
less, the values are rounded according to the accuracy, towards past
for "since" and towards future for "until". For example,
date:november..yesterday would match from the beginning of November
until the end of yesterday. Expressions such as date:today..today
means since the beginning of today until the end of today.
Open-ended ranges are supported (since Xapian 1.2.1), i.e. you can
specify date:..until or date:since.. to not limit the start or end
date, respectively.
CAVEATS:
Xapian does not support spaces in range expressions. You can replace
the spaces with '_', or (in most cases) '-', or (in some cases) leave
the spaces out altogether.
Entering date:expr without ".." (for example date:yesterday) will not
work as you might expect. You can achieve the expected result by
duplicating the expr both sides of ".." (for example
date:yesterday..yesterday).
Open-ended ranges won't work with pre-1.2.1 Xapian, but they don't
produce an error either.
Signed-off-by: Jani Nikula <jani@nikula.org>
2012-10-30 21:32:37 +01:00
|
|
|
Xapian::ValueRangeProcessor *date_range_processor;
|
2009-10-21 06:03:30 +02:00
|
|
|
};
|
|
|
|
|
2010-12-09 06:32:35 +01:00
|
|
|
/* Return the list of terms from the given iterator matching a prefix.
|
|
|
|
* The prefix will be stripped from the strings in the returned list.
|
|
|
|
* The list will be allocated using ctx as the talloc context.
|
2009-11-23 01:10:54 +01:00
|
|
|
*
|
|
|
|
* The function returns NULL on failure.
|
|
|
|
*/
|
2010-12-09 06:32:35 +01:00
|
|
|
notmuch_string_list_t *
|
|
|
|
_notmuch_database_get_terms_with_prefix (void *ctx, Xapian::TermIterator &i,
|
|
|
|
Xapian::TermIterator &end,
|
|
|
|
const char *prefix);
|
2009-11-23 01:10:54 +01:00
|
|
|
|
2010-11-02 06:01:15 +01:00
|
|
|
#pragma GCC visibility pop
|
|
|
|
|
2009-10-21 06:03:30 +02:00
|
|
|
#endif
|