| JSON_LOADED | = | true | ||
| NaN | = | (-1.0) ** 0.5 | ||
| Infinity | = | 1.0/0 | ||
| MinusInfinity | = | -Infinity | ||
| UnparserError | = | GeneratorError | For backwards compatibility | |
| VERSION | = | '1.1.2' | JSON version | |
| VARIANT_BINARY | = | false |
| create_id | [RW] | This is create identifier, that is used to decide, if the json_create hook of a class should be called. It defaults to ‘json_class’. |
| generator | [R] | Returns the JSON generator modul, that is used by JSON. This might be either JSON::Ext::Generator or JSON::Pure::Generator. |
| parser | [R] | Returns the JSON parser class, that is used by JSON. This might be either JSON::Ext::Parser or JSON::Pure::Parser. |
| state | [RW] | Returns the JSON generator state class, that is used by JSON. This might be either JSON::Ext::Generator::State or JSON::Pure::Generator::State. |
If object is string like parse the string and return the parsed result as a Ruby data structure. Otherwise generate a JSON text from the Ruby data structure object and return it.
The opts argument is passed through to generate/parse respectively, see generate and parse for their documentation.
# File lib/json/common.rb, line 11 def [](object, opts = {}) if object.respond_to? :to_str JSON.parse(object.to_str, opts => {}) else JSON.generate(object, opts => {}) end end
Dumps obj as a JSON string, i.e. calls generate on the object and returns the result.
If anIO (an IO like object or an object that responds to the write method) was given, the resulting JSON is written to it.
If the number of nested arrays or objects exceeds limit an ArgumentError exception is raised. This argument is similar (but not exactly the same!) to the limit argument in Marshal.dump.
This method is part of the implementation of the load/dump interface of Marshal and YAML.
# File lib/json/common.rb, line 290 def dump(obj, anIO = nil, limit = nil) if anIO and limit.nil? anIO = anIO.to_io if anIO.respond_to?(:to_io) unless anIO.respond_to?(:write) limit = anIO anIO = nil end end limit ||= 0 result = generate(obj, :allow_nan => true, :max_nesting => limit) if anIO anIO.write result anIO else result end rescue JSON::NestingError raise ArgumentError, "exceed depth limit" end
Unparse the Ruby data structure obj into a single line JSON string and return it. This method disables the checks for circles in Ruby objects, and also generates NaN, Infinity, and, -Infinity float values.
WARNING: Be careful not to pass any Ruby data structures with circles as obj argument, because this will cause JSON to go into an infinite loop.
# File lib/json/common.rb, line 198 def fast_generate(obj) obj.to_json(nil) end
Unparse the Ruby data structure obj into a single line JSON string and return it. state is
that is used as or to configure a State object.
It defaults to a state object, that creates the shortest possible JSON text in one line, checks for circular data structures and doesn‘t allow NaN, Infinity, and -Infinity.
A state hash can have the following keys:
See also the fast_generate for the fastest creation method with the least amount of sanity checks, and the pretty_generate method for some defaults for a pretty output.
# File lib/json/common.rb, line 177 def generate(obj, state = nil) if state state = State.from_state(state) else state = State.new end obj.to_json(state) end
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.
This method is part of the implementation of the load/dump interface of Marshal and YAML.
# File lib/json/common.rb, line 247 def load(source, proc = nil) if source.respond_to? :to_str source = source.to_str elsif source.respond_to? :to_io source = source.to_io.read else source = source.read end result = parse(source, :max_nesting => false, :allow_nan => true) recurse_proc(result, &proc) if proc result end
Parse the JSON string source into a Ruby data structure and return it.
opts can have the following keys:
# File lib/json/common.rb, line 121 def parse(source, opts = {}) JSON.parser.new(source, opts).parse end
Parse the JSON string source into a Ruby data structure and return it. The bang version of the parse method, defaults to the more dangerous values for the opts hash, so be sure only to parse trusted source strings.
opts can have the following keys:
# File lib/json/common.rb, line 140 def parse!(source, opts = {}) opts = { :max_nesting => false, :allow_nan => true }.update(opts) JSON.parser.new(source, opts).parse end
Unparse the Ruby data structure obj into a JSON string and return it. The returned string is a prettier form of the string returned by unparse.
The opts argument can be used to configure the generator, see the generate method for a more detailed explanation.
# File lib/json/common.rb, line 213 def pretty_generate(obj, opts = nil) state = JSON.state.new( :indent => ' ', :space => ' ', :object_nl => "\n", :array_nl => "\n", :check_circular => true ) if opts if opts.respond_to? :to_hash opts = opts.to_hash elsif opts.respond_to? :to_h opts = opts.to_h else raise TypeError, "can't convert #{opts.class} into Hash" end state.configure(opts) end obj.to_json(state) end