2# Copyright (C) 2004 Brion Vibber <brion@pobox.com>
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.
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.
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.
29 dl(
'php_utfnormal.so' );
32require_once
'UtfNormalUtil.php';
33require_once
'UtfNormal.php';
35define(
'BENCH_CYCLES', 5 );
37if( php_sapi_name() !=
'cli' ) {
38 die(
"Run me from the command line please.\n" );
42 'testdata/washington.txt' =>
'English text',
43 'testdata/berlin.txt' =>
'German text',
44 'testdata/bulgakov.txt' =>
'Russian text',
45 'testdata/tokyo.txt' =>
'Japanese text',
46 'testdata/young.txt' =>
'Korean text'
57 print "Testing $filename ($desc)...\n";
68 array(
'fastDecompose',
'fastCombiningSort',
'fastCompose' ),
69#
'quickIsNFC',
'quickIsNFCVerify',
71 foreach( $forms as $form ) {
72 if( is_array( $form ) ) {
74 foreach( $form as $step ) {
84 $st = explode(
' ', microtime() );
85 return (
float)$st[0] + (float)$st[1];
90 #$start = benchTime();
96 #$delta = (benchTime() - $start) / BENCH_CYCLES;
98 $delta = $deltas[0]; # Take shortest time
100 $rate = intval( strlen(
$data ) / $delta );
103 printf(
" %20s %6.1fms %12s bytes/s (%s)\n",
106 number_format( $rate ),
107 ($same ?
'no change' :
'changed' ) );
foreach($testfiles as $file=> $desc) benchmarkTest(&$u, $filename, $desc)
benchmarkForm(&$u, &$data, $form)
if(php_sapi_name() !='cli') $testfiles
loadData()
Load the basic composition data if necessary @access private.
global $utfCanonicalDecomp
Unicode normalization routines for working with UTF-8 strings.
if((!isset($_SERVER['DOCUMENT_ROOT'])) OR(empty($_SERVER['DOCUMENT_ROOT']))) $_SERVER['DOCUMENT_ROOT']