2003-12-20 05:40:15 +03:00
|
|
|
# -*- mode: ruby; ruby-indent-level: 4; tab-width: 4 -*- vim: sw=4 ts=4
|
2003-05-10 01:25:50 +04:00
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
# YAML.rb
|
|
|
|
#
|
|
|
|
# Loads the parser/loader and emitter/writer.
|
|
|
|
#
|
|
|
|
module YAML
|
|
|
|
|
2004-05-15 07:11:28 +04:00
|
|
|
require 'yaml/syck'
|
|
|
|
@@parser = YAML::Syck::Parser
|
|
|
|
@@loader = YAML::Syck::DefaultLoader
|
|
|
|
@@emitter = YAML::Syck::Emitter
|
2003-05-10 23:55:18 +04:00
|
|
|
require 'yaml/loader'
|
|
|
|
require 'yaml/stream'
|
2003-05-10 01:25:50 +04:00
|
|
|
|
2003-07-12 02:52:14 +04:00
|
|
|
#
|
|
|
|
# Load a single document from the current stream
|
|
|
|
#
|
|
|
|
def YAML.dump( obj, io = nil )
|
|
|
|
io ||= ""
|
|
|
|
io << obj.to_yaml
|
|
|
|
io
|
|
|
|
end
|
|
|
|
|
2003-05-10 01:25:50 +04:00
|
|
|
#
|
|
|
|
# Load a single document from the current stream
|
|
|
|
#
|
|
|
|
def YAML.load( io )
|
2003-05-10 23:55:18 +04:00
|
|
|
yp = @@parser.new.load( io )
|
2003-05-10 01:25:50 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Parse a single document from the current stream
|
|
|
|
#
|
|
|
|
def YAML.parse( io )
|
2003-05-10 23:55:18 +04:00
|
|
|
yp = @@parser.new( :Model => :Generic ).load( io )
|
2003-05-10 01:25:50 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Load all documents from the current stream
|
|
|
|
#
|
|
|
|
def YAML.each_document( io, &doc_proc )
|
2003-05-10 23:55:18 +04:00
|
|
|
yp = @@parser.new.load_documents( io, &doc_proc )
|
2003-05-10 01:25:50 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Identical to each_document
|
|
|
|
#
|
|
|
|
def YAML.load_documents( io, &doc_proc )
|
|
|
|
YAML.each_document( io, &doc_proc )
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Parse all documents from the current stream
|
|
|
|
#
|
|
|
|
def YAML.each_node( io, &doc_proc )
|
2003-05-10 23:55:18 +04:00
|
|
|
yp = @@parser.new( :Model => :Generic ).load_documents( io, &doc_proc )
|
2003-05-10 01:25:50 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Parse all documents from the current stream
|
|
|
|
#
|
|
|
|
def YAML.parse_documents( io, &doc_proc )
|
|
|
|
YAML.each_node( io, &doc_proc )
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Load all documents from the current stream
|
|
|
|
#
|
|
|
|
def YAML.load_stream( io )
|
2003-05-10 23:55:18 +04:00
|
|
|
yp = @@parser.new
|
2003-05-10 01:25:50 +04:00
|
|
|
d = nil
|
2003-05-10 23:55:18 +04:00
|
|
|
yp.load_documents( io ) { |doc|
|
2003-05-10 01:25:50 +04:00
|
|
|
d = YAML::Stream.new( yp.options ) if not d
|
|
|
|
d.add( doc )
|
|
|
|
}
|
|
|
|
return d
|
|
|
|
end
|
|
|
|
|
2004-04-03 03:31:14 +04:00
|
|
|
#
|
|
|
|
# Dump documents to a stream
|
|
|
|
#
|
|
|
|
def YAML.dump_stream( *objs )
|
|
|
|
d = YAML::Stream.new
|
|
|
|
objs.each do |doc|
|
|
|
|
d.add( doc )
|
|
|
|
end
|
|
|
|
d.emit
|
|
|
|
end
|
|
|
|
|
2003-05-10 23:55:18 +04:00
|
|
|
#
|
|
|
|
# Add a transfer method to a domain
|
|
|
|
#
|
|
|
|
def YAML.add_domain_type( domain, type_re, &transfer_proc )
|
|
|
|
@@loader.add_domain_type( domain, type_re, &transfer_proc )
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Add a transfer method for a builtin type
|
|
|
|
#
|
|
|
|
def YAML.add_builtin_type( type_re, &transfer_proc )
|
|
|
|
@@loader.add_builtin_type( type_re, &transfer_proc )
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Add a transfer method for a builtin type
|
|
|
|
#
|
|
|
|
def YAML.add_ruby_type( type, &transfer_proc )
|
|
|
|
@@loader.add_ruby_type( type, &transfer_proc )
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Add a private document type
|
|
|
|
#
|
|
|
|
def YAML.add_private_type( type_re, &transfer_proc )
|
|
|
|
@@loader.add_private_type( type_re, &transfer_proc )
|
|
|
|
end
|
|
|
|
|
2003-05-13 10:34:18 +04:00
|
|
|
#
|
|
|
|
# Detect typing of a string
|
|
|
|
#
|
|
|
|
def YAML.detect_implicit( val )
|
|
|
|
@@loader.detect_implicit( val )
|
|
|
|
end
|
|
|
|
|
2003-06-05 21:42:06 +04:00
|
|
|
#
|
|
|
|
# Apply a transfer method to a Ruby object
|
|
|
|
#
|
|
|
|
def YAML.transfer( type_id, obj )
|
|
|
|
@@loader.transfer( type_id, obj )
|
|
|
|
end
|
|
|
|
|
2003-06-18 05:06:00 +04:00
|
|
|
#
|
|
|
|
# Apply any implicit a node may qualify for
|
|
|
|
#
|
|
|
|
def YAML.try_implicit( obj )
|
|
|
|
YAML.transfer( YAML.detect_implicit( obj ), obj )
|
|
|
|
end
|
|
|
|
|
2003-05-10 23:55:18 +04:00
|
|
|
#
|
2004-05-15 07:11:28 +04:00
|
|
|
# Method to extract colon-seperated type and class, returning
|
2003-05-10 23:55:18 +04:00
|
|
|
# the type and the constant of the class
|
|
|
|
#
|
|
|
|
def YAML.read_type_class( type, obj_class )
|
2003-05-13 10:34:18 +04:00
|
|
|
scheme, domain, type, tclass = type.split( ':', 4 )
|
|
|
|
tclass.split( "::" ).each { |c| obj_class = obj_class.const_get( c ) } if tclass
|
2003-05-10 23:55:18 +04:00
|
|
|
return [ type, obj_class ]
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Allocate blank object
|
|
|
|
#
|
2004-05-15 07:11:28 +04:00
|
|
|
def YAML.object_maker( obj_class, val )
|
2003-05-10 23:55:18 +04:00
|
|
|
if Hash === val
|
2004-05-06 10:29:56 +04:00
|
|
|
o = obj_class.allocate
|
2004-05-15 07:11:28 +04:00
|
|
|
val.each_pair { |k,v|
|
|
|
|
o.instance_variable_set("@#{k}", v)
|
|
|
|
}
|
2003-05-10 23:55:18 +04:00
|
|
|
o
|
|
|
|
else
|
|
|
|
raise YAML::Error, "Invalid object explicitly tagged !ruby/Object: " + val.inspect
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2003-07-12 02:52:14 +04:00
|
|
|
#
|
|
|
|
# Allocate an Emitter if needed
|
|
|
|
#
|
|
|
|
def YAML.quick_emit( oid, opts = {}, &e )
|
|
|
|
old_opt = nil
|
|
|
|
if opts[:Emitter].is_a? @@emitter
|
|
|
|
out = opts.delete( :Emitter )
|
|
|
|
old_opt = out.options.dup
|
|
|
|
out.options.update( opts )
|
|
|
|
else
|
|
|
|
out = @@emitter.new( opts )
|
|
|
|
end
|
|
|
|
aidx = out.start_object( oid )
|
|
|
|
if aidx
|
|
|
|
out.simple( "*#{ aidx }" )
|
|
|
|
else
|
|
|
|
e.call( out )
|
|
|
|
end
|
|
|
|
if old_opt.is_a? Hash
|
|
|
|
out.options = old_opt
|
|
|
|
end
|
|
|
|
out.end_object
|
|
|
|
end
|
|
|
|
|
2003-05-10 01:25:50 +04:00
|
|
|
end
|
|
|
|
|
2003-05-10 23:55:18 +04:00
|
|
|
require 'yaml/rubytypes'
|
2003-06-05 21:42:06 +04:00
|
|
|
require 'yaml/types'
|
2003-05-10 23:55:18 +04:00
|
|
|
|
2003-05-10 01:25:50 +04:00
|
|
|
module Kernel
|
2004-03-24 19:52:49 +03:00
|
|
|
#
|
|
|
|
# ryan:: You know how Kernel.p is a really convenient way to dump ruby
|
|
|
|
# structures? The only downside is that it's not as legible as
|
|
|
|
# YAML.
|
|
|
|
#
|
|
|
|
# _why:: (listening)
|
|
|
|
#
|
|
|
|
# ryan:: I know you don't want to urinate all over your users' namespaces.
|
|
|
|
# But, on the other hand, convenience of dumping for debugging is,
|
|
|
|
# IMO, a big YAML use case.
|
|
|
|
#
|
|
|
|
# _why:: Go nuts! Have a pony parade!
|
|
|
|
#
|
|
|
|
# ryan:: Either way, I certainly will have a pony parade.
|
|
|
|
#
|
|
|
|
|
2004-04-03 03:31:14 +04:00
|
|
|
def y( *x )
|
|
|
|
puts( if x.length == 1
|
|
|
|
YAML::dump( *x )
|
|
|
|
else
|
|
|
|
YAML::dump_stream( *x )
|
|
|
|
end )
|
2003-05-10 01:25:50 +04:00
|
|
|
end
|
2004-04-03 03:31:14 +04:00
|
|
|
private :y
|
2003-05-10 01:25:50 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
|