Merge "Add .pipeline/ with dev image variant"
[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 $this->directory = $conf['directory'];
43 }
44
45 public function startWrite( $code ) {
46 if ( !file_exists( $this->directory ) && !wfMkdirParents( $this->directory, null, __METHOD__ ) ) {
47 throw new MWException( "Unable to create the localisation store " .
48 "directory \"{$this->directory}\"" );
49 }
50
51 $this->currentLang = $code;
52 $this->fname = $this->directory . '/' . $code . '.l10n.php';
53 $this->data[$code] = [];
54 if ( file_exists( $this->fname ) ) {
55 $this->data[$code] = require $this->fname;
56 }
57 }
58
59 public function set( $key, $value ) {
60 $this->data[$this->currentLang][$key] = self::encode( $value );
61 }
62
63 /**
64 * Encodes a value into an array format
65 *
66 * @param mixed $value
67 * @return array|mixed
68 * @throws RuntimeException
69 */
70 public static function encode( $value ) {
71 if ( is_array( $value ) ) {
72 // [a]rray
73 return [ 'a', array_map( 'LCStoreStaticArray::encode', $value ) ];
74 }
75 if ( is_object( $value ) ) {
76 // [s]erialized
77 return [ 's', serialize( $value ) ];
78 }
79 if ( is_scalar( $value ) || $value === null ) {
80 // Scalar value, written directly without array
81 return $value;
82 }
83
84 throw new RuntimeException( 'Cannot encode ' . var_export( $value, true ) );
85 }
86
87 /**
88 * Decode something that was encoded with encode
89 *
90 * @param mixed $encoded
91 * @return array|mixed
92 * @throws RuntimeException
93 */
94 public static function decode( $encoded ) {
95 if ( !is_array( $encoded ) ) {
96 // Scalar values are written directly without array
97 return $encoded;
98 }
99
100 list( $type, $data ) = $encoded;
101
102 switch ( $type ) {
103 case 'a':
104 return array_map( 'LCStoreStaticArray::decode', $data );
105 case 's':
106 return unserialize( $data );
107 case 'v':
108 // Support: MediaWiki 1.32 and earlier
109 // Backward compatibility with older file format
110 return $data;
111 default:
112 throw new RuntimeException(
113 'Unable to decode ' . var_export( $encoded, true ) );
114 }
115 }
116
117 public function finishWrite() {
118 $writer = new StaticArrayWriter();
119 $out = $writer->create(
120 $this->data[$this->currentLang],
121 'Generated by LCStoreStaticArray.php -- do not edit!'
122 );
123 file_put_contents( $this->fname, $out );
124 // Release the data to manage the memory in rebuildLocalisationCache
125 unset( $this->data[$this->currentLang] );
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 }