~ubuntu-branches/ubuntu/quantal/ruby1.9.1/quantal

« back to all changes in this revision

Viewing changes to ext/syck/lib/syck/yamlnode.rb

  • Committer: Bazaar Package Importer
  • Author(s): Lucas Nussbaum
  • Date: 2010-07-31 17:08:39 UTC
  • mfrom: (1.1.4 upstream) (8.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100731170839-j034dmpdqt1cc4p6
Tags: 1.9.2~svn28788-1
* New release based on upstream snapshot from the 1.9.2 branch,
  after 1.9.2 RC2. That branch is (supposed to be) binary-compatible
  with the 1.9.1 branch.
  + Builds fine on i386. Closes: #580852.
* Upgrade to Standards-Version: 3.9.1. No changes needed.
* Updated generated incs.
* Patches that still need work:
  + Unclear status, need more investigation:
   090729_fix_Makefile_deps.dpatch
   090803_exclude_rdoc.dpatch
   203_adjust_base_of_search_path.dpatch
   902_define_YAML_in_yaml_stringio.rb.dpatch
   919_common.mk_tweaks.dpatch
   931_libruby_suffix.dpatch
   940_test_thread_mutex_sync_shorter.dpatch
  + Maybe not needed anymore, keeping but not applying.
   102_skip_test_copy_stream.dpatch (test doesn't block anymore?)
   104_skip_btest_io.dpatch (test doesn't block anymore?)
   201_gem_prelude.dpatch (we don't use that rubygems anyway?)
   202_gem_default_dir.dpatch (we don't use that rubygems anyway?)
   940_test_file_exhaustive_fails_as_root.dpatch
   940_test_priority_fails.dpatch
   100518_load_libc_libm.dpatch
* Add disable-tests.diff: disable some tests that cause failures on FreeBSD.
  Closes: #590002, #543805, #542927.
* However, many new failures on FreeBSD. Since that version is still an
  improvement, add the check that makes test suite failures non-fatal on
  FreeBSD again. That still needs to be investigated.
* Re-add 903_skip_base_ruby_check.dpatch
* Add build-dependency on ruby1.8 and drop all pre-generated files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# YAML::YamlNode class
 
3
#
 
4
require 'syck/basenode'
 
5
 
 
6
module Syck
 
7
 
 
8
    #
 
9
    # YAML Generic Model container
 
10
    #
 
11
    class YamlNode
 
12
        include BaseNode
 
13
        attr_accessor :kind, :type_id, :value, :anchor
 
14
        def initialize(t, v)
 
15
            @type_id = t
 
16
            if Hash === v
 
17
                @kind = 'map'
 
18
                @value = {}
 
19
                v.each {|key,val|
 
20
                    @value[key.transform] = [key, val]
 
21
                }
 
22
            elsif Array === v
 
23
                @kind = 'seq'
 
24
                @value = v
 
25
            elsif String === v
 
26
                @kind = 'scalar'
 
27
                @value = v
 
28
            end
 
29
        end
 
30
 
 
31
        #
 
32
        # Transform this node fully into a native type
 
33
        #
 
34
        def transform
 
35
            t = nil
 
36
            if @value.is_a? Hash
 
37
                t = {}
 
38
                @value.each { |k,v|
 
39
                    t[ k ] = v[1].transform
 
40
                }
 
41
            elsif @value.is_a? Array
 
42
                t = []
 
43
                @value.each { |v|
 
44
                    t.push v.transform
 
45
                }
 
46
            else
 
47
                t = @value
 
48
            end
 
49
            Syck.transfer_method( @type_id, t )
 
50
        end
 
51
 
 
52
    end
 
53
 
 
54
end