]> git.notmuchmail.org Git - notmuch/blob - xapian-dump.cc
9049b45242b714600bc8a639c5dcfa8f6830cd50
[notmuch] / xapian-dump.cc
1 /* xapian-dump: Dump document IDs and associated terms 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 static void
29 print_document (Xapian::Database db, Xapian::docid id)
30 {
31     Xapian::TermIterator i;
32
33     printf ("Document %u:\n", id);
34
35     for (i = db.termlist_begin (id); i != db.termlist_end (id); i++)
36         cout << "\t" << *i << endl;
37 }
38
39 int
40 main (int argc, char *argv[])
41 {
42     const char *database_path;
43
44     if (argc < 2) {
45         fprintf (stderr, "Usage: %s <path-to-xapian-database>\n",
46                  argv[0]);
47         exit (1);
48     }
49
50     database_path = argv[1];
51
52     try {
53
54         Xapian::Database db;
55         Xapian::PostingIterator i;
56         Xapian::docid doc_id;
57
58         db = Xapian::Database (database_path);
59         for (i = db.postlist_begin (""); i != db.postlist_end (""); i++) {
60             doc_id = *i;
61
62             print_document (db, doc_id);
63         }
64
65     } catch (const Xapian::Error &error) {
66         cerr << "A Xapian exception occurred: " << error.get_msg () << endl;
67         exit (1);
68     }
69
70     return 0;
71 }