jones-mysql/impl/mysql_service_provider.js (54 lines of code) (raw):
/*
Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights
reserved.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; version 2 of
the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
02110-1301 USA
*/
"use strict";
var unified_debug = require("unified_debug"),
udebug = unified_debug.getLogger("mysql_service_provider.js"),
path = require("path"),
config = require("./path_config"),
saved_err,
mysqlconnection,
mysqldictionary,
propertiesDocFile = path.join(config.root_dir, "DefaultConnectionProperties");
try {
/* Let unmet module dependencies be caught by loadRequiredModules() */
mysqlconnection = require("./MySQLConnectionPool.js");
mysqldictionary = require("./MySQLDictionary.js");
}
catch(e) {
saved_err = e;
}
exports.loadRequiredModules = function() {
var error;
try {
require("mysql");
}
catch(e) {
error = new Error("Error loading mysql node_module: " + e.message);
error.cause = e;
throw error;
}
if(saved_err) {
throw saved_err;
}
return true;
};
exports.getDefaultConnectionProperties = function() {
return require(propertiesDocFile);
};
exports.getFactoryKey = function(properties) {
var socket = properties.mysql_socket;
if (!socket) {
socket = properties.mysql_host + ':' + properties.mysql_port;
}
// TODO: hash user and password to avoid security issue
var key = properties.implementation + "://" + socket +
"+" + properties.mysql_user + "<" + properties.mysql_password + ">";
return key;
};
exports.connect = function(properties, sessionFactory_callback) {
//the caller of this function is the session factory
var callback = sessionFactory_callback;
// create the connection pool from the properties
var connectionPool = new mysqlconnection.DBConnectionPool(properties);
// connect to the database
connectionPool.connect(function(err, connection) {
callback(err, connectionPool);
});
};
exports.getDBMetadataManager = function(properties) {
return new mysqldictionary.MetadataManager(properties);
};
exports.config = config;