KFileMetaData::ExtractionResult
#include <KFileMetaData/ExtractionResult>
Public Types | |
enum | Flag { ExtractNothing = 0 , ExtractMetaData = 1 , ExtractPlainText = 2 , ExtractImageData = 4 } |
typedef QFlags< Flag > | Flags |
Public Member Functions | |
ExtractionResult (const ExtractionResult &rhs) | |
ExtractionResult (const QString &url, const QString &mimetype=QString(), const Flags &flags=Flags{ExtractPlainText|ExtractMetaData}) | |
virtual void | add (Property::Property property, const QVariant &value)=0 |
void | addImageData (QMap< EmbeddedImageData::ImageType, QByteArray > &&images) |
virtual void | addType (Type::Type type)=0 |
virtual void | append (const QString &text)=0 |
QMap< EmbeddedImageData::ImageType, QByteArray > | imageData () const |
Flags | inputFlags () const |
QString | inputMimetype () const |
QString | inputUrl () const |
Detailed Description
The ExtractionResult class is where all the data extracted by the indexer is saved.
This class acts as a base class which should be derived from and then passed to the relevant plugins.
The derived class needs to implement 3 pure virtual functions through which it receives the extracted data.
Definition at line 36 of file extractionresult.h.
Member Typedef Documentation
◆ Flags
Stores a combination of Flag values.
Definition at line 51 of file extractionresult.h.
Member Enumeration Documentation
◆ Flag
- See also
- Flags
Enumerator | |
---|---|
ExtractImageData |
|
Definition at line 42 of file extractionresult.h.
Constructor & Destructor Documentation
◆ ExtractionResult() [1/2]
ExtractionResult::ExtractionResult | ( | const QString & | url, |
const QString & | mimetype = QString(), | ||
const Flags & | flags = Flags{ExtractPlainText | ExtractMetaData} ) |
Create an ExtractionResult which can be passed be to Extractors.
The extractors use the url
, mimetype
and flags
in order to determine which file the data should be extracted from and which data should be extracted.
Definition at line 20 of file extractionresult.cpp.
◆ ExtractionResult() [2/2]
ExtractionResult::ExtractionResult | ( | const ExtractionResult & | rhs | ) |
Definition at line 28 of file extractionresult.cpp.
Member Function Documentation
◆ add()
|
pure virtual |
This function is called by the plugins when they wish to add a key value pair which should be indexed.
This function may be called multiple times for the same key.
property
This specifies a property name. It should be one of the properties from the global list of properties.
value
The value of the property
Implemented in KFileMetaData::SimpleExtractionResult.
◆ addImageData()
void ExtractionResult::addImageData | ( | QMap< EmbeddedImageData::ImageType, QByteArray > && | images | ) |
This function is called by the plugins.
images
The images to add
- See also
- EmbeddedImageData
- Since
- 5.76
Definition at line 50 of file extractionresult.cpp.
◆ addType()
|
pure virtual |
This function is called by the plugins.
A type is a higher level classification of the file. A file can have multiple types, but mostly when it does, those types are related. Eg - Document and Presentation.
Please choose one type from the list of available types
Implemented in KFileMetaData::SimpleExtractionResult.
◆ append()
|
pure virtual |
This function is called by plugins when they wish for some plain text to be indexed without any property.
This generally corresponds to the text content in a file
Implemented in KFileMetaData::SimpleExtractionResult.
◆ imageData()
QMap< EmbeddedImageData::ImageType, QByteArray > ExtractionResult::imageData | ( | ) | const |
Return embedded image data.
- See also
- Flags::ExtractImageData
- Since
- 5.76
Definition at line 56 of file extractionresult.cpp.
◆ inputFlags()
ExtractionResult::Flags ExtractionResult::inputFlags | ( | ) | const |
The flags which the extraction plugin should considering following when extracting metadata from the file.
Definition at line 45 of file extractionresult.cpp.
◆ inputMimetype()
QString ExtractionResult::inputMimetype | ( | ) | const |
The input MIME type.
This MIME type should correspond with the MIME types supported with the relevant plugin when it is being passed to the Extractor, or be a subtype thereof.
- See also
- ExtractorCollection::fetchExtractors
- ExtractorPlugin::supportedMimeType
Definition at line 40 of file extractionresult.cpp.
◆ inputUrl()
QString ExtractionResult::inputUrl | ( | ) | const |
The input URL which the plugins will use to locate the file.
Definition at line 35 of file extractionresult.cpp.
The documentation for this class was generated from the following files:
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Nov 29 2024 11:59:05 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.