177c3ae9b2
- 将 ProcessContext 中的 builder() 重命名为 createModifyBuilder() 并添加调用栈日志 - ProcessContextBuilder 中所有 with* 方法统一改为 set* 命名风格 - Flow 各节点及流程处理器中调用 builder() 替换为 createModifyBuilder() - 虚拟测试环境相关 ContextBuilder 中方法同步改名保持一致 - 优化流程节点中上下文修改代码调用,提升代码规范性 - 添加Config中加载自定义流程配置的占位注释及代码 - 无功能改动,纯代码风格及命名规范调整
107 lines
3.6 KiB
PHP
107 lines
3.6 KiB
PHP
<?php
|
|
|
|
namespace app\flow\nodes;
|
|
|
|
use app\config\Config;
|
|
use app\flow\enum\DbOperationType;
|
|
use app\flow\context\ProcessContext;
|
|
use app\flow\enum\VoiceMessage;
|
|
use app\flow\context\bean\CanHandleResult;
|
|
use app\flow\context\bean\StorageStatus;
|
|
use app\utils\Logger;
|
|
|
|
/**
|
|
* 存储节点
|
|
* 统一处理内镜存储的入库和出库操作
|
|
*
|
|
* 单读卡器模式:通过配置控制,一个读卡器交替执行入库/出库
|
|
* 双读卡器模式:分别使用"内镜放入"和"内镜取出"两个读卡器
|
|
*/
|
|
class StorageNode extends AbstractProcessNode
|
|
{
|
|
/**
|
|
* 获取节点名称
|
|
*/
|
|
public static function getName(): string
|
|
{
|
|
return '存储';
|
|
}
|
|
|
|
/**
|
|
* 获取节点编码
|
|
*/
|
|
public function getCode(): string
|
|
{
|
|
return '存储';
|
|
}
|
|
|
|
/**
|
|
* 判断当前节点是否能处理该步骤
|
|
*
|
|
* 单读卡器模式:读卡器类型是'内镜放入'或'内镜取出',根据 isInStorage 状态判断执行入库还是出库
|
|
*/
|
|
public function canHandle(ProcessContext $context): CanHandleResult
|
|
{
|
|
$config = Config::getInstance();
|
|
$singleReaderMode = $config->storageSingleReader;
|
|
|
|
// 非单读卡器模式不处理
|
|
if (!$singleReaderMode) {
|
|
return CanHandleResult::cannotHandle();
|
|
}
|
|
|
|
// 读卡器类型必须是'内镜放入'或'内镜取出'
|
|
if (!in_array($context->getReader()->type, ['内镜放入', '内镜取出'])) {
|
|
return CanHandleResult::cannotHandle();
|
|
}
|
|
|
|
$isInStorage = $context->getStorage()->isInStorage;
|
|
|
|
if ($isInStorage) {
|
|
// 内镜已在库中,执行出库
|
|
$validSteps = ['内镜放入', '结束'];
|
|
if (!$this->isRequiredNode($context->getCurrentStep(), $validSteps)) {
|
|
Logger::debug('[StorageNode] 当前步骤 {} 不符合出库条件', [$context->getCurrentStep()]);
|
|
return CanHandleResult::cannotHandle();
|
|
}
|
|
} else {
|
|
// 内镜不在库中,执行入库
|
|
$validSteps = ['', '结束', '内镜取出', '测漏正常', '测漏异常'];
|
|
if (!$this->isRequiredNode($context->getCurrentStep(), $validSteps)) {
|
|
Logger::debug('[StorageNode] 当前步骤 {} 不符合入库条件', [$context->getCurrentStep()]);
|
|
return CanHandleResult::cannotHandle();
|
|
}
|
|
}
|
|
|
|
return CanHandleResult::canHandle();
|
|
}
|
|
|
|
/**
|
|
* 具体处理逻辑
|
|
* 根据 isInStorage 状态判断执行入库还是出库
|
|
*/
|
|
protected function doHandle(ProcessContext $context): ProcessContext
|
|
{
|
|
$builder = $context->createModifyBuilder()->setProcessType('存储');
|
|
|
|
// 根据当前状态判断执行入库还是出库(canHandle 已经验证过状态)
|
|
if (!$context->getStorage()->isInStorage) {
|
|
// 入库操作
|
|
Logger::debug('[StorageNode] 内镜入库成功 endoscope={}', [$context->getEndoscope()->name]);
|
|
$builder->setCurrentStep('内镜放入')
|
|
->setStorage(StorageStatus::inStorage(date('Y-m-d H:i:s')));
|
|
} else {
|
|
// 出库操作
|
|
Logger::debug('[StorageNode] 内镜出库成功 endoscope={}', [$context->getEndoscope()->name]);
|
|
$builder->setCurrentStep('内镜取出')
|
|
->setStorage(StorageStatus::outOfStorage());
|
|
}
|
|
|
|
return $builder
|
|
->setNeedDatabaseOperation()
|
|
->setDbOperation(DbOperationType::INSERT)
|
|
->setNeedWebSocketNotify()
|
|
->build();
|
|
}
|
|
}
|