2013-05-17 17:54:14 +00:00
/ * *
* Module dependencies
* /
2013-05-24 05:20:20 +00:00
var ModelBuilder = require ( './model-builder.js' ) . ModelBuilder ;
2013-05-28 05:20:30 +00:00
var jutil = require ( './jutil' ) ;
2013-05-17 17:54:14 +00:00
var ModelBaseClass = require ( './model.js' ) ;
var DataAccessObject = require ( './dao.js' ) ;
var List = require ( './list.js' ) ;
var EventEmitter = require ( 'events' ) . EventEmitter ;
var util = require ( 'util' ) ;
var path = require ( 'path' ) ;
var fs = require ( 'fs' ) ;
2013-05-22 17:41:08 +00:00
var async = require ( 'async' ) ;
2013-05-17 17:54:14 +00:00
var existsSync = fs . existsSync || path . existsSync ;
/ * *
* Export public API
* /
exports . DataSource = DataSource ;
/ * *
* Helpers
* /
var slice = Array . prototype . slice ;
/ * *
* DataSource - adapter - specific classes factory .
*
* All classes in single schema shares same adapter type and
* one database connection
*
* @ param name - type of schema adapter ( mysql , mongoose , sequelize , redis )
* @ param settings - any database - specific settings which we need to
* establish connection ( of course it depends on specific adapter )
*
* - host
* - port
* - username
* - password
* - database
* - debug { Boolean } = false
*
* @ example DataSource creation , waiting for connection callback
* ` ` `
* var schema = new DataSource ( 'mysql' , { database : 'myapp_test' } ) ;
* schema . define ( ... ) ;
* schema . on ( 'connected' , function ( ) {
* // work with database
* } ) ;
* ` ` `
* /
function DataSource ( name , settings ) {
if ( ! ( this instanceof DataSource ) ) {
return new DataSource ( name , settings ) ;
}
2013-05-28 05:20:30 +00:00
ModelBuilder . call ( this , arguments ) ;
2013-05-17 17:54:14 +00:00
this . setup ( name , settings ) ;
2013-05-23 23:38:14 +00:00
// default DataAccessObject
this . DataAccessObject = this . constructor . DataAccessObject ;
2013-05-28 05:20:30 +00:00
this . DataAccessObject . call ( this , arguments ) ;
2013-05-17 17:54:14 +00:00
} ;
2013-05-24 05:20:20 +00:00
util . inherits ( DataSource , ModelBuilder ) ;
2013-05-17 17:54:14 +00:00
2013-05-23 23:38:14 +00:00
// allow child classes to supply a data access object
DataSource . DataAccessObject = DataAccessObject ;
2013-05-17 17:54:14 +00:00
// Copy over statics
2013-05-24 05:20:20 +00:00
for ( var m in ModelBuilder ) {
2013-05-17 21:41:04 +00:00
if ( ! DataSource . hasOwnProperty ( m ) && 'super_' !== m ) {
2013-05-24 05:20:20 +00:00
DataSource [ m ] = ModelBuilder [ m ] ;
2013-05-17 17:54:14 +00:00
}
}
DataSource . prototype . setup = function ( name , settings ) {
var schema = this ;
// just save everything we get
this . name = name ;
this . settings = settings ;
// Disconnected by default
this . connected = false ;
this . connecting = false ;
if ( name ) {
// and initialize schema using adapter
// this is only one initialization entry point of adapter
// this module should define `adapter` member of `this` (schema)
var adapter ;
if ( typeof name === 'object' ) {
adapter = name ;
this . name = adapter . name ;
} else if ( name . match ( /^\// ) ) {
// try absolute path
adapter = require ( name ) ;
} else if ( existsSync ( _ _dirname + '/adapters/' + name + '.js' ) ) {
// try built-in adapter
adapter = require ( './adapters/' + name ) ;
} else {
// try foreign adapter
try {
adapter = require ( 'jugglingdb-' + name ) ;
} catch ( e ) {
return console . log ( '\nWARNING: JugglingDB adapter "' + name + '" is not installed,\nso your models would not work, to fix run:\n\n npm install jugglingdb-' + name , '\n' ) ;
}
}
}
if ( adapter ) {
adapter . initialize ( this , function ( ) {
// we have an adaper now?
if ( ! this . adapter ) {
throw new Error ( 'Adapter is not defined correctly: it should create `adapter` member of schema' ) ;
}
this . adapter . log = function ( query , start ) {
schema . log ( query , start ) ;
} ;
this . adapter . logger = function ( query ) {
var t1 = Date . now ( ) ;
var log = this . log ;
return function ( q ) {
log ( q || query , t1 ) ;
} ;
} ;
this . connected = true ;
this . emit ( 'connected' ) ;
} . bind ( this ) ) ;
}
schema . connect = function ( cb ) {
var schema = this ;
2013-05-31 20:40:50 +00:00
if ( schema . connected || schema . connecting ) {
process . nextTick ( function ( ) {
cb && cb ( ) ;
} ) ;
2013-05-17 23:21:12 +00:00
return ;
}
2013-05-17 17:54:14 +00:00
schema . connecting = true ;
if ( schema . adapter . connect ) {
2013-05-31 20:40:50 +00:00
schema . adapter . connect ( function ( err , result ) {
2013-05-17 17:54:14 +00:00
if ( ! err ) {
schema . connected = true ;
schema . connecting = false ;
schema . emit ( 'connected' ) ;
}
2013-05-31 20:40:50 +00:00
cb && cb ( err , result ) ;
2013-05-17 17:54:14 +00:00
} ) ;
} else {
2013-05-31 20:40:50 +00:00
process . nextTick ( function ( ) {
cb && cb ( ) ;
} ) ;
2013-05-17 17:54:14 +00:00
}
} ;
}
/ * *
* Define class
*
* @ param { String } className
* @ param { Object } properties - hash of class properties in format
* ` {property: Type, property2: Type2, ...} `
* or
* ` {property: {type: Type}, property2: {type: Type2}, ...} `
* @ param { Object } settings - other configuration of class
* @ return newly created class
*
* @ example simple case
* ` ` `
* var User = schema . define ( 'User' , {
* email : String ,
* password : String ,
* birthDate : Date ,
* activated : Boolean
* } ) ;
* ` ` `
* @ example more advanced case
* ` ` `
* var User = schema . define ( 'User' , {
* email : { type : String , limit : 150 , index : true } ,
* password : { type : String , limit : 50 } ,
* birthDate : Date ,
* registrationDate : { type : Date , default : function ( ) { return new Date } } ,
* activated : { type : Boolean , default : false }
* } ) ;
* ` ` `
* /
DataSource . prototype . define = function defineClass ( className , properties , settings ) {
2013-05-17 21:41:04 +00:00
var args = slice . call ( arguments ) ;
if ( ! className ) throw new Error ( 'Class name required' ) ;
if ( args . length == 1 ) properties = { } , args . push ( properties ) ;
if ( args . length == 2 ) settings = { } , args . push ( settings ) ;
properties = properties || { } ;
settings = settings || { } ;
2013-05-24 05:20:20 +00:00
var NewClass = ModelBuilder . prototype . define . call ( this , className , properties , settings ) ;
2013-05-17 17:54:14 +00:00
2013-05-23 23:38:14 +00:00
// add data access objects
this . mixin ( NewClass ) ;
2013-05-17 17:54:14 +00:00
if ( this . adapter ) {
// pass control to adapter
this . adapter . define ( {
model : NewClass ,
properties : properties ,
settings : settings
} ) ;
}
return NewClass ;
} ;
2013-05-23 23:38:14 +00:00
/ * *
* Mixin DataAccessObject methods .
* /
DataSource . prototype . mixin = function ( ModelCtor ) {
// inherit DataAccessObject methods
2013-05-29 14:17:07 +00:00
jutil . mixin ( ModelCtor , this . DataAccessObject ) ;
2013-05-23 23:38:14 +00:00
}
/ * *
* Attach an existing model to a data source .
* /
DataSource . prototype . attach = function ( ModelCtor ) {
2013-05-24 00:29:03 +00:00
var properties = ModelCtor . schema . definitions [ ModelCtor . modelName ] . properties ;
var settings = ModelCtor . schema . definitions [ ModelCtor . modelName ] . settings ;
2013-05-24 22:10:34 +00:00
var className = ModelCtor . modelName ;
2013-05-24 00:29:03 +00:00
2013-05-23 23:38:14 +00:00
this . mixin ( ModelCtor ) ;
if ( this . adapter ) {
2013-05-24 00:29:03 +00:00
// pass control to adapter
this . adapter . define ( {
model : ModelCtor ,
properties : properties ,
settings : settings
} ) ;
2013-05-23 23:38:14 +00:00
}
2013-05-24 00:29:03 +00:00
// redefine the schema
hiddenProperty ( ModelCtor , 'schema' , this ) ;
// add to def
2013-05-24 22:10:34 +00:00
this . definitions [ className ] = {
2013-05-24 00:29:03 +00:00
properties : properties ,
settings : settings
} ;
2013-05-24 22:10:34 +00:00
this . models [ className ] = ModelCtor ;
2013-05-23 23:38:14 +00:00
return this ;
}
2013-05-17 21:41:04 +00:00
/ * *
* Define single property named ` prop ` on ` model `
*
* @ param { String } model - name of model
* @ param { String } prop - name of propery
* @ param { Object } params - property settings
* /
DataSource . prototype . defineProperty = function ( model , prop , params ) {
2013-05-24 05:20:20 +00:00
ModelBuilder . prototype . defineProperty . call ( this , model , prop , params ) ;
2013-05-17 21:41:04 +00:00
if ( this . adapter . defineProperty ) {
this . adapter . defineProperty ( model , prop , params ) ;
}
} ;
2013-05-17 17:54:14 +00:00
/ * *
* Drop each model table and re - create .
* This method make sense only for sql adapters .
*
* @ warning All data will be lost ! Use autoupdate if you need your data .
* /
DataSource . prototype . automigrate = function ( cb ) {
this . freeze ( ) ;
if ( this . adapter . automigrate ) {
this . adapter . automigrate ( cb ) ;
} else if ( cb ) {
cb ( ) ;
}
} ;
/ * *
* Update existing database tables .
* This method make sense only for sql adapters .
* /
DataSource . prototype . autoupdate = function ( cb ) {
this . freeze ( ) ;
if ( this . adapter . autoupdate ) {
this . adapter . autoupdate ( cb ) ;
} else if ( cb ) {
cb ( ) ;
}
} ;
/ * *
* Discover existing database tables .
* This method returns an array of model objects , including { type , name , onwer }
*
* @ param options An object that contains the following settings :
* all : true - Discovering all models , false - Discovering the models owned by the current user
* views : true - Including views , false - only tables
* limit : The page size
* offset : The starting index
* /
DataSource . prototype . discoverModels = function ( options , cb ) {
this . freeze ( ) ;
if ( this . adapter . discoverModels ) {
this . adapter . discoverModels ( options , cb ) ;
} else if ( cb ) {
cb ( ) ;
}
} ;
/ * *
* Discover properties for a given model .
2013-05-21 18:59:16 +00:00
* @ param owner The owner
* @ param table The table / view name
* @ param cb Callback
2013-05-17 17:54:14 +00:00
* The method return an array of properties , including { owner , tableName , columnName , dataType , dataLength , nullable }
* /
2013-05-21 18:59:16 +00:00
DataSource . prototype . discoverModelProperties = function ( owner , table , cb ) {
2013-05-17 17:54:14 +00:00
this . freeze ( ) ;
if ( this . adapter . discoverModelProperties ) {
2013-05-21 19:00:16 +00:00
this . adapter . discoverModelProperties ( owner , table , cb ) ;
2013-05-17 17:54:14 +00:00
} else if ( cb ) {
cb ( ) ;
}
} ;
/ * *
* Discover primary keys for a given owner / table
*
* Each primary key column description has the following columns :
2013-05-21 18:59:16 +00:00
* owner String => table schema ( may be null )
* tableName String => table name
* columnName String => column name
* keySeq Number => sequence number within primary key ( a value of 1 represents the first column of the primary key , a value of 2 would represent the second column within the primary key ) .
* pkName String => primary key name ( may be null )
2013-05-17 17:54:14 +00:00
*
2013-05-21 18:59:16 +00:00
* @ param owner The owner , default to current user
* @ param table The table name
* @ param cb Callback
2013-05-17 17:54:14 +00:00
* /
DataSource . prototype . discoverPrimaryKeys = function ( owner , table , cb ) {
this . freeze ( ) ;
if ( this . adapter . discoverPrimaryKeys ) {
this . adapter . discoverPrimaryKeys ( owner , table , cb ) ;
} else if ( cb ) {
cb ( ) ;
}
}
/ * *
* Discover foreign keys for a given owner / table
*
2013-05-21 18:59:16 +00:00
* fkOwner String => foreign key table schema ( may be null )
* fkName String => foreign key name ( may be null )
* fkTableName String => foreign key table name
* fkColumnName String => foreign key column name
* keySeq short => sequence number within a foreign key ( a value of 1 represents the first column of the foreign key , a value of 2 would represent the second column within the foreign key ) .
* pkOwner String => primary key table schema being imported ( may be null )
* pkName String => primary key name ( may be null )
* pkTableName String => primary key table name being imported
* pkColumnName String => primary key column name being imported
2013-05-17 17:54:14 +00:00
*
* @ param owner
* @ param table
* @ param cb
* /
DataSource . prototype . discoverForeignKeys = function ( owner , table , cb ) {
this . freeze ( ) ;
if ( this . adapter . discoverForeignKeys ) {
this . adapter . discoverForeignKeys ( owner , table , cb ) ;
} else if ( cb ) {
cb ( ) ;
}
}
2013-05-21 21:43:25 +00:00
function capitalize ( str ) {
if ( ! str ) {
return str ;
}
2013-05-21 21:54:14 +00:00
return str . charAt ( 0 ) . toUpperCase ( ) + ( ( str . length > 1 ) ? str . slice ( 1 ) . toLowerCase ( ) : '' ) ;
2013-05-21 21:43:25 +00:00
}
function fromDBName ( dbName , camelCase ) {
if ( ! dbName ) {
return dbName ;
}
var parts = dbName . split ( /-|_/ ) ;
parts [ 0 ] = camelCase ? parts [ 0 ] . toLowerCase ( ) : capitalize ( parts [ 0 ] ) ;
for ( var i = 1 ; i < parts . length ; i ++ ) {
parts [ i ] = capitalize ( parts [ i ] ) ;
}
return parts . join ( '' ) ;
}
2013-05-31 06:13:04 +00:00
DataSource . prototype . discoverSchema = function ( owner , table , cb ) {
this . discoverSchemas ( owner , table , { visited : { } , associations : false } , function ( err , schemas ) {
if ( err ) {
cb && cb ( err , schemas ) ;
return ;
}
for ( var s in schemas ) {
cb && cb ( null , schemas [ s ] ) ;
return ;
}
} ) ;
}
2013-05-21 21:25:23 +00:00
/ * *
2013-05-24 05:20:20 +00:00
* Discover schema from a given table / view
2013-05-21 21:25:23 +00:00
* @ param owner
* @ param table
* @ param cb
* /
2013-05-31 06:13:04 +00:00
DataSource . prototype . discoverSchemas = function ( owner , table , options , cb ) {
2013-05-31 00:23:31 +00:00
var self = this ;
2013-05-22 17:41:08 +00:00
var dataSourceName = this . name || this . adapter . name ;
2013-05-31 06:13:04 +00:00
var tasks = [
this . discoverModelProperties . bind ( this , owner , table ) ,
this . discoverPrimaryKeys . bind ( this , owner , table ) ] ;
2013-05-22 17:41:08 +00:00
2013-05-31 06:13:04 +00:00
if ( options . associations ) {
tasks . push ( this . discoverForeignKeys . bind ( this , owner , table ) ) ;
}
2013-05-22 17:41:08 +00:00
2013-05-31 06:13:04 +00:00
async . parallel ( tasks , function ( err , results ) {
2013-05-22 17:41:08 +00:00
2013-05-31 06:13:04 +00:00
if ( err ) {
cb && cb ( err ) ;
return ;
}
2013-05-22 17:41:08 +00:00
2013-05-31 06:13:04 +00:00
var columns = results [ 0 ] ;
if ( ! columns ) {
cb && cb ( ) ;
return ;
}
2013-05-22 17:41:08 +00:00
2013-05-31 06:13:04 +00:00
// Handle primary keys
var primaryKeys = results [ 1 ] ;
var pks = { } ;
primaryKeys . forEach ( function ( pk ) {
pks [ pk . columnName ] = pk . keySeq ;
} ) ;
if ( self . settings . debug ) {
console . log ( 'Primary keys: ' , pks ) ;
}
2013-05-22 19:17:14 +00:00
2013-05-31 06:13:04 +00:00
var schema = {
name : fromDBName ( table , false ) ,
options : {
idInjection : false // DO NOT add id property
} ,
properties : {
2013-05-21 21:25:23 +00:00
}
2013-05-31 06:13:04 +00:00
} ;
schema . options [ dataSourceName ] = {
schema : columns [ 0 ] . owner ,
table : table
} ;
columns . forEach ( function ( item ) {
var i = item ;
var propName = fromDBName ( item . columnName , true ) ;
schema . properties [ propName ] = {
type : item . type ,
required : ( item . nullable === 'N' ) ,
length : item . dataLength
2013-05-21 21:25:23 +00:00
} ;
2013-05-22 17:41:08 +00:00
2013-05-31 06:13:04 +00:00
if ( pks [ item . columnName ] ) {
schema . properties [ propName ] . id = pks [ item . columnName ] ;
}
schema . properties [ propName ] [ dataSourceName ] = {
columnName : i . columnName ,
dataType : i . dataType ,
dataLength : i . dataLength ,
nullable : i . nullable
2013-05-21 21:25:23 +00:00
} ;
2013-05-31 06:13:04 +00:00
} ) ;
2013-05-21 21:25:23 +00:00
2013-05-31 06:13:04 +00:00
// Add current table to the visited tables
options . visited = options . visited || { } ;
var schemaKey = columns [ 0 ] . owner + '.' + table ;
if ( ! options . visited . hasOwnProperty ( schemaKey ) ) {
if ( self . settings . debug ) {
console . log ( 'Adding schema for ' + schemaKey ) ;
}
options . visited [ schemaKey ] = schema ;
}
2013-05-22 17:41:08 +00:00
2013-05-31 06:13:04 +00:00
var otherTables = { } ;
if ( options . associations ) {
// Handle foreign keys
var fks = { } ;
var foreignKeys = results [ 2 ] ;
foreignKeys . forEach ( function ( fk ) {
var fkInfo = {
keySeq : fk . keySeq ,
owner : fk . pkOwner ,
tableName : fk . pkTableName ,
columnName : fk . pkColumnName
2013-05-22 17:41:08 +00:00
} ;
2013-05-31 06:13:04 +00:00
if ( fks [ fk . fkName ] ) {
fks [ fk . fkName ] . push ( fkInfo ) ;
} else {
fks [ fk . fkName ] = [ fkInfo ] ;
}
} ) ;
2013-05-22 17:41:08 +00:00
2013-05-31 06:13:04 +00:00
if ( self . settings . debug ) {
console . log ( 'Foreign keys: ' , fks ) ;
}
foreignKeys . forEach ( function ( fk ) {
2013-05-31 17:25:11 +00:00
var propName = fromDBName ( fk . pkTableName , true ) ;
schema . properties [ propName ] = {
type : fromDBName ( fk . pkTableName , false ) ,
association : {
type : 'belongsTo' ,
foreignKey : fromDBName ( fk . pkColumnName , true )
}
} ;
2013-05-31 06:13:04 +00:00
var key = fk . pkOwner + '.' + fk . pkTableName ;
if ( ! options . visited . hasOwnProperty ( key ) && ! otherTables . hasOwnProperty ( key ) ) {
otherTables [ key ] = { owner : fk . pkOwner , tableName : fk . pkTableName } ;
2013-05-22 17:41:08 +00:00
}
} ) ;
2013-05-31 06:13:04 +00:00
}
2013-05-22 17:41:08 +00:00
2013-05-31 06:13:04 +00:00
if ( Object . keys ( otherTables ) . length === 0 ) {
cb && cb ( null , options . visited ) ;
} else {
var moreTasks = [ ] ;
for ( var t in otherTables ) {
if ( self . settings . debug ) {
console . log ( 'Discovering related schema for ' + schemaKey ) ;
}
moreTasks . push ( DataSource . prototype . discoverSchemas . bind ( self , otherTables [ t ] . owner , otherTables [ t ] . tableName , options ) ) ;
}
async . parallel ( moreTasks , function ( err , results ) {
var result = results && results [ 0 ] ;
cb && cb ( err , result ) ;
} ) ;
}
} ) ;
2013-05-21 21:25:23 +00:00
}
2013-05-17 17:54:14 +00:00
/ * *
* Check whether migrations needed
* This method make sense only for sql adapters .
* /
DataSource . prototype . isActual = function ( cb ) {
this . freeze ( ) ;
if ( this . adapter . isActual ) {
this . adapter . isActual ( cb ) ;
} else if ( cb ) {
cb ( null , true ) ;
}
} ;
/ * *
* Log benchmarked message . Do not redefine this method , if you need to grab
* chema logs , use ` schema.on('log', ...) ` emitter event
*
* @ private used by adapters
* /
DataSource . prototype . log = function ( sql , t ) {
this . emit ( 'log' , sql , t ) ;
} ;
/ * *
* Freeze schema . Behavior depends on adapter
* /
DataSource . prototype . freeze = function freeze ( ) {
if ( this . adapter . freezeSchema ) {
this . adapter . freezeSchema ( ) ;
}
}
/ * *
* Return table name for specified ` modelName `
* @ param { String } modelName
* /
DataSource . prototype . tableName = function ( modelName ) {
2013-05-22 17:41:08 +00:00
var settings = this . definitions [ modelName ] . settings ;
if ( settings [ this . adapter . name ] ) {
return settings [ this . adapter . name ] . table || modelName ;
} else {
return modelName ;
}
} ;
/ * *
* Return column name for specified modelName and propertyName
* @ param modelName
* @ param propertyName
* @ returns { String } columnName
* /
DataSource . prototype . columnName = function ( modelName , propertyName ) {
2013-05-23 01:04:05 +00:00
if ( ! propertyName ) {
return propertyName ;
}
2013-05-22 17:41:08 +00:00
var property = this . definitions [ modelName ] . properties [ propertyName ] ;
2013-05-23 01:04:05 +00:00
if ( property && property [ this . adapter . name ] ) {
2013-05-22 17:41:08 +00:00
return property [ this . adapter . name ] . columnName || propertyName ;
} else {
return propertyName ;
}
} ;
2013-05-29 17:03:01 +00:00
/ * *
* Return column metadata for specified modelName and propertyName
* @ param modelName
* @ param propertyName
* @ returns { Object } column metadata
* /
DataSource . prototype . columnMetadata = function ( modelName , propertyName ) {
if ( ! propertyName ) {
return propertyName ;
}
var property = this . definitions [ modelName ] . properties [ propertyName ] ;
if ( property && property [ this . adapter . name ] ) {
return property [ this . adapter . name ] ;
} else {
return null ;
}
} ;
2013-05-22 17:41:08 +00:00
/ * *
* Return column names for specified modelName
* @ param modelName
* @ returns { [ String ] } column names
* /
DataSource . prototype . columnNames = function ( modelName ) {
var props = this . definitions [ modelName ] . properties ;
var cols = [ ] ;
for ( var p in props ) {
if ( props [ p ] [ this . adapter . name ] ) {
cols . push ( props [ p ] [ this . adapter . name ] . columnName || p ) ;
} else {
cols . push ( p ) ;
}
}
return cols ;
2013-05-17 17:54:14 +00:00
} ;
2013-05-22 17:41:08 +00:00
/ * *
* Find the ID column name
* @ param modelName
* @ returns { String } columnName for ID
* /
2013-05-23 01:04:05 +00:00
DataSource . prototype . idColumnName = function ( modelName ) {
return this . columnName ( modelName , this . idName ( modelName ) ) ;
}
/ * *
2013-05-30 23:06:04 +00:00
* Find the ID property name
2013-05-23 01:04:05 +00:00
* @ param modelName
2013-05-30 23:06:04 +00:00
* @ returns { String } property for ID
2013-05-23 01:04:05 +00:00
* /
DataSource . prototype . idName = function ( modelName ) {
2013-05-22 17:41:08 +00:00
var props = this . definitions [ modelName ] . properties ;
2013-05-23 17:46:01 +00:00
for ( var key in props ) {
2013-05-23 01:04:05 +00:00
if ( props [ key ] . id ) {
return key ;
2013-05-22 17:41:08 +00:00
}
2013-05-23 17:46:01 +00:00
}
2013-05-22 17:41:08 +00:00
return null ;
}
2013-05-30 23:06:04 +00:00
/ * *
* Find the ID property names sorted by the index
* @ param modelName
* @ returns { [ String ] } property names for IDs
* /
DataSource . prototype . idNames = function ( modelName ) {
var ids = [ ] ;
var props = this . definitions [ modelName ] . properties ;
for ( var key in props ) {
if ( props [ key ] . id && props [ key ] . id > 0 ) {
ids . push ( { name : key , id : props [ key ] . id } ) ;
}
}
ids . sort ( function ( a , b ) {
return a . key - b . key ;
} ) ;
var names = ids . map ( function ( id ) {
return id . name ;
} ) ;
return names ;
}
2013-05-22 17:41:08 +00:00
2013-05-17 17:54:14 +00:00
/ * *
* Define foreign key
* @ param { String } className
* @ param { String } key - name of key field
* /
DataSource . prototype . defineForeignKey = function defineForeignKey ( className , key , foreignClassName ) {
// quit if key already defined
if ( this . definitions [ className ] . properties [ key ] ) return ;
if ( this . adapter . defineForeignKey ) {
var cb = function ( err , keyType ) {
if ( err ) throw err ;
this . definitions [ className ] . properties [ key ] = { type : keyType } ;
} . bind ( this ) ;
switch ( this . adapter . defineForeignKey . length ) {
case 4 :
this . adapter . defineForeignKey ( className , key , foreignClassName , cb ) ;
break ;
default :
case 3 :
this . adapter . defineForeignKey ( className , key , cb ) ;
break ;
}
} else {
this . definitions [ className ] . properties [ key ] = { type : Number } ;
}
2013-05-24 22:10:34 +00:00
2013-05-17 17:54:14 +00:00
this . models [ className ] . registerProperty ( key ) ;
} ;
/ * *
* Close database connection
* /
DataSource . prototype . disconnect = function disconnect ( cb ) {
2013-05-31 20:10:09 +00:00
var self = this ;
if ( this . connected && ( typeof this . adapter . disconnect === 'function' ) ) {
this . adapter . disconnect ( function ( err , result ) {
self . connected = false ;
cb && cb ( err , result ) ;
} ) ;
} else {
process . nextTick ( function ( ) {
cb && cb ( ) ;
} ) ;
2013-05-17 17:54:14 +00:00
}
} ;
DataSource . prototype . copyModel = function copyModel ( Master ) {
var schema = this ;
var className = Master . modelName ;
var md = Master . schema . definitions [ className ] ;
var Slave = function SlaveModel ( ) {
Master . apply ( this , [ ] . slice . call ( arguments ) ) ;
this . schema = schema ;
} ;
util . inherits ( Slave , Master ) ;
Slave . _ _proto _ _ = Master ;
hiddenProperty ( Slave , 'schema' , schema ) ;
hiddenProperty ( Slave , 'modelName' , className ) ;
hiddenProperty ( Slave , 'relations' , Master . relations ) ;
if ( ! ( className in schema . models ) ) {
// store class in model pool
schema . models [ className ] = Slave ;
schema . definitions [ className ] = {
properties : md . properties ,
settings : md . settings
} ;
if ( ! schema . isTransaction ) {
schema . adapter . define ( {
model : Slave ,
properties : md . properties ,
settings : md . settings
} ) ;
}
}
return Slave ;
} ;
DataSource . prototype . transaction = function ( ) {
var schema = this ;
var transaction = new EventEmitter ;
transaction . isTransaction = true ;
transaction . origin = schema ;
transaction . name = schema . name ;
transaction . settings = schema . settings ;
transaction . connected = false ;
transaction . connecting = false ;
transaction . adapter = schema . adapter . transaction ( ) ;
// create blank models pool
transaction . models = { } ;
transaction . definitions = { } ;
for ( var i in schema . models ) {
schema . copyModel . call ( transaction , schema . models [ i ] ) ;
}
transaction . connect = schema . connect ;
transaction . exec = function ( cb ) {
transaction . adapter . exec ( cb ) ;
} ;
return transaction ;
} ;
/ * *
* Define hidden property
* /
function hiddenProperty ( where , property , value ) {
Object . defineProperty ( where , property , {
writable : false ,
enumerable : false ,
configurable : false ,
value : value
} ) ;
}
/ * *
* Define readonly property on object
*
* @ param { Object } obj
* @ param { String } key
* @ param { Mixed } value
* /
function defineReadonlyProp ( obj , key , value ) {
Object . defineProperty ( obj , key , {
writable : false ,
enumerable : true ,
configurable : true ,
value : value
} ) ;
}