opal 0.11.0.rc1 → 0.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.jshintrc +1 -1
- data/.travis.yml +14 -2
- data/CHANGELOG.md +30 -5
- data/HACKING.md +2 -2
- data/README.md +4 -5
- data/appveyor.yml +3 -4
- data/bin +1 -0
- data/docs/headless_chrome.md +105 -0
- data/docs/rspec.md +2 -19
- data/{bin → exe}/opal +0 -0
- data/{bin → exe}/opal-build +0 -0
- data/{bin → exe}/opal-mspec +0 -0
- data/{bin → exe}/opal-repl +0 -0
- data/lib/opal.rb +1 -0
- data/lib/opal/ast/builder.rb +0 -4
- data/lib/opal/builder.rb +69 -15
- data/lib/opal/builder_processors.rb +8 -7
- data/lib/opal/cli.rb +1 -1
- data/lib/opal/cli_options.rb +1 -1
- data/lib/opal/cli_runners.rb +1 -1
- data/lib/opal/cli_runners/applescript.rb +0 -1
- data/lib/opal/cli_runners/chrome.js +135 -0
- data/lib/opal/cli_runners/chrome.rb +100 -0
- data/lib/opal/cli_runners/nashorn.rb +0 -1
- data/lib/opal/cli_runners/node_modules/.bin/chrome-remote-interface +1 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/LICENSE +18 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/README.md +843 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/bin/client.js +326 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/chrome-remote-interface.js +11 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/index.js +39 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/api.js +84 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/chrome.js +289 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/defaults.js +4 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/devtools.js +245 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/external-request.js +23 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/protocol.json +13303 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/websocket-wrapper.js +32 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/package.json +128 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/webpack.config.js +55 -0
- data/lib/opal/cli_runners/node_modules/commander/Readme.md +195 -0
- data/lib/opal/cli_runners/node_modules/commander/index.js +851 -0
- data/lib/opal/cli_runners/node_modules/commander/package.json +92 -0
- data/lib/opal/cli_runners/node_modules/ultron/LICENSE +22 -0
- data/lib/opal/cli_runners/node_modules/ultron/index.js +138 -0
- data/lib/opal/cli_runners/node_modules/ultron/package.json +112 -0
- data/lib/opal/cli_runners/node_modules/ws/LICENSE +21 -0
- data/lib/opal/cli_runners/node_modules/ws/README.md +259 -0
- data/lib/opal/cli_runners/node_modules/ws/SECURITY.md +33 -0
- data/lib/opal/cli_runners/node_modules/ws/index.js +15 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/BufferUtil.fallback.js +56 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/BufferUtil.js +15 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/ErrorCodes.js +28 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/EventTarget.js +158 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/Extensions.js +69 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/PerMessageDeflate.js +339 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/Receiver.js +520 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/Sender.js +438 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/Validation.fallback.js +9 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/Validation.js +17 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/WebSocket.js +705 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/WebSocketServer.js +336 -0
- data/lib/opal/cli_runners/node_modules/ws/package.json +122 -0
- data/lib/opal/cli_runners/nodejs.rb +0 -1
- data/lib/opal/cli_runners/package.json +5 -0
- data/lib/opal/cli_runners/server.rb +0 -1
- data/lib/opal/compiler.rb +8 -18
- data/lib/opal/deprecations.rb +1 -1
- data/lib/opal/eof_content.rb +36 -0
- data/lib/opal/nodes.rb +0 -1
- data/lib/opal/nodes/args/kwarg.rb +8 -6
- data/lib/opal/nodes/args/kwoptarg.rb +12 -6
- data/lib/opal/nodes/call.rb +3 -2
- data/lib/opal/nodes/call_special.rb +10 -1
- data/lib/opal/nodes/definitions.rb +5 -3
- data/lib/opal/nodes/helpers.rb +4 -8
- data/lib/opal/nodes/literal.rb +13 -1
- data/lib/opal/nodes/logic.rb +19 -32
- data/lib/opal/nodes/node_with_args.rb +1 -1
- data/lib/opal/nodes/scope.rb +1 -0
- data/lib/opal/nodes/super.rb +0 -4
- data/lib/opal/nodes/variables.rb +11 -0
- data/lib/opal/parser.rb +24 -19
- data/lib/opal/path_reader.rb +17 -4
- data/lib/opal/rewriter.rb +5 -1
- data/lib/opal/rewriters/base.rb +37 -34
- data/lib/opal/rewriters/binary_operator_assignment.rb +0 -3
- data/lib/opal/rewriters/for_rewriter.rb +93 -0
- data/lib/opal/rewriters/hashes/key_duplicates_rewriter.rb +58 -0
- data/lib/opal/rewriters/js_reserved_words.rb +5 -8
- data/lib/opal/rewriters/logical_operator_assignment.rb +0 -1
- data/lib/opal/simple_server.rb +1 -0
- data/lib/opal/util.rb +1 -1
- data/lib/opal/version.rb +1 -1
- data/opal.gemspec +32 -30
- data/opal/corelib/array.rb +53 -30
- data/opal/corelib/boolean.rb +11 -3
- data/opal/corelib/comparable.rb +16 -0
- data/opal/corelib/constants.rb +3 -3
- data/opal/corelib/enumerable.rb +48 -1
- data/opal/corelib/file.rb +54 -11
- data/opal/corelib/hash.rb +98 -0
- data/opal/corelib/io.rb +2 -2
- data/opal/corelib/kernel.rb +28 -11
- data/opal/corelib/marshal/read_buffer.rb +288 -150
- data/opal/corelib/marshal/write_buffer.rb +27 -2
- data/opal/corelib/nil.rb +11 -3
- data/opal/corelib/number.rb +90 -20
- data/opal/corelib/numeric.rb +3 -3
- data/opal/corelib/random.rb +1 -1
- data/opal/corelib/range.rb +22 -22
- data/opal/corelib/regexp.rb +45 -4
- data/opal/corelib/runtime.js +25 -9
- data/opal/corelib/string.rb +1 -1
- data/opal/corelib/string/encoding.rb +21 -29
- data/opal/corelib/string/inheritance.rb +1 -1
- data/opal/corelib/struct.rb +0 -5
- data/opal/corelib/time.rb +1 -1
- data/stdlib/buffer/array.rb +4 -2
- data/stdlib/date.rb +46 -12
- data/stdlib/headless_chrome.rb +11 -0
- data/stdlib/nodejs/file.rb +36 -11
- data/stdlib/nodejs/io.rb +8 -0
- data/stdlib/nodejs/stacktrace.rb +116 -100
- data/stdlib/opal-builder.rb +1 -0
- data/stdlib/opal-platform.rb +6 -6
- data/stdlib/opal/platform.rb +2 -2
- data/stdlib/rbconfig.rb +1 -1
- data/stdlib/securerandom.rb +1 -1
- data/tasks/testing.rake +58 -26
- data/tasks/testing/opal_rspec_smoketest.Gemfile +5 -12
- metadata +64 -733
- data/lib/opal/cli_runners/phantom.js +0 -69
- data/lib/opal/cli_runners/phantomjs.rb +0 -29
- data/lib/opal/hike_path_finder.rb +0 -19
- data/lib/opal/nodes/for.rb +0 -75
- data/spec/README.md +0 -10
- data/spec/filters/bugs/array.rb +0 -16
- data/spec/filters/bugs/basicobject.rb +0 -13
- data/spec/filters/bugs/bigdecimal.rb +0 -146
- data/spec/filters/bugs/class.rb +0 -11
- data/spec/filters/bugs/comparable.rb +0 -5
- data/spec/filters/bugs/complex.rb +0 -3
- data/spec/filters/bugs/date.rb +0 -94
- data/spec/filters/bugs/enumerable.rb +0 -43
- data/spec/filters/bugs/enumerator.rb +0 -40
- data/spec/filters/bugs/exception.rb +0 -72
- data/spec/filters/bugs/file.rb +0 -8
- data/spec/filters/bugs/float.rb +0 -39
- data/spec/filters/bugs/hash.rb +0 -15
- data/spec/filters/bugs/inheritance.rb +0 -5
- data/spec/filters/bugs/integer.rb +0 -30
- data/spec/filters/bugs/io.rb +0 -8
- data/spec/filters/bugs/kernel.rb +0 -168
- data/spec/filters/bugs/language.rb +0 -190
- data/spec/filters/bugs/marshal.rb +0 -41
- data/spec/filters/bugs/method.rb +0 -60
- data/spec/filters/bugs/module.rb +0 -158
- data/spec/filters/bugs/numeric.rb +0 -8
- data/spec/filters/bugs/pathname.rb +0 -7
- data/spec/filters/bugs/proc.rb +0 -37
- data/spec/filters/bugs/random.rb +0 -7
- data/spec/filters/bugs/range.rb +0 -36
- data/spec/filters/bugs/rational.rb +0 -4
- data/spec/filters/bugs/regexp.rb +0 -158
- data/spec/filters/bugs/set.rb +0 -41
- data/spec/filters/bugs/singleton.rb +0 -6
- data/spec/filters/bugs/string.rb +0 -98
- data/spec/filters/bugs/stringscanner.rb +0 -71
- data/spec/filters/bugs/struct.rb +0 -4
- data/spec/filters/bugs/time.rb +0 -35
- data/spec/filters/bugs/unboundmethod.rb +0 -17
- data/spec/filters/unsupported/array.rb +0 -167
- data/spec/filters/unsupported/basicobject.rb +0 -14
- data/spec/filters/unsupported/bignum.rb +0 -55
- data/spec/filters/unsupported/class.rb +0 -4
- data/spec/filters/unsupported/delegator.rb +0 -5
- data/spec/filters/unsupported/enumerable.rb +0 -11
- data/spec/filters/unsupported/enumerator.rb +0 -13
- data/spec/filters/unsupported/file.rb +0 -4
- data/spec/filters/unsupported/fixnum.rb +0 -14
- data/spec/filters/unsupported/float.rb +0 -46
- data/spec/filters/unsupported/freeze.rb +0 -75
- data/spec/filters/unsupported/hash.rb +0 -43
- data/spec/filters/unsupported/integer.rb +0 -3
- data/spec/filters/unsupported/kernel.rb +0 -32
- data/spec/filters/unsupported/language.rb +0 -22
- data/spec/filters/unsupported/marshal.rb +0 -46
- data/spec/filters/unsupported/matchdata.rb +0 -33
- data/spec/filters/unsupported/math.rb +0 -3
- data/spec/filters/unsupported/pathname.rb +0 -3
- data/spec/filters/unsupported/privacy.rb +0 -279
- data/spec/filters/unsupported/proc.rb +0 -3
- data/spec/filters/unsupported/random.rb +0 -4
- data/spec/filters/unsupported/range.rb +0 -7
- data/spec/filters/unsupported/regexp.rb +0 -69
- data/spec/filters/unsupported/set.rb +0 -4
- data/spec/filters/unsupported/singleton.rb +0 -6
- data/spec/filters/unsupported/string.rb +0 -546
- data/spec/filters/unsupported/struct.rb +0 -6
- data/spec/filters/unsupported/symbol.rb +0 -20
- data/spec/filters/unsupported/taint.rb +0 -30
- data/spec/filters/unsupported/thread.rb +0 -7
- data/spec/filters/unsupported/time.rb +0 -202
- data/spec/lib/builder_processors_spec.rb +0 -27
- data/spec/lib/builder_spec.rb +0 -89
- data/spec/lib/cli_runners/phantomjs_spec.rb +0 -39
- data/spec/lib/cli_spec.rb +0 -240
- data/spec/lib/compiler/call_spec.rb +0 -732
- data/spec/lib/compiler_spec.rb +0 -294
- data/spec/lib/config_spec.rb +0 -110
- data/spec/lib/dependency_resolver_spec.rb +0 -40
- data/spec/lib/deprecations_spec.rb +0 -16
- data/spec/lib/fixtures/complex_sprockets.js.rb.erb +0 -4
- data/spec/lib/fixtures/file_with_directives.js +0 -2
- data/spec/lib/fixtures/jst_file.js.jst +0 -1
- data/spec/lib/fixtures/no_requires.rb +0 -1
- data/spec/lib/fixtures/opal_file.rb +0 -2
- data/spec/lib/fixtures/require_tree_test.rb +0 -3
- data/spec/lib/fixtures/required_file.js +0 -1
- data/spec/lib/fixtures/required_tree_test/required_file1.rb +0 -1
- data/spec/lib/fixtures/required_tree_test/required_file2.rb +0 -1
- data/spec/lib/fixtures/requires.rb +0 -7
- data/spec/lib/fixtures/source_location_test.rb +0 -7
- data/spec/lib/fixtures/source_map.rb +0 -1
- data/spec/lib/fixtures/source_map/subfolder/other_file.rb +0 -1
- data/spec/lib/fixtures/sprockets_file.js.rb +0 -3
- data/spec/lib/fixtures/sprockets_require_tree_test.rb +0 -3
- data/spec/lib/hike_path_finder_spec.rb +0 -23
- data/spec/lib/path_reader_spec.rb +0 -36
- data/spec/lib/paths_spec.rb +0 -18
- data/spec/lib/rewriters/binary_operator_assignment_spec.rb +0 -151
- data/spec/lib/rewriters/block_to_iter_spec.rb +0 -28
- data/spec/lib/rewriters/dot_js_syntax_spec.rb +0 -108
- data/spec/lib/rewriters/explicit_writer_return_spec.rb +0 -186
- data/spec/lib/rewriters/js_reserved_words_spec.rb +0 -116
- data/spec/lib/rewriters/logical_operator_assignment_spec.rb +0 -202
- data/spec/lib/rewriters/opal_engine_check_spec.rb +0 -82
- data/spec/lib/rewriters/rubyspec/filters_rewriter_spec.rb +0 -53
- data/spec/lib/shared/path_finder_shared.rb +0 -19
- data/spec/lib/shared/path_reader_shared.rb +0 -31
- data/spec/lib/simple_server_spec.rb +0 -54
- data/spec/lib/spec_helper.rb +0 -100
- data/spec/mspec-opal/formatters.rb +0 -236
- data/spec/mspec-opal/runner.rb +0 -173
- data/spec/opal/compiler/irb_spec.rb +0 -44
- data/spec/opal/core/arity_spec.rb +0 -142
- data/spec/opal/core/array/intersection_spec.rb +0 -38
- data/spec/opal/core/array/minus_spec.rb +0 -38
- data/spec/opal/core/array/select_spec.rb +0 -14
- data/spec/opal/core/array/set_range_to_array_spec.rb +0 -7
- data/spec/opal/core/array/union_spec.rb +0 -38
- data/spec/opal/core/array/uniq_spec.rb +0 -49
- data/spec/opal/core/date_spec.rb +0 -191
- data/spec/opal/core/enumerable/all_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/any_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/collect_break_spec.rb +0 -13
- data/spec/opal/core/enumerable/count_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/detect_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/drop_while_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/each_slice_break.rb +0 -6
- data/spec/opal/core/enumerable/each_with_index_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/each_with_object_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/find_all_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/find_index_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/grep_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/max_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/max_by_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/min_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/min_by_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/none_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/one_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/reduce_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/take_while_break_spec.rb +0 -5
- data/spec/opal/core/enumerator/with_index_spec.rb +0 -6
- data/spec/opal/core/exception_spec.rb +0 -30
- data/spec/opal/core/fixtures/class.rb +0 -124
- data/spec/opal/core/fixtures/class_variables.rb +0 -0
- data/spec/opal/core/fixtures/constants.rb +0 -33
- data/spec/opal/core/fixtures/require_tree_files/file 1.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/file 2.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/file 3.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/file 4.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/file 5.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/nested/nested 1.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/nested/nested 2.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/other/other 1.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_with_dot/file 1.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_with_dot/file 2.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_with_dot/file 3.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_with_dot/index.rb +0 -3
- data/spec/opal/core/hash/has_value_spec.rb +0 -13
- data/spec/opal/core/hash/internals_spec.rb +0 -332
- data/spec/opal/core/helpers_spec.rb +0 -14
- data/spec/opal/core/kernel/Array_spec.rb +0 -10
- data/spec/opal/core/kernel/at_exit_spec.rb +0 -70
- data/spec/opal/core/kernel/block_given_spec.rb +0 -30
- data/spec/opal/core/kernel/class_spec.rb +0 -6
- data/spec/opal/core/kernel/define_singleton_method_spec.rb +0 -21
- data/spec/opal/core/kernel/equal_value_spec.rb +0 -12
- data/spec/opal/core/kernel/extend_spec.rb +0 -21
- data/spec/opal/core/kernel/format_spec.rb +0 -122
- data/spec/opal/core/kernel/freeze_spec.rb +0 -15
- data/spec/opal/core/kernel/instance_eval_spec.rb +0 -28
- data/spec/opal/core/kernel/instance_variable_defined_spec.rb +0 -15
- data/spec/opal/core/kernel/instance_variable_get_spec.rb +0 -14
- data/spec/opal/core/kernel/instance_variable_set_spec.rb +0 -10
- data/spec/opal/core/kernel/instance_variables_spec.rb +0 -110
- data/spec/opal/core/kernel/loop_spec.rb +0 -23
- data/spec/opal/core/kernel/match_spec.rb +0 -5
- data/spec/opal/core/kernel/method_spec.rb +0 -31
- data/spec/opal/core/kernel/methods_spec.rb +0 -25
- data/spec/opal/core/kernel/nil_spec.rb +0 -7
- data/spec/opal/core/kernel/p_spec.rb +0 -15
- data/spec/opal/core/kernel/printf_spec.rb +0 -11
- data/spec/opal/core/kernel/proc_spec.rb +0 -13
- data/spec/opal/core/kernel/raise_spec.rb +0 -13
- data/spec/opal/core/kernel/rand_spec.rb +0 -19
- data/spec/opal/core/kernel/require_tree_spec.rb +0 -18
- data/spec/opal/core/kernel/respond_to_spec.rb +0 -44
- data/spec/opal/core/kernel/send_spec.rb +0 -56
- data/spec/opal/core/kernel/sprintf_spec.rb +0 -5
- data/spec/opal/core/language/arguments/mlhs_arg_spec.rb +0 -19
- data/spec/opal/core/language/class_spec.rb +0 -55
- data/spec/opal/core/language/constant_lookup_spec.rb +0 -38
- data/spec/opal/core/language/equal_spec.rb +0 -8
- data/spec/opal/core/language/fixtures/array.rb +0 -11
- data/spec/opal/core/language/fixtures/block.rb +0 -57
- data/spec/opal/core/language/fixtures/break.rb +0 -240
- data/spec/opal/core/language/fixtures/ensure.rb +0 -72
- data/spec/opal/core/language/fixtures/literal_lambda.rb +0 -7
- data/spec/opal/core/language/fixtures/metaclass.rb +0 -33
- data/spec/opal/core/language/fixtures/module.rb +0 -24
- data/spec/opal/core/language/fixtures/next.rb +0 -128
- data/spec/opal/core/language/fixtures/return.rb +0 -118
- data/spec/opal/core/language/fixtures/send.rb +0 -111
- data/spec/opal/core/language/fixtures/send_1.9.rb +0 -22
- data/spec/opal/core/language/fixtures/super.rb +0 -308
- data/spec/opal/core/language/fixtures/variables.rb +0 -58
- data/spec/opal/core/language/fixtures/yield.rb +0 -28
- data/spec/opal/core/language/heredoc_spec.rb +0 -42
- data/spec/opal/core/language/keyword_arguments_spec.rb +0 -11
- data/spec/opal/core/language/predefined_spec.rb +0 -138
- data/spec/opal/core/language/regexp_spec.rb +0 -20
- data/spec/opal/core/language/rescue_spec.rb +0 -18
- data/spec/opal/core/language/safe_navigator_spec.rb +0 -7
- data/spec/opal/core/language/send_spec.rb +0 -222
- data/spec/opal/core/language/string_spec.rb +0 -44
- data/spec/opal/core/language/ternary_operator_spec.rb +0 -20
- data/spec/opal/core/language/versions/array_1.9.rb +0 -39
- data/spec/opal/core/language/versions/block_1.9.rb +0 -0
- data/spec/opal/core/language/versions/break_1.9.rb +0 -0
- data/spec/opal/core/language/versions/case_1.9.rb +0 -20
- data/spec/opal/core/language/versions/def_2_0_spec.rb +0 -58
- data/spec/opal/core/language/versions/hash_1_9_spec.rb +0 -23
- data/spec/opal/core/language/versions/literal_lambda_1.9.rb +0 -143
- data/spec/opal/core/language/versions/not_1.9.rb +0 -22
- data/spec/opal/core/language/versions/send_1.9.rb +0 -241
- data/spec/opal/core/language/versions/symbol_1.9.rb +0 -15
- data/spec/opal/core/language/versions/variables_1.9.rb +0 -8
- data/spec/opal/core/language_spec.rb +0 -77
- data/spec/opal/core/marshal/dump_spec.rb +0 -53
- data/spec/opal/core/marshal/load_spec.rb +0 -7
- data/spec/opal/core/method/to_proc_spec.rb +0 -28
- data/spec/opal/core/module/alias_method_spec.rb +0 -28
- data/spec/opal/core/module/ancestors_spec.rb +0 -11
- data/spec/opal/core/module/append_features_spec.rb +0 -14
- data/spec/opal/core/module/attr_accessor_spec.rb +0 -26
- data/spec/opal/core/module/const_defined_spec.rb +0 -84
- data/spec/opal/core/module/const_get_spec.rb +0 -85
- data/spec/opal/core/module/const_missing_spec.rb +0 -17
- data/spec/opal/core/module/const_set_spec.rb +0 -64
- data/spec/opal/core/module/constants_spec.rb +0 -49
- data/spec/opal/core/module/fixtures/classes.rb +0 -444
- data/spec/opal/core/module/method_defined_spec.rb +0 -48
- data/spec/opal/core/module/method_lookup_spec.rb +0 -13
- data/spec/opal/core/module/module_function_spec.rb +0 -25
- data/spec/opal/core/module/name_spec.rb +0 -41
- data/spec/opal/core/module/public_method_defined_spec.rb +0 -18
- data/spec/opal/core/module/remove_const_spec.rb +0 -22
- data/spec/opal/core/module/undef_method_spec.rb +0 -66
- data/spec/opal/core/numeric/bit_and_spec.rb +0 -7
- data/spec/opal/core/numeric/bit_or_spec.rb +0 -8
- data/spec/opal/core/numeric/bit_xor_spec.rb +0 -6
- data/spec/opal/core/numeric/ceil_spec.rb +0 -8
- data/spec/opal/core/numeric/chr_spec.rb +0 -8
- data/spec/opal/core/numeric/comparison_spec.rb +0 -24
- data/spec/opal/core/numeric/complement_spec.rb +0 -8
- data/spec/opal/core/numeric/divide_spec.rb +0 -10
- data/spec/opal/core/numeric/eql_spec.rb +0 -9
- data/spec/opal/core/numeric/exponent_spec.rb +0 -33
- data/spec/opal/core/numeric/floor_spec.rb +0 -8
- data/spec/opal/core/numeric/gt_spec.rb +0 -11
- data/spec/opal/core/numeric/gte_spec.rb +0 -12
- data/spec/opal/core/numeric/integer_spec.rb +0 -9
- data/spec/opal/core/numeric/left_shift_spec.rb +0 -21
- data/spec/opal/core/numeric/lt_spec.rb +0 -11
- data/spec/opal/core/numeric/lte_spec.rb +0 -12
- data/spec/opal/core/numeric/minus_spec.rb +0 -8
- data/spec/opal/core/numeric/modulo_spec.rb +0 -19
- data/spec/opal/core/numeric/multiply_spec.rb +0 -9
- data/spec/opal/core/numeric/next_spec.rb +0 -9
- data/spec/opal/core/numeric/ord_spec.rb +0 -9
- data/spec/opal/core/numeric/plus_spec.rb +0 -8
- data/spec/opal/core/numeric/pred_spec.rb +0 -7
- data/spec/opal/core/numeric/right_shift_spec.rb +0 -25
- data/spec/opal/core/numeric/step_spec.rb +0 -11
- data/spec/opal/core/numeric/succ_spec.rb +0 -9
- data/spec/opal/core/numeric/times_spec.rb +0 -36
- data/spec/opal/core/numeric/to_f_spec.rb +0 -7
- data/spec/opal/core/numeric/to_i_spec.rb +0 -7
- data/spec/opal/core/numeric/to_json_spec.rb +0 -8
- data/spec/opal/core/numeric/to_s_spec.rb +0 -26
- data/spec/opal/core/numeric/uminus_spec.rb +0 -9
- data/spec/opal/core/numeric/upto_spec.rb +0 -19
- data/spec/opal/core/numeric/zero_spec.rb +0 -7
- data/spec/opal/core/object_id_spec.rb +0 -56
- data/spec/opal/core/proc/call_spec.rb +0 -21
- data/spec/opal/core/proc/element_reference_spec.rb +0 -21
- data/spec/opal/core/proc/proc_tricks_spec.rb +0 -7
- data/spec/opal/core/runtime/begin_spec.rb +0 -39
- data/spec/opal/core/runtime/block_spec.rb +0 -23
- data/spec/opal/core/runtime/bridged_classes_spec.rb +0 -123
- data/spec/opal/core/runtime/constants_spec.rb +0 -13
- data/spec/opal/core/runtime/donate_spec.rb +0 -53
- data/spec/opal/core/runtime/eval_spec.rb +0 -5
- data/spec/opal/core/runtime/is_a_spec.rb +0 -36
- data/spec/opal/core/runtime/main_methods_spec.rb +0 -27
- data/spec/opal/core/runtime/method_missing_spec.rb +0 -68
- data/spec/opal/core/runtime/method_spec.rb +0 -31
- data/spec/opal/core/runtime/operator_call_spec.rb +0 -13
- data/spec/opal/core/runtime/paren_spec.rb +0 -14
- data/spec/opal/core/runtime/rescue_spec.rb +0 -106
- data/spec/opal/core/runtime/return_spec.rb +0 -38
- data/spec/opal/core/runtime/singleton_class_spec.rb +0 -13
- data/spec/opal/core/runtime/super_spec.rb +0 -223
- data/spec/opal/core/runtime/truthy_spec.rb +0 -63
- data/spec/opal/core/runtime/variables_spec.rb +0 -20
- data/spec/opal/core/runtime_spec.rb +0 -58
- data/spec/opal/core/source_map_spec.rb +0 -49
- data/spec/opal/core/string_spec.rb +0 -32
- data/spec/opal/core/time_spec.rb +0 -38
- data/spec/opal/javascript_api_spec.rb +0 -16
- data/spec/opal/stdlib/erb/erb_spec.rb +0 -30
- data/spec/opal/stdlib/erb/inline_block.opalerb +0 -3
- data/spec/opal/stdlib/erb/quoted.opalerb +0 -1
- data/spec/opal/stdlib/erb/simple.opalerb +0 -1
- data/spec/opal/stdlib/js_spec.rb +0 -66
- data/spec/opal/stdlib/json/ext_spec.rb +0 -48
- data/spec/opal/stdlib/json/parse_spec.rb +0 -37
- data/spec/opal/stdlib/native/alias_native_spec.rb +0 -27
- data/spec/opal/stdlib/native/array_spec.rb +0 -11
- data/spec/opal/stdlib/native/each_spec.rb +0 -13
- data/spec/opal/stdlib/native/element_reference_spec.rb +0 -16
- data/spec/opal/stdlib/native/exposure_spec.rb +0 -33
- data/spec/opal/stdlib/native/ext_spec.rb +0 -19
- data/spec/opal/stdlib/native/hash_spec.rb +0 -67
- data/spec/opal/stdlib/native/initialize_spec.rb +0 -17
- data/spec/opal/stdlib/native/method_missing_spec.rb +0 -51
- data/spec/opal/stdlib/native/native_alias_spec.rb +0 -19
- data/spec/opal/stdlib/native/native_class_spec.rb +0 -18
- data/spec/opal/stdlib/native/native_module_spec.rb +0 -13
- data/spec/opal/stdlib/native/native_reader_spec.rb +0 -22
- data/spec/opal/stdlib/native/native_writer_spec.rb +0 -30
- data/spec/opal/stdlib/native/new_spec.rb +0 -92
- data/spec/opal/stdlib/native/struct_spec.rb +0 -12
- data/spec/opal/stdlib/promise/always_spec.rb +0 -49
- data/spec/opal/stdlib/promise/error_spec.rb +0 -15
- data/spec/opal/stdlib/promise/rescue_spec.rb +0 -53
- data/spec/opal/stdlib/promise/then_spec.rb +0 -79
- data/spec/opal/stdlib/promise/trace_spec.rb +0 -51
- data/spec/opal/stdlib/promise/value_spec.rb +0 -15
- data/spec/opal/stdlib/promise/when_spec.rb +0 -34
- data/spec/opal/stdlib/source_map_spec.rb +0 -8
- data/spec/opal/stdlib/strscan/scan_spec.rb +0 -11
- data/spec/opal/stdlib/template/paths_spec.rb +0 -10
- data/spec/opal/stdlib/thread/mutex_spec.rb +0 -40
- data/spec/opal/stdlib/thread/thread_queue_spec.rb +0 -32
- data/spec/opal/stdlib/thread/thread_spec.rb +0 -60
- data/spec/ruby_specs +0 -122
- data/spec/spec_helper.rb +0 -27
- data/spec/support/match_helpers.rb +0 -57
- data/spec/support/mspec_rspec_adapter.rb +0 -33
- data/spec/support/rewriters_helper.rb +0 -24
- data/stdlib/phantomjs.rb +0 -17
- data/tasks/testing/sprockets-phantomjs.js +0 -54
- data/test/nodejs/fixtures/hello.rb +0 -1
- data/test/nodejs/test_dir.rb +0 -17
- data/test/nodejs/test_file.rb +0 -87
- data/test/nodejs/test_io.rb +0 -18
- data/test/nodejs/test_opal_builder.rb +0 -12
- data/test/opal/test_keyword.rb +0 -590
- data/test/opal/unsupported_and_bugs.rb +0 -39
@@ -0,0 +1,705 @@
|
|
1
|
+
/*!
|
2
|
+
* ws: a node.js websocket client
|
3
|
+
* Copyright(c) 2011 Einar Otto Stangvik <einaros@gmail.com>
|
4
|
+
* MIT Licensed
|
5
|
+
*/
|
6
|
+
|
7
|
+
'use strict';
|
8
|
+
|
9
|
+
const EventEmitter = require('events');
|
10
|
+
const crypto = require('crypto');
|
11
|
+
const Ultron = require('ultron');
|
12
|
+
const https = require('https');
|
13
|
+
const http = require('http');
|
14
|
+
const url = require('url');
|
15
|
+
|
16
|
+
const PerMessageDeflate = require('./PerMessageDeflate');
|
17
|
+
const EventTarget = require('./EventTarget');
|
18
|
+
const Extensions = require('./Extensions');
|
19
|
+
const Receiver = require('./Receiver');
|
20
|
+
const Sender = require('./Sender');
|
21
|
+
|
22
|
+
const GUID = '258EAFA5-E914-47DA-95CA-C5AB0DC85B11';
|
23
|
+
const closeTimeout = 30 * 1000; // Allow 30 seconds to terminate the connection cleanly.
|
24
|
+
const protocolVersion = 13;
|
25
|
+
const noop = () => {};
|
26
|
+
|
27
|
+
/**
|
28
|
+
* Class representing a WebSocket.
|
29
|
+
*
|
30
|
+
* @extends EventEmitter
|
31
|
+
*/
|
32
|
+
class WebSocket extends EventEmitter {
|
33
|
+
/**
|
34
|
+
* Create a new `WebSocket`.
|
35
|
+
*
|
36
|
+
* @param {String} address The URL to which to connect
|
37
|
+
* @param {(String|String[])} protocols The subprotocols
|
38
|
+
* @param {Object} options Connection options
|
39
|
+
*/
|
40
|
+
constructor (address, protocols, options) {
|
41
|
+
super();
|
42
|
+
|
43
|
+
if (typeof protocols === 'object' && !Array.isArray(protocols)) {
|
44
|
+
options = protocols;
|
45
|
+
protocols = null;
|
46
|
+
}
|
47
|
+
|
48
|
+
if (typeof protocols === 'string') protocols = [protocols];
|
49
|
+
if (!Array.isArray(protocols)) protocols = [];
|
50
|
+
|
51
|
+
this.readyState = WebSocket.CONNECTING;
|
52
|
+
this.bytesReceived = 0;
|
53
|
+
this.extensions = {};
|
54
|
+
this.protocol = '';
|
55
|
+
|
56
|
+
this._finalize = this.finalize.bind(this);
|
57
|
+
this._binaryType = 'nodebuffer';
|
58
|
+
this._finalizeCalled = false;
|
59
|
+
this._closeMessage = null;
|
60
|
+
this._closeTimer = null;
|
61
|
+
this._closeCode = null;
|
62
|
+
this._receiver = null;
|
63
|
+
this._sender = null;
|
64
|
+
this._socket = null;
|
65
|
+
this._ultron = null;
|
66
|
+
|
67
|
+
if (Array.isArray(address)) {
|
68
|
+
initAsServerClient.call(this, address[0], address[1], address[2], options);
|
69
|
+
} else {
|
70
|
+
initAsClient.call(this, address, protocols, options);
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
get CONNECTING () { return WebSocket.CONNECTING; }
|
75
|
+
get CLOSING () { return WebSocket.CLOSING; }
|
76
|
+
get CLOSED () { return WebSocket.CLOSED; }
|
77
|
+
get OPEN () { return WebSocket.OPEN; }
|
78
|
+
|
79
|
+
/**
|
80
|
+
* @type {Number}
|
81
|
+
*/
|
82
|
+
get bufferedAmount () {
|
83
|
+
var amount = 0;
|
84
|
+
|
85
|
+
if (this._socket) {
|
86
|
+
amount = this._socket.bufferSize + this._sender.bufferedBytes;
|
87
|
+
}
|
88
|
+
return amount;
|
89
|
+
}
|
90
|
+
|
91
|
+
/**
|
92
|
+
* This deviates from the WHATWG interface since ws doesn't support the required
|
93
|
+
* default "blob" type (instead we define a custom "nodebuffer" type).
|
94
|
+
*
|
95
|
+
* @type {String}
|
96
|
+
*/
|
97
|
+
get binaryType () {
|
98
|
+
return this._binaryType;
|
99
|
+
}
|
100
|
+
|
101
|
+
set binaryType (type) {
|
102
|
+
if (type === 'arraybuffer' || type === 'nodebuffer') {
|
103
|
+
this._binaryType = type;
|
104
|
+
} else {
|
105
|
+
throw new SyntaxError('unsupported binaryType: must be either "nodebuffer" or "arraybuffer"');
|
106
|
+
}
|
107
|
+
}
|
108
|
+
|
109
|
+
/**
|
110
|
+
* Set up the socket and the internal resources.
|
111
|
+
*
|
112
|
+
* @param {net.Socket} socket The network socket between the server and client
|
113
|
+
* @param {Buffer} head The first packet of the upgraded stream
|
114
|
+
* @private
|
115
|
+
*/
|
116
|
+
setSocket (socket, head) {
|
117
|
+
socket.setTimeout(0);
|
118
|
+
socket.setNoDelay();
|
119
|
+
|
120
|
+
this._receiver = new Receiver(this.extensions, this.maxPayload);
|
121
|
+
this._sender = new Sender(socket, this.extensions);
|
122
|
+
this._ultron = new Ultron(socket);
|
123
|
+
this._socket = socket;
|
124
|
+
|
125
|
+
// socket cleanup handlers
|
126
|
+
this._ultron.on('close', this._finalize);
|
127
|
+
this._ultron.on('error', this._finalize);
|
128
|
+
this._ultron.on('end', this._finalize);
|
129
|
+
|
130
|
+
// ensure that the head is added to the receiver
|
131
|
+
if (head && head.length > 0) {
|
132
|
+
socket.unshift(head);
|
133
|
+
head = null;
|
134
|
+
}
|
135
|
+
|
136
|
+
// subsequent packets are pushed to the receiver
|
137
|
+
this._ultron.on('data', (data) => {
|
138
|
+
this.bytesReceived += data.length;
|
139
|
+
this._receiver.add(data);
|
140
|
+
});
|
141
|
+
|
142
|
+
// receiver event handlers
|
143
|
+
this._receiver.onmessage = (data, flags) => this.emit('message', data, flags);
|
144
|
+
this._receiver.onping = (data, flags) => {
|
145
|
+
this.pong(data, !this._isServer, true);
|
146
|
+
this.emit('ping', data, flags);
|
147
|
+
};
|
148
|
+
this._receiver.onpong = (data, flags) => this.emit('pong', data, flags);
|
149
|
+
this._receiver.onclose = (code, reason) => {
|
150
|
+
this._closeMessage = reason;
|
151
|
+
this._closeCode = code;
|
152
|
+
this.close(code, reason);
|
153
|
+
};
|
154
|
+
this._receiver.onerror = (error, code) => {
|
155
|
+
// close the connection when the receiver reports a HyBi error code
|
156
|
+
this.close(code, '');
|
157
|
+
this.emit('error', error);
|
158
|
+
};
|
159
|
+
|
160
|
+
// sender event handlers
|
161
|
+
this._sender.onerror = (error) => {
|
162
|
+
this.close(1002, '');
|
163
|
+
this.emit('error', error);
|
164
|
+
};
|
165
|
+
|
166
|
+
this.readyState = WebSocket.OPEN;
|
167
|
+
this.emit('open');
|
168
|
+
}
|
169
|
+
|
170
|
+
/**
|
171
|
+
* Clean up and release internal resources.
|
172
|
+
*
|
173
|
+
* @param {(Boolean|Error)} Indicates whether or not an error occurred
|
174
|
+
* @private
|
175
|
+
*/
|
176
|
+
finalize (error) {
|
177
|
+
if (this._finalizeCalled) return;
|
178
|
+
|
179
|
+
this.readyState = WebSocket.CLOSING;
|
180
|
+
this._finalizeCalled = true;
|
181
|
+
|
182
|
+
clearTimeout(this._closeTimer);
|
183
|
+
this._closeTimer = null;
|
184
|
+
|
185
|
+
//
|
186
|
+
// If the connection was closed abnormally (with an error), or if the close
|
187
|
+
// control frame was malformed or not received then the close code must be
|
188
|
+
// 1006.
|
189
|
+
//
|
190
|
+
if (error) this._closeCode = 1006;
|
191
|
+
|
192
|
+
if (this._socket) {
|
193
|
+
this._ultron.destroy();
|
194
|
+
this._socket.on('error', function onerror () {
|
195
|
+
this.destroy();
|
196
|
+
});
|
197
|
+
|
198
|
+
if (!error) this._socket.end();
|
199
|
+
else this._socket.destroy();
|
200
|
+
|
201
|
+
this._socket = null;
|
202
|
+
this._ultron = null;
|
203
|
+
}
|
204
|
+
|
205
|
+
if (this._sender) {
|
206
|
+
this._sender = this._sender.onerror = null;
|
207
|
+
}
|
208
|
+
|
209
|
+
if (this._receiver) {
|
210
|
+
this._receiver.cleanup(() => this.emitClose());
|
211
|
+
this._receiver = null;
|
212
|
+
} else {
|
213
|
+
this.emitClose();
|
214
|
+
}
|
215
|
+
}
|
216
|
+
|
217
|
+
/**
|
218
|
+
* Emit the `close` event.
|
219
|
+
*
|
220
|
+
* @private
|
221
|
+
*/
|
222
|
+
emitClose () {
|
223
|
+
this.readyState = WebSocket.CLOSED;
|
224
|
+
this.emit('close', this._closeCode || 1006, this._closeMessage || '');
|
225
|
+
|
226
|
+
if (this.extensions[PerMessageDeflate.extensionName]) {
|
227
|
+
this.extensions[PerMessageDeflate.extensionName].cleanup();
|
228
|
+
}
|
229
|
+
|
230
|
+
this.extensions = null;
|
231
|
+
|
232
|
+
this.removeAllListeners();
|
233
|
+
this.on('error', noop); // Catch all errors after this.
|
234
|
+
}
|
235
|
+
|
236
|
+
/**
|
237
|
+
* Pause the socket stream.
|
238
|
+
*
|
239
|
+
* @public
|
240
|
+
*/
|
241
|
+
pause () {
|
242
|
+
if (this.readyState !== WebSocket.OPEN) throw new Error('not opened');
|
243
|
+
|
244
|
+
this._socket.pause();
|
245
|
+
}
|
246
|
+
|
247
|
+
/**
|
248
|
+
* Resume the socket stream
|
249
|
+
*
|
250
|
+
* @public
|
251
|
+
*/
|
252
|
+
resume () {
|
253
|
+
if (this.readyState !== WebSocket.OPEN) throw new Error('not opened');
|
254
|
+
|
255
|
+
this._socket.resume();
|
256
|
+
}
|
257
|
+
|
258
|
+
/**
|
259
|
+
* Start a closing handshake.
|
260
|
+
*
|
261
|
+
* @param {Number} code Status code explaining why the connection is closing
|
262
|
+
* @param {String} data A string explaining why the connection is closing
|
263
|
+
* @public
|
264
|
+
*/
|
265
|
+
close (code, data) {
|
266
|
+
if (this.readyState === WebSocket.CLOSED) return;
|
267
|
+
if (this.readyState === WebSocket.CONNECTING) {
|
268
|
+
if (this._req && !this._req.aborted) {
|
269
|
+
this._req.abort();
|
270
|
+
this.emit('error', new Error('closed before the connection is established'));
|
271
|
+
this.finalize(true);
|
272
|
+
}
|
273
|
+
return;
|
274
|
+
}
|
275
|
+
|
276
|
+
if (this.readyState === WebSocket.CLOSING) {
|
277
|
+
if (this._closeCode) this.terminate();
|
278
|
+
return;
|
279
|
+
}
|
280
|
+
|
281
|
+
this.readyState = WebSocket.CLOSING;
|
282
|
+
this._sender.close(code, data, !this._isServer, (err) => {
|
283
|
+
if (err) this.emit('error', err);
|
284
|
+
|
285
|
+
if (this._closeCode) {
|
286
|
+
this.terminate();
|
287
|
+
} else {
|
288
|
+
//
|
289
|
+
// Ensure that the connection is cleaned up even when the closing
|
290
|
+
// handshake fails.
|
291
|
+
//
|
292
|
+
clearTimeout(this._closeTimer);
|
293
|
+
this._closeTimer = setTimeout(this._finalize, closeTimeout, true);
|
294
|
+
}
|
295
|
+
});
|
296
|
+
}
|
297
|
+
|
298
|
+
/**
|
299
|
+
* Send a ping message.
|
300
|
+
*
|
301
|
+
* @param {*} data The message to send
|
302
|
+
* @param {Boolean} mask Indicates whether or not to mask `data`
|
303
|
+
* @param {Boolean} failSilently Indicates whether or not to throw if `readyState` isn't `OPEN`
|
304
|
+
* @public
|
305
|
+
*/
|
306
|
+
ping (data, mask, failSilently) {
|
307
|
+
if (this.readyState !== WebSocket.OPEN) {
|
308
|
+
if (failSilently) return;
|
309
|
+
throw new Error('not opened');
|
310
|
+
}
|
311
|
+
|
312
|
+
if (typeof data === 'number') data = data.toString();
|
313
|
+
if (mask === undefined) mask = !this._isServer;
|
314
|
+
this._sender.ping(data, mask);
|
315
|
+
}
|
316
|
+
|
317
|
+
/**
|
318
|
+
* Send a pong message.
|
319
|
+
*
|
320
|
+
* @param {*} data The message to send
|
321
|
+
* @param {Boolean} mask Indicates whether or not to mask `data`
|
322
|
+
* @param {Boolean} failSilently Indicates whether or not to throw if `readyState` isn't `OPEN`
|
323
|
+
* @public
|
324
|
+
*/
|
325
|
+
pong (data, mask, failSilently) {
|
326
|
+
if (this.readyState !== WebSocket.OPEN) {
|
327
|
+
if (failSilently) return;
|
328
|
+
throw new Error('not opened');
|
329
|
+
}
|
330
|
+
|
331
|
+
if (typeof data === 'number') data = data.toString();
|
332
|
+
if (mask === undefined) mask = !this._isServer;
|
333
|
+
this._sender.pong(data, mask);
|
334
|
+
}
|
335
|
+
|
336
|
+
/**
|
337
|
+
* Send a data message.
|
338
|
+
*
|
339
|
+
* @param {*} data The message to send
|
340
|
+
* @param {Object} options Options object
|
341
|
+
* @param {Boolean} options.compress Specifies whether or not to compress `data`
|
342
|
+
* @param {Boolean} options.binary Specifies whether `data` is binary or text
|
343
|
+
* @param {Boolean} options.fin Specifies whether the fragment is the last one
|
344
|
+
* @param {Boolean} options.mask Specifies whether or not to mask `data`
|
345
|
+
* @param {Function} cb Callback which is executed when data is written out
|
346
|
+
* @public
|
347
|
+
*/
|
348
|
+
send (data, options, cb) {
|
349
|
+
if (typeof options === 'function') {
|
350
|
+
cb = options;
|
351
|
+
options = {};
|
352
|
+
}
|
353
|
+
|
354
|
+
if (this.readyState !== WebSocket.OPEN) {
|
355
|
+
if (cb) cb(new Error('not opened'));
|
356
|
+
else throw new Error('not opened');
|
357
|
+
return;
|
358
|
+
}
|
359
|
+
|
360
|
+
if (typeof data === 'number') data = data.toString();
|
361
|
+
else if (!data) data = '';
|
362
|
+
|
363
|
+
const opts = Object.assign({
|
364
|
+
fin: true,
|
365
|
+
binary: typeof data !== 'string',
|
366
|
+
mask: !this._isServer,
|
367
|
+
compress: true
|
368
|
+
}, options);
|
369
|
+
|
370
|
+
if (!this.extensions[PerMessageDeflate.extensionName]) {
|
371
|
+
opts.compress = false;
|
372
|
+
}
|
373
|
+
|
374
|
+
this._sender.send(data, opts, cb);
|
375
|
+
}
|
376
|
+
|
377
|
+
/**
|
378
|
+
* Half-close the socket sending a FIN packet.
|
379
|
+
*
|
380
|
+
* @public
|
381
|
+
*/
|
382
|
+
terminate () {
|
383
|
+
if (this.readyState === WebSocket.CLOSED) return;
|
384
|
+
if (this.readyState === WebSocket.CONNECTING) {
|
385
|
+
if (this._req && !this._req.aborted) {
|
386
|
+
this._req.abort();
|
387
|
+
this.emit('error', new Error('closed before the connection is established'));
|
388
|
+
this.finalize(true);
|
389
|
+
}
|
390
|
+
return;
|
391
|
+
}
|
392
|
+
|
393
|
+
if (this._socket) {
|
394
|
+
this.readyState = WebSocket.CLOSING;
|
395
|
+
this._socket.end();
|
396
|
+
|
397
|
+
//
|
398
|
+
// Add a timeout to ensure that the connection is completely cleaned up
|
399
|
+
// within 30 seconds, even if the other peer does not send a FIN packet.
|
400
|
+
//
|
401
|
+
clearTimeout(this._closeTimer);
|
402
|
+
this._closeTimer = setTimeout(this._finalize, closeTimeout, true);
|
403
|
+
}
|
404
|
+
}
|
405
|
+
}
|
406
|
+
|
407
|
+
WebSocket.CONNECTING = 0;
|
408
|
+
WebSocket.OPEN = 1;
|
409
|
+
WebSocket.CLOSING = 2;
|
410
|
+
WebSocket.CLOSED = 3;
|
411
|
+
|
412
|
+
//
|
413
|
+
// Add the `onopen`, `onerror`, `onclose`, and `onmessage` attributes.
|
414
|
+
// See https://html.spec.whatwg.org/multipage/comms.html#the-websocket-interface
|
415
|
+
//
|
416
|
+
['open', 'error', 'close', 'message'].forEach((method) => {
|
417
|
+
Object.defineProperty(WebSocket.prototype, `on${method}`, {
|
418
|
+
/**
|
419
|
+
* Return the listener of the event.
|
420
|
+
*
|
421
|
+
* @return {(Function|undefined)} The event listener or `undefined`
|
422
|
+
* @public
|
423
|
+
*/
|
424
|
+
get () {
|
425
|
+
const listeners = this.listeners(method);
|
426
|
+
for (var i = 0; i < listeners.length; i++) {
|
427
|
+
if (listeners[i]._listener) return listeners[i]._listener;
|
428
|
+
}
|
429
|
+
},
|
430
|
+
/**
|
431
|
+
* Add a listener for the event.
|
432
|
+
*
|
433
|
+
* @param {Function} listener The listener to add
|
434
|
+
* @public
|
435
|
+
*/
|
436
|
+
set (listener) {
|
437
|
+
const listeners = this.listeners(method);
|
438
|
+
for (var i = 0; i < listeners.length; i++) {
|
439
|
+
//
|
440
|
+
// Remove only the listeners added via `addEventListener`.
|
441
|
+
//
|
442
|
+
if (listeners[i]._listener) this.removeListener(method, listeners[i]);
|
443
|
+
}
|
444
|
+
this.addEventListener(method, listener);
|
445
|
+
}
|
446
|
+
});
|
447
|
+
});
|
448
|
+
|
449
|
+
WebSocket.prototype.addEventListener = EventTarget.addEventListener;
|
450
|
+
WebSocket.prototype.removeEventListener = EventTarget.removeEventListener;
|
451
|
+
|
452
|
+
module.exports = WebSocket;
|
453
|
+
|
454
|
+
/**
|
455
|
+
* Initialize a WebSocket server client.
|
456
|
+
*
|
457
|
+
* @param {http.IncomingMessage} req The request object
|
458
|
+
* @param {net.Socket} socket The network socket between the server and client
|
459
|
+
* @param {Buffer} head The first packet of the upgraded stream
|
460
|
+
* @param {Object} options WebSocket attributes
|
461
|
+
* @param {Number} options.protocolVersion The WebSocket protocol version
|
462
|
+
* @param {Object} options.extensions The negotiated extensions
|
463
|
+
* @param {Number} options.maxPayload The maximum allowed message size
|
464
|
+
* @param {String} options.protocol The chosen subprotocol
|
465
|
+
* @private
|
466
|
+
*/
|
467
|
+
function initAsServerClient (req, socket, head, options) {
|
468
|
+
this.protocolVersion = options.protocolVersion;
|
469
|
+
this.extensions = options.extensions;
|
470
|
+
this.maxPayload = options.maxPayload;
|
471
|
+
this.protocol = options.protocol;
|
472
|
+
|
473
|
+
this.upgradeReq = req;
|
474
|
+
this._isServer = true;
|
475
|
+
|
476
|
+
this.setSocket(socket, head);
|
477
|
+
}
|
478
|
+
|
479
|
+
/**
|
480
|
+
* Initialize a WebSocket client.
|
481
|
+
*
|
482
|
+
* @param {String} address The URL to which to connect
|
483
|
+
* @param {String[]} protocols The list of subprotocols
|
484
|
+
* @param {Object} options Connection options
|
485
|
+
* @param {String} options.protocol Value of the `Sec-WebSocket-Protocol` header
|
486
|
+
* @param {(Boolean|Object)} options.perMessageDeflate Enable/disable permessage-deflate
|
487
|
+
* @param {String} options.localAddress Local interface to bind for network connections
|
488
|
+
* @param {Number} options.protocolVersion Value of the `Sec-WebSocket-Version` header
|
489
|
+
* @param {Object} options.headers An object containing request headers
|
490
|
+
* @param {String} options.origin Value of the `Origin` or `Sec-WebSocket-Origin` header
|
491
|
+
* @param {http.Agent} options.agent Use the specified Agent
|
492
|
+
* @param {String} options.host Value of the `Host` header
|
493
|
+
* @param {Number} options.family IP address family to use during hostname lookup (4 or 6).
|
494
|
+
* @param {Function} options.checkServerIdentity A function to validate the server hostname
|
495
|
+
* @param {Boolean} options.rejectUnauthorized Verify or not the server certificate
|
496
|
+
* @param {String} options.passphrase The passphrase for the private key or pfx
|
497
|
+
* @param {String} options.ciphers The ciphers to use or exclude
|
498
|
+
* @param {(String|String[]|Buffer|Buffer[])} options.cert The certificate key
|
499
|
+
* @param {(String|String[]|Buffer|Buffer[])} options.key The private key
|
500
|
+
* @param {(String|Buffer)} options.pfx The private key, certificate, and CA certs
|
501
|
+
* @param {(String|String[]|Buffer|Buffer[])} options.ca Trusted certificates
|
502
|
+
* @private
|
503
|
+
*/
|
504
|
+
function initAsClient (address, protocols, options) {
|
505
|
+
options = Object.assign({
|
506
|
+
protocol: protocols.join(','),
|
507
|
+
perMessageDeflate: true,
|
508
|
+
localAddress: null,
|
509
|
+
protocolVersion,
|
510
|
+
headers: null,
|
511
|
+
origin: null,
|
512
|
+
agent: null,
|
513
|
+
host: null,
|
514
|
+
family: null,
|
515
|
+
|
516
|
+
//
|
517
|
+
// SSL options.
|
518
|
+
//
|
519
|
+
checkServerIdentity: null,
|
520
|
+
rejectUnauthorized: null,
|
521
|
+
passphrase: null,
|
522
|
+
ciphers: null,
|
523
|
+
cert: null,
|
524
|
+
key: null,
|
525
|
+
pfx: null,
|
526
|
+
ca: null
|
527
|
+
}, options);
|
528
|
+
|
529
|
+
if (options.protocolVersion !== 8 && options.protocolVersion !== 13) {
|
530
|
+
throw new Error('unsupported protocol version');
|
531
|
+
}
|
532
|
+
|
533
|
+
this.protocolVersion = options.protocolVersion;
|
534
|
+
this._isServer = false;
|
535
|
+
this.url = address;
|
536
|
+
|
537
|
+
const serverUrl = url.parse(address);
|
538
|
+
const isUnixSocket = serverUrl.protocol === 'ws+unix:';
|
539
|
+
|
540
|
+
if (!serverUrl.host && !isUnixSocket) throw new Error('invalid url');
|
541
|
+
|
542
|
+
const isSecure = serverUrl.protocol === 'wss:' || serverUrl.protocol === 'https:';
|
543
|
+
const key = crypto.randomBytes(16).toString('base64');
|
544
|
+
const port = serverUrl.port || (isSecure ? 443 : 80);
|
545
|
+
const httpObj = isSecure ? https : http;
|
546
|
+
|
547
|
+
//
|
548
|
+
// Prepare extensions.
|
549
|
+
//
|
550
|
+
const extensionsOffer = {};
|
551
|
+
var perMessageDeflate;
|
552
|
+
|
553
|
+
if (options.perMessageDeflate) {
|
554
|
+
perMessageDeflate = new PerMessageDeflate(
|
555
|
+
options.perMessageDeflate !== true ? options.perMessageDeflate : {},
|
556
|
+
false
|
557
|
+
);
|
558
|
+
extensionsOffer[PerMessageDeflate.extensionName] = perMessageDeflate.offer();
|
559
|
+
}
|
560
|
+
|
561
|
+
const requestOptions = {
|
562
|
+
host: serverUrl.hostname,
|
563
|
+
port,
|
564
|
+
path: '/',
|
565
|
+
headers: {
|
566
|
+
'Sec-WebSocket-Version': options.protocolVersion,
|
567
|
+
'Sec-WebSocket-Key': key,
|
568
|
+
'Connection': 'Upgrade',
|
569
|
+
'Upgrade': 'websocket'
|
570
|
+
}
|
571
|
+
};
|
572
|
+
|
573
|
+
if (options.headers) Object.assign(requestOptions.headers, options.headers);
|
574
|
+
if (Object.keys(extensionsOffer).length) {
|
575
|
+
requestOptions.headers['Sec-WebSocket-Extensions'] = Extensions.format(extensionsOffer);
|
576
|
+
}
|
577
|
+
if (options.protocol) {
|
578
|
+
requestOptions.headers['Sec-WebSocket-Protocol'] = options.protocol;
|
579
|
+
}
|
580
|
+
if (options.origin) {
|
581
|
+
if (options.protocolVersion < 13) {
|
582
|
+
requestOptions.headers['Sec-WebSocket-Origin'] = options.origin;
|
583
|
+
} else {
|
584
|
+
requestOptions.headers.Origin = options.origin;
|
585
|
+
}
|
586
|
+
}
|
587
|
+
if (options.host) requestOptions.headers.Host = options.host;
|
588
|
+
if (options.family) requestOptions.family = options.family;
|
589
|
+
|
590
|
+
if (options.localAddress) requestOptions.localAddress = options.localAddress;
|
591
|
+
if (isUnixSocket) requestOptions.socketPath = serverUrl.pathname;
|
592
|
+
if (serverUrl.auth) requestOptions.auth = serverUrl.auth;
|
593
|
+
|
594
|
+
//
|
595
|
+
// Make sure that path starts with `/`.
|
596
|
+
//
|
597
|
+
if (serverUrl.path) {
|
598
|
+
if (serverUrl.path.charAt(0) !== '/') {
|
599
|
+
requestOptions.path = `/${serverUrl.path}`;
|
600
|
+
} else {
|
601
|
+
requestOptions.path = serverUrl.path;
|
602
|
+
}
|
603
|
+
}
|
604
|
+
|
605
|
+
var agent = options.agent;
|
606
|
+
|
607
|
+
//
|
608
|
+
// A custom agent is required for these options.
|
609
|
+
//
|
610
|
+
if (
|
611
|
+
options.rejectUnauthorized != null ||
|
612
|
+
options.checkServerIdentity ||
|
613
|
+
options.passphrase ||
|
614
|
+
options.ciphers ||
|
615
|
+
options.cert ||
|
616
|
+
options.key ||
|
617
|
+
options.pfx ||
|
618
|
+
options.ca
|
619
|
+
) {
|
620
|
+
if (options.passphrase) requestOptions.passphrase = options.passphrase;
|
621
|
+
if (options.ciphers) requestOptions.ciphers = options.ciphers;
|
622
|
+
if (options.cert) requestOptions.cert = options.cert;
|
623
|
+
if (options.key) requestOptions.key = options.key;
|
624
|
+
if (options.pfx) requestOptions.pfx = options.pfx;
|
625
|
+
if (options.ca) requestOptions.ca = options.ca;
|
626
|
+
if (options.checkServerIdentity) {
|
627
|
+
requestOptions.checkServerIdentity = options.checkServerIdentity;
|
628
|
+
}
|
629
|
+
if (options.rejectUnauthorized != null) {
|
630
|
+
requestOptions.rejectUnauthorized = options.rejectUnauthorized;
|
631
|
+
}
|
632
|
+
|
633
|
+
if (!agent) agent = new httpObj.Agent(requestOptions);
|
634
|
+
}
|
635
|
+
|
636
|
+
if (agent) requestOptions.agent = agent;
|
637
|
+
|
638
|
+
this._req = httpObj.get(requestOptions);
|
639
|
+
|
640
|
+
this._req.on('error', (error) => {
|
641
|
+
if (this._req.aborted) return;
|
642
|
+
|
643
|
+
this._req = null;
|
644
|
+
this.emit('error', error);
|
645
|
+
this.finalize(true);
|
646
|
+
});
|
647
|
+
|
648
|
+
this._req.on('response', (res) => {
|
649
|
+
if (!this.emit('unexpected-response', this._req, res)) {
|
650
|
+
this._req.abort();
|
651
|
+
this.emit('error', new Error(`unexpected server response (${res.statusCode})`));
|
652
|
+
this.finalize(true);
|
653
|
+
}
|
654
|
+
});
|
655
|
+
|
656
|
+
this._req.on('upgrade', (res, socket, head) => {
|
657
|
+
this._req = null;
|
658
|
+
|
659
|
+
const digest = crypto.createHash('sha1')
|
660
|
+
.update(key + GUID, 'binary')
|
661
|
+
.digest('base64');
|
662
|
+
|
663
|
+
if (res.headers['sec-websocket-accept'] !== digest) {
|
664
|
+
socket.destroy();
|
665
|
+
this.emit('error', new Error('invalid server key'));
|
666
|
+
return this.finalize(true);
|
667
|
+
}
|
668
|
+
|
669
|
+
const serverProt = res.headers['sec-websocket-protocol'];
|
670
|
+
const protList = (options.protocol || '').split(/, */);
|
671
|
+
var protError;
|
672
|
+
|
673
|
+
if (!options.protocol && serverProt) {
|
674
|
+
protError = 'server sent a subprotocol even though none requested';
|
675
|
+
} else if (options.protocol && !serverProt) {
|
676
|
+
protError = 'server sent no subprotocol even though requested';
|
677
|
+
} else if (serverProt && protList.indexOf(serverProt) === -1) {
|
678
|
+
protError = 'server responded with an invalid protocol';
|
679
|
+
}
|
680
|
+
|
681
|
+
if (protError) {
|
682
|
+
socket.destroy();
|
683
|
+
this.emit('error', new Error(protError));
|
684
|
+
return this.finalize(true);
|
685
|
+
}
|
686
|
+
|
687
|
+
if (serverProt) this.protocol = serverProt;
|
688
|
+
|
689
|
+
const serverExtensions = Extensions.parse(res.headers['sec-websocket-extensions']);
|
690
|
+
|
691
|
+
if (perMessageDeflate && serverExtensions[PerMessageDeflate.extensionName]) {
|
692
|
+
try {
|
693
|
+
perMessageDeflate.accept(serverExtensions[PerMessageDeflate.extensionName]);
|
694
|
+
} catch (err) {
|
695
|
+
socket.destroy();
|
696
|
+
this.emit('error', new Error('invalid extension parameter'));
|
697
|
+
return this.finalize(true);
|
698
|
+
}
|
699
|
+
|
700
|
+
this.extensions[PerMessageDeflate.extensionName] = perMessageDeflate;
|
701
|
+
}
|
702
|
+
|
703
|
+
this.setSocket(socket, head);
|
704
|
+
});
|
705
|
+
}
|