mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
lib: strip trailing '/' from pathnames (sexp queries).
This changes makes the sexp query parser consistent with the infix one in ignoring trailing '/'. Here we do a bit better and ignore any number of trailing '/'.
This commit is contained in:
parent
8358841c66
commit
2c1d1107f5
2 changed files with 11 additions and 7 deletions
|
@ -33,6 +33,7 @@ typedef enum {
|
|||
SEXP_FLAG_DO_EXPAND = 1 << 7,
|
||||
SEXP_FLAG_ORPHAN = 1 << 8,
|
||||
SEXP_FLAG_RANGE = 1 << 9,
|
||||
SEXP_FLAG_PATHNAME = 1 << 10,
|
||||
} _sexp_flag_t;
|
||||
|
||||
/*
|
||||
|
@ -72,7 +73,8 @@ static _sexp_prefix_t prefixes[] =
|
|||
{ "from", Xapian::Query::OP_AND, Xapian::Query::MatchAll,
|
||||
SEXP_FLAG_FIELD | SEXP_FLAG_WILDCARD | SEXP_FLAG_REGEX | SEXP_FLAG_EXPAND },
|
||||
{ "folder", Xapian::Query::OP_OR, Xapian::Query::MatchNothing,
|
||||
SEXP_FLAG_FIELD | SEXP_FLAG_BOOLEAN | SEXP_FLAG_WILDCARD | SEXP_FLAG_REGEX | SEXP_FLAG_EXPAND },
|
||||
SEXP_FLAG_FIELD | SEXP_FLAG_BOOLEAN | SEXP_FLAG_WILDCARD | SEXP_FLAG_REGEX | SEXP_FLAG_EXPAND |
|
||||
SEXP_FLAG_PATHNAME },
|
||||
{ "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,
|
||||
|
@ -94,7 +96,8 @@ static _sexp_prefix_t prefixes[] =
|
|||
{ "or", Xapian::Query::OP_OR, Xapian::Query::MatchNothing,
|
||||
SEXP_FLAG_NONE },
|
||||
{ "path", Xapian::Query::OP_OR, Xapian::Query::MatchNothing,
|
||||
SEXP_FLAG_FIELD | SEXP_FLAG_BOOLEAN | SEXP_FLAG_WILDCARD | SEXP_FLAG_REGEX },
|
||||
SEXP_FLAG_FIELD | SEXP_FLAG_BOOLEAN | SEXP_FLAG_WILDCARD | SEXP_FLAG_REGEX |
|
||||
SEXP_FLAG_PATHNAME },
|
||||
{ "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,
|
||||
|
@ -545,8 +548,13 @@ _sexp_to_xapian_query (notmuch_database_t *notmuch, const _sexp_prefix_t *parent
|
|||
return _sexp_parse_wildcard (notmuch, parent, env, "", output);
|
||||
}
|
||||
|
||||
char *atom = sx->val;
|
||||
|
||||
if (parent && parent->flags & SEXP_FLAG_PATHNAME)
|
||||
strip_trailing (atom, '/');
|
||||
|
||||
if (parent && (parent->flags & SEXP_FLAG_BOOLEAN)) {
|
||||
output = Xapian::Query (term_prefix + sx->val);
|
||||
output = Xapian::Query (term_prefix + atom);
|
||||
return NOTMUCH_STATUS_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
|
@ -191,7 +191,6 @@ test_expect_equal "$output" "MAIL_DIR/bad/news/msg-XXX
|
|||
MAIL_DIR/duplicate/bad/news/msg-XXX"
|
||||
|
||||
test_begin_subtest "Search by 'folder' with --output=files (trailing /)"
|
||||
test_subtest_known_broken
|
||||
output=$(notmuch search --output=files --query=sexp '(folder bad/news/)' | notmuch_search_files_sanitize)
|
||||
test_expect_equal "$output" "MAIL_DIR/bad/news/msg-XXX
|
||||
MAIL_DIR/duplicate/bad/news/msg-XXX"
|
||||
|
@ -203,7 +202,6 @@ thread:XXX 2001-01-05 [1/1(2)] Notmuch Test Suite; Bears (inbox unread)
|
|||
thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; Bites, stings, sad feelings (inbox unread)"
|
||||
|
||||
test_begin_subtest "Search by 'folder' (multiple, trailing /)"
|
||||
test_subtest_known_broken
|
||||
output=$(notmuch search --query=sexp '(folder bad bad/news/ things/bad)' | notmuch_search_sanitize)
|
||||
test_expect_equal "$output" "thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; To the bone (inbox unread)
|
||||
thread:XXX 2001-01-05 [1/1(2)] Notmuch Test Suite; Bears (inbox unread)
|
||||
|
@ -215,7 +213,6 @@ test_expect_equal "$output" "MAIL_DIR/bad/news/msg-XXX
|
|||
MAIL_DIR/duplicate/bad/news/msg-XXX"
|
||||
|
||||
test_begin_subtest "Search by 'path' with --output=files (trailing /)"
|
||||
test_subtest_known_broken
|
||||
output=$(notmuch search --output=files --query=sexp '(path bad/news/)' | notmuch_search_files_sanitize)
|
||||
test_expect_equal "$output" "MAIL_DIR/bad/news/msg-XXX
|
||||
MAIL_DIR/duplicate/bad/news/msg-XXX"
|
||||
|
@ -227,7 +224,6 @@ thread:XXX 2001-01-05 [1/1(2)] Notmuch Test Suite; Bears (inbox unread)
|
|||
thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; Bites, stings, sad feelings (inbox unread)"
|
||||
|
||||
test_begin_subtest "Search by 'path' specification (multiple, trailing /)"
|
||||
test_subtest_known_broken
|
||||
output=$(notmuch search --query=sexp '(path bad bad/news/ things/bad)' | notmuch_search_sanitize)
|
||||
test_expect_equal "$output" "thread:XXX 2001-01-05 [1/1] Notmuch Test Suite; To the bone (inbox unread)
|
||||
thread:XXX 2001-01-05 [1/1(2)] Notmuch Test Suite; Bears (inbox unread)
|
||||
|
|
Loading…
Reference in a new issue