scout 5.7.1 → 5.7.2.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (251) hide show
  1. data/CHANGELOG.markdown +5 -0
  2. data/lib/scout/command/run.rb +1 -1
  3. data/lib/scout/server.rb +2 -1
  4. data/lib/scout/streamer.rb +3 -2
  5. data/lib/scout/streamer_daemon.rb +4 -4
  6. data/lib/scout/version.rb +1 -1
  7. data/test/scout_test.rb +7 -8
  8. data/vendor/httpclient/README.txt +759 -0
  9. data/vendor/httpclient/bin/httpclient +65 -0
  10. data/vendor/httpclient/lib/hexdump.rb +50 -0
  11. data/vendor/httpclient/lib/http-access2.rb +55 -0
  12. data/vendor/httpclient/lib/http-access2/cookie.rb +1 -0
  13. data/vendor/httpclient/lib/http-access2/http.rb +1 -0
  14. data/vendor/httpclient/lib/httpclient.rb +1156 -0
  15. data/vendor/httpclient/lib/httpclient/auth.rb +899 -0
  16. data/vendor/httpclient/lib/httpclient/cacert.p7s +1912 -0
  17. data/vendor/httpclient/lib/httpclient/connection.rb +88 -0
  18. data/vendor/httpclient/lib/httpclient/cookie.rb +438 -0
  19. data/vendor/httpclient/lib/httpclient/http.rb +1046 -0
  20. data/vendor/httpclient/lib/httpclient/include_client.rb +83 -0
  21. data/vendor/httpclient/lib/httpclient/session.rb +1025 -0
  22. data/vendor/httpclient/lib/httpclient/ssl_config.rb +403 -0
  23. data/vendor/httpclient/lib/httpclient/timeout.rb +140 -0
  24. data/vendor/httpclient/lib/httpclient/util.rb +178 -0
  25. data/vendor/httpclient/lib/httpclient/version.rb +3 -0
  26. data/vendor/httpclient/lib/oauthclient.rb +110 -0
  27. data/vendor/httpclient/sample/async.rb +8 -0
  28. data/vendor/httpclient/sample/auth.rb +11 -0
  29. data/vendor/httpclient/sample/cookie.rb +18 -0
  30. data/vendor/httpclient/sample/dav.rb +103 -0
  31. data/vendor/httpclient/sample/howto.rb +49 -0
  32. data/vendor/httpclient/sample/oauth_buzz.rb +57 -0
  33. data/vendor/httpclient/sample/oauth_friendfeed.rb +59 -0
  34. data/vendor/httpclient/sample/oauth_salesforce_10.rb +63 -0
  35. data/vendor/httpclient/sample/oauth_twitter.rb +61 -0
  36. data/vendor/httpclient/sample/ssl/0cert.pem +22 -0
  37. data/vendor/httpclient/sample/ssl/0key.pem +30 -0
  38. data/vendor/httpclient/sample/ssl/1000cert.pem +19 -0
  39. data/vendor/httpclient/sample/ssl/1000key.pem +18 -0
  40. data/vendor/httpclient/sample/ssl/htdocs/index.html +10 -0
  41. data/vendor/httpclient/sample/ssl/ssl_client.rb +22 -0
  42. data/vendor/httpclient/sample/ssl/webrick_httpsd.rb +29 -0
  43. data/vendor/httpclient/sample/stream.rb +21 -0
  44. data/vendor/httpclient/sample/thread.rb +27 -0
  45. data/vendor/httpclient/sample/wcat.rb +21 -0
  46. data/vendor/httpclient/test/ca-chain.cert +44 -0
  47. data/vendor/httpclient/test/ca.cert +23 -0
  48. data/vendor/httpclient/test/client.cert +19 -0
  49. data/vendor/httpclient/test/client.key +15 -0
  50. data/vendor/httpclient/test/helper.rb +129 -0
  51. data/vendor/httpclient/test/htdigest +1 -0
  52. data/vendor/httpclient/test/htpasswd +2 -0
  53. data/vendor/httpclient/test/runner.rb +2 -0
  54. data/vendor/httpclient/test/server.cert +19 -0
  55. data/vendor/httpclient/test/server.key +15 -0
  56. data/vendor/httpclient/test/sslsvr.rb +65 -0
  57. data/vendor/httpclient/test/subca.cert +21 -0
  58. data/vendor/httpclient/test/test_auth.rb +321 -0
  59. data/vendor/httpclient/test/test_cookie.rb +391 -0
  60. data/vendor/httpclient/test/test_hexdump.rb +14 -0
  61. data/vendor/httpclient/test/test_http-access2.rb +507 -0
  62. data/vendor/httpclient/test/test_httpclient.rb +1783 -0
  63. data/vendor/httpclient/test/test_include_client.rb +52 -0
  64. data/vendor/httpclient/test/test_ssl.rb +235 -0
  65. data/vendor/multi_json/.document +5 -0
  66. data/vendor/multi_json/.rspec +3 -0
  67. data/vendor/multi_json/.travis.yml +11 -0
  68. data/vendor/multi_json/.yardopts +6 -0
  69. data/vendor/multi_json/CHANGELOG.md +169 -0
  70. data/vendor/multi_json/CONTRIBUTING.md +46 -0
  71. data/vendor/multi_json/Gemfile +31 -0
  72. data/vendor/multi_json/LICENSE.md +20 -0
  73. data/vendor/multi_json/README.md +109 -0
  74. data/vendor/multi_json/Rakefile +12 -0
  75. data/vendor/multi_json/lib/multi_json.rb +157 -0
  76. data/vendor/multi_json/lib/multi_json/adapter.rb +48 -0
  77. data/vendor/multi_json/lib/multi_json/adapters/gson.rb +19 -0
  78. data/vendor/multi_json/lib/multi_json/adapters/jr_jackson.rb +19 -0
  79. data/vendor/multi_json/lib/multi_json/adapters/json_common.rb +25 -0
  80. data/vendor/multi_json/lib/multi_json/adapters/json_gem.rb +11 -0
  81. data/vendor/multi_json/lib/multi_json/adapters/json_pure.rb +11 -0
  82. data/vendor/multi_json/lib/multi_json/adapters/nsjsonserialization.rb +34 -0
  83. data/vendor/multi_json/lib/multi_json/adapters/oj.rb +24 -0
  84. data/vendor/multi_json/lib/multi_json/adapters/ok_json.rb +22 -0
  85. data/vendor/multi_json/lib/multi_json/adapters/yajl.rb +19 -0
  86. data/vendor/multi_json/lib/multi_json/convertible_hash_keys.rb +43 -0
  87. data/vendor/multi_json/lib/multi_json/load_error.rb +11 -0
  88. data/vendor/multi_json/lib/multi_json/options.rb +48 -0
  89. data/vendor/multi_json/lib/multi_json/vendor/okjson.rb +606 -0
  90. data/vendor/multi_json/lib/multi_json/version.rb +20 -0
  91. data/vendor/multi_json/multi_json.gemspec +22 -0
  92. data/vendor/multi_json/spec/adapter_shared_example.rb +235 -0
  93. data/vendor/multi_json/spec/has_options.rb +119 -0
  94. data/vendor/multi_json/spec/helper.rb +35 -0
  95. data/vendor/multi_json/spec/json_common_shared_example.rb +30 -0
  96. data/vendor/multi_json/spec/multi_json_spec.rb +226 -0
  97. data/vendor/{signature → pusher}/.document +0 -0
  98. data/vendor/{json_pure/diagrams/.keep → pusher/.gemtest} +0 -0
  99. data/vendor/pusher/.gitignore +23 -0
  100. data/vendor/pusher/.travis.yml +15 -0
  101. data/vendor/pusher/Gemfile +2 -0
  102. data/vendor/{pusher-gem → pusher}/LICENSE +1 -1
  103. data/vendor/pusher/README.md +186 -0
  104. data/vendor/{pusher-gem → pusher}/Rakefile +0 -0
  105. data/vendor/{pusher-gem → pusher}/examples/async_message.rb +0 -0
  106. data/vendor/pusher/lib/pusher.rb +60 -0
  107. data/vendor/{pusher-gem → pusher}/lib/pusher/channel.rb +47 -54
  108. data/vendor/pusher/lib/pusher/client.rb +306 -0
  109. data/vendor/pusher/lib/pusher/request.rb +107 -0
  110. data/vendor/pusher/lib/pusher/resource.rb +36 -0
  111. data/vendor/pusher/lib/pusher/webhook.rb +110 -0
  112. data/vendor/{pusher-gem → pusher}/pusher.gemspec +6 -5
  113. data/vendor/pusher/spec/channel_spec.rb +127 -0
  114. data/vendor/pusher/spec/client_spec.rb +464 -0
  115. data/vendor/{pusher-gem → pusher}/spec/spec_helper.rb +12 -0
  116. data/vendor/pusher/spec/web_hook_spec.rb +117 -0
  117. data/vendor/signature/.travis.yml +15 -0
  118. data/vendor/signature/Gemfile +1 -1
  119. data/vendor/signature/README.md +38 -28
  120. data/vendor/signature/lib/signature.rb +97 -15
  121. data/vendor/signature/lib/signature/query_encoder.rb +47 -0
  122. data/vendor/signature/lib/signature/version.rb +1 -1
  123. data/vendor/signature/signature.gemspec +3 -2
  124. data/vendor/signature/spec/signature_spec.rb +164 -55
  125. data/vendor/signature/spec/spec_helper.rb +2 -3
  126. metadata +120 -145
  127. data/vendor/json_pure/.gitignore +0 -12
  128. data/vendor/json_pure/.travis.yml +0 -20
  129. data/vendor/json_pure/CHANGES +0 -282
  130. data/vendor/json_pure/COPYING +0 -58
  131. data/vendor/json_pure/COPYING-json-jruby +0 -57
  132. data/vendor/json_pure/GPL +0 -340
  133. data/vendor/json_pure/Gemfile +0 -11
  134. data/vendor/json_pure/README-json-jruby.markdown +0 -33
  135. data/vendor/json_pure/README.rdoc +0 -358
  136. data/vendor/json_pure/Rakefile +0 -412
  137. data/vendor/json_pure/TODO +0 -1
  138. data/vendor/json_pure/VERSION +0 -1
  139. data/vendor/json_pure/data/example.json +0 -1
  140. data/vendor/json_pure/data/index.html +0 -38
  141. data/vendor/json_pure/data/prototype.js +0 -4184
  142. data/vendor/json_pure/ext/json/ext/fbuffer/fbuffer.h +0 -181
  143. data/vendor/json_pure/ext/json/ext/generator/depend +0 -1
  144. data/vendor/json_pure/ext/json/ext/generator/extconf.rb +0 -14
  145. data/vendor/json_pure/ext/json/ext/generator/generator.c +0 -1435
  146. data/vendor/json_pure/ext/json/ext/generator/generator.h +0 -148
  147. data/vendor/json_pure/ext/json/ext/parser/depend +0 -1
  148. data/vendor/json_pure/ext/json/ext/parser/extconf.rb +0 -13
  149. data/vendor/json_pure/ext/json/ext/parser/parser.c +0 -2204
  150. data/vendor/json_pure/ext/json/ext/parser/parser.h +0 -77
  151. data/vendor/json_pure/ext/json/ext/parser/parser.rl +0 -927
  152. data/vendor/json_pure/install.rb +0 -23
  153. data/vendor/json_pure/java/src/json/ext/ByteListTranscoder.java +0 -167
  154. data/vendor/json_pure/java/src/json/ext/Generator.java +0 -444
  155. data/vendor/json_pure/java/src/json/ext/GeneratorMethods.java +0 -232
  156. data/vendor/json_pure/java/src/json/ext/GeneratorService.java +0 -43
  157. data/vendor/json_pure/java/src/json/ext/GeneratorState.java +0 -543
  158. data/vendor/json_pure/java/src/json/ext/OptionsReader.java +0 -114
  159. data/vendor/json_pure/java/src/json/ext/Parser.java +0 -2644
  160. data/vendor/json_pure/java/src/json/ext/Parser.rl +0 -968
  161. data/vendor/json_pure/java/src/json/ext/ParserService.java +0 -35
  162. data/vendor/json_pure/java/src/json/ext/RuntimeInfo.java +0 -121
  163. data/vendor/json_pure/java/src/json/ext/StringDecoder.java +0 -167
  164. data/vendor/json_pure/java/src/json/ext/StringEncoder.java +0 -106
  165. data/vendor/json_pure/java/src/json/ext/Utils.java +0 -89
  166. data/vendor/json_pure/json-java.gemspec +0 -23
  167. data/vendor/json_pure/json.gemspec +0 -37
  168. data/vendor/json_pure/json_pure.gemspec +0 -39
  169. data/vendor/json_pure/lib/json.rb +0 -62
  170. data/vendor/json_pure/lib/json/add/bigdecimal.rb +0 -28
  171. data/vendor/json_pure/lib/json/add/complex.rb +0 -22
  172. data/vendor/json_pure/lib/json/add/core.rb +0 -11
  173. data/vendor/json_pure/lib/json/add/date.rb +0 -34
  174. data/vendor/json_pure/lib/json/add/date_time.rb +0 -50
  175. data/vendor/json_pure/lib/json/add/exception.rb +0 -31
  176. data/vendor/json_pure/lib/json/add/ostruct.rb +0 -31
  177. data/vendor/json_pure/lib/json/add/range.rb +0 -29
  178. data/vendor/json_pure/lib/json/add/rational.rb +0 -22
  179. data/vendor/json_pure/lib/json/add/regexp.rb +0 -30
  180. data/vendor/json_pure/lib/json/add/struct.rb +0 -30
  181. data/vendor/json_pure/lib/json/add/symbol.rb +0 -25
  182. data/vendor/json_pure/lib/json/add/time.rb +0 -38
  183. data/vendor/json_pure/lib/json/common.rb +0 -487
  184. data/vendor/json_pure/lib/json/ext.rb +0 -21
  185. data/vendor/json_pure/lib/json/ext/.keep +0 -0
  186. data/vendor/json_pure/lib/json/generic_object.rb +0 -70
  187. data/vendor/json_pure/lib/json/pure.rb +0 -21
  188. data/vendor/json_pure/lib/json/pure/generator.rb +0 -522
  189. data/vendor/json_pure/lib/json/pure/parser.rb +0 -359
  190. data/vendor/json_pure/lib/json/version.rb +0 -8
  191. data/vendor/json_pure/tests/fixtures/fail1.json +0 -1
  192. data/vendor/json_pure/tests/fixtures/fail10.json +0 -1
  193. data/vendor/json_pure/tests/fixtures/fail11.json +0 -1
  194. data/vendor/json_pure/tests/fixtures/fail12.json +0 -1
  195. data/vendor/json_pure/tests/fixtures/fail13.json +0 -1
  196. data/vendor/json_pure/tests/fixtures/fail14.json +0 -1
  197. data/vendor/json_pure/tests/fixtures/fail18.json +0 -1
  198. data/vendor/json_pure/tests/fixtures/fail19.json +0 -1
  199. data/vendor/json_pure/tests/fixtures/fail2.json +0 -1
  200. data/vendor/json_pure/tests/fixtures/fail20.json +0 -1
  201. data/vendor/json_pure/tests/fixtures/fail21.json +0 -1
  202. data/vendor/json_pure/tests/fixtures/fail22.json +0 -1
  203. data/vendor/json_pure/tests/fixtures/fail23.json +0 -1
  204. data/vendor/json_pure/tests/fixtures/fail24.json +0 -1
  205. data/vendor/json_pure/tests/fixtures/fail25.json +0 -1
  206. data/vendor/json_pure/tests/fixtures/fail27.json +0 -2
  207. data/vendor/json_pure/tests/fixtures/fail28.json +0 -2
  208. data/vendor/json_pure/tests/fixtures/fail3.json +0 -1
  209. data/vendor/json_pure/tests/fixtures/fail4.json +0 -1
  210. data/vendor/json_pure/tests/fixtures/fail5.json +0 -1
  211. data/vendor/json_pure/tests/fixtures/fail6.json +0 -1
  212. data/vendor/json_pure/tests/fixtures/fail7.json +0 -1
  213. data/vendor/json_pure/tests/fixtures/fail8.json +0 -1
  214. data/vendor/json_pure/tests/fixtures/fail9.json +0 -1
  215. data/vendor/json_pure/tests/fixtures/pass1.json +0 -56
  216. data/vendor/json_pure/tests/fixtures/pass15.json +0 -1
  217. data/vendor/json_pure/tests/fixtures/pass16.json +0 -1
  218. data/vendor/json_pure/tests/fixtures/pass17.json +0 -1
  219. data/vendor/json_pure/tests/fixtures/pass2.json +0 -1
  220. data/vendor/json_pure/tests/fixtures/pass26.json +0 -1
  221. data/vendor/json_pure/tests/fixtures/pass3.json +0 -6
  222. data/vendor/json_pure/tests/setup_variant.rb +0 -11
  223. data/vendor/json_pure/tests/test_json.rb +0 -545
  224. data/vendor/json_pure/tests/test_json_addition.rb +0 -196
  225. data/vendor/json_pure/tests/test_json_encoding.rb +0 -65
  226. data/vendor/json_pure/tests/test_json_fixtures.rb +0 -35
  227. data/vendor/json_pure/tests/test_json_generate.rb +0 -322
  228. data/vendor/json_pure/tests/test_json_generic_object.rb +0 -75
  229. data/vendor/json_pure/tests/test_json_string_matching.rb +0 -39
  230. data/vendor/json_pure/tests/test_json_unicode.rb +0 -72
  231. data/vendor/json_pure/tools/fuzz.rb +0 -139
  232. data/vendor/json_pure/tools/server.rb +0 -62
  233. data/vendor/pusher-gem/Gemfile +0 -2
  234. data/vendor/pusher-gem/README.md +0 -80
  235. data/vendor/pusher-gem/lib/pusher.rb +0 -107
  236. data/vendor/pusher-gem/lib/pusher/request.rb +0 -107
  237. data/vendor/pusher-gem/spec/channel_spec.rb +0 -274
  238. data/vendor/pusher-gem/spec/pusher_spec.rb +0 -87
  239. data/vendor/ruby-hmac/History.txt +0 -15
  240. data/vendor/ruby-hmac/Manifest.txt +0 -11
  241. data/vendor/ruby-hmac/README.md +0 -41
  242. data/vendor/ruby-hmac/Rakefile +0 -23
  243. data/vendor/ruby-hmac/lib/hmac-md5.rb +0 -11
  244. data/vendor/ruby-hmac/lib/hmac-rmd160.rb +0 -11
  245. data/vendor/ruby-hmac/lib/hmac-sha1.rb +0 -11
  246. data/vendor/ruby-hmac/lib/hmac-sha2.rb +0 -25
  247. data/vendor/ruby-hmac/lib/hmac.rb +0 -118
  248. data/vendor/ruby-hmac/lib/ruby_hmac.rb +0 -2
  249. data/vendor/ruby-hmac/ruby-hmac.gemspec +0 -33
  250. data/vendor/ruby-hmac/test/test_hmac.rb +0 -89
  251. data/vendor/signature/VERSION +0 -1
