~~~
<?php
/**
* Created by PhpStorm.
* User: Mikkle
* QQ:776329498
* Date: 2017/6/19
* Time: 10:10
*/
namespace app\worker\controller;
use app\base\controller\Redis;
use think\Db;
use think\Log;
use think\Config;
use think\Exception;
abstract class WorkerBase
{
protected $listName;
protected $redis;
protected $workList;
protected $workerName;
public static $instance;
protected $connect = [];
protected $saveLog = false;
protected $tableName = "mk_log_service_queue";
protected $error;
/**
* Base constructor.
* @param array $options
*/
public function __construct($options = [])
{
$this->_initialize();
$this->redis = $this->redis();
$this->workList = "worker_list";
$this->workerName = get_called_class();
$this->listName = md5($this->workerName);
}
public function _initialize()
{
}
abstract protected function runHandle($data);
/**
* @title redis
* @description redis加载自定义Redis类
* User: Mikkle
* QQ:776329498
* @return \app\base\controller\Redis
*/
protected static function redis()
{
$options = empty($options) ? $redis = Config::get("redis") : $options;
return Redis::instance($options);
}
/**
* @title runWorker
* @description 标注命令行执行此任务
* User: Mikkle
* QQ:776329498
* @param string $handleName
*/
public function runWorker($handleName = "run")
{
$this->redis->hset($this->workList, $this->workerName, $handleName);
}
/**
* 标注命令行清除此任务
* Power: Mikkle
* Email:776329498@qq.com
*/
public function clearWorker()
{
$this->redis->hdel($this->workList, $this->workerName);
}
/**
* Power: Mikkle
* Email:776329498@qq.com
* @param array $options
* @return static
*/
static public function instance($options = [])
{
if (isset(static::$instance)) {
return static::$instance;
} else {
return new static($options);
}
}
/**
* * 快速添加模版消息任务
*
* 当命令行未运行 直接执行
* description add
* User: Mikkle
* QQ:776329498
* @param $data
* @param array $options
* @param string $handleName
* @return bool
*/
static public function add($data, $options = [], $handleName = "run")
{
try {
$data = json_encode($data);
$instance = static::instance($options);
switch (true) {
case (self::checkCommandRun()):
$instance->redis->lpush($instance->listName, $data);
Log::notice("Command service start work!!");
$instance->runWorker($handleName);
break;
default:
Log::notice("Command service No away!!");
$instance->runHandle($data);
}
return true;
} catch (Exception $e) {
Log::error($e->getMessage());
return false;
}
}
/**
* 命令行执行的方法
* Power: Mikkle
* Email:776329498@qq.com
*/
static public function run()
{
$instance = static::instance();
try {
$i = 0;
while (true) {
$redisData = $instance->redis->rpop($instance->listName);
$data = json_decode($redisData, true);
if ($data) {
$result = $instance->runHandle($data);
if ($instance->saveLog) {
$instance->saveRunLog($result, $data);
}
} else {
$instance->clearWorker();
break;
}
$i++;
sleep(1);
}
echo "执行了{$i}次任务" . PHP_EOL;
} catch (Exception $e) {
Log::error($e);
Log::error($e->getMessage());
echo($e->getMessage());
}
}
/**
* 检测命令行是否执行中
* Power: Mikkle
* Email:776329498@qq.com
* @return bool
*/
static public function checkCommandRun()
{
return self::redis()->get("command") ? true : false;
}
public function getError()
{
if (is_array($this->error)) {
return json_encode($this->error);
}
return $this->error;
}
/*
* 检查是注重某些值是非为空
*/
protected function checkArrayValueEmpty($array, $value, $error = true)
{
switch (true) {
case (empty($array) || !is_array($array)):
if ($error == true) {
$this->addError("要检测的数据不存在或者非数组");
}
return false;
break;
case (is_array($value)):
foreach ($value as $item) {
if (!isset($array[$item]) || (empty($array[$item]) && $array[$item] !== 0)) {
if ($error == true) {
$this->addError("要检测的数组数据有不存在键值{$item}");
}
return false;
}
}
break;
case (is_string($value)):
if (!isset($array[$value]) || empty($array[$value] && $array[$value] !== 0)) {
if ($error == true) {
$this->addError("要检测的数组数据有不存在键值{$value}");
}
return false;
}
break;
default:
}
return true;
}
public function addError($error)
{
$this->error = is_string($error) ? $error : json_encode($error);
}
protected function saveRunLog($result, $data)
{
try {
$operateData = [
"class" => $this->workerName,
"args" => json_encode($data),
"result" => $result ? "true" : "false",
"error" => $this->error ? $this->getError() : null,
"time" => time(),
];
Db::connect($this->connect)->table($this->tableName)->insert($operateData);
} catch (Exception $e) {
Log::error($e->getMessage());
}
}
protected function sleep($time = 1)
{
sleep(sleep($time));
}
}
~~~
- PHP7新特性
- 优雅的写代码
- 常见的代码优化
- 常用的工具类
- PHP原生生成EXCEL
- PHP地理位置计算
- PHP获取服务器状态
- 驼峰转下划线
- 百度地图两点坐标距离计算
- 判断是否是url
- PHP常见header头
- 邮件发送类
- 阿拉伯数字转化为大写
- 获取汉字首个拼音
- 根据身份证号获取星座
- 生成验证码类
- 生成唯一ID
- 身份证验证类
- PHP中文转拼音
- Nginx配置文件
- curl获取网页内容
- 快递查询api
- 上传图片类
- 股票类
- 找回密码类
- 字符串助手函数
- 校验数据规则
- PHP获取收集相关信息
- 字符串截取助手函数
- 网页中提取关键字
- 检测浏览器语言
- 微信相关类
- 微信获取access_token
- 获取用户基本信息
- 代码规范
- 编程规范(psr-1,2)
- 编程规范(原作者的建议)
- 经验
- 常用函数地址
- 函数集合
- 一些常识
- MYSQL相关知识
- 常用sql
- mysql事务隔离级别
- Read uncommitted
- Read committed
- Repeatable read
- Serializable
- 高性能MYSQL读书笔记
- 第一章MYSQL的架构
- mysql逻辑架构
- redis相关知识
- 1.安装redis
- 3.php操作redis
- 队列
- 悲观锁
- 乐观锁
- 发布
- 订阅
- redis实战-文章投票
- 设计模式
- 创建模型实例
- 单例模式
- 工厂模式
- AnimalInterface.php
- Chicken.php
- Factory.php
- Farm.php
- Pig
- SampleFactory.php
- Zoo
- 抽象工厂模式
- AnimalFactory
- Factory
- FarmInterface
- Income
- PandaZoo
- PeonyZoo
- PigFarm
- PlantFactory
- RiceFarm
- ZooInterface
- 原型模式
- 建造者模式
- 结构型模式实例
- 桥接模式
- 享元模式
- 外观模式
- 适配器模式
- 装饰器模式
- 组合模式
- 代理模式哦
- 过滤器模式
- 行为型模式实例
- 模板模式
- 策略模式
- 状态模式
- 观察者模式
- 责任链模式
- 访问者模式
- 解释器模式
- 空对象模式
- 中介者模式
- 迭代器模式
- 命令模式
- 备忘录模式
- 网络知识
- 互联网协议概述
- nginx简易交互过程
- HTTP知识
- LINUX相关知识
- swoole学习
- 1.初识swoole
- 2.WebSocket PHP 即时通讯开发
- 3.异步多进程的 CURL
- 4.异步非阻塞多进程的 Http 服务器
- 5.TCP 服务器
- 5.1同步 TCP 客户端
- 5.2异步 TCP 客户端
- 6.UDP 服务器
- 7.异步多任务处理
- 8.毫秒定时器
- 9.高并发投票
- ThinkPHP5学习
- 命令行操作
- 所有命令行中用到的基类
- 1.base
- 2.WorkerBase
- 3.TimeWorkerBase
- 4.CycleWorkerBase
- 5.WorkerCommandBase
- 6.WorkerHookBase
- 1.基础命令实现
- 2.建立Linux上的守护源码
- 3.发送模板消息
- 4.基于命令行实现自己的队列模式
- 5.发送定时短信
- thinkphp5使用sentry
- sentry通知,记录日志
- 高级查询
- Kafka相关
- 1.安装
- 2.为php打扩展
- 3.kafka实现
- 一些工具搭建
- sentry日志收集系统搭建
- walle搭建
- php实现定时任务
- 检测文件变化