Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
75 lines
2.6 KiB
C++
75 lines
2.6 KiB
C++
// This file is part of Desktop App Toolkit,
|
|
// a set of libraries for developing nice desktop applications.
|
|
//
|
|
// For license and copyright information please follow this link:
|
|
// https://github.com/desktop-app/legal/blob/master/LEGAL
|
|
//
|
|
#pragma once
|
|
|
|
#include "base/flags.h"
|
|
|
|
#include <QtCore/QRegularExpression>
|
|
|
|
namespace qthelp {
|
|
|
|
class RegularExpressionMatch {
|
|
public:
|
|
RegularExpressionMatch(const QRegularExpressionMatch &other) = delete;
|
|
RegularExpressionMatch(const RegularExpressionMatch &other) = delete;
|
|
RegularExpressionMatch(QRegularExpressionMatch &&match) : data_(std::move(match)) {
|
|
}
|
|
RegularExpressionMatch(RegularExpressionMatch &&other) : data_(std::move(other.data_)) {
|
|
}
|
|
RegularExpressionMatch &operator=(const QRegularExpressionMatch &match) = delete;
|
|
RegularExpressionMatch &operator=(const RegularExpressionMatch &other) = delete;
|
|
RegularExpressionMatch &operator=(QRegularExpressionMatch &&match) {
|
|
data_ = std::move(match);
|
|
return *this;
|
|
}
|
|
RegularExpressionMatch &operator=(RegularExpressionMatch &&other) {
|
|
data_ = std::move(other.data_);
|
|
return *this;
|
|
}
|
|
QRegularExpressionMatch *operator->() {
|
|
return &data_;
|
|
}
|
|
const QRegularExpressionMatch *operator->() const {
|
|
return &data_;
|
|
}
|
|
bool valid() const {
|
|
return data_.hasMatch();
|
|
}
|
|
explicit operator bool() const {
|
|
return valid();
|
|
}
|
|
|
|
private:
|
|
QRegularExpressionMatch data_;
|
|
|
|
};
|
|
|
|
enum class RegExOption {
|
|
None = QRegularExpression::NoPatternOption,
|
|
CaseInsensitive = QRegularExpression::CaseInsensitiveOption,
|
|
DotMatchesEverything = QRegularExpression::DotMatchesEverythingOption,
|
|
Multiline = QRegularExpression::MultilineOption,
|
|
ExtendedSyntax = QRegularExpression::ExtendedPatternSyntaxOption,
|
|
InvertedGreediness = QRegularExpression::InvertedGreedinessOption,
|
|
DontCapture = QRegularExpression::DontCaptureOption,
|
|
UseUnicodeProperties = QRegularExpression::UseUnicodePropertiesOption,
|
|
};
|
|
using RegExOptions = base::flags<RegExOption>;
|
|
inline constexpr auto is_flag_type(RegExOption) { return true; };
|
|
|
|
inline RegularExpressionMatch regex_match(const QString &string, const QString &subject, RegExOptions options = 0) {
|
|
auto qtOptions = QRegularExpression::PatternOptions(static_cast<int>(options));
|
|
return RegularExpressionMatch(QRegularExpression(string, qtOptions).match(subject));
|
|
}
|
|
|
|
inline RegularExpressionMatch regex_match(const QString &string, QStringView subjectView, RegExOptions options = 0) {
|
|
auto qtOptions = QRegularExpression::PatternOptions(static_cast<int>(options));
|
|
return RegularExpressionMatch(QRegularExpression(string, qtOptions).match(subjectView));
|
|
}
|
|
|
|
} // namespace qthelp
|