Sha256: e8b95fbd0c939cfcbb73c6c5bd49876e01bb8dae9669494df692b476769c0984

Contents?: true

Size: 1.25 KB

Versions: 17

Compression:

Stored size: 1.25 KB

Contents

require 'junoser/xsd/base'
require 'junoser/xsd/choice'
require 'junoser/xsd/element'

module Junoser
  module Xsd
    class Sequence
      include Base

      def config
        @config ||= children.map {|child|
          case child.name
          when 'choice'
            Junoser::Xsd::Choice.new(child, depth: @depth+1, parent: self)
          when 'element'
            Junoser::Xsd::Element.new(child, depth: @depth+1, parent: self)
          when 'any'
            'any'
          else
            raise "ERROR: unknown element: #{child.name}"
          end
        }
      end

      def to_s
        case
        when config.empty?
        when has_single_child_of?(Junoser::Xsd::Choice)
          child = config.first
          str = child.config.map(&:to_s).reject(&:empty?).join(",\n")

          return if str.empty?

          # Assuming that <xsd:sequence> always has <xsd:complexType> as the parent
          if parent.parent&.oneliner? && config.first.unbounded?
            format('sc(', str, ')')
          else
            format('c(', str, ')')
          end
        else
          str = config.map {|c| c.is_a?(String) ? format(OFFSET + c) : c.to_s }.reject(&:empty?).join(",\n")
          format('s(', str, ')')
        end
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
junoser-0.6.0 lib/junoser/xsd/sequence.rb
junoser-0.5.6 lib/junoser/xsd/sequence.rb
junoser-0.5.5 lib/junoser/xsd/sequence.rb
junoser-0.5.4 lib/junoser/xsd/sequence.rb
junoser-0.5.3 lib/junoser/xsd/sequence.rb
junoser-0.5.2 lib/junoser/xsd/sequence.rb
junoser-0.5.1 lib/junoser/xsd/sequence.rb
junoser-0.5.0 lib/junoser/xsd/sequence.rb
junoser-0.4.7 lib/junoser/xsd/sequence.rb
junoser-0.4.6 lib/junoser/xsd/sequence.rb
junoser-0.4.5 lib/junoser/xsd/sequence.rb
junoser-0.4.4 lib/junoser/xsd/sequence.rb
junoser-0.4.3 lib/junoser/xsd/sequence.rb
junoser-0.4.2 lib/junoser/xsd/sequence.rb
junoser-0.4.1 lib/junoser/xsd/sequence.rb
junoser-0.4.0 lib/junoser/xsd/sequence.rb
junoser-0.3.13 lib/junoser/xsd/sequence.rb