unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob eeb8be985120ef04dc18f8a07c1028f6f54e1a4c 1279 bytes (raw)
name: lib/sexp-fp.cc 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
 
/* sexp-fp.cc - "sexp:" field processor glue
 *
 * This file is part of notmuch.
 *
 * Copyright © 2022 David Bremner
 *
 * 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 https://www.gnu.org/licenses/ .
 *
 * Author: David Bremner <david@tethera.net>
 */

#include "database-private.h"

#if HAVE_SFSEXP
#include "sexp-fp.h"
#include <iostream>

Xapian::Query
SexpFieldProcessor::operator() (const std::string & query_string)
{
    notmuch_status_t status;
    Xapian::Query output;

    status = _notmuch_sexp_string_to_xapian_query (notmuch, query_string.c_str (), output);
    if (status) {
	throw Xapian::QueryParserError ("error parsing " + query_string);
    }

    return output;

}
#endif /* HAVE_SFSEXP */

debug log:

solving eeb8be98 ...
found eeb8be98 in https://yhetil.org/notmuch/20220415170318.931068-1-david@tethera.net/
found ed26f6ec in https://yhetil.org/notmuch.git/
preparing index
index prepared:
100644 ed26f6ec365cd1e3d9edad24bdc5231d386b62e1	lib/sexp-fp.cc

applying [1/1] https://yhetil.org/notmuch/20220415170318.931068-1-david@tethera.net/
diff --git a/lib/sexp-fp.cc b/lib/sexp-fp.cc
index ed26f6ec..eeb8be98 100644

Checking patch lib/sexp-fp.cc...
Applied patch lib/sexp-fp.cc cleanly.

index at:
100644 eeb8be985120ef04dc18f8a07c1028f6f54e1a4c	lib/sexp-fp.cc

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).