2021-12-26 23:18:28 +08:00
|
|
|
/*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
2021-10-03 17:18:43 +08:00
|
|
|
#include "todoparser.h"
|
|
|
|
#include "mainwindow.h"
|
|
|
|
#include "editor.h"
|
|
|
|
#include "editorlist.h"
|
|
|
|
#include "HighlighterManager.h"
|
|
|
|
#include "qsynedit/Constants.h"
|
|
|
|
|
2022-01-04 16:50:54 +08:00
|
|
|
TodoParser::TodoParser(QObject *parent) : QObject(parent),
|
|
|
|
mMutex(QMutex::Recursive)
|
2021-10-03 17:18:43 +08:00
|
|
|
{
|
|
|
|
mThread = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TodoParser::parseFile(const QString &filename)
|
|
|
|
{
|
|
|
|
QMutexLocker locker(&mMutex);
|
|
|
|
if (mThread) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
mThread = new TodoThread(filename);
|
|
|
|
connect(mThread,&QThread::finished,
|
|
|
|
[this] {
|
|
|
|
QMutexLocker locker(&mMutex);
|
|
|
|
if (mThread) {
|
|
|
|
mThread->deleteLater();
|
|
|
|
mThread = nullptr;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
connect(mThread, &TodoThread::parseStarted,
|
|
|
|
pMainWindow, &MainWindow::onTodoParseStarted);
|
|
|
|
connect(mThread, &TodoThread::todoFound,
|
|
|
|
pMainWindow, &MainWindow::onTodoParsing);
|
|
|
|
connect(mThread, &TodoThread::parseFinished,
|
|
|
|
pMainWindow, &MainWindow::onTodoParseFinished);
|
|
|
|
mThread->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TodoParser::parsing() const
|
|
|
|
{
|
|
|
|
return (mThread!=nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
TodoThread::TodoThread(const QString& filename, QObject *parent): QThread(parent)
|
|
|
|
{
|
|
|
|
mFilename = filename;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TodoThread::run()
|
|
|
|
{
|
|
|
|
PSynHighlighter highlighter = highlighterManager.getCppHighlighter();
|
2021-10-21 08:19:15 +08:00
|
|
|
emit parseStarted(mFilename);
|
2021-10-03 17:18:43 +08:00
|
|
|
auto action = finally([this]{
|
|
|
|
emit parseFinished();
|
|
|
|
});
|
|
|
|
QStringList lines;
|
|
|
|
if (!pMainWindow->editorList()->getContentFromOpenedEditor(mFilename,lines)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
PSynHighlighterAttribute commentAttr = highlighter->getAttribute(SYNS_AttrComment);
|
|
|
|
|
|
|
|
highlighter->resetState();
|
|
|
|
for (int i =0;i<lines.count();i++) {
|
|
|
|
highlighter->setLine(lines[i],i);
|
|
|
|
while (!highlighter->eol()) {
|
|
|
|
PSynHighlighterAttribute attr;
|
|
|
|
attr = highlighter->getTokenAttribute();
|
|
|
|
if (attr == commentAttr) {
|
|
|
|
QString token = highlighter->getToken();
|
2021-10-03 23:16:54 +08:00
|
|
|
int pos = token.indexOf("TODO:",0,Qt::CaseInsensitive);
|
2021-10-03 17:18:43 +08:00
|
|
|
if (pos>=0) {
|
|
|
|
emit todoFound(
|
|
|
|
mFilename,
|
|
|
|
i+1,
|
|
|
|
pos+highlighter->getTokenPos(),
|
|
|
|
lines[i].trimmed()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
highlighter->next();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TodoModel::TodoModel(QObject *parent) : QAbstractListModel(parent)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void TodoModel::addItem(const QString &filename, int lineNo, int ch, const QString &line)
|
|
|
|
{
|
|
|
|
beginInsertRows(QModelIndex(),mItems.count(),mItems.count());
|
|
|
|
PTodoItem item = std::make_shared<TodoItem>();
|
|
|
|
item->filename = filename;
|
|
|
|
item->lineNo = lineNo;
|
|
|
|
item->ch = ch;
|
|
|
|
item->line = line;
|
|
|
|
mItems.append(item);
|
|
|
|
endInsertRows();
|
|
|
|
}
|
|
|
|
|
|
|
|
void TodoModel::clear()
|
|
|
|
{
|
|
|
|
beginResetModel();
|
|
|
|
mItems.clear();
|
|
|
|
endResetModel();
|
|
|
|
}
|
|
|
|
|
|
|
|
PTodoItem TodoModel::getItem(const QModelIndex &index)
|
|
|
|
{
|
|
|
|
if (!index.isValid())
|
|
|
|
return PTodoItem();
|
|
|
|
return mItems[index.row()];
|
|
|
|
}
|
|
|
|
|
2021-10-20 18:05:43 +08:00
|
|
|
int TodoModel::rowCount(const QModelIndex &) const
|
2021-10-03 17:18:43 +08:00
|
|
|
{
|
|
|
|
return mItems.count();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant TodoModel::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
|
|
|
if (!index.isValid())
|
|
|
|
return QVariant();
|
|
|
|
if (role==Qt::DisplayRole) {
|
|
|
|
PTodoItem item = mItems[index.row()];
|
|
|
|
switch(index.column()) {
|
|
|
|
case 0:
|
|
|
|
return item->filename;
|
|
|
|
case 1:
|
|
|
|
return item->lineNo;
|
|
|
|
case 2:
|
|
|
|
return item->ch;
|
|
|
|
case 3:
|
|
|
|
return item->line;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant TodoModel::headerData(int section, Qt::Orientation orientation, int role) const
|
|
|
|
{
|
|
|
|
if (orientation == Qt::Horizontal && role == Qt::DisplayRole) {
|
|
|
|
switch(section) {
|
|
|
|
case 0:
|
|
|
|
return tr("Filename");
|
|
|
|
case 1:
|
|
|
|
return tr("Line");
|
|
|
|
case 2:
|
|
|
|
return tr("Column");
|
|
|
|
case 3:
|
|
|
|
return tr("Content");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
2021-10-20 18:05:43 +08:00
|
|
|
int TodoModel::columnCount(const QModelIndex &) const
|
2021-10-03 17:18:43 +08:00
|
|
|
{
|
|
|
|
return 4;
|
|
|
|
}
|