3 * Localisation cache storage based on PHP files and static arrays.
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
26 class LCStoreStaticArray
implements LCStore
{
27 /** @var string|null Current language code. */
28 private $currentLang = null;
30 /** @var array Localisation data. */
31 private $data = array();
33 /** @var string File name. */
34 private $fname = null;
36 /** @var string Directory for cache files. */
39 public function __construct( $conf = array() ) {
40 global $wgCacheDirectory;
42 if ( isset( $conf['directory'] ) ) {
43 $this->directory
= $conf['directory'];
45 $this->directory
= $wgCacheDirectory;
49 public function startWrite( $code ) {
50 $this->currentLang
= $code;
51 $this->fname
= $this->directory
. '/' . $code . '.l10n.php';
52 $this->data
[$code] = array();
53 if ( file_exists( $this->fname
) ) {
54 $this->data
[$code] = require $this->fname
;
58 public function set( $key, $value ) {
59 $this->data
[$this->currentLang
][$key] = self
::encode( $value );
63 * Encodes a value into an array format
67 * @throws RuntimeException
69 public static function encode( $value ) {
70 if ( is_scalar( $value ) ||
$value === null ) {
72 return array( 'v', $value );
74 if ( is_object( $value ) ) {
76 return array( 's', serialize( $value ) );
78 if ( is_array( $value ) ) {
80 return array( 'a', array_map( function ( $v ) {
81 return LCStoreStaticArray
::encode( $v );
85 throw new RuntimeException( 'Cannot encode ' . var_export( $value, true ) );
89 * Decode something that was encoded with encode
91 * @param array $encoded
93 * @throws RuntimeException
95 public static function decode( array $encoded ) {
103 return unserialize( $data );
105 return array_map( function ( $v ) {
106 return LCStoreStaticArray
::decode( $v );
109 throw new RuntimeException(
110 'Unable to decode ' . var_export( $encoded, true ) );
114 public function finishWrite() {
118 "// Generated by LCStoreStaticArray.php -- do not edit!\n" .
120 var_export( $this->data
[$this->currentLang
], true ) . ';'
122 $this->currentLang
= null;
126 public function get( $code, $key ) {
127 if ( !array_key_exists( $code, $this->data
) ) {
128 $fname = $this->directory
. '/' . $code . '.l10n.php';
129 if ( !file_exists( $fname ) ) {
132 $this->data
[$code] = require $fname;
134 $data = $this->data
[$code];
135 if ( array_key_exists( $key, $data ) ) {
136 return self
::decode( $data[$key] );