2022-10-10 11:46:50 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
|
*
|
|
|
|
|
* @file
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
use MediaWiki\Json\JsonCodec;
|
|
|
|
|
|
2024-08-27 12:00:25 +00:00
|
|
|
// @codeCoverageIgnoreStart
|
2022-10-10 11:46:50 +00:00
|
|
|
require_once __DIR__ . '/../includes/Benchmarker.php';
|
2024-08-27 12:00:25 +00:00
|
|
|
// @codeCoverageIgnoreEnd
|
2022-10-10 11:46:50 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @ingroup Benchmark
|
|
|
|
|
*/
|
|
|
|
|
class BenchmarkJsonCodec extends Benchmarker {
|
2024-09-12 19:59:28 +00:00
|
|
|
/** @inheritDoc */
|
2022-10-10 11:46:50 +00:00
|
|
|
protected $defaultCount = 100;
|
|
|
|
|
|
|
|
|
|
public function __construct() {
|
|
|
|
|
parent::__construct();
|
|
|
|
|
$this->addDescription( 'Benchmarks JsonCodec.' );
|
|
|
|
|
$this->addOption(
|
|
|
|
|
'file',
|
|
|
|
|
'A json file, or a php file that returns a data structure. Default is config-schema.php',
|
|
|
|
|
false,
|
|
|
|
|
true
|
|
|
|
|
);
|
|
|
|
|
$this->addOption(
|
|
|
|
|
'assoc',
|
|
|
|
|
'Whether JSON objects should be represented as associative arrays when loading'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function execute() {
|
|
|
|
|
$file = $this->getOption( 'file', MW_INSTALL_PATH . '/includes/config-schema.php' );
|
|
|
|
|
$data = $this->loadData( $file );
|
|
|
|
|
$bytes = json_encode( $data );
|
|
|
|
|
|
|
|
|
|
$codec = new JsonCodec();
|
|
|
|
|
|
|
|
|
|
$this->bench( [
|
|
|
|
|
"JsonCodec::serialize ($file)" => [
|
|
|
|
|
'function' => static function ( JsonCodec $codec, $data ) {
|
|
|
|
|
$codec->serialize( $data );
|
|
|
|
|
},
|
|
|
|
|
'args' => [ $codec, $data ]
|
|
|
|
|
],
|
2024-05-04 08:58:57 +00:00
|
|
|
"JsonCodec::deserialize ($file)" => [
|
2022-10-10 11:46:50 +00:00
|
|
|
'function' => static function ( JsonCodec $codec, $bytes ) {
|
2024-05-04 08:58:57 +00:00
|
|
|
$codec->deserialize( $bytes );
|
2022-10-10 11:46:50 +00:00
|
|
|
},
|
|
|
|
|
'args' => [ $codec, $bytes ]
|
|
|
|
|
],
|
|
|
|
|
"JsonCodec::detectNonSerializableData ($file)" => [
|
|
|
|
|
'function' => static function ( JsonCodec $codec, $data ) {
|
|
|
|
|
$codec->detectNonSerializableData( $data );
|
|
|
|
|
},
|
|
|
|
|
'args' => [ $codec, $data ]
|
|
|
|
|
],
|
|
|
|
|
] );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private function loadData( $file ) {
|
|
|
|
|
if ( str_ends_with( $file, '.php' ) ) {
|
|
|
|
|
$data = include $file;
|
|
|
|
|
if ( !$data ) {
|
|
|
|
|
$this->fatalError( "Failed to load data from " . $file );
|
|
|
|
|
}
|
|
|
|
|
return $data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$raw = $this->loadFile( $file );
|
|
|
|
|
$data = json_decode( $raw, $this->getOption( 'assoc', false ) );
|
|
|
|
|
|
|
|
|
|
if ( !$data ) {
|
|
|
|
|
$this->fatalError( "Failed to load data from " . $file );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-27 12:00:25 +00:00
|
|
|
// @codeCoverageIgnoreStart
|
2022-10-10 11:46:50 +00:00
|
|
|
$maintClass = BenchmarkJsonCodec::class;
|
|
|
|
|
require_once RUN_MAINTENANCE_IF_MAIN;
|
2024-08-27 12:00:25 +00:00
|
|
|
// @codeCoverageIgnoreEnd
|