Server IP : 127.0.0.2 / Your IP : 13.58.199.13 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/vendor/psy/psysh/src/Psy/Command/ |
Upload File : |
<?php /* * This file is part of Psy Shell. * * (c) 2012-2017 Justin Hileman * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Psy\Command; use Psy\Context; use Psy\ContextAware; use Psy\Exception\RuntimeException; use Psy\Util\Mirror; /** * An abstract command with helpers for inspecting the current context. */ abstract class ReflectingCommand extends Command implements ContextAware { const CLASS_OR_FUNC = '/^[\\\\\w]+$/'; const INSTANCE = '/^\$(\w+)$/'; const CLASS_MEMBER = '/^([\\\\\w]+)::(\w+)$/'; const CLASS_STATIC = '/^([\\\\\w]+)::\$(\w+)$/'; const INSTANCE_MEMBER = '/^\$(\w+)(::|->)(\w+)$/'; const INSTANCE_STATIC = '/^\$(\w+)::\$(\w+)$/'; const SUPERGLOBAL = '/^\$(GLOBALS|_(?:SERVER|ENV|FILES|COOKIE|POST|GET|SESSION))$/'; /** * Context instance (for ContextAware interface). * * @var Context */ protected $context; /** * ContextAware interface. * * @param Context $context */ public function setContext(Context $context) { $this->context = $context; } /** * Get the target for a value. * * @throws \InvalidArgumentException when the value specified can't be resolved * * @param string $valueName Function, class, variable, constant, method or property name * @param bool $classOnly True if the name should only refer to a class, function or instance * * @return array (class or instance name, member name, kind) */ protected function getTarget($valueName, $classOnly = false) { $valueName = trim($valueName); $matches = array(); switch (true) { case preg_match(self::SUPERGLOBAL, $valueName, $matches): // @todo maybe do something interesting with these at some point? if (array_key_exists($matches[1], $GLOBALS)) { throw new RuntimeException('Unable to inspect a non-object'); } throw new RuntimeException('Unknown target: ' . $valueName); case preg_match(self::CLASS_OR_FUNC, $valueName, $matches): return array($this->resolveName($matches[0], true), null, 0); case preg_match(self::INSTANCE, $valueName, $matches): return array($this->resolveInstance($matches[1]), null, 0); case !$classOnly && preg_match(self::CLASS_MEMBER, $valueName, $matches): return array($this->resolveName($matches[1]), $matches[2], Mirror::CONSTANT | Mirror::METHOD); case !$classOnly && preg_match(self::CLASS_STATIC, $valueName, $matches): return array($this->resolveName($matches[1]), $matches[2], Mirror::STATIC_PROPERTY | Mirror::PROPERTY); case !$classOnly && preg_match(self::INSTANCE_MEMBER, $valueName, $matches): if ($matches[2] === '->') { $kind = Mirror::METHOD | Mirror::PROPERTY; } else { $kind = Mirror::CONSTANT | Mirror::METHOD; } return array($this->resolveInstance($matches[1]), $matches[3], $kind); case !$classOnly && preg_match(self::INSTANCE_STATIC, $valueName, $matches): return array($this->resolveInstance($matches[1]), $matches[2], Mirror::STATIC_PROPERTY); default: throw new RuntimeException('Unknown target: ' . $valueName); } } /** * Resolve a class or function name (with the current shell namespace). * * @param string $name * @param bool $includeFunctions (default: false) * * @return string */ protected function resolveName($name, $includeFunctions = false) { if (substr($name, 0, 1) === '\\') { return $name; } if ($namespace = $this->getApplication()->getNamespace()) { $fullName = $namespace . '\\' . $name; if (class_exists($fullName) || interface_exists($fullName) || ($includeFunctions && function_exists($fullName))) { return $fullName; } } return $name; } /** * Get a Reflector and documentation for a function, class or instance, constant, method or property. * * @param string $valueName Function, class, variable, constant, method or property name * @param bool $classOnly True if the name should only refer to a class, function or instance * * @return array (value, Reflector) */ protected function getTargetAndReflector($valueName, $classOnly = false) { list($value, $member, $kind) = $this->getTarget($valueName, $classOnly); return array($value, Mirror::get($value, $member, $kind)); } /** * Return a variable instance from the current scope. * * @throws \InvalidArgumentException when the requested variable does not exist in the current scope * * @param string $name * * @return mixed Variable instance */ protected function resolveInstance($name) { $value = $this->getScopeVariable($name); if (!is_object($value)) { throw new RuntimeException('Unable to inspect a non-object'); } return $value; } /** * Get a variable from the current shell scope. * * @param string $name * * @return mixed */ protected function getScopeVariable($name) { return $this->context->get($name); } /** * Get all scope variables from the current shell scope. * * @return array */ protected function getScopeVariables() { return $this->context->getAll(); } /** * Given a Reflector instance, set command-scope variables in the shell * execution context. This is used to inject magic $__class, $__method and * $__file variables (as well as a handful of others). * * @param \Reflector $reflector */ protected function setCommandScopeVariables(\Reflector $reflector) { $vars = array(); switch (get_class($reflector)) { case 'ReflectionClass': case 'ReflectionObject': $vars['__class'] = $reflector->name; if ($reflector->inNamespace()) { $vars['__namespace'] = $reflector->getNamespaceName(); } break; case 'ReflectionMethod': $vars['__method'] = sprintf('%s::%s', $reflector->class, $reflector->name); $vars['__class'] = $reflector->class; $classReflector = $reflector->getDeclaringClass(); if ($classReflector->inNamespace()) { $vars['__namespace'] = $classReflector->getNamespaceName(); } break; case 'ReflectionFunction': $vars['__function'] = $reflector->name; if ($reflector->inNamespace()) { $vars['__namespace'] = $reflector->getNamespaceName(); } break; case 'ReflectionGenerator': $funcReflector = $reflector->getFunction(); $vars['__function'] = $funcReflector->name; if ($funcReflector->inNamespace()) { $vars['__namespace'] = $funcReflector->getNamespaceName(); } if ($fileName = $reflector->getExecutingFile()) { $vars['__file'] = $fileName; $vars['__line'] = $reflector->getExecutingLine(); $vars['__dir'] = dirname($fileName); } break; case 'ReflectionProperty': case 'Psy\Reflection\ReflectionConstant': $classReflector = $reflector->getDeclaringClass(); $vars['__class'] = $classReflector->name; if ($classReflector->inNamespace()) { $vars['__namespace'] = $classReflector->getNamespaceName(); } // no line for these, but this'll do if ($fileName = $reflector->getDeclaringClass()->getFileName()) { $vars['__file'] = $fileName; $vars['__dir'] = dirname($fileName); } break; } if ($reflector instanceof \ReflectionClass || $reflector instanceof \ReflectionFunctionAbstract) { if ($fileName = $reflector->getFileName()) { $vars['__file'] = $fileName; $vars['__line'] = $reflector->getStartLine(); $vars['__dir'] = dirname($fileName); } } $this->context->setCommandScopeVariables($vars); } }