2015-10-07 15:28:34 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*
|
|
|
|
* @providesModule WebSocket
|
2016-02-16 11:28:05 +00:00
|
|
|
* @flow
|
2015-10-07 15:28:34 +00:00
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2016-04-18 22:42:42 +00:00
|
|
|
const RCTDeviceEventEmitter = require('RCTDeviceEventEmitter');
|
|
|
|
const RCTWebSocketModule = require('NativeModules').WebSocketModule;
|
|
|
|
const Platform = require('Platform');
|
|
|
|
const WebSocketEvent = require('WebSocketEvent');
|
2015-10-07 15:28:34 +00:00
|
|
|
|
2016-04-18 22:42:42 +00:00
|
|
|
const EventTarget = require('event-target-shim');
|
|
|
|
const base64 = require('base64-js');
|
2015-10-07 15:28:34 +00:00
|
|
|
|
2016-04-18 22:42:42 +00:00
|
|
|
import type EventSubscription from 'EventSubscription';
|
2015-12-22 17:22:01 +00:00
|
|
|
|
2016-04-18 22:42:42 +00:00
|
|
|
const CONNECTING = 0;
|
|
|
|
const OPEN = 1;
|
|
|
|
const CLOSING = 2;
|
|
|
|
const CLOSED = 3;
|
|
|
|
|
|
|
|
const CLOSE_NORMAL = 1000;
|
|
|
|
|
|
|
|
const WEBSOCKET_EVENTS = [
|
|
|
|
'close',
|
|
|
|
'error',
|
|
|
|
'message',
|
|
|
|
'open',
|
|
|
|
];
|
|
|
|
|
|
|
|
let nextWebSocketId = 0;
|
2015-10-07 15:28:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Browser-compatible WebSockets implementation.
|
|
|
|
*
|
|
|
|
* See https://developer.mozilla.org/en-US/docs/Web/API/WebSocket
|
2016-01-20 19:00:21 +00:00
|
|
|
* See https://github.com/websockets/ws
|
2015-10-07 15:28:34 +00:00
|
|
|
*/
|
2016-04-18 22:42:42 +00:00
|
|
|
class WebSocket extends EventTarget(WEBSOCKET_EVENTS) {
|
|
|
|
static CONNECTING = CONNECTING;
|
|
|
|
static OPEN = OPEN;
|
|
|
|
static CLOSING = CLOSING;
|
|
|
|
static CLOSED = CLOSED;
|
2015-10-07 15:28:34 +00:00
|
|
|
|
2016-04-18 22:42:42 +00:00
|
|
|
CONNECTING: number = CONNECTING;
|
|
|
|
OPEN: number = OPEN;
|
|
|
|
CLOSING: number = CLOSING;
|
|
|
|
CLOSED: number = CLOSED;
|
2015-10-07 15:28:34 +00:00
|
|
|
|
2016-04-18 22:42:42 +00:00
|
|
|
_socketId: number;
|
|
|
|
_subscriptions: Array<EventSubscription>;
|
|
|
|
|
|
|
|
onclose: ?Function;
|
|
|
|
onerror: ?Function;
|
|
|
|
onmessage: ?Function;
|
|
|
|
onopen: ?Function;
|
|
|
|
|
|
|
|
binaryType: ?string;
|
|
|
|
bufferedAmount: number;
|
|
|
|
extension: ?string;
|
|
|
|
protocol: ?string;
|
|
|
|
readyState: number = CONNECTING;
|
|
|
|
url: ?string;
|
|
|
|
|
|
|
|
constructor(url: string, protocols: ?string | ?Array<string>, options: ?{origin?: string}) {
|
|
|
|
super();
|
|
|
|
if (typeof protocols === 'string') {
|
|
|
|
protocols = [protocols];
|
|
|
|
}
|
2015-10-07 15:28:34 +00:00
|
|
|
|
2016-04-18 22:42:42 +00:00
|
|
|
if (!Array.isArray(protocols)) {
|
|
|
|
protocols = null;
|
|
|
|
}
|
2015-10-07 15:28:34 +00:00
|
|
|
|
2016-04-18 22:42:42 +00:00
|
|
|
this._socketId = nextWebSocketId++;
|
|
|
|
RCTWebSocketModule.connect(url, protocols, options, this._socketId);
|
|
|
|
this._registerEvents();
|
2015-10-07 15:28:34 +00:00
|
|
|
}
|
|
|
|
|
2016-04-18 22:42:42 +00:00
|
|
|
close(code?: number, reason?: string): void {
|
|
|
|
if (this.readyState === this.CLOSING ||
|
|
|
|
this.readyState === this.CLOSED) {
|
|
|
|
return;
|
|
|
|
}
|
2015-10-07 15:28:34 +00:00
|
|
|
|
2016-04-18 22:42:42 +00:00
|
|
|
this.readyState = this.CLOSING;
|
|
|
|
this._close(code, reason);
|
2015-10-07 15:28:34 +00:00
|
|
|
}
|
|
|
|
|
2016-04-18 22:42:42 +00:00
|
|
|
send(data: any): void {
|
|
|
|
if (this.readyState === this.CONNECTING) {
|
|
|
|
throw new Error('INVALID_STATE_ERR');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof data === 'string') {
|
|
|
|
RCTWebSocketModule.send(data, this._socketId);
|
|
|
|
} else if (data instanceof ArrayBuffer) {
|
|
|
|
console.warn('Sending ArrayBuffers is not yet supported');
|
|
|
|
} else {
|
|
|
|
throw new Error('Not supported data type');
|
|
|
|
}
|
2015-10-07 15:28:34 +00:00
|
|
|
}
|
|
|
|
|
2016-04-18 22:42:42 +00:00
|
|
|
_close(code?: number, reason?: string): void {
|
2015-10-07 15:28:34 +00:00
|
|
|
if (Platform.OS === 'android') {
|
2016-04-18 22:42:42 +00:00
|
|
|
// See https://developer.mozilla.org/en-US/docs/Web/API/CloseEvent
|
2015-10-07 15:28:34 +00:00
|
|
|
var statusCode = typeof code === 'number' ? code : CLOSE_NORMAL;
|
|
|
|
var closeReason = typeof reason === 'string' ? reason : '';
|
2016-04-18 22:42:42 +00:00
|
|
|
RCTWebSocketModule.close(statusCode, closeReason, this._socketId);
|
2015-10-07 15:28:34 +00:00
|
|
|
} else {
|
2016-04-18 22:42:42 +00:00
|
|
|
RCTWebSocketModule.close(this._socketId);
|
2015-10-07 15:28:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_unregisterEvents(): void {
|
2016-04-18 22:42:42 +00:00
|
|
|
this._subscriptions.forEach(e => e.remove());
|
|
|
|
this._subscriptions = [];
|
2015-10-07 15:28:34 +00:00
|
|
|
}
|
|
|
|
|
2016-04-18 22:42:42 +00:00
|
|
|
_registerEvents(): void {
|
|
|
|
this._subscriptions = [
|
2015-10-07 15:28:34 +00:00
|
|
|
RCTDeviceEventEmitter.addListener('websocketMessage', ev => {
|
2016-04-18 22:42:42 +00:00
|
|
|
if (ev.id !== this._socketId) {
|
2015-10-07 15:28:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
var event = new WebSocketEvent('message', {
|
2015-12-22 17:22:01 +00:00
|
|
|
data: (ev.type === 'binary') ? base64.toByteArray(ev.data).buffer : ev.data
|
2015-10-07 15:28:34 +00:00
|
|
|
});
|
|
|
|
this.dispatchEvent(event);
|
|
|
|
}),
|
|
|
|
RCTDeviceEventEmitter.addListener('websocketOpen', ev => {
|
2016-04-18 22:42:42 +00:00
|
|
|
if (ev.id !== this._socketId) {
|
2015-10-07 15:28:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.readyState = this.OPEN;
|
|
|
|
var event = new WebSocketEvent('open');
|
|
|
|
this.dispatchEvent(event);
|
|
|
|
}),
|
|
|
|
RCTDeviceEventEmitter.addListener('websocketClosed', ev => {
|
2016-04-18 22:42:42 +00:00
|
|
|
if (ev.id !== this._socketId) {
|
2015-10-07 15:28:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.readyState = this.CLOSED;
|
|
|
|
var event = new WebSocketEvent('close');
|
|
|
|
event.code = ev.code;
|
|
|
|
event.reason = ev.reason;
|
|
|
|
this.dispatchEvent(event);
|
|
|
|
this._unregisterEvents();
|
2015-10-27 15:33:38 +00:00
|
|
|
this.close();
|
2015-10-07 15:28:34 +00:00
|
|
|
}),
|
|
|
|
RCTDeviceEventEmitter.addListener('websocketFailed', ev => {
|
2016-04-18 22:42:42 +00:00
|
|
|
if (ev.id !== this._socketId) {
|
2015-10-07 15:28:34 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
var event = new WebSocketEvent('error');
|
|
|
|
event.message = ev.message;
|
|
|
|
this.dispatchEvent(event);
|
2016-04-18 22:42:42 +00:00
|
|
|
|
|
|
|
event = new WebSocketEvent('close');
|
|
|
|
event.message = ev.message;
|
|
|
|
this.dispatchEvent(event);
|
|
|
|
|
2015-10-07 15:28:34 +00:00
|
|
|
this._unregisterEvents();
|
2015-10-27 15:33:38 +00:00
|
|
|
this.close();
|
2015-10-07 15:28:34 +00:00
|
|
|
})
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = WebSocket;
|