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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
|
/*
* This file is part of the pdftk port to java
*
* Copyright (c) Marc Vinyals 2017-2018
*
* The program is a java port of PDFtk, the PDF Toolkit
* Copyright (c) 2003-2013 Steward and Lee, LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* The 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 General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.gitlab.pdftk_java;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.PrintStream;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
import java.nio.file.FileAlreadyExistsException;
import java.nio.file.FileSystems;
import java.nio.file.Files;
import java.nio.file.InvalidPathException;
import java.nio.file.Path;
import java.nio.file.StandardOpenOption;
import java.util.Scanner;
public class pdftk {
/* TODO: should read from compiler */
static final String PDFTK_VER = "3.3.3";
static final boolean ASK_ABOUT_WARNINGS = false;
static {
System.setProperty("java.awt.headless", "true");
}
// For compatibility with Java < 9
static void copyStream(InputStream inputStream, OutputStream outputStream) throws IOException {
final int bufferSize = 0x2000;
byte[] buffer = new byte[bufferSize];
while (true) {
int readBytes = inputStream.read(buffer, 0, bufferSize);
if (readBytes < 0) break;
outputStream.write(buffer, 0, readBytes);
}
}
static byte[] readAllBytes(InputStream inputStream) throws IOException {
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
copyStream(inputStream, outputStream);
return outputStream.toByteArray();
}
static String prompt_for_password(String pass_name, String pass_app) {
System.out.println("Please enter the " + pass_name + " password to use on " + pass_app + ".");
System.out.println(" It can be empty, or have a maximum of 32 characters:");
Scanner s = new Scanner(System.in);
String password = s.nextLine();
if (32 < password.length()) { // too long; trim
System.out.println("The password you entered was over 32 characters long,");
System.out.println(" so I am dropping: \"" + password.substring(32) + "\"");
password = password.substring(0, 32);
}
return password;
}
static void warn_if_argument_is_password(String password) {
boolean first = true;
if (first && !password.isEmpty() && !password.equals("PROMPT")) {
first = false;
System.err.println(
"Warning: Using a password on the command line interface can be insecure.");
System.err.println("Use the keyword PROMPT to supply a password via standard input instead.");
}
}
static String prompt_for_filename(String message) {
// input could be multibyte, so try working
// with bytes instead of formatted input features
System.out.println(message);
Scanner s = new Scanner(System.in);
return s.nextLine();
}
static boolean confirm_overwrite(String filename) {
System.out.println(
"Warning: the output file: " + filename + " already exists. Overwrite? (y/n)");
Scanner s = new Scanner(System.in);
String buff = s.nextLine();
return buff.startsWith("y") || buff.startsWith("Y");
}
static OutputStream get_output_stream(String output_filename, boolean ask_about_warnings_b) {
if (output_filename.isEmpty() || output_filename.equals("PROMPT")) {
output_filename = prompt_for_filename("Please enter a name for the output:");
// recurse; try again
return get_output_stream(output_filename, ask_about_warnings_b);
}
if (output_filename.equals("-")) { // stdout
return System.out;
}
return get_output_stream_file(output_filename, ask_about_warnings_b, true);
}
static OutputStream get_output_stream_file(
String output_filename, boolean check_overwrite, boolean required) {
try {
Path p = FileSystems.getDefault().getPath(output_filename);
if (check_overwrite) {
return Files.newOutputStream(p, StandardOpenOption.WRITE, StandardOpenOption.CREATE_NEW);
} else {
return Files.newOutputStream(p);
}
} catch (FileAlreadyExistsException e) {
if (!confirm_overwrite(output_filename)) {
if (required) {
return get_output_stream("PROMPT", check_overwrite);
} else {
System.err.println(" Skipping: " + output_filename);
}
}
} catch (IOException | InvalidPathException e) {
System.err.println("Error: Failed to open output file: ");
System.err.println(" " + output_filename);
if (required) {
System.err.println(" No output created.");
} else {
System.err.println(" Skipping.");
}
}
return null;
}
static PrintStream get_print_stream(String output_filename, boolean output_utf8_b)
throws IOException {
Charset encoding = (output_utf8_b ? StandardCharsets.UTF_8 : StandardCharsets.US_ASCII);
if (output_filename.isEmpty() || output_filename.equals("-")) {
return new PrintStream(System.out, true, encoding.name());
} else {
return new PrintStream(output_filename, encoding.name());
}
}
public static void main(String[] args) {
System.exit(main_noexit(args));
}
public static int main_noexit(String[] args) {
boolean help_b = false;
boolean version_b = false;
boolean synopsis_b = (args.length == 0);
ErrorCode ret_val = ErrorCode.NO_ERROR; // default: no error
for (String argv : args) {
version_b = version_b || (argv.equals("--version")) || (argv.equals("-version"));
help_b = help_b || (argv.equals("--help")) || (argv.equals("-help")) || (argv.equals("-h"));
}
if (help_b) {
describe_full();
} else if (version_b) {
describe_header();
} else if (synopsis_b) {
describe_synopsis();
} else {
try {
TK_Session session = new TK_Session();
session.parse(args);
session.dump_session_data();
if (session.is_valid()) {
// create_output() prints necessary error messages
ret_val = session.create_output();
if (ret_val == ErrorCode.ERROR) {
System.err.println(" No output created.");
} else if (ret_val == ErrorCode.PARTIAL) {
System.err.println(" Not all outputs created.");
ret_val = ErrorCode.ERROR;
}
} else { // error
System.err.println("Done. Input errors, so no output created.");
ret_val = ErrorCode.ERROR;
}
}
// per https://bugs.launchpad.net/ubuntu/+source/pdftk/+bug/544636
catch (java.lang.ClassCastException c_p) {
String message = c_p.getMessage();
if (message == null) message = "";
if (message.indexOf("com.lowagie.text.pdf.PdfDictionary") >= 0
&& message.indexOf("com.lowagie.text.pdf.PRIndirectReference") >= 0) {
System.err.println("Error: One input PDF seems to not conform to the PDF standard.");
System.err.println("Perhaps the document information dictionary is a direct object");
System.err.println(" instead of an indirect reference.");
System.err.println("Please report this bug to the program which produced the PDF.");
System.err.println();
}
System.err.println("Java Exception:");
c_p.printStackTrace();
ret_val = ErrorCode.ERROR;
} catch (NoClassDefFoundError error) {
describe_missing_library(error);
ret_val = ErrorCode.ERROR;
} catch (java.lang.Throwable t_p) {
System.err.println("Unhandled Java Exception in main():");
t_p.printStackTrace();
ret_val = ErrorCode.BUG;
}
}
if (ret_val == ErrorCode.BUG) {
describe_bug_report();
}
return ret_val.code;
}
static void describe_header() {
System.out.println(
"pdftk port to java " + PDFTK_VER + " a Handy Tool for Manipulating PDF Documents");
System.out.println(
"Copyright (c) 2017-2018 Marc Vinyals - https://gitlab.com/pdftk-java/pdftk");
System.out.println("Copyright (c) 2003-2013 Steward and Lee, LLC.");
System.out.println("pdftk includes a modified version of the iText library.");
System.out.println("Copyright (c) 1999-2009 Bruno Lowagie, Paulo Soares, et al.");
System.out.println(
"This is free software; see the source code for copying conditions. There is");
System.out.println(
"NO warranty, not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.");
}
static void describe_resource(String resource) {
InputStream inputStream = pdftk.class.getResourceAsStream(resource);
try {
copyStream(inputStream, System.out);
} catch (IOException e) {
e.printStackTrace();
describe_bug_report();
}
}
static void describe_synopsis() {
describe_resource("resources/synopsis.txt");
}
static void describe_full() {
describe_header();
System.out.println();
describe_synopsis();
System.out.println();
describe_resource("resources/description.txt");
}
static void describe_bug_report() {
System.err.println("There was a problem with pdftk-java. Please report it at");
System.err.println("https://gitlab.com/pdftk-java/pdftk/issues");
System.err.println(
"including the message above, the version of pdftk-java ("
+ PDFTK_VER
+ "), and if possible steps to reproduce the error.");
}
static void describe_missing_library(Throwable error) {
System.err.println("Error: could not load a required library for this operation.");
System.err.println(error);
System.err.println("Make sure that bcprov and commons-lang3 are installed and included in the");
System.err.println("classpath. See also https://gitlab.com/pdftk-java/pdftk/issues/2.");
}
}
|