2011-01-18 23:47:58 -05:00
|
|
|
/**
|
|
|
|
* Handles building members (properties, methods)
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Mike Gerwitz
|
|
|
|
*
|
|
|
|
* This file is part of ease.js.
|
|
|
|
*
|
|
|
|
* ease.js is free software: you can redistribute it and/or modify it under the
|
|
|
|
* terms of the GNU Lesser General Public License as published by the Free
|
|
|
|
* Software Foundation, either version 3 of the License, or (at your option)
|
|
|
|
* any later version.
|
|
|
|
*
|
|
|
|
* 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 Lesser General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @author Mike Gerwitz
|
|
|
|
* @package core
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-01-20 23:53:00 -05:00
|
|
|
/**
|
|
|
|
* Initializes member object
|
|
|
|
*
|
|
|
|
* The member object contains members for each level of visibility (public,
|
|
|
|
* protected and private).
|
|
|
|
*
|
2011-01-21 00:09:26 -05:00
|
|
|
* @param {Object} mpublic default public members
|
|
|
|
* @param {Object} mprotected default protected members
|
|
|
|
* @param {Object} mprivate default private members
|
|
|
|
*
|
2011-01-20 23:53:00 -05:00
|
|
|
* @return {{public: Object, protected: Object, private: Object}}
|
|
|
|
*/
|
2011-01-20 23:56:39 -05:00
|
|
|
exports.initMembers = function( mpublic, mprotected, mprivate )
|
2011-01-20 23:53:00 -05:00
|
|
|
{
|
|
|
|
return {
|
2011-01-20 23:56:39 -05:00
|
|
|
'public': mpublic || {},
|
|
|
|
'protected': mprotected || {},
|
|
|
|
'private': mprivate || {},
|
2011-01-20 23:53:00 -05:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-01-18 23:47:58 -05:00
|
|
|
/**
|
|
|
|
* Copies a property to the appropriate member prototype, depending on
|
|
|
|
* visibility, and assigns necessary metadata from keywords
|
|
|
|
*
|
|
|
|
* @param {{public: Object, protected: Object, private: Object}} members
|
|
|
|
*
|
|
|
|
* @param {Object} meta metadata container
|
|
|
|
* @param {string} name property name
|
|
|
|
* @param {*} value property value
|
|
|
|
*
|
|
|
|
* @param {Object.<string,boolean>} keywords parsed keywords
|
|
|
|
*
|
|
|
|
* @return {undefined}
|
|
|
|
*/
|
|
|
|
exports.buildProp = function( members, meta, name, value, keywords )
|
|
|
|
{
|
2011-01-20 22:11:36 -05:00
|
|
|
getMemberVisibility( members, keywords )[ name ] = value;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-01-20 23:50:53 -05:00
|
|
|
/**
|
|
|
|
* Copies a getter to the appropriate member prototype, depending on
|
|
|
|
* visibility, and assigns necessary metadata from keywords
|
|
|
|
*
|
|
|
|
* @param {{public: Object, protected: Object, private: Object}} members
|
|
|
|
*
|
|
|
|
* @param {Object} meta metadata container
|
|
|
|
* @param {string} name getter name
|
|
|
|
* @param {*} value getter value
|
|
|
|
*
|
|
|
|
* @param {Object.<string,boolean>} keywords parsed keywords
|
|
|
|
*
|
|
|
|
* @return {undefined}
|
|
|
|
*/
|
|
|
|
exports.buildGetter = function( members, meta, name, value, keywords )
|
|
|
|
{
|
|
|
|
getMemberVisibility( members, keywords ).__defineGetter__( name, value );
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copies a setter to the appropriate member prototype, depending on
|
|
|
|
* visibility, and assigns necessary metadata from keywords
|
|
|
|
*
|
|
|
|
* @param {{public: Object, protected: Object, private: Object}} members
|
|
|
|
*
|
|
|
|
* @param {Object} meta metadata container
|
|
|
|
* @param {string} name setter name
|
|
|
|
* @param {*} value setter value
|
|
|
|
*
|
|
|
|
* @param {Object.<string,boolean>} keywords parsed keywords
|
|
|
|
*
|
|
|
|
* @return {undefined}
|
|
|
|
*/
|
|
|
|
exports.buildSetter = function( members, meta, name, value, keywords )
|
|
|
|
{
|
|
|
|
getMemberVisibility( members, keywords ).__defineSetter__( name, value );
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-01-20 22:11:36 -05:00
|
|
|
/**
|
|
|
|
* Returns member prototype to use for the requested visibility
|
|
|
|
*
|
|
|
|
* @param {{public: Object, protected: Object, private: Object}} members
|
|
|
|
*
|
|
|
|
* @param {Object.<string,boolean>} keywords parsed keywords
|
|
|
|
*
|
|
|
|
* @return {Object} reference to visibility of members argument to use
|
|
|
|
*/
|
|
|
|
function getMemberVisibility( members, keywords )
|
|
|
|
{
|
|
|
|
var viserr = function()
|
|
|
|
{
|
|
|
|
throw TypeError(
|
|
|
|
"Only one of public, protected or private may be used"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// there's cleaner ways of doing this, but consider it loop unrolling for
|
|
|
|
// performance
|
2011-01-20 21:51:35 -05:00
|
|
|
if ( keywords[ 'private' ] )
|
2011-01-20 21:46:49 -05:00
|
|
|
{
|
2011-01-20 22:11:36 -05:00
|
|
|
( keywords[ 'public' ] || keywords[ 'protected' ] ) && viserr();
|
|
|
|
return members[ 'private' ];
|
2011-01-20 21:46:49 -05:00
|
|
|
}
|
2011-01-20 21:51:35 -05:00
|
|
|
else if ( keywords[ 'protected' ] )
|
2011-01-20 21:48:09 -05:00
|
|
|
{
|
2011-01-20 22:11:36 -05:00
|
|
|
( keywords[ 'public' ] || keywords[ 'private' ] ) && viserr();
|
|
|
|
return members[ 'protected' ];
|
2011-01-20 21:48:09 -05:00
|
|
|
}
|
2011-01-20 21:50:52 -05:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// public keyword is the default, so explicitly specifying it is only
|
|
|
|
// for clarity
|
2011-01-20 22:11:36 -05:00
|
|
|
( keywords[ 'private' ] || keywords[ 'protected' ] ) && viserr();
|
|
|
|
return members[ 'public' ];
|
2011-01-20 21:50:52 -05:00
|
|
|
}
|
2011-01-20 22:11:36 -05:00
|
|
|
}
|
2011-01-18 23:47:58 -05:00
|
|
|
|