1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
<?php
/**
* TLazyLoadList, TObjectProxy classes file.
*
* @author Wei Zhuo <weizhuo[at]gmail[dot]com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package System.Data.SqlMap
*/
/**
* TLazyLoadList executes mapped statements when the proxy collection is first accessed.
*
* @author Wei Zhuo <weizho[at]gmail[dot]com>
* @package System.Data.SqlMap
* @since 3.1
*/
class TLazyLoadList
{
private $_param;
private $_target;
private $_propertyName='';
private $_statement='';
private $_loaded=false;
private $_innerList;
private $_connection;
/**
* Create a new proxy list that will execute the mapped statement when any
* of the list's method are accessed for the first time.
* @param TMappedStatement statement to be executed to load the data.
* @param mixed parameter value for the statement.
* @param object result object that contains the lazy collection.
* @param string property of the result object to set the loaded collection.
*/
protected function __construct($mappedStatement, $param, $target, $propertyName)
{
$this->_param = $param;
$this->_target = $target;
$this->_statement = $mappedStatement;
$this->_connection=$mappedStatement->getManager()->getDbConnection();
$this->_propertyName = $propertyName;
}
/**
* Create a new instance of a lazy collection.
* @param TMappedStatement statement to be executed to load the data.
* @param mixed parameter value for the statement.
* @param object result object that contains the lazy collection.
* @param string property of the result object to set the loaded collection.
* @return TObjectProxy proxied collection object.
*/
public static function newInstance($mappedStatement, $param, $target, $propertyName)
{
$handler = new self($mappedStatement, $param, $target, $propertyName);
$statement = $mappedStatement->getStatement();
$registry=$mappedStatement->getManager()->getTypeHandlers();
$list = $statement->createInstanceOfListClass($registry);
if(!is_object($list))
throw new TSqlMapExecutionException('sqlmap_invalid_lazyload_list',$statement->getID());
return new TObjectProxy($handler, $list);
}
/**
* Relay the method call to the underlying collection.
* @param string method name.
* @param array method parameters.
*/
public function intercept($method, $arguments)
{
return call_user_func_array(array($this->_innerList, $method), $arguments);
}
/**
* Load the data by executing the mapped statement.
*/
protected function fetchListData()
{
if($this->_loaded == false)
{
$this->_innerList = $this->_statement->executeQueryForList($this->_connection,$this->_param);
$this->_loaded = true;
//replace the target property with real list
TPropertyAccess::set($this->_target, $this->_propertyName, $this->_innerList);
}
}
/**
* Try to fetch the data when any of the proxy collection method is called.
* @param string method name.
* @return boolean true if the underlying collection has the corresponding method name.
*/
public function hasMethod($method)
{
$this->fetchListData();
if(is_object($this->_innerList))
return in_array($method, get_class_methods($this->_innerList));
return false;
}
}
|