Sha256: 2f633f3a5bec8354e48f21634ff75c926a3e711e9bbf7794fc38befd1de0ce49

Contents?: true

Size: 1.81 KB

Versions: 5

Compression:

Stored size: 1.81 KB

Contents

# Copyright (C) 2019  Ruby-GNOME2 Project Team
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

module GObjectIntrospection
  class TypeInfo
    def match?(value)
      case tag
      when TypeTag::BOOLEAN
        value == true or value == false
      when TypeTag::INT8,
           TypeTag::UINT8,
           TypeTag::INT16,
           TypeTag::UINT16,
           TypeTag::INT32,
           TypeTag::UINT32,
           TypeTag::INT64,
           TypeTag::UINT64,
           TypeTag::FLOAT,
           TypeTag::DOUBLE
        value.is_a?(Numeric)
      when TypeTag::GTYPE
        value.is_a?(GLib::Type)
      when TypeTag::UTF8
        value.is_a?(String)
      when TypeTag::FILENAME
        value.is_a?(String)
      when TypeTag::ARRAY
        element_type_info = get_param_type(0)
        value.is_a?(Array) and value.all? {|v| element_type_info.match?(v)}
      when TypeTag::INTERFACE
        interface.match?(value)
      when TypeTag::GLIST,
           TypeTag::GSLIST
        element_type_info = get_param_type(0)
        value.is_a?(Array) and value.all? {|v| element_type_info.match?(v)}
      else
        # TODO
        false
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
gobject-introspection-3.3.7 lib/gobject-introspection/type-info.rb
gobject-introspection-3.3.6 lib/gobject-introspection/type-info.rb
gobject-introspection-3.3.5 lib/gobject-introspection/type-info.rb
gobject-introspection-3.3.4 lib/gobject-introspection/type-info.rb
gobject-introspection-3.3.3 lib/gobject-introspection/type-info.rb