File: xadump.cpp

package info (click to toggle)
recoll 1.43.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,512 kB
  • sloc: cpp: 104,170; python: 9,500; xml: 7,248; ansic: 6,447; sh: 1,212; perl: 130; makefile: 72
file content (331 lines) | stat: -rw-r--r-- 9,979 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
/* Copyright (C) 2004 J.F.Dockes
 *   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 2 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, write to the
 *   Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include "autoconfig.h"

#include <stdio.h>
#include <stdlib.h>
#include <signal.h>
#include <strings.h>

#include <iostream>
#include <string>
#include <vector>

#include "pathut.h"

#ifndef NO_NAMESPACES
using namespace std;
#endif /* NO_NAMESPACES */

#include "utf8iter.h"

#include "xapian.h"

static string thisprog;

static string usage =
    " -d <dbdir> \n"
    "-e <output encoding>\n"
    " -i docid -D : get document data for docid\n"
    " -i docid -X : delete document docid\n"
    " -i docid -T : term list for doc docid\n"
    " -i docid -r : reconstructed text for docid\n"
    " -t term -E  : term existence test\n"
    " -t term -F  : retrieve term frequency data for given term\n"
    " -t term -P  : retrieve postings for term\n"
    " -T          : list all terms\n"
    "    -f       : precede each term in the list with its occurrence counts\n"
    "    -n : raw data (no [])\n"
    "    -l : don't list prefixed terms\n"
    " -x          : separate each output char with a space\n"
    " -s          : special mode to dump recoll stem db\n"
    " -q term [term ...] : perform AND query\n"
    "  \n\n"
    ;

static void
Usage(void)
{
    cerr << thisprog  << ": usage:\n" << usage;
    exit(1);
}

static int        op_flags;
#define OPT_D     0x1
#define OPT_E     0x2
#define OPT_F     0x4
#define OPT_P     0x8
#define OPT_T     0x10
#define OPT_X     0x20
#define OPT_d      0x80 
#define OPT_e     0x100
#define OPT_f     0x200
#define OPT_i     0x400
#define OPT_n     0x800
#define OPT_q     0x1000
#define OPT_t     0x4000
#define OPT_x     0x8000
#define OPT_l     0x10000
#define OPT_r     0x20000

// Compute an exploded version of string, inserting a space between each char.
// (no character combining possible)
static string detailstring(const string& in)
{
    if (!(op_flags & OPT_x))
    return in;
    string out;
    Utf8Iter  it(in);
    for (; !it.eof(); it++) {
    it.appendchartostring(out);
    out += ' ';
    }
    // Strip last space
    if (!out.empty())
    out.resize(out.size()-1);
    return out;
}

Xapian::Database *db;

static void cleanup()
{
    delete db;
}

static void sigcleanup(int)
{
    fprintf(stderr, "sigcleanup\n");
    cleanup();
    exit(1);
}

bool o_index_stripchars;

inline bool has_prefix(const string& trm)
{
    if (o_index_stripchars) {
    return trm.size() && 'A' <= trm[0] && trm[0] <= 'Z';
    } else {
    return trm.size() > 0 && trm[0] == ':';
    }
}


void wholedoc(Xapian::Database* db, int docid)
{
    vector<string> buf;
    Xapian::TermIterator term;
    for (term = db->termlist_begin(docid);
         term != db->termlist_end(docid); term++) {
        Xapian::PositionIterator pos;
        for (pos = db->positionlist_begin(docid, *term);
             pos != db->positionlist_end(docid, *term); pos++) {
            if (buf.size() < *pos)
                buf.resize(2*((*pos)+1));
            buf[(*pos)] = detailstring(*term);
        }
    }
    for (vector<string>::iterator it = buf.begin(); it != buf.end(); it++) {
        if (!it->empty())
            cout << *it << " ";
    }
}

