HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/sportivo.komma.pro/vendor/patchwork/utf8/src/Patchwork/Utf8/Compiler.php
<?php

/*
 * Copyright (C) 2013 Nicolas Grekas - p@tchwork.com
 *
 * This library is free software; you can redistribute it and/or modify it
 * under the terms of the (at your option):
 * Apache License v2.0 (http://apache.org/licenses/LICENSE-2.0.txt), or
 * GNU General Public License v2.0 (http://gnu.org/licenses/gpl-2.0.txt).
 */

namespace Patchwork\Utf8;

/**
 * Compiler is a use once class that implements the compilation of unicode
 * and charset data to a format suitable for other Utf8 classes.
 *
 * See http://unicode.org/Public/UNIDATA/ for unicode data
 * See http://unicode.org/Public/MAPPINGS/ for charset conversion maps
 * See http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WindowsBestFit/ for mappings
 * See http://unicode.org/repos/cldr/trunk/common/transforms/ for Latin-ASCII.xml
 */
class Compiler
{
    public static function charsetMaps($out_dir, $map_dir = null)
    {
        isset($map_dir) or $map_dir = __DIR__.'/unicode/charset/';
        $h = opendir($map_dir);
        while (false !== $f = readdir($h)) {
            if (false === strpos($f, '.') && is_file($map_dir.$f)) {
                $from = $to = array();
                $data = file_get_contents($map_dir.$f);

                if ('gsm0338' === $f) {
                    $rx = '/^#?0x([0-9A-F]+)[ \t]+0x([0-9A-F]+)/mi';
                } else {
                    $rx = '/^0x([0-9A-F]+)[ \t]+0x([0-9A-F]+)/mi';
                }

                preg_match_all($rx, $data, $data, PREG_SET_ORDER);

                if ('nextstep' === $f) {
                    $from = array_map('chr', range(0, 127));
                    $from = array_combine($from, $from);
                } elseif ('mazovia' === $f) {
                    $from = array("\x9B" => self::chr(0x007A).self::chr(0x0142));
                    $to = array(self::chr(0x203A) => "\x9B");
                }

                foreach ($data as $data) {
                    $data = array_map('hexdec', $data);
                    $data[2] = self::chr($data[2]);
                    $data[1] = $data[1] > 255
                    ? chr($data[1] >> 8).chr($data[1] % 256)
                    : chr($data[1]);

                    if (isset($from[$data[1]])) {
                        isset($to[$data[2]]) or $to[$data[2]] = $data[1];
                    } else {
                        $from[$data[1]] = $data[2];
                    }
                }

                file_put_contents("{$out_dir}from.{$f}.ser", serialize($from));

                if ($to) {
                    $to += array_flip($from);
                    file_put_contents("{$out_dir}to.{$f}.ser", serialize($to));
                }
            }
        }
        closedir($h);
    }

    public static function translitMap($out_dir)
    {
        $map = array();

        $h = fopen(self::getFile('UnicodeData.txt'), 'rt');
        while (false !== $line = fgets($h)) {
            $m = array();

            if (preg_match('/^([^;]*);[^;]*;[^;]*;[^;]*;[^;]*;<(circle|compat|font|fraction|narrow|small|square|wide)> ([^;]*);/', $line, $m)) {
                $m[1] = self::chr(hexdec($m[1]));

                $m[3] = explode(' ', $m[3]);
                $m[3] = array_map('hexdec', $m[3]);
                $m[3] = array_map(array(__CLASS__, 'chr'), $m[3]);
                $m[3] = implode('', $m[3]);

                switch ($m[2]) {
                    case 'compat':
                        if (' ' === $m[3][0]) {
                            continue 2;
                        }
                        break;
                    case 'circle':   $m[3] = '('.$m[3].')'; break;
                    case 'fraction': $m[3] = ' '.$m[3].' '; break;
                }

                $m = array($m[1], $m[3]);
            } elseif (preg_match('/^([^;]*);CJK COMPATIBILITY IDEOGRAPH-[^;]*;[^;]*;[^;]*;[^;]*;([^;]*);/', $line, $m)) {
                $m = array(
                    self::chr(hexdec($m[1])),
                    self::chr(hexdec($m[2])),
                );
            }

            if (!$m) {
                continue;
            }

            $map[$m[0]] = $m[1];
        }
        fclose($h);

        foreach (file(self::getFile('Latin-ASCII.xml')) as $line) {
            if (preg_match('/<tRule>(.) → (.*?) ;/u', $line, $m)) {
                if ('\u' === $m[1][0]) {
                    $m[1] = self::chr(hexdec(substr($m[1], 2)));
                }

                $m[2] = htmlspecialchars_decode($m[2]);

                switch ($m[2][0]) {
                    case '\\': $m[2] = substr($m[2], 1); break;
                    case "'":  $m[2] = substr($m[2], 1, -1); break;
                }

                isset($map[$m[1]]) or $map[$m[1]] = $m[2];
            }
        }

        file_put_contents($out_dir.'translit.ser', serialize($map));
    }

