Class: Icalendar::Parser

Inherits:
Object
  • Object
show all
Defined in:
lib/icalendar/parser.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, strict = false, verbose = false) ⇒ Parser

Returns a new instance of Parser.



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/icalendar/parser.rb', line 24

def initialize(source, strict = false, verbose = false)
  if source.respond_to? :gets
    @source = source
  elsif source.respond_to? :to_s
    @source = StringIO.new source.to_s, 'r'
  else
    msg = 'Icalendar::Parser.new must be called with a String or IO object'
    Icalendar.fatal msg
    fail ArgumentError, msg
  end
  read_in_data
  @strict = strict
  @verbose = verbose
  @timezone_store = TimezoneStore.new
end

Instance Attribute Details

#component_class=(value) ⇒ Object

Sets the attribute component_class

Parameters:

  • value

    the value to set the attribute component_class to.



6
7
8
# File 'lib/icalendar/parser.rb', line 6

def component_class=(value)
  @component_class = value
end

#sourceObject (readonly)

Returns the value of attribute source.



7
8
9
# File 'lib/icalendar/parser.rb', line 7

def source
  @source
end

#strictObject (readonly)

Returns the value of attribute strict.



7
8
9
# File 'lib/icalendar/parser.rb', line 7

def strict
  @strict
end

#timezone_storeObject (readonly)

Returns the value of attribute timezone_store.



7
8
9
# File 'lib/icalendar/parser.rb', line 7

def timezone_store
  @timezone_store
end

#verboseObject (readonly)

Returns the value of attribute verbose.



7
8
9
# File 'lib/icalendar/parser.rb', line 7

def verbose
  @verbose
end

Class Method Details

.clean_bad_wrapping(source) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/icalendar/parser.rb', line 9

def self.clean_bad_wrapping(source)
  content = if source.respond_to? :read
    source.read
  elsif source.respond_to? :to_s
    source.to_s
  else
    msg = 'Icalendar::Parser.clean_bad_wrapping must be called with a String or IO object'
    Icalendar.fatal msg
    fail ArgumentError, msg
  end
  encoding = content.encoding
  content.force_encoding(Encoding::ASCII_8BIT)
  content.gsub(/\r?\n[ \t]/, "").force_encoding(encoding)
end

Instance Method Details

#get_wrapper_class(component, fields) ⇒ Object



96
97
98
99
100
101
102
103
104
105
106
# File 'lib/icalendar/parser.rb', line 96

def get_wrapper_class(component, fields)
  klass = component.class.default_property_types[fields[:name]]
  if !fields[:params]['value'].nil?
    klass_name = fields[:params].delete('value').first
    unless klass_name.upcase == klass.value_type
      klass_name = "Icalendar::Values::#{klass_name.downcase.gsub(/(?:\A|-)(.)/) { |m| m[-1].upcase }}"
      klass = Object.const_get klass_name if Object.const_defined?(klass_name)
    end
  end
  klass
end

#parseObject



40
41
42
43
44
45
46
47
48
49
# File 'lib/icalendar/parser.rb', line 40

def parse
  components = []
  while (fields = next_fields)
    component = component_class.new
    if fields[:name] == 'begin' && fields[:value].downcase == component.ical_name.downcase
      components << parse_component(component)
    end
  end
  components
end

#parse_property(component, fields = nil) ⇒ Object



51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/icalendar/parser.rb', line 51

def parse_property(component, fields = nil)
  fields = next_fields if fields.nil?
  prop_name = %w(class method).include?(fields[:name]) ? "ip_#{fields[:name]}" : fields[:name]
  multi_property = component.class.multiple_properties.include? prop_name
  prop_value = wrap_property_value component, fields, multi_property
  begin
    method_name = if multi_property
      "append_#{prop_name}"
    else
      "#{prop_name}="
    end
    component.send method_name, prop_value
  rescue NoMethodError => nme
    if strict?
      Icalendar.logger.error "No method \"#{method_name}\" for component #{component}"
      raise nme
    else
      Icalendar.logger.warn "No method \"#{method_name}\" for component #{component}. Appending to custom." if verbose?
      component.append_custom_property prop_name, prop_value
    end
  end
end

#strict?Boolean

Returns:

  • (Boolean)


108
109
110
# File 'lib/icalendar/parser.rb', line 108

def strict?
  !!@strict
end

#verbose?Boolean

Returns:

  • (Boolean)


112
113
114
# File 'lib/icalendar/parser.rb', line 112

def verbose?
  @verbose
end

#wrap_in_array?(klass, value, multi_property) ⇒ Boolean

Returns:

  • (Boolean)


91
92
93
94
# File 'lib/icalendar/parser.rb', line 91

def wrap_in_array?(klass, value, multi_property)
  klass.value_type != 'RECUR' &&
    ((multi_property && value =~ /(?<!\\)[,;]/) || value =~ /(?<!\\);/)
end

#wrap_property_value(component, fields, multi_property) ⇒ Object



74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# File 'lib/icalendar/parser.rb', line 74

def wrap_property_value(component, fields, multi_property)
  klass = get_wrapper_class component, fields
  if wrap_in_array? klass, fields[:value], multi_property
    delimiter = fields[:value].match(/(?<!\\)([,;])/)[1]
    Icalendar::Values::Array.new fields[:value].split(/(?<!\\)[;,]/),
                                 klass,
                                 fields[:params],
                                 delimiter: delimiter
  else
    klass.new fields[:value], fields[:params]
  end
rescue Icalendar::Values::DateTime::FormatError => fe
  raise fe if strict?
  fields[:params]['value'] = ['DATE']
  retry
end