Merge "RevisionStoreDbTestBase, remove redundant needsDB override"
[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 if ( isset( $conf['directory'] ) ) {
45 $this->directory = $conf['directory'];
46 } else {
47 $this->directory = $wgCacheDirectory;
48 }
49 }
50
51 public function startWrite( $code ) {
52 if ( !file_exists( $this->directory ) ) {
53 if ( !wfMkdirParents( $this->directory, null, __METHOD__ ) ) {
54 throw new MWException( "Unable to create the localisation store " .
55 "directory \"{$this->directory}\"" );
56 }
57 }
58
59 $this->currentLang = $code;
60 $this->fname = $this->directory . '/' . $code . '.l10n.php';
61 $this->data[$code] = [];
62 if ( file_exists( $this->fname ) ) {
63 $this->data[$code] = require $this->fname;
64 }
65 }
66
67 public function set( $key, $value ) {
68 $this->data[$this->currentLang][$key] = self::encode( $value );
69 }
70
71 /**
72 * Encodes a value into an array format
73 *
74 * @param mixed $value
75 * @return array
76 * @throws RuntimeException
77 */
78 public static function encode( $value ) {
79 if ( is_scalar( $value ) || $value === null ) {
80 // [V]alue
81 return [ 'v', $value ];
82 }
83 if ( is_object( $value ) ) {
84 // [S]erialized
85 return [ 's', serialize( $value ) ];
86 }
87 if ( is_array( $value ) ) {
88 // [A]rray
89 return [ 'a', array_map( 'LCStoreStaticArray::encode', $value ) ];
90 }
91
92 throw new RuntimeException( 'Cannot encode ' . var_export( $value, true ) );
93 }
94
95 /**
96 * Decode something that was encoded with encode
97 *
98 * @param array $encoded
99 * @return array|mixed
100 * @throws RuntimeException
101 */
102 public static function decode( array $encoded ) {
103 $type = $encoded[0];
104 $data = $encoded[1];
105
106 switch ( $type ) {
107 case 'v':
108 return $data;
109 case 's':
110 return unserialize( $data );
111 case 'a':
112 return array_map( 'LCStoreStaticArray::decode', $data );
113 default:
114 throw new RuntimeException(
115 'Unable to decode ' . var_export( $encoded, true ) );
116 }
117 }
118
119 public function finishWrite() {
120 $writer = new StaticArrayWriter();
121 $out = $writer->create(
122 $this->data[$this->currentLang],
123 'Generated by LCStoreStaticArray.php -- do not edit!'
124 );
125 file_put_contents( $this->fname, $out );
126 $this->currentLang = null;
127 $this->fname = null;
128 }
129
130 public function get( $code, $key ) {
131 if ( !array_key_exists( $code, $this->data ) ) {
132 $fname = $this->directory . '/' . $code . '.l10n.php';
133 if ( !file_exists( $fname ) ) {
134 return null;
135 }
136 $this->data[$code] = require $fname;
137 }
138 $data = $this->data[$code];
139 if ( array_key_exists( $key, $data ) ) {
140 return self::decode( $data[$key] );
141 }
142 return null;
143 }
144 }