2016-08-04 14:55:37 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Ion
|
|
|
|
*
|
|
|
|
* Building blocks for web development
|
|
|
|
*
|
2016-08-26 23:10:20 -04:00
|
|
|
* PHP version 5.6
|
|
|
|
*
|
2016-08-04 14:55:37 -04:00
|
|
|
* @package Ion
|
2016-08-26 23:10:20 -04:00
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
|
|
|
* @copyright 2015 - 2016 Timothy J. Warren
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
* @version 1.0.0
|
|
|
|
* @link https://git.timshomepage.net/timw4mail/ion
|
2016-08-04 14:55:37 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\Ion;
|
|
|
|
|
|
|
|
use ReflectionClass;
|
|
|
|
use ReflectionMethod;
|
|
|
|
use ReflectionProperty;
|
|
|
|
use InvalidArgumentException;
|
|
|
|
use BadMethodCallException;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Friend class for testing
|
|
|
|
*/
|
|
|
|
class Friend {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Object to create a friend of
|
|
|
|
* @var object
|
|
|
|
*/
|
|
|
|
private $_friend_;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reflection class of the object
|
|
|
|
* @var object
|
|
|
|
*/
|
|
|
|
private $_reflect_;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a friend object
|
|
|
|
*
|
|
|
|
* @param object $obj
|
2016-08-26 23:10:20 -04:00
|
|
|
* @throws InvalidArgumentException
|
2016-08-04 14:55:37 -04:00
|
|
|
*/
|
|
|
|
public function __construct($obj)
|
|
|
|
{
|
|
|
|
if ( ! is_object($obj))
|
|
|
|
{
|
|
|
|
throw new InvalidArgumentException("Friend must be an object");
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->_friend_ = $obj;
|
|
|
|
$this->_reflect_ = new ReflectionClass($obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve a friend's property
|
|
|
|
*
|
|
|
|
* @param string $key
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function __get($key)
|
|
|
|
{
|
|
|
|
if ($this->_reflect_->hasProperty($key))
|
|
|
|
{
|
|
|
|
$property = $this->_get_property($key);
|
|
|
|
return $property->getValue($this->_friend_);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a friend's property
|
|
|
|
*
|
|
|
|
* @param string $key
|
2016-08-26 17:21:50 -04:00
|
|
|
* @param mixed $value
|
2016-08-04 14:55:37 -04:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __set($key, $value)
|
|
|
|
{
|
|
|
|
if ($this->_reflect_->hasProperty($key))
|
|
|
|
{
|
|
|
|
$property = $this->_get_property($key);
|
|
|
|
$property->setValue($this->_friend_, $value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calls a protected or private method on the friend
|
|
|
|
*
|
|
|
|
* @param string $method
|
2016-08-26 17:21:50 -04:00
|
|
|
* @param array $args
|
2016-08-04 14:55:37 -04:00
|
|
|
* @return mixed
|
2016-08-26 23:10:20 -04:00
|
|
|
* @throws BadMethodCallException
|
2016-08-04 14:55:37 -04:00
|
|
|
*/
|
|
|
|
public function __call($method, $args)
|
|
|
|
{
|
|
|
|
if ( ! $this->_reflect_->hasMethod($method))
|
|
|
|
{
|
|
|
|
throw new BadMethodCallException("Method '{$method}' does not exist");
|
|
|
|
}
|
|
|
|
|
|
|
|
$friendMethod = new ReflectionMethod($this->_friend_, $method);
|
|
|
|
$friendMethod->setAccessible(TRUE);
|
|
|
|
return $friendMethod->invokeArgs($this->_friend_, $args);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Iterates over parent classes to get a ReflectionProperty
|
|
|
|
*
|
|
|
|
* @codeCoverageIgnore
|
|
|
|
* @param string $name
|
|
|
|
* @return ReflectionProperty|null
|
|
|
|
*/
|
|
|
|
private function _get_property($name)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
$property = $this->_reflect_->getProperty($name);
|
|
|
|
$property->setAccessible(TRUE);
|
|
|
|
return $property;
|
|
|
|
}
|
|
|
|
// Return NULL on any exception, so no further logic needed
|
|
|
|
// in the catch block
|
|
|
|
catch (\Exception $e)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// End of Friend.php
|