API: fix copyright symbol, coding style cleanup, more braces
[lhc/web/wiklou.git] / includes / api / ApiResult.php
1 <?php
2
3 /**
4 * Created on Sep 4, 2006
5 *
6 * API for MediaWiki 1.8+
7 *
8 * Copyright © 2006 Yuri Astrakhan <Firstname><Lastname>@gmail.com
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 * http://www.gnu.org/copyleft/gpl.html
24 */
25
26 if ( !defined( 'MEDIAWIKI' ) ) {
27 // Eclipse helper - will be ignored in production
28 require_once( 'ApiBase.php' );
29 }
30
31 /**
32 * This class represents the result of the API operations.
33 * It simply wraps a nested array() structure, adding some functions to simplify array's modifications.
34 * As various modules execute, they add different pieces of information to this result,
35 * structuring it as it will be given to the client.
36 *
37 * Each subarray may either be a dictionary - key-value pairs with unique keys,
38 * or lists, where the items are added using $data[] = $value notation.
39 *
40 * There are two special key values that change how XML output is generated:
41 * '_element' This key sets the tag name for the rest of the elements in the current array.
42 * It is only inserted if the formatter returned true for getNeedsRawData()
43 * '*' This key has special meaning only to the XML formatter, and is outputed as is
44 * for all others. In XML it becomes the content of the current element.
45 *
46 * @ingroup API
47 */
48 class ApiResult extends ApiBase {
49
50 private $mData, $mIsRawMode, $mSize, $mCheckingSize;
51
52 /**
53 * Constructor
54 * @param $main ApiMain object
55 */
56 public function __construct( $main ) {
57 parent::__construct( $main, 'result' );
58 $this->mIsRawMode = false;
59 $this->mCheckingSize = true;
60 $this->reset();
61 }
62
63 /**
64 * Clear the current result data.
65 */
66 public function reset() {
67 $this->mData = array();
68 $this->mSize = 0;
69 }
70
71 /**
72 * Call this function when special elements such as '_element'
73 * are needed by the formatter, for example in XML printing.
74 */
75 public function setRawMode() {
76 $this->mIsRawMode = true;
77 }
78
79 /**
80 * Returns true whether the formatter requested raw data.
81 * @return bool
82 */
83 public function getIsRawMode() {
84 return $this->mIsRawMode;
85 }
86
87 /**
88 * Get the result's internal data array (read-only)
89 * @return array
90 */
91 public function getData() {
92 return $this->mData;
93 }
94
95 /**
96 * Get the 'real' size of a result item. This means the strlen() of the item,
97 * or the sum of the strlen()s of the elements if the item is an array.
98 * @param $value mixed
99 * @return int
100 */
101 public static function size( $value ) {
102 $s = 0;
103 if ( is_array( $value ) ) {
104 foreach ( $value as $v ) {
105 $s += self::size( $v );
106 }
107 } elseif ( !is_object( $value ) ) {
108 // Objects can't always be cast to string
109 $s = strlen( $value );
110 }
111 return $s;
112 }
113
114 /**
115 * Get the size of the result, i.e. the amount of bytes in it
116 * @return int
117 */
118 public function getSize() {
119 return $this->mSize;
120 }
121
122 /**
123 * Disable size checking in addValue(). Don't use this unless you
124 * REALLY know what you're doing. Values added while size checking
125 * was disabled will not be counted (ever)
126 */
127 public function disableSizeCheck() {
128 $this->mCheckingSize = false;
129 }
130
131 /**
132 * Re-enable size checking in addValue()
133 */
134 public function enableSizeCheck() {
135 $this->mCheckingSize = true;
136 }
137
138 /**
139 * Add an output value to the array by name.
140 * Verifies that value with the same name has not been added before.
141 * @param $arr array to add $value to
142 * @param $name string Index of $arr to add $value at
143 * @param $value mixed
144 */
145 public static function setElement( &$arr, $name, $value ) {
146 if ( $arr === null || $name === null || $value === null || !is_array( $arr ) || is_array( $name ) ) {
147 ApiBase::dieDebug( __METHOD__, 'Bad parameter' );
148 }
149
150 if ( !isset ( $arr[$name] ) ) {
151 $arr[$name] = $value;
152 } elseif ( is_array( $arr[$name] ) && is_array( $value ) ) {
153 $merged = array_intersect_key( $arr[$name], $value );
154 if ( !count( $merged ) ) {
155 $arr[$name] += $value;
156 } else {
157 ApiBase::dieDebug( __METHOD__, "Attempting to merge element $name" );
158 }
159 } else {
160 ApiBase::dieDebug( __METHOD__, "Attempting to add element $name=$value, existing value is {$arr[$name]}" );
161 }
162 }
163
164 /**
165 * Adds a content element to an array.
166 * Use this function instead of hardcoding the '*' element.
167 * @param $arr array to add the content element to
168 * @param $subElemName string when present, content element is created
169 * as a sub item of $arr. Use this parameter to create elements in
170 * format <elem>text</elem> without attributes
171 */
172 public static function setContent( &$arr, $value, $subElemName = null ) {
173 if ( is_array( $value ) ) {
174 ApiBase::dieDebug( __METHOD__, 'Bad parameter' );
175 }
176 if ( is_null( $subElemName ) ) {
177 ApiResult::setElement( $arr, '*', $value );
178 } else {
179 if ( !isset( $arr[$subElemName] ) ) {
180 $arr[$subElemName] = array();
181 }
182 ApiResult::setElement( $arr[$subElemName], '*', $value );
183 }
184 }
185
186 /**
187 * In case the array contains indexed values (in addition to named),
188 * give all indexed values the given tag name. This function MUST be
189 * called on every arrray that has numerical indexes.
190 * @param $arr array
191 * @param $tag string Tag name
192 */
193 public function setIndexedTagName( &$arr, $tag ) {
194 // In raw mode, add the '_element', otherwise just ignore
195 if ( !$this->getIsRawMode() ) {
196 return;
197 }
198 if ( $arr === null || $tag === null || !is_array( $arr ) || is_array( $tag ) )
199 {
200 ApiBase::dieDebug( __METHOD__, 'Bad parameter' );
201 }
202 // Do not use setElement() as it is ok to call this more than once
203 $arr['_element'] = $tag;
204 }
205
206 /**
207 * Calls setIndexedTagName() on each sub-array of $arr
208 * @param $arr array
209 * @param $tag string Tag name
210 */
211 public function setIndexedTagName_recursive( &$arr, $tag ) {
212 if ( !is_array( $arr ) ) {
213 return;
214 }
215 foreach ( $arr as &$a ) {
216 if ( !is_array( $a ) ) {
217 continue;
218 }
219 $this->setIndexedTagName( $a, $tag );
220 $this->setIndexedTagName_recursive( $a, $tag );
221 }
222 }
223
224 /**
225 * Calls setIndexedTagName() on an array already in the result.
226 * Don't specify a path to a value that's not in the result, or
227 * you'll get nasty errors.
228 * @param $path array Path to the array, like addValue()'s $path
229 * @param $tag string
230 */
231 public function setIndexedTagName_internal( $path, $tag ) {
232 $data = &$this->mData;
233 foreach ( (array)$path as $p ) {
234 if ( !isset( $data[$p] ) ) {
235 $data[$p] = array();
236 }
237 $data = &$data[$p];
238 }
239 if ( is_null( $data ) ) {
240 return;
241 }
242 $this->setIndexedTagName( $data, $tag );
243 }
244
245 /**
246 * Add value to the output data at the given path.
247 * Path is an indexed array, each element specifing the branch at which to add the new value
248 * Setting $path to array('a','b','c') is equivalent to data['a']['b']['c'] = $value
249 * If $name is empty, the $value is added as a next list element data[] = $value
250 * @return bool True if $value fits in the result, false if not
251 */
252 public function addValue( $path, $name, $value ) {
253 global $wgAPIMaxResultSize;
254 $data = &$this->mData;
255 if ( $this->mCheckingSize ) {
256 $newsize = $this->mSize + self::size( $value );
257 if ( $newsize > $wgAPIMaxResultSize ) {
258 return false;
259 }
260 $this->mSize = $newsize;
261 }
262
263 if ( !is_null( $path ) ) {
264 if ( is_array( $path ) ) {
265 foreach ( $path as $p ) {
266 if ( !isset( $data[$p] ) ) {
267 $data[$p] = array();
268 }
269 $data = &$data[$p];
270 }
271 } else {
272 if ( !isset( $data[$path] ) ) {
273 $data[$path] = array();
274 }
275 $data = &$data[$path];
276 }
277 }
278
279 if ( !$name ) {
280 $data[] = $value; // Add list element
281 } else {
282 ApiResult::setElement( $data, $name, $value ); // Add named element
283 }
284 return true;
285 }
286
287 /**
288 * Unset a value previously added to the result set.
289 * Fails silently if the value isn't found.
290 * For parameters, see addValue()
291 * @param $path array
292 * @param $name string
293 */
294 public function unsetValue( $path, $name ) {
295 $data = &$this->mData;
296 if ( !is_null( $path ) ) {
297 foreach ( (array)$path as $p ) {
298 if ( !isset( $data[$p] ) ) {
299 return;
300 }
301 $data = &$data[$p];
302 }
303 }
304 $this->mSize -= self::size( $data[$name] );
305 unset( $data[$name] );
306 }
307
308 /**
309 * Ensure all values in this result are valid UTF-8.
310 */
311 public function cleanUpUTF8() {
312 array_walk_recursive( $this->mData, array( 'ApiResult', 'cleanUp_helper' ) );
313 }
314
315 /**
316 * Callback function for cleanUpUTF8()
317 */
318 private static function cleanUp_helper( &$s ) {
319 if ( !is_string( $s ) ) {
320 return;
321 }
322 global $wgContLang;
323 $s = $wgContLang->normalize( $s );
324 }
325
326 public function execute() {
327 ApiBase::dieDebug( __METHOD__, 'execute() is not supported on Result object' );
328 }
329
330 public function getVersion() {
331 return __CLASS__ . ': $Id$';
332 }
333 }