bitmessage-js/lib/net/base.js

108 lines
2.6 KiB
JavaScript
Raw Normal View History

2015-02-01 21:34:47 +01:00
/**
* Networking base module. You should import some transport instead in
* order to connect/accept connections to/from other nodes.
* @module bitmessage/net/base
*/
// TODO(Kagami): Write some sort of tutorial.
"use strict";
var inherits = require("inherits");
var EventEmitter = require("events").EventEmitter;
2015-02-02 16:30:05 +01:00
var PPromise = require("../platform").Promise;
2015-02-09 22:56:55 +01:00
var structs = require("../structs");
2015-02-01 21:34:47 +01:00
/**
* Network transport base class.
* @constructor
* @static
*/
function BaseTransport() {
BaseTransport.super_.call(this);
}
inherits(BaseTransport, EventEmitter);
/**
* Do the transport-specific bootstrap process and return promise that
* contains discovered nodes when fulfilled.
* @return {Promise.<Array.>}
2015-02-05 19:38:36 +01:00
* @abstract
2015-02-01 21:34:47 +01:00
*/
BaseTransport.prototype.bootstrap = function() {
2015-02-05 19:38:36 +01:00
return PPromise.reject(new Error("Not implemented"));
2015-02-01 21:34:47 +01:00
};
/**
* Connect to the transport-specific address.
2015-02-02 15:34:00 +01:00
* Should emit `open` event after successful connect and `established`
* event after `verack` messages exchange.
2015-02-01 21:34:47 +01:00
* @abstract
*/
BaseTransport.prototype.connect = function() {
throw new Error("Not implemented");
};
2015-02-05 19:38:36 +01:00
/**
* Listen for the transport-specific incoming connections.
* Should emit `connection` event with a transport instance for each new
* connection.
* @abstract
*/
BaseTransport.prototype.listen = function() {
throw new Error("Not implemented");
};
2015-02-01 21:34:47 +01:00
/**
* Send [message]{@link module:bitmessage/structs.message} over the
2015-02-05 19:38:36 +01:00
* wire (client mode).
2015-02-09 15:38:10 +01:00
* @param {(Buffer|string)} msg - Encoded message or command string
* @param (?Buffer} payload - Message payload (used if the first
* argument is a string)
2015-02-01 21:34:47 +01:00
* @abstract
*/
BaseTransport.prototype.send = function() {
throw new Error("Not implemented");
};
/**
2015-02-05 19:38:36 +01:00
* Send [message]{@link module:bitmessage/structs.message} to all
* connected clients (server mode).
2015-02-09 15:38:10 +01:00
* @param {(Buffer|string)} msg - Encoded message or command string
* @param (?Buffer} payload - Message payload (used if the first
* argument is a string)
2015-02-01 21:34:47 +01:00
* @abstract
*/
2015-02-05 19:38:36 +01:00
BaseTransport.prototype.broadcast = function() {
2015-02-01 21:34:47 +01:00
throw new Error("Not implemented");
};
/**
2015-02-05 19:38:36 +01:00
* Close connection(s) and/or stop listening.
2015-02-01 21:34:47 +01:00
* @abstract
*/
2015-02-05 19:38:36 +01:00
BaseTransport.prototype.close = function() {
2015-02-01 21:34:47 +01:00
throw new Error("Not implemented");
};
2015-02-09 22:56:55 +01:00
// Static helpers.
BaseTransport._getmsg = function(args) {
if (typeof args[0] === "string") {
return structs.message.encode(args[0], args[1]);
} else {
return args[0];
}
};
// Unmap IPv4-mapped IPv6 address.
BaseTransport._unmap = function(addr) {
if (addr.slice(0, 7) === "::ffff:") {
return addr.slice(7);
} else {
return addr;
}
};
2015-02-06 10:47:40 +01:00
module.exports = BaseTransport;