This file is indexed.

/usr/include/gnuradio/swig/hier_block2.i is in gnuradio-dev 3.7.2.1-5.

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
/* -*- c++ -*- */
/*
 * Copyright 2005-2007,2013 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.
 */

%include <basic_block.i>

class gr::hier_block2;
typedef boost::shared_ptr<gr::hier_block2> gr::hier_block2_sptr;
%template(hier_block2_sptr) boost::shared_ptr<gr::hier_block2>;

namespace gr {
  // Hack to have a Python shim implementation of gr.hier_block2
  // that instantiates one of these and passes through calls
  %rename(hier_block2_swig) make_hier_block2;
  gr::hier_block2_sptr
  make_hier_block2(const std::string name,
                   gr::io_signature::sptr input_signature,
                   gr::io_signature::sptr output_signature)
  throw (std::runtime_error);
}

// Rename connect and disconnect so that we can more easily build a
// better interface in scripting land.
%rename(primitive_connect) gr::hier_block2::connect;
%rename(primitive_disconnect) gr::hier_block2::disconnect;
%rename(primitive_msg_connect) gr::hier_block2::msg_connect;
%rename(primitive_msg_disconnect) gr::hier_block2::msg_disconnect;
%rename(primitive_message_port_register_hier_in) gr::hier_block2::message_port_register_hier_in;
%rename(primitive_message_port_register_hier_out) gr::hier_block2::message_port_register_hier_out;

namespace gr {
  class hier_block2 : public gr::basic_block
  {
  private:
    hier_block2(const std::string name,
                gr::io_signature::sptr input_signature,
                gr::io_signature::sptr output_signature);

  public:
    ~hier_block2 ();

    void connect(gr::basic_block_sptr block)
      throw (std::invalid_argument);
    void connect(gr::basic_block_sptr src, int src_port,
                 gr::basic_block_sptr dst, int dst_port)
      throw (std::invalid_argument);
    void msg_connect(gr::basic_block_sptr src, pmt::pmt_t srcport,
                     gr::basic_block_sptr dst, pmt::pmt_t dstport)
      throw (std::runtime_error);
    void msg_connect(gr::basic_block_sptr src, std::string srcport,
                     gr::basic_block_sptr dst,  std::string dstport)
      throw (std::runtime_error);
    void msg_disconnect(gr::basic_block_sptr src, pmt::pmt_t srcport,
                        gr::basic_block_sptr dst, pmt::pmt_t dstport)
      throw (std::runtime_error);
    void msg_disconnect(gr::basic_block_sptr src, std::string srcport,
                        gr::basic_block_sptr dst, std::string dstport)
      throw (std::runtime_error);

    void disconnect(gr::basic_block_sptr block)
      throw (std::invalid_argument);
    void disconnect(gr::basic_block_sptr src, int src_port,
                    gr::basic_block_sptr dst, int dst_port)
      throw (std::invalid_argument);
    void disconnect_all();
    void lock();
    void unlock();

    void message_port_register_hier_in(pmt::pmt_t port_id);
    void message_port_register_hier_out(pmt::pmt_t port_id);

    void set_processor_affinity(const std::vector<int> &mask);
    void unset_processor_affinity();
    std::vector<int> processor_affinity();

    gr::hier_block2_sptr to_hier_block2(); // Needed for Python type coercion
  };
}