X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=lib%2Fdatabase-private.h;h=9706c17e68f9de13fd4377a4386592fe0894e2be;hb=c4f2f33a50643b41e6dbf0519c563ae7db48beab;hp=d936b216954cf673bd8636fee90a6246c64a7e49;hpb=f0717aa380cfa84c1973f7b03948d93b261a73fe;p=notmuch diff --git a/lib/database-private.h b/lib/database-private.h index d936b216..9706c17e 100644 --- a/lib/database-private.h +++ b/lib/database-private.h @@ -189,12 +189,12 @@ operator& (notmuch_field_flag_t a, notmuch_field_flag_t b) struct _notmuch_database { bool exception_reported; - /* Path to database parent directory and or/mail root */ - char *path; - /* Path to actual database */ const char *xapian_path; + /* Path to config loaded, if any */ + const char *config_path; + int atomic_nesting; /* true if changes have been made in this atomic section */ bool atomic_dirty; @@ -206,8 +206,17 @@ struct _notmuch_database { enum _notmuch_features features; unsigned int last_doc_id; + + /* 16 bytes (+ terminator) for hexadecimal representation of + * a 64-bit integer. */ + char thread_id_str[17]; uint64_t last_thread_id; + /* How many transactions have successfully completed since we last committed */ + int transaction_count; + /* when to commit and reset the counter */ + int transaction_threshold; + /* error reporting; this value persists only until the * next library call. May be NULL */ char *status_string;