]> git.notmuchmail.org Git - notmuch/blob - xapian-dump.cc
xapian-dump: Actually dump document IDs
[notmuch] / xapian-dump.cc
1 /* xapian-dump: Dump all document IDs from a Xapian database
2  *
3  * Copyright © 2009 Carl Worth
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see http://www.gnu.org/licenses/ .
17  *
18  * Author: Carl Worth <cworth@cworth.org>
19  */
20
21 #include <cstdlib>
22 #include <iostream>
23
24 #include <xapian.h>
25
26 using namespace std;
27
28 int
29 main (int argc, char *argv[])
30 {
31     const char *database_path;
32
33     if (argc < 2) {
34         fprintf (stderr, "Usage: %s <path-to-xapian-database>\n",
35                  argv[0]);
36         exit (1);
37     }
38
39     database_path = argv[1];
40
41     try {
42
43         Xapian::Database db;
44         Xapian::PostingIterator i;
45         Xapian::docid doc_id;
46
47         db = Xapian::Database (database_path);
48         for (i = db.postlist_begin (""); i != db.postlist_end (""); i++) {
49             doc_id = *i;
50             printf ("Found document %u\n", doc_id);
51         }
52
53     } catch (const Xapian::Error &error) {
54         cerr << "A Xapian exception occurred: " << error.get_msg () << endl;
55         exit (1);
56     }
57
58     return 0;
59 }