This file is indexed.

/usr/include/sdsl/csa_bitcompressed.hpp is in libsdsl-dev 2.0.3-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
/* sdsl - succinct data structures library
    Copyright (C) 2009-2013 Simon Gog

    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 3 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, see http://www.gnu.org/licenses/ .
*/
/*! \file csa_bitcompressed.hpp
    \brief csa_bitcompressed.hpp contains a bitcompressed suffix array.
    \author Simon Gog
*/
#ifndef INCLUDED_SDSL_CSA_UNCOMPRESSED
#define INCLUDED_SDSL_CSA_UNCOMPRESSED

#include "int_vector.hpp"
#include "sdsl_concepts.hpp"
#include "suffix_array_helper.hpp"
#include "iterators.hpp"
#include "util.hpp"
#include "csa_sampling_strategy.hpp"
#include "csa_alphabet_strategy.hpp"
#include <iostream>
#include <algorithm>
#include <string>
#include <iomanip>
#include <iterator>


namespace sdsl
{

//! A class for the uncompressed suffix array (SA).
/*!
 * This class stores the information of the suffix array and the inverse suffix array in uncompressed form.
 * In contrast to this class, classes like sdsl::csa_sada, and sdsl::csa_wt store
 * the suffix array and inverse suffix array data in compressed form.
 *
 * The interface of this class is exactly the same as for the compressed indexes. This is the reason
 * why it is in the group of compressed suffix arrays.
 *
 *  \tparam t_alphabet_strat  Policy for alphabet representation.
 *
 * \par Space complexity
 *        \f$ 2n\cdot \log n\f$ bits, where \f$n\f$ equals the \f$size()\f$ of the suffix array.
 * \sa sdsl::csa_sada, sdsl::csa_wt
 * @ingroup csa
 */
template<class t_alphabet_strat=byte_alphabet>
class csa_bitcompressed
{
        friend class bwt_of_csa_psi<csa_bitcompressed>;
    public:
        typedef uint64_t                                        value_type;    // STL Container requirement
        typedef random_access_const_iterator<csa_bitcompressed> const_iterator;// STL Container requirement
        typedef const_iterator                                  iterator;        // STL Container requirement
        typedef const value_type                                const_reference;
        typedef const_reference                                 reference;
        typedef const_reference*                                pointer;
        typedef const pointer                                   const_pointer;
        typedef int_vector<>::size_type                         size_type;        // STL Container requirement
        typedef size_type                                       csa_size_type;
        typedef ptrdiff_t                                       difference_type; // STL Container requirement
        typedef traverse_csa_saisa<csa_bitcompressed,true>      psi_type;
        typedef traverse_csa_saisa<csa_bitcompressed,false>     lf_type;
        typedef bwt_of_csa_psi<csa_bitcompressed>               bwt_type;
        typedef text_of_csa<csa_bitcompressed>                  text_type;
        typedef first_row_of_csa<csa_bitcompressed>             first_row_type;
        typedef _sa_order_sampling<csa_bitcompressed,0>         sa_sample_type;
        typedef int_vector<>                                    isa_sample_type;
        typedef isa_sample_type                                 isa_type;
        typedef t_alphabet_strat                                alphabet_type;
        typedef typename alphabet_type::char_type               char_type; // Note: This is the char type of the CSA not the WT!
        typedef typename alphabet_type::comp_char_type          comp_char_type;
        typedef typename alphabet_type::string_type             string_type;
        typedef typename alphabet_type::alphabet_category       alphabet_category;
        typedef csa_bitcompressed                               csa_type;

        typedef csa_tag                                         index_category;
        typedef psi_tag                                         extract_category;

        enum { sa_sample_dens = 1,
               isa_sample_dens = 1
             };

    private:
        sa_sample_type  m_sa;  // vector for suffix array values
        isa_sample_type m_isa; // vector for inverse suffix array values
        alphabet_type   m_alphabet;

        void copy(const csa_bitcompressed& csa) {
            m_sa       = csa.m_sa;
            m_isa      = csa.m_isa;
            m_alphabet = csa.m_alphabet;
        }
    public:
        const typename alphabet_type::char2comp_type& char2comp  = m_alphabet.char2comp;
        const typename alphabet_type::comp2char_type& comp2char  = m_alphabet.comp2char;
        const typename alphabet_type::C_type&         C          = m_alphabet.C;
        const typename alphabet_type::sigma_type&     sigma      = m_alphabet.sigma;
        const psi_type                                psi        = psi_type(*this);
        const lf_type                                 lf         = lf_type(*this);
        const bwt_type                                bwt        = bwt_type(*this);
        const bwt_type                                L          = bwt_type(*this);
        const isa_type&                               isa        = m_isa;
        const first_row_type                          F          = first_row_type(*this);
        const text_type                               text       = text_type(*this);
        const sa_sample_type&                         sa_sample  = m_sa;
        const isa_sample_type&                        isa_sample = m_isa;

        //! Default constructor
        csa_bitcompressed() {}
        //! Copy constructor
        csa_bitcompressed(const csa_bitcompressed& csa) {
            copy(csa);
        }
        //! Move constructor
        csa_bitcompressed(csa_bitcompressed&& csa) {
            *this = std::move(csa);
        }