int main(int argc, char **argv)
{
    string dbdir = path_cat(path_home(), ".recoll/xapiandb");
    string outencoding = "ISO8859-1";
    int docid = 1;
    string aterm;

    thisprog = argv[0];
    argc--; argv++;

    while (argc > 0 && **argv == '-') {
    (*argv)++;
    if (!(**argv))
        /* Cas du "adb - core" */
        Usage();
    while (**argv)
        switch (*(*argv)++) {
        case 'D':    op_flags |= OPT_D; break;
        case 'd':    op_flags |= OPT_d; if (argc < 2)  Usage();
        dbdir = *(++argv);
        argc--; 
        goto b1;
        case 'E':    op_flags |= OPT_E; break;
        case 'e':    op_flags |= OPT_d; if (argc < 2)  Usage();
        outencoding = *(++argv);
        argc--; 
        goto b1;
        case 'F':   op_flags |= OPT_F; break;
        case 'f':   op_flags |= OPT_f; break;
        case 'i':    op_flags |= OPT_i; if (argc < 2)  Usage();
        if (sscanf(*(++argv), "%d", &docid) != 1) Usage();
        argc--; 
        goto b1;
        case 'l':   op_flags |= OPT_l; break;
        case 'n':    op_flags |= OPT_n; break;
        case 'P':    op_flags |= OPT_P; break;
        case 'q':    op_flags |= OPT_q; break;
        case 'r':    case 'b': op_flags |= OPT_r; break;
        case 'T':    op_flags |= OPT_T; break;
        case 't':    op_flags |= OPT_t; if (argc < 2)  Usage();
        aterm = *(++argv);
        argc--; 
        goto b1;
        case 'X':    op_flags |= OPT_X; break;
        case 'x':    op_flags |= OPT_x; break;
        default: Usage();    break;
        }
    b1: argc--; argv++;
    }

    vector<string> qterms;
    if (op_flags & OPT_q) {
    fprintf(stderr, "q argc %d\n", argc);
    if (argc < 1)
        Usage();
    while (argc > 0) {
        qterms.push_back(*argv++); argc--;
    }
    }

    if (argc != 0)
    Usage();

    atexit(cleanup);
    if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
    signal(SIGHUP, sigcleanup);
    if (signal(SIGINT, SIG_IGN) != SIG_IGN)
    signal(SIGINT, sigcleanup);
    if (signal(SIGQUIT, SIG_IGN) != SIG_IGN)
    signal(SIGQUIT, sigcleanup);
    if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
    signal(SIGTERM, sigcleanup);

    try {
    db = new Xapian::Database(dbdir);
    cout << "DB: ndocs " << db->get_doccount() << " lastdocid " <<
        db->get_lastdocid() << " avglength " << db->get_avlength() << endl;

    // If we have terms with a leading ':' it's a new style,
    // unstripped index
    {
        Xapian::TermIterator term = db->allterms_begin(":");
        if (term == db->allterms_end())
        o_index_stripchars = true;
        else
        o_index_stripchars = false;
        cout<<"DB: terms are "<<(o_index_stripchars?"stripped":"raw")<<endl;
    }
    
    if (op_flags & OPT_T) {
        Xapian::TermIterator term;
        string printable;
        string op = (op_flags & OPT_n) ? string(): "[";
        string cl = (op_flags & OPT_n) ? string(): "]";
        if (op_flags & OPT_i) {
        for (term = db->termlist_begin(docid); 
             term != db->termlist_end(docid);term++) {
            const string& s = *term;
            if ((op_flags&OPT_l) && has_prefix(s))
            continue;
            cout << op << detailstring(s) << cl << endl;
        }
        } else {
        for (term = db->allterms_begin(); 
             term != db->allterms_end();term++) {
            const string& s = *term;
            if ((op_flags&OPT_l) && has_prefix(s))
            continue;
            if (op_flags & OPT_f)
            cout <<  db->get_collection_freq(*term) << " " 
                 << term.get_termfreq() << " ";
            cout << op << detailstring(s) << cl << endl;
        }
        }
    } else if (op_flags & OPT_D) {
        Xapian::Document doc = db->get_document(docid);
        string data = doc.get_data();
        cout << data << endl;
    } else if (op_flags & OPT_r) {
        wholedoc(db, docid);
    } else if (op_flags & OPT_X) {
        Xapian::Document doc = db->get_document(docid);
        string data = doc.get_data();
        cout << data << endl;
        cout << "Really delete xapian document ?" << endl;
        string rep;
        cin >> rep;
        if (!rep.empty() && (rep[0] == 'y' || rep[0] == 'Y')) {
        Xapian::WritableDatabase wdb(dbdir,  Xapian::DB_OPEN);
        cout << "Deleting" << endl;
        wdb.delete_document(docid);
        }
    } else if (op_flags & OPT_P) {
        Xapian::PostingIterator doc;
        for (doc = db->postlist_begin(aterm);
         doc != db->postlist_end(aterm); doc++) {
        cout << *doc << "(" << doc.get_wdf() << ") : " ;
        Xapian::PositionIterator pos;
        for (pos = doc.positionlist_begin(); 
             pos != doc.positionlist_end(); pos++) {
            cout << *pos << " " ;
        }
        cout << endl;
        }
        
    } else if (op_flags & OPT_F) {
        cout << "FreqFor " << aterm << " : " <<
        db->get_termfreq(aterm) << endl;
    } else if (op_flags & OPT_E) {
        cout << "Exists [" << aterm << "] : " <<
        db->term_exists(aterm) << endl;
    }  else if (op_flags & OPT_q) {
        Xapian::Enquire enquire(*db);

        Xapian::Query query(Xapian::Query::OP_AND, qterms.begin(), 
                qterms.end());
        cout << "Performing query `" <<
        query.get_description() << "'" << endl;
        enquire.set_query(query);

        Xapian::MSet matches = enquire.get_mset(0, 10);
        cout << "Estimated results: " << 
        matches.get_matches_lower_bound() << endl;
        Xapian::MSetIterator i;
        for (i = matches.begin(); i != matches.end(); ++i) {
        cout << "Document ID " << *i << "\t";
        cout << i.get_percent() << "% ";
        Xapian::Document doc = i.get_document();
        cout << "[" << doc.get_data() << "]" << endl;
        }
    }
    } catch (const Xapian::Error &e) {
    cout << "Exception: " << e.get_msg() << endl;
    } catch (const string &s) {
    cout << "Exception: " << s << endl;
    } catch (const char *s) {
    cout << "Exception: " << s << endl;
    } catch (...) {
    cout << "Caught unknown exception" << endl;
    }
    exit(0);
}