chenluhua1980
2025-12-11 33f080ddc32f3545b685b2e0a7a5df3c35894270
SourceCode/Bond/Servo/HsmsPassive.cpp
@@ -875,6 +875,9 @@
int CHsmsPassive::loadCollectionEvents(const char* pszFilepath)
{
   m_strCollectionEventFilepath = pszFilepath;
   m_bCollectionUtf8 = false;
   m_bCollectionUtf8Bom = false;
   CFile file;
   if (!file.Open(pszFilepath, CFile::modeRead | CFile::shareDenyNone)) {
      return -1;
@@ -897,6 +900,8 @@
   // UTF-8 BOM
   if (nLen >= 3 && bytes[0] == 0xEF && bytes[1] == 0xBB && bytes[2] == 0xBF) {
      offset = 3;
      m_bCollectionUtf8 = true;
      m_bCollectionUtf8Bom = true;
   }
   // UTF-16 LE BOM
@@ -926,6 +931,7 @@
         MultiByteToWideChar(CP_UTF8, 0, buffer.data() + off,
            static_cast<int>(buffer.size() - off), temp.data(), need);
         content = temp.c_str();
         m_bCollectionUtf8 = true;
         return true;
      };
@@ -1014,6 +1020,18 @@
   return m_collectionEvents;
}
int CHsmsPassive::deleteCollectionEvent(unsigned short CEID)
{
   for (auto iter = m_collectionEvents.begin(); iter != m_collectionEvents.end(); ++iter) {
      if ((*iter)->getEventId() == CEID) {
         delete (*iter);
         m_collectionEvents.erase(iter);
         return writeCollectionEventsToFile(m_strCollectionEventFilepath);
      }
   }
   return -1;
}
void CHsmsPassive::clearAllCollectionEvent()
{
   for (auto item : m_collectionEvents) {
@@ -1055,6 +1073,62 @@
   return result;
}
int CHsmsPassive::writeCollectionEventsToFile(const std::string& filepath)
{
   if (filepath.empty()) return -1;
   CFile file;
   if (!file.Open(filepath.c_str(), CFile::modeCreate | CFile::modeWrite)) {
      return -1;
   }
   if (m_bCollectionUtf8 && m_bCollectionUtf8Bom) {
      const BYTE bom[3] = { 0xEF, 0xBB, 0xBF };
      file.Write(bom, 3);
   }
   const std::string headerAnsi = "CEID,CE Name,Descriptions,Attached RPTID\r\n";
   if (m_bCollectionUtf8) {
      CStringA header = AnsiToUtf8(headerAnsi);
      file.Write(header.GetString(), header.GetLength());
   }
   else {
      file.Write(headerAnsi.data(), (UINT)headerAnsi.size());
   }
   for (auto ev : m_collectionEvents) {
      if (ev == nullptr) continue;
      std::string line;
      line.reserve(128);
      line += std::to_string(ev->getEventId());
      line.push_back(',');
      line += ev->getName();
      line.push_back(',');
      line += ev->getDescription();
      line.push_back(',');
      line.push_back('(');
      auto rptIds = ev->getReportIds();
      for (size_t i = 0; i < rptIds.size(); ++i) {
         line += std::to_string(rptIds[i]);
         if (i + 1 < rptIds.size()) {
            line.push_back(',');
         }
      }
      line += ")\r\n";
      if (m_bCollectionUtf8) {
         CStringA out = AnsiToUtf8(line);
         file.Write(out.GetString(), out.GetLength());
      }
      else {
         file.Write(line.data(), (UINT)line.size());
      }
   }
   file.Close();
   return 0;
}
int CHsmsPassive::init(CModel* pModel, const char* pszName, unsigned int port)
{
   m_pModel = pModel;