-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBaseConditionStrategy.php
87 lines (76 loc) · 1.84 KB
/
BaseConditionStrategy.php
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
<?php
/**
* Class BaseConditionStrategy
*
* The class is used to determine if the given element meets the condition form the query.
*
* All subclases should be used as a parameter for the XMLParser class.
*/
abstract class BaseConditionStrategy
{
/**
* @var Query
*/
protected $query;
/**
* @var XMLParser
*/
protected $xmlParser;
/**
* @var array SimpleXMLElement
*/
protected $selectedElements = [];
/**
* BaseConditionStrategy constructor.
* @param Query $query
* @param XMLParser $xmlParser
*/
public function __construct(Query $query, XMLParser $xmlParser)
{
$this->query = $query;
$this->xmlParser = $xmlParser;
}
/**
* Check if the element meets the condition from the query.
*
* @param SimpleXMLElement $element
*
* @return bool
*/
abstract public function meetsCondition(SimpleXMLElement $element);
/**
* @return SimpleXMLElement[]
*/
public function getSelectedElements()
{
return $this->selectedElements;
}
/**
* @param array $selectedElements
*/
public function setSelectedElements($selectedElements)
{
$this->selectedElements = $selectedElements;
}
/**
* Lok deeper into the tree.
*
* @param $decisionMaker
* @param $element
* @param bool $addToSelected
*
* @return bool
*/
protected function lookDeeper($decisionMaker, $element, $addToSelected = true)
{
$subElements = $this->xmlParser->findFromElements($decisionMaker, $element, false, true);
if (count($subElements) > 0) {
if ($addToSelected === true) {
$this->selectedElements[] = $element;
}
return true;
} else {
return false;
}
}
}