/usr/include/podofo/base/PdfImmediateWriter.h is in libpodofo-dev 0.9.0-1.2+b2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | /***************************************************************************
* Copyright (C) 2007 by Dominik Seichter *
* domseichter@web.de *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Library General Public License as *
* published by the Free Software Foundation; either version 2 of the *
* License, or (at your option) any later version. *
* *
* This program 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 General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef _PDF_IMMEDIATE_WRITER_H_
#define _PDF_IMMEDIATE_WRITER_H_
#include "PdfDefines.h"
#include "PdfVecObjects.h"
#include "PdfWriter.h"
namespace PoDoFo {
class PdfEncrypt;
class PdfOutputDevice;
class PdfXRef;
class PODOFO_API PdfImmediateWriter : private PdfWriter,
private PdfVecObjects::Observer,
private PdfVecObjects::StreamFactory {
public:
/** Create a new PdfWriter that writes objects with streams immediately to a PdfOutputDevice
*
* This has the advantage that large documents can be created without
* having to keep the whole document in memory.
*
* @param pDevice all stream streams are immediately written to this output device
* while the document is created.
* @param pVecObjects a vector of objects containing the objects which are written to disk
* @param pTrailer the trailer object
* @param eVersion the PDF version of the document to write.
* The PDF version can only be set in the constructor
* as it is the first item written to the document on disk.
* @param pEncrypt pointer to an encryption object or NULL. If not NULL
* the PdfEncrypt object will be copied and used to encrypt the
* created document.
* @param eWriteMode additional options for writing the pdf
*/
PdfImmediateWriter( PdfOutputDevice* pDevice, PdfVecObjects* pVecObjects, const PdfObject* pTrailer,
EPdfVersion eVersion = ePdfVersion_1_5, PdfEncrypt* pEncrypt = NULL,
EPdfWriteMode eWriteMode = ePdfWriteMode_Default );
~PdfImmediateWriter();
/** Get the write mode used for wirting the PDF
* \returns the write mode
*/
inline EPdfWriteMode GetWriteMode() const;
/** Get the PDF version of the document
* The PDF version can only be set in the constructor
* as it is the first item written to the document on disk
*
* \returns EPdfVersion version of the pdf document
*/
inline EPdfVersion GetPdfVersion() const;
private:
void WriteObject( const PdfObject* pObject );
/** Called when the PdfVecObjects we observer is deleted.
*/
void ParentDestructed();
/** Finish the PDF file.
* I.e. write the XRef and close the output device.
*/
void Finish();
/** Called whenever appending to a stream is started.
* \param pStream the stream object the user currently writes to.
*/
void BeginAppendStream( const PdfStream* pStream );
/** Called whenever appending to a stream has ended.
* \param pStream the stream object the user currently writes to.
*/
void EndAppendStream( const PdfStream* pStream );
/** Creates a stream object
*
* \param pParent parent object
*
* \returns a new stream object
*/
PdfStream* CreateStream( PdfObject* pParent );
/** Assume the stream for the last object has
* been written complete.
* Therefore close the stream of the object
* now so that the next object can be written
* to disk
*/
void FinishLastObject();
private:
PdfVecObjects* m_pParent;
PdfOutputDevice* m_pDevice;
PdfXRef* m_pXRef;
PdfObject* m_pLast;
bool m_bOpenStream;
};
// -----------------------------------------------------
//
// -----------------------------------------------------
inline EPdfWriteMode PdfImmediateWriter::GetWriteMode() const
{
return PdfWriter::GetWriteMode();
}
// -----------------------------------------------------
//
// -----------------------------------------------------
inline EPdfVersion PdfImmediateWriter::GetPdfVersion() const
{
return PdfWriter::GetPdfVersion();
}
};
#endif /* _PDF_IMMEDIATE_WRITER_H_ */
|