    public static function bestFit($out_dir, $map_dir = null)
    {
        isset($map_dir) or $map_dir = __DIR__.'/unicode/charset/';
        $dh = opendir($map_dir);
        while (false !== $f = readdir($dh)) {
            if (0 === strpos($f, 'bestfit') && preg_match('/^bestfit\d+\.txt$/D', $f)) {
                $from = array();
                $to = array();
                $lead = '';

                $h = fopen($map_dir.$f, 'rb');

                while (false !== $s = fgets($h)) {
                    if (0 === strpos($s, 'WCTABLE')) {
                        break;
                    }
                    if (0 === strpos($s, 'DBCSTABLE')) {
                        $lead = substr(rtrim($s), -2);
                        $lead = chr(hexdec($lead));
                    } elseif (preg_match("/^0x([0-9a-f]{2})\t0x([0-9a-f]{4})/", $s, $s)) {
                        $s = array_map('hexdec', $s);
                        $from[$lead.chr($s[1])] = self::chr($s[2]);
                    }
                }

                while (false !== $s = fgets($h)) {
                    if (0 === strpos($s, 'ENDCODEPAGE')) {
                        break;
                    }

                    $s = explode("\t", rtrim($s));

                    if (isset($s[1])) {
                        $s[0] = substr($s[0], 2);
                        $s[1] = substr($s[1], 2);
                        $s = array_map('hexdec', $s);
                        $s[1] = $s[1] > 255
                        ? chr($s[1] >> 8).chr($s[1] % 256)
                        : chr($s[1]);

                        $to[self::chr($s[0])] = $s[1];
                    }
                }

                fclose($h);

//                file_put_contents($out_dir . 'from.' . substr($f, 0, -3) .'ser', serialize($from));
                file_put_contents($out_dir.'to.'.substr($f, 0, -3).'ser', serialize($to));
            }
        }
        closedir($dh);
    }

    // Write unicode data maps to disk

