| Current Path : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/laminas/laminas-filter/src/Compress/ |
| Current File : /srv/web/sites/trentinoplant.it/httpdocs/vendor1/laminas/laminas-filter/src/Compress/Snappy.php |
<?php
declare(strict_types=1);
namespace Laminas\Filter\Compress;
use Laminas\Filter\Exception;
use Traversable;
use function extension_loaded;
use function snappy_compress;
use function snappy_uncompress;
/**
* Compression adapter for php snappy (http://code.google.com/p/php-snappy/)
*
* @deprecated Since 2.28. This adapter will be removed in version 3.0 of this component. Other compression formats
* remain available.
*
* @psalm-suppress UndefinedFunction
*/
class Snappy implements CompressionAlgorithmInterface
{
/**
* @param null|array|Traversable $options (Optional) Options to set
* @throws Exception\ExtensionNotLoadedException If snappy extension not loaded.
*/
public function __construct($options = null)
{
if (! extension_loaded('snappy')) {
throw new Exception\ExtensionNotLoadedException('This filter needs the snappy extension');
}
}
/**
* Compresses the given content
*
* @param string $content
* @return string
* @throws Exception\RuntimeException On memory, output length or data warning.
*/
public function compress($content)
{
$compressed = snappy_compress($content);
if ($compressed === false) {
throw new Exception\RuntimeException('Error while compressing.');
}
return $compressed;
}
/**
* Decompresses the given content
*
* @param string $content
* @return string
* @throws Exception\RuntimeException On memory, output length or data warning.
*/
public function decompress($content)
{
$compressed = snappy_uncompress($content);
if ($compressed === false) {
throw new Exception\RuntimeException('Error while decompressing.');
}
return $compressed;
}
/**
* Returns the adapter name
*
* @return string
*/
public function toString()
{
return 'Snappy';
}
}