X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=lib%2Fdatabase-private.h;h=2900382d52b5eb9e38d6e9d27d74c56b978109aa;hb=6251e2bb9ee023d25b58384c8a49576086fdaba3;hp=2d220811c4a092930ed575bb60ae3121df5b50bf;hpb=e34e2a68b62b50cc40e695d1a2690a7de382bba6;p=notmuch diff --git a/lib/database-private.h b/lib/database-private.h index 2d220811..2900382d 100644 --- a/lib/database-private.h +++ b/lib/database-private.h @@ -189,7 +189,8 @@ operator& (notmuch_field_flag_t a, notmuch_field_flag_t b) struct _notmuch_database { bool exception_reported; - char *path; + /* Path to actual database */ + const char *xapian_path; int atomic_nesting; /* true if changes have been made in this atomic section */ @@ -228,6 +229,9 @@ struct _notmuch_database { * here, but at least they are small */ notmuch_string_map_t *user_prefix; notmuch_string_map_t *user_header; + + /* Cached and possibly overridden configuration */ + notmuch_string_map_t *config; }; /* Prior to database version 3, features were implied by the database @@ -277,4 +281,11 @@ _notmuch_database_parse_features (const void *ctx, const char *features, unsigne char * _notmuch_database_print_features (const void *ctx, unsigned int features); +/* prefix.cc */ +notmuch_status_t +_notmuch_database_setup_standard_query_fields (notmuch_database_t *notmuch); + +notmuch_status_t +_notmuch_database_setup_user_query_fields (notmuch_database_t *notmuch); + #endif