改名
This commit is contained in:
@@ -5,6 +5,7 @@ namespace Console;
|
|||||||
|
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
|
use Snowflake\Abstracts\Input;
|
||||||
use Snowflake\Snowflake;
|
use Snowflake\Snowflake;
|
||||||
use Swoole\Coroutine\Channel;
|
use Swoole\Coroutine\Channel;
|
||||||
|
|
||||||
@@ -20,7 +21,7 @@ abstract class AbstractConsole
|
|||||||
*/
|
*/
|
||||||
public $commands = [];
|
public $commands = [];
|
||||||
|
|
||||||
/** @var Dtl $parameters */
|
/** @var Input $parameters */
|
||||||
private $parameters;
|
private $parameters;
|
||||||
|
|
||||||
/** @var array */
|
/** @var array */
|
||||||
@@ -47,10 +48,11 @@ abstract class AbstractConsole
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @return $this
|
* @return $this
|
||||||
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function setParameters()
|
public function setParameters()
|
||||||
{
|
{
|
||||||
$this->parameters = new Dtl($_SERVER['argv']);
|
$this->parameters = new Input($_SERVER['argv']);
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -60,7 +62,7 @@ abstract class AbstractConsole
|
|||||||
*/
|
*/
|
||||||
public function execCommand(Command $command)
|
public function execCommand(Command $command)
|
||||||
{
|
{
|
||||||
return $command->handler($this->parameters);
|
return $command->onHandler($this->parameters);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
+5
-11
@@ -27,24 +27,18 @@ class Application extends Component
|
|||||||
*/
|
*/
|
||||||
public $id = 'uniqueId';
|
public $id = 'uniqueId';
|
||||||
|
|
||||||
|
/** @var Console */
|
||||||
private $console;
|
private $console;
|
||||||
|
|
||||||
/** @var Channel */
|
|
||||||
private $channel;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Application constructor.
|
*
|
||||||
* @param array $config
|
|
||||||
* @throws
|
|
||||||
*/
|
*/
|
||||||
public function __construct(array $config = [])
|
public function init()
|
||||||
{
|
{
|
||||||
parent::__construct($config);
|
$this->console = new Console();
|
||||||
|
|
||||||
$this->channel = new Channel(1);
|
|
||||||
$this->console = new Console($config);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $class
|
* @param $class
|
||||||
* @throws
|
* @throws
|
||||||
|
|||||||
@@ -3,6 +3,8 @@
|
|||||||
|
|
||||||
namespace Console;
|
namespace Console;
|
||||||
|
|
||||||
|
use Snowflake\Abstracts\Input;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Interface CommandInterface
|
* Interface CommandInterface
|
||||||
* @package Console
|
* @package Console
|
||||||
@@ -10,6 +12,6 @@ namespace Console;
|
|||||||
interface CommandInterface
|
interface CommandInterface
|
||||||
{
|
{
|
||||||
|
|
||||||
public function handler(Dtl $dtl);
|
public function onHandler(Input $dtl);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,8 @@
|
|||||||
|
|
||||||
namespace Console;
|
namespace Console;
|
||||||
|
|
||||||
|
use Snowflake\Abstracts\Input;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class DefaultCommand
|
* Class DefaultCommand
|
||||||
* @package Console
|
* @package Console
|
||||||
@@ -13,7 +15,7 @@ class DefaultCommand extends Command
|
|||||||
|
|
||||||
public $description = 'help';
|
public $description = 'help';
|
||||||
|
|
||||||
public function handler(Dtl $dtl)
|
public function onHandler(Input $dtl)
|
||||||
{
|
{
|
||||||
$param = $dtl->get('commandList');
|
$param = $dtl->get('commandList');
|
||||||
|
|
||||||
|
|||||||
-131
@@ -1,131 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
|
|
||||||
namespace Console;
|
|
||||||
|
|
||||||
|
|
||||||
use HttpServer\Http\Context;
|
|
||||||
use HttpServer\Http\HttpHeaders;
|
|
||||||
use HttpServer\Http\HttpParams;
|
|
||||||
use HttpServer\Http\Request;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class Dtl
|
|
||||||
* @package Console
|
|
||||||
*/
|
|
||||||
class Dtl
|
|
||||||
{
|
|
||||||
|
|
||||||
private $parameters;
|
|
||||||
|
|
||||||
private $command = '';
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dtl constructor.
|
|
||||||
* @param $parameters
|
|
||||||
* @throws
|
|
||||||
*/
|
|
||||||
public function __construct($parameters)
|
|
||||||
{
|
|
||||||
$this->parameters = $this->resolve($parameters);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function getCommandName()
|
|
||||||
{
|
|
||||||
return $this->command;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $parameters
|
|
||||||
* @return array
|
|
||||||
* @throws \Exception
|
|
||||||
*/
|
|
||||||
public function resolve($parameters)
|
|
||||||
{
|
|
||||||
$arrays = [];
|
|
||||||
$parameters = array_slice($parameters, 1);
|
|
||||||
|
|
||||||
$this->command = array_shift($parameters);
|
|
||||||
foreach ($parameters as $parameter) {
|
|
||||||
$explode = explode('=', $parameter);
|
|
||||||
if (count($explode) < 2) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
$arrays[array_shift($explode)] = current($explode);
|
|
||||||
}
|
|
||||||
|
|
||||||
$request = new Request();
|
|
||||||
$request->fd = 0;
|
|
||||||
$request->params = new HttpParams([], $arrays, []);
|
|
||||||
$request->headers = new HttpHeaders([]);
|
|
||||||
|
|
||||||
Context::setContext('request', $request);
|
|
||||||
return $arrays;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $key
|
|
||||||
* @param null $default
|
|
||||||
* @return mixed|null
|
|
||||||
*/
|
|
||||||
public function get($key, $default = null)
|
|
||||||
{
|
|
||||||
return $this->parameters[$key] ?? $default;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param $key
|
|
||||||
* @param $value
|
|
||||||
* @return $this
|
|
||||||
*/
|
|
||||||
public function set($key, $value)
|
|
||||||
{
|
|
||||||
$this->parameters[$key] = $value;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param array $array
|
|
||||||
* @return $this
|
|
||||||
*/
|
|
||||||
public function setBatch(array $array)
|
|
||||||
{
|
|
||||||
if (empty($array)) {
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
foreach ($array as $key => $value) {
|
|
||||||
$this->parameters[$key] = $value;
|
|
||||||
}
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return array
|
|
||||||
* 获取
|
|
||||||
*/
|
|
||||||
public function getAll()
|
|
||||||
{
|
|
||||||
return $this->parameters;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return null
|
|
||||||
* 清理
|
|
||||||
*/
|
|
||||||
public function clear()
|
|
||||||
{
|
|
||||||
return $this->parameters = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return false|string
|
|
||||||
*/
|
|
||||||
public function toJson()
|
|
||||||
{
|
|
||||||
return json_encode($this->parameters, JSON_UNESCAPED_UNICODE);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -4,9 +4,11 @@
|
|||||||
namespace Console;
|
namespace Console;
|
||||||
|
|
||||||
|
|
||||||
|
use Snowflake\Abstracts\Input;
|
||||||
|
|
||||||
interface ICommand
|
interface ICommand
|
||||||
{
|
{
|
||||||
|
|
||||||
public function handler();
|
public function onHandler(Input $dtl);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
+17
-21
@@ -4,7 +4,8 @@
|
|||||||
namespace HttpServer;
|
namespace HttpServer;
|
||||||
|
|
||||||
|
|
||||||
use Console\Dtl;
|
use Exception;
|
||||||
|
use Snowflake\Abstracts\Input;
|
||||||
use Snowflake\Exception\ComponentException;
|
use Snowflake\Exception\ComponentException;
|
||||||
use Snowflake\Exception\ConfigException;
|
use Snowflake\Exception\ConfigException;
|
||||||
use Snowflake\Snowflake;
|
use Snowflake\Snowflake;
|
||||||
@@ -22,33 +23,28 @@ class Command extends \Console\Command
|
|||||||
public $description = 'server start|stop|reload|restart';
|
public $description = 'server start|stop|reload|restart';
|
||||||
|
|
||||||
|
|
||||||
private $actions = [
|
|
||||||
'start', 'stop', 'reload', 'restart'
|
|
||||||
];
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Dtl $dtl
|
* @param Input $dtl
|
||||||
* @throws ComponentException|ConfigException
|
* @throws ConfigException
|
||||||
* @throws \Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public function handler(Dtl $dtl)
|
public function onHandler(Input $dtl)
|
||||||
{
|
{
|
||||||
$action = $dtl->get('action', 3);
|
$manager = Snowflake::app()->server;
|
||||||
|
$manager->setDaemon($dtl->get('daemon', 0));
|
||||||
/** @var Server $server */
|
switch ($dtl->get('action')) {
|
||||||
$server = Snowflake::app()->get('server');
|
|
||||||
switch ($action) {
|
|
||||||
case 'restart':
|
|
||||||
$server->shutdown();
|
|
||||||
$server->start();
|
|
||||||
break;
|
|
||||||
case 'stop':
|
case 'stop':
|
||||||
$server->shutdown();
|
$manager->shutdown();
|
||||||
|
break;
|
||||||
|
case 'restart':
|
||||||
|
$manager->shutdown();
|
||||||
|
$manager->start();
|
||||||
break;
|
break;
|
||||||
case 'start':
|
case 'start':
|
||||||
|
$manager->start();
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
$server->start();
|
$this->error('only start|stop|reload|restart');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,10 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
|
||||||
|
namespace Snowflake\Abstracts;
|
||||||
|
|
||||||
|
|
||||||
|
abstract class Command extends Component
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
@@ -26,6 +26,14 @@ class Input
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function getCommandName()
|
||||||
|
{
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $key
|
* @param $key
|
||||||
@@ -49,7 +57,6 @@ class Input
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return false|string
|
* @return false|string
|
||||||
*/
|
*/
|
||||||
@@ -68,7 +75,7 @@ class Input
|
|||||||
{
|
{
|
||||||
$arrays = [];
|
$arrays = [];
|
||||||
$parameters = array_slice($parameters, 1);
|
$parameters = array_slice($parameters, 1);
|
||||||
// $this->_command = array_shift($parameters);
|
$this->_command = array_shift($parameters);
|
||||||
foreach ($parameters as $parameter) {
|
foreach ($parameters as $parameter) {
|
||||||
$explode = explode('=', $parameter);
|
$explode = explode('=', $parameter);
|
||||||
if (count($explode) < 2) {
|
if (count($explode) < 2) {
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ use Snowflake\Abstracts\BaseApplication;
|
|||||||
use Snowflake\Abstracts\Config;
|
use Snowflake\Abstracts\Config;
|
||||||
use Snowflake\Abstracts\Input;
|
use Snowflake\Abstracts\Input;
|
||||||
use Snowflake\Exception\NotFindClassException;
|
use Snowflake\Exception\NotFindClassException;
|
||||||
|
use Snowflake\Exception\ComponentException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Init
|
* Class Init
|
||||||
@@ -64,6 +65,18 @@ class Application extends BaseApplication
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $command
|
||||||
|
* @throws ComponentException
|
||||||
|
*/
|
||||||
|
public function command(string $command)
|
||||||
|
{
|
||||||
|
/** @var \Console\Application $abstracts */
|
||||||
|
$abstracts = $this->get('console');
|
||||||
|
$abstracts->register($command);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $argv
|
* @param $argv
|
||||||
* @throws
|
* @throws
|
||||||
|
|||||||
Reference in New Issue
Block a user