1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
#ifndef GENERICEXPORTPLUGIN_H
#define GENERICEXPORTPLUGIN_H
#include "exportplugin.h"
#include "genericplugin.h"
class API_EXPORT GenericExportPlugin : virtual public GenericPlugin, public ExportPlugin
{
Q_OBJECT
public:
bool initBeforeExport(Db* db, QIODevice* output, const ExportManager::StandardExportConfig& config);
ExportManager::ExportModes getSupportedModes() const;
ExportManager::ExportProviderFlags getProviderFlags() const;
QString getExportConfigFormName() const;
CfgMain* getConfig();
QString getConfigFormName(ExportManager::ExportMode exportMode) const;
QString getMimeType() const;
QString getDefaultEncoding() const;
bool isBinaryData() const;
void setExportMode(ExportManager::ExportMode exportMode);
bool afterExportQueryResults();
bool afterExportTable();
bool beforeExportTables();
bool afterExportTables();
bool beforeExportIndexes();
bool afterExportIndexes();
bool beforeExportTriggers();
bool afterExportTriggers();
bool beforeExportViews();
bool afterExportViews();
bool afterExportDatabase();
bool afterExport();
void cleanupAfterExport();
/**
* @brief Does the initial entry in the export.
* @return true for success, or false in case of a fatal error.
*
* Use it to write the header, or something like that. Default implementation does nothing.
* This is called from initBeforeExport(), after exportMode and other settings are already prepared.
*/
virtual bool beforeExport();
protected:
virtual bool initBeforeExport();
void write(const QString& str);
void writeln(const QString& str);
bool isTableExport() const;
Db* db = nullptr;
QIODevice* output = nullptr;
const ExportManager::StandardExportConfig* config = nullptr;
QTextCodec* codec = nullptr;
ExportManager::ExportMode exportMode = ExportManager::UNDEFINED;
};
#endif // GENERICEXPORTPLUGIN_H
|