Sha256: c60951d0b7186988582c5ef160fbddd12cbe209b6ace6e594cbb50790640190c

Contents?: true

Size: 1.99 KB

Versions: 38

Compression:

Stored size: 1.99 KB

Contents

# encoding: ASCII-8BIT
# XSD4R - XML Instance parser library.
# Copyright (C) 2000-2007  NAKAMURA, Hiroshi <nahi@ruby-lang.org>.

# This program is copyrighted free software by NAKAMURA, Hiroshi.  You can
# redistribute it and/or modify it under the same terms of Ruby's license;
# either the dual license version in 2003, or any later version.


require 'xsd/qname'
require 'xsd/ns'
require 'xsd/charset'


module XSD
module XMLParser


class Parser
  class ParseError < Error; end
  class FormatDecodeError < ParseError; end
  class UnknownElementError < FormatDecodeError; end
  class UnknownAttributeError < FormatDecodeError; end
  class UnexpectedElementError < FormatDecodeError; end
  class ElementConstraintError < FormatDecodeError; end
  class ParserError < ParseError; end

  @@parser_factory = nil

  def self.factory
    @@parser_factory
  end

  def self.create_parser(host, opt = {})
    unless @@parser_factory
      raise ParserError.new("illegal XML parser configuration")
    end
    @@parser_factory.new(host, opt)
  end

  def self.add_factory(factory)
    if $DEBUG
      puts "Set #{ factory } as XML processor."
    end
    @@parser_factory = factory
  end

public

  attr_accessor :charset

  def initialize(host, opt = {})
    @host = host
    @charset = opt[:charset] || nil
  end

  def parse(string_or_readable)
    @textbuf = ''
    prologue
    do_parse(string_or_readable)
    epilogue
  end

private

  def do_parse(string_or_readable)
    raise ParserError.new(
      'Method do_parse must be defined in derived class.')
  end

  def start_element(name, attrs)
    @host.start_element(name, attrs)
  end

  def characters(text)
    @host.characters(text)
  end

  def end_element(name)
    @host.end_element(name)
  end

  def prologue
  end

  def epilogue
  end

  def xmldecl_encoding=(charset)
    if @charset.nil?
      @charset = charset
    else
      # Definition in a stream (like HTTP) has a priority.
      p "encoding definition: #{ charset } is ignored." if $DEBUG
    end
  end
end


end
end

Version data entries

38 entries across 38 versions & 10 rubygems

Version Path
soybean-2.5.5 vendor/soap4r/xsd/xmlparser/parser.rb
malagant-soap4r-1.5.8.20141127181857 lib/xsd/xmlparser/parser.rb
rtiss_soap4r-1.6.1 lib/xsd/xmlparser/parser.rb
rtiss_soap4r-1.6.0 lib/xsd/xmlparser/parser.rb
eSpace_soap4r-1.5.8 lib/xsd/xmlparser/parser.rb
soap4r-ruby19-1.5.9 lib/xsd/xmlparser/parser.rb
tomdz-soap4r-1.5.8.20120202093209 lib/xsd/xmlparser/parser.rb
soap5r-2.0.3 lib/xsd/xmlparser/parser.rb
soap5r-2.0.2 lib/xsd/xmlparser/parser.rb
soap5r-2.0.1 lib/xsd/xmlparser/parser.rb
soap5r-2.0.0 lib/xsd/xmlparser/parser.rb
soap5r-2.0.0.20120130130121 lib/xsd/xmlparser/parser.rb
soap4r-sgonyea-1.5.9 lib/xsd/xmlparser/parser.rb
sunteya-soap4r-1.5.8.0 lib/xsd/xmlparser/parser.rb
soybean-2.5.4 vendor/soap4r/xsd/xmlparser/parser.rb
tomdz-soap4r-1.5.8.20111103171510 lib/xsd/xmlparser/parser.rb
soybean-2.5.3 vendor/soap4r/xsd/xmlparser/parser.rb
soybean-2.5.2 vendor/soap4r/xsd/xmlparser/parser.rb
soybean-2.5.1 vendor/soap4r/xsd/xmlparser/parser.rb
soybean-2.5.0 vendor/soap4r/xsd/xmlparser/parser.rb