316 lines
8.7 KiB
C++
316 lines
8.7 KiB
C++
/*
|
|
* Copyright (C) 2020-2022 Roy Qu (royqh1979@gmail.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
|
|
* (at your option) 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 <https://www.gnu.org/licenses/>.
|
|
*/
|
|
#ifndef REDPANDA_QT_UTILS_H
|
|
#define REDPANDA_QT_UTILS_H
|
|
#include <type_traits>
|
|
#include <utility>
|
|
#include <functional>
|
|
#include <QString>
|
|
#include <QRect>
|
|
#include <QStringList>
|
|
#include <memory>
|
|
#include <QThread>
|
|
#include <QProcessEnvironment>
|
|
|
|
#if QT_VERSION_MAJOR >= 6
|
|
# include <QStringEncoder>
|
|
# include <QStringDecoder>
|
|
#else
|
|
class QTextCodec;
|
|
#endif
|
|
|
|
class QByteArray;
|
|
class QTextStream;
|
|
|
|
#define ENCODING_AUTO_DETECT "AUTO"
|
|
#define ENCODING_UTF8 "UTF-8"
|
|
#define ENCODING_UTF16 "UTF-16"
|
|
#define ENCODING_UTF32 "UTF-32"
|
|
#define ENCODING_UTF8_BOM "UTF-8 BOM"
|
|
#define ENCODING_UTF16_BOM "UTF-16 BOM"
|
|
#define ENCODING_UTF32_BOM "UTF-32 BOM"
|
|
#define ENCODING_SYSTEM_DEFAULT "SYSTEM"
|
|
#define ENCODING_ASCII "ASCII"
|
|
#define ENCODING_PROJECT "PROJECT"
|
|
|
|
enum class NewlineType {
|
|
Windows,
|
|
Unix,
|
|
MacOld
|
|
};// Windows: CRLF, UNIX: LF, Old Mac OS: CR (old mac os, not mac os x)
|
|
|
|
class BaseError{
|
|
public:
|
|
explicit BaseError(const QString& reason);
|
|
QString reason() const;
|
|
|
|
protected:
|
|
QString mReason;
|
|
};
|
|
|
|
class IndexOutOfRange:public BaseError {
|
|
public:
|
|
explicit IndexOutOfRange(int Index);
|
|
};
|
|
|
|
class FileError: public BaseError {
|
|
public:
|
|
explicit FileError(const QString& reason);
|
|
};
|
|
|
|
/* text processing utils */
|
|
QString guessTextEncoding(const QByteArray& text);
|
|
|
|
const QChar *getNullTerminatedStringData(const QString& str);
|
|
|
|
bool isBinaryContent(const QByteArray& text);
|
|
bool isTextAllAscii(const QByteArray& text);
|
|
bool isTextAllAscii(const QString& text);
|
|
|
|
bool isNonPrintableAsciiChar(char ch);
|
|
|
|
using LineProcessFunc = std::function<void(const QString&)>;
|
|
|
|
QStringList textToLines(const QString& text);
|
|
void textToLines(const QString& text, LineProcessFunc lineFunc);
|
|
QString linesToText(const QStringList& lines, const QString& lineBreak="\n");
|
|
|
|
QList<QByteArray> splitByteArrayToLines(const QByteArray& content);
|
|
|
|
QString trimRight(const QString& s);
|
|
QString trimLeft(const QString& s);
|
|
|
|
class QTextEdit;
|
|
void clearQPlainTextEditFormat(QTextEdit* editor);
|
|
|
|
int countLeadingWhitespaceChars(const QString& line);
|
|
|
|
bool stringIsBlank(const QString& s);
|
|
|
|
QByteArray toByteArray(const QString& s);
|
|
QString fromByteArray(const QByteArray& s);
|
|
|
|
/* text I/O utils */
|
|
|
|
QStringList readStreamToLines(QTextStream* stream);
|
|
void readStreamToLines(QTextStream* stream, LineProcessFunc lineFunc);
|
|
|
|
/**
|
|
* @brief readFileToLines
|
|
* @param fileName
|
|
* @param codec
|
|
* @return
|
|
*/
|
|
QStringList readFileToLines(const QString& fileName);
|
|
|
|
QByteArray readFileToByteArray(const QString& fileName);
|
|
|
|
bool stringsToFile(const QStringList& list, const QString& fileName);
|
|
bool stringToFile(const QString& str, const QString& fileName);
|
|
void createFile(const QString& fileName);
|
|
|
|
/* File I/O utils */
|
|
bool fileExists(const QString& file);
|
|
bool fileExists(const QString& dir, const QString& fileName);
|
|
bool directoryExists(const QString& file);
|
|
bool removeFile(const QString& filename);
|
|
void copyFolder(const QString &fromDir, const QString& toDir);
|
|
bool copyFile(const QString &fromFile, const QString& toFile, bool overwrite);
|
|
bool isInFolder(const QString& folderpath, const QString& filepath);
|
|
|
|
QString includeTrailingPathDelimiter(const QString& path);
|
|
QString excludeTrailingPathDelimiter(const QString& path);
|
|
QString changeFileExt(const QString& filename, QString ext);
|
|
|
|
QString localizePath(const QString& path);
|
|
|
|
QString extractRelativePath(const QString& base, const QString& dest);
|
|
QStringList extractRelativePaths(const QString& base, const QStringList& destList);
|
|
QString extractFileName(const QString& fileName);
|
|
QString extractFileDir(const QString& fileName);
|
|
QString extractFilePath(const QString& filePath);
|
|
QString extractAbsoluteFilePath(const QString& filePath);
|
|
QString cleanPath(const QString& dirPath);
|
|
QString generateAbsolutePath(const QString& dirPath, const QString& relativePath);
|
|
QStringList absolutePaths(const QString& dirPath, const QStringList& relativePaths);
|
|
QString escapeSpacesInString(const QString& str);
|
|
|
|
QString replacePrefix(const QString& oldString, const QString& prefix, const QString& newPrefix);
|
|
|
|
|
|
bool isReadOnly(const QString& filename);
|
|
|
|
int compareFileModifiedTime(const QString& filename1, const QString& filename2);
|
|
int compareFileModifiedTime(const QString& filename1, qint64 timestamp);
|
|
|
|
/* UI utils */
|
|
void inflateRect(QRectF& rect, float delta);
|
|
void inflateRect(QRectF& rect, float dx, float dy);
|
|
|
|
int screenDPI();
|
|
void setScreenDPI(int dpi);
|
|
float pointToPixel(float point);
|
|
float pointToPixel(float point, float dpi);
|
|
float pixelToPoint(float pixel);
|
|
|
|
void decodeKey(int combinedKey, int& key, Qt::KeyboardModifiers& modifiers);
|
|
|
|
|
|
/**
|
|
* from https://github.com/Microsoft/GSL
|
|
**/
|
|
|
|
template <class F>
|
|
class final_action
|
|
{
|
|
public:
|
|
static_assert(!std::is_reference<F>::value && !std::is_const<F>::value &&
|
|
!std::is_volatile<F>::value,
|
|
"Final_action should store its callable by value");
|
|
|
|
explicit final_action(F f) noexcept : f_(std::move(f)) {}
|
|
|
|
final_action(final_action&& other) noexcept
|
|
: f_(std::move(other.f_)), invoke_(std::exchange(other.invoke_, false))
|
|
{}
|
|
|
|
final_action(const final_action&) = delete;
|
|
final_action& operator=(const final_action&) = delete;
|
|
final_action& operator=(final_action&&) = delete;
|
|
|
|
~final_action() noexcept
|
|
{
|
|
if (invoke_) f_();
|
|
}
|
|
|
|
private:
|
|
F f_;
|
|
bool invoke_{true};
|
|
};
|
|
|
|
template <class F> final_action<typename std::remove_cv<typename std::remove_reference<F>::type>::type>
|
|
finally(F&& f) noexcept
|
|
{
|
|
return final_action<typename std::remove_cv<typename std::remove_reference<F>::type>::type>(
|
|
std::forward<F>(f));
|
|
}
|
|
|
|
class TextEncoder {
|
|
public:
|
|
explicit TextEncoder(const char *name);
|
|
explicit TextEncoder(const QByteArray &name);
|
|
TextEncoder(const TextEncoder &other) = delete;
|
|
TextEncoder(TextEncoder &&other) noexcept = default;
|
|
TextEncoder &operator=(const TextEncoder &other) = delete;
|
|
TextEncoder &operator=(TextEncoder &&other) noexcept = default;
|
|
~TextEncoder() = default;
|
|
|
|
#if QT_VERSION_MAJOR >= 6
|
|
private:
|
|
TextEncoder(QStringEncoder &&encoder);
|
|
#endif
|
|
|
|
public:
|
|
bool isValid() const;
|
|
QByteArray name() const;
|
|
std::pair<bool, QByteArray> encode(const QString &text);
|
|
QByteArray encodeUnchecked(const QString &text);
|
|
|
|
public:
|
|
static TextEncoder encoderForUtf8();
|
|
static TextEncoder encoderForUtf16();
|
|
static TextEncoder encoderForUtf32();
|
|
static TextEncoder encoderForSystem();
|
|
|
|
private:
|
|
#if QT_VERSION_MAJOR >= 6
|
|
QStringEncoder mEncoder;
|
|
#else
|
|
QTextCodec *mCodec;
|
|
#endif
|
|
};
|
|
|
|
class TextDecoder {
|
|
public:
|
|
explicit TextDecoder(const char *name);
|
|
explicit TextDecoder(const QByteArray &name);
|
|
TextDecoder(const TextDecoder &other) = delete;
|
|
TextDecoder(TextDecoder &&other) noexcept = default;
|
|
TextDecoder &operator=(const TextDecoder &other) = delete;
|
|
TextDecoder &operator=(TextDecoder &&other) noexcept = default;
|
|
~TextDecoder() = default;
|
|
|
|
#if QT_VERSION_MAJOR >= 6
|
|
private:
|
|
TextDecoder(QStringDecoder &&decoder);
|
|
#endif
|
|
|
|
public:
|
|
bool isValid() const;
|
|
QByteArray name() const;
|
|
std::pair<bool, QString> decode(const QByteArray &text);
|
|
QString decodeUnchecked(const QByteArray &text);
|
|
|
|
public:
|
|
static TextDecoder decoderForUtf8();
|
|
static TextDecoder decoderForUtf16();
|
|
static TextDecoder decoderForUtf32();
|
|
static TextDecoder decoderForSystem();
|
|
|
|
private:
|
|
#if QT_VERSION_MAJOR >= 6
|
|
QStringDecoder mDecoder;
|
|
#else
|
|
QTextCodec *mCodec;
|
|
#endif
|
|
};
|
|
|
|
const QStringList &availableEncodings();
|
|
|
|
bool isEncodingAvailable(const QByteArray &encoding);
|
|
|
|
#if QT_VERSION_MAJOR >= 6
|
|
|
|
namespace std {
|
|
constexpr inline int max(int a, qsizetype b) {
|
|
return max<int>(a, b);
|
|
}
|
|
constexpr inline int max(qsizetype a, int b) {
|
|
return max<int>(a, b);
|
|
}
|
|
constexpr inline int min(int a, qsizetype b) {
|
|
return min<int>(a, b);
|
|
}
|
|
constexpr inline int min(qsizetype a, int b) {
|
|
return min<int>(a, b);
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|
|
inline bool isAsciiPrint(int c)
|
|
{
|
|
return c >= 32 && c <= 126;
|
|
}
|
|
|
|
inline bool isLexicalSpace(QChar c)
|
|
{
|
|
return c.unicode() >= 1 && c.unicode() <= 32;
|
|
}
|
|
|
|
#endif // UTILS_H
|