1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
|
/*
* Copyright (C) 2019 ~ 2020 Uniontech Software Technology Co.,Ltd.
*
* Author: zyc <zyc@uniontech.com>
*
* Maintainer: zyc <zyc@uniontech.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "logapplicationparsethread.h"
#include "utils.h"
#include "dbusproxy/dldbushandler.h"
#include <DMessageBox>
#include <QDateTime>
#include <QDebug>
#include <QProcess>
DWIDGET_USE_NAMESPACE
//std::atomic<LogApplicationParseThread *> LogApplicationParseThread::m_instance;
//std::mutex LogApplicationParseThread::m_mutex;
int LogApplicationParseThread::thread_count = 0;
/**
* @brief LogApplicationParseThread::LogApplicationParseThread 构造函数
* @param parent 父对象
*/
LogApplicationParseThread::LogApplicationParseThread(QObject *parent)
: QThread(parent)
{
qRegisterMetaType<QList<LOG_MSG_APPLICATOIN> >("QList<LOG_MSG_APPLICATOIN>");
initMap();
//静态计数变量加一并赋值给本对象的成员变量,以供外部判断是否为最新线程发出的数据信号
thread_count++;
m_threadCount = thread_count;
}
/**
* @brief LogApplicationParseThread::~LogApplicationParseThread 析构函数,停止并销毁process指针
*/
LogApplicationParseThread::~LogApplicationParseThread()
{
if (m_process) {
m_process->kill();
m_process->close();
delete m_process;
m_process = nullptr;
}
}
/**
* @brief LogApplicationParseThread::setParam 设置获取的筛选条件
* @param iFilter 筛选条件结构体
*/
void LogApplicationParseThread::setParam(APP_FILTERS &iFilter)
{
m_AppFiler = iFilter;
}
/**
* @brief LogApplicationParseThread::stopProccess 停止qprocess获取进程
*/
void LogApplicationParseThread::stopProccess()
{
m_canRun = false;
if (m_process && m_process->isOpen()) {
m_process->kill();
}
}
int LogApplicationParseThread::getIndex()
{
return m_threadCount;
}
/**
* @brief LogApplicationParseThread::doWork 获取数据线程逻辑
*/
void LogApplicationParseThread::doWork()
{
//此线程刚开始把可以继续变量置true,不然下面没法跑
m_canRun = true;
m_appList.clear();
initProccess();
//connect(m_process, SIGNAL(finished(int)), m_process, SLOT(deleteLater()));
//因为筛选信息中含有日志文件路径,所以不能为空,否则无法获取
if (m_AppFiler.path.isEmpty()) { //modified by Airy for bug 20457::if path is empty,item is not empty
emit appFinished(m_threadCount);
} else {
QStringList filePath = DLDBusHandler::instance(this)->getFileInfo(m_AppFiler.path);
for (int i = 0; i < filePath.count(); i++) {
if (!m_canRun) {
return;
}
//按行解析
QByteArray outByte = DLDBusHandler::instance(this)->readLog(filePath[i]).toUtf8();
QString output = Utils::replaceEmptyByteArray(outByte);
QStringList strList = QString(output ).split('\n', QString::SkipEmptyParts);
//开启贪婪匹配
QRegularExpression re("^(\\d{4}-[0-2]\\d-[0-3]\\d)\\D*([0-2]\\d:[0-5]\\d:[0-5]\\d.\\d*)[^A-Za-z]*([A-Za-z]*)[^\\[]*[^\\]]*\\]*\\s*(.*)$");
for (int j = strList.size() - 1; j >= 0; --j) {
if (!m_canRun) {
return;
}
LOG_MSG_APPLICATOIN msg;
QString str =strList[j];
QRegularExpressionMatch match = re.match(str);
bool matchRes = match.hasMatch();
if(!matchRes){
qWarning()<<"not match ,Format problem";
continue;
}
QString dateTime = match.captured(1)+" "+match.captured(2);
qint64 dt = QDateTime::fromString(dateTime, "yyyy-MM-dd hh:mm:ss.zzz").toMSecsSinceEpoch();
//按筛选条件筛选时间段
if (m_AppFiler.timeFilterBegin > 0 && m_AppFiler.timeFilterEnd > 0) {
if (dt < m_AppFiler.timeFilterBegin || dt > m_AppFiler.timeFilterEnd)
continue;
}
msg.dateTime = dateTime;
msg.level = match.captured(3);
//筛选日志等级
if (m_AppFiler.lvlFilter != LVALL) {
if (m_levelDict.value(msg.level) != m_AppFiler.lvlFilter)
continue;
}
//获取信息
msg.msg=match.captured(4);
msg.detailInfo=match.captured(4);
//如果日志太长就显示一部分
if (msg.detailInfo.size() > 500) {
msg.msg = msg.detailInfo.mid(0, 500);
}
m_appList.append(msg);
//每获得500个数据就发出信号给控件加载
if (m_appList.count() % SINGLE_READ_CNT == 0) {
emit appData(m_threadCount, m_appList);
m_appList.clear();
}
}
if (!m_canRun) {
return;
}
}
//最后可能有余下不足500的数据
if (m_appList.count() >= 0) {
emit appData(m_threadCount, m_appList);
}
emit appFinished(m_threadCount);
}
}
void LogApplicationParseThread::onProcFinished(int ret)
{
Q_UNUSED(ret)
#if 0
QProcess *proc = dynamic_cast<QProcess *>(sender());
QString output = proc->readAllStandardOutput();
proc->deleteLater();
for (QString str : output.split('\n')) {
LOG_MSG_APPLICATOIN msg;
str.replace(QRegExp("\\s{2,}"), "");
QStringList list = str.split("]", QString::SkipEmptyParts);
if (list.count() < 3)
continue;
QString dateTime = list[0].split("[", QString::SkipEmptyParts)[0].trimmed();
if (dateTime.contains(",")) {
dateTime.replace(",", "");
}
// if (dateTime.split(".").count() == 2) {
// dateTime = dateTime.split(".")[0];
// }
qint64 dt = QDateTime::fromString(dateTime, "yyyy-MM-dd hh:mm:ss.zzz").toMSecsSinceEpoch();
if (dt < m_periorTime)
continue;
msg.dateTime = dateTime;
msg.level = list[0].split("[", QString::SkipEmptyParts)[1];
if (m_level != LVALL) {
if (m_levelDict.value(msg.level) != m_level)
continue;
}
msg.src = list[1].split("[", QString::SkipEmptyParts)[1];
if (list.count() >= 4) {
msg.msg = list.mid(2).join("]");
} else {
msg.msg = list[2];
}
m_appList.insert(0, msg);
}
emit appCmdFinished(m_appList);
#endif
}
/**
* @brief LogApplicationParseThread::initMap 初始化数据结构
*/
void LogApplicationParseThread::initMap()
{
m_levelDict.insert("Warning", WARN);
m_levelDict.insert("Debug", DEB);
m_levelDict.insert("Info", INF);
m_levelDict.insert("Error", ERR);
}
/**
* @brief LogApplicationParseThread::initProccess 构造 QProcess成员指针
*/
void LogApplicationParseThread::initProccess()
{
if (!m_process) {
m_process = new QProcess;
}
}
/**
* @brief LogApplicationParseThread::run 线程执行虚函数重写逻辑
*/
void LogApplicationParseThread::run()
{
qDebug() << "LogApplicationParseThread::run()---threadrun";
doWork();
}
|