13#include <QDirIterator>
16#include <QVersionNumber>
22#include <kconfiggroup.h>
23#include <ksharedconfig.h>
24#include <klocalizedstring.h>
64 if (!
storages.contains(storageLocation)) {
65 qWarning() <<
"WARNING: KisResourceLocator: failed to find a storage with location" << storageLocation;
100 if (!
d->resourceLocation.endsWith(
'/'))
d->resourceLocation +=
'/';
102 QFileInfo fi(
d->resourceLocation);
105 if (!QDir().mkpath(
d->resourceLocation)) {
106 d->errorMessages << i18n(
"1. Could not create the resource location at %1.",
d->resourceLocation);
112 if (!fi.isWritable()) {
113 d->errorMessages << i18n(
"2. The resource location at %1 is not writable.",
d->resourceLocation);
119 QFile fi(
d->resourceLocation +
'/' +
"KRITA_RESOURCE_VERSION");
124 fi.open(QFile::ReadOnly);
125 QVersionNumber resource_version = QVersionNumber::fromString(QString::fromUtf8(fi.readAll()));
127 if (krita_version > resource_version) {
153 return d->errorMessages;
158 return d->resourceLocation;
164 QPair<QString, QString> key = QPair<QString, QString> (storageLocation, resourceType +
"/" + filename);
166 return d->resourceCache.contains(key);
171 auto loadResourcesGroup =
173 const QString &resourceGroup) {
184 QBuffer buffer(&data);
185 buffer.open(QBuffer::ReadOnly);
190 qWarning() <<
"Failed to load" << resourceGroup <<
"resource:" << res.
signature();
210 if (
d->tagCache.contains(QPair<QString, QString>(resourceType, tagUrl))) {
211 return d->tagCache[QPair<QString, QString>(resourceType, tagUrl)];
216 if (tag && tag->valid()) {
217 d->tagCache[QPair<QString, QString>(resourceType, tagUrl)] = tag;
226 bool r = query.prepare(
"SELECT tags.id\n"
232 ", resource_types.name as resource_type\n"
233 ", resource_types.id\n"
236 "WHERE tags.resource_type_id = resource_types.id\n"
237 "AND resource_types.name = :resource_type\n"
238 "AND tags.url = :tag_url\n");
241 qWarning() <<
"Could not prepare KisResourceLocator::tagForUrl query" << query.lastError();
245 query.bindValue(
":resource_type", resourceType);
246 query.bindValue(
":tag_url", tagUrl);
250 qWarning() <<
"Could not execute KisResourceLocator::tagForUrl query" << query.lastError() << query.boundValues();
261 int tagId = query.value(
"tags.id").toInt();
262 int resourceTypeId = query.value(
"resource_types.id").toInt();
264 tag->setUrl(query.value(
"url").toString());
265 tag->setResourceType(resourceType);
266 tag->setId(query.value(
"id").toInt());
267 tag->setActive(query.value(
"active").toBool());
268 tag->setName(query.value(
"name").toString());
269 tag->setComment(query.value(
"comment").toString());
270 tag->setFilename(query.value(
"filename").toString());
274 QMap<QString, QString> names;
275 QMap<QString, QString> comments;
277 r = query.prepare(
"SELECT language\n"
280 "FROM tag_translations\n"
281 "WHERE tag_id = :id");
284 qWarning() <<
"Could not prepare KisResourceLocator::tagForUrl translation query" << query.lastError();
287 query.bindValue(
":id", tag->id());
290 qWarning() <<
"Could not execute KisResourceLocator::tagForUrl translation query" << query.lastError();
293 while (query.next()) {
294 names[query.value(0).toString()] = query.value(1).toString();
295 comments[query.value(0).toString()] = query.value(2).toString();
298 tag->setNames(names);
299 tag->setComments(comments);
301 QSqlQuery defaultResourcesQuery;
303 if (!defaultResourcesQuery.prepare(
"SELECT resources.filename\n"
306 "WHERE resource_tags.tag_id = :tag_id\n"
307 "AND resources.resource_type_id = :type_id\n"
308 "AND resource_tags.resource_id = resources.id\n"
309 "AND resource_tags.active = 1\n")) {
310 qWarning() <<
"Could not prepare resource/tag query" << defaultResourcesQuery.lastError();
313 defaultResourcesQuery.bindValue(
":tag_id", tagId);
314 defaultResourcesQuery.bindValue(
":type_id", resourceTypeId);
316 if (!defaultResourcesQuery.exec()) {
317 qWarning() <<
"Could not execute resource/tag query" << defaultResourcesQuery.lastError();
322 while (defaultResourcesQuery.next()) {
323 resourceFileNames << defaultResourcesQuery.value(
"resources.filename").toString();
326 tag->setDefaultResources(resourceFileNames);
336 QPair<QString, QString> key = QPair<QString, QString> (storageLocation, resourceType +
"/" + filename);
339 if (
d->resourceCache.contains(key)) {
348 resource = storage->resource(resourceType +
"/" + filename);
358 qWarning() <<
"KoResourceSP KisResourceLocator::resource" << storageLocation << resourceType << filename <<
"was not found";
362 resource->setStorageLocation(storageLocation);
363 Q_ASSERT(!
resource->storageLocation().isEmpty());
367 if (!q.prepare(
"SELECT resources.id\n"
368 ", versioned_resources.version as version\n"
369 ", versioned_resources.md5sum as md5sum\n"
371 ", resources.status\n"
375 ", versioned_resources\n"
376 "WHERE storages.id = resources.storage_id\n"
377 "AND storages.location = :storage_location\n"
378 "AND resource_types.id = resources.resource_type_id\n"
379 "AND resource_types.name = :resource_type\n"
380 "AND resources.filename = :filename\n"
381 "AND versioned_resources.resource_id = resources.id\n"
382 "AND versioned_resources.version = (SELECT MAX(version) FROM versioned_resources WHERE versioned_resources.resource_id = resources.id)")) {
383 qWarning() <<
"Could not prepare id/version query" << q.lastError();
388 q.bindValue(
":resource_type", resourceType);
389 q.bindValue(
":filename", filename);
392 qWarning() <<
"Could not execute id/version query" << q.lastError() << q.boundValues();
396 qWarning() <<
"Could not find the resource in the database" << storageLocation << resourceType << filename;
399 resource->setResourceId(q.value(0).toInt());
400 Q_ASSERT(
resource->resourceId() >= 0);
402 resource->setVersion(q.value(1).toInt());
405 resource->setMD5Sum(q.value(2).toString());
406 Q_ASSERT(!
resource->md5Sum().isEmpty());
408 resource->setActive(q.value(4).toBool());
411 resource->setName(q.value(3).toString());;
415 qWarning() <<
"Could not find resource" << resourceType +
"/" + filename;
435 d->resourceCache.remove(key);
450 if (!f.open(QFile::ReadOnly)) {
451 qWarning() <<
"Could not open" << fileName <<
"for loading";
455 return importResource(resourceType, fileName, &f, allowOverwrite, storageLocation);
463 QByteArray resourceData = device->readAll();
467 QBuffer buf(&resourceData);
468 buf.open(QBuffer::ReadOnly);
473 qWarning() <<
"Could not import" << fileName <<
": resource doesn't load.";
481 qWarning() <<
"Could not import" << fileName <<
": resource doesn't load.";
486 const QString resourceUrl = resourceType +
"/" +
resource->filename();
488 KoResourceSP existingResource = storage->resource(resourceUrl);
490 if (existingResource) {
491 const QString existingResourceMd5Sum = storage->resourceMd5(resourceUrl);
493 if (!allowOverwrite) {
497 if (existingResourceMd5Sum == md5 &&
498 existingResource->filename() ==
resource->filename()) {
507 int existingResourceId = -1;
510 if (r && existingResourceId > 0) {
515 qWarning() <<
"A resource with the same filename but a different MD5 already exists in the storage" << resourceType << fileName << storageLocation;
516 if (storageLocation ==
"") {
517 qWarning() <<
"Proceeding with overwriting the existing resource...";
522 int existingResourceId = -1;
525 if (r && existingResourceId >= 0) {
528 for (
int i = 0; i < versionsLocations.size(); i++) {
531 r = QFile::remove(fi.filePath());
533 qWarning() <<
"KisResourceLocator::importResourceFromFile: Removal of " << fi.filePath()
534 <<
"was requested, but it wasn't possible, something went wrong.";
537 qWarning() <<
"KisResourceLocator::importResourceFromFile: Removal of " << fi.filePath()
538 <<
"was requested, but it doesn't exist.";
542 qWarning() <<
"KisResourceLocator::importResourceFromFile: Finding all locations for " << existingResourceId <<
"was requested, but it failed.";
546 qWarning() <<
"KisResourceLocator::importResourceFromFile: there is no resource file found in the location of " << storageLocation <<
resource->filename() << resourceType;
563 qWarning() <<
"KisResourceLocator::importResourceFromFile: Removing resource with id " << existingResourceId <<
"completely from the database failed.";
568 qWarning() <<
"KisResourceLocator::importResourceFromFile: Overwriting of the resource was denied, aborting import.";
573 QBuffer buf(&resourceData);
574 buf.open(QBuffer::ReadOnly);
576 if (storage->importResource(resourceUrl, &buf)) {
577 resource = storage->resource(resourceUrl);
580 qWarning() <<
"Could not retrieve imported resource from the storage" << resourceType << fileName << storageLocation;
584 resource->setStorageLocation(storageLocation);
585 resource->setMD5Sum(storage->resourceMd5(resourceUrl));
594 storage->timeStampForResource(resourceType,
resource->filename()),
606 const QPair<QString, QString> key = {absoluteStorageLocation, resourceType +
"/" +
resource->filename()};
618QString findDeduplicatedFileName(
const QString &resourceType,
const QString &proposedFileName,
KisResourceStorageSP storage)
621 auto fileAllowedCallback = [resourceType, storage] (
const QString &fileName) {
622 QString resourceUrl = resourceType +
"/" + fileName;
623 return !storage->resource(resourceUrl);
635 const QString fileName = findDeduplicatedFileName(resourceType, proposedFileName, storage);
636 return importResource(resourceType, fileName, device,
false, storageLocation);
642 if (
resource->filename().isEmpty()) {
651 const QString fileName = findDeduplicatedFileName(resourceType,
resource->filename(), storage);
661 const QString resourceUrl = resourceType +
"/" + QFileInfo(fileName).fileName();
663 KoResourceSP existingResource = storage->resource(resourceUrl);
665 return !existingResource.isNull();
672 const QString resourceUrl =
resource->resourceType().first +
"/" +
resource->filename();
675 return storage->exportResource(resourceUrl, device);
686 if (
resource->filename().isEmpty()) {
695 if (!storage->addResource(
resource)) {
696 qWarning() <<
"Could not add resource" <<
resource->filename() <<
"to the storage" << storageLocation;
700 resource->setStorageLocation(storageLocation);
701 resource->setMD5Sum(storage->resourceMd5(resourceType +
"/" +
resource->filename()));
705 d->resourceCache[QPair<QString, QString>(storageLocation, resourceType +
"/" +
resource->filename())] =
resource;
713 storage->timeStampForResource(resourceType,
resource->filename()),
730 if (!storage->supportsVersioning())
return false;
739 if (!storage->saveAsNewVersion(
resource)) {
740 qWarning() <<
"Failed to save the new version of " <<
resource->name() <<
"to storage" << storageLocation;
744 resource->setMD5Sum(storage->resourceMd5(resourceType +
"/" +
resource->filename()));
750 qWarning() <<
"Failed to add a new version of the resource to the database" <<
resource->name();
755 qWarning() <<
"Failed to update resource metadata" <<
resource;
760 QPair<QString, QString> key = QPair<QString, QString> (storageLocation, resourceType +
"/" +
resource->filename());
770 if (
resource->resourceId() < 0)
return false;
776 if (!storage->loadVersionedResource(
resource)) {
777 qWarning() <<
"Failed to reload the resource" <<
resource->name() <<
"from storage" << storageLocation;
781 resource->setMD5Sum(storage->resourceMd5(resourceType +
"/" +
resource->filename()));
786 QPair<QString, QString> key = QPair<QString, QString> (storageLocation, resourceType +
"/" +
resource->filename());
787 Q_ASSERT(
d->resourceCache[key] ==
resource);
804 QMap<QString, QVariant> metadata;
809 Q_FOREACH(
const QString key, storage->metaDataKeys()) {
810 metadata[key] = storage->metaData(key);
820 Q_FOREACH(
const QString &key, map.keys()) {
821 storage->setMetaData(key, map[key]);
827 Q_FOREACH(
const auto key,
d->resourceCache.keys()) {
828 if (key.first == storageLocation) {
829 d->resourceCache.remove(key);
834 for (
auto it =
d->tagCache.begin(); it !=
d->tagCache.end();) {
835 if (removedTagIds.contains(it.value()->id())) {
836 it =
d->tagCache.erase(it);
845 if (
d->storages.contains(storageLocation)) {
847 qWarning() <<
"could not remove" << storageLocation;
854 int numAddedResources = 0;
857 while (it->hasNext()) {
862 if (numAddedResources > 0) {
863 addedResources << std::make_pair(type, numAddedResources);
867 Q_FOREACH (
const auto &typedResources, addedResources) {
871 d->storages[storageLocation] = storage;
873 d->errorMessages.append(i18n(
"Could not add %1 to the database", storage->location()));
874 qWarning() <<
d->errorMessages;
879 d->errorMessages.append(QString(
"Could not add tags for storage %1 to the cache database").arg(storage->location()));
880 qWarning() <<
d->errorMessages;
884 Q_FOREACH (
const auto &typedResources, addedResources) {
895 if (!
d->storages.contains(storageLocation)) {
903 if (!resources.isEmpty()) {
904 removedResources << std::make_pair(type, resources);
912 removedTags << std::make_pair(type, uniqueTags);
913 allRemovedTagIds << uniqueTags;
916 Q_FOREACH (
const auto &typedResources, removedResources) {
921 Q_UNUSED(removedTags);
923 purge(storageLocation, allRemovedTagIds);
928 d->errorMessages.append(i18n(
"Could not remove storage %1 from the database", storage->location()));
929 qWarning() <<
d->errorMessages;
933 Q_FOREACH (
const auto &typedResources, removedResources) {
944 return d->storages.contains(document);
951 if (!query.prepare(
"SELECT tags.url \n"
952 ", resource_types.name \n"
955 "WHERE tags.resource_type_id = resource_types.id\n"))
957 qWarning() <<
"Could not prepare save tags query" << query.lastError();
962 qWarning() <<
"Could not execute save tags query" << query.lastError();
970 while (query.next()) {
973 query.value(
"resource_types.name").toString());
975 if (!tag || !tag->valid()) {
980 QString filename = tag->filename();
981 if (filename.isEmpty() || QFileInfo(filename).suffix().isEmpty()) {
982 filename = tag->url() +
".tag";
986 if (QFileInfo(filename).suffix() !=
"tag" && QFileInfo(filename).suffix() !=
"TAG") {
989 dbgResources <<
"Skipping saving tag " << tag->name(
false) << filename << tag->resourceType();
993 filename.remove(resourceLocation);
995 QFile f(resourceLocation +
"/" + tag->resourceType() +
'/' + filename);
997 if (!f.open(QFile::WriteOnly)) {
998 qWarning () <<
"Could not open tag file for writing" << f.fileName();
1003 buf.open(QIODevice::WriteOnly);;
1005 if (!tag->save(buf)) {
1006 qWarning() <<
"Could not save tag to" << f.fileName();
1012 f.write(buf.data());
1021 d->tagCache.remove(QPair<QString, QString>(resourceType, tagUrl));
1029 const QString resourceUrl =
resource->resourceType().first +
"/" +
resource->filename();
1031 return storage->resourceFilePath(resourceUrl);
1037 qWarning() << i18n(
"Could not synchronize updated font registry with the database");
1045 Q_EMIT
progressMessage(i18n(
"Krita is running for the first time. Initialization will take some time."));
1046 Q_UNUSED(initializationStatus);
1049 QDir dir(
d->resourceLocation +
'/' + folder +
'/');
1050 if (!dir.exists()) {
1051 if (!QDir().mkpath(
d->resourceLocation +
'/' + folder +
'/')) {
1052 d->errorMessages << i18n(
"3. Could not create the resource location at %1.", dir.path());
1059 QDir dir(installationResourcesLocation +
'/' + folder +
'/');
1061 Q_FOREACH(
const QString &entry, dir.entryList(QDir::Files | QDir::Readable)) {
1062 QFile f(dir.canonicalPath() +
'/'+ entry);
1063 if (!QFileInfo(
d->resourceLocation +
'/' + folder +
'/' + entry).exists()) {
1064 if (!f.copy(
d->resourceLocation +
'/' + folder +
'/' + entry)) {
1065 d->errorMessages << i18n(
"Could not copy resource %1 to %2", f.fileName(),
d->resourceLocation +
'/' + folder +
'/' + entry);
1074 QDirIterator iter(installationResourcesLocation, filters, QDir::Files, QDirIterator::Subdirectories);
1075 while (iter.hasNext()) {
1077 Q_EMIT
progressMessage(i18n(
"Installing the resources from bundle %1.", iter.filePath()));
1078 QFile f(iter.filePath());
1079 Q_ASSERT(f.exists());
1080 if (!f.copy(
d->resourceLocation +
'/' + iter.fileName())) {
1081 d->errorMessages << i18n(
"Could not copy resource %1 to %2", f.fileName(),
d->resourceLocation);
1085 QFile f(
d->resourceLocation +
'/' +
"KRITA_RESOURCE_VERSION");
1086 f.open(QFile::WriteOnly);
1095 d->storages.clear();
1096 d->resourceCache.clear();
1100 Q_ASSERT(storage->location() ==
d->resourceLocation);
1101 d->storages[
d->resourceLocation] = storage;
1116 QDirIterator iter(
d->resourceLocation, filters, QDir::Files, QDirIterator::Subdirectories);
1117 while (iter.hasNext()) {
1120 if (!storage->valid()) {
1122 qWarning() <<
"KisResourceLocator::findStorages: the storage is invalid" << storage->location();
1124 d->storages[storage->location()] = storage;
1135 return d->storages.values();
1141 if (!storage || !storage->valid()) {
1142 qWarning() <<
"Could not retrieve the" << location <<
"storage object or the object is not valid";
1169 bool r = q.prepare(
"SELECT storages.location\n"
1170 ", resource_types.name as resource_type\n"
1171 ", resources.filename\n"
1174 ", resource_types\n"
1175 "WHERE resources.id = :resource_id\n"
1176 "AND resources.storage_id = storages.id\n"
1177 "AND resource_types.id = resources.resource_type_id");
1179 qWarning() <<
"KisResourceLocator::removeResource: could not prepare query." << q.lastError();
1184 q.bindValue(
":resource_id", resourceId);
1188 qWarning() <<
"KisResourceLocator::removeResource: could not execute query." << q.lastError();
1194 QString storageLocation = q.value(
"location").toString();
1195 QString resourceType= q.value(
"resource_type").toString();
1196 QString resourceFilename = q.value(
"filename").toString();
1209 if (storageLocation.isEmpty()) {
1213 if (QFileInfo(storageLocation).isRelative() && (storageLocation.endsWith(
".bundle", Qt::CaseInsensitive)
1214 || storageLocation.endsWith(
".asl", Qt::CaseInsensitive)
1215 || storageLocation.endsWith(
".abr", Qt::CaseInsensitive))) {
1225 return storageLocation;
1232 d->errorMessages.clear();
1243 d->errorMessages.append(i18n(
"Could not synchronize %1 with the database", storage->location()));
1251 d->errorMessages.append(i18n(
"Could not synchronize %1 with the database", storage->location()));
1271 for (
int i = 0; i < model.
rowCount(); i++) {
1272 QModelIndex idx = model.index(i, 0);
1274 storagesToRemove << location;
1277 for (
int i = 0; i < storagesToRemove.size(); i++) {
1278 QString location = storagesToRemove[i];
1279 if (!
d->storages.contains(this->makeStorageLocationAbsolute(location))) {
1282 qWarning() <<
d->errorMessages;
1293 d->resourceCache.clear();
1294 return d->errorMessages.isEmpty();
QList< QString > QStringList
QSharedPointer< KisTag > KisTagSP
static KisResourcesInterfaceSP instance()
static QString mimeTypeForFile(const QString &file, bool checkExistingFiles=true)
Find the mimetype for the given filename. The filename must include a suffix.
static bool addStorage(KisResourceStorageSP storage, bool preinstalled)
static bool addResource(KisResourceStorageSP storage, QDateTime timestamp, KoResourceSP resource, const QString &resourceType)
static bool getAllVersionsLocations(int resourceId, QStringList &outVersionsLocationsList)
static bool addResourceVersion(int resourceId, QDateTime timestamp, KisResourceStorageSP storage, KoResourceSP resource)
addResourceVersion adds a new version of the resource to the database. The resource itself already sh...
static bool removeOrphanedMetaData()
removeOrphanedMetaData Previous versions of Krita never removed metadata, so this function doublechec...
static bool updateMetaDataForId(const QMap< QString, QVariant > map, int id, const QString &tableName)
setMetaDataForId removes all metadata for the given id and table name, and inserts the metadata in th...
static QMap< QString, QVariant > metaDataForId(int id, const QString &tableName)
metaDataForId
static QVector< int > resourcesForStorage(const QString &resourceType, const QString &storageLocation)
static bool getResourceIdFromFilename(QString filename, QString resourceType, QString storageLocation, int &outResourceId)
The function will find the resource only if it is the latest version.
static bool deleteStorage(KisResourceStorageSP storage)
Actually delete the storage and all its resources from the database (i.e., nothing is set to inactive...
static bool setResourceActive(int resourceId, bool active=false)
Make this resource active or inactive; this does not remove the resource from disk or from the databa...
static bool removeResourceCompletely(int resourceId)
static bool addStorageTags(KisResourceStorageSP storage)
static std::pair< QVector< int >, QVector< int > > tagsForStorage(const QString &resourceType, const QString &storageLocation)
static bool getResourceIdFromVersionedFilename(QString filename, QString resourceType, QString storageLocation, int &outResourceId)
Note that here you can put even the original filename - any filename from the versioned_resources - a...
static bool registerResourceType(const QString &resourceType)
registerResourceType registers this resource type in the database
static bool synchronizeStorage(KisResourceStorageSP storage)
static bool registerStorageType(const KisResourceStorage::StorageType storageType)
registerStorageType registers this storage type in the database
The KisResourceLoader class is an abstract interface class that must be implemented by actual resourc...
bool load(KoResourceSP resource, QIODevice &dev, KisResourcesInterfaceSP resourcesInterface)
QStringList executeAllFixups()
static KisResourceLoaderRegistry * instance()
KisResourceLoaderBase * loader(const QString &resourceType, const QString &mimetype) const
QHash< QPair< QString, QString >, KoResourceSP > resourceCache
QMap< QString, KisResourceStorageSP > storages
QMap< QPair< QString, QString >, KisTagSP > tagCache
KisResourceStorageSP safeGetStorage(const QString &storageLocation)
QStringList errorMessages
KisResourceStorageSP folderStorage() const
QMap< QString, QVariant > metaDataForStorage(const QString &storageLocation) const
metaDataForStorage
void progressMessage(const QString &)
LocatorError initialize(const QString &installationResourcesLocation)
initialize Setup the resource locator for use.
QScopedPointer< Private > d
KisTagSP tagForUrl(const QString &tagUrl, const QString resourceType)
tagForUrl create a tag from the database
bool resourceCached(QString storageLocation, const QString &resourceType, const QString &filename) const
KoResourceSP resource(QString storageLocation, const QString &resourceType, const QString &filename)
resource finds a physical resource in one of the storages
KoResourceSP importResource(const QString &resourceType, const QString &fileName, QIODevice *device, const bool allowOverwrite, const QString &storageLocation=QString())
importResource
bool addResource(const QString &resourceType, const KoResourceSP resource, const QString &storageLocation=QString())
addResource adds the given resource to the database and potentially a storage
static const QString resourceLocationKey
void updateFontStorage()
This updates the "fontregistry" storage. Called when the font directories change;.
KisResourceStorageSP fontStorage() const
void endExternalResourceRemove(const QString &resourceType)
Emitted when the locator finished importing the embedded resource.
KisResourceStorageSP storageByLocation(const QString &location) const
void storageRemoved(const QString &location)
Emitted whenever a storage is removed.
bool exportResource(KoResourceSP resource, QIODevice *device)
exportResource
QStringList errorMessages() const
errorMessages
QList< KisResourceStorageSP > storages() const
ResourceStorage getResourceStorage(int resourceId) const
bool updateResource(const QString &resourceType, const KoResourceSP resource)
updateResource
void storageAdded(const QString &location)
Emitted whenever a storage is added.
KoResourceSP importResourceDeduplicateFileName(const QString &resourceType, const QString &proposedFileName, QIODevice *device, const QString &storageLocation=QString())
importResourceDeduplicateFileName imports the resource fith file name deduplication
QString resourceLocationBase() const
resourceLocationBase is the place where all resource storages (folder, bundles etc....
bool removeStorage(const QString &storageLocation)
removeStorage removes the temporary storage from the database
KisResourceStorageSP memoryStorage() const
void storagesBulkSynchronizationFinished()
void purge(const QString &storageLocation, const QVector< int > &removedTagIds)
purge purges the local resource cache
void beginExternalResourceImport(const QString &resourceType, int numResources)
Emitted when the locator needs to add an embedded resource.
bool hasStorage(const QString &storageLocation)
hasStorage can be used to check whether the given storage already exists
void beginExternalResourceRemove(const QString &resourceType, const QVector< int > resourceIds)
Emitted when the locator needs to add an embedded resource.
void loadRequiredResources(KoResourceSP resource)
QString makeStorageLocationRelative(QString location) const
bool reloadResource(const QString &resourceType, const KoResourceSP resource)
Reloads the resource from its persistent storage.
QString makeStorageLocationAbsolute(QString storageLocation) const
bool addStorage(const QString &storageLocation, KisResourceStorageSP storage)
addStorage Adds a new resource storage to the database. The storage is will be marked as not pre-inst...
static void saveTags()
saveTags saves all tags to .tag files in the resource folder
QMap< QString, QVariant > metaDataForResource(int id) const
metaDataForResource
QString filePathForResource(KoResourceSP resource)
bool importWillOverwriteResource(const QString &resourceType, const QString &fileName, const QString &storageLocation=QString()) const
return whether importing will overwrite some existing resource
void setMetaDataForStorage(const QString &storageLocation, QMap< QString, QVariant > map) const
setMetaDataForStorage
bool setMetaDataForResource(int id, QMap< QString, QVariant > map) const
setMetaDataForResource
void endExternalResourceImport(const QString &resourceType)
Emitted when the locator finished importing the embedded resource.
bool setResourceActive(int resourceId, bool active)
setResourceActive
KisResourceLocator(QObject *parent)
static KisTagSP tagForUrlNoCache(const QString &tagUrl, const QString resourceType)
tagForUrlNoCache create a tag from the database, don't use cache
void purgeTag(const QString tagUrl, const QString resourceType)
void storageResynchronized(const QString &storage, bool isBulkResynchronization)
LocatorError firstTimeInstallation(InitializationStatus initializationStatus, const QString &installationResourcesLocation)
bool addResourceDeduplicateFileName(const QString &resourceType, const KoResourceSP resource, const QString &storageLocation)
addResourceDeduplicateFileName imports the resource fith file name deduplication
void resourceActiveStateChanged(const QString &resourceType, int resourceId)
Emitted when a resource changes its active state.
KoResourceSP resourceForId(int resourceId)
resourceForId returns the resource with the given id, or 0 if no such resource exists....
static KisResourceLocator * instance()
KoResourceSP importResourceFromFile(const QString &resourceType, const QString &fileName, const bool allowOverwrite, const QString &storageLocation=QString())
importResourceFromFile
static const QString s_meta_name
void insert(const QString &storageLocation, const QString &resourceType, const QString &filename, const QImage &image)
static KisResourceThumbnailCache * instance()
void remove(const QString &storageLocation, const QString &resourceType, const QString &filename)
int rowCount(const QModelIndex &parent=QModelIndex()) const override
QVariant data(const QModelIndex &index, int role) const override
static KisStoragePluginRegistry * instance()
The KisTag loads a tag from a .tag file. A .tag file is a .desktop file. The following fields are imp...
const KoResourceSignature & signature() const
static QString generateHash(const QString &filename)
generateHash reads the given file and generates a hex-encoded md5sum for the file.
KoResourceSP resource() const noexcept
KoEmbeddedResource embeddedResource() const noexcept
KoResourceSignature signature() const
static QString getAppDataLocation()
A simple wrapper object for the main information about the resource.
#define KIS_SAFE_ASSERT_RECOVER_RETURN_VALUE(cond, val)
#define KIS_SAFE_ASSERT_RECOVER_RETURN(cond)
#define KIS_SAFE_ASSERT_RECOVER_NOOP(cond)
QString deduplicateFileName(const QString &fileName, const QString &separator, std::function< bool(QString)> fileAllowedCallback)
KRITAVERSION_EXPORT QString versionString(bool checkGit=false)