This file is indexed.

/usr/lib/ruby/vendor_ruby/gir_ffi/builders/c_to_ruby_convertor.rb is in ruby-gir-ffi 0.9.0-2.

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
module GirFFI
  module Builders
    # Builder that generates code to convert values from C to Ruby. Used by
    # argument builders.
    class CToRubyConvertor
      def initialize(type_info, argument_name, length_arg)
        @type_info = type_info
        @argument_name = argument_name
        @length_arg = length_arg
      end

      def conversion
        case @type_info.flattened_tag
        when :utf8, :filename
          "#{@argument_name}.to_utf8"
        else
          "#{@type_info.argument_class_name}.wrap(#{conversion_argument_list})"
        end
      end

      private

      def conversion_argument_list
        conversion_arguments.join(', ')
      end

      def conversion_arguments
        if @type_info.flattened_tag == :c
          [@type_info.element_type.inspect, array_size, @argument_name]
        else
          @type_info.extra_conversion_arguments.map(&:inspect).push(@argument_name)
        end
      end

      def array_size
        if @length_arg
          @length_arg
        else
          @type_info.array_fixed_size
        end
      end
    end
  end
end