PDF4QT/PdfTool/pdftoolabstractapplication.h

215 lines
7.8 KiB
C
Raw Normal View History

2020-09-25 18:08:39 +02:00
// Copyright (C) 2020 Jakub Melka
//
// This file is part of PdfForQt.
//
// PdfForQt is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// PdfForQt is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with PDFForQt. If not, see <https://www.gnu.org/licenses/>.
#ifndef PDFTOOLABSTRACTAPPLICATION_H
#define PDFTOOLABSTRACTAPPLICATION_H
2020-09-26 17:10:23 +02:00
#include "pdfoutputformatter.h"
#include "pdfdocument.h"
2020-10-11 18:21:20 +02:00
#include "pdfdocumenttextflow.h"
2020-09-26 17:10:23 +02:00
2020-09-25 18:08:39 +02:00
#include <QtGlobal>
#include <QString>
2020-09-28 19:08:57 +02:00
#include <QDateTime>
2020-09-25 18:08:39 +02:00
#include <QCoreApplication>
#include <vector>
class QCommandLineParser;
namespace pdftool
{
struct PDFToolTranslationContext
{
Q_DECLARE_TR_FUNCTIONS(PDFToolTranslationContext)
};
struct PDFToolOptions
{
// For option 'ConsoleFormat'
PDFOutputFormatter::Style outputStyle = PDFOutputFormatter::Style::Text;
2020-10-17 16:56:39 +02:00
QString outputCodec = "UTF-8";
2020-10-04 16:56:55 +02:00
// For option 'DateFormat'
Qt::DateFormat outputDateFormat = Qt::DefaultLocaleShortDate;
// For option 'OpenDocument'
2020-09-25 18:08:39 +02:00
QString document;
QString password;
bool permissiveReading = true;
// For option 'SignatureVerification'
bool verificationUseUserCertificates = true;
bool verificationUseSystemCertificates = true;
bool verificationOmitCertificateCheck = false;
bool verificationPrintCertificateDetails = false;
bool verificationIgnoreExpirationDate = false;
// For option 'XMLExport'
2020-10-01 13:27:45 +02:00
bool xmlExportStreams = false;
bool xmlExportStreamsAsText = false;
2020-10-01 13:27:45 +02:00
bool xmlUseIndent = false;
bool xmlAlwaysBinaryStrings = false;
2020-10-02 15:14:45 +02:00
// For option 'Attachments'
QString attachmentsSaveNumber;
QString attachmentsSaveFileName;
QString attachmentsOutputDirectory;
QString attachmentsTargetFile;
bool attachmentsSaveAll = false;
2020-10-04 16:56:55 +02:00
// For option 'ComputeHashes'
bool computeHashes = false;
2020-10-05 19:50:04 +02:00
// For option 'PageSelector'
QString pageSelectorFirstPage;
QString pageSelectorLastPage;
QString pageSelectorSelection;
2020-10-11 18:21:20 +02:00
// For option 'TextAnalysis'
pdf::PDFDocumentTextFlowFactory::Algorithm textAnalysisAlgorithm = pdf::PDFDocumentTextFlowFactory::Algorithm::Auto;
2020-10-18 12:57:27 +02:00
// For option 'TextShow'
bool textShowPageNumbers = false;
bool textShowStructTitles = false;
bool textShowStructLanguage = false;
bool textShowStructAlternativeDescription = false;
bool textShowStructExpandedForm = false;
bool textShowStructActualText = false;
bool textShowStructPhoneme = false;
2020-10-19 18:51:30 +02:00
// For option 'VoiceSelector'
QString textVoiceName;
QString textVoiceGender;
QString textVoiceAge;
QString textVoiceLangCode;
// For option 'TextSpeech'
bool textSpeechMarkPageNumbers = false;
bool textSpeechSayPageNumbers = false;
bool textSpeechSayStructTitles = false;
bool textSpeechSayStructAlternativeDescription = false;
bool textSpeechSayStructExpandedForm = false;
bool textSpeechSayStructActualText = false;
2020-10-05 19:50:04 +02:00
/// Returns page range. If page range is invalid, then \p errorMessage is empty.
2020-10-07 18:57:34 +02:00
/// \param pageCount Page count
/// \param[out] errorMessage Error message
/// \param zeroBased Convert to zero based page range?
std::vector<pdf::PDFInteger> getPageRange(pdf::PDFInteger pageCount, QString& errorMessage, bool zeroBased) const;
2020-09-25 18:08:39 +02:00
};
/// Base class for all applications
class PDFToolAbstractApplication
{
public:
explicit PDFToolAbstractApplication(bool isDefault = false);
virtual ~PDFToolAbstractApplication() = default;
2020-09-26 17:10:23 +02:00
enum ExitCodes
{
ExitSuccess = EXIT_SUCCESS,
2020-10-05 19:50:04 +02:00
ExitFailure = EXIT_FAILURE,
ErrorNoDocumentSpecified,
2020-10-02 15:14:45 +02:00
ErrorDocumentReading,
ErrorInvalidArguments,
2020-10-18 12:57:27 +02:00
ErrorFailedWriteToFile,
2020-10-18 17:49:16 +02:00
ErrorPermissions,
2020-10-21 18:32:04 +02:00
ErrorNoText,
2020-10-18 17:49:16 +02:00
ErrorCOM,
ErrorSAPI
2020-09-26 17:10:23 +02:00
};
2020-09-25 18:08:39 +02:00
enum StandardString
{
Command, ///< Command, by which is this application invoked
Name, ///< Name of application
Description ///< Description (what this application does)
};
2020-09-26 17:10:23 +02:00
enum Option
{
ConsoleFormat = 0x0001, ///< Set format of console output (text, xml or html)
OpenDocument = 0x0002, ///< Flags for document reading
SignatureVerification = 0x0004, ///< Flags for signature verification,
XmlExport = 0x0008, ///< Flags for xml export
2020-10-02 15:14:45 +02:00
Attachments = 0x0010, ///< Flags for attachments manipulating
2020-10-04 16:56:55 +02:00
DateFormat = 0x0020, ///< Date format
ComputeHashes = 0x0040, ///< Compute hashes
2020-10-05 19:50:04 +02:00
PageSelector = 0x0080, ///< Select page range (or all pages)
2020-10-11 18:21:20 +02:00
TextAnalysis = 0x0100, ///< Text analysis options
2020-10-18 12:57:27 +02:00
TextShow = 0x0200, ///< Text extract and show options
2020-10-19 18:51:30 +02:00
VoiceSelector = 0x0400, ///< Select voice from SAPI
TextSpeech = 0x0800, ///< Text speech options
2020-09-26 17:10:23 +02:00
};
Q_DECLARE_FLAGS(Options, Option)
2020-09-25 18:08:39 +02:00
virtual QString getStandardString(StandardString standardString) const = 0;
virtual int execute(const PDFToolOptions& options) = 0;
2020-09-26 17:10:23 +02:00
virtual Options getOptionsFlags() const = 0;
2020-09-25 18:08:39 +02:00
void initializeCommandLineParser(QCommandLineParser* parser) const;
PDFToolOptions getOptions(QCommandLineParser* parser) const;
2020-10-04 16:56:55 +02:00
protected:
/// Tries to read the document. If document is successfully read, true is returned,
/// if error occurs, then false is returned. Optionally, original document content
/// can also be retrieved.
/// \param options Options
/// \param document Document
/// \param[out] sourceData Pointer, to which source data are stored
bool readDocument(const PDFToolOptions& options, pdf::PDFDocument& document, QByteArray* sourceData = nullptr);
2020-09-25 18:08:39 +02:00
};
/// This class stores information about all applications available. Application
/// can be selected by command string. Also, default application is available.
class PDFToolApplicationStorage
{
public:
/// Returns application by command. If application for given command is not found,
/// then nullptr is returned.
/// \param command Command
/// \returns Application for given command or nullptr
static PDFToolAbstractApplication* getApplicationByCommand(const QString& command);
/// Registers application to the application storage. If \p isDefault
/// is set to true, application is registered as default application.
/// \param application Apllication
/// \param isDefault Is default application?
static void registerApplication(PDFToolAbstractApplication* application, bool isDefault = false);
/// Returns default application
/// \returns Default application
static PDFToolAbstractApplication* getDefaultApplication();
2020-09-26 17:10:23 +02:00
/// Returns a list of available applications
static const std::vector<PDFToolAbstractApplication*>& getApplications();
2020-09-25 18:08:39 +02:00
private:
PDFToolApplicationStorage() = default;
static PDFToolApplicationStorage* getInstance();
std::vector<PDFToolAbstractApplication*> m_applications;
PDFToolAbstractApplication* m_defaultApplication = nullptr;
};
} // namespace pdftool
#endif // PDFTOOLABSTRACTAPPLICATION_H