2021-04-06 23:10:57 +08:00
|
|
|
#include "utils.h"
|
2021-04-20 22:24:33 +08:00
|
|
|
#include "systemconsts.h"
|
2021-04-13 22:17:18 +08:00
|
|
|
#include <QApplication>
|
2021-04-06 23:10:57 +08:00
|
|
|
#include <QByteArray>
|
2021-04-15 11:18:14 +08:00
|
|
|
#include <QDir>
|
2021-04-13 22:17:18 +08:00
|
|
|
#include <QFile>
|
|
|
|
#include <QFileInfo>
|
2021-04-15 11:18:14 +08:00
|
|
|
#include <QProcess>
|
|
|
|
#include <QProcessEnvironment>
|
2021-04-13 22:17:18 +08:00
|
|
|
#include <QSettings>
|
2021-04-06 23:10:57 +08:00
|
|
|
#include <QString>
|
|
|
|
#include <QTextCodec>
|
2021-04-20 22:24:33 +08:00
|
|
|
#include <QtGlobal>
|
|
|
|
#include <QDebug>
|
2021-04-21 18:58:35 +08:00
|
|
|
#include <windows.h>
|
2021-06-18 21:48:40 +08:00
|
|
|
#include <QStyleFactory>
|
2021-06-25 12:40:11 +08:00
|
|
|
#include <QDateTime>
|
2021-08-23 10:16:06 +08:00
|
|
|
#include "parser/cppparser.h"
|
|
|
|
#include "settings.h"
|
2021-04-06 23:10:57 +08:00
|
|
|
|
2021-04-11 12:39:22 +08:00
|
|
|
const QByteArray GuessTextEncoding(const QByteArray& text){
|
2021-04-06 23:10:57 +08:00
|
|
|
bool allAscii;
|
|
|
|
int ii;
|
|
|
|
int size;
|
2021-04-11 12:39:22 +08:00
|
|
|
const QByteArray& s=text;
|
2021-04-06 23:10:57 +08:00
|
|
|
size = s.length();
|
|
|
|
if ( (size >= 3) && ((unsigned char)s[0]==0xEF) && ((unsigned char)s[1]==0xBB) && ((unsigned char)s[2]==0xBF)) {
|
2021-04-08 10:29:21 +08:00
|
|
|
return ENCODING_UTF8_BOM;
|
2021-04-06 23:10:57 +08:00
|
|
|
}
|
|
|
|
allAscii = true;
|
|
|
|
ii = 0;
|
|
|
|
while (ii < size) {
|
|
|
|
unsigned char ch = s[ii];
|
|
|
|
if (ch < 0x80 ) {
|
|
|
|
ii++; // is an ascii char
|
|
|
|
} else if (ch < 0xC0) { // value between 0x80 and 0xC0 is an invalid UTF-8 char
|
2021-04-08 10:29:21 +08:00
|
|
|
return ENCODING_SYSTEM_DEFAULT;
|
2021-04-06 23:10:57 +08:00
|
|
|
} else if (ch < 0xE0) { // should be an 2-byte UTF-8 char
|
|
|
|
if (ii>=size-1) {
|
2021-04-08 10:29:21 +08:00
|
|
|
return ENCODING_SYSTEM_DEFAULT;
|
2021-04-06 23:10:57 +08:00
|
|
|
}
|
|
|
|
unsigned char ch2=s[ii+1];
|
|
|
|
if ((ch2 & 0xC0) !=0x80) {
|
2021-04-08 10:29:21 +08:00
|
|
|
return ENCODING_SYSTEM_DEFAULT;
|
2021-04-06 23:10:57 +08:00
|
|
|
}
|
|
|
|
allAscii = false;
|
|
|
|
ii+=2;
|
|
|
|
} else if (ch < 0xF0) { // should be an 3-byte UTF-8 char
|
|
|
|
if (ii>=size-2) {
|
2021-04-08 10:29:21 +08:00
|
|
|
return ENCODING_SYSTEM_DEFAULT;
|
2021-04-06 23:10:57 +08:00
|
|
|
}
|
|
|
|
unsigned char ch2=s[ii+1];
|
|
|
|
unsigned char ch3=s[ii+2];
|
|
|
|
if (((ch2 & 0xC0)!=0x80) || ((ch3 & 0xC0)!=0x80)) {
|
2021-04-08 10:29:21 +08:00
|
|
|
return ENCODING_SYSTEM_DEFAULT;
|
2021-04-06 23:10:57 +08:00
|
|
|
}
|
|
|
|
allAscii = false;
|
|
|
|
ii+=3;
|
|
|
|
} else { // invalid UTF-8 char
|
2021-04-08 10:29:21 +08:00
|
|
|
return ENCODING_SYSTEM_DEFAULT;
|
2021-04-06 23:10:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (allAscii)
|
2021-04-08 10:29:21 +08:00
|
|
|
return ENCODING_ASCII;
|
|
|
|
return ENCODING_UTF8;
|
2021-04-06 23:10:57 +08:00
|
|
|
}
|
|
|
|
|
2021-04-07 21:13:15 +08:00
|
|
|
bool isTextAllAscii(const QString& text) {
|
|
|
|
for (QChar c:text) {
|
|
|
|
if (c.unicode()>127) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2021-04-06 23:10:57 +08:00
|
|
|
}
|
2021-04-07 21:13:15 +08:00
|
|
|
|
|
|
|
|
2021-04-13 22:17:18 +08:00
|
|
|
static bool gIsGreenEdition = false;
|
|
|
|
static bool gIsGreenEditionInited = false;
|
|
|
|
bool isGreenEdition()
|
|
|
|
{
|
|
|
|
if (!gIsGreenEditionInited) {
|
|
|
|
QSettings settings("Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\RedPanda-C++",
|
|
|
|
QSettings::NativeFormat);
|
|
|
|
QString regPath = QFileInfo(settings.value("UninstallString").toString()).absolutePath();
|
|
|
|
|
|
|
|
QString appPath = QApplication::instance()->applicationDirPath();
|
|
|
|
gIsGreenEdition = (regPath != appPath);
|
|
|
|
gIsGreenEditionInited = true;
|
|
|
|
}
|
|
|
|
return gIsGreenEdition;
|
|
|
|
}
|
2021-04-15 11:18:14 +08:00
|
|
|
|
|
|
|
QByteArray runAndGetOutput(const QString &cmd, const QString& workingDir, const QStringList& arguments, bool inheritEnvironment)
|
|
|
|
{
|
|
|
|
QProcess process;
|
|
|
|
QByteArray result;
|
|
|
|
if (inheritEnvironment) {
|
|
|
|
process.setProcessEnvironment(QProcessEnvironment::systemEnvironment());
|
|
|
|
} else {
|
|
|
|
process.setProcessEnvironment(QProcessEnvironment());
|
|
|
|
}
|
|
|
|
process.setWorkingDirectory(workingDir);
|
|
|
|
process.connect(&process,&QProcess::readyReadStandardError,
|
|
|
|
[&](){
|
|
|
|
result.append(process.readAllStandardError());
|
|
|
|
});
|
|
|
|
process.connect(&process,&QProcess::readyReadStandardOutput,
|
|
|
|
[&](){
|
|
|
|
result.append(process.readAllStandardOutput());
|
|
|
|
});
|
2021-04-20 22:24:33 +08:00
|
|
|
process.start(cmd,arguments);
|
|
|
|
process.closeWriteChannel();
|
2021-04-21 18:58:35 +08:00
|
|
|
process.waitForFinished();
|
2021-04-15 11:18:14 +08:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isNonPrintableAsciiChar(char ch)
|
|
|
|
{
|
2021-08-16 23:17:48 +08:00
|
|
|
return (ch<=32) && (ch>=0);
|
2021-04-15 11:18:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool fileExists(const QString &file)
|
|
|
|
{
|
|
|
|
return QFileInfo(file).exists();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool fileExists(const QString &dir, const QString &fileName)
|
|
|
|
{
|
|
|
|
QDir dirInfo(dir);
|
|
|
|
return dirInfo.exists(fileName);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool directoryExists(const QString &file)
|
|
|
|
{
|
|
|
|
QFileInfo dir(file);
|
|
|
|
return dir.exists() && dir.isDir();
|
|
|
|
}
|
2021-04-15 21:32:45 +08:00
|
|
|
|
|
|
|
QString includeTrailingPathDelimiter(const QString &path)
|
|
|
|
{
|
|
|
|
if (path.endsWith('/') || path.endsWith(QDir::separator())) {
|
|
|
|
return path;
|
|
|
|
} else {
|
2021-04-20 22:24:33 +08:00
|
|
|
return path + "/";
|
2021-04-15 21:32:45 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QString excludeTrailingPathDelimiter(const QString &path)
|
|
|
|
{
|
|
|
|
int pos = path.length()-1;
|
|
|
|
while (pos>=0 && (path[pos]=='/' || path[pos]==QDir::separator()))
|
|
|
|
pos--;
|
|
|
|
return path.mid(0,pos+1);
|
|
|
|
}
|
2021-04-20 22:24:33 +08:00
|
|
|
|
|
|
|
FileType getFileType(const QString &filename)
|
|
|
|
{
|
|
|
|
if (filename.endsWith(".c",PATH_SENSITIVITY)) {
|
|
|
|
return FileType::CSource;
|
|
|
|
}
|
|
|
|
if (filename.endsWith(".cpp",PATH_SENSITIVITY)) {
|
|
|
|
return FileType::CppSource;
|
|
|
|
}
|
|
|
|
if (filename.endsWith(".cc",PATH_SENSITIVITY)) {
|
|
|
|
return FileType::CppSource;
|
|
|
|
}
|
|
|
|
if (filename.endsWith(".cxx",PATH_SENSITIVITY)) {
|
|
|
|
return FileType::CppSource;
|
|
|
|
}
|
|
|
|
if (filename.endsWith(".c++",PATH_SENSITIVITY)) {
|
|
|
|
return FileType::CppSource;
|
|
|
|
}
|
|
|
|
if (filename.endsWith(".h",PATH_SENSITIVITY)) {
|
|
|
|
return FileType::CHeader;
|
|
|
|
}
|
|
|
|
if (filename.endsWith(".hpp",PATH_SENSITIVITY)) {
|
|
|
|
return FileType::CppHeader;
|
|
|
|
}
|
|
|
|
if (filename.endsWith(".hh",PATH_SENSITIVITY)) {
|
|
|
|
return FileType::CppHeader;
|
|
|
|
}
|
|
|
|
if (filename.endsWith(".hxx",PATH_SENSITIVITY)) {
|
|
|
|
return FileType::CppHeader;
|
|
|
|
}
|
|
|
|
if (filename.endsWith(".inl",PATH_SENSITIVITY)) {
|
|
|
|
return FileType::CppHeader;
|
|
|
|
}
|
|
|
|
if (filename.endsWith(".res",PATH_SENSITIVITY)) {
|
|
|
|
return FileType::WindowsResourceSource;
|
|
|
|
}
|
|
|
|
return FileType::Other;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-07-23 13:22:05 +08:00
|
|
|
QString getCompiledExecutableName(const QString& filename)
|
2021-04-20 22:24:33 +08:00
|
|
|
{
|
2021-07-23 13:22:05 +08:00
|
|
|
return changeFileExt(filename,EXECUTABE_EXT);
|
2021-04-20 22:24:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void splitStringArguments(const QString &arguments, QStringList &argumentList)
|
|
|
|
{
|
|
|
|
QString word;
|
|
|
|
bool inQuota;
|
|
|
|
inQuota = false;
|
|
|
|
for (QChar ch:arguments) {
|
|
|
|
if (ch == '"') {
|
|
|
|
inQuota = !inQuota;
|
|
|
|
} else if (ch == '\n' || ch == ' ' || ch == '\t' || ch == '\r') {
|
|
|
|
if (!inQuota) {
|
|
|
|
word = word.trimmed();
|
|
|
|
if (!word.isEmpty()) {
|
|
|
|
argumentList.append(word);
|
|
|
|
}
|
|
|
|
word = "";
|
|
|
|
} else {
|
|
|
|
word.append(ch);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
word.append(ch);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
word = word.trimmed();
|
|
|
|
if (!word.isEmpty()) {
|
|
|
|
argumentList.append(word);
|
|
|
|
}
|
|
|
|
}
|
2021-04-21 18:58:35 +08:00
|
|
|
|
|
|
|
bool programHasConsole(const QString &filename)
|
|
|
|
{
|
|
|
|
bool result = false;
|
|
|
|
HANDLE handle = CreateFile(filename.toStdWString().c_str(), GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
|
|
|
|
if (handle != INVALID_HANDLE_VALUE) {
|
|
|
|
IMAGE_DOS_HEADER dos_header;
|
|
|
|
DWORD signature;
|
|
|
|
DWORD bytesread;
|
|
|
|
IMAGE_FILE_HEADER pe_header;
|
|
|
|
IMAGE_OPTIONAL_HEADER opt_header;
|
|
|
|
|
|
|
|
ReadFile(handle, &dos_header, sizeof(dos_header), &bytesread, NULL);
|
|
|
|
SetFilePointer(handle, dos_header.e_lfanew, NULL, 0);
|
|
|
|
ReadFile(handle, &signature, sizeof(signature), &bytesread, NULL);
|
|
|
|
ReadFile(handle, &pe_header, sizeof(pe_header), &bytesread, NULL);
|
|
|
|
ReadFile(handle, &opt_header, sizeof(opt_header), &bytesread, NULL);
|
|
|
|
|
|
|
|
result = (opt_header.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_CUI);
|
|
|
|
}
|
|
|
|
CloseHandle(handle);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString toLocalPath(const QString &filename)
|
|
|
|
{
|
|
|
|
QString newPath {filename};
|
|
|
|
newPath.replace("/",QDir::separator());
|
|
|
|
return newPath;
|
|
|
|
}
|
2021-05-03 10:15:40 +08:00
|
|
|
|
|
|
|
QStringList TextToLines(const QString &text)
|
|
|
|
{
|
|
|
|
QTextStream stream(&((QString&)text),QIODevice::ReadOnly);
|
|
|
|
return ReadStreamToLines(&stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList ReadFileToLines(const QString& fileName, QTextCodec* codec)
|
|
|
|
{
|
|
|
|
QFile file(fileName);
|
|
|
|
if (file.open(QFile::ReadOnly)) {
|
|
|
|
QTextStream stream(&file);
|
|
|
|
stream.setCodec(codec);
|
|
|
|
stream.setAutoDetectUnicode(false);
|
|
|
|
return ReadStreamToLines(&stream);
|
|
|
|
}
|
|
|
|
return QStringList();
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList ReadStreamToLines(QTextStream *stream)
|
|
|
|
{
|
|
|
|
QStringList list;
|
|
|
|
QString s;
|
|
|
|
while (stream->readLineInto(&s)) {
|
|
|
|
list.append(s);
|
|
|
|
}
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ReadStreamToLines(QTextStream *stream,
|
|
|
|
LineProcessFunc lineFunc)
|
|
|
|
{
|
|
|
|
QString s;
|
|
|
|
while (stream->readLineInto(&s)) {
|
|
|
|
lineFunc(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextToLines(const QString &text, LineProcessFunc lineFunc)
|
|
|
|
{
|
|
|
|
QTextStream stream(&((QString&)text),QIODevice::ReadOnly);
|
|
|
|
ReadStreamToLines(&stream,lineFunc);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ReadFileToLines(const QString &fileName, QTextCodec *codec, LineProcessFunc lineFunc)
|
|
|
|
{
|
|
|
|
QFile file(fileName);
|
|
|
|
if (file.open(QFile::ReadOnly)) {
|
|
|
|
QTextStream stream(&file);
|
|
|
|
stream.setCodec(codec);
|
|
|
|
stream.setAutoDetectUnicode(false);
|
|
|
|
ReadStreamToLines(&stream, lineFunc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
BaseError::BaseError(const QString &reason):
|
|
|
|
mReason(reason)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
QString BaseError::reason() const
|
|
|
|
{
|
|
|
|
return mReason;
|
|
|
|
}
|
|
|
|
|
|
|
|
IndexOutOfRange::IndexOutOfRange(int Index):
|
|
|
|
BaseError(QObject::tr("Index %1 out of range").arg(Index))
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
FileError::FileError(const QString &reason): BaseError(reason)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2021-05-06 20:55:55 +08:00
|
|
|
|
|
|
|
void decodeKey(const int combinedKey, int &key, Qt::KeyboardModifiers &modifiers)
|
|
|
|
{
|
|
|
|
modifiers = Qt::NoModifier;
|
|
|
|
if (combinedKey & Qt::ShiftModifier) {
|
|
|
|
modifiers|=Qt::ShiftModifier;
|
|
|
|
}
|
|
|
|
if (combinedKey & Qt::ControlModifier) {
|
|
|
|
modifiers|=Qt::ControlModifier;
|
|
|
|
}
|
|
|
|
if (combinedKey & Qt::AltModifier) {
|
|
|
|
modifiers|=Qt::AltModifier;
|
|
|
|
}
|
|
|
|
if (combinedKey & Qt::MetaModifier) {
|
|
|
|
modifiers|=Qt::MetaModifier;
|
|
|
|
}
|
|
|
|
if (combinedKey & Qt::KeypadModifier) {
|
|
|
|
modifiers|= Qt::KeypadModifier;
|
|
|
|
}
|
|
|
|
key = combinedKey & ~(Qt::ShiftModifier | Qt::ControlModifier | Qt::AltModifier | Qt::MetaModifier | Qt::KeypadModifier);
|
|
|
|
}
|
2021-05-21 23:33:53 +08:00
|
|
|
|
|
|
|
void inflateRect(QRect &rect, int delta)
|
|
|
|
{
|
|
|
|
inflateRect(rect,delta,delta);
|
|
|
|
}
|
|
|
|
|
|
|
|
void inflateRect(QRect &rect, int dx, int dy)
|
|
|
|
{
|
|
|
|
rect.setLeft(rect.left()-dx);
|
|
|
|
rect.setRight(rect.right()+dx);
|
|
|
|
rect.setTop(rect.top()-dy);
|
|
|
|
rect.setBottom(rect.bottom()+dy);
|
|
|
|
}
|
2021-05-24 00:41:00 +08:00
|
|
|
|
2021-05-29 21:35:46 +08:00
|
|
|
QString TrimRight(const QString &s)
|
2021-05-24 00:41:00 +08:00
|
|
|
{
|
|
|
|
if (s.isEmpty())
|
|
|
|
return s;
|
|
|
|
int i = s.length()-1;
|
2021-07-17 19:32:23 +08:00
|
|
|
// while ((i>=0) && ((s[i] == '\r') || (s[i]=='\n') || (s[i] == '\t') || (s[i]==' '))) {
|
|
|
|
while ((i>=0) && (s[i]<=32)) {
|
2021-05-24 00:41:00 +08:00
|
|
|
i--;
|
|
|
|
};
|
|
|
|
if (i>=0) {
|
|
|
|
return s.left(i+1);
|
|
|
|
} else {
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
}
|
2021-06-03 20:26:36 +08:00
|
|
|
|
|
|
|
bool StringIsBlank(const QString &s)
|
|
|
|
{
|
|
|
|
for (QChar ch:s) {
|
|
|
|
if (ch != ' ' && ch != '\t')
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2021-06-04 21:27:51 +08:00
|
|
|
|
|
|
|
QString TrimLeft(const QString &s)
|
|
|
|
{
|
|
|
|
if (s.isEmpty())
|
|
|
|
return s;
|
|
|
|
int i=0;
|
2021-07-17 19:32:23 +08:00
|
|
|
// while ((i<s.length()) && ((s[i] == '\r') || (s[i]=='\n') || (s[i] == '\t') || (s[i]==' '))) {
|
|
|
|
// i++;
|
|
|
|
// };
|
|
|
|
while ((i<s.length()) && (s[i]<=32)) {
|
2021-06-04 21:27:51 +08:00
|
|
|
i++;
|
|
|
|
};
|
|
|
|
if (i<s.length()) {
|
|
|
|
return s.mid(i);
|
|
|
|
} else {
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
}
|
2021-06-18 21:48:40 +08:00
|
|
|
|
|
|
|
void changeTheme(const QString &themeName)
|
|
|
|
{
|
|
|
|
if (themeName.isEmpty() || themeName == "default") {
|
|
|
|
QApplication::setStyle("Fusion");
|
|
|
|
return ;
|
|
|
|
}
|
|
|
|
QStyleFactory styleFactory;
|
|
|
|
if (styleFactory.keys().contains(themeName)) {
|
|
|
|
QApplication::setStyle(themeName);
|
|
|
|
}
|
|
|
|
QFile f(QString(":/themes/%1/style.qss").arg(themeName));
|
|
|
|
|
|
|
|
if (!f.exists()) {
|
|
|
|
qDebug()<<"Unable to set stylesheet, file not found\n";
|
|
|
|
} else {
|
|
|
|
f.open(QFile::ReadOnly | QFile::Text);
|
|
|
|
QTextStream ts(&f);
|
|
|
|
dynamic_cast<QApplication*>(QApplication::instance())->setStyleSheet(ts.readAll());
|
|
|
|
}
|
|
|
|
}
|
2021-06-25 12:40:11 +08:00
|
|
|
|
|
|
|
int compareFileModifiedTime(const QString &filename1, const QString &filename2)
|
|
|
|
{
|
|
|
|
QFileInfo fileInfo1(filename1);
|
|
|
|
QFileInfo fileInfo2(filename2);
|
|
|
|
qint64 time1=fileInfo1.lastModified().toMSecsSinceEpoch();
|
|
|
|
qint64 time2=fileInfo2.lastModified().toMSecsSinceEpoch();
|
|
|
|
if (time1 > time2)
|
|
|
|
return 1;
|
|
|
|
if (time1 < time2)
|
|
|
|
return -1;
|
|
|
|
return 0;
|
|
|
|
}
|
2021-07-23 13:22:05 +08:00
|
|
|
|
|
|
|
QString changeFileExt(const QString& filename, const QString& ext)
|
|
|
|
{
|
|
|
|
QFileInfo fileInfo(filename);
|
|
|
|
QString suffix = fileInfo.suffix();
|
|
|
|
QString name = fileInfo.fileName();
|
|
|
|
if (suffix.isEmpty()) {
|
|
|
|
return filename+"."+ext;
|
|
|
|
} else {
|
|
|
|
return filename.mid(0,filename.length()-suffix.length()-1)+"."+ext;
|
|
|
|
}
|
|
|
|
}
|
2021-08-11 20:06:28 +08:00
|
|
|
|
|
|
|
QStringList ReadFileToLines(const QString &fileName)
|
|
|
|
{
|
|
|
|
QFile file(fileName);
|
|
|
|
if (file.size()<=0)
|
|
|
|
return QStringList();
|
|
|
|
QTextCodec* codec = QTextCodec::codecForLocale();
|
|
|
|
QStringList result;
|
|
|
|
QTextCodec::ConverterState state;
|
|
|
|
bool ok = true;
|
|
|
|
if (file.open(QFile::ReadOnly)) {
|
|
|
|
while (!file.atEnd()) {
|
|
|
|
QByteArray array = file.readLine();
|
|
|
|
QString s = codec->toUnicode(array,array.length(),&state);
|
|
|
|
if (state.invalidChars>0) {
|
|
|
|
ok=false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
result.append(s);
|
|
|
|
}
|
|
|
|
if (!ok) {
|
|
|
|
file.seek(0);
|
|
|
|
result.clear();
|
|
|
|
codec = QTextCodec::codecForName("UTF-8");
|
|
|
|
while (!file.atEnd()) {
|
|
|
|
QByteArray array = file.readLine();
|
|
|
|
QString s = codec->toUnicode(array,array.length(),&state);
|
|
|
|
if (state.invalidChars>0) {
|
|
|
|
result.clear();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
result.append(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
2021-08-13 11:18:42 +08:00
|
|
|
|
|
|
|
void StringsToFile(const QStringList &list, const QString &fileName)
|
|
|
|
{
|
|
|
|
QFile file(fileName);
|
|
|
|
if (file.open(QIODevice::WriteOnly | QIODevice::Truncate)) {
|
|
|
|
QTextStream stream(&file);
|
|
|
|
for (QString s:list) {
|
|
|
|
stream<<s<<Qt::endl;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-08-23 10:16:06 +08:00
|
|
|
|
|
|
|
void resetCppParser(std::shared_ptr<CppParser> parser)
|
|
|
|
{
|
|
|
|
if (!parser)
|
|
|
|
return;
|
|
|
|
// Configure parser
|
|
|
|
parser->reset();
|
|
|
|
//paser->enabled = pSettings-> devCodeCompletion.Enabled;
|
|
|
|
// CppParser.ParseLocalHeaders := devCodeCompletion.ParseLocalHeaders;
|
|
|
|
// CppParser.ParseGlobalHeaders := devCodeCompletion.ParseGlobalHeaders;
|
|
|
|
parser->setEnabled(true);
|
|
|
|
parser->setParseGlobalHeaders(true);
|
|
|
|
parser->setParseLocalHeaders(true);
|
|
|
|
// Set options depending on the current compiler set
|
|
|
|
// TODO: do this every time OnCompilerSetChanged
|
|
|
|
Settings::PCompilerSet compilerSet = pSettings->compilerSets().defaultSet();
|
|
|
|
parser->clearIncludePaths();
|
|
|
|
if (compilerSet) {
|
|
|
|
for (QString file:compilerSet->CIncludeDirs()) {
|
|
|
|
parser->addIncludePath(file);
|
|
|
|
}
|
|
|
|
for (QString file:compilerSet->CppIncludeDirs()) {
|
|
|
|
parser->addIncludePath(file);
|
|
|
|
}
|
|
|
|
//TODO: Add default include dirs last, just like gcc does
|
|
|
|
// Set defines
|
|
|
|
for (QString define:compilerSet->defines()) {
|
|
|
|
parser->addHardDefineByLine(define); // predefined constants from -dM -E
|
|
|
|
}
|
|
|
|
// add a dev-cpp's own macro
|
|
|
|
parser->addHardDefineByLine("#define EGE_FOR_AUTO_CODE_COMPLETETION_ONLY");
|
|
|
|
// add C/C++ default macro
|
|
|
|
parser->addHardDefineByLine("#define __FILE__ 1");
|
|
|
|
parser->addHardDefineByLine("#define __LINE__ 1");
|
|
|
|
parser->addHardDefineByLine("#define __DATE__ 1");
|
|
|
|
parser->addHardDefineByLine("#define __TIME__ 1");
|
|
|
|
}
|
|
|
|
parser->parseHardDefines();
|
|
|
|
}
|