Class: PDF::Reader::TypeCheck

Inherits:
Object
  • Object
show all
Defined in:
lib/pdf/reader/type_check.rb

Overview

Cast untrusted input (usually parsed out of a PDF file) to a known type

Class Method Summary collapse

Class Method Details

.cast_to_numeric!(obj) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/pdf/reader/type_check.rb', line 12

def self.cast_to_numeric!(obj)
  if obj.is_a?(Numeric)
    obj
  elsif obj.nil?
    0
  elsif obj.respond_to?(:to_f)
    obj.to_f
  elsif obj.respond_to?(:to_i)
    obj.to_i
  else
    raise MalformedPDFError, "Unable to cast to numeric"
  end
end

.cast_to_string!(string) ⇒ Object



26
27
28
29
30
31
32
33
34
35
36
# File 'lib/pdf/reader/type_check.rb', line 26

def self.cast_to_string!(string)
  if string.is_a?(String)
    string
  elsif string.nil?
    ""
  elsif string.respond_to?(:to_s)
    string.to_s
  else
    raise MalformedPDFError, "Unable to cast to string"
  end
end

.cast_to_symbol(obj) ⇒ Object



38
39
40
41
42
43
44
45
46
47
48
# File 'lib/pdf/reader/type_check.rb', line 38

def self.cast_to_symbol(obj)
  if obj.is_a?(Symbol)
    obj
  elsif obj.nil?
    nil
  elsif obj.respond_to?(:to_sym)
    obj.to_sym
  else
    raise MalformedPDFError, "Unable to cast to symbol"
  end
end