From 0f014b951cde5536f508eb4a7386ebbd3808e78d Mon Sep 17 00:00:00 2001
From: chenluhua1980 <Chenluhua@qq.com>
Date: 星期五, 30 一月 2026 10:26:40 +0800
Subject: [PATCH] 1.修复lambda重命问题; 2.修复setVariableValue参数问题;

---
 SourceCode/Bond/Servo/CMaster.cpp |   58 ++++++++++++++++++++++++++++++++++++++++++++++++++--------
 1 files changed, 50 insertions(+), 8 deletions(-)

diff --git a/SourceCode/Bond/Servo/CMaster.cpp b/SourceCode/Bond/Servo/CMaster.cpp
index bf1ff4b..d603e0d 100644
--- a/SourceCode/Bond/Servo/CMaster.cpp
+++ b/SourceCode/Bond/Servo/CMaster.cpp
@@ -119,6 +119,7 @@
 			m_hEventDispatchThreadExit[1] = nullptr;
 		}
 
+
 		DeleteCriticalSection(&m_criticalSection);
 	}
 
@@ -336,6 +337,13 @@
 		}
 		m_listEquipment.clear();
 
+		// release manual-remove buffer before glass pool is torn down
+		for (auto* pGlass : m_bufGlass) {
+			if (pGlass != nullptr) {
+				pGlass->release();
+			}
+		}
+		m_bufGlass.clear();
 
 		if (m_pCollector != nullptr) {
 			m_pCollector->stopLoop();
@@ -1785,18 +1793,23 @@
 					int paramIndex = mapping.first;
 					int channel = mapping.second;
 
-					if (paramIndex < params.size() && channel - 1 < vacuumbakeTypes.size()) {
+					if (paramIndex < params.size()) {
 						auto& param = params.at(paramIndex);
 						double value = param.getDoubleValue();
-						const std::string& dataType = vacuumbakeTypes[channel - 1];
 						const std::string& paramName = param.getName();
 						const char slotTag = !paramName.empty() ? paramName[0] : '\0';
+						const int typeIndex = (slotTag == 'B') ? (channel - 8) : (channel - 1);
+						if (typeIndex < 0 || typeIndex >= (int)vacuumbakeTypes.size()) {
+							continue;
+						}
+						const int pushChannel = typeIndex + 1;
+						const std::string& dataType = vacuumbakeTypes[typeIndex];
 
 						if (m_pCollector != nullptr) {
 							if (slotTag == 'A')
-								m_pCollector->buffersPush(SlotToMid(eqid, 1), channel, ts, value);
+								m_pCollector->buffersPush(SlotToMid(eqid, 1), pushChannel, ts, value);
 							else if (slotTag == 'B')
-								m_pCollector->buffersPush(SlotToMid(eqid, 2), channel, ts, value);
+								m_pCollector->buffersPush(SlotToMid(eqid, 2), pushChannel, ts, value);
 						}
 
 						// 鏍规嵁鑵斾綋鍓嶇紑鍐欏叆瀵瑰簲 Slot 鐨勭幓鐠�
@@ -1830,20 +1843,25 @@
 					int paramIndex = mapping.first;
 					int channel = mapping.second;
 
-					if (paramIndex < params.size() && channel - 1 < coolingTypes.size()) {
+					if (paramIndex < params.size()) {
 						auto& param = params.at(paramIndex);
 						double value = param.getDoubleValue();
-						const std::string& dataType = coolingTypes[channel - 1];
 						const std::string& paramName = param.getName();
 						const char slotTag = !paramName.empty() ? paramName[0] : '\0';
 						const bool paramIsBake = paramName.find("鐑樼儰") != std::string::npos;
 						const bool paramIsCooling = paramName.find("鍐峰嵈") != std::string::npos;
+						const int typeIndex = (slotTag == 'B') ? (channel - 7) : (channel - 1);
+						if (typeIndex < 0 || typeIndex >= (int)coolingTypes.size()) {
+							continue;
+						}
+						const int pushChannel = typeIndex + 1;
+						const std::string& dataType = coolingTypes[typeIndex];
 
 						if (m_pCollector != nullptr && paramIsBake) {
 							if (slotTag == 'A')
-								m_pCollector->buffersPush(SlotToMid(eqid, 1), channel, ts, value);
+								m_pCollector->buffersPush(SlotToMid(eqid, 1), pushChannel, ts, value);
 							else if (slotTag == 'B')
-								m_pCollector->buffersPush(SlotToMid(eqid, 3), channel, ts, value);
+								m_pCollector->buffersPush(SlotToMid(eqid, 3), pushChannel, ts, value);
 						}
 
 						if (!dataType.empty()) {
@@ -1910,6 +1928,16 @@
 		listener.onReceivedJob = [&](void* pEquipment, int port, CJobDataS* pJobDataS) {
 			if (m_listener.onJobReceived != nullptr) {
 				m_listener.onJobReceived(this, (CEquipment*)pEquipment, port, pJobDataS);
+			}
+		};
+		listener.onSentOutJob = [&](void* pEquipment, int port, CJobDataS* pJobDataS) {
+			if (m_listener.onJobSentOut != nullptr) {
+				m_listener.onJobSentOut(this, (CEquipment*)pEquipment, port, pJobDataS);
+			}
+		};
+		listener.onEqStatusChanged = [&](void* pEquipment, int unitId, int status, int reason) {
+			if (m_listener.onEqStatusChanged != nullptr) {
+				m_listener.onEqStatusChanged(this, (CEquipment*)pEquipment, unitId, status, reason);
 			}
 		};
 		pEquipment->setListener(listener);
@@ -3467,6 +3495,11 @@
 		}
 		m_pControlJob->abort(description);
 
+		// 鍏堜笂鎶ヤ竴娆$姸鎬佸彉鍖栵紙渚夸簬 PrJobAbort 瑙﹀彂锛�
+		if (m_listener.onControlJobChanged) {
+			notifyControlJobChanged();
+		}
+
 
 		// 閲婃斁Job鐩稿叧
 		for (auto item : m_processJobs) {
@@ -3551,6 +3584,15 @@
 		if (pSlot == nullptr) return false;
 
 		CGlass* pGlass = (CGlass*)pSlot->getContext();
+		if (pGlass == nullptr) return false;
+
+		// Buffer 涓婇檺涓� 1锛氭柊鎼嚭鏃朵涪寮冩棫鐨�
+		if (!m_bufGlass.empty()) {
+			for (auto* oldGlass : m_bufGlass) {
+				if (oldGlass != nullptr) oldGlass->release();
+			}
+			m_bufGlass.clear();
+		}
 		m_bufGlass.push_back(pGlass);
 		pGlass->addRef();
 		pSlot->setContext(nullptr);

--
Gitblit v1.9.3