2020-12-26 16:13:00 +00:00
|
|
|
#include <qpdf/QPDF.hh>
|
|
|
|
#include <qpdf/QPDFStreamFilter.hh>
|
2022-04-02 21:14:10 +00:00
|
|
|
#include <qpdf/QPDFWriter.hh>
|
|
|
|
#include <qpdf/QUtil.hh>
|
2020-12-26 16:13:00 +00:00
|
|
|
|
|
|
|
#include <cstring>
|
|
|
|
#include <exception>
|
|
|
|
#include <iostream>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
// This example shows you everything you need to know to implement a
|
|
|
|
// custom stream filter for encoding and decoding as well as a stream
|
|
|
|
// data provider that modifies the stream's dictionary. This example
|
|
|
|
// uses the pattern of having the stream data provider class use a
|
|
|
|
// second QPDF instance with copies of streams from the original QPDF
|
|
|
|
// so that the stream data provider can access the original stream
|
2022-02-02 14:31:33 +00:00
|
|
|
// data. This is implemented very efficiently inside the qpdf library as
|
2020-12-26 16:13:00 +00:00
|
|
|
// the second QPDF instance knows how to read the stream data from the
|
|
|
|
// original input file, so no extra copies of the original stream data
|
|
|
|
// are made.
|
|
|
|
|
|
|
|
// This example creates an imaginary filter called /XORDecode. There
|
|
|
|
// is no such filter in PDF, so the streams created by the example
|
|
|
|
// would not be usable by any PDF reader. However, the techniques here
|
|
|
|
// would work if you were going to implement support for a filter that
|
2021-01-04 21:09:33 +00:00
|
|
|
// qpdf does not support natively. For example, using the techniques
|
2020-12-26 16:13:00 +00:00
|
|
|
// shown here, it would be possible to create an application that
|
|
|
|
// downsampled or re-encoded images or that re-compressed streams
|
|
|
|
// using a more efficient "deflate" implementation than zlib.
|
|
|
|
|
|
|
|
// Comments appear throughout the code describing each piece of code
|
|
|
|
// and its purpose. You can read the file top to bottom, or you can
|
|
|
|
// start with main() and follow the flow.
|
|
|
|
|
|
|
|
// Please also see the test suite, qtest/custom-filter.test, which
|
|
|
|
// contains additional comments describing how to observe the results
|
|
|
|
// of running this example on test files that are specifically crafted
|
|
|
|
// for it.
|
|
|
|
|
2022-07-26 11:37:50 +00:00
|
|
|
static char const* whoami = nullptr;
|
2020-12-26 16:13:00 +00:00
|
|
|
|
|
|
|
class Pl_XOR: public Pipeline
|
|
|
|
{
|
|
|
|
// This class implements a Pipeline for the made-up XOR decoder.
|
|
|
|
// It is initialized with a single-byte "key" and just XORs each
|
|
|
|
// byte with that key. This makes it reversible, so there is no
|
|
|
|
// distinction between encoding and decoding.
|
|
|
|
|
|
|
|
public:
|
|
|
|
Pl_XOR(char const* identifier, Pipeline* next, unsigned char key);
|
|
|
|
virtual ~Pl_XOR() = default;
|
2022-05-03 21:43:07 +00:00
|
|
|
virtual void write(unsigned char const* data, size_t len) override;
|
2020-12-26 16:13:00 +00:00
|
|
|
virtual void finish() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
unsigned char key;
|
|
|
|
};
|
|
|
|
|
|
|
|
Pl_XOR::Pl_XOR(char const* identifier, Pipeline* next, unsigned char key) :
|
|
|
|
Pipeline(identifier, next),
|
|
|
|
key(key)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2022-05-03 21:43:07 +00:00
|
|
|
Pl_XOR::write(unsigned char const* data, size_t len)
|
2020-12-26 16:13:00 +00:00
|
|
|
{
|
2022-04-02 21:14:10 +00:00
|
|
|
for (size_t i = 0; i < len; ++i) {
|
2020-12-26 16:13:00 +00:00
|
|
|
unsigned char p = data[i] ^ this->key;
|
|
|
|
getNext()->write(&p, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Pl_XOR::finish()
|
|
|
|
{
|
|
|
|
getNext()->finish();
|
|
|
|
}
|
|
|
|
|
|
|
|
class SF_XORDecode: public QPDFStreamFilter
|
|
|
|
{
|
|
|
|
// This class implements a QPDFStreamFilter that knows how to
|
|
|
|
// validate and interpret decode parameters (/DecodeParms) for the
|
|
|
|
// made-up /XORDecode stream filter. Since this is not a real
|
|
|
|
// stream filter, no actual PDF reader would know how to interpret
|
2021-01-04 21:09:33 +00:00
|
|
|
// it. This is just to illustrate how to create a stream filter.
|
2020-12-26 16:13:00 +00:00
|
|
|
// In main(), we call QPDF::registerStreamFilter to tell the
|
|
|
|
// library about the filter. See comments in QPDFStreamFilter.hh
|
|
|
|
// for details on how to implement the methods. For purposes of
|
|
|
|
// example, we are calling this a "specialized" compression
|
|
|
|
// filter, which just means QPDF assumes that it should not
|
|
|
|
// "uncompress" the stream by default.
|
|
|
|
public:
|
|
|
|
virtual ~SF_XORDecode() = default;
|
|
|
|
virtual bool setDecodeParms(QPDFObjectHandle decode_parms) override;
|
|
|
|
virtual Pipeline* getDecodePipeline(Pipeline* next) override;
|
|
|
|
virtual bool isSpecializedCompression() override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
unsigned char key;
|
|
|
|
// It is the responsibility of the QPDFStreamFilter implementation
|
|
|
|
// to ensure that the pipeline returned by getDecodePipeline() is
|
|
|
|
// deleted when the class is deleted. The easiest way to do this
|
|
|
|
// is to stash the pipeline in a std::shared_ptr, which enables us
|
|
|
|
// to use the default destructor implementation.
|
|
|
|
std::shared_ptr<Pl_XOR> pipeline;
|
|
|
|
};
|
|
|
|
|
|
|
|
bool
|
|
|
|
SF_XORDecode::setDecodeParms(QPDFObjectHandle decode_parms)
|
|
|
|
{
|
|
|
|
// For purposes of example, we store the key in a separate stream.
|
|
|
|
// We could just as well store the key directly in /DecodeParms,
|
|
|
|
// but this example uses a stream to illustrate how one might do
|
|
|
|
// that. For example, if implementing /JBIG2Decode, one would need
|
|
|
|
// to handle the /JBIG2Globals key, which points to a stream. See
|
|
|
|
// comments in SF_XORDecode::registerStream for additional notes
|
|
|
|
// on this.
|
2022-04-02 21:14:10 +00:00
|
|
|
try {
|
2020-12-26 16:13:00 +00:00
|
|
|
// Expect /DecodeParms to be a dictionary with a /KeyStream
|
|
|
|
// key that points to a one-byte stream whose single byte is
|
|
|
|
// the key. If we are successful at retrieving the key, return
|
|
|
|
// true, indicating that we are able to process with the given
|
|
|
|
// decode parameters. Under any other circumstances, return
|
|
|
|
// false. For other examples of QPDFStreamFilter
|
|
|
|
// implementations, look at the classes whose names start with
|
|
|
|
// SF_ in the qpdf library implementation.
|
|
|
|
auto buf = decode_parms.getKey("/KeyStream").getStreamData();
|
2022-04-02 21:14:10 +00:00
|
|
|
if (buf->getSize() != 1) {
|
2020-12-26 16:13:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
this->key = buf->getBuffer()[0];
|
|
|
|
return true;
|
2022-04-02 21:14:10 +00:00
|
|
|
} catch (std::exception& e) {
|
|
|
|
std::cerr << "Error extracting key for /XORDecode: " << e.what()
|
|
|
|
<< std::endl;
|
2020-12-26 16:13:00 +00:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Pipeline*
|
|
|
|
SF_XORDecode::getDecodePipeline(Pipeline* next)
|
|
|
|
{
|
|
|
|
// Return a pipeline that the qpdf library should pass the stream
|
|
|
|
// data through. The pipeline should receive encoded data and pass
|
|
|
|
// decoded data to "next". getDecodePipeline() can always count on
|
|
|
|
// setDecodeParms() having been called first. The setDecodeParms()
|
|
|
|
// method should store any parameters needed by the pipeline. To
|
|
|
|
// ensure that the pipeline we return disappears when the class
|
|
|
|
// disappears, stash it in a std::shared_ptr<Pl_XOR> and retrieve
|
|
|
|
// the raw pointer from there.
|
|
|
|
this->pipeline = std::make_shared<Pl_XOR>("xor", next, this->key);
|
|
|
|
return this->pipeline.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
SF_XORDecode::isSpecializedCompression()
|
|
|
|
{
|
|
|
|
// The default implementation of QPDFStreamFilter would return
|
|
|
|
// false, so if you want a specialized or lossy compression
|
|
|
|
// filter, override one of the methods as described in
|
|
|
|
// QPDFStreamFilter.hh.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
class StreamReplacer: public QPDFObjectHandle::StreamDataProvider
|
|
|
|
{
|
|
|
|
// This class implements a StreamDataProvider that, under specific
|
|
|
|
// conditions, replaces the stream data with data encoded with the
|
|
|
|
// made-up /XORDecode filter.
|
|
|
|
|
|
|
|
// The flow for this class is as follows:
|
|
|
|
//
|
|
|
|
// * The main application iterates through streams that should be
|
|
|
|
// replaced and calls registerStream. registerStream in turn
|
|
|
|
// calls maybeReplace passing nullptr to pipeline and the
|
|
|
|
// address of a valid QPDFObjectHandle to dict_updates. The
|
|
|
|
// stream passed in for this call is the stream for the original
|
|
|
|
// QPDF object. It has not yet been altered, so we have access
|
|
|
|
// to its original dictionary and data. As described in the
|
|
|
|
// method, the method when called in this way makes a
|
|
|
|
// determination as to whether the stream should be replaced. If
|
|
|
|
// so, registerStream makes whatever changes are required. We
|
|
|
|
// have to do this now because we can't modify the stream during
|
|
|
|
// the writing process.
|
|
|
|
//
|
|
|
|
// * provideStreamData(), which is called by QPDFWriter during the
|
|
|
|
// write process, actually writes the modified stream data. It
|
|
|
|
// calls maybeReplace again, but this time it passes a valid
|
|
|
|
// pipeline and passes nullptr to dict_updates. In this mode,
|
|
|
|
// the stream dictionary has already been altered, and the
|
|
|
|
// original stream data is no longer directly accessible. Trying
|
2022-02-02 14:31:33 +00:00
|
|
|
// to retrieve the stream data would cause an infinite loop because
|
2020-12-26 16:13:00 +00:00
|
|
|
// it would just end up calling provideStreamData again. This is
|
2021-02-25 17:32:45 +00:00
|
|
|
// why maybeReplace uses a stashed copy of the original stream.
|
2020-12-26 16:13:00 +00:00
|
|
|
|
|
|
|
// Additional explanation can be found in the method
|
|
|
|
// implementations.
|
|
|
|
|
|
|
|
public:
|
|
|
|
StreamReplacer(QPDF* pdf);
|
|
|
|
virtual ~StreamReplacer() = default;
|
2022-04-02 21:14:10 +00:00
|
|
|
virtual void
|
2022-07-24 13:16:37 +00:00
|
|
|
provideStreamData(QPDFObjGen const& og, Pipeline* pipeline) override;
|
2020-12-26 16:13:00 +00:00
|
|
|
|
|
|
|
void registerStream(
|
|
|
|
QPDFObjectHandle stream,
|
2022-04-09 18:49:10 +00:00
|
|
|
std::shared_ptr<QPDFObjectHandle::StreamDataProvider> self);
|
2020-12-26 16:13:00 +00:00
|
|
|
|
|
|
|
private:
|
2022-04-02 21:14:10 +00:00
|
|
|
bool maybeReplace(
|
|
|
|
QPDFObjGen const& og,
|
|
|
|
QPDFObjectHandle& stream,
|
|
|
|
Pipeline* pipeline,
|
|
|
|
QPDFObjectHandle* dict_updates);
|
2020-12-26 16:13:00 +00:00
|
|
|
|
|
|
|
// Hang onto a reference to the QPDF object containing the streams
|
|
|
|
// we are replacing. We need this to create a new stream.
|
|
|
|
QPDF* pdf;
|
|
|
|
|
|
|
|
// Map the object/generation in original file to the copied stream
|
|
|
|
// in "other". We use this to retrieve the original data.
|
|
|
|
std::map<QPDFObjGen, QPDFObjectHandle> copied_streams;
|
|
|
|
|
|
|
|
// Each stream gets is own "key" for the XOR filter. We use a
|
|
|
|
// single instance of StreamReplacer for all streams, so stash all
|
|
|
|
// the keys here.
|
|
|
|
std::map<QPDFObjGen, unsigned char> keys;
|
|
|
|
};
|
|
|
|
|
|
|
|
StreamReplacer::StreamReplacer(QPDF* pdf) :
|
|
|
|
pdf(pdf)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2022-04-02 21:14:10 +00:00
|
|
|
StreamReplacer::maybeReplace(
|
|
|
|
QPDFObjGen const& og,
|
|
|
|
QPDFObjectHandle& stream,
|
|
|
|
Pipeline* pipeline,
|
|
|
|
QPDFObjectHandle* dict_updates)
|
2020-12-26 16:13:00 +00:00
|
|
|
{
|
|
|
|
// As described in the class comments, this method is called
|
|
|
|
// twice. Before writing has started pipeline is nullptr, and
|
|
|
|
// dict_updates is provided. In this mode, we figure out whether
|
|
|
|
// we should replace the stream and, if so, take care of the
|
|
|
|
// necessary setup. When we are actually ready to supply the data,
|
|
|
|
// this method is called again with pipeline populated and
|
|
|
|
// dict_updates as a nullptr. In this mode, we are not allowed to
|
2021-01-04 21:09:33 +00:00
|
|
|
// change anything, since writing is already in progress. We
|
2020-12-26 16:13:00 +00:00
|
|
|
// must simply provide the stream data.
|
|
|
|
|
|
|
|
// The return value indicates whether or not we should replace the
|
|
|
|
// stream. If the first call returns false, there will be no
|
|
|
|
// second call. If the second call returns false, something went
|
|
|
|
// wrong since the method should always make the same decision for
|
|
|
|
// a given stream.
|
|
|
|
|
|
|
|
// For this example, all the determination logic could have
|
|
|
|
// appeared inside the if (dict_updates) block rather than being
|
|
|
|
// duplicated, but in some cases, there may be a reason to
|
|
|
|
// duplicate things. For example, if you wanted to write code that
|
|
|
|
// re-encoded an image if the new encoding was more efficient,
|
|
|
|
// you'd have to actually try it out. Then you would either have
|
|
|
|
// to cache the result somewhere or just repeat the calculations,
|
|
|
|
// depending on space/time constraints, etc.
|
|
|
|
|
|
|
|
// In our contrived example, we are replacing the data for all
|
|
|
|
// streams that have /DoXOR = true in the stream dictionary. If
|
|
|
|
// this were a more realistic application, our criteria would be
|
|
|
|
// more sensible. For example, an image downsampler might choose
|
|
|
|
// to replace a stream that represented an image with a high pixel
|
|
|
|
// density.
|
|
|
|
auto dict = stream.getDict();
|
|
|
|
auto mark = dict.getKey("/DoXOR");
|
2022-04-02 21:14:10 +00:00
|
|
|
if (!(mark.isBool() && mark.getBoolValue())) {
|
2020-12-26 16:13:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We can't replace the stream data if we can't get the original
|
|
|
|
// stream data for any reason. A more realistic application may
|
|
|
|
// actually look at the data here as well, or it may be able to
|
|
|
|
// make all its decisions from the stream dictionary. However,
|
|
|
|
// it's a good idea to make sure we can retrieve the filtered data
|
|
|
|
// if we are going to need it later.
|
2022-04-09 18:49:10 +00:00
|
|
|
std::shared_ptr<Buffer> out;
|
2022-04-02 21:14:10 +00:00
|
|
|
try {
|
2020-12-26 16:13:00 +00:00
|
|
|
out = stream.getStreamData();
|
2022-04-02 21:14:10 +00:00
|
|
|
} catch (...) {
|
2020-12-26 16:13:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-04-02 21:14:10 +00:00
|
|
|
if (dict_updates) {
|
2020-12-26 16:13:00 +00:00
|
|
|
// It's not safe to make any modifications to any objects
|
|
|
|
// during the writing process since the updated objects may
|
|
|
|
// have already been written. In this mode, when dict_updates
|
|
|
|
// is provided, we have not started writing. Store the
|
|
|
|
// modifications we intend to make to the stream dictionary
|
|
|
|
// here. We're just storing /OrigLength for purposes of
|
|
|
|
// example. Again, a realistic application would make other
|
|
|
|
// changes. For example, an image resampler might change the
|
|
|
|
// dimensions or other properties of the image.
|
|
|
|
dict_updates->replaceKey(
|
2022-04-02 21:14:10 +00:00
|
|
|
"/OrigLength",
|
|
|
|
QPDFObjectHandle::newInteger(QIntC::to_longlong(out->getSize())));
|
2020-12-26 16:13:00 +00:00
|
|
|
// We are also storing the "key" that we will access when
|
|
|
|
// writing the data.
|
|
|
|
this->keys[og] = QIntC::to_uchar(
|
|
|
|
(og.getObj() * QIntC::to_int(out->getSize())) & 0xff);
|
|
|
|
}
|
|
|
|
|
2022-04-02 21:14:10 +00:00
|
|
|
if (pipeline) {
|
2020-12-26 16:13:00 +00:00
|
|
|
unsigned char key = this->keys[og];
|
|
|
|
Pl_XOR p("xor", pipeline, key);
|
|
|
|
p.write(out->getBuffer(), out->getSize());
|
|
|
|
p.finish();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
StreamReplacer::registerStream(
|
|
|
|
QPDFObjectHandle stream,
|
2022-04-09 18:49:10 +00:00
|
|
|
std::shared_ptr<QPDFObjectHandle::StreamDataProvider> self)
|
2020-12-26 16:13:00 +00:00
|
|
|
{
|
|
|
|
QPDFObjGen og(stream.getObjGen());
|
|
|
|
|
|
|
|
// We don't need to process a stream more than once. In this
|
|
|
|
// example, we are just iterating through objects, but if we were
|
|
|
|
// doing something like iterating through images on pages, we
|
|
|
|
// might realistically encounter the same stream more than once.
|
2022-04-02 21:14:10 +00:00
|
|
|
if (this->copied_streams.count(og) > 0) {
|
2020-12-26 16:13:00 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Store something in copied_streams so that we don't
|
|
|
|
// double-process even in the negative case. This gets replaced
|
|
|
|
// later if needed.
|
|
|
|
this->copied_streams[og] = QPDFObjectHandle::newNull();
|
|
|
|
|
|
|
|
// Call maybeReplace with dict_updates. In this mode, it
|
|
|
|
// determines whether we should replace the stream data and, if
|
|
|
|
// so, supplies dictionary updates we should make.
|
|
|
|
bool should_replace = false;
|
|
|
|
QPDFObjectHandle dict_updates = QPDFObjectHandle::newDictionary();
|
2022-04-02 21:14:10 +00:00
|
|
|
try {
|
2020-12-26 16:13:00 +00:00
|
|
|
should_replace = maybeReplace(og, stream, nullptr, &dict_updates);
|
2022-04-02 21:14:10 +00:00
|
|
|
} catch (std::exception& e) {
|
2020-12-26 16:13:00 +00:00
|
|
|
stream.warnIfPossible(
|
2022-04-02 21:14:10 +00:00
|
|
|
std::string("exception while attempting to replace: ") + e.what());
|
2020-12-26 16:13:00 +00:00
|
|
|
}
|
|
|
|
|
2022-04-02 21:14:10 +00:00
|
|
|
if (should_replace) {
|
2021-02-25 17:32:45 +00:00
|
|
|
// Copy the stream so we can get to the original data from the
|
|
|
|
// stream data provider. This doesn't actually copy any data,
|
|
|
|
// but the copy retains the original stream data after the
|
|
|
|
// original one is modified.
|
|
|
|
this->copied_streams[og] = stream.copyStream();
|
2020-12-26 16:13:00 +00:00
|
|
|
// Update the stream dictionary with any changes.
|
|
|
|
auto dict = stream.getDict();
|
2022-04-30 13:43:07 +00:00
|
|
|
for (auto const& k: dict_updates.getKeys()) {
|
2020-12-26 16:13:00 +00:00
|
|
|
dict.replaceKey(k, dict_updates.getKey(k));
|
|
|
|
}
|
|
|
|
// Create the key stream that will be referenced from
|
|
|
|
// /DecodeParms. We have to do this now since you can't modify
|
|
|
|
// or create objects during write.
|
2022-04-02 21:14:10 +00:00
|
|
|
char p[1] = {static_cast<char>(this->keys[og])};
|
2020-12-26 16:13:00 +00:00
|
|
|
std::string p_str(p, 1);
|
|
|
|
QPDFObjectHandle dp_stream =
|
|
|
|
QPDFObjectHandle::newStream(this->pdf, p_str);
|
|
|
|
// Create /DecodeParms as expected by our fictitious
|
|
|
|
// /XORDecode filter.
|
|
|
|
QPDFObjectHandle decode_parms =
|
|
|
|
QPDFObjectHandle::newDictionary({{"/KeyStream", dp_stream}});
|
|
|
|
stream.replaceStreamData(
|
2022-04-02 21:14:10 +00:00
|
|
|
self, QPDFObjectHandle::newName("/XORDecode"), decode_parms);
|
2020-12-26 16:13:00 +00:00
|
|
|
// Further, if /ProtectXOR = true, we disable filtering on write
|
|
|
|
// so that QPDFWriter will not decode the stream even though we
|
|
|
|
// have registered a stream filter for /XORDecode.
|
|
|
|
auto protect = dict.getKey("/ProtectXOR");
|
2022-04-02 21:14:10 +00:00
|
|
|
if (protect.isBool() && protect.getBoolValue()) {
|
2020-12-26 16:13:00 +00:00
|
|
|
stream.setFilterOnWrite(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2022-07-24 13:16:37 +00:00
|
|
|
StreamReplacer::provideStreamData(QPDFObjGen const& og, Pipeline* pipeline)
|
2020-12-26 16:13:00 +00:00
|
|
|
{
|
|
|
|
QPDFObjectHandle orig = this->copied_streams[og];
|
|
|
|
// call maybeReplace again, this time with the pipeline and no
|
|
|
|
// dict_updates. In this mode, maybeReplace doesn't make any
|
|
|
|
// changes. We have to hand it the original stream data, which we
|
|
|
|
// get from copied_streams.
|
2022-04-02 21:14:10 +00:00
|
|
|
if (!maybeReplace(og, orig, pipeline, nullptr)) {
|
2020-12-26 16:13:00 +00:00
|
|
|
// Since this only gets called for streams we already
|
|
|
|
// determined we are replacing, a false return would indicate
|
|
|
|
// a logic error.
|
|
|
|
throw std::logic_error(
|
|
|
|
"should_replace return false in provideStreamData");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-02 21:14:10 +00:00
|
|
|
static void
|
|
|
|
process(
|
|
|
|
char const* infilename, char const* outfilename, bool decode_specialized)
|
2020-12-26 16:13:00 +00:00
|
|
|
{
|
|
|
|
QPDF qpdf;
|
|
|
|
qpdf.processFile(infilename);
|
|
|
|
|
|
|
|
// Create a single StreamReplacer instance. The interface requires
|
2022-04-09 18:49:10 +00:00
|
|
|
// a std::shared_ptr in various places, so allocate a StreamReplacer
|
|
|
|
// and stash it in a std::shared_ptr.
|
2020-12-26 16:13:00 +00:00
|
|
|
StreamReplacer* replacer = new StreamReplacer(&qpdf);
|
2022-04-09 18:49:10 +00:00
|
|
|
std::shared_ptr<QPDFObjectHandle::StreamDataProvider> p(replacer);
|
2020-12-26 16:13:00 +00:00
|
|
|
|
2022-04-30 13:43:07 +00:00
|
|
|
for (auto& o: qpdf.getAllObjects()) {
|
2022-04-02 21:14:10 +00:00
|
|
|
if (o.isStream()) {
|
2020-12-26 16:13:00 +00:00
|
|
|
// Call registerStream for every stream. Only ones that
|
|
|
|
// registerStream decides to replace will actually be
|
|
|
|
// replaced.
|
|
|
|
replacer->registerStream(o, p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QPDFWriter w(qpdf, outfilename);
|
2022-04-02 21:14:10 +00:00
|
|
|
if (decode_specialized) {
|
2020-12-26 16:13:00 +00:00
|
|
|
w.setDecodeLevel(qpdf_dl_specialized);
|
|
|
|
}
|
|
|
|
// For the test suite, use static IDs.
|
|
|
|
w.setStaticID(true); // for testing only
|
|
|
|
w.write();
|
2022-04-02 21:14:10 +00:00
|
|
|
std::cout << whoami << ": new file written to " << outfilename << std::endl;
|
2020-12-26 16:13:00 +00:00
|
|
|
}
|
|
|
|
|
2022-04-02 21:14:10 +00:00
|
|
|
static void
|
|
|
|
usage()
|
2020-12-26 16:13:00 +00:00
|
|
|
{
|
2022-04-02 21:14:10 +00:00
|
|
|
std::cerr << "\n"
|
|
|
|
<< "Usage: " << whoami
|
|
|
|
<< " [--decode-specialized] infile outfile\n"
|
|
|
|
<< std::endl;
|
2020-12-26 16:13:00 +00:00
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
|
2022-04-02 21:14:10 +00:00
|
|
|
int
|
|
|
|
main(int argc, char* argv[])
|
2020-12-26 16:13:00 +00:00
|
|
|
{
|
|
|
|
whoami = QUtil::getWhoami(argv[0]);
|
|
|
|
|
2022-07-26 11:37:50 +00:00
|
|
|
char const* infilename = nullptr;
|
|
|
|
char const* outfilename = nullptr;
|
2020-12-26 16:13:00 +00:00
|
|
|
bool decode_specialized = false;
|
2022-04-02 21:14:10 +00:00
|
|
|
for (int i = 1; i < argc; ++i) {
|
|
|
|
if (strcmp(argv[i], "--decode-specialized") == 0) {
|
2020-12-26 16:13:00 +00:00
|
|
|
decode_specialized = true;
|
2022-04-02 21:14:10 +00:00
|
|
|
} else if (!infilename) {
|
2020-12-26 16:13:00 +00:00
|
|
|
infilename = argv[i];
|
2022-04-02 21:14:10 +00:00
|
|
|
} else if (!outfilename) {
|
2020-12-26 16:13:00 +00:00
|
|
|
outfilename = argv[i];
|
2022-04-02 21:14:10 +00:00
|
|
|
} else {
|
2020-12-26 16:13:00 +00:00
|
|
|
usage();
|
|
|
|
}
|
|
|
|
}
|
2022-04-02 21:14:10 +00:00
|
|
|
if (!(infilename && outfilename)) {
|
2020-12-26 16:13:00 +00:00
|
|
|
usage();
|
|
|
|
}
|
|
|
|
|
2022-04-02 21:14:10 +00:00
|
|
|
try {
|
2020-12-26 16:13:00 +00:00
|
|
|
// Register our fictitious filter. This enables QPDFWriter to
|
|
|
|
// decode our streams. This is not a real filter, so no real
|
|
|
|
// PDF reading application would be able to interpret it. This
|
|
|
|
// is just for illustrative purposes.
|
|
|
|
QPDF::registerStreamFilter(
|
2022-04-02 21:14:10 +00:00
|
|
|
"/XORDecode", [] { return std::make_shared<SF_XORDecode>(); });
|
2020-12-26 16:13:00 +00:00
|
|
|
// Do the actual processing.
|
|
|
|
process(infilename, outfilename, decode_specialized);
|
2022-04-02 21:14:10 +00:00
|
|
|
} catch (std::exception& e) {
|
2020-12-26 16:13:00 +00:00
|
|
|
std::cerr << whoami << ": exception: " << e.what() << std::endl;
|
2022-02-08 14:18:08 +00:00
|
|
|
exit(2);
|
2020-12-26 16:13:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|