2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-09-28 04:59:05 +00:00
qpdf/libtests/png_filter.cc
Jay Berkenbilt 6b9297882e Mark secure CRT warnings with comment
Put a specific comment marker next to every piece of code that MSVC
gives warning 4996 for.  This warning is generated for calls to
functions that Microsoft considers insecure or deprecated.  This
change is in preparation for fixing all these cases even though none
of them are actually incorrect or insecure as used in qpdf.  The
comment marker makes them easier to find so they can be fixed in
subsequent commits.
2013-03-05 13:33:32 -05:00

87 lines
1.7 KiB
C++

#include <qpdf/Pl_PNGFilter.hh>
#include <qpdf/Pl_StdioFile.hh>
#include <iostream>
#include <errno.h>
#include <assert.h>
#include <string.h>
#include <stdlib.h>
FILE* safe_fopen(char const* filename, char const* mode)
{
FILE* result = fopen(filename, mode); // XXXX
if (result == 0)
{
std::cerr << "fopen " << filename << " failed: " << strerror(errno) // XXXX
<< std::endl;
exit(2);
}
return result;
}
void run(char const* filename, bool encode, unsigned int columns)
{
// Decode the file
FILE* in = safe_fopen(filename, "rb");
FILE* o1 = safe_fopen("out", "wb");
Pipeline* out = new Pl_StdioFile("out", o1);
Pipeline* pl = new Pl_PNGFilter(
"png", out,
encode ? Pl_PNGFilter::a_encode : Pl_PNGFilter::a_decode,
columns, 0 /* not used */);
assert((2 * (columns + 1)) < 1024);
unsigned char buf[1024];
size_t len;
while (true)
{
len = fread(buf, 1, (2 * columns) + 1, in);
if (len == 0)
{
break;
}
pl->write(buf, len);
len = fread(buf, 1, 1, in);
if (len == 0)
{
break;
}
pl->write(buf, len);
len = fread(buf, 1, 1, in);
if (len == 0)
{
break;
}
pl->write(buf, len);
}
pl->finish();
delete pl;
delete out;
fclose(o1);
fclose(in);
std::cout << "done" << std::endl;
}
int main(int argc, char* argv[])
{
if (argc != 4)
{
std::cerr << "Usage: pipeline {en,de}code filename columns" << std::endl;
exit(2);
}
bool encode = (strcmp(argv[1], "encode") == 0);
char* filename = argv[2];
int columns = atoi(argv[3]);
try
{
run(filename, encode, columns);
}
catch (std::exception& e)
{
std::cout << e.what() << std::endl;
}
return 0;
}