require 'set' require 'date' require 'time' require 'pathname' require 'bigdecimal' require 'hanami/utils' require 'hanami/utils/string' unless defined?(Boolean) # Define top level constant Boolean, so it can be easily used by other libraries # in coercions DSLs # # @since 0.3.0 class Boolean end end module Hanami module Utils # Kernel utilities # @since 0.1.1 module Kernel # rubocop:disable Metrics/ModuleLength # Matcher for numeric values # # @since 0.3.3 # @api private # # @see Hanami::Utils::Kernel.Integer NUMERIC_MATCHER = %r{\A([\d\/\.\+iE]+|NaN|Infinity)\z} # @since 0.8.0 # @api private BOOLEAN_FALSE_STRING = '0'.freeze # @since 0.8.0 # @api private BOOLEAN_TRUE_INTEGER = 1 # Coerces the argument to be an Array. # # It's similar to Ruby's Kernel.Array, but it applies further # transformations: # # * flatten # * compact # * uniq # # @param arg [Object] the input # # @return [Array] the result of the coercion # # @since 0.1.1 # # @see http://www.ruby-doc.org/core/Kernel.html#method-i-Array # # @see http://www.ruby-doc.org/core/Array.html#method-i-flatten # @see http://www.ruby-doc.org/core/Array.html#method-i-compact # @see http://www.ruby-doc.org/core/Array.html#method-i-uniq # # @example Basic Usage # require 'hanami/utils/kernel' # # Hanami::Utils::Kernel.Array(nil) # => [] # Hanami::Utils::Kernel.Array(true) # => [true] # Hanami::Utils::Kernel.Array(false) # => [false] # Hanami::Utils::Kernel.Array(1) # => [1] # Hanami::Utils::Kernel.Array([1]) # => [1] # Hanami::Utils::Kernel.Array([1, [2]]) # => [1,2] # Hanami::Utils::Kernel.Array([1, [2, nil]]) # => [1,2] # Hanami::Utils::Kernel.Array([1, [2, nil, 1]]) # => [1,2] # # @example Array Interface # require 'hanami/utils/kernel' # # ResultSet = Struct.new(:records) do # def to_a # records.to_a.sort # end # end # # Response = Struct.new(:status, :headers, :body) do # def to_ary # [status, headers, body] # end # end # # set = ResultSet.new([2,1,3]) # Hanami::Utils::Kernel.Array(set) # => [1,2,3] # # response = Response.new(200, {}, 'hello') # Hanami::Utils::Kernel.Array(response) # => [200, {}, "hello"] def self.Array(arg) super(arg).dup.tap do |a| a.flatten! a.compact! a.uniq! end end # Coerces the argument to be a Set. # # @param arg [Object] the input # # @return [Set] the result of the coercion # # @raise [TypeError] if arg doesn't implement #respond_to? # # @since 0.1.1 # # @example Basic Usage # require 'hanami/utils/kernel' # # Hanami::Utils::Kernel.Set(nil) # => # # Hanami::Utils::Kernel.Set(true) # => # # Hanami::Utils::Kernel.Set(false) # => # # Hanami::Utils::Kernel.Set(1) # => # # Hanami::Utils::Kernel.Set([1]) # => # # Hanami::Utils::Kernel.Set([1, 1]) # => # # Hanami::Utils::Kernel.Set([1, [2]]) # => # # Hanami::Utils::Kernel.Set([1, [2, nil]]) # => # # Hanami::Utils::Kernel.Set({a: 1}) # => # # # @example Set Interface # require 'securerandom' # require 'hanami/utils/kernel' # # UuidSet = Class.new do # def initialize(*uuids) # @uuids = uuids # end # # def to_set # Set.new.tap do |set| # @uuids.each {|uuid| set.add(uuid) } # end # end # end # # uuids = UuidSet.new(SecureRandom.uuid) # Hanami::Utils::Kernel.Set(uuids) # # => # # # @example Unchecked Exceptions # require 'hanami/utils/kernel' # # Hanami::Utils::Kernel.Set(BasicObject.new) # => TypeError def self.Set(arg) if arg.respond_to?(:to_set) arg.to_set else Set.new(::Kernel.Array(arg)) end rescue NoMethodError raise TypeError.new("can't convert #{inspect_type_error(arg)}into Set") end # Coerces the argument to be a Hash. # # @param arg [Object] the input # # @return [Hash] the result of the coercion # # @raise [TypeError] if arg can't be coerced # # @since 0.1.1 # # @see http://www.ruby-doc.org/core/Kernel.html#method-i-Hash # # @example Basic Usage # require 'hanami/utils/kernel' # # Hanami::Utils::Kernel.Hash(nil) # => {} # Hanami::Utils::Kernel.Hash({a: 1}) # => { :a => 1 } # Hanami::Utils::Kernel.Hash([[:a, 1]]) # => { :a => 1 } # Hanami::Utils::Kernel.Hash(Set.new([[:a, 1]])) # => { :a => 1 } # # @example Hash Interface # require 'hanami/utils/kernel' # # Room = Class.new do # def initialize(*args) # @args = args # end # # def to_h # Hash[*@args] # end # end # # Record = Class.new do # def initialize(attributes = {}) # @attributes = attributes # end # # def to_hash # @attributes # end # end # # room = Room.new(:key, 123456) # Hanami::Utils::Kernel.Hash(room) # => { :key => 123456 } # # record = Record.new(name: 'L') # Hanami::Utils::Kernel.Hash(record) # => { :name => "L" } # # @example Unchecked Exceptions # require 'hanami/utils/kernel' # # input = BasicObject.new # Hanami::Utils::Kernel.Hash(input) # => TypeError def self.Hash(arg) if arg.respond_to?(:to_h) arg.to_h else super(arg) end rescue NoMethodError raise TypeError.new "can't convert #{inspect_type_error(arg)}into Hash" end # Coerces the argument to be an Integer. # # It's similar to Ruby's Kernel.Integer, but it doesn't stop at the first # error and raise an exception only when the argument can't be coerced. # # @param arg [Object] the argument # # @return [Fixnum] the result of the coercion # # @raise [TypeError] if the argument can't be coerced # # @since 0.1.1 # # @see http://www.ruby-doc.org/core/Kernel.html#method-i-Integer # # @example Basic Usage # require 'bigdecimal' # require 'hanami/utils/kernel' # # Hanami::Utils::Kernel.Integer(1) # => 1 # Hanami::Utils::Kernel.Integer(1.2) # => 1 # Hanami::Utils::Kernel.Integer(011) # => 9 # Hanami::Utils::Kernel.Integer(0xf5) # => 245 # Hanami::Utils::Kernel.Integer("1") # => 1 # Hanami::Utils::Kernel.Integer(Rational(0.3)) # => 0 # Hanami::Utils::Kernel.Integer(Complex(0.3)) # => 0 # Hanami::Utils::Kernel.Integer(BigDecimal.new(12.00001)) # => 12 # Hanami::Utils::Kernel.Integer(176605528590345446089) # # => 176605528590345446089 # # Hanami::Utils::Kernel.Integer(Time.now) # => 1396947161 # # @example Integer Interface # require 'hanami/utils/kernel' # # UltimateAnswer = Struct.new(:question) do # def to_int # 42 # end # end # # answer = UltimateAnswer.new('The Ultimate Question of Life') # Hanami::Utils::Kernel.Integer(answer) # => 42 # # @example Error Handling # require 'hanami/utils/kernel' # # # nil # Kernel.Integer(nil) # => TypeError # Hanami::Utils::Kernel.Integer(nil) # => 0 # # # float represented as a string # Kernel.Integer("23.4") # => TypeError # Hanami::Utils::Kernel.Integer("23.4") # => 23 # # # rational represented as a string # Kernel.Integer("2/3") # => TypeError # Hanami::Utils::Kernel.Integer("2/3") # => 2 # # # complex represented as a string # Kernel.Integer("2.5/1") # => TypeError # Hanami::Utils::Kernel.Integer("2.5/1") # => 2 # # @example Unchecked Exceptions # require 'date' # require 'bigdecimal' # require 'hanami/utils/kernel' # # # Missing #to_int and #to_i # input = OpenStruct.new(color: 'purple') # Hanami::Utils::Kernel.Integer(input) # => TypeError # # # String that doesn't represent an integer # input = 'hello' # Hanami::Utils::Kernel.Integer(input) # => TypeError # # # When true # input = true # Hanami::Utils::Kernel.Integer(input) # => TypeError # # # When false # input = false # Hanami::Utils::Kernel.Integer(input) # => TypeError # # # When Date # input = Date.today # Hanami::Utils::Kernel.Integer(input) # => TypeError # # # When DateTime # input = DateTime.now # Hanami::Utils::Kernel.Integer(input) # => TypeError # # # bigdecimal infinity # input = BigDecimal.new("Infinity") # Hanami::Utils::Kernel.Integer(input) # => TypeError # # # bigdecimal NaN # input = BigDecimal.new("NaN") # Hanami::Utils::Kernel.Integer(input) # => TypeError # # # big rational # input = Rational(-8) ** Rational(1, 3) # Hanami::Utils::Kernel.Integer(input) # => TypeError # # # big complex represented as a string # input = Complex(2, 3) # Hanami::Utils::Kernel.Integer(input) # => TypeError def self.Integer(arg) # rubocop:disable Metrics/MethodLength super(arg) rescue ArgumentError, TypeError, NoMethodError begin case arg when NilClass, ->(a) { a.respond_to?(:to_i) && numeric?(a) } arg.to_i else raise TypeError.new "can't convert #{inspect_type_error(arg)}into Integer" end rescue NoMethodError raise TypeError.new "can't convert #{inspect_type_error(arg)}into Integer" end rescue RangeError raise TypeError.new "can't convert #{inspect_type_error(arg)}into Integer" end # Coerces the argument to be a BigDecimal. # # @param arg [Object] the argument # # @return [BigDecimal] the result of the coercion # # @raise [TypeError] if the argument can't be coerced # # @since 0.3.0 # # @see http://www.ruby-doc.org/stdlib/libdoc/bigdecimal/rdoc/BigDecimal.html # # @example Basic Usage # require 'hanami/utils/kernel' # # Hanami::Utils::Kernel.BigDecimal(1) # => 1 # Hanami::Utils::Kernel.BigDecimal(1.2) # => 1 # Hanami::Utils::Kernel.BigDecimal(011) # => 9 # Hanami::Utils::Kernel.BigDecimal(0xf5) # => 245 # Hanami::Utils::Kernel.BigDecimal("1") # => 1 # Hanami::Utils::Kernel.BigDecimal(Rational(0.3)) # => 0.3 # Hanami::Utils::Kernel.BigDecimal(Complex(0.3)) # => 0.3 # Hanami::Utils::Kernel.BigDecimal(BigDecimal.new(12.00001)) # => 12.00001 # Hanami::Utils::Kernel.BigDecimal(176605528590345446089) # # => 176605528590345446089 # # @example BigDecimal Interface # require 'hanami/utils/kernel' # # UltimateAnswer = Struct.new(:question) do # def to_d # BigDecimal.new(42) # end # end # # answer = UltimateAnswer.new('The Ultimate Question of Life') # Hanami::Utils::Kernel.BigDecimal(answer) # # => # # # @example Unchecked exceptions # require 'hanami/utils/kernel' # # # When nil # input = nil # Hanami::Utils::Kernel.BigDecimal(nil) # => TypeError # # # When true # input = true # Hanami::Utils::Kernel.BigDecimal(input) # => TypeError # # # When false # input = false # Hanami::Utils::Kernel.BigDecimal(input) # => TypeError # # # When Date # input = Date.today # Hanami::Utils::Kernel.BigDecimal(input) # => TypeError # # # When DateTime # input = DateTime.now # Hanami::Utils::Kernel.BigDecimal(input) # => TypeError # # # When Time # input = Time.now # Hanami::Utils::Kernel.BigDecimal(input) # => TypeError # # # String that doesn't represent a big decimal # input = 'hello' # Hanami::Utils::Kernel.BigDecimal(input) # => TypeError # # # Missing #respond_to? # input = BasicObject.new # Hanami::Utils::Kernel.BigDecimal(input) # => TypeError def self.BigDecimal(arg) case arg when Numeric BigDecimal(arg.to_s) when ->(a) { a.respond_to?(:to_d) } arg.to_d else BigDecimal.new(arg) end rescue NoMethodError raise TypeError.new "can't convert #{inspect_type_error(arg)}into BigDecimal" end # Coerces the argument to be a Float. # # It's similar to Ruby's Kernel.Float, but it doesn't stop at the first # error and raise an exception only when the argument can't be coerced. # # @param arg [Object] the argument # # @return [Float] the result of the coercion # # @raise [TypeError] if the argument can't be coerced # # @since 0.1.1 # # @see http://www.ruby-doc.org/core/Kernel.html#method-i-Float # # @example Basic Usage # require 'bigdecimal' # require 'hanami/utils/kernel' # # Hanami::Utils::Kernel.Float(1) # => 1.0 # Hanami::Utils::Kernel.Float(1.2) # => 1.2 # Hanami::Utils::Kernel.Float(011) # => 9.0 # Hanami::Utils::Kernel.Float(0xf5) # => 245.0 # Hanami::Utils::Kernel.Float("1") # => 1.0 # Hanami::Utils::Kernel.Float(Rational(0.3)) # => 0.3 # Hanami::Utils::Kernel.Float(Complex(0.3)) # => 0.3 # Hanami::Utils::Kernel.Float(BigDecimal.new(12.00001)) # => 12.00001 # Hanami::Utils::Kernel.Float(176605528590345446089) # # => 176605528590345446089.0 # # Hanami::Utils::Kernel.Float(Time.now) # => 397750945.515169 # # @example Float Interface # require 'hanami/utils/kernel' # # class Pi # def to_f # 3.14 # end # end # # pi = Pi.new # Hanami::Utils::Kernel.Float(pi) # => 3.14 # # @example Error Handling # require 'bigdecimal' # require 'hanami/utils/kernel' # # # nil # Kernel.Float(nil) # => TypeError # Hanami::Utils::Kernel.Float(nil) # => 0.0 # # # float represented as a string # Kernel.Float("23.4") # => TypeError # Hanami::Utils::Kernel.Float("23.4") # => 23.4 # # # rational represented as a string # Kernel.Float("2/3") # => TypeError # Hanami::Utils::Kernel.Float("2/3") # => 2.0 # # # complex represented as a string # Kernel.Float("2.5/1") # => TypeError # Hanami::Utils::Kernel.Float("2.5/1") # => 2.5 # # # bigdecimal infinity # input = BigDecimal.new("Infinity") # Hanami::Utils::Kernel.Float(input) # => Infinity # # # bigdecimal NaN # input = BigDecimal.new("NaN") # Hanami::Utils::Kernel.Float(input) # => NaN # # @example Unchecked Exceptions # require 'date' # require 'bigdecimal' # require 'hanami/utils/kernel' # # # Missing #to_f # input = OpenStruct.new(color: 'purple') # Hanami::Utils::Kernel.Float(input) # => TypeError # # # When true # input = true # Hanami::Utils::Kernel.Float(input) # => TypeError # # # When false # input = false # Hanami::Utils::Kernel.Float(input) # => TypeError # # # When Date # input = Date.today # Hanami::Utils::Kernel.Float(input) # => TypeError # # # When DateTime # input = DateTime.now # Hanami::Utils::Kernel.Float(input) # => TypeError # # # Missing #nil? # input = BasicObject.new # Hanami::Utils::Kernel.Float(input) # => TypeError # # # String that doesn't represent a float # input = 'hello' # Hanami::Utils::Kernel.Float(input) # => TypeError # # # big rational # input = Rational(-8) ** Rational(1, 3) # Hanami::Utils::Kernel.Float(input) # => TypeError # # # big complex represented as a string # input = Complex(2, 3) # Hanami::Utils::Kernel.Float(input) # => TypeError def self.Float(arg) # rubocop:disable Metrics/MethodLength super(arg) rescue ArgumentError, TypeError begin case arg when NilClass, ->(a) { a.respond_to?(:to_f) && numeric?(a) } arg.to_f else raise TypeError.new "can't convert #{inspect_type_error(arg)}into Float" end rescue NoMethodError raise TypeError.new "can't convert #{inspect_type_error(arg)}into Float" end rescue RangeError raise TypeError.new "can't convert #{inspect_type_error(arg)}into Float" end # Coerces the argument to be a String. # # Identical behavior of Ruby's Kernel.Array, still here because we want # to keep the interface consistent # # @param arg [Object] the argument # # @return [String] the result of the coercion # # @raise [TypeError] if the argument can't be coerced # # @since 0.1.1 # # @see http://www.ruby-doc.org/core/Kernel.html#method-i-String # # @example Basic Usage # require 'date' # require 'bigdecimal' # require 'hanami/utils/kernel' # # Hanami::Utils::Kernel.String('') # => "" # Hanami::Utils::Kernel.String('ciao') # => "ciao" # # Hanami::Utils::Kernel.String(true) # => "true" # Hanami::Utils::Kernel.String(false) # => "false" # # Hanami::Utils::Kernel.String(:hanami) # => "hanami" # # Hanami::Utils::Kernel.String(Picture) # => "Picture" # class # Hanami::Utils::Kernel.String(Hanami) # => "Hanami" # module # # Hanami::Utils::Kernel.String([]) # => "[]" # Hanami::Utils::Kernel.String([1,2,3]) # => "[1, 2, 3]" # Hanami::Utils::Kernel.String(%w[a b c]) # => "[\"a\", \"b\", \"c\"]" # # Hanami::Utils::Kernel.String({}) # => "{}" # Hanami::Utils::Kernel.String({a: 1, 'b' => 'c'}) # => "{:a=>1, \"b\"=>\"c\"}" # # Hanami::Utils::Kernel.String(Date.today) # => "2014-04-11" # Hanami::Utils::Kernel.String(DateTime.now) # => "2014-04-11T10:15:06+02:00" # Hanami::Utils::Kernel.String(Time.now) # => "2014-04-11 10:15:53 +0200" # # Hanami::Utils::Kernel.String(1) # => "1" # Hanami::Utils::Kernel.String(3.14) # => "3.14" # Hanami::Utils::Kernel.String(013) # => "11" # Hanami::Utils::Kernel.String(0xc0ff33) # => "12648243" # # Hanami::Utils::Kernel.String(Rational(-22)) # => "-22/1" # Hanami::Utils::Kernel.String(Complex(11, 2)) # => "11+2i" # Hanami::Utils::Kernel.String(BigDecimal.new(7944.2343, 10)) # => "0.79442343E4" # Hanami::Utils::Kernel.String(BigDecimal.new('Infinity')) # => "Infinity" # Hanami::Utils::Kernel.String(BigDecimal.new('NaN')) # => "Infinity" # # @example String interface # require 'hanami/utils/kernel' # # SimpleObject = Class.new(BasicObject) do # def to_s # 'simple object' # end # end # # Isbn = Struct.new(:code) do # def to_str # code.to_s # end # end # # simple = SimpleObject.new # isbn = Isbn.new(123) # # Hanami::Utils::Kernel.String(simple) # => "simple object" # Hanami::Utils::Kernel.String(isbn) # => "123" # # @example Comparison with Ruby # require 'hanami/utils/kernel' # # # nil # Kernel.String(nil) # => "" # Hanami::Utils::Kernel.String(nil) # => "" # # @example Unchecked Exceptions # require 'hanami/utils/kernel' # # # Missing #to_s or #to_str # input = BaseObject.new # Hanami::Utils::Kernel.String(input) # => TypeError def self.String(arg) arg = arg.to_str if arg.respond_to?(:to_str) super(arg) rescue NoMethodError raise TypeError.new "can't convert #{inspect_type_error(arg)}into String" end # Coerces the argument to be a Date. # # @param arg [Object] the argument # # @return [Date] the result of the coercion # # @raise [TypeError] if the argument can't be coerced # # @since 0.1.1 # # @example Basic Usage # require 'hanami/utils/kernel' # # Hanami::Utils::Kernel.Date(Date.today) # # => # # # Hanami::Utils::Kernel.Date(DateTime.now) # # => # # # Hanami::Utils::Kernel.Date(Time.now) # # => # # # Hanami::Utils::Kernel.Date('2014-04-17') # # => # # # Hanami::Utils::Kernel.Date('2014-04-17 22:37:15') # # => # # # @example Date Interface # require 'hanami/utils/kernel' # # class Christmas # def to_date # Date.parse('Dec, 25') # end # end # # Hanami::Utils::Kernel.Date(Christmas.new) # # => # # # @example Unchecked Exceptions # require 'hanami/utils/kernel' # # # nil # input = nil # Hanami::Utils::Kernel.Date(input) # => TypeError # # # Missing #respond_to? # input = BasicObject.new # Hanami::Utils::Kernel.Date(input) # => TypeError # # # Missing #to_s? # input = BasicObject.new # Hanami::Utils::Kernel.Date(input) # => TypeError def self.Date(arg) if arg.respond_to?(:to_date) arg.to_date else Date.parse(arg.to_s) end rescue ArgumentError, NoMethodError raise TypeError.new "can't convert #{inspect_type_error(arg)}into Date" end # Coerces the argument to be a DateTime. # # @param arg [Object] the argument # # @return [DateTime] the result of the coercion # # @raise [TypeError] if the argument can't be coerced # # @since 0.1.1 # # @example Basic Usage # require 'hanami/utils/kernel' # # Hanami::Utils::Kernel.DateTime(3483943) # # => Time.at(3483943).to_datetime # # # Hanami::Utils::Kernel.DateTime(DateTime.now) # # => # # # Hanami::Utils::Kernel.DateTime(Date.today) # # => # # # Hanami::Utils::Kernel.Date(Time.now) # # => # # # Hanami::Utils::Kernel.DateTime('2014-04-18') # # => # # # Hanami::Utils::Kernel.DateTime('2014-04-18 09:35:42') # # => # # # @example DateTime Interface # require 'hanami/utils/kernel' # # class NewYearEve # def to_datetime # DateTime.parse('Jan, 1') # end # end # # Hanami::Utils::Kernel.Date(NewYearEve.new) # # => # # # @example Unchecked Exceptions # require 'hanami/utils/kernel' # # # When nil # input = nil # Hanami::Utils::Kernel.DateTime(input) # => TypeError # # # Missing #respond_to? # input = BasicObject.new # Hanami::Utils::Kernel.DateTime(input) # => TypeError # # # Missing #to_s? # input = BasicObject.new # Hanami::Utils::Kernel.DateTime(input) # => TypeError def self.DateTime(arg) case arg when ->(a) { a.respond_to?(:to_datetime) } then arg.to_datetime when Numeric then DateTime(Time.at(arg)) else DateTime.parse(arg.to_s) end rescue ArgumentError, NoMethodError raise TypeError.new "can't convert #{inspect_type_error(arg)}into DateTime" end # Coerces the argument to be a Time. # # @param arg [Object] the argument # # @return [Time] the result of the coercion # # @raise [TypeError] if the argument can't be coerced # # @since 0.1.1 # # @example Basic Usage # require 'hanami/utils/kernel' # # Hanami::Utils::Kernel.Time(Time.now) # # => 2014-04-18 15:56:39 +0200 # # Hanami::Utils::Kernel.Time(DateTime.now) # # => 2014-04-18 15:56:39 +0200 # # Hanami::Utils::Kernel.Time(Date.today) # # => 2014-04-18 00:00:00 +0200 # # Hanami::Utils::Kernel.Time('2014-04-18') # # => 2014-04-18 00:00:00 +0200 # # Hanami::Utils::Kernel.Time('2014-04-18 15:58:02') # # => 2014-04-18 15:58:02 +0200 # # @example Time Interface # require 'hanami/utils/kernel' # # class Epoch # def to_time # Time.at(0) # end # end # # Hanami::Utils::Kernel.Time(Epoch.new) # # => 1970-01-01 01:00:00 +0100 # # @example Unchecked Exceptions # require 'hanami/utils/kernel' # # # When nil # input = nil # Hanami::Utils::Kernel.Time(input) # => TypeError # # # Missing #respond_to? # input = BasicObject.new # Hanami::Utils::Kernel.Time(input) # => TypeError # # # Missing #to_s? # input = BasicObject.new # Hanami::Utils::Kernel.Time(input) # => TypeError def self.Time(arg) case arg when ->(a) { a.respond_to?(:to_time) } then arg.to_time when Numeric then Time.at(arg) else Time.parse(arg.to_s) end rescue ArgumentError, NoMethodError raise TypeError.new "can't convert #{inspect_type_error(arg)}into Time" end # Coerces the argument to be a Boolean. # # @param arg [Object] the argument # # @return [true,false] the result of the coercion # # @raise [TypeError] if the argument can't be coerced # # @since 0.1.1 # # @example Basic Usage # require 'hanami/utils/kernel' # # Hanami::Utils::Kernel.Boolean(nil) # => false # Hanami::Utils::Kernel.Boolean(0) # => false # Hanami::Utils::Kernel.Boolean(1) # => true # Hanami::Utils::Kernel.Boolean('0') # => false # Hanami::Utils::Kernel.Boolean('1') # => true # Hanami::Utils::Kernel.Boolean(Object.new) # => true # # @example Boolean Interface # require 'hanami/utils/kernel' # # Answer = Struct.new(:answer) do # def to_bool # case answer # when 'yes' then true # else false # end # end # end # # answer = Answer.new('yes') # Hanami::Utils::Kernel.Boolean(answer) # => true # # @example Unchecked Exceptions # require 'hanami/utils/kernel' # # # Missing #respond_to? # input = BasicObject.new # Hanami::Utils::Kernel.Boolean(input) # => TypeError def self.Boolean(arg) # rubocop:disable Metrics/MethodLength case arg when Numeric arg.to_i == BOOLEAN_TRUE_INTEGER when ::String, Utils::String, BOOLEAN_FALSE_STRING Boolean(arg.to_i) when ->(a) { a.respond_to?(:to_bool) } arg.to_bool else !!arg end rescue NoMethodError raise TypeError.new "can't convert #{inspect_type_error(arg)}into Boolean" end # Coerces the argument to be a Pathname. # # @param arg [#to_pathname,#to_str] the argument # # @return [Pathname] the result of the coercion # # @raise [TypeError] if the argument can't be coerced # # @since 0.1.2 # # @example Basic Usage # require 'hanami/utils/kernel' # # Hanami::Utils::Kernel.Pathname(Pathname.new('/path/to')) # => # # Hanami::Utils::Kernel.Pathname('/path/to') # => # # # @example Pathname Interface # require 'hanami/utils/kernel' # # class HomePath # def to_pathname # Pathname.new Dir.home # end # end # # Hanami::Utils::Kernel.Pathname(HomePath.new) # => # # # @example String Interface # require 'hanami/utils/kernel' # # class RootPath # def to_str # '/' # end # end # # Hanami::Utils::Kernel.Pathname(RootPath.new) # => # # # @example Unchecked Exceptions # require 'hanami/utils/kernel' # # # When nil # input = nil # Hanami::Utils::Kernel.Pathname(input) # => TypeError # # # Missing #respond_to? # input = BasicObject.new # Hanami::Utils::Kernel.Pathname(input) # => TypeError def self.Pathname(arg) case arg when ->(a) { a.respond_to?(:to_pathname) } then arg.to_pathname else super end rescue NoMethodError raise TypeError.new "can't convert #{inspect_type_error(arg)}into Pathname" end # Coerces the argument to be a Symbol. # # @param arg [#to_sym] the argument # # @return [Symbol] the result of the coercion # # @raise [TypeError] if the argument can't be coerced # # @since 0.2.0 # # @example Basic Usage # require 'hanami/utils/kernel' # # Hanami::Utils::Kernel.Symbol(:hello) # => :hello # Hanami::Utils::Kernel.Symbol('hello') # => :hello # # @example Symbol Interface # require 'hanami/utils/kernel' # # class StatusSymbol # def to_sym # :success # end # end # # Hanami::Utils::Kernel.Symbol(StatusSymbol.new) # => :success # # @example Unchecked Exceptions # require 'hanami/utils/kernel' # # # When nil # input = nil # Hanami::Utils::Kernel.Symbol(input) # => TypeError # # # When empty string # input = '' # Hanami::Utils::Kernel.Symbol(input) # => TypeError # # # Missing #respond_to? # input = BasicObject.new # Hanami::Utils::Kernel.Symbol(input) # => TypeError def self.Symbol(arg) case arg when '' then raise TypeError.new "can't convert #{inspect_type_error(arg)}into Symbol" when ->(a) { a.respond_to?(:to_sym) } then arg.to_sym else raise TypeError.new "can't convert #{inspect_type_error(arg)}into Symbol" end rescue NoMethodError raise TypeError.new "can't convert #{inspect_type_error(arg)}into Symbol" end # Check if the given argument is a string representation of a number # # @param arg [Object] the input # # @return [TrueClass,FalseClass] # # @since 0.8.0 # @api private def self.numeric?(arg) !(arg.to_s =~ NUMERIC_MATCHER).nil? end # Returns the most useful type error possible # # If the object does not respond_to?(:inspect), we return the class, else we # return nil. In all cases, this method is tightly bound to callers, as this # method appends the required space to make the error message look good. # # @since 0.4.3 # @api private def self.inspect_type_error(arg) (arg.respond_to?(:inspect) ? arg.inspect : arg.to_s) << ' ' rescue NoMethodError => _ # missing the #respond_to? method, fall back to returning the class' name begin arg.class.name << ' instance ' rescue NoMethodError # missing the #class method, can't fall back to anything better than nothing # Callers will have to guess from their code nil end end class << self private :inspect_type_error end end end end