文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

thinkphp6中如何使用workerman

2023-07-04 18:30

关注

本文小编为大家详细介绍“thinkphp6中如何使用workerman”,内容详细,步骤清晰,细节处理妥当,希望这篇“thinkphp6中如何使用workerman”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

thinkphp6整合workerman教程

thinkphp6安装workerman命令:

composer require topthink/think-worker

第一步,创建一个自定义命令类文件,运行指令。

php think make:command Spider spider

会生成一个app\command\Spider命令行指令类,我们修改内容如下:

<?phpnamespace app\command; // tp指令特性使用的功能use think\console\Command;use think\console\Input;use think\console\input\Argument;use think\console\Output; // 引用项目的基类,该类继承自workeruse app\server\controller\Start; class Spider extends Command{         public $model_name = 'server';         public $controller_names = ['WebhookTimer'];         protected function configure()    {        $this->setName('spider')            ->addArgument('status', Argument::OPTIONAL, "status")            ->addArgument('controller_name', Argument::OPTIONAL, "controller_name/controller_name")            ->addArgument('mode', Argument::OPTIONAL, "d")            ->setDescription('spider control');             }          protected function execute(Input $input, Output $output)    {         //获得status参数,即think自定义指令中的第一个参数,缺省报错        $status  = $input->getArgument('status');        if(!$status){            $output->writeln('pelase input control command , like start');            exit;        }          //获得控制器名称        $controller_str =  $input->getArgument('controller_name');         //获得模式,d为wokerman的后台模式(生产环境)        $mode = $input->getArgument('mode');         //分析控制器参数,如果缺省或为all,那么运行所有注册的控制器        $controller_list = $this->controller_names;         if($controller_str != '' && $controller_str != 'all' )        {            $controller_list = explode('/',$controller_str);        }         //重写mode参数,改为wokerman接受的参数        if($mode == 'd'){            $mode = '-d';        }         if($mode == 'g'){            $mode = '-g';        }         //将wokerman需要的参数传入到其parseCommand方法中,此方法在start类中重写        Start::$argvs = [            'think',            $status,            $mode        ];         $output->writeln('start running spider');         $programs_ob_list = [];          //实例化需要运行的控制器        foreach ($controller_list as $c_key => $controller_name) {            $class_name = 'app\\'.$this->model_name.'\controller\\'.$controller_name;            $programs_ob_list[] = new $class_name();        }           //将控制器的相关回调参数传到workerman中        foreach (['onWorkerStart', 'onConnect', 'onMessage', 'onClose', 'onError', 'onBufferFull', 'onBufferDrain', 'onWorkerStop', 'onWorkerReload'] as $event) {            foreach ($programs_ob_list as $p_key => $program_ob) {                if (method_exists($program_ob, $event)) {                    $programs_ob_list[$p_key]->$event = [$program_ob,$event];                }            }        }         Start::runAll();    }}

例如我们创建一个定时器的命令app\server\controller创建WebhookTimer.php

<?phpnamespace app\server\controller;use Workerman\Worker; use \Workerman\Lib\Timer;use think\facade\Cache;use think\facade\Db;use think\Request; class WebhookTimer extends Start{    public $host     = '0.0.0.0';    public $port     = '9527';    public $name     = 'webhook';    public $count    = 1;    public function onWorkerStart($worker)    {                          Timer::add(2, array($this, 'webhooks'), array(), true);                 }    public function onConnect()    {     }     public function onMessage($ws_connection, $message)    {           }     public function onClose()    {     }        public function webhooks()    {        echo 11;    }        }

执行start命令行

php think spider start

thinkphp6中如何使用workerman

执行stop命令

php think spider stop

执行全部进程命令

php think spider start all d

app\command\Spider.php文件

public $controller_names = ['WebhookTimer','其他方法','其他方法'];

其他方法 就是app\server\controller下创建的其他类文件方法

完结

Start.php文件

