rubyjedi/soap4r

View on GitHub
lib/wsdl/xmlSchema/importer.rb

Summary

Maintainability
A
2 hrs
Test Coverage
# encoding: UTF-8
# WSDL4R - XSD importer 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 'soap/soap'
require 'soap/httpconfigloader'
require 'wsdl/xmlSchema/parser'


module WSDL
module XMLSchema


class Importer
  DO_NOT_IMPORT = [::SOAP::EncodingNamespace]

  def self.import(location, originalroot = nil)
    new.import(location, originalroot)
  end

  def initialize
    @web_client = nil
  end

  def import(location, originalroot = nil)
    if DO_NOT_IMPORT.include?(location.to_s)
      return nil
    end
    unless location.is_a?(URI)
      location = URI.parse(location)
    end
    source, normalizedlocation = fetch(location)
    content = parse(source, normalizedlocation, originalroot)
    content.location = normalizedlocation
    content
  end

private

  def parse(content, location, originalroot)
    opt = {
      :location => location,
      :originalroot => originalroot
    }
    WSDL::XMLSchema::Parser.new(opt).parse(content)
  end

  def fetch(location)
    warn("importing: #{location}") if $DEBUG
    content = nil
    normalizedlocation = location
    if location.scheme == 'file' or
        (location.relative? and FileTest.exist?(location.path))
      content = File.open(location.path).read
      normalizedlocation = URI.parse('file://' + File.expand_path(location.path))
    elsif location.scheme and location.scheme.size == 1 and
        FileTest.exist?(location.to_s)
      # ToDo: remove this ugly workaround for a path with drive letter
      # (D://foo/bar)
      content = File.open(location.to_s).read
    else
      client = web_client.new(nil, "WSDL4R")
      client.proxy = ::SOAP::Env::HTTP_PROXY
      client.no_proxy = ::SOAP::Env::NO_PROXY
      if opt = ::SOAP::Property.loadproperty(::SOAP::PropertyName)
        http_opt = opt["client.protocol.http"]
        ::SOAP::HTTPConfigLoader.set_options(client, http_opt) if http_opt
      end
      content = client.get_content(location)
    end
    return content, normalizedlocation
  end

  def web_client
    return @web_client if @web_client
    begin
      require 'httpclient'
      @web_client = HTTPClient
    rescue LoadError
      begin
        require 'http-access2'
        if HTTPAccess2::VERSION < "2.0"
          raise LoadError.new("http-access/2.0 or later is required.")
        end
        @web_client = HTTPAccess2::Client
      rescue LoadError
        warn("Loading http-access2 failed.  Net/http is used.") if $DEBUG
        require 'soap/netHttpClient'
        @web_client = ::SOAP::NetHttpClient
      end
    end
    @web_client
  end
end


end
end