Class: Scrubyt::Pattern
- Inherits:
-
Object
- Object
- Scrubyt::Pattern
- Defined in:
- lib/scrubyt/core/scraping/pattern.rb
Overview
Group more filters into one
Server as an umbrella for filters which are conceptually extracting the same thing - for example a price or a title or …
Sometimes the same piece of information can not be extracted with one filter across more result instances (for example a price has an XPath in record n, but since in record n+1 has a discount price as well, the real price is pushed to a different XPath etc) - in this case the more filters which extract the same thing are hold in the same pattern.
Constant Summary collapse
- VALID_PATTERN_TYPES =
# a root pattern represents a (surprise!) root pattern
PATTERN_TYPE_ROOT = :PATTERN_TYPE_ROOT # a tree pattern represents a HTML region PATTERN_TYPE_TREE = :PATTERN_TYPE_TREE # represents an attribute of the node extracted by the parent pattern PATTERN_TYPE_ATTRIBUTE = :PATTERN_TYPE_ATTRIBUTE # represents a pattern which filters its output with a regexp PATTERN_TYPE_REGEXP = :PATTERN_TYPE_REGEXP # represents a pattern which crawls to the detail page and extracts information from there PATTERN_TYPE_DETAIL_PAGE = :PATTERN_TYPE_DETAIL_PAGE # represents a download pattern PATTERN_TYPE_DOWNLOAD = :PATTERN_TYPE_DOWNLOAD # write out the HTML subtree beginning at the matched element PATTERN_TYPE_HTML_SUBTREE = :PATTERN_TYPE_HTML_SUBTREE
[:tree, :attribute, :regexp, :detail_page, :download, :html_subtree, :constant, :script, :text]
- VALID_PATTERN_EXAMPLE_TYPES =
:determine - default value, represent that type of example need determine :string - represent node with example type EXAMPLE_TYPE_STRING
[:determine, :xpath]
- VALID_OUTPUT_TYPES =
Model pattern are shown in the output
OUTPUT_TYPE_MODEL = :OUTPUT_TYPE_MODEL #Temp patterns are skipped in the output (their ancestors are appended to the parent #of the pattrern which was skipped OUTPUT_TYPE_TEMP = :OUTPUT_TYPE_TEMP
[:model, :temp, :page_list]
- PATTERN_OPTIONS =
These options can be set upon wrapper creation
[:generalize, :type, :output_type, :references, :limit, :default, :resolve, :except, :example_type]
- VALID_OPTIONS =
PATTERN_OPTIONS + Scrubyt::CompoundExample::DESCRIPTORS + Scrubyt::ResultNode::OUTPUT_OPTIONS
Instance Attribute Summary collapse
-
#children ⇒ Object
Returns the value of attribute children.
-
#constraints ⇒ Object
Returns the value of attribute constraints.
-
#extractor ⇒ Object
Returns the value of attribute extractor.
-
#filters ⇒ Object
Returns the value of attribute filters.
-
#indices_to_extract ⇒ Object
Returns the value of attribute indices_to_extract.
-
#modifier_calls ⇒ Object
Returns the value of attribute modifier_calls.
-
#name ⇒ Object
Returns the value of attribute name.
-
#next_page_url ⇒ Object
readonly
Returns the value of attribute next_page_url.
-
#options ⇒ Object
Returns the value of attribute options.
-
#parent ⇒ Object
Returns the value of attribute parent.
-
#referenced_extractor ⇒ Object
Returns the value of attribute referenced_extractor.
-
#referenced_pattern ⇒ Object
Returns the value of attribute referenced_pattern.
-
#result_indexer ⇒ Object
readonly
Returns the value of attribute result_indexer.
Instance Method Summary collapse
-
#check_if_detail_page(block) ⇒ Object
Check whether the currently created pattern is a detail pattern (i.e. it refrences a subextractor).
-
#check_if_shortcut_pattern ⇒ Object
Shortcut patterns, as their name says, are a shortcut for creating patterns from predefined rules; for example:.
- #evaluate(source, filter_indices) ⇒ Object
- #filter_count ⇒ Object
- #generate_relative_XPaths(parent_xpaths) ⇒ Object
-
#initialize(name, args = [], extractor = nil, parent = nil, &block) ⇒ Pattern
constructor
A new instance of Pattern.
-
#method_missing(method_name, *args, &block) ⇒ Object
Dispatcher function; The class was already too big so I have decided to factor out some methods based on their functionality (like output, adding constraints) to utility classes.
- #parent_of_leaf ⇒ Object
- #parse_child_patterns(&block) ⇒ Object
Constructor Details
#initialize(name, args = [], extractor = nil, parent = nil, &block) ⇒ Pattern
Returns a new instance of Pattern.
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 68 def initialize(name, args=[], extractor=nil, parent=nil, &block) #init attributes @name = name @extractor = extractor @parent = parent @options = {} @children = [] @filters = [] @constraints = [] @modifier_calls = [] #grab any examples that are defined examples = look_for_examples(args) #parse the options hash if provided (args[-1]) if args[-1].is_a? Hash #perform checks for special cases examples = check_if_shortcut_pattern() if examples == nil check_if_detail_page(block) @options[:output_type] = :page_list if name == 'page_list' #create filters if examples == nil @filters << Scrubyt::BaseFilter.create(self) #create a default filter else examples.each do |example| @filters << Scrubyt::BaseFilter.create(self,example) #create a filter end end #by default, generalize the root pattern, but only in the case if #@generalize was not set up explicitly if @options[:generalize].nil? @options[:generalize] = true if parent.nil? @options[:generalize] = false if ((filters[0].example.is_a? String) && (filters[0].example =~ /.+\[[a-zA-Z].+\]$/)) end #parse child patterns if available parse_child_patterns(&block) if ( !block.nil? && type != :detail_page ) #tree pattern only (TODO: subclass?) if type == :tree #generate xpaths and regexps @filters.each do |filter| filter.generate_XPath_for_example(false) unless @name == 'next_page' filter.generate_regexp_for_example end #when the xpaths of this pattern have been created, its children can make their xpaths relative xpaths = @filters.collect { |filter| filter.xpath } @children.each do |child| child.generate_relative_XPaths xpaths end end end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method_name, *args, &block) ⇒ Object
Dispatcher function; The class was already too big so I have decided to factor out some methods based on their functionality (like output, adding constraints) to utility classes.
The second function besides dispatching is to lookup the results in an evaluated wrapper, for example
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 217 def method_missing(method_name, *args, &block) if @extractor.evaluating_extractor_definition @modifier_calls << [method_name, [:array, *args.collect { |arg| [:lit, arg] }]] end case method_name.to_s when 'select_indices' @result_indexer = Scrubyt::ResultIndexer.new(*args) return self when /^ensure_/ @constraints << Scrubyt::ConstraintAdder.send(method_name, *args) return self #To make chaining possible else @children.each { |child| return child if child.name == method_name.to_s } end raise NoMethodError.new(method_name.to_s, method_name.to_s, args) end |
Instance Attribute Details
#children ⇒ Object
Returns the value of attribute children.
59 60 61 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 59 def children @children end |
#constraints ⇒ Object
Returns the value of attribute constraints.
59 60 61 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 59 def constraints @constraints end |
#extractor ⇒ Object
Returns the value of attribute extractor.
59 60 61 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 59 def extractor @extractor end |
#filters ⇒ Object
Returns the value of attribute filters.
59 60 61 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 59 def filters @filters end |
#indices_to_extract ⇒ Object
Returns the value of attribute indices_to_extract.
59 60 61 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 59 def indices_to_extract @indices_to_extract end |
#modifier_calls ⇒ Object
Returns the value of attribute modifier_calls.
59 60 61 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 59 def modifier_calls @modifier_calls end |
#name ⇒ Object
Returns the value of attribute name.
59 60 61 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 59 def name @name end |
#next_page_url ⇒ Object (readonly)
Returns the value of attribute next_page_url.
62 63 64 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 62 def next_page_url @next_page_url end |
#options ⇒ Object
Returns the value of attribute options.
59 60 61 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 59 def @options end |
#parent ⇒ Object
Returns the value of attribute parent.
59 60 61 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 59 def parent @parent end |
#referenced_extractor ⇒ Object
Returns the value of attribute referenced_extractor.
59 60 61 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 59 def referenced_extractor @referenced_extractor end |
#referenced_pattern ⇒ Object
Returns the value of attribute referenced_pattern.
59 60 61 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 59 def referenced_pattern @referenced_pattern end |
#result_indexer ⇒ Object (readonly)
Returns the value of attribute result_indexer.
62 63 64 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 62 def result_indexer @result_indexer end |
Instance Method Details
#check_if_detail_page(block) ⇒ Object
Check whether the currently created pattern is a detail pattern (i.e. it refrences a subextractor). Also check if the currently created pattern is an ancestor of a detail pattern , and store this in a hash if yes (to be able to traverse the pattern structure on detail pages as well).
162 163 164 165 166 167 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 162 def check_if_detail_page(block) if @name =~ /.+_detail/ @options[:type] = :detail_page @referenced_extractor = block end end |
#check_if_shortcut_pattern ⇒ Object
Shortcut patterns, as their name says, are a shortcut for creating patterns from predefined rules; for example:
detail_url
is equivalent to
detail_url 'href', type => :attribute
i.e. the system figures out on it’s own that because of the postfix, the example should be looked up (but it should never override the user input!) another example (will be available later):
every_img
is equivivalent to
every_img ‘//img’
151 152 153 154 155 156 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 151 def check_if_shortcut_pattern() if @name =~ /.+_url/ @options[:type] = :attribute ['href'] end end |
#evaluate(source, filter_indices) ⇒ Object
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 236 def evaluate(source, filter_indices) if type == :detail_page # DIRTY! return @filters[0].evaluate(source) end #we apply all filters if filter_indices is nil indices_to_evaluate = filter_indices.nil? ? 0...@filters.size : filter_indices #stores the results of all filters all_filter_results = [] #remembers which filters have retured a certain result indices_mapping = {} #evaluate filters and collect filter results indices_to_evaluate.each do |filter_index| filter = @filters[filter_index] filter_results = filter.evaluate(source) filter_results.each do |result| #add result to list if not already there all_filter_results << result if all_filter_results.index(result).nil? #add the current filter's index to the mapping (indices_mapping[result] ||= []) << filter_index end end #apply constraints if @constraints.size > 0 all_filter_results = all_filter_results.select do |result| @constraints.inject(true) { |accepted, constraint| accepted && constraint.check(result) } end end #apply indexer all_filter_results = @result_indexer.select_indices_to_extract(all_filter_results) if !@result_indexer.nil? #create result nodes and evaluate children result_nodes = [] all_filter_results.each do |result| #create result node node = ResultNode.new(@name, result, @options) node.generated_by_leaf = (@children.size == 0) #evaluate children @children.each do |child| raise if self.filter_count != 1 && child.filter_count != self.filter_count if self.filter_count == 1 #evaluate all child filters node.push(*child.evaluate(result, nil)) else #evaluate appropriate child filters node.push(*child.evaluate(result, indices_mapping[result])) end end #apply child constraints (ensure_presence_of_pattern) required_child_names = @constraints.select {|c| c.type == Scrubyt::Constraint::CONSTRAINT_TYPE_ENSURE_PRESENCE_OF_PATTERN }.map {|c| c.target} unless required_child_names.empty? check = lambda { |node_to_check| required_child_names.delete node_to_check.name node_to_check.each { |child| check.call child } } check.call node end next unless required_child_names.empty? #add the current result node to the list result_nodes << node end if result_nodes.empty? result_nodes << ResultNode.new(@name, @options[:default], @options) if @options[:default] end case output_type when :model return result_nodes when :page_list result_nodes.each do |result_node| @extractor.add_to_next_page_list result_node end return [] end end |
#filter_count ⇒ Object
173 174 175 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 173 def filter_count @filters.size end |
#generate_relative_XPaths(parent_xpaths) ⇒ Object
124 125 126 127 128 129 130 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 124 def generate_relative_XPaths(parent_xpaths) return if type != :tree raise ArgumentError.new if parent_xpaths.size != 1 && parent_xpaths.size != @filters.size #TODO: should be checked earlier with proper error message @filters.each_index do |index| @filters[index].generate_relative_XPath parent_xpaths[parent_xpaths.size == 1 ? 0 : index] end end |
#parent_of_leaf ⇒ Object
169 170 171 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 169 def parent_of_leaf @children.inject(false) { |is_parent_of_leaf, child| is_parent_of_leaf || child.children.empty? } end |
#parse_child_patterns(&block) ⇒ Object
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
# File 'lib/scrubyt/core/scraping/pattern.rb', line 177 def parse_child_patterns(&block) context = Object.new context.instance_eval do def current=(value) @current = value end def method_missing(method_name, *args, &block) if method_name.to_s[0..0] == '_' #add hash option key = method_name.to_s[1..-1].to_sym check_option(key) args.each do |arg| current_value = @current.[key] if current_value.nil? @current.[key] = arg else @current.[key] = [current_value] if !current_value.is_a Array @current.[key] << arg end end else #create child pattern child = Scrubyt::Pattern.new(method_name.to_s, args, @current.extractor, @current, &block) @current.children << child child end end end context.current = self context.instance_eval(&block) end |