blob: ec2d7ff65a85a0ce39c3ed1775fd023b5282e768 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
/**
* @private
* @fileoverview An object that handles marshaling and unmarshal
* messages from the native vanadium implementation.
*/
var EE = require('eventemitter2').EventEmitter2;
var inherits = require('inherits');
var LRU = require('lru-cache');
var MessageType = require('./message-type');
var Incoming = MessageType.Incoming;
var Outgoing = MessageType.Outgoing;
var vlog = require('./../lib/vlog');
var unwrap = require('../vdl/type-util').unwrap;
var Encoder = require('../vom/encoder');
var Decoder = require('../vom/decoder');
var hexVom = require('../lib/hex-vom');
// Cache the service signatures for one hour.
var SIGNATURE_CACHE_TTL = 3600 * 1000;
/**
* A client for the native vanadium implementation.
* @constructor
* @private
* @param {Promise} senderPromise A promise that is resolved when we are able
* to send a message to the native veron implementation. It should be resolved
* with an object that has a send function that will send messages to the native
* implementation.
*/
function Proxy(senderPromise) {
// We use odd numbers for the message ids, so that the server can use even
// numbers.
this.id = 1;
this.outstandingRequests = {};
this.signatureCache = new LRU({
maxAge: SIGNATURE_CACHE_TTL
});
this.senderPromise = senderPromise;
this.incomingRequestHandlers = {};
this.clientEncoder = new Encoder();
this.clientDecoder = new Decoder();
EE.call(this);
}
inherits(Proxy, EE);
/**
* Handles a message from native vanadium implementation.
* @private
* @param {Object} messsage The message from the native vanadium code.
*/
Proxy.prototype.process = function(message) {
// Messages originating from server are even numbers
var isServerOriginatedMessage = (message.id % 2) === 0;
var handler = this.outstandingRequests[message.id];
// If we don't know about this flow, just drop the message. Unless it
// originated from the sever.
if (!isServerOriginatedMessage && !handler) {
return;
}
var payload;
try {
payload = hexVom.decode(message.data);
payload.message = unwrap(payload.message);
} catch (e) {
vlog.logger.error(e);
if (!isServerOriginatedMessage) {
handler.handleResponse(Incoming.ERROR_RESPONSE, message.data);
}
return;
}
if (!handler) {
handler = this.incomingRequestHandlers[payload.type];
if (!handler) {
// TODO(bprosnitz) There is a race condition where we receive STREAM_CLOSE
// before a method is invoked in js and see this warning.
vlog.logger.warn('Dropping message for unknown invoke payload ' +
payload.type + ' (message id: ' + message.id + ')');
return;
}
handler.handleRequest(message.id, payload.type, payload.message);
} else {
handler.handleResponse(payload.type, payload.message);
}
};
Proxy.prototype.dequeue = function(id) {
delete this.outstandingRequests[id];
};
Proxy.prototype.nextId = function() {
var id = this.id;
this.id += 2;
return id;
};
Proxy.prototype.addIncomingHandler = function(type, handler) {
this.incomingRequestHandlers[type] = handler;
};
Proxy.prototype.addIncomingStreamHandler = function(id, handler) {
this.outstandingRequests[id] = handler;
};
/**
* Arranges to notify downstream servers when the given
* context is cancelled. It also causes outstanding handlers for
* those requests to receive a cancellation error.
* @private
*/
Proxy.prototype.cancelFromContext = function(ctx, id) {
var proxy = this;
ctx.waitUntilDone().catch(function(error) {
var h = proxy.outstandingRequests[id];
proxy.sendRequest(null, Outgoing.CANCEL, null, id);
if (h) {
h.handleResponse(Incoming.ERROR_RESPONSE, error);
delete proxy.outstandingRequests[id];
}
});
};
/**
* Establishes the connection if needed, frames the message with the next id,
* adds the given deferred to outstanding requests queue and sends the request
* to the server
* @private
* @param {Object} message Message to send
* @param {MessageType} type Type of message to send
* @param {Object} handler An object with a handleResponse method that takes
* a response type and a message. If null, then responses for this flow
* are ignored.
* @param {Number} id Use this flow id instead of generating
* a new one.
*/
Proxy.prototype.sendRequest = function(message, type, handler, id) {
if (handler) {
this.outstandingRequests[id] = handler;
}
var body = {
id: id,
data: message,
type: type
};
var self = this;
this.senderPromise.then(function(sender) {
sender.send(body);
}).catch(function(err) {
// TODO(jasoncampbell): Add tests that cover this case, also sender.send
// above is async and will break out of the try/catch promise mechanism
// in node.
var h = self.outstandingRequests[id];
if (h) {
h.handleResponse(Incoming.ERROR_RESPONSE, err);
delete self.outstandingRequests[id];
}
});
};
/*
* Export the module
*/
module.exports = Proxy;