module Krikri ## # Provides a generic interface for accessing properties from OriginalRecords. # Implement the interface, and that of `Value` on an record-type basis. # # parser = Krikri::Parser::MyParser.new(record) # parser.root # => # # class Parser attr_reader :root, :record ## # @param record [Krikri::OriginalRecord] a record whose properties can # be parsed by the parser instance. def initialize(record) @record = record end ## # Instantiates a parser object to wrap the record. Returns the record # as is if it is already parsed. # # @param record [Krikri::OriginalRecord, Krikri::Parser] the record to parse # @param args [Array, nil] the arguments to pass to the parser instance, # if any # @return [Krikri::Parser] a parsed record object def self.parse(record, *args) record.is_a?(Krikri::Parser) ? record : new(record, *args) end ## # A generic parser value. # # Interface to a single value node which can access typed data values (e.g. # String, DateTime, etc...) parsed from a string, and provides access to # child nodes and attributes. class Value ## # Property accessor interface. Passes a name expression (`name_exp`) to # the local implementation of #get_child_nodes. # # The given name expression must follow the pattern: # name [| name ...] # # The optional "|" is a short-circuit operator that will return the # property or element in the document for the first matching part of the # phrase. # # @example # va = value['title'] # va = value['this|that'] # gives value for "this" if both defined # # @param name [String] An expression of named properties to access # @return [Krikri::Parser::ValueArray] def [](name_exp) name_exp.strip.split(/\s*\|\s*/).each do |n| result = get_child_nodes(n) return result unless result.empty? end Krikri::Parser::ValueArray.new([]) end ## # Queries whether `name` is a subproperty of this node # @param name [#to_sym] a named property to query # @return [Boolean] true if `name` is a subproperty of the current node def child?(name) children.include?(name) end ## # @abstract # @return [Array] a list of subproperties that can be passed back # to #[] to access child nodes def children raise NotImplementedError end ## # @abstract # @return [<#to_s>] typed value for the property def value raise NotImplementedError end ## # @abstract # @return [Boolean] true if this node has typed values accessible with # #values def values? raise NotImplementedError end ## # @abstract # @return [Array] a list of attributes accessible on the node def attributes raise NotImplementedError end ## # Queries whether `name` is an attribute of this node # @param name [#to_sym] an attribute name to query # @return [Boolean] true if `name` is an attribute of the current node def attribute?(name) begin attributes.include?(name) rescue NotImplementedError false end end def method_missing(name, *args, &block) return attribute(name) if attribute?(name) super end def respond_to_missing(method, *) attribute?(method) || super end private ## # @abstract def attribute(name) raise NotImplementedError, "Can't access attribute #{name}" end ## # @abstract Return a Krikri::Parser::ValueArray of child nodes # # @param name [String] Element or property name # @return [Krikri::Parser::ValueArray] The child nodes def get_child_nodes(name) raise NotImplementedError, "Can't access property #{name}" end end ## # A specialized Array object for containing Parser::Values. Provides methods # for accessing and filtering values that can be chained. # # my_value_array.field('dc:creator', 'foaf:name') # .match_attribute('first_name').values # # Methods defined on this class should return another ValueArray, an Array # of literal values (retrieved from Parser::Value#value), or a single # literal value. class ValueArray include Enumerable delegate :[], :each, :empty?, :to_a, :to_ary, :to => :@array def initialize(array = []) @array = array end ## # @see Array#[]= # @raise [InvalidParserValueError] when the value is not a Parser::Value def []=(index, value) raise InvalidParserValueError unless value.is_a? Value @array[index] = value self end ## # @see Array#<< # @raise [InvalidParserValueError] when the value is not a Parser::Value def <<(value) raise InvalidParserValueError unless value.is_a? Value @array << value value end ## # @see Array#concat # @return [ValueArray] def concat(*args, &block) self.class.new(@array.concat(*args, &block)) end ## # @return [Array] literal values from the objects in this array. # @see Parser::Value#value def values @array.map { |v| v.respond_to?(:value) ? v.value : v } end ## # Accesses a given field. Use multiple arguments to travel down the node # hierarchy. # # @return [ValueArray] an array containing the nodes available in a # particular field. def field(*args) result = self args.each do |name| result = result.get_field(name) end result end ## # Accesses the union of multiple specified fields. # # @return [ValueArray] an array containing the nodes available in the # given fields. def fields(*args) results = args.map do |f| field(*Array(f)) end self.class.new(results.flatten) end ## # Retrieves the first element of a ValueArray. Uses an optional argument # to specify how many items to return. By design, it behaves similarly # to Array#first, but it intentionally doesn't override it. # # @return [ValueArray] a Krikri::Parser::ValueArray for first n elements def first_value(*args) return self.class.new(@array.first(*args)) unless args.empty? self.class.new([@array.first].compact) end ## # Retrieves the last element of a ValueArray. Uses an optional argument # to specify how many items to return. By design, it behaves similarly # to Array#last, but it intentionally doesn't override it. # # @return [ValueArray] a Krikri::Parser::ValueArray for last n elements def last_value(*args) return self.class.new(@array.last(*args)) unless args.empty? self.class.new([@array.last].compact) end ## # @see Array#concat # @return [ValueArray] def flatten(*args, &block) self.class.new(@array.flatten(*args, &block)) end ## # Wraps the result of Array#map in a ValueArray # # @see Array#map # @return [ValueArray] def map(*args, &block) self.class.new(@array.map(*args, &block)) end ## # Wraps the result of Array#select in a ValueArray # # @see Array#select # @return [ValueArray] def select(*args, &block) self.class.new(@array.select(*args, &block)) end ## # Wraps the result of Array#reject in a ValueArray # # @see Array#reject # @return [ValueArray] def reject(*args, &block) self.class.new(@array.reject(*args, &block)) end ## # @param name [#to_sym] an attribute name # @param other [Object] an object to for equality with the # values from the given attribute. # # @return [ValueArray] an array containing nodes for which the specified # attribute has a value matching the given object. def match_attribute(name, other) select do |v| next unless v.attribute?(name.to_sym) v.send(name).downcase == other.downcase end end ## # Wraps the root node of the given record in this class. # # @param record [Krikri::Parser] a parsed record to wrap in a ValueArray # @return [ValueArray] def self.build(record) new([record.root]) end protected def get_field(name) self.class.new(flat_map { |val| val[name] }) end public class InvalidParserValueError < TypeError; end end end end