- Reverts the schneespur/ subdirectory restructure (b8e426b)
- Restores package.json and vite.config.js (needed for npm build, were
removed in an earlier cleanup before the restructure)
- Updates public/build/ assets with current Vite output (new content hashes)
93 lines
1.6 KiB
PHP
93 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace Safe;
|
|
|
|
use Safe\Exceptions\Bzip2Exception;
|
|
|
|
/**
|
|
* @param resource $bz
|
|
* @throws Bzip2Exception
|
|
*
|
|
*/
|
|
function bzclose($bz): void
|
|
{
|
|
error_clear_last();
|
|
$safeResult = \bzclose($bz);
|
|
if ($safeResult === false) {
|
|
throw Bzip2Exception::createFromPhpError();
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* @param resource $bz
|
|
* @throws Bzip2Exception
|
|
*
|
|
*/
|
|
function bzflush($bz): void
|
|
{
|
|
error_clear_last();
|
|
$safeResult = \bzflush($bz);
|
|
if ($safeResult === false) {
|
|
throw Bzip2Exception::createFromPhpError();
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* @param resource|string $file
|
|
* @param string $mode
|
|
* @return resource
|
|
* @throws Bzip2Exception
|
|
*
|
|
*/
|
|
function bzopen($file, string $mode)
|
|
{
|
|
error_clear_last();
|
|
$safeResult = \bzopen($file, $mode);
|
|
if ($safeResult === false) {
|
|
throw Bzip2Exception::createFromPhpError();
|
|
}
|
|
return $safeResult;
|
|
}
|
|
|
|
|
|
/**
|
|
* @param resource $bz
|
|
* @param int $length
|
|
* @return string
|
|
* @throws Bzip2Exception
|
|
*
|
|
*/
|
|
function bzread($bz, int $length = 1024): string
|
|
{
|
|
error_clear_last();
|
|
$safeResult = \bzread($bz, $length);
|
|
if ($safeResult === false) {
|
|
throw Bzip2Exception::createFromPhpError();
|
|
}
|
|
return $safeResult;
|
|
}
|
|
|
|
|
|
/**
|
|
* @param resource $bz
|
|
* @param string $data
|
|
* @param int|null $length
|
|
* @return int
|
|
* @throws Bzip2Exception
|
|
*
|
|
*/
|
|
function bzwrite($bz, string $data, ?int $length = null): int
|
|
{
|
|
error_clear_last();
|
|
if ($length !== null) {
|
|
$safeResult = \bzwrite($bz, $data, $length);
|
|
} else {
|
|
$safeResult = \bzwrite($bz, $data);
|
|
}
|
|
if ($safeResult === false) {
|
|
throw Bzip2Exception::createFromPhpError();
|
|
}
|
|
return $safeResult;
|
|
}
|