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 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651
|
/*
* 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 com.gitlab.pdftk_java.com.lowagie.text.DocumentException;
import com.gitlab.pdftk_java.com.lowagie.text.pdf.FdfWriter;
import com.gitlab.pdftk_java.com.lowagie.text.pdf.PdfDictionary;
import com.gitlab.pdftk_java.com.lowagie.text.pdf.PdfName;
import com.gitlab.pdftk_java.com.lowagie.text.pdf.PdfNumber;
import com.gitlab.pdftk_java.com.lowagie.text.pdf.PdfReader;
import com.gitlab.pdftk_java.com.lowagie.text.pdf.PdfWriter;
import java.io.FileNotFoundException;
import java.io.OutputStream;
import java.io.PrintStream;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import org.apache.commons.lang3.text.WordUtils;
class TK_Session {
boolean m_valid_b = false;
boolean m_authorized_b = true;
boolean m_input_pdf_readers_opened_b = false; // have m_input_pdf readers been opened?
boolean m_verbose_reporting_b = false;
boolean m_ask_about_warnings_b = pdftk.ASK_ABOUT_WARNINGS; // set default at compile-time
static final String creator = "pdftk-java " + pdftk.PDFTK_VER;
// pack input PDF in the order they're given on the command line
ArrayList<InputPdf> m_input_pdf = new ArrayList<InputPdf>();
// typedef vector< InputPdf >::size_type InputPdfIndex;
// store input PDF handles here
HashMap<String, Integer> m_input_pdf_index = new HashMap<String, Integer>();
InputPdf.PagesReader add_reader(InputPdf input_pdf_p, boolean keep_artifacts_b) {
InputPdf.PagesReader ret_val = input_pdf_p.add_reader(keep_artifacts_b, m_ask_about_warnings_b);
// update session state
m_authorized_b = m_authorized_b && input_pdf_p.m_authorized_b;
return ret_val;
}
InputPdf.PagesReader add_reader(InputPdf input_pdf_p) {
return add_reader(input_pdf_p, false);
}
boolean open_input_pdf_readers() {
// try opening the input files and init m_input_pdf readers
boolean open_success_b = true;
if (!m_input_pdf_readers_opened_b) {
if (m_operation == keyword.filter_k && m_input_pdf.size() == 1) {
// don't touch input pdf -- preserve artifacts
open_success_b = (add_reader(m_input_pdf.get(0), true) != null);
} else {
for (InputPdf it : m_input_pdf) {
open_success_b = (add_reader(it) != null) && open_success_b;
}
}
m_input_pdf_readers_opened_b = open_success_b;
}
return open_success_b;
}
ArrayList<String> m_input_attach_file_filename = new ArrayList<String>();
int m_input_attach_file_pagenum = 0;
String m_input_attach_file_relation = "Unspecified";
String m_update_info_filename = "";
boolean m_update_info_utf8_b = false;
String m_update_xmp_filename = "";
keyword m_operation = keyword.none_k;
ArrayList<ArrayList<PageRef>> m_page_seq =
new ArrayList<ArrayList<PageRef>>(); // one vector for each given page range
String m_form_data_filename = "";
String m_background_filename = "";
String m_stamp_filename = "";
String m_replacement_font = null;
String m_output_filename = "";
boolean m_output_utf8_b = false;
String m_output_owner_pw = "";
String m_output_user_pw = "";
int m_output_user_perms = 0;
boolean m_multistamp_b = false; // use all pages of input stamp PDF, not just the first
boolean m_multibackground_b = false; // use all pages of input background PDF, not just the first
boolean m_output_uncompress_b = false;
boolean m_output_compress_b = false;
boolean m_output_flatten_b = false;
boolean m_output_need_appearances_b = false;
boolean m_output_drop_xfa_b = false;
boolean m_output_drop_xmp_b = false;
boolean m_output_keep_first_id_b = false;
boolean m_output_keep_final_id_b = false;
boolean m_cat_full_pdfs_b = true; // we are merging entire docs, not select pages
enum encryption_strength {
none_enc(PdfWriter.INVALID_ENCRYPTION, PdfWriter.VERSION_1_2), // 1.1 probably okay, here
rc4_40_enc(PdfWriter.STANDARD_ENCRYPTION_40, PdfWriter.VERSION_1_3), // 1.1 probably okay, here
rc4_128_enc(PdfWriter.STANDARD_ENCRYPTION_128, PdfWriter.VERSION_1_4),
aes128_enc(PdfWriter.ENCRYPTION_AES_128, PdfWriter.VERSION_1_6);
final int value;
final char pdf_version;
encryption_strength(int value, char pdf_version) {
this.value = value;
this.pdf_version = pdf_version;
}
};
encryption_strength m_output_encryption_strength = encryption_strength.none_enc;
byte[] m_output_owner_pw_pdfdoc = new byte[0];
byte[] m_output_user_pw_pdfdoc = new byte[0];
class Parser {
ArgState arg_state = ArgState.input_files_e;
String argv;
keyword arg_keyword = keyword.none_k;
// set one and only one to true when p/w used; use to
// enforce rule that either all p/w use handles or no p/w use handles
boolean password_using_handles_not_b = false;
boolean password_using_handles_b = false;
int password_input_pdf_index = 0;
boolean fail_b = false;
void parse(String[] args) {
// first, look for our "dont_ask" or "do_ask" keywords, since this
// setting must be known before we begin opening documents, etc.
for (String argv : args) {
keyword kw = keyword.is_keyword(argv);
if (kw == keyword.dont_ask_k) {
m_ask_about_warnings_b = false;
} else if (kw == keyword.do_ask_k) {
m_ask_about_warnings_b = true;
}
}
// iterate over cmd line arguments
for (String arg : args) {
argv = arg;
if (fail_b || arg_state == ArgState.done_e) break;
arg_keyword = keyword.is_keyword(argv);
// these keywords can be false hits because of their loose matching requirements;
// since they are suffixes to page ranges, their appearance here is most likely a false
// match;
if (arg_keyword == keyword.even_k || arg_keyword == keyword.odd_k) {
arg_keyword = keyword.none_k;
}
switch (arg_state) {
case input_files_e:
case input_pw_e:
parse_state_input();
break;
case page_seq_e:
parse_state_page_seq();
break;
case form_data_filename_e:
parse_state_form_data_filename();
break;
case attach_file_filename_e:
parse_state_attach_file_filename();
break;
case attach_file_pagenum_e:
parse_state_attach_file_pagenum();
break;
case attach_file_relation_e:
parse_state_attach_file_relation();
break;
case update_info_filename_e:
parse_state_update_info_filename();
break;
case output_e:
parse_state_output();
break;
case output_filename_e:
parse_state_output_filename();
break;
case output_args_e:
parse_state_output_args();
break;
case output_owner_pw_e:
parse_state_output_owner_pw();
break;
case output_user_pw_e:
parse_state_output_user_pw();
break;
case output_user_perms_e:
parse_state_output_user_perms();
break;
case background_filename_e:
parse_state_background_filename();
break;
case stamp_filename_e:
parse_state_stamp_filename();
break;
case replacement_font_filename_e:
parse_state_replacement_font_filename();
break;
default:
// error
System.err.println("Internal Error: Unexpected arg_state. Exiting.");
fail_b = true;
break;
} // end: switch(arg_state)
} // end: iterate over command-line arguments
if (fail_b) {
System.err.println("Errors encountered. No output created.");
m_valid_b = false;
m_input_pdf.clear();
// preserve other data members for diagnostic dump
} else {
m_valid_b = true;
if (!m_input_pdf_readers_opened_b) {
open_input_pdf_readers();
}
}
}
void parse_state_input() {
// look for keywords that would advance our state,
// and then handle the specifics of the above cases
if (arg_keyword == keyword.input_pw_k) { // input PDF passwords keyword
arg_state = ArgState.input_pw_e;
} else if (arg_keyword == keyword.cat_k) {
m_operation = keyword.cat_k;
arg_state = ArgState.page_seq_e; // collect page sequeces
} else if (arg_keyword == keyword.shuffle_k) {
m_operation = keyword.shuffle_k;
arg_state = ArgState.page_seq_e; // collect page sequeces
} else if (arg_keyword == keyword.burst_k) {
m_operation = keyword.burst_k;
arg_state = ArgState.output_args_e; // makes "output <fn>" bit optional
} else if (arg_keyword == keyword.filter_k) {
m_operation = keyword.filter_k;
arg_state = ArgState.output_e; // look for an output filename
} else if (arg_keyword == keyword.dump_data_k) {
m_operation = keyword.dump_data_k;
arg_state = ArgState.output_e;
} else if (arg_keyword == keyword.dump_data_utf8_k) {
m_operation = keyword.dump_data_k;
m_output_utf8_b = true;
arg_state = ArgState.output_e;
} else if (arg_keyword == keyword.dump_data_fields_k) {
m_operation = keyword.dump_data_fields_k;
arg_state = ArgState.output_e;
} else if (arg_keyword == keyword.dump_data_fields_utf8_k) {
m_operation = keyword.dump_data_fields_k;
m_output_utf8_b = true;
arg_state = ArgState.output_e;
} else if (arg_keyword == keyword.dump_data_k) {
m_operation = keyword.dump_data_k;
arg_state = ArgState.output_e;
} else if (arg_keyword == keyword.dump_data_annots_k) {
m_operation = keyword.dump_data_annots_k;
arg_state = ArgState.output_e;
} else if (arg_keyword == keyword.generate_fdf_k) {
m_operation = keyword.generate_fdf_k;
m_output_utf8_b = true;
arg_state = ArgState.output_e;
} else if (arg_keyword == keyword.fill_form_k) {
m_operation = keyword.filter_k;
arg_state = ArgState.form_data_filename_e; // look for an FDF filename
} else if (arg_keyword == keyword.attach_file_k) {
m_operation = keyword.filter_k;
arg_state = ArgState.attach_file_filename_e;
} else if (arg_keyword == keyword.attach_file_to_page_k) {
arg_state = ArgState.attach_file_pagenum_e;
} else if (arg_keyword == keyword.attach_file_relation_k) {
arg_state = ArgState.attach_file_relation_e;
} else if (arg_keyword == keyword.unpack_files_k) {
m_operation = keyword.unpack_files_k;
arg_state = ArgState.output_e;
} else if (arg_keyword == keyword.update_info_k) {
m_operation = keyword.filter_k;
m_update_info_utf8_b = false;
arg_state = ArgState.update_info_filename_e;
} else if (arg_keyword == keyword.update_info_utf8_k) {
m_operation = keyword.filter_k;
m_update_info_utf8_b = true;
arg_state = ArgState.update_info_filename_e;
}
/*
else if( arg_keyword== update_xmp_k ) {
m_operation= filter_k;
arg_state= update_xmp_filename_e;
}
*/
else if (arg_keyword == keyword.background_k) {
m_operation = keyword.filter_k;
arg_state = ArgState.background_filename_e;
} else if (arg_keyword == keyword.multibackground_k) {
m_operation = keyword.filter_k;
m_multibackground_b = true;
arg_state = ArgState.background_filename_e;
} else if (arg_keyword == keyword.stamp_k) {
m_operation = keyword.filter_k;
arg_state = ArgState.stamp_filename_e;
} else if (arg_keyword == keyword.multistamp_k) {
m_operation = keyword.filter_k;
m_multistamp_b = true;
arg_state = ArgState.stamp_filename_e;
} else if (arg_keyword == keyword.rotate_k) {
m_operation = keyword.filter_k;
arg_state = ArgState.page_seq_e; // collect page sequeces
} else if (arg_keyword == keyword.output_k) { // we reached the output section
arg_state = ArgState.output_filename_e;
} else if (arg_keyword == keyword.none_k) {
// here is where the two cases (input_files_e, input_pw_e) diverge
String handle, data;
{
Pattern p = Pattern.compile("(?:([A-Z]+)=)?(.*)", Pattern.DOTALL);
Matcher m = p.matcher(argv);
m.matches();
handle = m.group(1);
data = m.group(2);
}
if (arg_state == ArgState.input_files_e) {
parse_state_input_files(handle, data);
} else if (arg_state == ArgState.input_pw_e) {
parse_state_input_pw(handle, data);
} else { // error
System.err.println("Error: Internal error: unexpected arg_state. Exiting.");
fail_b = true;
}
} else { // error: unexpected keyword; remark and set fail_b
System.err.println("Error: Unexpected command-line data: ");
System.err.println(" " + argv);
if (arg_state == ArgState.input_files_e) {
System.err.println(" where we were expecting an input PDF filename,");
System.err.println(" operation (e.g. \"cat\") or \"input_pw\". Exiting.");
} else {
System.err.println(" where we were expecting an input PDF password");
System.err.println(" or operation (e.g. \"cat\"). Exiting.");
}
fail_b = true;
}
}
void parse_state_input_files(String handle, String data) {
// input_files_e:
// expecting input handle=filename pairs, or
// an input filename w/o a handle
//
// treat argv[ii] like an optional input handle and filename
// like this: [<handle>=]<filename>
InputPdf input_pdf = new InputPdf();
input_pdf.m_filename = data;
if (handle == null) { // no handle
m_input_pdf.add(input_pdf);
} else { // use given handle for filename; test, first
// look up handle
Integer it = m_input_pdf_index.get(handle);
if (it != null) { // error: alreay in use
System.err.println("Error: Handle given here: ");
System.err.println(" " + argv);
System.err.println(" is already associated with: ");
System.err.println(" " + m_input_pdf.get(it).m_filename);
System.err.println(" Exiting.");
fail_b = true;
} else { // add handle/filename association
m_input_pdf.add(input_pdf);
m_input_pdf_index.put(handle, m_input_pdf.size() - 1);
}
}
} // end: arg_state== input_files_e
void parse_state_input_pw(String handle, String data) {
// expecting input handle=password pairs, or
// an input PDF password w/o a handle
//
// treat argv[ii] like an input handle and password
// like this <handle>=<password>; if no handle is
// given, assign passwords to input in order;
// if handles not used for input PDFs, then assume
// any equals signs found in p/w are part of p/w
if (m_input_pdf_index.size() == 0) {
handle = null;
data = argv;
}
if (handle == null) { // no equal sign; try using default handles
if (password_using_handles_b) { // error: expected a handle
System.err.println("Error: Expected a user-supplied handle for this input");
System.err.println(" PDF password: " + argv);
System.err.println();
System.err.println(" Handles must be supplied with ~all~ input");
System.err.println(" PDF passwords, or with ~no~ input PDF passwords.");
System.err.println(" If no handles are supplied, then passwords are applied");
System.err.println(" according to input PDF order.");
System.err.println();
System.err.println(" Handles are given like this: <handle>=<password>, and");
System.err.println(" they must be one or more upper-case letters.");
fail_b = true;
} else {
password_using_handles_not_b = true;
if (password_input_pdf_index < m_input_pdf.size()) {
pdftk.warn_if_argument_is_password(argv);
m_input_pdf.get(password_input_pdf_index).m_password = argv;
++password_input_pdf_index;
} else { // error
System.err.println("Error: more input passwords than input PDF documents.");
System.err.println(" Exiting.");
fail_b = true;
}
}
} else { // handle given; use for password
if (password_using_handles_not_b) { // error; remark and set fail_b
System.err.println("Error: Expected ~no~ user-supplied handle for this input");
System.err.println(" PDF password: " + argv);
System.err.println();
System.err.println(" Handles must be supplied with ~all~ input");
System.err.println(" PDF passwords, or with ~no~ input PDF passwords.");
System.err.println(" If no handles are supplied, then passwords are applied");
System.err.println(" according to input PDF order.");
System.err.println();
System.err.println(" Handles are given like this: <handle>=<password>, and");
System.err.println(" they must be one or more upper-case letters.");
fail_b = true;
} else {
password_using_handles_b = true;
// look up this handle
Integer it = m_input_pdf_index.get(handle);
if (it != null) { // found
if (m_input_pdf.get(it).m_password.isEmpty()) {
pdftk.warn_if_argument_is_password(data);
m_input_pdf.get(it).m_password = data; // set
} else { // error: password already given
System.err.println("Error: Handle given here: ");
System.err.println(" " + argv);
System.err.println(" is already associated with this password: ");
System.err.println(" " + m_input_pdf.get(it).m_password);
System.err.println(" Exiting.");
fail_b = true;
}
} else { // error: no input file matches this handle
System.err.println("Error: Password handle: " + argv);
System.err.println(" is not associated with an input PDF file.");
System.err.println(" Exiting.");
fail_b = true;
}
}
}
} // end: arg_state== input_pw_e
void parse_state_page_seq() {
if (m_page_seq.isEmpty()) {
// we just got here; validate input filenames
if (m_input_pdf.isEmpty()) { // error; remark and set fail_b
System.err.println("Error: No input files. Exiting.");
fail_b = true;
return;
}
// try opening input PDF readers
if (!open_input_pdf_readers()) { // failure
fail_b = true;
return;
}
} // end: first pass init. pdf files
if (arg_keyword == keyword.output_k) {
arg_state = ArgState.output_filename_e; // advance state
} else if (arg_keyword == keyword.none_k) { // treat argv[ii] like a page sequence
boolean even_pages_b = false;
boolean odd_pages_b = false;
StringBuilder unparsed = new StringBuilder(argv);
HashSet<Integer> exclude = new HashSet<Integer>();
Pattern handle_regex = Pattern.compile("([A-Z]*)");
Matcher m = handle_regex.matcher(unparsed.toString());
m.lookingAt();
String handle = m.group();
unparsed.delete(m.start(), m.end());
int range_pdf_index = 0;
{ // defaults to first input document
if (!handle.isEmpty()) {
// validate handle
Integer it = m_input_pdf_index.get(handle);
if (it == null) { // error
System.err.println("Error: Given handle has no associated file: ");
System.err.println(" " + handle + ", used here: " + argv);
System.err.println(" Exiting.");
fail_b = true;
return;
} else {
range_pdf_index = it;
}
}
}
int num_pages = m_input_pdf.get(range_pdf_index).m_num_pages;
PageRange page_num = new PageRange(num_pages, argv);
if (!page_num.parse(unparsed)) {
fail_b = true;
return;
}
// DF declare rotate vars
PageRotate page_rotate = PageRotate.NORTH;
boolean page_rotate_absolute = false;
// trailing keywords (excluding "end" which should have been handled above)
// possibly more than one keyword, e.g., 3-endevenwest
while (unparsed.length() > 0) {
// read keyword
arg_keyword = keyword.consume_keyword(unparsed);
if (arg_keyword == keyword.even_k) {
even_pages_b = true;
} else if (arg_keyword == keyword.odd_k) {
odd_pages_b = true;
} else if (arg_keyword == keyword.rot_north_k) {
page_rotate = PageRotate.NORTH; // rotate 0
page_rotate_absolute = true;
} else if (arg_keyword == keyword.rot_east_k) {
page_rotate = PageRotate.EAST; // rotate 90
page_rotate_absolute = true;
} else if (arg_keyword == keyword.rot_south_k) {
page_rotate = PageRotate.SOUTH; // rotate 180
page_rotate_absolute = true;
} else if (arg_keyword == keyword.rot_west_k) {
page_rotate = PageRotate.WEST; // rotate 270
page_rotate_absolute = true;
} else if (arg_keyword == keyword.rot_left_k) {
page_rotate = PageRotate.WEST; // rotate -90
page_rotate_absolute = false;
} else if (arg_keyword == keyword.rot_right_k) {
page_rotate = PageRotate.EAST; // rotate +90
page_rotate_absolute = false;
} else if (arg_keyword == keyword.rot_upside_down_k) {
page_rotate = PageRotate.SOUTH; // rotate +180
page_rotate_absolute = false;
} else if (arg_keyword == keyword.range_minus_k) {
PageRange exclude_range = new PageRange(num_pages, argv);
if (exclude_range.parse(unparsed)) {
for (int i = exclude_range.beg; i <= exclude_range.end; ++i) {
exclude.add(i);
}
} else {
System.err.println("Error: Unexpected/invalid range in input after '~':");
System.err.println(" " + argv);
System.err.println(" Exiting.");
}
} else { // error
System.err.println("Error: Unexpected text in page range end, here: ");
System.err.println(" " + argv /*(argv[ii]+ jj)*/);
System.err.println(" Exiting.");
System.err.println(" Acceptable keywords, for example: \"even\" or \"odd\".");
System.err.println(" To rotate pages, use: \"north\" \"south\" \"east\"");
System.err.println(" \"west\" \"left\" \"right\" or \"down\"");
fail_b = true;
return;
}
}
////
// pack this range into our m_page_seq;
if (page_num.beg == 0 && page_num.end == 0) { // ref the entire document
page_num.beg = 1;
page_num.end = m_input_pdf.get(range_pdf_index).m_num_pages;
// test that it's a /full/ pdf
m_cat_full_pdfs_b =
m_cat_full_pdfs_b && (!even_pages_b && !odd_pages_b) && exclude.isEmpty();
} else if (page_num.beg == 0 || page_num.end == 0) { // error
System.err.println("Error: Input page numbers include 0 (zero)");
System.err.println(" The first PDF page is 1 (one)");
System.err.println(" Exiting.");
fail_b = true;
return;
} else // the user specified select pages
m_cat_full_pdfs_b = false;
ArrayList<PageRef> temp_page_seq = new ArrayList<PageRef>();
boolean reverse_sequence_b = (page_num.end < page_num.beg);
if (reverse_sequence_b) { // swap
int temp = page_num.end;
page_num.end = page_num.beg;
page_num.beg = temp;
}
for (int kk = page_num.beg; kk <= page_num.end; ++kk) {
if (even_pages_b && (kk % 2 != 0)) continue;
if (odd_pages_b && (kk % 2 != 1)) continue;
if (exclude.contains(kk)) continue;
if (kk > num_pages) { // error; break later to get most feedback
System.err.println("Error: Page number: " + kk);
System.err.println(
" does not exist in file: " + m_input_pdf.get(range_pdf_index).m_filename);
fail_b = true;
continue;
}
// look to see if this page of this document
// has already been referenced; if it has,
// create a new reader; associate this page
// with a reader;
boolean associated = false;
for (InputPdf.PagesReader it : m_input_pdf.get(range_pdf_index).m_readers) {
if (!it.first.contains(kk)) { // kk not assoc. w/ this reader
it.first.add(kk); // create association
associated = true;
break;
}
}
if (!associated) {
// need to create a new reader for kk
InputPdf.PagesReader new_reader = add_reader(m_input_pdf.get(range_pdf_index));
if (new_reader != null) {
new_reader.first.add(kk);
} else {
System.err.println("Internal Error: unable to add reader");
fail_b = true;
break;
}
}
temp_page_seq.add(
new PageRef(range_pdf_index, kk, page_rotate, page_rotate_absolute)); // DF rotate
}
if (fail_b) return;
if (reverse_sequence_b) {
Collections.reverse(temp_page_seq);
}
m_page_seq.add(temp_page_seq);
} else { // error
System.err.println("Error: expecting page ranges. Instead, I got:");
System.err.println(" " + argv);
fail_b = true;
return;
}
}
void parse_state_form_data_filename() {
if (arg_keyword == keyword.none_k) { // treat argv[ii] like an FDF file filename
if (m_form_data_filename.isEmpty()) {
m_form_data_filename = argv;
} else { // error
System.err.println("Error: Multiple fill_form filenames given: ");
System.err.println(" " + m_form_data_filename + " and " + argv);
System.err.println("Exiting.");
fail_b = true;
return;
}
// advance state
arg_state = ArgState.output_e; // look for an output filename
} else { // error
System.err.println("Error: expecting a form data filename,");
System.err.println(" instead I got this keyword: " + argv);
System.err.println("Exiting.");
fail_b = true;
return;
}
} // end: case form_data_filename_e
void parse_state_attach_file_filename() {
// keep packing filenames until we reach an expected keyword
if (arg_keyword == keyword.attach_file_to_page_k) {
arg_state = ArgState.attach_file_pagenum_e; // advance state
} else if (arg_keyword == keyword.attach_file_relation_k) {
arg_state = ArgState.attach_file_relation_e; // advance state
} else if (arg_keyword == keyword.output_k) {
arg_state = ArgState.output_filename_e; // advance state
} else if (arg_keyword == keyword.none_k) {
// pack argv[ii] into our list of attachment filenames
m_input_attach_file_filename.add(argv);
} else { // error
System.err.println("Error: expecting an attachment filename,");
System.err.println(" instead I got this keyword: " + argv);
System.err.println("Exiting.");
fail_b = true;
return;
}
}
void parse_state_attach_file_pagenum() {
if (argv.equals("PROMPT")) { // query the user, later
m_input_attach_file_pagenum = -1;
} else if (argv.equals("end")) { // attach to the final page
m_input_attach_file_pagenum = -2;
} else {
try {
m_input_attach_file_pagenum = Integer.parseInt(argv);
} catch (NumberFormatException e) { // error
System.err.println("Error: expecting a (1-based) page number. Instead, I got:");
System.err.println(" " + argv);
System.err.println("Exiting.");
fail_b = true;
}
}
// advance state
arg_state = ArgState.output_e; // look for an output filename
} // end: case attach_file_pagenum_e
void parse_state_attach_file_relation() {
if (argv.matches("(?i)Source|Data|Alternative|Supplement|Unspecified")) {
argv = WordUtils.capitalizeFully(argv);
} else {
System.err.println("Warning: non-standard attachment relationship: " + argv + ".");
}
m_input_attach_file_relation = argv;
// advance state
arg_state = ArgState.output_e; // look for an output filename
}
void parse_state_update_info_filename() {
if (arg_keyword == keyword.none_k) {
if (m_update_info_filename.isEmpty()) {
m_update_info_filename = argv;
} else { // error
System.err.println("Error: Multiple update_info filenames given: ");
System.err.println(" " + m_update_info_filename + " and " + argv);
System.err.println("Exiting.");
fail_b = true;
return;
}
} else { // error
System.err.println("Error: expecting an INFO file filename,");
System.err.println(" instead I got this keyword: " + argv);
System.err.println("Exiting.");
fail_b = true;
return;
}
// advance state
arg_state = ArgState.output_e; // look for an output filename
} // end: case update_info_filename_e
/*
case update_xmp_filename_e : {
if( arg_keyword== none_k ) {
if( m_update_xmp_filename.empty() ) {
m_update_xmp_filename= argv[ii];
}
else { // error
cerr << "Error: Multiple update_xmp filenames given: " << endl;
cerr << " " << m_update_xmp_filename << " and " << argv[ii] << endl;
cerr << "Exiting." << endl;
fail_b= true;
break;
}
}
else { // error
cerr << "Error: expecting an XMP file filename," << endl;
cerr << " instead I got this keyword: " << argv[ii] << endl;
cerr << "Exiting." << endl;
fail_b= true;
break;
}
// advance state
arg_state= output_e; // look for an output filename
} // end: case update_xmp_filename_e
break;
*/
void parse_state_output() {
if (m_input_pdf.isEmpty()) { // error; remark and set fail_b
System.err.println("Error: No input files. Exiting.");
fail_b = true;
return;
}
if (arg_keyword == keyword.output_k) {
arg_state = ArgState.output_filename_e; // advance state
} else { // error
System.err.println("Error: expecting \"output\" keyword. Instead, I got:");
System.err.println(" " + argv);
fail_b = true;
return;
}
}
void parse_state_output_filename() {
// we have closed all possible input operations and arguments;
// see if we should perform any default action based on the input state
//
if (m_operation == keyword.none_k) {
if (1 < m_input_pdf.size()) {
// no operation given for multiple input PDF, so combine them
m_operation = keyword.cat_k;
} else {
m_operation = keyword.filter_k;
}
}
// try opening input PDF readers (in case they aren't already)
if (!open_input_pdf_readers()) { // failure
fail_b = true;
return;
}
if ((m_operation == keyword.cat_k || m_operation == keyword.shuffle_k)) {
if (m_page_seq.isEmpty()) {
// combining pages, but no sequences given; merge all input PDFs in order
for (int ii = 0; ii < m_input_pdf.size(); ++ii) {
InputPdf input_pdf = m_input_pdf.get(ii);
ArrayList<PageRef> temp_page_seq = new ArrayList<PageRef>();
for (int jj = 1; jj <= input_pdf.m_num_pages; ++jj) {
temp_page_seq.add(new PageRef(ii, jj)); // DF rotate
input_pdf
.m_readers
.get(input_pdf.m_readers.size() - 1)
.first
.add(jj); // create association
}
m_page_seq.add(temp_page_seq);
}
}
/* no longer necessary -- are upstream testing is smarter
else { // page ranges or docs (e.g. A B A) were given
m_cat_full_pdfs_b= false; // TODO: handle cat A B A case for bookmarks
}
*/
}
if (m_output_filename.isEmpty()) {
m_output_filename = argv;
if (!m_output_filename.equals("-")) { // input and output may both be "-" (stdin and stdout)
// simple-minded test to see if output matches an input filename
for (InputPdf it : m_input_pdf) {
if (it.m_filename.equals(m_output_filename)) {
System.err.println("Error: The given output filename: " + m_output_filename);
System.err.println(" matches an input filename. Exiting.");
fail_b = true;
break;
}
}
}
} else { // error
System.err.println("Error: Multiple output filenames given: ");
System.err.println(" " + m_output_filename + " and " + argv);
System.err.println("Exiting.");
fail_b = true;
return;
}
// advance state
arg_state = ArgState.output_args_e;
}
void parse_state_output_args() {
// output args are order-independent but must follow "output <fn>", if present;
// we are expecting any of these keywords:
// owner_pw_k, user_pw_k, user_perms_k ...
// added output_k case in pdftk 1.10; this permits softer "output <fn>" enforcement
//
ArgStateMutable arg_state_m = new ArgStateMutable();
arg_state_m.value = arg_state;
if (handle_some_output_options(arg_keyword, arg_state_m)) {
arg_state = arg_state_m.value;
} else {
System.err.println("Error: Unexpected data in output section: ");
System.err.println(" " + argv);
System.err.println("Exiting.");
fail_b = true;
return;
}
}
void parse_state_output_owner_pw() {
if (m_output_owner_pw.isEmpty()) {
if (argv.equals("PROMPT") || !argv.equals(m_output_user_pw)) {
pdftk.warn_if_argument_is_password(argv);
m_output_owner_pw = argv;
} else { // error: identical user and owner password
// are interpreted by Acrobat (per the spec.) that
// the doc has no owner password
System.err.println("Error: The user and owner passwords are the same.");
System.err.println(" PDF Viewers interpret this to mean your PDF has");
System.err.println(" no owner password, so they must be different.");
System.err.println(" Or, supply no owner password to pdftk if this is");
System.err.println(" what you desire.");
System.err.println("Exiting.");
fail_b = true;
return;
}
} else { // error: we already have an output owner pw
System.err.println("Error: Multiple output owner passwords given: ");
System.err.println(" " + m_output_owner_pw + " and " + argv);
System.err.println("Exiting.");
fail_b = true;
return;
}
// revert state
arg_state = ArgState.output_args_e;
}
void parse_state_output_user_pw() {
if (m_output_user_pw.isEmpty()) {
if (argv.equals("PROMPT") || !m_output_owner_pw.equals(argv)) {
pdftk.warn_if_argument_is_password(argv);
m_output_user_pw = argv;
} else { // error: identical user and owner password
// are interpreted by Acrobat (per the spec.) that
// the doc has no owner password
System.err.println("Error: The user and owner passwords are the same.");
System.err.println(" PDF Viewers interpret this to mean your PDF has");
System.err.println(" no owner password, so they must be different.");
System.err.println(" Or, supply no owner password to pdftk if this is");
System.err.println(" what you desire.");
System.err.println("Exiting.");
fail_b = true;
return;
}
} else { // error: we already have an output user pw
System.err.println("Error: Multiple output user passwords given: ");
System.err.println(" " + m_output_user_pw + " and " + argv);
System.err.println("Exiting.");
fail_b = true;
return;
}
// revert state
arg_state = ArgState.output_args_e;
}
void parse_state_output_user_perms() {
// we may be given any number of permission arguments,
// so keep an eye out for other, state-altering keywords
ArgStateMutable arg_state_m = new ArgStateMutable();
arg_state_m.value = arg_state;
if (handle_some_output_options(arg_keyword, arg_state_m)) {
arg_state = arg_state_m.value;
return;
}
switch (arg_keyword) {
// possible permissions
case perm_printing_k:
// if both perm_printing_k and perm_degraded_printing_k
// are given, then perm_printing_k wins;
m_output_user_perms |= PdfWriter.AllowPrinting;
break;
case perm_modify_contents_k:
// Acrobat 5 and 6 don't set both bits, even though
// they both respect AllowModifyContents --> AllowAssembly;
// so, no harm in this;
m_output_user_perms |= (PdfWriter.AllowModifyContents | PdfWriter.AllowAssembly);
break;
case perm_copy_contents_k:
// Acrobat 5 _does_ allow the user to allow copying contents
// yet hold back screen reader perms; this is counter-intuitive,
// and Acrobat 6 does not allow Copy w/o SceenReaders;
m_output_user_perms |= (PdfWriter.AllowCopy | PdfWriter.AllowScreenReaders);
break;
case perm_modify_annotations_k:
m_output_user_perms |= (PdfWriter.AllowModifyAnnotations | PdfWriter.AllowFillIn);
break;
case perm_fillin_k:
m_output_user_perms |= PdfWriter.AllowFillIn;
break;
case perm_screen_readers_k:
m_output_user_perms |= PdfWriter.AllowScreenReaders;
break;
case perm_assembly_k:
m_output_user_perms |= PdfWriter.AllowAssembly;
break;
case perm_degraded_printing_k:
m_output_user_perms |= PdfWriter.AllowDegradedPrinting;
break;
case perm_all_k:
m_output_user_perms =
(PdfWriter.AllowPrinting
| // top quality printing
PdfWriter.AllowModifyContents
| PdfWriter.AllowCopy
| PdfWriter.AllowModifyAnnotations
| PdfWriter.AllowFillIn
| PdfWriter.AllowScreenReaders
| PdfWriter.AllowAssembly);
break;
default: // error: unexpected matter
System.err.println("Error: Unexpected data in output section: ");
System.err.println(" " + argv);
System.err.println("Exiting.");
fail_b = true;
break;
}
}
void parse_state_background_filename() {
if (arg_keyword == keyword.none_k) {
if (m_background_filename.isEmpty()) {
m_background_filename = argv;
} else { // error
System.err.println("Error: Multiple background filenames given: ");
System.err.println(" " + m_background_filename + " and " + argv);
System.err.println("Exiting.");
fail_b = true;
return;
}
} else { // error
System.err.println("Error: expecting a PDF filename for background operation,");
System.err.println(" instead I got this keyword: " + argv);
System.err.println("Exiting.");
fail_b = true;
return;
}
// revert state
// this is more liberal than used with other operations, since we want
// to preserve backward-compatibility with pdftk 1.00 where "background"
// was documented as an output option; in pdftk 1.10 we changed it to
// an operation
arg_state = ArgState.output_args_e;
}
void parse_state_stamp_filename() {
if (arg_keyword == keyword.none_k) {
if (m_stamp_filename.isEmpty()) {
m_stamp_filename = argv;
} else { // error
System.err.println("Error: Multiple stamp filenames given: ");
System.err.println(" " + m_stamp_filename + " and " + argv);
System.err.println("Exiting.");
fail_b = true;
return;
}
} else { // error
System.err.println("Error: expecting a PDF filename for stamp operation,");
System.err.println(" instead I got this keyword: " + argv);
System.err.println("Exiting.");
fail_b = true;
return;
}
// advance state
arg_state = ArgState.output_e; // look for an output filename
}
void parse_state_replacement_font_filename() {
m_replacement_font = argv;
arg_state = ArgState.output_args_e;
}
}
void parse(String[] args) {
new Parser().parse(args);
}
boolean is_valid() {
return (m_valid_b
&& (m_operation == keyword.dump_data_k
|| m_operation == keyword.dump_data_fields_k
|| m_operation == keyword.dump_data_annots_k
|| m_operation == keyword.generate_fdf_k
|| m_authorized_b)
&& !m_input_pdf.isEmpty()
&& m_input_pdf_readers_opened_b
&& (m_operation == keyword.cat_k
|| m_operation == keyword.shuffle_k
|| m_operation == keyword.burst_k
|| m_operation == keyword.filter_k
|| m_operation == keyword.dump_data_k
|| m_operation == keyword.dump_data_utf8_k
|| m_operation == keyword.dump_data_fields_k
|| m_operation == keyword.dump_data_fields_utf8_k
|| m_operation == keyword.dump_data_annots_k
|| m_operation == keyword.generate_fdf_k
|| m_operation == keyword.unpack_files_k)
&&
// these op.s require a single input PDF file
(!(m_operation == keyword.burst_k || m_operation == keyword.filter_k)
|| (m_input_pdf.size() == 1))
&&
// these op.s do not require an output filename
(m_operation == keyword.burst_k
|| m_operation == keyword.dump_data_k
|| m_operation == keyword.dump_data_fields_k
|| m_operation == keyword.dump_data_annots_k
|| m_operation == keyword.generate_fdf_k
|| m_operation == keyword.unpack_files_k
|| !m_output_filename.isEmpty()));
}
void dump_session_data() {
if (!m_verbose_reporting_b) return;
if (!m_input_pdf_readers_opened_b) {
System.out.println("Input PDF Open Errors");
return;
}
//
if (is_valid()) {
System.out.println("Command Line Data is valid.");
} else {
System.out.println("Command Line Data is NOT valid.");
}
// input files
System.out.println();
System.out.println("Input PDF Filenames & Passwords in Order\n( <filename>[, <password>] ) ");
if (m_input_pdf.isEmpty()) {
System.out.println(" No input PDF filenames have been given.");
} else {
for (InputPdf it : m_input_pdf) {
System.out.print(" " + it.m_filename);
if (!it.m_password.isEmpty()) {
System.out.print(", " + it.m_password);
}
if (!it.m_authorized_b) {
System.out.print(", OWNER OR USER PASSWORD REQUIRED, but not given (or incorrect)");
}
System.out.println();
}
}
// operation
System.out.println();
System.out.println("The operation to be performed: ");
switch (m_operation) {
case cat_k:
System.out.println(" cat - Catenate given page ranges into a new PDF.");
break;
case shuffle_k:
System.out.println(" shuffle - Interleave given page ranges into a new PDF.");
break;
case burst_k:
System.out.println(" burst - Split a single, input PDF into individual pages.");
break;
case filter_k:
System.out.println(
" filter - Apply 'filters' to a single, input PDF based on output args.");
System.out.println(" (When the operation is omitted, this is the default.)");
break;
case dump_data_k:
System.out.println(" dump_data - Report statistics on a single, input PDF.");
break;
case dump_data_fields_k:
System.out.println(" dump_data_fields - Report form field data on a single, input PDF.");
break;
case dump_data_annots_k:
System.out.println(" dump_data_annots - Report annotation data on a single, input PDF.");
break;
case generate_fdf_k:
System.out.println(" generate_fdf - Generate a dummy FDF file from a PDF.");
break;
case unpack_files_k:
System.out.println(" unpack_files - Copy PDF file attachments into given directory.");
break;
case none_k:
System.out.println(" NONE - No operation has been given. See usage instructions.");
break;
default:
System.out.println(" INTERNAL ERROR - An unexpected operation has been given.");
break;
}
// pages
/*
cout << endl;
cout << "The following pages will be operated on, in the given order." << endl;
if( m_page_seq.empty() ) {
cout << " No pages or page ranges have been given." << endl;
}
else {
for( vector< PageRef >::const_iterator it= m_page_seq.begin();
it!= m_page_seq.end(); ++it )
{
map< string, InputPdf >::const_iterator jt=
m_input_pdf.find( it->m_handle );
if( jt!= m_input_pdf.end() ) {
cout << " Handle: " << it->m_handle << " File: " << jt->second.m_filename;
cout << " Page: " << it->m_page_num << endl;
}
else { // error
cout << " Internal Error: handle not found in m_input_pdf: " << it->m_handle << endl;
}
}
}
*/
// output file; may be PDF or text
System.out.println();
System.out.println("The output file will be named:");
if (m_output_filename.isEmpty()) {
System.out.println(" No output filename has been given.");
} else {
System.out.println(" " + m_output_filename);
}
// output encryption
System.out.println();
boolean output_encrypted_b =
m_output_encryption_strength != encryption_strength.none_enc
|| !m_output_user_pw.isEmpty()
|| !m_output_owner_pw.isEmpty();
System.out.println("Output PDF encryption settings:");
if (output_encrypted_b) {
System.out.println(" Output PDF will be encrypted.");
switch (m_output_encryption_strength) {
case none_enc:
System.out.println(" Encryption strength not given. Defaulting to: AES 128 bits.");
break;
case rc4_40_enc:
System.out.println(" Given output encryption strength: AES 40 bits");
break;
case rc4_128_enc:
System.out.println(" Given output encryption strength: RC4 128 bits");
break;
case aes128_enc:
System.out.println(" Given output encryption strength: AES 128 bits");
}
System.out.println();
{
if (m_output_user_pw.isEmpty()) System.out.println(" No user password given.");
else System.out.println(" Given user password: " + m_output_user_pw);
if (m_output_owner_pw.isEmpty()) System.out.println(" No owner password given.");
else System.out.println(" Given owner password: " + m_output_owner_pw);
//
// the printing section: Top Quality or Degraded, but not both;
// AllowPrinting is a superset of both flag settings
if ((m_output_user_perms & PdfWriter.AllowPrinting) == PdfWriter.AllowPrinting)
System.out.println(" ALLOW Top Quality Printing");
else if ((m_output_user_perms & PdfWriter.AllowPrinting) == PdfWriter.AllowDegradedPrinting)
System.out.println(" ALLOW Degraded Printing (Top-Quality Printing NOT Allowed)");
else System.out.println(" Printing NOT Allowed");
if ((m_output_user_perms & PdfWriter.AllowModifyContents) == PdfWriter.AllowModifyContents)
System.out.println(" ALLOW Modifying of Contents");
else System.out.println(" Modifying of Contents NOT Allowed");
if ((m_output_user_perms & PdfWriter.AllowCopy) == PdfWriter.AllowCopy)
System.out.println(" ALLOW Copying of Contents");
else System.out.println(" Copying of Contents NOT Allowed");
if ((m_output_user_perms & PdfWriter.AllowModifyAnnotations)
== PdfWriter.AllowModifyAnnotations)
System.out.println(" ALLOW Modifying of Annotations");
else System.out.println(" Modifying of Annotations NOT Allowed");
if ((m_output_user_perms & PdfWriter.AllowFillIn) == PdfWriter.AllowFillIn)
System.out.println(" ALLOW Fill-In");
else System.out.println(" Fill-In NOT Allowed");
if ((m_output_user_perms & PdfWriter.AllowScreenReaders) == PdfWriter.AllowScreenReaders)
System.out.println(" ALLOW Screen Readers");
else System.out.println(" Screen Readers NOT Allowed");
if ((m_output_user_perms & PdfWriter.AllowAssembly) == PdfWriter.AllowAssembly)
System.out.println(" ALLOW Assembly");
else System.out.println(" Assembly NOT Allowed");
}
} else {
System.out.println(" Output PDF will not be encrypted.");
}
// compression filter
System.out.println();
if (m_operation != keyword.filter_k
|| output_encrypted_b
|| !(m_output_compress_b || m_output_uncompress_b)) {
System.out.println("No compression or uncompression being performed on output.");
} else {
if (m_output_compress_b) {
System.out.println("Compression will be applied to some PDF streams.");
} else {
System.out.println("Some PDF streams will be uncompressed.");
}
}
}
static void apply_rotation_to_page(
PdfReader reader_p, int page_num, int rotation, boolean absolute) {
// DF rotate
PdfDictionary page_p = reader_p.getPageN(page_num);
if (!absolute) {
rotation = reader_p.getPageRotation(page_num) + rotation;
}
rotation = rotation % 360;
page_p.remove(PdfName.ROTATE);
if (rotation != PageRotate.NORTH.value) { // default rotation
page_p.put(PdfName.ROTATE, new PdfNumber(rotation));
}
}
char prepare_writer(PdfWriter writer_p) throws DocumentException {
// un/compress output streams?
if (m_output_uncompress_b) {
writer_p.filterStreams = true;
writer_p.compressStreams = false;
} else if (m_output_compress_b) {
writer_p.filterStreams = false;
writer_p.compressStreams = true;
}
// encrypt output?
if (m_output_encryption_strength != encryption_strength.none_enc
|| !m_output_owner_pw.isEmpty()
|| !m_output_user_pw.isEmpty()) {
// if no strength is given, default to AES 128 bit,
if (m_output_encryption_strength == encryption_strength.none_enc) {
m_output_encryption_strength = encryption_strength.aes128_enc;
}
writer_p.setEncryption(
m_output_user_pw_pdfdoc,
m_output_owner_pw_pdfdoc,
m_output_user_perms,
m_output_encryption_strength.value);
}
return m_output_encryption_strength.pdf_version;
}
ErrorCode create_output() {
if (!is_valid()) return ErrorCode.ERROR;
/*
bool rdfcat_available_b= false;
{ // is rdfcat available? first character should be a digit;
// grab stderr to keep messages appearing to user;
// 2>&1 might not work on older versions of Windows (e.g., 98);
FILE* pp= popen( "rdfcat --version 2>&1", "r" );
if( pp ) {
int cc= fgetc( pp );
if( '0'<= cc && cc<= '9' ) {
rdfcat_available_b= true;
}
pclose( pp );
}
}
*/
if (m_verbose_reporting_b) {
System.out.println();
System.out.println("Creating Output ...");
}
if (m_output_owner_pw.equals("PROMPT")) {
m_output_owner_pw = pdftk.prompt_for_password("owner", "the output PDF");
}
if (m_output_user_pw.equals("PROMPT")) {
m_output_user_pw = pdftk.prompt_for_password("user", "the output PDF");
}
if (!m_output_owner_pw.isEmpty()) {
m_output_owner_pw_pdfdoc = passwords.utf8_password_to_pdfdoc(m_output_owner_pw, true);
if (m_output_owner_pw_pdfdoc == null) { // error
System.err.println("Error: Owner password used to encrypt output PDF includes");
System.err.println(" invalid characters.");
return ErrorCode.ERROR;
}
}
if (!m_output_user_pw.isEmpty()) {
m_output_user_pw_pdfdoc = passwords.utf8_password_to_pdfdoc(m_output_user_pw, true);
if (m_output_user_pw_pdfdoc == null) { // error
System.err.println("Error: User password used to encrypt output PDF includes");
System.err.println(" invalid characters.");
return ErrorCode.ERROR;
}
}
switch (m_operation) {
case burst_k:
case dump_data_fields_k:
case dump_data_annots_k:
case dump_data_k:
case generate_fdf_k:
case unpack_files_k:
// we should have been given only a single, input file
if (1 < m_input_pdf.size()) { // error
System.err.println(
"Error: Only one input PDF file may be used for the " + m_operation + " operation");
return ErrorCode.ERROR;
}
}
try {
switch (m_operation) {
case cat_k:
case shuffle_k:
cat cat = new cat(this);
return cat.create_output_cat();
case burst_k:
burst burst = new burst(this);
return burst.create_output_burst();
case filter_k:
filter filter = new filter(this);
return filter.create_output_filter();
case dump_data_fields_k:
case dump_data_annots_k:
case dump_data_k:
{ // report on input document
PdfReader input_reader_p = m_input_pdf.get(0).m_readers.get(0).second;
try {
PrintStream ofs = pdftk.get_print_stream(m_output_filename, m_output_utf8_b);
if (m_operation == keyword.dump_data_k) {
report.ReportOnPdf(ofs, input_reader_p, m_output_utf8_b);
} else if (m_operation == keyword.dump_data_fields_k) {
report.ReportAcroFormFields(ofs, input_reader_p, m_output_utf8_b);
} else if (m_operation == keyword.dump_data_annots_k) {
report.ReportAnnots(ofs, input_reader_p, m_output_utf8_b);
}
} catch (FileNotFoundException e) { // error
System.err.println("Error: unable to open file for output: " + m_output_filename);
return ErrorCode.ERROR;
}
}
break;
case generate_fdf_k:
{ // create a dummy FDF file that would work with the input PDF form
PdfReader input_reader_p = m_input_pdf.get(0).m_readers.get(0).second;
OutputStream ofs_p = pdftk.get_output_stream(m_output_filename, m_ask_about_warnings_b);
if (ofs_p != null) {
FdfWriter writer_p = new FdfWriter();
input_reader_p.getAcroFields().exportAsFdf(writer_p);
writer_p.writeTo(ofs_p);
// no writer_p->close() function
// delete writer_p; // OK? GC? -- NOT okay!
} else { // error: get_output_stream() reports error
return ErrorCode.ERROR;
}
}
break;
case unpack_files_k:
{ // copy PDF file attachments into current directory
PdfReader input_reader_p = m_input_pdf.get(0).m_readers.get(0).second;
attachments attachments = new attachments(this);
attachments.unpack_files(input_reader_p);
}
break;
default:
// error
System.err.println("Unexpected pdftk Error in create_output()");
return ErrorCode.BUG;
}
} catch (NoClassDefFoundError error) {
pdftk.describe_missing_library(error);
return ErrorCode.ERROR;
} catch (Throwable t_p) {
System.err.println("Unhandled Java Exception in create_output():");
t_p.printStackTrace();
return ErrorCode.BUG;
}
return ErrorCode.NO_ERROR;
}
private enum ArgState {
input_files_e,
input_pw_e,
page_seq_e,
form_data_filename_e,
attach_file_filename_e,
attach_file_pagenum_e,
attach_file_relation_e,
update_info_filename_e,
update_xmp_filename_e,
output_e, // state where we expect output_k, next
output_filename_e,
output_args_e, // output args are order-independent; switch here
output_owner_pw_e,
output_user_pw_e,
output_user_perms_e,
background_filename_e,
stamp_filename_e,
replacement_font_filename_e,
done_e
};
static class ArgStateMutable {
ArgState value;
}
// convenience function; return true iff handled
private boolean handle_some_output_options(keyword kw, ArgStateMutable arg_state_p) {
switch (kw) {
case output_k:
// added this case for the burst operation and "output" support;
// also helps with backward compatibility of the "background" feature
// change state
arg_state_p.value = ArgState.output_filename_e;
break;
// state-altering keywords
case owner_pw_k:
// change state
arg_state_p.value = ArgState.output_owner_pw_e;
break;
case user_pw_k:
// change state
arg_state_p.value = ArgState.output_user_pw_e;
break;
case user_perms_k:
// change state
arg_state_p.value = ArgState.output_user_perms_e;
break;
////
// no arguments to these keywords, so the state remains unchanged
case encrypt_40bit_k:
m_output_encryption_strength = encryption_strength.rc4_40_enc;
break;
case encrypt_128bit_k:
m_output_encryption_strength = encryption_strength.rc4_128_enc;
break;
case encrypt_aes128_k:
m_output_encryption_strength = encryption_strength.aes128_enc;
break;
case filt_uncompress_k:
m_output_uncompress_b = true;
break;
case filt_compress_k:
m_output_compress_b = true;
break;
case flatten_k:
m_output_flatten_b = true;
break;
case need_appearances_k:
m_output_need_appearances_b = true;
break;
case drop_xfa_k:
m_output_drop_xfa_b = true;
break;
case drop_xmp_k:
m_output_drop_xmp_b = true;
break;
case keep_first_id_k:
m_output_keep_first_id_b = true;
break;
case keep_final_id_k:
m_output_keep_final_id_b = true;
break;
case verbose_k:
m_verbose_reporting_b = true;
break;
case dont_ask_k:
m_ask_about_warnings_b = false;
break;
case do_ask_k:
m_ask_about_warnings_b = true;
break;
case background_k:
if (m_operation != keyword.filter_k) { // warning
System.err.println(
"Warning: the \"background\" output option works only in filter mode.");
System.err.println(" This means it won't work in combination with \"cat\", \"burst\",");
System.err.println(" \"attach_file\", etc. To run pdftk in filter mode, simply omit");
System.err.println(
" the operation, e.g.: pdftk in.pdf output out.pdf background back.pdf");
System.err.println(
" Or, use background as an operation; this is the preferred technique:");
System.err.println(" pdftk in.pdf background back.pdf output out.pdf");
}
// change state
arg_state_p.value = ArgState.background_filename_e;
break;
case replacement_font_k:
arg_state_p.value = ArgState.replacement_font_filename_e;
break;
default: // not handled here; no change to *arg_state_p
return false;
}
return true;
}
}
|