Module: Pubid::Bsi::Identifier

Extended by:
IdentifierFacade
Included in:
SingleIdentifier
Defined in:
lib/pubid/bsi/identifier.rb

Overview

‘extend Pubid::IdentifierFacade` adds polymorphic `from_hash` and pairs with `include Pubid::Bsi::Identifier` in SingleIdentifier (BSI’s common ancestor — there is no Identifiers::Base) for identity (‘is_a?`/`===`), so a consumer handed this module can deserialize and identity-check BSI ids through it.

Class Method Summary collapse

Methods included from IdentifierFacade

from_hash, polymorphic_type_map

Class Method Details

.parse(string) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/pubid/bsi/identifier.rb', line 13

def self.parse(string)
  # Delegate to IEC for bare IEC identifiers
  # This handles IEC-specific features like VAP suffixes (CSV, RLV, etc.)
  # and consolidated supplements (+AMD1:2001)
  if string.match?(/\bIEC\b/) &&
      (string.match?(/\s+(CSV|CMV|RLV|SER|EXV|PAC|PRV)\b/) ||
       string.match?(/\+AMD\d+:/) ||
       string.match?(/\+COR\d+:/))
    return Pubid::Iec.parse(string)
  end

  parser = Parser.new

  parsed = parser.parse(string)
  Builder.build(parsed)
rescue Parslet::ParseFailed => e
  raise StandardError, "Failed to parse '#{string}': #{e.message}"
end