(bug 37755) Set robot meta tags for 'view source' pages
[lhc/web/wiklou.git] / includes / db / IORMTable.php
1 <?php
2 /**
3 * Interface for objects representing a single database table.
4 * Documentation inline and at https://www.mediawiki.org/wiki/Manual:ORMTable
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
20 *
21 * @since 1.20
22 *
23 * @file
24 * @ingroup ORM
25 *
26 * @licence GNU GPL v2 or later
27 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
28 */
29
30 interface IORMTable {
31
32 /**
33 * Returns the name of the database table objects of this type are stored in.
34 *
35 * @since 1.20
36 *
37 * @return string
38 */
39 public function getName();
40
41 /**
42 * Returns the name of a IORMRow implementing class that
43 * represents single rows in this table.
44 *
45 * @since 1.20
46 *
47 * @return string
48 */
49 public function getRowClass();
50
51 /**
52 * Returns an array with the fields and their types this object contains.
53 * This corresponds directly to the fields in the database, without prefix.
54 *
55 * field name => type
56 *
57 * Allowed types:
58 * * id
59 * * str
60 * * int
61 * * float
62 * * bool
63 * * array
64 * * blob
65 *
66 * TODO: get rid of the id field. Every row instance needs to have
67 * one so this is just causing hassle at various locations by requiring an extra check for field name.
68 *
69 * @since 1.20
70 *
71 * @return array
72 */
73 public function getFields();
74
75 /**
76 * Returns a list of default field values.
77 * field name => field value
78 *
79 * @since 1.20
80 *
81 * @return array
82 */
83 public function getDefaults();
84
85 /**
86 * Returns a list of the summary fields.
87 * These are fields that cache computed values, such as the amount of linked objects of $type.
88 * This is relevant as one might not want to do actions such as log changes when these get updated.
89 *
90 * @since 1.20
91 *
92 * @return array
93 */
94 public function getSummaryFields();
95
96 /**
97 * Selects the the specified fields of the records matching the provided
98 * conditions and returns them as DBDataObject. Field names get prefixed.
99 *
100 * @since 1.20
101 *
102 * @param array|string|null $fields
103 * @param array $conditions
104 * @param array $options
105 * @param string|null $functionName
106 *
107 * @return ORMResult
108 */
109 public function select( $fields = null, array $conditions = array(),
110 array $options = array(), $functionName = null );
111
112 /**
113 * Selects the the specified fields of the records matching the provided
114 * conditions and returns them as DBDataObject. Field names get prefixed.
115 *
116 * @since 1.20
117 *
118 * @param array|string|null $fields
119 * @param array $conditions
120 * @param array $options
121 * @param string|null $functionName
122 *
123 * @return array of self
124 */
125 public function selectObjects( $fields = null, array $conditions = array(),
126 array $options = array(), $functionName = null );
127
128 /**
129 * Do the actual select.
130 *
131 * @since 1.20
132 *
133 * @param null|string|array $fields
134 * @param array $conditions
135 * @param array $options
136 * @param null|string $functionName
137 *
138 * @return ResultWrapper
139 */
140 public function rawSelect( $fields = null, array $conditions = array(),
141 array $options = array(), $functionName = null );
142
143 /**
144 * Selects the the specified fields of the records matching the provided
145 * conditions and returns them as associative arrays.
146 * Provided field names get prefixed.
147 * Returned field names will not have a prefix.
148 *
149 * When $collapse is true:
150 * If one field is selected, each item in the result array will be this field.
151 * If two fields are selected, each item in the result array will have as key
152 * the first field and as value the second field.
153 * If more then two fields are selected, each item will be an associative array.
154 *
155 * @since 1.20
156 *
157 * @param array|string|null $fields
158 * @param array $conditions
159 * @param array $options
160 * @param boolean $collapse Set to false to always return each result row as associative array.
161 * @param string|null $functionName
162 *
163 * @return array of array
164 */
165 public function selectFields( $fields = null, array $conditions = array(),
166 array $options = array(), $collapse = true, $functionName = null );
167
168 /**
169 * Selects the the specified fields of the first matching record.
170 * Field names get prefixed.
171 *
172 * @since 1.20
173 *
174 * @param array|string|null $fields
175 * @param array $conditions
176 * @param array $options
177 * @param string|null $functionName
178 *
179 * @return IORMRow|bool False on failure
180 */
181 public function selectRow( $fields = null, array $conditions = array(),
182 array $options = array(), $functionName = null );
183
184 /**
185 * Selects the the specified fields of the records matching the provided
186 * conditions. Field names do NOT get prefixed.
187 *
188 * @since 1.20
189 *
190 * @param array $fields
191 * @param array $conditions
192 * @param array $options
193 * @param string|null $functionName
194 *
195 * @return ResultWrapper
196 */
197 public function rawSelectRow( array $fields, array $conditions = array(),
198 array $options = array(), $functionName = null );
199
200 /**
201 * Selects the the specified fields of the first record matching the provided
202 * conditions and returns it as an associative array, or false when nothing matches.
203 * This method makes use of selectFields and expects the same parameters and
204 * returns the same results (if there are any, if there are none, this method returns false).
205 * @see IORMTable::selectFields
206 *
207 * @since 1.20
208 *
209 * @param array|string|null $fields
210 * @param array $conditions
211 * @param array $options
212 * @param boolean $collapse Set to false to always return each result row as associative array.
213 * @param string|null $functionName
214 *
215 * @return mixed|array|bool False on failure
216 */
217 public function selectFieldsRow( $fields = null, array $conditions = array(),
218 array $options = array(), $collapse = true, $functionName = null );
219
220 /**
221 * Returns if there is at least one record matching the provided conditions.
222 * Condition field names get prefixed.
223 *
224 * @since 1.20
225 *
226 * @param array $conditions
227 *
228 * @return boolean
229 */
230 public function has( array $conditions = array() );
231
232 /**
233 * Returns the amount of matching records.
234 * Condition field names get prefixed.
235 *
236 * Note that this can be expensive on large tables.
237 * In such cases you might want to use DatabaseBase::estimateRowCount instead.
238 *
239 * @since 1.20
240 *
241 * @param array $conditions
242 * @param array $options
243 *
244 * @return integer
245 */
246 public function count( array $conditions = array(), array $options = array() );
247
248 /**
249 * Removes the object from the database.
250 *
251 * @since 1.20
252 *
253 * @param array $conditions
254 * @param string|null $functionName
255 *
256 * @return boolean Success indicator
257 */
258 public function delete( array $conditions, $functionName = null );
259
260 /**
261 * Get API parameters for the fields supported by this object.
262 *
263 * @since 1.20
264 *
265 * @param boolean $requireParams
266 * @param boolean $setDefaults
267 *
268 * @return array
269 */
270 public function getAPIParams( $requireParams = false, $setDefaults = false );
271
272 /**
273 * Returns an array with the fields and their descriptions.
274 *
275 * field name => field description
276 *
277 * @since 1.20
278 *
279 * @return array
280 */
281 public function getFieldDescriptions();
282
283 /**
284 * Get the database type used for read operations.
285 *
286 * @since 1.20
287 *
288 * @return integer DB_ enum
289 */
290 public function getReadDb();
291
292 /**
293 * Set the database type to use for read operations.
294 *
295 * @param integer $db
296 *
297 * @since 1.20
298 */
299 public function setReadDb( $db );
300
301
302 /**
303 * Get the ID of the any foreign wiki to use as a target for database operations
304 *
305 * @since 1.20
306 *
307 * @return String|bool The target wiki, in a form that LBFactory understands (or false if the local wiki is used)
308 */
309 public function getTargetWiki();
310
311 /**
312 * Set the ID of the any foreign wiki to use as a target for database operations
313 *
314 * @param String|bool $wiki The target wiki, in a form that LBFactory understands (or false if the local wiki shall be used)
315 *
316 * @since 1.20
317 */
318 public function setTargetWiki( $wiki );
319
320 /**
321 * Get the database type used for read operations.
322 * This is to be used instead of wfGetDB.
323 *
324 * @see LoadBalancer::getConnection
325 *
326 * @since 1.20
327 *
328 * @return DatabaseBase The database object
329 */
330 public function getReadDbConnection();
331
332 /**
333 * Get the database type used for read operations.
334 * This is to be used instead of wfGetDB.
335 *
336 * @see LoadBalancer::getConnection
337 *
338 * @since 1.20
339 *
340 * @return DatabaseBase The database object
341 */
342 public function getWriteDbConnection();
343
344 /**
345 * Get the database type used for read operations.
346 *
347 * @see wfGetLB
348 *
349 * @since 1.20
350 *
351 * @return LoadBalancer The database load balancer object
352 */
353 public function getLoadBalancer();
354
355 /**
356 * Releases the lease on the given database connection. This is useful mainly
357 * for connections to a foreign wiki. It does nothing for connections to the local wiki.
358 *
359 * @see LoadBalancer::reuseConnection
360 *
361 * @param DatabaseBase $db the database
362 *
363 * @since 1.20
364 */
365 public function releaseConnection( DatabaseBase $db );
366
367 /**
368 * Update the records matching the provided conditions by
369 * setting the fields that are keys in the $values param to
370 * their corresponding values.
371 *
372 * @since 1.20
373 *
374 * @param array $values
375 * @param array $conditions
376 *
377 * @return boolean Success indicator
378 */
379 public function update( array $values, array $conditions = array() );
380
381 /**
382 * Computes the values of the summary fields of the objects matching the provided conditions.
383 *
384 * @since 1.20
385 *
386 * @param array|string|null $summaryFields
387 * @param array $conditions
388 */
389 public function updateSummaryFields( $summaryFields = null, array $conditions = array() );
390
391 /**
392 * Takes in an associative array with field names as keys and
393 * their values as value. The field names are prefixed with the
394 * db field prefix.
395 *
396 * @since 1.20
397 *
398 * @param array $values
399 *
400 * @return array
401 */
402 public function getPrefixedValues( array $values );
403
404 /**
405 * Takes in a field or array of fields and returns an
406 * array with their prefixed versions, ready for db usage.
407 *
408 * @since 1.20
409 *
410 * @param array|string $fields
411 *
412 * @return array
413 */
414 public function getPrefixedFields( array $fields );
415
416 /**
417 * Takes in a field and returns an it's prefixed version, ready for db usage.
418 *
419 * @since 1.20
420 *
421 * @param string|array $field
422 *
423 * @return string
424 */
425 public function getPrefixedField( $field );
426
427 /**
428 * Takes an array of field names with prefix and returns the unprefixed equivalent.
429 *
430 * @since 1.20
431 *
432 * @param array $fieldNames
433 *
434 * @return array
435 */
436 public function unprefixFieldNames( array $fieldNames );
437
438 /**
439 * Takes a field name with prefix and returns the unprefixed equivalent.
440 *
441 * @since 1.20
442 *
443 * @param string $fieldName
444 *
445 * @return string
446 */
447 public function unprefixFieldName( $fieldName );
448
449 /**
450 * Get an instance of this class.
451 *
452 * @since 1.20
453 *
454 * @return IORMTable
455 */
456 public static function singleton();
457
458 /**
459 * Get an array with fields from a database result,
460 * that can be fed directly to the constructor or
461 * to setFields.
462 *
463 * @since 1.20
464 *
465 * @param stdClass $result
466 *
467 * @return array
468 */
469 public function getFieldsFromDBResult( stdClass $result );
470
471 /**
472 * Get a new instance of the class from a database result.
473 *
474 * @since 1.20
475 *
476 * @param stdClass $result
477 *
478 * @return IORMRow
479 */
480 public function newRowFromDBResult( stdClass $result );
481
482 /**
483 * Get a new instance of the class from an array.
484 *
485 * @since 1.20
486 *
487 * @param array $data
488 * @param boolean $loadDefaults
489 *
490 * @return IORMRow
491 */
492 public function newRow( array $data, $loadDefaults = false );
493
494 /**
495 * Return the names of the fields.
496 *
497 * @since 1.20
498 *
499 * @return array
500 */
501 public function getFieldNames();
502
503 /**
504 * Gets if the object can take a certain field.
505 *
506 * @since 1.20
507 *
508 * @param string $name
509 *
510 * @return boolean
511 */
512 public function canHaveField( $name );
513
514 }