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