<?phpnamespace app\server\controller; use Workerman\Worker; class Start extends Worker{    public static $argvs = [];    public static $workerHost;    public $socket   = '';    public $protocol = 'http';    public $host     = '0.0.0.0';    public $port     = '2346';    public $context  = [];     public function __construct()    {        self::$workerHost = parent::__construct($this->socket ?: $this->protocol . '://' . $this->host . ':' . $this->port, $this->context);    }         public static function parseCommand()    {        if (static::$_OS !== OS_TYPE_LINUX) {            return;        }        // static::$argvs;        // Check static::$argvs;        $start_file = static::$argvs[0];        $available_commands = array(            'start',            'stop',            'restart',            'reload',            'status',            'connections',        );        $usage = "Usage: php yourfile <command> [mode]\nCommands: \nstart\t\tStart worker in DEBUG mode.\n\t\tUse mode -d to start in DAEMON mode.\nstop\t\tStop worker.\n\t\tUse mode -g to stop gracefully.\nrestart\t\tRestart workers.\n\t\tUse mode -d to start in DAEMON mode.\n\t\tUse mode -g to stop gracefully.\nreload\t\tReload codes.\n\t\tUse mode -g to reload gracefully.\nstatus\t\tGet worker status.\n\t\tUse mode -d to show live status.\nconnections\tGet worker connections.\n";        if (!isset(static::$argvs[1]) || !in_array(static::$argvs[1], $available_commands)) {            if (isset(static::$argvs[1])) {                static::safeEcho('Unknown command: ' . static::$argvs[1] . "\n");            }            exit($usage);        }         // Get command.        $command  = trim(static::$argvs[1]);        $command2 = isset(static::$argvs[2]) ? static::$argvs[2] : '';         // Start command.        $mode = '';        if ($command === 'start') {            if ($command2 === '-d' || static::$daemonize) {                $mode = 'in DAEMON mode';            } else {                $mode = 'in DEBUG mode';            }        }        static::log("Workerman[$start_file] $command $mode");         // Get master process PID.        $master_pid      = is_file(static::$pidFile) ? file_get_contents(static::$pidFile) : 0;        $master_is_alive = $master_pid && posix_kill($master_pid, 0) && posix_getpid() != $master_pid;        // Master is still alive?        if ($master_is_alive) {            if ($command === 'start') {                static::log("Workerman[$start_file] already running");                exit;            }        } elseif ($command !== 'start' && $command !== 'restart') {            static::log("Workerman[$start_file] not run");            exit;        }         // execute command.        switch ($command) {            case 'start':                if ($command2 === '-d') {                    static::$daemonize = true;                }                break;            case 'status':                while (1) {                    if (is_file(static::$_statisticsFile)) {                        @unlink(static::$_statisticsFile);                    }                    // Master process will send SIGUSR2 signal to all child processes.                    posix_kill($master_pid, SIGUSR2);                    // Sleep 1 second.                    sleep(1);                    // Clear terminal.                    if ($command2 === '-d') {                        static::safeEcho("\33[H\33[2J\33(B\33[m", true);                    }                    // Echo status data.                    static::safeEcho(static::formatStatusData());                    if ($command2 !== '-d') {                        exit(0);                    }                    static::safeEcho("\nPress Ctrl+C to quit.\n\n");                }                exit(0);            case 'connections':                if (is_file(static::$_statisticsFile) && is_writable(static::$_statisticsFile)) {                    unlink(static::$_statisticsFile);                }                // Master process will send SIGIO signal to all child processes.                posix_kill($master_pid, SIGIO);                // Waiting amoment.                usleep(500000);                // Display statisitcs data from a disk file.                if(is_readable(static::$_statisticsFile)) {                    readfile(static::$_statisticsFile);                }                exit(0);            case 'restart':            case 'stop':                if ($command2 === '-g') {                    static::$_gracefulStop = true;                    $sig = SIGTERM;                    static::log("Workerman[$start_file] is gracefully stopping ...");                } else {                    static::$_gracefulStop = false;                    $sig = SIGINT;                    static::log("Workerman[$start_file] is stopping ...");                }                // Send stop signal to master process.                $master_pid && posix_kill($master_pid, $sig);                // Timeout.                $timeout    = 5;                $start_time = time();                // Check master process is still alive?                while (1) {                    $master_is_alive = $master_pid && posix_kill($master_pid, 0);                    if ($master_is_alive) {                        // Timeout?                        if (!static::$_gracefulStop && time() - $start_time >= $timeout) {                            static::log("Workerman[$start_file] stop fail");                            exit;                        }                        // Waiting amoment.                        usleep(10000);                        continue;                    }                    // Stop success.                    static::log("Workerman[$start_file] stop success");                    if ($command === 'stop') {                        exit(0);                    }                    if ($command2 === '-d') {                        static::$daemonize = true;                    }                    break;                }                break;            case 'reload':                if($command2 === '-g'){                    $sig = SIGQUIT;                }else{                    $sig = SIGUSR1;                }                posix_kill($master_pid, $sig);                exit;            default :                if (isset($command)) {                    static::safeEcho('Unknown command: ' . $command . "\n");                }                exit($usage);        }    } }

读到这里,这篇“thinkphp6中如何使用workerman”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