@@ -0,0 +1,19 @@
1
+ require 'jrjackson' unless defined?(::JrJackson)
2
+ require 'multi_json/adapter'
3
+
4
+ module MultiJson
5
+ module Adapters
6
+ # Use the jrjackson.rb library to dump/load.
7
+ class JrJackson < Adapter
8
+ ParseError = ::JrJackson::ParseError
9
+
10
+ def load(string, options={}) #:nodoc:
11
+ ::JrJackson::Json.load(string, options)
12
+ end
13
+
14
+ def dump(object, options={}) #:nodoc:
15
+ ::JrJackson::Json.dump(object)
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,25 @@
1
+ require 'multi_json/adapter'
2
+
3
+ module MultiJson
4
+ module Adapters
5
+ class JsonCommon < Adapter
6
+ defaults :load, :create_additions => false, :quirks_mode => true
7
+
8
+ def load(string, options={})
9
+ string = string.read if string.respond_to?(:read)
10
+
11
+ if string.respond_to?(:force_encoding)
12
+ string = string.dup.force_encoding(::Encoding::ASCII_8BIT)
13
+ end
14
+
15
+ options[:symbolize_names] = true if options.delete(:symbolize_keys)
16
+ ::JSON.parse(string, options)
17
+ end
18
+
19
+ def dump(object, options={})
20
+ options.merge!(::JSON::PRETTY_STATE_PROTOTYPE.to_h) if options.delete(:pretty)
21
+ object.to_json(options)
22
+ end
23
+ end
24
+ end
25
+ end
@@ -0,0 +1,11 @@
1
+ require 'json/ext'
2
+ require 'multi_json/adapters/json_common'
3
+
4
+ module MultiJson
5
+ module Adapters
6
+ # Use the JSON gem to dump/load.
7
+ class JsonGem < JsonCommon
8
+ ParseError = ::JSON::ParserError
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,11 @@
1
+ require 'json/pure'
2
+ require 'multi_json/adapters/json_common'
3
+
4
+ module MultiJson
5
+ module Adapters
6
+ # Use JSON pure to dump/load.
7
+ class JsonPure < JsonCommon
8
+ ParseError = ::JSON::ParserError
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,34 @@
1
+ framework 'Foundation'
2
+ require 'multi_json/adapters/ok_json'
3
+
4
+ module MultiJson
5
+ module Adapters
6
+ class Nsjsonserialization < MultiJson::Adapters::OkJson
7
+ ParseError = ::MultiJson::OkJson::Error
8
+
9
+ def load(string, options={})
10
+ string = string.read if string.respond_to?(:read)
11
+ data = string.dataUsingEncoding(NSUTF8StringEncoding)
12
+ object = NSJSONSerialization.JSONObjectWithData(data, options: NSJSONReadingMutableContainers | NSJSONReadingMutableLeaves, error: nil)
13
+ if object
14
+ object = symbolize_keys(object) if options[:symbolize_keys]
15
+ object
16
+ else
17
+ super(string, options={})
18
+ end
19
+ end
20
+
21
+ def dump(object, options={})
22
+ pretty = options[:pretty] ? NSJSONWritingPrettyPrinted : 0
23
+ object = object.as_json if object.respond_to?(:as_json)
24
+ if NSJSONSerialization.isValidJSONObject(object)
25
+ data = NSJSONSerialization.dataWithJSONObject(object, options: pretty, error: nil)
26
+ NSMutableString.alloc.initWithData(data, encoding: NSUTF8StringEncoding)
27
+ else
28
+ super(object, options)
29
+ end
30
+ end
31
+
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,24 @@
1
+ require 'oj' unless defined?(::Oj)
2
+ require 'multi_json/adapter'
3
+
4
+ module MultiJson
5
+ module Adapters
6
+ # Use the Oj library to dump/load.
7
+ class Oj < Adapter
8
+ defaults :load, :mode => :strict, :symbolize_keys => false
9
+ defaults :dump, :mode => :compat, :time_format => :ruby
10
+
11
+ ParseError = defined?(::Oj::ParseError) ? ::Oj::ParseError : SyntaxError
12
+
13
+ def load(string, options={})
14
+ options[:symbol_keys] = options.delete(:symbolize_keys)
15
+ ::Oj.load(string, options)
16
+ end
17
+
18
+ def dump(object, options={})
19
+ options.merge!(:indent => 2) if options[:pretty]
20
+ ::Oj.dump(object, options)
21
+ end
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,22 @@
1
+ require 'multi_json/adapter'
2
+ require 'multi_json/convertible_hash_keys'
3
+ require 'multi_json/vendor/okjson'
4
+
5
+ module MultiJson
6
+ module Adapters
7
+ class OkJson < Adapter
8
+ include ConvertibleHashKeys
9
+ ParseError = ::MultiJson::OkJson::Error
10
+
11
+ def load(string, options={})
12
+ string = string.read if string.respond_to?(:read)
13
+ result = ::MultiJson::OkJson.decode("[#{string}]").first
14
+ options[:symbolize_keys] ? symbolize_keys(result) : result
15
+ end
16
+
17
+ def dump(object, options={})
18
+ ::MultiJson::OkJson.valenc(stringify_keys(object))
19
+ end
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,19 @@
1
+ require 'yajl' unless defined?(::Yajl)
2
+ require 'multi_json/adapter'
3
+
4
+ module MultiJson
5
+ module Adapters
6
+ # Use the Yajl-Ruby library to dump/load.
7
+ class Yajl < Adapter
8
+ ParseError = ::Yajl::ParseError
9
+
10
+ def load(string, options={})
11
+ ::Yajl::Parser.new(:symbolize_keys => options[:symbolize_keys]).parse(string)
12
+ end
13
+
14
+ def dump(object, options={})
15
+ ::Yajl::Encoder.encode(object, options)
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,43 @@
1
+ module MultiJson
2
+ module ConvertibleHashKeys
3
+ private
4
+
5
+ def symbolize_keys(object)
6
+ prepare_object(object) do |key|
7
+ key.respond_to?(:to_sym) ? key.to_sym : key
8
+ end
9
+ end
10
+
11
+ def stringify_keys(object)
12
+ prepare_object(object) do |key|
13
+ key.respond_to?(:to_s) ? key.to_s : key
14
+ end
15
+ end
16
+
17
+ def prepare_object(object, &key_modifier)
18
+ return object unless block_given?
19
+ case object
20
+ when Array
21
+ object.map do |value|
22
+ prepare_object(value, &key_modifier)
23
+ end
24
+ when Hash
25
+ object.inject({}) do |result, (key, value)|
26
+ new_key = key_modifier.call(key)
27
+ new_value = prepare_object(value, &key_modifier)
28
+ result.merge! new_key => new_value
29
+ end
30
+ when String, Numeric, true, false, nil
31
+ object
32
+ else
33
+ if object.respond_to?(:to_json)
34
+ object
35
+ elsif object.respond_to?(:to_s)
36
+ object.to_s
37
+ else
38
+ object
39
+ end
40
+ end
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,11 @@
1
+ module MultiJson
2
+ class LoadError < StandardError
3
+ attr_reader :data
4
+ def initialize(message='', backtrace=[], data='')
5
+ super(message)
6
+ self.set_backtrace(backtrace)
7
+ @data = data
8
+ end
9
+ end
10
+ DecodeError = LoadError # Legacy support
11
+ end
@@ -0,0 +1,48 @@
1
+ module MultiJson
2
+ module Options
3
+
4
+ def load_options=(options)
5
+ MultiJson.reset_cached_options!
6
+ @load_options = options
7
+ end
8
+
9
+ def dump_options=(options)
10
+ MultiJson.reset_cached_options!
11
+ @dump_options = options
12
+ end
13
+
14
+ def load_options(*args)
15
+ get_options :load_options, *args
16
+ end
17
+
18
+ def dump_options(*args)
19
+ get_options :dump_options, *args
20
+ end
21
+
22
+ def default_load_options
23
+ @default_load_options ||= {}
24
+ end
25
+
26
+ def default_dump_options
27
+ @default_dump_options ||= {}
28
+ end
29
+
30
+ private
31
+
32
+ def get_options(ivar, *args)
33
+ defaults = send("default_#{ivar}")
34
+
35
+ return defaults unless instance_variable_defined?("@#{ivar}")
36
+
37
+ value = instance_variable_get("@#{ivar}")
38
+
39
+ if value.respond_to?(:call) and value.arity
40
+ value.arity == 0 ? value[] : value[*args]
41
+ elsif Hash === value or value.respond_to?(:to_hash)
42
+ value.to_hash
43
+ else
44
+ defaults
45
+ end
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,606 @@
1
+ # encoding: UTF-8
2
+ #
3
+ # Copyright 2011, 2012 Keith Rarick
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in
13
+ # all copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ # THE SOFTWARE.
22
+
23
+ # See https://github.com/kr/okjson for updates.
24
+
25
+ require 'stringio'
26
+
27
+ module MultiJson
28
+ # Some parts adapted from
29
+ # http://golang.org/src/pkg/json/decode.go and
30
+ # http://golang.org/src/pkg/utf8/utf8.go
31
+ module OkJson
32
+ Upstream = '43'
33
+ extend self
34
+
35
+
36
+ # Decodes a json document in string s and
37
+ # returns the corresponding ruby value.
38
+ # String s must be valid UTF-8. If you have
39
+ # a string in some other encoding, convert
40
+ # it first.
41
+ #
42
+ # String values in the resulting structure
43
+ # will be UTF-8.
44
+ def decode(s)
45
+ ts = lex(s)
46
+ v, ts = textparse(ts)
47
+ if ts.length > 0
48
+ raise Error, 'trailing garbage'
49
+ end
50
+ v
51
+ end
52
+
53
+
54
+ # Encodes x into a json text. It may contain only
55
+ # Array, Hash, String, Numeric, true, false, nil.
56
+ # (Note, this list excludes Symbol.)
57
+ # X itself must be an Array or a Hash.
58
+ # No other value can be encoded, and an error will
59
+ # be raised if x contains any other value, such as
60
+ # Nan, Infinity, Symbol, and Proc, or if a Hash key
61
+ # is not a String.
62
+ # Strings contained in x must be valid UTF-8.
63
+ def encode(x)
64
+ case x
65
+ when Hash then objenc(x)
66
+ when Array then arrenc(x)
67
+ else
68
+ raise Error, 'root value must be an Array or a Hash'
69
+ end
70
+ end
71
+
72
+
73
+ def valenc(x)
74
+ case x
75
+ when Hash then objenc(x)
76
+ when Array then arrenc(x)
77
+ when String then strenc(x)
78
+ when Numeric then numenc(x)
79
+ when true then "true"
80
+ when false then "false"
81
+ when nil then "null"
82
+ else
83
+ if x.respond_to?(:to_json)
84
+ x.to_json
85
+ else
86
+ raise Error, "cannot encode #{x.class}: #{x.inspect}"
87
+ end
88
+ end
89
+ end
90
+
91
+
92
+ private
93
+
94
+
95
+ # Parses a "json text" in the sense of RFC 4627.
96
+ # Returns the parsed value and any trailing tokens.
97
+ # Note: this is almost the same as valparse,
98
+ # except that it does not accept atomic values.
99
+ def textparse(ts)
100
+ if ts.length <= 0
101
+ raise Error, 'empty'
102
+ end
103
+
104
+ typ, _, val = ts[0]
105
+ case typ
106
+ when '{' then objparse(ts)
107
+ when '[' then arrparse(ts)
108
+ else
109
+ raise Error, "unexpected #{val.inspect}"
110
+ end
111
+ end
112
+
113
+
114
+ # Parses a "value" in the sense of RFC 4627.
115
+ # Returns the parsed value and any trailing tokens.
116
+ def valparse(ts)
117
+ if ts.length <= 0
118
+ raise Error, 'empty'
119
+ end
120
+
121
+ typ, _, val = ts[0]
122
+ case typ
123
+ when '{' then objparse(ts)
124
+ when '[' then arrparse(ts)
125
+ when :val,:str then [val, ts[1..-1]]
126
+ else
127
+ raise Error, "unexpected #{val.inspect}"
128
+ end
129
+ end
130
+
131
+
132
+ # Parses an "object" in the sense of RFC 4627.
133
+ # Returns the parsed value and any trailing tokens.
134
+ def objparse(ts)
135
+ ts = eat('{', ts)
136
+ obj = {}
137
+
138
+ if ts[0][0] == '}'
139
+ return obj, ts[1..-1]
140
+ end
141
+
142
+ k, v, ts = pairparse(ts)
143
+ obj[k] = v
144
+
145
+ if ts[0][0] == '}'
146
+ return obj, ts[1..-1]
147
+ end
148
+
149
+ loop do
150
+ ts = eat(',', ts)
151
+
152
+ k, v, ts = pairparse(ts)
153
+ obj[k] = v
154
+
155
+ if ts[0][0] == '}'
156
+ return obj, ts[1..-1]
157
+ end
158
+ end
159
+ end
160
+
161
+
162
+ # Parses a "member" in the sense of RFC 4627.
163
+ # Returns the parsed values and any trailing tokens.
164
+ def pairparse(ts)
165
+ (typ, _, k), ts = ts[0], ts[1..-1]
166
+ if typ != :str
167
+ raise Error, "unexpected #{k.inspect}"
168
+ end
169
+ ts = eat(':', ts)
170
+ v, ts = valparse(ts)
171
+ [k, v, ts]
172
+ end
173
+
174
+
175
+ # Parses an "array" in the sense of RFC 4627.
176
+ # Returns the parsed value and any trailing tokens.
177
+ def arrparse(ts)
178
+ ts = eat('[', ts)
179
+ arr = []
180
+
181
+ if ts[0][0] == ']'
182
+ return arr, ts[1..-1]
183
+ end
184
+
185
+ v, ts = valparse(ts)
186
+ arr << v
187
+
188
+ if ts[0][0] == ']'
189
+ return arr, ts[1..-1]
190
+ end
191
+
192
+ loop do
193
+ ts = eat(',', ts)
194
+
195
+ v, ts = valparse(ts)
196
+ arr << v
197
+
198
+ if ts[0][0] == ']'
199
+ return arr, ts[1..-1]
200
+ end
201
+ end
202
+ end
203
+
204
+
205
+ def eat(typ, ts)
206
+ if ts[0][0] != typ
207
+ raise Error, "expected #{typ} (got #{ts[0].inspect})"
208
+ end
209
+ ts[1..-1]
210
+ end
211
+
212
+
213
+ # Scans s and returns a list of json tokens,
214
+ # excluding white space (as defined in RFC 4627).
215
+ def lex(s)
216
+ ts = []
217
+ while s.length > 0
218
+ typ, lexeme, val = tok(s)
219
+ if typ == nil
220
+ raise Error, "invalid character at #{s[0,10].inspect}"
221
+ end
222
+ if typ != :space
223
+ ts << [typ, lexeme, val]
224
+ end
225
+ s = s[lexeme.length..-1]
226
+ end
227
+ ts
228
+ end
229
+
230
+
231
+ # Scans the first token in s and
232
+ # returns a 3-element list, or nil
233
+ # if s does not begin with a valid token.
234
+ #
235
+ # The first list element is one of
236
+ # '{', '}', ':', ',', '[', ']',
237
+ # :val, :str, and :space.
238
+ #
239
+ # The second element is the lexeme.
240
+ #
241
+ # The third element is the value of the
242
+ # token for :val and :str, otherwise
243
+ # it is the lexeme.
244
+ def tok(s)
245
+ case s[0]
246
+ when ?{ then ['{', s[0,1], s[0,1]]
247
+ when ?} then ['}', s[0,1], s[0,1]]
248
+ when ?: then [':', s[0,1], s[0,1]]
249
+ when ?, then [',', s[0,1], s[0,1]]
250
+ when ?[ then ['[', s[0,1], s[0,1]]
251
+ when ?] then [']', s[0,1], s[0,1]]
252
+ when ?n then nulltok(s)
253
+ when ?t then truetok(s)
254
+ when ?f then falsetok(s)
255
+ when ?" then strtok(s)
256
+ when Spc, ?\t, ?\n, ?\r then [:space, s[0,1], s[0,1]]
257
+ else
258
+ numtok(s)
259
+ end
260
+ end
261
+
262
+
263
+ def nulltok(s); s[0,4] == 'null' ? [:val, 'null', nil] : [] end
264
+ def truetok(s); s[0,4] == 'true' ? [:val, 'true', true] : [] end
265
+ def falsetok(s); s[0,5] == 'false' ? [:val, 'false', false] : [] end
266
+
267
+
268
+ def numtok(s)
269
+ m = /-?([1-9][0-9]+|[0-9])([.][0-9]+)?([eE][+-]?[0-9]+)?/.match(s)
270
+ if m && m.begin(0) == 0
271
+ if !m[2] && !m[3]
272
+ [:val, m[0], Integer(m[0])]
273
+ elsif m[2]
274
+ [:val, m[0], Float(m[0])]
275
+ else
276
+ [:val, m[0], Integer(m[1])*(10**Integer(m[3][1..-1]))]
277
+ end
278
+ else
279
+ []
280
+ end
281
+ end
282
+
283
+
284
+ def strtok(s)
285
+ m = /"([^"\\]|\\["\/\\bfnrt]|\\u[0-9a-fA-F]{4})*"/.match(s)
286
+ if ! m
287
+ raise Error, "invalid string literal at #{abbrev(s)}"
288
+ end
289
+ [:str, m[0], unquote(m[0])]
290
+ end
291
+
292
+
293
+ def abbrev(s)
294
+ t = s[0,10]
295
+ p = t['`']
296
+ t = t[0,p] if p
297
+ t = t + '...' if t.length < s.length
298
+ '`' + t + '`'
299
+ end
300
+
301
+
302
+ # Converts a quoted json string literal q into a UTF-8-encoded string.
303
+ # The rules are different than for Ruby, so we cannot use eval.
304
+ # Unquote will raise an error if q contains control characters.
305
+ def unquote(q)
306
+ q = q[1...-1]
307
+ a = q.dup # allocate a big enough string
308
+ # In ruby >= 1.9, a[w] is a codepoint, not a byte.
309
+ if rubydoesenc?
310
+ a.force_encoding('UTF-8')
311
+ end
312
+ r, w = 0, 0
313
+ while r < q.length
314
+ c = q[r]
315
+ if c == ?\\
316
+ r += 1
317
+ if r >= q.length
318
+ raise Error, "string literal ends with a \"\\\": \"#{q}\""
319
+ end
320
+
321
+ case q[r]
322
+ when ?",?\\,?/,?'
323
+ a[w] = q[r]
324
+ r += 1
325
+ w += 1
326
+ when ?b,?f,?n,?r,?t
327
+ a[w] = Unesc[q[r]]
328
+ r += 1
329
+ w += 1
330
+ when ?u
331
+ r += 1
332
+ uchar = begin
333
+ hexdec4(q[r,4])
334
+ rescue RuntimeError => e
335
+ raise Error, "invalid escape sequence \\u#{q[r,4]}: #{e}"
336
+ end
337
+ r += 4
338
+ if surrogate? uchar
339
+ if q.length >= r+6
340
+ uchar1 = hexdec4(q[r+2,4])
341
+ uchar = subst(uchar, uchar1)
342
+ if uchar != Ucharerr
343
+ # A valid pair; consume.
344
+ r += 6
345
+ end
346
+ end
347
+ end
348
+ if rubydoesenc?
349
+ a[w] = '' << uchar
350
+ w += 1
351
+ else
352
+ w += ucharenc(a, w, uchar)
353
+ end
354
+ else
355
+ raise Error, "invalid escape char #{q[r]} in \"#{q}\""
356
+ end
357
+ elsif c == ?" || c < Spc
358
+ raise Error, "invalid character in string literal \"#{q}\""
359
+ else
360
+ # Copy anything else byte-for-byte.
361
+ # Valid UTF-8 will remain valid UTF-8.
362
+ # Invalid UTF-8 will remain invalid UTF-8.
363
+ # In ruby >= 1.9, c is a codepoint, not a byte,
364
+ # in which case this is still what we want.
365
+ a[w] = c
366
+ r += 1
367
+ w += 1
368
+ end
369
+ end
370
+ a[0,w]
371
+ end
372
+
373
+
374
+ # Encodes unicode character u as UTF-8
375
+ # bytes in string a at position i.
376
+ # Returns the number of bytes written.
377
+ def ucharenc(a, i, u)
378
+ if u <= Uchar1max
379
+ a[i] = (u & 0xff).chr
380
+ 1
381
+ elsif u <= Uchar2max
382
+ a[i+0] = (Utag2 | ((u>>6)&0xff)).chr
383
+ a[i+1] = (Utagx | (u&Umaskx)).chr
384
+ 2
385
+ elsif u <= Uchar3max
386
+ a[i+0] = (Utag3 | ((u>>12)&0xff)).chr
387
+ a[i+1] = (Utagx | ((u>>6)&Umaskx)).chr
388
+ a[i+2] = (Utagx | (u&Umaskx)).chr
389
+ 3
390
+ else
391
+ a[i+0] = (Utag4 | ((u>>18)&0xff)).chr
392
+ a[i+1] = (Utagx | ((u>>12)&Umaskx)).chr
393
+ a[i+2] = (Utagx | ((u>>6)&Umaskx)).chr
394
+ a[i+3] = (Utagx | (u&Umaskx)).chr
395
+ 4
396
+ end
397
+ end
398
+
399
+
400
+ def hexdec4(s)
401
+ if s.length != 4
402
+ raise Error, 'short'
403
+ end
404
+ (nibble(s[0])<<12) | (nibble(s[1])<<8) | (nibble(s[2])<<4) | nibble(s[3])
405
+ end
406
+
407
+
408
+ def subst(u1, u2)
409
+ if Usurr1 <= u1 && u1 < Usurr2 && Usurr2 <= u2 && u2 < Usurr3
410
+ return ((u1-Usurr1)<<10) | (u2-Usurr2) + Usurrself
411
+ end
412
+ return Ucharerr
413
+ end
414
+
415
+
416
+ def surrogate?(u)
417
+ Usurr1 <= u && u < Usurr3
418
+ end
419
+
420
+
421
+ def nibble(c)
422
+ if ?0 <= c && c <= ?9 then c.ord - ?0.ord
423
+ elsif ?a <= c && c <= ?z then c.ord - ?a.ord + 10
424
+ elsif ?A <= c && c <= ?Z then c.ord - ?A.ord + 10
425
+ else
426
+ raise Error, "invalid hex code #{c}"
427
+ end
428
+ end
429
+
430
+
431
+ def objenc(x)
432
+ '{' + x.map{|k,v| keyenc(k) + ':' + valenc(v)}.join(',') + '}'
433
+ end
434
+
435
+
436
+ def arrenc(a)
437
+ '[' + a.map{|x| valenc(x)}.join(',') + ']'
438
+ end
439
+
440
+
441
+ def keyenc(k)
442
+ case k
443
+ when String then strenc(k)
444
+ else
445
+ raise Error, "Hash key is not a string: #{k.inspect}"
446
+ end
447
+ end
448
+
449
+
450
+ def strenc(s)
451
+ t = StringIO.new
452
+ t.putc(?")
453
+ r = 0
454
+
455
+ while r < s.length
456
+ case s[r]
457
+ when ?" then t.print('\\"')
458
+ when ?\\ then t.print('\\\\')
459
+ when ?\b then t.print('\\b')
460
+ when ?\f then t.print('\\f')
461
+ when ?\n then t.print('\\n')
462
+ when ?\r then t.print('\\r')
463
+ when ?\t then t.print('\\t')
464
+ else
465
+ c = s[r]
466
+ # In ruby >= 1.9, s[r] is a codepoint, not a byte.
467
+ if rubydoesenc?
468
+ begin
469
+ # c.ord will raise an error if c is invalid UTF-8
470
+ if c.ord < Spc.ord
471
+ c = "\\u%04x" % [c.ord]
472
+ end
473
+ t.write(c)
474
+ rescue
475
+ t.write(Ustrerr)
476
+ end
477
+ elsif c < Spc
478
+ t.write("\\u%04x" % c)
479
+ elsif Spc <= c && c <= ?~
480
+ t.putc(c)
481
+ else
482
+ n = ucharcopy(t, s, r) # ensure valid UTF-8 output
483
+ r += n - 1 # r is incremented below
484
+ end
485
+ end
486
+ r += 1
487
+ end
488
+ t.putc(?")
489
+ t.string
490
+ end
491
+
492
+
493
+ def numenc(x)
494
+ if ((x.nan? || x.infinite?) rescue false)
495
+ raise Error, "Numeric cannot be represented: #{x}"
496
+ end
497
+ "#{x}"
498
+ end
499
+
500
+
501
+ # Copies the valid UTF-8 bytes of a single character
502
+ # from string s at position i to I/O object t, and
503
+ # returns the number of bytes copied.
504
+ # If no valid UTF-8 char exists at position i,
505
+ # ucharcopy writes Ustrerr and returns 1.
506
+ def ucharcopy(t, s, i)
507
+ n = s.length - i
508
+ raise Utf8Error if n < 1
509
+
510
+ c0 = s[i].ord
511
+
512
+ # 1-byte, 7-bit sequence?
513
+ if c0 < Utagx
514
+ t.putc(c0)
515
+ return 1
516
+ end
517
+
518
+ raise Utf8Error if c0 < Utag2 # unexpected continuation byte?
519
+
520
+ raise Utf8Error if n < 2 # need continuation byte
521
+ c1 = s[i+1].ord
522
+ raise Utf8Error if c1 < Utagx || Utag2 <= c1
523
+
524
+ # 2-byte, 11-bit sequence?
525
+ if c0 < Utag3
526
+ raise Utf8Error if ((c0&Umask2)<<6 | (c1&Umaskx)) <= Uchar1max
527
+ t.putc(c0)
528
+ t.putc(c1)
529
+ return 2
530
+ end
531
+
532
+ # need second continuation byte
533
+ raise Utf8Error if n < 3
534
+
535
+ c2 = s[i+2].ord
536
+ raise Utf8Error if c2 < Utagx || Utag2 <= c2
537
+
538
+ # 3-byte, 16-bit sequence?
539
+ if c0 < Utag4
540
+ u = (c0&Umask3)<<12 | (c1&Umaskx)<<6 | (c2&Umaskx)
541
+ raise Utf8Error if u <= Uchar2max
542
+ t.putc(c0)
543
+ t.putc(c1)
544
+ t.putc(c2)
545
+ return 3
546
+ end
547
+
548
+ # need third continuation byte
549
+ raise Utf8Error if n < 4
550
+ c3 = s[i+3].ord
551
+ raise Utf8Error if c3 < Utagx || Utag2 <= c3
552
+
553
+ # 4-byte, 21-bit sequence?
554
+ if c0 < Utag5
555
+ u = (c0&Umask4)<<18 | (c1&Umaskx)<<12 | (c2&Umaskx)<<6 | (c3&Umaskx)
556
+ raise Utf8Error if u <= Uchar3max
557
+ t.putc(c0)
558
+ t.putc(c1)
559
+ t.putc(c2)
560
+ t.putc(c3)
561
+ return 4
562
+ end
563
+
564
+ raise Utf8Error
565
+ rescue Utf8Error
566
+ t.write(Ustrerr)
567
+ return 1
568
+ end
569
+
570
+
571
+ def rubydoesenc?
572
+ ::String.method_defined?(:force_encoding)
573
+ end
574
+
575
+
576
+ class Utf8Error < ::StandardError
577
+ end
578
+
579
+
580
+ class Error < ::StandardError
581
+ end
582
+
583
+
584
+ Utagx = 0b1000_0000
585
+ Utag2 = 0b1100_0000
586
+ Utag3 = 0b1110_0000
587
+ Utag4 = 0b1111_0000
588
+ Utag5 = 0b1111_1000
589
+ Umaskx = 0b0011_1111
590
+ Umask2 = 0b0001_1111
591
+ Umask3 = 0b0000_1111
592
+ Umask4 = 0b0000_0111
593
+ Uchar1max = (1<<7) - 1
594
+ Uchar2max = (1<<11) - 1
595
+ Uchar3max = (1<<16) - 1
596
+ Ucharerr = 0xFFFD # unicode "replacement char"
597
+ Ustrerr = "\xef\xbf\xbd" # unicode "replacement char"
598
+ Usurrself = 0x10000
599
+ Usurr1 = 0xd800
600
+ Usurr2 = 0xdc00
601
+ Usurr3 = 0xe000
602
+
603
+ Spc = ' '[0]
604
+ Unesc = {?b=>?\b, ?f=>?\f, ?n=>?\n, ?r=>?\r, ?t=>?\t}
605
+ end
606
+ end