digiKam
|
Public Types | |
enum | DeactivatingMode { FlushSignals , KeepSignals , PhaseOut } |
enum | State { Inactive , Scheduled , Running , Deactivating } |
Public Slots | |
void | deactivate (DeactivatingMode mode=FlushSignals) |
void | schedule () |
Signals | |
void | finished () |
void | imageChangeFailed (const QString &message, const QStringList &fileNames) |
void | imageDataChanged (const QString &path, bool removeThumbnails, bool notifyCache) |
void | started () |
Public Member Functions | |
bool | connectAndSchedule (const QObject *sender, const char *signal, const char *method, Qt::ConnectionType type=Qt::AutoConnection) const |
FileActionMngrFileWorker (FileActionMngr::Private *const dd) | |
QThread::Priority | priority () const |
void | setPriority (QThread::Priority priority) |
State | state () const |
void | transform (const FileActionItemInfoList &infos, int orientation) override |
void | wait () |
void | writeMetadata (const FileActionItemInfoList &infos, int flags) override |
void | writeMetadataToFiles (const FileActionItemInfoList &infos) override |
void | writeOrientationToFiles (const FileActionItemInfoList &infos, int orientation) override |
Static Public Member Functions | |
static bool | connectAndSchedule (const QObject *sender, const char *signal, const WorkerObject *receiver, const char *method, Qt::ConnectionType type=Qt::AutoConnection) |
static bool | disconnectAndSchedule (const QObject *sender, const char *signal, const WorkerObject *receiver, const char *method) |
Protected Member Functions | |
virtual void | aboutToDeactivate () |
virtual void | aboutToQuitLoop () |
void | addRunnable (WorkerObjectRunnable *loop) |
bool | event (QEvent *e) override |
void | removeRunnable (WorkerObjectRunnable *loop) |
void | run () |
void | setEventLoop (QEventLoop *loop) |
void | shutDown () |
void | transitionToInactive () |
bool | transitionToRunning () |
|
inherited |
|
inherited |
|
inlineexplicit |
|
protectedvirtualinherited |
Called from deactivate(), typically from a different thread than the worker thread, possibly the UI thread. You can stop any extra controlled threads here. Immediately afterwards, an event will be sent to the working thread which will cause the event loop to quit. (aboutToQuitLoop())
Reimplemented in Digikam::TrainerWorker, and Digikam::RecognitionWorker.
Referenced by Digikam::WorkerObject::deactivate().
|
protectedvirtualinherited |
Called from within thread's event loop to quit processing. Quit any blocking operation. Immediately afterwards, the event loop will be quit.
Referenced by Digikam::WorkerObject::event().
|
protectedinherited |
|
inherited |
You must normally call schedule() to ensure that the object is active when you send a signal with work data. Instead, you can use these connect() methods when connecting your signal to this object, the signal that carries work data. Then the object will be scheduled each time you emit the signal.
References Digikam::WorkerObject::schedule().
Referenced by Digikam::FileActionMngr::Private::connectToDatabaseWorker().
|
staticinherited |
References Digikam::WorkerObject::schedule().
|
slotinherited |
Quits execution of this worker object. If mode is FlushSignals, all already emitted signals will be cleared. If mode is KeepSignals, already emitted signals are not cleared and will be kept in the event queue until destruction or schedule() is called. If mode is PhaseOut, already emitted signals will be processed and the thread quit immediately afterwards.
References Digikam::WorkerObject::aboutToDeactivate(), Digikam::WorkerObject::Deactivating, Digikam::WorkerObject::FlushSignals, Digikam::WorkerObject::Inactive, Digikam::WorkerObject::KeepSignals, Digikam::WorkerObject::Running, and Digikam::WorkerObject::Scheduled.
Referenced by Digikam::FileActionMngr::shutDown(), Digikam::WorkerObject::shutDown(), and Digikam::FacePipeline::Private::stop().
|
staticinherited |
References Digikam::WorkerObject::schedule().
|
overrideprotectedinherited |
References Digikam::WorkerObject::aboutToQuitLoop().
|
signalinherited |
|
signalinherited |
Referenced by transform(), and writeOrientationToFiles().
|
signalinherited |
Referenced by transform(), and writeOrientationToFiles().
|
inherited |
Referenced by Digikam::WorkerObject::setPriority().
|
protectedinherited |
|
protectedinherited |
|
slotinherited |
Starts execution of this worker object: The object is moved to a thread and an event loop started, so that queued signals will be received.
References Digikam::WorkerObject::Deactivating, Digikam::WorkerObject::Inactive, Digikam::ThreadManager::instance(), Digikam::WorkerObject::Running, Digikam::ThreadManager::schedule(), and Digikam::WorkerObject::Scheduled.
Referenced by Digikam::WorkerObject::connectAndSchedule(), Digikam::WorkerObject::disconnectAndSchedule(), Digikam::ParallelWorkers::replacementStaticQtMetacall(), and Digikam::FacePipeline::Private::start().
|
protectedinherited |
|
inherited |
Sets the priority for this dynamic thread. Can be set anytime. If the thread is currently not running, the priority will be set when it is run next time. When you set QThread::InheritPriority (default), the priority is not changed but inherited from the thread pool.
References Digikam::WorkerObject::priority(), and Digikam::WorkerObject::Running.
Referenced by Digikam::FacePipeline::Private::applyPriority().
|
protectedinherited |
If you are deleting data in your destructor which is accessed from the thread, do one of the following from your destructor to guarantee a safe shutdown: 1) Call this method 2) Call stop() and wait(), knowing that nothing will call start() anymore after this 3) Be sure the thread will never be running at destruction. Note: This irrevocably stops this object. Note: It is not sufficient that your parent class does this. Calling this method, or providing one of the above mentioned equivalent guarantees, must be done by every single last class in the hierarchy with an implemented destructor deleting data. (the base class destructor is always called after the derived class)
References Digikam::WorkerObject::deactivate(), Digikam::WorkerObject::PhaseOut, and Digikam::WorkerObject::wait().
Referenced by Digikam::WorkerObject::~WorkerObject().
|
signalinherited |
|
inherited |
Referenced by Digikam::FileActionMngrDatabaseWorker::applyMetadata(), Digikam::FileActionMngrDatabaseWorker::assignColorLabel(), Digikam::FileActionMngrDatabaseWorker::assignPickLabel(), Digikam::FileActionMngrDatabaseWorker::assignRating(), Digikam::FileActionMngrDatabaseWorker::copyAttributes(), Digikam::FileActionMngrDatabaseWorker::editGroup(), Digikam::FileActionMngrDatabaseWorker::setExifOrientation(), transform(), writeMetadata(), writeMetadataToFiles(), and writeOrientationToFiles().
|
overridevirtual |
Reimplemented from Digikam::FileWorkerInterface.
References Digikam::JPEGUtils::JpegRotator::autoExifTransform(), Digikam::WorkerObject::Deactivating, Digikam::DImg::detectedFormat(), Digikam::ItemInfo::dimensions(), Digikam::MetaEngineRotation::exifOrientation(), Digikam::JPEGUtils::JpegRotator::exifTransform(), Digikam::DImg::fileFormat(), Digikam::ItemAttributesWatch::fileMetadataChanged(), Digikam::ItemInfo::filePath(), Digikam::ItemInfo::fileUrl(), Digikam::FileActionItemInfoList::finishedWriting(), Digikam::ItemInfo::format(), Digikam::DImg::format(), Digikam::DImg::HEIF, Digikam::FileWorkerInterface::imageChangeFailed(), Digikam::FileWorkerInterface::imageDataChanged(), Digikam::ItemAttributesWatch::instance(), Digikam::ScanController::instance(), Digikam::MetaEngineSettings::instance(), Digikam::JPEGUtils::isJpegImage(), Digikam::DImg::JP2K, Digikam::DImg::JPEG, Digikam::MetadataHub::load(), Digikam::DImg::load(), Digikam::MetadataHub::loadFaceTags(), Digikam::Matrix::matrix(), Digikam::ItemInfo::name(), Digikam::CollectionScanner::NormalScan, Digikam::MetaEngineRotation::NoTransformation, Digikam::ItemInfo::orientation(), Digikam::MetaEngine::ORIENTATION_NORMAL, Digikam::DImg::PGF, Digikam::DImg::PNG, Digikam::DImg::prepareMetadataToSave(), Digikam::ScanController::resumeCollectionScan(), Digikam::DImg::rotateAndFlip(), Digikam::MetaEngineSettingsContainer::RotateByLossyRotation, Digikam::MetaEngineSettingsContainer::RotateByMetadataFlag, Digikam::FaceUtils::rotateFaces(), Digikam::MetaEngineSettingsContainer::RotatingPixels, Digikam::MetaEngineSettingsContainer::rotationBehavior, Digikam::DImg::save(), Digikam::CollectionScanner::scanFile(), Digikam::JPEGUtils::JpegRotator::setCurrentOrientation(), Digikam::ItemInfo::setOrientation(), Digikam::MetaEngineSettings::settings(), Digikam::FileActionMngr::Private::startingToWrite(), Digikam::WorkerObject::state(), Digikam::ScanController::suspendCollectionScan(), Digikam::DImg::TIFF, Digikam::DImg::transform(), Digikam::MetadataHub::write(), Digikam::MetadataHub::WRITE_TAGS, and Digikam::FileActionItemInfoList::writtenToOne().
|
protectedinherited |
|
protectedinherited |
|
inherited |
References Digikam::WorkerObject::Inactive.
Referenced by Digikam::FileActionMngr::shutDown(), Digikam::WorkerObject::shutDown(), Digikam::FacePipeline::Private::wait(), Digikam::DetectionWorker::~DetectionWorker(), Digikam::RecognitionWorker::~RecognitionWorker(), and Digikam::TrainerWorker::~TrainerWorker().
|
overridevirtual |
Reimplemented from Digikam::FileWorkerInterface.
References Digikam::ScanController::FileMetadataWrite::changed(), Digikam::WorkerObject::Deactivating, Digikam::FileActionItemInfoList::finishedWriting(), Digikam::ScanController::instance(), Digikam::MetaEngineSettings::instance(), Digikam::MetadataHub::load(), Digikam::ScanController::resumeCollectionScan(), Digikam::FileActionMngr::Private::startingToWrite(), Digikam::WorkerObject::state(), Digikam::ScanController::suspendCollectionScan(), Digikam::MetadataHub::writeToMetadata(), and Digikam::FileActionItemInfoList::writtenToOne().
|
overridevirtual |
Reimplemented from Digikam::FileWorkerInterface.
References Digikam::ScanController::FileMetadataWrite::changed(), Digikam::WorkerObject::Deactivating, Digikam::ItemInfo::filePath(), Digikam::FileActionItemInfoList::finishedWriting(), Digikam::ScanController::instance(), Digikam::MetaEngineSettings::instance(), Digikam::MetadataHub::load(), Digikam::ScanController::resumeCollectionScan(), Digikam::FileActionMngr::Private::startingToWrite(), Digikam::WorkerObject::state(), Digikam::ScanController::suspendCollectionScan(), Digikam::MetadataHub::write(), Digikam::MetadataHub::WRITE_ALL, and Digikam::FileActionItemInfoList::writtenToOne().
|
overridevirtual |
Reimplemented from Digikam::FileWorkerInterface.
References Digikam::WorkerObject::Deactivating, Digikam::ItemAttributesWatch::fileMetadataChanged(), Digikam::ItemInfo::filePath(), Digikam::FileActionItemInfoList::finishedWriting(), Digikam::FileWorkerInterface::imageChangeFailed(), Digikam::FileWorkerInterface::imageDataChanged(), Digikam::ItemAttributesWatch::instance(), Digikam::ItemInfo::name(), Digikam::WorkerObject::state(), and Digikam::FileActionItemInfoList::writtenToOne().