2011-03-06 18:19:19 -05:00
|
|
|
/**
|
|
|
|
* Contains property object generator
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
var util = require( './util' );
|
|
|
|
|
|
|
|
|
|
|
|
exports.setup = function( base, dest, properties, members )
|
|
|
|
{
|
|
|
|
var prop_pub = properties[ 'public' ],
|
|
|
|
prop_prot = properties[ 'protected' ]
|
|
|
|
;
|
|
|
|
|
|
|
|
// initialize each of the properties for this instance to
|
|
|
|
// ensure we're not sharing references to prototype values
|
|
|
|
for ( prop in prop_pub )
|
|
|
|
{
|
|
|
|
// initialize the value with a clone to ensure that they do
|
|
|
|
// not share references (and therefore, data)
|
|
|
|
base[ prop ] = util.clone( prop_pub[ prop ] );
|
|
|
|
}
|
|
|
|
|
|
|
|
var methods_protected = members[ 'protected' ],
|
|
|
|
hasOwn = Array.prototype.hasOwnProperty
|
|
|
|
;
|
|
|
|
|
|
|
|
// copy over the methods
|
|
|
|
for ( method_name in methods_protected )
|
|
|
|
{
|
|
|
|
if ( hasOwn.call( methods_protected, method_name ) )
|
|
|
|
{
|
|
|
|
dest[ method_name ] = methods_protected[ method_name ];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// initialize protected properties and store in instance data
|
|
|
|
for ( prop in prop_prot )
|
|
|
|
{
|
|
|
|
dest[ prop ] = util.clone( prop_prot[ prop ] );
|
|
|
|
}
|
2011-03-06 21:48:18 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a proxy for all given properties to the given base
|
|
|
|
*
|
|
|
|
* The proxy uses getters/setters to forward all calls to the base. The
|
|
|
|
* destination object will be used as the proxy. All properties within props
|
|
|
|
* will be used proxied.
|
|
|
|
*
|
|
|
|
* To summarize: for each property in props, all gets and sets will be forwarded
|
|
|
|
* to base.
|
|
|
|
*
|
|
|
|
* @param {Object} base object to proxy to
|
|
|
|
* @param {Object} dest object to treat as proxy (set getters/setters on)
|
|
|
|
* @param {Object} props properties to proxy
|
|
|
|
*
|
|
|
|
* @return {Object} returns dest
|
|
|
|
*/
|
|
|
|
exports.createPropProxy = function( base, dest, props )
|
|
|
|
{
|
|
|
|
var hasOwn = Object.prototype.hasOwnProperty;
|
|
|
|
|
|
|
|
for ( prop in props )
|
|
|
|
{
|
|
|
|
if ( !( hasOwn.call( props, prop ) ) )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
( function( prop )
|
|
|
|
{
|
2011-03-06 22:16:50 -05:00
|
|
|
// just in case it's already defined, so we don't throw an error
|
|
|
|
dest[ prop ] = undefined;
|
|
|
|
|
2011-03-06 21:48:18 -05:00
|
|
|
// public properties, when set internally, must forward to the
|
|
|
|
// actual variable
|
2011-03-06 22:16:50 -05:00
|
|
|
Object.defineProperty( dest, prop, {
|
|
|
|
set: function( val )
|
|
|
|
{
|
|
|
|
base[ prop ] = val;
|
|
|
|
},
|
|
|
|
|
|
|
|
get: function()
|
|
|
|
{
|
|
|
|
return base[ prop ];
|
|
|
|
},
|
2011-03-06 21:48:18 -05:00
|
|
|
|
2011-03-06 22:16:50 -05:00
|
|
|
enumerable: true,
|
2011-03-06 21:48:18 -05:00
|
|
|
} );
|
|
|
|
} ).call( null, prop );
|
|
|
|
}
|
|
|
|
|
|
|
|
return dest;
|
|
|
|
};
|
2011-03-06 18:19:19 -05:00
|
|
|
|