mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
"Streamwrapper allowing to use a global variable as stream"
This commit is contained in:
parent
6309c867de
commit
50b5c16a5d
78
phpgwapi/inc/class.global_stream_wrapper.inc.php
Normal file
78
phpgwapi/inc/class.global_stream_wrapper.inc.php
Normal file
@ -0,0 +1,78 @@
|
||||
<?php
|
||||
/**
|
||||
* eGroupWare API: VFS - stream wrapper interface
|
||||
*
|
||||
* @link http://www.egroupware.org
|
||||
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
||||
* @package api
|
||||
* @subpackage vfs
|
||||
* @version $Id$
|
||||
*/
|
||||
|
||||
/**
|
||||
* eGroupWare API: stream wrapper for global variables,
|
||||
*
|
||||
* Original from an expample on php.net:
|
||||
* @see http://de.php.net/manual/en/function.stream-wrapper-register.php
|
||||
*
|
||||
* Use as global://varname
|
||||
*
|
||||
* @todo: allow to use path to access arrays: global://varname/key1/key2 to access $string from $GLOBALS['varname'] = array('key1'=>array('key2'=>$string));
|
||||
*/
|
||||
class global_stream_wrapper
|
||||
{
|
||||
private $pos;
|
||||
private $stream;
|
||||
|
||||
public function stream_open($path, $mode, $options, &$opened_path)
|
||||
{
|
||||
$this->stream = &$GLOBALS[parse_url($path,PHP_URL_HOST)];
|
||||
$this->pos = 0;
|
||||
if (!is_string($this->stream)) return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
public function stream_read($count)
|
||||
{
|
||||
$p=&$this->pos;
|
||||
$ret = substr($this->stream, $this->pos, $count);
|
||||
$this->pos += strlen($ret);
|
||||
return $ret;
|
||||
}
|
||||
|
||||
public function stream_write($data)
|
||||
{
|
||||
$l=strlen($data);
|
||||
$this->stream =
|
||||
substr($this->stream, 0, $this->pos) .
|
||||
$data .
|
||||
substr($this->stream, $this->pos += $l);
|
||||
return $l;
|
||||
}
|
||||
|
||||
public function stream_tell()
|
||||
{
|
||||
return $this->pos;
|
||||
}
|
||||
|
||||
public function stream_eof()
|
||||
{
|
||||
return $this->pos >= strlen($this->stream);
|
||||
}
|
||||
|
||||
public function stream_seek($offset, $whence)
|
||||
{
|
||||
$l=strlen($this->stream);
|
||||
switch ($whence)
|
||||
{
|
||||
case SEEK_SET: $newPos = $offset; break;
|
||||
case SEEK_CUR: $newPos = $this->pos + $offset; break;
|
||||
case SEEK_END: $newPos = $l + $offset; break;
|
||||
default: return false;
|
||||
}
|
||||
$ret = ($newPos >=0 && $newPos <=$l);
|
||||
if ($ret) $this->pos=$newPos;
|
||||
return $ret;
|
||||
}
|
||||
}
|
||||
stream_wrapper_register('global', 'global_stream_wrapper');
|
Loading…
Reference in New Issue
Block a user