3 * Database row sorting.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * @author Tim Starling
27 abstract class Collation
{
28 private static $instance;
34 public static function singleton() {
35 if ( !self
::$instance ) {
36 global $wgCategoryCollation;
37 self
::$instance = self
::factory( $wgCategoryCollation );
39 return self
::$instance;
45 * @param string $collationName
48 public static function factory( $collationName ) {
49 switch ( $collationName ) {
51 return new UppercaseCollation
;
53 return new IdentityCollation
;
55 return new IcuCollation( 'root' );
57 return new CollationCkb
;
59 return new CollationEt
;
62 if ( preg_match( '/^uca-([a-z@=-]+)$/', $collationName, $match ) ) {
63 return new IcuCollation( $match[1] );
66 # Provide a mechanism for extensions to hook in.
67 $collationObject = null;
68 Hooks
::run( 'Collation::factory', [ $collationName, &$collationObject ] );
70 if ( $collationObject instanceof Collation
) {
71 return $collationObject;
74 // If all else fails...
75 throw new MWException( __METHOD__
. ": unknown collation type \"$collationName\"" );
80 * Given a string, convert it to a (hopefully short) key that can be used
81 * for efficient sorting. A binary sort according to the sortkeys
82 * corresponds to a logical sort of the corresponding strings. Current
83 * code expects that a line feed character should sort before all others, but
84 * has no other particular expectations (and that one can be changed if
89 * @param string $string UTF-8 string
90 * @return string Binary sortkey
92 abstract function getSortKey( $string );
95 * Given a string, return the logical "first letter" to be used for
96 * grouping on category pages and so on. This has to be coordinated
97 * carefully with convertToSortkey(), or else the sorted list might jump
98 * back and forth between the same "initial letters" or other pathological
99 * behavior. For instance, if you just return the first character, but "a"
100 * sorts the same as "A" based on getSortKey(), then you might get a
112 * etc., assuming for the sake of argument that $wgCapitalLinks is false.
116 * @param string $string UTF-8 string
117 * @return string UTF-8 string corresponding to the first letter of input
119 abstract function getFirstLetter( $string );