2 /***************************************************************************
3 * Copyright (C) 2003-2008 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
24 // Stream handler to read from global variables
28 public function stream_open($path, $mode, $options, &$opened_path)
30 $url = parse_url($path);
31 $this->varname
= $url['host'];
33 if (!isset($GLOBALS[$this->varname
]))
35 trigger_error('Global variable '.$this->varname
.' does not exist', E_USER_WARNING
);
41 public function stream_close()
45 public function stream_read($count)
47 $ret = substr($GLOBALS[$this->varname
], $this->position
, $count);
48 $this->position +
= strlen($ret);
52 public function stream_write($data)
55 if ($len > $this->position +
strlen($GLOBALS[$this->varname
])) {
56 str_pad($GLOBALS[$this->varname
], $len);
59 $GLOBALS[$this->varname
] = substr_replace($GLOBALS[$this->varname
], $data, $this->position
, $len);
60 $this->position +
= $len;
63 public function stream_eof()
65 return $this->position
>= strlen($GLOBALS[$this->varname
]);
68 public function stream_tell()
70 return $this->position
;
73 public function stream_seek($offs, $whence)
85 $final = strlen($GLOBALS[$this->varname
]) +
$offs;
92 $this->position
= $final;
96 public function stream_flush()
100 static public function init()
102 stream_wrapper_register('var','VarStream');
106 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: