Create branch library-split
[SXSI/XMLTree.git] / libcds / tests / static_sequence_bs_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
33 int main(int argc, char ** argv) {
34         if(argc!=5) {
35     cout << "Usage: " << argv[0] << " <file> <b|r|s> <sampling> <t|s>" << endl;
36     return 0;
37   }
38   stringstream ss;
39   ss << argv[3];
40   uint samp;
41   ss >> samp;
42   
43   uint * text;
44   uint n;
45   load(argv[1],&text,&n);
46   
47   alphabet_mapper * am = new alphabet_mapper_none();
48   
49   static_bitsequence_builder * bmb;
50   if(string(argv[2])==string("b"))
51     bmb = new static_bitsequence_builder_brw32(samp);
52         else if(string(argv[2])==string("s"))
53                 bmb = new static_bitsequence_builder_sdarray();
54   else
55     bmb = new static_bitsequence_builder_rrr02(samp);
56     
57   static_sequence * sseq = new static_sequence_bs(text,n,am,bmb);
58   delete bmb;
59         //am->unuse();
60   
61   sseq = savetest(argv[1], sseq);
62   if(string(argv[4])==string("t"))
63     test_static_sequence(text,n,sseq);
64   else 
65     cout << "Size: " << sseq->size() << endl;
66   cout << "*************************************" << endl;
67   speed_access(sseq,text,n);
68   cout << "*************************************" << endl;
69   speed_rank(sseq,text,n);
70   cout << "*************************************" << endl;
71   speed_select(sseq,text,n);
72   
73   delete sseq;
74   delete [] text;
75 }
76