e1c048c538f807847927fd13d1088d2f45155e98
[core.git] / inc / classes / main / criteria / class_BaseCriteria.php
1 <?php
2 /**
3  * A general crtieria class
4  *
5  * @author              Roland Haeder <webmaster@ship-simu.org>
6  * @version             0.0.0
7  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team
8  * @license             GNU GPL 3.0 or any newer version
9  * @link                http://www.ship-simu.org
10  *
11  * This program is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation, either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23  */
24 class BaseCriteria extends BaseFrameworkSystem {
25         /**
26          * Wrapper class name stored in config entry
27          */
28         private $wrapperConfigEntry = '';
29
30         /**
31          * Criteria to handle
32          */
33         private $criteria = array();
34         /**
35          * Protected constructor
36          *
37          * @param       $className      Name of the class
38          * @return      void
39          */
40         protected function __construct ($className) {
41                 // Call parent constructor
42                 parent::__construct($className);
43         }
44
45         /**
46          * Setter for wrapper class name
47          *
48          * @param       $wrapperConfigEntry             Configuration entry which hold the wrapper class' name
49          * @return      void
50          */
51         public final function setWrapperConfigEntry ($wrapperConfigEntry) {
52                 $this->wrapperConfigEntry = (string) $wrapperConfigEntry;
53         }
54
55         /**
56          * Getter for wrapper class name
57          *
58          * @return      $wrapperConfigEntry             Configuration entry which hold the wrapper class' name
59          */
60         public final function getWrapperConfigEntry () {
61                 return $this->wrapperConfigEntry;
62         }
63
64         /**
65          * Getter for criteria array
66          *
67          * @return      $criteria
68          */
69         public final function getCriteriaArray () {
70                 return $this->criteria;
71         }
72
73         /**
74          * Add criteria, this method converts dashes to underscores because dashes
75          * are not valid for criteria keys.
76          *
77          * @param       $criteriaKey    Criteria key
78          * @param       $criteriaValue  Criteria value
79          * @return      void
80          */
81         public final function addCriteria ($criteriaKey, $criteriaValue) {
82                 $this->criteria[$this->convertDashesToUnderscores($criteriaKey)] = (string)$criteriaValue;
83         }
84
85         /**
86          * Add configured criteria
87          *
88          * @param       $criteriaKey    Criteria key
89          * @param       $configEntry    Configuration entry
90          * @return      void
91          */
92         public final function addConfiguredCriteria ($criteriaKey, $configEntry) {
93                 // Add the configuration entry as a criteria
94                 $value = $this->getConfigInstance()->getConfigEntry($configEntry);
95                 $this->addCriteria($criteriaKey, $value);
96         }
97
98         /**
99          * Get criteria element or null if not found
100          *
101          * @param       $criteriaKey    The requested criteria key
102          * @return      $value                  Whether the value of the critera or null
103          */
104         public function getCriteriaElemnent ($criteriaKey) {
105                 // Convert dashes to underscore
106                 $criteriaKey = $this->convertDashesToUnderscores($criteriaKey);
107
108                 // Debug message
109                 //* NOISY-DEBUG: */ $this->debugOutput('CRITERIA: criteriaKey=' . $criteriaKey . ',criteria()=' . count($this->criteria));
110
111                 // Default is not found
112                 $value = NULL;
113
114                 // Is the criteria there?
115                 if (isset($this->criteria[$criteriaKey])) {
116                         // Then use it
117                         $value = $this->criteria[$criteriaKey];
118                 } // END - if
119
120                 // Return the value
121                 return $value;
122         }
123
124         /**
125          * Checks whether given array entry matches
126          *
127          * @param       $entryArray             Array with the entries to find
128          * @return      $matches                Whether the entry matches or not
129          */
130         public function ifEntryMatches (array $entryArray) {
131                 // First nothing matches and nothing is counted
132                 $matches = false;
133                 $counted = 0;
134
135                 // Walk through all entries
136                 foreach ($entryArray as $key => $entry) {
137                         // Convert dashes to underscore
138                         $key = $this->convertDashesToUnderscores($key);
139
140                         // Then walk through all search criteria
141                         foreach ($this->criteria as $criteriaKey => $criteriaValue) {
142                                 // Convert dashes to underscore
143                                 $criteriaKey = $this->convertDashesToUnderscores($criteriaKey);
144
145                                 // Is the element found and does it match?
146                                 if (($key == $criteriaKey) && ($criteriaValue == $entry)) {
147                                         // Then count this one up
148                                         $counted++;
149                                 } // END - if
150                         } // END - foreach
151                 } // END - foreach
152
153                 // Now check if expected criteria counts match
154                 $matches = ($counted == count($this->criteria));
155
156                 // Return the result
157                 return $matches;
158         }
159
160         /**
161          * "Getter" for a cache key
162          *
163          * @param       $onlyKeys       Only use these keys for a cache key
164          * @return      $cacheKey       The key suitable for the cache system
165          */
166         public function getCacheKey ($onlyKeys = array()) {
167                 // Initialize the key
168                 $cacheKey = '';
169
170                 // Now walk through all criterias
171                 foreach ($this->criteria as $criteriaKey => $criteriaValue) {
172                         // Convert dashes to underscore
173                         $criteriaKey = $this->convertDashesToUnderscores($criteriaKey);
174
175                         // Is the value in array or is $onlyKeys empty?
176                         if ((isset($onlyKeys[$criteriaKey])) || (count($onlyKeys) == 0)) {
177                                 // Add the value URL encoded to avoid any trouble with special characters
178                                 $cacheKey .= sprintf("%s=%s;",
179                                         $criteriaKey,
180                                         urlencode($criteriaValue)
181                                 );
182                         } // END - if
183                 } // END - foreach
184
185                 // Remove last semicolon
186                 $cacheKey = substr($cacheKey, 0, -1);
187
188                 // Is the instance SearchCriteria?
189                 if ($this instanceof SearchCriteria) {
190                         // Check if 'limit' and 'skip' are in
191                         if (((isset($onlyKeys['limit'])) && (isset($onlyKeys['skip']))) || (count($onlyKeys) == 0)) {
192                                 // Add limit and skip values
193                                 $cacheKey .= sprintf(";%%limit%%=%s;%%skip%%=%s",
194                                         $this->getLimit(),
195                                         $this->getSkip()
196                                 );
197                         } // END - if
198                 } // END - if
199
200                 // Return the cache key
201                 return $cacheKey;
202         }
203
204         /**
205          * Count the criteria, e.g. useful to find out if a database query has no limitation (search criteria)
206          *
207          * @return      $count  Count of all criteria entries
208          */
209         public final function count () {
210                 // Return it
211                 return count($this->criteria);
212         }
213 }
214
215 // [EOF]
216 ?>