PAREA_INOUTRES_PUSH.php 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. <?php
  2. require('../vendor/autoload.php');
  3. use \PhpMqtt\Client\MqttClient;
  4. use \PhpMqtt\Client\ConnectionSettings;
  5. use think\facade\Cache;
  6. date_default_timezone_set("PRC");
  7. define('HOST', '127.0.0.1');
  8. define('PORT', '6379');
  9. define('PASSWORD', 'R!478gH*%23nPn');
  10. // define('PASSWORD', '123456');
  11. define('DATABASE', 2);
  12. function app_redis()
  13. {
  14. static $redis = null;
  15. static $conn = false;
  16. if (!$conn) {
  17. connect: //定义标签
  18. $redis = new Redis();
  19. try {
  20. //建立的Redis短连接,在请求结束后不会自动关闭,相当于持久连接.
  21. $conn = $redis->connect(HOST, PORT);
  22. $conn = $redis->auth(PASSWORD);
  23. $conn = $redis->select(DATABASE);
  24. // 连接成功,返回$redis对象,连接失败,返回false.
  25. return ($conn === true) ? $redis : false;
  26. } catch (Exception $e) {
  27. return false;
  28. }
  29. } else {
  30. // 这里假设PHP-FPM在处理一个请求的时间内,Redis连接都是可用的.
  31. // 所以只在PHP-CLI下检查Redis连接的状态,进行断线重连.
  32. if (php_sapi_name() === 'cli') {
  33. try {
  34. // ping用于检查当前连接的状态,成功时返回+PONG,失败时抛出一个RedisException对象.
  35. // ping失败时警告:
  36. // Warning: Redis::ping(): connect() failed: Connection refused
  37. // var_dump('AAAAAAAAA', $redis);
  38. echo 'Redis 连接状态' . $redis->ping() . PHP_EOL;
  39. @$redis->ping();
  40. if (!$redis->ping()) {
  41. goto connect; //跳转到标签出继续执行连接操作
  42. }
  43. } catch (Exception $e) {
  44. // 信息如 Connection lost 或 Redis server went away
  45. echo $e->getMessage();
  46. echo 'Redis 连接失败 重新连接:' . PHP_EOL;
  47. // 断线重连
  48. goto connect;
  49. }
  50. }
  51. return $redis;
  52. }
  53. }
  54. function rlog(...$args)
  55. {
  56. if (empty($args[0])) {
  57. return;
  58. }
  59. static $LOG_CONSOLE = false; //是否输出到控制台
  60. static $LOG_NAME = "parea_inoutres_push.log"; //值为空时 不写入文件
  61. static $LOG_SIZE = 64 * 1024 * 1024; //文件最大尺寸
  62. static $LOG_CACHE = false; //是否缓存日志内容 用于批量写入文件
  63. static $CACHE_DURATION = 10; //缓存最大时间 秒
  64. static $CACHE_SIZE = 1024; //缓存大小
  65. static $cacheStartTime = 0;
  66. static $cacheBuf = '';
  67. static $LOG_TIMES = 10; //调用这个函数最大次数 超过次数后判断下文件大小
  68. static $logCount = 0;
  69. $buf = '';
  70. if (count($args) == 1 && $args[0] == "\n") { //只有换行时 不写入时间戳了
  71. $buf = "\n";
  72. } else {
  73. $pid = ''; //进程id
  74. if (function_exists('posix_getpid')) {
  75. $pid = ' ' . posix_getpid() . ' ';
  76. }
  77. $fileLine = ''; //文件名:行号
  78. {
  79. $debug = debug_backtrace();
  80. $fileLine = ($pid == '' ? ' ' : '') . basename($debug[0]['file']) . ':' . $debug[0]['line'] . ' ';
  81. }
  82. $buf = date("y-m-d H:i:s") . "{$pid}{$fileLine}" . implode(' ', $args) . "\n";
  83. }
  84. $logCount++;
  85. if (!empty($LOG_NAME)) {
  86. if ($LOG_CACHE) {
  87. $cacheBuf .= $buf;
  88. //超过缓存尺寸 或者 超过缓存时长 写缓存到文件
  89. if (strlen($cacheBuf) > $CACHE_SIZE || time() - $cacheStartTime > $CACHE_DURATION) {
  90. $cacheStartTime = time();
  91. goto write;
  92. } else {
  93. goto skipWrite;
  94. }
  95. } else {
  96. $cacheBuf = $buf;
  97. }
  98. write: {
  99. //超过尺寸后 删除旧文件 把新文件重命名为旧文件 多进程同时操作 不加锁问题不大
  100. if ($logCount > $LOG_TIMES && filesize($LOG_NAME) > $LOG_SIZE) {
  101. $oldLogName = $LOG_NAME . '.old';
  102. if (file_exists($oldLogName)) {
  103. if (!unlink($oldLogName)) {
  104. echo "unlink err\n";
  105. }
  106. }
  107. if (!rename($LOG_NAME, $oldLogName)) {
  108. echo "rename err\n";
  109. }
  110. $logCount = 0;
  111. }
  112. if (!file_put_contents($LOG_NAME, $cacheBuf, FILE_APPEND)) {
  113. echo "file_put_contents err\n";
  114. }
  115. $cacheBuf = '';
  116. }
  117. skipWrite: {
  118. }
  119. }
  120. if ($LOG_CONSOLE) {
  121. echo $buf;
  122. }
  123. }
  124. function http($url, $params, $header = [], $method = 'GET', $timeout = 10)
  125. {
  126. // POST $params 字符串形式query=abcd&abc=12345
  127. //GET $params 数组['query' => 'abcd', 'abc' => 12345]
  128. // $header[] = "Content-Type: application/x-www-form-urlencoded";
  129. // $header[] = "Content-Type: application/soap+xml; charset=utf-8";
  130. // $header[] = "Content-Type: application/json; charset=utf-8";
  131. // $header[] = "Expect: ";
  132. rlog("[HTTP] url:$url,method:$method" . ",header:" . json_encode($header));
  133. if (strtoupper($method) == 'POST') {
  134. rlog("[POST] send params " . (!is_array($params) ? $params : json_encode($params, JSON_UNESCAPED_UNICODE)));
  135. } else {
  136. rlog("[GET] send " . json_encode($params));
  137. }
  138. $header[] = "Expect: ";
  139. $opts = array(
  140. CURLOPT_TIMEOUT => $timeout,
  141. CURLOPT_RETURNTRANSFER => 1,
  142. CURLOPT_SSL_VERIFYPEER => false,
  143. CURLOPT_SSL_VERIFYHOST => false,
  144. CURLOPT_HTTPHEADER => $header
  145. );
  146. /* 根据请求类型设置特定参数 */
  147. switch (strtoupper($method)) {
  148. case 'GET':
  149. $opts[CURLOPT_URL] = $url . (empty($params) ? '' : ('?' . http_build_query($params)));
  150. break;
  151. case 'POST':
  152. //$params = http_build_query($params);
  153. $opts[CURLOPT_URL] = $url;
  154. $opts[CURLOPT_POST] = 1;
  155. $opts[CURLOPT_POSTFIELDS] = json_encode($params);
  156. break;
  157. default:
  158. rlog("[ERR] method " . $method);
  159. return false;
  160. }
  161. global $ch; //curl长连接
  162. if (empty($ch)) {
  163. $ch = curl_init();
  164. }
  165. if (empty($ch)) {
  166. rlog("[ERR] curl_init");
  167. return false;
  168. }
  169. $csa = curl_setopt_array($ch, $opts);
  170. if (empty($csa)) {
  171. rlog("[ERR] curl_setopt_array");
  172. return false;
  173. }
  174. $data = curl_exec($ch);
  175. if ($data === false) {
  176. rlog("[ERR] curl_exec errno:" . curl_errno($ch) . " " . curl_error($ch));
  177. return false;
  178. }
  179. //unicode转中文
  180. $data = decodeUnicode($data);
  181. rlog("[HTTP] recv " . $data);
  182. //curl_close($ch);
  183. return $data;
  184. }
  185. function decodeUnicode($str)
  186. {
  187. return preg_replace_callback('/\\\\u([0-9a-f]{4})/i', function ($matches) {
  188. return iconv("UCS-2BE", "UTF-8", pack("H*", $matches[1]));
  189. }, $str);
  190. }
  191. // while (true) {
  192. // try {
  193. // rlog('INFO', 'task start');
  194. // $infos = app_redis()->hgetall("indoor_inoutres_push");
  195. // foreach ($infos as $k => $v) {
  196. // # code...
  197. // $data = json_decode($v, true);
  198. // if ( (time() - $data["time"] ) > $offlineInt ) {
  199. // # code...
  200. // if ($data["status"] == 1) {
  201. // # code...
  202. // // $url="http://localhost:8115/api/accessClassReport";
  203. // $url="http://61.175.203.188:10001/api/accessClassReport";
  204. // $url_data = [
  205. // "mac" => $data["mac"],
  206. // "data" => [
  207. // [
  208. // "label" => $data["id"],
  209. // "time" => time(),
  210. // "dirt" => 2,
  211. // "rssi" => $data["rssi"],
  212. // "avg" => $data["avg"]
  213. // ]
  214. // ]
  215. // ];
  216. // http($url, $url_data, [], 'POST');
  217. // rlog("PUSH INFO","离线推送依赖数据", $v);
  218. // }
  219. // app_redis()->hdel('indoor_rfidinfos',$k);;
  220. // }
  221. // }
  222. // } catch (\Exception $ex) {
  223. // rlog("INFO", 'pushhttp',"推送 异常".$ex->getMessage());
  224. // }
  225. // $sleepTime = floor($offlineInt/10);
  226. // if ($sleepTime < 3) {
  227. // # code...
  228. // $sleepTime = 3;
  229. // }
  230. // sleep($sleepTime); //1分钟遍历一次
  231. // }
  232. // 正式部分
  233. while (true) {
  234. try {
  235. if (app_redis() === false) {
  236. echo 'redis连接错误!' . PHP_EOL;
  237. continue;
  238. }
  239. $data = app_redis()->lpop('parea_inoutres_push');
  240. if(!$data){
  241. // var_dump($data);
  242. echo "redis无数据!",PHP_EOL;
  243. sleep(1);
  244. continue;
  245. }
  246. echo ('取出数据' . $data." TYPE:". gettype($data) . PHP_EOL);
  247. $url_data = json_decode($data, true);
  248. $url="http://localhost:8115/api/areaReport";
  249. http($url, $url_data, [], 'POST');
  250. if($url_data["first_time"]){
  251. $camData = [
  252. "station" => $url_data["mac"],
  253. "list" => [
  254. [
  255. "label" =>$url_data["id"],
  256. "first_time" => $url_data["first_time"],
  257. "time" => $url_data["time"]
  258. ]
  259. ]
  260. ];
  261. $resp = http("http://localhost:8115/api/areaLabelReport", $camData, [], 'POST');
  262. }
  263. rlog("PUSH INFO","推送依赖数据", $data);
  264. }catch (\Exception $ex) {
  265. rlog("INFO", 'pushhttp',"推送 异常".$ex->getMessage());
  266. }
  267. // sleep(3);
  268. }