mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-08 07:10:32 +00:00
9273b49b62
Signed-off-by: Adam Treat <treat.adam@gmail.com> Signed-off-by: Jared Van Bortel <jared@nomic.ai> Co-authored-by: Jared Van Bortel <jared@nomic.ai>
260 lines
9.5 KiB
C++
260 lines
9.5 KiB
C++
#include "localdocsmodel.h"
|
|
|
|
#include "localdocs.h"
|
|
#include "network.h"
|
|
|
|
#include <QDateTime>
|
|
#include <QMap>
|
|
#include <QVector>
|
|
#include <QtGlobal>
|
|
|
|
#include <utility>
|
|
|
|
LocalDocsCollectionsModel::LocalDocsCollectionsModel(QObject *parent)
|
|
: QSortFilterProxyModel(parent)
|
|
{
|
|
setSourceModel(LocalDocs::globalInstance()->localDocsModel());
|
|
|
|
connect(LocalDocs::globalInstance()->localDocsModel(),
|
|
&LocalDocsModel::updatingChanged, this, &LocalDocsCollectionsModel::maybeTriggerUpdatingCountChanged);
|
|
connect(this, &LocalDocsCollectionsModel::rowsInserted, this, &LocalDocsCollectionsModel::countChanged);
|
|
connect(this, &LocalDocsCollectionsModel::rowsRemoved, this, &LocalDocsCollectionsModel::countChanged);
|
|
connect(this, &LocalDocsCollectionsModel::modelReset, this, &LocalDocsCollectionsModel::countChanged);
|
|
connect(this, &LocalDocsCollectionsModel::layoutChanged, this, &LocalDocsCollectionsModel::countChanged);
|
|
}
|
|
|
|
bool LocalDocsCollectionsModel::filterAcceptsRow(int sourceRow,
|
|
const QModelIndex &sourceParent) const
|
|
{
|
|
QModelIndex index = sourceModel()->index(sourceRow, 0, sourceParent);
|
|
const QString collection = sourceModel()->data(index, LocalDocsModel::CollectionRole).toString();
|
|
return m_collections.contains(collection);
|
|
}
|
|
|
|
void LocalDocsCollectionsModel::setCollections(const QList<QString> &collections)
|
|
{
|
|
m_collections = collections;
|
|
invalidateFilter();
|
|
maybeTriggerUpdatingCountChanged();
|
|
}
|
|
|
|
int LocalDocsCollectionsModel::updatingCount() const
|
|
{
|
|
return m_updatingCount;
|
|
}
|
|
|
|
void LocalDocsCollectionsModel::maybeTriggerUpdatingCountChanged()
|
|
{
|
|
int updatingCount = 0;
|
|
for (int row = 0; row < sourceModel()->rowCount(); ++row) {
|
|
QModelIndex index = sourceModel()->index(row, 0);
|
|
const QString collection = sourceModel()->data(index, LocalDocsModel::CollectionRole).toString();
|
|
if (!m_collections.contains(collection))
|
|
continue;
|
|
bool updating = sourceModel()->data(index, LocalDocsModel::UpdatingRole).toBool();
|
|
if (updating)
|
|
++updatingCount;
|
|
}
|
|
if (updatingCount != m_updatingCount) {
|
|
m_updatingCount = updatingCount;
|
|
emit updatingCountChanged();
|
|
}
|
|
}
|
|
|
|
LocalDocsModel::LocalDocsModel(QObject *parent)
|
|
: QAbstractListModel(parent)
|
|
{
|
|
connect(this, &LocalDocsModel::rowsInserted, this, &LocalDocsModel::countChanged);
|
|
connect(this, &LocalDocsModel::rowsRemoved, this, &LocalDocsModel::countChanged);
|
|
connect(this, &LocalDocsModel::modelReset, this, &LocalDocsModel::countChanged);
|
|
connect(this, &LocalDocsModel::layoutChanged, this, &LocalDocsModel::countChanged);
|
|
}
|
|
|
|
int LocalDocsModel::rowCount(const QModelIndex &parent) const
|
|
{
|
|
Q_UNUSED(parent);
|
|
return m_collectionList.size();
|
|
}
|
|
|
|
QVariant LocalDocsModel::data(const QModelIndex &index, int role) const
|
|
{
|
|
if (!index.isValid() || index.row() < 0 || index.row() >= m_collectionList.size())
|
|
return QVariant();
|
|
|
|
const CollectionItem item = m_collectionList.at(index.row());
|
|
switch (role) {
|
|
case CollectionRole:
|
|
return item.collection;
|
|
case FolderPathRole:
|
|
return item.folder_path;
|
|
case InstalledRole:
|
|
return item.installed;
|
|
case IndexingRole:
|
|
return item.indexing;
|
|
case ErrorRole:
|
|
return item.error;
|
|
case ForceIndexingRole:
|
|
return item.forceIndexing;
|
|
case CurrentDocsToIndexRole:
|
|
return item.currentDocsToIndex;
|
|
case TotalDocsToIndexRole:
|
|
return item.totalDocsToIndex;
|
|
case CurrentBytesToIndexRole:
|
|
return quint64(item.currentBytesToIndex);
|
|
case TotalBytesToIndexRole:
|
|
return quint64(item.totalBytesToIndex);
|
|
case CurrentEmbeddingsToIndexRole:
|
|
return quint64(item.currentEmbeddingsToIndex);
|
|
case TotalEmbeddingsToIndexRole:
|
|
return quint64(item.totalEmbeddingsToIndex);
|
|
case TotalDocsRole:
|
|
return quint64(item.totalDocs);
|
|
case TotalWordsRole:
|
|
return quint64(item.totalWords);
|
|
case TotalTokensRole:
|
|
return quint64(item.totalTokens);
|
|
case StartUpdateRole:
|
|
return item.startUpdate;
|
|
case LastUpdateRole:
|
|
return item.lastUpdate;
|
|
case FileCurrentlyProcessingRole:
|
|
return item.fileCurrentlyProcessing;
|
|
case EmbeddingModelRole:
|
|
return item.embeddingModel;
|
|
case UpdatingRole:
|
|
return item.indexing || item.currentEmbeddingsToIndex != 0;
|
|
}
|
|
|
|
return QVariant();
|
|
}
|
|
|
|
QHash<int, QByteArray> LocalDocsModel::roleNames() const
|
|
{
|
|
QHash<int, QByteArray> roles;
|
|
roles[CollectionRole] = "collection";
|
|
roles[FolderPathRole] = "folder_path";
|
|
roles[InstalledRole] = "installed";
|
|
roles[IndexingRole] = "indexing";
|
|
roles[ErrorRole] = "error";
|
|
roles[ForceIndexingRole] = "forceIndexing";
|
|
roles[CurrentDocsToIndexRole] = "currentDocsToIndex";
|
|
roles[TotalDocsToIndexRole] = "totalDocsToIndex";
|
|
roles[CurrentBytesToIndexRole] = "currentBytesToIndex";
|
|
roles[TotalBytesToIndexRole] = "totalBytesToIndex";
|
|
roles[CurrentEmbeddingsToIndexRole] = "currentEmbeddingsToIndex";
|
|
roles[TotalEmbeddingsToIndexRole] = "totalEmbeddingsToIndex";
|
|
roles[TotalDocsRole] = "totalDocs";
|
|
roles[TotalWordsRole] = "totalWords";
|
|
roles[TotalTokensRole] = "totalTokens";
|
|
roles[StartUpdateRole] = "startUpdate";
|
|
roles[LastUpdateRole] = "lastUpdate";
|
|
roles[FileCurrentlyProcessingRole] = "fileCurrentlyProcessing";
|
|
roles[EmbeddingModelRole] = "embeddingModel";
|
|
roles[UpdatingRole] = "updating";
|
|
return roles;
|
|
}
|
|
|
|
void LocalDocsModel::updateCollectionItem(const CollectionItem &item)
|
|
{
|
|
for (int i = 0; i < m_collectionList.size(); ++i) {
|
|
CollectionItem &stored = m_collectionList[i];
|
|
if (stored.folder_id != item.folder_id)
|
|
continue;
|
|
|
|
QVector<int> changed;
|
|
if (stored.folder_path != item.folder_path)
|
|
changed.append(FolderPathRole);
|
|
if (stored.installed != item.installed)
|
|
changed.append(InstalledRole);
|
|
if (stored.indexing != item.indexing) {
|
|
changed.append(IndexingRole);
|
|
changed.append(UpdatingRole);
|
|
}
|
|
if (stored.error != item.error)
|
|
changed.append(ErrorRole);
|
|
if (stored.forceIndexing != item.forceIndexing)
|
|
changed.append(ForceIndexingRole);
|
|
if (stored.currentDocsToIndex != item.currentDocsToIndex)
|
|
changed.append(CurrentDocsToIndexRole);
|
|
if (stored.totalDocsToIndex != item.totalDocsToIndex)
|
|
changed.append(TotalDocsToIndexRole);
|
|
if (stored.currentBytesToIndex != item.currentBytesToIndex)
|
|
changed.append(CurrentBytesToIndexRole);
|
|
if (stored.totalBytesToIndex != item.totalBytesToIndex)
|
|
changed.append(TotalBytesToIndexRole);
|
|
if (stored.currentEmbeddingsToIndex != item.currentEmbeddingsToIndex) {
|
|
changed.append(CurrentEmbeddingsToIndexRole);
|
|
changed.append(UpdatingRole);
|
|
}
|
|
if (stored.totalEmbeddingsToIndex != item.totalEmbeddingsToIndex)
|
|
changed.append(TotalEmbeddingsToIndexRole);
|
|
if (stored.totalDocs != item.totalDocs)
|
|
changed.append(TotalDocsRole);
|
|
if (stored.totalWords != item.totalWords)
|
|
changed.append(TotalWordsRole);
|
|
if (stored.totalTokens != item.totalTokens)
|
|
changed.append(TotalTokensRole);
|
|
if (stored.startUpdate != item.startUpdate)
|
|
changed.append(StartUpdateRole);
|
|
if (stored.lastUpdate != item.lastUpdate)
|
|
changed.append(LastUpdateRole);
|
|
if (stored.fileCurrentlyProcessing != item.fileCurrentlyProcessing)
|
|
changed.append(FileCurrentlyProcessingRole);
|
|
if (stored.embeddingModel != item.embeddingModel)
|
|
changed.append(EmbeddingModelRole);
|
|
|
|
// preserve collection name as we ignore it for matching
|
|
QString collection = stored.collection;
|
|
stored = item;
|
|
stored.collection = collection;
|
|
|
|
emit dataChanged(this->index(i), this->index(i), changed);
|
|
|
|
if (changed.contains(UpdatingRole))
|
|
emit updatingChanged(item.collection);
|
|
}
|
|
}
|
|
|
|
void LocalDocsModel::addCollectionItem(const CollectionItem &item)
|
|
{
|
|
beginInsertRows(QModelIndex(), m_collectionList.size(), m_collectionList.size());
|
|
m_collectionList.append(item);
|
|
endInsertRows();
|
|
}
|
|
|
|
void LocalDocsModel::removeCollectionIf(std::function<bool(CollectionItem)> const &predicate)
|
|
{
|
|
for (int i = 0; i < m_collectionList.size();) {
|
|
if (predicate(m_collectionList.at(i))) {
|
|
beginRemoveRows(QModelIndex(), i, i);
|
|
m_collectionList.removeAt(i);
|
|
endRemoveRows();
|
|
|
|
Network::globalInstance()->trackEvent("doc_collection_remove", {
|
|
{"collection_count", m_collectionList.count()},
|
|
});
|
|
} else {
|
|
++i;
|
|
}
|
|
}
|
|
}
|
|
|
|
void LocalDocsModel::removeFolderById(const QString &collection, int folder_id)
|
|
{
|
|
removeCollectionIf([collection, folder_id](const auto &c) {
|
|
return c.collection == collection && c.folder_id == folder_id;
|
|
});
|
|
}
|
|
|
|
void LocalDocsModel::removeCollectionPath(const QString &name, const QString &path)
|
|
{
|
|
removeCollectionIf([&name, &path](const auto &c) { return c.collection == name && c.folder_path == path; });
|
|
}
|
|
|
|
void LocalDocsModel::collectionListUpdated(const QList<CollectionItem> &collectionList)
|
|
{
|
|
beginResetModel();
|
|
m_collectionList = collectionList;
|
|
endResetModel();
|
|
}
|