New (faster) representation for tags added; faster construction of parentheses
[SXSI/XMLTree.git] / libcds / src / static_bitsequence / static_bitsequence.h
1 /* static_bitsequence.h
2  * Copyright (C) 2008, Francisco Claude, all rights reserved.
3  *
4  * static_bitsequence definition
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 #ifndef _STATIC_BITSEQUENCE_H
23 #define _STATIC_BITSEQUENCE_H
24
25 #define RRR02_HDR 2
26 #define BRW32_HDR 3
27 #define RRR02_LIGHT_HDR 4
28
29 #include <basics.h>
30 #include <iostream>
31
32
33 using namespace std;
34
35 /** Base class for static bitsequences, contains many abstract functions, so this can't
36  *  be instantiated. It includes base implementations for rank0, select0 and select1 based
37  *  on rank0.
38  * 
39  *  @author Francisco Claude
40  */
41 class static_bitsequence {
42   
43 public:
44   virtual ~static_bitsequence() {};
45
46         /** Returns the number of zeros until position i */
47   virtual uint rank0(uint i);
48
49         /** Returns the position of the i-th zero 
50          * @return (uint)-1 if i=0, len if i>num_zeros or the position */
51   virtual uint select0(uint i);
52
53         /** Returns the number of ones until position i */
54   virtual uint rank1(uint i);
55
56         /** Returns the position of the i-th one 
57          * @return (uint)-1 if i=0, len if i>num_ones or the position */
58   virtual uint select1(uint i);
59
60         /** Returns the i-th bit */
61   virtual bool access(uint i);
62
63         /** Returns the length in bits of the bitmap */
64   virtual uint length();
65
66         /** Returns how many ones are in the bitstring */
67   virtual uint count_one();
68
69         /** Returns how many zeros are in the bitstring */
70   virtual uint count_zero();
71
72         /** Returns the size of the structure in bytes */
73   virtual uint size()=0;
74
75   /** Stores the bitmap given a file pointer, return 0 in case of success */
76         virtual int save(FILE * fp)=0;
77   
78   /** Reads a bitmap determining the type */
79   static static_bitsequence * load(FILE * fp);
80   
81 protected:
82         /** Length of the bitstring */
83   uint len;
84         /** Number of ones in the bitstring */
85         uint ones;
86   
87 };
88
89 #include <static_bitsequence_rrr02.h>
90 #include <static_bitsequence_rrr02_light.h>
91 #include <static_bitsequence_naive.h>
92 #include <static_bitsequence_brw32.h>
93
94 #endif  /* _STATIC_BITSEQUENCE_H */