From 53a83a081e352f4cf8dadbc779ae356ccaebc552 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 1 May 2009 12:30:11 +0000 Subject: [PATCH] "testscript for VFS" --- filemanager/test.php | 94 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 filemanager/test.php diff --git a/filemanager/test.php b/filemanager/test.php new file mode 100644 index 0000000000..695f1c2503 --- /dev/null +++ b/filemanager/test.php @@ -0,0 +1,94 @@ + + * @copyright (c) 2009 by Ralf Becker + * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License + * @version $Id$ + */ + +$GLOBALS['egw_info']['flags'] = array( + 'currentapp' => 'filemanager' +); +include('../header.inc.php'); + +$path = '/home/'.$GLOBALS['egw_info']['user']['account_lid']; + +if (isset($_REQUEST['path'])) $path = $_REQUEST['path']; +echo html::form("

Path: ".html::input('path',$path,'text','size="40"'). + html::submit_button('',lang('Submit'))."

\n",array(),'','','','','GET'); + +if (isset($path) && !empty($path)) +{ + if ($path[0] != '/') + { + throw new egw_exception_wrong_userinput('Not an absolute path!'); + } + echo "

"; + foreach(explode('/',$path) as $n => $part) + { + $p .= ($p != '/' ? '/' : '').$part; + echo ($n > 1 ? ' / ' : '').html::a_href($n ? $part : ' / ','/filemanager/test.php',array('path'=>$p)); + } + echo "

\n"; + + $is_dir = egw_vfs::is_dir($path); + echo "

is_dir('$path')=".array2string($is_dir)."

\n"; + + $time = microtime(true); + $stat = egw_vfs::stat($path); + $time = number_format(1000*(microtime(true)-$time),1); + + if ($is_dir && ($d = egw_vfs::opendir($path))) + { + $files = array(); + while(($file = readdir($d))) + { + if (egw_vfs::is_readable($fpath=egw_vfs::concat($path,$file))) + { + $file = html::a_href($file,'/filemanager/test.php',array('path'=>$fpath)); + } + $files[] = $file; + } + closedir($d); + echo ($files ? '' : '

Empty directory

')."\n"; + } + + echo "

stat('$path') took $time ms (mode = ".(isset($stat['mode'])?sprintf('%o',$stat['mode']).' = '.egw_vfs::int2mode($stat['mode']):'NULL').')'; + if (is_array($stat)) + { + _debug_array($stat); + } + else + { + echo "

".array2string($stat)."

\n"; + } + + echo "

egw_vfs::is_readable('$path')=".array2string(egw_vfs::is_readable($path))."

\n"; + echo "

egw_vfs::is_writable('$path')=".array2string(egw_vfs::is_writable($path))."

\n"; + + echo "

is_link('$path')=".array2string(egw_vfs::is_link($path))."

\n"; + echo "

readlink('$path')=".array2string(egw_vfs::readlink($path))."

\n"; + $time = microtime(true); + $lstat = egw_vfs::lstat($path); + $time = number_format(1000*(microtime(true)-$time),1); + echo "

lstat('$path') took $time ms (mode = ".(isset($lstat['mode'])?sprintf('%o',$lstat['mode']).' = '.egw_vfs::int2mode($lstat['mode']):'NULL').')'; + if (is_array($lstat)) + { + _debug_array($lstat); + } + else + { + echo "

".array2string($lstat)."

\n"; + } + if (!$is_dir && $stat) + { + echo "

egw_vfs::mime_content_type('$path')=".array2string(egw_vfs::mime_content_type($path))."

\n"; + echo "

filesize(egw_vfs::PREFIX.'$path')=".array2string(filesize(egw_vfs::PREFIX.$path))."

\n"; + echo "

bytes(file_get_contents(egw_vfs::PREFIX.'$path'))=".array2string(bytes(file_get_contents(egw_vfs::PREFIX.$path)))."

\n"; + } +} +$GLOBALS['egw']->common->egw_footer();