puppeteer/lib/Connection.js

165 lines
4.5 KiB
JavaScript
Raw Normal View History

/**
* Copyright 2017 Google Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
let debug = require('debug')('puppeteer:protocol');
let EventEmitter = require('events');
let WebSocket = require('ws');
let http = require('http');
const COMMAND_TIMEOUT = 10000;
class Connection extends EventEmitter {
2017-06-21 20:51:06 +00:00
/**
2017-06-21 20:58:49 +00:00
* @param {number} port
* @param {string} targetId
2017-06-21 20:58:49 +00:00
* @param {!WebSocket} ws
*/
constructor(port, targetId, ws) {
2017-06-21 20:51:06 +00:00
super();
this._port = port;
this._targetId = targetId;
2017-06-21 20:51:06 +00:00
this._lastId = 0;
/** @type {!Map<number, {resolve: function(*), reject: function(*), method: string}>}*/
this._callbacks = new Map();
2017-06-21 20:51:06 +00:00
this._ws = ws;
this._ws.on('message', this._onMessage.bind(this));
this._ws.on('close', this._onClose.bind(this));
}
/**
* @return {string}
*/
targetId() {
return this._targetId;
}
2017-06-21 20:51:06 +00:00
/**
2017-06-21 20:58:49 +00:00
* @param {string} method
* @param {(!Object|undefined)} params
* @return {!Promise<?Object>}
*/
2017-06-21 20:51:06 +00:00
send(method, params = {}) {
let id = ++this._lastId;
let message = JSON.stringify({id, method, params});
debug('◀ SEND ' + message);
2017-06-21 20:51:06 +00:00
this._ws.send(message);
return new Promise((resolve, reject) => {
this._callbacks.set(id, {resolve, reject, method});
});
}
2017-06-21 20:51:06 +00:00
/**
2017-06-21 20:58:49 +00:00
* @param {string} message
*/
2017-06-21 20:51:06 +00:00
_onMessage(message) {
debug('RECV ► ' + message);
let object = JSON.parse(message);
2017-06-21 20:51:06 +00:00
if (object.id && this._callbacks.has(object.id)) {
let callback = this._callbacks.get(object.id);
2017-06-21 20:51:06 +00:00
this._callbacks.delete(object.id);
if (object.error)
callback.reject(new Error(`Protocol error (${callback.method}): ${object.error.message} ${object.error.data}`));
2017-06-21 20:51:06 +00:00
else
callback.resolve(object.result);
} else {
console.assert(!object.id);
this.emit(object.method, object.params);
}
2017-06-21 20:51:06 +00:00
}
2017-06-21 20:51:06 +00:00
_onClose() {
this._ws.removeAllListeners();
this._ws.close();
for (let callback of this._callbacks.values())
callback.reject(new Error(`Protocol error (${callback.method}): Target closed.`));
2017-06-21 20:51:06 +00:00
}
2017-06-21 20:51:06 +00:00
/**
2017-06-21 20:58:49 +00:00
* @return {!Promise}
*/
2017-06-21 20:51:06 +00:00
async dispose() {
await runJsonCommand(this._port, `close/${this._targetId}`);
2017-06-21 20:51:06 +00:00
}
2017-06-21 20:51:06 +00:00
/**
2017-06-21 20:58:49 +00:00
* @param {number} port
* @return {!Promise<!Connection>}
*/
2017-06-21 20:51:06 +00:00
static async create(port) {
let newTab = await runJsonCommand(port, 'new');
let url = newTab.webSocketDebuggerUrl;
2017-06-21 20:51:06 +00:00
return new Promise((resolve, reject) => {
let ws = new WebSocket(url, { perMessageDeflate: false });
2017-06-21 20:51:06 +00:00
ws.on('open', () => resolve(new Connection(port, newTab.id, ws)));
ws.on('error', reject);
});
}
2017-06-21 20:51:06 +00:00
/**
2017-06-21 20:58:49 +00:00
* @param {number} port
* @return {!Promise<!Object>}
*/
2017-06-21 20:51:06 +00:00
static version(port) {
return runJsonCommand(port, 'version');
}
}
/**
* @param {number} port
* @param {string} command
* @return {!Promise<!Object>}
*/
function runJsonCommand(port, command) {
let request = http.get({
2017-06-21 20:51:06 +00:00
hostname: 'localhost',
port: port,
path: '/json/' + command
}, onResponse);
request.setTimeout(COMMAND_TIMEOUT, onTimeout);
let resolve, reject;
2017-06-21 20:51:06 +00:00
return new Promise((res, rej) => { resolve = res; reject = rej; });
2017-06-21 20:51:06 +00:00
function onResponse(response) {
let data = '';
2017-06-21 20:51:06 +00:00
response.on('data', chunk => data += chunk);
response.on('end', () => {
if (response.statusCode !== 200) {
reject(new Error(`Protocol JSON API error (${command}), status: ${response.statusCode}`));
return;
}
// In the case of 'close' & 'activate' Chromium returns a string rather than JSON: goo.gl/7v27xD
if (data === 'Target is closing' || data === 'Target activated') {
resolve({message: data});
return;
}
try {
resolve(JSON.parse(data));
} catch (e) {
reject(e);
}
});
}
2017-06-21 20:51:06 +00:00
function onTimeout() {
request.abort();
// Reject on error with code specifically indicating timeout in connection setup.
reject(new Error('Timeout waiting for initial Debugger Protocol connection.'));
}
}
module.exports = Connection;