Class: Icalendar::Parser
- Inherits:
-
Object
- Object
- Icalendar::Parser
- Defined in:
- lib/icalendar/parser.rb
Instance Attribute Summary collapse
-
#component ⇒ Object
writeonly
Sets the attribute component.
-
#source ⇒ Object
readonly
Returns the value of attribute source.
-
#strict ⇒ Object
readonly
Returns the value of attribute strict.
Instance Method Summary collapse
- #get_wrapper_class(component, fields) ⇒ Object
-
#initialize(source, strict = false) ⇒ Parser
constructor
A new instance of Parser.
- #parse ⇒ Object
- #parse_property(component, fields = nil) ⇒ Object
- #strict? ⇒ Boolean
- #wrap_in_array?(klass, value, multi_property) ⇒ Boolean
- #wrap_property_value(component, fields, multi_property) ⇒ Object
Constructor Details
#initialize(source, strict = false) ⇒ Parser
Returns a new instance of Parser.
7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/icalendar/parser.rb', line 7 def initialize(source, strict = 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 end |
Instance Attribute Details
#component=(value) ⇒ Object
Sets the attribute component
4 5 6 |
# File 'lib/icalendar/parser.rb', line 4 def component=(value) @component = value end |
#source ⇒ Object (readonly)
Returns the value of attribute source.
5 6 7 |
# File 'lib/icalendar/parser.rb', line 5 def source @source end |
#strict ⇒ Object (readonly)
Returns the value of attribute strict.
5 6 7 |
# File 'lib/icalendar/parser.rb', line 5 def strict @strict end |
Instance Method Details
#get_wrapper_class(component, fields) ⇒ Object
78 79 80 81 82 83 84 85 86 87 88 |
# File 'lib/icalendar/parser.rb', line 78 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 = klass_name.downcase.gsub(/(?:\A|-)(.)/) { |m| m[-1].upcase } klass = Icalendar::Values.const_get klass_name if Icalendar::Values.const_defined?(klass_name) end end klass end |
#parse ⇒ Object
21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/icalendar/parser.rb', line 21 def parse source.rewind read_in_data components = [] while (fields = next_fields) 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
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'lib/icalendar/parser.rb', line 33 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." component.append_custom_property prop_name, prop_value end end end |
#strict? ⇒ Boolean
90 91 92 |
# File 'lib/icalendar/parser.rb', line 90 def strict? !!@strict end |
#wrap_in_array?(klass, value, multi_property) ⇒ Boolean
73 74 75 76 |
# File 'lib/icalendar/parser.rb', line 73 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
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/icalendar/parser.rb', line 56 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 |