loopback/lib/connectors/base-connector.js

55 lines
979 B
JavaScript
Raw Normal View History

2013-06-08 00:37:30 +00:00
/**
* Expose `Connector`.
*/
module.exports = Connector;
/**
* Module dependencies.
*/
2014-10-16 22:54:40 +00:00
var EventEmitter = require('events').EventEmitter;
var debug = require('debug')('connector');
var util = require('util');
var inherits = util.inherits;
var assert = require('assert');
2014-10-16 22:54:40 +00:00
2013-06-08 00:37:30 +00:00
/**
* Create a new `Connector` with the given `options`.
*
* @param {Object} options
* @return {Connector}
*/
function Connector(options) {
EventEmitter.apply(this, arguments);
this.options = options;
2014-10-16 22:54:40 +00:00
2013-06-08 00:37:30 +00:00
debug('created with options', options);
}
/**
* Inherit from `EventEmitter`.
*/
inherits(Connector, EventEmitter);
/*!
2013-07-23 19:58:03 +00:00
* Create an connector instance from a JugglingDB adapter.
2013-06-08 00:37:30 +00:00
*/
Connector._createJDBAdapter = function(jdbModule) {
2013-06-08 00:37:30 +00:00
var fauxSchema = {};
jdbModule.initialize(fauxSchema, function() {
2013-06-08 00:37:30 +00:00
// connected
});
2014-10-16 22:54:40 +00:00
};
2013-06-08 00:37:30 +00:00
/*!
* Add default crud operations from a JugglingDB adapter.
*/
Connector.prototype._addCrudOperationsFromJDBAdapter = function(connector) {
2014-10-16 22:54:40 +00:00
};