Phase1 后端核心:
- 新增 fsgx_v1.sql 迁移脚本(is_queue_goods/frozen_points/available_points/no_assess)
- SystemConfigServices 返佣设置扩展(周期人数/分档比例/范围/时机)
- StoreOrderCreateServices 周期循环佣金计算
- StoreOrderTakeServices 佣金发放后同步冻结积分
- StoreProductServices/StoreProduct 保存 is_queue_goods
Phase2 后端接口:
- GET /api/hjf/brokerage/progress 佣金周期进度
- GET /api/hjf/assets/overview 资产总览
- HjfPointsServices 每日 frozen_points 0.4‰ 释放定时任务
- PUT /adminapi/hjf/member/{uid}/no_assess 不考核接口
- GET /adminapi/hjf/points/release_log 积分日志接口
Phase3 前端清理:
- hjfCustom.js 路由精简(仅保留 points/log)
- hjfQueue.js/hjfMember.js API 清理/重定向至 CRMEB 原生接口
- pages.json 公排→推荐佣金/佣金记录/佣金规则
Phase4-5 前端改造:
- queue/status.vue 推荐佣金进度页整体重写
- 商品详情/订单确认/支付结果页文案与逻辑改造
- 个人中心/资产页/引导页/规则页文案改造
- HjfQueueProgress/HjfRefundNotice/HjfAssetCard 组件改造
- 推广中心嵌入佣金进度摘要
- hjfMockData.js 全量更新(公排字段→佣金字段)
Phase6 Admin 增强:
- 用户列表新增 frozen_points/available_points 列及不考核操作按钮
- hjfPoints.js USE_MOCK=false 对接真实积分日志接口
Phase7 配置文档:
- docs/fsgx-phase7-config-checklist.md 后台配置与全链路验收清单
Made-with: Cursor
298 lines
7.1 KiB
PHP
298 lines
7.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the godruoyi/php-snowflake.
|
|
*
|
|
* (c) Godruoyi <g@godruoyi.com>
|
|
*
|
|
* This source file is subject to the MIT license that is bundled.
|
|
*/
|
|
|
|
namespace Godruoyi\Snowflake;
|
|
|
|
use Exception;
|
|
|
|
class FileLockResolver implements SequenceResolver
|
|
{
|
|
/**
|
|
* We should always use exclusive lock to avoid the problem of concurrent access.
|
|
*/
|
|
public const FlockLockOperation = LOCK_EX;
|
|
|
|
public const FileOpenMode = 'r+';
|
|
|
|
/**
|
|
* For each lock file, we save 6,000 items, It can contain data generated within 10 minutes,
|
|
* we believe is sufficient for the snowflake algorithm.
|
|
*
|
|
* 10m = 600s = 6000 ms
|
|
*
|
|
* @var int
|
|
*/
|
|
public static $maxItems = 6000;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
public static $shardCount = 32;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $lockFileDir;
|
|
|
|
/**
|
|
* @param string|null $lockFileDir
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
public function __construct(string $lockFileDir = null)
|
|
{
|
|
$this->lockFileDir = $this->preparePath($lockFileDir);
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*
|
|
* @throws Exception when can not open lock file
|
|
*/
|
|
public function sequence(int $currentTime)
|
|
{
|
|
$filePath = $this->createShardLockFile($this->getShardLockIndex($currentTime));
|
|
|
|
return $this->getSequence($filePath, $currentTime);
|
|
}
|
|
|
|
/**
|
|
* Get next sequence. move lock/unlock in the same method to avoid lock file not release, this
|
|
* will be more friendly to test.
|
|
*
|
|
* @param string $filePath
|
|
* @param int $currentTime
|
|
* @return int
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
protected function getSequence(string $filePath, int $currentTime): int
|
|
{
|
|
$f = null;
|
|
|
|
if (! file_exists($filePath)) {
|
|
throw new Exception(sprintf('the lock file %s not exists', $filePath));
|
|
}
|
|
|
|
try {
|
|
$f = fopen($filePath, static::FileOpenMode);
|
|
|
|
// we always use exclusive lock to avoid the problem of concurrent access.
|
|
// so we don't need to check the return value of flock.
|
|
flock($f, static::FlockLockOperation);
|
|
} catch (\Throwable $e) {
|
|
$this->unlock($f);
|
|
|
|
throw new Exception(sprintf('can not open/lock this file %s', $filePath), $e->getCode(), $e);
|
|
}
|
|
|
|
// We may get this error if the file contains invalid json, when you get this error,
|
|
// may you can try to delete the invalid lock file directly.
|
|
if (is_null($contents = $this->getContents($f))) {
|
|
$this->unlock($f);
|
|
|
|
throw new Exception(sprintf('file %s is not a valid lock file.', $filePath));
|
|
}
|
|
|
|
$this->updateContents($contents = $this->incrementSequenceWithSpecifyTime(
|
|
$this->cleanOldSequences($contents), $currentTime
|
|
), $f);
|
|
|
|
$this->unlock($f);
|
|
|
|
return $contents[$currentTime];
|
|
}
|
|
|
|
/**
|
|
* Unlock and close file.
|
|
*
|
|
* @param $f
|
|
* @return void
|
|
*/
|
|
protected function unlock($f)
|
|
{
|
|
if (is_resource($f)) {
|
|
flock($f, LOCK_UN);
|
|
fclose($f);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param array $contents
|
|
* @param $f
|
|
* @return bool
|
|
*/
|
|
public function updateContents(array $contents, $f): bool
|
|
{
|
|
return ftruncate($f, 0) && rewind($f)
|
|
&& (fwrite($f, serialize($contents)) !== false);
|
|
}
|
|
|
|
/**
|
|
* Increment sequence with specify time. if current time is not set in the lock file
|
|
* set it to 1, otherwise increment it.
|
|
*
|
|
* @param array $contents
|
|
* @param int $currentTime
|
|
* @return array
|
|
*/
|
|
public function incrementSequenceWithSpecifyTime(array $contents, int $currentTime): array
|
|
{
|
|
$contents[$currentTime] = isset($contents[$currentTime]) ? $contents[$currentTime] + 1 : 1;
|
|
|
|
return $contents;
|
|
}
|
|
|
|
/**
|
|
* Clean the old content, we only save the data generated within 10 minutes.
|
|
*
|
|
* @param array $contents
|
|
* @return array
|
|
*/
|
|
public function cleanOldSequences(array $contents): array
|
|
{
|
|
ksort($contents); // sort by timestamp
|
|
|
|
if (count($contents) > static::$maxItems) {
|
|
$contents = array_slice($contents, -static::$maxItems, null, true);
|
|
}
|
|
|
|
return $contents;
|
|
}
|
|
|
|
/**
|
|
* Remove all lock files, we only delete the file that name is match the pattern.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function cleanAllLocksFile()
|
|
{
|
|
$files = glob($this->lockFileDir.'/*');
|
|
|
|
foreach ($files as $file) {
|
|
if (is_file($file) && preg_match('/snowflake-(\d+)\.lock$/', $file)) {
|
|
unlink($file);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Get resource contents, If the contents are invalid json, return null.
|
|
*
|
|
* @param $f resource
|
|
* @return array|null
|
|
*/
|
|
public function getContents($f): ?array
|
|
{
|
|
$content = '';
|
|
|
|
while (! feof($f)) {
|
|
$content .= fread($f, 1024);
|
|
}
|
|
|
|
$content = trim($content);
|
|
|
|
if (empty($content)) {
|
|
return [];
|
|
}
|
|
|
|
try {
|
|
if (is_array($data = unserialize($content))) {
|
|
return $data;
|
|
}
|
|
} catch (\Throwable $e) {
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* @see https://en.wikipedia.org/wiki/Fowler%E2%80%93Noll%E2%80%93Vo_hash_function
|
|
*
|
|
* @param string $str
|
|
* @return float
|
|
*/
|
|
public function fnv(string $str): float
|
|
{
|
|
$hash = 2166136261;
|
|
|
|
for ($i = 0; $i < strlen($str); $i++) {
|
|
$hash ^= ord($str[$i]);
|
|
$hash *= 0x01000193;
|
|
$hash &= 0xFFFFFFFF;
|
|
}
|
|
|
|
return $hash;
|
|
}
|
|
|
|
/**
|
|
* Shard lock file index.
|
|
*
|
|
* @param int $currentTime
|
|
* @return int
|
|
*/
|
|
public function getShardLockIndex(int $currentTime): int
|
|
{
|
|
return $this->fnv($currentTime) % self::$shardCount;
|
|
}
|
|
|
|
/**
|
|
* Check path is exists and writable.
|
|
*
|
|
* @throws Exception
|
|
*/
|
|
protected function preparePath(?string $lockFileDir): string
|
|
{
|
|
if (empty($lockFileDir)) {
|
|
$lockFileDir = dirname(__DIR__).'/.locks/';
|
|
}
|
|
|
|
if (! is_dir($lockFileDir)) {
|
|
throw new Exception("{$lockFileDir} is not a directory.");
|
|
}
|
|
|
|
if (! is_writable($lockFileDir)) {
|
|
throw new Exception("{$lockFileDir} is not writable.");
|
|
}
|
|
|
|
return $lockFileDir;
|
|
}
|
|
|
|
/**
|
|
* Generate shard lock file.
|
|
*
|
|
* @param int $index
|
|
* @return string
|
|
*/
|
|
protected function createShardLockFile(int $index): string
|
|
{
|
|
$path = $this->filePath($index);
|
|
|
|
if (file_exists($path)) {
|
|
return $path;
|
|
}
|
|
|
|
touch($path);
|
|
|
|
return $path;
|
|
}
|
|
|
|
/**
|
|
* Format lock file path with shard index.
|
|
*
|
|
* @param int $index
|
|
* @return string
|
|
*/
|
|
protected function filePath(int $index): string
|
|
{
|
|
return sprintf('%s%ssnowflake-%s.lock', rtrim($this->lockFileDir, DIRECTORY_SEPARATOR), DIRECTORY_SEPARATOR, $index);
|
|
}
|
|
}
|