2016-07-20 16:45:59 +08:00
|
|
|
<?php
|
2020-12-09 13:16:13 +08:00
|
|
|
|
2016-07-20 16:45:59 +08:00
|
|
|
/**
|
|
|
|
* SCSSPHP
|
|
|
|
*
|
2020-12-09 13:16:13 +08:00
|
|
|
* @copyright 2012-2020 Leaf Corcoran
|
2016-07-20 16:45:59 +08:00
|
|
|
*
|
|
|
|
* @license http://opensource.org/licenses/MIT MIT
|
|
|
|
*
|
2019-06-28 09:42:24 +08:00
|
|
|
* @link http://scssphp.github.io/scssphp
|
2016-07-20 16:45:59 +08:00
|
|
|
*/
|
|
|
|
|
2019-06-28 09:42:24 +08:00
|
|
|
namespace ScssPhp\ScssPhp;
|
2016-07-20 16:45:59 +08:00
|
|
|
|
2019-06-28 09:42:24 +08:00
|
|
|
use ScssPhp\ScssPhp\Base\Range;
|
|
|
|
use ScssPhp\ScssPhp\Exception\RangeException;
|
2021-12-30 12:10:34 +00:00
|
|
|
use ScssPhp\ScssPhp\Node\Number;
|
2016-07-20 16:45:59 +08:00
|
|
|
|
|
|
|
/**
|
2021-12-30 12:10:34 +00:00
|
|
|
* Utility functions
|
2016-07-20 16:45:59 +08:00
|
|
|
*
|
|
|
|
* @author Anthon Pang <anthon.pang@gmail.com>
|
2021-12-30 12:10:34 +00:00
|
|
|
*
|
|
|
|
* @internal
|
2016-07-20 16:45:59 +08:00
|
|
|
*/
|
|
|
|
class Util
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Asserts that `value` falls within `range` (inclusive), leaving
|
|
|
|
* room for slight floating-point errors.
|
|
|
|
*
|
2021-12-30 12:10:34 +00:00
|
|
|
* @param string $name The name of the value. Used in the error message.
|
|
|
|
* @param Range $range Range of values.
|
|
|
|
* @param array|Number $value The value to check.
|
|
|
|
* @param string $unit The unit of the value. Used in error reporting.
|
2016-07-20 16:45:59 +08:00
|
|
|
*
|
|
|
|
* @return mixed `value` adjusted to fall within range, if it was outside by a floating-point margin.
|
|
|
|
*
|
2019-06-28 09:42:24 +08:00
|
|
|
* @throws \ScssPhp\ScssPhp\Exception\RangeException
|
2016-07-20 16:45:59 +08:00
|
|
|
*/
|
|
|
|
public static function checkRange($name, Range $range, $value, $unit = '')
|
|
|
|
{
|
|
|
|
$val = $value[1];
|
|
|
|
$grace = new Range(-0.00001, 0.00001);
|
|
|
|
|
2020-12-09 13:16:13 +08:00
|
|
|
if (! \is_numeric($val)) {
|
|
|
|
throw new RangeException("$name {$val} is not a number.");
|
|
|
|
}
|
|
|
|
|
2016-07-20 16:45:59 +08:00
|
|
|
if ($range->includes($val)) {
|
|
|
|
return $val;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($grace->includes($val - $range->first)) {
|
|
|
|
return $range->first;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($grace->includes($val - $range->last)) {
|
|
|
|
return $range->last;
|
|
|
|
}
|
|
|
|
|
2017-10-01 11:24:18 +08:00
|
|
|
throw new RangeException("$name {$val} must be between {$range->first} and {$range->last}$unit");
|
2016-07-20 16:45:59 +08:00
|
|
|
}
|
2018-03-16 10:36:40 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Encode URI component
|
|
|
|
*
|
|
|
|
* @param string $string
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function encodeURIComponent($string)
|
|
|
|
{
|
2019-06-11 11:53:29 +08:00
|
|
|
$revert = ['%21' => '!', '%2A' => '*', '%27' => "'", '%28' => '(', '%29' => ')'];
|
2018-03-16 10:36:40 +01:00
|
|
|
|
|
|
|
return strtr(rawurlencode($string), $revert);
|
|
|
|
}
|
2020-12-09 13:16:13 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* mb_chr() wrapper
|
|
|
|
*
|
2021-12-30 12:10:34 +00:00
|
|
|
* @param int $code
|
2020-12-09 13:16:13 +08:00
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function mbChr($code)
|
|
|
|
{
|
|
|
|
// Use the native implementation if available, but not on PHP 7.2 as mb_chr(0) is buggy there
|
|
|
|
if (\PHP_VERSION_ID > 70300 && \function_exists('mb_chr')) {
|
|
|
|
return mb_chr($code, 'UTF-8');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (0x80 > $code %= 0x200000) {
|
|
|
|
$s = \chr($code);
|
|
|
|
} elseif (0x800 > $code) {
|
|
|
|
$s = \chr(0xC0 | $code >> 6) . \chr(0x80 | $code & 0x3F);
|
|
|
|
} elseif (0x10000 > $code) {
|
|
|
|
$s = \chr(0xE0 | $code >> 12) . \chr(0x80 | $code >> 6 & 0x3F) . \chr(0x80 | $code & 0x3F);
|
|
|
|
} else {
|
|
|
|
$s = \chr(0xF0 | $code >> 18) . \chr(0x80 | $code >> 12 & 0x3F)
|
|
|
|
. \chr(0x80 | $code >> 6 & 0x3F) . \chr(0x80 | $code & 0x3F);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $s;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* mb_strlen() wrapper
|
|
|
|
*
|
|
|
|
* @param string $string
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public static function mbStrlen($string)
|
|
|
|
{
|
|
|
|
// Use the native implementation if available.
|
|
|
|
if (\function_exists('mb_strlen')) {
|
|
|
|
return mb_strlen($string, 'UTF-8');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (\function_exists('iconv_strlen')) {
|
2021-12-30 12:10:34 +00:00
|
|
|
return (int) @iconv_strlen($string, 'UTF-8');
|
2020-12-09 13:16:13 +08:00
|
|
|
}
|
|
|
|
|
2021-12-30 12:10:34 +00:00
|
|
|
throw new \LogicException('Either mbstring (recommended) or iconv is necessary to use Scssphp.');
|
2020-12-09 13:16:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* mb_substr() wrapper
|
|
|
|
* @param string $string
|
|
|
|
* @param int $start
|
|
|
|
* @param null|int $length
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function mbSubstr($string, $start, $length = null)
|
|
|
|
{
|
|
|
|
// Use the native implementation if available.
|
|
|
|
if (\function_exists('mb_substr')) {
|
|
|
|
return mb_substr($string, $start, $length, 'UTF-8');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (\function_exists('iconv_substr')) {
|
|
|
|
if ($start < 0) {
|
|
|
|
$start = static::mbStrlen($string) + $start;
|
|
|
|
if ($start < 0) {
|
|
|
|
$start = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (null === $length) {
|
|
|
|
$length = 2147483647;
|
|
|
|
} elseif ($length < 0) {
|
|
|
|
$length = static::mbStrlen($string) + $length - $start;
|
|
|
|
if ($length < 0) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (string)iconv_substr($string, $start, $length, 'UTF-8');
|
|
|
|
}
|
|
|
|
|
2021-12-30 12:10:34 +00:00
|
|
|
throw new \LogicException('Either mbstring (recommended) or iconv is necessary to use Scssphp.');
|
2020-12-09 13:16:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* mb_strpos wrapper
|
|
|
|
* @param string $haystack
|
|
|
|
* @param string $needle
|
|
|
|
* @param int $offset
|
|
|
|
*
|
|
|
|
* @return int|false
|
|
|
|
*/
|
|
|
|
public static function mbStrpos($haystack, $needle, $offset = 0)
|
|
|
|
{
|
|
|
|
if (\function_exists('mb_strpos')) {
|
|
|
|
return mb_strpos($haystack, $needle, $offset, 'UTF-8');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (\function_exists('iconv_strpos')) {
|
|
|
|
return iconv_strpos($haystack, $needle, $offset, 'UTF-8');
|
|
|
|
}
|
|
|
|
|
2021-12-30 12:10:34 +00:00
|
|
|
throw new \LogicException('Either mbstring (recommended) or iconv is necessary to use Scssphp.');
|
2020-12-09 13:16:13 +08:00
|
|
|
}
|
2016-07-20 16:45:59 +08:00
|
|
|
}
|