PDBParser.h
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /*
3  * This file is part of the libe-book project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  */
9 
10 #ifndef PDBPARSER_H_INCLUDED
11 #define PDBPARSER_H_INCLUDED
12 
13 #include <memory>
14 
15 #include <librevenge/librevenge.h>
16 #include <librevenge-stream/librevenge-stream.h>
17 
18 #define PDB_CODE(s) ((s[0] << 24) | (s[1] << 16) | (s[2] << 8) | s[3])
19 
20 namespace libebook
21 {
22 
23 struct PDBParserImpl;
24 
25 class PDBParser
26 {
27 // disable copying
28  PDBParser(const PDBParser &other);
29  PDBParser &operator=(const PDBParser &other);
30 
31 public:
32  virtual ~PDBParser() = 0;
33 
38  bool parse();
39 
40 protected:
48  PDBParser(librevenge::RVNGInputStream *input, librevenge::RVNGTextInterface *document,
49  unsigned type, unsigned creator);
50 
55  librevenge::RVNGTextInterface *getDocument() const;
56 
57  const char *getName() const;
58 
67  librevenge::RVNGInputStream *getAppInfoRecord() const;
68 
76  librevenge::RVNGInputStream *getIndexRecord() const;
77 
82  unsigned getDataRecordCount() const;
83 
89  librevenge::RVNGInputStream *getDataRecord(unsigned n) const;
90 
95  librevenge::RVNGInputStream *getDataRecords() const;
96 
104  librevenge::RVNGInputStream *getDataRecords(unsigned first, unsigned last) const;
105 
106 private:
107  virtual void readAppInfoRecord(librevenge::RVNGInputStream *record) = 0;
108  virtual void readSortInfoRecord(librevenge::RVNGInputStream *record) = 0;
109  virtual void readIndexRecord(librevenge::RVNGInputStream *record) = 0;
110  virtual void readDataRecord(librevenge::RVNGInputStream *record, bool last = false) = 0;
111 
112  virtual void readDataRecords();
113 
114  void readHeader();
115 
116  librevenge::RVNGInputStream *getRecordStream(unsigned n) const;
117 
118 private:
119  std::unique_ptr<PDBParserImpl> m_impl;
120 };
121 
122 }
123 
124 #endif // PDBPARSER_H_INCLUDED
125 /* vim:set shiftwidth=2 softtabstop=2 expandtab: */
librevenge::RVNGTextInterface * getDocument() const
Get the document generator used for this parsing run.
Definition: PDBParser.cpp:123
librevenge::RVNGInputStream * getDataRecords() const
Return a stream for all data records.
Definition: PDBParser.cpp:154
void readHeader()
Definition: PDBParser.cpp:192
Definition: EBOOKHTMLToken.h:89
bool parse()
Parse input and produce output to document.
Definition: PDBParser.cpp:102
librevenge::RVNGInputStream * getDataRecord(unsigned n) const
Return a stream for the n-th data record.
Definition: PDBParser.cpp:149
virtual void readSortInfoRecord(librevenge::RVNGInputStream *record)=0
virtual ~PDBParser()=0
Definition: PDBParser.cpp:98
std::unique_ptr< PDBParserImpl > m_impl
Definition: PDBParser.h:119
unsigned getDataRecordCount() const
Return the number of data records in the document.
Definition: PDBParser.cpp:144
librevenge::RVNGInputStream * getAppInfoRecord() const
Return a stream for the format&#39;s appInfo record, if it is present.
Definition: PDBParser.cpp:133
virtual void readIndexRecord(librevenge::RVNGInputStream *record)=0
Definition: EBOOKOPFToken.h:50
PDBParser(const PDBParser &other)
EBOOKDocument::Type type
Definition: EBOOKDocument.cpp:325
const char * getName() const
Definition: PDBParser.cpp:128
Definition: PDBParser.h:25
virtual void readAppInfoRecord(librevenge::RVNGInputStream *record)=0
virtual void readDataRecords()
Definition: PDBParser.cpp:183
XMLTreeNodePtr_t document
Definition: EBOOKHTMLParser.cpp:163
librevenge::RVNGInputStream * getRecordStream(unsigned n) const
Definition: PDBParser.cpp:234
Definition: BBeBCollector.cpp:18
virtual void readDataRecord(librevenge::RVNGInputStream *record, bool last=false)=0
PDBParser & operator=(const PDBParser &other)
librevenge::RVNGInputStream * getIndexRecord() const
Return a stream for the format&#39;s index record.
Definition: PDBParser.cpp:139

Generated for libe-book by doxygen 1.8.14