2009-02-17 06:03:29 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Classes, which help reading streams of data from files.
|
|
|
|
* Based on the classes from Danilo Segan <danilo@kvota.net>
|
|
|
|
*
|
2015-11-20 05:34:25 +01:00
|
|
|
* @version $Id: streams.php 1157 2015-11-20 04:30:11Z dd32 $
|
2009-02-17 06:03:29 +01:00
|
|
|
* @package pomo
|
|
|
|
* @subpackage streams
|
|
|
|
*/
|
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! class_exists( 'POMO_Reader', false ) ) :
|
|
|
|
class POMO_Reader {
|
|
|
|
|
2020-10-17 18:26:09 +02:00
|
|
|
public $endian = 'little';
|
|
|
|
public $_post = '';
|
2017-12-01 00:11:00 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* PHP5 constructor.
|
|
|
|
*/
|
|
|
|
function __construct() {
|
2020-06-03 19:40:12 +02:00
|
|
|
$this->is_overloaded = ( ( ini_get( 'mbstring.func_overload' ) & 2 ) != 0 ) && function_exists( 'mb_substr' ); // phpcs:ignore PHPCompatibility.IniDirectives.RemovedIniDirectives.mbstring_func_overloadDeprecated
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->_pos = 0;
|
|
|
|
}
|
2012-10-31 23:13:51 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* PHP4 constructor.
|
2019-11-02 21:11:04 +01:00
|
|
|
*
|
2019-11-02 21:30:01 +01:00
|
|
|
* @deprecated 5.4.0 Use __construct() instead.
|
2019-11-02 21:11:04 +01:00
|
|
|
*
|
|
|
|
* @see POMO_Reader::__construct()
|
2017-12-01 00:11:00 +01:00
|
|
|
*/
|
|
|
|
public function POMO_Reader() {
|
2019-11-02 21:30:01 +01:00
|
|
|
_deprecated_constructor( self::class, '5.4.0', static::class );
|
2017-12-01 00:11:00 +01:00
|
|
|
self::__construct();
|
|
|
|
}
|
2015-06-28 17:27:24 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* Sets the endianness of the file.
|
|
|
|
*
|
2019-01-16 06:36:48 +01:00
|
|
|
* @param string $endian Set the endianness of the file. Accepts 'big', or 'little'.
|
2017-12-01 00:11:00 +01:00
|
|
|
*/
|
2019-07-01 10:01:57 +02:00
|
|
|
function setEndian( $endian ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->endian = $endian;
|
|
|
|
}
|
2009-02-17 06:03:29 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* Reads a 32bit Integer from the Stream
|
|
|
|
*
|
|
|
|
* @return mixed The integer, corresponding to the next 32 bits from
|
|
|
|
* the stream of false if there are not enough bytes or on error
|
|
|
|
*/
|
|
|
|
function readint32() {
|
|
|
|
$bytes = $this->read( 4 );
|
|
|
|
if ( 4 != $this->strlen( $bytes ) ) {
|
|
|
|
return false;
|
|
|
|
}
|
2020-05-16 20:42:12 +02:00
|
|
|
$endian_letter = ( 'big' === $this->endian ) ? 'N' : 'V';
|
2017-12-01 00:11:00 +01:00
|
|
|
$int = unpack( $endian_letter, $bytes );
|
|
|
|
return reset( $int );
|
|
|
|
}
|
2009-11-12 17:05:43 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* Reads an array of 32-bit Integers from the Stream
|
|
|
|
*
|
2020-10-10 22:02:05 +02:00
|
|
|
* @param int $count How many elements should be read
|
2017-12-01 00:11:00 +01:00
|
|
|
* @return mixed Array of integers or false if there isn't
|
|
|
|
* enough data or on error
|
|
|
|
*/
|
|
|
|
function readint32array( $count ) {
|
|
|
|
$bytes = $this->read( 4 * $count );
|
|
|
|
if ( 4 * $count != $this->strlen( $bytes ) ) {
|
|
|
|
return false;
|
|
|
|
}
|
2020-05-16 20:42:12 +02:00
|
|
|
$endian_letter = ( 'big' === $this->endian ) ? 'N' : 'V';
|
2017-12-01 00:11:00 +01:00
|
|
|
return unpack( $endian_letter . $count, $bytes );
|
|
|
|
}
|
2012-10-31 23:13:51 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* @param string $string
|
|
|
|
* @param int $start
|
|
|
|
* @param int $length
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function substr( $string, $start, $length ) {
|
|
|
|
if ( $this->is_overloaded ) {
|
|
|
|
return mb_substr( $string, $start, $length, 'ascii' );
|
|
|
|
} else {
|
|
|
|
return substr( $string, $start, $length );
|
|
|
|
}
|
2009-06-23 18:32:52 +02:00
|
|
|
}
|
2012-10-31 23:13:51 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* @param string $string
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
function strlen( $string ) {
|
|
|
|
if ( $this->is_overloaded ) {
|
|
|
|
return mb_strlen( $string, 'ascii' );
|
|
|
|
} else {
|
|
|
|
return strlen( $string );
|
|
|
|
}
|
2009-06-23 18:32:52 +02:00
|
|
|
}
|
2012-10-31 23:13:51 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* @param string $string
|
|
|
|
* @param int $chunk_size
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function str_split( $string, $chunk_size ) {
|
|
|
|
if ( ! function_exists( 'str_split' ) ) {
|
|
|
|
$length = $this->strlen( $string );
|
|
|
|
$out = array();
|
|
|
|
for ( $i = 0; $i < $length; $i += $chunk_size ) {
|
|
|
|
$out[] = $this->substr( $string, $i, $chunk_size );
|
|
|
|
}
|
|
|
|
return $out;
|
|
|
|
} else {
|
|
|
|
return str_split( $string, $chunk_size );
|
|
|
|
}
|
2009-11-12 17:05:43 +01:00
|
|
|
}
|
2012-10-31 23:13:51 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
function pos() {
|
|
|
|
return $this->_pos;
|
|
|
|
}
|
2009-11-12 17:05:43 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* @return true
|
|
|
|
*/
|
|
|
|
function is_resource() {
|
|
|
|
return true;
|
|
|
|
}
|
2012-10-31 23:13:51 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* @return true
|
|
|
|
*/
|
|
|
|
function close() {
|
|
|
|
return true;
|
|
|
|
}
|
2009-11-12 17:05:43 +01:00
|
|
|
}
|
|
|
|
endif;
|
2009-02-17 06:03:29 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! class_exists( 'POMO_FileReader', false ) ) :
|
|
|
|
class POMO_FileReader extends POMO_Reader {
|
2014-11-30 22:41:22 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* @param string $filename
|
|
|
|
*/
|
|
|
|
function __construct( $filename ) {
|
2019-11-02 21:49:01 +01:00
|
|
|
parent::__construct();
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->_f = fopen( $filename, 'rb' );
|
|
|
|
}
|
2012-10-31 23:13:51 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* PHP4 constructor.
|
2019-11-02 21:11:04 +01:00
|
|
|
*
|
2019-11-02 21:30:01 +01:00
|
|
|
* @deprecated 5.4.0 Use __construct() instead.
|
2019-11-02 21:11:04 +01:00
|
|
|
*
|
|
|
|
* @see POMO_FileReader::__construct()
|
2017-12-01 00:11:00 +01:00
|
|
|
*/
|
|
|
|
public function POMO_FileReader( $filename ) {
|
2019-11-02 21:30:01 +01:00
|
|
|
_deprecated_constructor( self::class, '5.4.0', static::class );
|
2017-12-01 00:11:00 +01:00
|
|
|
self::__construct( $filename );
|
|
|
|
}
|
2015-06-28 17:27:24 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* @param int $bytes
|
2018-12-19 08:06:49 +01:00
|
|
|
* @return string|false Returns read string, otherwise false.
|
2017-12-01 00:11:00 +01:00
|
|
|
*/
|
|
|
|
function read( $bytes ) {
|
|
|
|
return fread( $this->_f, $bytes );
|
|
|
|
}
|
2012-10-31 23:13:51 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* @param int $pos
|
2020-10-10 22:02:05 +02:00
|
|
|
* @return bool
|
2017-12-01 00:11:00 +01:00
|
|
|
*/
|
|
|
|
function seekto( $pos ) {
|
|
|
|
if ( -1 == fseek( $this->_f, $pos, SEEK_SET ) ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$this->_pos = $pos;
|
|
|
|
return true;
|
2009-11-12 17:05:43 +01:00
|
|
|
}
|
2012-10-31 23:13:51 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
function is_resource() {
|
|
|
|
return is_resource( $this->_f );
|
|
|
|
}
|
2012-10-31 23:13:51 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
function feof() {
|
|
|
|
return feof( $this->_f );
|
|
|
|
}
|
2012-10-31 23:13:51 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
function close() {
|
|
|
|
return fclose( $this->_f );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function read_all() {
|
|
|
|
$all = '';
|
|
|
|
while ( ! $this->feof() ) {
|
|
|
|
$all .= $this->read( 4096 );
|
|
|
|
}
|
|
|
|
return $all;
|
|
|
|
}
|
2009-11-12 17:05:43 +01:00
|
|
|
}
|
2017-12-01 00:11:00 +01:00
|
|
|
endif;
|
2012-10-31 23:13:51 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! class_exists( 'POMO_StringReader', false ) ) :
|
2015-05-31 05:18:25 +02:00
|
|
|
/**
|
2017-12-01 00:11:00 +01:00
|
|
|
* Provides file-like methods for manipulating a string instead
|
|
|
|
* of a physical file.
|
2015-05-31 05:18:25 +02:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
class POMO_StringReader extends POMO_Reader {
|
2009-11-12 17:05:43 +01:00
|
|
|
|
2020-10-17 18:26:09 +02:00
|
|
|
public $_str = '';
|
2012-10-31 23:13:51 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* PHP5 constructor.
|
|
|
|
*/
|
|
|
|
function __construct( $str = '' ) {
|
2019-11-02 21:49:01 +01:00
|
|
|
parent::__construct();
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->_str = $str;
|
|
|
|
$this->_pos = 0;
|
|
|
|
}
|
2012-10-31 23:13:51 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* PHP4 constructor.
|
2019-11-02 21:11:04 +01:00
|
|
|
*
|
2019-11-02 21:30:01 +01:00
|
|
|
* @deprecated 5.4.0 Use __construct() instead.
|
2019-11-02 21:11:04 +01:00
|
|
|
*
|
|
|
|
* @see POMO_StringReader::__construct()
|
2017-12-01 00:11:00 +01:00
|
|
|
*/
|
|
|
|
public function POMO_StringReader( $str = '' ) {
|
2019-11-02 21:30:01 +01:00
|
|
|
_deprecated_constructor( self::class, '5.4.0', static::class );
|
2017-12-01 00:11:00 +01:00
|
|
|
self::__construct( $str );
|
|
|
|
}
|
2009-11-12 17:05:43 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* @param string $bytes
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function read( $bytes ) {
|
|
|
|
$data = $this->substr( $this->_str, $this->_pos, $bytes );
|
|
|
|
$this->_pos += $bytes;
|
|
|
|
if ( $this->strlen( $this->_str ) < $this->_pos ) {
|
|
|
|
$this->_pos = $this->strlen( $this->_str );
|
|
|
|
}
|
|
|
|
return $data;
|
|
|
|
}
|
2015-06-28 17:27:24 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* @param int $pos
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
function seekto( $pos ) {
|
|
|
|
$this->_pos = $pos;
|
|
|
|
if ( $this->strlen( $this->_str ) < $this->_pos ) {
|
|
|
|
$this->_pos = $this->strlen( $this->_str );
|
|
|
|
}
|
|
|
|
return $this->_pos;
|
|
|
|
}
|
2009-02-17 06:03:29 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
function length() {
|
|
|
|
return $this->strlen( $this->_str );
|
|
|
|
}
|
2009-02-17 06:03:29 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function read_all() {
|
|
|
|
return $this->substr( $this->_str, $this->_pos, $this->strlen( $this->_str ) );
|
|
|
|
}
|
2009-02-17 06:03:29 +01:00
|
|
|
|
2009-11-12 17:05:43 +01:00
|
|
|
}
|
2009-10-21 09:06:55 +02:00
|
|
|
endif;
|
2009-02-17 06:03:29 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! class_exists( 'POMO_CachedFileReader', false ) ) :
|
2015-06-28 17:27:24 +02:00
|
|
|
/**
|
2017-12-01 00:11:00 +01:00
|
|
|
* Reads the contents of the file in the beginning.
|
2015-06-28 17:27:24 +02:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
class POMO_CachedFileReader extends POMO_StringReader {
|
|
|
|
/**
|
|
|
|
* PHP5 constructor.
|
|
|
|
*/
|
|
|
|
function __construct( $filename ) {
|
2019-11-02 21:49:01 +01:00
|
|
|
parent::__construct();
|
2017-12-01 00:11:00 +01:00
|
|
|
$this->_str = file_get_contents( $filename );
|
|
|
|
if ( false === $this->_str ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$this->_pos = 0;
|
|
|
|
}
|
2015-06-28 17:27:24 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* PHP4 constructor.
|
2019-11-02 21:11:04 +01:00
|
|
|
*
|
2019-11-02 21:30:01 +01:00
|
|
|
* @deprecated 5.4.0 Use __construct() instead.
|
2019-11-02 21:11:04 +01:00
|
|
|
*
|
|
|
|
* @see POMO_CachedFileReader::__construct()
|
2017-12-01 00:11:00 +01:00
|
|
|
*/
|
|
|
|
public function POMO_CachedFileReader( $filename ) {
|
2019-11-02 21:30:01 +01:00
|
|
|
_deprecated_constructor( self::class, '5.4.0', static::class );
|
2017-12-01 00:11:00 +01:00
|
|
|
self::__construct( $filename );
|
|
|
|
}
|
2015-06-28 17:27:24 +02:00
|
|
|
}
|
2009-10-21 09:06:55 +02:00
|
|
|
endif;
|
2009-02-17 06:03:29 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! class_exists( 'POMO_CachedIntFileReader', false ) ) :
|
2015-06-28 17:27:24 +02:00
|
|
|
/**
|
2017-12-01 00:11:00 +01:00
|
|
|
* Reads the contents of the file in the beginning.
|
2015-06-28 17:27:24 +02:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
class POMO_CachedIntFileReader extends POMO_CachedFileReader {
|
|
|
|
/**
|
|
|
|
* PHP5 constructor.
|
|
|
|
*/
|
|
|
|
public function __construct( $filename ) {
|
2019-11-02 21:49:01 +01:00
|
|
|
parent::__construct( $filename );
|
2017-12-01 00:11:00 +01:00
|
|
|
}
|
2015-06-28 17:27:24 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
/**
|
|
|
|
* PHP4 constructor.
|
2019-11-02 21:11:04 +01:00
|
|
|
*
|
2019-11-02 21:30:01 +01:00
|
|
|
* @deprecated 5.4.0 Use __construct() instead.
|
2019-11-02 21:11:04 +01:00
|
|
|
*
|
|
|
|
* @see POMO_CachedIntFileReader::__construct()
|
2017-12-01 00:11:00 +01:00
|
|
|
*/
|
|
|
|
function POMO_CachedIntFileReader( $filename ) {
|
2019-11-02 21:30:01 +01:00
|
|
|
_deprecated_constructor( self::class, '5.4.0', static::class );
|
2017-12-01 00:11:00 +01:00
|
|
|
self::__construct( $filename );
|
|
|
|
}
|
2015-06-28 17:27:24 +02:00
|
|
|
}
|
|
|
|
endif;
|
|
|
|
|