pollymc/logic/pathmatcher/RegexpMatcher.h
Petr Mrázek 96fdaebb5c GH-926 implement log cleaning functionality
Also adds gzip compressed log support
2015-08-18 08:51:12 +02:00

30 lines
611 B
C++

#include "IPathMatcher.h"
#include <QRegularExpression>
class RegexpMatcher : public IPathMatcher
{
public:
virtual ~RegexpMatcher() {};
RegexpMatcher(QString regexp)
{
m_regexp.setPattern(regexp);
m_onlyFilenamePart = !regexp.contains('/');
}
virtual bool matches(const QString &string) override
{
if(m_onlyFilenamePart)
{
auto slash = string.lastIndexOf('/');
if(slash != -1)
{
auto part = string.mid(slash + 1);
return m_regexp.match(part).hasMatch();
}
}
return m_regexp.match(string).hasMatch();
}
QRegularExpression m_regexp;
bool m_onlyFilenamePart = false;
};