Class: Struct

Inherits:
Object show all
Defined in:
lib/syck/rubytypes.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.yaml_new(klass, tag, val) ⇒ Object



54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# File 'lib/syck/rubytypes.rb', line 54

def self.yaml_new( klass, tag, val )
    if Hash === val
        struct_type = nil

        #
        # Use existing Struct if it exists
        #
        props = {}
        val.delete_if { |k,v| props[k] = v if k =~ /^@/ }
        begin
            struct_type = Syck.read_type_class( tag, Struct ).last
        rescue NameError
        end
        if not struct_type
            struct_def = [ tag.split( ':', 4 ).last ]
            struct_type = Struct.new( *struct_def.concat( val.keys.collect { |k| k.intern } ) )
        end

        #
        # Set the Struct properties
        #
        st = Syck::object_maker( struct_type, {} )
        st.members.each do |m|
            st.send( "#{m}=", val[m.to_s] )
        end
        props.each do |k,v|
            st.instance_variable_set(k, v)
        end
        st
    else
        raise Syck::TypeError, "Invalid Ruby Struct: " + val.inspect
    end
end

.yaml_tag_class_nameObject



52
# File 'lib/syck/rubytypes.rb', line 52

def self.yaml_tag_class_name; self.name.gsub( "Struct::", "" ); end

.yaml_tag_read_class(name) ⇒ Object



53
# File 'lib/syck/rubytypes.rb', line 53

def self.yaml_tag_read_class( name ); "Struct::#{ name }"; end

Instance Method Details

#to_yaml(opts = {}) ⇒ Object



87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# File 'lib/syck/rubytypes.rb', line 87

def to_yaml( opts = {} )
	Syck::quick_emit( self, opts ) do |out|
		#
		# Basic struct is passed as a YAML map
		#
           out.map( taguri, to_yaml_style ) do |map|
			self.members.each do |m|
                   map.add( m.to_s, self[m.to_s] )
               end
			self.to_yaml_properties.each do |m|
                   map.add( m, instance_variable_get( m ) )
               end
           end
       end
end