Module: FormatParser
- Defined in:
- lib/format_parser.rb,
lib/audio.rb,
lib/image.rb,
lib/video.rb,
lib/archive.rb,
lib/document.rb,
lib/format_parser/version.rb
Overview
A pretty nimble module for parsing file metadata using partial reads. Contains all the top-level methods of the library.
Defined Under Namespace
Modules: AttributesJSON, IOUtils Classes: AIFFParser, Archive, Audio, BMPParser, CR2Parser, DPXParser, Document, EXIFParser, FDXParser, FLACParser, GIFParser, IOConstraint, Image, JPEGParser, MOOVParser, MP3Parser, Measurometer, PDFParser, PNGParser, PSDParser, ReadLimiter, ReadLimitsConfig, RemoteIO, TIFFParser, Video, WAVParser, ZIPParser
Constant Summary collapse
- PARSER_MUX =
Is used to manage access to the shared array of parser constructors, which might potentially be mutated from different threads. The mutex won’t be hit too often since it only locks when adding/removing parsers.
Mutex.new
- MAX_BYTES_READ_PER_PARSER =
1024 * 1024 * 2
- VERSION =
'0.10.0'
Class Method Summary collapse
-
.deregister_parser(callable_or_responding_to_new) ⇒ Object
Deregister a parser object (makes FormatParser forget this parser existed).
- .execute_parser_and_capture_expected_exceptions(parser, limited_io) ⇒ Object
-
.instantiate_parser(callable_or_responding_to_new) ⇒ #call
Instantiates a parser object (an object that responds to ‘#call`) from a given class or returns the parameter as is if it is callable by itself - i.e.
-
.parse(io, natures: @parsers_per_nature.keys, formats: @parsers_per_format.keys, results: :first) ⇒ Array<Result>, ...
Parses the resource contained in the given IO-ish object, and returns either the first matched result (omitting all the other parsers), the first N results or all results.
-
.parse_file_at(path, **kwargs) ⇒ Object
Parses the file at the given ‘path` and returns the results as if it were any IO given to `.parse`.
-
.parse_http(url, **kwargs) ⇒ Object
Parses the resource at the given ‘url` and returns the results as if it were any IO given to `.parse`.
-
.parsers_for(desired_natures, desired_formats) ⇒ Array<#call>
Returns objects that respond to ‘call` and can be called to perform parsing based on the intersection of the two given nature/format constraints.
-
.register_parser(callable_or_responding_to_new, formats:, natures:) ⇒ Object
Register a parser object to be used to perform file format detection.
Class Method Details
.deregister_parser(callable_or_responding_to_new) ⇒ Object
Deregister a parser object (makes FormatParser forget this parser existed). Is mostly used in tests, but can also be used to forcibly disable some formats completely.
56 57 58 59 60 61 62 63 |
# File 'lib/format_parser.rb', line 56 def self.deregister_parser(callable_or_responding_to_new) # Used only in tests PARSER_MUX.synchronize do (@parsers || []).delete(callable_or_responding_to_new) (@parsers_per_nature || {}).values.map { |e| e.delete(callable_or_responding_to_new) } (@parsers_per_format || {}).values.map { |e| e.delete(callable_or_responding_to_new) } end end |
.execute_parser_and_capture_expected_exceptions(parser, limited_io) ⇒ Object
160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
# File 'lib/format_parser.rb', line 160 def self.execute_parser_and_capture_expected_exceptions(parser, limited_io) parser_name_for_instrumentation = parser.class.to_s.split('::').last Measurometer.instrument('format_parser.parser.%s' % parser_name_for_instrumentation) do parser.call(limited_io).tap do |result| if result Measurometer.increment_counter('format_parser.detected_natures.%s' % result.nature, 1) Measurometer.increment_counter('format_parser.detected_formats.%s' % result.format, 1) end end end rescue IOUtils::InvalidRead # There was not enough data for this parser to work on, # and it triggered an error Measurometer.increment_counter('format_parser.invalid_read_errors', 1) rescue IOUtils::MalformedFile # Unexpected input was encountered during the parsing of # a file. This might indicate either a malicious or a # corruped file. Measurometer.increment_counter('format_parser.malformed_errors', 1) rescue ReadLimiter::BudgetExceeded # The parser tried to read too much - most likely the file structure # caused the parser to go off-track. Strictly speaking we should log this # and examine the file more closely. # Or the parser caused too many cache pages to be fetched, which likely means we should not allow # it to continue Measurometer.increment_counter('format_parser.exceeded_budget_errors', 1) ensure limited_io.send_metrics(parser_name_for_instrumentation) end |
.instantiate_parser(callable_or_responding_to_new) ⇒ #call
Instantiates a parser object (an object that responds to ‘#call`) from a given class or returns the parameter as is if it is callable by itself - i.e. if it is a Proc
221 222 223 224 225 226 227 228 229 |
# File 'lib/format_parser.rb', line 221 def self.instantiate_parser(callable_or_responding_to_new) if callable_or_responding_to_new.respond_to?(:call) callable_or_responding_to_new elsif callable_or_responding_to_new.respond_to?(:new) callable_or_responding_to_new.new else raise ArgumentError, 'A parser should be either a class with an instance method #call or a Proc' end end |
.parse(io, natures: @parsers_per_nature.keys, formats: @parsers_per_format.keys, results: :first) ⇒ Array<Result>, ...
Parses the resource contained in the given IO-ish object, and returns either the first matched result (omitting all the other parsers), the first N results or all results.
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
# File 'lib/format_parser.rb', line 103 def self.parse(io, natures: @parsers_per_nature.keys, formats: @parsers_per_format.keys, results: :first) # We need to apply various limits so that parsers do not over-read, do not cause too many HTTP # requests to be dispatched and so on. These should be _balanced_ with one another- for example, # we cannot tell a parser that it is limited to reading 1024 bytes while at the same time # limiting the size of the cache pages it may slurp in to less than that amount, since # it can quickly become frustrating. The limits configurator computes these limits # for us, in a fairly balanced way, based on one setting. limit_config = FormatParser::ReadLimitsConfig.new(MAX_BYTES_READ_PER_PARSER) # Limit the number of cached _pages_ we may fetch. This allows us to limit the number # of page faults (page cache misses) a parser may incur read_limiter_under_cache = FormatParser::ReadLimiter.new(io, max_reads: limit_config.max_pagefaults_per_parser) # Then configure a layer of caching on top of that cached_io = Care::IOWrapper.new(read_limiter_under_cache, page_size: limit_config.cache_page_size) # How many results has the user asked for? Used to determinate whether an array # is returned or not. amount = case results when :all @parsers.count when :first 1 else throw ArgumentError.new(':results does not match any supported mode (:all, :first)') end # Always instantiate parsers fresh for each input, since they might # contain instance variables which otherwise would have to be reset # between invocations, and would complicate threading situations parsers = parsers_for(natures, formats) # Limit how many operations the parser can perform limited_io = ReadLimiter.new(cached_io, max_bytes: limit_config.max_read_bytes_per_parser, max_reads: limit_config.max_reads_per_parser, max_seeks: limit_config.max_seeks_per_parser) results = parsers.lazy.map do |parser| # Reset all the read limits, per parser limited_io.reset_limits! read_limiter_under_cache.reset_limits! # We need to rewind for each parser, anew limited_io.seek(0) execute_parser_and_capture_expected_exceptions(parser, limited_io) end.reject(&:nil?).take(amount) # Convert the results from a lazy enumerator to an Array. results = results.to_a if results.empty? Measurometer.increment_counter('format_parser.unknown_files', 1) end amount == 1 ? results.first : results ensure cached_io.clear if cached_io end |
.parse_file_at(path, **kwargs) ⇒ Object
Parses the file at the given ‘path` and returns the results as if it were any IO given to `.parse`. The accepted keyword arguments are the same as the ones for `parse`.
81 82 83 84 85 |
# File 'lib/format_parser.rb', line 81 def self.parse_file_at(path, **kwargs) File.open(path, 'rb') do |io| parse(io, **kwargs) end end |
.parse_http(url, **kwargs) ⇒ Object
Parses the resource at the given ‘url` and returns the results as if it were any IO given to `.parse`. The accepted keyword arguments are the same as the ones for `parse`.
71 72 73 |
# File 'lib/format_parser.rb', line 71 def self.parse_http(url, **kwargs) parse(RemoteIO.new(url), **kwargs) end |
.parsers_for(desired_natures, desired_formats) ⇒ Array<#call>
Returns objects that respond to ‘call` and can be called to perform parsing based on the intersection of the two given nature/format constraints. For example, a constraint of “only image and only ZIP files” can be given - but would raise an error since no parsers provide both ZIP file parsing and images as their information.
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
# File 'lib/format_parser.rb', line 200 def self.parsers_for(desired_natures, desired_formats) assemble_parser_set = ->(hash_of_sets, keys_of_interest) { hash_of_sets.values_at(*keys_of_interest).compact.inject(&:+) || Set.new } fitting_by_natures = assemble_parser_set[@parsers_per_nature, desired_natures] fitting_by_formats = assemble_parser_set[@parsers_per_format, desired_formats] factories = fitting_by_natures & fitting_by_formats if factories.empty? raise ArgumentError, "No parsers provide both natures #{desired_natures.inspect} and formats #{desired_formats.inspect}" end factories.map { |callable_or_class| instantiate_parser(callable_or_class) } end |
.register_parser(callable_or_responding_to_new, formats:, natures:) ⇒ Object
Register a parser object to be used to perform file format detection. Each parser FormatParser provides out of the box registers itself using this method.
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/format_parser.rb', line 32 def self.register_parser(callable_or_responding_to_new, formats:, natures:) parser_provided_formats = Array(formats) parser_provided_natures = Array(natures) PARSER_MUX.synchronize do @parsers ||= Set.new @parsers << callable_or_responding_to_new @parsers_per_nature ||= {} parser_provided_natures.each do |provided_nature| @parsers_per_nature[provided_nature] ||= Set.new @parsers_per_nature[provided_nature] << callable_or_responding_to_new end @parsers_per_format ||= {} parser_provided_formats.each do |provided_format| @parsers_per_format[provided_format] ||= Set.new @parsers_per_format[provided_format] << callable_or_responding_to_new end end end |