Create branch library-split
[SXSI/XMLTree.git] / libcds / tests / static_sequence_wvtree_test.cpp
1 /* static_sequence_wvtree_test.cpp
2  * Copyright (C) 2008, Francisco Claude, all rights reserved.
3  *
4  * static_sequence_wvtree_test
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21
22 #include <sys/stat.h>
23 #include <iostream>
24 #include <sstream>
25 #include <basics.h>
26 #include <static_bitsequence.h>
27 #include <static_bitsequence_builder.h>
28 #include <alphabet_mapper.h>
29 #include <static_sequence.h>
30 #include <static_sequence_builder.h>
31 #include "static_sequence_tester.h"
32 using namespace std;
33
34 int main(int argc, char ** argv) {
35   if(argc!=6) {
36     cout << "Usage: " << argv[0] << " <file> <b|r> <h|p> <sampling> <t|s>" << endl;
37     return 0;
38   }
39   stringstream ss;
40   ss << argv[4];
41   uint samp;
42   ss >> samp;
43   
44   uint * text;
45   uint n;
46   load(argv[1],&text,&n);
47   
48   alphabet_mapper * am = new alphabet_mapper_none();
49   
50   static_bitsequence_builder * bmb;
51   if(string(argv[2])==string("b"))
52     bmb = new static_bitsequence_builder_brw32(samp);
53   else
54     bmb = new static_bitsequence_builder_rrr02(samp);
55   
56   wt_coder * wc;
57   if(string(argv[3])==string("p"))
58     wc = new wt_coder_binary(text,n,am);
59   else
60     wc = new wt_coder_huff(text,n,am);
61     
62   static_sequence_builder * ssb = new static_sequence_builder_wvtree(wc,bmb,am);
63   static_sequence * sseq = ssb->build(text,n);
64   delete bmb;
65   delete ssb;
66   
67   sseq = savetest(argv[1], sseq);
68   if(string(argv[5])==string("t"))
69     test_static_sequence(text,n,sseq);
70   else 
71     cout << "Size: " << sseq->size() << endl;
72   cout << "*************************************" << endl;
73   speed_access(sseq,text,n);
74   cout << "*************************************" << endl;
75   speed_rank(sseq,text,n);
76   cout << "*************************************" << endl;
77   speed_select(sseq,text,n);
78   
79   delete sseq;
80   delete [] text;
81 }
82