    public static function unicodeMaps($out_dir)
    {
        $upperCase = array();
        $lowerCase = array();
        $caseFolding = array();
        $combiningClass = array();
        $canonicalComposition = array();
        $canonicalDecomposition = array();
        $compatibilityDecomposition = array();

        $exclusion = array();

        $h = fopen(self::getFile('CompositionExclusions.txt'), 'rt');
        while (false !== $m = fgets($h)) {
            if (preg_match('/^(?:# )?([0-9A-F]+) /', $m, $m)) {
                $exclusion[self::chr(hexdec($m[1]))] = 1;
            }
        }
        fclose($h);

        $h = fopen(self::getFile('UnicodeData.txt'), 'rt');
        while (false !== $m = fgets($h)) {
            $m = explode(';', $m);

            $k = self::chr(hexdec($m[0]));
            $combClass = (int) $m[3];
            $decomp = $m[5];

            $m[12] && $m[12] != $m[0] and $upperCase[$k] = self::chr(hexdec($m[12]));
            $m[13] && $m[13] != $m[0] and $lowerCase[$k] = self::chr(hexdec($m[13]));

            $combClass and $combiningClass[$k] = $combClass;

            if ($decomp) {
                $canonic = '<' != $decomp[0];
                $canonic or $decomp = preg_replace("'^<.*> '", '', $decomp);

                $decomp = explode(' ', $decomp);

                $exclude = count($decomp) == 1 || isset($exclusion[$k]);

                $decomp = array_map('hexdec', $decomp);
                $decomp = array_map(array(__CLASS__, 'chr'), $decomp);
                $decomp = implode('', $decomp);

                if ($canonic) {
                    $canonicalDecomposition[$k] = $decomp;
                    $exclude or $canonicalComposition[$decomp] = $k;
                }

                $compatibilityDecomposition[$k] = $decomp;
            }
        }
        fclose($h);

        do {
            $m = 0;

            foreach ($canonicalDecomposition as $k => $decomp) {
                $h = strtr($decomp, $canonicalDecomposition);
                if ($h != $decomp) {
                    $canonicalDecomposition[$k] = $h;
                    $m = 1;
                }
            }
        } while ($m);

        do {
            $m = 0;

            foreach ($compatibilityDecomposition as $k => $decomp) {
                $h = strtr($decomp, $compatibilityDecomposition);
                if ($h != $decomp) {
                    $compatibilityDecomposition[$k] = $h;
                    $m = 1;
                }
            }
        } while ($m);

        foreach ($compatibilityDecomposition as $k => $decomp) {
            if (isset($canonicalDecomposition[$k]) && $canonicalDecomposition[$k] == $decomp) {
                unset($compatibilityDecomposition[$k]);
            }
        }

        $h = fopen(self::getFile('CaseFolding.txt'), 'rt');
        while (false !== $m = fgets($h)) {
            if (preg_match('/^([0-9A-F]+); ([CFST]); ([0-9A-F]+(?: [0-9A-F]+)*)/', $m, $m)) {
                $k = self::chr(hexdec($m[1]));

                $decomp = explode(' ', $m[3]);
                $decomp = array_map('hexdec', $decomp);
                $decomp = array_map(array(__CLASS__, 'chr'), $decomp);
                $decomp = implode('', $decomp);

                @($lowerCase[$k] != $decomp and $caseFolding[$m[2]][$k] = $decomp);
            }
        }
        fclose($h);

        // Only full case folding is worth serializing
        $caseFolding = array(
            array_keys($caseFolding['F']),
            array_values($caseFolding['F']),
        );

        $upperCase = serialize($upperCase);
        $lowerCase = serialize($lowerCase);
        $caseFolding = serialize($caseFolding);
        $combiningClass = serialize($combiningClass);
        $canonicalComposition = serialize($canonicalComposition);
        $canonicalDecomposition = serialize($canonicalDecomposition);
        $compatibilityDecomposition = serialize($compatibilityDecomposition);

        file_put_contents($out_dir.'upperCase.ser', $upperCase);
        file_put_contents($out_dir.'lowerCase.ser', $lowerCase);
        file_put_contents($out_dir.'caseFolding_full.ser', $caseFolding);
        file_put_contents($out_dir.'combiningClass.ser', $combiningClass);
        file_put_contents($out_dir.'canonicalComposition.ser', $canonicalComposition);
        file_put_contents($out_dir.'canonicalDecomposition.ser', $canonicalDecomposition);
        file_put_contents($out_dir.'compatibilityDecomposition.ser', $compatibilityDecomposition);
    }

    protected static function chr($c)
    {
        $c %= 0x200000;

        return $c < 0x80    ? chr($c) : (
               $c < 0x800   ? chr(0xC0 | $c >> 6).chr(0x80 | $c     & 0x3F) : (
               $c < 0x10000 ? chr(0xE0 | $c >> 12).chr(0x80 | $c >> 6 & 0x3F).chr(0x80 | $c    & 0x3F) : (
                              chr(0xF0 | $c >> 18).chr(0x80 | $c >> 12 & 0x3F).chr(0x80 | $c >> 6 & 0x3F).chr(0x80 | $c & 0x3F)
        )));
    }

    protected static function getFile($file)
    {
        return __DIR__.'/unicode/data/'.$file;
    }
}