c5a2512f506b56caa3ce7374de6484043cc1bb5b
[lhc/web/wiklou.git] / includes / cache / localisation / LCStoreStaticArray.php
1 <?php
2 /**
3 * Localisation cache storage based on PHP files and static arrays.
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 */
22
23 use Wikimedia\StaticArrayWriter;
24
25 /**
26 * @since 1.26
27 */
28 class LCStoreStaticArray implements LCStore {
29 /** @var string|null Current language code. */
30 private $currentLang = null;
31
32 /** @var array Localisation data. */
33 private $data = [];
34
35 /** @var string File name. */
36 private $fname = null;
37
38 /** @var string Directory for cache files. */
39 private $directory;
40
41 public function __construct( $conf = [] ) {
42 global $wgCacheDirectory;
43
44 $this->directory = $conf['directory'] ?? $wgCacheDirectory;
45 }
46
47 public function startWrite( $code ) {
48 if ( !file_exists( $this->directory ) ) {
49 if ( !wfMkdirParents( $this->directory, null, __METHOD__ ) ) {
50 throw new MWException( "Unable to create the localisation store " .
51 "directory \"{$this->directory}\"" );
52 }
53 }
54
55 $this->currentLang = $code;
56 $this->fname = $this->directory . '/' . $code . '.l10n.php';
57 $this->data[$code] = [];
58 if ( file_exists( $this->fname ) ) {
59 $this->data[$code] = require $this->fname;
60 }
61 }
62
63 public function set( $key, $value ) {
64 $this->data[$this->currentLang][$key] = self::encode( $value );
65 }
66
67 /**
68 * Encodes a value into an array format
69 *
70 * @param mixed $value
71 * @return array
72 * @throws RuntimeException
73 */
74 public static function encode( $value ) {
75 if ( is_scalar( $value ) || $value === null ) {
76 // [V]alue
77 return [ 'v', $value ];
78 }
79 if ( is_object( $value ) ) {
80 // [S]erialized
81 return [ 's', serialize( $value ) ];
82 }
83 if ( is_array( $value ) ) {
84 // [A]rray
85 return [ 'a', array_map( 'LCStoreStaticArray::encode', $value ) ];
86 }
87
88 throw new RuntimeException( 'Cannot encode ' . var_export( $value, true ) );
89 }
90
91 /**
92 * Decode something that was encoded with encode
93 *
94 * @param array $encoded
95 * @return array|mixed
96 * @throws RuntimeException
97 */
98 public static function decode( array $encoded ) {
99 $type = $encoded[0];
100 $data = $encoded[1];
101
102 switch ( $type ) {
103 case 'v':
104 return $data;
105 case 's':
106 return unserialize( $data );
107 case 'a':
108 return array_map( 'LCStoreStaticArray::decode', $data );
109 default:
110 throw new RuntimeException(
111 'Unable to decode ' . var_export( $encoded, true ) );
112 }
113 }
114
115 public function finishWrite() {
116 $writer = new StaticArrayWriter();
117 $out = $writer->create(
118 $this->data[$this->currentLang],
119 'Generated by LCStoreStaticArray.php -- do not edit!'
120 );
121 file_put_contents( $this->fname, $out );
122 $this->currentLang = null;
123 $this->fname = null;
124 }
125
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 ) ) {
130 return null;
131 }
132 $this->data[$code] = require $fname;
133 }
134 $data = $this->data[$code];
135 if ( array_key_exists( $key, $data ) ) {
136 return self::decode( $data[$key] );
137 }
138 return null;
139 }
140 }