mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-12 15:57:57 +00:00
Add helper function for logging messages.
This commit is contained in:
parent
51cf6bd2a5
commit
fd7e69e1e0
@ -124,7 +124,7 @@ int FilterParserThread::parseDATFilterFile()
|
|||||||
if (!file.exists()) return ruleCount;
|
if (!file.exists()) return ruleCount;
|
||||||
|
|
||||||
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
||||||
Logger::instance()->addMessage(tr("I/O Error: Could not open ip filter file in read mode."), Log::CRITICAL);
|
LogMsg(tr("I/O Error: Could not open ip filter file in read mode."), Log::CRITICAL);
|
||||||
return ruleCount;
|
return ruleCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -203,7 +203,7 @@ int FilterParserThread::parseDATFilterFile()
|
|||||||
int endOfIPRange = ((firstComma == -1) ? (endOfLine - 1) : (firstComma - 1));
|
int endOfIPRange = ((firstComma == -1) ? (endOfLine - 1) : (firstComma - 1));
|
||||||
int delimIP = findAndNullDelimiter(buffer.data(), '-', start, endOfIPRange);
|
int delimIP = findAndNullDelimiter(buffer.data(), '-', start, endOfIPRange);
|
||||||
if (delimIP == -1) {
|
if (delimIP == -1) {
|
||||||
Logger::instance()->addMessage(tr("IP filter line %1 is malformed.").arg(nbLine), Log::CRITICAL);
|
LogMsg(tr("IP filter line %1 is malformed.").arg(nbLine), Log::CRITICAL);
|
||||||
start = endOfLine;
|
start = endOfLine;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -211,7 +211,7 @@ int FilterParserThread::parseDATFilterFile()
|
|||||||
libt::address startAddr;
|
libt::address startAddr;
|
||||||
int newStart = trim(buffer.data(), start, delimIP - 1);
|
int newStart = trim(buffer.data(), start, delimIP - 1);
|
||||||
if (!parseIPAddress(buffer.data() + newStart, startAddr)) {
|
if (!parseIPAddress(buffer.data() + newStart, startAddr)) {
|
||||||
Logger::instance()->addMessage(tr("IP filter line %1 is malformed. Start IP of the range is malformed.").arg(nbLine), Log::CRITICAL);
|
LogMsg(tr("IP filter line %1 is malformed. Start IP of the range is malformed.").arg(nbLine), Log::CRITICAL);
|
||||||
start = endOfLine;
|
start = endOfLine;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -219,14 +219,14 @@ int FilterParserThread::parseDATFilterFile()
|
|||||||
libt::address endAddr;
|
libt::address endAddr;
|
||||||
newStart = trim(buffer.data(), delimIP + 1, endOfIPRange);
|
newStart = trim(buffer.data(), delimIP + 1, endOfIPRange);
|
||||||
if (!parseIPAddress(buffer.data() + newStart, endAddr)) {
|
if (!parseIPAddress(buffer.data() + newStart, endAddr)) {
|
||||||
Logger::instance()->addMessage(tr("IP filter line %1 is malformed. End IP of the range is malformed.").arg(nbLine), Log::CRITICAL);
|
LogMsg(tr("IP filter line %1 is malformed. End IP of the range is malformed.").arg(nbLine), Log::CRITICAL);
|
||||||
start = endOfLine;
|
start = endOfLine;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((startAddr.is_v4() != endAddr.is_v4())
|
if ((startAddr.is_v4() != endAddr.is_v4())
|
||||||
|| (startAddr.is_v6() != endAddr.is_v6())) {
|
|| (startAddr.is_v6() != endAddr.is_v6())) {
|
||||||
Logger::instance()->addMessage(tr("IP filter line %1 is malformed. One IP is IPv4 and the other is IPv6!").arg(nbLine), Log::CRITICAL);
|
LogMsg(tr("IP filter line %1 is malformed. One IP is IPv4 and the other is IPv6!").arg(nbLine), Log::CRITICAL);
|
||||||
start = endOfLine;
|
start = endOfLine;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -239,7 +239,7 @@ int FilterParserThread::parseDATFilterFile()
|
|||||||
++ruleCount;
|
++ruleCount;
|
||||||
}
|
}
|
||||||
catch (std::exception &e) {
|
catch (std::exception &e) {
|
||||||
Logger::instance()->addMessage(tr("IP filter exception thrown for line %1. Exception is: %2").arg(nbLine)
|
LogMsg(tr("IP filter exception thrown for line %1. Exception is: %2").arg(nbLine)
|
||||||
.arg(QString::fromLocal8Bit(e.what())), Log::CRITICAL);
|
.arg(QString::fromLocal8Bit(e.what())), Log::CRITICAL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -259,7 +259,7 @@ int FilterParserThread::parseP2PFilterFile()
|
|||||||
if (!file.exists()) return ruleCount;
|
if (!file.exists()) return ruleCount;
|
||||||
|
|
||||||
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
||||||
Logger::instance()->addMessage(tr("I/O Error: Could not open ip filter file in read mode."), Log::CRITICAL);
|
LogMsg(tr("I/O Error: Could not open ip filter file in read mode."), Log::CRITICAL);
|
||||||
return ruleCount;
|
return ruleCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -274,32 +274,32 @@ int FilterParserThread::parseP2PFilterFile()
|
|||||||
// Line is split by :
|
// Line is split by :
|
||||||
QList<QByteArray> partsList = line.split(':');
|
QList<QByteArray> partsList = line.split(':');
|
||||||
if (partsList.size() < 2) {
|
if (partsList.size() < 2) {
|
||||||
Logger::instance()->addMessage(tr("IP filter line %1 is malformed.").arg(nbLine), Log::CRITICAL);
|
LogMsg(tr("IP filter line %1 is malformed.").arg(nbLine), Log::CRITICAL);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get IP range
|
// Get IP range
|
||||||
QList<QByteArray> IPs = partsList.last().split('-');
|
QList<QByteArray> IPs = partsList.last().split('-');
|
||||||
if (IPs.size() != 2) {
|
if (IPs.size() != 2) {
|
||||||
Logger::instance()->addMessage(tr("IP filter line %1 is malformed.").arg(nbLine), Log::CRITICAL);
|
LogMsg(tr("IP filter line %1 is malformed.").arg(nbLine), Log::CRITICAL);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
libt::address startAddr;
|
libt::address startAddr;
|
||||||
if (!parseIPAddress(IPs.at(0), startAddr)) {
|
if (!parseIPAddress(IPs.at(0), startAddr)) {
|
||||||
Logger::instance()->addMessage(tr("IP filter line %1 is malformed. Start IP of the range is malformed.").arg(nbLine), Log::CRITICAL);
|
LogMsg(tr("IP filter line %1 is malformed. Start IP of the range is malformed.").arg(nbLine), Log::CRITICAL);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
libt::address endAddr;
|
libt::address endAddr;
|
||||||
if (!parseIPAddress(IPs.at(1), endAddr)) {
|
if (!parseIPAddress(IPs.at(1), endAddr)) {
|
||||||
Logger::instance()->addMessage(tr("IP filter line %1 is malformed. End IP of the range is malformed.").arg(nbLine), Log::CRITICAL);
|
LogMsg(tr("IP filter line %1 is malformed. End IP of the range is malformed.").arg(nbLine), Log::CRITICAL);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((startAddr.is_v4() != endAddr.is_v4())
|
if ((startAddr.is_v4() != endAddr.is_v4())
|
||||||
|| (startAddr.is_v6() != endAddr.is_v6())) {
|
|| (startAddr.is_v6() != endAddr.is_v6())) {
|
||||||
Logger::instance()->addMessage(tr("IP filter line %1 is malformed. One IP is IPv4 and the other is IPv6!").arg(nbLine), Log::CRITICAL);
|
LogMsg(tr("IP filter line %1 is malformed. One IP is IPv4 and the other is IPv6!").arg(nbLine), Log::CRITICAL);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -308,7 +308,7 @@ int FilterParserThread::parseP2PFilterFile()
|
|||||||
++ruleCount;
|
++ruleCount;
|
||||||
}
|
}
|
||||||
catch (std::exception &e) {
|
catch (std::exception &e) {
|
||||||
Logger::instance()->addMessage(tr("IP filter exception thrown for line %1. Exception is: %2").arg(nbLine)
|
LogMsg(tr("IP filter exception thrown for line %1. Exception is: %2").arg(nbLine)
|
||||||
.arg(QString::fromLocal8Bit(e.what())), Log::CRITICAL);
|
.arg(QString::fromLocal8Bit(e.what())), Log::CRITICAL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -347,7 +347,7 @@ int FilterParserThread::parseP2BFilterFile()
|
|||||||
if (!file.exists()) return ruleCount;
|
if (!file.exists()) return ruleCount;
|
||||||
|
|
||||||
if (!file.open(QIODevice::ReadOnly)) {
|
if (!file.open(QIODevice::ReadOnly)) {
|
||||||
Logger::instance()->addMessage(tr("I/O Error: Could not open ip filter file in read mode."), Log::CRITICAL);
|
LogMsg(tr("I/O Error: Could not open ip filter file in read mode."), Log::CRITICAL);
|
||||||
return ruleCount;
|
return ruleCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -358,7 +358,7 @@ int FilterParserThread::parseP2BFilterFile()
|
|||||||
if (!stream.readRawData(buf, sizeof(buf))
|
if (!stream.readRawData(buf, sizeof(buf))
|
||||||
|| memcmp(buf, "\xFF\xFF\xFF\xFFP2B", 7)
|
|| memcmp(buf, "\xFF\xFF\xFF\xFFP2B", 7)
|
||||||
|| !stream.readRawData((char*)&version, sizeof(version))) {
|
|| !stream.readRawData((char*)&version, sizeof(version))) {
|
||||||
Logger::instance()->addMessage(tr("Parsing Error: The filter file is not a valid PeerGuardian P2B file."), Log::CRITICAL);
|
LogMsg(tr("Parsing Error: The filter file is not a valid PeerGuardian P2B file."), Log::CRITICAL);
|
||||||
return ruleCount;
|
return ruleCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -370,7 +370,7 @@ int FilterParserThread::parseP2BFilterFile()
|
|||||||
while(getlineInStream(stream, name, '\0') && !m_abort) {
|
while(getlineInStream(stream, name, '\0') && !m_abort) {
|
||||||
if (!stream.readRawData((char*)&start, sizeof(start))
|
if (!stream.readRawData((char*)&start, sizeof(start))
|
||||||
|| !stream.readRawData((char*)&end, sizeof(end))) {
|
|| !stream.readRawData((char*)&end, sizeof(end))) {
|
||||||
Logger::instance()->addMessage(tr("Parsing Error: The filter file is not a valid PeerGuardian P2B file."), Log::CRITICAL);
|
LogMsg(tr("Parsing Error: The filter file is not a valid PeerGuardian P2B file."), Log::CRITICAL);
|
||||||
return ruleCount;
|
return ruleCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -391,7 +391,7 @@ int FilterParserThread::parseP2BFilterFile()
|
|||||||
qDebug ("p2b version 3");
|
qDebug ("p2b version 3");
|
||||||
unsigned int namecount;
|
unsigned int namecount;
|
||||||
if (!stream.readRawData((char*)&namecount, sizeof(namecount))) {
|
if (!stream.readRawData((char*)&namecount, sizeof(namecount))) {
|
||||||
Logger::instance()->addMessage(tr("Parsing Error: The filter file is not a valid PeerGuardian P2B file."), Log::CRITICAL);
|
LogMsg(tr("Parsing Error: The filter file is not a valid PeerGuardian P2B file."), Log::CRITICAL);
|
||||||
return ruleCount;
|
return ruleCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -400,7 +400,7 @@ int FilterParserThread::parseP2BFilterFile()
|
|||||||
for (unsigned int i = 0; i < namecount; ++i) {
|
for (unsigned int i = 0; i < namecount; ++i) {
|
||||||
std::string name;
|
std::string name;
|
||||||
if (!getlineInStream(stream, name, '\0')) {
|
if (!getlineInStream(stream, name, '\0')) {
|
||||||
Logger::instance()->addMessage(tr("Parsing Error: The filter file is not a valid PeerGuardian P2B file."), Log::CRITICAL);
|
LogMsg(tr("Parsing Error: The filter file is not a valid PeerGuardian P2B file."), Log::CRITICAL);
|
||||||
return ruleCount;
|
return ruleCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -410,7 +410,7 @@ int FilterParserThread::parseP2BFilterFile()
|
|||||||
// Reading the ranges
|
// Reading the ranges
|
||||||
unsigned int rangecount;
|
unsigned int rangecount;
|
||||||
if (!stream.readRawData((char*)&rangecount, sizeof(rangecount))) {
|
if (!stream.readRawData((char*)&rangecount, sizeof(rangecount))) {
|
||||||
Logger::instance()->addMessage(tr("Parsing Error: The filter file is not a valid PeerGuardian P2B file."), Log::CRITICAL);
|
LogMsg(tr("Parsing Error: The filter file is not a valid PeerGuardian P2B file."), Log::CRITICAL);
|
||||||
return ruleCount;
|
return ruleCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -420,7 +420,7 @@ int FilterParserThread::parseP2BFilterFile()
|
|||||||
if (!stream.readRawData((char*)&name, sizeof(name))
|
if (!stream.readRawData((char*)&name, sizeof(name))
|
||||||
|| !stream.readRawData((char*)&start, sizeof(start))
|
|| !stream.readRawData((char*)&start, sizeof(start))
|
||||||
|| !stream.readRawData((char*)&end, sizeof(end))) {
|
|| !stream.readRawData((char*)&end, sizeof(end))) {
|
||||||
Logger::instance()->addMessage(tr("Parsing Error: The filter file is not a valid PeerGuardian P2B file."), Log::CRITICAL);
|
LogMsg(tr("Parsing Error: The filter file is not a valid PeerGuardian P2B file."), Log::CRITICAL);
|
||||||
return ruleCount;
|
return ruleCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -440,7 +440,7 @@ int FilterParserThread::parseP2BFilterFile()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
Logger::instance()->addMessage(tr("Parsing Error: The filter file is not a valid PeerGuardian P2B file."), Log::CRITICAL);
|
LogMsg(tr("Parsing Error: The filter file is not a valid PeerGuardian P2B file."), Log::CRITICAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ruleCount;
|
return ruleCount;
|
||||||
|
@ -90,3 +90,8 @@ QVector<Log::Peer> Logger::getPeers(int lastKnownId) const
|
|||||||
|
|
||||||
return m_peers.mid(size - diff);
|
return m_peers.mid(size - diff);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void LogMsg(const QString &message, const Log::MsgType &type)
|
||||||
|
{
|
||||||
|
Logger::instance()->addMessage(message, type);
|
||||||
|
}
|
||||||
|
@ -71,4 +71,7 @@ private:
|
|||||||
int peerCounter;
|
int peerCounter;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Helper function
|
||||||
|
void LogMsg(const QString &message, const Log::MsgType &type = Log::NORMAL);
|
||||||
|
|
||||||
#endif // LOGGER_H
|
#endif // LOGGER_H
|
||||||
|
Loading…
Reference in New Issue
Block a user