lvfengfree b92e1119ae fix: 修复菜单为空问题 - 移除后端过滤home路由的错误逻辑
- 修复RouteService中错误过滤home路由的问题
- 后端现在正确返回所有用户有权限的路由
- 添加设备管理相关功能(列表、在线监控、电源管理、远程监控)
- 添加详细的修复文档和重启脚本
- 更新权限配置脚本

问题根源:后端代码中有逻辑会过滤掉home路由,导致前端收到空数组,无法生成菜单
解决方案:移除过滤home路由的逻辑,让后端返回所有有权限的路由
2026-03-01 09:50:19 +08:00

111 lines
2.5 KiB
C++

//----------------------------------------------------------------------------
//
// Copyright (C) Intel Corporation, 2007 - 2008.
//
// Class: MPSEventLogger.cpp
//
// Contents: EventLogger for MPS.
//
// Notes:
//----------------------------------------------------------------------------
#include "MPSEventLogger.h"
#include <string>
// Constructor
MPSEventLogger::MPSEventLogger()
{
ResetFlags();
m_logger = new WindowsEventLog(EVENT_LOG_LOG_NAME,EVENT_LOG_SOURCE_NAME,EVENT_LOG_CATEGORY_COUNT);
}
MPSEventLogger::~MPSEventLogger()
{
delete m_logger;
}
// Log information event by id and category
void MPSEventLogger::LogInfoEvent(unsigned short CategoryID,
unsigned long EventID)
{
mutex.acquire();
if (m_logger != NULL) {
m_logger->LogEvent(CategoryID , EventID, EVENTLOG_INFORMATION_TYPE);
}
mutex.release();
}
// Log Error event by id and category
void MPSEventLogger::LogErrorEvent(unsigned short CategoryID, unsigned long EventID)
{
mutex.acquire();
if (m_logger != NULL) {
m_logger->LogEvent(CategoryID, EventID, EVENTLOG_ERROR_TYPE);
}
mutex.release();
}
// Record Events for debugging.
void MPSEventLogger::DebugLog(const char *message)
{
mutex.acquire();
ACE_TCHAR szBuf[1024];
ACE_OS::sprintf(szBuf, "%s\n", message);
const ACE_TCHAR *lpStrings[] = {szBuf};
unsigned int NumOfStrings = 1;
if (m_logger != NULL) {
m_logger->LogEvent(MPS_GENERAL, TEXT_MESSAGE, EVENTLOG_INFORMATION_TYPE, lpStrings,NumOfStrings, NULL, 0);
}
#ifndef NO_STDOUT_DEBUG_LOG
printf("%s", szBuf);
#endif
mutex.release();
}
// Record warning events
void MPSEventLogger::WarningLog(const char *message)
{
mutex.acquire();
ACE_TCHAR szBuf[1024];
ACE_OS::sprintf(szBuf, "%s\n", message);
const ACE_TCHAR *lpStrings[] = {szBuf};
unsigned int NumOfStrings = 1;
if (m_logger != NULL) {
m_logger->LogEvent(MPS_GENERAL, MPS_WARNING_MESSAGE, EVENTLOG_WARNING_TYPE, lpStrings,NumOfStrings, NULL, 0);
}
#ifndef NO_STDOUT_DEBUG_LOG
printf("%s", szBuf);
#endif
mutex.release();
}
// Record error events
void MPSEventLogger::ErrorLog(const char *message)
{
mutex.acquire();
ACE_TCHAR szBuf[1024];
ACE_OS::sprintf(szBuf, " [MPS] %s\n", message);
const ACE_TCHAR *lpStrings[] = {szBuf};
unsigned int NumOfStrings = 1;
if (m_logger != NULL) {
m_logger->LogEvent(MPS_GENERAL, MPS_ERROR_MESSAGE, EVENTLOG_ERROR_TYPE, lpStrings,NumOfStrings, NULL, 0);
}
#ifndef NO_STDOUT_DEBUG_LOG
printf("%s", szBuf);
#endif
mutex.release();
}
// Reset all flags
void MPSEventLogger::ResetFlags()
{
mutex.acquire();
// Reset flags
mutex.release();
}