This file is indexed.

/usr/include/gnuradio/fec/polar_encoder.h is in gnuradio-dev 3.7.9.1-2ubuntu1.

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
/* -*- c++ -*- */
/*
 * Copyright 2015 Free Software Foundation, Inc.
 *
 * This file is part of GNU Radio
 *
 * GNU Radio 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, or (at your option)
 * any later version.
 *
 * GNU Radio 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 GNU Radio; see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street,
 * Boston, MA 02110-1301, USA.
 */


#ifndef INCLUDED_FEC_POLAR_ENCODER_H
#define INCLUDED_FEC_POLAR_ENCODER_H

#include <gnuradio/fec/api.h>
#include <gnuradio/fec/generic_encoder.h>
#include <gnuradio/fec/polar_common.h>

namespace gr {
  namespace fec {
    namespace code {

      /*!
       * \brief POLAR encoder
       * for basic details see 'polar_common' class.
       * \ingroup error_coding_blk
       *
       * \details
       * expects values with MSB first. It needs a full information word and encodes it in one pass.
       * Output is a codeword of block_size.
       */
      class FEC_API polar_encoder : public generic_encoder, public polar_common
      {
      public:
        /*!
         * Factory for a polar code encoder object.
         *
         * \param block_size defines the codeword size. It MUST be a
         *        power of 2.
         * \param num_info_bits represents the number of information
         *        bits in a block. Also called frame_size.
         * \param frozen_bit_positions is an integer vector which
         *        defines the position of all frozen bits in a block.
         *        Its size MUST be equal to block_size - num_info_bits.
         *        Also it must be sorted and every position must only
         *        occur once.
         * \param frozen_bit_values holds an unpacked byte for every
         *        frozen bit position. It defines if a frozen bit is
         *        fixed to '0' or '1'. Defaults to all ZERO.
         * \param is_packed choose 1 active bit/byte or 8 active
         *        bit/byte. if false, VOLK polar encoder is used.
         */
        static generic_encoder::sptr make(int block_size, int num_info_bits,
                                          std::vector<int> frozen_bit_positions,
                                          std::vector<char> frozen_bit_values,
                                          bool is_packed = false);
        ~polar_encoder();

        // FECAPI
        void generic_work(void *in_buffer, void *out_buffer);
        double rate(){return (1.0 * get_input_size() / get_output_size());};
        int get_input_size(){return num_info_bits() / (d_is_packed ? 8 : 1);};
        int get_output_size(){return block_size() / (d_is_packed ? 8 : 1);};
        bool set_frame_size(unsigned int frame_size){return false;};
        const char* get_input_conversion(){return d_is_packed ? "pack" : "none";};
        const char* get_output_conversion(){return d_is_packed ? "packed_bits" : "none";};

      private:
        polar_encoder(int block_size, int num_info_bits,
                      std::vector<int>& frozen_bit_positions,
                      std::vector<char>& frozen_bit_values, bool is_packed);
        bool d_is_packed;

        // c'tor method for packed algorithm setup.
        void setup_frozen_bit_inserter();

        // methods insert input bits and frozen bits into packed array for encoding
        unsigned char* d_frozen_bit_prototype; // packed frozen bits are written onto it and later copies are used.
        void insert_packed_frozen_bits_and_reverse(unsigned char* target,
                                                   const unsigned char* input) const;
        void insert_unpacked_bit_into_packed_array_at_position(unsigned char* target,
                                                               const unsigned char bit,
                                                               const int pos) const;
        void insert_packet_bit_into_packed_array_at_position(unsigned char* target,
                                                             const unsigned char bit,
                                                             const int target_pos,
                                                             const int bit_pos) const;

        // packed encoding methods
        void encode_vector_packed(unsigned char* target) const;
        void encode_vector_packed_subbyte(unsigned char* target) const;
        void encode_packed_byte(unsigned char* target) const;
        void encode_vector_packed_interbyte(unsigned char* target) const;
      };

    } // namespace code
  } // namespace fec
} // namespace gr

#endif /* INCLUDED_FEC_POLAR_ENCODER_H */