From e4eead665c14f2a355bf0f07a4297e74228f1a0d Mon Sep 17 00:00:00 2001 From: BurdetteLamar Date: Sat, 4 Jul 2020 09:21:12 -0500 Subject: RDoc example for JSON.load --- lib/json.rb | 2 +- lib/json/common.rb | 100 ++++++++++++++++++++++++++++++++++++++++++++++------- 2 files changed, 88 insertions(+), 14 deletions(-) diff --git a/lib/json.rb b/lib/json.rb index 6bb8224..aeb9774 100644 --- a/lib/json.rb +++ b/lib/json.rb @@ -319,7 +319,7 @@ require 'json/common' # opts = { # array_nl: "\n", # object_nl: "\n", -# indent+: ' ', +# indent: ' ', # space_before: ' ', # space: ' ' # } diff --git a/lib/json/common.rb b/lib/json/common.rb index 5ef3ac2..f5b45ab 100644 --- a/lib/json/common.rb +++ b/lib/json/common.rb @@ -414,21 +414,95 @@ module JSON :create_additions => true, } - # Load a ruby data structure from a JSON _source_ and return it. A source can - # either be a string-like object, an IO-like object, or an object responding - # to the read method. If _proc_ was given, it will be called with any nested - # Ruby object as an argument recursively in depth first order. To modify the - # default options pass in the optional _options_ argument as well. - # - # BEWARE: This method is meant to serialise data from trusted user input, - # like from your own database server or clients under your control, it could - # be dangerous to allow untrusted users to pass JSON sources into it. The - # default options for the parser can be changed via the load_default_options - # method. + # :call-seq: + # JSON.load(source, proc = nil, options = {}) -> object # - # This method is part of the implementation of the load/dump interface of - # Marshal and YAML. + # Returns the Ruby objects created by parsing the given +source+. # + # - Argument +source+ must be, or be convertible to, a \String: + # - If +source+ responds to instance method +to_str+, + # source.to_str becomes the source. + # - If +source+ responds to instance method +to_io+, + # source.to_io.read becomes the source. + # - If +source+ responds to instance method +read+, + # source.read becomes the source. + # - If both of the following are true, source becomes the \String 'null': + # - Option +allow_blank+ specifies a truthy value. + # - The source, as defined above, is +nil+ or the empty \String ''. + # - Otherwise, +source+ remains the source. + # - Argument +proc+, if given, must be a \Proc that accepts one argument. + # It will be called recursively with each result (depth-first order). + # See details below. + # BEWARE: This method is meant to serialise data from trusted user input, + # like from your own database server or clients under your control, it could + # be dangerous to allow untrusted users to pass JSON sources into it. + # - Argument +opts+, if given, contains options for the parsing, and must be a + # {Hash-convertible object}[doc/implicit_conversion_rdoc.html#label-Hash+Convertible+Objects]. + # See {Parsing Options}[#module-JSON-label-Parsing+Options]. + # The default options can be changed via method JSON.load_default_options=. + # + # Examples in this section assume prior execution of: + # source = <<-EOT + # { + # "name": "Dave", + # "age" :40, + # "hats": [ + # "Cattleman's", + # "Panama", + # "Tophat" + # ] + # } + # EOT + # + # --- + # + # When +proc+ is not given, modifies +source+ as above and returns the result of + # parse(source, opts); see #parse. + # + # Load a \String: + # ruby = JSON.load(source) + # ruby # => {"name"=>"Dave", "age"=>40, "hats"=>["Cattleman's", "Panama", "Tophat"]} + # + # Load an \IO object: + # require 'stringio' + # object = JSON.load(StringIO.new(source)) + # object # => {"name"=>"Dave", "age"=>40, "hats"=>["Cattleman's", "Panama", "Tophat"]} + # + # Load a \File object: + # path = 't.json' + # File.write(path, source) + # File.open(path) do |file| + # JSON.load(file) + # end # => {"name"=>"Dave", "age"=>40, "hats"=>["Cattleman's", "Panama", "Tophat"]} + # + # --- + # + # When +proc+ is given: + # - Modifies +source+ as above. + # - Gets the +result+ from calling parse(source, opts). + # - Recursively calls proc(result). + # - Returns the final result. + # + # Example: + # def mung(obj) + # case obj + # when String + # obj.upcase + # when Integer + # obj * 100 + # else + # obj + # end + # end + # new_obj = JSON.load(source, proc {|obj| + # case obj + # when Hash + # obj.each {|k, v| obj[k] = mung(v) } + # when Array + # obj.map! {|v| mung(v) } + # end + # }) + # new_obj # => {"name"=>"DAVE", "age"=>4000, "hats"=>["CATTLEMAN'S", "PANAMA", "TOPHAT"]} def load(source, proc = nil, options = {}) opts = load_default_options.merge options if source.respond_to? :to_str -- cgit v1.2.1