        //! Constructor
        csa_bitcompressed(cache_config& config) {
            std::string text_file = cache_file_name(key_trait<alphabet_type::int_width>::KEY_TEXT,config);
            int_vector_buffer<alphabet_type::int_width> text_buf(text_file);
            int_vector_buffer<>  sa_buf(cache_file_name(conf::KEY_SA,config));
            size_type n = text_buf.size();
            {
                alphabet_type tmp_alphabet(text_buf, n);
                m_alphabet.swap(tmp_alphabet);
            }
            {
                sa_sample_type tmp_sample(config);
                m_sa.swap(tmp_sample);
            }
            set_isa_samples<csa_bitcompressed>(sa_buf, m_isa);

            if (!store_to_file(m_isa, cache_file_name(conf::KEY_ISA,config), true)) {
                throw std::ios_base::failure("#csa_bitcompressed: Cannot store ISA to file system!");
            } else {
                register_cache_file(conf::KEY_ISA, config);
            }
        }


        //! Number of elements in the instance.
        /*! Required for the Container Concept of the STL.
         *  \sa max_size, empty
         */
        size_type size()const {
            return m_sa.size();
        }

        //! Returns the largest size that csa_bitcompressed can ever have.
        /*! Required for the Container Concept of the STL.
         *  \sa size
         */
        static size_type max_size() {
            return int_vector<>::max_size();
        }

        //! Returns if the data structure is empty.
        /*! Required for the Container Concept of the STL.
         * \sa size
         */
        bool empty()const {
            return m_sa.empty();
        }

        //! Swap method for csa_bitcompressed
        void swap(csa_bitcompressed& csa) {
            if (this != &csa) {
                m_sa.swap(csa.m_sa);
                m_isa.swap(csa.m_isa);
                m_alphabet.swap(csa.m_alphabet);
            }
        }

        //! Returns a const_iterator to the first element.
        /*! Required for the STL Container Concept.
         *  \sa end
         */
        const_iterator begin()const {
            return const_iterator(this, 0);
        }

        //! Returns a const_iterator to the element after the last element.
        /*! Required for the STL Container Concept.
         *  \sa begin.
         */
        const_iterator end()const {
            return const_iterator(this, size());
        }

        //! []-operator
        /*! \param i Index of the value. \f$ i \in [0..size()-1]\f$.
         *
         * Required for the STL Random Access Container Concept.
         */
        inline value_type operator[](size_type i)const {
            return m_sa[i];
        }

        //! Assignment Operator.
        /*!
         *    Required for the Assignable Concept of the STL.
         */
        csa_bitcompressed& operator=(const csa_bitcompressed& csa) {
            if (this != &csa) {
                copy(csa);
            }
            return *this;
        }

        //! Assignment Move Operator.
        /*!
         *    Required for the Assignable Concept of the STL.
         */
        csa_bitcompressed& operator=(csa_bitcompressed&& csa) {
            if (this != &csa) {
                m_sa       = std::move(csa.m_sa);
                m_isa      = std::move(csa.m_isa);
                m_alphabet = std::move(csa.m_alphabet);
            }
            return *this;
        }

        //! Serialize to a stream.
        /*! \param out Output stream to write the data structure.
         *  \return The number of written bytes.
         */
        size_type serialize(std::ostream& out, structure_tree_node* v=nullptr, std::string name="")const {
            structure_tree_node* child = structure_tree::add_child(v, name, util::class_name(*this));
            size_type written_bytes = 0;
            written_bytes += m_sa.serialize(out, child, "m_sa");
            written_bytes += m_isa.serialize(out, child, "m_isa");
            written_bytes += m_alphabet.serialize(out, child, "m_alphabet");
            structure_tree::add_size(child, written_bytes);
            return written_bytes;
        }

        void load(std::istream& in) {
            m_sa.load(in);
            m_isa.load(in);
            m_alphabet.load(in);
        }

        size_type get_sample_dens()const {
            return 1;
        }

    private:

        // Calculates how many symbols c are in the prefix [0..i-1] of the BWT of the original text.
        /*
         *  \param i The exclusive index of the prefix range [0..i-1], so \f$i\in [0..size()]\f$.
         *  \param c The symbol to count the occurrences in the prefix.
         *    \returns The number of occurrences of symbol c in the prefix [0..i-1] of the BWT.
         *  \par Time complexity
         *        \f$ \Order{\log n} \f$
         */
        size_type rank_bwt(size_type i, const char_type c) const {
            // TODO: special case if c == BWT[i-1] we can use LF to get a constant time answer
            comp_char_type cc = char2comp[c];
            if (cc==0 and c!=0)  // character is not in the text => return 0
                return 0;
            // binary search the interval [C[cc]..C[cc+1]-1] for the result
            size_type lower_b = C[cc], upper_b = C[((size_type)1)+cc]; // lower_b inclusive, upper_b exclusive
            while (lower_b+1 < upper_b) {
                size_type mid = (lower_b+upper_b)/2;
                if (psi[mid] >= i)
                    upper_b = mid;
                else
                    lower_b = mid;
            }
            if (lower_b > C[cc])
                return lower_b - C[cc] + 1;
            else { // lower_b == m_C[cc]
                return psi[lower_b] < i;// 1 if psi[lower_b]<i, 0 otherwise
            }
        }

        // Calculates the i-th occurrence of symbol c in the BWT of the original text.
        /*
         *  \param i The i-th occurrence. \f$i\in [1..rank(size(),c)]\f$.
         *  \param c Character c.
         *    \returns The i-th occurrence of c in the BWT or size() if c does
         *           not occur t times in BWT>
         *  \par Time complexity
         *        \f$ \Order{t_{\Psi}} \f$
         */
        size_type select_bwt(size_type i, const char_type c) const {
            comp_char_type cc = char2comp[c];
            if (cc==0 and c!=0)  // character is not in the text => return size()
                return size();
            if (C[cc]+i-1 <  C[((size_type)1)+cc]) {
                return psi[C[cc]+i-1];
            }
            return size();
        }
};

} // end namespace sdsl
#endif