mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
lib/parse-sexp: handle saved queries
This provides functionality analogous to query: in the Xapian QueryParser based parser. Perhaps counterintuitively, the saved queries currently have to be in the original query syntax (i.e. not s-expressions).
This commit is contained in:
parent
036734252d
commit
6ab2d9b1a2
3 changed files with 58 additions and 8 deletions
|
@ -153,6 +153,12 @@ that are neither operators nor fields.
|
|||
those matching all of |q1| ... |qn|. Supported in most term [#not-path]_ or
|
||||
phrase fields. Most commonly used in the ``thread`` field.
|
||||
|
||||
``(query`` *atom* ``)``
|
||||
Expand to the saved query named by *atom*. See
|
||||
:any:`notmuch-config(1)` for more. Note that the saved query must
|
||||
be in infix syntax (:any:`notmuch-search-terms(7)`). Not supported
|
||||
inside fields.
|
||||
|
||||
``(regex`` *atom* ``)`` ``(rx`` *atom* ``)``
|
||||
Interpret *atom* as a POSIX.2 regular expression (see
|
||||
:manpage:`regex(7)`). This applies in term fields and a subset [#not-phrase]_ of
|
||||
|
|
|
@ -17,6 +17,7 @@ typedef enum {
|
|||
SEXP_FLAG_DO_REGEX = 1 << 5,
|
||||
SEXP_FLAG_EXPAND = 1 << 6,
|
||||
SEXP_FLAG_DO_EXPAND = 1 << 7,
|
||||
SEXP_FLAG_ORPHAN = 1 << 8,
|
||||
} _sexp_flag_t;
|
||||
|
||||
/*
|
||||
|
@ -58,7 +59,7 @@ static _sexp_prefix_t prefixes[] =
|
|||
{ "id", Xapian::Query::OP_OR, Xapian::Query::MatchNothing,
|
||||
SEXP_FLAG_FIELD | SEXP_FLAG_BOOLEAN | SEXP_FLAG_WILDCARD | SEXP_FLAG_REGEX },
|
||||
{ "infix", Xapian::Query::OP_INVALID, Xapian::Query::MatchAll,
|
||||
SEXP_FLAG_SINGLE },
|
||||
SEXP_FLAG_SINGLE | SEXP_FLAG_ORPHAN },
|
||||
{ "is", Xapian::Query::OP_AND, Xapian::Query::MatchAll,
|
||||
SEXP_FLAG_FIELD | SEXP_FLAG_BOOLEAN | SEXP_FLAG_WILDCARD | SEXP_FLAG_REGEX | SEXP_FLAG_EXPAND },
|
||||
{ "matching", Xapian::Query::OP_AND, Xapian::Query::MatchAll,
|
||||
|
@ -77,6 +78,8 @@ static _sexp_prefix_t prefixes[] =
|
|||
SEXP_FLAG_FIELD | SEXP_FLAG_BOOLEAN | SEXP_FLAG_WILDCARD | SEXP_FLAG_REGEX },
|
||||
{ "property", Xapian::Query::OP_AND, Xapian::Query::MatchAll,
|
||||
SEXP_FLAG_FIELD | SEXP_FLAG_BOOLEAN | SEXP_FLAG_WILDCARD | SEXP_FLAG_REGEX | SEXP_FLAG_EXPAND },
|
||||
{ "query", Xapian::Query::OP_INVALID, Xapian::Query::MatchNothing,
|
||||
SEXP_FLAG_SINGLE | SEXP_FLAG_ORPHAN },
|
||||
{ "regex", Xapian::Query::OP_INVALID, Xapian::Query::MatchAll,
|
||||
SEXP_FLAG_SINGLE | SEXP_FLAG_DO_REGEX },
|
||||
{ "rx", Xapian::Query::OP_INVALID, Xapian::Query::MatchAll,
|
||||
|
@ -245,13 +248,8 @@ _sexp_expand_query (notmuch_database_t *notmuch,
|
|||
}
|
||||
|
||||
static notmuch_status_t
|
||||
_sexp_parse_infix (notmuch_database_t *notmuch, const _sexp_prefix_t *parent,
|
||||
const sexp_t *sx, Xapian::Query &output)
|
||||
_sexp_parse_infix (notmuch_database_t *notmuch, const sexp_t *sx, Xapian::Query &output)
|
||||
{
|
||||
if (parent) {
|
||||
_notmuch_database_log (notmuch, "'infix' not supported inside '%s'\n", parent->name);
|
||||
return NOTMUCH_STATUS_BAD_QUERY_SYNTAX;
|
||||
}
|
||||
try {
|
||||
output = notmuch->query_parser->parse_query (sx->val, NOTMUCH_QUERY_PARSER_FLAGS);
|
||||
} catch (const Xapian::QueryParserError &error) {
|
||||
|
@ -361,6 +359,12 @@ _sexp_to_xapian_query (notmuch_database_t *notmuch, const _sexp_prefix_t *parent
|
|||
parent = prefix;
|
||||
}
|
||||
|
||||
if (parent && (prefix->flags & SEXP_FLAG_ORPHAN)) {
|
||||
_notmuch_database_log (notmuch, "'%s' not supported inside '%s'\n",
|
||||
prefix->name, parent->name);
|
||||
return NOTMUCH_STATUS_BAD_QUERY_SYNTAX;
|
||||
}
|
||||
|
||||
if ((prefix->flags & SEXP_FLAG_SINGLE) &&
|
||||
(! sx->list->next || sx->list->next->next || sx->list->next->ty != SEXP_VALUE)) {
|
||||
_notmuch_database_log (notmuch, "'%s' expects single atom as argument\n",
|
||||
|
@ -369,7 +373,11 @@ _sexp_to_xapian_query (notmuch_database_t *notmuch, const _sexp_prefix_t *parent
|
|||
}
|
||||
|
||||
if (strcmp (prefix->name, "infix") == 0) {
|
||||
return _sexp_parse_infix (notmuch, parent, sx->list->next, output);
|
||||
return _sexp_parse_infix (notmuch, sx->list->next, output);
|
||||
}
|
||||
|
||||
if (strcmp (prefix->name, "query") == 0) {
|
||||
return _notmuch_query_name_to_query (notmuch, sx->list->next->val, output);
|
||||
}
|
||||
|
||||
if (prefix->xapian_op == Xapian::Query::OP_WILDCARD)
|
||||
|
|
|
@ -217,10 +217,46 @@ notmuch search mimetype:text/html > EXPECTED
|
|||
notmuch search --query=sexp '(mimetype text html)' > OUTPUT
|
||||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
||||
QUERYSTR="date:2009-11-18..2009-11-18 and tag:unread"
|
||||
QUERYSTR2="query:test and subject:Maildir"
|
||||
notmuch config set --database query.test "$QUERYSTR"
|
||||
notmuch config set query.test2 "$QUERYSTR2"
|
||||
|
||||
test_begin_subtest "ill-formed named query search"
|
||||
notmuch search --query=sexp '(query)' > OUTPUT 2>&1
|
||||
cat <<EOF > EXPECTED
|
||||
notmuch search: Syntax error in query
|
||||
'query' expects single atom as argument
|
||||
EOF
|
||||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
||||
test_begin_subtest "ill-formed named query search 2"
|
||||
notmuch search --query=sexp '(to (query))' > OUTPUT 2>&1
|
||||
cat <<EOF > EXPECTED
|
||||
notmuch search: Syntax error in query
|
||||
'query' not supported inside 'to'
|
||||
EOF
|
||||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
||||
test_begin_subtest "search named query"
|
||||
notmuch search --query=sexp '(query test)' > OUTPUT
|
||||
notmuch search $QUERYSTR > EXPECTED
|
||||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
||||
test_begin_subtest "Search by 'subject' (utf-8, phrase-token):"
|
||||
output=$(notmuch search --query=sexp '(subject utf8-sübjéct)' | notmuch_search_sanitize)
|
||||
test_expect_equal "$output" "thread:XXX 2000-01-01 [1/1] Notmuch Test Suite; utf8-sübjéct (inbox unread)"
|
||||
|
||||
test_begin_subtest "search named query with other terms"
|
||||
notmuch search --query=sexp '(and (query test) (subject Maildir))' > OUTPUT
|
||||
notmuch search $QUERYSTR and subject:Maildir > EXPECTED
|
||||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
||||
test_begin_subtest "search nested named query"
|
||||
notmuch search --query=sexp '(query test2)' > OUTPUT
|
||||
notmuch search $QUERYSTR2 > EXPECTED
|
||||
test_expect_equal_file EXPECTED OUTPUT
|
||||
|
||||
test_begin_subtest "Search by 'subject' (utf-8, quoted string):"
|
||||
output=$(notmuch search --query=sexp '(subject "utf8 sübjéct")' | notmuch_search_sanitize)
|
||||
test_expect_equal "$output" "thread:XXX 2000-01-01 [1/1] Notmuch Test Suite; utf8-sübjéct (inbox unread)"
|
||||
|
|
Loading…
Reference in a new issue