View file application/libraries/Engine/File/Archive/Bzip2.php
<?php
class Engine_File_Archive_Bzip2 extends Engine_File_Archive
{
public function insert($source)
{
$from = new Engine_Stream_File($source, 'r');
$to = new Engine_Stream_Bzip2($this->_filename, 'w');
$to->stream_copy($from);
return $this;
}
public function extract($target)
{
$from = new Engine_Stream_Bzip2($this->_filename, 'r');
$to = new Engine_Stream_File($target, 'w');
$to->stream_copy($from);
return $this;
}
}