Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / utils / FileContentsHasher.php
blobfc97fb8745504e776099a5ae6c4de8edc45608fc
1 <?php
3 use Wikimedia\ObjectCache\APCUBagOStuff;
4 use Wikimedia\ObjectCache\BagOStuff;
5 use Wikimedia\ObjectCache\EmptyBagOStuff;
7 /**
8 * Generate hash digests of file contents to help with cache invalidation.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License along
21 * with this program; if not, write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 * http://www.gnu.org/copyleft/gpl.html
25 * @file
27 class FileContentsHasher {
28 private const ALGO = 'md4';
30 /** @var BagOStuff */
31 protected $cache;
33 /** @var FileContentsHasher */
34 private static $instance;
36 public function __construct() {
37 $this->cache = function_exists( 'apcu_fetch' ) ? new APCUBagOStuff() : new EmptyBagOStuff();
40 /**
41 * Get the singleton instance of this class.
43 * @return FileContentsHasher
45 public static function singleton() {
46 if ( !self::$instance ) {
47 self::$instance = new self;
50 return self::$instance;
53 /**
54 * Get a hash of a file's contents, either by retrieving a previously-
55 * computed hash from the cache, or by computing a hash from the file.
57 * @param string $filePath Full path to the file.
58 * @return string|bool Hash of file contents, or false if the file could not be read.
60 private function getFileContentsHashInternal( $filePath ) {
61 // phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged
62 $mtime = @filemtime( $filePath );
63 if ( $mtime === false ) {
64 return false;
67 $cacheKey = $this->cache->makeGlobalKey( __CLASS__, $filePath, $mtime, self::ALGO );
68 return $this->cache->getWithSetCallback(
69 $cacheKey,
70 $this->cache::TTL_DAY,
71 static function () use ( $filePath ) {
72 // phpcs:ignore Generic.PHP.NoSilencedErrors.Discouraged
73 $contents = @file_get_contents( $filePath );
74 if ( $contents === false ) {
75 // Don't cache false
76 return false;
79 return hash( self::ALGO, $contents );
84 /**
85 * Get a hash of the combined contents of one or more files, either by
86 * retrieving a previously-computed hash from the cache, or by computing
87 * a hash from the files.
89 * @param string|string[] $filePaths One or more file paths.
90 * @return string|bool Hash of files' contents, or false if no file could not be read.
92 public static function getFileContentsHash( $filePaths ) {
93 $instance = self::singleton();
95 if ( !is_array( $filePaths ) ) {
96 $filePaths = (array)$filePaths;
99 if ( count( $filePaths ) === 1 ) {
100 $hash = $instance->getFileContentsHashInternal( $filePaths[0] );
101 return $hash;
104 sort( $filePaths );
105 $hashes = [];
106 foreach ( $filePaths as $filePath ) {
107 $hashes[] = $instance->getFileContentsHashInternal( $filePath ) ?: '';
110 $hashes = implode( '', $hashes );
111 return $hashes ? hash( self::ALGO, $hashes ) : false;