aboutsummaryrefslogtreecommitdiffhomepage
path: root/database-private.h
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-10-20 21:03:30 -0700
committerGravatar Carl Worth <cworth@cworth.org>2009-10-20 21:21:39 -0700
commit466a7bbf620e4bf1b57097a6d3c474159c475b6d (patch)
tree178d6175c4a70d6d5d3e005c6b9ec6464b99c1c9 /database-private.h
parentcd4a8734d3bb151df70d51a84903bff994439b05 (diff)
Implement 'notmuch dump'.
This is a fairly big milestone for notmuch. It's our first command to do anything besides building the index, so it proves we can actually read valid results out from the index. It also puts in place almost all of the API and infrastructure we will need to allow searching of the database. Finally, with this change we are now using talloc inside of notmuch which is truly a delight to use. And now that I figured out how to use C++ objects with talloc allocation, (it requires grotty parts of C++ such as "placement new" and "explicit destructors"), we are valgrind-clean for "notmuch dump", (as in "no leaks are possible").
Diffstat (limited to 'database-private.h')
-rw-r--r--database-private.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/database-private.h b/database-private.h
new file mode 100644
index 00000000..b894717e
--- /dev/null
+++ b/database-private.h
@@ -0,0 +1,34 @@
+/* database-private.h - For peeking into the internals of notmuch_database_t
+ *
+ * Copyright © 2009 Carl Worth
+ *
+ * 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 http://www.gnu.org/licenses/ .
+ *
+ * Author: Carl Worth <cworth@cworth.org>
+ */
+
+#ifndef NOTMUCH_DATABASE_PRIVATE_H
+#define NOTMUCH_DATABASE_PRIVATE_H
+
+#include "notmuch-private.h"
+
+#include <xapian.h>
+
+struct _notmuch_database {
+ char *path;
+ Xapian::WritableDatabase *xapian_db;
+ Xapian::TermGenerator *term_gen;
+};
+
+#endif