module MultiJson::OkJson
Some parts adapted from golang.org/src/encoding/json/decode.go and golang.org/src/unicode/utf8/utf8.go
Constants
- ParseError
- Spc
- Uchar1max
- Uchar2max
- Uchar3max
- Ucharerr
- Umask2
- Umask3
- Umask4
- Umaskx
- Unesc
- Upstream
- Ustrerr
- Usurr1
- Usurr2
- Usurr3
- Usurrself
- Utag2
- Utag3
- Utag4
- Utag5
- Utagx
Public Instance Methods
Decodes a json document in string s and returns the corresponding ruby value. String s must be valid UTF-8. If you have a string in some other encoding, convert it first.
String values in the resulting structure will be UTF-8.
# File lib/multi_json/vendor/okjson.rb, line 44 def decode(s) ts = lex(s) v, ts = textparse(ts) if ts.length > 0 raise Error, 'trailing garbage' end v end
Encodes x into a json text. It may contain only Array, Hash, String, Numeric, true, false, nil. (Note, this list excludes Symbol.) X itself must be an Array or a Hash. No other value can be encoded, and an error will be raised if x contains any other value, such as Nan, Infinity, Symbol, and Proc, or if a Hash key is not a String. Strings contained in x must be valid UTF-8.
# File lib/multi_json/vendor/okjson.rb, line 63 def encode(x) case x when Hash then objenc(x) when Array then arrenc(x) else raise Error, 'root value must be an Array or a Hash' end end
# File lib/multi_json/vendor/okjson.rb, line 73 def valenc(x) case x when Hash then objenc(x) when Array then arrenc(x) when String then strenc(x) when Numeric then numenc(x) when true then "true" when false then "false" when nil then "null" else if x.respond_to?(:to_json) x.to_json else raise Error, "cannot encode #{x.class}: #{x.inspect}" end end end