|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* Class ContainerArrayOfObject |
|
5
|
|
|
* |
|
6
|
|
|
* Access to object container as to array by index |
|
7
|
|
|
* Features: |
|
8
|
|
|
* - applying predefined functions to container content via __call(); |
|
9
|
|
|
* - get sum of specified property of containing objects; |
|
10
|
|
|
* - aggregate value of property of containing objects; |
|
11
|
|
|
* |
|
12
|
|
|
*/ |
|
13
|
|
|
class ContainerArrayOfObject extends ArrayAccessV2 { |
|
14
|
|
|
|
|
15
|
|
|
/** |
|
16
|
|
|
* Automatically apply all non-exist function from static::$_call list to $_container content |
|
17
|
|
|
* |
|
18
|
|
|
* @param string $method_name |
|
19
|
|
|
* @param array $arguments |
|
20
|
|
|
*/ |
|
21
|
|
View Code Duplication |
public function __call($method_name, array $arguments) { |
|
|
|
|
|
|
22
|
|
|
foreach($this->_container as $object) { |
|
23
|
|
|
if(is_object($object) && method_exists($object, $method_name)) { |
|
24
|
|
|
call_user_func_array(array($object, $method_name), $arguments); |
|
25
|
|
|
} |
|
26
|
|
|
} |
|
27
|
|
|
} |
|
28
|
|
|
|
|
29
|
|
|
/** |
|
30
|
|
|
* Summarize property values of contained objects |
|
31
|
|
|
* |
|
32
|
|
|
* @param string $property_name |
|
33
|
|
|
* |
|
34
|
|
|
* @return float |
|
35
|
|
|
*/ |
|
36
|
|
|
public function getSumProperty($property_name) { |
|
37
|
|
|
$result = 0.0; |
|
38
|
|
|
foreach($this->_container as $object) { |
|
39
|
|
|
if(is_object($object) && property_exists($object, $property_name)) { |
|
40
|
|
|
$result += $object->$property_name; |
|
41
|
|
|
} |
|
42
|
|
|
} |
|
43
|
|
|
|
|
44
|
|
|
return $result; |
|
45
|
|
|
} |
|
46
|
|
|
|
|
47
|
|
|
/** |
|
48
|
|
|
* Aggregate value of $property_name in containing object by $method_name |
|
49
|
|
|
* |
|
50
|
|
|
* @param string $method_name |
|
51
|
|
|
* |
|
52
|
|
|
* @return mixed |
|
53
|
|
|
*/ |
|
54
|
|
View Code Duplication |
public function aggregateByMethod($method_name, &$result) { |
|
|
|
|
|
|
55
|
|
|
foreach($this->_container as $object) { |
|
56
|
|
|
if(is_object($object) && method_exists($object, $method_name)) { |
|
57
|
|
|
call_user_func(array($object, $method_name), $result); |
|
58
|
|
|
} |
|
59
|
|
|
} |
|
60
|
|
|
} |
|
61
|
|
|
|
|
62
|
|
|
} |
|
63
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.