From 630bf4ddf6be4761ce511907bad30a9d7cffb29a Mon Sep 17 00:00:00 2001 From: HyungKyu Song Date: Sat, 16 Feb 2013 00:53:53 +0900 Subject: [PATCH] Tizen 2.0 Release --- Artistic-2.0 | 191 + ChangeLog | 682 ++ INSTALL | 216 + Makefile | 135 + README | 142 + README-what-to-download.txt | 52 + README-windows-install.txt | 10 + README-windows.txt | 220 + README.maintainer | 143 + TODO | 178 + autoconf.mk.in | 41 + autogen.sh | 4 + config-mingw32 | 13 + config-mingw64 | 10 + config-msvc | 11 + config.guess | 1530 ++++ config.sub | 1773 ++++ configure.ac | 421 + copy_dlls | 126 + debian/changelog | 15 + doc/stylesheet.css | 284 + examples/Makefile | 1 + examples/build.mk | 40 + examples/examples.testcov | 19 + examples/pdf-bookmarks.cc | 257 + examples/pdf-create.cc | 183 + examples/pdf-double-page-size.cc | 110 + examples/pdf-invert-images.cc | 170 + examples/pdf-linearize.c | 80 + examples/pdf-mod-info.cc | 233 + examples/pdf-npages.cc | 55 + examples/qtest/bookmarks.test | 49 + examples/qtest/bookmarks/1.pdf | 1502 +++ examples/qtest/bookmarks/2.pdf | 79 + examples/qtest/bookmarks/3.pdf | 1 + examples/qtest/bookmarks/4.pdf | Bin 0 -> 11561 bytes examples/qtest/bookmarks/5.pdf | 1573 ++++ examples/qtest/bookmarks/encrypted.out | 11 + .../qtest/bookmarks/test.-show-open.-lines.out | 22 + .../qtest/bookmarks/test.-show-open.-numbers.out | 11 + examples/qtest/bookmarks/test.-show-open..out | 11 + examples/qtest/bookmarks/test..-lines.out | 22 + examples/qtest/bookmarks/test..-numbers.out | 11 + examples/qtest/bookmarks/test...out | 11 + examples/qtest/create.test | 29 + examples/qtest/create/orange-square.pdf | Bin 0 -> 1088 bytes examples/qtest/double-page-size.test | 32 + examples/qtest/double-page-size/in.pdf | 55 + examples/qtest/double-page-size/out.pdf | 69 + examples/qtest/invert-images.test | 32 + examples/qtest/invert-images/in.pdf | Bin 0 -> 4328 bytes examples/qtest/invert-images/out.pdf | Bin 0 -> 4328 bytes examples/qtest/linearize.test | 32 + examples/qtest/linearize/check.out | 6 + examples/qtest/linearize/input.pdf | 79 + examples/qtest/mod-info.test | 100 + examples/qtest/mod-info/dump.out | 11 + examples/qtest/mod-info/files/1.qdf | Bin 0 -> 6842 bytes examples/qtest/mod-info/files/2.qdf | 1338 +++ examples/qtest/mod-info/files/3.qdf | Bin 0 -> 6245 bytes examples/qtest/mod-info/files/4.qdf | Bin 0 -> 6252 bytes examples/qtest/mod-info/files/empty-info.pdf | Bin 0 -> 5802 bytes examples/qtest/mod-info/files/no-info.pdf | Bin 0 -> 5790 bytes examples/qtest/mod-info/files/source1.pdf | Bin 0 -> 5932 bytes examples/qtest/mod-info/files/source2.pdf | Bin 0 -> 157418 bytes examples/qtest/mod-info/usage.out | 5 + examples/qtest/npages.test | 23 + examples/qtest/npages/bad | 1 + examples/qtest/npages/minimal.pdf | 79 + include/qpdf/Buffer.hh | 53 + include/qpdf/BufferInputSource.hh | 30 + include/qpdf/Constants.h | 61 + include/qpdf/DLL.h | 18 + include/qpdf/FileInputSource.hh | 32 + include/qpdf/InputSource.hh | 35 + include/qpdf/Pipeline.hh | 65 + include/qpdf/Pl_Buffer.hh | 51 + include/qpdf/Pl_Concatenate.hh | 32 + include/qpdf/Pl_Count.hh | 41 + include/qpdf/Pl_Discard.hh | 32 + include/qpdf/Pl_Flate.hh | 42 + include/qpdf/Pl_StdioFile.hh | 40 + include/qpdf/PointerHolder.hh | 172 + include/qpdf/QPDF.hh | 1015 ++ include/qpdf/QPDFExc.hh | 63 + include/qpdf/QPDFObject.hh | 44 + include/qpdf/QPDFObjectHandle.hh | 565 ++ include/qpdf/QPDFTokenizer.hh | 159 + include/qpdf/QPDFWriter.hh | 391 + include/qpdf/QPDFXRefEntry.hh | 43 + include/qpdf/QTC.hh | 19 + include/qpdf/QUtil.hh | 88 + include/qpdf/Types.h | 11 + include/qpdf/qpdf-c.h | 379 + install-sh | 527 ++ ispell-words | 1207 +++ libqpdf.map | 4 + libqpdf.pc.in | 10 + libqpdf/BitStream.cc | 44 + libqpdf/BitWriter.cc | 28 + libqpdf/Buffer.cc | 94 + libqpdf/BufferInputSource.cc | 153 + libqpdf/FileInputSource.cc | 141 + libqpdf/InputSource.cc | 41 + libqpdf/MD5.cc | 440 + libqpdf/Makefile | 1 + libqpdf/PCRE.cc | 354 + libqpdf/Pipeline.cc | 24 + libqpdf/Pl_AES_PDF.cc | 226 + libqpdf/Pl_ASCII85Decoder.cc | 131 + libqpdf/Pl_ASCIIHexDecoder.cc | 109 + libqpdf/Pl_Buffer.cc | 66 + libqpdf/Pl_Concatenate.cc | 28 + libqpdf/Pl_Count.cc | 41 + libqpdf/Pl_Discard.cc | 22 + libqpdf/Pl_Flate.cc | 222 + libqpdf/Pl_LZWDecoder.cc | 228 + libqpdf/Pl_MD5.cc | 55 + libqpdf/Pl_PNGFilter.cc | 146 + libqpdf/Pl_QPDFTokenizer.cc | 198 + libqpdf/Pl_RC4.cc | 56 + libqpdf/Pl_StdioFile.cc | 50 + libqpdf/QPDF.cc | 2049 +++++ libqpdf/QPDFExc.cc | 86 + libqpdf/QPDFObject.cc | 1 + libqpdf/QPDFObjectHandle.cc | 1306 +++ libqpdf/QPDFTokenizer.cc | 522 ++ libqpdf/QPDFWriter.cc | 2476 +++++ libqpdf/QPDFXRefEntry.cc | 61 + libqpdf/QPDF_Array.cc | 98 + libqpdf/QPDF_Bool.cc | 22 + libqpdf/QPDF_Dictionary.cc | 115 + libqpdf/QPDF_Integer.cc | 24 + libqpdf/QPDF_Name.cc | 48 + libqpdf/QPDF_Null.cc | 11 + libqpdf/QPDF_Real.cc | 29 + libqpdf/QPDF_Reserved.cc | 13 + libqpdf/QPDF_Stream.cc | 481 + libqpdf/QPDF_String.cc | 211 + libqpdf/QPDF_encryption.cc | 930 ++ libqpdf/QPDF_linearization.cc | 2137 +++++ libqpdf/QPDF_optimization.cc | 556 ++ libqpdf/QPDF_pages.cc | 272 + libqpdf/QTC.cc | 45 + libqpdf/QUtil.cc | 335 + libqpdf/RC4.cc | 55 + libqpdf/bits.icc | 149 + libqpdf/build.mk | 83 + libqpdf/qpdf-c.cc | 593 ++ libqpdf/qpdf/BitStream.hh | 29 + libqpdf/qpdf/BitWriter.hh | 29 + libqpdf/qpdf/MD5.hh | 92 + libqpdf/qpdf/PCRE.hh | 117 + libqpdf/qpdf/Pl_AES_PDF.hh | 55 + libqpdf/qpdf/Pl_ASCII85Decoder.hh | 26 + libqpdf/qpdf/Pl_ASCIIHexDecoder.hh | 26 + libqpdf/qpdf/Pl_LZWDecoder.hh | 43 + libqpdf/qpdf/Pl_MD5.hh | 34 + libqpdf/qpdf/Pl_PNGFilter.hh | 52 + libqpdf/qpdf/Pl_QPDFTokenizer.hh | 41 + libqpdf/qpdf/Pl_RC4.hh | 32 + libqpdf/qpdf/QPDF_Array.hh | 33 + libqpdf/qpdf/QPDF_Bool.hh | 18 + libqpdf/qpdf/QPDF_Dictionary.hh | 40 + libqpdf/qpdf/QPDF_Integer.hh | 18 + libqpdf/qpdf/QPDF_Name.hh | 21 + libqpdf/qpdf/QPDF_Null.hh | 13 + libqpdf/qpdf/QPDF_Real.hh | 20 + libqpdf/qpdf/QPDF_Reserved.hh | 13 + libqpdf/qpdf/QPDF_Stream.hh | 61 + libqpdf/qpdf/QPDF_String.hh | 22 + libqpdf/qpdf/RC4.hh | 25 + libqpdf/qpdf/rijndael.h | 25 + libqpdf/rijndael.cc | 1206 +++ libtests/Makefile | 1 + libtests/aes.cc | 112 + libtests/ascii85.cc | 37 + libtests/bits.cc | 177 + libtests/buffer.cc | 71 + libtests/build.mk | 41 + libtests/concatenate.cc | 38 + libtests/flate.cc | 113 + libtests/hex.cc | 37 + libtests/libtests.testcov | 18 + libtests/lzw.cc | 60 + libtests/md5.cc | 74 + libtests/pcre.cc | 30 + libtests/png_filter.cc | 86 + libtests/pointer_holder.cc | 97 + libtests/qtest/aes.test | 71 + libtests/qtest/aes/data1 | Bin 0 -> 17041 bytes libtests/qtest/aes/data2 | Bin 0 -> 16000 bytes libtests/qtest/aes/test-vector.cipher | 1 + libtests/qtest/aes/test-vector.clear | Bin 0 -> 16 bytes libtests/qtest/ascii85.test | 23 + libtests/qtest/ascii85/base85.in | 43 + libtests/qtest/ascii85/binary.out | Bin 0 -> 2048 bytes libtests/qtest/bits.test | 18 + libtests/qtest/bits/bits.out | 59 + libtests/qtest/buffer.test | 18 + libtests/qtest/buffer/buffer.out | 11 + libtests/qtest/flate.test | 74 + libtests/qtest/flate/compressed | Bin 0 -> 147 bytes libtests/qtest/hex.test | 22 + libtests/qtest/hex/binary.out | Bin 0 -> 2048 bytes libtests/qtest/hex/hex.in | 70 + libtests/qtest/lzw.test | 39 + libtests/qtest/lzw/lzw1.in | Bin 0 -> 64355 bytes libtests/qtest/lzw/lzw1.out | 4299 +++++++++ libtests/qtest/lzw/lzw2.in | Bin 0 -> 38344 bytes libtests/qtest/lzw/lzw2.out | Bin 0 -> 143954 bytes libtests/qtest/md5.test | 18 + libtests/qtest/md5/md5.in | Bin 0 -> 250 bytes libtests/qtest/md5/md5.out | 16 + libtests/qtest/pcre.test | 47 + libtests/qtest/pcre/pcre-unicode-classes.out | 2 + libtests/qtest/pcre/pcre.out | 68 + libtests/qtest/ph.test | 18 + libtests/qtest/ph/ph.out | 17 + libtests/qtest/png_filter.test | 63 + libtests/qtest/png_filter/in1 | Bin 0 -> 3985 bytes libtests/qtest/png_filter/in2 | Bin 0 -> 339564 bytes libtests/qtest/png_filter/out1 | Bin 0 -> 3188 bytes libtests/qtest/png_filter/out2 | Bin 0 -> 282970 bytes libtests/qtest/qutil.test | 18 + libtests/qtest/qutil/qutil.out | 30 + libtests/qtest/rc4.test | 45 + libtests/qtest/rc4/test1.in | 1 + libtests/qtest/rc4/test1.out | 1 + libtests/qtest/rc4/test2.in | Bin 0 -> 8 bytes libtests/qtest/rc4/test2.out | 1 + libtests/qtest/rc4/test3.in | Bin 0 -> 8 bytes libtests/qtest/rc4/test3.out | 1 + libtests/qtest/rc4/test4.in | Bin 0 -> 10 bytes libtests/qtest/rc4/test4.out | 1 + libtests/qtest/rc4/test5.in | 1 + libtests/qtest/rc4/test5.out | Bin 0 -> 512 bytes libtests/qutil.cc | 199 + libtests/rc4.cc | 75 + ltmain.sh | 9661 ++++++++++++++++++++ m4/libtool.m4 | 8001 ++++++++++++++++ m4/ltoptions.m4 | 384 + m4/ltsugar.m4 | 123 + m4/ltversion.m4 | 23 + m4/lt~obsolete.m4 | 98 + make/gcc-linux.mk | 87 + make/installwin.mk | 21 + make/libtool.mk | 133 + make/mingw.mk | 83 + make/msvc.mk | 107 + make/proxy.mk | 10 + make/rules.mk | 49 + make_dist | 165 + make_windows_releases | 27 + make_windows_releases-finish | 24 + make_windows_releases-msvc | 21 + manual/Makefile | 1 + manual/README | 3 + manual/build.mk | 43 + manual/common.xsl | 9 + manual/fix-qdf.1.in | 18 + manual/html.xsl.in | 8 + manual/print.xsl.in | 69 + manual/qpdf-manual.xml | 3277 +++++++ manual/qpdf.1.in | 19 + manual/zlib-flate.1.in | 26 + mkinstalldirs | 162 + packaging/qpdf.spec | 105 + qpdf.manifest | 6 + qpdf.spec | 94 + qpdf/Makefile | 1 + qpdf/build.mk | 33 + qpdf/fix-qdf | 373 + qpdf/pdf_from_scratch.cc | 120 + qpdf/qpdf-ctest.c | 447 + qpdf/qpdf.cc | 1625 ++++ qpdf/qpdf.testcov | 244 + qpdf/qtest/qpdf.test | 1922 ++++ qpdf/qtest/qpdf/20-pages.pdf | Bin 0 -> 7343 bytes qpdf/qtest/qpdf/U25A0.1-ogen.c-check | 3 + qpdf/qtest/qpdf/U25A0.1-ogen.check | 6 + qpdf/qtest/qpdf/U25A0.1.c-check | 3 + qpdf/qtest/qpdf/U25A0.1.check | 6 + qpdf/qtest/qpdf/U25A0.10-ogen.c-check | 13 + qpdf/qtest/qpdf/U25A0.10-ogen.check | 17 + qpdf/qtest/qpdf/U25A0.10.c-check | 13 + qpdf/qtest/qpdf/U25A0.10.check | 17 + qpdf/qtest/qpdf/U25A0.11-ogen.c-check | 13 + qpdf/qtest/qpdf/U25A0.11-ogen.check | 17 + qpdf/qtest/qpdf/U25A0.11.c-check | 13 + qpdf/qtest/qpdf/U25A0.11.check | 17 + qpdf/qtest/qpdf/U25A0.12-ogen.c-check | 13 + qpdf/qtest/qpdf/U25A0.12-ogen.check | 17 + qpdf/qtest/qpdf/U25A0.12.c-check | 13 + qpdf/qtest/qpdf/U25A0.12.check | 17 + qpdf/qtest/qpdf/U25A0.2-ogen.c-check | 3 + qpdf/qtest/qpdf/U25A0.2-ogen.check | 6 + qpdf/qtest/qpdf/U25A0.2.c-check | 3 + qpdf/qtest/qpdf/U25A0.2.check | 6 + qpdf/qtest/qpdf/U25A0.3-ogen.c-check | 3 + qpdf/qtest/qpdf/U25A0.3-ogen.check | 6 + qpdf/qtest/qpdf/U25A0.3.c-check | 3 + qpdf/qtest/qpdf/U25A0.3.check | 6 + qpdf/qtest/qpdf/U25A0.4-ogen.c-check | 3 + qpdf/qtest/qpdf/U25A0.4-ogen.check | 6 + qpdf/qtest/qpdf/U25A0.4.c-check | 3 + qpdf/qtest/qpdf/U25A0.4.check | 6 + qpdf/qtest/qpdf/U25A0.5-ogen.c-check | 3 + qpdf/qtest/qpdf/U25A0.5-ogen.check | 6 + qpdf/qtest/qpdf/U25A0.5.c-check | 3 + qpdf/qtest/qpdf/U25A0.5.check | 6 + qpdf/qtest/qpdf/U25A0.6-ogen.c-check | 3 + qpdf/qtest/qpdf/U25A0.6-ogen.check | 6 + qpdf/qtest/qpdf/U25A0.6.c-check | 3 + qpdf/qtest/qpdf/U25A0.6.check | 6 + qpdf/qtest/qpdf/U25A0.7-ogen.c-check | 3 + qpdf/qtest/qpdf/U25A0.7-ogen.check | 6 + qpdf/qtest/qpdf/U25A0.7.c-check | 3 + qpdf/qtest/qpdf/U25A0.7.check | 6 + qpdf/qtest/qpdf/U25A0.8-ogen.c-check | 3 + qpdf/qtest/qpdf/U25A0.8-ogen.check | 6 + qpdf/qtest/qpdf/U25A0.8.c-check | 3 + qpdf/qtest/qpdf/U25A0.8.check | 6 + qpdf/qtest/qpdf/U25A0.9-ogen.c-check | 13 + qpdf/qtest/qpdf/U25A0.9-ogen.check | 17 + qpdf/qtest/qpdf/U25A0.9.c-check | 13 + qpdf/qtest/qpdf/U25A0.9.check | 17 + qpdf/qtest/qpdf/U25A0.pdf | Bin 0 -> 67790 bytes qpdf/qtest/qpdf/V4-aes-clearmeta-encryption.out | 15 + qpdf/qtest/qpdf/V4-aes-clearmeta.pdf | 417 + qpdf/qtest/qpdf/V4-aes-encryption.out | 15 + qpdf/qtest/qpdf/V4-aes.pdf | 396 + qpdf/qtest/qpdf/V4-clearmeta-encryption.out | 15 + qpdf/qtest/qpdf/V4-clearmeta.pdf | Bin 0 -> 15214 bytes qpdf/qtest/qpdf/V4-encryption.out | 15 + qpdf/qtest/qpdf/V4.pdf | Bin 0 -> 14770 bytes qpdf/qtest/qpdf/add-contents.pdf | 54 + qpdf/qtest/qpdf/aes-forced-check.out | 6 + .../qpdf/append-page-content-damaged-c-check.out | 21 + .../qpdf/append-page-content-damaged-check.out | 7 + qpdf/qtest/qpdf/append-page-content-damaged.out | 4 + qpdf/qtest/qpdf/append-page-content-damaged.pdf | 1592 ++++ qpdf/qtest/qpdf/append-page-content-damaged.qdf | 1614 ++++ qpdf/qtest/qpdf/append-page-content-good.qdf | 1408 +++ qpdf/qtest/qpdf/append-page-content.pdf | 1592 ++++ qpdf/qtest/qpdf/bad1-recover.out | 1 + qpdf/qtest/qpdf/bad1.out | 1 + qpdf/qtest/qpdf/bad1.pdf | 1 + qpdf/qtest/qpdf/bad10-recover.out | 9 + qpdf/qtest/qpdf/bad10.out | 1 + qpdf/qtest/qpdf/bad10.pdf | 79 + qpdf/qtest/qpdf/bad11-recover.out | 9 + qpdf/qtest/qpdf/bad11.out | 1 + qpdf/qtest/qpdf/bad11.pdf | 104 + qpdf/qtest/qpdf/bad12-recover.out | 7 + qpdf/qtest/qpdf/bad12.out | 7 + qpdf/qtest/qpdf/bad12.pdf | 122 + qpdf/qtest/qpdf/bad13-recover.out | 4 + qpdf/qtest/qpdf/bad13.out | 1 + qpdf/qtest/qpdf/bad13.pdf | 80 + qpdf/qtest/qpdf/bad14-recover.out | 4 + qpdf/qtest/qpdf/bad14.out | 1 + qpdf/qtest/qpdf/bad14.pdf | 80 + qpdf/qtest/qpdf/bad15-recover.out | 4 + qpdf/qtest/qpdf/bad15.out | 1 + qpdf/qtest/qpdf/bad15.pdf | 80 + qpdf/qtest/qpdf/bad16-recover.out | 4 + qpdf/qtest/qpdf/bad16.out | 1 + qpdf/qtest/qpdf/bad16.pdf | 80 + qpdf/qtest/qpdf/bad17-recover.out | 4 + qpdf/qtest/qpdf/bad17.out | 1 + qpdf/qtest/qpdf/bad17.pdf | 80 + qpdf/qtest/qpdf/bad18-recover.out | 4 + qpdf/qtest/qpdf/bad18.out | 1 + qpdf/qtest/qpdf/bad18.pdf | 80 + qpdf/qtest/qpdf/bad19-recover.out | 4 + qpdf/qtest/qpdf/bad19.out | 1 + qpdf/qtest/qpdf/bad19.pdf | 80 + qpdf/qtest/qpdf/bad2-recover.out | 9 + qpdf/qtest/qpdf/bad2.out | 1 + qpdf/qtest/qpdf/bad2.pdf | 76 + qpdf/qtest/qpdf/bad20-recover.out | 4 + qpdf/qtest/qpdf/bad20.out | 1 + qpdf/qtest/qpdf/bad20.pdf | 80 + qpdf/qtest/qpdf/bad21-recover.out | 4 + qpdf/qtest/qpdf/bad21.out | 1 + qpdf/qtest/qpdf/bad21.pdf | 80 + qpdf/qtest/qpdf/bad22-recover.out | 21 + qpdf/qtest/qpdf/bad22.out | 1 + qpdf/qtest/qpdf/bad22.pdf | 80 + qpdf/qtest/qpdf/bad23-recover.out | 21 + qpdf/qtest/qpdf/bad23.out | 1 + qpdf/qtest/qpdf/bad23.pdf | 80 + qpdf/qtest/qpdf/bad24-recover.out | 2 + qpdf/qtest/qpdf/bad24.out | 1 + qpdf/qtest/qpdf/bad24.pdf | 80 + qpdf/qtest/qpdf/bad25-recover.out | 10 + qpdf/qtest/qpdf/bad25.out | 1 + qpdf/qtest/qpdf/bad25.pdf | 80 + qpdf/qtest/qpdf/bad26-recover.out | 10 + qpdf/qtest/qpdf/bad26.out | 1 + qpdf/qtest/qpdf/bad26.pdf | 80 + qpdf/qtest/qpdf/bad27-recover.out | 10 + qpdf/qtest/qpdf/bad27.out | 1 + qpdf/qtest/qpdf/bad27.pdf | 80 + qpdf/qtest/qpdf/bad28-recover.out | 21 + qpdf/qtest/qpdf/bad28.out | 21 + qpdf/qtest/qpdf/bad28.pdf | 80 + qpdf/qtest/qpdf/bad29-recover.out | 4 + qpdf/qtest/qpdf/bad29.out | 1 + qpdf/qtest/qpdf/bad29.pdf | 80 + qpdf/qtest/qpdf/bad3-recover.out | 9 + qpdf/qtest/qpdf/bad3.out | 1 + qpdf/qtest/qpdf/bad3.pdf | 76 + qpdf/qtest/qpdf/bad30-recover.out | 6 + qpdf/qtest/qpdf/bad30.out | 6 + qpdf/qtest/qpdf/bad30.pdf | 93 + qpdf/qtest/qpdf/bad31-recover.out | 9 + qpdf/qtest/qpdf/bad31.out | 9 + qpdf/qtest/qpdf/bad31.pdf | 93 + qpdf/qtest/qpdf/bad32-recover.out | 10 + qpdf/qtest/qpdf/bad32.out | 1 + qpdf/qtest/qpdf/bad32.pdf | 80 + qpdf/qtest/qpdf/bad33-recover.out | 9 + qpdf/qtest/qpdf/bad33.out | 1 + qpdf/qtest/qpdf/bad33.pdf | 93 + qpdf/qtest/qpdf/bad34-recover.out | 23 + qpdf/qtest/qpdf/bad34.out | 1 + qpdf/qtest/qpdf/bad34.pdf | 81 + qpdf/qtest/qpdf/bad35-recover.out | 1 + qpdf/qtest/qpdf/bad35.out | 1 + qpdf/qtest/qpdf/bad35.pdf | Bin 0 -> 807 bytes qpdf/qtest/qpdf/bad4-recover.out | 9 + qpdf/qtest/qpdf/bad4.out | 1 + qpdf/qtest/qpdf/bad4.pdf | 77 + qpdf/qtest/qpdf/bad5-recover.out | 9 + qpdf/qtest/qpdf/bad5.out | 1 + qpdf/qtest/qpdf/bad5.pdf | 77 + qpdf/qtest/qpdf/bad6-recover.out | 6 + qpdf/qtest/qpdf/bad6.out | 6 + qpdf/qtest/qpdf/bad6.pdf | 122 + qpdf/qtest/qpdf/bad7-recover.out | 4 + qpdf/qtest/qpdf/bad7.out | 1 + qpdf/qtest/qpdf/bad7.pdf | 77 + qpdf/qtest/qpdf/bad8-recover.out | 9 + qpdf/qtest/qpdf/bad8.out | 1 + qpdf/qtest/qpdf/bad8.pdf | 104 + qpdf/qtest/qpdf/bad9-recover.out | 9 + qpdf/qtest/qpdf/bad9.out | 1 + qpdf/qtest/qpdf/bad9.pdf | 79 + qpdf/qtest/qpdf/badlin1.out | 380 + qpdf/qtest/qpdf/badlin1.pdf | Bin 0 -> 13103 bytes qpdf/qtest/qpdf/c-decrypt-with-owner.pdf | Bin 0 -> 9668 bytes qpdf/qtest/qpdf/c-decrypt-with-user.pdf | Bin 0 -> 9668 bytes qpdf/qtest/qpdf/c-ignore-xref-streams.pdf | Bin 0 -> 9976 bytes qpdf/qtest/qpdf/c-info-out.pdf | 44 + qpdf/qtest/qpdf/c-info1.out | 6 + qpdf/qtest/qpdf/c-info2-in.pdf | Bin 0 -> 926 bytes qpdf/qtest/qpdf/c-info2.out | 6 + qpdf/qtest/qpdf/c-invalid-password.out | 5 + qpdf/qtest/qpdf/c-linearized.pdf | Bin 0 -> 10729 bytes qpdf/qtest/qpdf/c-no-options.pdf | Bin 0 -> 9668 bytes qpdf/qtest/qpdf/c-no-original-object-ids.pdf | 1512 +++ qpdf/qtest/qpdf/c-no-recovery.out | 5 + qpdf/qtest/qpdf/c-normalized-content.pdf | Bin 0 -> 8917 bytes qpdf/qtest/qpdf/c-object-streams.pdf | Bin 0 -> 5195 bytes qpdf/qtest/qpdf/c-qdf.pdf | 1576 ++++ qpdf/qtest/qpdf/c-r2.pdf | Bin 0 -> 9893 bytes qpdf/qtest/qpdf/c-r3.pdf | Bin 0 -> 9897 bytes qpdf/qtest/qpdf/c-r4.pdf | Bin 0 -> 10881 bytes qpdf/qtest/qpdf/c-read-errors.out | 5 + qpdf/qtest/qpdf/c-read-warnings-and-errors.out | 20 + qpdf/qtest/qpdf/c-uncompressed-streams.pdf | 434 + qpdf/qtest/qpdf/c-write-damaged.out | 15 + qpdf/qtest/qpdf/c-write-errors.out | 5 + qpdf/qtest/qpdf/c-write-warnings-and-errors.out | 20 + qpdf/qtest/qpdf/check-ID.pl | 20 + qpdf/qtest/qpdf/compressed-metadata.pdf | Bin 0 -> 14007 bytes qpdf/qtest/qpdf/copied-encryption.out | 15 + qpdf/qtest/qpdf/copy-foreign-objects-errors.out | 3 + qpdf/qtest/qpdf/copy-foreign-objects-in.pdf | 335 + qpdf/qtest/qpdf/copy-foreign-objects-out1.pdf | 66 + qpdf/qtest/qpdf/copy-foreign-objects-out2.pdf | 81 + qpdf/qtest/qpdf/copy-foreign-objects-out3.pdf | 92 + qpdf/qtest/qpdf/damaged-stream-c-check.out | 1 + qpdf/qtest/qpdf/damaged-stream.out | 5 + qpdf/qtest/qpdf/damaged-stream.pdf | Bin 0 -> 77635 bytes qpdf/qtest/qpdf/decrypted-crypt-filter.pdf | Bin 0 -> 14383 bytes qpdf/qtest/qpdf/delete-and-reuse.pdf | 1573 ++++ qpdf/qtest/qpdf/delete-and-reuse.qdf | 1408 +++ qpdf/qtest/qpdf/diff-encrypted | 7 + qpdf/qtest/qpdf/diff-ignore-ID-version | 8 + qpdf/qtest/qpdf/empty-object.out | 3 + qpdf/qtest/qpdf/empty-object.pdf | 84 + qpdf/qtest/qpdf/enc-R2,V1,O=master.pdf | Bin 0 -> 17146 bytes qpdf/qtest/qpdf/enc-R2,V1,U=view,O=master.pdf | Bin 0 -> 17134 bytes qpdf/qtest/qpdf/enc-R2,V1,U=view.pdf | Bin 0 -> 17137 bytes qpdf/qtest/qpdf/enc-R2,V1.pdf | Bin 0 -> 17143 bytes qpdf/qtest/qpdf/enc-R3,V2,O=master.pdf | Bin 0 -> 17144 bytes qpdf/qtest/qpdf/enc-R3,V2,U=view,O=master.pdf | Bin 0 -> 17139 bytes qpdf/qtest/qpdf/enc-R3,V2,U=view.pdf | Bin 0 -> 17142 bytes qpdf/qtest/qpdf/enc-R3,V2.pdf | Bin 0 -> 17140 bytes qpdf/qtest/qpdf/enc-base.pdf | Bin 0 -> 16937 bytes qpdf/qtest/qpdf/enc-long-password.pdf | Bin 0 -> 17144 bytes qpdf/qtest/qpdf/encrypted-with-images.pdf | Bin 0 -> 50219 bytes qpdf/qtest/qpdf/encrypted1.out | 578 ++ qpdf/qtest/qpdf/eof-reading-token.out | 5 + qpdf/qtest/qpdf/eof-reading-token.pdf | Bin 0 -> 1632 bytes qpdf/qtest/qpdf/eof-terminates-literal.out | 6 + qpdf/qtest/qpdf/eof-terminates-literal.pdf | Bin 0 -> 1632 bytes qpdf/qtest/qpdf/extra-header-lin-newline.pdf | Bin 0 -> 1334 bytes qpdf/qtest/qpdf/extra-header-lin-no-newline.pdf | Bin 0 -> 1334 bytes qpdf/qtest/qpdf/extra-header-newline.pdf | Bin 0 -> 823 bytes qpdf/qtest/qpdf/extra-header-no-newline.pdf | Bin 0 -> 823 bytes qpdf/qtest/qpdf/fax-decode-parms.out | 6 + qpdf/qtest/qpdf/fax-decode-parms.pdf | Bin 0 -> 1565966 bytes qpdf/qtest/qpdf/filter-abbreviation.out | Bin 0 -> 734 bytes qpdf/qtest/qpdf/filter-abbreviation.pdf | Bin 0 -> 743 bytes qpdf/qtest/qpdf/fix1.qdf | 111 + qpdf/qtest/qpdf/fix1.qdf.out | 113 + qpdf/qtest/qpdf/fix2.qdf | Bin 0 -> 1227 bytes qpdf/qtest/qpdf/fix2.qdf.out | Bin 0 -> 1232 bytes qpdf/qtest/qpdf/forced-version.out | 6 + qpdf/qtest/qpdf/foreign-in-write.out | 2 + qpdf/qtest/qpdf/from-scratch-0.pdf | 36 + qpdf/qtest/qpdf/good1.out | 6 + qpdf/qtest/qpdf/good1.pdf | Bin 0 -> 813 bytes qpdf/qtest/qpdf/good1.qdf | 101 + qpdf/qtest/qpdf/good10.out | 8 + qpdf/qtest/qpdf/good10.pdf | 80 + qpdf/qtest/qpdf/good10.qdf | 106 + qpdf/qtest/qpdf/good11.out | 6 + qpdf/qtest/qpdf/good11.pdf | 81 + qpdf/qtest/qpdf/good11.qdf | 104 + qpdf/qtest/qpdf/good12.out | 13 + qpdf/qtest/qpdf/good12.pdf | 93 + qpdf/qtest/qpdf/good12.qdf | 120 + qpdf/qtest/qpdf/good13.out | 9 + qpdf/qtest/qpdf/good13.pdf | 101 + qpdf/qtest/qpdf/good13.qdf | 146 + qpdf/qtest/qpdf/good14.out | 39 + qpdf/qtest/qpdf/good14.pdf | 142 + qpdf/qtest/qpdf/good14.qdf | 199 + qpdf/qtest/qpdf/good15.out | 5 + qpdf/qtest/qpdf/good15.pdf | 79 + qpdf/qtest/qpdf/good15.qdf | 103 + qpdf/qtest/qpdf/good16.out | 6 + qpdf/qtest/qpdf/good16.pdf | Bin 0 -> 792 bytes qpdf/qtest/qpdf/good16.qdf | Bin 0 -> 1249 bytes qpdf/qtest/qpdf/good17-not-qdf.pdf | Bin 0 -> 9893 bytes qpdf/qtest/qpdf/good17-not-recompressed.pdf | Bin 0 -> 9147 bytes qpdf/qtest/qpdf/good17.out | 6 + qpdf/qtest/qpdf/good17.pdf | 1550 ++++ qpdf/qtest/qpdf/good17.qdf | 1588 ++++ qpdf/qtest/qpdf/good18.out | 6 + qpdf/qtest/qpdf/good18.pdf | 1538 ++++ qpdf/qtest/qpdf/good18.qdf | 1407 +++ qpdf/qtest/qpdf/good19.out | 6 + qpdf/qtest/qpdf/good19.pdf | Bin 0 -> 1032 bytes qpdf/qtest/qpdf/good19.qdf | Bin 0 -> 1248 bytes qpdf/qtest/qpdf/good2.out | 6 + qpdf/qtest/qpdf/good2.pdf | 80 + qpdf/qtest/qpdf/good2.qdf | 101 + qpdf/qtest/qpdf/good20.out | 6 + qpdf/qtest/qpdf/good20.pdf | 901 ++ qpdf/qtest/qpdf/good20.qdf | 1076 +++ qpdf/qtest/qpdf/good3.out | 6 + qpdf/qtest/qpdf/good3.pdf | 80 + qpdf/qtest/qpdf/good3.qdf | 101 + qpdf/qtest/qpdf/good4.out | 6 + qpdf/qtest/qpdf/good4.pdf | 83 + qpdf/qtest/qpdf/good4.qdf | 101 + qpdf/qtest/qpdf/good5.out | 5 + qpdf/qtest/qpdf/good5.pdf | 83 + qpdf/qtest/qpdf/good5.qdf | 102 + qpdf/qtest/qpdf/good6.out | 5 + qpdf/qtest/qpdf/good6.pdf | 79 + qpdf/qtest/qpdf/good6.qdf | 102 + qpdf/qtest/qpdf/good7-not-normalized.qdf | 101 + qpdf/qtest/qpdf/good7.out | 5 + qpdf/qtest/qpdf/good7.pdf | 79 + qpdf/qtest/qpdf/good7.qdf | 103 + qpdf/qtest/qpdf/good8.out | 5 + qpdf/qtest/qpdf/good8.pdf | 82 + qpdf/qtest/qpdf/good8.qdf | 102 + qpdf/qtest/qpdf/good9.out | 5 + qpdf/qtest/qpdf/good9.pdf | 81 + qpdf/qtest/qpdf/good9.qdf | 103 + qpdf/qtest/qpdf/heifer.out | 5 + qpdf/qtest/qpdf/heifer.pdf | Bin 0 -> 93593 bytes qpdf/qtest/qpdf/heifer.qdf | 1349 +++ qpdf/qtest/qpdf/hybrid-xref.1-ogen.c-check | 3 + qpdf/qtest/qpdf/hybrid-xref.1-ogen.check | 6 + qpdf/qtest/qpdf/hybrid-xref.1.c-check | 3 + qpdf/qtest/qpdf/hybrid-xref.1.check | 6 + qpdf/qtest/qpdf/hybrid-xref.10-ogen.c-check | 13 + qpdf/qtest/qpdf/hybrid-xref.10-ogen.check | 17 + qpdf/qtest/qpdf/hybrid-xref.10.c-check | 13 + qpdf/qtest/qpdf/hybrid-xref.10.check | 17 + qpdf/qtest/qpdf/hybrid-xref.11-ogen.c-check | 13 + qpdf/qtest/qpdf/hybrid-xref.11-ogen.check | 17 + qpdf/qtest/qpdf/hybrid-xref.11.c-check | 13 + qpdf/qtest/qpdf/hybrid-xref.11.check | 17 + qpdf/qtest/qpdf/hybrid-xref.12-ogen.c-check | 3 + qpdf/qtest/qpdf/hybrid-xref.12-ogen.check | 6 + qpdf/qtest/qpdf/hybrid-xref.12.c-check | 3 + qpdf/qtest/qpdf/hybrid-xref.12.check | 6 + qpdf/qtest/qpdf/hybrid-xref.2-ogen.c-check | 3 + qpdf/qtest/qpdf/hybrid-xref.2-ogen.check | 6 + qpdf/qtest/qpdf/hybrid-xref.2.c-check | 3 + qpdf/qtest/qpdf/hybrid-xref.2.check | 6 + qpdf/qtest/qpdf/hybrid-xref.3-ogen.c-check | 3 + qpdf/qtest/qpdf/hybrid-xref.3-ogen.check | 6 + qpdf/qtest/qpdf/hybrid-xref.3.c-check | 3 + qpdf/qtest/qpdf/hybrid-xref.3.check | 6 + qpdf/qtest/qpdf/hybrid-xref.4-ogen.c-check | 3 + qpdf/qtest/qpdf/hybrid-xref.4-ogen.check | 6 + qpdf/qtest/qpdf/hybrid-xref.4.c-check | 3 + qpdf/qtest/qpdf/hybrid-xref.4.check | 6 + qpdf/qtest/qpdf/hybrid-xref.5-ogen.c-check | 3 + qpdf/qtest/qpdf/hybrid-xref.5-ogen.check | 6 + qpdf/qtest/qpdf/hybrid-xref.5.c-check | 3 + qpdf/qtest/qpdf/hybrid-xref.5.check | 6 + qpdf/qtest/qpdf/hybrid-xref.6-ogen.c-check | 3 + qpdf/qtest/qpdf/hybrid-xref.6-ogen.check | 6 + qpdf/qtest/qpdf/hybrid-xref.6.c-check | 3 + qpdf/qtest/qpdf/hybrid-xref.6.check | 6 + qpdf/qtest/qpdf/hybrid-xref.7-ogen.c-check | 3 + qpdf/qtest/qpdf/hybrid-xref.7-ogen.check | 6 + qpdf/qtest/qpdf/hybrid-xref.7.c-check | 3 + qpdf/qtest/qpdf/hybrid-xref.7.check | 6 + qpdf/qtest/qpdf/hybrid-xref.8-ogen.c-check | 3 + qpdf/qtest/qpdf/hybrid-xref.8-ogen.check | 6 + qpdf/qtest/qpdf/hybrid-xref.8.c-check | 3 + qpdf/qtest/qpdf/hybrid-xref.8.check | 6 + qpdf/qtest/qpdf/hybrid-xref.9-ogen.c-check | 3 + qpdf/qtest/qpdf/hybrid-xref.9-ogen.check | 6 + qpdf/qtest/qpdf/hybrid-xref.9.c-check | 3 + qpdf/qtest/qpdf/hybrid-xref.9.check | 6 + qpdf/qtest/qpdf/hybrid-xref.pdf | 1538 ++++ qpdf/qtest/qpdf/inline-images-cr.pdf | Bin 0 -> 1519163 bytes qpdf/qtest/qpdf/inline-images.1-ogen.c-check | 3 + qpdf/qtest/qpdf/inline-images.1-ogen.check | 6 + qpdf/qtest/qpdf/inline-images.1.c-check | 3 + qpdf/qtest/qpdf/inline-images.1.check | 6 + qpdf/qtest/qpdf/inline-images.10-ogen.c-check | 13 + qpdf/qtest/qpdf/inline-images.10-ogen.check | 17 + qpdf/qtest/qpdf/inline-images.10.c-check | 13 + qpdf/qtest/qpdf/inline-images.10.check | 17 + qpdf/qtest/qpdf/inline-images.11-ogen.c-check | 13 + qpdf/qtest/qpdf/inline-images.11-ogen.check | 17 + qpdf/qtest/qpdf/inline-images.11.c-check | 13 + qpdf/qtest/qpdf/inline-images.11.check | 17 + qpdf/qtest/qpdf/inline-images.12-ogen.c-check | 3 + qpdf/qtest/qpdf/inline-images.12-ogen.check | 6 + qpdf/qtest/qpdf/inline-images.12.c-check | 3 + qpdf/qtest/qpdf/inline-images.12.check | 6 + qpdf/qtest/qpdf/inline-images.2-ogen.c-check | 3 + qpdf/qtest/qpdf/inline-images.2-ogen.check | 6 + qpdf/qtest/qpdf/inline-images.2.c-check | 3 + qpdf/qtest/qpdf/inline-images.2.check | 6 + qpdf/qtest/qpdf/inline-images.3-ogen.c-check | 3 + qpdf/qtest/qpdf/inline-images.3-ogen.check | 6 + qpdf/qtest/qpdf/inline-images.3.c-check | 3 + qpdf/qtest/qpdf/inline-images.3.check | 6 + qpdf/qtest/qpdf/inline-images.4-ogen.c-check | 3 + qpdf/qtest/qpdf/inline-images.4-ogen.check | 6 + qpdf/qtest/qpdf/inline-images.4.c-check | 3 + qpdf/qtest/qpdf/inline-images.4.check | 6 + qpdf/qtest/qpdf/inline-images.5-ogen.c-check | 3 + qpdf/qtest/qpdf/inline-images.5-ogen.check | 6 + qpdf/qtest/qpdf/inline-images.5.c-check | 3 + qpdf/qtest/qpdf/inline-images.5.check | 6 + qpdf/qtest/qpdf/inline-images.6-ogen.c-check | 3 + qpdf/qtest/qpdf/inline-images.6-ogen.check | 6 + qpdf/qtest/qpdf/inline-images.6.c-check | 3 + qpdf/qtest/qpdf/inline-images.6.check | 6 + qpdf/qtest/qpdf/inline-images.7-ogen.c-check | 3 + qpdf/qtest/qpdf/inline-images.7-ogen.check | 6 + qpdf/qtest/qpdf/inline-images.7.c-check | 3 + qpdf/qtest/qpdf/inline-images.7.check | 6 + qpdf/qtest/qpdf/inline-images.8-ogen.c-check | 3 + qpdf/qtest/qpdf/inline-images.8-ogen.check | 6 + qpdf/qtest/qpdf/inline-images.8.c-check | 3 + qpdf/qtest/qpdf/inline-images.8.check | 6 + qpdf/qtest/qpdf/inline-images.9-ogen.c-check | 3 + qpdf/qtest/qpdf/inline-images.9-ogen.check | 6 + qpdf/qtest/qpdf/inline-images.9.c-check | 3 + qpdf/qtest/qpdf/inline-images.9.check | 6 + qpdf/qtest/qpdf/inline-images.pdf | Bin 0 -> 300684 bytes qpdf/qtest/qpdf/large_file-check-linearized.out | 5 + qpdf/qtest/qpdf/large_file-check-normal.out | 5 + .../qpdf/large_file-check-ostream-linearized.out | 5 + qpdf/qtest/qpdf/large_file-check-ostream.out | 5 + qpdf/qtest/qpdf/large_file.out | 200 + qpdf/qtest/qpdf/large_file_xref_reconstruct.out | 203 + qpdf/qtest/qpdf/lin-delete-and-reuse-check.out | 6 + qpdf/qtest/qpdf/lin-delete-and-reuse.pdf | Bin 0 -> 13382 bytes qpdf/qtest/qpdf/lin-special.1-ogen.c-check | 3 + qpdf/qtest/qpdf/lin-special.1-ogen.check | 6 + qpdf/qtest/qpdf/lin-special.1.c-check | 3 + qpdf/qtest/qpdf/lin-special.1.check | 6 + qpdf/qtest/qpdf/lin-special.10-ogen.c-check | 13 + qpdf/qtest/qpdf/lin-special.10-ogen.check | 17 + qpdf/qtest/qpdf/lin-special.10.c-check | 13 + qpdf/qtest/qpdf/lin-special.10.check | 17 + qpdf/qtest/qpdf/lin-special.11-ogen.c-check | 13 + qpdf/qtest/qpdf/lin-special.11-ogen.check | 17 + qpdf/qtest/qpdf/lin-special.11.c-check | 13 + qpdf/qtest/qpdf/lin-special.11.check | 17 + qpdf/qtest/qpdf/lin-special.12-ogen.c-check | 3 + qpdf/qtest/qpdf/lin-special.12-ogen.check | 6 + qpdf/qtest/qpdf/lin-special.12.c-check | 3 + qpdf/qtest/qpdf/lin-special.12.check | 6 + qpdf/qtest/qpdf/lin-special.2-ogen.c-check | 3 + qpdf/qtest/qpdf/lin-special.2-ogen.check | 6 + qpdf/qtest/qpdf/lin-special.2.c-check | 3 + qpdf/qtest/qpdf/lin-special.2.check | 6 + qpdf/qtest/qpdf/lin-special.3-ogen.c-check | 3 + qpdf/qtest/qpdf/lin-special.3-ogen.check | 6 + qpdf/qtest/qpdf/lin-special.3.c-check | 3 + qpdf/qtest/qpdf/lin-special.3.check | 6 + qpdf/qtest/qpdf/lin-special.4-ogen.c-check | 3 + qpdf/qtest/qpdf/lin-special.4-ogen.check | 6 + qpdf/qtest/qpdf/lin-special.4.c-check | 3 + qpdf/qtest/qpdf/lin-special.4.check | 6 + qpdf/qtest/qpdf/lin-special.5-ogen.c-check | 3 + qpdf/qtest/qpdf/lin-special.5-ogen.check | 6 + qpdf/qtest/qpdf/lin-special.5.c-check | 3 + qpdf/qtest/qpdf/lin-special.5.check | 6 + qpdf/qtest/qpdf/lin-special.6-ogen.c-check | 3 + qpdf/qtest/qpdf/lin-special.6-ogen.check | 6 + qpdf/qtest/qpdf/lin-special.6.c-check | 3 + qpdf/qtest/qpdf/lin-special.6.check | 6 + qpdf/qtest/qpdf/lin-special.7-ogen.c-check | 3 + qpdf/qtest/qpdf/lin-special.7-ogen.check | 6 + qpdf/qtest/qpdf/lin-special.7.c-check | 3 + qpdf/qtest/qpdf/lin-special.7.check | 6 + qpdf/qtest/qpdf/lin-special.8-ogen.c-check | 3 + qpdf/qtest/qpdf/lin-special.8-ogen.check | 6 + qpdf/qtest/qpdf/lin-special.8.c-check | 3 + qpdf/qtest/qpdf/lin-special.8.check | 6 + qpdf/qtest/qpdf/lin-special.9-ogen.c-check | 3 + qpdf/qtest/qpdf/lin-special.9-ogen.check | 6 + qpdf/qtest/qpdf/lin-special.9.c-check | 3 + qpdf/qtest/qpdf/lin-special.9.check | 6 + qpdf/qtest/qpdf/lin-special.disable.exp | Bin 0 -> 3178 bytes qpdf/qtest/qpdf/lin-special.generate.exp | Bin 0 -> 2808 bytes qpdf/qtest/qpdf/lin-special.pdf | 361 + qpdf/qtest/qpdf/lin-special.preserve.exp | Bin 0 -> 3178 bytes qpdf/qtest/qpdf/lin0.out | 1 + qpdf/qtest/qpdf/lin0.pdf | 79 + qpdf/qtest/qpdf/lin1.out | 378 + qpdf/qtest/qpdf/lin1.pdf | Bin 0 -> 13103 bytes qpdf/qtest/qpdf/lin2.out | 378 + qpdf/qtest/qpdf/lin2.pdf | Bin 0 -> 13103 bytes qpdf/qtest/qpdf/lin3.out | 318 + qpdf/qtest/qpdf/lin3.pdf | Bin 0 -> 16937 bytes qpdf/qtest/qpdf/lin4.out | 353 + qpdf/qtest/qpdf/lin4.pdf | Bin 0 -> 13055 bytes qpdf/qtest/qpdf/lin5.out | 318 + qpdf/qtest/qpdf/lin5.pdf | Bin 0 -> 27464 bytes qpdf/qtest/qpdf/lin6.out | 592 ++ qpdf/qtest/qpdf/lin6.pdf | Bin 0 -> 24824 bytes qpdf/qtest/qpdf/lin7.out | 292 + qpdf/qtest/qpdf/lin7.pdf | Bin 0 -> 27408 bytes qpdf/qtest/qpdf/lin8.out | 568 ++ qpdf/qtest/qpdf/lin8.pdf | Bin 0 -> 24875 bytes qpdf/qtest/qpdf/lin9.out | 104 + qpdf/qtest/qpdf/lin9.pdf | Bin 0 -> 3316 bytes qpdf/qtest/qpdf/linearized-and-warnings-1.out | 52 + qpdf/qtest/qpdf/linearized-and-warnings-2.out | 54 + qpdf/qtest/qpdf/linearized-and-warnings.pdf | Bin 0 -> 1310 bytes qpdf/qtest/qpdf/long-id-check.out | 17 + qpdf/qtest/qpdf/long-id.pdf | 80 + qpdf/qtest/qpdf/merge-three-files-1.pdf | Bin 0 -> 8495 bytes qpdf/qtest/qpdf/merge-three-files-2.pdf | Bin 0 -> 6036 bytes qpdf/qtest/qpdf/metadata-crypt-filter.pdf | 411 + qpdf/qtest/qpdf/min-version.out | 6 + qpdf/qtest/qpdf/minimal.pdf | 79 + qpdf/qtest/qpdf/misc-1.out | 15 + qpdf/qtest/qpdf/misc-1.pdf | Bin 0 -> 18204 bytes qpdf/qtest/qpdf/misc-2.out | 26 + qpdf/qtest/qpdf/misc-2.pdf | Bin 0 -> 16022 bytes qpdf/qtest/qpdf/misc-3.out | 15 + qpdf/qtest/qpdf/misc-3.pdf | 128 + qpdf/qtest/qpdf/multiple-mods-check.out | 6 + qpdf/qtest/qpdf/multiple-mods.pdf | Bin 0 -> 60960 bytes qpdf/qtest/qpdf/new-streams.pdf | 54 + qpdf/qtest/qpdf/obj0-check.out | 7 + qpdf/qtest/qpdf/obj0.pdf | Bin 0 -> 859 bytes qpdf/qtest/qpdf/object-stream.1-ogen.c-check | 3 + qpdf/qtest/qpdf/object-stream.1-ogen.check | 6 + qpdf/qtest/qpdf/object-stream.1.c-check | 3 + qpdf/qtest/qpdf/object-stream.1.check | 6 + qpdf/qtest/qpdf/object-stream.10-ogen.c-check | 13 + qpdf/qtest/qpdf/object-stream.10-ogen.check | 17 + qpdf/qtest/qpdf/object-stream.10.c-check | 13 + qpdf/qtest/qpdf/object-stream.10.check | 17 + qpdf/qtest/qpdf/object-stream.11-ogen.c-check | 13 + qpdf/qtest/qpdf/object-stream.11-ogen.check | 17 + qpdf/qtest/qpdf/object-stream.11.c-check | 13 + qpdf/qtest/qpdf/object-stream.11.check | 17 + qpdf/qtest/qpdf/object-stream.12-ogen.c-check | 3 + qpdf/qtest/qpdf/object-stream.12-ogen.check | 6 + qpdf/qtest/qpdf/object-stream.12.c-check | 3 + qpdf/qtest/qpdf/object-stream.12.check | 6 + qpdf/qtest/qpdf/object-stream.2-ogen.c-check | 3 + qpdf/qtest/qpdf/object-stream.2-ogen.check | 6 + qpdf/qtest/qpdf/object-stream.2.c-check | 3 + qpdf/qtest/qpdf/object-stream.2.check | 6 + qpdf/qtest/qpdf/object-stream.3-ogen.c-check | 3 + qpdf/qtest/qpdf/object-stream.3-ogen.check | 6 + qpdf/qtest/qpdf/object-stream.3.c-check | 3 + qpdf/qtest/qpdf/object-stream.3.check | 6 + qpdf/qtest/qpdf/object-stream.4-ogen.c-check | 3 + qpdf/qtest/qpdf/object-stream.4-ogen.check | 6 + qpdf/qtest/qpdf/object-stream.4.c-check | 3 + qpdf/qtest/qpdf/object-stream.4.check | 6 + qpdf/qtest/qpdf/object-stream.5-ogen.c-check | 3 + qpdf/qtest/qpdf/object-stream.5-ogen.check | 6 + qpdf/qtest/qpdf/object-stream.5.c-check | 3 + qpdf/qtest/qpdf/object-stream.5.check | 6 + qpdf/qtest/qpdf/object-stream.6-ogen.c-check | 3 + qpdf/qtest/qpdf/object-stream.6-ogen.check | 6 + qpdf/qtest/qpdf/object-stream.6.c-check | 3 + qpdf/qtest/qpdf/object-stream.6.check | 6 + qpdf/qtest/qpdf/object-stream.7-ogen.c-check | 3 + qpdf/qtest/qpdf/object-stream.7-ogen.check | 6 + qpdf/qtest/qpdf/object-stream.7.c-check | 3 + qpdf/qtest/qpdf/object-stream.7.check | 6 + qpdf/qtest/qpdf/object-stream.8-ogen.c-check | 3 + qpdf/qtest/qpdf/object-stream.8-ogen.check | 6 + qpdf/qtest/qpdf/object-stream.8.c-check | 3 + qpdf/qtest/qpdf/object-stream.8.check | 6 + qpdf/qtest/qpdf/object-stream.9-ogen.c-check | 3 + qpdf/qtest/qpdf/object-stream.9-ogen.check | 6 + qpdf/qtest/qpdf/object-stream.9.c-check | 3 + qpdf/qtest/qpdf/object-stream.9.check | 6 + qpdf/qtest/qpdf/object-stream.disable.exp | Bin 0 -> 1310 bytes qpdf/qtest/qpdf/object-stream.generate.exp | Bin 0 -> 1536 bytes qpdf/qtest/qpdf/object-stream.pdf | Bin 0 -> 792 bytes qpdf/qtest/qpdf/object-stream.preserve.exp | Bin 0 -> 1536 bytes qpdf/qtest/qpdf/old-and-complex-c-check.out | 3 + qpdf/qtest/qpdf/old-and-complex-check.out | 6 + qpdf/qtest/qpdf/old-and-complex.pdf | Bin 0 -> 335662 bytes qpdf/qtest/qpdf/p1-a-p2-a.pdf | 138 + qpdf/qtest/qpdf/p1-a-p2-b.pdf | 138 + qpdf/qtest/qpdf/p1-a.pdf | 95 + qpdf/qtest/qpdf/p1-b.pdf | 95 + qpdf/qtest/qpdf/page-labels-and-outlines.pdf | 1503 +++ qpdf/qtest/qpdf/page_api_1-out.pdf | 168 + qpdf/qtest/qpdf/page_api_1-out2.pdf | 146 + qpdf/qtest/qpdf/page_api_1-out3.pdf | 135 + qpdf/qtest/qpdf/page_api_1.out | 1 + qpdf/qtest/qpdf/page_api_1.out2 | 1 + qpdf/qtest/qpdf/page_api_1.pdf | 472 + qpdf/qtest/qpdf/page_api_2.out | 1 + qpdf/qtest/qpdf/page_api_2.pdf | 137 + qpdf/qtest/qpdf/pages-copy-encryption.pdf | Bin 0 -> 1319 bytes qpdf/qtest/qpdf/pages-warning.out | 2 + qpdf/qtest/qpdf/parse-object.out | 4 + qpdf/qtest/qpdf/qstream.pdf | 90 + qpdf/qtest/qpdf/replaced-stream-data-flate.pdf | Bin 0 -> 1419 bytes qpdf/qtest/qpdf/replaced-stream-data.pdf | 47 + qpdf/qtest/qpdf/reserved-objects.out | 8 + qpdf/qtest/qpdf/reserved-objects.pdf | 48 + qpdf/qtest/qpdf/shallow_array-out.pdf | 40 + qpdf/qtest/qpdf/shallow_array.pdf | 80 + qpdf/qtest/qpdf/shallow_stream.out | 1 + qpdf/qtest/qpdf/short-id-check.out | 17 + qpdf/qtest/qpdf/short-id.pdf | 80 + qpdf/qtest/qpdf/show-page-1-content-filtered.out | 1 + qpdf/qtest/qpdf/show-page-1-content-normalized.out | 8 + qpdf/qtest/qpdf/show-page-1-content-raw.out | Bin 0 -> 61 bytes qpdf/qtest/qpdf/show-page-1-image.out | Bin 0 -> 39109 bytes qpdf/qtest/qpdf/show-page-1.out | 1 + qpdf/qtest/qpdf/show-pages-images.out | 11 + qpdf/qtest/qpdf/show-pages.out | 6 + qpdf/qtest/qpdf/show-unfilterable.out | 1 + qpdf/qtest/qpdf/show-xref-by-id-filtered.out | Bin 0 -> 52 bytes qpdf/qtest/qpdf/show-xref-by-id.out | 2 + qpdf/qtest/qpdf/show-xref.out | 12 + qpdf/qtest/qpdf/stream-data.pdf | 112 + qpdf/qtest/qpdf/stream-line-enders.out | 3 + qpdf/qtest/qpdf/stream-line-enders.pdf | 50 + qpdf/qtest/qpdf/stream-line-enders.qdf | 137 + qpdf/qtest/qpdf/test-32.out | 13 + qpdf/qtest/qpdf/test11.out | 3 + qpdf/qtest/qpdf/test14-in.pdf | 264 + qpdf/qtest/qpdf/test14-out.pdf | 105 + qpdf/qtest/qpdf/test14.out | 7 + qpdf/qtest/qpdf/test4-1.pdf | 126 + qpdf/qtest/qpdf/test4-1.qdf | 158 + qpdf/qtest/qpdf/test4-2.out | 1 + qpdf/qtest/qpdf/test4-2.pdf | 104 + qpdf/qtest/qpdf/test4-3.out | 1 + qpdf/qtest/qpdf/test4-3.pdf | 109 + qpdf/qtest/qpdf/test4-4.pdf | 123 + qpdf/qtest/qpdf/test4-4.qdf | 155 + qpdf/qtest/qpdf/test8.out | 2 + qpdf/qtest/qpdf/test9.out | 2 + qpdf/qtest/qpdf/unreferenced-indirect-scalar.out | Bin 0 -> 1402 bytes qpdf/qtest/qpdf/unreferenced-indirect-scalar.pdf | Bin 0 -> 1216 bytes qpdf/qtest/qpdf/xref-with-short-size-new.out | 13 + qpdf/qtest/qpdf/xref-with-short-size-recover.out | 2 + qpdf/qtest/qpdf/xref-with-short-size.out | 14 + qpdf/qtest/qpdf/xref-with-short-size.pdf | Bin 0 -> 16527 bytes qpdf/test_driver.cc | 1164 +++ qpdf/test_large_file.cc | 362 + qtest/QTC/perl/QTC.pm | 26 + qtest/README.txt | 3 + qtest/bin/qtest-driver | 815 ++ qtest/module/TestDriver.pm | 1783 ++++ zlib-flate/Makefile | 1 + zlib-flate/build.mk | 22 + zlib-flate/qtest/1.compressed | Bin 0 -> 193 bytes zlib-flate/qtest/1.uncompressed | 5 + zlib-flate/qtest/zf.test | 26 + zlib-flate/zlib-flate.cc | 94 + 920 files changed, 118510 insertions(+) create mode 100644 Artistic-2.0 create mode 100644 ChangeLog create mode 100644 INSTALL create mode 100644 Makefile create mode 100644 README create mode 100644 README-what-to-download.txt create mode 100644 README-windows-install.txt create mode 100644 README-windows.txt create mode 100644 README.maintainer create mode 100644 TODO create mode 100644 autoconf.mk.in create mode 100755 autogen.sh create mode 100755 config-mingw32 create mode 100644 config-mingw64 create mode 100755 config-msvc create mode 100755 config.guess create mode 100755 config.sub create mode 100644 configure.ac create mode 100755 copy_dlls create mode 100644 debian/changelog create mode 100644 doc/stylesheet.css create mode 100644 examples/Makefile create mode 100644 examples/build.mk create mode 100644 examples/examples.testcov create mode 100644 examples/pdf-bookmarks.cc create mode 100644 examples/pdf-create.cc create mode 100644 examples/pdf-double-page-size.cc create mode 100644 examples/pdf-invert-images.cc create mode 100644 examples/pdf-linearize.c create mode 100644 examples/pdf-mod-info.cc create mode 100644 examples/pdf-npages.cc create mode 100644 examples/qtest/bookmarks.test create mode 100644 examples/qtest/bookmarks/1.pdf create mode 100644 examples/qtest/bookmarks/2.pdf create mode 100644 examples/qtest/bookmarks/3.pdf create mode 100644 examples/qtest/bookmarks/4.pdf create mode 100644 examples/qtest/bookmarks/5.pdf create mode 100644 examples/qtest/bookmarks/encrypted.out create mode 100644 examples/qtest/bookmarks/test.-show-open.-lines.out create mode 100644 examples/qtest/bookmarks/test.-show-open.-numbers.out create mode 100644 examples/qtest/bookmarks/test.-show-open..out create mode 100644 examples/qtest/bookmarks/test..-lines.out create mode 100644 examples/qtest/bookmarks/test..-numbers.out create mode 100644 examples/qtest/bookmarks/test...out create mode 100644 examples/qtest/create.test create mode 100644 examples/qtest/create/orange-square.pdf create mode 100644 examples/qtest/double-page-size.test create mode 100644 examples/qtest/double-page-size/in.pdf create mode 100644 examples/qtest/double-page-size/out.pdf create mode 100644 examples/qtest/invert-images.test create mode 100644 examples/qtest/invert-images/in.pdf create mode 100644 examples/qtest/invert-images/out.pdf create mode 100644 examples/qtest/linearize.test create mode 100644 examples/qtest/linearize/check.out create mode 100644 examples/qtest/linearize/input.pdf create mode 100644 examples/qtest/mod-info.test create mode 100644 examples/qtest/mod-info/dump.out create mode 100644 examples/qtest/mod-info/files/1.qdf create mode 100644 examples/qtest/mod-info/files/2.qdf create mode 100644 examples/qtest/mod-info/files/3.qdf create mode 100644 examples/qtest/mod-info/files/4.qdf create mode 100644 examples/qtest/mod-info/files/empty-info.pdf create mode 100644 examples/qtest/mod-info/files/no-info.pdf create mode 100644 examples/qtest/mod-info/files/source1.pdf create mode 100644 examples/qtest/mod-info/files/source2.pdf create mode 100644 examples/qtest/mod-info/usage.out create mode 100644 examples/qtest/npages.test create mode 100644 examples/qtest/npages/bad create mode 100644 examples/qtest/npages/minimal.pdf create mode 100644 include/qpdf/Buffer.hh create mode 100644 include/qpdf/BufferInputSource.hh create mode 100644 include/qpdf/Constants.h create mode 100644 include/qpdf/DLL.h create mode 100644 include/qpdf/FileInputSource.hh create mode 100644 include/qpdf/InputSource.hh create mode 100644 include/qpdf/Pipeline.hh create mode 100644 include/qpdf/Pl_Buffer.hh create mode 100644 include/qpdf/Pl_Concatenate.hh create mode 100644 include/qpdf/Pl_Count.hh create mode 100644 include/qpdf/Pl_Discard.hh create mode 100644 include/qpdf/Pl_Flate.hh create mode 100644 include/qpdf/Pl_StdioFile.hh create mode 100644 include/qpdf/PointerHolder.hh create mode 100644 include/qpdf/QPDF.hh create mode 100644 include/qpdf/QPDFExc.hh create mode 100644 include/qpdf/QPDFObject.hh create mode 100644 include/qpdf/QPDFObjectHandle.hh create mode 100644 include/qpdf/QPDFTokenizer.hh create mode 100644 include/qpdf/QPDFWriter.hh create mode 100644 include/qpdf/QPDFXRefEntry.hh create mode 100644 include/qpdf/QTC.hh create mode 100644 include/qpdf/QUtil.hh create mode 100644 include/qpdf/Types.h create mode 100644 include/qpdf/qpdf-c.h create mode 100755 install-sh create mode 100644 ispell-words create mode 100644 libqpdf.map create mode 100644 libqpdf.pc.in create mode 100644 libqpdf/BitStream.cc create mode 100644 libqpdf/BitWriter.cc create mode 100644 libqpdf/Buffer.cc create mode 100644 libqpdf/BufferInputSource.cc create mode 100644 libqpdf/FileInputSource.cc create mode 100644 libqpdf/InputSource.cc create mode 100644 libqpdf/MD5.cc create mode 100644 libqpdf/Makefile create mode 100644 libqpdf/PCRE.cc create mode 100644 libqpdf/Pipeline.cc create mode 100644 libqpdf/Pl_AES_PDF.cc create mode 100644 libqpdf/Pl_ASCII85Decoder.cc create mode 100644 libqpdf/Pl_ASCIIHexDecoder.cc create mode 100644 libqpdf/Pl_Buffer.cc create mode 100644 libqpdf/Pl_Concatenate.cc create mode 100644 libqpdf/Pl_Count.cc create mode 100644 libqpdf/Pl_Discard.cc create mode 100644 libqpdf/Pl_Flate.cc create mode 100644 libqpdf/Pl_LZWDecoder.cc create mode 100644 libqpdf/Pl_MD5.cc create mode 100644 libqpdf/Pl_PNGFilter.cc create mode 100644 libqpdf/Pl_QPDFTokenizer.cc create mode 100644 libqpdf/Pl_RC4.cc create mode 100644 libqpdf/Pl_StdioFile.cc create mode 100644 libqpdf/QPDF.cc create mode 100644 libqpdf/QPDFExc.cc create mode 100644 libqpdf/QPDFObject.cc create mode 100644 libqpdf/QPDFObjectHandle.cc create mode 100644 libqpdf/QPDFTokenizer.cc create mode 100644 libqpdf/QPDFWriter.cc create mode 100644 libqpdf/QPDFXRefEntry.cc create mode 100644 libqpdf/QPDF_Array.cc create mode 100644 libqpdf/QPDF_Bool.cc create mode 100644 libqpdf/QPDF_Dictionary.cc create mode 100644 libqpdf/QPDF_Integer.cc create mode 100644 libqpdf/QPDF_Name.cc create mode 100644 libqpdf/QPDF_Null.cc create mode 100644 libqpdf/QPDF_Real.cc create mode 100644 libqpdf/QPDF_Reserved.cc create mode 100644 libqpdf/QPDF_Stream.cc create mode 100644 libqpdf/QPDF_String.cc create mode 100644 libqpdf/QPDF_encryption.cc create mode 100644 libqpdf/QPDF_linearization.cc create mode 100644 libqpdf/QPDF_optimization.cc create mode 100644 libqpdf/QPDF_pages.cc create mode 100644 libqpdf/QTC.cc create mode 100644 libqpdf/QUtil.cc create mode 100644 libqpdf/RC4.cc create mode 100644 libqpdf/bits.icc create mode 100644 libqpdf/build.mk create mode 100644 libqpdf/qpdf-c.cc create mode 100644 libqpdf/qpdf/BitStream.hh create mode 100644 libqpdf/qpdf/BitWriter.hh create mode 100644 libqpdf/qpdf/MD5.hh create mode 100644 libqpdf/qpdf/PCRE.hh create mode 100644 libqpdf/qpdf/Pl_AES_PDF.hh create mode 100644 libqpdf/qpdf/Pl_ASCII85Decoder.hh create mode 100644 libqpdf/qpdf/Pl_ASCIIHexDecoder.hh create mode 100644 libqpdf/qpdf/Pl_LZWDecoder.hh create mode 100644 libqpdf/qpdf/Pl_MD5.hh create mode 100644 libqpdf/qpdf/Pl_PNGFilter.hh create mode 100644 libqpdf/qpdf/Pl_QPDFTokenizer.hh create mode 100644 libqpdf/qpdf/Pl_RC4.hh create mode 100644 libqpdf/qpdf/QPDF_Array.hh create mode 100644 libqpdf/qpdf/QPDF_Bool.hh create mode 100644 libqpdf/qpdf/QPDF_Dictionary.hh create mode 100644 libqpdf/qpdf/QPDF_Integer.hh create mode 100644 libqpdf/qpdf/QPDF_Name.hh create mode 100644 libqpdf/qpdf/QPDF_Null.hh create mode 100644 libqpdf/qpdf/QPDF_Real.hh create mode 100644 libqpdf/qpdf/QPDF_Reserved.hh create mode 100644 libqpdf/qpdf/QPDF_Stream.hh create mode 100644 libqpdf/qpdf/QPDF_String.hh create mode 100644 libqpdf/qpdf/RC4.hh create mode 100644 libqpdf/qpdf/rijndael.h create mode 100644 libqpdf/rijndael.cc create mode 100644 libtests/Makefile create mode 100644 libtests/aes.cc create mode 100644 libtests/ascii85.cc create mode 100644 libtests/bits.cc create mode 100644 libtests/buffer.cc create mode 100644 libtests/build.mk create mode 100644 libtests/concatenate.cc create mode 100644 libtests/flate.cc create mode 100644 libtests/hex.cc create mode 100644 libtests/libtests.testcov create mode 100644 libtests/lzw.cc create mode 100644 libtests/md5.cc create mode 100644 libtests/pcre.cc create mode 100644 libtests/png_filter.cc create mode 100644 libtests/pointer_holder.cc create mode 100644 libtests/qtest/aes.test create mode 100644 libtests/qtest/aes/data1 create mode 100644 libtests/qtest/aes/data2 create mode 100644 libtests/qtest/aes/test-vector.cipher create mode 100644 libtests/qtest/aes/test-vector.clear create mode 100644 libtests/qtest/ascii85.test create mode 100644 libtests/qtest/ascii85/base85.in create mode 100644 libtests/qtest/ascii85/binary.out create mode 100644 libtests/qtest/bits.test create mode 100644 libtests/qtest/bits/bits.out create mode 100644 libtests/qtest/buffer.test create mode 100644 libtests/qtest/buffer/buffer.out create mode 100644 libtests/qtest/flate.test create mode 100644 libtests/qtest/flate/compressed create mode 100644 libtests/qtest/hex.test create mode 100644 libtests/qtest/hex/binary.out create mode 100644 libtests/qtest/hex/hex.in create mode 100644 libtests/qtest/lzw.test create mode 100644 libtests/qtest/lzw/lzw1.in create mode 100644 libtests/qtest/lzw/lzw1.out create mode 100644 libtests/qtest/lzw/lzw2.in create mode 100644 libtests/qtest/lzw/lzw2.out create mode 100644 libtests/qtest/md5.test create mode 100644 libtests/qtest/md5/md5.in create mode 100644 libtests/qtest/md5/md5.out create mode 100644 libtests/qtest/pcre.test create mode 100644 libtests/qtest/pcre/pcre-unicode-classes.out create mode 100644 libtests/qtest/pcre/pcre.out create mode 100644 libtests/qtest/ph.test create mode 100644 libtests/qtest/ph/ph.out create mode 100644 libtests/qtest/png_filter.test create mode 100644 libtests/qtest/png_filter/in1 create mode 100644 libtests/qtest/png_filter/in2 create mode 100644 libtests/qtest/png_filter/out1 create mode 100644 libtests/qtest/png_filter/out2 create mode 100644 libtests/qtest/qutil.test create mode 100644 libtests/qtest/qutil/qutil.out create mode 100644 libtests/qtest/rc4.test create mode 100644 libtests/qtest/rc4/test1.in create mode 100644 libtests/qtest/rc4/test1.out create mode 100644 libtests/qtest/rc4/test2.in create mode 100644 libtests/qtest/rc4/test2.out create mode 100644 libtests/qtest/rc4/test3.in create mode 100644 libtests/qtest/rc4/test3.out create mode 100644 libtests/qtest/rc4/test4.in create mode 100644 libtests/qtest/rc4/test4.out create mode 100644 libtests/qtest/rc4/test5.in create mode 100644 libtests/qtest/rc4/test5.out create mode 100644 libtests/qutil.cc create mode 100644 libtests/rc4.cc create mode 100644 ltmain.sh create mode 100644 m4/libtool.m4 create mode 100644 m4/ltoptions.m4 create mode 100644 m4/ltsugar.m4 create mode 100644 m4/ltversion.m4 create mode 100644 m4/lt~obsolete.m4 create mode 100644 make/gcc-linux.mk create mode 100644 make/installwin.mk create mode 100644 make/libtool.mk create mode 100644 make/mingw.mk create mode 100644 make/msvc.mk create mode 100644 make/proxy.mk create mode 100644 make/rules.mk create mode 100755 make_dist create mode 100755 make_windows_releases create mode 100755 make_windows_releases-finish create mode 100755 make_windows_releases-msvc create mode 100644 manual/Makefile create mode 100644 manual/README create mode 100644 manual/build.mk create mode 100644 manual/common.xsl create mode 100644 manual/fix-qdf.1.in create mode 100644 manual/html.xsl.in create mode 100644 manual/print.xsl.in create mode 100644 manual/qpdf-manual.xml create mode 100644 manual/qpdf.1.in create mode 100644 manual/zlib-flate.1.in create mode 100755 mkinstalldirs create mode 100644 packaging/qpdf.spec create mode 100644 qpdf.manifest create mode 100644 qpdf.spec create mode 100644 qpdf/Makefile create mode 100644 qpdf/build.mk create mode 100755 qpdf/fix-qdf create mode 100644 qpdf/pdf_from_scratch.cc create mode 100644 qpdf/qpdf-ctest.c create mode 100644 qpdf/qpdf.cc create mode 100644 qpdf/qpdf.testcov create mode 100644 qpdf/qtest/qpdf.test create mode 100644 qpdf/qtest/qpdf/20-pages.pdf create mode 100644 qpdf/qtest/qpdf/U25A0.1-ogen.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.1-ogen.check create mode 100644 qpdf/qtest/qpdf/U25A0.1.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.1.check create mode 100644 qpdf/qtest/qpdf/U25A0.10-ogen.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.10-ogen.check create mode 100644 qpdf/qtest/qpdf/U25A0.10.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.10.check create mode 100644 qpdf/qtest/qpdf/U25A0.11-ogen.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.11-ogen.check create mode 100644 qpdf/qtest/qpdf/U25A0.11.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.11.check create mode 100644 qpdf/qtest/qpdf/U25A0.12-ogen.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.12-ogen.check create mode 100644 qpdf/qtest/qpdf/U25A0.12.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.12.check create mode 100644 qpdf/qtest/qpdf/U25A0.2-ogen.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.2-ogen.check create mode 100644 qpdf/qtest/qpdf/U25A0.2.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.2.check create mode 100644 qpdf/qtest/qpdf/U25A0.3-ogen.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.3-ogen.check create mode 100644 qpdf/qtest/qpdf/U25A0.3.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.3.check create mode 100644 qpdf/qtest/qpdf/U25A0.4-ogen.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.4-ogen.check create mode 100644 qpdf/qtest/qpdf/U25A0.4.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.4.check create mode 100644 qpdf/qtest/qpdf/U25A0.5-ogen.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.5-ogen.check create mode 100644 qpdf/qtest/qpdf/U25A0.5.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.5.check create mode 100644 qpdf/qtest/qpdf/U25A0.6-ogen.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.6-ogen.check create mode 100644 qpdf/qtest/qpdf/U25A0.6.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.6.check create mode 100644 qpdf/qtest/qpdf/U25A0.7-ogen.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.7-ogen.check create mode 100644 qpdf/qtest/qpdf/U25A0.7.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.7.check create mode 100644 qpdf/qtest/qpdf/U25A0.8-ogen.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.8-ogen.check create mode 100644 qpdf/qtest/qpdf/U25A0.8.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.8.check create mode 100644 qpdf/qtest/qpdf/U25A0.9-ogen.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.9-ogen.check create mode 100644 qpdf/qtest/qpdf/U25A0.9.c-check create mode 100644 qpdf/qtest/qpdf/U25A0.9.check create mode 100644 qpdf/qtest/qpdf/U25A0.pdf create mode 100644 qpdf/qtest/qpdf/V4-aes-clearmeta-encryption.out create mode 100644 qpdf/qtest/qpdf/V4-aes-clearmeta.pdf create mode 100644 qpdf/qtest/qpdf/V4-aes-encryption.out create mode 100644 qpdf/qtest/qpdf/V4-aes.pdf create mode 100644 qpdf/qtest/qpdf/V4-clearmeta-encryption.out create mode 100644 qpdf/qtest/qpdf/V4-clearmeta.pdf create mode 100644 qpdf/qtest/qpdf/V4-encryption.out create mode 100644 qpdf/qtest/qpdf/V4.pdf create mode 100644 qpdf/qtest/qpdf/add-contents.pdf create mode 100644 qpdf/qtest/qpdf/aes-forced-check.out create mode 100644 qpdf/qtest/qpdf/append-page-content-damaged-c-check.out create mode 100644 qpdf/qtest/qpdf/append-page-content-damaged-check.out create mode 100644 qpdf/qtest/qpdf/append-page-content-damaged.out create mode 100644 qpdf/qtest/qpdf/append-page-content-damaged.pdf create mode 100644 qpdf/qtest/qpdf/append-page-content-damaged.qdf create mode 100644 qpdf/qtest/qpdf/append-page-content-good.qdf create mode 100644 qpdf/qtest/qpdf/append-page-content.pdf create mode 100644 qpdf/qtest/qpdf/bad1-recover.out create mode 100644 qpdf/qtest/qpdf/bad1.out create mode 100644 qpdf/qtest/qpdf/bad1.pdf create mode 100644 qpdf/qtest/qpdf/bad10-recover.out create mode 100644 qpdf/qtest/qpdf/bad10.out create mode 100644 qpdf/qtest/qpdf/bad10.pdf create mode 100644 qpdf/qtest/qpdf/bad11-recover.out create mode 100644 qpdf/qtest/qpdf/bad11.out create mode 100644 qpdf/qtest/qpdf/bad11.pdf create mode 100644 qpdf/qtest/qpdf/bad12-recover.out create mode 100644 qpdf/qtest/qpdf/bad12.out create mode 100644 qpdf/qtest/qpdf/bad12.pdf create mode 100644 qpdf/qtest/qpdf/bad13-recover.out create mode 100644 qpdf/qtest/qpdf/bad13.out create mode 100644 qpdf/qtest/qpdf/bad13.pdf create mode 100644 qpdf/qtest/qpdf/bad14-recover.out create mode 100644 qpdf/qtest/qpdf/bad14.out create mode 100644 qpdf/qtest/qpdf/bad14.pdf create mode 100644 qpdf/qtest/qpdf/bad15-recover.out create mode 100644 qpdf/qtest/qpdf/bad15.out create mode 100644 qpdf/qtest/qpdf/bad15.pdf create mode 100644 qpdf/qtest/qpdf/bad16-recover.out create mode 100644 qpdf/qtest/qpdf/bad16.out create mode 100644 qpdf/qtest/qpdf/bad16.pdf create mode 100644 qpdf/qtest/qpdf/bad17-recover.out create mode 100644 qpdf/qtest/qpdf/bad17.out create mode 100644 qpdf/qtest/qpdf/bad17.pdf create mode 100644 qpdf/qtest/qpdf/bad18-recover.out create mode 100644 qpdf/qtest/qpdf/bad18.out create mode 100644 qpdf/qtest/qpdf/bad18.pdf create mode 100644 qpdf/qtest/qpdf/bad19-recover.out create mode 100644 qpdf/qtest/qpdf/bad19.out create mode 100644 qpdf/qtest/qpdf/bad19.pdf create mode 100644 qpdf/qtest/qpdf/bad2-recover.out create mode 100644 qpdf/qtest/qpdf/bad2.out create mode 100644 qpdf/qtest/qpdf/bad2.pdf create mode 100644 qpdf/qtest/qpdf/bad20-recover.out create mode 100644 qpdf/qtest/qpdf/bad20.out create mode 100644 qpdf/qtest/qpdf/bad20.pdf create mode 100644 qpdf/qtest/qpdf/bad21-recover.out create mode 100644 qpdf/qtest/qpdf/bad21.out create mode 100644 qpdf/qtest/qpdf/bad21.pdf create mode 100644 qpdf/qtest/qpdf/bad22-recover.out create mode 100644 qpdf/qtest/qpdf/bad22.out create mode 100644 qpdf/qtest/qpdf/bad22.pdf create mode 100644 qpdf/qtest/qpdf/bad23-recover.out create mode 100644 qpdf/qtest/qpdf/bad23.out create mode 100644 qpdf/qtest/qpdf/bad23.pdf create mode 100644 qpdf/qtest/qpdf/bad24-recover.out create mode 100644 qpdf/qtest/qpdf/bad24.out create mode 100644 qpdf/qtest/qpdf/bad24.pdf create mode 100644 qpdf/qtest/qpdf/bad25-recover.out create mode 100644 qpdf/qtest/qpdf/bad25.out create mode 100644 qpdf/qtest/qpdf/bad25.pdf create mode 100644 qpdf/qtest/qpdf/bad26-recover.out create mode 100644 qpdf/qtest/qpdf/bad26.out create mode 100644 qpdf/qtest/qpdf/bad26.pdf create mode 100644 qpdf/qtest/qpdf/bad27-recover.out create mode 100644 qpdf/qtest/qpdf/bad27.out create mode 100644 qpdf/qtest/qpdf/bad27.pdf create mode 100644 qpdf/qtest/qpdf/bad28-recover.out create mode 100644 qpdf/qtest/qpdf/bad28.out create mode 100644 qpdf/qtest/qpdf/bad28.pdf create mode 100644 qpdf/qtest/qpdf/bad29-recover.out create mode 100644 qpdf/qtest/qpdf/bad29.out create mode 100644 qpdf/qtest/qpdf/bad29.pdf create mode 100644 qpdf/qtest/qpdf/bad3-recover.out create mode 100644 qpdf/qtest/qpdf/bad3.out create mode 100644 qpdf/qtest/qpdf/bad3.pdf create mode 100644 qpdf/qtest/qpdf/bad30-recover.out create mode 100644 qpdf/qtest/qpdf/bad30.out create mode 100644 qpdf/qtest/qpdf/bad30.pdf create mode 100644 qpdf/qtest/qpdf/bad31-recover.out create mode 100644 qpdf/qtest/qpdf/bad31.out create mode 100644 qpdf/qtest/qpdf/bad31.pdf create mode 100644 qpdf/qtest/qpdf/bad32-recover.out create mode 100644 qpdf/qtest/qpdf/bad32.out create mode 100644 qpdf/qtest/qpdf/bad32.pdf create mode 100644 qpdf/qtest/qpdf/bad33-recover.out create mode 100644 qpdf/qtest/qpdf/bad33.out create mode 100644 qpdf/qtest/qpdf/bad33.pdf create mode 100644 qpdf/qtest/qpdf/bad34-recover.out create mode 100644 qpdf/qtest/qpdf/bad34.out create mode 100644 qpdf/qtest/qpdf/bad34.pdf create mode 100644 qpdf/qtest/qpdf/bad35-recover.out create mode 100644 qpdf/qtest/qpdf/bad35.out create mode 100644 qpdf/qtest/qpdf/bad35.pdf create mode 100644 qpdf/qtest/qpdf/bad4-recover.out create mode 100644 qpdf/qtest/qpdf/bad4.out create mode 100644 qpdf/qtest/qpdf/bad4.pdf create mode 100644 qpdf/qtest/qpdf/bad5-recover.out create mode 100644 qpdf/qtest/qpdf/bad5.out create mode 100644 qpdf/qtest/qpdf/bad5.pdf create mode 100644 qpdf/qtest/qpdf/bad6-recover.out create mode 100644 qpdf/qtest/qpdf/bad6.out create mode 100644 qpdf/qtest/qpdf/bad6.pdf create mode 100644 qpdf/qtest/qpdf/bad7-recover.out create mode 100644 qpdf/qtest/qpdf/bad7.out create mode 100644 qpdf/qtest/qpdf/bad7.pdf create mode 100644 qpdf/qtest/qpdf/bad8-recover.out create mode 100644 qpdf/qtest/qpdf/bad8.out create mode 100644 qpdf/qtest/qpdf/bad8.pdf create mode 100644 qpdf/qtest/qpdf/bad9-recover.out create mode 100644 qpdf/qtest/qpdf/bad9.out create mode 100644 qpdf/qtest/qpdf/bad9.pdf create mode 100644 qpdf/qtest/qpdf/badlin1.out create mode 100644 qpdf/qtest/qpdf/badlin1.pdf create mode 100644 qpdf/qtest/qpdf/c-decrypt-with-owner.pdf create mode 100644 qpdf/qtest/qpdf/c-decrypt-with-user.pdf create mode 100644 qpdf/qtest/qpdf/c-ignore-xref-streams.pdf create mode 100644 qpdf/qtest/qpdf/c-info-out.pdf create mode 100644 qpdf/qtest/qpdf/c-info1.out create mode 100644 qpdf/qtest/qpdf/c-info2-in.pdf create mode 100644 qpdf/qtest/qpdf/c-info2.out create mode 100644 qpdf/qtest/qpdf/c-invalid-password.out create mode 100644 qpdf/qtest/qpdf/c-linearized.pdf create mode 100644 qpdf/qtest/qpdf/c-no-options.pdf create mode 100644 qpdf/qtest/qpdf/c-no-original-object-ids.pdf create mode 100644 qpdf/qtest/qpdf/c-no-recovery.out create mode 100644 qpdf/qtest/qpdf/c-normalized-content.pdf create mode 100644 qpdf/qtest/qpdf/c-object-streams.pdf create mode 100644 qpdf/qtest/qpdf/c-qdf.pdf create mode 100644 qpdf/qtest/qpdf/c-r2.pdf create mode 100644 qpdf/qtest/qpdf/c-r3.pdf create mode 100644 qpdf/qtest/qpdf/c-r4.pdf create mode 100644 qpdf/qtest/qpdf/c-read-errors.out create mode 100644 qpdf/qtest/qpdf/c-read-warnings-and-errors.out create mode 100644 qpdf/qtest/qpdf/c-uncompressed-streams.pdf create mode 100644 qpdf/qtest/qpdf/c-write-damaged.out create mode 100644 qpdf/qtest/qpdf/c-write-errors.out create mode 100644 qpdf/qtest/qpdf/c-write-warnings-and-errors.out create mode 100644 qpdf/qtest/qpdf/check-ID.pl create mode 100644 qpdf/qtest/qpdf/compressed-metadata.pdf create mode 100644 qpdf/qtest/qpdf/copied-encryption.out create mode 100644 qpdf/qtest/qpdf/copy-foreign-objects-errors.out create mode 100644 qpdf/qtest/qpdf/copy-foreign-objects-in.pdf create mode 100644 qpdf/qtest/qpdf/copy-foreign-objects-out1.pdf create mode 100644 qpdf/qtest/qpdf/copy-foreign-objects-out2.pdf create mode 100644 qpdf/qtest/qpdf/copy-foreign-objects-out3.pdf create mode 100644 qpdf/qtest/qpdf/damaged-stream-c-check.out create mode 100644 qpdf/qtest/qpdf/damaged-stream.out create mode 100644 qpdf/qtest/qpdf/damaged-stream.pdf create mode 100644 qpdf/qtest/qpdf/decrypted-crypt-filter.pdf create mode 100644 qpdf/qtest/qpdf/delete-and-reuse.pdf create mode 100644 qpdf/qtest/qpdf/delete-and-reuse.qdf create mode 100755 qpdf/qtest/qpdf/diff-encrypted create mode 100755 qpdf/qtest/qpdf/diff-ignore-ID-version create mode 100644 qpdf/qtest/qpdf/empty-object.out create mode 100644 qpdf/qtest/qpdf/empty-object.pdf create mode 100644 qpdf/qtest/qpdf/enc-R2,V1,O=master.pdf create mode 100644 qpdf/qtest/qpdf/enc-R2,V1,U=view,O=master.pdf create mode 100644 qpdf/qtest/qpdf/enc-R2,V1,U=view.pdf create mode 100644 qpdf/qtest/qpdf/enc-R2,V1.pdf create mode 100644 qpdf/qtest/qpdf/enc-R3,V2,O=master.pdf create mode 100644 qpdf/qtest/qpdf/enc-R3,V2,U=view,O=master.pdf create mode 100644 qpdf/qtest/qpdf/enc-R3,V2,U=view.pdf create mode 100644 qpdf/qtest/qpdf/enc-R3,V2.pdf create mode 100644 qpdf/qtest/qpdf/enc-base.pdf create mode 100644 qpdf/qtest/qpdf/enc-long-password.pdf create mode 100644 qpdf/qtest/qpdf/encrypted-with-images.pdf create mode 100644 qpdf/qtest/qpdf/encrypted1.out create mode 100644 qpdf/qtest/qpdf/eof-reading-token.out create mode 100644 qpdf/qtest/qpdf/eof-reading-token.pdf create mode 100644 qpdf/qtest/qpdf/eof-terminates-literal.out create mode 100644 qpdf/qtest/qpdf/eof-terminates-literal.pdf create mode 100644 qpdf/qtest/qpdf/extra-header-lin-newline.pdf create mode 100644 qpdf/qtest/qpdf/extra-header-lin-no-newline.pdf create mode 100644 qpdf/qtest/qpdf/extra-header-newline.pdf create mode 100644 qpdf/qtest/qpdf/extra-header-no-newline.pdf create mode 100644 qpdf/qtest/qpdf/fax-decode-parms.out create mode 100644 qpdf/qtest/qpdf/fax-decode-parms.pdf create mode 100644 qpdf/qtest/qpdf/filter-abbreviation.out create mode 100644 qpdf/qtest/qpdf/filter-abbreviation.pdf create mode 100644 qpdf/qtest/qpdf/fix1.qdf create mode 100644 qpdf/qtest/qpdf/fix1.qdf.out create mode 100644 qpdf/qtest/qpdf/fix2.qdf create mode 100644 qpdf/qtest/qpdf/fix2.qdf.out create mode 100644 qpdf/qtest/qpdf/forced-version.out create mode 100644 qpdf/qtest/qpdf/foreign-in-write.out create mode 100644 qpdf/qtest/qpdf/from-scratch-0.pdf create mode 100644 qpdf/qtest/qpdf/good1.out create mode 100644 qpdf/qtest/qpdf/good1.pdf create mode 100644 qpdf/qtest/qpdf/good1.qdf create mode 100644 qpdf/qtest/qpdf/good10.out create mode 100644 qpdf/qtest/qpdf/good10.pdf create mode 100644 qpdf/qtest/qpdf/good10.qdf create mode 100644 qpdf/qtest/qpdf/good11.out create mode 100644 qpdf/qtest/qpdf/good11.pdf create mode 100644 qpdf/qtest/qpdf/good11.qdf create mode 100644 qpdf/qtest/qpdf/good12.out create mode 100644 qpdf/qtest/qpdf/good12.pdf create mode 100644 qpdf/qtest/qpdf/good12.qdf create mode 100644 qpdf/qtest/qpdf/good13.out create mode 100644 qpdf/qtest/qpdf/good13.pdf create mode 100644 qpdf/qtest/qpdf/good13.qdf create mode 100644 qpdf/qtest/qpdf/good14.out create mode 100644 qpdf/qtest/qpdf/good14.pdf create mode 100644 qpdf/qtest/qpdf/good14.qdf create mode 100644 qpdf/qtest/qpdf/good15.out create mode 100644 qpdf/qtest/qpdf/good15.pdf create mode 100644 qpdf/qtest/qpdf/good15.qdf create mode 100644 qpdf/qtest/qpdf/good16.out create mode 100644 qpdf/qtest/qpdf/good16.pdf create mode 100644 qpdf/qtest/qpdf/good16.qdf create mode 100644 qpdf/qtest/qpdf/good17-not-qdf.pdf create mode 100644 qpdf/qtest/qpdf/good17-not-recompressed.pdf create mode 100644 qpdf/qtest/qpdf/good17.out create mode 100644 qpdf/qtest/qpdf/good17.pdf create mode 100644 qpdf/qtest/qpdf/good17.qdf create mode 100644 qpdf/qtest/qpdf/good18.out create mode 100644 qpdf/qtest/qpdf/good18.pdf create mode 100644 qpdf/qtest/qpdf/good18.qdf create mode 100644 qpdf/qtest/qpdf/good19.out create mode 100644 qpdf/qtest/qpdf/good19.pdf create mode 100644 qpdf/qtest/qpdf/good19.qdf create mode 100644 qpdf/qtest/qpdf/good2.out create mode 100644 qpdf/qtest/qpdf/good2.pdf create mode 100644 qpdf/qtest/qpdf/good2.qdf create mode 100644 qpdf/qtest/qpdf/good20.out create mode 100644 qpdf/qtest/qpdf/good20.pdf create mode 100644 qpdf/qtest/qpdf/good20.qdf create mode 100644 qpdf/qtest/qpdf/good3.out create mode 100644 qpdf/qtest/qpdf/good3.pdf create mode 100644 qpdf/qtest/qpdf/good3.qdf create mode 100644 qpdf/qtest/qpdf/good4.out create mode 100644 qpdf/qtest/qpdf/good4.pdf create mode 100644 qpdf/qtest/qpdf/good4.qdf create mode 100644 qpdf/qtest/qpdf/good5.out create mode 100644 qpdf/qtest/qpdf/good5.pdf create mode 100644 qpdf/qtest/qpdf/good5.qdf create mode 100644 qpdf/qtest/qpdf/good6.out create mode 100644 qpdf/qtest/qpdf/good6.pdf create mode 100644 qpdf/qtest/qpdf/good6.qdf create mode 100644 qpdf/qtest/qpdf/good7-not-normalized.qdf create mode 100644 qpdf/qtest/qpdf/good7.out create mode 100644 qpdf/qtest/qpdf/good7.pdf create mode 100644 qpdf/qtest/qpdf/good7.qdf create mode 100644 qpdf/qtest/qpdf/good8.out create mode 100644 qpdf/qtest/qpdf/good8.pdf create mode 100644 qpdf/qtest/qpdf/good8.qdf create mode 100644 qpdf/qtest/qpdf/good9.out create mode 100644 qpdf/qtest/qpdf/good9.pdf create mode 100644 qpdf/qtest/qpdf/good9.qdf create mode 100644 qpdf/qtest/qpdf/heifer.out create mode 100644 qpdf/qtest/qpdf/heifer.pdf create mode 100644 qpdf/qtest/qpdf/heifer.qdf create mode 100644 qpdf/qtest/qpdf/hybrid-xref.1-ogen.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.1-ogen.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.1.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.1.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.10-ogen.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.10-ogen.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.10.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.10.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.11-ogen.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.11-ogen.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.11.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.11.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.12-ogen.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.12-ogen.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.12.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.12.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.2-ogen.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.2-ogen.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.2.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.2.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.3-ogen.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.3-ogen.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.3.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.3.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.4-ogen.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.4-ogen.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.4.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.4.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.5-ogen.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.5-ogen.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.5.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.5.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.6-ogen.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.6-ogen.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.6.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.6.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.7-ogen.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.7-ogen.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.7.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.7.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.8-ogen.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.8-ogen.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.8.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.8.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.9-ogen.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.9-ogen.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.9.c-check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.9.check create mode 100644 qpdf/qtest/qpdf/hybrid-xref.pdf create mode 100644 qpdf/qtest/qpdf/inline-images-cr.pdf create mode 100644 qpdf/qtest/qpdf/inline-images.1-ogen.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.1-ogen.check create mode 100644 qpdf/qtest/qpdf/inline-images.1.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.1.check create mode 100644 qpdf/qtest/qpdf/inline-images.10-ogen.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.10-ogen.check create mode 100644 qpdf/qtest/qpdf/inline-images.10.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.10.check create mode 100644 qpdf/qtest/qpdf/inline-images.11-ogen.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.11-ogen.check create mode 100644 qpdf/qtest/qpdf/inline-images.11.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.11.check create mode 100644 qpdf/qtest/qpdf/inline-images.12-ogen.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.12-ogen.check create mode 100644 qpdf/qtest/qpdf/inline-images.12.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.12.check create mode 100644 qpdf/qtest/qpdf/inline-images.2-ogen.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.2-ogen.check create mode 100644 qpdf/qtest/qpdf/inline-images.2.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.2.check create mode 100644 qpdf/qtest/qpdf/inline-images.3-ogen.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.3-ogen.check create mode 100644 qpdf/qtest/qpdf/inline-images.3.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.3.check create mode 100644 qpdf/qtest/qpdf/inline-images.4-ogen.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.4-ogen.check create mode 100644 qpdf/qtest/qpdf/inline-images.4.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.4.check create mode 100644 qpdf/qtest/qpdf/inline-images.5-ogen.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.5-ogen.check create mode 100644 qpdf/qtest/qpdf/inline-images.5.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.5.check create mode 100644 qpdf/qtest/qpdf/inline-images.6-ogen.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.6-ogen.check create mode 100644 qpdf/qtest/qpdf/inline-images.6.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.6.check create mode 100644 qpdf/qtest/qpdf/inline-images.7-ogen.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.7-ogen.check create mode 100644 qpdf/qtest/qpdf/inline-images.7.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.7.check create mode 100644 qpdf/qtest/qpdf/inline-images.8-ogen.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.8-ogen.check create mode 100644 qpdf/qtest/qpdf/inline-images.8.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.8.check create mode 100644 qpdf/qtest/qpdf/inline-images.9-ogen.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.9-ogen.check create mode 100644 qpdf/qtest/qpdf/inline-images.9.c-check create mode 100644 qpdf/qtest/qpdf/inline-images.9.check create mode 100644 qpdf/qtest/qpdf/inline-images.pdf create mode 100644 qpdf/qtest/qpdf/large_file-check-linearized.out create mode 100644 qpdf/qtest/qpdf/large_file-check-normal.out create mode 100644 qpdf/qtest/qpdf/large_file-check-ostream-linearized.out create mode 100644 qpdf/qtest/qpdf/large_file-check-ostream.out create mode 100644 qpdf/qtest/qpdf/large_file.out create mode 100644 qpdf/qtest/qpdf/large_file_xref_reconstruct.out create mode 100644 qpdf/qtest/qpdf/lin-delete-and-reuse-check.out create mode 100644 qpdf/qtest/qpdf/lin-delete-and-reuse.pdf create mode 100644 qpdf/qtest/qpdf/lin-special.1-ogen.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.1-ogen.check create mode 100644 qpdf/qtest/qpdf/lin-special.1.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.1.check create mode 100644 qpdf/qtest/qpdf/lin-special.10-ogen.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.10-ogen.check create mode 100644 qpdf/qtest/qpdf/lin-special.10.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.10.check create mode 100644 qpdf/qtest/qpdf/lin-special.11-ogen.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.11-ogen.check create mode 100644 qpdf/qtest/qpdf/lin-special.11.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.11.check create mode 100644 qpdf/qtest/qpdf/lin-special.12-ogen.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.12-ogen.check create mode 100644 qpdf/qtest/qpdf/lin-special.12.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.12.check create mode 100644 qpdf/qtest/qpdf/lin-special.2-ogen.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.2-ogen.check create mode 100644 qpdf/qtest/qpdf/lin-special.2.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.2.check create mode 100644 qpdf/qtest/qpdf/lin-special.3-ogen.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.3-ogen.check create mode 100644 qpdf/qtest/qpdf/lin-special.3.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.3.check create mode 100644 qpdf/qtest/qpdf/lin-special.4-ogen.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.4-ogen.check create mode 100644 qpdf/qtest/qpdf/lin-special.4.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.4.check create mode 100644 qpdf/qtest/qpdf/lin-special.5-ogen.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.5-ogen.check create mode 100644 qpdf/qtest/qpdf/lin-special.5.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.5.check create mode 100644 qpdf/qtest/qpdf/lin-special.6-ogen.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.6-ogen.check create mode 100644 qpdf/qtest/qpdf/lin-special.6.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.6.check create mode 100644 qpdf/qtest/qpdf/lin-special.7-ogen.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.7-ogen.check create mode 100644 qpdf/qtest/qpdf/lin-special.7.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.7.check create mode 100644 qpdf/qtest/qpdf/lin-special.8-ogen.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.8-ogen.check create mode 100644 qpdf/qtest/qpdf/lin-special.8.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.8.check create mode 100644 qpdf/qtest/qpdf/lin-special.9-ogen.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.9-ogen.check create mode 100644 qpdf/qtest/qpdf/lin-special.9.c-check create mode 100644 qpdf/qtest/qpdf/lin-special.9.check create mode 100644 qpdf/qtest/qpdf/lin-special.disable.exp create mode 100644 qpdf/qtest/qpdf/lin-special.generate.exp create mode 100644 qpdf/qtest/qpdf/lin-special.pdf create mode 100644 qpdf/qtest/qpdf/lin-special.preserve.exp create mode 100644 qpdf/qtest/qpdf/lin0.out create mode 100644 qpdf/qtest/qpdf/lin0.pdf create mode 100644 qpdf/qtest/qpdf/lin1.out create mode 100644 qpdf/qtest/qpdf/lin1.pdf create mode 100644 qpdf/qtest/qpdf/lin2.out create mode 100644 qpdf/qtest/qpdf/lin2.pdf create mode 100644 qpdf/qtest/qpdf/lin3.out create mode 100644 qpdf/qtest/qpdf/lin3.pdf create mode 100644 qpdf/qtest/qpdf/lin4.out create mode 100644 qpdf/qtest/qpdf/lin4.pdf create mode 100644 qpdf/qtest/qpdf/lin5.out create mode 100644 qpdf/qtest/qpdf/lin5.pdf create mode 100644 qpdf/qtest/qpdf/lin6.out create mode 100644 qpdf/qtest/qpdf/lin6.pdf create mode 100644 qpdf/qtest/qpdf/lin7.out create mode 100644 qpdf/qtest/qpdf/lin7.pdf create mode 100644 qpdf/qtest/qpdf/lin8.out create mode 100644 qpdf/qtest/qpdf/lin8.pdf create mode 100644 qpdf/qtest/qpdf/lin9.out create mode 100644 qpdf/qtest/qpdf/lin9.pdf create mode 100644 qpdf/qtest/qpdf/linearized-and-warnings-1.out create mode 100644 qpdf/qtest/qpdf/linearized-and-warnings-2.out create mode 100644 qpdf/qtest/qpdf/linearized-and-warnings.pdf create mode 100644 qpdf/qtest/qpdf/long-id-check.out create mode 100644 qpdf/qtest/qpdf/long-id.pdf create mode 100644 qpdf/qtest/qpdf/merge-three-files-1.pdf create mode 100644 qpdf/qtest/qpdf/merge-three-files-2.pdf create mode 100644 qpdf/qtest/qpdf/metadata-crypt-filter.pdf create mode 100644 qpdf/qtest/qpdf/min-version.out create mode 100644 qpdf/qtest/qpdf/minimal.pdf create mode 100644 qpdf/qtest/qpdf/misc-1.out create mode 100644 qpdf/qtest/qpdf/misc-1.pdf create mode 100644 qpdf/qtest/qpdf/misc-2.out create mode 100644 qpdf/qtest/qpdf/misc-2.pdf create mode 100644 qpdf/qtest/qpdf/misc-3.out create mode 100644 qpdf/qtest/qpdf/misc-3.pdf create mode 100644 qpdf/qtest/qpdf/multiple-mods-check.out create mode 100644 qpdf/qtest/qpdf/multiple-mods.pdf create mode 100644 qpdf/qtest/qpdf/new-streams.pdf create mode 100644 qpdf/qtest/qpdf/obj0-check.out create mode 100644 qpdf/qtest/qpdf/obj0.pdf create mode 100644 qpdf/qtest/qpdf/object-stream.1-ogen.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.1-ogen.check create mode 100644 qpdf/qtest/qpdf/object-stream.1.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.1.check create mode 100644 qpdf/qtest/qpdf/object-stream.10-ogen.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.10-ogen.check create mode 100644 qpdf/qtest/qpdf/object-stream.10.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.10.check create mode 100644 qpdf/qtest/qpdf/object-stream.11-ogen.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.11-ogen.check create mode 100644 qpdf/qtest/qpdf/object-stream.11.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.11.check create mode 100644 qpdf/qtest/qpdf/object-stream.12-ogen.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.12-ogen.check create mode 100644 qpdf/qtest/qpdf/object-stream.12.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.12.check create mode 100644 qpdf/qtest/qpdf/object-stream.2-ogen.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.2-ogen.check create mode 100644 qpdf/qtest/qpdf/object-stream.2.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.2.check create mode 100644 qpdf/qtest/qpdf/object-stream.3-ogen.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.3-ogen.check create mode 100644 qpdf/qtest/qpdf/object-stream.3.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.3.check create mode 100644 qpdf/qtest/qpdf/object-stream.4-ogen.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.4-ogen.check create mode 100644 qpdf/qtest/qpdf/object-stream.4.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.4.check create mode 100644 qpdf/qtest/qpdf/object-stream.5-ogen.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.5-ogen.check create mode 100644 qpdf/qtest/qpdf/object-stream.5.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.5.check create mode 100644 qpdf/qtest/qpdf/object-stream.6-ogen.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.6-ogen.check create mode 100644 qpdf/qtest/qpdf/object-stream.6.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.6.check create mode 100644 qpdf/qtest/qpdf/object-stream.7-ogen.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.7-ogen.check create mode 100644 qpdf/qtest/qpdf/object-stream.7.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.7.check create mode 100644 qpdf/qtest/qpdf/object-stream.8-ogen.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.8-ogen.check create mode 100644 qpdf/qtest/qpdf/object-stream.8.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.8.check create mode 100644 qpdf/qtest/qpdf/object-stream.9-ogen.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.9-ogen.check create mode 100644 qpdf/qtest/qpdf/object-stream.9.c-check create mode 100644 qpdf/qtest/qpdf/object-stream.9.check create mode 100644 qpdf/qtest/qpdf/object-stream.disable.exp create mode 100644 qpdf/qtest/qpdf/object-stream.generate.exp create mode 100644 qpdf/qtest/qpdf/object-stream.pdf create mode 100644 qpdf/qtest/qpdf/object-stream.preserve.exp create mode 100644 qpdf/qtest/qpdf/old-and-complex-c-check.out create mode 100644 qpdf/qtest/qpdf/old-and-complex-check.out create mode 100644 qpdf/qtest/qpdf/old-and-complex.pdf create mode 100644 qpdf/qtest/qpdf/p1-a-p2-a.pdf create mode 100644 qpdf/qtest/qpdf/p1-a-p2-b.pdf create mode 100644 qpdf/qtest/qpdf/p1-a.pdf create mode 100644 qpdf/qtest/qpdf/p1-b.pdf create mode 100644 qpdf/qtest/qpdf/page-labels-and-outlines.pdf create mode 100644 qpdf/qtest/qpdf/page_api_1-out.pdf create mode 100644 qpdf/qtest/qpdf/page_api_1-out2.pdf create mode 100644 qpdf/qtest/qpdf/page_api_1-out3.pdf create mode 100644 qpdf/qtest/qpdf/page_api_1.out create mode 100644 qpdf/qtest/qpdf/page_api_1.out2 create mode 100644 qpdf/qtest/qpdf/page_api_1.pdf create mode 100644 qpdf/qtest/qpdf/page_api_2.out create mode 100644 qpdf/qtest/qpdf/page_api_2.pdf create mode 100644 qpdf/qtest/qpdf/pages-copy-encryption.pdf create mode 100644 qpdf/qtest/qpdf/pages-warning.out create mode 100644 qpdf/qtest/qpdf/parse-object.out create mode 100644 qpdf/qtest/qpdf/qstream.pdf create mode 100644 qpdf/qtest/qpdf/replaced-stream-data-flate.pdf create mode 100644 qpdf/qtest/qpdf/replaced-stream-data.pdf create mode 100644 qpdf/qtest/qpdf/reserved-objects.out create mode 100644 qpdf/qtest/qpdf/reserved-objects.pdf create mode 100644 qpdf/qtest/qpdf/shallow_array-out.pdf create mode 100644 qpdf/qtest/qpdf/shallow_array.pdf create mode 100644 qpdf/qtest/qpdf/shallow_stream.out create mode 100644 qpdf/qtest/qpdf/short-id-check.out create mode 100644 qpdf/qtest/qpdf/short-id.pdf create mode 100644 qpdf/qtest/qpdf/show-page-1-content-filtered.out create mode 100644 qpdf/qtest/qpdf/show-page-1-content-normalized.out create mode 100644 qpdf/qtest/qpdf/show-page-1-content-raw.out create mode 100644 qpdf/qtest/qpdf/show-page-1-image.out create mode 100644 qpdf/qtest/qpdf/show-page-1.out create mode 100644 qpdf/qtest/qpdf/show-pages-images.out create mode 100644 qpdf/qtest/qpdf/show-pages.out create mode 100644 qpdf/qtest/qpdf/show-unfilterable.out create mode 100644 qpdf/qtest/qpdf/show-xref-by-id-filtered.out create mode 100644 qpdf/qtest/qpdf/show-xref-by-id.out create mode 100644 qpdf/qtest/qpdf/show-xref.out create mode 100644 qpdf/qtest/qpdf/stream-data.pdf create mode 100644 qpdf/qtest/qpdf/stream-line-enders.out create mode 100644 qpdf/qtest/qpdf/stream-line-enders.pdf create mode 100644 qpdf/qtest/qpdf/stream-line-enders.qdf create mode 100644 qpdf/qtest/qpdf/test-32.out create mode 100644 qpdf/qtest/qpdf/test11.out create mode 100644 qpdf/qtest/qpdf/test14-in.pdf create mode 100644 qpdf/qtest/qpdf/test14-out.pdf create mode 100644 qpdf/qtest/qpdf/test14.out create mode 100644 qpdf/qtest/qpdf/test4-1.pdf create mode 100644 qpdf/qtest/qpdf/test4-1.qdf create mode 100644 qpdf/qtest/qpdf/test4-2.out create mode 100644 qpdf/qtest/qpdf/test4-2.pdf create mode 100644 qpdf/qtest/qpdf/test4-3.out create mode 100644 qpdf/qtest/qpdf/test4-3.pdf create mode 100644 qpdf/qtest/qpdf/test4-4.pdf create mode 100644 qpdf/qtest/qpdf/test4-4.qdf create mode 100644 qpdf/qtest/qpdf/test8.out create mode 100644 qpdf/qtest/qpdf/test9.out create mode 100644 qpdf/qtest/qpdf/unreferenced-indirect-scalar.out create mode 100644 qpdf/qtest/qpdf/unreferenced-indirect-scalar.pdf create mode 100644 qpdf/qtest/qpdf/xref-with-short-size-new.out create mode 100644 qpdf/qtest/qpdf/xref-with-short-size-recover.out create mode 100644 qpdf/qtest/qpdf/xref-with-short-size.out create mode 100644 qpdf/qtest/qpdf/xref-with-short-size.pdf create mode 100644 qpdf/test_driver.cc create mode 100644 qpdf/test_large_file.cc create mode 100644 qtest/QTC/perl/QTC.pm create mode 100644 qtest/README.txt create mode 100755 qtest/bin/qtest-driver create mode 100644 qtest/module/TestDriver.pm create mode 100644 zlib-flate/Makefile create mode 100644 zlib-flate/build.mk create mode 100644 zlib-flate/qtest/1.compressed create mode 100644 zlib-flate/qtest/1.uncompressed create mode 100644 zlib-flate/qtest/zf.test create mode 100644 zlib-flate/zlib-flate.cc diff --git a/Artistic-2.0 b/Artistic-2.0 new file mode 100644 index 0000000..bb2cfbd --- /dev/null +++ b/Artistic-2.0 @@ -0,0 +1,191 @@ +Artistic License 2.0 + +Copyright (c) 2000-2006, The Perl Foundation. + +Everyone is permitted to copy and distribute verbatim copies of this +license document, but changing it is not allowed. + +Preamble + +This license establishes the terms under which a given free software +Package may be copied, modified, distributed, and/or +redistributed. The intent is that the Copyright Holder maintains some +artistic control over the development of that Package while still +keeping the Package available as open source and free software. + +You are always permitted to make arrangements wholly outside of this +license directly with the Copyright Holder of a given Package. If the +terms of this license do not permit the full use that you propose to +make of the Package, you should contact the Copyright Holder and seek +a different licensing arrangement. + +Definitions + + "Copyright Holder" means the individual(s) or organization(s) named + in the copyright notice for the entire Package. + + "Contributor" means any party that has contributed code or other + material to the Package, in accordance with the Copyright Holder's + procedures. + + "You" and "your" means any person who would like to copy, + distribute, or modify the Package. + + "Package" means the collection of files distributed by the + Copyright Holder, and derivatives of that collection and/or of + those files. A given Package may consist of either the Standard + Version, or a Modified Version. + + "Distribute" means providing a copy of the Package or making it + accessible to anyone else, or in the case of a company or + organization, to others outside of your company or organization. + + "Distributor Fee" means any fee that you charge for Distributing + this Package or providing support for this Package to another + party. It does not mean licensing fees. + + "Standard Version" refers to the Package if it has not been + modified, or has been modified only in ways explicitly requested by + the Copyright Holder. + + "Modified Version" means the Package, if it has been changed, and + such changes were not explicitly requested by the Copyright Holder. + + "Original License" means this Artistic License as Distributed with + the Standard Version of the Package, in its current version or as + it may be modified by The Perl Foundation in the future. + + "Source" form means the source code, documentation source, and + configuration files for the Package. + + "Compiled" form means the compiled bytecode, object code, binary, + or any other form resulting from mechanical transformation or + translation of the Source form. + +Permission for Use and Modification Without Distribution + +(1) You are permitted to use the Standard Version and create and use +Modified Versions for any purpose without restriction, provided that +you do not Distribute the Modified Version. + +Permissions for Redistribution of the Standard Version + +(2) You may Distribute verbatim copies of the Source form of the +Standard Version of this Package in any medium without restriction, +either gratis or for a Distributor Fee, provided that you duplicate +all of the original copyright notices and associated disclaimers. At +your discretion, such verbatim copies may or may not include a +Compiled form of the Package. + +(3) You may apply any bug fixes, portability changes, and other +modifications made available from the Copyright Holder. The resulting +Package will still be considered the Standard Version, and as such +will be subject to the Original License. + +Distribution of Modified Versions of the Package as Source + +(4) You may Distribute your Modified Version as Source (either gratis +or for a Distributor Fee, and with or without a Compiled form of the +Modified Version) provided that you clearly document how it differs +from the Standard Version, including, but not limited to, documenting +any non-standard features, executables, or modules, and provided that +you do at least ONE of the following: + + (a) make the Modified Version available to the Copyright Holder of + the Standard Version, under the Original License, so that the + Copyright Holder may include your modifications in the Standard + Version. + + (b) ensure that installation of your Modified Version does not + prevent the user installing or running the Standard Version. In + addition, the Modified Version must bear a name that is different + from the name of the Standard Version. + + (c) allow anyone who receives a copy of the Modified Version to + make the Source form of the Modified Version available to others + under + + (i) the Original License or + + (ii) a license that permits the licensee to freely copy, modify + and redistribute the Modified Version using the same licensing + terms that apply to the copy that the licensee received, and + requires that the Source form of the Modified Version, and of + any works derived from it, be made freely available in that + license fees are prohibited but Distributor Fees are allowed. + Distribution of Compiled Forms of the Standard Version or + Modified Versions without the Source + +(5) You may Distribute Compiled forms of the Standard Version without +the Source, provided that you include complete instructions on how to +get the Source of the Standard Version. Such instructions must be +valid at the time of your distribution. If these instructions, at any +time while you are carrying out such distribution, become invalid, you +must provide new instructions on demand or cease further +distribution. If you provide valid instructions or cease distribution +within thirty days after you become aware that the instructions are +invalid, then you do not forfeit any of your rights under this +license. + +(6) You may Distribute a Modified Version in Compiled form without the +Source, provided that you comply with Section 4 with respect to the +Source of the Modified Version. + +Aggregating or Linking the Package + +(7) You may aggregate the Package (either the Standard Version or +Modified Version) with other packages and Distribute the resulting +aggregation provided that you do not charge a licensing fee for the +Package. Distributor Fees are permitted, and licensing fees for other +components in the aggregation are permitted. The terms of this license +apply to the use and Distribution of the Standard or Modified Versions +as included in the aggregation. + +(8) You are permitted to link Modified and Standard Versions with +other works, to embed the Package in a larger work of your own, or to +build stand-alone binary or bytecode versions of applications that +include the Package, and Distribute the result without restriction, +provided the result does not expose a direct interface to the Package. + +Items That are Not Considered Part of a Modified Version + +(9) Works (including, but not limited to, modules and scripts) that +merely extend or make use of the Package, do not, by themselves, cause +the Package to be a Modified Version. In addition, such works are not +considered parts of the Package itself, and are not subject to the +terms of this license. + +General Provisions + +(10) Any use, modification, and distribution of the Standard or +Modified Versions is governed by this Artistic License. By using, +modifying or distributing the Package, you accept this license. Do not +use, modify, or distribute the Package, if you do not accept this +license. + +(11) If your Modified Version has been derived from a Modified Version +made by someone other than you, you are nevertheless required to +ensure that your Modified Version complies with the requirements of +this license. + +(12) This license does not grant you the right to use any trademark, +service mark, tradename, or logo of the Copyright Holder. + +(13) This license includes the non-exclusive, worldwide, +free-of-charge patent license to make, have made, use, offer to sell, +sell, import and otherwise transfer the Package with respect to any +patent claims licensable by the Copyright Holder that are necessarily +infringed by the Package. If you institute patent litigation +(including a cross-claim or counterclaim) against any party alleging +that the Package constitutes direct or contributory patent +infringement, then this Artistic License to you shall terminate on the +date that such litigation is filed. + +(14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT +HOLDER AND CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED +WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A +PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT +PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT +HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE +OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..fd15bda --- /dev/null +++ b/ChangeLog @@ -0,0 +1,682 @@ +2012-09-06 Jay Berkenbilt + + * 3.0.2: release + + * Add new method QPDFWriter::setExtraHeaderText to add extra text, + such as application-specific comments, to near the beginning of a + PDF file. For linearized files, this appears after the + linearization parameter dictionary. For non-linearized files, it + appears right after the PDF header and non-ASCII comment. + + * Make it possible to write the same QPDF object with two + different QPDFWriter objects that have both called + setLinearization(true) by making private method + QPDF::calculateLinearizationData() properly initialize its state. + + * Bug fix: Writing after calling QPDFWriter::setOutputMemory() + would cause a segmentation fault because of an internal field not + being initialized, rendering that method useless. This has been + corrected. + +2012-08-11 Jay Berkenbilt + + * 3.0.1: release + + * Bug fix: let EOF terminate a literal token as well as + whitespace or comments. + +2012-07-31 Jay Berkenbilt + + * 3.0.0: release + +2012-07-29 Jay Berkenbilt + + * 3.0.rc1: release + +2012-07-25 Jay Berkenbilt + + * From Tobias: add QPDFObjectHandle::replaceStreamData that takes + a std::string analogous to the QPDFObjectHandle::newStream that + takes a string that was added earlier. + +2012-07-21 Jay Berkenbilt + + * Change configure to have image comparison tests disabled by + default. Update README and README.maintainer with information + about running them. + + * Add --pages command-line option to qpdf to enable page-based + merging and splitting. + + * Add new method QPDFObjectHandle::replaceDict to replace a + stream's dictionary. Use with caution; see comments in + QPDFObjectHandle.hh. + + * Add new method QPDFObjectHandle::parse for creation of + QPDFObjectHandle objects from string representations of the + objects. Thanks to Tobias Hoffmann for the idea. + +2012-07-15 Jay Berkenbilt + + * add new QPDF::isEncrypted method that returns some additional + information beyond other versions. + + * libqpdf/QPDFWriter.cc: fix copyEncryptionParameters to fix the + minimum PDF version based on other file's encryption needs. This + is a fix to code added on 2012-07-14 and did not impact previously + released code. + + * libqpdf/QPDFWriter.cc (copyEncryptionParameters): Bug fix: qpdf + was not preserving whether or not AES encryption was being used + when copying encryption parameters. The file would still have + been properly encrypted, but a file that started off encrypted + with AES could have become encrypted with RC4. + +2012-07-14 Jay Berkenbilt + + * QPDFWriter: add public copyEncryptionParameters to allow copying + encryption parameters from another file. + + * QPDFWriter: detect if the user has inserted an indirect object + from another QPDF object and throw an exception directing the user + to copyForeignObject. + +2012-07-11 Jay Berkenbilt + + * Added new APIs to copy objects from one QPDF to another. This + includes letting QPDF::addPage() (and QPDF::addPageAt()) accept a + page object from another QPDF and adding + QPDF::copyForeignObject(). See QPDF.hh for details. + + * Add method QPDFObjectHandle::getOwningQPDF() to return the QPDF + object associated with an indirect QPDFObjectHandle. + + * Add convenience methods to QPDFObjectHandle: assertIndirect(), + isPageObject(), isPagesObject() + + * Cache when QPDF::pushInheritedAttributesToPage() has been called + to avoid traversing the pages trees multiple times. This state is + cleared by QPDF::updateAllPagesCache() and ignored by + QPDF::flattenPagesTree(). + +2012-07-08 Jay Berkenbilt + + * Add QPDFObjectHandle::newReserved to create a reserved object + and QPDF::replaceReserved to replace it with a real object. + QPDFObjectHandle::newReserved reserves an object ID in a QPDF + object and ensures that any references to it remain unresolved. + When QPDF::replaceReserved is later called, previous references to + the reserved object will properly resolve to the replaced object. + +2012-07-07 Jay Berkenbilt + + * NOTE: BREAKING API CHANGE. Remove previously required length + parameter from the version QPDFObjectHandle::replaceStreamData + that uses a stream data provider. Prior to qpdf 3.0.0, you had to + compute the stream length in advance so that qpdf could internally + verify that the stream data had the same length every time the + provider was invoked. Now this requirement is enforced a + different way, and the length parameter is no longer required. + Note that I take API-breaking changes very seriously and only did + it in this case since the lack of need to know length in advance + could significantly simplify people's code. If you were + previously going to a lot of trouble to compute the length of the + new stream data in advance, you now no longer have to do that. + You can just drop the length parameter and remove any code that + was previously computing the length. Thanks to Tobias Hoffmann + for pointing out how annoying the original interface was. + +2012-07-05 Jay Berkenbilt + + * Add QPDFWriter methods to write to an already open stdio FILE*. + Implementation and idea area based on contributions from Tobias + Hoffmann. + +2012-07-04 Jay Berkenbilt + + * Accept changes from Tobias Hoffmann: add public method + QPDF::pushInheritedAttributesToPage including warnings for + non-inherited keys that may be discarded from /Pages by + non-conformant PDF files when the /Pages tree is flattened. + +2012-06-27 Jay Berkenbilt + + * Add Pl_Concatenate pipeline for stream concatenation also + implemented by Tobias Hoffmann. Also added test code + (libtests/concatenate.cc). + + * Add new methods implemented by Tobias Hoffmann: + QPDFObjectHandle::newReal(double) and + QPDFObjectHandle::newStream(QPDF*, std::string const&). + +2012-06-26 Jay Berkenbilt + + * Minor changes so that support for PDF files larger than 4GB + works well with 32-bit and 64-bit Linux and also with 32-bit and + 64-bit Windows with both MSVC and mingw. + + * Rework internal methods for doing recovery of the cross + reference tables for much greater efficiency both in terms of time + and memory usage. + +2012-06-24 Jay Berkenbilt + + * Support PDF files larger than 4 GB. This involved many changes + to the ABI to increase the size of integer types used in various + places as well as increasing the amount of padding used when + creating linearized files. Automated tests for large files are + disabled by default. Run ./configure --help for information on + enabling them. Running the tests requires 11 GB of free disk + space and takes several minutes. + +2012-06-22 Jay Berkenbilt + + * examples/pdf-create.cc: Provide an example of creating a PDF + from scratch. This simple PDF has a single page with some text + and an image. + + * Add empty QPDFObjectHandle factories for array and dictionary. + With PDF-from-scratch capability, it is useful to be able to + create empty arrays and dictionaries and add keys to them. + Updated pdf_from_scratch.cc to use these interfaces. + +2012-06-21 Jay Berkenbilt + + * Add QPDF::emptyPDF() to create an empty QPDF object suitable for + adding pages and other objects to. pdf_from_scratch.cc is test + code that exercises it. + + * make/libtool.mk: Place user-specified CPPFLAGS and LDFLAGS later + in the compilation so that if a user installs things in a + non-standard place that they have to tell the build about, earlier + versions of qpdf installed there won't break the build. Thanks to + Macports for reporting this. (Fixes bug 3468860.) + + * Instead of using off_t in the public APIs, use qpdf_offset_t + instead. This is defined as long long in qpdf/Types.h. If your + system doesn't support long long, you can redefine it. + + * Add pkg-config files + + * QPDFObjectHandle: add shallowCopy() method + + * QPDF: add new APIs for adding and removing pages. This includes + addPage(), addPageAt(), and removePage(). Also a method + updateAllPagesCache() is now available to force update of the + internal pages cache if you should modify the pages structure + manually. + + * QPDF: new processFile method that takes an open FILE* + instead of a filename. + +2012-06-20 Jay Berkenbilt + + * Add new array mutation routines to QPDFObjectHandle. + Implemented by Tobias Hoffmann. + + * Rework APIs that use size_t, off_t, and primative integer types + so that size_t is used for sizes of memory and off_t is used for + file offsets. Also set _FILE_OFFSET_BITS so that large files can + be supported on 32-bit UNIX/Linux platforms. The code assumes in + places that sizeof(off_t) >= sizeof(size_t). This resulted in + non-compatible ABI changes and hopefully clears the way for QPDF + to work with files that are larger than 4 GiB in size. + + * Add support for versioned symbols on ELF platforms. + + * Various fixes for gcc 4.7 + +2011-04-06 Jay Berkenbilt + + * Fix PCRE to stop using deprecated (and now dropped) interfaces. + +2011-12-28 Jay Berkenbilt + + * 2.3.1: release + + * include if available to support MSVC 2010 + + * Since PCRE is not necessarily thread safe, don't declare any + PCRE objects to be static. + + * Disregard stderr output from ghostscript when using it to + compare images in the test suite; see comments in qpdf.test for + details. + + * Fixed a few documentation errors. + +2011-08-11 Jay Berkenbilt + + * 2.3.0: release + + * include/qpdf/qpdf-c.h ("C"): add new methods + qpdf_init_write_memory, qpdf_get_buffer_length, and + qpdf_get_buffer to support writing to memory from the C API. + + * include/qpdf/qpdf-c.h ("C"): add new methods qpdf_get_info_key + and qpdf_set_info_key for manipulating text fields of the /Info + dictionary. + +2011-08-10 Jay Berkenbilt + + * libqpdf/QPDFWriter.cc (copyEncryptionParameters): preserve + whether metadata is encryption. This fixes part of bug 3173659: + the password becomes invalid if qpdf copies an encrypted file with + cleartext-metadata. + + * include/qpdf/QPDFWriter.hh: add a new constructor that takes + only a QPDF reference and leaves specification of output for + later. Add methods setOutputFilename() to set the output to a + filename or stdout, and setOutputMemory() to indicate that output + should go to a memory buffer. Add method getBuffer() to retrieve + the buffer used if output was saved to a memory buffer. + + * include/qpdf/QPDF.hh: add methods replaceObject() and + swapObjects() to allow replacement of an object and swapping of + two objects by object ID. + + * include/qpdf/QPDFObjectHandle.hh: add new methods getDictAsMap() + and getArrayAsVector() for returning the elements of a dictionary + or an array as a map or vector. + +2011-06-25 Jay Berkenbilt + + * 2.2.4: release + +2011-06-23 Jay Berkenbilt + + * make/libtool.mk (install): Do not strip executables and shared + libraries during installation. Leave that up to the packager. + + * configure.ac: disable -Werror by default. + +2011-05-07 Jay Berkenbilt + + * libqpdf/QPDF_linearization.cc (isLinearized): remove unused + offset variable, found by a gcc 4.6 warning. + +2011-04-30 Jay Berkenbilt + + * 2.2.3: release + + * libqpdf/QPDF.cc (readObjectInternal): Accept the case of the + stream keyword being followed by carriage return by itself. While + this is not permitted by the specification, there are PDF files + that do this, and other readers can read them. + + * libqpdf/Pl_QPDFTokenizer.cc (processChar): When an inline image + is detected, suspend normalization only up to the end of the + inline image rather than for the remainder of the content stream. + (Fixes qpdf-Bugs 3152169.) + +2011-01-31 Jay Berkenbilt + + * libqpdf/QPDF.cc (readObjectAtOffset): use -1 rather than 0 when + reading an object at a given to indicate that no object number is + expected. This allows xref recovery to proceed even if a file + uses the invalid object number 0 as a regular object. + + * libqpdf/QPDF_linearization.cc (isLinearized): use -1 rather than + 0 as a sentintel for not having found the first object in the + file. Since -1 can never match the regular expression, this + prevents an infinite loop when checking a file that starts with + (erroneous) 0 0 obj. (Fixes qpdf-Bugs-3159950.) + +2010-10-04 Jay Berkenbilt + + * 2.2.2: release + + * include/qpdf/qpdf-c.h: Add qpdf_read_memory to C API to call + QPDF::processMemoryFile. + +2010-10-01 Jay Berkenbilt + + * 2.2.1: release + + * include/qpdf/QPDF.hh: Add setOutputStreams method to allow + redirection of library-generated output/error to alternative + streams. + + * include/qpdf/QPDF.hh: Add processMemoryFile method for + processing a PDF file from a memory buffer instead of a file. + +2010-09-24 Jay Berkenbilt + + * libqpdf/QPDF.cc: change private "file" method to be a + PointerHolder to prepare qpdf for being able to work + with PDF files loaded into memory in addition to working with + files on disk. + + * include/qpdf/PointerHolder.hh: add operator* and operator-> + methods so that PointerHolder objects can be used like pointers. + This is consistent with the smart pointer objects in the next + revision of C++. + +2010-09-05 Jay Berkenbilt + + * libqpdf/QPDF.cc (readObjectInternal): Recognize empty objects + and treat them as null. + + * libqpdf/QPDF_Stream.cc (filterable): Handle inline image filter + abbreviations as stream filter abbreviations. Although this is + not technically allowed by the PDF specification, table H.1 in the + pre-ISO spec indicates that Adobe's readers accept them. Thanks + to Jian Ma for bringing this to my + attention. + +2010-08-14 Jay Berkenbilt + + * 2.2.0: release + + * Rename README.windows to README-windows.txt and convert its line + endings to Windows-style line endings. Also mention Jian Ma's VC6 + port in the manual and README-windows.txt. + +2010-08-09 Jay Berkenbilt + + * Add QPDFObjectHandle::getRawStreamData to return raw + (unfiltered) stream data. + +2010-08-08 Jay Berkenbilt + + * 2.2.rc1: release + +2010-08-05 Jay Berkenbilt + + * Add QPDFObjectHandle::addPageContents, a convenience routine for + appending or prepending new streams to a page's content streams. + The "pdf-double-page-size" example illustrates its use. + + * Add new methods to QPDFObjectHandle: replaceStreamData and + newStream. These methods allow users of the qpdf library to add + new streams and to replace data of existing streams. The + "pdf-double-page-size" and "pdf-invert-images" examples illustrate + their use. + +2010-06-06 Jay Berkenbilt + + * Fix memory leak for QPDF objects whose underlying PDF objects + contain circular references. Thanks to Jian Ma + for calling my attention to the memory leak. + +2010-04-25 Jay Berkenbilt + + * 2.1.5: release + + * libqpdf/QPDF_encryption.cc (compute_encryption_key): remove + restrictions on length of file identifier string. (Fixes + qpdf-Bugs-2991412.) + +2010-04-18 Jay Berkenbilt + + * 2.1.4: release + + * libqpdf/QPDFWriter.cc (writeLinearized): the padding calculation + fix in 2.1.2 was applied in only one place but it was needed in + two places since there are actually two cross reference streams in + a linearized file. The new padding calculation is now used for + both streams. Hopefully this should put an end to linearization + padding problems. (Fixes qpdf-Bugs-2979219.) + +2010-04-10 Jay Berkenbilt + + * qpdf/qpdf.cc (main): Since qpdf --check only checks syntax and + stream encoding without doing any semantic checks, make the output + clearer when no errors around found. This is inspired by + qpdf-Bugs-2983225. + +2010-03-27 Jay Berkenbilt + + * 2.1.3: release + + * libqpdf/QPDF_optimization.cc (flattenScalarReferences): Flatten + scalar references for unreferenced objects as well as those seen + during traversal of the file. This matters when preserving object + streams that contain unreferenced objects with indirect scalars. + (Fixes qpdf-Bugs-2974522.) Updated TODO with a description of a + possibly better fix involving removal of flattenScalarReferences. + + * libqpdf/Pl_AES_PDF.cc (finish): Don't complain if an AES input + buffer is not a multiple of 16 bytes. Instead, just pad with + nulls and hope for the best. PDF files have been encountered "in + the wild" that contain AES buffers that aren't a multiple of 16 + bytes. + +2010-01-24 Jay Berkenbilt + + * 2.1.2: release + + * libqpdf/QPDFWriter.cc: fix logic error in padding calculation. + When writing linearized files with cross reference streams, the + padding calculation failed to take differences in sizes of + compressed data between pass 1 and pass 2 into consideration. + +2009-12-14 Jay Berkenbilt + + * 2.1.1: release + + * qpdf/qtest/qpdf.test: improve test for acroread to make sure it + actually works and is not just present in the path. + +2009-12-13 Jay Berkenbilt + + * libqpdf/qpdf/Pl_AES_PDF.hh: include , if available, so + we have valid definitions of uint32_t. + +2009-10-30 Jay Berkenbilt + + * 2.1: release + + * libqpdf/QPDF.cc: be more forgiving of extraneous whitespace in + the xref table and while recovering from error conditions. + +2009-10-26 Jay Berkenbilt + + * Work around failure of PCRE test case; this test case exercises + an aspect of PCRE that qpdf does not use, and the test fails with + the version of PCRE on Red Hat Enterprise Linux 5, so we ignore + failure on this particular test case. + + * Fix RPM .spec file to include "C" examples + +2009-10-24 Jay Berkenbilt + + * 2.1.rc1: release + + * Provide interfaces for getting qpdf's own version number + +2009-10-19 Jay Berkenbilt + + * include/qpdf/QPDF.hh (QPDF): getWarnings now returns a list of + QPDFExc rather than a list of strings. This way, warnings may be + inspected in more detail. + + * Include information about the last object read in most error + messages. Most of the time, this will provide a good hint as to + which object contains the error, but it's possible that the last + object read may not necessarily be the one that has the error if + the erroneous object was previously read and cached. + +2009-10-18 Jay Berkenbilt + + * If forcing version, disable object stream creation and/or + encryption if previous specifications are incompatible with new + version. It is still possible that PDF content, compression + schemes, etc., may be incompatible with the new version, but at + least this way, older viewers will at least have a chance. + + * libqpdf/QPDFWriter.cc (unparseObject): avoid compressing + Metadata streams if possible. + +2009-10-13 Jay Berkenbilt + + * Upgrade embedded qtest to version 1.4, which allows the test + suite to be run in Windows with MSYS and ActiveState Perl rather + than requiring Cygwin perl. + +2009-10-04 Jay Berkenbilt + + * Implement support AES encrypt and crypt filters. Implementation + is not fully tested due to lack of test data but has been tested + for several cases. + +2009-10-04 Jay Berkenbilt + + * Add methods to QPDFWriter and corresponding command line + arguments to qpdf to set the minimum output PDF version and also + to force the version to a particular value. + + * libqpdf/QPDF.cc (processXRefStream): warn and ignore extra xref + stream entries when stream is larger than reported size. This + used to be a fatal error. (Fixes qpdf-Bugs-2872265.) + +2009-09-27 Jay Berkenbilt + + * Add several methods to query permissions controlled by the + encryption dictionary. Note that qpdf does not enforce these + permissions even though it allows the user to query them. + + * The function QPDF::getUserPassword returned the user password + with the required padding as specified by the PDF specification. + This is seldom useful to users. This function has been replaced + by QPDF::getPaddedUserPassword. Call the new + QPDF::getTrimmedUserPassword to retreive the user password in a + human-readable format. + + * qpdf/qpdf.cc (main): qpdf --check now prints the PDF version + number in addition to its other output. + +2009-09-26 Jay Berkenbilt + + * Removed all references to QEXC; now using std::runtime_error and + std::logic_error and their subclasses for all exceptions. + +2009-05-03 Jay Berkenbilt + + * 2.0.6: release + + * libqpdf/QPDF_Stream.cc (filterable): ignore /DecodeParms if it's + not a type we recognize. (Fixes qpdf-Bugs-2779746.) + +2009-03-10 Jay Berkenbilt + + * 2.0.5: release + +2009-03-09 Jay Berkenbilt + + * libqpdf/Pl_LZWDecoder.cc: adjust LZWDecoder full table + detection, now having been able to adequately test boundary + conditions both and with and without early code change. Also + compared implementation with other LZW decoders. + +2009-03-08 Jay Berkenbilt + + * qpdf/fix-qdf (write_ostream): Adjust offsets while writing + object streams to account for changes in the length of the + dictionary and offset tables. + + * qpdf/qpdf.cc (main): In check mode, in addition to checking + structure of file, attempt to decode all stream data. + + * libqpdf/QPDFWriter.cc (QPDFWriter::writeObject): In QDF mode, + write a comment to the QDF file before each object that indicates + the object ID of the corresponding object from the original file. + Add --no-original-object-ids flag to qpdf and + setSuppressOriginalObjectIDs() method to QPDFWriter to turn this + behavior off. + + * libqpdf/QPDF.cc (QPDF::pipeStreamData): Issue a warning instead + of failing if there is a problem found while decoding stream. + + * qpdf/qpdf.cc: Exit with a status of 3 if warnings were found + regardless of what mode we're in. + +2009-02-21 Jay Berkenbilt + + * 2.0.4: release + +2009-02-20 Jay Berkenbilt + + * Fix many typos in comments and strings. + + * qpdf/qpdf.cc: in --check mode, if there are warnings but no + errors, exit with a status of 3. + + * libqpdf/QPDF.cc (QPDF::insertXrefEntry): when recovering the + cross-reference table, have objects we encounter later in the file + supersede those we found earlier. This improves the chances of + being able to recover appended files with damaged cross-reference + tables. + +2009-02-19 Jay Berkenbilt + + * libqpdf/Pl_LZWDecoder.cc: correct logic error for previously + untested case of running the LZW decoder without the "early code + change" flag. Thanks to a bug report from "Atom Smasher", I + finally was able to obtain an input stream compressed in this way. + +2009-02-15 Jay Berkenbilt + + * 2.0.3: release + +2008-12-11 Jay Berkenbilt + + * qpdf/qpdf.cc (main): Accept -help and -version as well as --help + and --version + +2008-11-23 Jay Berkenbilt + + * Include stdio.h in a few files for proper compilation with (yet + to be released) gcc 4.4 + + * updated embedded qtest to version 1.3 + + * libqpdf/QPDF_String.cc (QPDF_String::getUTF8Val): handle + UTF-16BE properly rather than just treating the string as a string + of 16-bit characters. + +2008-06-30 Jay Berkenbilt + + * 2.0.2: release + + * updated embedded qtest to version 1.2 (includes previous + changes) + +2008-06-07 Jay Berkenbilt + + * qpdf/qtest/qpdf/diff-encrypted: change == to = so that the test + suite passes when /bin/sh is not bash + +2008-05-07 Jay Berkenbilt + + * qtest/bin/qtest-driver (run_test): increase timeout for qtest to + be more tolerant of slow machines + +2008-05-06 Jay Berkenbilt + + * 2.0.1: release + + * make/rules.mk: fix logic with .dep generation for .lo files so + that dependencies work properly with libtool + +2008-05-05 Jay Berkenbilt + + * libqpdf/qpdf/MD5.hh: fix header to be 64-bit clean + + * configure.ac: add tests for sized integer types + +2008-05-04 Jay Berkenbilt + + * libqpdf/QPDF_encryption.cc: do not assume size_t is unsigned int + + * qpdf/qtest/qpdf.test: removed locale-specific tests. These were + really to check bugs in perl 5.8.0 and are obsolete now. They + also make the test suite fail in some environments that don't have + all the locales fully configured. + + * various: updated several files for gcc 4.3 by adding missing + includes (string.h, stdlib.h) + +2008-04-26 Jay Berkenbilt + + * 2.0: initial public release diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..afe32aa --- /dev/null +++ b/INSTALL @@ -0,0 +1,216 @@ +These instructions based on the generic INSTALL file from automake +1.10. However, qpdf does not use automake, so not all of that file +applies. + +Basic Installation +================== + +Briefly, the shell commands `./configure; make; make install' should +configure, build, and install this package. The following +more-detailed instructions are generic; see the `README' file for +instructions specific to this package. + + The `configure' shell script attempts to guess correct values for +various system-dependent variables used during compilation. It uses +those values to create a `Makefile' in each directory of the package. +It may also create one or more `.h' files containing system-dependent +definitions. Finally, it creates a shell script `config.status' that +you can run in the future to recreate the current configuration, and a +file `config.log' containing compiler output (useful mainly for +debugging `configure'). + + It can also use an optional file (typically called `config.cache' +and enabled with `--cache-file=config.cache' or simply `-C') that saves +the results of its tests to speed up reconfiguring. Caching is +disabled by default to prevent problems with accidental use of stale +cache files. + + If you need to do unusual things to compile the package, please try +to figure out how `configure' could check whether to do them, and mail +diffs or instructions to the address given in the `README' so they can +be considered for the next release. If you are using the cache, and at +some point `config.cache' contains results you don't want to keep, you +may remove or edit it. + + The file `configure.ac' (or `configure.in') is used to create +`configure' by a program called `autoconf'. You need `configure.ac' if +you want to change it or regenerate `configure' using a newer version +of `autoconf'. + +The simplest way to compile this package is: + + 1. `cd' to the directory containing the package's source code and type + `./configure' to configure the package for your system. + + Running `configure' might take a while. While running, it prints + some messages telling which features it is checking for. + + 2. Type `make' to compile the package. + + 3. Optionally, type `make check' to run any self-tests that come with + the package. + + 4. Type `make install' to install the programs and any data files and + documentation. + + 5. You can remove the program binaries and object files from the + source code directory by typing `make clean'. To also remove the + files that `configure' created (so you can compile the package for + a different kind of computer), type `make distclean'. There is + also a `make maintainer-clean' target, but that is intended mainly + for the package's developers. If you use it, you may have to get + all sorts of other programs in order to regenerate files that came + with the distribution. + +Compilers and Options +===================== + +Some systems require unusual options for compilation or linking that the +`configure' script does not know about. Run `./configure --help' for +details on some of the pertinent environment variables. + + You can give `configure' initial values for configuration parameters +by setting variables in the command line or in the environment. Here +is an example: + + ./configure CC=c99 CFLAGS=-g LIBS=-lposix + +Installation Names +================== + +By default, `make install' installs the package's commands under +`/usr/local/bin', include files under `/usr/local/include', etc. You +can specify an installation prefix other than `/usr/local' by giving +`configure' the option `--prefix=PREFIX'. + + You can specify separate installation prefixes for +architecture-specific files and architecture-independent files. If you +pass the option `--exec-prefix=PREFIX' to `configure', the package uses +PREFIX as the prefix for installing programs and libraries. +Documentation and other data files still use the regular prefix. + + In addition, if you use an unusual directory layout you can give +options like `--bindir=DIR' to specify different values for particular +kinds of files. Run `configure --help' for a list of the directories +you can set and what kinds of files go in them. + + If the package supports it, you can cause programs to be installed +with an extra prefix or suffix on their names by giving `configure' the +option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. + + You can also define the variable DESTDIR when you run make install +to install the package in a separate subdirectory. This is useful for +packaging. + +Optional Features +================= + +Some packages pay attention to `--enable-FEATURE' options to +`configure', where FEATURE indicates an optional part of the package. +They may also pay attention to `--with-PACKAGE' options, where PACKAGE +is something like `gnu-as' or `x' (for the X Window System). The +`README' should mention any `--enable-' and `--with-' options that the +package recognizes. + + For packages that use the X Window System, `configure' can usually +find the X include and library files automatically, but if it doesn't, +you can use the `configure' options `--x-includes=DIR' and +`--x-libraries=DIR' to specify their locations. + +Specifying the System Type +========================== + +There may be some features `configure' cannot figure out automatically, +but needs to determine by the type of machine the package will run on. +Usually, assuming the package is built to be run on the _same_ +architectures, `configure' can figure that out, but if it prints a +message saying it cannot guess the machine type, give it the +`--build=TYPE' option. TYPE can either be a short name for the system +type, such as `sun4', or a canonical name which has the form: + + CPU-COMPANY-SYSTEM + +where SYSTEM can have one of these forms: + + OS KERNEL-OS + + See the file `config.sub' for the possible values of each field. If +`config.sub' isn't included in this package, then this package doesn't +need to know the machine type. + + If you are _building_ compiler tools for cross-compiling, you should +use the option `--target=TYPE' to select the type of system they will +produce code for. + + If you want to _use_ a cross compiler, that generates code for a +platform different from the build platform, you should specify the +"host" platform (i.e., that on which the generated programs will +eventually be run) with `--host=TYPE'. + +Sharing Defaults +================ + +If you want to set default values for `configure' scripts to share, you +can create a site shell script called `config.site' that gives default +values for variables like `CC', `cache_file', and `prefix'. +`configure' looks for `PREFIX/share/config.site' if it exists, then +`PREFIX/etc/config.site' if it exists. Or, you can set the +`CONFIG_SITE' environment variable to the location of the site script. +A warning: not all `configure' scripts look for a site script. + +Defining Variables +================== + +Variables not defined in a site shell script can be set in the +environment passed to `configure'. However, some packages may run +configure again during the build, and the customized values of these +variables may be lost. In order to avoid this problem, you should set +them in the `configure' command line, using `VAR=value'. For example: + + ./configure CC=/usr/local2/bin/gcc + +causes the specified `gcc' to be used as the C compiler (unless it is +overridden in the site shell script). + +Unfortunately, this technique does not work for `CONFIG_SHELL' due to +an Autoconf bug. Until the bug is fixed you can use this workaround: + + CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash + +`configure' Invocation +====================== + +`configure' recognizes the following options to control how it operates. + +`--help' +`-h' + Print a summary of the options to `configure', and exit. + +`--version' +`-V' + Print the version of Autoconf used to generate the `configure' + script, and exit. + +`--cache-file=FILE' + Enable the cache: use and save the results of the tests in FILE, + traditionally `config.cache'. FILE defaults to `/dev/null' to + disable caching. + +`--config-cache' +`-C' + Alias for `--cache-file=config.cache'. + +`--quiet' +`--silent' +`-q' + Do not print messages saying which checks are being made. To + suppress all normal output, redirect it to `/dev/null' (any error + messages will still be shown). + +`--srcdir=DIR' + Look for the package's source code in directory DIR. Usually + `configure' can determine that directory automatically. + +`configure' also accepts some other, not widely useful, options. Run +`configure --help' for more details. + diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5a76ddd --- /dev/null +++ b/Makefile @@ -0,0 +1,135 @@ +# This makefile is inspired by abuild (http://www.abuild.org), which +# was used during the development of qpdf. The goal here is to have a +# non-recursive build with all the proper dependencies so we can start +# the build from anywhere and get the right stuff. Each directory has +# a build.mk that is included from here and is written from this +# directory's perspective. Each directory also has a proxy Makefile +# that allows you to start the build from any directory and get +# reasonable semantics for the all, check, and clean targets. + +# Our "build items" are directories. They are listed here such that +# no item precedes any item it depends on. Therefore, each item can +# safely reference variables set in its predecessors. + +# For each build item B, you can run make build_B, make check_B, or +# make clean_B to build, test, or clean B. Full dependencies are +# represented across all the items, so it is possible to start +# anywhere. From the top level, the "all", "check", and "clean" +# targets build, test, or clean everything. + +# Although this is not a GNU package and does not use automake, you +# can still run make clean to remove everything that is compiled, make +# distclean to remove everything that is generated by the end user, +# and make maintainer-clean to remove everything that is generated +# including things distributed with the source distribution. You can +# pass CLEAN=1 to prevent this Makefile from complaining if +# ./configure has not been run. + +# The install target works as usual and obeys --prefix and so forth +# passed to ./configure. You can also pass DESTDIR=/dir to make +# install to install in a separate location. This is useful for +# packagers. + +BUILD_ITEMS := manual libqpdf zlib-flate libtests qpdf examples +OUTPUT_DIR = build +ALL_TARGETS = + +.PHONY: default +default: all + +CLEAN ?= +ifneq ($(CLEAN),1) +ifeq ($(words $(wildcard autoconf.mk)),0) +DUMMY := $(shell echo 1>&2) +DUMMY := $(shell echo 1>&2 Please run ./configure before running $(MAKE)) +DUMMY := $(shell echo 1>&2) +$(error unable to continue with build) +endif + +autoconf.mk: + +include autoconf.mk + +endif + +# Prevent gnu make from trying to rebuild .dep files +$(foreach B,$(BUILD_ITEMS),$(eval \ + $(B)/$(OUTPUT_DIR)/%.dep: ;)) + +# Prevent gnu make from trying to rebuild .mk files +$(foreach B,$(BUILD_ITEMS),$(eval \ + $(B)/%.mk: ;)) +%.mk: ; +make/%.mk: ; + +BUILDRULES ?= libtool +include make/rules.mk + +DUMMY := $(shell mkdir $(foreach B,$(BUILD_ITEMS),$(B)/$(OUTPUT_DIR)) 2>/dev/null) + +include $(foreach B,$(BUILD_ITEMS),$(B)/build.mk) + +ALL_TARGETS = $(foreach B,$(BUILD_ITEMS),$(TARGETS_$(B))) + +TEST_ITEMS = $(foreach D,\ + $(wildcard $(foreach B,$(BUILD_ITEMS),$(B)/qtest)),\ + $(subst /,,$(dir $(D)))) + +TEST_TARGETS = $(foreach B,$(TEST_ITEMS),check_$(B)) + +CLEAN_TARGETS = $(foreach B,$(BUILD_ITEMS),clean_$(B)) + +# For test suitse +export QPDF_BIN = $(abspath qpdf/$(OUTPUT_DIR)/qpdf) +export QPDF_SKIP_TEST_COMPARE_IMAGES +export QPDF_LARGE_FILE_TEST_PATH + +clean:: $(CLEAN_TARGETS) + +.PHONY: $(CLEAN_TARGETS) +$(foreach B,$(BUILD_ITEMS),$(eval \ + clean_$(B): ; \ + $(RM) -r $(B)/$(OUTPUT_DIR))) + +distclean: clean + $(RM) -r autoconf.mk autom4te.cache config.log config.status libtool + $(RM) libqpdf/qpdf/qpdf-config.h + $(RM) manual/html.xsl + $(RM) manual/print.xsl + $(RM) doc/*.1 + $(RM) libqpdf.pc + +maintainer-clean: distclean + $(RM) configure doc/qpdf-manual.* libqpdf/qpdf/qpdf-config.h.in + $(RM) aclocal.m4 + $(RM) -r install-mingw install-msvc external-libs + +.PHONY: $(TEST_TARGETS) +$(foreach B,$(TEST_ITEMS),$(eval \ + check_$(B): $(TARGETS_$(B)))) + +.PHONY: $(foreach B,$(BUILD_ITEMS),build_$(B)) +$(foreach B,$(BUILD_ITEMS),$(eval \ + build_$(B): $(TARGETS_$(B)))) + +.PHONY: all +all: $(ALL_TARGETS) ; + +check: $(TEST_TARGETS) + +# Install targets are in the make directory in the rules-specific make +# fragments. + +QTEST=$(abspath qtest/bin/qtest-driver) +$(TEST_TARGETS): + @echo running qtest-driver for $(subst check_,,$@) + @(cd $(subst check_,,$@)/$(OUTPUT_DIR); \ + if TC_SRCS="$(foreach T,$(TC_SRCS_$(subst check_,,$@)),../../$(T))" \ + $(QTEST) -bindirs .:.. -datadir ../qtest -covdir ..; then \ + true; \ + else \ + if test "$(SHOW_FAILED_TEST_OUTPUT)" = "1"; then \ + cat -v qtest.log; \ + fi; \ + false; \ + fi) diff --git a/README b/README new file mode 100644 index 0000000..2d82a22 --- /dev/null +++ b/README @@ -0,0 +1,142 @@ +This is the QPDF package. Information about it can be found at +http://qpdf.sourceforge.net. The source code repository is hosted +at github: https://github.com/qpdf/qpdf. + +QPDF is copyright (c) 2005-2012 Jay Berkenbilt + +This software may be distributed under the terms of version 2 of the +Artistic License which may be found in the source distribution as +"Artistic-2.0". It is provided "as is" without express or implied +warranty. + + +Prerequisites +============= + +QPDF depends on external libraries "zlib" and "pcre". These are part +of virtually all Linux distributions and are readily available; +download information appears in the documentation. For Windows, you +can download pre-built binary versions of those libraries for some +compilers; see README-windows.txt for additional details. + +QPDF requires a C++ compiler that works with STL. Your compiler must +also support "long long". Almost all modern compilers do. If you are +trying to port qpdf to a compiler that doesn't support long long, you +could change all occurrences of "long long" to "long" in the source +code, noting that this would break binary compatibility with other +builds of qpdf. Doing so would certainly prevent qpdf from working +with files larger than 2 GB, but remaining functionality would most +likely work fine. If you built qpdf this way and it passed its test +suite with large file support disabled, you could be confident that +you had an otherwise working qpdf. + + +Licensing terms of embedded software +==================================== + +QPDF makes use of zlib and pcre for its functionality. These packages +can be downloaded separately from their own download locations, or +they can be downloaded in the external-libs area of the qpdf download +site. + +The Rijndael encryption implementation used as the basis for AES +encryption and decryption support comes from Philip J. Erdelsky's +public domain implementation. The files libqpdf/rijndael.cc and +libqpdf/qpdf/rijndael.h remain in the public domain. They were +obtained from + + http://www.efgh.com/software/rijndael.htm + http://www.efgh.com/software/rijndael.txt + + +Building on UNIX/Linux +====================== + +For UNIX and UNIX-like systems, you can usually get by with just + +./configure +make +make install + +Packagers may set DESTDIR, in which case make install will install +inside of DESTDIR, as is customary with many packages. For more +detailed general information, see the "INSTALL" file in this +directory. If you are already accustomed to building and installing +software that uses autoconf, there's nothing new for you in the +INSTALL file. + + +Building on Windows +=================== + +QPDF is known to build and pass its test suite with mingw (latest +version tested: gcc 4.6.2), mingw64 (latest version tested: 4.7.0) and +Microsoft Visual C++ 2010, both 32-bit and 64-bit versions. MSYS plus +ActiveState Perl is required to build as well in order to get make +and other related tools. See README-windows.txt for details on how to +build under Windows, see README-windows.txt. + + +Additional Notes on Build +========================= + +QPDF's build system, inspired by abuild (http://www.abuild.org), can +optionally use its own built-in rules rather than using libtool and +obeying the compiler specified with configure. This can be enabled by +passing --with-buildrules=buildrules where buildrules corresponds to +one of the .mk files (other than rules.mk) in the make directory. +This should never be necessary on a UNIX system, but may be necessary +on a Windows system. See README-windows.txt for details. There is a +gcc-linux.mk file enable "gcc-linux" build rules, but it is intended +to help test the build system; Linux users should build with the +"libtools" rules, which are enabled by default. + +The QPDF package provides some executables and a software library. A +user's manual can be found in the "doc" directory. The docbook +sources to the user's manual can be found in the "manual" directory. + +The software library is just libqpdf, and all the header files are in +the qpdf subdirectory. If you link statically with -lqpdf, then you +will also need to link with -lpcre and -lz. The shared qpdf library +is linked with -lpcre and -lz, and none of qpdf's public header files +directly include files from pcre or libz, so in many cases, qpdf's +development files are self contained. + +To learn about using the library, please read comments in the header +files in include/qpdf, especially QPDF.hh, QPDFObjectHandle.hh, and +QPDFWriter.hh. You can also study the code of qpdf/qpdf.cc, which +exercises most of the public interface. There are additional example +programs in the examples directory. Reading all the source files in +the qpdf directory (including the qpdf command-line tool and some test +drivers) along with the code in the examples directory will give you a +complete picture of every aspect of the public interface. + + +Additional Notes on Test Suite +============================== + +By default, slow tests are disabled. Slow tests include image +comparison tests and large file tests. Image comparison tests can be +enabled by passing --enable-test-compare-images to ./configure. This +was on by default in qpdf versions prior to 3.0, but is now off by +default. Large file tests can be enabled by passing +--with-large-file-test-path=path to ./configure or by setting the +QPDF_LARGE_FILE_TEST_PATH environment variable. Run ./configure +--help for additional options. The test suite provides nearly full +coverage even without these tests. Unless you are making deep changes +to the library that would impact the contents of the generated PDF +files or testing this on a new platform for the first time, there is +no real reason to run these tests. If you're just running the test +suite to make sure that qpdf works for your build, the default tests +are adequate. The configure rules for these tests do nothing other +than setting variables in autoconf.mk, so you can feel free to turn +these on and off directly in autoconf.mk rather than rerunning +configure. + +If you are packaging qpdf for a distribution and preparing a build +that is run by an autobuilder, you may want to add the +--enable-show-failed-test-output to configure options. This way, if +the test suite fails, test failure detail will be included in the +build output. Otherwise, you will have to have access to the +qtest.log file from the build to view test failures. The debian +packages for qpdf enable this option, for example. diff --git a/README-what-to-download.txt b/README-what-to-download.txt new file mode 100644 index 0000000..de04557 --- /dev/null +++ b/README-what-to-download.txt @@ -0,0 +1,52 @@ +To build from source for Linux or other UNIX/UNIX-like systems, it is +generally sufficient to download just the source qpdf-.tar.gz +file. + +For Windows, there are several additional files that you might want to +download. + + * qpdf--bin-mingw32.zip + + If you just want to use the qpdf command line program or use the + qpdf DLL's C-language interface, you can download this file. You + can also download this version if you are using MINGW's gcc 4.6 (or + a binary compatible version) and want to program using the C++ + interface. + + * qpdf--bin-mingw64.zip + + A 64-bit version built with mingw. Use this for 64-bit Windows + systems. The 32-bit version will also work on Windows 64-bit. + Both the 32-bit and the 64-bit version support files over 2 GB in + size, but you may find it easier to integrate this with your own + software if you use the 64-bit version. + + * qpdf--bin-msvc32.zip + + If you want to program using qpdf's C++ interface and you are using + Microsoft Visual C++ 2010 in 32-bit mode, you can download this + file. + + * qpdf--bin-msvc64.zip + + If you want to program using qpdf's C++ interface and you are using + Microsoft Visual C++ 2010 in 64-bit mode, you can download this + file. + + * qpdf-external-libs-bin.zip + + If you want to build qpdf for Windows yourself with either MINGW or + MSVC 2010, you can download this file and extract it inside the + qpdf source distribution. Please refer to README-windows.txt in + the qpdf source distribution for additional details. Note that you + need the 2012-06-20 version or later to be able to build qpdf 3.0 + or newer. The 2009-10-24 version is required for qpdf 2.3.1 or + older. + + * qpdf-external-libs-src.zip + + If you want to build the external libraries on your own (for + Windows or anything else), you can download this archive. In + addition to including unmodified distributions of pcre and zlib, it + includes a README file and some scripts to help you build them for + Windows. diff --git a/README-windows-install.txt b/README-windows-install.txt new file mode 100644 index 0000000..8e3fd65 --- /dev/null +++ b/README-windows-install.txt @@ -0,0 +1,10 @@ +This file is README-windows-install.txt in the source distribution and +README.txt in the Windows binary distribution. + +QPDF is completely relocatable. To use qpdf.exe or the qpdf DLL, just +have the bin directory in your path. To compile with qpdf, just add +the lib directory to your library path and the include directory to +your include path. Detailed documentation may be found in the doc +directory. + +Enjoy! diff --git a/README-windows.txt b/README-windows.txt new file mode 100644 index 0000000..682920c --- /dev/null +++ b/README-windows.txt @@ -0,0 +1,220 @@ +Common Setup +============ + +You may need to disable antivirus software to run qpdf's test suite. + +To be able to build qpdf and run its test suite, you must have MSYS +from MinGW installed, and you must have ActiveState Perl. Here's what +I did on my system: + +Install ActiveState perl. + +Grab the latest mingw-get-inst. From the installation wizard, choose +to install developer kit, C, and C++ support. Once installed, you +will have an icon to start an msys shell. From the msys shell, run + +mingw-get install msys-unzip msys-zip mingw32-make + +Then replace perl and make with the appropriate versions: + +mv /bin/perl.exe /bin/msys-perl.exe +mv /bin/make.exe /bin/msys-make.exe +mv /mingw/bin/mingw32-make.exe /mingw/bin/make.exe + +Make sure perl --version shows ActiveState perl. + +To install MinGW-w64, first install msys and mingw32 as above. + +From MinGW-w64 download page, go to "Toolchains targeting +Win64/Automated Builds" and find the latest mingw-w64 that runs under +i686-mingw. It will be called something like +mingw-w64-bin_i686-mingw_yyyymmdd.zip. The compiler binaries are +32-bit, which (of course) runs on 64-bit Windows. Extract this under +C:\MinGW-w64, and add C:\MinGW-w64\bin and C:\MinGW-w64\lib\mingw to +the path. + +As of this writing, the image comparison tests confuse ghostscript in +cygwin, but there's a chance they might work at some point. If you +want to run them, you need ghostscript and tiff utils as well, and you +will need to add --enable-test-compare-images from the configure +statements given below. + +Jian Ma has generously provided a port of QPDF +that works with Microsoft VC6. Several changes are required, but they +are well documented in his port. You can find the VC6 port in the +contrib area of the qpdf download area. It may not always be +up-to-date with the latest official qpdf release. + + +External Libraries +================== + +In order to build qpdf, you must have copies of zlib and pcre. The +easy way to get them is to download them from the qpdf download area. +There are packages called external-libs-bin.zip and +external-libs-src.zip. If you are building with MSVC 2010 or MINGW, +you can just extract the qpdf-external-libs-bin.zip zip file into the +top-level qpdf source tree. Note that you need the 2012-06-20 version +(at least) to build qpdf 3.0 or greater since this includes 64-bit +libraries. It will create a directory called external-libs which +contains header files and precompiled libraries. Passing +--enable-external-libs to ./configure (which is done automatically if +you follow the instructions below) is sufficient to find them. + +You can also obtain pcre and zlib directly on your own and install +them. If you are using mingw, you can just set CPPFLAGS, LDFLAGS, and +LIBS when you run ./configure so that it can find the header files and +libraries. If you are building with msvc and you want to do this, it +probably won't work because ./configure doesn't know how to interpret +LDFLAGS and LIBS properly for MSVC (though qpdf's own build system +does). In this case, you can probably get away with cheating by +passing --enable-external-libs to ./configure and then just editing +CPPFLAGS, LDFLAGS, LIBS in the generated autoconf.mk file. Note that +you should use UNIX-like syntax (-I, -L, -l) even though this is not +what cl takes on the command line. qpdf's build rules will fix it. + +You can also download qpdf-external-libs-src.zip and follow the +instructions in the README.txt there for how to build external libs. + + +Building with MinGW +=================== + +QPDF is known to build and pass its test suite with mingw (latest +version tested: gcc 4.6.2), mingw64 (latest version tested: 4.7.0) and +Microsoft Visual C++ 2010, both 32-bit and 64-bit versions. MSYS plus +ActiveState Perl is required to build as well in order to get make +and other related tools. While it is possible that Cygwin could be +used to build native Windows versions of qpdf, this configuration has +not been tested recently. + +From your MSYS prompt, run + + ./config-mingw32 + +or + + ./config-mingw64 + +and then + + make + +Note that ./config-mingw32 and ./configure-mingw64 just run +./configure with specific arguments, so you can look at it, make +adjustments, and manually run configure instead. Note also that +config-mingw32 appends definition of _FILE_OFFSET_BITS=64 to +qpdf-config.h since, as of the qpdf 3.0 release, the current versions +of the autoconf tools did not correctly detect that mingw requires +this to get large file support. This workaround is only required for +mingw32. The 64-bit version of mingw works "out of the box" with +large file support, as do both the 32-bit and 64-bit versions of MSVC. + +Add the absolute path to the libqpdf/build directory to your PATH. +Make sure you can run the qpdf command by typing qpdf/build/qpdf and +making sure you get a help message rather than an error loading the +DLL or no output at all. Run the test suite by typing + + make check + +If all goes well, you should get a passing test suite. + +To create an installation directory, run make install. This will +create install-mingw/qpdf-VERSION and populate it. The binary +download of qpdf for Windows with mingw is created from this +directory. + +You can also take a look at make_windows_releases for reference. This +is how the distributed Windows executables are created. + + +Building with MSVC 2010 +======================= + +These instructions would likely work with newer version of MSVC or +with full version of MSVC. They may also work with .NET 2005. They +have only been tested with Visual C++ 2010. Earlier version of qpdf +were built with MSVC 2008 Express. + +You should first set up your environment to be able to run MSVC from +the command line. There is usually a batch file included with MSVC +that does this. Make sure that you start a command line environment +configured for whichever of 32-bit or 64-bit output that you intend to +build for. + +From that cmd prompt, you can start your msys shell by just running +manually whatever command is associated with your msys shell icon. + +Configure as follows: + + ./config-msvc 32 + +or + + ./config-msvc 64 + +Note that you must pass the 32/64 option that matches your command +line setup. The scripts do not presently figure this out. If you +used the wrong argument, it would probably just build the size you +have in your environment and then install the results in the wrong +place. + +Once configured, run + + make + +Note that ./config-msvc just runs ./configure with specific arguments, +so you can look at it, make adjustments, and manually run configure +instead. + +NOTE: automated dependencies are not generated with the msvc build. +If you're planning on making modifications, you should probably work +with mingw. If there is a need, I can add dependency information to +the msvc build, but since I only use it for generating release +versions, I haven't bothered. + +Once built, add the full path to the libqpdf/build directory to your +path and run + + make check + +to run the test suite. + +If you are building with MSVC and want to debug a crash in MSVC's +debugger, first start an instance of Visual C++. Then run qpdf. When +the abort/retry/ignore dialog pops up, first attach the process from +within visual C++, and then click Retry in qpdf. + +A release version of qpdf is built by default. If you want to link +against debugging libraries, you will have to change /MD to /MDd in +make/msvc.mk. Note that you must redistribute the Microsoft runtime +DLLs. Linking with static runtime (/MT) won't work; see "Static +Runtime" below for details. + + +Runtime DLLs +============ + +Both build methods create executables and DLLs that are dependent on +the compiler's runtime DLLs. When you run make install, the +installation process will automatically detect the DLLs and copy them +into the installation bin directory. Look at the copy_dlls script for +details on how this is accomplished. + +Redistribution of the runtime DLL is unavoidable as of this writing; +see "Static Runtime" below for details. + + +Static Runtime +============== + +Building the DLL and executables with static runtime does not work +with either Visual C++ .NET 2008 (a.k.a. vc9) using /MT or with mingw +(at least as of 4.4.0) using -static-libgcc. The reason is that, in +both cases, there is static data involved with exception handling, and +when the runtime is linked in statically, exceptions cannot be thrown +across the DLL to EXE boundary. Since qpdf uses exception handling +extensively for error handling, we have no choice but to redistribute +the C++ runtime DLLs. Maybe this will be addressed in a future +version of the compilers. This has not been retested with the +toolchain versions used to create qpdf 3.0 distributions. diff --git a/README.maintainer b/README.maintainer new file mode 100644 index 0000000..b150eeb --- /dev/null +++ b/README.maintainer @@ -0,0 +1,143 @@ +Release Reminders +================= + + * When making a release, always remember to run large file tests and + image comparison tests (--enable-test-compare-images + --with-large-file-test-path=/path). For a major release, consider + running a spelling checker over the source code to catch errors in + variable names, strings, and comments. Use ispell -p ispell-words. + + * Consider running tests with latest gcc and/or valgrind. To do + this, replace, build with debugging and without shared libraries. + In build, create z and move each executable into z. Then create a + script called exec-z that contains: + + #!/bin/sh + exec valgrind --suppressions=/tmp/a.supp -q \ + `dirname $0`/z/`basename $0` ${1+"$@"} + + Symlink exec-z to each executable. /tmp/a.supp can be populated + with suppressions for libraries, for example: + + { + zlib1 + Memcheck:Cond + fun:inflateReset2 + fun:inflateInit2_ + } + + You can generate these by running valgrind with --gen-suppressions=yes. + + * Check all open issues in the sourceforge trackers. + + * If any interfaces were added or changed, check C API to see whether + changes are appropriate there as well. + + * Increment shared library version information as needed + (libqpdf/build.mk) + + * Update release notes in manual -- look at diffs and ChangeLog + + * Add a release entry to ChangeLog + + * Make sure version numbers are consistent in the following + locations: + + configure.ac + qpdf.spec + libqpdf/QPDF.cc + manual/qpdf-manual.xml + + make_dist verifies this consistency. + + * Update release date in manual/qpdf-manual.xml. Remember to ensure + that the entities at the top of the document are consistent with + the release notes for both version and release date. + + * Check TODO file to make sure all planned items for the release are + done or retargeted. + + * Each year, update copyright notices. Just search for Copyright. + Last updated: 2012. + + * To construct a source distribution from a pristine checkout, + make_dist does the following: + + ./autogen.sh + ./configure --enable-doc-maintenance --enable-werror + make build_manual + make distclean + + * To create a source release, do an export from the version control + system to a directory called qpdf-version. For example, from this + directory: + + rm -rf /tmp/qpdf-x.y.z + git archive --prefix=qpdf-x.y.z/ HEAD . | (cd /tmp; tar xf -) + + From the parent of that directory, run make_dist with the directory + as an argument. Remember to have fop in your path. For internally + testing releases, you can run make_dist with the --no-tests option. + + * To create a source release of external libs, do an export from the + version control system into a directory called qpdf-external-libs + and just make a zip file of the result called + qpdf-external-libs-src.zip. See the README.txt file there for + information on creating binary external libs releases. + + * To create Windows binary releases, extract the qpdf source + distribution in Windows (MSYS + MINGW, MSVC). From the extracted + directory, extract the binary distribution of the external + libraries. Run ./make_windows_releases from there. You will need + to have zip in your path. + + * Remember to copy README-what-to-download.txt separately onto the + download area and make it the default for Windows platforms. + + * Remember to update the web page including putting new documentation + in the "files" subdirectory of the website on sourceforge.net. + Linearize the PDF version of the manual when copying it there. + + * Create a tag in the version control system, and make backups of the + actual releases. With git, use git tag -s to create a signed tag: + + git tag -s release-qpdf-$version HEAD -m'qpdf $version' + + * When releasing on sourceforge, external-libs distributions go in + external-libs/yyyymmdd, and qpdf distributions go in qpdf/vvv + + +General Build Stuff +=================== + +QPDF uses autoconf and libtool but does not use automake. The only +files distributed with the qpdf source distribution that are not +controlled are "configure", "libqpdf/qpdf/qpdf-config.h.in", +"aclocal.m4", and some documentation. See above for the steps +required to prepare a source distribution. + +A small handful of additional files have been taken from autotools +programs. These should probably be updated from time to time. + + * config.guess, config.sub, ltmain.sh, and the m4 directory: these + were created by running libtoolize -c. To update, run libtoolize + -f -c or remove the files and rerun libtoolize. + + * Other files copied as indicated: + + cp /usr/share/automake-1.11/install-sh . + cp /usr/share/automake-1.11/mkinstalldirs . + +The entire contents of the m4 directory came from libtool.m4. If we +had some additional local parts, we could also add those to the m4 +directory. In order for this to work, it is necessary to run "aclocal +-I m4" before running autoheader and autoconf. + +If building or editing documentation, configure with +--enable-doc-maintenance. This will ensure that all tools or files +required to validate and build documentation are available. + +If you want to run make maintainer-clean or make distclean and you +haven't run ./configure, you can pass CLEAN=1 to make on the command +line to prevent it from complaining about configure not having been +run. diff --git a/TODO b/TODO new file mode 100644 index 0000000..ff3ecc8 --- /dev/null +++ b/TODO @@ -0,0 +1,178 @@ +General +======= + + * See if I can support the encryption format used with /R 5 /V 5, + even though a qpdf-announce subscriber with an adobe.com email + address mentioned that this is deprecated. There is also a new + encryption format coming in a future release, which may be better + to support. As of the qpdf 3.0 release, the specification was not + publicly available yet. + + * Consider the possibility of doing something locale-aware to support + non-ASCII passwords. Update documentation if this is done. + + * Look for %PDF header somewhere within the first 1024 bytes of the + file. Also accept headers of the form "%!PS−Adobe−N.n PDF−M.m". + See Implementation notes 13 and 14 in appendix H of the PDF 1.7 + specification. This is bug 3267974. + + * Consider impact of article threads on page splitting/merging. + Subramanyam provided a test file; see ../misc/article-threads.pdf. + Email Q-Count: 431864 from 2009-11-03. Other things to consider: + outlines, page labels, thumbnails, zones. There are probably + others. + + * See whether it's possible to remove the call to + flattenScalarReferences. I can't easily figure out why I do it, + but removing it causes strange test failures in linearization. I + would have to study the optimization and linearization code to + figure out why I added this to begin with and what in the code + assumes it's the case. For enqueueObject and unparseChild in + QPDFWriter, simply removing the checks for indirect scalars seems + sufficient. Looking back at the branch in the apex epub + repository, before flattening scalar references, there was special + case code in QPDFWriter to avoid writing out indirect nulls. It's + still not obvious to me why I did it though. + + To pursue this, remove the call to flattenScalarReferences in + QPDFWriter.cc and disable the logic_error exceptions for indirect + scalars. Just search for flattenScalarReferences in QPDFWriter.cc + since the logic errors have comments that mention + flattenScalarReferences. Then run the test suite. Several files + that explicitly test flattening of scalar references fail, but the + indirect scalars are properly preserved and written. But then + there are some linearized files that have a bunch of unreferenced + objects that contain scalars. Need to figure out what these are + and why they're there. Maybe they're objects that used to be + stream lengths. Probably we just need to make sure don't traverse + through a stream's /Length stream when enqueueing stream + dictionaries. This could potentially happen with any object that + QPDFWriter replaces when writing out files. Such objects would be + orphaned in the newly written file. This could be fixed, but it + may not be worth fixing. + + If flattenScalarReferences is removed, a new method will be needed + for checking PDF files. + + * See if we can avoid preserving unreferenced objects in object + streams even when preserving the object streams. + + * For debugging linearization bugs, consider adding an option to save + pass 1 of linearization. This code is sufficient. Change the + interface to allow specification of a pass1 file, which would + change the behavior as in this patch. + +------------------------------ +Index: QPDFWriter.cc +=================================================================== +--- QPDFWriter.cc (revision 932) ++++ QPDFWriter.cc (working copy) +@@ -1965,11 +1965,15 @@ + + // Write file in two passes. Part numbers refer to PDF spec 1.4. + ++ FILE* XXX = 0; + for (int pass = 1; pass <= 2; ++pass) + { + if (pass == 1) + { +- pushDiscardFilter(); ++// pushDiscardFilter(); ++ XXX = fopen("/tmp/pass1.pdf", "w"); ++ pushPipeline(new Pl_StdioFile("pass1", XXX)); ++ activatePipelineStack(); + } + + // Part 1: header +@@ -2204,6 +2208,8 @@ + + // Restore hint offset + this->xref[hint_id] = QPDFXRefEntry(1, hint_offset, 0); ++ fclose(XXX); ++ XXX = 0; + } + } + } +------------------------------ + + * Handle embedded files. PDF Reference 1.7 section 3.10, "File + Specifications", discusses this. Once we can definitely recognize + all embedded files in a document, we can update the encryption + code to handle it properly. In QPDF_encryption.cc, search for + cf_file. Remove exception thrown if cf_file is different from + cf_stream, and write code in the stream decryption section to use + cf_file instead of cf_stream. In general, add interfaces to get + the list of embedded files and to extract them. To handle general + embedded files associated with the whole document, follow root -> + /Names -> /EmbeddedFiles -> /Names to get to the file specification + dictionaries. Then, in each file specification dictionary, follow + /EF -> /F to the actual stream. There may be other places file + specification dictionaries may appear, and there are also /RF keys + with related files, so reread section 3.10 carefully. + + * The description of Crypt filters is unclear with respect to how to + use them to override /StmF for specific streams. I'm not sure + whether qpdf will do the right thing for any specific individual + streams that might have crypt filters. The specification seems to + imply that only embedded file streams and metadata streams can have + crypt filters, and there are already special cases in the code to + handle those. Most likely, it won't be a problem, but someday + someone may find a file that qpdf doesn't work on because of crypt + filters. There is an example in the spec of using a crypt filter + on a metadata stream. + + For now, we notice /Crypt filters and decode parameters consistent + with the example in the PDF specification, and the right thing + happens for metadata filters that happen to be uncompressed or + otherwise compressed in a way we can filter. This should handle + all normal cases, but it's more or less just a guess since I don't + have any test files that actually use stream-specific crypt filters + in them. + + * The second xref stream for linearized files has to be padded only + because we need file_size as computed in pass 1 to be accurate. If + we were not allowing writing to a pipe, we could seek back to the + beginning and fill in the value of /L in the linearization + dictionary as an optimization to alleviate the need for this + padding. Doing so would require us to pad the /L value + individually and also to save the file descriptor and determine + whether it's seekable. This is probably not worth bothering with. + + * The whole xref handling code in the QPDF object allows the same + object with more than one generation to coexist, but a lot of logic + assumes this isn't the case. Anything that creates mappings only + with the object number and not the generation is this way, + including most of the interaction between QPDFWriter and QPDF. If + we wanted to allow the same object with more than one generation to + coexist, which I'm not sure is allowed, we could fix this by + changing xref_table. Alternatively, we could detect and disallow + that case. In fact, it appears that Adobe reader and other PDF + viewing software silently ignores objects of this type, so this is + probably not a big deal. + + * Pl_PNGFilter is only partially implemented. If we ever decoded + images, we'd have to finish implementing it along with the other + filter decode parameters and types. For just handling xref + streams, there's really no need as it wouldn't make sense to use + any kind of predictor other than 12 (PNG UP filter). + + * If we ever want to have check mode check the integrity of the free + list, this can be done by looking at the code from prior to the + object stream support of 4/5/2008. It's in an if (0) block and + there's a comment about it. There's also something about it in + qpdf.test -- search for "free table". On the other hand, the value + of doing this seems very low since no viewer seems to care, so it's + probably not worth it. + + * QPDFObjectHandle::getPageImages() doesn't notice images in + inherited resource dictionaries. See comments in that function. + + * Based on an idea suggested by user "Atom Smasher", consider + providing some mechanism to recover earlier versions of a file + embedded prior to appended sections. + + * From a suggestion in bug 3152169, consider having an option to + re-encode inline images with an ASCII encoding. + + * From github issue 2, provide more in-depth output for examining + hint stream contents. diff --git a/autoconf.mk.in b/autoconf.mk.in new file mode 100644 index 0000000..630ba91 --- /dev/null +++ b/autoconf.mk.in @@ -0,0 +1,41 @@ +PACKAGE_TARNAME=@PACKAGE_TARNAME@ +PACKAGE_VERSION=@PACKAGE_VERSION@ +top_builddir=@top_builddir@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +bindir=@bindir@ +libdir=@libdir@ +includedir=@includedir@ +datarootdir=@datarootdir@ +mandir=@mandir@ +docdir=@docdir@ +htmldir=@htmldir@ +pdfdir=@pdfdir +CC=@CC@ +CFLAGS=@CFLAGS@ +LDFLAGS=@LDFLAGS@ +LIBS=@LIBS@ +CPPFLAGS=@CPPFLAGS@ +CXX=@CXX@ +CXXFLAGS=@CXXFLAGS@ +AR=@AR@ +RANLIB=@RANLIB@ +DLLTOOL=@DLLTOOL@ +STRIP=@STRIP@ +OBJDUMP=@OBJDUMP@ +GENDEPS=@GENDEPS@ +LIBTOOL=@LIBTOOL@ +DOCBOOKX_DTD=@DOCBOOKX_DTD@ +FOP=@FOP@ +XSLTPROC=@XSLTPROC@ +XMLLINT=@XMLLINT@ +BUILD_HTML=@BUILD_HTML@ +BUILD_PDF=@BUILD_PDF@ +VALIDATE_DOC=@VALIDATE_DOC@ +QPDF_SKIP_TEST_COMPARE_IMAGES=@QPDF_SKIP_TEST_COMPARE_IMAGES@ +BUILDRULES=@BUILDRULES@ +HAVE_LD_VERSION_SCRIPT=@HAVE_LD_VERSION_SCRIPT@ +WINDOWS_WORDSIZE=@WINDOWS_WORDSIZE@ +SHOW_FAILED_TEST_OUTPUT=@SHOW_FAILED_TEST_OUTPUT@ +# Allow environment variable to override +QPDF_LARGE_FILE_TEST_PATH?=@QPDF_LARGE_FILE_TEST_PATH@ diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..f6a3afb --- /dev/null +++ b/autogen.sh @@ -0,0 +1,4 @@ +#!/bin/sh +aclocal -I m4 +autoheader +autoconf diff --git a/config-mingw32 b/config-mingw32 new file mode 100755 index 0000000..d128e3f --- /dev/null +++ b/config-mingw32 @@ -0,0 +1,13 @@ +#!/bin/sh +./configure --disable-test-compare-images --enable-external-libs --with-windows-wordsize=32 --with-buildrules=mingw +# As of autoconf 2.69 and gcc 4.6, autoconf's configure fails to +# recognize that defining _FILE_OFFSET_BITS works with mingw32. +# Append to qpdf-config.h rather than passing CPPFLAGS on the +# commandline. This way we don't defeat the fact that test_large_file +# and other things that only use the public interface can be built +# without any special flags. +cat >> libqpdf/qpdf/qpdf-config.h <. +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + + +# Originally written by Per Bothner. Please send patches (context +# diff format) to and include a ChangeLog +# entry. +# +# This script attempts to guess a canonical system name similar to +# config.sub. If it succeeds, it prints the system name on stdout, and +# exits with 0. Otherwise, it exits with 1. +# +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] + +Output the configuration name of the system \`$me' is run on. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.guess ($timestamp) + +Originally written by Per Bothner. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 +Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" >&2 + exit 1 ;; + * ) + break ;; + esac +done + +if test $# != 0; then + echo "$me: too many arguments$help" >&2 + exit 1 +fi + +trap 'exit 1' 1 2 15 + +# CC_FOR_BUILD -- compiler used by this script. Note that the use of a +# compiler to aid in system detection is discouraged as it requires +# temporary files to be created and, as you can see below, it is a +# headache to deal with in a portable fashion. + +# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still +# use `HOST_CC' if defined, but it is deprecated. + +# Portable tmp directory creation inspired by the Autoconf team. + +set_cc_for_build=' +trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; +trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; +: ${TMPDIR=/tmp} ; + { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || + { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || + { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || + { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; +dummy=$tmp/dummy ; +tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; +case $CC_FOR_BUILD,$HOST_CC,$CC in + ,,) echo "int x;" > $dummy.c ; + for c in cc gcc c89 c99 ; do + if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then + CC_FOR_BUILD="$c"; break ; + fi ; + done ; + if test x"$CC_FOR_BUILD" = x ; then + CC_FOR_BUILD=no_compiler_found ; + fi + ;; + ,,*) CC_FOR_BUILD=$CC ;; + ,*,*) CC_FOR_BUILD=$HOST_CC ;; +esac ; set_cc_for_build= ;' + +# This is needed to find uname on a Pyramid OSx when run in the BSD universe. +# (ghazi@noc.rutgers.edu 1994-08-24) +if (test -f /.attbin/uname) >/dev/null 2>&1 ; then + PATH=$PATH:/.attbin ; export PATH +fi + +UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown +UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown +UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown +UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown + +# Note: order is significant - the case branches are not exclusive. + +case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in + *:NetBSD:*:*) + # NetBSD (nbsd) targets should (where applicable) match one or + # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, + # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently + # switched to ELF, *-*-netbsd* would select the old + # object file format. This provides both forward + # compatibility and a consistent mechanism for selecting the + # object file format. + # + # Note: NetBSD doesn't particularly care about the vendor + # portion of the name. We always set it to "unknown". + sysctl="sysctl -n hw.machine_arch" + UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ + /usr/sbin/$sysctl 2>/dev/null || echo unknown)` + case "${UNAME_MACHINE_ARCH}" in + armeb) machine=armeb-unknown ;; + arm*) machine=arm-unknown ;; + sh3el) machine=shl-unknown ;; + sh3eb) machine=sh-unknown ;; + sh5el) machine=sh5le-unknown ;; + *) machine=${UNAME_MACHINE_ARCH}-unknown ;; + esac + # The Operating System including object format, if it has switched + # to ELF recently, or will in the future. + case "${UNAME_MACHINE_ARCH}" in + arm*|i386|m68k|ns32k|sh3*|sparc|vax) + eval $set_cc_for_build + if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ELF__ + then + # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). + # Return netbsd for either. FIX? + os=netbsd + else + os=netbsdelf + fi + ;; + *) + os=netbsd + ;; + esac + # The OS release + # Debian GNU/NetBSD machines have a different userland, and + # thus, need a distinct triplet. However, they do not need + # kernel version information, so it can be replaced with a + # suitable tag, in the style of linux-gnu. + case "${UNAME_VERSION}" in + Debian*) + release='-gnu' + ;; + *) + release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` + ;; + esac + # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: + # contains redundant information, the shorter form: + # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. + echo "${machine}-${os}${release}" + exit ;; + *:OpenBSD:*:*) + UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` + echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} + exit ;; + *:ekkoBSD:*:*) + echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + exit ;; + *:SolidBSD:*:*) + echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + exit ;; + macppc:MirBSD:*:*) + echo powerpc-unknown-mirbsd${UNAME_RELEASE} + exit ;; + *:MirBSD:*:*) + echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + exit ;; + alpha:OSF1:*:*) + case $UNAME_RELEASE in + *4.0) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` + ;; + *5.*) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` + ;; + esac + # According to Compaq, /usr/sbin/psrinfo has been available on + # OSF/1 and Tru64 systems produced since 1995. I hope that + # covers most systems running today. This code pipes the CPU + # types through head -n 1, so we only detect the type of CPU 0. + ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` + case "$ALPHA_CPU_TYPE" in + "EV4 (21064)") + UNAME_MACHINE="alpha" ;; + "EV4.5 (21064)") + UNAME_MACHINE="alpha" ;; + "LCA4 (21066/21068)") + UNAME_MACHINE="alpha" ;; + "EV5 (21164)") + UNAME_MACHINE="alphaev5" ;; + "EV5.6 (21164A)") + UNAME_MACHINE="alphaev56" ;; + "EV5.6 (21164PC)") + UNAME_MACHINE="alphapca56" ;; + "EV5.7 (21164PC)") + UNAME_MACHINE="alphapca57" ;; + "EV6 (21264)") + UNAME_MACHINE="alphaev6" ;; + "EV6.7 (21264A)") + UNAME_MACHINE="alphaev67" ;; + "EV6.8CB (21264C)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8AL (21264B)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8CX (21264D)") + UNAME_MACHINE="alphaev68" ;; + "EV6.9A (21264/EV69A)") + UNAME_MACHINE="alphaev69" ;; + "EV7 (21364)") + UNAME_MACHINE="alphaev7" ;; + "EV7.9 (21364A)") + UNAME_MACHINE="alphaev79" ;; + esac + # A Pn.n version is a patched version. + # A Vn.n version is a released version. + # A Tn.n version is a released field test version. + # A Xn.n version is an unreleased experimental baselevel. + # 1.2 uses "1.2" for uname -r. + echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + # Reset EXIT trap before exiting to avoid spurious non-zero exit code. + exitcode=$? + trap '' 0 + exit $exitcode ;; + Alpha\ *:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # Should we change UNAME_MACHINE based on the output of uname instead + # of the specific Alpha model? + echo alpha-pc-interix + exit ;; + 21064:Windows_NT:50:3) + echo alpha-dec-winnt3.5 + exit ;; + Amiga*:UNIX_System_V:4.0:*) + echo m68k-unknown-sysv4 + exit ;; + *:[Aa]miga[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-amigaos + exit ;; + *:[Mm]orph[Oo][Ss]:*:*) + echo ${UNAME_MACHINE}-unknown-morphos + exit ;; + *:OS/390:*:*) + echo i370-ibm-openedition + exit ;; + *:z/VM:*:*) + echo s390-ibm-zvmoe + exit ;; + *:OS400:*:*) + echo powerpc-ibm-os400 + exit ;; + arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) + echo arm-acorn-riscix${UNAME_RELEASE} + exit ;; + arm:riscos:*:*|arm:RISCOS:*:*) + echo arm-unknown-riscos + exit ;; + SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) + echo hppa1.1-hitachi-hiuxmpp + exit ;; + Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) + # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. + if test "`(/bin/universe) 2>/dev/null`" = att ; then + echo pyramid-pyramid-sysv3 + else + echo pyramid-pyramid-bsd + fi + exit ;; + NILE*:*:*:dcosx) + echo pyramid-pyramid-svr4 + exit ;; + DRS?6000:unix:4.0:6*) + echo sparc-icl-nx6 + exit ;; + DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) + case `/usr/bin/uname -p` in + sparc) echo sparc-icl-nx7; exit ;; + esac ;; + s390x:SunOS:*:*) + echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4H:SunOS:5.*:*) + echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) + echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) + echo i386-pc-auroraux${UNAME_RELEASE} + exit ;; + i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) + eval $set_cc_for_build + SUN_ARCH="i386" + # If there is a compiler, see if it is configured for 64-bit objects. + # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. + # This test works for both compilers. + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + SUN_ARCH="x86_64" + fi + fi + echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:6*:*) + # According to config.sub, this is the proper way to canonicalize + # SunOS6. Hard to guess exactly what SunOS6 will be like, but + # it's likely to be more like Solaris than SunOS4. + echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + sun4*:SunOS:*:*) + case "`/usr/bin/arch -k`" in + Series*|S4*) + UNAME_RELEASE=`uname -v` + ;; + esac + # Japanese Language versions have a version number like `4.1.3-JL'. + echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` + exit ;; + sun3*:SunOS:*:*) + echo m68k-sun-sunos${UNAME_RELEASE} + exit ;; + sun*:*:4.2BSD:*) + UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` + test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 + case "`/bin/arch`" in + sun3) + echo m68k-sun-sunos${UNAME_RELEASE} + ;; + sun4) + echo sparc-sun-sunos${UNAME_RELEASE} + ;; + esac + exit ;; + aushp:SunOS:*:*) + echo sparc-auspex-sunos${UNAME_RELEASE} + exit ;; + # The situation for MiNT is a little confusing. The machine name + # can be virtually everything (everything which is not + # "atarist" or "atariste" at least should have a processor + # > m68000). The system name ranges from "MiNT" over "FreeMiNT" + # to the lowercase version "mint" (or "freemint"). Finally + # the system name "TOS" denotes a system which is actually not + # MiNT. But MiNT is downward compatible to TOS, so this should + # be no problem. + atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) + echo m68k-atari-mint${UNAME_RELEASE} + exit ;; + milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) + echo m68k-milan-mint${UNAME_RELEASE} + exit ;; + hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) + echo m68k-hades-mint${UNAME_RELEASE} + exit ;; + *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) + echo m68k-unknown-mint${UNAME_RELEASE} + exit ;; + m68k:machten:*:*) + echo m68k-apple-machten${UNAME_RELEASE} + exit ;; + powerpc:machten:*:*) + echo powerpc-apple-machten${UNAME_RELEASE} + exit ;; + RISC*:Mach:*:*) + echo mips-dec-mach_bsd4.3 + exit ;; + RISC*:ULTRIX:*:*) + echo mips-dec-ultrix${UNAME_RELEASE} + exit ;; + VAX*:ULTRIX*:*:*) + echo vax-dec-ultrix${UNAME_RELEASE} + exit ;; + 2020:CLIX:*:* | 2430:CLIX:*:*) + echo clipper-intergraph-clix${UNAME_RELEASE} + exit ;; + mips:*:*:UMIPS | mips:*:*:RISCos) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c +#ifdef __cplusplus +#include /* for printf() prototype */ + int main (int argc, char *argv[]) { +#else + int main (argc, argv) int argc; char *argv[]; { +#endif + #if defined (host_mips) && defined (MIPSEB) + #if defined (SYSTYPE_SYSV) + printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_SVR4) + printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); + #endif + #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) + printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); + #endif + #endif + exit (-1); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && + dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`$dummy $dummyarg` && + { echo "$SYSTEM_NAME"; exit; } + echo mips-mips-riscos${UNAME_RELEASE} + exit ;; + Motorola:PowerMAX_OS:*:*) + echo powerpc-motorola-powermax + exit ;; + Motorola:*:4.3:PL8-*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) + echo powerpc-harris-powermax + exit ;; + Night_Hawk:Power_UNIX:*:*) + echo powerpc-harris-powerunix + exit ;; + m88k:CX/UX:7*:*) + echo m88k-harris-cxux7 + exit ;; + m88k:*:4*:R4*) + echo m88k-motorola-sysv4 + exit ;; + m88k:*:3*:R3*) + echo m88k-motorola-sysv3 + exit ;; + AViiON:dgux:*:*) + # DG/UX returns AViiON for all architectures + UNAME_PROCESSOR=`/usr/bin/uname -p` + if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] + then + if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ + [ ${TARGET_BINARY_INTERFACE}x = x ] + then + echo m88k-dg-dgux${UNAME_RELEASE} + else + echo m88k-dg-dguxbcs${UNAME_RELEASE} + fi + else + echo i586-dg-dgux${UNAME_RELEASE} + fi + exit ;; + M88*:DolphinOS:*:*) # DolphinOS (SVR3) + echo m88k-dolphin-sysv3 + exit ;; + M88*:*:R3*:*) + # Delta 88k system running SVR3 + echo m88k-motorola-sysv3 + exit ;; + XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) + echo m88k-tektronix-sysv3 + exit ;; + Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) + echo m68k-tektronix-bsd + exit ;; + *:IRIX*:*:*) + echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` + exit ;; + ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. + echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id + exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' + i*86:AIX:*:*) + echo i386-ibm-aix + exit ;; + ia64:AIX:*:*) + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} + exit ;; + *:AIX:2:3) + if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + + main() + { + if (!__power_pc()) + exit(1); + puts("powerpc-ibm-aix3.2.5"); + exit(0); + } +EOF + if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` + then + echo "$SYSTEM_NAME" + else + echo rs6000-ibm-aix3.2.5 + fi + elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then + echo rs6000-ibm-aix3.2.4 + else + echo rs6000-ibm-aix3.2 + fi + exit ;; + *:AIX:*:[4567]) + IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` + if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then + IBM_ARCH=rs6000 + else + IBM_ARCH=powerpc + fi + if [ -x /usr/bin/oslevel ] ; then + IBM_REV=`/usr/bin/oslevel` + else + IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} + fi + echo ${IBM_ARCH}-ibm-aix${IBM_REV} + exit ;; + *:AIX:*:*) + echo rs6000-ibm-aix + exit ;; + ibmrt:4.4BSD:*|romp-ibm:BSD:*) + echo romp-ibm-bsd4.4 + exit ;; + ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and + echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to + exit ;; # report: romp-ibm BSD 4.3 + *:BOSX:*:*) + echo rs6000-bull-bosx + exit ;; + DPX/2?00:B.O.S.:*:*) + echo m68k-bull-sysv3 + exit ;; + 9000/[34]??:4.3bsd:1.*:*) + echo m68k-hp-bsd + exit ;; + hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) + echo m68k-hp-bsd4.4 + exit ;; + 9000/[34678]??:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + case "${UNAME_MACHINE}" in + 9000/31? ) HP_ARCH=m68000 ;; + 9000/[34]?? ) HP_ARCH=m68k ;; + 9000/[678][0-9][0-9]) + if [ -x /usr/bin/getconf ]; then + sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` + sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` + case "${sc_cpu_version}" in + 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 + 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 + 532) # CPU_PA_RISC2_0 + case "${sc_kernel_bits}" in + 32) HP_ARCH="hppa2.0n" ;; + 64) HP_ARCH="hppa2.0w" ;; + '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 + esac ;; + esac + fi + if [ "${HP_ARCH}" = "" ]; then + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + + #define _HPUX_SOURCE + #include + #include + + int main () + { + #if defined(_SC_KERNEL_BITS) + long bits = sysconf(_SC_KERNEL_BITS); + #endif + long cpu = sysconf (_SC_CPU_VERSION); + + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1"); break; + case CPU_PA_RISC2_0: + #if defined(_SC_KERNEL_BITS) + switch (bits) + { + case 64: puts ("hppa2.0w"); break; + case 32: puts ("hppa2.0n"); break; + default: puts ("hppa2.0"); break; + } break; + #else /* !defined(_SC_KERNEL_BITS) */ + puts ("hppa2.0"); break; + #endif + default: puts ("hppa1.0"); break; + } + exit (0); + } +EOF + (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` + test -z "$HP_ARCH" && HP_ARCH=hppa + fi ;; + esac + if [ ${HP_ARCH} = "hppa2.0w" ] + then + eval $set_cc_for_build + + # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating + # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler + # generating 64-bit code. GNU and HP use different nomenclature: + # + # $ CC_FOR_BUILD=cc ./config.guess + # => hppa2.0w-hp-hpux11.23 + # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess + # => hppa64-hp-hpux11.23 + + if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | + grep -q __LP64__ + then + HP_ARCH="hppa2.0w" + else + HP_ARCH="hppa64" + fi + fi + echo ${HP_ARCH}-hp-hpux${HPUX_REV} + exit ;; + ia64:HP-UX:*:*) + HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` + echo ia64-hp-hpux${HPUX_REV} + exit ;; + 3050*:HI-UX:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #include + int + main () + { + long cpu = sysconf (_SC_CPU_VERSION); + /* The order matters, because CPU_IS_HP_MC68K erroneously returns + true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct + results, however. */ + if (CPU_IS_PA_RISC (cpu)) + { + switch (cpu) + { + case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; + case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; + case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; + default: puts ("hppa-hitachi-hiuxwe2"); break; + } + } + else if (CPU_IS_HP_MC68K (cpu)) + puts ("m68k-hitachi-hiuxwe2"); + else puts ("unknown-hitachi-hiuxwe2"); + exit (0); + } +EOF + $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + echo unknown-hitachi-hiuxwe2 + exit ;; + 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) + echo hppa1.1-hp-bsd + exit ;; + 9000/8??:4.3bsd:*:*) + echo hppa1.0-hp-bsd + exit ;; + *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) + echo hppa1.0-hp-mpeix + exit ;; + hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) + echo hppa1.1-hp-osf + exit ;; + hp8??:OSF1:*:*) + echo hppa1.0-hp-osf + exit ;; + i*86:OSF1:*:*) + if [ -x /usr/sbin/sysversion ] ; then + echo ${UNAME_MACHINE}-unknown-osf1mk + else + echo ${UNAME_MACHINE}-unknown-osf1 + fi + exit ;; + parisc*:Lites*:*:*) + echo hppa1.1-hp-lites + exit ;; + C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) + echo c1-convex-bsd + exit ;; + C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) + echo c34-convex-bsd + exit ;; + C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) + echo c38-convex-bsd + exit ;; + C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) + echo c4-convex-bsd + exit ;; + CRAY*Y-MP:*:*:*) + echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*[A-Z]90:*:*:*) + echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ + | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ + -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ + -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*TS:*:*:*) + echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*T3E:*:*:*) + echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + CRAY*SV1:*:*:*) + echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + *:UNICOS/mp:*:*) + echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; + F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) + FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` + echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + 5000:UNIX_System_V:4.*:*) + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` + echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; + i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) + echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} + exit ;; + sparc*:BSD/OS:*:*) + echo sparc-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:BSD/OS:*:*) + echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} + exit ;; + *:FreeBSD:*:*) + UNAME_PROCESSOR=`/usr/bin/uname -p` + case ${UNAME_PROCESSOR} in + amd64) + echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + *) + echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + esac + exit ;; + i*:CYGWIN*:*) + echo ${UNAME_MACHINE}-pc-cygwin + exit ;; + *:MINGW*:*) + echo ${UNAME_MACHINE}-pc-mingw32 + exit ;; + i*:MSYS*:*) + echo ${UNAME_MACHINE}-pc-msys + exit ;; + i*:windows32*:*) + # uname -m includes "-pc" on this system. + echo ${UNAME_MACHINE}-mingw32 + exit ;; + i*:PW*:*) + echo ${UNAME_MACHINE}-pc-pw32 + exit ;; + *:Interix*:*) + case ${UNAME_MACHINE} in + x86) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; + authenticamd | genuineintel | EM64T) + echo x86_64-unknown-interix${UNAME_RELEASE} + exit ;; + IA64) + echo ia64-unknown-interix${UNAME_RELEASE} + exit ;; + esac ;; + [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) + echo i${UNAME_MACHINE}-pc-mks + exit ;; + 8664:Windows_NT:*) + echo x86_64-pc-mks + exit ;; + i*:Windows_NT*:* | Pentium*:Windows_NT*:*) + # How do we know it's Interix rather than the generic POSIX subsystem? + # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we + # UNAME_MACHINE based on the output of uname instead of i386? + echo i586-pc-interix + exit ;; + i*:UWIN*:*) + echo ${UNAME_MACHINE}-pc-uwin + exit ;; + amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) + echo x86_64-unknown-cygwin + exit ;; + p*:CYGWIN*:*) + echo powerpcle-unknown-cygwin + exit ;; + prep*:SunOS:5.*:*) + echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` + exit ;; + *:GNU:*:*) + # the GNU system + echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` + exit ;; + *:GNU/*:*:*) + # other systems with GNU libc and userland + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu + exit ;; + i*86:Minix:*:*) + echo ${UNAME_MACHINE}-pc-minix + exit ;; + aarch64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + aarch64_be:Linux:*:*) + UNAME_MACHINE=aarch64_be + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; + EV56) UNAME_MACHINE=alphaev56 ;; + PCA56) UNAME_MACHINE=alphapca56 ;; + PCA57) UNAME_MACHINE=alphapca56 ;; + EV6) UNAME_MACHINE=alphaev6 ;; + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac + objdump --private-headers /bin/sh | grep -q ld.so.1 + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + exit ;; + arm*:Linux:*:*) + eval $set_cc_for_build + if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_EABI__ + then + echo ${UNAME_MACHINE}-unknown-linux-gnu + else + if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_PCS_VFP + then + echo ${UNAME_MACHINE}-unknown-linux-gnueabi + else + echo ${UNAME_MACHINE}-unknown-linux-gnueabihf + fi + fi + exit ;; + avr32*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + cris:Linux:*:*) + echo ${UNAME_MACHINE}-axis-linux-gnu + exit ;; + crisv32:Linux:*:*) + echo ${UNAME_MACHINE}-axis-linux-gnu + exit ;; + frv:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + hexagon:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + i*86:Linux:*:*) + LIBC=gnu + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #ifdef __dietlibc__ + LIBC=dietlibc + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` + echo "${UNAME_MACHINE}-pc-linux-${LIBC}" + exit ;; + ia64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + m32r*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + m68*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + mips:Linux:*:* | mips64:Linux:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #undef CPU + #undef ${UNAME_MACHINE} + #undef ${UNAME_MACHINE}el + #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) + CPU=${UNAME_MACHINE}el + #else + #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) + CPU=${UNAME_MACHINE} + #else + CPU= + #endif + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } + ;; + or32:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + padre:Linux:*:*) + echo sparc-unknown-linux-gnu + exit ;; + parisc64:Linux:*:* | hppa64:Linux:*:*) + echo hppa64-unknown-linux-gnu + exit ;; + parisc:Linux:*:* | hppa:Linux:*:*) + # Look for CPU level + case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in + PA7*) echo hppa1.1-unknown-linux-gnu ;; + PA8*) echo hppa2.0-unknown-linux-gnu ;; + *) echo hppa-unknown-linux-gnu ;; + esac + exit ;; + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-gnu + exit ;; + ppc:Linux:*:*) + echo powerpc-unknown-linux-gnu + exit ;; + s390:Linux:*:* | s390x:Linux:*:*) + echo ${UNAME_MACHINE}-ibm-linux + exit ;; + sh64*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + sh*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + sparc:Linux:*:* | sparc64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + tile*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + vax:Linux:*:*) + echo ${UNAME_MACHINE}-dec-linux-gnu + exit ;; + x86_64:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + xtensa*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; + i*86:DYNIX/ptx:4*:*) + # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. + # earlier versions are messed up and put the nodename in both + # sysname and nodename. + echo i386-sequent-sysv4 + exit ;; + i*86:UNIX_SV:4.2MP:2.*) + # Unixware is an offshoot of SVR4, but it has its own version + # number series starting with 2... + # I am not positive that other SVR4 systems won't match this, + # I just have to hope. -- rms. + # Use sysv4.2uw... so that sysv4* matches it. + echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} + exit ;; + i*86:OS/2:*:*) + # If we were able to find `uname', then EMX Unix compatibility + # is probably installed. + echo ${UNAME_MACHINE}-pc-os2-emx + exit ;; + i*86:XTS-300:*:STOP) + echo ${UNAME_MACHINE}-unknown-stop + exit ;; + i*86:atheos:*:*) + echo ${UNAME_MACHINE}-unknown-atheos + exit ;; + i*86:syllable:*:*) + echo ${UNAME_MACHINE}-pc-syllable + exit ;; + i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) + echo i386-unknown-lynxos${UNAME_RELEASE} + exit ;; + i*86:*DOS:*:*) + echo ${UNAME_MACHINE}-pc-msdosdjgpp + exit ;; + i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) + UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` + if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then + echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} + else + echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} + fi + exit ;; + i*86:*:5:[678]*) + # UnixWare 7.x, OpenUNIX and OpenServer 6. + case `/bin/uname -X | grep "^Machine"` in + *486*) UNAME_MACHINE=i486 ;; + *Pentium) UNAME_MACHINE=i586 ;; + *Pent*|*Celeron) UNAME_MACHINE=i686 ;; + esac + echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} + exit ;; + i*86:*:3.2:*) + if test -f /usr/options/cb.name; then + UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then + UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` + (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 + (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ + && UNAME_MACHINE=i586 + (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ + && UNAME_MACHINE=i686 + (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ + && UNAME_MACHINE=i686 + echo ${UNAME_MACHINE}-pc-sco$UNAME_REL + else + echo ${UNAME_MACHINE}-pc-sysv32 + fi + exit ;; + pc:*:*:*) + # Left here for compatibility: + # uname -m prints for DJGPP always 'pc', but it prints nothing about + # the processor, so we play safe by assuming i586. + # Note: whatever this is, it MUST be the same as what config.sub + # prints for the "djgpp" host, or else GDB configury will decide that + # this is a cross-build. + echo i586-pc-msdosdjgpp + exit ;; + Intel:Mach:3*:*) + echo i386-pc-mach3 + exit ;; + paragon:*:*:*) + echo i860-intel-osf1 + exit ;; + i860:*:4.*:*) # i860-SVR4 + if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then + echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 + else # Add other i860-SVR4 vendors below as they are discovered. + echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 + fi + exit ;; + mini*:CTIX:SYS*5:*) + # "miniframe" + echo m68010-convergent-sysv + exit ;; + mc68k:UNIX:SYSTEM5:3.51m) + echo m68k-convergent-sysv + exit ;; + M680?0:D-NIX:5.3:*) + echo m68k-diab-dnix + exit ;; + M68*:*:R3V[5678]*:*) + test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; + 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) + OS_REL='' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4; exit; } ;; + NCR*:*:4.2:* | MPRAS*:*:4.2:*) + OS_REL='.3' + test -r /etc/.relid \ + && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` + /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } + /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; + m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) + echo m68k-unknown-lynxos${UNAME_RELEASE} + exit ;; + mc68030:UNIX_System_V:4.*:*) + echo m68k-atari-sysv4 + exit ;; + TSUNAMI:LynxOS:2.*:*) + echo sparc-unknown-lynxos${UNAME_RELEASE} + exit ;; + rs6000:LynxOS:2.*:*) + echo rs6000-unknown-lynxos${UNAME_RELEASE} + exit ;; + PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) + echo powerpc-unknown-lynxos${UNAME_RELEASE} + exit ;; + SM[BE]S:UNIX_SV:*:*) + echo mips-dde-sysv${UNAME_RELEASE} + exit ;; + RM*:ReliantUNIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + RM*:SINIX-*:*:*) + echo mips-sni-sysv4 + exit ;; + *:SINIX-*:*:*) + if uname -p 2>/dev/null >/dev/null ; then + UNAME_MACHINE=`(uname -p) 2>/dev/null` + echo ${UNAME_MACHINE}-sni-sysv4 + else + echo ns32k-sni-sysv + fi + exit ;; + PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort + # says + echo i586-unisys-sysv4 + exit ;; + *:UNIX_System_V:4*:FTX*) + # From Gerald Hewes . + # How about differentiating between stratus architectures? -djm + echo hppa1.1-stratus-sysv4 + exit ;; + *:*:*:FTX*) + # From seanf@swdc.stratus.com. + echo i860-stratus-sysv4 + exit ;; + i*86:VOS:*:*) + # From Paul.Green@stratus.com. + echo ${UNAME_MACHINE}-stratus-vos + exit ;; + *:VOS:*:*) + # From Paul.Green@stratus.com. + echo hppa1.1-stratus-vos + exit ;; + mc68*:A/UX:*:*) + echo m68k-apple-aux${UNAME_RELEASE} + exit ;; + news*:NEWS-OS:6*:*) + echo mips-sony-newsos6 + exit ;; + R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) + if [ -d /usr/nec ]; then + echo mips-nec-sysv${UNAME_RELEASE} + else + echo mips-unknown-sysv${UNAME_RELEASE} + fi + exit ;; + BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. + echo powerpc-be-beos + exit ;; + BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. + echo powerpc-apple-beos + exit ;; + BePC:BeOS:*:*) # BeOS running on Intel PC compatible. + echo i586-pc-beos + exit ;; + BePC:Haiku:*:*) # Haiku running on Intel PC compatible. + echo i586-pc-haiku + exit ;; + SX-4:SUPER-UX:*:*) + echo sx4-nec-superux${UNAME_RELEASE} + exit ;; + SX-5:SUPER-UX:*:*) + echo sx5-nec-superux${UNAME_RELEASE} + exit ;; + SX-6:SUPER-UX:*:*) + echo sx6-nec-superux${UNAME_RELEASE} + exit ;; + SX-7:SUPER-UX:*:*) + echo sx7-nec-superux${UNAME_RELEASE} + exit ;; + SX-8:SUPER-UX:*:*) + echo sx8-nec-superux${UNAME_RELEASE} + exit ;; + SX-8R:SUPER-UX:*:*) + echo sx8r-nec-superux${UNAME_RELEASE} + exit ;; + Power*:Rhapsody:*:*) + echo powerpc-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Rhapsody:*:*) + echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} + exit ;; + *:Darwin:*:*) + UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown + case $UNAME_PROCESSOR in + i386) + eval $set_cc_for_build + if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ + grep IS_64BIT_ARCH >/dev/null + then + UNAME_PROCESSOR="x86_64" + fi + fi ;; + unknown) UNAME_PROCESSOR=powerpc ;; + esac + echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} + exit ;; + *:procnto*:*:* | *:QNX:[0123456789]*:*) + UNAME_PROCESSOR=`uname -p` + if test "$UNAME_PROCESSOR" = "x86"; then + UNAME_PROCESSOR=i386 + UNAME_MACHINE=pc + fi + echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} + exit ;; + *:QNX:*:4*) + echo i386-pc-qnx + exit ;; + NEO-?:NONSTOP_KERNEL:*:*) + echo neo-tandem-nsk${UNAME_RELEASE} + exit ;; + NSE-?:NONSTOP_KERNEL:*:*) + echo nse-tandem-nsk${UNAME_RELEASE} + exit ;; + NSR-?:NONSTOP_KERNEL:*:*) + echo nsr-tandem-nsk${UNAME_RELEASE} + exit ;; + *:NonStop-UX:*:*) + echo mips-compaq-nonstopux + exit ;; + BS2000:POSIX*:*:*) + echo bs2000-siemens-sysv + exit ;; + DS/*:UNIX_System_V:*:*) + echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} + exit ;; + *:Plan9:*:*) + # "uname -m" is not consistent, so use $cputype instead. 386 + # is converted to i386 for consistency with other x86 + # operating systems. + if test "$cputype" = "386"; then + UNAME_MACHINE=i386 + else + UNAME_MACHINE="$cputype" + fi + echo ${UNAME_MACHINE}-unknown-plan9 + exit ;; + *:TOPS-10:*:*) + echo pdp10-unknown-tops10 + exit ;; + *:TENEX:*:*) + echo pdp10-unknown-tenex + exit ;; + KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) + echo pdp10-dec-tops20 + exit ;; + XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) + echo pdp10-xkl-tops20 + exit ;; + *:TOPS-20:*:*) + echo pdp10-unknown-tops20 + exit ;; + *:ITS:*:*) + echo pdp10-unknown-its + exit ;; + SEI:*:*:SEIUX) + echo mips-sei-seiux${UNAME_RELEASE} + exit ;; + *:DragonFly:*:*) + echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + exit ;; + *:*VMS:*:*) + UNAME_MACHINE=`(uname -p) 2>/dev/null` + case "${UNAME_MACHINE}" in + A*) echo alpha-dec-vms ; exit ;; + I*) echo ia64-dec-vms ; exit ;; + V*) echo vax-dec-vms ; exit ;; + esac ;; + *:XENIX:*:SysV) + echo i386-pc-xenix + exit ;; + i*86:skyos:*:*) + echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' + exit ;; + i*86:rdos:*:*) + echo ${UNAME_MACHINE}-pc-rdos + exit ;; + i*86:AROS:*:*) + echo ${UNAME_MACHINE}-pc-aros + exit ;; + x86_64:VMkernel:*:*) + echo ${UNAME_MACHINE}-unknown-esx + exit ;; +esac + +#echo '(No uname command or uname output not recognized.)' 1>&2 +#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 + +eval $set_cc_for_build +cat >$dummy.c < +# include +#endif +main () +{ +#if defined (sony) +#if defined (MIPSEB) + /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, + I don't know.... */ + printf ("mips-sony-bsd\n"); exit (0); +#else +#include + printf ("m68k-sony-newsos%s\n", +#ifdef NEWSOS4 + "4" +#else + "" +#endif + ); exit (0); +#endif +#endif + +#if defined (__arm) && defined (__acorn) && defined (__unix) + printf ("arm-acorn-riscix\n"); exit (0); +#endif + +#if defined (hp300) && !defined (hpux) + printf ("m68k-hp-bsd\n"); exit (0); +#endif + +#if defined (NeXT) +#if !defined (__ARCHITECTURE__) +#define __ARCHITECTURE__ "m68k" +#endif + int version; + version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; + if (version < 4) + printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); + else + printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); + exit (0); +#endif + +#if defined (MULTIMAX) || defined (n16) +#if defined (UMAXV) + printf ("ns32k-encore-sysv\n"); exit (0); +#else +#if defined (CMU) + printf ("ns32k-encore-mach\n"); exit (0); +#else + printf ("ns32k-encore-bsd\n"); exit (0); +#endif +#endif +#endif + +#if defined (__386BSD__) + printf ("i386-pc-bsd\n"); exit (0); +#endif + +#if defined (sequent) +#if defined (i386) + printf ("i386-sequent-dynix\n"); exit (0); +#endif +#if defined (ns32000) + printf ("ns32k-sequent-dynix\n"); exit (0); +#endif +#endif + +#if defined (_SEQUENT_) + struct utsname un; + + uname(&un); + + if (strncmp(un.version, "V2", 2) == 0) { + printf ("i386-sequent-ptx2\n"); exit (0); + } + if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ + printf ("i386-sequent-ptx1\n"); exit (0); + } + printf ("i386-sequent-ptx\n"); exit (0); + +#endif + +#if defined (vax) +# if !defined (ultrix) +# include +# if defined (BSD) +# if BSD == 43 + printf ("vax-dec-bsd4.3\n"); exit (0); +# else +# if BSD == 199006 + printf ("vax-dec-bsd4.3reno\n"); exit (0); +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# endif +# else + printf ("vax-dec-bsd\n"); exit (0); +# endif +# else + printf ("vax-dec-ultrix\n"); exit (0); +# endif +#endif + +#if defined (alliant) && defined (i860) + printf ("i860-alliant-bsd\n"); exit (0); +#endif + + exit (1); +} +EOF + +$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } + +# Apollos put the system type in the environment. + +test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } + +# Convex versions that predate uname can use getsysinfo(1) + +if [ -x /usr/convex/getsysinfo ] +then + case `getsysinfo -f cpu_type` in + c1*) + echo c1-convex-bsd + exit ;; + c2*) + if getsysinfo -f scalar_acc + then echo c32-convex-bsd + else echo c2-convex-bsd + fi + exit ;; + c34*) + echo c34-convex-bsd + exit ;; + c38*) + echo c38-convex-bsd + exit ;; + c4*) + echo c4-convex-bsd + exit ;; + esac +fi + +cat >&2 < in order to provide the needed +information to handle your system. + +config.guess timestamp = $timestamp + +uname -m = `(uname -m) 2>/dev/null || echo unknown` +uname -r = `(uname -r) 2>/dev/null || echo unknown` +uname -s = `(uname -s) 2>/dev/null || echo unknown` +uname -v = `(uname -v) 2>/dev/null || echo unknown` + +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` +/bin/uname -X = `(/bin/uname -X) 2>/dev/null` + +hostinfo = `(hostinfo) 2>/dev/null` +/bin/universe = `(/bin/universe) 2>/dev/null` +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` +/bin/arch = `(/bin/arch) 2>/dev/null` +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` + +UNAME_MACHINE = ${UNAME_MACHINE} +UNAME_RELEASE = ${UNAME_RELEASE} +UNAME_SYSTEM = ${UNAME_SYSTEM} +UNAME_VERSION = ${UNAME_VERSION} +EOF + +exit 1 + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/config.sub b/config.sub new file mode 100755 index 0000000..c894da4 --- /dev/null +++ b/config.sub @@ -0,0 +1,1773 @@ +#! /bin/sh +# Configuration validation subroutine script. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +# 2011, 2012 Free Software Foundation, Inc. + +timestamp='2012-02-10' + +# This file is (in principle) common to ALL GNU software. +# The presence of a machine in this file suggests that SOME GNU software +# can handle that machine. It does not imply ALL GNU software can. +# +# This file 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. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see . +# +# As a special exception to the GNU General Public License, if you +# distribute this file as part of a program that contains a +# configuration script generated by Autoconf, you may include it under +# the same distribution terms that you use for the rest of that program. + + +# Please send patches to . Submit a context +# diff and a properly formatted GNU ChangeLog entry. +# +# Configuration subroutine to validate and canonicalize a configuration type. +# Supply the specified configuration type as an argument. +# If it is invalid, we print an error message on stderr and exit with code 1. +# Otherwise, we print the canonical config type on stdout and succeed. + +# You can get the latest version of this script from: +# http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD + +# This file is supposed to be the same for all GNU packages +# and recognize all the CPU types, system types and aliases +# that are meaningful with *any* GNU software. +# Each package is responsible for reporting which valid configurations +# it does not support. The user should be able to distinguish +# a failure to support a valid configuration from a meaningless +# configuration. + +# The goal of this file is to map all the various variations of a given +# machine specification into a single specification in the form: +# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM +# or in some cases, the newer four-part form: +# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM +# It is wrong to echo any other type of specification. + +me=`echo "$0" | sed -e 's,.*/,,'` + +usage="\ +Usage: $0 [OPTION] CPU-MFR-OPSYS + $0 [OPTION] ALIAS + +Canonicalize a configuration name. + +Operation modes: + -h, --help print this help, then exit + -t, --time-stamp print date of last modification, then exit + -v, --version print version number, then exit + +Report bugs and patches to ." + +version="\ +GNU config.sub ($timestamp) + +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 +Free Software Foundation, Inc. + +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." + +help=" +Try \`$me --help' for more information." + +# Parse command line +while test $# -gt 0 ; do + case $1 in + --time-stamp | --time* | -t ) + echo "$timestamp" ; exit ;; + --version | -v ) + echo "$version" ; exit ;; + --help | --h* | -h ) + echo "$usage"; exit ;; + -- ) # Stop option processing + shift; break ;; + - ) # Use stdin as input. + break ;; + -* ) + echo "$me: invalid option $1$help" + exit 1 ;; + + *local*) + # First pass through any local machine types. + echo $1 + exit ;; + + * ) + break ;; + esac +done + +case $# in + 0) echo "$me: missing argument$help" >&2 + exit 1;; + 1) ;; + *) echo "$me: too many arguments$help" >&2 + exit 1;; +esac + +# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). +# Here we must recognize all the valid KERNEL-OS combinations. +maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` +case $maybe_os in + nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ + linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ + knetbsd*-gnu* | netbsd*-gnu* | \ + kopensolaris*-gnu* | \ + storm-chaos* | os2-emx* | rtmk-nova*) + os=-$maybe_os + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` + ;; + android-linux) + os=-linux-android + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown + ;; + *) + basic_machine=`echo $1 | sed 's/-[^-]*$//'` + if [ $basic_machine != $1 ] + then os=`echo $1 | sed 's/.*-/-/'` + else os=; fi + ;; +esac + +### Let's recognize common machines as not being operating systems so +### that things like config.sub decstation-3100 work. We also +### recognize some manufacturers as not being operating systems, so we +### can provide default operating systems below. +case $os in + -sun*os*) + # Prevent following clause from handling this invalid input. + ;; + -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ + -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ + -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ + -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ + -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ + -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ + -apple | -axis | -knuth | -cray | -microblaze) + os= + basic_machine=$1 + ;; + -bluegene*) + os=-cnk + ;; + -sim | -cisco | -oki | -wec | -winbond) + os= + basic_machine=$1 + ;; + -scout) + ;; + -wrs) + os=-vxworks + basic_machine=$1 + ;; + -chorusos*) + os=-chorusos + basic_machine=$1 + ;; + -chorusrdb) + os=-chorusrdb + basic_machine=$1 + ;; + -hiux*) + os=-hiuxwe2 + ;; + -sco6) + os=-sco5v6 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5) + os=-sco3.2v5 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco4) + os=-sco3.2v4 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2.[4-9]*) + os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco3.2v[4-9]*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco5v6*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -sco*) + os=-sco3.2v2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -udk*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -isc) + os=-isc2.2 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -clix*) + basic_machine=clipper-intergraph + ;; + -isc*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; + -lynx*) + os=-lynxos + ;; + -ptx*) + basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` + ;; + -windowsnt*) + os=`echo $os | sed -e 's/windowsnt/winnt/'` + ;; + -psos*) + os=-psos + ;; + -mint | -mint[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; +esac + +# Decode aliases for certain CPU-COMPANY combinations. +case $basic_machine in + # Recognize the basic CPU types without company name. + # Some are omitted here because they have special meanings below. + 1750a | 580 \ + | a29k \ + | aarch64 | aarch64_be \ + | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ + | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ + | am33_2.0 \ + | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ + | be32 | be64 \ + | bfin \ + | c4x | clipper \ + | d10v | d30v | dlx | dsp16xx \ + | epiphany \ + | fido | fr30 | frv \ + | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ + | hexagon \ + | i370 | i860 | i960 | ia64 \ + | ip2k | iq2000 \ + | le32 | le64 \ + | lm32 \ + | m32c | m32r | m32rle | m68000 | m68k | m88k \ + | maxq | mb | microblaze | mcore | mep | metag \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64el \ + | mips64octeon | mips64octeonel \ + | mips64orion | mips64orionel \ + | mips64r5900 | mips64r5900el \ + | mips64vr | mips64vrel \ + | mips64vr4100 | mips64vr4100el \ + | mips64vr4300 | mips64vr4300el \ + | mips64vr5000 | mips64vr5000el \ + | mips64vr5900 | mips64vr5900el \ + | mipsisa32 | mipsisa32el \ + | mipsisa32r2 | mipsisa32r2el \ + | mipsisa64 | mipsisa64el \ + | mipsisa64r2 | mipsisa64r2el \ + | mipsisa64sb1 | mipsisa64sb1el \ + | mipsisa64sr71k | mipsisa64sr71kel \ + | mipstx39 | mipstx39el \ + | mn10200 | mn10300 \ + | moxie \ + | mt \ + | msp430 \ + | nds32 | nds32le | nds32be \ + | nios | nios2 \ + | ns16k | ns32k \ + | open8 \ + | or32 \ + | pdp10 | pdp11 | pj | pjl \ + | powerpc | powerpc64 | powerpc64le | powerpcle \ + | pyramid \ + | rl78 | rx \ + | score \ + | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh64 | sh64le \ + | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ + | spu \ + | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ + | ubicom32 \ + | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ + | we32k \ + | x86 | xc16x | xstormy16 | xtensa \ + | z8k | z80) + basic_machine=$basic_machine-unknown + ;; + c54x) + basic_machine=tic54x-unknown + ;; + c55x) + basic_machine=tic55x-unknown + ;; + c6x) + basic_machine=tic6x-unknown + ;; + m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip) + basic_machine=$basic_machine-unknown + os=-none + ;; + m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) + ;; + ms1) + basic_machine=mt-unknown + ;; + + strongarm | thumb | xscale) + basic_machine=arm-unknown + ;; + xgate) + basic_machine=$basic_machine-unknown + os=-none + ;; + xscaleeb) + basic_machine=armeb-unknown + ;; + + xscaleel) + basic_machine=armel-unknown + ;; + + # We use `pc' rather than `unknown' + # because (1) that's what they normally are, and + # (2) the word "unknown" tends to confuse beginning users. + i*86 | x86_64) + basic_machine=$basic_machine-pc + ;; + # Object if more than one company name word. + *-*-*) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; + # Recognize the basic CPU types with company name. + 580-* \ + | a29k-* \ + | aarch64-* | aarch64_be-* \ + | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ + | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ + | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ + | avr-* | avr32-* \ + | be32-* | be64-* \ + | bfin-* | bs2000-* \ + | c[123]* | c30-* | [cjt]90-* | c4x-* \ + | clipper-* | craynv-* | cydra-* \ + | d10v-* | d30v-* | dlx-* \ + | elxsi-* \ + | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ + | h8300-* | h8500-* \ + | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ + | hexagon-* \ + | i*86-* | i860-* | i960-* | ia64-* \ + | ip2k-* | iq2000-* \ + | le32-* | le64-* \ + | lm32-* \ + | m32c-* | m32r-* | m32rle-* \ + | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ + | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ + | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ + | mips16-* \ + | mips64-* | mips64el-* \ + | mips64octeon-* | mips64octeonel-* \ + | mips64orion-* | mips64orionel-* \ + | mips64r5900-* | mips64r5900el-* \ + | mips64vr-* | mips64vrel-* \ + | mips64vr4100-* | mips64vr4100el-* \ + | mips64vr4300-* | mips64vr4300el-* \ + | mips64vr5000-* | mips64vr5000el-* \ + | mips64vr5900-* | mips64vr5900el-* \ + | mipsisa32-* | mipsisa32el-* \ + | mipsisa32r2-* | mipsisa32r2el-* \ + | mipsisa64-* | mipsisa64el-* \ + | mipsisa64r2-* | mipsisa64r2el-* \ + | mipsisa64sb1-* | mipsisa64sb1el-* \ + | mipsisa64sr71k-* | mipsisa64sr71kel-* \ + | mipstx39-* | mipstx39el-* \ + | mmix-* \ + | mt-* \ + | msp430-* \ + | nds32-* | nds32le-* | nds32be-* \ + | nios-* | nios2-* \ + | none-* | np1-* | ns16k-* | ns32k-* \ + | open8-* \ + | orion-* \ + | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ + | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ + | pyramid-* \ + | rl78-* | romp-* | rs6000-* | rx-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ + | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ + | sparclite-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ + | tahoe-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tile*-* \ + | tron-* \ + | ubicom32-* \ + | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ + | vax-* \ + | we32k-* \ + | x86-* | x86_64-* | xc16x-* | xps100-* \ + | xstormy16-* | xtensa*-* \ + | ymp-* \ + | z8k-* | z80-*) + ;; + # Recognize the basic CPU types without company name, with glob match. + xtensa*) + basic_machine=$basic_machine-unknown + ;; + # Recognize the various machine names and aliases which stand + # for a CPU type and a company and sometimes even an OS. + 386bsd) + basic_machine=i386-unknown + os=-bsd + ;; + 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) + basic_machine=m68000-att + ;; + 3b*) + basic_machine=we32k-att + ;; + a29khif) + basic_machine=a29k-amd + os=-udi + ;; + abacus) + basic_machine=abacus-unknown + ;; + adobe68k) + basic_machine=m68010-adobe + os=-scout + ;; + alliant | fx80) + basic_machine=fx80-alliant + ;; + altos | altos3068) + basic_machine=m68k-altos + ;; + am29k) + basic_machine=a29k-none + os=-bsd + ;; + amd64) + basic_machine=x86_64-pc + ;; + amd64-*) + basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + amdahl) + basic_machine=580-amdahl + os=-sysv + ;; + amiga | amiga-*) + basic_machine=m68k-unknown + ;; + amigaos | amigados) + basic_machine=m68k-unknown + os=-amigaos + ;; + amigaunix | amix) + basic_machine=m68k-unknown + os=-sysv4 + ;; + apollo68) + basic_machine=m68k-apollo + os=-sysv + ;; + apollo68bsd) + basic_machine=m68k-apollo + os=-bsd + ;; + aros) + basic_machine=i386-pc + os=-aros + ;; + aux) + basic_machine=m68k-apple + os=-aux + ;; + balance) + basic_machine=ns32k-sequent + os=-dynix + ;; + blackfin) + basic_machine=bfin-unknown + os=-linux + ;; + blackfin-*) + basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + bluegene*) + basic_machine=powerpc-ibm + os=-cnk + ;; + c54x-*) + basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c55x-*) + basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c6x-*) + basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + c90) + basic_machine=c90-cray + os=-unicos + ;; + cegcc) + basic_machine=arm-unknown + os=-cegcc + ;; + convex-c1) + basic_machine=c1-convex + os=-bsd + ;; + convex-c2) + basic_machine=c2-convex + os=-bsd + ;; + convex-c32) + basic_machine=c32-convex + os=-bsd + ;; + convex-c34) + basic_machine=c34-convex + os=-bsd + ;; + convex-c38) + basic_machine=c38-convex + os=-bsd + ;; + cray | j90) + basic_machine=j90-cray + os=-unicos + ;; + craynv) + basic_machine=craynv-cray + os=-unicosmp + ;; + cr16 | cr16-*) + basic_machine=cr16-unknown + os=-elf + ;; + crds | unos) + basic_machine=m68k-crds + ;; + crisv32 | crisv32-* | etraxfs*) + basic_machine=crisv32-axis + ;; + cris | cris-* | etrax*) + basic_machine=cris-axis + ;; + crx) + basic_machine=crx-unknown + os=-elf + ;; + da30 | da30-*) + basic_machine=m68k-da30 + ;; + decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) + basic_machine=mips-dec + ;; + decsystem10* | dec10*) + basic_machine=pdp10-dec + os=-tops10 + ;; + decsystem20* | dec20*) + basic_machine=pdp10-dec + os=-tops20 + ;; + delta | 3300 | motorola-3300 | motorola-delta \ + | 3300-motorola | delta-motorola) + basic_machine=m68k-motorola + ;; + delta88) + basic_machine=m88k-motorola + os=-sysv3 + ;; + dicos) + basic_machine=i686-pc + os=-dicos + ;; + djgpp) + basic_machine=i586-pc + os=-msdosdjgpp + ;; + dpx20 | dpx20-*) + basic_machine=rs6000-bull + os=-bosx + ;; + dpx2* | dpx2*-bull) + basic_machine=m68k-bull + os=-sysv3 + ;; + ebmon29k) + basic_machine=a29k-amd + os=-ebmon + ;; + elxsi) + basic_machine=elxsi-elxsi + os=-bsd + ;; + encore | umax | mmax) + basic_machine=ns32k-encore + ;; + es1800 | OSE68k | ose68k | ose | OSE) + basic_machine=m68k-ericsson + os=-ose + ;; + fx2800) + basic_machine=i860-alliant + ;; + genix) + basic_machine=ns32k-ns + ;; + gmicro) + basic_machine=tron-gmicro + os=-sysv + ;; + go32) + basic_machine=i386-pc + os=-go32 + ;; + h3050r* | hiux*) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + h8300hms) + basic_machine=h8300-hitachi + os=-hms + ;; + h8300xray) + basic_machine=h8300-hitachi + os=-xray + ;; + h8500hms) + basic_machine=h8500-hitachi + os=-hms + ;; + harris) + basic_machine=m88k-harris + os=-sysv3 + ;; + hp300-*) + basic_machine=m68k-hp + ;; + hp300bsd) + basic_machine=m68k-hp + os=-bsd + ;; + hp300hpux) + basic_machine=m68k-hp + os=-hpux + ;; + hp3k9[0-9][0-9] | hp9[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k2[0-9][0-9] | hp9k31[0-9]) + basic_machine=m68000-hp + ;; + hp9k3[2-9][0-9]) + basic_machine=m68k-hp + ;; + hp9k6[0-9][0-9] | hp6[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hp9k7[0-79][0-9] | hp7[0-79][0-9]) + basic_machine=hppa1.1-hp + ;; + hp9k78[0-9] | hp78[0-9]) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) + # FIXME: really hppa2.0-hp + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][13679] | hp8[0-9][13679]) + basic_machine=hppa1.1-hp + ;; + hp9k8[0-9][0-9] | hp8[0-9][0-9]) + basic_machine=hppa1.0-hp + ;; + hppa-next) + os=-nextstep3 + ;; + hppaosf) + basic_machine=hppa1.1-hp + os=-osf + ;; + hppro) + basic_machine=hppa1.1-hp + os=-proelf + ;; + i370-ibm* | ibm*) + basic_machine=i370-ibm + ;; + i*86v32) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv32 + ;; + i*86v4*) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv4 + ;; + i*86v) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-sysv + ;; + i*86sol2) + basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` + os=-solaris2 + ;; + i386mach) + basic_machine=i386-mach + os=-mach + ;; + i386-vsta | vsta) + basic_machine=i386-unknown + os=-vsta + ;; + iris | iris4d) + basic_machine=mips-sgi + case $os in + -irix*) + ;; + *) + os=-irix4 + ;; + esac + ;; + isi68 | isi) + basic_machine=m68k-isi + os=-sysv + ;; + m68knommu) + basic_machine=m68k-unknown + os=-linux + ;; + m68knommu-*) + basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + m88k-omron*) + basic_machine=m88k-omron + ;; + magnum | m3230) + basic_machine=mips-mips + os=-sysv + ;; + merlin) + basic_machine=ns32k-utek + os=-sysv + ;; + microblaze) + basic_machine=microblaze-xilinx + ;; + mingw32) + basic_machine=i386-pc + os=-mingw32 + ;; + mingw32ce) + basic_machine=arm-unknown + os=-mingw32ce + ;; + miniframe) + basic_machine=m68000-convergent + ;; + *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) + basic_machine=m68k-atari + os=-mint + ;; + mips3*-*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` + ;; + mips3*) + basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown + ;; + monitor) + basic_machine=m68k-rom68k + os=-coff + ;; + morphos) + basic_machine=powerpc-unknown + os=-morphos + ;; + msdos) + basic_machine=i386-pc + os=-msdos + ;; + ms1-*) + basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` + ;; + msys) + basic_machine=i386-pc + os=-msys + ;; + mvs) + basic_machine=i370-ibm + os=-mvs + ;; + nacl) + basic_machine=le32-unknown + os=-nacl + ;; + ncr3000) + basic_machine=i486-ncr + os=-sysv4 + ;; + netbsd386) + basic_machine=i386-unknown + os=-netbsd + ;; + netwinder) + basic_machine=armv4l-rebel + os=-linux + ;; + news | news700 | news800 | news900) + basic_machine=m68k-sony + os=-newsos + ;; + news1000) + basic_machine=m68030-sony + os=-newsos + ;; + news-3600 | risc-news) + basic_machine=mips-sony + os=-newsos + ;; + necv70) + basic_machine=v70-nec + os=-sysv + ;; + next | m*-next ) + basic_machine=m68k-next + case $os in + -nextstep* ) + ;; + -ns2*) + os=-nextstep2 + ;; + *) + os=-nextstep3 + ;; + esac + ;; + nh3000) + basic_machine=m68k-harris + os=-cxux + ;; + nh[45]000) + basic_machine=m88k-harris + os=-cxux + ;; + nindy960) + basic_machine=i960-intel + os=-nindy + ;; + mon960) + basic_machine=i960-intel + os=-mon960 + ;; + nonstopux) + basic_machine=mips-compaq + os=-nonstopux + ;; + np1) + basic_machine=np1-gould + ;; + neo-tandem) + basic_machine=neo-tandem + ;; + nse-tandem) + basic_machine=nse-tandem + ;; + nsr-tandem) + basic_machine=nsr-tandem + ;; + op50n-* | op60c-*) + basic_machine=hppa1.1-oki + os=-proelf + ;; + openrisc | openrisc-*) + basic_machine=or32-unknown + ;; + os400) + basic_machine=powerpc-ibm + os=-os400 + ;; + OSE68000 | ose68000) + basic_machine=m68000-ericsson + os=-ose + ;; + os68k) + basic_machine=m68k-none + os=-os68k + ;; + pa-hitachi) + basic_machine=hppa1.1-hitachi + os=-hiuxwe2 + ;; + paragon) + basic_machine=i860-intel + os=-osf + ;; + parisc) + basic_machine=hppa-unknown + os=-linux + ;; + parisc-*) + basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; + pbd) + basic_machine=sparc-tti + ;; + pbb) + basic_machine=m68k-tti + ;; + pc532 | pc532-*) + basic_machine=ns32k-pc532 + ;; + pc98) + basic_machine=i386-pc + ;; + pc98-*) + basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium | p5 | k5 | k6 | nexgen | viac3) + basic_machine=i586-pc + ;; + pentiumpro | p6 | 6x86 | athlon | athlon_*) + basic_machine=i686-pc + ;; + pentiumii | pentium2 | pentiumiii | pentium3) + basic_machine=i686-pc + ;; + pentium4) + basic_machine=i786-pc + ;; + pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) + basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumpro-* | p6-* | 6x86-* | athlon-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) + basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pentium4-*) + basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + pn) + basic_machine=pn-gould + ;; + power) basic_machine=power-ibm + ;; + ppc | ppcbe) basic_machine=powerpc-unknown + ;; + ppc-* | ppcbe-*) + basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppcle | powerpclittle | ppc-le | powerpc-little) + basic_machine=powerpcle-unknown + ;; + ppcle-* | powerpclittle-*) + basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64) basic_machine=powerpc64-unknown + ;; + ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ppc64le | powerpc64little | ppc64-le | powerpc64-little) + basic_machine=powerpc64le-unknown + ;; + ppc64le-* | powerpc64little-*) + basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + ps2) + basic_machine=i386-ibm + ;; + pw32) + basic_machine=i586-unknown + os=-pw32 + ;; + rdos) + basic_machine=i386-pc + os=-rdos + ;; + rom68k) + basic_machine=m68k-rom68k + os=-coff + ;; + rm[46]00) + basic_machine=mips-siemens + ;; + rtpc | rtpc-*) + basic_machine=romp-ibm + ;; + s390 | s390-*) + basic_machine=s390-ibm + ;; + s390x | s390x-*) + basic_machine=s390x-ibm + ;; + sa29200) + basic_machine=a29k-amd + os=-udi + ;; + sb1) + basic_machine=mipsisa64sb1-unknown + ;; + sb1el) + basic_machine=mipsisa64sb1el-unknown + ;; + sde) + basic_machine=mipsisa32-sde + os=-elf + ;; + sei) + basic_machine=mips-sei + os=-seiux + ;; + sequent) + basic_machine=i386-sequent + ;; + sh) + basic_machine=sh-hitachi + os=-hms + ;; + sh5el) + basic_machine=sh5le-unknown + ;; + sh64) + basic_machine=sh64-unknown + ;; + sparclite-wrs | simso-wrs) + basic_machine=sparclite-wrs + os=-vxworks + ;; + sps7) + basic_machine=m68k-bull + os=-sysv2 + ;; + spur) + basic_machine=spur-unknown + ;; + st2000) + basic_machine=m68k-tandem + ;; + stratus) + basic_machine=i860-stratus + os=-sysv4 + ;; + strongarm-* | thumb-*) + basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; + sun2) + basic_machine=m68000-sun + ;; + sun2os3) + basic_machine=m68000-sun + os=-sunos3 + ;; + sun2os4) + basic_machine=m68000-sun + os=-sunos4 + ;; + sun3os3) + basic_machine=m68k-sun + os=-sunos3 + ;; + sun3os4) + basic_machine=m68k-sun + os=-sunos4 + ;; + sun4os3) + basic_machine=sparc-sun + os=-sunos3 + ;; + sun4os4) + basic_machine=sparc-sun + os=-sunos4 + ;; + sun4sol2) + basic_machine=sparc-sun + os=-solaris2 + ;; + sun3 | sun3-*) + basic_machine=m68k-sun + ;; + sun4) + basic_machine=sparc-sun + ;; + sun386 | sun386i | roadrunner) + basic_machine=i386-sun + ;; + sv1) + basic_machine=sv1-cray + os=-unicos + ;; + symmetry) + basic_machine=i386-sequent + os=-dynix + ;; + t3e) + basic_machine=alphaev5-cray + os=-unicos + ;; + t90) + basic_machine=t90-cray + os=-unicos + ;; + tile*) + basic_machine=$basic_machine-unknown + os=-linux-gnu + ;; + tx39) + basic_machine=mipstx39-unknown + ;; + tx39el) + basic_machine=mipstx39el-unknown + ;; + toad1) + basic_machine=pdp10-xkl + os=-tops20 + ;; + tower | tower-32) + basic_machine=m68k-ncr + ;; + tpf) + basic_machine=s390x-ibm + os=-tpf + ;; + udi29k) + basic_machine=a29k-amd + os=-udi + ;; + ultra3) + basic_machine=a29k-nyu + os=-sym1 + ;; + v810 | necv810) + basic_machine=v810-nec + os=-none + ;; + vaxv) + basic_machine=vax-dec + os=-sysv + ;; + vms) + basic_machine=vax-dec + os=-vms + ;; + vpp*|vx|vx-*) + basic_machine=f301-fujitsu + ;; + vxworks960) + basic_machine=i960-wrs + os=-vxworks + ;; + vxworks68) + basic_machine=m68k-wrs + os=-vxworks + ;; + vxworks29k) + basic_machine=a29k-wrs + os=-vxworks + ;; + w65*) + basic_machine=w65-wdc + os=-none + ;; + w89k-*) + basic_machine=hppa1.1-winbond + os=-proelf + ;; + xbox) + basic_machine=i686-pc + os=-mingw32 + ;; + xps | xps100) + basic_machine=xps100-honeywell + ;; + xscale-* | xscalee[bl]-*) + basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` + ;; + ymp) + basic_machine=ymp-cray + os=-unicos + ;; + z8k-*-coff) + basic_machine=z8k-unknown + os=-sim + ;; + z80-*-coff) + basic_machine=z80-unknown + os=-sim + ;; + none) + basic_machine=none-none + os=-none + ;; + +# Here we handle the default manufacturer of certain CPU types. It is in +# some cases the only manufacturer, in others, it is the most popular. + w89k) + basic_machine=hppa1.1-winbond + ;; + op50n) + basic_machine=hppa1.1-oki + ;; + op60c) + basic_machine=hppa1.1-oki + ;; + romp) + basic_machine=romp-ibm + ;; + mmix) + basic_machine=mmix-knuth + ;; + rs6000) + basic_machine=rs6000-ibm + ;; + vax) + basic_machine=vax-dec + ;; + pdp10) + # there are many clones, so DEC is not a safe bet + basic_machine=pdp10-unknown + ;; + pdp11) + basic_machine=pdp11-dec + ;; + we32k) + basic_machine=we32k-att + ;; + sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) + basic_machine=sh-unknown + ;; + sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) + basic_machine=sparc-sun + ;; + cydra) + basic_machine=cydra-cydrome + ;; + orion) + basic_machine=orion-highlevel + ;; + orion105) + basic_machine=clipper-highlevel + ;; + mac | mpw | mac-mpw) + basic_machine=m68k-apple + ;; + pmac | pmac-mpw) + basic_machine=powerpc-apple + ;; + *-unknown) + # Make sure to match an already-canonicalized machine name. + ;; + *) + echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 + exit 1 + ;; +esac + +# Here we canonicalize certain aliases for manufacturers. +case $basic_machine in + *-digital*) + basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` + ;; + *-commodore*) + basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` + ;; + *) + ;; +esac + +# Decode manufacturer-specific aliases for certain operating systems. + +if [ x"$os" != x"" ] +then +case $os in + # First match some system type aliases + # that might get confused with valid system types. + # -solaris* is a basic system type, with this one exception. + -auroraux) + os=-auroraux + ;; + -solaris1 | -solaris1.*) + os=`echo $os | sed -e 's|solaris1|sunos4|'` + ;; + -solaris) + os=-solaris2 + ;; + -svr4*) + os=-sysv4 + ;; + -unixware*) + os=-sysv4.2uw + ;; + -gnu/linux*) + os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` + ;; + # First accept the basic system types. + # The portable systems comes first. + # Each alternative MUST END IN A *, to match a version number. + # -sysv* is not here because it comes later, after sysvr4. + -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ + | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ + | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ + | -sym* | -kopensolaris* \ + | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ + | -aos* | -aros* \ + | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ + | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ + | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ + | -openbsd* | -solidbsd* \ + | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ + | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ + | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ + | -chorusos* | -chorusrdb* | -cegcc* \ + | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ + | -mingw32* | -linux-gnu* | -linux-android* \ + | -linux-newlib* | -linux-uclibc* \ + | -uxpv* | -beos* | -mpeix* | -udk* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ + | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ + | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ + | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ + | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ + | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) + # Remember, each alternative MUST END IN *, to match a version number. + ;; + -qnx*) + case $basic_machine in + x86-* | i*86-*) + ;; + *) + os=-nto$os + ;; + esac + ;; + -nto-qnx*) + ;; + -nto*) + os=`echo $os | sed -e 's|nto|nto-qnx|'` + ;; + -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ + | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ + | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) + ;; + -mac*) + os=`echo $os | sed -e 's|mac|macos|'` + ;; + -linux-dietlibc) + os=-linux-dietlibc + ;; + -linux*) + os=`echo $os | sed -e 's|linux|linux-gnu|'` + ;; + -sunos5*) + os=`echo $os | sed -e 's|sunos5|solaris2|'` + ;; + -sunos6*) + os=`echo $os | sed -e 's|sunos6|solaris3|'` + ;; + -opened*) + os=-openedition + ;; + -os400*) + os=-os400 + ;; + -wince*) + os=-wince + ;; + -osfrose*) + os=-osfrose + ;; + -osf*) + os=-osf + ;; + -utek*) + os=-bsd + ;; + -dynix*) + os=-bsd + ;; + -acis*) + os=-aos + ;; + -atheos*) + os=-atheos + ;; + -syllable*) + os=-syllable + ;; + -386bsd) + os=-bsd + ;; + -ctix* | -uts*) + os=-sysv + ;; + -nova*) + os=-rtmk-nova + ;; + -ns2 ) + os=-nextstep2 + ;; + -nsk*) + os=-nsk + ;; + # Preserve the version number of sinix5. + -sinix5.*) + os=`echo $os | sed -e 's|sinix|sysv|'` + ;; + -sinix*) + os=-sysv4 + ;; + -tpf*) + os=-tpf + ;; + -triton*) + os=-sysv3 + ;; + -oss*) + os=-sysv3 + ;; + -svr4) + os=-sysv4 + ;; + -svr3) + os=-sysv3 + ;; + -sysvr4) + os=-sysv4 + ;; + # This must come after -sysvr4. + -sysv*) + ;; + -ose*) + os=-ose + ;; + -es1800*) + os=-ose + ;; + -xenix) + os=-xenix + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + os=-mint + ;; + -aros*) + os=-aros + ;; + -kaos*) + os=-kaos + ;; + -zvmoe) + os=-zvmoe + ;; + -dicos*) + os=-dicos + ;; + -nacl*) + ;; + -none) + ;; + *) + # Get rid of the `-' at the beginning of $os. + os=`echo $os | sed 's/[^-]*-//'` + echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 + exit 1 + ;; +esac +else + +# Here we handle the default operating systems that come with various machines. +# The value should be what the vendor currently ships out the door with their +# machine or put another way, the most popular os provided with the machine. + +# Note that if you're going to try to match "-MANUFACTURER" here (say, +# "-sun"), then you have to tell the case statement up towards the top +# that MANUFACTURER isn't an operating system. Otherwise, code above +# will signal an error saying that MANUFACTURER isn't an operating +# system, and we'll never get to this point. + +case $basic_machine in + score-*) + os=-elf + ;; + spu-*) + os=-elf + ;; + *-acorn) + os=-riscix1.2 + ;; + arm*-rebel) + os=-linux + ;; + arm*-semi) + os=-aout + ;; + c4x-* | tic4x-*) + os=-coff + ;; + tic54x-*) + os=-coff + ;; + tic55x-*) + os=-coff + ;; + tic6x-*) + os=-coff + ;; + # This must come before the *-dec entry. + pdp10-*) + os=-tops20 + ;; + pdp11-*) + os=-none + ;; + *-dec | vax-*) + os=-ultrix4.2 + ;; + m68*-apollo) + os=-domain + ;; + i386-sun) + os=-sunos4.0.2 + ;; + m68000-sun) + os=-sunos3 + ;; + m68*-cisco) + os=-aout + ;; + mep-*) + os=-elf + ;; + mips*-cisco) + os=-elf + ;; + mips*-*) + os=-elf + ;; + or32-*) + os=-coff + ;; + *-tti) # must be before sparc entry or we get the wrong os. + os=-sysv3 + ;; + sparc-* | *-sun) + os=-sunos4.1.1 + ;; + *-be) + os=-beos + ;; + *-haiku) + os=-haiku + ;; + *-ibm) + os=-aix + ;; + *-knuth) + os=-mmixware + ;; + *-wec) + os=-proelf + ;; + *-winbond) + os=-proelf + ;; + *-oki) + os=-proelf + ;; + *-hp) + os=-hpux + ;; + *-hitachi) + os=-hiux + ;; + i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) + os=-sysv + ;; + *-cbm) + os=-amigaos + ;; + *-dg) + os=-dgux + ;; + *-dolphin) + os=-sysv3 + ;; + m68k-ccur) + os=-rtu + ;; + m88k-omron*) + os=-luna + ;; + *-next ) + os=-nextstep + ;; + *-sequent) + os=-ptx + ;; + *-crds) + os=-unos + ;; + *-ns) + os=-genix + ;; + i370-*) + os=-mvs + ;; + *-next) + os=-nextstep3 + ;; + *-gould) + os=-sysv + ;; + *-highlevel) + os=-bsd + ;; + *-encore) + os=-bsd + ;; + *-sgi) + os=-irix + ;; + *-siemens) + os=-sysv4 + ;; + *-masscomp) + os=-rtu + ;; + f30[01]-fujitsu | f700-fujitsu) + os=-uxpv + ;; + *-rom68k) + os=-coff + ;; + *-*bug) + os=-coff + ;; + *-apple) + os=-macos + ;; + *-atari*) + os=-mint + ;; + *) + os=-none + ;; +esac +fi + +# Here we handle the case where we know the os, and the CPU type, but not the +# manufacturer. We pick the logical manufacturer. +vendor=unknown +case $basic_machine in + *-unknown) + case $os in + -riscix*) + vendor=acorn + ;; + -sunos*) + vendor=sun + ;; + -cnk*|-aix*) + vendor=ibm + ;; + -beos*) + vendor=be + ;; + -hpux*) + vendor=hp + ;; + -mpeix*) + vendor=hp + ;; + -hiux*) + vendor=hitachi + ;; + -unos*) + vendor=crds + ;; + -dgux*) + vendor=dg + ;; + -luna*) + vendor=omron + ;; + -genix*) + vendor=ns + ;; + -mvs* | -opened*) + vendor=ibm + ;; + -os400*) + vendor=ibm + ;; + -ptx*) + vendor=sequent + ;; + -tpf*) + vendor=ibm + ;; + -vxsim* | -vxworks* | -windiss*) + vendor=wrs + ;; + -aux*) + vendor=apple + ;; + -hms*) + vendor=hitachi + ;; + -mpw* | -macos*) + vendor=apple + ;; + -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) + vendor=atari + ;; + -vos*) + vendor=stratus + ;; + esac + basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` + ;; +esac + +echo $basic_machine$os +exit + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "timestamp='" +# time-stamp-format: "%:y-%02m-%02d" +# time-stamp-end: "'" +# End: diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..20a27a9 --- /dev/null +++ b/configure.ac @@ -0,0 +1,421 @@ +dnl Process this file with autoconf to produce a configure script. +dnl This config.in requires autoconf 2.5 or greater. + +AC_PREREQ([2.68]) +AC_INIT([qpdf],[3.0.2]) + +AC_CONFIG_MACRO_DIR([m4]) +AC_CONFIG_FILES([autoconf.mk]) +AC_CONFIG_FILES([manual/html.xsl manual/print.xsl]) +AC_CONFIG_FILES([libqpdf.pc]) +AC_CONFIG_HEADERS([libqpdf/qpdf/qpdf-config.h]) + +AC_PROG_CC +AC_PROG_CC_C99 +AC_PROG_CXX +AC_HEADER_STDC +LT_INIT([win32-dll]) + +USE_EXTERNAL_LIBS=0 +AC_MSG_CHECKING(for whether to use external libraries distribution) +AC_ARG_ENABLE(external-libs, + AS_HELP_STRING([--enable-external-libs], + [whether to use external libraries distribution]), + [if test "$enableval" = "yes"; then + USE_EXTERNAL_LIBS=1; + else + USE_EXTERNAL_LIBS=0; + fi], [BUILD_INTERNAL_LIBS=0]) +if test "$BUILD_INTERNAL_LIBS" = "0"; then + AC_MSG_RESULT(no) +else + AC_MSG_RESULT(yes) +fi + +WINDOWS_WORDSIZE= +AC_SUBST(WINDOWS_WORDSIZE) +AC_ARG_WITH(windows-wordsize, + AS_HELP_STRING([--with-windows-wordsize={32,64}], + [Windows only: whether this is a 32-bit or 64-bit build; required if external-libs are enabled]), + [WINDOWS_WORDSIZE=$withval], + [WINDOWS_WORDSIZE=none]) +if test "$USE_EXTERNAL_LIBS" = "1"; then + AC_MSG_CHECKING(for windows wordsize) + AC_MSG_RESULT($WINDOWS_WORDSIZE) + if ! test "$WINDOWS_WORDSIZE" = "32" -o "$WINDOWS_WORDSIZE" = "64"; then + AC_MSG_ERROR(Windows wordsize of 32 or 64 must be specified if external libs are being used.) + fi +fi + +if test "$BUILD_INTERNAL_LIBS" = "0"; then + AC_CHECK_HEADER(zlib.h,,[MISSING_ZLIB_H=1; MISSING_ANY=1]) + AC_SEARCH_LIBS(deflate,z zlib,,[MISSING_ZLIB=1; MISSING_ANY=1]) + AC_CHECK_HEADER(pcre.h,,[MISSING_PCRE_H=1; MISSING_ANY=1]) + AC_SEARCH_LIBS(pcre_compile,pcre,,[MISSING_PCRE=1; MISSING_ANY=1]) +fi + +QPDF_LARGE_FILE_TEST_PATH= +AC_SUBST(QPDF_LARGE_FILE_TEST_PATH) +AC_ARG_WITH(large-file-test-path, + AS_HELP_STRING([--with-large-file-test-path=path], + [To enable testing of files > 4GB, give the path to a directory with at least 11 GB free. The test suite will write temporary files to this directory. Alternatively, just set the QPDF_LARGE_FILE_TEST_PATH environment variable to the path before running the test suite.]), + [QPDF_LARGE_FILE_TEST_PATH=$withval], + [QPDF_LARGE_FILE_TEST_PATH=]) + +AC_SYS_LARGEFILE +AC_FUNC_FSEEKO +AC_CHECK_FUNCS([fseeko64]) +AC_TYPE_UINT16_T +AC_TYPE_UINT32_T + +AC_MSG_CHECKING(for whether printf supports %ll) +AC_COMPILE_IFELSE([AC_LANG_SOURCE([[ +#include +#include +#include +int +main() +{ + long long a = 160591605916059ll; + char t[50]; + sprintf(t, "%lld", a); +} +]])],[qpdf_PRINTF_LL=yes],[qpdf_PRINTF_LL=no]) +AC_MSG_RESULT($qpdf_PRINTF_LL) +if test "$qpdf_PRINTF_LL" = "yes"; then + AC_DEFINE([HAVE_PRINTF_LL], [1], [Whether printf supports %ll]) +fi + +AC_CHECK_FUNCS(random) + +# Check if LD supports linker scripts, and define conditional +# HAVE_LD_VERSION_SCRIPT if so. This functionality is currently +# constrained to compilers using GNU ld on ELF systems or systems +# which provide an adequate emulation thereof. +AC_ARG_ENABLE([ld-version-script], + AS_HELP_STRING([--enable-ld-version-script], + [enable linker version script (default is enabled)]), + [have_ld_version_script=$enableval], [have_ld_version_script=yes]) +if test "$have_ld_version_script" != no; then + AC_MSG_CHECKING([if LD -Wl,--version-script works]) + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -Wl,--version-script=conftest.map" + cat > conftest.map <= 3.81) +make_okay=0 +if make --version >/dev/null 2>&1; then + v=`make --version | grep 'GNU Make' | sed -e 's/.*Make //'` + maj=`echo $v | cut -d. -f 1` + min=`echo $v | cut -d. -f 2` + if test $maj -gt 3 -o '(' $maj -eq 3 -a $min -ge 81 ')'; then + make_okay=1 + fi +fi +if test "$make_okay" = "1"; then + AC_MSG_RESULT(yes) +else + dnl Don't set MISSING_ANY=1 -- maybe user calls make something else + MISSING_MAKE_381=1 + ISSUE_WARNINGS=1 + AC_MSG_RESULT(no) +fi + +AC_SUBST(GENDEPS) +GENDEPS=0 +AC_MSG_CHECKING(for whether $CC supports -MD -MF x.dep -MP) +oCFLAGS=$CFLAGS +rm -f x.dep +CFLAGS="$CFLAGS -MD -MF x.dep -MP" +AC_COMPILE_IFELSE([AC_LANG_PROGRAM( + [[#include ]], [[FILE* a = stdout]] + )], + [qpdf_DEPFLAGS=yes], + [qpdf_DEPFLAGS=no]) +CFLAGS=$oCFLAGS +if test "$qpdf_DEPFLAGS" = "yes"; then + if ! grep stdio.h x.dep >/dev/null 2>&1; then + qpdf_DEPFLAGS=no + fi +fi +rm -f x.dep +if test "$qpdf_DEPFLAGS" = "yes"; then + AC_MSG_RESULT(yes) + GENDEPS=1 +else + AC_MSG_RESULT(no) +fi + +AC_MSG_CHECKING(which build rules to use) +AC_SUBST(BUILDRULES) +AC_ARG_WITH(buildrules, + AS_HELP_STRING([--with-buildrules=rules], + [which build rules to use; see README]), + [BUILDRULES=$withval], + [BUILDRULES=libtool]) +AC_MSG_RESULT($BUILDRULES) + +if test "$BUILDRULES" != "msvc"; then + qpdf_USE_WALL=0 + AC_MSG_CHECKING(for whether $CC supports -Wall) + oCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -Wall" + AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[int a = 1; int b = a; a = b;]])], + [qpdf_USE_WALL=1],[qpdf_USE_WALL=0]) + if test "$qpdf_USE_WALL" = "1"; then + AC_MSG_RESULT(yes) + CXXFLAGS="$CXXFLAGS -Wall" + else + AC_MSG_RESULT(no) + CFLAGS=$oCFLAGS + fi +fi + +if test "$BUILDRULES" != "msvc"; then + AC_MSG_CHECKING(for whether to use -Werror) + AC_ARG_ENABLE(werror, + AS_HELP_STRING([--enable-werror], + [whether to use werror (default is no)]), + [if test "$enableval" = "yes"; then + qpdf_USE_WERROR=1; + else + qpdf_USE_WERROR=0; + fi], [qpdf_USE_WERROR=0]) + if test "$qpdf_USE_WERROR" = "1"; then + AC_MSG_RESULT(yes) + CFLAGS="$CFLAGS -Werror" + CXXFLAGS="$CXXFLAGS -Werror" + else + AC_MSG_RESULT(no) + fi +fi + +AC_SUBST(QPDF_SKIP_TEST_COMPARE_IMAGES) +AC_ARG_ENABLE(test-compare-images, + AS_HELP_STRING([--enable-test-compare-images], + [whether to compare images in test suite; disabled by default, enabling requires ghostscript and tiffcmp to be available]), + [if test "$enableval" = "no"; then + QPDF_SKIP_TEST_COMPARE_IMAGES=1 + else + QPDF_SKIP_TEST_COMPARE_IMAGES=0 + fi], + [QPDF_SKIP_TEST_COMPARE_IMAGES=1]) + +AC_SUBST(SHOW_FAILED_TEST_OUTPUT) +AC_ARG_ENABLE(show-failed-test-output, + AS_HELP_STRING([--enable-show-failed-test-output], + [if specified, write failed test output to the console; useful for building on build servers where you can't easily open the test output files]), + [if test "$enableval" = "no"; then + SHOW_FAILED_TEST_OUTPUT=0 + else + SHOW_FAILED_TEST_OUTPUT=1 + fi], + [SHOW_FAILED_TEST_OUTPUT=0]) + +AC_ARG_WITH(docbook-xsl, + AS_HELP_STRING([--with-docbook-xsl=DIR], + [location of docbook 4.x xml stylesheets]), + [DOCBOOK_XSL=$withval], + [DOCBOOK_XSL=/usr/share/xml/docbook/stylesheet/nwalsh]) + +DOCBOOK_XHTML= +AC_SUBST(DOCBOOK_XHTML) +AC_MSG_CHECKING(for xml to xhtml docbook stylesheets) +if test -f "$DOCBOOK_XSL/xhtml/docbook.xsl"; then + DOCBOOK_XHTML="$DOCBOOK_XSL/xhtml/docbook.xsl" + AC_MSG_RESULT($DOCBOOK_XHTML) +else + AC_MSG_RESULT(no) +fi +DOCBOOK_FO= +AC_SUBST(DOCBOOK_FO) +AC_MSG_CHECKING(for xml to fo docbook stylesheets) +if test -f "$DOCBOOK_XSL/fo/docbook.xsl"; then + DOCBOOK_FO="$DOCBOOK_XSL/fo/docbook.xsl" + AC_MSG_RESULT($DOCBOOK_FO) +else + AC_MSG_RESULT(no) +fi + +DOCBOOKX_DTD= +AC_SUBST(DOCBOOKX_DTD) +AC_ARG_WITH(docbookx-dtd, + AS_HELP_STRING([--with-docbookx-dtd=FILE], + [location of docbook 4.x xml DTD]), + [DOCBOOKX_DTD=$withval], + [DOCBOOKX_DTD=/usr/share/xml/docbook/schema/dtd/4/docbookx.dtd]) +AC_MSG_CHECKING(for docbook 4.x xml DTD) +if test -f "$DOCBOOKX_DTD"; then + AC_MSG_RESULT($DOCBOOKX_DTD) +else + AC_MSG_RESULT(no) +fi + +AC_CHECK_PROG(FOP,fop,fop,[]) +AC_CHECK_PROG(XSLTPROC,xsltproc,xsltproc,[]) +AC_CHECK_PROG(XMLLINT,xmllint,xmllint,[]) + +AC_ARG_ENABLE(doc-maintenance, + AS_HELP_STRING([--enable-doc-maintenance], + [if set, enables all documentation options]), + [if test "$enableval" = "yes"; then + doc_default=1; + else + doc_default=0; + fi], + [doc_default=0]) + +BUILD_HTML=0 +AC_SUBST(BUILD_HTML) +AC_ARG_ENABLE(html-doc, + AS_HELP_STRING([--enable-html-doc], + [whether to build HTML documents]), + [if test "$enableval" = "yes"; then + BUILD_HTML=1; + else + BUILD_HTML=0; + fi], + [BUILD_HTML=$doc_default]) +BUILD_PDF=0 +AC_SUBST(BUILD_PDF) +AC_ARG_ENABLE(pdf-doc, + AS_HELP_STRING([--enable-pdf-doc], + [whether to build PDF documents]), + [if test "$enableval" = "yes"; then + BUILD_PDF=1; + else + BUILD_PDF=0; + fi], + [BUILD_PDF=$doc_default]) +VALIDATE_DOC=0 +AC_SUBST(VALIDATE_DOC) +AC_ARG_ENABLE(validate-doc, + AS_HELP_STRING([--enable-validate-doc], + [whether to validate xml document source]), + [if test "$enableval" = "yes"; then + VALIDATE_DOC=1; + else + VALIDATE_DOC=0; + fi], + [VALIDATE_DOC=$doc_default]) + +if test "$VALIDATE_DOC" = "1"; then + if test "$XMLLINT" = ""; then + MISSING_XMLLINT=1 + MISSING_ANY=1 + fi +fi +if test "$BUILD_HTML" = "1"; then + if test "$XSLTPROC" = ""; then + MISSING_XSLTPROC=1 + MISSING_ANY=1 + fi + if test "$DOCBOOK_XHTML" = ""; then + MISSING_DOCBOOK_XHTML=1 + MISSING_ANY=1 + fi +fi +if test "$BUILD_PDF" = "1"; then + if test "$XSLTPROC" = ""; then + MISSING_XSLTPROC=1 + MISSING_ANY=1 + fi + if test "$DOCBOOK_FO" = ""; then + MISSING_DOCBOOK_FO=1 + MISSING_ANY=1 + fi + if test "$FOP" = ""; then + MISSING_FOP=1 + MISSING_ANY=1 + fi +fi + + +if test "$MISSING_ANY" = "1"; then + ISSUE_WARNINGS=1 +fi +if test "$ISSUE_WARNINGS" = "1"; then + echo "" + echo "" +fi + +if test "$MISSING_MAKE_381" = "1"; then + AC_MSG_WARN(gnu make >= 3.81 is required) +fi + +if test "$MISSING_ZLIB_H" = "1"; then + AC_MSG_WARN(unable to find required header zlib.h) +fi + +if test "$MISSING_ZLIB" = "1"; then + AC_MSG_WARN(unable to find required library z (or zlib)) +fi + +if test "$MISSING_PCRE_H" = "1"; then + AC_MSG_WARN(unable to find required header pcre.h) +fi + +if test "$MISSING_PCRE" = "1"; then + AC_MSG_WARN(unable to find required library pcre) +fi + +if test "$MISSING_DOCBOOK_FO" = "1"; then + AC_MSG_WARN(docbook fo stylesheets are required to build PDF documentation) +fi + +if test "$MISSING_DOCBOOK_XHTML" = "1"; then + AC_MSG_WARN(docbook xhmtl stylesheets are required to build HTML documentation) +fi + +if test "$MISSING_FOP" = "1"; then + AC_MSG_WARN(apache fop is required to build PDF documentation) +fi + +if test "$MISSING_XMLLINT" = "1"; then + AC_MSG_WARN(xmllint is required to validate documentation) +fi + +if test "$MISSING_XSLTPROC" = "1"; then + AC_MSG_WARN(xsltproc is required to build documentation) +fi + +if test "$ISSUE_WARNINGS" = "1"; then + echo "" + echo "" +fi + +if test "$MISSING_ANY" = "1"; then + AC_MSG_ERROR(some required prerequisites were not found) +fi + +# Do this last so it doesn't interfere with other tests. +if test "$USE_EXTERNAL_LIBS" = "1"; then + # Don't actually check for the presence of this -- we document that + # the user can run this and then edit autoconf.mk if they have too + # much trouble getting it to work with a different compiler. + CPPFLAGS="$CPPFLAGS -Iexternal-libs/include" + LDFLAGS="$LDFLAGS -Lexternal-libs/lib-$BUILDRULES$WINDOWS_WORDSIZE" + LIBS="$LIBS -lz -lpcre" +fi + +AC_OUTPUT diff --git a/copy_dlls b/copy_dlls new file mode 100755 index 0000000..e93f161 --- /dev/null +++ b/copy_dlls @@ -0,0 +1,126 @@ +#!/usr/bin/env perl + +require 5.008; +BEGIN { $^W = 1; } +use strict; +use File::Basename; + +my $whoami = basename($0); + +usage() unless @ARGV == 3; +my ($file, $destdir, $objdump) = @ARGV; +my $filedir = dirname($file); + +my %dlls = (); +open(O, "$objdump -p $file|") or die "$whoami: can't run objdump\n"; +while () +{ + if (m/^\s+DLL Name:\s+(.+\.dll)/i) + { + my $dll = $1; + $dll =~ tr/A-Z/a-z/; + next if $dll =~ m/^(kernel32|user32|msvcrt)\.dll$/; + $dlls{$dll} = 1; + } +} +close(O); + +# Search the file's directory, the current directory, and the path for +# dlls since that's what Windows does. +my $sep = ($^O eq 'MSWin32' ? ';' : ':'); +my @path = ($filedir, '.', split($sep, $ENV{'PATH'})); +if (-f "$file.manifest") +{ + unshift(@path, get_manifest_dirs("$file.manifest")); +} +my @final = (); +my @notfound = (); +dll_loop: +foreach my $dll (sort keys %dlls) +{ + my $found = 0; + foreach my $dir (@path) + { + if (-f "$dir/$dll") + { + push(@final, "$dir/$dll"); + $found = 1; + last; + } + } + if (! $found) + { + push(@notfound, $dll); + } +} + +if (@notfound) +{ + die "$whoami: can't find the following dlls: " . + join(', ', @notfound), "\n"; +} + +foreach my $f (@final) +{ + $f =~ s,\\,/,g; + print "Copying $f to $destdir\n"; + system("cp -p $f $destdir") == 0 or + die "$whoami: copy $f to $destdir failed\n"; +} + +sub get_manifest_dirs +{ + # Find all system directories in which to search for DLLs based on + # the contents of a Visual Studio manifest file. + + my $manifest_file = shift; + + require XML::Parser; + my $sysroot = $ENV{'SYSTEMROOT'} or die "$whoami: can't get \$SYSTEMROOT\n"; + $sysroot =~ s,\\,/,g; + if ($^O eq 'cygwin') + { + chop($sysroot = `cygpath $sysroot`); + die "$whoami: can't get system root" unless $? == 0; + } + my $winsxs = "$sysroot/WinSxS"; + opendir(D, $winsxs) or die "$whoami: can't opendir $winsxs: $!\n"; + my @entries = readdir(D); + closedir(D); + + my @candidates = (); + + my $readAssemblyIdentity = sub + { + my ($parser, $element, %attrs) = @_; + return unless $element eq 'assemblyIdentity'; + my $type = $attrs{'type'}; + my $name = $attrs{'name'}; + my $version = $attrs{'version'}; + my $processorArchitecture = $attrs{'processorArchitecture'}; + my $publicKeyToken = $attrs{'publicKeyToken'}; + + my $dir_start = join('_', + $processorArchitecture, + $name, + $publicKeyToken, + $version); + push(@candidates, $dir_start); + }; + + my $p = new XML::Parser(Handlers => {'Start' => $readAssemblyIdentity}); + $p->parsefile($manifest_file); + + my @dirs = (); + foreach my $c (@candidates) + { + push(@dirs, map { "$winsxs/$_" } (grep { m/^\Q$c\E/i } @entries)); + } + + @dirs; +} + +sub usage +{ + die "Usage: $whoami {exe|dll} destdir\n"; +} diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..d59b119 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,15 @@ +qpdf (3.0.2-2slp2) unstable; urgency=low + + * Added spec file and smack manifest file + * Git: external/qpdf + * Tag: qpdf_3.0.2-2slp2 + + -- GangHeok Kim Fri, 14 Dec 2012 14:00:01 +0900 + +qpdf (3.0.2-1slp2) unstable; urgency=low + + * Ported qpdf initially + * Git: external/qpdf + * Tag: qpdf_3.0.2-1slp2 + + -- GangHeok Kim Fri, 14 Dec 2012 13:57:51 +0900 diff --git a/doc/stylesheet.css b/doc/stylesheet.css new file mode 100644 index 0000000..abaf226 --- /dev/null +++ b/doc/stylesheet.css @@ -0,0 +1,284 @@ +/**************************************************************/ +/* Custom style-sheet for the QPDF manual in HTML form. */ +/**************************************************************/ + +/* + * This file is the CSS for the QPDF manual. It is based heavily on + * the CSS for the Subversion book. That file contains the following + * copyright and attribution: + * + * Copyright (c) 2003-2007 + * Ben Collins-Sussman, Brian W. Fitzpatrick, C. Michael Pilato. + * + * This work is licensed under the Creative Commons Attribution License. + * To view a copy of this license, visit + * http://creativecommons.org/licenses/by/2.0/ or send a letter to + * Creative Commons, 559 Nathan Abbott Way, Stanford, California 94305, + * USA. + */ + +body +{ + background: white; + margin: 0.5in; +} + +p, li, ul, ol, dd, dt +{ + font-style: normal; + font-weight: normal; + color: black; +} + +tt, pre +{ + font-family: courier new,courier,fixed; +} + +a +{ + color: blue; + text-decoration: underline; +} + +a:hover +{ + background: rgb(75%,75%,100%); + color: blue; + text-decoration: underline; +} + +a:visited +{ + color: purple; + text-decoration: underline; +} + +img +{ + border: none; +} + +h1.title +{ + font-size: 250%; + font-style: normal; + font-weight: bold; + color: black; +} + +h2.subtitle +{ + font-size: 150%; + font-style: italic; + color: black; +} + +h2.title +{ + font-size: 150%; + font-style: normal; + font-weight: bold; + color: black; +} + +h3.title +{ + font-size: 125%; + font-style: normal; + font-weight: bold; + color: black; +} + +h4.title +{ + font-size: 100%; + font-style: normal; + font-weight: bold; + color: black; +} + +.toc b +{ + font-size: 125%; + font-style: normal; + font-weight: bold; + color: black; +} + +.screen, .programlisting, .literal +{ + font-family: courier new,courier,fixed; + font-style: normal; + font-weight: normal; +} + +.command, .option, .type +{ + font-family: courier new,courier,fixed; + font-style: normal; + font-weight: normal; +} + +.filename +{ + font-family: arial,helvetica,sans-serif; + font-style: italic; +} + +.property +{ + font-family: arial,helvetica,sans-serif; + font-weight: bold; +} + +.classname +{ + font-family: arial,helvetica,sans-serif; + font-weight: bold; + font-style: italic; +} + +.varname, .function, .envar +{ + font-family: arial,helvetica,sans-serif; + font-style: italic; +} + +.replaceable +{ + font-style: italic; + font-size: 100%; +} + +.figure, .example, .table +{ + margin: 0.125in 0.25in; +} + +.table table +{ + border-width: 1px; + border-style: solid; + border-color: black; + border-spacing: 0; + background: rgb(240,240,240); +} + +.table td +{ + border: none; + border-right: 1px black solid; + border-bottom: 1px black solid; + padding: 2px; +} + +.table th +{ + background: rgb(180,180,180); + border: none; + border-right: 1px black solid; + border-bottom: 1px black solid; + padding: 2px; +} + +.table p.title, .figure p.title, .example p.title +{ + text-align: left !important; + font-size: 100% !important; +} + +.author, .pubdate +{ + margin: 0; + font-size: 100%; + font-style: italic; + font-weight: normal; + color: black; +} + +.preface div.author, .preface .pubdate +{ + font-size: 80%; +} + +.sidebar +{ + border-top: dotted 1px black; + border-left: dotted 1px black; + border-right: solid 2px black; + border-bottom: solid 2px black; + background: rgb(240,220,170); + padding: 0 0.12in; + margin: 0.25in; +} + +.note .programlisting, .note .screen, +.tip .programlisting, .tip .screen, +.warning .programlisting, .warning .screen, +.sidebar .programlisting, .sidebar .screen +{ + border: none; + background: none; +} + +.sidebar p.title +{ + text-align: center; + font-size: 125%; +} + +.note +{ + border: black solid 1px; + background: url(./images/note.png) no-repeat rgb(252,246,220); + margin: 0.125in 0; + padding: 0 55px; +} + +.tip +{ + border: black solid 1px; + background: url(./images/tip.png) no-repeat rgb(224,244,255); + margin: 0.125in 0; + padding: 0 55px; +} + +.warning +{ + border: black solid 1px; + background: url(./images/warning.png) no-repeat rgb(255,210,210); + margin: 0.125in 0; + padding: 0 55px; +} + +/* +.note .title, .tip .title, .warning .title +{ + display: none; +} +*/ + +.programlisting, .screen +{ + font-size: 90%; + color: black; + margin: 1em 0.25in; + padding: 0.5em; + background: rgb(240,240,240); + border-top: black dotted 1px; + border-left: black dotted 1px; + border-right: black solid 2px; + border-bottom: black solid 2px; +} + +.navheader, .navfooter +{ + border: black solid 1px; + background: rgb(180,180,200); +} + +.navheader hr, .navfooter hr +{ + display: none; +} diff --git a/examples/Makefile b/examples/Makefile new file mode 100644 index 0000000..9089905 --- /dev/null +++ b/examples/Makefile @@ -0,0 +1 @@ +include ../make/proxy.mk diff --git a/examples/build.mk b/examples/build.mk new file mode 100644 index 0000000..12734b1 --- /dev/null +++ b/examples/build.mk @@ -0,0 +1,40 @@ +BINS_examples = \ + pdf-bookmarks \ + pdf-mod-info \ + pdf-npages \ + pdf-double-page-size \ + pdf-invert-images \ + pdf-create +CBINS_examples = pdf-linearize + +TARGETS_examples = $(foreach B,$(BINS_examples) $(CBINS_examples),examples/$(OUTPUT_DIR)/$(call binname,$(B))) + +$(TARGETS_examples): $(TARGETS_qpdf) + +INCLUDES_examples = include + +TC_SRCS_examples = $(wildcard examples/*.cc) + +# ----- + +$(foreach B,$(BINS_examples),$(eval \ + OBJS_$(B) = $(call src_to_obj,examples/$(B).cc))) + +$(foreach B,$(CBINS_examples),$(eval \ + OBJS_$(B) = $(call c_src_to_obj,examples/$(B).c))) + +ifeq ($(GENDEPS),1) +-include $(foreach B,$(BINS_examples) $(CBINS_examples),$(call obj_to_dep,$(OBJS_$(B)))) +endif + +$(foreach B,$(BINS_examples),$(eval \ + $(OBJS_$(B)): examples/$(OUTPUT_DIR)/%.$(OBJ): examples/$(B).cc ; \ + $(call compile,examples/$(B).cc,$(INCLUDES_examples)))) + +$(foreach B,$(CBINS_examples),$(eval \ + $(OBJS_$(B)): examples/$(OUTPUT_DIR)/%.$(OBJ): examples/$(B).c ; \ + $(call c_compile,examples/$(B).c,$(INCLUDES_examples)))) + +$(foreach B,$(BINS_examples) $(CBINS_examples),$(eval \ + examples/$(OUTPUT_DIR)/$(call binname,$(B)): $(OBJS_$(B)) ; \ + $(call makebin,$(OBJS_$(B)),$$@,$(LDFLAGS) $(LDFLAGS_libqpdf),$(LIBS_libqpdf) $(LIBS)))) diff --git a/examples/examples.testcov b/examples/examples.testcov new file mode 100644 index 0000000..5a19b7c --- /dev/null +++ b/examples/examples.testcov @@ -0,0 +1,19 @@ +pdf-bookmarks lines 0 +pdf-bookmarks numbers 0 +pdf-bookmarks none 0 +pdf-bookmarks has count 0 +pdf-bookmarks no count 0 +pdf-bookmarks open 0 +pdf-bookmarks closed 0 +pdf-bookmarks dest 0 +pdf-bookmarks targets 0 +pdf-mod-info --dump 0 +pdf-mod-info no in file 0 +pdf-mod-info in-place 0 +pdf-mod-info -key 0 +pdf-mod-info usage wrong val 0 +pdf-mod-info -val 0 +pdf-mod-info usage junk 0 +pdf-mod-info no keys 0 +pdf-mod-info has info 0 +pdf-mod-info file no info 0 diff --git a/examples/pdf-bookmarks.cc b/examples/pdf-bookmarks.cc new file mode 100644 index 0000000..802cdba --- /dev/null +++ b/examples/pdf-bookmarks.cc @@ -0,0 +1,257 @@ +#include +#include +#include +#include +#include +#include + +static char const* whoami = 0; +static enum { st_none, st_numbers, st_lines } style = st_none; +static bool show_open = false; +static bool show_targets = false; +static std::map page_map; + +void usage() +{ + std::cerr << "Usage: " << whoami << " [options] file.pdf [password]" + << std::endl + << "Options:" << std::endl + << " -numbers give bookmarks outline-style numbers" + << std::endl + << " -lines draw lines to show bookmark hierarchy" + << std::endl + << " -show-open indicate whether a bookmark is initially open" + << std::endl + << " -show-targets show target if possible" + << std::endl; + exit(2); +} + +void print_lines(std::vector& numbers) +{ + for (unsigned int i = 0; i < numbers.size() - 1; ++i) + { + if (numbers[i]) + { + std::cout << "| "; + } + else + { + std::cout << " "; + } + } +} + +void generate_page_map(QPDF& qpdf) +{ + std::vector pages = qpdf.getAllPages(); + int n = 0; + for (std::vector::iterator iter = pages.begin(); + iter != pages.end(); ++iter) + { + QPDFObjectHandle& oh = *iter; + page_map[oh.getObjectID()] = ++n; + } +} + +void extract_bookmarks(QPDFObjectHandle outlines, std::vector& numbers) +{ + if (outlines.hasKey("/Title")) + { + // No default so gcc will warn on missing tag + switch (style) + { + case st_none: + QTC::TC("examples", "pdf-bookmarks none"); + break; + + case st_numbers: + QTC::TC("examples", "pdf-bookmarks numbers"); + for (std::vector::iterator iter = numbers.begin(); + iter != numbers.end(); ++iter) + { + std::cout << *iter << "."; + } + std::cout << " "; + break; + + case st_lines: + QTC::TC("examples", "pdf-bookmarks lines"); + print_lines(numbers); + std::cout << "|" << std::endl; + print_lines(numbers); + std::cout << "+-+ "; + break; + } + + if (show_open) + { + if (outlines.hasKey("/Count")) + { + QTC::TC("examples", "pdf-bookmarks has count"); + int count = outlines.getKey("/Count").getIntValue(); + if (count > 0) + { + // hierarchy is open at this point + QTC::TC("examples", "pdf-bookmarks open"); + std::cout << "(v) "; + } + else + { + QTC::TC("examples", "pdf-bookmarks closed"); + std::cout << "(>) "; + } + } + else + { + QTC::TC("examples", "pdf-bookmarks no count"); + std::cout << "( ) "; + } + } + + if (show_targets) + { + QTC::TC("examples", "pdf-bookmarks targets"); + std::string target = "unknown"; + // Only explicit destinations supported for now + if (outlines.hasKey("/Dest")) + { + QTC::TC("examples", "pdf-bookmarks dest"); + QPDFObjectHandle dest = outlines.getKey("/Dest"); + if ((dest.isArray()) && (dest.getArrayNItems() > 0)) + { + QPDFObjectHandle first = dest.getArrayItem(0); + int object_id = first.getObjectID(); + if (page_map.count(object_id)) + { + target = QUtil::int_to_string(page_map[object_id]); + } + } + + std::cout << "[ -> " << target << " ] "; + } + } + + std::cout << outlines.getKey("/Title").getUTF8Value() << std::endl; + } + + if (outlines.hasKey("/First")) + { + numbers.push_back(0); + QPDFObjectHandle child = outlines.getKey("/First"); + while (1) + { + ++(numbers.back()); + bool has_next = child.hasKey("/Next"); + if ((style == st_lines) && (! has_next)) + { + numbers.back() = 0; + } + extract_bookmarks(child, numbers); + if (has_next) + { + child = child.getKey("/Next"); + } + else + { + break; + } + } + numbers.pop_back(); + } +} + +int main(int argc, char* argv[]) +{ + whoami = QUtil::getWhoami(argv[0]); + + // For libtool's sake.... + if (strncmp(whoami, "lt-", 3) == 0) + { + whoami += 3; + } + + if ((argc == 2) && (strcmp(argv[1], "--version") == 0)) + { + std::cout << whoami << " version 1.5" << std::endl; + exit(0); + } + + int arg; + for (arg = 1; arg < argc; ++arg) + { + if (argv[arg][0] == '-') + { + if (strcmp(argv[arg], "-numbers") == 0) + { + style = st_numbers; + } + else if (strcmp(argv[arg], "-lines") == 0) + { + style = st_lines; + } + else if (strcmp(argv[arg], "-show-open") == 0) + { + show_open = true; + } + else if (strcmp(argv[arg], "-show-targets") == 0) + { + show_targets = true; + } + else + { + usage(); + } + } + else + { + break; + } + } + + if (arg >= argc) + { + usage(); + } + + char const* filename = argv[arg++]; + char const* password = ""; + + if (arg < argc) + { + password = argv[arg++]; + } + if (arg != argc) + { + usage(); + } + + try + { + QPDF qpdf; + qpdf.processFile(filename, password); + + QPDFObjectHandle root = qpdf.getRoot(); + if (root.hasKey("/Outlines")) + { + std::vector numbers; + if (show_targets) + { + generate_page_map(qpdf); + } + extract_bookmarks(root.getKey("/Outlines"), numbers); + } + else + { + std::cout << filename << " has no bookmarks" << std::endl; + } + } + catch (std::exception &e) + { + std::cerr << whoami << " processing file " << filename << ": " + << e.what() << std::endl; + exit(2); + } + + return 0; +} diff --git a/examples/pdf-create.cc b/examples/pdf-create.cc new file mode 100644 index 0000000..902c680 --- /dev/null +++ b/examples/pdf-create.cc @@ -0,0 +1,183 @@ +#include +#include +#include +#include +#include +#include +#include + +static char const* whoami = 0; + +// This is a simple StreamDataProvider that writes image data for an +// orange square of the given width and height. +class ImageProvider: public QPDFObjectHandle::StreamDataProvider +{ + public: + ImageProvider(int width, int height); + virtual ~ImageProvider(); + virtual void provideStreamData(int objid, int generation, + Pipeline* pipeline); + + private: + int width; + int height; +}; + +ImageProvider::ImageProvider(int width, int height) : + width(width), + height(height) +{ +} + +ImageProvider::~ImageProvider() +{ +} + +void +ImageProvider::provideStreamData(int objid, int generation, + Pipeline* pipeline) +{ + for (int i = 0; i < width * height; ++i) + { + pipeline->write((unsigned char*)"\xff\x7f\x00", 3); + } + pipeline->finish(); +} + +void usage() +{ + std::cerr << "Usage: " << whoami << " filename" << std::endl + << "Creates a simple PDF and writes it to filename" << std::endl; + exit(2); +} + +static QPDFObjectHandle createPageContents(QPDF& pdf, std::string const& text) +{ + // Create a stream that displays our image and the given text in + // our font. + std::string contents = + "BT /F1 24 Tf 72 720 Td (" + text + ") Tj ET\n" + "q 144 0 0 144 234 324 cm /Im1 Do Q\n"; + return QPDFObjectHandle::newStream(&pdf, contents); +} + +QPDFObjectHandle newName(std::string const& name) +{ + return QPDFObjectHandle::newName(name); +} + +QPDFObjectHandle newInteger(int val) +{ + return QPDFObjectHandle::newInteger(val); +} + +static void create_pdf(char const* filename) +{ + QPDF pdf; + + // Start with an empty PDF that has no pages or non-required objects. + pdf.emptyPDF(); + + // Add an indirect object to contain a font descriptor for the + // built-in Helvetica font. + QPDFObjectHandle font = pdf.makeIndirectObject( + QPDFObjectHandle::parse( + "<<" + " /Type /Font" + " /Subtype /Type1" + " /Name /F1" + " /BaseFont /Helvetica" + " /Encoding /WinAnsiEncoding" + ">>")); + + // Create a stream to encode our image. We don't have to set the + // length or filters. QPDFWriter will fill in the length and + // compress the stream data using FlateDecode by default. + QPDFObjectHandle image = QPDFObjectHandle::newStream(&pdf); + image.replaceDict(QPDFObjectHandle::parse( + "<<" + " /Type /XObject" + " /Subtype /Image" + " /ColorSpace /DeviceRGB" + " /BitsPerComponent 8" + " /Width 100" + " /Height 100" + ">>")); + // Provide the stream data. + ImageProvider* p = new ImageProvider(100, 100); + PointerHolder provider(p); + image.replaceStreamData(provider, + QPDFObjectHandle::newNull(), + QPDFObjectHandle::newNull()); + + // Create direct objects as needed by the page dictionary. + QPDFObjectHandle procset = QPDFObjectHandle::parse( + "[/PDF /Text /ImageC]"); + + QPDFObjectHandle rfont = QPDFObjectHandle::newDictionary(); + rfont.replaceKey("/F1", font); + + QPDFObjectHandle xobject = QPDFObjectHandle::newDictionary(); + xobject.replaceKey("/Im1", image); + + QPDFObjectHandle resources = QPDFObjectHandle::newDictionary(); + resources.replaceKey("/ProcSet", procset); + resources.replaceKey("/Font", rfont); + resources.replaceKey("/XObject", xobject); + + QPDFObjectHandle mediabox = QPDFObjectHandle::newArray(); + mediabox.appendItem(newInteger(0)); + mediabox.appendItem(newInteger(0)); + mediabox.appendItem(newInteger(612)); + mediabox.appendItem(newInteger(792)); + + // Create the page content stream + QPDFObjectHandle contents = createPageContents( + pdf, "Look at the pretty, orange square!"); + + // Create the page dictionary + QPDFObjectHandle page = pdf.makeIndirectObject( + QPDFObjectHandle::newDictionary()); + page.replaceKey("/Type", newName("/Page")); + page.replaceKey("/MediaBox", mediabox); + page.replaceKey("/Contents", contents); + page.replaceKey("/Resources", resources); + + // Add the page to the PDF file + pdf.addPage(page, true); + + // Write the results. A real application would not call + // setStaticID here, but this example does it for the sake of its + // test suite. + QPDFWriter w(pdf, filename); + w.setStaticID(true); // for testing only + w.write(); +} + +int main(int argc, char* argv[]) +{ + whoami = QUtil::getWhoami(argv[0]); + + // For libtool's sake.... + if (strncmp(whoami, "lt-", 3) == 0) + { + whoami += 3; + } + if (argc != 2) + { + usage(); + } + char const* filename = argv[1]; + + try + { + create_pdf(filename); + } + catch (std::exception& e) + { + std::cerr << e.what() << std::endl; + exit(2); + } + + return 0; +} diff --git a/examples/pdf-double-page-size.cc b/examples/pdf-double-page-size.cc new file mode 100644 index 0000000..8a1867a --- /dev/null +++ b/examples/pdf-double-page-size.cc @@ -0,0 +1,110 @@ +#include +#include +#include +#include +#include +#include +#include + +static char const* whoami = 0; + +void usage() +{ + std::cerr << "Usage: " << whoami << " infile.pdf outfile.pdf [in-password]" + << std::endl + << "Double size of all pages in infile.pdf;" + << " write output to outfile.pdf" << std::endl; + exit(2); +} + +static void doubleBoxSize(QPDFObjectHandle& page, char const* box_name) +{ + // If there is a box of this name, replace it with a new box whose + // elements are double the values of the original box. + QPDFObjectHandle box = page.getKey(box_name); + if (box.isNull()) + { + return; + } + if (! (box.isArray() && (box.getArrayNItems() == 4))) + { + throw std::runtime_error(std::string("box ") + box_name + + " is not an array of four elements"); + } + std::vector doubled; + for (unsigned int i = 0; i < 4; ++i) + { + doubled.push_back( + QPDFObjectHandle::newReal( + box.getArrayItem(i).getNumericValue() * 2.0, 2)); + } + page.replaceKey(box_name, QPDFObjectHandle::newArray(doubled)); +} + +int main(int argc, char* argv[]) +{ + whoami = QUtil::getWhoami(argv[0]); + + // For libtool's sake.... + if (strncmp(whoami, "lt-", 3) == 0) + { + whoami += 3; + } + + if (! ((argc == 3) || (argc == 4))) + { + usage(); + } + + char const* infilename = argv[1]; + char const* outfilename = argv[2]; + char const* password = (argc == 4) ? argv[3] : ""; + + // Text to prepend to each page's contents + std::string content = "2 0 0 2 0 0 cm\n"; + + try + { + QPDF qpdf; + qpdf.processFile(infilename, password); + + std::vector pages = qpdf.getAllPages(); + for (std::vector::iterator iter = pages.begin(); + iter != pages.end(); ++iter) + { + QPDFObjectHandle& page = *iter; + + // Prepend the buffer to the page's contents + page.addPageContents( + QPDFObjectHandle::newStream(&qpdf, content), true); + + // Double the size of each of the content boxes + doubleBoxSize(page, "/MediaBox"); + doubleBoxSize(page, "/CropBox"); + doubleBoxSize(page, "/BleedBox"); + doubleBoxSize(page, "/TrimBox"); + doubleBoxSize(page, "/ArtBox"); + } + + // Write out a new file + QPDFWriter w(qpdf, outfilename); + if (QUtil::get_env("IN_TESTSUITE")) + { + // For the test suite, uncompress streams and use static + // IDs. + w.setStaticID(true); + w.setStreamDataMode(qpdf_s_uncompress); + } + w.write(); + std::cout << whoami << ": new file written to " << outfilename + << std::endl; + } + catch (std::exception &e) + { + std::cerr << whoami << " processing file " << infilename << ": " + << e.what() << std::endl; + exit(2); + } + + return 0; +} diff --git a/examples/pdf-invert-images.cc b/examples/pdf-invert-images.cc new file mode 100644 index 0000000..997fc37 --- /dev/null +++ b/examples/pdf-invert-images.cc @@ -0,0 +1,170 @@ +#include +#include +#include +#include +#include +#include +#include + +static char const* whoami = 0; + +void usage() +{ + std::cerr << "Usage: " << whoami << " infile.pdf outfile.pdf [in-password]" + << std::endl + << "Invert some images in infile.pdf;" + << " write output to outfile.pdf" << std::endl; + exit(2); +} + +// Derive a class from StreamDataProvider to provide updated stream +// data. The main purpose of using this object is to avoid having to +// allocate memory up front for the objects. A real application might +// use temporary files in order to avoid having to allocate all the +// memory. Here, we're not going to worry about that since the goal +// is really to show how to use this facility rather than to show the +// best possible way to write an image inverter. This class still +// illustrates dynamic creation of the new stream data. +class ImageInverter: public QPDFObjectHandle::StreamDataProvider +{ + public: + virtual ~ImageInverter() + { + } + virtual void provideStreamData(int objid, int generation, + Pipeline* pipeline); + + // Map [obj][gen] = image object + std::map > image_objects; + // Map [obj][gen] = image data + std::map > > image_data; +}; + +void +ImageInverter::provideStreamData(int objid, int generation, + Pipeline* pipeline) +{ + // Use the object and generation number supplied to look up the + // image data. Then invert the image data and write the inverted + // data to the pipeline. + PointerHolder data = this->image_data[objid][generation]; + size_t size = data->getSize(); + unsigned char* buf = data->getBuffer(); + unsigned char ch; + for (size_t i = 0; i < size; ++i) + { + ch = (unsigned char)0xff - buf[i]; + pipeline->write(&ch, 1); + } + pipeline->finish(); +} + +int main(int argc, char* argv[]) +{ + whoami = QUtil::getWhoami(argv[0]); + + // For libtool's sake.... + if (strncmp(whoami, "lt-", 3) == 0) + { + whoami += 3; + } + + if (! ((argc == 3) || (argc == 4))) + { + usage(); + } + + char const* infilename = argv[1]; + char const* outfilename = argv[2]; + char const* password = (argc == 4) ? argv[3] : ""; + + try + { + QPDF qpdf; + qpdf.processFile(infilename, password); + + ImageInverter* inv = new ImageInverter; + PointerHolder p = inv; + + // For each page... + std::vector pages = qpdf.getAllPages(); + for (std::vector::iterator iter = pages.begin(); + iter != pages.end(); ++iter) + { + QPDFObjectHandle& page = *iter; + // Get all images on the page. + std::map images = + page.getPageImages(); + for (std::map::iterator iter = + images.begin(); + iter != images.end(); ++iter) + { + QPDFObjectHandle& image = (*iter).second; + QPDFObjectHandle image_dict = image.getDict(); + QPDFObjectHandle color_space = + image_dict.getKey("/ColorSpace"); + QPDFObjectHandle bits_per_component = + image_dict.getKey("/BitsPerComponent"); + + // For our example, we can only work with images 8-bit + // grayscale images that we can fully decode. Use + // pipeStreamData with a null pipeline to determine + // whether the image is filterable. Directly inspect + // keys to determine the image type. + if (image.pipeStreamData(0, true, false, false) && + color_space.isName() && + bits_per_component.isInteger() && + (color_space.getName() == "/DeviceGray") && + (bits_per_component.getIntValue() == 8)) + { + // Store information about the images based on the + // object and generation number. Recall that a single + // image object may be used more than once. + int objid = image.getObjectID(); + int gen = image.getGeneration(); + if (inv->image_objects[objid].count(gen) == 0) + { + inv->image_objects[objid][gen] = image; + inv->image_data[objid][gen] = image.getStreamData(); + + // Register our stream data provider for this + // stream. Future calls to getStreamData or + // pipeStreamData will use the new + // information. Provide null for both filter + // and decode parameters. Note that this does + // not mean the image data will be + // uncompressed when we write the file. By + // default, QPDFWriter will use /FlateDecode + // for anything that is uncompressed or + // filterable in the input QPDF object, so we + // don't have to deal with it explicitly here. + image.replaceStreamData( + p, + QPDFObjectHandle::newNull(), + QPDFObjectHandle::newNull()); + } + } + } + } + + // Write out a new file + QPDFWriter w(qpdf, outfilename); + if (QUtil::get_env("IN_TESTSUITE")) + { + // For the test suite, uncompress streams and use static + // IDs. + w.setStaticID(true); + } + w.write(); + std::cout << whoami << ": new file written to " << outfilename + << std::endl; + } + catch (std::exception &e) + { + std::cerr << whoami << " processing file " << infilename << ": " + << e.what() << std::endl; + exit(2); + } + + return 0; +} diff --git a/examples/pdf-linearize.c b/examples/pdf-linearize.c new file mode 100644 index 0000000..72703c8 --- /dev/null +++ b/examples/pdf-linearize.c @@ -0,0 +1,80 @@ +/* + * This is an example program to linearize a PDF file using the C API. + */ + +#include +#include +#include +#include + +static char const* whoami = 0; + +static void usage() +{ + fprintf(stderr, "Usage: %s infile infile-password outfile\n", whoami); + exit(2); +} + +int main(int argc, char* argv[]) +{ + char* infile = NULL; + char* password = NULL; + char* outfile = NULL; + qpdf_data qpdf = qpdf_init(); + int warnings = 0; + int errors = 0; + char* p = 0; + + if ((p = strrchr(argv[0], '/')) != NULL) + { + whoami = p + 1; + } + else if ((p = strrchr(argv[0], '\\')) != NULL) + { + whoami = p + 1; + } + else + { + whoami = argv[0]; + } + + if (argc != 4) + { + usage(); + } + + infile = argv[1]; + password = argv[2]; + outfile = argv[3]; + + if (((qpdf_read(qpdf, infile, password) & QPDF_ERRORS) == 0) && + ((qpdf_init_write(qpdf, outfile) & QPDF_ERRORS) == 0)) + { + qpdf_set_static_ID(qpdf, QPDF_TRUE); + qpdf_set_linearization(qpdf, QPDF_TRUE); + qpdf_write(qpdf); + } + while (qpdf_more_warnings(qpdf)) + { + warnings = 1; + printf("warning: %s\n", + qpdf_get_error_full_text(qpdf, qpdf_next_warning(qpdf))); + } + if (qpdf_has_error(qpdf)) + { + errors = 1; + printf("error: %s\n", + qpdf_get_error_full_text(qpdf, qpdf_get_error(qpdf))); + } + qpdf_cleanup(&qpdf); + if (errors) + { + return 2; + } + else if (warnings) + { + return 3; + } + + return 0; +} diff --git a/examples/pdf-mod-info.cc b/examples/pdf-mod-info.cc new file mode 100644 index 0000000..e8defa3 --- /dev/null +++ b/examples/pdf-mod-info.cc @@ -0,0 +1,233 @@ +// Author: Vitaliy Pavlyuk + +#include +#include +#include +#include +#include +#include +#include +#include +#ifdef _WIN32 +#include +#include +#include +#else +#include +#endif + +static char const* version = "1.1"; +static char const* whoami = 0; + +void usage() +{ + std::cerr + << "Usage: " << whoami + << " -in in_file [-out out_file] [-key key [-val val]?]+\n" + << "Modifies/Adds/Removes PDF /Info entries in the in_file\n" + << "and stores the result in out_file\n" + << "Special mode: " << whoami << " --dump file\n" + << "dumps all /Info entries to stdout\n"; + exit(2); +} + +void dumpInfoDict(QPDF& pdf, + std::ostream& os = std::cout, + std::string const& sep = ":\t") +{ + QPDFObjectHandle trailer = pdf.getTrailer(); + if (trailer.hasKey("/Info")) + { + QPDFObjectHandle info = trailer.getKey("/Info"); + std::set keys = info.getKeys(); + for (std::set::const_iterator it = keys.begin(); + keys.end() != it; ++it) + { + QPDFObjectHandle elt = info.getKey(*it); + std::string val; + if (false) {} + else if (elt.isString()) + { + val = elt.getStringValue(); + } + else if (elt.isName()) + { + val = elt.getName(); + } + else // according to PDF Spec 1.5, shouldn't happen + { + val = elt.unparseResolved(); + } + os << it->substr(1) << sep << val << std::endl; // skip '/' + } + } +} + +void pdfDumpInfoDict(char const* fname) +{ + try + { + QPDF pdf; + pdf.processFile(fname); + dumpInfoDict(pdf); + } + catch (std::exception& e) + { + std::cerr << e.what() << std::endl; + exit(2); + } +} + +int main(int argc, char* argv[]) +{ + + bool static_id = false; + std::map Keys; + + whoami = QUtil::getWhoami(argv[0]); + + // For libtool's sake.... + if (strncmp(whoami, "lt-", 3) == 0) + { + whoami += 3; + } + + if ((argc == 2) && (! strcmp(argv[1], "--version")) ) + { + std::cout << whoami << " version " << version << std::endl; + exit(0); + } + if ((argc == 4) && (! strcmp(argv[1], "--dump")) && + (strcmp(argv[2], "-in") == 0) ) + { + QTC::TC("examples", "pdf-mod-info --dump"); + pdfDumpInfoDict(argv[3]); + exit(0); + } + + char* fl_in = 0; + char* fl_out = 0; + std::string cur_key; + + for (int i = 1; i < argc; ++i) + { + if ((! strcmp(argv[i], "-in")) && (++i < argc)) + { + fl_in = argv[i]; + } + else if ((! strcmp(argv[i], "-out")) && (++i < argc)) + { + fl_out = argv[i]; + } + else if (! strcmp(argv[i], "--static-id")) // don't document + { + static_id = true; // this should be used in test suites only + } + else if ((! strcmp(argv[i], "-key")) && (++i < argc)) + { + QTC::TC("examples", "pdf-mod-info -key"); + cur_key = argv[i]; + if (! ((cur_key.length() > 0) && (cur_key[0] == '/'))) + { + cur_key = "/" + cur_key; + } + Keys[cur_key] = ""; + } + else if ((! strcmp(argv[i], "-val")) && (++i < argc)) + { + if (cur_key.empty()) + { + QTC::TC("examples", "pdf-mod-info usage wrong val"); + usage(); + } + QTC::TC("examples", "pdf-mod-info -val"); + Keys[cur_key] = argv[i]; + cur_key.clear(); + } + else + { + QTC::TC("examples", "pdf-mod-info usage junk"); + usage(); + } + } + if (! fl_in) + { + QTC::TC("examples", "pdf-mod-info no in file"); + usage(); + } + if (! fl_out) + { + QTC::TC("examples", "pdf-mod-info in-place"); + fl_out = fl_in; + } + if (Keys.size() == 0) + { + QTC::TC("examples", "pdf-mod-info no keys"); + usage(); + } + + std::string fl_tmp = fl_out; + fl_tmp += ".tmp"; + + try + { + QPDF file; + file.processFile(fl_in); + + QPDFObjectHandle filetrailer = file.getTrailer(); + QPDFObjectHandle fileinfo; + + for (std::map::const_iterator it = + Keys.begin(); Keys.end() != it; ++it) + { + if (! fileinfo.isInitialized()) + { + if (filetrailer.hasKey("/Info")) + { + QTC::TC("examples", "pdf-mod-info has info"); + fileinfo = filetrailer.getKey("/Info"); + } + else + { + QTC::TC("examples", "pdf-mod-info file no info"); + fileinfo = QPDFObjectHandle::newDictionary(); + filetrailer.replaceKey("/Info", fileinfo); + } + } + if (it->second == "") + { + fileinfo.removeKey(it->first); + } + else + { + QPDFObjectHandle elt = fileinfo.newString(it->second); + elt.makeDirect(); + fileinfo.replaceKey(it->first, elt); + } + } + QPDFWriter w(file, fl_tmp.c_str()); + w.setStreamDataMode(qpdf_s_preserve); + w.setLinearization(true); + w.setStaticID(static_id); + w.write(); + } + catch (std::exception& e) + { + std::cerr << e.what() << std::endl; + exit(2); + } + + try + { + (void) unlink(fl_out); + QUtil::os_wrapper("rename " + fl_tmp + " " + std::string(fl_out), + rename(fl_tmp.c_str(), fl_out)); + } + catch (std::exception& e) + { + std::cerr << e.what() << std::endl; + exit(2); + } + + return 0; +} diff --git a/examples/pdf-npages.cc b/examples/pdf-npages.cc new file mode 100644 index 0000000..c62d33d --- /dev/null +++ b/examples/pdf-npages.cc @@ -0,0 +1,55 @@ +#include +#include +#include + +#include +#include + +static char const* whoami = 0; + +void usage() +{ + std::cerr << "Usage: " << whoami << " filename" << std::endl + << "Prints the number of pages in filename" << std::endl; + exit(2); +} + +int main(int argc, char* argv[]) +{ + whoami = QUtil::getWhoami(argv[0]); + + // For libtool's sake.... + if (strncmp(whoami, "lt-", 3) == 0) + { + whoami += 3; + } + + if ((argc == 2) && (strcmp(argv[1], "--version") == 0)) + { + std::cout << whoami << " version 1.3" << std::endl; + exit(0); + } + + if (argc != 2) + { + usage(); + } + char const* filename = argv[1]; + + try + { + QPDF pdf; + pdf.processFile(filename); + QPDFObjectHandle root = pdf.getRoot(); + QPDFObjectHandle pages = root.getKey("/Pages"); + QPDFObjectHandle count = pages.getKey("/Count"); + std::cout << count.getIntValue() << std::endl; + } + catch (std::exception& e) + { + std::cerr << whoami << ": " << e.what() << std::endl; + exit(2); + } + + return 0; +} diff --git a/examples/qtest/bookmarks.test b/examples/qtest/bookmarks.test new file mode 100644 index 0000000..ba8be25 --- /dev/null +++ b/examples/qtest/bookmarks.test @@ -0,0 +1,49 @@ +#!/usr/bin/env perl +require 5.008; +BEGIN { $^W = 1; } +use strict; + +chdir("bookmarks"); + +require TestDriver; + +my $td = new TestDriver('pdf-bookmarks'); + +foreach my $show ("", " -show-open") +{ + foreach my $style ("", " -lines", " -numbers") + { + my $out = "test.$show.$style.out"; + $out =~ s/ //g; + $td->runtest("show:$show, style:$style", + {$td->COMMAND => "pdf-bookmarks $show $style 1.pdf"}, + {$td->FILE => $out, $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + } +} +$td->runtest("no bookmarks", + {$td->COMMAND => "pdf-bookmarks 2.pdf"}, + {$td->STRING => "2.pdf has no bookmarks\n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("bad", + {$td->COMMAND => "pdf-bookmarks 3.pdf"}, + {$td->STRING => "pdf-bookmarks processing file 3.pdf: " . + "3.pdf: not a PDF file\n", + $td->EXIT_STATUS => 2}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("encrypted, targets", + {$td->COMMAND => "pdf-bookmarks -show-targets 4.pdf user"}, + {$td->FILE => "encrypted.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("bookmarks deleted", + {$td->COMMAND => "pdf-bookmarks 5.pdf user"}, + {$td->STRING => "5.pdf has no bookmarks\n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->report(10); diff --git a/examples/qtest/bookmarks/1.pdf b/examples/qtest/bookmarks/1.pdf new file mode 100644 index 0000000..2003cf9 --- /dev/null +++ b/examples/qtest/bookmarks/1.pdf @@ -0,0 +1,1502 @@ +%PDF-1.3 +%¿÷¢þ +%QDF-1.0 + +1 0 obj +<< + /PageLabels << /Nums [ + 0 << /P () >> + 2 << /S /r /St 1 >> + 7 << /P () >> + 9 << /S /r /St 6 >> + 11 << /P () >> + 12 << /S /D /St 2 >> + 15 << /S /D /St 6 >> + 19 << /P () >> + 20 << /S /D /St 12 >> + 22 << /S /D /St 16059 >> + 23 << /S /r /St 50 >> + 29 << /S /r /St 54 >> + ] >> + /Pages 2 0 R + /Type /Catalog + /PageMode /UseOutlines + /Outlines 95 0 R +>> +endobj + +2 0 obj +<< + /Count 30 + /Kids [ + 3 0 R + 4 0 R + 5 0 R + 6 0 R + 7 0 R + 8 0 R + 9 0 R + 10 0 R + 11 0 R + 12 0 R + 13 0 R + 14 0 R + 15 0 R + 16 0 R + 17 0 R + 18 0 R + 19 0 R + 20 0 R + 21 0 R + 22 0 R + 23 0 R + 24 0 R + 25 0 R + 26 0 R + 27 0 R + 28 0 R + 29 0 R + 30 0 R + 31 0 R + 32 0 R + ] + /Type /Pages +>> +endobj + +%% Page 1 +3 0 obj +<< + /Contents 33 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 2 +4 0 obj +<< + /Contents 37 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 3 +5 0 obj +<< + /Contents 39 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 4 +6 0 obj +<< + /Contents 41 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 5 +7 0 obj +<< + /Contents 43 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 6 +8 0 obj +<< + /Contents 45 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 7 +9 0 obj +<< + /Contents 47 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 8 +10 0 obj +<< + /Contents 49 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 9 +11 0 obj +<< + /Contents 51 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 10 +12 0 obj +<< + /Contents 53 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 11 +13 0 obj +<< + /Contents 55 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 12 +14 0 obj +<< + /Contents 57 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 13 +15 0 obj +<< + /Contents 59 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 14 +16 0 obj +<< + /Contents 61 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 15 +17 0 obj +<< + /Contents 63 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 16 +18 0 obj +<< + /Contents 65 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 17 +19 0 obj +<< + /Contents 67 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 18 +20 0 obj +<< + /Contents 69 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 19 +21 0 obj +<< + /Contents 71 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 20 +22 0 obj +<< + /Contents 73 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 21 +23 0 obj +<< + /Contents 75 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 22 +24 0 obj +<< + /Contents 77 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 23 +25 0 obj +<< + /Contents 79 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 24 +26 0 obj +<< + /Contents 81 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 25 +27 0 obj +<< + /Contents 83 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 26 +28 0 obj +<< + /Contents 85 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 27 +29 0 obj +<< + /Contents 87 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 28 +30 0 obj +<< + /Contents 89 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 29 +31 0 obj +<< + /Contents 91 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 30 +32 0 obj +<< + /Contents 93 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Contents for page 1 +33 0 obj +<< + /Length 34 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 0) Tj +ET +endstream +endobj + +34 0 obj +46 +endobj + +35 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +36 0 obj +[ + /PDF + /Text +] +endobj + +%% Contents for page 2 +37 0 obj +<< + /Length 38 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 1) Tj +ET +endstream +endobj + +38 0 obj +46 +endobj + +%% Contents for page 3 +39 0 obj +<< + /Length 40 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 2) Tj +ET +endstream +endobj + +40 0 obj +46 +endobj + +%% Contents for page 4 +41 0 obj +<< + /Length 42 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 3) Tj +ET +endstream +endobj + +42 0 obj +46 +endobj + +%% Contents for page 5 +43 0 obj +<< + /Length 44 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 4) Tj +ET +endstream +endobj + +44 0 obj +46 +endobj + +%% Contents for page 6 +45 0 obj +<< + /Length 46 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 5) Tj +ET +endstream +endobj + +46 0 obj +46 +endobj + +%% Contents for page 7 +47 0 obj +<< + /Length 48 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 6) Tj +ET +endstream +endobj + +48 0 obj +46 +endobj + +%% Contents for page 8 +49 0 obj +<< + /Length 50 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 7) Tj +ET +endstream +endobj + +50 0 obj +46 +endobj + +%% Contents for page 9 +51 0 obj +<< + /Length 52 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 8) Tj +ET +endstream +endobj + +52 0 obj +46 +endobj + +%% Contents for page 10 +53 0 obj +<< + /Length 54 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 9) Tj +ET +endstream +endobj + +54 0 obj +46 +endobj + +%% Contents for page 11 +55 0 obj +<< + /Length 56 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 10) Tj +ET +endstream +endobj + +56 0 obj +47 +endobj + +%% Contents for page 12 +57 0 obj +<< + /Length 58 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 11) Tj +ET +endstream +endobj + +58 0 obj +47 +endobj + +%% Contents for page 13 +59 0 obj +<< + /Length 60 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 12) Tj +ET +endstream +endobj + +60 0 obj +47 +endobj + +%% Contents for page 14 +61 0 obj +<< + /Length 62 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 13) Tj +ET +endstream +endobj + +62 0 obj +47 +endobj + +%% Contents for page 15 +63 0 obj +<< + /Length 64 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 14) Tj +ET +endstream +endobj + +64 0 obj +47 +endobj + +%% Contents for page 16 +65 0 obj +<< + /Length 66 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 15) Tj +ET +endstream +endobj + +66 0 obj +47 +endobj + +%% Contents for page 17 +67 0 obj +<< + /Length 68 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 16) Tj +ET +endstream +endobj + +68 0 obj +47 +endobj + +%% Contents for page 18 +69 0 obj +<< + /Length 70 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 17) Tj +ET +endstream +endobj + +70 0 obj +47 +endobj + +%% Contents for page 19 +71 0 obj +<< + /Length 72 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 18) Tj +ET +endstream +endobj + +72 0 obj +47 +endobj + +%% Contents for page 20 +73 0 obj +<< + /Length 74 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 19) Tj +ET +endstream +endobj + +74 0 obj +47 +endobj + +%% Contents for page 21 +75 0 obj +<< + /Length 76 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 20) Tj +ET +endstream +endobj + +76 0 obj +47 +endobj + +%% Contents for page 22 +77 0 obj +<< + /Length 78 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 21) Tj +ET +endstream +endobj + +78 0 obj +47 +endobj + +%% Contents for page 23 +79 0 obj +<< + /Length 80 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 22) Tj +ET +endstream +endobj + +80 0 obj +47 +endobj + +%% Contents for page 24 +81 0 obj +<< + /Length 82 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 23) Tj +ET +endstream +endobj + +82 0 obj +47 +endobj + +%% Contents for page 25 +83 0 obj +<< + /Length 84 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 24) Tj +ET +endstream +endobj + +84 0 obj +47 +endobj + +%% Contents for page 26 +85 0 obj +<< + /Length 86 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 25) Tj +ET +endstream +endobj + +86 0 obj +47 +endobj + +%% Contents for page 27 +87 0 obj +<< + /Length 88 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 26) Tj +ET +endstream +endobj + +88 0 obj +47 +endobj + +%% Contents for page 28 +89 0 obj +<< + /Length 90 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 27) Tj +ET +endstream +endobj + +90 0 obj +47 +endobj + +%% Contents for page 29 +91 0 obj +<< + /Length 92 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 28) Tj +ET +endstream +endobj + +92 0 obj +47 +endobj + +%% Contents for page 30 +93 0 obj +<< + /Length 94 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 29) Tj +ET +endstream +endobj + +94 0 obj +47 +endobj + +95 0 obj +<< + /Type /Outlines + /First 97 0 R + /Last 96 0 R + /Count 6 +>> +endobj + +96 0 obj +<< + /Type /Outline + /Title (Isis 1 -> 5: /XYZ null null null) + /Parent 95 0 R + /Count 4 + /Prev 97 0 R + /First 98 0 R + /Last 99 0 R + /Dest [ 8 0 R /XYZ null null null ] +>> +endobj + +97 0 obj +<< + /Type /Outline + /Title (Trepak 2 -> 15: /XYZ 66 756 3) + /Parent 95 0 R + /Next 96 0 R + /Dest [ 18 0 R /XYZ 66 756 3 ] +>> +endobj + +98 0 obj +<< + /Type /Outline + /Title (Amanda 1.1 -> 11: /Fit) + /Parent 96 0 R + /Next 99 0 R + /First 100 0 R + /Last 101 0 R + /Count -3 + /Dest [ 14 0 R /Fit ] +>> +endobj + +99 0 obj +<< + /Type /Outline + /Title (Sandy 1.2 -> 13: /FitH 792) + /Parent 96 0 R + /Prev 98 0 R + /First 105 0 R + /Last 106 0 R + /Count 2 + /Dest [ 16 0 R /FitH 792 ] +>> +endobj + +100 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.1 -> 12: /FitV 100) + /Parent 98 0 R + /Next 101 0 R + /First 102 0 R + /Last 103 0 R + /Count -2 + /Dest [ 15 0 R /FitV 100 ] +>> +endobj + +101 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.2 -> 12: /XYZ null null null) + /Parent 98 0 R + /Prev 100 0 R + /First 104 0 R + /Last 104 0 R + /Count 1 + /Dest [ 15 0 R /XYZ null null null ] +>> +endobj + +102 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.1.1 -> 18: /XYZ null null null) + /Parent 100 0 R + /Next 103 0 R + /Dest [ 21 0 R /XYZ null null null ] +>> +endobj + +103 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.1.2 -> 19: /XYZ null null null) + /Parent 100 0 R + /Prev 102 0 R + /Dest [ 22 0 R /XYZ null null null ] +>> +endobj + +104 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.2.1 -> 22: /XYZ null null null) + /Parent 101 0 R + /Dest [ 25 0 R /XYZ null null null ] +>> +endobj + +105 0 obj +<< + /Type /Outline + /Title (Trepsichord 1.2.1 -> 1: /FitR 66 714 180 770) + /Parent 99 0 R + /Next 106 0 R + /Dest [ 4 0 R /FitR 66 714 180 770 ] +>> +endobj + +106 0 obj +<< + /Type /Outline + /Title (Trepsicle 1.2.2 -> 0: /XYZ null null null) + /Parent 99 0 R + /Prev 105 0 R + /Dest [ 3 0 R /XYZ null null null ] +>> +endobj + +xref +0 107 +0000000000 65535 f +0000000025 00000 n +0000000434 00000 n +0000000830 00000 n +0000001035 00000 n +0000001240 00000 n +0000001445 00000 n +0000001650 00000 n +0000001855 00000 n +0000002060 00000 n +0000002265 00000 n +0000002471 00000 n +0000002678 00000 n +0000002885 00000 n +0000003092 00000 n +0000003299 00000 n +0000003506 00000 n +0000003713 00000 n +0000003920 00000 n +0000004127 00000 n +0000004334 00000 n +0000004541 00000 n +0000004748 00000 n +0000004955 00000 n +0000005162 00000 n +0000005369 00000 n +0000005576 00000 n +0000005783 00000 n +0000005990 00000 n +0000006197 00000 n +0000006404 00000 n +0000006611 00000 n +0000006818 00000 n +0000007037 00000 n +0000007140 00000 n +0000007160 00000 n +0000007279 00000 n +0000007338 00000 n +0000007441 00000 n +0000007484 00000 n +0000007587 00000 n +0000007630 00000 n +0000007733 00000 n +0000007776 00000 n +0000007879 00000 n +0000007922 00000 n +0000008025 00000 n +0000008068 00000 n +0000008171 00000 n +0000008214 00000 n +0000008317 00000 n +0000008360 00000 n +0000008463 00000 n +0000008507 00000 n +0000008610 00000 n +0000008654 00000 n +0000008758 00000 n +0000008802 00000 n +0000008906 00000 n +0000008950 00000 n +0000009054 00000 n +0000009098 00000 n +0000009202 00000 n +0000009246 00000 n +0000009350 00000 n +0000009394 00000 n +0000009498 00000 n +0000009542 00000 n +0000009646 00000 n +0000009690 00000 n +0000009794 00000 n +0000009838 00000 n +0000009942 00000 n +0000009986 00000 n +0000010090 00000 n +0000010134 00000 n +0000010238 00000 n +0000010282 00000 n +0000010386 00000 n +0000010430 00000 n +0000010534 00000 n +0000010578 00000 n +0000010682 00000 n +0000010726 00000 n +0000010830 00000 n +0000010874 00000 n +0000010978 00000 n +0000011022 00000 n +0000011126 00000 n +0000011170 00000 n +0000011274 00000 n +0000011318 00000 n +0000011422 00000 n +0000011466 00000 n +0000011570 00000 n +0000011590 00000 n +0000011677 00000 n +0000011873 00000 n +0000012019 00000 n +0000012194 00000 n +0000012377 00000 n +0000012568 00000 n +0000012778 00000 n +0000012947 00000 n +0000013116 00000 n +0000013269 00000 n +0000013438 00000 n +trailer << + /Root 1 0 R + /Size 107 +>> +startxref +13603 +%%EOF diff --git a/examples/qtest/bookmarks/2.pdf b/examples/qtest/bookmarks/2.pdf new file mode 100644 index 0000000..a7e01f9 --- /dev/null +++ b/examples/qtest/bookmarks/2.pdf @@ -0,0 +1,79 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R +>> +startxref +556 +%%EOF diff --git a/examples/qtest/bookmarks/3.pdf b/examples/qtest/bookmarks/3.pdf new file mode 100644 index 0000000..a1c0d95 --- /dev/null +++ b/examples/qtest/bookmarks/3.pdf @@ -0,0 +1 @@ +potato salad diff --git a/examples/qtest/bookmarks/4.pdf b/examples/qtest/bookmarks/4.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9d25f2f7fe54fea87de7f20be66cfdc973ec5e3b GIT binary patch literal 11561 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 +endobj + +2 0 obj +<< + /Count 30 + /Kids [ + 3 0 R + 4 0 R + 5 0 R + 6 0 R + 7 0 R + 8 0 R + 9 0 R + 10 0 R + 11 0 R + 12 0 R + 13 0 R + 14 0 R + 15 0 R + 16 0 R + 17 0 R + 18 0 R + 19 0 R + 20 0 R + 21 0 R + 22 0 R + 23 0 R + 24 0 R + 25 0 R + 26 0 R + 27 0 R + 28 0 R + 29 0 R + 30 0 R + 31 0 R + 32 0 R + ] + /Type /Pages +>> +endobj + +%% Page 1 +3 0 obj +<< + /Contents 33 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 2 +4 0 obj +<< + /Contents 37 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 3 +5 0 obj +<< + /Contents 39 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 4 +6 0 obj +<< + /Contents 41 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 5 +7 0 obj +<< + /Contents 43 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 6 +8 0 obj +<< + /Contents 45 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 7 +9 0 obj +<< + /Contents 47 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 8 +10 0 obj +<< + /Contents 49 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 9 +11 0 obj +<< + /Contents 51 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 10 +12 0 obj +<< + /Contents 53 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 11 +13 0 obj +<< + /Contents 55 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 12 +14 0 obj +<< + /Contents 57 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 13 +15 0 obj +<< + /Contents 59 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 14 +16 0 obj +<< + /Contents 61 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 15 +17 0 obj +<< + /Contents 63 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 16 +18 0 obj +<< + /Contents 65 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 17 +19 0 obj +<< + /Contents 67 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 18 +20 0 obj +<< + /Contents 69 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 19 +21 0 obj +<< + /Contents 71 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 20 +22 0 obj +<< + /Contents 73 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 21 +23 0 obj +<< + /Contents 75 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 22 +24 0 obj +<< + /Contents 77 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 23 +25 0 obj +<< + /Contents 79 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 24 +26 0 obj +<< + /Contents 81 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 25 +27 0 obj +<< + /Contents 83 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 26 +28 0 obj +<< + /Contents 85 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 27 +29 0 obj +<< + /Contents 87 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 28 +30 0 obj +<< + /Contents 89 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 29 +31 0 obj +<< + /Contents 91 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 30 +32 0 obj +<< + /Contents 93 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Contents for page 1 +33 0 obj +<< + /Length 34 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 0) Tj +ET +endstream +endobj + +34 0 obj +46 +endobj + +35 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +36 0 obj +[ + /PDF + /Text +] +endobj + +%% Contents for page 2 +37 0 obj +<< + /Length 38 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 1) Tj +ET +endstream +endobj + +38 0 obj +46 +endobj + +%% Contents for page 3 +39 0 obj +<< + /Length 40 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 2) Tj +ET +endstream +endobj + +40 0 obj +46 +endobj + +%% Contents for page 4 +41 0 obj +<< + /Length 42 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 3) Tj +ET +endstream +endobj + +42 0 obj +46 +endobj + +%% Contents for page 5 +43 0 obj +<< + /Length 44 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 4) Tj +ET +endstream +endobj + +44 0 obj +46 +endobj + +%% Contents for page 6 +45 0 obj +<< + /Length 46 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 5) Tj +ET +endstream +endobj + +46 0 obj +46 +endobj + +%% Contents for page 7 +47 0 obj +<< + /Length 48 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 6) Tj +ET +endstream +endobj + +48 0 obj +46 +endobj + +%% Contents for page 8 +49 0 obj +<< + /Length 50 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 7) Tj +ET +endstream +endobj + +50 0 obj +46 +endobj + +%% Contents for page 9 +51 0 obj +<< + /Length 52 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 8) Tj +ET +endstream +endobj + +52 0 obj +46 +endobj + +%% Contents for page 10 +53 0 obj +<< + /Length 54 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 9) Tj +ET +endstream +endobj + +54 0 obj +46 +endobj + +%% Contents for page 11 +55 0 obj +<< + /Length 56 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 10) Tj +ET +endstream +endobj + +56 0 obj +47 +endobj + +%% Contents for page 12 +57 0 obj +<< + /Length 58 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 11) Tj +ET +endstream +endobj + +58 0 obj +47 +endobj + +%% Contents for page 13 +59 0 obj +<< + /Length 60 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 12) Tj +ET +endstream +endobj + +60 0 obj +47 +endobj + +%% Contents for page 14 +61 0 obj +<< + /Length 62 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 13) Tj +ET +endstream +endobj + +62 0 obj +47 +endobj + +%% Contents for page 15 +63 0 obj +<< + /Length 64 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 14) Tj +ET +endstream +endobj + +64 0 obj +47 +endobj + +%% Contents for page 16 +65 0 obj +<< + /Length 66 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 15) Tj +ET +endstream +endobj + +66 0 obj +47 +endobj + +%% Contents for page 17 +67 0 obj +<< + /Length 68 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 16) Tj +ET +endstream +endobj + +68 0 obj +47 +endobj + +%% Contents for page 18 +69 0 obj +<< + /Length 70 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 17) Tj +ET +endstream +endobj + +70 0 obj +47 +endobj + +%% Contents for page 19 +71 0 obj +<< + /Length 72 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 18) Tj +ET +endstream +endobj + +72 0 obj +47 +endobj + +%% Contents for page 20 +73 0 obj +<< + /Length 74 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 19) Tj +ET +endstream +endobj + +74 0 obj +47 +endobj + +%% Contents for page 21 +75 0 obj +<< + /Length 76 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 20) Tj +ET +endstream +endobj + +76 0 obj +47 +endobj + +%% Contents for page 22 +77 0 obj +<< + /Length 78 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 21) Tj +ET +endstream +endobj + +78 0 obj +47 +endobj + +%% Contents for page 23 +79 0 obj +<< + /Length 80 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 22) Tj +ET +endstream +endobj + +80 0 obj +47 +endobj + +%% Contents for page 24 +81 0 obj +<< + /Length 82 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 23) Tj +ET +endstream +endobj + +82 0 obj +47 +endobj + +%% Contents for page 25 +83 0 obj +<< + /Length 84 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 24) Tj +ET +endstream +endobj + +84 0 obj +47 +endobj + +%% Contents for page 26 +85 0 obj +<< + /Length 86 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 25) Tj +ET +endstream +endobj + +86 0 obj +47 +endobj + +%% Contents for page 27 +87 0 obj +<< + /Length 88 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 26) Tj +ET +endstream +endobj + +88 0 obj +47 +endobj + +%% Contents for page 28 +89 0 obj +<< + /Length 90 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 27) Tj +ET +endstream +endobj + +90 0 obj +47 +endobj + +%% Contents for page 29 +91 0 obj +<< + /Length 92 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 28) Tj +ET +endstream +endobj + +92 0 obj +47 +endobj + +%% Contents for page 30 +93 0 obj +<< + /Length 94 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 29) Tj +ET +endstream +endobj + +94 0 obj +47 +endobj + +95 0 obj +<< + /Type /Outlines + /First 96 0 R + /Last 97 0 R + /Count 6 +>> +endobj + +96 0 obj +<< + /Type /Outline + /Title (Isís 1 -> 5: /XYZ null null null) + /Parent 95 0 R + /Count 4 + /Next 97 0 R + /First 98 0 R + /Last 99 0 R + /Dest [ 8 0 R /XYZ null null null ] +>> +endobj + +97 0 obj +<< + /Type /Outline + /Title (Trepak 2 -> 15: /XYZ 66 756 3) + /Parent 95 0 R + /Prev 96 0 R + /Dest [ 18 0 R /XYZ 66 756 3 ] +>> +endobj + +98 0 obj +<< + /Type /Outline + /Title (Amanda 1.1 -> 11: /Fit) + /Parent 96 0 R + /Next 99 0 R + /First 100 0 R + /Last 101 0 R + /Count -3 + /Dest [ 14 0 R /Fit ] +>> +endobj + +99 0 obj +<< + /Type /Outline + % /Title (Sandy (Sandy [Greek]) 1.2 -> 13: /FitH 792) + /Title + /Parent 96 0 R + /Prev 98 0 R + /First 105 0 R + /Last 106 0 R + /Count 2 + /Dest [ 16 0 R /FitH 792 ] +>> +endobj + +100 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.1 -> 12: /FitV 100) + /Parent 98 0 R + /Next 101 0 R + /First 102 0 R + /Last 103 0 R + /Count -2 + /Dest [ 15 0 R /FitV 100 ] +>> +endobj + +101 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.2 -> 12: /XYZ null null null) + /Parent 98 0 R + /Prev 100 0 R + /First 104 0 R + /Last 104 0 R + /Count 1 + /Dest [ 15 0 R /XYZ null null null ] +>> +endobj + +102 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.1.1 -> 18: /XYZ null null null) + /Parent 100 0 R + /Next 103 0 R + /Dest [ 21 0 R /XYZ null null null ] +>> +endobj + +103 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.1.2 -> 19: /XYZ null null null) + /Parent 100 0 R + /Prev 102 0 R + /Dest [ 22 0 R /XYZ null null null ] +>> +endobj + +104 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.2.1 -> 22: /XYZ null null null) + /Parent 101 0 R + /Dest [ 25 0 R /XYZ null null null ] +>> +endobj + +105 0 obj +<< + /Type /Outline + /Title (Trepsichord 1.2.1 -> 1: /FitR 66 714 180 770) + /Parent 99 0 R + /Next 106 0 R + /Dest [ 4 0 R /FitR 66 714 180 770 ] +>> +endobj + +106 0 obj +<< + /Type /Outline + /Title (Trepsicle 1.2.2 -> 0: /XYZ null null null) + /Parent 99 0 R + /Prev 105 0 R + /Dest [ 3 0 R /XYZ null null null ] +>> +endobj + +107 0 obj + << /Nums [ + 0 << /P () >> + 2 << /S /r /St 1 >> + 7 << /P () >> + 9 << /S /r /St 6 >> + 11 << /P () >> + 12 << /S /D /St 2 >> + 15 << /S /D /St 6 >> + 19 << /P () >> + 20 << /S /D /St 12 >> + 22 << /S /D /St 16059 >> + 23 << /S /r /St 50 >> + 29 << /S /r /St 54 >> + ] >> +endobj + +xref +0 108 +0000000000 65535 f +0000000025 00000 n +0000000145 00000 n +0000000541 00000 n +0000000746 00000 n +0000000951 00000 n +0000001156 00000 n +0000001361 00000 n +0000001566 00000 n +0000001771 00000 n +0000001976 00000 n +0000002182 00000 n +0000002389 00000 n +0000002596 00000 n +0000002803 00000 n +0000003010 00000 n +0000003217 00000 n +0000003424 00000 n +0000003631 00000 n +0000003838 00000 n +0000004045 00000 n +0000004252 00000 n +0000004459 00000 n +0000004666 00000 n +0000004873 00000 n +0000005080 00000 n +0000005287 00000 n +0000005494 00000 n +0000005701 00000 n +0000005908 00000 n +0000006115 00000 n +0000006322 00000 n +0000006529 00000 n +0000006748 00000 n +0000006851 00000 n +0000006871 00000 n +0000006990 00000 n +0000007049 00000 n +0000007152 00000 n +0000007195 00000 n +0000007298 00000 n +0000007341 00000 n +0000007444 00000 n +0000007487 00000 n +0000007590 00000 n +0000007633 00000 n +0000007736 00000 n +0000007779 00000 n +0000007882 00000 n +0000007925 00000 n +0000008028 00000 n +0000008071 00000 n +0000008174 00000 n +0000008218 00000 n +0000008321 00000 n +0000008365 00000 n +0000008469 00000 n +0000008513 00000 n +0000008617 00000 n +0000008661 00000 n +0000008765 00000 n +0000008809 00000 n +0000008913 00000 n +0000008957 00000 n +0000009061 00000 n +0000009105 00000 n +0000009209 00000 n +0000009253 00000 n +0000009357 00000 n +0000009401 00000 n +0000009505 00000 n +0000009549 00000 n +0000009653 00000 n +0000009697 00000 n +0000009801 00000 n +0000009845 00000 n +0000009949 00000 n +0000009993 00000 n +0000010097 00000 n +0000010141 00000 n +0000010245 00000 n +0000010289 00000 n +0000010393 00000 n +0000010437 00000 n +0000010541 00000 n +0000010585 00000 n +0000010689 00000 n +0000010733 00000 n +0000010837 00000 n +0000010881 00000 n +0000010985 00000 n +0000011029 00000 n +0000011133 00000 n +0000011177 00000 n +0000011281 00000 n +0000011301 00000 n +0000011388 00000 n +0000011584 00000 n +0000011730 00000 n +0000011905 00000 n +0000012258 00000 n +0000012449 00000 n +0000012659 00000 n +0000012828 00000 n +0000012997 00000 n +0000013150 00000 n +0000013319 00000 n +0000013484 00000 n +trailer << + /Root 1 0 R + /Size 108 +>> +startxref +13801 +%%EOF + +% 1. Delete page labels +xref +0 1 +0000000107 65535 f +107 1 +0000000000 00001 f +trailer << /Root 1 0 R /Size 108 /Prev 13801 >> +startxref +16059 +%%EOF + +% 2. Delete outlines, reuse page labels. + +107 1 obj + << /Nums [ + 0 << /P () >> + 2 << /S /D /St 1 >> + 7 << /P () >> + 9 << /S /R /St 6 >> + 11 << /P () >> + 12 << /S /r /St 2 >> + 15 << /S /r /St 6 >> + 19 << /P () >> + 20 << /S /R /St 12 >> + 22 << /S /D /St 16059 >> + 23 << /S /r /St 50 >> + 29 << /S /r /St 54 >> + ] >> +endobj + +% Reuse object 1 with the same generation number. Leave outlines +% there pointing to a deleted object. +1 0 obj +<< + /PageLabels 107 1 R + /Pages 2 0 R + /Type /Catalog + /PageMode /UseOutlines + /Outlines 95 0 R +>> +endobj + +xref +0 2 +0000000095 65535 f +0000016648 00000 n +95 13 +0000000096 00001 f +0000000097 00001 f +0000000098 00001 f +0000000099 00001 f +0000000100 00001 f +0000000101 00001 f +0000000102 00001 f +0000000103 00001 f +0000000104 00001 f +0000000105 00001 f +0000000106 00001 f +0000000000 00001 f +0000016227 00001 n +trailer << /Size 108 /Prev 16059 /Root 1 0 R >> +startxref +16768 +%%EOF diff --git a/examples/qtest/bookmarks/encrypted.out b/examples/qtest/bookmarks/encrypted.out new file mode 100644 index 0000000..4ad63b7 --- /dev/null +++ b/examples/qtest/bookmarks/encrypted.out @@ -0,0 +1,11 @@ +[ -> 6 ] Isís 1 -> 5: /XYZ null null null +[ -> 12 ] Amanda 1.1 -> 11: /Fit +[ -> 13 ] Isosicle 1.1.1 -> 12: /FitV 100 +[ -> 19 ] Isosicle 1.1.1.1 -> 18: /XYZ null null null +[ -> 20 ] Isosicle 1.1.1.2 -> 19: /XYZ null null null +[ -> 13 ] Isosicle 1.1.2 -> 12: /XYZ null null null +[ -> 23 ] Isosicle 1.1.2.1 -> 22: /XYZ null null null +[ -> 14 ] Sandy ÷Σανδι÷ 1.2 -> 13: /FitH 792 +[ -> 2 ] Trepsichord 1.2.1 -> 1: /FitR 66 714 180 770 +[ -> 1 ] Trepsicle 1.2.2 -> 0: /XYZ null null null +[ -> 16 ] Trepak 2 -> 15: /XYZ 66 756 3 diff --git a/examples/qtest/bookmarks/test.-show-open.-lines.out b/examples/qtest/bookmarks/test.-show-open.-lines.out new file mode 100644 index 0000000..ea66669 --- /dev/null +++ b/examples/qtest/bookmarks/test.-show-open.-lines.out @@ -0,0 +1,22 @@ +| ++-+ ( ) Trepak 2 -> 15: /XYZ 66 756 3 +| ++-+ (v) Isis 1 -> 5: /XYZ null null null + | + +-+ (>) Amanda 1.1 -> 11: /Fit + | | + | +-+ (>) Isosicle 1.1.1 -> 12: /FitV 100 + | | | + | | +-+ ( ) Isosicle 1.1.1.1 -> 18: /XYZ null null null + | | | + | | +-+ ( ) Isosicle 1.1.1.2 -> 19: /XYZ null null null + | | + | +-+ (v) Isosicle 1.1.2 -> 12: /XYZ null null null + | | + | +-+ ( ) Isosicle 1.1.2.1 -> 22: /XYZ null null null + | + +-+ (v) Sandy 1.2 -> 13: /FitH 792 + | + +-+ ( ) Trepsichord 1.2.1 -> 1: /FitR 66 714 180 770 + | + +-+ ( ) Trepsicle 1.2.2 -> 0: /XYZ null null null diff --git a/examples/qtest/bookmarks/test.-show-open.-numbers.out b/examples/qtest/bookmarks/test.-show-open.-numbers.out new file mode 100644 index 0000000..3680c2d --- /dev/null +++ b/examples/qtest/bookmarks/test.-show-open.-numbers.out @@ -0,0 +1,11 @@ +1. ( ) Trepak 2 -> 15: /XYZ 66 756 3 +2. (v) Isis 1 -> 5: /XYZ null null null +2.1. (>) Amanda 1.1 -> 11: /Fit +2.1.1. (>) Isosicle 1.1.1 -> 12: /FitV 100 +2.1.1.1. ( ) Isosicle 1.1.1.1 -> 18: /XYZ null null null +2.1.1.2. ( ) Isosicle 1.1.1.2 -> 19: /XYZ null null null +2.1.2. (v) Isosicle 1.1.2 -> 12: /XYZ null null null +2.1.2.1. ( ) Isosicle 1.1.2.1 -> 22: /XYZ null null null +2.2. (v) Sandy 1.2 -> 13: /FitH 792 +2.2.1. ( ) Trepsichord 1.2.1 -> 1: /FitR 66 714 180 770 +2.2.2. ( ) Trepsicle 1.2.2 -> 0: /XYZ null null null diff --git a/examples/qtest/bookmarks/test.-show-open..out b/examples/qtest/bookmarks/test.-show-open..out new file mode 100644 index 0000000..46667ef --- /dev/null +++ b/examples/qtest/bookmarks/test.-show-open..out @@ -0,0 +1,11 @@ +( ) Trepak 2 -> 15: /XYZ 66 756 3 +(v) Isis 1 -> 5: /XYZ null null null +(>) Amanda 1.1 -> 11: /Fit +(>) Isosicle 1.1.1 -> 12: /FitV 100 +( ) Isosicle 1.1.1.1 -> 18: /XYZ null null null +( ) Isosicle 1.1.1.2 -> 19: /XYZ null null null +(v) Isosicle 1.1.2 -> 12: /XYZ null null null +( ) Isosicle 1.1.2.1 -> 22: /XYZ null null null +(v) Sandy 1.2 -> 13: /FitH 792 +( ) Trepsichord 1.2.1 -> 1: /FitR 66 714 180 770 +( ) Trepsicle 1.2.2 -> 0: /XYZ null null null diff --git a/examples/qtest/bookmarks/test..-lines.out b/examples/qtest/bookmarks/test..-lines.out new file mode 100644 index 0000000..a6de7db --- /dev/null +++ b/examples/qtest/bookmarks/test..-lines.out @@ -0,0 +1,22 @@ +| ++-+ Trepak 2 -> 15: /XYZ 66 756 3 +| ++-+ Isis 1 -> 5: /XYZ null null null + | + +-+ Amanda 1.1 -> 11: /Fit + | | + | +-+ Isosicle 1.1.1 -> 12: /FitV 100 + | | | + | | +-+ Isosicle 1.1.1.1 -> 18: /XYZ null null null + | | | + | | +-+ Isosicle 1.1.1.2 -> 19: /XYZ null null null + | | + | +-+ Isosicle 1.1.2 -> 12: /XYZ null null null + | | + | +-+ Isosicle 1.1.2.1 -> 22: /XYZ null null null + | + +-+ Sandy 1.2 -> 13: /FitH 792 + | + +-+ Trepsichord 1.2.1 -> 1: /FitR 66 714 180 770 + | + +-+ Trepsicle 1.2.2 -> 0: /XYZ null null null diff --git a/examples/qtest/bookmarks/test..-numbers.out b/examples/qtest/bookmarks/test..-numbers.out new file mode 100644 index 0000000..7ff9e2a --- /dev/null +++ b/examples/qtest/bookmarks/test..-numbers.out @@ -0,0 +1,11 @@ +1. Trepak 2 -> 15: /XYZ 66 756 3 +2. Isis 1 -> 5: /XYZ null null null +2.1. Amanda 1.1 -> 11: /Fit +2.1.1. Isosicle 1.1.1 -> 12: /FitV 100 +2.1.1.1. Isosicle 1.1.1.1 -> 18: /XYZ null null null +2.1.1.2. Isosicle 1.1.1.2 -> 19: /XYZ null null null +2.1.2. Isosicle 1.1.2 -> 12: /XYZ null null null +2.1.2.1. Isosicle 1.1.2.1 -> 22: /XYZ null null null +2.2. Sandy 1.2 -> 13: /FitH 792 +2.2.1. Trepsichord 1.2.1 -> 1: /FitR 66 714 180 770 +2.2.2. Trepsicle 1.2.2 -> 0: /XYZ null null null diff --git a/examples/qtest/bookmarks/test...out b/examples/qtest/bookmarks/test...out new file mode 100644 index 0000000..31a1cf4 --- /dev/null +++ b/examples/qtest/bookmarks/test...out @@ -0,0 +1,11 @@ +Trepak 2 -> 15: /XYZ 66 756 3 +Isis 1 -> 5: /XYZ null null null +Amanda 1.1 -> 11: /Fit +Isosicle 1.1.1 -> 12: /FitV 100 +Isosicle 1.1.1.1 -> 18: /XYZ null null null +Isosicle 1.1.1.2 -> 19: /XYZ null null null +Isosicle 1.1.2 -> 12: /XYZ null null null +Isosicle 1.1.2.1 -> 22: /XYZ null null null +Sandy 1.2 -> 13: /FitH 792 +Trepsichord 1.2.1 -> 1: /FitR 66 714 180 770 +Trepsicle 1.2.2 -> 0: /XYZ null null null diff --git a/examples/qtest/create.test b/examples/qtest/create.test new file mode 100644 index 0000000..bcdac25 --- /dev/null +++ b/examples/qtest/create.test @@ -0,0 +1,29 @@ +#!/usr/bin/env perl +require 5.008; +use warnings; +use strict; + +chdir("create") or die "chdir testdir failed: $!\n"; + +require TestDriver; + +cleanup(); + +my $td = new TestDriver('create'); + +$td->runtest("create a simple PDF", + {$td->COMMAND => "pdf-create a.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + +$td->runtest("check", + {$td->FILE => "a.pdf"}, + {$td->FILE => "orange-square.pdf"}); + +cleanup(); + +$td->report(2); + +sub cleanup +{ + unlink "a.pdf"; +} diff --git a/examples/qtest/create/orange-square.pdf b/examples/qtest/create/orange-square.pdf new file mode 100644 index 0000000000000000000000000000000000000000..28fb47cd47e08ae5485cc17c1e5e8b18a1791045 GIT binary patch literal 1088 zcmah|&ubGw6fUg+SuCiv7e#mo@ucpr>}CTs*d$G@8k;5&g|>(3W}0r(m37 z2R(u=#^7GPK2&V?p&q9m4DH!7;pVl(m$R>PiTv1DVgyco zDDGaBc5i*^1mk-*gVFJYpX0-ChBn~h7S83M-@$~05HZ;t31}pee4D!Klsh&7dCEhg zj@JPBq2o<@fzuD%CrzAs5l32GTjG%ggdq6e(SW!2Y)_sW8agu! zFE4$2@pbIEQGM{A^`~9>U79|oW80_8k^*T-Ib2{GhHk(z9L7{sTP*PUF%#`F5K}cY z|3FMvGRI;m3-8xJo?#uy<34d*w45+~g)wpaqU&09o=`}m%L_0+p{ps?$Y>^VwKD09 luIX0F)XbEwTe_Cc7}=9E7KQr*PJAB8V5y3fOis-frGHB1Jre)` literal 0 HcmV?d00001 diff --git a/examples/qtest/double-page-size.test b/examples/qtest/double-page-size.test new file mode 100644 index 0000000..0c4a08b --- /dev/null +++ b/examples/qtest/double-page-size.test @@ -0,0 +1,32 @@ +#!/usr/bin/env perl +require 5.008; +BEGIN { $^W = 1; } +use strict; + +chdir("double-page-size") or die "chdir testdir failed: $!\n"; + +require TestDriver; + +my $td = new TestDriver('double-page-size'); + +cleanup(); + +$td->runtest("double page size", + {$td->COMMAND => "pdf-double-page-size in.pdf a.pdf"}, + {$td->STRING => + "pdf-double-page-size: new file written to a.pdf\n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "out.pdf"}); + +cleanup(); + +$td->report(2); + +sub cleanup +{ + unlink 'a.pdf'; +} diff --git a/examples/qtest/double-page-size/in.pdf b/examples/qtest/double-page-size/in.pdf new file mode 100644 index 0000000..84f252b --- /dev/null +++ b/examples/qtest/double-page-size/in.pdf @@ -0,0 +1,55 @@ +%PDF-1.3 +%¿÷¢þ +1 0 obj +<< /Pages 2 0 R /Type /Catalog >> +endobj +2 0 obj +<< /Count 2 /Kids [ 3 0 R 4 0 R ] /Type /Pages >> +endobj +3 0 obj +<< /Contents 5 0 R /MediaBox [ 0 0 612 792 ] /Parent 2 0 R /Resources << /Font << /F1 6 0 R >> /ProcSet 7 0 R >> /Type /Page >> +endobj +4 0 obj +<< /Contents 8 0 R /MediaBox [ 0 0 612 792 ] /Parent 2 0 R /Resources << /Font << /F1 6 0 R >> /ProcSet 7 0 R >> /Type /Page >> +endobj +5 0 obj +<< /Length 44 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj +6 0 obj +<< /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> +endobj +7 0 obj +[ /PDF /Text ] +endobj +8 0 obj +<< /Length 43 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Salad) Tj +ET +endstream +endobj +xref +0 9 +0000000000 65535 f +0000000015 00000 n +0000000064 00000 n +0000000129 00000 n +0000000272 00000 n +0000000415 00000 n +0000000508 00000 n +0000000615 00000 n +0000000645 00000 n +trailer << /Root 1 0 R /Size 9 /ID [<071a6499182be9cfc990b11d0c4e5bc0><90dbb2f2f000af76d1107187b0e00349>] >> +startxref +737 +%%EOF diff --git a/examples/qtest/double-page-size/out.pdf b/examples/qtest/double-page-size/out.pdf new file mode 100644 index 0000000..e27706c --- /dev/null +++ b/examples/qtest/double-page-size/out.pdf @@ -0,0 +1,69 @@ +%PDF-1.3 +%¿÷¢þ +1 0 obj +<< /Pages 2 0 R /Type /Catalog >> +endobj +2 0 obj +<< /Count 2 /Kids [ 3 0 R 4 0 R ] /Type /Pages >> +endobj +3 0 obj +<< /Contents [ 5 0 R 6 0 R ] /MediaBox [ 0.00 0.00 1224.00 1584.00 ] /Parent 2 0 R /Resources << /Font << /F1 7 0 R >> /ProcSet 8 0 R >> /Type /Page >> +endobj +4 0 obj +<< /Contents [ 9 0 R 10 0 R ] /MediaBox [ 0.00 0.00 1224.00 1584.00 ] /Parent 2 0 R /Resources << /Font << /F1 7 0 R >> /ProcSet 8 0 R >> /Type /Page >> +endobj +5 0 obj +<< /Length 15 >> +stream +2 0 0 2 0 0 cm +endstream +endobj +6 0 obj +<< /Length 44 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj +7 0 obj +<< /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> +endobj +8 0 obj +[ /PDF /Text ] +endobj +9 0 obj +<< /Length 15 >> +stream +2 0 0 2 0 0 cm +endstream +endobj +10 0 obj +<< /Length 43 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Salad) Tj +ET +endstream +endobj +xref +0 11 +0000000000 65535 f +0000000015 00000 n +0000000064 00000 n +0000000129 00000 n +0000000296 00000 n +0000000464 00000 n +0000000528 00000 n +0000000621 00000 n +0000000728 00000 n +0000000758 00000 n +0000000822 00000 n +trailer << /Root 1 0 R /Size 11 /ID [<071a6499182be9cfc990b11d0c4e5bc0><31415926535897932384626433832795>] >> +startxref +915 +%%EOF diff --git a/examples/qtest/invert-images.test b/examples/qtest/invert-images.test new file mode 100644 index 0000000..0dc15a2 --- /dev/null +++ b/examples/qtest/invert-images.test @@ -0,0 +1,32 @@ +#!/usr/bin/env perl +require 5.008; +BEGIN { $^W = 1; } +use strict; + +chdir("invert-images") or die "chdir testdir failed: $!\n"; + +require TestDriver; + +my $td = new TestDriver('invert-images'); + +cleanup(); + +$td->runtest("double page size", + {$td->COMMAND => "pdf-invert-images in.pdf a.pdf"}, + {$td->STRING => + "pdf-invert-images: new file written to a.pdf\n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "out.pdf"}); + +cleanup(); + +$td->report(2); + +sub cleanup +{ + unlink 'a.pdf'; +} diff --git a/examples/qtest/invert-images/in.pdf b/examples/qtest/invert-images/in.pdf new file mode 100644 index 0000000000000000000000000000000000000000..30a164943d1af9eb706732f32b34ebfffc7b842c GIT binary patch literal 4328 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 literal 0 HcmV?d00001 diff --git a/examples/qtest/invert-images/out.pdf b/examples/qtest/invert-images/out.pdf new file mode 100644 index 0000000000000000000000000000000000000000..cd3c59153e35f90458864ed95de42fff85c966fd GIT binary patch literal 4328 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"linearize", + {$td->COMMAND => "pdf-linearize input.pdf '' a.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + +$td->runtest("check", + {$td->COMMAND => "$qpdf --check a.pdf"}, + {$td->FILE => "check.out", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +cleanup(); + +$td->report(2); + +sub cleanup +{ + unlink "a.pdf"; +} diff --git a/examples/qtest/linearize/check.out b/examples/qtest/linearize/check.out new file mode 100644 index 0000000..af887be --- /dev/null +++ b/examples/qtest/linearize/check.out @@ -0,0 +1,6 @@ +checking a.pdf +PDF Version: 1.3 +File is not encrypted +File is linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/examples/qtest/linearize/input.pdf b/examples/qtest/linearize/input.pdf new file mode 100644 index 0000000..a7e01f9 --- /dev/null +++ b/examples/qtest/linearize/input.pdf @@ -0,0 +1,79 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R +>> +startxref +556 +%%EOF diff --git a/examples/qtest/mod-info.test b/examples/qtest/mod-info.test new file mode 100644 index 0000000..145bf13 --- /dev/null +++ b/examples/qtest/mod-info.test @@ -0,0 +1,100 @@ +#!/usr/bin/env perl +require 5.008; +BEGIN { $^W = 1; } +use strict; +use File::Copy; + +chdir("mod-info"); + +require TestDriver; + +my $td = new TestDriver('pdf-mod-info'); + +my $prg = "pdf-mod-info"; +my $qpdf = $ENV{'QPDF_BIN'} or die; + +cleanup(); + +$td->runtest("usage #1", + {$td->COMMAND => "$prg -in target.pdf"}, + {$td->FILE => "usage.out", + $td->EXIT_STATUS => 2}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("usage #2", + {$td->COMMAND => "$prg -key abc -val def"}, + {$td->FILE => "usage.out", + $td->EXIT_STATUS => 2}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("usage #3", + {$td->COMMAND => "$prg -key abc -val def abc"}, + {$td->FILE => "usage.out", + $td->EXIT_STATUS => 2}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("usage #4", + {$td->COMMAND => "$prg -in source1.pdf -key date -val 01/01/01 -val 12/12/12"}, + {$td->FILE => "usage.out", + $td->EXIT_STATUS => 2}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("dump #1", + {$td->COMMAND => "$prg --dump -in files/source1.pdf"}, + {$td->FILE => "dump.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("dump #2", + {$td->COMMAND => "$prg --dump -in files/no-info.pdf"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("dump #3", + {$td->COMMAND => "$prg --dump -in files/empty-info.pdf"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); + +run_and_cmp("modify Subject", + "$prg -in files/source1.pdf -out out.pdf -key Subject " . + "-val \"Export Business\"", + "", "out.pdf", "files/1.qdf"); + +run_and_cmp("add Subject, remove Producer, modify CreationDate", + "$prg -in files/source2.pdf -out out.pdf -key Subject " . + "-val \"Tammlin\" -key Producer -key CreationDate -val 12/12", + "", "out.pdf", "files/2.qdf"); + +run_and_cmp("add Subject (empty-info file)", + "$prg -in files/empty-info.pdf -out out.pdf -key Subject " . + "-val Tammlin", + "", "out.pdf", "files/3.qdf"); + +copy("files/no-info.pdf", "no-info.pdf") or die "can't copy no-info: $!"; +run_and_cmp("in-place Producer added (no-info file)", + "$prg -in no-info.pdf -key Producer -val \"Obivan Kinobi\"", + "", "no-info.pdf", "files/4.qdf"); + +cleanup(); + +$td->report(15); + +sub cleanup +{ + unlink (<*.pdf>); +} + +sub run_and_cmp +{ + my ($dsc, $cmd, $out, $fout, $fexp) = @_; + $td->runtest($dsc, + {$td->COMMAND => "$cmd --static-id"}, + {$td->STRING => $out, + $td->EXIT_STATUS => 0}); + $td->runtest("$dsc output", + {$td->COMMAND => "$qpdf --static-id" . + " --no-original-object-ids -qdf $fout -"}, + {$td->FILE => $fexp, + $td->EXIT_STATUS => 0}); +} diff --git a/examples/qtest/mod-info/dump.out b/examples/qtest/mod-info/dump.out new file mode 100644 index 0000000..a453f9d --- /dev/null +++ b/examples/qtest/mod-info/dump.out @@ -0,0 +1,11 @@ +Author: Yours Truly +ContentTemperature: 100F +CreationDate: D:20040212104653-05'00' +Creator: Adobe Acrobat 6.0 +FormerlyKnownAs: target/branch/leaf/leaf.pdf +Keywords: 40, 128, public, encryption, ignition, primarily prime +ModDate: D:20040212112832-05'00' +Producer: Adobe Acrobat 6.0 Image Conversion Plug-in +Subject: Of The Matter +Title: My New Car Title +VeryImportantNote: pordofor stands for portable document format diff --git a/examples/qtest/mod-info/files/1.qdf b/examples/qtest/mod-info/files/1.qdf new file mode 100644 index 0000000000000000000000000000000000000000..2b63f6ae0ab6f2ba3eb6dc5eef1a2eb58a1e5dde GIT binary patch literal 6842 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 +endobj + +2 0 obj +<< + /CreationDate (12/12) + /Creator (Writer) + /ModDate (D:20041221113239-05'00') + /Subject (Tammlin) +>> +endobj + +3 0 obj +<< + /Subtype /XML + /Type /Metadata + /Length 4 0 R +>> +stream + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +endstream +endobj + +%QDF: ignore_newline +4 0 obj +3154 +endobj + +5 0 obj +<< + /Count 1 + /Kids [ + 6 0 R + ] + /Type /Pages +>> +endobj + +%% Page 1 +6 0 obj +<< + /Annots 7 0 R + /Contents 8 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 5 0 R + /Resources 10 0 R + /Type /Page +>> +endobj + +7 0 obj +[ + 11 0 R +] +endobj + +%% Contents for page 1 +8 0 obj +<< + /Length 9 0 R +>> +stream +0 w +q 0 -0.1 612.1 792.1 re W* n +q 0 0 0 rg +BT +90.1 615.3 Td /F1 80 Tf (abcd) Tj +151.2 0 Td (-) Tj +26.6 0 Td (efghjk-) Tj +ET +Q +q 0 0 0 rg +BT +90.1 504.8 Td /F1 80 Tf (mn) Tj +102.4 0 Td ( ) Tj +20 0 Td (o) Tj +40.1 0 Td (p) Tj +39.9 0 Td (-) Tj +26.8 0 Td (q) Tj +ET +Q +q 0 0 0 rg +BT +90.1 394.3 Td /F1 80 Tf (rs) Tj +58.7 0 Td (tu) Tj +62.1 0 Td (v) Tj +40.1 0 Td (w) Tj +57.8 0 Td ( ) Tj +20.1 0 Td (xyz) Tj +ET +Q +Q +endstream +endobj + +9 0 obj +404 +endobj + +10 0 obj +<< + /Font 12 0 R + /ProcSet [ + /PDF + ] +>> +endobj + +11 0 obj +<< + /APEX:Id (353) + /APEX:Label (1) + /APEX:LabelAp 13 0 R + /F 4 + /Rect [ + 63.461945 + 339.112457 + 525.003418 + 700.653259 + ] + /Subtype /APEX:Zone + /Type /Annot +>> +endobj + +12 0 obj +<< + /F1 15 0 R +>> +endobj + +13 0 obj +<< + /BBox [ + 0.0 + 0.0 + 9.199997 + 12.399994 + ] + /FormType 1 + /Resources << + /Font 16 0 R + /ProcSet [ + /PDF + /Text + ] + >> + /Subtype /Form + /Type /XObject + /Length 14 0 R +>> +stream +0 0 1 rg +0 0 9.2 12.4 re +f +BT +1 g +/LABELFONT 12 Tf +1 2.32 TD +(1)Tj +ET +endstream +endobj + +14 0 obj +70 +endobj + +15 0 obj +<< + /BaseFont /NimbusRomanNo9L-Regu + /FirstChar 0 + /FontDescriptor 17 0 R + /LastChar 255 + /Subtype /Type1 + /ToUnicode 18 0 R + /Type /Font + /Widths [ + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 250 + 333 + 408 + 500 + 500 + 833 + 778 + 333 + 333 + 333 + 500 + 564 + 250 + 333 + 250 + 278 + 500 + 500 + 500 + 500 + 500 + 500 + 500 + 500 + 500 + 500 + 278 + 278 + 564 + 564 + 564 + 444 + 921 + 722 + 662 + 667 + 718 + 611 + 556 + 722 + 715 + 329 + 389 + 700 + 611 + 883 + 722 + 722 + 552 + 722 + 662 + 556 + 611 + 722 + 722 + 944 + 722 + 722 + 611 + 333 + 278 + 333 + 469 + 500 + 333 + 444 + 500 + 444 + 500 + 444 + 333 + 500 + 500 + 278 + 278 + 500 + 278 + 778 + 500 + 500 + 500 + 500 + 344 + 389 + 278 + 500 + 500 + 722 + 500 + 500 + 444 + 480 + 200 + 480 + 541 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 333 + 500 + 500 + 167 + 500 + 500 + 500 + 500 + 180 + 444 + 500 + 333 + 333 + 556 + 556 + 0 + 500 + 500 + 500 + 250 + 0 + 453 + 350 + 333 + 444 + 444 + 500 + 1000 + 1000 + 0 + 444 + 0 + 333 + 333 + 333 + 333 + 333 + 333 + 333 + 333 + 0 + 333 + 333 + 0 + 333 + 333 + 333 + 1000 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 889 + 0 + 276 + 0 + 0 + 0 + 0 + 611 + 722 + 889 + 310 + 0 + 0 + 0 + 0 + 0 + 667 + 0 + 0 + 0 + 278 + 0 + 0 + 278 + 500 + 722 + 500 + 0 + 0 + 0 + 0 + ] +>> +endobj + +16 0 obj +<< + /LABELFONT 20 0 R +>> +endobj + +17 0 obj +<< + /Ascent 1098 + /CapHeight 1098 + /Descent -281 + /Flags 4 + /FontBBox [ + -168 + -281 + 1030 + 1098 + ] + /FontFile 21 0 R + /FontName /NimbusRomanNo9L-Regu + /ItalicAngle 0 + /StemV 80 + /Type /FontDescriptor +>> +endobj + +18 0 obj +<< + /Length 19 0 R +>> +stream +/CIDInit /ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo << + /Registry (Adobe) + /Ordering (UCS) + /Supplement 0 +>> def +/CMapName /Adobe-Identity-UCS def +/CMapType 2 def +1 begincodespacerange +<00> +endcodespacerange +100 beginbfchar +<20> <00A0> +<21> <0021> +<22> <0022> +<23> <0023> +<24> <0024> +<25> <0025> +<26> <0026> +<27> <2019> +<28> <0028> +<29> <0029> +<2A> <002A> +<2B> <002B> +<2C> <002C> +<2D> <00AD> +<2E> <002E> +<2F> <002F> +<30> <0030> +<31> <0031> +<32> <0032> +<33> <0033> +<34> <0034> +<35> <0035> +<36> <0036> +<37> <0037> +<38> <0038> +<39> <0039> +<3A> <003A> +<3B> <003B> +<3C> <003C> +<3D> <003D> +<3E> <003E> +<3F> <003F> +<40> <0040> +<41> <0041> +<42> <0042> +<43> <0043> +<44> <0044> +<45> <0045> +<46> <0046> +<47> <0047> +<48> <0048> +<49> <0049> +<4A> <004A> +<4B> <004B> +<4C> <004C> +<4D> <004D> +<4E> <004E> +<4F> <004F> +<50> <0050> +<51> <0051> +<52> <0052> +<53> <0053> +<54> <0054> +<55> <0055> +<56> <0056> +<57> <0057> +<58> <0058> +<59> <0059> +<5A> <005A> +<5B> <005B> +<5C> <005C> +<5D> <005D> +<5E> <005E> +<5F> <005F> +<60> <2018> +<61> <0061> +<62> <0062> +<63> <0063> +<64> <0064> +<65> <0065> +<66> <0066> +<67> <0067> +<68> <0068> +<69> <0069> +<6A> <006A> +<6B> <006B> +<6C> <006C> +<6D> <006D> +<6E> <006E> +<6F> <006F> +<70> <0070> +<71> <0071> +<72> <0072> +<73> <0073> +<74> <0074> +<75> <0075> +<76> <0076> +<77> <0077> +<78> <0078> +<79> <0079> +<7A> <007A> +<7B> <007B> +<7C> <007C> +<7D> <007D> +<7E> <007E> + <00A1> + <00A2> + <00A3> + <2215> + <00A5> +endbfchar +49 beginbfchar + <0192> + <00A7> + <00A4> + <0027> + <201C> + <00AB> + <2039> + <203A> + + + <2013> + <2020> + <2021> + <2219> + <00B6> + <2022> + <201A> + <201E> + <201D> + <00BB> + <2026> + <2030> + <00BF> + <0060> + <00B4> + <02C6> + <02DC> + <02C9> + <02D8> + <02D9> + <00A8> + <02DA> + <00B8> + <02DD> + <02DB> + <02C7> + <2014> + <00C6> + <00AA> + <0141> + <00D8> + <0152> + <00BA> + <00E6> + <0131> + <0142> + <00F8> + <0153> + <00DF> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +endstream +endobj + +19 0 obj +2311 +endobj + +20 0 obj +<< + /BaseFont /Courier-Oblique + /Subtype /Type1 + /Type /Font +>> +endobj + +21 0 obj +<< + /Length1 1346 + /Length2 145230 + /Length3 0 + /Length 22 0 R +>> +stream +%!PS-AdobeFont-1.0: NimbusRomanNo9L-Regu 1.06 +%%Title: NimbusRomanNo9L-Regu +%%CreationDate: Thu Aug 5 23:43:46 2004 +%%Creator: frob +%%DocumentSuppliedResources: font NimbusRomanNo9L-Regu +% Copyright (URW)++,Copyright 1999 by (URW)++ Design & Development; Cyri +% Generated by FontForge 20040703 (http://fontforge.sf.net/) +%%EndComments +FontDirectory/NimbusRomanNo9L-Regu known{/NimbusRomanNo9L-Regu findfont dup/UniqueID known{dup +/UniqueID get 4162059 eq exch/FontType get 1 eq and}{pop false}ifelse +{save true}{false}ifelse}{false}ifelse +11 dict begin +/FontType 1 def +/FontMatrix [0.001 0 0 0.001 0 0 ]readonly def +/FontName /NimbusRomanNo9L-Regu def +/FontBBox {-168 -281 1031 1098 }readonly def +/UniqueID 4162059 def +/PaintType 0 def +/FontInfo 10 dict dup begin + /version (1.06) readonly def + /Notice (Copyright \050URW\051++,Copyright 1999 by \050URW\051++ Design & Development; Cyrillic glyphs added by Valek Filippov \050C\051 2001; Numero, infinity and Omega made by Dmitry 40in \050C\051 2001) readonly def + /FullName (Nimbus Roman No9 L Regular) readonly def + /FamilyName (Nimbus Roman No9 L) readonly def + /Weight (Regular) readonly def + /FSType 0 def + /ItalicAngle 0 def + /isFixedPitch false def + /UnderlinePosition -100 def + /UnderlineThickness 50 def +end readonly def +/Encoding StandardEncoding def +currentdict end +currentfile eexec +o4…>£ö‰à‡Ã¬`0˜šB‰ÆCTà£ÿ&5. + +Svî‹ik úˆœkA¦ ëÙ£¨7ñ¢F`üôƒ$àyJU4ú¢ßÊÀºNLŸõ·^¼§“ +ÈVöٍ.èÐ+´¢Y¼ÂҁÒ4Û³\ºs‰mã'v­Í½=@R3GIJ¯z°ÉvŸô®N1€§ÍŒdð²Õ°¾©f~žð ÷e:^ŒÑ/’:0部Ï(}æÄl^?ô¬ˆ¬–2¾-ª*Йu3KÛ65g*ß Jµ(Ø]»<ßMÓ¶»Áͺ﷔D®ŽÖcqÙÀ|ìÿùdyPËâFb°ß+h;p#Š]Ô +Õ#!v'«Ë…ˆÕ:m(Üî^¾ä^¹Û ç ïòô±mzTG´ó9‹~^¥ê@ªs?;†V¤lñ1ë ¢¹`vóQ¦L¼aïÔÒXîìj¶p¤¾¸ô›êÌâ†`Mïÿ `ÔjïýQhì|?M'ÒÑÇUHÑêäçj=¶Î^ý+t‰í½òLÒ©u¿¸ÖŠ$£ÇV´®Z‹ ýÆ8=˜Ýh^I|ùR2Ž‘…š•šiTéMBí"² Ï,0\ ïm`Æ3ßõi6ç\8s'‘kÂ##Dcá{sZû«;B–0–d€±ßi÷aÚûwÿ¯)ÛòÇÀTSSBõ0Cß]G3gª9dò¸gƒ%ʞà[ þÏ;]éµqÍwº¯êª¤{.Õᥠ_ºHˆž{æÌd\RŒUœ“yx5E<ózμ<©üˆìÅ÷ <ÞÉÕWÄ©`:§"b¶AYÜ·ÝqUÇO¥¿+¡—DÏr;Œ«œe‚ÎÕt ’¨Ü(³¶9üÌÌppæÎ¯`¤™ÑÌ"¯æù¨=²Cð÷¬ÔcÚ¿›UsÙuIµøiä½2$ï¹š¶»Àz$ÍØl†¥b˜‰Áñ,®õªy:a§C8®yÖåtÕnVfíEWP$ÎuÏÜZÀQlÅ!ê^e¿¬ÂQÇ×äÒ¿¾Š´ªµ][«<Æíh Þë;=‰±¸Z*䀵Y— ϓ ªårHø þ¼w0;lÞÉý.ðXÜP†Ãú­Ooð)'ÛQ¬R9ag–èù}„bºwvlTkÖ¥*Ì¢Ò÷€³Îó!BuÅ]‹ø×&NXøwG~¨R‚Å_P9*6'õÅ‚fTã™Ð/f¤L©C¢òÉц2ÇÅÿ1aš§qõ¥rýÄ~׈ò:˜±«^¸’º£T+É*/ÓS´ÞOÛ/›VÔÅFçsÚsl­~Øè9½k_%SX¤V3•RC>ÊEpïòº¥ÔÃBãpö{ŠÚ‰âÏàØ#Ùb(¦Ñm)È©Ä̺48Ń/]=MçNEð¥àgÓE.ú+¬ –ëÀéb³(®pp–p9n¦L¢þŽ¼Êt •Dæ3—øÒ÷(Wӕě­G?ìó5a^…oÇn‰7ÝÎÁSßÚáÃ^c•ÁͶ[Gêcþ-k™yöê…,g»uuy6ì£Çæý‚:ñ̔S$Ùe¡TOáˑŠ@ü0;7¯ÁŽõFZƒžÎÀ·îÀÞíq®Sš°`ÓîòrÖ÷°ƒu,–²š£!B>á¢̄ÎáçÀ¢7c"ñ\·©#´"y½8¥ùK5FyéÙBÄ ¤ŸÆvÁÖ]t]%w¥ÁhʟÚdúˆ/­º‡—›m¤³KËk.H‚W ¾I Åüvd߀¥ý 4šæ>ªÌËã!ßÒïn&}¤‘%—•Ñ«;µwCHBbp6ÔB¿¢ÜJ­¹¿ÏæF·bG—¼Ùß^´š¤fšÌ@½Î^ut[”7Ĕ“Í5N?>žf£ÚßÃÕ«@ã‚€ Q֑# € ›Ø‘ú’ˆÍØ5 +Iè#"Lbûþ:çT­Ì£*fë}tÊËý‚àgxÀ½yW¨ŸGûŸñxVVÀF0ɘévǦ>—;ê 4ò¯ÖwǁÅsž¢ßOüðEó©ÃÌhiåEº¢/17ñ¥±²YY$ãd5x:¥8/); +¨D%Ø¢(צ†Sù¶s¹bø¥ w¹b!“ô«GP7:8Þ<Ü󖯇PÔ¬ÕTîÖ{ÿ½Î“ú|¦Š·<Ê2&ÇäR†Þ‘`°†û?l0T¢é%uNùæ~ +ÓØ-°‰ +P–Ѽ+IEs›´PŒ›7f†’ª&ûµÍÿ8òùؽO]ŠÐè՞²ÜV}_ˆ2ôR•5‡É:8`”ĺ1îÅÅIŽ^Å8 £‰Rs¹L‰‹˜8¶ÞÏn$û4ÉüWf“î=p.‰ Õz|ݍìçU¸­¤ƒrî½~Hø Ö&žn¤×òãT¹<•å³Eɓì‘ÏßoƒmWàô‰ Œ2‹U÷¨_íя¨ÅÊï>:Yúož;-kGˆû¹p#Ùõçœd¬Ý¢0Že³E£¥Ñv®®0ÎFä!øNì˜]ˆì¹œ ë)Ā8”êéýó‚ç¬8ìÝzKú•¶ËG¢’7uÉôpž©$ú|kS5vβâŒR*ùÔé±ðÄ°…Ê?’pIѼªúT³Ÿ²£úM6%ט̛ þ´:Q5·*¤ÚÒ¸$ü»ÓHGJ`±Œ1°ÒWîcÌàá¹çm]¸E^ÃCH¦¥\¯Š ?Ó"b±7Z¾zu‡$+ÔLqJèÁ9‚²ôŸvu ·:!¥ô¶§ !–·¹¬cÎa̧gb‘¤›Á²…#~Ýjq­ÿ&2Ѻ+>·4!b$Ú3-Fl§˜'‡±÷{yݩ皟ÇÞSåÆ#\sM|Ÿ›X9©›;wQªÇ¡† iÂ>фznP¬zò1ôaSÒ`-W̉ fõÞTo¶°¸À õë0ï~gXÆÏ~ÅFÜd(Ù*áI][Æö;ª´êù@»’°ìMÁº‚R‰1ùBös½üZ¬ÈÛÊÎ Ô hÐc`S‘^3|u›¸ædôÖ¨É'©ùûÀQ»®ò$ò܄µ“4g»x ҆ƒxßOú½'´O4žþ¾ùI¬–33:Šáº’d÷€‡Ý½JÞ^KÍÞÝdí° $*¥-[P„³p÷7.ˆkó&%„wÂ$RØÝ¥‚çȤ'ÓÑ7NôËñ9­–‰jzìœd·9þ'ÒÞ Y)g)#…£âQÊ@ÛñÿíŒ_ Üå5`O)BÊÑVÕr YoµµçiÞ¾³b»lŸÄ ÍÀŸ½Ž»·F‡‘:<ËÓ9}z.ðg¼Sí‰@cræÜ:p-莭øJåkšÓBŽ#ŠTŠ…bØWrbÀ0hþ;V©Ñ9;ÃÎ8UÀ]=©’ð-p·W‹8{î[LKa½«˜Gíº@;ã&©ù°åü5Fþ¯$‡ +´mZ\ÉZp4ü0e ' f¢®‘¯…(#)B:ÉÅð Y¡±îвAì]rۛ®ÑNUÁöñ£Ù <ÿL¾NÅÓ¢q±Žõ¯åWrÄ ƒ´¸+Œ¸0±““È{ãQi¢}”ˆÀBú“ }íáÿ*²ÕPª†ÒdΆ"%î^v“`-œøï—<[ª¦_ G¤€èÞ¾ äeÐÇNtœ]Ê%ê&ë9α©­å˜d´]}B‚W üÆlýv—¾æç8ėCt#ÝÝ[ó{Ì·´)§±ãl{#é¿óŸèÖh{‘üUå‘S ésh¡Z3ÆK%æÊs—²Ûè¼±˜Î ¯ÎsWª|Œ¦”ë|fFýÁEäß=åw|±Â¶˜õžŸ¤x¼†HŸ'ÙG^aš––2]bϽ¸Ó÷bÁ*á±;çþþi½¯B´å¶€@3æÃ̾µàuÂT¦ ¦5GîIԏ—4uIwŽ âOÙ6QH0¼ +Ýғi…FÊV¥y9ö7íp}¦ƒ6ۇþÚÖAίâì¼ÝÓ Çí$*|µ³r A1GW¯ìårY³Ó 9õkËë_Ô¯­£ ’›2Ý*:#­5•Õf+êsÓ0Û=ò÷_1ñ [ú€‡XLMÑB›wŸó³Æu(Œzo_~K°ºúRñÚbCþ*ü:Y7ΊICÈäCÏ´¥uK ¥KW™Õ²–ŽµªÅßÓA´ ¨ü?Ö¯*èP3­\䛿'ß_‹6ƒP ·MÐEéçRHõQ‹­z¾.ÖÄ{7!¾® I¬âk1Ô÷ãëR…:zÙ 1²íGªØBîæœoÖس•RT.D@ÙfŽW›ìO1ž=²MNezŽÝ|]ºlvú¦8`ù‚-È봂1Ö,²ÕßÖÎFŒ+4`TJ"}fŽx¹û´WŒÉ¤º_ú‹ççܦs79µnÜS8kT”:ùsoL8C‹X×v‡:Aãlpå˜É”õ²ã'ۏk•>õš¾7 ïnð +ŽJ;;Ä¥úê#ý _µ‚Bˆ°‰´>.îˆyÀå½Þ oÍ ÷ÆÏ퇜‡·ÜñÙú¨ ͕².B±ÇQ¢” u[²Û¹5G âîqUÎÁ‚rœÚה}lô¨¶œwãÓã`½È£r`3dq„×&xwT +ølÄRY+R“‰¤”—fÀÄþÎ}„Hÿ$4pm›æ1<úlҝ4e՝†ª«¾J#0 ì,øé÷M„³ë^Ö~UÒ +:j`-µ{ k +m"庝–Ö/²®x°B‹Fd8©ùÚªû ÅÓD[L€aÃÌ@ñ‰¡È&ïJšRñ’ü“»RîÇ,âŠCuØ`ªMxÌAVl¯àÞ¦QȈèÅòÖ\²Î®›%œµË# }ù‡AÊ5j¯k9†Pâ֋?u&†[km»…Yý¹|¡d°Ñ†…×á{ïÉXeÚ»H”`›À‚@gdÁS…­¯jÜG(ÑðR‰iɔa̕ãÔ E3§Ñ%È8w™LæšÞ¥±‹â÷‰¢1:$ wµ´¡ê;$&àOSJ€s÷Þóž)vzO²Ö 2P¢X\`bÈ ææ2_|À Évt^®¿KzBNj>µý:ӗMg",{41™ù¡‚‘"8ö½r€Â0t+Ì&É×7ºo"š«#„³±†vcxaË°é4¿ˆ1™kÇN¤#ÓsLŸúøòBXúi’„Ý„qGè`ք¨-’(ɓC9ìuáIN; ODܪèF‰kõäˆê~SydL½÷&G©õ»ˆ—VÌçɈÅÇÀNTåý@*ÉPz¨¾¯¹ÊY!Fñ©ÛÑ]À@{ËV'ú% +sxôú6÷k®/£¼‰½rU„™Š³ ŽsçmëÔ`Ž æ6pr:Úi—š"!yÐàÓҖŸ„w±’FTä|`²_<êTÛíE¤˜Úº<ƒ ¸ìîdß°žC;:ûBœj9rÍT¼V\¨¸/ñ=!ï.z÷ƒ +8"ÜcÃÉ»–Á-õ(É^È!˞*eÂ8´Ïþ õø*^øÄ'”+>Zâo1EœT©/ڝ’ÖNx¿¥¶ ]b¬WP¼ J b ¬0 `ò/ò9²Î¼CÔ·y{|ˆO${–9AȣՑ*7Í(þ•a¶F‚B—âQÜ¥ýÅՖ‚€Hô ”Mç½ +×Oãõ´~\EfqÑ·¯ oÛoÒL9 ÆøóXQÙ÷ßCÄ0¿ââËÒS/ílAӇþ\¹¼*‰®® †Óõ7…^IüŽÈQ“æløYü³õF˜¯¤G:E|â±õVTG78{ ï3õŒâ¸ã0ïÕ"7·Šû"g +V3ÀTÜÏÁ/\ddAËæDÆV®Þ T³ÞÉ´éâÜK;Öªõ/«rØ-ʈêî Ô±¤®;:þ‰6Tò  +¯$6âà¼Â}¨dúϊå©OéÕ/1‡ßÙå¢,÷¾—´Ú¢GÄFì Uqf€0YÆÈ9\°ŸÙdUIg=_>H‘jL6ŸPÈėCcÙ4±}–Ú̍+ö7ÍLæÖå +Ê‚ÀÃ>@<ü‘nzFUàô+š:©ÆÐ_ókÞ¿ðía|j”ÚGAe%úWÃêÌÓC^ž»Ô!Q>]¯R6Ùø áeÐàfõîßaýôàimÆɜ:Œñ±_6.GZ€¯Þþ£Ë79Ùÿ­¦ºAf—ޏ؍wÇ?C›! 0‰4«‚ƒ‚,øRàÿÁiÉ+$…ÿ ÅMIA,p¼ôÕ˼~VÓ]‚Ç×-´<†5(Ûrñ˜›»÷ÇÛUo‚gÚÉhðTxm¼îdþ‹:ïu\equµeÒ´¢Q$`¡Å <­ó‡¸Çípï(ÓW„Ì.¸3Ë'ØS€Ü·® »nԔúXï˜^…q Xà7­4ÜÓÙQíÝè¥r•àø§Æ‹¥G?~ýÍ3üB±O$ïíGÒS·û{€À쉗… £qäuC™0ÑhÖÓ\´&¿‹`û•¢ÍÉ6AQе°˜‹µ“½í£×A}Rš0ì3Ì +öÏCêǸR¦Gr…ÍßzÙú%‹Q+˜p…´?‹æ£)—;F%œ8€0*­+gւ@ŸŒÁ³ûÜ}G­æ5y»`tì‹ú)qíÂ#¼«¦ÜM¿r}z¼xádô¿â¸š>gPsÀh 1¨Ï rAé Dª +’AÐFƳƒ÷H‰Ãt^Ý÷ ›j&:€mVO¿oµÈªÜ)Œ³×7ɗQSFûõVÐ=¶#?Þm ‡Ü#!x ~ù f£÷l›m¡‰@XôyuXÍN¶`éâÈyÓܽkºgÞGƒ¦9¦Ú‘éÐÒ uùS<–stÍ:tñ_ҚGž÷[!š—?Mi 1èöâ~œLîzJ[9)÷Mªï¯ÕȄIµÃ7”˜ÁKXŒàމ¾åçCä¼u(r`®  m)¬©BDyáBóÞUöµ’ÊeòÛ5¬Ý:ݑr\2@¡ 1( Zó]Ø’¾õ½Rpü€šÜ.EÝ;ðô±D†Ä‘òü fÿq§¥hͦæ›=‰Ô›æ—áÇp>1#X \.~~‘Ao~•ª—Æ9uÛ¢¥ÊZ³¸²±•é?K6:vÍ?Ö/yRíÛ©¹}t¢‘ ¤*ÞT–e»o·-½šµ"À2?;ãrŠ}& oÅ£6r8®B^¾ìuôƒ-Ågø×òÆþ> x¬…Ý`®JÌÁA™ÍÙæ¯z™¯¥s˜«•iòy´nÀö:ìüàæ;âq!ÉÒUÒ~ê×ý®~rbdATÎUlŹUÛètó_óÆ'@<¿i.È àUþÄWk~­:xØ`Ti©çÚ¹w¥àͱg„Q +ÎIÌC†/¨Ê¢+›q;l=‘Ö<è㍌ó?ÅՒ%ǝú¼M÷‡ò|<ÙyŸuÌ.8ÁÔ,yæRÿa›1qµæEÜJSë%¦ "¥ƒ¢ý×0³q°”™s¡Â¯D=»Ãc…¯\'"Wù£ÎÈo¾htp(ÏMcÍs`º-hŠ0nÏÇ¿„þIñ⌁²Ûl†ù0×YG…û€wíåöŽ•¿%Á'ßòä@rÛ5èMúC41×v]y윊OèàÃrÏ[}#¬ˆO}¨7H¾=YÝÌIÄa‰¦¨ï`Ÿ 8Â,ª}Ã2['؝,­ ÕJ60°ì¾[æá7=ÈÀTT‹¿Ö‡ëm rűX¤ )Žƒý±Y,âþàM’‰–8À?pû€Ÿæïú'ʌŸ1;FEØ1—~̘±ÃøAÐ87ôQXþ¾O7·d‘Fcºß+·˜}G˜Ë_CÚíXWÑ|µ–Š8M:8‡V½;¥ñÿ^CKÓÐ="wuCÂqâ#?´z•J<]!¾ïý¦ð·œéx¬Žf€¼Üà=̲)ÄFxN4¤ñüÚåÆLÚѱ脖:Žùÿ©–9vÊÐF=úA+Y7¿CháœY/%U±¨7D(t²_˜"ZârLõ$ßÓHAAbŽ½ÉÝÙts݇,?‚ÌÎ:%ížr;Vºx åÞ%ú½„9ýŒ" ¸ˆæ2 +B,p%ЀDý§àmàÌ¢…]z5uTzŠÓ3Eû3h 4™ð¬9º²„MYfå~]â2KÕö#Å—òÙôû‡Ø‰^ o–S“–­¨/V漛mkbpó¼.¨l@à4ÿªñc_•1þɓ/ÅY@Àðn‰çÆ´ˆÔ{t½4Ò +§@˜¼BâӐ? ‹žù7Ò¿§å‚°Pè ç8±c©wÙ¶R=‚í>pomƒ Ó|6fWáùÑ6$Q˜"AšœŽ¾3 +Ú»­_EÙjè“[²•U ~ydæ†ûž€bÑ»{Lõvòvß'î³2X²f–‰҂ÁnSâ_~¸¦g†o‰3‹û7{|ó›ýÂI[¤uØL0ÈncüÝ$Z0Z9$óŒAÌsÁÉöh“ºŽãa¡à™½o["´òÉHl[¿ùŽóÈÊò$U‹ÐÂýğ”á0üžð´\àžòp=bô )÷àh|àiÛœzN ý4n`Ïn²;Àõ6(ãTËЀaóUUål+Küd¼ÏjJ3(I=»b>òèæô.yEÞè:B›V;þŒ¦sÌX´Æ¢4DÂ7µ<¦[…÷­d!þYæÿlg÷²ZùŽ©ç–\N¾qslúsù‘jm‰ý‘³8ÿ›ƒ7–o×Ûi†zÔJDñn¥hkÌ©^ºy·E+‹`ö…ˆÇ™.Q5 ñ¢$ÇQÐüTրj œ#›po]L]WûÑ23f\"W/÷u…ô¡¦llO)Ÿ’‘¿+§Ô›´ïké–Åé„ûwCµ÷>ßªlq²‡ …Çj”…êÄpnQ3\AþÒê¦ú˜)\Í«Š¬@‰_ñlÞÆâ;þ¿W,í+¥¢Ž¸Ö´ºXPjô­Óç{þ*ðÈñ)Ԍ’&‰ÿ¤ ÜND0üÃ~BU“>ÑÙî¿ÛÉáÝçħvK)§QDç¿%Âh4Ò /¥9 *¥Õ7¥ž¢ÝzÓËl Çðí­µ=t&[ŸMV ýÜÁŠ¸PÔ([¢EÀ+&kΞÄíƒ ‘A*ßÖ>@rOgù.|s…´·Ž‚¯.T¡çzÁÇE¶ï´gxd¼m¢?³è¾bûäµAWÉ?‰ÕÝ¿ú¨LQw«“lhK$·sB#_“1´±[»ó`®Õ/,M˖âSÐ+Ò·¯¨ÀÒH“×uNÉ;ى§7ÄJ( I¶VçVhC”v´r¾¤ÿz»ÿ*ý®»'Õ§åDk1;É®+½"îš@n§¬>ŽªQa÷›©»îú=È~°_nÍÔgò݈q9*sP}r~‰Œ×ëøgšÝ³Îí¶àuÎ}v6k[(£›Ræ®BÚ͟Ã? ³¾ò¬:¿l³ÐI·¥„êPt«¦œƒ(Íú8Ð ÚÄ.ÿmiýUÜ.kN¢˜íf0!<#5ìҞUjƒ-^ÀFãuè“_ډ1œ W~#N¼ çPz AÝYk¦MªdÇ-rˆOM:õG’$ïOÝÚ>¡¤4÷M'K¦*Ö¹­Öü_/4ÓEù{D£`q§*mÕUP]ÆÞúáä%A2.ŽpY)±%|ŠïÂvã¥R3¸È@jd„âÒ]ƒÁÛ1o]±’rîŽã8~„M)M¡Ê5Ægvf½ âRà^ž®-·0t^يA^¤¾ˆ%?ãj‹‚!~¢q¿=“ú7ˆ™6ø#ШÞù[Lʂ@ß݀ · êa£ÄÎÄ13C2îã6֍ +OŠ?oóWÏÊ÷?•÷'úqïBq¡Áµ­‚ç÷„à˜–eí—mãa½we¯@Ԇ ¾ˆ +ûDóßý”•ê}MQ¨ìÝä¿°8®–0‘Ï\ªôf3R(|L{ãKùrFp`TÙÛÆ&(¢J/Ãk )NԈVÉXw²çTa҉ fÄy‰J¹i·x­ I/%Ínt_2”ß–êÕó×kTÄ/^J´rð6ÓTcwÉ©¾Ü¹äÎ@t‰?‹yî^ïEÃHoo¸Bž,ïëÎçXŸÈæÔ¨·—œNvÙ³)ã+(]½±”bÓU!ì88*îAGΟ;P ø’.<»Õ_ÍcL vä°hgãʧ™ÁåaƒÖ&ˆ=] +Òj湍†ô³¤oòiª·.¼R#6!0騱®ÊÖ n{’@W´ÕùýAjÖ¢=H¥Ì\Ÿhpñ‘;íaá»»3`v_êڎïR1â¬1V×1¬ê¦I <ºÈ#zH€CAHGÿ'ÂuŒZƒ’ð¯ü< +µS‚Eò͐óëÔÒ=\Žî)šdU2™ ¾Ü¨䔜º7ë <×CxžCR:œUQfÀ3»ÇäH¶ãYK……¯îè·Ñ¹Ì6„Á&\‘ +ò—Íî=©§Ä’n_Y\­õW,üäx– s~¿lÏÂî¯Iy‹—Ö+³=r‘0òÖM¶xÜ`p> (dLÓÿŠª kiÇð†ù&ºVÂUó8˜¤¢`P•g*÷Q„AFÇÚ¦Ý]y‚›Ìg¨é)iji¹ŠŽá)nïÄÌ!º‰aåhz«b3ˆ,‘å3’=?Ò ©òçËMRVç*6ýߚâb6¬ýêh¸'Æ¥‘ªö¾º$Ó7„xâ ¥Üw›Dç –#h÷ÁV‰ÍD1‡ÿ#O£…ÃÅՁŽ ¿üªæŒ*ÛZ\<ʨ6è²Ö% +‘D í´Þ)ª^×úhX)¤{ätFNiÐPðM-\|1îQ]n3G’®ÂÅp t“È…›}`-¼!*õ²º­ÎužÙ«¼ì’{Û/÷Æçå°&ÐxíÚQyr{Tº¼ÉWÏÐG^µÀ·©PÄ ‰*¨,‡gÙ̒t‘BUeöցöCÝo„Ú¹cõ!1F‡”lŠçFø,Åݒóõoƒî®°vR>À2)H¦–¥ºÐ­äl¤KìrvX𳧅ñ¢ØFáòmvR*o ¨«¾B{{&'ö:!rÖÐ ª:í_–D”z“j9.ÕMãÆFÆÛ܎+Ù3†ÂTμô˜ìàÚ¿F*¾àgâލm»:ÍnÅf’ØÃ]¶OÑã¹f…ãé +ãœÙô•'¬¿\õp¢MydÂŒKé{Rp1ªÏڍ½ÝÌÐ::q8°K¿ ùdy¯»Ù6ÎY³mÇWVþÌjG]î#C÷Üâ?FZüªŽ¨f’dE9•UX';î3ºî ˜¹µí©+àïpœ{­¿]bZú)’½¯´31ß a F?•¨¬Õ`J棝ɹu«]-…S|Ák|$ùÅî©õiñâ åzUoÑ[Tk¢£Jq71±r¿g+KùtÏ"ó@ه×Ã2A3¦9ÂÔíÜ 8þ` qO](ڃW[SúõÆã}Ÿ n27UwÙN)Î.Ý$y½¸¢Žwóë—$skÎ)§u©¦~w/ƒ›aM‰iä]a¢“Øäf9H‡I¿Í2 Vk–ҏ¤Y&VõX@„³6U*°ªf§Œ#O¢àu¹þèù§ÜX¨?¼©‘KÙæQŽhçýϻ¿p­À”ÖÉè 4õå\ý™·äЩzªég Pz’7Êÿrsë¸l"#ðK™QïÁ{.!È/q6d“¯Ó*ћA1¢‘y5ù»‹b'׉eÉOàEfÙ@2Í‹Þ u;F•µµS¯è¿¡žß=¿>§Žf‚Hã]Q+[–|Ú…bÄÜ=ˬ|¹U#גb²l&P†@ŽSÁK“Йu[%©#ˀæÐí;åՆýQ5ñ*Mò ­Uª;.ø—Ž„„^=rÕëÞǹBȗòn° ¶Çgœ$l®O¯±‘ :ŸKßö‚ZŸ#Ó—ÂÐw}ߥ8ü›Bù>JÛ±¨ü¡È›³ò¬/cQßÆPkro‹®1Y¯΃¸÷”Ô¨_ý!Ñp5^%4Õð•*²-¤Òß)v-èE¶Ú˾T½þVRÿžÕðÒë·M ´Ì‹@ÚNüuGv‡S= +q5]AŸY«Û\a⼎1Y:T¬ùn\‘Î#PÅîIðÁ=YÃq½öPçxû\.ߔV˜úÁgEù‚ÈÌNÛØñ)م¡?4ÄâªÏà’*<Õ×ß4um›[–5`²×¦üs¶À²yØ–ôæ‡bw¦Hý +ž×ñÝéÓ°Žµr²¹x%ôAüm9Œà_Õ~HƒoÇaËT¸°êÓÁÚ›!N A%ѹ 4Øâ! Œ¼>ÃEÁšÜkãýU‘qµZÏÉXdÈ鼐¥,{žSÙDèƒÑ¼^`ÍËO<e:Ç×xOk”‘fãðUÛµ ²¥–©y 1ßß\Yës8磩}ðG‘.³ “¯ÖˆGâ²h|E¨ŸZßhŽõU³oM²eñN+ò Ð;À ÈüW€…ÜHÀ›2›îç3Ït?0¡-¦"E~s#žz!{ì¢O@¹¢Í¬bÜsq?ÂH»Ð‰±ˆI~ ÆîtwÄ? oÁy›’ÌÐÐ&b‰Ç¼ÞÅY¸*ÆS—œàrrëûN†{Lú®cœOj·’øÁ1 …°k¼•6Á}rTÿœ+>±7w(Cã2ŽB}¹M1û§ì<ÝO7´db¢*ZíU8Ô`Ó܋¾ñ~íýÎEPÒã0âŽÜËNÕÎ~À@p¼ +Áòµˆ»ÈÃ³ Vˆ º/寿Hü„?VfY„CÜ? §B]«W1 ¼Þj¬ð, +ûo³.ü5ÂUsj”‡m¤lQ³êÅèb¿Í CTky¨u3Öºö±Üùl-/n¨†ÔøðvÜíL¥@‚ K΄mÙûQºí8D¸ÙZŸdÚ¹¤kÕsß(R`_Öx©‚Ý£%ÔÓK0Ê/ÌF«ÔAŒ¡?Í7‰»@I§fÙÈZ ø}¬@‚SŸ»Ø\à¿@ô‚ÌS„ZQ®Î„éM‹F=;-¤/só4¢ÚÈd_È9¢v^æíØ@³À¦s’%gÊç%Zó$·¬¼0ö±`ùǚ‡êWë¸õCk¸¨8w… /Uné +›JÇ]ý#€Jδښ€[•Í8ÌCÃTûKrT”0¥q›´ðî½WîãɞâÑÒIý½,e )¨¤Ð…Cªÿtó†\½ó¸ž³u8£ºØgºaTˆBƒtÄÏŸÑXhí ¯(Ü*Òü¿,ÜPüìK]cÒ7mL!zzË<˜+®Að9>Çåu¹Ëmð¼ï ¬ +àҔӅ-hrn€MågÛÓJÅé¬9hYþí r€@ùYἜ>f»”¥ë +vlhœT_Ý#â,°%Õ|lxóAÀTl½çóqæ»”XÜmš…βz|j}oƝC›œv6˜øŸó[žc$ÕJ¬û"ìaï}ٝt›U^ØÈèÙ§ãEÐX™ ‚ÜÖ6ÉÄÒþwî°¶¨}eõmB†%µ,n§Qû³TâÔ¹ÔLœ’÷A¢Î#p}7Í Šˆ«’ ˜˜å!áDÓ/ò1¥`˜Tç…ðûIi¦nþÖ'Ó2\ØþÄ*î½ûñ{;žÌ Þ·õÑíփBÔêx@9÷S/.›¬KůD’±jùàŒZjÒ‘ÊØ¡‹„ü±úƒÎ¹ÅÀ&^1Š¨LÂÕáçz²h-ö6eARw0)fRq€‡’ý¶dš¢7>tÍ(â…I&—¹c³ä̪‘þ¤ì)ñÜ(ÖàÇk††™ íÒê!Z¨ªµ±Ö™q[c×¹áXðçA–Ï%«)…]ûŸªÜ1x;TRa¾þ^°q${¢« RÌ°¡Ø¥¨ÄHž#œãOÀ«1™dø9·)É)OV ]Z¬*$âãzÅóÖ@dW›Á¼#&*8F¨”¼Ù÷Œ‡¯}ÕYÂ7½OٝUGõm +¹A"£KDÃ%’ºµÇ•(A,u«ÁŠs± ÛŌUiz«ò^9¬|¡k£IJN€ÿMí²"®½ï‹¥V“&iÖ"@ÜDf B¨5S¬¸O½;#ü•Åð–_’ &W{ûá1¼…¹õõk.ªQúãëp½ÂqU‘‰÷v{Ô]¯EêÿÁ0Ûek“=uçÀÀå„•ŒƒNªÊ‚Éùæ nÉPë÷} ev2´†ÑüF±þÝG$;?S$ÞMÛ¬<”Ñáó“G°‘´k ¯b˜z9Åó?».q-ï_ö¤{…^µFÔà«aò)µÌç„æ‰^gLM4æÛd]Ðì2;P-¸‡ +JՈ¦IÚÝ՞zñ ÈÞë¯ß z+7FŽd#àB½êÅí¢ûiüé^í¾ëËA© 0ÅØL¤£6OÛ5ª Ûšja Xªo(-áÆü—c{7íUäÖYòè¦WLuê¤©tuÿ›åm×Bt °T‡È°n1àWcà³äR€²\Ö-ÜÈ|‰?ìâ1‚5«½Þzmây—Oœ~kZzäðt‚ +Ü ìà +WÞÒã&tøÐè$ÎFnýûÒ½‚±·³Ë׸‚ùmËï”ÊÉÁԍ­©1ШlS{°dþýÛ¸¾U¨YÜ +MòIÈáҘÛޔԏAå;>ßg7Âä*÷]{ 9îF&ùtYu+íI+Â¸}ÛÈ@D_7žnéÉ.¯£ïZŒ¿·Þœ Å_;Lò} ^|¹ +ß0ô¦ÀãŽÛ9ÚEZ#‹»‰h}ÅbÙð€˜ÿm05Ñ*\1»âŒ¥@±Ö¼—§ßVû³Œˆ¶k›ÌòZÙ`¶ðç6à¿C1ŠÈsèâëwÂù~à*Ùp´Þã%{íñ‡t V¯u;ûwP“>-_¦ýCãW4(.…k¢ÇþUì4!ñmÐ>¨ovòÎI}Êéa˜õœÒ#cã2°t`?çԇÞÀE›¹t¦ä%ðÉ_°oÓ:n½RµYAɾ¸rÂ@&Í̌؝$ä¼aÉ:{AÊÎß&ë®*•y }NôBù‚Q€SêÞ=q«U•»[Á”ŸŽsn¬c¢%&8äLáª0æu 0ׯj¿WÞªtݝŒ„ ~< ­DºEŀ5ï»°0¬Ù÷Ù@ΐ%Cå#ÍfçÃ*)p³ñŸ´`‚ p”µñÙô ùèïßøL Œ+ßë ØJ"rpÑ?öyÆáÏvŸŽyp±óc¹èË_ᐆ{|%f ÓûuZúž§±UûD0 •O1Ø°L0íœ Û´ ®ÀÂ¯ 4ÒÇOMÈM)¢íÑ}áPúÆ_Û«cÊ;j™>®x{+u ÏëD䩦3hÁԞsaÚXûÂošò2¾R#0ÅÁ >ã1<ýùø4‘‹ô­Qf°«F¼õê|¦IN$i.†@ )ÀB4®b^ðü\‹;©–. wíFT5cŒ’Yîôã6Üùð„D |+⩝¾Û“K‰ÉÂÅÿøݯÑU3’ÐiظH´\L˜7‹ #eŒäùT?jëžj5Rv¢v¨ ólðÑçAlö‡€zlþ!Žê—ӖîW/‰»¥.‰óh+,ÜМ¨âöTSòDÊò'·”0¡è«EIcϳ‹L¸5É;üã[êŽß%Ni—óیÍÞE±j9¶®ë¬]‰±ì0ÛÓ'¶L(­{š<<žøÄe +ê0:Θs„"»ƒö\ +ß$o éDÙšb°¡ñL[ˆÑx4±¥D±/“t’\k)ÔCµó?ðl¢ µd'5¸Öß ‹˜Ä•&IBo½Fû´D>†­¯èجå©]é+mžÔÐV/gÊJ,zëuIt‘^\Â:0ûNß,ýT ö%Ü`8ýñ¢bôÏÄCŠG•Í—û*œ(²–èÄÅl¢îA‘7™™÷yåä‡-ô +`³’m=)žŸõ² +&ÅÌÄ«cDsÈ£šÓ€Øԍ¦È‰ ׇ}ãÁÄ]¸oQ^J4P Ðßr¶Ö1Òt am½j”‚ßEŠöd\FH×jt!v%à¤ÈY=ép²Èƒþ`ó-“ï¯ïa¿ý™<¤ÉåŠÂ +¸y€;_NF`ç6هîýF˜–G‚…1†}ÀYæv=CA­¦¦óUp³6·¾„1gtvªàL:昃6/‚§7»5u¤'ï\ÖéaõxÔ/º@¤Ÿ[ŠÆ—ti„?>Z˜êaG. +OëóØÒŃ˜.¡–Î,ɂQëUH…>Ñ-ÖÁ½6$£svŸ.ÝV‹>œx¶ÅRGÄûçTh:Re¶ô!?ýxˆ!±L#Å¿<YCîM`’넨tmº½È@ÄÑkÛѝ~ JÂm¼+Îò + ‹üG +µ*2Ãõ§ YvӋé+çéÕê¦Í^.žr5ç÷Æ3(N'¿x뙨è #èåŠw,4—N'_#>¶¿>§*†­ä‰ù,• PôM0%ÐEe}G\”]ûž¢ÊÅö͛4öÐI´ãX¾oÎä’ÀÐ3±!KÝè±|$Ú§ +Õ°RñX‰6Ç»0í‰3@skO»Hß李VîB÷þÈí#«Zaˆ9A8ð41‹”~Z^gïA¸3oã—)üé±<¨®y§Û—qe$Ñê,W»MÜêáœ@~8ºñ8”)mºVËiM'V`V4{ú3mK^žƒ- +“Ö.Êwj*t¢M‡eö®NMI¢ë|͔}Ø*ü'`š¢|=xDϳí@–´÷OŽÂO–Ëik±P9W¹Ëò1àLåR#GË÷¼™ a—E9i•Ÿ,Ð~°dú + +Ä% )C¹fƒ.AF´‚±¯eÀ…Šw{ÕhV“²iÈZ'Cê‘M}﵃êփ.[¾óS:ŠÙ·Y­_3©ÙUÎÕYäˆèø›»Ñ_ž/Ý«*4+ã,FIwœ¯ßoF¢Ù«þ|Û^危òhrÉ|¾ÄM›Kz< +E({¯Èñ‚×Í"‰µ|ýlÿÁóp!2ö»sÊI åËØzeX‘ƒ¼‚ΖÃGh:¦^ÊóIeÓ½¡œîè$SLÁ‰úºS`¹‚~nÄDHH+\°2Îíá­2ê՟K>³õ »£+ž¶ã<¡SëqÆæë_F3œölsò\hfßà)Nb>èewÆfþ)¦âª+ÙRñ Ç)ªõ³;© €´ ޏ]qZÞoà 4ÐwäîíPÀD8¥óQÎrqý‰Û£Em…Sê¨TgHê0ÁÄþU\–‹-Ďz0ÞEl + ù_óA-CDÍ*µ°æIå”I }·ïy½×̖ú’ÒV5¹í|x=8*$ßIÁà ,^mŸ;ØOy¿·†'ýþIÆ,•3oÀ`%’´Æ°r ЕMTƒãÎiÈEN]  †GMÕÂԍxÛ* ž±º üjÁ+z²îóî–ʵÑ“Æ]¸ÇÕBð©øWw!9aE•þLÉq¾øÔ½ti€Š+ü7šH¡ +7.“ôª´BɦaapÅ\ãZ°ÀZÖÐdCï6Zðfö¸z+ãæPCw—‚ŽàgÙо1cE äLöa’ƒÚmZw°Ä8!ðDG×âã(a‘öÄd=âpR÷ø—Q½&‘VÐ:Ö ™WdõìµéǜÊ)ÓyL^єÅ%]ÚV¶fÚ½ ˜æQOŒèËg¼wÿ›<Àà­Ë0Ù , ™ ¸Æûø²¨M\Ã+TE±¥:§ .™bŠêюƒƒ2¬}¦Ýzí*³&[­BCÉÔîË®a×êt™jƒ—ù3ùL[Tmý¹ÿ±öä>g”±’ +a6ÖáTw@H*ž¤cz,vÚdºl¸–0„ˆáÒ!Ñ´ôŠ„¡cÏì,áC—ÇÜXà}”±xç)»C*À•Ògv2nÎ(h 8†zñXôüU4§šrñÒú‚Çúù+Þtf>•#.¥êÄfç2– TŒÐuËÖÝÝ» òCÒÚ2rœðûßolâ+0ÛU æ ¹êghÅw5­¼ñZ+ ÐLÐ-`†3‚*wí©g(¸äÜ©øÑ£Uc ßög > +AÑ´¶þi†Ö4UÖnm1q•,yÆ5Šb)‹ ßvÊ]?(fÂgûT‚ç …ÑO ?†Ù1G"Iˆ¢cíŠ2ŠN{M@ì¼4n<!M[}°¤`s +«¶31& ^òG]³œ–㊝ua<†ñ*˜vNtœTsC"öÌ;›0)šô“,„¿7}#ÊPH*ã¯%)2$àÔ)޼ū:*9ã8yÐXhå1Cr%Ý«ßþ•®Ùñ̳‰ª¸O¹3ãÇÄ,[åtʉFÉeÚDz·n… ÿÕ[wÅ¢­,Ú°yQðáõ)Gž^«ܔúŸ“¶úݧ`ƒõŠÇ´±¾áu€•Z¦}Õø–ô¼=–€ƒ8Uif¥ºÜÐ5S¥–Se6XAÈõÞ¡ð‹ZTÜZuÚõ¬\+“pIL¸šS°Ÿm°Ú^þZ]©$Ì¿ƒè¶ ùêmµ=æöÚÓ=N¦ ™ôͧû,Õ´‹™Ü*JJ¡0ÆʶH[–š)…åùP_ZõÎhÔuè„gÏҊ··îÒà²ç™”¤°øçq<&˨ܴ±¹ aôcˆA†1RmÍÉ(vî†<¹M~„Ê íK[²süYÜ –V|(HÉí jߖT‚ÖûÔ· ™#”ý6ƆÑٙÅD½1ø êèÔÅ-˜àÁÓ V^†øc.Kj´fÒHØ"ñVeùvÔÇê/¦Á‰%gÊHÝ´¡a@ØhöÖG@L”;Û%±¹UØ6kïؑƒO‘ãרˆ12ÇI‚³e²4eCü.w—™$ÊxÄúe#T™NÔ +kf¥BÞ¿ÎÞ©´V·Hx-aDpJÓ(‡Ðxç÷Ü×ß4#ép>’;0 (fa ½ò¶RIMŒwë[ªª~YP®QlUçBõ˜±`¶¨ü5¸†³˜"•]ï縵9ˆêm—æ9†Š¿ ¡Ç"1ðÄè^$eË,Èú gÀãQs} M’ÓíúH ! >P˜ï¾S>ΚôىåIÒ»= ·‘fšÛÎX;=ˆžï߸ão4âð c<ÕY`B3¿Åú×:_€^úH౤Ps±ÖFTPyøn€è¨Ëûøû•d÷Ní· `h›f¬Þˍ¯A‹ëݸÖAÔ\$íP¿qÓ´ +ÒbXxÖ¨Ÿ–\ô*ª™KIÊ5hžÛ2^Oçï&+w1H¢:L0›cYE(€ñ|mæ!SLZV´2Åñ!Ic#qvÇàDÃ%–€ñ‰x*X/_Éy®Ë·Ä +Ea˜È·A…aa{uŸ#Ì£!%š­X­¿[ÿ1=¿"{¥²ÊÆ÷*w\ŠiXª†€í£s'äè8ǵ-!‹F5¸þ{ þ—&0<òÑ´¯Ò6hs§þõö@xt”ŠµÁÕÆâgŘ07»nžÀ…·ãė²ÚõsÞµH‰S4́Qo½ƒßv‹°ÝžÙÆùv¾õŽ! ‡Sý˜•׺ÞØ·o“fŸé2`Á¯l®ç ó¥~¦¸N· ÕÚ£@jœXkNgA1%7ñ²×vÍœ 6~ZXÔÁ¨a§ÝyùÜÏ*'KŒA¥ÖfFL—",ha“óŽmz¬H†z%i¢ñ¶X>I€}.;ф2KŠ%-爠¹f¶¹¦/ d_¿`ۘ¡~wDÜU˶0²ƒ6¥T<GNR'Bˆ:±2íÕoÑ2ü“Tù`:,}u|'ýa«]ÇW¥âßë$³hðÚ§þt÷…œôª5Wø2ÞȀJ ûãL¥9äP¢}4¼+se'ZBS¤Mm[l@Ó$=bbÌ¾T5?6ôà«#5ÑÄÕI"8ˆbûK×ܲ½xQ+|šå.ÝÝiahwm?sZ}Ò¶þ‡ @û ý“Cí$æÂãdY»ÝTñ™T:ªêȸ(GÏT)¯©Œ…½|7z5m +°¯ނKt4:,“¶EïÒl…®ˆ«|lFêwÂøb¼+È+暭[ö+ƒ¦W¯gnHeñã+#‰t=XîŒ-œñó/•ñ}7—JMú7”bàÙ'!"Îc Qq—`Âpî|ÐtõÌÐs;pŽ¾x! }ß@x,s3·õKÕu»ÍɶþhhµîèI;3Ük”ÇkF,4"pêÆê@5Ö†­˜˜S?L[xbÇÔxUüµ[ÔÁxûº o·ê¼{®a¥M0È˟[š›š«¾¥ˆD,:voíJ <ضbY –0Çé +ì÷ijP‚,«ÖiUœ÷š'ü8e¿b‘7^(‹AèT«ª‘‘Ô}ö¢n1ò9¾ˆ•oˆNë!’f)pK¼…ÖÚ\÷ÔïºIÔyg{ԓøB¯U#0‘9¸ÛL'&W³gF$Ó¡ÒJŽ8©@«î¾w42 $µ°–ýpŸÒšÆykójÃN°…è0ì¹Äo7~Èî3;èp.'®£â Ÿï¨sšëÐ +s+#N|zÀQỀ'ñ9^™Õp.·}zŽÀJ¶‹R LyªOÅéáªÅˆÓ†t½}.”ƒÜ ·kz§Ae;¬Írš“ÐÒ^ß@G»gÓ}ðQu–Tf‹ÙyÐá‹÷‚‘µ +—&xf¤Ç¹ð ?I’˜ºsµÕÏ¡R¦ž5„$ô ss©¯(?ޞ’ž çN HÀهÓåAaÐoïÕRMìãFs½v1æ^çÛcèB©#!Ž>Ôë²= Uë€@~Ìeª®?Q[„/×fQM/ˆó®Ù G\¡ïlð´ÇÑ}!U_˜ÕÎÖHk)+4$AZn%†(ã[ê¿/¦º ÂòæގKâ2ñ‹ÜÖùèÞ:–Ë\C!‘¾Ìh7š9£í˜°É¿¸5ðñ¯©ïëəsÕWQÒ­OêLàlÝàÿ0€W’ÇújP¸¸]_z:Øïr½©ï‰ê7MB+ý®Ä’$ ÿt¢ëßÚ|M8,ÕɎC}‡V’¡ q¤éxlz~œÚ†³Xï4êŽSšO 6W2s9‘#¸‘)á>iê|ŒVPIè‚FKÎĖ쎢èx¾’»¤ÿ< bÔÞ}ÊÂF<®άmÀß¼êjH>vïð"~v‰½¨?²õ:ÙSš5àÜeuäísFiÛe÷/£_ŸNëC3~ÿ+w¾KºZ諊‡™sbÉ>HÊCº³àÔ¼Ú$B0*:dx¶†d¸à÷Œ Ð*âÌŅÁ‹ÆQ̗fK0(©Þímr'†U‰ÁnUÕïÆmz‹í`D ɍ€Ë@ÎÿÞ$‹6H¼lfkš âz·ìqâÈ#Ý3‰WŸóD m¦î‹»TònP½p>_½Ê¿ÖÔÀª’#sgÁå(N™s‘Wj՚x7¯1Oøv«4'›Ç&ãêC¹ÉÏۓ¼$97J4.uteºlßæ,<§§¤K]YloÓÈ8Å+w[–ôŸ^ÿäø¨ã#G~EýÏ:žviŗÚÌv”ú‘Òœ»CzǺWôPÄF¥#LA~³Y´à”ñ°a{:‚G¯0Érçà¼•fÜfRÌXlžy!÷}3øÓ\,Ãï[ziқÇ+„"3Ä2~]¥ d›€ ¬µ'šC +ùÇ¢kàÆIäþÎvo«ùLi¦t¾›ýEǟe“Iãl|áÈ>bS…ãŠpBa÷¡ú«*—“"A Áт¿c¯ @ÿ®# ï²N 4énßç×4ÚˆT°¦-ϑß<¡7œ7§4À„=žW.æ+PæË+7õê…c¨æM” :Õº·é^K«©>€»Þ5’Õýn}Äk{ûJ9|t·ÅÂWœW{mo­—rð%áÞ,­¨|"sï|Ø o‰ÞöIs\,@Ìã'úîb,G4¡â7 ´K'?¿#²{>4·RyWO GÔîÉàU3z¬äFî[ê|ëu½‡ìŽ,f+/ÏøVÚà% è* ¨™ªW™„Ù³—_ª‹¡Ù\û“ÏkC’ù‹µÕ~,àÆ3ø{1AÙQ_Ì5¦°ƒðe‹áΠY`ˆ^=Nxƹ4L6g…¥3‘´ŒÙÝü K¢2V©8@¯ž@¦ë±G8»Š¥Wà‰›Ñ›ª»ÜºÚ£˜#ö¯­”úˆ=#Þ˦Õ3é`zAeM·˜áãv`8ÁP·%[˜rNèv¶$)þ$9"aÅ£„)ä›se©Éž±^éÔ½Ñß2Ðx¹RA{p†%ÐþÅLþÏJáe=ó ¸Šq‚€ßq´‡jMÔÐñÈtwâ>È[*{!D\c+iRG:_„ ²pï#â¤÷øWp "(² ¤Æê,ĸ±žoÈã‚o:ˆåk‹Ö¼eyˆo Å«ÿˆ¨ÈIá¢ò©ˆ]‡ +¨ 2£öÇ2ø(UqÈ/äéK úµr>g +Þ3¤¨¡6‘«Nç9¦ûϖmqœ÷r•â"ò*¸½¸”¬KàÚ¡KìåÆTv²àïÒ³»ÝMŸ +|®ŽˆK{~ÝB€Ô·$CUUvÅÿ)k. uÚÀ!z7‹\쉏L8‰)‹]:L,Û Þ¶2e†!íå"d´BI×Äâ pð <¤^îBMîBÏ£¿¾EŒ”r߆ö±è7 B)ü$KâL +^§•\Û.ôgÍÍJ²?|EÐë¸ÖG)úØ뙳ÊÝ@j~ÐãÚJsÁ^ ¦Õ~âíÓ~¾å¹D„Ó˜ÀDË2øš~vèªÌì¬È³"˜ Êü²a)XÝ´ +ˆó fƒSÝS‡Â›ˆÆY½{ÌÏä(ù¸ŒÞ¼ñ”nÇt5 Ía¯èuœNàëb̀_֘ü°…à‰!C£nŠ#}, Gú¨÷=æ3‚0•Â §ÎÖ!yXêúí,øÒoo¸W˜‘Cî´¾"¬ØÏÊ׬Ί›AžX‹Aïz|ln\“¬pƒ5ª¯Vä=iXjIø±!û4é6ºfÞMŠ¬ ­8?›MHlÐôà +³‘èvEĄ9»ºÖKœˆ¤ )ÜÉd;‹u¥ +¹î^æn9.™_½SI~¦¼áŽ*í–ú >2ëp0qäÓÂ#ŽÎ +܎Àœþ9é9Pèá’ñ8õ^;‹ »èJ´iR)¡=þh@HÄ B ù†pên‰{ޔџnÆQDE£ßôVUÜ)†Ø+Ô×ö)F-.©Ù_¿«Ÿj”úÞ@ +î ZsAo™Å.Õý€», 5͉ò¶ò=èÙD„g¶–&áŒRJïÆï3±ôðÑB©?؛ìùT"¢¼º^vƗ¢V^y[©­½Ð“•“ØÝP¯´߂}óÄ,G^ŽÜƒ3Da7«OXÊ¡M‹å¾a¤}j_s—%Íe äËCW½a×˖,N¦³—.6šÒ #!Â0äÞªbk9ÂGŒò¹SÒƬÁ|¶¥(YòuØ3ËsmŒÝíècyå¢Æåå#ð·b%TKX šàõL J»àÓúêý J½ +RUö+&ãj +…!Ïgđ›¾ÕÑT[”²jcŽа[¸n±¾ƒVA‚kG\+Mrèf|Ͼ|¶¾ì:,„®8ŽV8´­ð@„§guÏ¥%m¿ìI2‚E &Ù¶s–ÅäWô¥kA®ñCÉÞ¢Ìæ[FF·á¬ By±M`€«•vÊ®.¶Cƒ·'BÅõ\ÉÇêDqdc}ä¹0›k_éÊÓÄ#™‹ïxº9S'”Ô(óá‰î{¯d¥n¦âÓÓ÷1Æ}êÝí’~Œ¸¾Óõ¾(§B g\Ìçd®škøÁû4EU}Œ|ìƔïIÚz*‚üó1xühâüÈÕÛÁkDÔÃ2îðÖ{“ë&#ך“­3pA˜c(Ö0 $ÔiÅ± {ésì,+C_Ґ%g‘zoz¥Ü²@'\ñ^¢M£Ä‰Ê[£Åáîjìq/Û_­7ü{u¹¢¤b^I –.©ÅV›³Æö®sõXãøv~ÈåÏÈ]íúvz ƒWq>:·Zo§¹cÈE째6^øƆBÆåñß<Ó "ŸîE¸Á‡>Ù7Ë0mâøՏ,¼·0‰ú+]¶Rn{IåE«Àuæô#ÕD ¤Nh6 ö‚ð_j 7L=û”ÔK…)YhÐΧ2±j³Fmt#àô?&íúéÏx×Rð,5xð͌h¸HRq%Øz>b.3;F> g#eL¶ü|áQiØ~Åñ™üÊ9g3qè6Ÿ³X­äõ¡}ë÷°f¹çÃÁíÛókü*wË]Kï.¬7éós}™C„ùu}Ecuê¸u9ÖHÅÓ'¡é˜Ãªê•ÄŸÑ:æ †/,¦à%…µVò—¦k.,„lH[ + åp¬C9òðçŽ0²­9ŠàhÆ;-åÏ;13røÐý$U& æ"Æ;³tٛÎ›ùzg·<”Ü઼ØåÃr›˜…Ïm€Kåx¬`EÓÿM»o4’O{ٞy°M4=tÁÛ:kì'‚⏠DhuàJƤ ñw‹ËÕ&+„Ü#㠁²9 s+ãyËtþ$ vÒÇmq8Á“©¿I¨øf +ßW™'‘×Jۙç]µ·õ©3a†)»W? +ßõŽm‰ë´HvõʱãÜmücƒw´–Re¡êöððˆÄ…•˜/wìP3‡sšMâÖ T×ܙ#+…û÷¡ý³ð¿»uk’:ãK‚¼ô¶óÔ¨ È©·ùÀðtÇË) +&½Nþk·G£ ·þM$³‘EWwlC¬M9»›’Æy çÛ®éFâ›…î÷K÷ÿRN)ØÚæÐ!F´é‘;Åiд¿ +µjNßJà:Û#Ã=RE%¬+ª–žÚÌ›(uϔ@;#²·ˆx«c¼IÒ¦¯ûG~Ï~Ñl~ µVâ‚êÄ{¾œîÜÃý¼0êõõo§ñšLˤ“¶ÂXŸÒŒgÔNªÎƒòĖNRm‡Ó±1ø6b‰!#\¨öiÄ»”inÀí„ç$)b 뺯7’2Œiwª†"Fn£#ë–×ÿ°þ˜ñ)Ô±”AÆÎt }Û«Ù¬!I‹fä[=¸Žwz½Tl—#œh¸öåQT“PË£ºïÈ[­Žg]ZÂ-…Í]äZ¥—5r)?;×[6+ð J ‰†mf‡$êÚ±ê-éñ¶ ÞYØhÈö‰Ôª öc8 ®¡yÃ$í¯Ø¼6±Š´{­o¨éØ\GG€ÆLã(5ó6 ¥)-J—zÆL$¥ñ‚ZÔQ_ÛP—u"P>ýYc\2O4À--5ŽØ›’XàG¸gðù™¡Žd¿7M¤¢Ïs%Ë®úIvÐ%|M÷ÿD‘È¢f$-8ašÎê^süÎ?¥ƒdû9•×öˇªD%A… öv‰9EÕÜäeãÏ<̱Q7ÒÌ¢n^HÌJð¢Né uJœÀÔjŒL%uóNïyÎzÄèƒN¥áò Ûøc4ÿ2¾ê×dhΚ'Ó‡Û‚œÖÑn]ÂYãõ0¼iÜÝØ÷ã¨R¹þ‡4·“Á:»Æ@h´•éîåýýBLòrÖÝýXBuÌCN3¦'ɕG 3¯¶ãû¼Uú?>ÎòÀtV#×EŽïEËëvnô„'VÉÏø0R!<Ζ–§s,_9ÖޒœOÍy1fa×UÃpMIJ/Ësœ‚<±_¹èÑ(ˆÿ&Ó&; !Þ@(‡¶ê¸•F³ÐU®X&è±Hî°ÏYrúD!=´(Æ]ZÑÕõœ²ì¶“BÒwJW·; בbÀP”z†jŠÎc»…âÜõMôý¼p¤‚ésV}Œ8Ê2ofJJ|Qåë]}®Çÿ\4_Q|-þ#ôƒ-[ðSvCIsÆO¡Îf Î2…ü-šòcmž’ú£§í±šUˆßIñìÑ/ °¼&`*–ÞÕpáƒß~¹$¼³È,¢GX-õ• ½Šw¤D %¹;Þ"ú^¹ÈºùM Ûh@¤Þñ8¿pŸ( ìŠ2»„ãèäÍ\éøÚr“à³·Q†ë´Ê)¼×ãÀz{*´d†ÏicoF ;¾}]̀y.Qíuzîqú6Ÿº=¢¬ˆBtñV¨·‘ÕÙ94‘á­Ø¬KsÝAÃèUvEÉ´j–NlìóãXÐKòÕ$.L…ÂU¢áÚçÆVÅ þwV‚QɅßóœŽòkxÙ=§ß×ēûƒñjMÓÛa{ ·ñõ¹e¾A:{Ïóµÿ©yŸe¦õDõŨè³€Ê鸰§«ÅN;Oò6O½OrMà=C]aOv¥ãEß­ÌýøU¾ÇÀÂÂö'ïbÔ­ƒ²­–^ŠÑ™ŸÓ†¼º£FI•@éðº&1/÷ÛqAëéùêhFÛæaQ@•ƒmSu›Í¹ÆûØ^7QAc3T 1d)*KÛjÈö–+‰©à=aøŠG%7…f£ææóÞ Å0Bn'dÞsIz‰ùԋNæ¤Ø`Îk¡C&GÜ@1·@Œ‘¼Û ;—/)ãé‡4ãk]¢*ŸÄX(B²ÞÖx|[aäŒæõpI1W¬d- a pêìÏ3­ꅡÆ&ܸi£¶W&&±_å&ðÆ/&¾it³VŽíCÈcIt[Ö°Ön J²áa±ØˆMO&3âóϬ†TŠÖÑïôjÐÕ-Ù¢þë “"7[ž11ÙAÔ_˜•KåÜsväh¢ñÃ@o™„ ,˅ï9ÐùvuƒÜ‰FÇ´ÀbBq³ …q«\æx+–w»øëÌhQYû|Q©F k^.w}öÊUÿ€ÖÊ֌qà:Sbº„·4Q.Õ݅ÈVoŠçF}÷cµ³‡q`­ÐØ3¦LczÆ ‹Ÿ²’ËÒ½Š~î9´½Ö5ýÏ.:aìôWîÃÞ4/ N=›–-\/ãÿL>­èؕCw›å¤ù¢w0D¸ªÐ±¥ÎuJ™"s»Û…Õ:M°3I•ÁPãŠÌð.$K›Ñ3’f‹4Üúßʱnmf\,…!9o-õÖ!ñ¢Ñô‰åDŽ‹ªˆ°O"Œéúuá }i Yq¨Ë¾QšWÆn.éCR/›ö–±„ÀGN}nýÝoˆræ fÒϵî}ŒÖªü¡møm;Êy4—«¨Ý¿ Ðr}émM‚>SžÇiéK".Qw'‚µ#%\3—³ˆBEemㄕô˸W]ÚOÚ·öÑe~£Uóz ¹ïŠlÁYØÙOúpåК–zi¾évÛ.ÓIcbwÚ[SIs Ò¿Ôaӄ¥æ¶zUŒÅ,{Aޗº>9~'ìµ(ç!¹kuÊUnªl'±!Ù$ÆþëyÖ2àkm¸MïÐÇòøºlš”„ˆ‹«Y}@e,MÆýnU§MïŒ-¢˜:e8 ð>€Xµ àš žBë ´‘ Ë÷Y}P ɓK tô~r­”Yç¾ð|ÂäOVnˆ€ÒHcß›!7»°hš-Ì$#HV VZÏd‘Ǫߓ«0q£@ÇW#…Ùd¾/£ßø²9ÂP6å~£Ñi9\Ú Œ)À—®>UlaÓ´¶°ûö?O›ítt+vœ{©§\yºìã3þ¾‚r„HšÐ”åUh ¼Mþ“Ix (Æ ŠÃ’CmÇPß)õ~“¤,š×玲{Î  ö麰ÿ³,A¾³K#K¡}ËÔ§A zè®#çlª +ÌQšû¹¹´#%œnáÙD{௱>}ZÞ¾c'7øo$W¼4è–úŽhQ¾ŽÀ¤² T®mþžš7ÈËÆá‹D}Ò_²hÉøA9¯UÝe3Uj(‚æq˚”d‘ +²8`×\æ—Nn!y–uܶ–¸k€Š[1·\6lË_…‘6¹Â¼\¶ñŠÒ¸‡,Ùå[.:åã#Ìïkź¤ë2°hJ)Ù7Ԝr4§?ÇðVßW./؆€´¤‡2vI>²s{Ž›³.ö¹¶KݸIÔNvaÓè‰%$Cõá¿¢myf$…°ü “C ÒÄ\%‡ŒÌ.“±ï7j~؟›Ô,"-ìԁ¯ÄX#îAÃÀè†Ô½^'-àŸÐX°©äøÂAÁ‚X_—k?¤à)÷  ûÄÿ¥Yû«ç\Ç׏?ÿϔÂG’ +ՔBx%o_`¾Š.v¤{íE"j೓eÏFŸÒÊA Pá4ºKµ&Ƽ\sƒ4œü‘M~-R¢ÍPñÕ`ïLS£Éƒ…:\-ò]ôë¦þ)¶c®†-Kgõ‘B•Ò;óYò åÏ?\u(ç¥~ƒÌU_ëgZ°¯£ÜNj1ÑþǃàV†:{vsÀ¹S¼hŒýZ±g$²0W?Èyqîad’t[¯èõÄÉ$ ë^ž~ù© U ®^ª™,´ê§Å ¯ÖÅ°p†í}]¹¾”8ßxéPà·×ø ó"Œë­º% †^%Í­¤Îûwú*tp3ý‹êڝ‘Ј'20•xJêÌʯ´sà·žùeÝÇ¥¼ª‡ª,É ¥Ó\IÏBa¼#¹i•+R ò†NH÷«<ý`Š:Á«é󄲌‡Ÿäð¿Y†¢”{ü;ÈdÆá{zS’ʬ4 m®^‹»ê4é¬0òaŽ¼ö*tæÃn1S «‘Ç@`Æ¥GìqÞµ†8--ÏûҚõóY&TÝÇôt˜&(ú°äŽkÿ–\¼6 Zó~B6iå_¥}¸ó1Lñ"¦÷ E-ØKŽô±ÙUmc¨ÏŸ,ïµlbèvwŲÍ48©Q²…Ð +ÿ”Š¯øöKb@ô!{¶ïE@<;€è+î§ÅbUárÞþ[ˆ4¼ü¹­"ŽS`:v-Ëbã É§l2 Ü51Dñu·”“o#,y»RÞå +TÌº1û¯wˆ\èòÔrécÄÿ•wê³¢H ¬&õáî­¬Û¹V=s øwS^°­!×0”fÈ +3!„c|k›]BHVˆ|g¹Š)§öÿ¾U‡jÏáMßT›ò%ûÑ#ŽA»Ü}úóf¹‚±ç›Šä&^6kko‘W¶{8yRÛäÇæef€¥Å¥ø£±gŽ8!c]‰½*ÄF3jјýrcY§¤7ʈÏÂÿø%€AŽ‘à«%w±¬fÒµÒ£® 5ÔY0J¥¿FF×qK|O¤÷xÿä@µÂ@U²S2Äò¯É9È ¿B2?ÁÃ[¨÷¼ TMoZºˆ±<Ÿð)Í,`l¨QÍ2“Ej9>wŽá§KH*<.*¸…ïÙw¢ïÞ¹ÚYGu>líSãg‹„·[‚®°=²‰ „ ÃT‘'ãÖ² /é÷ؽ6®Ðáõ{í£ß4„~CÅZS𴬳‘33›9‰MfoêÑUÒ¥|) òæ@ù•/ ÙŠ„x ü¢æY-&t35¾Vx‹]uË؋ë ñ2©¨A<¬m’)€#;!‰õ¼pØØjT;"Ã4vFƒód¦ƒEwW±·IÇb8ºÔDÑ)ڃH±nŠV¨ +Ûí]œq–îJÁ»%t•Œ 0Gÿþ£Úí¬!žmÝ2Uâà¥!—@RÇØø’‹TȞŸÊ!lÜ3èÐ[AEÑå>D @Èò]°OÙáü2¾ô! WI;¸Vˆt;Ü 'Ç((ÌÛ¤Bõɼ'*!gíØÓñ•Žè$¥¾Ã…sQi%u۟³9Hï‘Ì: ß½a>¯|ïcóûi¨-6ð¤Ü’ýGr‡lْ»k]ir ªÀA¿¿¸OØæg ÝCõØØñ›†^f¶ž¾ŸwWˆ®˜oKG8r¦Ÿš=a/cеWÐꩦ\ò¯²î€GyD"ó˜LÆ + WEEtUþ»¼8z… Â_1³Ë子ÔNè‡NTÞ:GÆüx_Ä#Ùä< PÂÈ·K÷Œð‰–3òÎùF ±¤ †ëÿ/ÌþH°@Ô‘=è’_áïv< JöXŒnyy…tEÅ Uj1n2ö{ÁNÍ+ÇQÑ̙!êe:3p³„É.°Lµ¥1wEÍ 6TÜV•8å£8eÌÈ(,¡‡p[Í. ]硳u´É‡g]rºë®Ç$«2mضˆ ¦ž- ÿá/a"]ç´êOá?TŽ4N=£às$Ö]@ÞÓržd¡üø9!Êksš¸4¨1Ãôc·TݬzƒG׬îú&I“Ô’N©iچ)"¨} "X$L2ØBè#°1SøiΖ֝B˜*~«â«„QÛh1Y£”yð3­Ì?DÁ ¶Îxo8^>‰nƒ½ÊÂÙ3†ÂTμôœ#….}”R£èˆÏP6 ÞZúØdßí‡ÿQ$„Ü}½YF@ŸdXr#˧ïy ԑü"Ò²Iú‘ ½Ò_"ªsxI†C…¬+XwµäÞ!jJMé£ m,ËK«Ïæ¯×>ûòs3UÅÆÈ:…c +UªQJ1]ï$tË×ñ˜B D;„],¨G'Ês2›vAªÔŠDW3†ÞösS0~¤Å]\™ðµ|ðúPðmˏ=T|»[,öŸâÒp—J³ûýîz3»A@Øã5Kióï t@‰:ËQWc¹ä|(ÏJ¾C›¥å—¦ÀñÀÝNvÈ6ÙVE=®ÄØÒG½—ûì†ýב³8”o ñŽÙ¼©=‘Y¿%'å?bÁ¯ašË?IfÄ"ò3CCànMúì)!›ë2”Ír1?bqÇR ï[÷µä][H÷´–r‘ØôÁÌhðCKå֒ÓÇ‚óíÖ|;ÍR >Šø +.wâ5æÆsjÀ'ǪŤ+BhÀë/b)ëâô,éoÖ{,Ž¥pÜJ×.ÍpýÞßD~óœPȂ”~ÞÄxAÀfobȎyùÌuþYʁ֞FC®=¡Ù™z ­ø áßæ y; V7D> +á\7P kÄ «øÿF<(Ü´aƱАO*¡ޙ삐‰SÍTàFùÓ…,ëÜ¥ë Ä¢[Ž)ÛRo9U4:±hг"_­ZñäÍÙµÊü·˜ÉÕ¹ö،}>ÎJ€¡…ÒXý¬&=Ãyöìtu´„Bz§yÞÀvçӄY©0&›ö[„jÈj’I­ú¬±¬OøɨK;‰Ý`bªB¤•M̯•;ô À\U3W7AbΙs8¸yö}Aà{–ð‡K˜ +ë²oUZuºø-Ó¢e<úôë®ÈàÉ=‹W7ý_SòE©I ¤§db€1QE,ÂîsãkM2ùÃ"xööÉIKÜþ}JÒÉG°{A-+šÜÑaõ¤ùò·éã±Wø¾aÀpAσÔrÊkÿ,µŽ)¯†nÀ†«B¤j p8¹jChååЄ`Ýô‘_fþ0Ðð4.Zÿ ¸Agí/õõ,yÇ r*.$ {Ö`Ü0´‘(.Û¤ã$‚°*ìFÚõA‚w®¬Ç%š^ó“Ü÷ßSƒD›3¬žsP—µÐx®Æ ÈȐ-¸̺ÀÍ)«|¾ÐŸ¾z„S!ÖatÓõ&Cs‰EºfOÆâ°T‘ÊلBÉýOxtcH±ÄÞ²kà7='|¤iæÛ£SÕ®T.LýMVµ'AˆZ~b¼gŸå ^¾q¨GН±ÊÎÚÏ¿—IÏK[琇$±maÙkóc”‘ý)½¥/)7ûá¼aßÏ¥±çl©Nu³‰KM­’V6ßôl“¬ xYxܬ¶° Š127Ç,Í_ÊÑS‚kä õVF +§ö £N‹´W( é§ïªÿTۑሪ;ûs‹ÌÆ‰9‡6œ~kZzäðt†[’osÖÛç8bµ©uv5X÷ƒH¬+÷‹4֌ + KÍxly·J—Š¡W»Äø QÛд†-øºû2Ž†7Í=f—d9ùúo'÷cbžï›Ú§Wð³ô’ÈÏx²Ðu×ìkÏ\åfIòOt‡ÙG´K?ËS€ŽEÈ%א pàˆ:Jua'Ìä=ÓQ3Kô™@ý{bÌ_þ +,vEˆ‡©J³-:Jy‰œÁ³ÝØbÓƒuãED»±_ƒ|¯Ô¢©SuåŸ4BÙ<í_›wòÉL!ûñ/¤<°{'‘}b‘íþÙÄ[söîÀ çe¿o+}éÓD’$ÚΆ_£7@ŸÂNŇf×(#ü¡˜‹ëÌX²  k€£þQ>ÆV\»¤~æÅîwx# 9u\ȪÉfF‰L *Ÿ%:$[hñü¥ÕŒ•%n-eY–\a.³R}œÏN¦}þ/\f;oå1ö¾b÷Œe†B ôŒs:´êÁŒO`tñ8©ƒ\—Ÿ¸µû'{u;à Þ`¥?µÕˆ¾Çâ㉯¨i_†îדN©E»Vù:¯€8À›ÕŸ—²AòÑ`iÉ»ƒÑðåM/ۏ" · +õ.q_€ÃSo‚á.{à ҁ:íÜhª.Eç7[³•¡ü¤’ îîÃ^uæCîS̑‘åUÇ9=1ãw:£ã)F[c¨Žb™å?êÈï._23º™;õ¼;ÜpoçLƟ‹§¯ßÑv̋ËüâÏ°Rö^ zéûì’Zæ=ë˜ió °S.ÜÉÛg­O\—/ƒ‡½ ºŠH; õ¦n,«° ÂzQãy«^þn–Õƒ)E-•1üŸôV$ ½[­²?A"¶~çU©S»ø©KZœÓä rBÅ!)%œ|P0Õڈu«ñ‚ýMKӐòoKíþÿA÷ñ*K\uÙûwZzÛCFwŒägú­3Î(Ö2ßáû5Žì¡MmÏè4|åÑ€¶Sʒù| +JçjSO(&aOuY矗ÂÄ%ZM(ZªôrÝD‰vHŽœJ«Þ´¹òm"­¥\Ó ž!BRâ÷µï“3ÚyáŽ!Z™²+sÐø‹<ÏV¦rb_¬Õu훤¯ë£ ÁªïFÆêò“]…”š[uýÎÙɨŽ\T5¡øá”é¡ú>":y&¨<ö=Á.ÙP4BÚ½e„à„q-þ›˜MOµ•‚( $ËC¨¼Íù.`ß¿Œ|Tiè–çj<×"·áxnKàc Ԏ˜.zJj™UÎ.ŸEwA£ø6}˜˜y!1¢Ÿ”gvu'@¥ù’Ý#§' ˆ‚üȾ¥ñt©jÅÙ)']Iµ—8Jÿ¥¡ôñú|ÜoU.ª_4ºÈÄՕ|R4dkâô‘¢d«¤vh±¸´Ãî‡ïÄàAGD÷ƒTÛtX*Ó7a9œ¬‡¡,%8¬»>äVŠÑ;¡­†:l4 f‰¿-¢/'\·ÛÛLH««läé{uÊ1G.'J$=kö šð=½õD_”X^”SÝÀÛ¢IȖV²‘鲏И#Zº±{5@5ñU†€gÆkEìI©Ho—¥Ãq”µr·º©d•‚Î)éàõÿ¿ƒºñLÞt“a’¥´ú¼}ÃDñuÆ_܇Ȼˆ|ÏPŅ͙{ÁÔã5ºA¸}Ê ¿Û öÏ?EþCt$£û¼ ÐÉàÙûŠâ4}8¤å—ûÜmÆÉO3§[L¶SãóMUSb‘gzڕ­¼9<ñ©÷I‹´ +ü…–&Ÿ5þ¸3è(–¡y9a”Ö“ßì j¸ø>™ Vâì ×£yÉ<’13‹Îà5þ¥óÑ>ˆN²nÔß»÷ ìRãÑÞόuè\Ó¶ýí€Þ§qÔAïCt–6rE:w‹*|LÎcúE¯>î×=Úᦂ|(õèĈiú¡Ó ÑP+Ïl¬$Ø»ŒcÍã3NeÐ ïÕ¸ë‡Z[„Åq´SpŽ©3c•ˆ:CšhŸ”[ýµé{B&ÜOkSE_ý_˜,ðWw +f&Þ±É͒ŒÅ ¸”ÀÅõó‹_Z`s€E{HۇTª,&°Ý:¾ ›SÎé!l–2 ûLét䚟ò¨¿C«µ_ ÿ.Í®ìÁ•ô7²«^nÉÂZ# Yk7©–È°¼=¨ÂÈŠRDb³fµÒk‹*÷Õ°€|2Y0 +‚ÍC‘ ñšÈ‘øúëa"’3e4I.¡ŠS—¨ÎÁHâÕQjÓµ!ÊzÚ ëþcsgEatßù›]¢FÑR Œf,:Š…vkTŒ!CV)‰ïzÄ ß´‘I`8)ýMY_äIm*R|÷m|’ÍùP¨ÈSÇÀÕæ8W’¦5g ñA¿ ÁÃY¯Å»”¼9ŸÔº·Of]O÷t½F¦UûZ‰Ðž|¡§¾94$ôŠ[cJÌ¡Yïõ¾tmې%NJœGÿ0aù7ëCh@–øHk~““ÎÌ >Q¼fJνÓm`…ûbÔÉÛ\×±ˆ9ÿɗ9Åï õ„¾ºˆŸ¾&Cëž1Ίҗ@iE}ø3ˆÉÉÃBÇ ôXZÿΈ”:  QÅ.3VìQº[ªp7+Vi§½è!«-vf¬­/Y¿f¿¬"n>ДZÎ*”F°óŸWWG¤ÿó²u…E€˜O+{_´UI —A̹hº²§«ð_H0@þ@¼5©¶y_\àɪpbJâ8€ÒU0` ÚL“k­²^«²’ÕW^™zEÿ4£Ä³f÷§™§èÝHû@x/Dö0Èú¶ù%3ůX} •Äü:QIÞµeÞHXg,©0¯0uoôºmá®z7œJôé©uª·á¥®‡t¢„ÿáwQÕ$8½æMBùK‘‹‰¿ÿ+‡ ‡ƒ TpC¦Zs¬8áÚyy‰bàÕ7*änrRìÝ×¥]}eà~•Q4âîú™÷z¥†§úŒP©ä1¾:tÄy®K=å~-ï\SÅÆ“Ë—#u +¢ôº[çV>—ßN–0LX&dIÿÌ:q˜>¸–”Ýuæxo½žkà=–”€ z◎vDCߨSä@þš¥]»Jíõ­']“Õ {EP Y=mú’;w:(H5Ó _EðTÃE˜Qc„5„HøG8ÁU†ßAޞ +czNÌ'Àò}?Êx9Ü1`ÉsÎܳߵERà¥Þ ’y62"Ž#ôȹRѲƒ»#á²Ï:#€‡* rª¯T>Å ÷ü ®ûd̝C\ƍÙÛ´@‚âý±Wô™âýËUÁøfŠ©Ù_Œd1οZ [€sž퐅@Ÿ¹Æ·œ ^ÎÕ!ÌO1uºŒZŠøZÇøž¾ž^ÿ@žžb<ÁR£k eŸ¤7†2’€áÏõ8Ýv ]úø5ŠÖÈX…—á40Çr¾mýyNJ:Ü儯Ù¸³‚ý!@뀋•0ÿç”]%*3p½|AЍþ£–ÔSf¦“g’`6Ÿ| ØH£ ƒŸ(‹eüÈú—Wɳ‰$6>jY$ûa2¥XPŸ¢ ‹ù©Éú—¢f/H“¥(P¸¿0ISœvFè77ž7n¹«f'¬¶.d¸+é,°­¦ÓY‘Ç’º¿’IÉbÓß2Õ·É ¯¼ŽCy­£a]¿8|ÛëÝÁŹùÇ ]¤¶ðÛí<ËZ7¹lBiÓñ[ÞޖõÒ1$/95qLL³Òb£™¾F³£GþJ 3‰ø}ýN„ÒÇçø7å‘ÄLj¡J}Aýÿtµpe>ºÆĬ"M£»íÊùmÌ´{³âë¡ùùk8›¼ðR5ÞÓWúŗ¨3ž i”}ÎÚç‹qh¶ƒø5ñ#­´þÀxb&Gf];Dtãû^@¿+æ^H‰ž+›&H_tlŸ2¡|È|ì ¹âWïYûÑü‰v‰E°øTê‡ +¯{Båé{æ÷>i†GÇþíùº¥û”²Žá?M9èÍã6êë nã´8¢ÁNª•}¢éìSט¼²- P@-j4,œH¬wK‚ÃvºU19ÞzücGIN + èS4=–ÒÐ ¬»¡cB⬴€Å¨°rµ’-y*j‡~õ}}ñހØ]iïG“ jyu~‰ \öl [ÌiÕ¹yÙ& J.=’uتŽY6M2 æ´ÕÞÏ0ÿªüì—Ài½äÓU1ëŒ&¿ @¤Y&OâéÈ3£ÉÖþ0%Ÿ Þ¶Ë ðÔ)ïI»& ú©P³í@çAPŒ–j¯ÓŠ¹™fþȉýW¶˜¡<{òyÒ^¬”øÝ;uË*c`î’1¨®Y/cÜ݋/ òôàòc.½þ\©ê¯×ý}UU£)(O.Í\„Wȵ¡$FþŠI<ā‘ÎOºvú1fÅ>ÏÿmÀTÕUr‡å4uíS£e)ŸÆ֧Ǝ ,+A[6¯:_žáÄ;–º@ +cýšhñLvÐçôÚtSþøɛT¯ËBºm;|ÃYž‰"uæ±Ö9IS"2øShÔ£ •¥*ƒ%ª»``äФ6Û+Ç [ïk—÷{¢ŽN°ÉÝϢހI1”üõ­u×9ø½9,>“ %&nŒébÞ" H=Ö¨G¶ƒâ™4ÉTû«P¤©*‹ýF¼Œ5r+í8…ï°cÇÔ±HY5´¯,z(¾²t:f‰§¤KÃVQAóâÿ|(Í¿0‚£ó€…‰ãðÐüì͂4wiÁÒ!Á‘ß@cRޑ³3>)¿;¹V£):ï'›B ô=Ù4ªBŒ X€Ÿ!¶þ»‘°,Ãîüˆ<äŸÙ‹ /¡à á·¹KÖ¿D¥!Î 6FeÙ)k̏E»‹oƒµÚ^×ßîÆͽcš¦`IMb¹ŸEûÔ½«}àKhŽú[”nSè·´/k™}Jàvé­é^öBY8%SƒJzÌRÌceJî¦Ì¦óÏ b“§dûBôªºSˆ@Éý<¤ wÚ»‡pÙ2™Avùxêl be¨±±»4ˆ’K…‚ /MÖ*§Îˆ´!ç?OdÔbf©e$*­5Ki4ÕhÙ!ý… +à_gqÄþ’ö¿½o~n·çXZ>®­+ûv[*Üó.uÙí!!¡2GÄ ŸCð{ +Dú´Wì(E»Ë'1~!¼nN§šŽ7¡Zq¡Žn@÷òüXð^‘DNޓWԘò‰þCÛR “¿2|QN»f!E“}ã$™¸cð—v8ÆÀbU¯rðÚ msÛó1L_o= Û^~”«NuºéíMÏa~Þÿ^i¸³Ï*d®=[mOÌpœô·@Êzþ×Ò 6AÝÏʱÌøñfòØ¡2é­XcR9UŽÞ·÷öy…L ± +ðåx›þ&äŒW;Õ_®ÃfýC&-[7©b@?i†‡™ºþA1¾¶ÙrO%–C‚s0ð™É¥‡1ÒHN$œÅpìg) s†ŒÅÉI`= +~1³Ð†ÝÍæûɘ”&fŝÁ߬Ù:ŠÂ¹jË™ÕF(0šôá4Ù?pJƒÅZÚÜùÁbm vK|² +Þ_ёò×_艽<1_-xÞQÍN°x06ßZóÌí\ +ãã¿y¡˜èX&‹ü¾5˜1iFúÓ¸ ²÷jsÜ:·x-¯–41Ót’w\Å­¸oPo¬ÓÜCn'ktâ`ÜZÌým¬ÿrŠ->6lh+*l1t… éár(…çþJ¬–}Çwh|ËÐ7›÷©4Ú«sèBÝoÆ÷ñ@j9?š Îß9ýw?D9.[N2Áøk-Ò}—Þ{¥yÆuµá];öRî7¡²‹éSp’´u¹ÚXob±UÄ%dób”<’[ øÄ<Òá zd÷C’o^cñu |üz¥ûGèVW‰¬«óû™pùfi¸‚}søÍÔ©«$†îÅgš]^@%ð4õ»‹›cüÚˆ~\¬?TÿpÞ+êÉM«¶Ïû:h÷{Sړ[µ0×Û+68ŒhóÓnª$¦y%½§ÚÖ9ã +wë»æ°Ÿôªçɂîzú;vÉRvS¹©5°ø.*K¶µ:T 1ã+냮KŸ_vkÎ•â©´ þ› ­…Z’JX¦p•Í5 +ûs&‚·†#ýšõÿ$0d"…†—¡<‰>-‚©U·•=Íð[°ƒÉ|@Ðd²ª ~EPz‡¿p1øQÁ,ZÒÖîT?â¤óŸfÿ„Àñ¹N0QmfGí½Ù¬¸€Ä#`{߁Gyêç“ÇÀ“” $Ö¥c ¯DgÂï®às$H‰³ÔÔX,Âçä²õ®ËbôÔöW§¤Ôؐé5œŸÇŒÌ”!¹à`~?$‹1÷ÞUªpTxJÞìÅýŸ£Æ‹}¤Gà·í}$árGÇ<ššÌá.†'Иr(ÛôGMЮ³BòT¥ºÔ¾'_¡OUÉô'Éú˖,(.Ÿ\" ‡ D¡J€(IS‚ÈìØV™q–«Bè÷? /1f__Êê!$ñ$Ö” ­‡ruÓ1&¹& ¿ Çër¹ÁÒs:ŒR Á¨Të¯Òl|7üü8¾ƒeÿé) ,¦¼az3ÃP:ߟj¦X1X98rýô|yàìŽÀÝÛ ±‡2°Å%YZ¶èÈ=a{zºº‚#:"a£ú7p>ר1r¤j“_»6¤ŽSyp#ý¹·²X½pù)R¿ôúŠªýW‡‚ƒaÃD€˜˜ŽÃç›Ò2<ŒÕ°½[^*Séû€Où†I9¡áZñâ†æžûP­X” ÖÍg›*?J€Ö‹ƒ£ŽLCp;¢ª8®œg¤`$LRšrîT)P% £‚ÉÊÖ:ED-Ê+¢@²Ãl%J‹èdŠZ1JM8´ápÎ#¦BÛþfê÷õŒiØ@™6OL¯‘¬Gß* )ƨàöÜÅHÄ»i×j9 Š²ÂҒ·˜ª±G0¥— K 8ewúÞ:Ñ<ì™VQJˆ&ubÆc!‰c9å;'(žÓ0·~ëyé¼,­·výQ]—/è-9˜û÷$Ýæs'*й륊·œ(ìõDìÔ«<(:+/ËR0Kj–Ûc «ñFšcœ¹Dn’܏ähWå0AõœAÈ£ŒÀъåHé¿Õfá3 <|.ã|rý ÿªÅýfà2‹O”_çG0žÉrÕOk»8è11'•=ãfÊ»ùŠيA±(V•»á[úS·Yá'§³o‚>›K_,xÿ[ØÖ¢ŽAf‡¶dQT¬Kº˜–þTèöƒ­¬õö£ydTÀŽ˜÷PÝ2k/êu*õ÷æeŸf7wx÷…Ûh|åÞp–RąuştJ×Åp£Ÿò·H«æEµ)r\7Ãë¥'ì$þH÷6·ö\E¢Ï»Ë7ßq"Æm}ô™Æ+ÁS , +VMHîAõ•²uשd„Ú‡çËJ¨cQ³E]€†ea_LÓg*t¸J¹¢¾=ZXdÏy&ÇSY¤S”vÃÇg¯¾Ÿ]KÙc‹UÍÆBE£cûž…Š·w̔/2Hh0ù'æ'øjRfÇù&£¥ŽXwý¯É¸(®¢êz’î¹Éė‰ûǖÛ/õ+?ý[{ÐÅɸÉmÁèszÈ?R›Yth ›y.s8«1i\_ŽŸ ±X³î&ÿ459>“²Ånj©fæЕ”°é³Yùôxù€^XBcÇ41ˬ{%Ø( ©|¡Nž1Æ*LÇòŪºW¡(ÔÃ|™MœǐÛô„dµ¯-&ém8zä`¹zUug´[$\ß{'YŒ˜ÿÉ»Ž=eZßOPÖ<ƒ½ +ÅãGµ’’IÊFëé{a aè[P¾à+ñmøDöoª^ØÚ ÕyIH† +Ó·ÖtËìô.¢1ù)f?•ü6ƒ$Ǻ²4ç’8ðàFã‘÷óÁ@b=Gô2×ÿ;b^͕ëœc*‹øžŸáýšÎT¦Ïm… ûgìèÊl1k«æ»ÖÓ+±-ïbh)Z,Ö­t2õ¦ÔËIòMì_°¿ã° s+©Ääœ^ڋ¹}Š¥æebQ“ HsÔb_Ëc‰wBÿŽ¶›‘€ÝW‡DM€]ƒûæñz‰ø”«\NNÒÒ¯ª¶²al +ìK*éΣ}Ý’ó¦>S$Z¼°Çòô§ +˜ô(µônƒ‹ ô…QÖ觯dHW2FÒÈUd2⊚9ŒL1"Lj-`¤bÜä «Ø逖¾'<†¡âŸ¼»ÛÙdþðzá´q,—3$g¶E HŒ¥wºô€Ôö#ñ‰@ž—Õc.âh'c³I}AuÕ´u^N¬·2#¦(¹ìRc=HW¿ìÅBSy4׫¶ÊR0Ë/”ӝ(°±²ùƒ†&ѯY†)ÎÈ×°,.è ¤|Ñ}qü5Öa#áûՄ‘3~(¼<Ú ûñIIá’iڀ¾<œãë àšÃÍ0à µ§gŽ½*-§‡N²¢õ]ÂSã¹(ºé XF̒ݰ6a¦¶ü5 -=ã”íQX,Üb%_œÓ.UVC'G©onËBn¸Ò>+~aÖÒ.ê¯.çdä9ØD{’UÄlŒyßuDQWì×%áÑ\ÿ©ù“w¼»©ïœ?Ž¥ÒSp)óY~(¯§$Öð£äú¹ëËåÐà?b!ýʺ‚¥E÷(H wÈG®β0/}Z˜4Ÿ*¡KÆMÑc`a]]ã°¦¤±¼ß›vÑò…žöO´…Ðh$%§šÆ ©Rp‹CÆ<Õ¼{ð9#í¨âÅ“ÅÛd^j|ßµ•ó…ŠôÍ §ÏŠq#Ú>z½úê9gæúòŸIG²FÍ+ž9SE¢;}U=<?Œˆ¦\šñ1ž­å-DižFCæ\Œ­ tªÉI…q‰{ +¶—†(b³¹EŽ³_QR¿±~Ì÷ô›© vÍÄæ3XÖ3ã¾^I— >È5b¼iÒlƒ•x†H>Ú×1EÈ~ œEØêO÷`‡Å— ãÈ«á0ÎñÑPþÐ%wö²|ä¹wq=c;5€e)ªòŠÌÍ}ê_KÇeJóGø"Šzã^ ºsv£Bš wsœ¼u9Ë9T2·Ðš®£¤ŽÞ…ö{õÿ=äu².rÍ}×c¶M+å=2NÏ¢4‰«ÓÎRx3½¢µ-ؤâãs4zá9fܘ¯í‚y#K¥L秽±Sa ›=@€‚In"î;Ÿ ¼ª¿ VJ åCd+»û«Ø•E-˜Hâ].‹®àŸÚÝÙM²òË,ÆÿTy=Ú¼¼^w¸$Š>¼Â(ùŸîÙLRæ+j…®dJNÖd3ö¾Nct; ÈÖDx¨ü?•¤,â•^¥òˆG¯Õ÷_‚çؗúIi¨÷.4¯ŠæÒ}óD?ufž78Iýàƒ´mƒÂ¤‹´DòL’2m¾Çû\ÜΡïûxM‰êÖ pÈ_žÜjκNbÎ+HÜåz¸Tö§m¡­‰·Šð ŽÆŸ/B”„€Ps‘º7›„ôÕ&þéVtØxV`Û `¹à\É8¯ü÷”bìÆÈpz˜Ñk˜ò?]% ç"˜pØV8â¹ìc׋¶Ö°³ÍŒ%B½_:¹wŸxxrRÓCÿp)÷…SêX~Øýå ŸÑÂ%” 'rcÛߣLëe,ð=OôKŠdWNr+xø±#ü…@Xȟ—ÞƒeúZ Ouç¥jН±füov×Í+Âp¬e[[t%^BèSØâ$.šø”¶·¯žÑž’î3 Q>I«†– Áª@ბQò)MOǔÑÈëZŒõ +xlLâ#¾!«™„ŸÇe_eR;•–ÏòfC“ #þ“‰ÁAÝQß¿À²P3~’<;tõ†nŠªÁÔADQa¿íÄP õX֚!=ºœ†ÎE ˜Fž;Íå„ËŠ=[VŒGÎÍ®‡ÐKÆ}ž3¶Ÿ¿ÒyO4¯Âž§Út›ý\ÐBéûg£xñ¨”β†HÆ|ìŒÞ÷.£E 4pPfü.ÉéçÛØ}3>V~úÓ+?5Yì&ÔËq¹N3<çǒC7[¡´·$«’8(³jdÃÙƒÈ{çiÎ¥`UðµZýxHiÎùá´1Íý/}µ M³w‚I›ñÁçžÔ½ØÒ cŒQóFpÔ՗&õ…°ôÖ¹¼õÂ8¸nd˜ kšùJ“ªïãƒ|ÎC½Àn"UÀþìYÒôìùf¡5.xæ}ŸB`º²Älán3 pÇ_„Q±÷.IŽÌ–é±Þzèɀ¿g—_ùϝd}óûIäXI(™kßJú湈ŠŸ>әڏîÁåLÏ¡U¨î ¬B®Â4Ï[ÅI¨¦”: ^}Ã@¿Üºª¹X'–ÙdûÆÒè€:*$$2¹A¨–û¢Á”²0ȟt"CUãX5;Ì~íð®'ÞAúÙ²Ôh²ÂîÀ¸öN–èn<‰q¦zEµ/¡(´V]w¬?8#vͱ!ï*ßjtª2c]âC^´¸]hyûÌ÷hAƒâkÑûÉ ¢¡˜Šf•µq£i௠•ÎµÍŠ±Ù8ëª8dÖ4sçWVBÁ²P8Û³OvZ­wïõIÑ64´Ÿ°4°Ôt…¥ž³Áºµ ú¡q– Ò8Â~xqP”ž0ª8‘Ç–în—àiۇÂV€ZyÐGa½åÛ"¹݅½•Üå׀‰‚£ˆg’œ•™PÅç<ʨ­'UWhëT²à¾·'‹ØSÊ{¬–§©U77$“’^dKÖ)a!v×4ÁõŒZ.Fi)b„1 µ«Yu+óÖ¦w!¯'Âe`i¥Ru.ë4FŸ‚ÚÐxðMi˜x)“}°@ºò§ÓÆ9¨_›‚)i=Nqæn‹põòØïÛPLÍc•¾Çí¼ºëÿ.jwŒƒ"o÷€ž1@d!» ªx±)›í`¼’ƒå#者́ ‡fD4~n„r9 øèU¡‰¸yÎV¥ †z‚Ñ ®'>!ߨ¾Ò¶G˜«Ç?»œË·‚]¤ÙcуŒÛ„z‡ÿ9yê'Ó¹–Ûn9,à°ea91¹ŸË;š¿ö(ƒ—ªSçKˆªIãÔçžN ç[úU{ÑKí ™ÄaUlp_ ö:µÁY©’çú}EZP©ì˜6ÅÅL3Rzë{Ï7xF»…¢E)ʸ§5kþ2€“ eÅþìò 4ãp.Ño9ݦ>/ûvþ´ ÔùéKº{®f®Ql±ì*ùù63mގÿUr‘ÚãÈ4ð¾Ðm¬ðS‘³âÉZ0ÝÉ7ºK8fŸfL®ôÅÑwKšõ흆}Ðjñ-XÔ~Žv‚Úߓ…hg|oua…°±Þ¿!nºkÉyçQ‹c:uÀaÚ/_¾2«öSˆ!,ÇY°Zµ¯ÕÅ™ÀXهAÔDür5¸Àz«9ÈÈ¾Ì p1¤rÍÊLUa«7,9ë/Á=;ûú”y¹$L¿@4àŽÕ"'&C"}赓B-Ðз˜'Š‹ý‡ÅåïÒ¬ü‚ÑûÙ*†Ã òþ¼+ç%ž÷ªU$VyÖd]UBt§í[–*\¶ 9)š8‘ÔBwÔ/†±Y¸,qC¾BşlŽ³áúì îõŠy=ü[?ÿ¸ĵ˜åîïòEòÊ?îʜÇì^ÉQŒ£r¾’Ô„Õæ%  &BA¯ý±€"»Œ^ñ•Ìçyº9Îw rËÜ•í£´^­IÃmr8É=ªl>¿† ²o¢™~:r”èE) »]:¸¥kã㯸HÑóļ{1Ç¢Q ƒþ±òŽÂMíºDj[¬“‡æÖÁ[οì…_Uæ + oŒÿ¡Ëp ÁµÝ¬"Újfµ³¬Ø Ó­¤»Ü ñWœ¾ùJîlÙAÓ]¯bøšgd‡w‰"ñrq¿ô6Šñ9éLä«/Ò9Çw%;=J«-b·3ÔF\-‡’*ËÙA§çxž’ñËU!ô֘QŒâFi/™¿3‰9eÓé[²]C»Û‰ÍÍ­!Ùr{WG¿Ÿ©ÐÄ8”Û¾³s0Žõ{D`jÖÀ];d:¦¾ô{m¶ÀÊ»|@k Dlev¯žxXi ԙ„¤“,½3Ò*\FzaýL"ï(f5ðòV:?gXë.Và/-Ši%vü¢Èûµˆ¤K¬/ûŸŽÖÜ >‡ð“ ŽúžìãÇ ñäÇÕRÌUÈ£Ž°ó²6M×îNú·¹¦ˆR)߬ì–ߟž[ãÞ; *WNH¬›ÿ¯ß¸ý¸(?t eVÛ«A‹±'÷ôI!o<á¼êëÔyèIŽÜ| + ZÐ\Ð<þsKá4KQ̌â{_µmL£¤Qª™»c›-ð*ìýbïÀ¡Öµ'¾Ÿv؇‘¾½‡øS¦Y÷z5ù;dÂRæ ¸¥'ƒdùÕnzFßî~ûáËa|™2è z$™ÍÌ|B~6Îÿ§„ó}Ùc42ÄÈÁÏ_Ê{ÌdS¿h ªÔ<_)¶A¿ÙsØÙ#ÇJ¤üò+W~ËUtl +4àêˆÚkQùlÿÙî'¼³” o:Ï{Yd)7£ÌÙ*WWËìR›­u(Én%2,°ïÞυ.¿ë–Jš…Ï~ lœž-Úåwù¬.¼oŽsUs2û½ÀÀZs_ð1ÙÓ'ъ§³ŒÊ‚?Š'¿kËL¯„r,@CœªLÞ¾d֐_ٟàÂքÎO¿ØEY|צ`lЯè›F>NŽ£W罘¢­|6‘¼¼ˆk9à4ÕzgŒ*2àÝᐷé°ÛÏœ·œ€Y"§ .>¼‹â´»9rÙï&¯˜ð „ûû— —:…±7h:ª[ê:ÁK[‹[)5‹× Ì{À›Ý%†f5\Ú%MvÏã—È«Á`8Ãv§Ù¤""N?ç•óp;´;„žzè7/˜1úRÃ3šswÕ3)×_`Þëٚ¡ˆ1H¥¼5=EÀ„»V£0Š¤?ª+$‰) ˆ¡hUÙLK(j`d)!N-zk®Á &Å»ë[³ëqQZ,ì«<ÙÔo©–_ÿ°ªs˜Þ€3K£GĘ³ËPâքؤ@üÉB^xæU `UçkY¸/ãFR´r‡ÀôŽÁ€¢›Òi‚¬ÖçÞd0a×^MxÍf O‰Ð[îWð¿ç‘²lƒpÞÚqêè¥Ñ·Óp .9–Âw ìXo•wó‘îg´hæJÙzðW þø ƒV‡ ŒÏŽ8)U“ Fß·qýãº;$+φ 4ŸKA¨öÝH¶@ª| +)E)åõ;¾1 dFÏ:kaÞixšù5,?{ú?#¥+ښÍI¹jOfF™§w¾á:ªzâίGoqȝ5õÇ»øº +ë¾ Ôv86ÖVt¿2â EPe‘¢ûWqtXÌNå°i.ÿjɨÅùÐÊEßU À¿®Sš]̕5wãM²£ñHáÁv'C§1ñJ7m—¥S…øW.o1^à¡Gò#ê’ \Î+U7ʧRä>ðǦRMã2½ñ9€„t;bé8z+Nm0÷vÜüžÈÝ= )ßò=ÆÜ3òHnwÌôR¥ÿ£½±ÀU€”5û¢ÊIõ L#7¦;ŠKèÛI÷< êïDEÎ5i¦þ´sV{lœgÉHã•(“%ª_ñç€ÑtÐs³‡>vÆxuFaV{Œ!çm@²EX¶ŸáŠÔú]H&ø$#@ª¤ÆušWØ)1f|óR¯‰À[Lç:“ˆW/1hJû•W$  qëƒè»sÙóZ¦CÔ§hmíK–Duxِ1w—‡ògOß\ӆÆ’7®TڮǦûsˆÆ»ê¤·f›œ´Ä[Çq­OÃ|DZ¥\€QDxÃýn„D²ÈT<×c¼xk¨ñAT6¾êï¯øqòcyÒhÓ³•@ð† Þ¥*¸¦û:ƒÎ‰˜ÑŸnKÉêôDŒO]ïÐ*óÅU8š(ÉyDöœô0µÙ62’kÍõ#¿Ð²B= +áéE²€ï¡çˆvԓ´Ãë×=&¼Ïv0î»^À4Ê5;ÕX명r£¹â%Ï(s"¯¼=-LÙNýø|õ¦õCt–k„y\¼Vë.Æ=ŠaԆ[£ϏÔïv¹L^vÞ³ç#UÂãÒJ‘p¿ zË•ï©+–mÁT¸ɪÐíC¿Þè¥úóßôσ=úö‰FVŒ^TÌùþ‹’j.YZÂÕàðéô2lz^Ds}÷|'ö½_WÈÓŸ[tѪªLê_.]ù‚õmS}·ºãvÅv§Åƒ<¹)Ò\,1¶ã ¼B‹À\,،l¼mH€œž;WqœóÝIے]¶u¼ïû‚zîº|ǸY¢æÁçy¨‘ ð~+œJ!:ÜH¼™]8“|_X0kÇF§ªÆeûå~ß{Á Îþ@5HŤÚæ&Հßß*Ž¦öÊoH ûp‹Æ…|ü᥂ÝîeqKÕŸ!Ï1$ö:CåU/JHK™WáÛâ͙u¾"Z¾†Ý»·ÂiAáþ<8ôEõ¬7¿)<•Þ7xt7ÏàrJ¸.†ê•ý?î“ Ä1 +Ë3NJvQðN/׶¥æ¯n[æwYÞ8à‚¢ikËxúûü=¢ïý1ä¨ ɚÎQՐ™P±…¾Ùu9t\J£šÉ6V·lfçdȪB‰HC¸æýÜQ°Åb/ž×1Å:;N(ÉVÉìƒA76Ô}IfÊmø +÷ÿ\´’¸]¾_LWÞ:ÏâÍÓÑ÷?ÓªbaºA7_u©Í¼Â> +Tþ›³s;µ#d8!‘Œ§¥4Ê«e|Jî™Õy¥ûú¤eF¶’Ù†˜ƒßþÇ1Nö¢?UíyOÑk’Kw)NöÿD0Ÿô+yM; §kSՑÙõE¬DÍUŠZ¯;ÑÜ®ëÛóöFçeŸWyò M»Dã–H㺭3RCnIe¤¨q5•?¶ 5ˆu­^¶§ 2圆š·±·2’·kðjvf·ÂôaÙ 93ÎæÛm‚g’}¸‰}jà˜ ÍN‰fopNâ-`qWåM1è2¦ñˆUýó¤9SA­Ý2f‹2OD )ŸÏ>«·yÙÔ£¨feÈ7N¤M©)æw^‚Óà;•àl·(nº)-BÓ2>|÷°ŽGJ¹ä[N­*1ÚÔ ý´,¿Ëå'ŧÖ„¡¡š;¤7ت„Þš„¦œä8`^d*/¿ì±r¹5 +Ùµ˜®FLowa°÷ÙX +iÏVqþöAÔ¡ž¯Þ'úÐh)ëیšƒ`—æx™ö$Ã…Á CàäÓ,8_üOdÊÇä×)Tq!"¨™(å2µr*ˆY—§¯Ì¢æ9‰f¢Ãòéê3B¼µUè@«¨×ÂØ.5ô¡æê¥îã­ãe|“÷RÚ*ÜíÆr•õ#©WÛeãcàé^°ûëâ6À]PS}#œJV«s?äÎR ¿R>UV‹¸ ò´ŠBÊ]:KzŸ¯|8éÌv“Rc@¸ûyúÉZ¹{1¢P?H*wóó†¶8ãĄ̃Ѽ¿nØö¿Ø4|“ÖhŸf°¶‚šÙ˜Ø«Ã ¿—9\ίD¨Âˆ»ŽJÜìÑöõ|CP¾¢Ä¿Ǽ¬ÑÞzúS»D³¹»à|-8îbèúÃ(”é ‡¹ä?E'c˜pÕÆ.R*TA*No΋.%ñ•dì"4Ç«Heíœ+\2aôϦÐëzÂ:Mh0j6ü¤{}$‡[@”Ÿd¹-ZЏìbEû¥#B0ÕuHd\_jL‰Ö46pjZo|k[p¯“•÷@K9ªÏfG¿ÆE¡C³Ÿà²r‰ze¨æO<”ö’þAð-Šö}{#\€9õËb‚¾ÖòA@¢½ÃÕÄY¡íömšÊ3A½yg®æ•gÎYRþH¼mÄ]¯!ÛRÑ@z>»J«/LOƲLUœÌdrù‹Ž—¬iǸÁ>›4õÐÏhôöØ\î”T‹|S#”î Ñú ½îD]k‘¶Ä6Ñ(~ø7ÙT¯‘„¶‡!¢‘çòWu°§%çµzæðiü´v[æ™ú¦XÇð;q«C·i‚’þ{žúáµàÃr&¨n6-óoµ|Í"Áª©ƒ*\@ÓÉf´Ë?jœÀ'úÒi:Äæä‘ã—ô¢Â­JҜ<Jñ€Îù*òÁAš[ÆËA–á½Çý9 £LÖAšî\@¹çü¦… Mh´]>mâõA +ŽÚZx7 +SîLü²¸ð€»-ˆuJ'¼p1^(Nv]Îß/ÚçRÂoT¾F‚˜á,`wŸýXeè¬OÇýnnÌͲjågøÔ,€ü¸ e‘D2®¾ ùª¤ìšµÀ5ƵÏ!Ðáð8ԗA ÍÔT‰ä}ù’VR¤fø­f6½©Œd;Iœåg £øO¶VÏ_´†í‹<{´¡ë"…ÿR¼Õ#‰µm±)w åºAþ?x +þzrÂb–e8m$ê6¡{"JžWÈNqq&½™¡°:Š0"™ß{5e´èc&X3>ݎí¶udÂÑP(ű¥‹s®霳`9è)ÞGã•z‡ –®xñ«`0ue7ñl=áÞ²”d »äŸ}«>ûƯLüFÕu$7)-™Ø’(ì_ ¼ ÒÄÖ·£÷«Ñ²b|vWàÃÚ •k‹ð‰‡R<5~8X7>­_£Ž‚·£E@«­½N­×88½îaíG 6*ÐÔcò«HúäÃvÞ×-£©Ù»ßx¿ÉÕvpRæ¿,’ªäDãÙ³¹“xu B·%hÙðmÛ$ù]Íu“­¾ðﻈ”ßøBƒ¯YÀ.3`,¢ÚÉQhÐÌ +í/L%±%q&töۍáãR™¶é›lyCQ´ Y|ZÙj ÙϨÚVY-Nj,;܄WŒÉ$±ÖÄû£ŸTY6UñåîúêͶâJtä²\š¥Iß·m#`œ‰Ÿ¡äÔÚ\ñ±ÅÚ +ŠòøU˜?¶nêžä/ãåõ¯l«&¾üg›ˆ¥;òNÓ¦D-¦bI6ò)&ìœ ípÌ÷~_h^˟aeLå[ ®¯ø)×C8·Küäh ì¦^ ÑÁdB˜ç/4ǸÎòá_R¼§dqèà=N|jÑ<&…°êe–f÷ZŸ‚þã¾£É x+ =˜Øԅ.)Yˆˆ©]šÂ»÷Ò{}º&Ô\6û²JIÎý AlfUø,&¿¿Œ'IÁyZÐâžå€ {å‘YŠ»¾¼´u>ïk?͑L‰3&pсÌ=P’Ô“4<¢²Æk£a½0’¡À…ì¶Â>ôEg̑F°ÂÉS$e ¶E=–|¦PÃ0°SFAIÜj= 4%¯›†gíYóƒîeìeWŽÇøê1Ö5ÿëÚ?gÁøÕW».|ìE»"´ }ì'¤É œv³âümõٙï’e ™VåÚÓ,€oä®Ù®fóÙ6r?för´¬_ÿxÇ<ÔWHÒFÏG ¼ä–Yùû V—jЭd ©Hċâ_gpMf¸ðE6H·PxÙ.··¸gúÚ 7êªRèœÁðPºsàÍzٝÿm²8ޚ‡hOIt:U·h®Ãa‰)i‹9è.Õ®°bÏU¯i›ðUõ«~%ê"CI9]Sœƒ°©ÀÒõ7Ð= #fô+çÅyAƒé¾úú ¬éxòcf,ȳfdÃ"oÀqaG ×MkãÛéÅ6“+…cüˆøŽ°â; +9`]ídjÙ¿ˆ,¡½Ê“ôOéwiȍ¤º¿‘5ß +Þ¢]I{ô”öb§#8‡  +ûúOU'²8²¼›+ÀeôŸæÞ i,@xj"t<0TÅï0äm” Ô,fm%g®>{ +Õë±ÆáhÏÜ~Ÿ gÆ6šfVۑÁ~ ËU‘,Öº-¨<Ímíf‹ øñ„=–¯€½êuN @ÿÀQæ;|ܸg¿Cl@ó™ê@–B)‘/q>C•z ·à›¿’Xœ ‚ 5‘ ŒÂ¼˜›ôH!ë SÛ7²q#æRùŸòÚm„ñü@ álÀ ãó›óYr/c1ÂØyðî#¥%#“EX[‚–ªÓ™š†ß­jROH•¦9†D«¢š#¬·ú›b:\näõê$/ +½m[aÁPsõ‡µŽ’ê¸NÌ*'y³zÞäÙ £]v]ÓGŠv6Ës„÷˜šŸAŠ:ïTʺ©þÚØ};¥zQ=Òy€c®Qù-©^F×#h‰Ëø@ ïˆÝÈ¿ÞU¥~X•ªü9ý†‡Y9¥{AžóÕÿªâxšÝg¼uà Fivš‰§1¸Ó ÿG‘jÑ=µÑ²ÔŽlëo:ñc Âß×cö¡^záL®ÙyÕdL]ËJÞ C±áPîïÆ,⬦3‰ÀáŸb3žÃ6 †¿àÜb> ìü«š¶òMYV}]$_Ró|ª1PÀX”À<8äy&eYÛPñ^Ô¸£ñ%ð<„õƒ™”™(ºb½Îðp¡øÈ,O'+‹¿üÿ3͖6üàn¿ÿ¿¤^¾Ÿ;–èh©1(R¯ÍNñQ/GåzH†Žrï˜Í˜ǯÖ3ۄ²”þGÍF¹P°·üYöµT`~d(müK®8!PzwWV_iÁÕÂԅU$¥ڎ†¸¤ ¨vÚ+|¾ÔÛ0 1EÊÕiom-(Ûh:1}ÿÉàÖ»@h¯Ðünø ±ã*4½…qÝ1àHúá"Q,ýM€Ë¨´érlñÞ8 |ÊDš“ÊfÉn‹ømBÕ$Ÿ_´­:J§q1.ÁIÌëéÿƒ²<2‹ ‚æƒÞEQ¼[OážÇ¡Aí£—kæáÏòEãՀüKVdÞì(âúcGçkkó™ÚýuîKHÀj‰Ÿ»¯–â0+0•'TU¤öv~z²kß)FÝ=VE ÂKlÏË‹w„¡ïÔ`w5’Á¨“:ÏSó?ê<ͅ©­®wˆz'ðŠ<±Õ`çΟ<¨3/Î[@ðÍ"õP"&Ɇ y‡æ—¢gÁW(o +ìPÃëáîY’­”<È@5ž,_ð8,5§’¾í¼3|¬µÓp ›uUàØuž²‡éÿ—>”aT÷VæìP´Ü,äk|Ôú.ÌÌeiôúŽïùµHÉÐgÉ´¬à0¿²À'Ÿ:4út_ž=B~§Y*Ԍu?iÇäސð óÏ<—È€<Ï{“Ÿ{$m?t³”4ŽÉҌàM„Ä0š«ÝJÁã0¼¥XYö8˂Yà¢ô¿“8H£9tkYqõ†!9åæT{kaÕÛ^E‰ò4–¶@õlh–‰Œì3çӎ””ë’F + ~ "‰öçôÛ՗FùÙ²²T* Q+œuˆÈáŸeBٝY¥ë3Èm,{½W;ÑÂ%X%€1 êüLÌDqsºŒà;uUër/Ø÷ÜLh Ò½õ˜œ³ ˆ™ÎtrµYîÂG¢ÿ!<¥}(2ózoFXpbŸÑzÕ^Š'“iŸâ8ûLGxÞÞÒhE€³(öÄƽS¼JÅ¥ â~ ÁðÌGƒP­Á3!…S},6Á¤ûð&Yô”vQà‚Ü:jtÀ5!˜`b]{»×;*[¿cQY%Yzþü>4lISD|çN'Q€q_ÏþŒUòÁLµÎè@I%làŠ£ÚŽ¹Tu(X,¢ÈKß¾aÄO2ԍFàðÙÁdžüYaþž§d± ¨¢…Iþošg¯¿g î`p·N{kWš(¥û˜EY^=¥œ]DžQ,åϚØnâµj|¤{<«2%ýý—\—&}@æJ볍pˆãñ~=!ë²a8B˜K/Ey†#n¶¡T'B |YFX¹»7ïÁ]]Äd­TñÄGñ ‘Ò ¢ÌÜE,öJ¿»LÎéÏ¡Ï­RÓ,ζ,tž/¤zõ»'9©És5PN˜a˜fiÙÞ蹊UÙvQšÄtkþy™­kß˲ÉÍIïv·­Ãÿ'Þô:h ™çý±q,R*øíeÎ#3µ®n^:áÕ¡GEιOl†5'It¥¥L}FŽënæƒá–JІ®nÐ!Ëø×Í:òq|'&>xIoqÚΐ=ÛÆD§±ø¿ ÚJ•C¸æ.C~@Ú.†—ãýömšãRú[c'jÐð!BHwÁpjÄ40`3â⹗ìÑ)¯ ¡zªªø¬bóéDîðÌpÁcþVçÕ¹‰(Jéʶ?ðóÀ鲞ùÏMä¶NTnýtœö¿‡YÀÄ ãÛõü*q wÆg ªøY°yjº3Õ`êÈ=O¸ºcü„ŽRÍSÑXíÙڃ +w¢2K „ÕIøõbÅ#™Ui_§®Ù¡þí¶Ó£ß:”šuŸ¸i}š#œxÌÌtȊµ^Ây`4ÆVh‰ÉÁ´ç°väqàõNºã%}è¿âméô’hÎpÂÓ̚œ/bˆ¥d÷R’g’X›³œp¥A962w+zÞ¶ý˜ IźS¥Ùs™$K iò̏ FÅR“Á|¢›žH03|ÁÏi ½­ +%A»{+HxaÐãëY7ü$C¬M,|µ¢ïWÕN^ô ¸tðœ"b:ðg°’"Î74º²­·£†ð¤^mäõa©žÄ³|ý66ZG–<ý˜»a;x|[Žî»Õ繑‹ç?à/B\KL“ÿûñ +-…8\F7Bäòf`¸cW#¹R„gc\öՀ%ѹ×F÷½dÓ ‘†ŠÒ™œ¿ßðé›t±_€ÍEMÀ8¢Äa$ϬîdhUQsÓ+A›—éø¤¯Ý?ÏÚÖøìS·*Ú?ÌZWŽøƒå C?Â)m©ïOz~ÀÂïíú »e6è*Ç4×6”˯ވ¸¯ÿ~ªÍ ÷ŒtSÏ3Øä¯|l̺ϣþøôàÁçnæÛí© µëó…Îø<ˆÚ›ðÒ¥ún½gܙ™L–Q‘EË£ûȒÃPQ„>êp9ë÷¦®-,ìà)õS7žM¿¡TkJõg"WšýÌMîâ W73Wx™±¿¡W3ˆ®î7ºâÅMÔyµÝ¾ôª®q»³€¬2zI’Ç t¹Ð:š;ÊF¨èo–SíÀ ä2ý<쓴HÄdV0ið%ɧà9þFøIÙKhÖÄhC€[κl)W§4º>ørî{“v t~˜L­p§ ~|ø¨ +%_5hiT[ÛÔþNR§©•šíåRœ¢0óJ k«¹˜Iøøã˔«ÌZPÈ Õz€–ÅŒ]y$ß~2d}ŸF¶†'â\,`®¿–Noš€zÐX®…Œ,uM$[a»æG7¸’EÑ4]¸Ô°T’¨áê·Ä×Nˆ³cA^D˜Éþâ.ÂM¦ÉÀùg%94fϳQ˜×i±^†`‘ypÕÏ‚./*"ÒН÷,zòþKqUÙO§¹²Ôº³«žHah F qÂYe -am%äç¹G"mƒ†axŸe¯–_ːôk–ŽÅÐ1 ¾š-ÐùLÆ')åÎþÃppòzgÖÃêÈÂÁá¾z¥U=ŠÖƒ¨eÿSAB\þˆ¥KójHÍ@o 'òÔ[ 7îKՆÈyÎÃïä.ÏV`îÙÖ¶‚-+Q;¤ýh²£~–°”‘Eç5ó&]ßX~ðLnË}“M·~ÐE«ã2 +”Œ”/#×ôÏ|‚SfßÂèÚbi´ÓK#°]ë¨!dá>%K)!|fôâúbqAÝÒ Oõ¤uXz<ö±Æ õ—óì‚lyùôœËæ\ҡ·“©JÖ:ÇÌ÷ý˪Á%ŒÁÏ7±ÆCPòïýďŠnqe÷ºæþK”W µè‹-nڄ Õ ¶éHíDsž~`½W]“ !š>ãrԀ×Ó²—Í6ð7H±š¶Ç֕31 Cxuò³iP ªN`Ðìқ~\¸)Óg-g~Ñô5¥×íÖX0-µ€ú•ö¼8¼ÆI‡ pæÃež)ÁËv(æu£Š…s&ã¾Ê>Ô‰ý¹aëéë÷ ž +¶7íâŒT5§:µ7‡–UK~é²³a,DG^À§‹¸}ÆÓ¹G˜9”/bãYgÆíázãSeñrµâo„@OúB gùüý–5œ¦Æ*?0Ô¾¤Êî>ГŸHÇî}"rÅÀWºßT҂ +J9û à½Ã™°ËÌrOwc&ø +` +Û&5…³uü„·ÿo$¯Ïø[Gÿþ‡¥í¤` l™YÔî{Aál +à‹"7d»¡éÔdàg¼ßú ÀYÖI<"Ø×^) D±l«sãÁ×ì¡,ßZ%c\_t©\\åáÅI3­l𷚊±óËY 4kM¼æh”LN­j.aĽŒÚ Œ™E¢} 8>êÙ§ŠÀN j¡`n¢T?©¢]‚‹EEéØ}Qêf•ü˜q-̐j¶oœuövNœ×l„ê«Ó³ÜdXœ²¦ û@‚Äz1ÜöáörÐUs¢¡\[®ƒb[Btä·)ðVX³óð;%§®x©^³ìA›ˆz†z?£IÔŽäDh,bQ8ÉU2û÷垼›­ÉC ¼‰ Á{}˜ãʈ_ÌPŠÀ³ñƒÎŸ8¸n4Ÿ°±;£oíËú¶璙ÁeÂägŽWú§N½Þf╢¶Êh&e½í­z퉿ƒù)¼-‹»AÅ\GGb í½áä÷ ]a#x¶Á'ÑþÆ9!Íl *¦ÄþNáñÓDiyV\<ƒf5\À$;+;ë³Ú!(#œž¡×Žb} )X£âbT¾ŠÌ–UƒÚú蔋A{<›÷Ì]&ké1i®ƒÞîºÊ$8÷͇M1MáŸmƒÒ&‹Å>*iYk±x·ò1uÝ0lK²ój˽qY´½½Z£¸"Çü¹SäF¸è׏Èu˜ßm³cöçžSLÔ~Â\‹#Âg[?«²ž™aÜÅÌB¥ø}íwWIQUñõ¦ò°PUÂ=¼ùä95?‘îãÿg©qB“/˜èø¯†¹XQáK´~ق™1˜ Ë´¾­í'œ¶ê¾~à ‘ßtµÏ_á×ϒZ„«ò«#äÞ¶D#ØþÜ_™·žy‡>L'-³PJ > û±§l²•?»BùAjH®Á0&.Œ2U(Α âi¡n)¡6¦?_B×Ó Ýrr¤y$ Óçdfˆ5ìÒ¯m憜5]¿ÆAŸ[ 0&úᤞF¥Ù.ç^‰½yé » Dw¶ìÅzÈJÁ·9ù­I”s!L­ZC#€7‡¿ƒ³vmMlö~늎üÈd&쉻|jm8³ZÑ ^_¶S“\Ĩ îÒ¯&]ë‰5¿bç½¼p>.ÖRv2&´/ĉYªÒǚšižP?ìDȲ•ñuªí¿i +V(ü†V?õØ\t&UÕ¸yïŒ.&kûÀãW»Úä”ölêCñxcü]º“Íß ;éU<*²œK`2ò©h *“ºÆcSQ§©'½Â[÷ŽÄ¾@ø"º&Yû;ÐþÐÌjÕz<1(¦È¨©Ïx}z7n‚0]>íâédAaMŸÕÂKš9ód8Zà…UؑÇØÇ`ŽY¬:ܶÞ½ˆ´Ï_áhmó¹e—åQ*Œ•nwkù²2 ýÔЃ¼B’ˆÕª¨ñã›#ås¶У¶:,cây‡ëÇ~¸1…"èÔLmU³?×LdgtE¾jHt îL¡…o¦Td&¦å~sJ±øÔ)‚w§õs7v Á€iîÆz˜z]o‰¨„†¿ß9ßpµÙð-´$u]?$"->¿‚µæbæ©fOùA{ŒÊ f5ã´œÕåû¯HÒíµ•ûµŒRtZFB>+ӈ˜Õnò0ÖVtùkVdTȕ33òa¹Ð“ mH.ÿ3€ë/Qa_¿0ˆklg΍{Â¥´\õîÆ­‚GãT'|k4Fúì)!è÷Ÿ±d£AG꣢Ú=Î?#‡Œ;¿Ð;ëšRÅônÆà8Ìé!ç02c=½ï™èœ@ŒñÆ?kDVºá>“- ù˜¡ø©9ßba›µ€ØÎ|SžÆ™¡ QÍ«æóeWüãYwÇ̓‘ƒp¡R!ö™Eé‘ÑKÖ*‡™•½Œ¹ÿÒNŠ‘[1EýÍ*•Î‘îiòÁˆê#¤$vÌ_æ¼ik¬·Å%ÐxÇ ÑDBˆÕÆåR/ +-…µs:9=—}Dü§ŒlÎJÌÝSˆRêŽüûŠW +qUÆ?ñúiŽòQxtþÝ¢´àé+˜Àiûb’iP)ÌûÁ×È9QdÒ{p™…„™žfäw#‚GO/4¨8ÑY«ë90µ·RŶ´!NÚÆçüeþ»ž¶…R™­Xýñ•ÕÍOÆYƒF¡—¸Õ0Ä¶Ó½<¬–SÓÔy?¦3.ÀN ' ü¹ð¶±Å‡xPqE¶ãñà¡oF|‡t%Ù¦~ýùöñÖx{ba}IÝò^ Œ»~Ͳûɪe†JfÁ̅\ç©mÂVöX˜‚«gòû?X…XÂ×Þö‡ÃX‚X%ä~X×AuŸUÓÇ4}pû‚‹Ï{·Bb‘E )ô"OwÝpk@î‰pmùƇº#bcÛ#·+&–Ú¨°OFƒ ÁÚVTŸç­ ·D¥3ÄzŠ‘QR]‘T€î`” O©) +|°üZw<Îb8@ŒÕèH¢˜Ì4ìàJó÷ê™ì23¯îU‹³¿}ï8m8­×uÏÍ ïŒ.³÷±ˆ 0E•ŸÔ~rÍß;ÞSŠUvÀ€ÈK|ö}±5ê%K'ÜA‚ɲÚ#Hû9ÛVîµçé2¢µ*˜9;(õc©ÈŸÊŸ\öсLãóéj†< ‡î‘¬˜4ö¯O-LõìÕ{ Æ®Ÿ.Ë2Õ[O©xÌ Î H×n40bBd8žlÈvh0WÚÄd¿6 qnKˆpR~Z¿ñ(ÇÇíW]ÓJh?{Gс0Ž“Á"8_]½Öø¦Ó×]ó‘ !»bfX‘§u³ šô\ðq„Ãi• k»9%&sÙò–³[ð<‰ÅPµðyŸ3…GÁ¯¢Ìõ€kãs‚]L¬a+DÄñ¸ »ºŸöˆô"Œ $~[+œ`Δ0Ôo‹.ú(̵Á &[? +ÄwÚ0—±ªç©†ÉÞ&×?¤T{s=ñUÑPi|Êû 1tHËûkªÉË¿T¢*ñ˜&°ü¹¾ÄF¶2ž+ú§@3z…5¼”¤ƒì3ô*6Kåªv'þ¢Ãz­')ù“€†ÁáÄ8¦·q>à¶P‰ð{÷$Y"GˆËsw¡(V@ŠÙ¹:@ ¦.&’Ô†“쟃å SŒ¿Ôï ù-v$$߈NfTÒGQZÌ%~c­]»¬däÐ<ôÎ6òÞ!ˆ”å%LÖBÔEV ×%Çp#†(ÖÐÝ}ïg +Müt$žŒ#3¥„ñ, 9÷38`ŽŒÈÿäÅO«þ‰†¢6r*ä@)yKõKVè4Ù]zû®)Ҏi2ӄäô›Á™™Áɼ² ö©éßx3k;X q.aØuê©f(ª2 c>¦}í•F‘˜I:$u$fB8Q,ãWG¨.DÐG¼û<࿤Ž—´’)½¾?4’/;“¥Âë†dEËÅ:{x’Ül¹¤˜ÿ^!ðüÐN»ßƗÒP°püãÜR fø}°>\*ã1ͼ›x?QÄùgù[ácKkŸ`¯O¸¼Ã~CíàI×+(ø˱MJù í!Š®¢Ã@²È헥ÿ}]šN…NºcBÍ°´Ef•=Lºú_œ8<½«O(gçßÚ_ŸÕ]» È1~{ªÌóvfXÔÎpÔô«ûÉK4Tt˜´Èê(®³‡DÕFtíq¬"уþÐCò)îj[RÞgÖ`ìî<¤ðMŸ!?‚—/JG+é¼2ÁÇõ6xb¢ÔÙLNwÀ¹Î왹©w¾“½t’ÈÎíIÛ.ó#Ñ×8À;ñ*3˜{O y_OÊqםdœ³ìéź3Züï5o/EaI»¯—†NW]zA£’«ÏD ™œ2¡74%ò²Ë]Ón—ÃsÂÌ+Åt\Ò/ûzÇ$%xµêž,s]B‰—ï‹wÑòshø•Á‚S*”xùlû·ÿÍÆïˆþTÎtÁšd¶÷¡ž'˜‡™‰ÿͪ*záLÙ­9ºOFu€€ Õßy0ùgåÀ3E`’·7–Å~ô¢k@¥†¯0Ë ›𿼠H!.â b u…cm&©‡²OÕÄÇóºR#ÑVR(ގûð+Aý÷Fáx“K"þ,ë‘éô0YEÃxê‚N Çkü/ÖùʇRi|ÀwÓ5}ѼVø2ê¤# ,fèd7  ŠÂb‚‚Â7-|:0Yba7㣊s3º Ñ6³‹Ù‰¬´>)÷VŒ( T÷Ο z÷ˆÖaïdxŸ`z6‹YWDA~(š•ßÈZ UìÜÀÀÎù0Ê…|ãg ësŒúl%õg“§WD:ã¿T•h¸=ºÖ¿ão>~ŸØqlÁ½èÑIX˜ÇŸýöð<¸¯Z]è‚Vè¢Î¼@kÓ:Ö\MW·»ÏlJmGÿäGÞ×{©¶JB#œÊ¡û*[ ’˜Ï´pýZÛïF±µñòü-JîHðõü[EXöR%S)Ì4êO ûj a¯ d²#ðŠùˠ飼(Ô12œzµ¦áӔñ”Ïœ¨j¼V›«ø`Ÿ03¿>xDXê öî)5uQâ曧÷¹úxKXóë›èÑRž8΀¯¥›`v¶…@¼.v»0#TåœïOv76ýV8¢G*œ+J½hÃÿâë8ZÓ~BþÏ!Á!‡¬vý‹(m\´ë•>6PŸai‡#7Ov$ÿÉî6 þcήR֖íXxþq‚ûëènþ¯p}³ ž#Ÿ ¶A3)‘‚†q¹z „6ï<-qquOÒaß:D¾P1ƒÊ>ñH(È5 ú:UÀ¤GGLíT™÷]2Ûè#01QtÚ©>ýûoB…ïÔÁ‹EK¹ Eâ UâƘ£T‡B]M6ù€Œ /65[\öMŠI‘˜X+ŠöDUVYçM5}Äǘ®GÓìý5ú?ÌÛ8odv$,ÓKoGP¦ÃSpPþKRRà•–uå¡0å˜]öÐo†çVï3Ñ^Üe­“È$þŸ¦k«ë­¨znúÃøØð ¢ô=MÒHZ­õ¯Ýˆˆ7ÌÝ+ÐÝßMè|KÍ÷  +DRCr4·+éÕÜèÍøWñ†Xê¼bu\ӓ$ÈÒÿê’H¦‰V0•Ûd3' {¢¦Õʱ/ ¬Ê¸A3¤…ÐB‘4öqÒkÞìvc¯zzÀ`í°`˜k¢fØÞaò/Ÿ[ßKHl°ÓLâ=ý¥‘aú;xPs»9W³M‚hínˆ@(Ï8ƒZþšÄÛרZ< ìvý°ñÍrýëŒÃ©Óñ +­O¤[BnQc?ÿ`žˆØk¥•â¾w![„ø2x„ÜïPù>RfvX½Äëé#ÕQªâx©ªL²Ù)l”Y uDN2MKèÝÊD•¨boႾÁY£ì¡GHÚ4#2̚¶•t8 íCx˜mSFò΋W$¨RÔRԞΡc ±½CŽ.¢•[ù6Ò¹´9V¼¼ +gÍÊê°0â¿%ESÇݐ¥Iþ\¬‰fóoèlî¸ÐȱK cè¹z·.•Ç€ï³é O\»qré_¶“‹穆e0Ú_֐`g¿º8+g[¿%tI»ÓgJäÿ„'€ÝŒW:št… ãA½R“ÿ’¿zP”Ý?|]…”_cñïÁ£#ä¯=046Oü7héÕÓ¾d§-løÈ®3v+ªìÙ1eãmuk•6G–­Ž—»ª†y034K«Ü)!žŸQ/5é^™AÔuö2»¤0R¢mÃvŸ3õb† Œb5~£7Ÿ -þƒ€ ¥~2Ô¢öߓj"h¨¬¼õˆšWYL“ö£Z³Ì€—ÞÄ&þ2"Ѩ¾ ǀ¡v†Þ¶±u›'k¨*/?¾ºC9–Ç1ñ‡¥ÛcþÚ胛ÁcƒvñЪB£×ßbN›ZçV{üetöœ{44ž" +²ï^æý÷Š´˜yÙ² ÜË9°‰.¦–€ª¯Ï%p¦tÍævS¶ªF9ºGqô±ÌP:²I0ï¢à=™E,¿PsÈkUŒÚàÚm$Kgü$\ൂºÍõLÅå!ÄÎѽ¡fÞ-~W­‡Í~ò6ƒ+§_ %þü3•ôaT»rM[T›¥»<û À-¶ó¸~n;SdÍ"Š¨wVá¾j-ž£XßýðÔ ÞìHeQB#£ã¶>a٘ÔßüYlÓÃè¦/ÉW–ÅÉX"S«:ÎÓožè-‘bºÁ¦ ¿,©‘’cä•Úr*MÛëä×Ny^z¼#™!˗ŽŒ”WY>£°{Š¯bUÊWég#Ê"íÙ!÷Ï õ>ød×X3Rnz~ñ^¥¨Í¿¾¢_¿`]o¶‰–úßµƒ£ê§7HΏÁ¹Ú>§Å•R¢Ù7Äà3Y¡E.ØÂÙ1ô“ëôf½Ù> "=ù°ÖÇÄVcö^ÀŽ²Ê1ŸÀþP[؃}!©"Égd½ãϚ6] §ÁPwÓì«>͈_FçϨ<¯Üà½@’Äaçñ±Þ€)ëÜ>¼P™]¥^?ëxãÎÿ\&½ìA‡®úuøŒ®n£Ïpµ«<¡Ùzb™ñ¾“?~Ò]¹†0¥‰ €Zý>¦K剧²© +)³”ò‰¼âl¢KhN?÷ª'r‹n0ÝTÐ:É6æ‚OÝLâh5dX’p+UŒÜÂý|7_ÉñMõ»¥OköÊÑ­ñZcƒäÐtûЅ›…±ÞE^VÜ!é=uÅ"‚ MÂÝ5^å8?6àÉ +Ý/ +¸Œn4žŠ›¬kãøÃgÒu½ã%%Oäú/^3GQË]R{ø¢® 4ޛ‚ÍìÁ§ÿIñATÕL¿º†Ù»µY»1J©`–æ_¨—®ÎêûŠè;–ƒ8<ȹGŸÌñî7dÆvÞj¥ÐDO‡ˆ ÎdîO1z S]ÂZ–‘ âAwvÂ[-ö(hA{¦Qjo½2äR¦öD{¦ŠQ)…‡“èN¿7§‘9: %ÔìÑàQ^FúØðEÛm‘8b0s|³æ¿Æ•¬¶¶wøR@ûîw€HÐüM_‰}2ž–¯µç:SÚ¨WFyz$ÌèJ‘½{©ºàï8s[AÑòô]9‚ëµ «`WsTR`cJ#êïãœk´Yª¡èwY?*ráÒTEzþ.“ïÀs9l8ME{ý›Óu@©©k¸ûÖ1ûzv$Iö%.øw?§ñ(% €q]±Ý%ÝýN×`ø}ïú99»†*ÏՊ®@lRë¦ôÝ´ö%…ÁˆÝ~7bl­wl wD[‚ì¼ç1ã93É­2F¶*©ÀíÀR#BØIA÷Uº¯ã”¹Š$÷tbwFäՅ`h…ͼãn_îÆÖ+2±óW©^û!7#RçᖫÐ!ƒƽYÁKh£)Ò-7MÙPôÉùTÁâfO͗rÜ~z!{»µõÙâË^—­÷OÅwÍïâÏòñE¡_ðÌÑðÄ0fÏ"ϊû+ãb{,OPéDÉöª0Ûöv¨Å»i¼0K <þšÖJsãwòè”e$é»Ã£‘e +e TOw¼>üÀm +´ôÚ#2u_Hv)æą.Èwd/T-íàäâþFoHŸ¬X¬„\"U}^§GÙ³XêÏ4ÎùMEëpÅè´`1ëvïتÜòi önEoÖx½8•X›N”m‡A=XéÕ8}òÓL|*Gˆ)ò¬âè÷÷· ®ÁµZOÑæï:6‹¶1eý=݆¹²Eb¶GCUwÃÖÜðm¥z7Ù9Mvr®ò!iDðÖUWªu=:Áíñ…pJ(ÿ_±ïýúª§¨Ý*ìËÍ*kJ4F£aˆ(¸2a= ªüq·SWêJà´4ù•MIîÍÍÜ°âՕtè@«¤¡eRkL.Cg·B'¡¤¨D$<ãÆÍ6¯²”0†ŠŸ"ãYèÕK#×I LÈg>„.ú ˆEúu¾Å§þ*tÐé +í;ù†ÿåþ¦#=5²FTuDõE‹opó€äNašvìFp`_³‹uÏzBRúéÿ˜üdxÙ|ÙîlˆD.¼í«ê6¶5CL'gmzÐmpœ “Ð2osÈ,C›NÜsgì쇍oH4W*ŒpR’ kø¼—?õ.–xjÂ*àZ“OÉ»½QìqöG>†.ø… ίPI¤±€0y%/'OmUtR>&yI$Di©uK¤¸Ð¢J›µEìä„Çñ‡óaҒ§àíuó¶X(L_Û =×࿺î©c¯7IPÆýÕ5½ßï6ª¼Æü¼çnË ^=CÎZ¿_'Í™ñáåøDøgœœæÂSt¶ƒ…Áƒ¦]¨{í!§ú—þ•˜¢ÂÒ=¢oGX4ücëúüù2t@Vç‰Éi­£²~,Î@æ­ô÷6§ì^=Tà‚ 'ÃÈa„}âkà\D'l­ÿ íûÈKHK_ ïJÕ>6¤ì<öIú(¦{‹„Õ/§Æâx®®èáæ Z¨FˆÉØ5ÓþpéN¦òÌú†³ +wíÏ ›~)¤Î'Žq ż;W.†kÏÖ·hVɴىGJTWiÕJI>äúQJÒ!. £iAðŅû˜Ï{öõj„Ñ`u$»gk®êŸ–ž'úâ`Tpb-éì…V"<+½å½{á{-ô¾Ÿ_§§bßWÃKúá,k>Ïp^ ®8¨ç'amc#µQBá⍃²‚(8•†èäÄ~¤ÂQôñùA"˜&q(°¡6 „ÈV5·#ˆ9·G†1ÆÂàQz&%®2߉mhSԑV©bi»í?mb‚?ŸւªÔXsë"ǖ}»ãŽ‘ÙPÄ°+eìÖ\ÁöÏh{âF>øµ ™6›ãn|ɃŸæ{af;jõ‰×¢ö6ɐÏ^ ™öˆ½U|)Ég`Oª›¢êÈï·:å˜¼v?®Õjõ„»œÅB)Ô±ÒÅo{º––.)êèý×`óÄ»ëÊÍ ˜`¶KúæC“¡çKGC~ ˜1ùÇW[S¤ºÙp] ­ìîAE+Äü:Õ†{@øa3åÉdzažï-FëÚ"ñh°ó…4;èǤ™‚­>‡hšñïq¯s3Ð<ñO¾D¬+Æù¥Ó$"(Ó÷ƒÍѾÒø´¦ÔÆñ¾{aÍí\D¾ð9ùê@n“¿hå¯,c楨å Fb¼ 4¯ûŠÓ<ÿª1U˔z(ê݉°ª¦O—çþ²·{3ù¾dØ+¥ +XÏÆú™‘>à]DsÅ{¦`±òÔX&Ò£z*š˜©± yõÆߦÔØÿ«™×’b‹`=ÚÐ* ÑU J•¿ÿŸ՜û·a`•Ï­–œ·ø¼j¤<Ô§Â+uÂBVµQS‹qˆäøYÉÝY™»‚áý{ Ó;0­Ÿ_ +Í ê?(ß Úҍ”ü>Ÿ?ªu¢¾>y`CD­Ï:µý,Œ|?|ÜÅçÕ9ƒ²9‰­‰ }p™’¾\Áóê‹Ûø5œ6b A0“Hud@ù¤Ý¿–Œz1òæÑHöx'M˜.·4O8ã)EQ‡Z.A`΃ïÄߣ—Ûê/7òxÒ[¥%°ÿYõ*ï|/ùЋ/ƏUýҕrb{ „ÚÆîÑ1¨¸.r­ЗyH14N Òç&‹ŠºóíÔÆ}YÞ8F„vò®Zò8yA8ω½w+FB¦ñøR _\õBµX ˜cÉ7 åJWN´­jù× Ždï§Hvš‹!³óz' Kbw9Ç}dÎÍɳ·V N…¥Ì=–3nWáT>!Šp:™^AL~åšì|P¸l -ñÜuÊV抰3ŠÃ¦ÍõRŒäG‹QUX³}.z;qøn»¦=âxN´M*pÇVRp×=p Ê©¹—º£ . +×z ɃsÒ>a>• d…7Fä•ÐõÆÒˆì„ /¹JšËäûóùTDLD°Y# Lþ7Õ¶`mÌcxgvì8A¡ñ§$$ž×8/™¤×õ5éù蓭wÖät\‡ ž%.ÖHÙ â/›ì.,ïzŒÒð©Ë+֝;mÈÊUp˜›ôH@löW>O]ìÕùØDnƼ^á[ŒH-µÎßö¯…vAFojü51d÷(ÝûˆûE#zeŒ4 š­ãúóR +€ +\Œå‡“pþ´fˆ¦*µ5$x-Ûñ”öDádô#ÖgôDö>~G¤Dà ;Ì´“u½¥în8±@ÎùÁx®òõ%Ÿõ*j‘>!Ä¡[£Ûزvî}쿊󲊟$‹âJÆ%F*ª+Ü÷ÂS~fåÔé³}Eu°êfE3ˆÚ À6ÐN80ýÜ?ž"¯?¨úˁ–¸[dV^pÓN‹µj4ÂM%"Š°€—SMŒ=£¬˜lçîTZîPƒ +ýf­F“§-ÊªœÈëÕÂèqˆ…WȀ÷.á·s=‹fx~2ÏþxÀS<ŸbA[FqYBëÂí—Ÿ¨öþËËä¤6ïvq{74Ϙê¬?t±º~|mHTÒÁ\àUh1N”éœ\Þ»ãÃ7˞GyÇâhópŠå»­Êýµ™‘¡ÂÊ/Ÿjk²½ä¤²2Äÿ.þ ¬VtÙ;¥NÚyE,ÝƑ=ŒÙå!Ó»:6_µæB¥Wp¶@¸[³gŠs¹ /ÖÜa:öM¼ÙßF¼ÎýYG8$…Ì 3Iº·F|SèÁª'£k¹ Ñҝ1)V =Ę¢D_S(ÀÕrÜOÇGŽsÇgëNWL<ò +»ù„â´ ×3F0Á>ÄJ‚ŠÅ°#D¡nID¼—2††ˆnŒÌó`ë8“¿0”ºû T ¼ï •¹œÕ þÜþ—³Šz\/•X>û-:‹ùŸÊ~e*˜ƒ·€¨¡ì¦,mÚʗÕòœ³Ñø¡g÷Èuˆs¨ŸÆّ»àÂ[l]rÄÙ4mm¶~ƒùpfõ§vp[²4èÃÇÅWŠpæO“„Æ 9÷$=áé¡£¬Å”ú–æ"úQª}âŸ2û`ײrf,EH·–¸Dׂ~MrPÑ=‚Þ/¹|ãàM¥«ÿ¸ÞEG*rØ0$4D:@BíxÑïCÔêpÙ0àÌ_+ çh“—×JŠè½/™ò,Rk:¦¿‡»4“`[¯Wð;ðŒlƒz±2ge +iKýk”½œ›ƒ4f¬+xfÍ}'€’ÂÓìúÊàáÚè-RM>e·Ú¼;lëºM\›$ՈÁ5vðçééIa¸º;˜vºyärì]Im ²oߘ[ ®äÏFæ·S u±4ÿ~aÖ••4à +C rº¨dõŸ…’¡‹ß-D…-µ²U®é×Æ5ȔØÖœçۖl‡Œ™´ãÁi±‹&… pÕ‘sÆYaH»Sc‹Ño­x(~ üžŽñöpín=³òê"N;¤©›pΎ/ÿ­¶i‚çS†ë'ꇋþ–géy6^;öî &ìvIµ`ö®ôg+¼Ôç¨T ‚k^sS$ŠÓµœ%ÆO™†2Û° +‘ þíâNp¬Içÿ$ZmβØb¦ f[Ô?ú͜㽈z¯mFØÀS3¢D,šõœ—d,u”‡Í†¾ ›YEÕ]õj¿¿ñúyUË(`œ`¼™9OœœƒÝ֎¹#þs@äßjpÇâÞÒ.Kh¹žµÜ¾Ïµ‹TÒz_î¯ò€¬D HNSDå)†Ýü« …'ƒ¨éĹb^'ôé‚F­óU÷º 8õg]¨—#»Îȳ4ÐUV Þë؂f:œº#‹J™rø%{ºÎiË4<Ód*½Ú4¯[JßÓ5“”qivú'+ÕTÁSÁ¾ÖÖÓ#̋-øB‹bÔ¿ª”ˆb¡TQ\íÆ_´,v•puçc”ikŒ¸_ú͔^s„Â|bÑF:Žç,¨¥@1a°¹flˆm?˜ë𿓚• ß )+ÇÚô ÀIXÝpÑmû®o +œÝ +VÿQs +apþã¿pEh% jøm;F\ šÝ¡hrxM†}ðXý‘±Q×bß!ñö¼ÔØ3º1;ÆÓvš»¯5RÁʯ¶à¸/€‹Ù }çèÛ¾Ù~ü¸c=(+F¤žÌöéÄÍÔyý¸Y?î#T>Fäî¤enÈ7]VÅÀ™yAþ°¶û°SÉõäT<‘þrïü§èë†p³H|¦è§z½¶•tˆþƈüî$¿µq9cR4ÂÖ¤]·£ác<1XÑ¢ °·¤6òyMx\ԑa81U6®öæÂf666á©+'¼p§>\'Á +¥(º»uÉ#5 …ÜI˜Î. @Å刞O§;"0¾·¹I’ ôäÕgbT =JrÞ¢ÔÌÉâ9ˆÃ”ðÃ{'ÓŤësp›Ÿö½V™ JÔ¤†dJÍ +šu£Í3¦”ºÍq4@×/òG‘³R}÷¢¤=6ésO%d"½[•Þ„| íÏIªÚFìÊYÔgÒ úb8w„Ô¯ú±ÊØïKÉ|”Šì^m¢.ݦÖîŠï÷ÈáÚm*ÌQê´ ˜‘Hk`ˆµiÂ#zs{÷‹ó¦€O µ·KlHo“Y`äXï]óo%xÅ)ɜ쇙ãÍp)¿„jç¾%•w“6qÄ ísžè’_5wJI8¨ø`¿ÑŠ>²Yñ7)ÇÈ ˜›ø÷~µ«n±~¾èœԎÓh¼ÃÖÏ8dž©^ÃAò„}æ²nTfÕµ]z%ÿTÍ4ôk]¼ú# óÈðΣèkùŠO$ÌÏۃ^æ|ˆ,§WtW? +E~‘ò|b'µŽG¬g߈÷í-#óÔª¾ZVcº,/TÚ¨Oãÿ «C’Ï„%¸kÜÐ öÃUô ÍuÞYô +ia'^×ïQË´ÄzÁÚ`Œë˜Á—¾ö8JÑBöãHÀ‚§Hêý+¨v¦a×ùè\ºžx$øf¨¶—˜l8.¥„œ´‹‰dœ;o¢}ÁAB`"Œÿ¬âþþ“uî9gùê|ŠGwßZÐù ­RÙ¢³cUBdËü»…•!b ’+ðöŸíiÐgâ/cGþö¨¦ ±±]–GŒˆqKÒ=«…BI¡fãqh:È.¨°jÏŒ‚½"üß½½ùñÉ¿œUÀ®ú1r?xGük·Uò×ÅFQö™Í¨Ô…Ís;®«XÊàf’F›øž @Ù¸#”"`ڀu.ãdÃŽÚZ„eÀ@Ç󿣤¸Çffcُò€MAJ™F_”õ±0Éé¾ +\ÇÃBìG+ÙîÇ^r\Å⛺;\` è=­~C6ŠøjhÓEÝT¾Y6íO~þLJã%GÂÁïuƒ ó> GÍeš[Ìa<îΐÇ&¦ïZËVÏ©XÖk]UŒ‘àæIknÆ’_®Q!¥Ïf¥ð¸7Ò~ˆcºÞx̽7Y‚~¬FL9–ºƒ½¥”lÍSMlc”a†NxǬK·Åµ÷§ôq´?é“á1&Þ¶óéR4Ö÷½Wÿ›Òü±#1€¨œ«çLÕ¯Óõ¥`¶æè zÙ+kb¬‡X'zÏçïäÉæýQ’‘®+qzÍYCìuÃû{iM>›¼Í,’%ݙAýSñ'Ÿ¤A½0øx$p||¿¬”Éý‚D½æ²q§² ‰çëƒþx\p§k#žÑª Œï3Ï ­ö³öµ÷>S×i#~)f`âX[U(ä|8 ¿þfÖ×#êNuBÃO ÏÏ»²×´Ê4©z†”¼ˆiݾÛRó×t¿c‘ÄÉ՟vý´Ø/3Ed¶ z·õOš’#ì ¤8Çáõž²ü +/ëúMû´¯'&À¨(`põÓÄUjlQr;J^k¯áøM ËÙ¹n0”sféC0¿yÙT}ÐAÝB$1”[¨XÄlÔTî­ýfÆ©]w‚Zv·”¥’¨ÏÕ"Ü,ÉKû›Сk=BÝ֔,šG ¢]—ciÅ~'ÃÁ^T·Ò±f·ùè©GqOÈe½]SӖ\ύKE±;¾N…tŒtNrõœ€þ$©Zye6¶ãQú™=b–@?XŽÎ84Xlj>*7®J Y.¡r0¶öð•„ÅšîZKmôçîhçø>BñŠæÀŠy$†+«áš.!‡Øןƒ÷ñ¹ÜùÍÆè.*ê'Wó +kܦMõÐg¢2BF105ù%Í’ t䨰{'Rm†-fï.9,i&pDéâ„Æ;d: Tº¨3¾ÆðÒI&q˜u–d3¹ûÝp +°¿ñGëÉ>‚}ÔTêŒwo+…¨É°)u¸vÃ7é>êнž†¶h˜™Q|f –¤šž×$ÌD¤ÃÙRïù`+Ê£¬âi êf÷˜á¦ Áÿ/Ãó¹VýoÌê²tö…Ù +õ\¸ä{`óæsÕ%{·<Ý(§éeI¦Œ¾^ïÎ:yÛ{¨#2êè¿Ù8®r×Éwð¨}LÁ þބHWñ» p¢áb*üI „Ou>­x¦ø|ë ÝS£‚xNÓU î~…Â"Âjâª"»ÒEæ£o ÁUÇ1í0ÖÔAªAAöæJh›½‚ˆµöèåi)Z.^ò3…¾9ý'¡YŸo6ȏA‹ºN'c1ß'«´ÿGœÔ×ÚÑ~^E2pT¥òàd˜µ¹6ýÔ¨@%ƒÚ)rð0Ég}áŒLŠjÐîBq„FûLE¼ç{xkI~®k‘îȋM…n(@në2Q¦bô‰ÁUJƒ¤>8 Ò eNÞ6¯QãÞËú””x'YâZzý…˜&Xu+ÔetT‘HòÇqLFF pw;çÝ +-УÂÃOïD:7ó÷Èû÷!ÇTDBÐvKwq”ý:gÑ2,øýšN þ+9õüN¶£„ï-c´±ÊÊìØgTYð<éZ:Ú6§_½«} BÚºK 0§…mj„Vn£‚ ¤"黬ǚ´yzR—ß°°(ó>œ ²sP;íýäíÑçÁjS¼bÔ¶Ñ"*ït2Žü° JÐöÉûèÃ`iRñå¹Ôwpۈëø¾Âª_ªÑù €öŸù¹pՓh€µ”Fž=^ævþëð‰ém„*6qǒF¥Í<ã̄œeèªÌî ëØÿ½/­ØŒqjõ~„Ñ_5âlKá…6šâ†ÆȾãÂzô™1ùÕ?ý;AÅàª+,9?éM‹sé ûµJfl,ÅÀ¤#Í}L"L?R±YàÑ;2PõiӔ;.±7¯Ò6ý ¡éü¤´å£J×…•JÒ+°. +E{N‘™ôƒSì'”Ã#pxðܝÈNg¹õ" `õÌ+ánÚ ¸5úžWæü-6[Á¶·UýÿŸ­Kâ•´a¡"O±³Þª˜V…º×ªà«G¬ +÷AýÂQø´Pîšý¹h`äŽ^ «¿ry{¬ž…bQ»}=°æÑÉú‹—rˆÕ>tD©èa¨HúügDŒC{ãc” +ÕÚàfö¼“pñVÅ2„QL®î½ý:4%L8¨ +¶¿©TÛvzNj €xAµþ?…4VÖ¬O™àx’ŒË+›þú·‘¬\ ¬…šºkß`ŸåÖâ·IÀ]`¬%ç¯^¦¥¦nEtBYYäßûE/†(BâØ~)¸UPÏOÿþw»Çd¿Gm±>†ø‡¼P¯G|¨o1³rÈE]][Gé©ß1J!ÛPˆF*¯>ñ±–ð#«2KdùÀÚÅyP° ÜaÉÈquÏ(«Eê}Îa„Š´¬b=RXÔ¬Ul<² ï-¤,O÷T…÷wJ“šóMeÐðYŠ‡¥vHî¦,K¾€WÇsu'— 6WŸ]Òp0UQ8®*” +/“;Ÿ9y°cßnªéUÊEµ¼m˜ÂßBt |e&ÿÄñžLXO'´î<éMôáM'–ü +/j¥ºB§¿Ül D±!ô °FFaXó÷ù «–+…„“K^,M_Iò|ƒßNJ2÷%µ§wá¡R¢ÃaÕ÷”Œoƒž5Ï ¤Ä¬QkTwRä}Ïҏp'ÃäðE´àÔ¡>I¤“KHâÑZðÞKå– Gð<¡Ð¦oÏOÉe|ë4)Ø)­·û°wÀ*D–"tüœ³c¥è¯Í[H;074iˆ/;IÌйQ»Xvq.æ®×b‹tQ¼¸0$lÔ]Iþ&1ˆñàÁUäYƒáCª×OãˆÕGuð 9ìEK衖gà6vÀ[sµ%oª4KÐ9@,iqy|ƒX'Š&m2üâ/³^Á»¥=~"6P°¡y†·ò븙þzX@–ŒtÛ1AËÍlG9¢O’!Ç]ÿÑä@ ß^Ø8ÜàQ¢ÕÇ¥Tëh؝(_†ýyÓ´nhý‚m’|OR–C0Z 2qjµ,xûsÇeù…?Ôฒ(ecŒ¾„G|÷x{Ÿ” íÐúŸO¬ªÖ€šüHi̯õ»Îòp ;ìþ +$ ¿Ó$¥ pO¥@ý7ÜÁ[ðük¦sNƅ^pÆ‹8c½¡Ð/cQÿWë¥pVÁâRƒö‰P‚D¹šö W ¾à¾SßÚ»@æà»Û5…;žÈ^´ªì•4'-7݁¡äº$NŒ±—ËŽ?ú>ΎšØP{üþ0æÂy4j™×Û·z¦a͖îy`MXP¬©‘ eiù\ ¤ÃéØ,óX#cS)i8ZÄÌ7P̛uxT€@Ìwïý3‚L~Gbu¢ƒýð¨Õ·ÓÇ¡]B2»¹½Âj»Í5dr& ¦™=žÑs±Ä„dåB¡UK¡Ô«òË~ÝâÓzuM²°ÞjõÌo'QÈ9Ô^.åÚZ±¨%üØyZ(ÐOôOÔ&°¶v%°¶‚µ³5èFé=¨æ+*•&K}Òo…1 v—­Âkh9‡ûye™EÏN!Ô[V˜GdEÖV' ŸõJõsüN‚7Csf£øa™aú”ï öŽÍåEC§L¯ùˆÐù‰ íJD±á½ 4œ]õ0|‘à^rgßÿGO™9ª€ÀWí“KÕßPŒ)»ž}ŠßÅH|V˙"U•’H§Möæ$½¢ï@ãC¡ìÖ·Vkä[lôñây®8¨ÎXKÍoÎýl*Š¶ã1¬@kÁã6¸™éêþöžht½i—Gh´]ÇnþœcŠIMàØt¤; ƒž¯ŠÃH¯1Ñ«`>–íÉ֌9®K•ZÂmf¤‡Ë$™ëãQ_îd¦’h'EH•£X¾y6 ³-F$~»CǖsÀðÿ«AKÄ,n¢èƒ»[ Ê'ñb˜ ÁrÜAÙ;«òûœõ¾bNÔ7àð¥ôµ £Ž×¡KLd­ßíŸcÍu0iþ†rhQ¶²³¬ +]Ò-îlތzmñó“n]I3´ÀüÚ²M…芩ýÎ¥%†Ós[L*Pë”Æñÿ-žÅGÁ'y~4“ºÒèÎä}Òª^½’BT/å \ðZ›G%fO»ÄC !ÿ&MÊ&“×ã|)ÛڇŽÚÒq XãnØÑÜJ ŒåG-:;tʼ¯ |gè1ùƒCWÈ­ßnP}p¾ºí,Šö½]¹,ü©Wû) 5‰Â´ÀlðU]¾—`^ö(ßWµKàš=yolž+› r×¥UÿÒüŠ V”4‚Çá²ÜÃ-ÊŒÓ +nXqkýšžÆn ®Aršh©ì蜏ñS^äþùÃñƒidl“»_8NÆMdÔYäg§)Cûš58å6¶9+P¾;Îqͨp3F ýڎœ£#~´T—²u»#áÃ Ò Ðٞ~|Jò࿸ߐõð]aŒŒ~¤/×;èÊÙ¸õ«›ºúî˕Ö(³ÆŸ+ÁDT¯x?S¢^Á]ÝßÓ¶Ž5°JJciTí]¨««8/wrýF͈Π+O…æ#4sãYM3B´{°¢i_ ƒ§®˜L^ã†c­PPªêʚ9Ö@bðÇî\åäÚ´ë§ëüÔ£nƒŸDžãQʄLh¹• ýùêô˜í  r|ZVz–ó÷¾Î‡-ÄÔñ²Pþ’-7™©QLuˆ¼‚©!9MýN­/€K¶ÿNÈ© q)T +ܟ­)C¹457®0ºÒH?nNƒApPÉz”éf*òÝ^X ¦à-­ÄvSUMÆ¢‘·vÖNhµ€ã¼IÒbuBX¬_Is‚ÝÁX¦k .Û/PzeñüNß»0OgŒŸp}§&"˜Ì2¹œ¢Tw×J£ûÓú(¿QüÍIA"ð CƒYH„~¿kï¾xT쑷jýAA+¥Èù®ÿ̂j2/£jÏTþ*ß ö ʽ‡Ir°Ù¤^£{xc¿tZÏ5~Á2äÛÁÑöØ„‰I‰Íà™¼ÞOgÔ¾gXOáÕ³÷Áë ‹¦@…Çï¨݀òÝ¿xé¢ï/!<‰·ÇØU|¬”³ÕZ€w@ÒÔy$Ÿ÷Ô¡$)}8šgܖ{‚¡—&¬Ùî—üêö÷–õÉ)¯Ö]z’à9Yˆ—hwCL‘>Ã"íüÅsD÷𩖛d䳝4£D;ÙPρ m—ã)a§Í£ùök³4«ÂwÃÃ4{óuŸ kï„ì-™ÒÕU -£õôàÀÿË?øËÓ%‘‘8÷DŽˆ1èW¾‘(FÄ¡_3ý顧¨ZZû'ufäÞàþ²?²²)Aùxè‘è?}³]fgáÿëÝé[xQ#·ÿ¢]§2ÿ s(žjGÊñ‚ü ḩË* äHløÝzË%©«WœÅd] Naæî`HES– ÉæO¨“½½Ú¡% +7îᑉ3¢,eKtöNXÜæœRG½Ëù(PÒôy=²qA9bчüÃѯIMO±Efj áçŠO¡ÙK7iht›’`Õ6yj¥Ç:ÉÞÍI^,ÃVIý×ñ?Ԝd׳rrìÊA`Ù¡MK©»àU?ô®Olgexzþñ҂j’ ·”‘ö•BhÑ+ ½xâ@òñJ6"_ÆñÖr³âÎÑVÇÙÅîàu’žòêòl ȒJŽïPñocÐùš´¾¥ô²âê¢pÆRV`pj¹®Ò– Û¶!kùˀBm7r[W±û¨á`´õ¦¿‹3—Çv|ä”›PÕбêIR"QáÞ½ÀèK;d‚,I’×Tֆþ†õèƒÓz–h3œdÖ1nyßȗ.‡r ŽÇÑR™Ó]b[¯³a +–< 8©)ð-w0µWë°h㺠QÙÉ3 Ã=)ˆöé!ò>q¦óüº»E;‚­ìœÜ”ÐvMª7©T‘—“ u@k9#ʲXJ¨©¢³A¡;·—{Õ|~ƒQÅãŠ){ ÜÇ[šúïû– Ý°vFáÅm‹ÚgÀM‘kA4yø ÛVØ`F®7`$*‡Ž~݆öôî8‹LÔî•T¶ÏÕ4$x¿Ý®AIPZ>åÑD‚|äëztºw-yá×éÇJÙz«2¤•:ú Xîö§ý?`o¥ÙXÉ'æ‡6ê§õÀ5ϖüVœÎ’Š(e)}6uÊ?Sü™ò3 à+ªÓ7W—k{öý¥0`Å1VÞ)ŸáÆÑE\ÂÑ̈Ç.¼c ‘™ôzV …$g)QW¢]Ãå‚ÚÝš÷¸.‹êwáI òž¼#€m¹Vu-ö—I1Küºó&´Ýﲬ¨1­?‰(¶;)û‘E©7R7 õÈ?Š*«Ôcä&ƒŸÌâ4<±œÑ &Çw\Ìó\¯«…ÓýáçÀd'Á8–ÃÖ¤çSJPh ™Ês¦Áo…‰]ûqè9Ïic&¡þ†ÃÄVD¹¸Qj „JÊ--I’÷… ˆúN³PIj˜sÐ,ړŠœÊ>T©$µå'ؽM›—Rw’9KG—æbCqܤ0ÚIKV©Ý¹Z +±at½²‡½ò®½í‰ ÞǀŒMs¼¢ÆîÐm«gÚ\hú"fÁ±m½%‡fþ/6ïNю/K2Ø8G“P¾si)& ¸/„ݯ| +ùž|œÂH¡$oÌW» õùôE]½ö÷|E3î LÉÇ-?7÷˜j¿Œ&§ùÛØsaÉ:Z•uÖPë`Ï1 Óe4Є¨:ÈDf@wSV5ÉÝešòށv»Fd"ûŒ÷ _ÈaY¦ö90Í\ˆRl@®kк âEƒ -âýÔT¼ÈaÖe2é™Íq±Ï¢‡ru`ð¨ºäÝ£&UÕáÅu¡LڄY“‘ð|z9Ýå‘ÂÚÎzž©Šu‚‰¯DŸN‹ýw‹eªXkJО\øŒH3ÎÞÜ&ʁ¾½2ù=J+Â7B…^Rنóƒ?Ý£^±p‘kì²æ=å"¨5ˆJ¼ …µ¼®”Ép•Ò@ÉÀH,Ö§Ã8Ю`«¦#ªÃŽS˜ïÞðw­8µŠ›mgZ…~žWkpÆT .ŒŒbnOÄTÜ@B×k Äþ¡3·.ó–·Lƒ˜ÀŦ€ÙŒóƘeÐ +&ÚÊ°t·]^ÏÌÃ||úwÒVýÆ®?ˆ9»Öðf—ô@•:§íj#Vþqµ”mÛ +àþK´Ræº÷KàQÐE…ø—/ÚÃd‰ÑÇz&ý‡öë øÜjxÀ·wCl%Ðûè/R«½*öÁï¨t–ÚÛrÌíÏ]ôû6 g\֮Ěe^…KTha¶ŸìÌáQ{:xžý¾zz4èƒ)GŒ$‹HînDwÕx§ `úM‰]¦"ÑPöÁ¥¦?ý([ÝÕëx5&þÿHµì4Ø°¥t ¦ÆpZà4äìl;Ÿˆ*qX¼räÉ0±­NóœX¼“‚? y9xoš{Ë ‡À¨œnô=L Ë=©å^/ïs/ÅÒ~6 TÙ)„ó]y>\t)Á“ ‚ê +ì*‰¸qÅ´å’í‘CXМÿ!K62&÷™õ;#"Uj@ÈÌ3Èú8tëfe¼š_\P7÷`®ß€?R0MH>r?ôˆžV4KɕÔÙ"úÐNÂj=dVÖ W2pé&Å5Ì® ‹ï +x3ØkðñWž²?)cÜì¼ÍF°¥¾>íÇ> +@Á #31¬X×ûá/Z( áW¾Éž‡"Ycùj#uu‰Û²hÀ§‰&4 Pµsÿu%>¯+9Â+P8;IàæÖޖˆ—‹P:ü8дû ÉgËg#Du÷þ•#V(êp¥5!€1¨ÖªeN.zì嶯Éb»lýò¾ØlÈ2)¿Ëþ–Sðù‚H·PpøÚðð·ŀM“{ vv¼°Wû2=åç·g»ÕÔã5d×7;ç¼@U ¶u¹¬Ú°Wòdyã÷á–G @çÕ®þ8`Hé5*ÞSÒÓeL{  KÄæƒ&-odc:Ëpi¯@Ï i¹˜gƒ{èfB5ç‰î8àúQ +Þ co5_‘~  ØÑKYèÉFÛ#¼˜ÆU2Ák\án +ýÞ5^}’÷‰D´‘qFŒBÇŸ_ĺlg”ûàføµœÞa>|èÖú!<ºrTHe` Û‚4P³–ƒ”¡ÚÑyRæAD'Àþ5Ø­`¤£·Ñä`èû鬫Œ³ù aÈ”8¥XÑ)„œ©©À$ýo\¥'j9#åd(%¦'OÝ{YÏÕ|µ-4UêPæ1øz¥~ùÎñ[*>UåLª¦/íåÖЗÄe¹.ϙª½ †? ¿¯Ú櫾ÄÞw3÷²·@Ì·ìöyX™îwk۟iùmF*yƒÄ¸hk9À`ïåڄäÁõl¾¯êýìÿcjX9Q ­ Ä9 +þI7Âþix+´‘°ÅèAB{ÕùE–Wßû½[ï7ëºÔ ‡Ê-ë?·³^B uO[ô( +Œhè Ö”Eî»BÖßÍ´·âjtŠ(MRYm遡U¶§Š&ÈhC­Øl¶GºÂ Fq>M’‹/&p£}„Ëaºê$†>äz8—Üi‰/8ŸÒðGò”¿×Wµ©Õ±mM¬ª¯´ŒÊ ´VËÃ=B"¾­$¶VTG Q- G$¼GFêx²-<öýlwäÑØ".µØÿ‡ ò”åh%̋±˜ÌÜTÍ5”· vŠå¢ç«o,GW÷kAMÉLÁÔÁbqJ(@:®2ÏþČo§Ô1§LE…“olKø)O„æÿšzTѓ«5Ç +‘œ§®íZ®Å|ìœG-ãW‘GLÅ²3o¹êPˆ´ïç£cÉäÉ'ª9 0ÎÌCŸîö¦çAÅ72MF篵瑚„¨”Žhð)E„r´êµ(2·ÅÚ±LÜ0I0 ½çd°•/#ëÍn”øӅ-æújëñEš=Œï_Œ”ÔÍ;YJX˜•Îbª8,yêÉFbr¥!ÀðΰW­6À}÷ØØò¥Ü¸¿lª6µ!;âOä•­2?BñÄX/(³*² f5@XŸèü„e ºvñEí& +Û,Hrü/Á:5$ÁGß¡ù¶’zîòåJ:øÊ%x ˆ¨sïY–t>†¿‘‚–˜x¯-ã*Uò4Z4ýç!à°a¡å¿¿|,1¡°Yžk·pt—•Îœõ‚^eMžÝÙ c¥Ðè§-ړÊu‘>ƒ›v™ìI.¨’šYž3ñT¹kH{U¸y‘å_IeG/3t#˜ÖäjÃ=T8ª‰P2}[ÓYŸãNNÕµ'qƁי’C£fF+öx‚w×O^òÐ÷ùu«ÅáMK$Ð/ +š»ßþ 6ÉÁXã‘áþ ÍêMù>Ì/Ð9ÎshvøI½íZ»É2é¶>ˊˆù_&~0œÛ|‹Rºmûȃ­l'_Q:û™   ±ºÝ[v‡âûhAèE5c½ÀIìÆLÑ*ÒmíåÎ!½ÿ"³¥m’€;ßôe@}ÔTùú‘È=ξ Ã&°Êp6T¿¿˜ÖI !1ü⁄ûG»éçŒ!L;6¨§³¥‚E^Nœw‡M‹Åݽ RrDQd’çxϹ‰c +%µPÿjŸÓ½!û©_ù´²IÊÖÌ3*Š¤[¡ ê59Ôì¼F·lFÇs“¢¹*À¦q>o³³sՆ…\i;éÒ%òìuóÍÿkhtœ!T¬ÒËN· õLVq¬x3ݸÚÞحĹ¯¢(ŠÁ¯—«‘-s›ƒÉâ³x÷ÎàdÐM ºo(ºnq÷ë—dM-¬¦7ïñ¿Š˜sÁ5Ç+|äɦŽèª¦ídësêG|ã:üDïk|»ßCaùrTˆ"ü\œûé_ÌwÐË]2›/—f†è‹'/ÄD¤w’"‚ɸpM4̕©Õ·¦‚’EõÈàÌ$lp¾ˆÈö´v®’öæÏÓX{¦—×°¶ý5ý†8¡½è’´î²„âú÷«ñ•Ýœ®£âm:RióŠ+ß2iز»ÑÆ(}Š>nÆ’ο2J™q9pZ"kÕZŒšË5]é5ŸH1 €ôªQ“¡ÆN©@Û;€/¿Q;¯ÁÂõ©n°ÝRü>ì[R*Žh†¯Ò!΋`ÕfL5“ÜÏæ1jš·‚M[«ÔÍßÅåÊөʊO’N,±+…€B~Ãpx„U‘ÖÁ +2Mí̸S8¯öõœRÉqñÍ®ÀŸ6~XN֟37nŸGݍ˜TÓçU@0Å¿èE(¿fº9:Šðpðº¿RµÅ¥þ{Þ±¾‰mœn¸K( Á‹%áátæTb“‘Nóó³7<˜†¼N»”t]Î|­ô+™²¡ÓM¶£¶%ýn“†oA¡ó°0¼¬e'Åq–gEʞPru2²F1֜$<'¡!¸}±Ð3Y̛î>YKh.CÆZnjáì®dßJëqeˆ„w±>Cý&«¹èíX8 çØÁòËòµÄ H÷òLÈ8~¡#oj +Χ·Ãô؛ ½dcUzýŽ½[_‘VŽÜòÝFS(ìâ/öéÚ.“’yAù@ÐèìÚÒ(¼ÿ§Qømêœf¤å”Èxf½Û6©i¨_ µ„,Œõ§tªh0‡ŽÝôsÃ/CNFN6¢“ĵØ䷍¶stztkÿ¦í*ÔݝVí΃ãÂúÎûõ k+¹v¦ F:·€Y%DDZŸ©ßäìk².!ŽÜi®JhbX©ÂO¤WŠ|„€ŠT/âˆ9´.Ñ­ î¤F@&óÎÖïśóƒàÙ©é8 ¢.'b$e¸Æ[4Ì+Èðµ]¬ÃgQаV&¥þJL1d˜Ø»ú–Õºƒ5i{³&t`8 1F@4öXU†l•~J<Î9×ì³»âëQiÓŽœÛ^ëÚãs˜ô’ ª[üXƒý_‡‘ +BÎ-×ݔ2—püýRR¥U“„]«ê'{°1™?ŠWô¥1Ïîј lÖP“k‚ ÇÆì݄ëp.œ¯\’Ö™VØA6­G+‡=ã~t_wÒ¥Ÿ =ßà2p¬ yÔG¡„Oo§4ú0axH]‘6ûry¯˜×äI6‡’«ÁfÝy ó-Á0º kúšî™ö +eÒûI;”Zì§ÔA©_ڈPî%R`ªoŽŒ\¸sîVù†àQvEšs³›»lW +fh¯Ÿ˜ ‹¨KÙ5¢7r 1=)-ËÙªÏ·ÿLŌ³ÁÚOfìæŒ éø|œ›7’¿í€oê…Û¿ŽÝå^4ëZH8Oí>¨9Hf°çõŽë.ËÞ'µ©’¹5V¶SV•dq¸`.×i“亘¿5¦ˆ¾Óê&PI ʳï6ùՌVø‹C>å-žÆ2^ø›±8ÖЀӺ½ç½}öɞ»Ê^>0DlÑZ¬ ¡mùΣ@Ӌ¯ˆuÛ|º‡-`ƒÓðÞšA* Åbȩ捓’oÀ„Õ'aw¬T_?xTž€¼£OàbŠÙ•ñ†üpK€¬b¦§O™›#Iuâ-øûÙêí «wÈFöف‘1`fƅHïDËdðþP­6i4ï!l²ARÌ|eå?a.Á ¸ò•!zËì¡ó3t¤$v%êŒï¢µ¼¶iK‚¤¨lÿ±þ’ÆÎÓn¦ës»­ŠÎ};“Øç"jû±ï)‰"µ ð;¹ÂãˆçSð‰Ëe–z9«: Ë'{sOï§)€ðSg3|•| Çð§òÂB]ÓÛ»8ú=KPuH=o›[ +%‚Nȓ9°‡'˜ð$̸yEÒʞMûu%ÐG—U­Bìú­ÿ¼¿ý‘Á°×r$¶C‡6Î8N´FP¢Ï 0óšH bvOÄ]Tèñkn.ûk‹"م[Çî1’+rEU°9Ó¼ŸtðUÆd]›x$­k‹H$‚»rÇ<ÓúöÍæտͶã JiÄ-™2ŽŸ=AõCÁég/øÝ·GHhîHúӜŒ€¹ãn‰*8ŠÓf~ý騥È~œñìýý°M{Ãæ„Ø÷ñæàÅF+žuÌ +fQjœMØÚÁ€Î.Å[füšëZ6 +^ÛÿAä×BÕäüùäQKG\Huh¶ÖŽŽPœ¥\A4é6vàï(fŒØw„-!ƒoå.HÞÔ¸óNëÕ7á¼Äu- â‘e"‘„¼Ú÷>°ÓÚÅm×<—Z#LGaË{rèN ì܁½ðT{¶þ Dƒ]?c:1à™ Œ íˆà[“ªnŸnŠ¼S”çç¥Ì`ýn X.ºÛ¶üC`R‰”ŒåW&7þtq¡çÌy•÷'}kŒc~Ëo¥~eµX×ú1¤kÓ¥qBÍÕXªK<¸ÇÅéëþòúÌÄJ*!¦§„G¢/ †+d­ÉLÒ¹*g·³ýã„Fxn±\ +¦nâaâ›#n4µ»[º¶:oWúS–ö«§•'6™öѐ¾ê+|Uë¡mÊz¿\¹6ï +¦¬x´ò÷÷`¾„A“ügß|€Ê¬Î b³.ñQ8ðûò»EòÚ|ÊH¢Ï{UnÆ )ÜêûðùÔ´â8|K\Íê ®iI·GJ¤‡ ©Îu…;†Åu„°´ŸGÚ$ 2vR—;“š¹ÿ¤ßú½SŠHù2ó¿óBšªÉRñlG‹ÿ‹UáM/¶±0(ƒd†5¤Ö·óñõ7~4ÈÅp£à²ÛCÜâyô‘u +-gåØPWC`io`ÀXýyÔRµÔÛ£ŸÂóìð.çtwV´NêÇ…QÞݏ•œ´Ÿãc䥞7ƃ‡Òkd£3®§|N‚þodŽ¯¬JU®ê4Æ£©Îti,"dbŠR +RNN¢ žRÊÞ<¢:o8 O¾öíÅñkÿÏ®/Ô¹±ýG8áMp`Ž,ÎPD¡ìÕùîŠÇé×ÀZEï̀-€ôyõ/‰W5Øù ÊjÎ+¸Æ)Ñe‘‰Ì¯±Fˆ«WqæŠWÎiæt¦˜h#úD/ ³‰¢Ë"*ª{©PÇ“ºÛöƒòÀºÐ¹ƒ10ÒÙgë'@Á`µñj)Û2ãôÖèÒ«ßÎø< ‰ˆð¡ Hf|?¦«rC盍ÚwAYÇ[Y1*ƒ/ó¾4^¯Èñ²*]£)>À†vú­ë,և‰i°OÛÍÝξ:ô‡þe7@2£‘Çé^7ݱAžêœsÑIqx%¬È`î·Z¶#ëz‘ +wɏý¼û™^)±…;"£6¡ÉîÞz®kgpýDh¶Ã¨HD`6«UG(1·|H•Î×T•>i”Xå†âl9AC IYXÂFV.¹1˜Ê$¥7h—,ú@÷V^O·A JO8ý,ïoT/ËNu_¦5ªŽûˆ{»ŒŽâÚÞ̜%1ˆš•ñ^V¦Ç$ŽdÜf¹V> NipjuªÇý瘝B£bŸÍ'þ3·ÂE¬•”‘Àí[*læ «Q1G€]B0bE]}fXs²þNJö_y*O Áh+´5ê6‰×<ò@OËq(Y‰Çr ²2{{”Õä?£ªÛì“-h¢Ä¿@ýùCG ½áâï ¢Ÿ…¾Î¡Ï{™lx_æ¿ñ§r8î‚Ôö‰ÊÐÏÂÜùínè)¥¥¡â iJììáC|[¶ã¯Kç»9EœQ5W0lz8¼i·ž'Q»ã;᤮ޏ݁Y…Ìa½"¯jè–f]ߖáÉh±Ìwœà)ŽËýG¯à\d=´ðµp5½n«þCùÚ§“¿X×´•Å›"È>ó]Õ4@ô÷¬ˆA‹4dh-–vΖ8H“[J'¾ é%…½„·róš,c*҃îd£Ò§̇˜êC[=/i›È]æä¾À_&,öÓg÷¨1Y¯,w¦àÛ¾tD€4qîžÚ€ÕåP/S0⡦é%S¢Â0¦øÆAH°U‘MPHÏÚkÅ6÷ª»àI(5úI’ÈøÈßxS +Nƒp}‡&fæÉiTèÞÎãtßs{±y¼„.'ËIQWzÓ[¹·¹lhå×m +)ÏÀ« f)Ñ£­<ì)F-zæ($ÕA7BkÖà›¯ºŠ¢”¸•Þ¡ôèZwÒ[Û¾ÕðuÙWÇéH¼½”9±}0`ýð½4CýÊ:Å âÞMóþ™Gš³×.¬ÚÎ4{î=Æ19"=ìÇg}ጆãÚí±ÅÌP}Qºÿ ߂Ë>‚!9ýŒÞLékü1—V^ü”4åò !¡uŠ@W +Œf0ÜÝ¥žÁ’.ퟴp’¯[¨eÂ45È@fr²‘ËÒnflÄH}†ö ]õæªḰ» âÄÑ·Å%\ÕóecçldÁã­×µI©¾ãLRw|€5Ü7ƤoÚoá°yâCr ¥siü—E͸áà ¡ë‚Þ¨ÙK“-@Úïi½šc›"Í—ŒºÈ¸v¥'ùìZMȉù¿â!Ó «;â;…ž¥Mí +¯z®(œ+±D +1oI>ɱ˜ Ü/©ÑBßp¡áËiþPäxŸ‹š÷§¤'à­³ëPÓ›ÖÙ®€` ¡°GaÃ!Ä®ÊSG²˜ DÞþ>!ü`WÇ`F`´„ãV×Ð¥š…ÿD“Äd‹/nڒ«$¼=*žL}ʳã_€¦‹*1eíB[#g4èCbš_4_,ïz¶–í¥¢VÀ癵òõ=ù-™åœêØ¿”êÊ’‰ŠE'”’£E;&|¹î]×é#Ú^Ë/mv—ûffÔGBí!|J.=¨<u†RÎéB½Ofƒn¶@õnøM”Ùù+x ½òqâ²êóz °zùð-C>¤-AnÑòd+(Ï ©æ+'bÊñM¥‚ÌP¶Øé{ÅP<áüDöÚk¼ƒ$ƇÖ¬ŠÜ÷±˜ë—KKdA‡yj7³^59֕ Œ§§ÌþsShðžå±¦ÿ҄Ð{ðï ØI„ošêøÊnQ˜'ݧœÂLñ¿ÍuÀL‡[µ¥é»ez8A'ÑÀ…ÐÈ1á¿$ñÄ)aEŽÌ; ͪ;8#·­7ÂÇj9ý¯?¹¼Ä’âDÈÑ"ooÆ|µÜ²£Ý.î[çÁr⬅'¶ŒFZ¦ôNn׃`Ú·[A½£•)©^X F£zaþ'"S¹9à˜„¶C.k¹¢¤Öà²ABY^ŒÚÌ a˜·Ï6¬ù zEH’x³Ö̀Gc\C[e¸X) '«lá®Ù.È3Ò ™ kü¢¯ 㖫ƺñ–fâñ3k…©H1,­7.ø½¯s’É9­ +XüŽ6Q–&åòÑßl)b}uÁ[Φ8"-«I½.{ð&oOå(ñüW¼7X©¾×ªüum~¨„Á§Yóž¨?÷ï7ÍÇÃz›ÂàrÖ#ùó÷¦§ý©ÏìpÝ-Õ÷ 30µûâùê™)Ûu‘ _òg`dx3 ?5¦œ•ÙØ~ùÜûIôޅ©—qÕÂÕŝ:a7Ÿ¸DØèeΜW§  ÿìšy êe^²ÄÄÆrGƒ ë Ñ飬ôX âÓ½ö …p—H_·GB/ÿkÑô¿_` B]¾OÖÁîS82ƒÚZ°À†Ð¹™Æóm(›®dZE6³ +êxÈ ‡í¤e*Íüáɶ µ»nκ…§K)՝ ÝáZí9UMæ=d^®Ã”e;LFÙg9þm×Ä֝¿™å}¥f“hL|xÄ«H» çoŠ³ß§*° 3µúô»µãû%º”G`-w/¿@¶eKš‘›ºZ{*-ZK:hOŒ¥Gq£îüù̯+~9E0‡Ÿö=Ü0&¢f ['ë<ÝÒ&Ù áû#1 Ëg³GyN@&¤U?×NÊþ÷t`B.;v¦Øv¹T=ñ­ã5ý“á±CçŽ"R”rã¥^KVŸ¿‚¡Å€¯¦hSrl¥¿‘C]^ô\! pAÛ¢O¿*xf¸¢¨Ð­Ø:¨ûL³•@.tqOƒþÒyÝfx0·;tò¾o¬Ó¨ùö³£ðñ¡›_*.YµåçxzŽ,Ev{KI5…Þr@’ ÇÚØ`W͈r¨£<뙰%ú ¥6ƒ¯5búü&‚77¼*+ŠÑ6.zDª!öа³ÀEr •@ÿ¶î&ú測x³¹ºFw-(/•œàÍ!è,ðͪ>¶ÿ=!47¥c¹ç ƛ•aé¶ Ó­w.¦œ+\S£³Ñ˜t-? õêâss¯˜¼³¿Eä'å…F€†å*ò>+Ð}h}ÕH#BAdü}C M€¿qïúq³héÌ%³%×-××ç÷ï¦ ùJá £D¡¬¤œ2FfD˜ÌƒSvÈz‰3©¨ÒþÛX¼å¿õÆÿÇØõõOÖõwawø]ý.]qt•:‡ÁDëIëÿݟD¨R b‘ì ZIDÚH½Ø:Рºò¬T—öP9ÎjÅ%÷ìl¼&¿A™oC™eúëÏ»$(å7A; +¬L eßVϺ«CÁ/â{)sœp6~ªé$/2÷²é»Þ†®Òñ$.Ú¶óǬ,U¨AØú:󝨛!Ø'5BG|ǜ´­aÊ#‰1È]Ãš@Êòe§Ý¨þá]‹ùBɪ”¶H"Áb-$åûî°r-¯·ÿ‡æËÅõsiNïÿ÷ÒN<'y/ÿëFº—¯ë± ÇL<°O4šxb[¦}hu–è}q•~Šß'BWH¹chøy†·mtîû¬þ\XãNτL¸¢Ù6[r*À« G=3ã´´S­!­nŒÿûÒvÅÛ&XnÃüÚ5=¶jI4YCT«3¬µ§A¼üHzt&o<Ë»¯p^ËX1ðfr°+6|-ÇåœY9cdnyòX˜Q(‡6ׇ¥¡‚£Ø2À½u¹±ãJã•gâg·uZS“?0ÕÆPd“fù}V(ðg‡¾|ç”%åUp±¨–s h—–Տ£ ߬Wâ+ʊ)’‘‡ÅHÅúº1£Þ\š¿çd=«€K±H+\¤“3ÿ7ÑZnjãƒ@žxOG,k~óÌîàŠ¶´‰D +§(S™úÎÃÎDn—Dä×Ëä©<²}<Ýù¿jÒâ+wà»0J‹kôðèýº¨+îS›$šÚ'_ÉçgÌP4ÌðókUìú%Ga±¿ó‰CSÁMÎÊQ†”¤X¼F¦B*DüÜ >¹Q¬ÏvH¿¸·ð“;ºD½³~4ÓÀW9KGwtß-fçe:¹+¨KÙ±;”6m]ð¡÷gaUï=|¼‘è¬ìœµa´íd͍¦¨3%–„!C¸…-¢¬b—9Ónl‰¢¹c¨dä4ãꤠÿlR՛[¹4 ; (‚LðÓðùÌ$TJb¢Ôb‘ƒ£—MÏ¿jKÁ2ôC`§¶ÌŒ¶¸ÖâÅë¾ñ@ÜÌLJÌ 'úçÕÄ/ \}@–IP6Ìì-¨¯>QZ9€¹Å«læ>&ðÛåɃӲ"°:G&T\ݘçbhi“+´ôje Ž±Éž£Ì¡‘Š QFýµíbU4k?¸W«;”mÑ5˜Ù²gÎS%úúïis4ð?¶šo\…ï©=ÛAÙ*Væ+õâ›éF\¶r)äŠBEMôä~¨1)ö7sˆ6ê Ïè0Î!ö=–]›OÔÙk(}°óü} 3°a2»o}ýµùEÍAé±öOö6¬ȲëÿIÀÚ›-×~ê|ÉLÁǏêX²fŠzæý̓séa¾/ÄLÛ~!1úÏ~€-ÊHP4AWKk'8³#äÀºtÎ'¥Íõ] $фxôZ=’]”)œ‰ð³z9ö±4âK@֌g{Þ+X–ÁÉóŸîáÚ@Ð)ø«4’DJã²|æ:>‡T/,šòNhЍG’jæ(I[õ51kã¡åc”¾“zSÈDMUóµ"¿ÞƒAq[_A֘ó)f„¥äŽSÕ¸‹¹ãP5ۃ)™=c†×Øh+¹PŠYÓgWœcgÁÿë ǹsÝ”.|þ@6‘*´Ëá·†s%Œ¯´|ä ùvτrÞ­¥B®Ü¡àˆ§ 8FØSs‹Ëös1Ùâٞ,³ìodjn#q÷Ô^…dᅖùáàϊ âQùßWã‡QŸãˆCí±Pñ'íeø~PÙ}“Û.Ó~þf‚ .ÏmÕ9™‰7Ÿ>^ÝÂÝ"ӆ«V3²§=r&C×ÕwÂøèó2u{š&Ü[Ïs=2-x ^å¸{z˜ö‹ˆ«yÂ𐖊8_7)çì#øižÝFD tÚpƒW¦¨‡ÿÓ¢ý[ÙQ9}uZJJmí¯­EÅàö×'ßáÉA·v&É,ôuOòi¼ 2 +ˆ@ÙÚ(…ð² RH]ç*óøÂÆ1í³|xà–b.jÔø)Gø“‘!`[nwDDªçÞ´[0z+îzSZ+Ïê¹RÉ5uÞbˆatÆlÃÉõ!s-_x»»i¼0K&|#K×E—–«êtz¤òÙEƒOÄ:T ê­ãv®û‚Ûôì~º± |êi!ÞüC$€ö!ï&¯DIGm¾fý$í¨T¦åuáèÛ2M¨fàŠßHۀ#˜x<‰Uüº,»˜ÝÖ¨?F£ köº9ÅÈDéM4.a·¶þeù6orGGx7ÏrÔų64*8j|(•ˆZG¯>ÜOdãÐQD•”GÅS‘ÌtKþZs¼Pù]Éó9Ž¬/¨,$Þè,‚â8éºÕŠÜMòzAe½¨–íÚäðŽÀ{¯Nõô¢)âGn¯Ì·¶³Æ›1xi1ÂGGèâ#l\ÙK¨îöƒf]´Fä ­ GtãÆä£n(Îtc`2 Ï[p†•/™H÷ضʓ@¢h[&!Võsdÿþ‚"°¥O³üfþ é‚ÓÌìóŒåÑU?b¦€r +Ò +,oÖ*g¤_þ%ñœGú¿ù¹i`Â-P2ݔµ‡#­­¾¾aOIK^廈ͼaÜ8^²Áf+Ïý‹3‹§ÿäj“ì]DhåýÅéer[ÉË%v7÷ÄЍ'Ü:ŒL³9żê=äüšTkŸøhºFƒU†VMšsÜ¡×v¿I˜=ÿä;¿‡Ó_ðŸ¸ÚF†*òQ¼××{J+ÄÂ8?p@~ZÒ/±µ—u…ÿ;0*|0jâáaäÊÒ*]Y“¤³øs›Z­?…¨ÏäDîŽ;_x1”eœs< ¤Ìӑ–֜һXŸ†+ZÀÓ^î*—ñ–cÿi57MÇO]Ðglì »{vqÕsȺh \hz×7‡ÚÎü`×Ŗ=Ž²ÖòTáü22æ¤F@Ÿð2f…|4Vѐ¥Ú‰ÙtH2’<á˜×K/­z§òWÑ|L^øØÓR_Tu#¢Öå„ Ÿò0±íáñªCB‡Þ¾šôõ¯ ¨W ˋ.‡ÉçT^b_OÖ ÅÓ Ä/­á{­XÔõܪ¦”*ˆÀNÏ† …9PÖèF·)3Áâ3ò"aur–ÎrçÁÖÖl%— /*Ë ZŒ$'Ô¤@1…nºŸ Lؘê1þîUÀÛaðëžÕ^ù[<µêÑÿjfzˆ]¨ŒnِCòÖ°^EJ‘38ރæÞ[àÀg›Qç)˜Múv‚>OBßì/â]Ù°v¥k ã:mL`<=È¢ë¼u/ãì—QîCêä‚2XL€:©ÀäO/4؅ÑeÄ¿Èà º>ÿmh·!^LXNɍPÐǽ¤e¶-)³9b-ˆ® +”ê@X™÷DÀ¯‘©R|±_÷qÔt5•(í¼W鈦5‚ÑݳÖ:—wKÝN- NDóª«^&q>qÁ£Öp ÊB9ž[+ý%y:Ï40_þT蘭Þ*šCuõ’š4Ö¸0ÒúÔ{ÖJföÂ[³z‡±Øà¢|‡p×S8öíÖ{ÍqvÔ 1 Õ4‡&‰#?úÓFMºÖë¡Y¾§ÃÕ¡Âõ‹ÊlèýÎ"ØE÷ට¬yè™ëNÐ~Á§-AÝb˜ Kžµk'hölR/«]÷ÿN-RrÌ6$ŽºrÍSšø•…îM'?ý:Oü«õp7IR›€_åUöm†ÓXr“‹äùSj9ðQhCÖ¢›HœË~‡Cèݪð‚­7•.È2´piÁþŸ87¿Öˆ ñô^ˆ…"=XêÄìíõy;Y +üp¾¸ÿXiBqÑ ñ­Ö¢Ï\?8Œ[ÊÙÒòßØ9[–åcôüÔ·ýW þãÍUKŒÿÔuÄaóK´®fÐÁ&û\ŠW\ÎЮämOZ·ö{üª”x‹Šž H_Ë»±ZK¨²Ù@ÐÁf Gv÷ÑE\˜×”,Ô8&Dûf#½o˜:íçožW×ɯã%f=òÒ[§ÈsfžYñmw(úT–--D^ÉÔlx’#C…5ÏwÞ~Vì!ۗ~ϑü,ÜÙM£¨ S SÌЬ¢ØÂ;°JÑH3³à2Ež’ù‡ ¼À·X–‘‘‚õŸºÚ¤Ÿ­ÔΙ­ï¾ÓúŒÕ] ²“µ**X%]™ó#%tßííë­ø•!Ì‚lÎü+?×Q–Z`Š.1›_C juá>ïøɁjâEßx©¸j.wø8obp|˜@éy#ޏT÷%þ]™÷¶ go›í².ñ–@Ák«ë™^…K-Tè<Åb[U Qý ÑTÇ”²&2L.F‚û3K÷˜¥ø©Ÿ1ª@d”Ì#æ¼X?ΰeÈð¤´WôÒQñZž5c¾‚Í©…¦ï\=Û¨çîS|³yÚüàJ2 L×J¤M•É¼qÅ®0UàïV§jc]þòYñÓ1˅Êè=wÙ£è•bæÊTºb;ܛð!QseŠ½f\N2Ô¯D÷L +]§°]/%ƒ[*Iç³½kÖ@î{–Áv;[ü”=M¿ÀÁ:d½R%Q«`êAù«ò­W‘Ã+= ö-ó¨ Ò²^¼ aÏ܂Ju/xh_êãL“ëgςGÄûÀÄZ=!Á°Ž|Çö);ÖOFô ‘@N‡UÓ<Œp¨'8[ˆ‘¥ð"ÒìªìŠ)ÜóîuãÛ /Ýg›ƒ.+µUŸßíwÞ¿]¿Dàè«[2£è)Ó_­äîæJ¿ ‡Sö!ڈ[{ÛyÙ¦3¶‹p \ò獋ܡ¡ŽÓµŽ[W¯H[? 5 9©Á®oK¶uŠ¾2.TºöËeHÎw¤â›Ãè*Ê®F2ùï:ÁBG‰D>ÚîE­¨ «¤17—\Š_§›P“/ÇG}±—·å{ŸCXK!àØ%Œ1¢¥WvBš1 ßºìŒs砓ªéÈìî/àr³áTÞi5ç곌¦'“µKøäqÝ! ÈF.ÁÉ\DË©]—š²±_Rù‘~Ԕ>Ï-xߒlA_;h$û*¢ ÙúN!U^Ï3yš‘÷¤Íé/±?²ååp¬ðÍëË^wÂùNæ#V[¸+·¹Õî*Ž„Ô©–Os¨ñ"Rz‹+VO2\W}_1Æ቏–”Ò¯¿«÷ysžr“Ÿ'ð¹r§ ö1réq"žÐ.‚ÆÍÔÙcЙ -ûöþ3gq%÷ÕÑÕß¾rø¥`Œ[n³cDžìÜ%Ê…Ê„dŠÄŠ× +"BŸâA 7P7‰Æ²EzXq †¿¶ûìmô†øÑ3#Ñbp%]¾ÌlgÅÁœ+G!;ÒÄöÓáös9,"ai,1;Tõðéé)¾ ˆ*E´™­ÐÁû-‹üÜØW«-žpÌývl²v86m©ÅÙ{Ì9Ð +BKrc¡·¿–8q2ڎi­»`ðX)9çö‡Ü†•+HقF:ðòL%w5ÓýœTN–“ˆY4EökAf‹eÕk ;E) x3F#ýóDa_z§¡»œ¸ÊŽ0 ò–ÑÌæ3½ßŸÛZ"«þZ_C‚«Ø`ùò>ßÀ5°òß<• +5òi>Š&¬¤/›BLÌl— ];øx–%+÷?"kûÚ-t¥ÁŠ„ðÑÂjêàŒ:÷dg"p×4¢Òl;RœÕìUø­.e# èBèaŠxé;Xz ISmDÂs• Öÿ%m"&4¹=Ù(£ÌW„áQ^·D +l$–¼„ê]‘FCqA¤fW£ÈPšç¡™¢zÀwKfcºÔvc5‹ uå$™¶fQI:e¶;À´·9‡0Q¥r: R„±‚Â[l3í±”®±è•ž@\ e©$: çhT®§µ?êÄÚ tõ¹¿tƒ¾ôä0ÿÜ,ëzÞ(€çƒ5ÚrF ¯Y„¥‚ô@áTÝ%Сß% lxƒAnÐÞã^X`NÃüov÷Îë”gEº{zÛv;ê=]¼]g8µ·kŒ-¡åƒ§ùlÜ6HJã5Ûx·6Ãpõåå>:§øL5©~{šq½sp[ 6ê‹kZ¨=Dr`(–`Ó´G‡£8M7hÏèíLÐ)1ù‰:û™¶** ©PChÉnèÌÉÄWþo\KRµêýdæí=iƈÀ¦K£Woò’Œidh¤ÚRýN} \âWßö«#óãìüõŠD'¥Þqaå—ߏ0yó@­Ên +®…?#ÊìfÃÐyè¼{;€‡UfþäfåÕ í&<çàæM¼o~™СלvéÜÄAÞUÁü‚ɾŠ?(ÿd 2IñQþKa aZü5$ªém@þ@ +Ìþžs×]aì‰lQ7Q^'<–=>µ‹KR‘+‚n4IÈ¢6åšþP*ô¤±2bª-$u2Mü”L4Ù`ÝÖr×aY:ê¡2,Øå5“ü„!v‘ÀP±©„'C©¸í/2Æ_‚}‚¿_øpV@mP;H=[€Ûcq5ɳH[9H“̾גRÁ ٘ȸ<ôúu~²Ü(˜¯V Òè³ p÷WQ¶€|ÿ/°Â ónâ70îƒå²šèÀnºì8P—wμÖB~*¡“X z½›UºôDºéµ ì4£ÏikԀiÐ)Û®àá,¼¦36„l2°ÕX:+ÊrX\V + +l¡8ËË⭤ŷM`+Ê.QñÀ 4ÊT±qφB› +|B…ÅÎOÖ¬Ãp5ÒyÕê{¿»^·³µÄ¡éE¥ `„ >—û¡gÅÀö˘4;¿¯éŒoŸûö‰´[Áè!Ȳ8p6GI§ja¾áy½Ü¦Ò·Ö¦¿Œ¢aL82IÜ!‹Ò4*ٖù¼üªenb‘2 ¯¼$HD! +ôªñžBîºv9„Îó=ýr)9çUÍü,aÅ[EҥΥ¹1™rí5"׉ƒ÷ÔO½{©•Bª¸HB}I_ ¹ô{^*Ï  þ†÷8÷5‹þÒV£Q¥1È­ºq§}α׉֩îz¯jMúæ-ü^ c)$ÿ81 +¸Ô‘ÑCx֍È|lJqdD¿Í„¹@û¡›„—Ìkøsmœ‚±¥,îÑA©ª®ä=zIûV¸I«O´ö¢…PMÑ€ Âcˆ™ZƒÂ»ÊÌ[à ‰]SÊ6¸–¿+ 7,&М +뛂Énòè(QyÇ4¨dˆ¹—uÝ´m”±&ªÜ5²[¶èŸ6ïõÞMWÙäø‰ë0^¨•Kf…€càÙΨxæLiiÿ`.T®›yI:]hÎYŸx*±³7¾Šn`¢$ŸêÖ&"Š©œo3ýüȼ£_UŽ6 +¹9WÍŽ ø¢Õ\¶»À®i´{Ñêë̛&m\+ñ®_.ÊÁãÃ?©/Ê.X^?jÜ÷ñzŽpz҆mnkçn¯¶ª½ûr¸Ø_¡|HסˆÐÉÃäÔ¥}̊r4Çj¤ð}çvzÇ|'$:ÇFPʳœCÆtӕ»°­4ÈÎanlÓ^ïXˆ Ðn;?Í&(›‰™})§ÜÙÑ(ðWó½î)92œò©Ê|Ô-#­ö7r&§ú×ÆÆEקˆWõç`ˆÑÜ1¡Õ±’¡·lØْ¸t¸¸B5¡“愤ê{üÏDÚ Ç§ÌΓ­´3˜ûZ yàz³ED<¤t~gôñYÐËûâ>×ngÙn”h…ÃK.t1þ&‡Ã‚óžBqy—¢ßâè7Øq•\U¡XÄø“£6x†oj¼ˆa…¥ DuùCžˆP»«?•2šþ“‡ÑÖk/X“‘º€·ó’È NÉÄ÷³ø1Ë9’RÐãuú)ˆÌ€‡Ò¡P¯Že¤*wM×ÊÅAÔ!T¾IæâÌsíf¯–O¯ÖŽ ðkvâÞV%ÜÅ£§*T¦*ØjÌ1§}µi¬z”*h×´(“§ò.#‚K(?”0/+óÎ8Xßçœ ªf£‘EÙéԉòǦH=󷳔AyQüÄ!Ÿ _M‰4r.<ÿ1þ¯bÕÉßE©ëû ô¬l ޙ?f 6{Ú¨³#ž¼97>ÞÈVIgë>µˆÝ®ò" F\<Ɖ·ÿE+´'ÐíGÿX»q­\¢pThdDp›OÝxeÏz؈®ë +î%"ÊË}¬[L7øàäN»×©6ÿé« þ©JƁŒEoU>µÕh¡úÌ;½¬×îpg•W90®Ð¿L þ Âj[y¡¢ÍP`‡ Ý0üBó0nñ|âŽ1ª,kåíiƒ0€¬u': SN—Ú|Ed<­Nõ>óŸÏJÓË'änVö‡SÔVӐM¬ +“y‹ +`ŝ߯*uïî‘tùH +“EóÃÓß #¼$b­ òj ÈÒ¤Òh¸ë‘Š¡ÈÄ?€½3 cY$_Hx.¼PÆûZQN¾¦æ[jÿÍ6¨¥*å¿éN-t߄mÅ(žaV÷ØEHím +·wX7k…Ͻ–£hFÓ»“á‰Ö‚<£óP7Ï$ܳ "¼çKO]À)1ø—0¼T$¯. p*)»y| L]¯6kdfǪíÝðc€çr\&¤½øP¦¦ ˜B9Ë°ü*QVõ"æHBÂZ ÷G´tlÒº—ªµ®È s‹Kdï¬¿ŠY4Ææ-½Ô>V³îuM›‹Â½îæsô½„gG|âîáÀ +›Ñm!}e-«£é™ji™tÒ`'èÚ¢Ûڛl¤‰H±d0õRZ8 +x)‹õgȨʪ’YTõ_g !Iښ ¦Vw{Õh¦p«Ï(§‰8&p¶ =Z§üùj6A¼­0ËåÓí™Ùd6õˆÞK~Ž%“»gALø´± +C):4FFØqîCX¦.‹TþA=í5ì‰Âfóø¶œ&Šn&y\AÙwÞàyJ|·þE·W úß²ª‚AèAnÛQϏñû±´*4ƒ ôû­³¼/l—¬šfÖòå$†T˜n1dä*FcÅ9(4ò”Ø“ZÇX$i2Åӎl‹+ʷѶ EÀÅ;ÁfÉ Mi¦!$m#-˜C®o yOŽ³öèñà‚þnåRJ[N§9+²áàÕìlž²lsêÿ‰VãWœg;þÄCÚظ×Ô 73ò‚©œ±Y^É ’1ÍJɺžÂ³¶ÛT—¾£Ü°ÿº5­®=8Q®aÎë¾×pU7ӏᡘŸғD%ëêø ¢FûY㥜ãÌRe†•¦5„ ÷VŽUa RóŸºÒdu6*wÄF#ñ]2…ωŒT´=nj#yʛ'R:‡-t4u§c¶h°/-áüSô¼/O°C=D63à8qՖY át( ôœ©ÛfK/™0º#_ËÌ1Ý`Éå$‹ò)†H‡ô·8¢ˆuB´¢ƒóáñvÌõàxòNBe§âúB †“I·¸»Þû£I™>e•‡ÎÊM®§‘íÔBÅñ©$Ke¶›nfúá:ÜG*‚;ý¥ä®Ò`ÝE–Í’+Ô4¼ Omjo¯6Xš­@‹ruÉÞ( ȺcŒ“zã7±²À·VMÖ¡§[¹æoªÏ ëvB|]gÁîxq ‘Ãߒæã†ô +MXÈ%ŽW~VWƒ|·Úr‹ãžd«cB­] ûÅÎýXä˜j-T‰`.ÍN +-e]zÔØíƒB˜à u!*ãþOݐís£½4w@QU‹ÿ{ŠK;üõ¼­Ç×àǏ0Àý—Ð1Úù1³»ÁBªzˆ ŽøP _¾ìOÑWóœ³õ¤Î‚Vq—†M Ú +D¹ó™>ËcVø/“¹ì=ê^ԁŠœg}¾ždÞÇõ ¼©òǟtD,ßiÜUåÆ_Þ;ù"/ÓhšÛºû}TûˆO ‚gŠhnƋޙ/—eߎä²á"ò6÷¢äß2l.°@„ï`€aŸì.ö«Êóå&ööÌáwÙ‘ý‹bW:¨Dqا€I¤$Ž M•^)B¹ŽMrC¯' Q“Ø®)U}Ō{Ni’; ›íUQƑ°“XÊ´+‡†—SqVÞÔ>ÓÖÕqÌmб MSbIæó±ÍUíqñR3‰.ŀ‡èvúÔdƒ'Wbj°¬Hýá‹<š‘Hó'‹;'Ë´R˜&Ê>½¶ÕU ²Z ‹Ïß·þ¥r቉A#%ŒOrôØY°é0O¦R!ëYĝ5pë°å4K»ÈeÝÄÓ{ªÒîÏ+CµL0`ۗÙeî€jrîÜvÿ¨yåbkêuÜCÎCŽŒª˜s«8˜(›4ÿîT!ë1°ö{GØæÇó‚“^jiBRÄ“ +­ÓÃ"¤®\ ÃcÕ ;AÏÃJ쬟;–S€A¸êގ÷ %wèVGž i¬VgU°5 0ÛÚӂ6Tܗ”Œ›¬m¾"RDúRb±Åô_]7ú>dܘb~o“‚w•'Øý »Ò†öÙQÆ+¨}Š›çIþ4£mU6|Äk–1M+³^ ‚F—j“ªb¦=ô˜ïBSŸenB*ðX`¡ðÔé!eIÂ2ÑA`ºV æ¾ÐI$o[z”¢Únð‚Ãz”MÞɌ¸8Ä©šë¶Ûٞ*Ôص¡¹àó¼A ÁñSI)VAˆô˜zç'ޅB¹Œ?óÐW;EÛ½jbQá’ôa!ùõE…R“Ëéå¿›К¹ÿ&6DŒb@°wuó}&M‰‚&E23|E +ì­ïÖ IïXo¢œ²‚Ÿž<,7êvl葼 Ù¬ùúTyÔµ"û³<€V°ð°žÍž#à9ÿlT–ëú®.B˜ïÅ +ÀˆÑØ1qk_dn|žš1hß,{îÔ»Ë%G9·æâEöÚç4ÆbÞz­Aßõ´]ßgã\…®^Ñ¥ C]°0æ†XIÃöºM{|${l.2¯9½Wuœž?(hTáY-!nl^\̪°iMµLɨ{WÈS¨Sö-ā}XžZx:Sõº &ÚIrhå-æ&uÙ©½S»Âë›ÄÃâ…ÇAèô@ÿy.ó$³’çŠÒ„¦BÍ1q:Œ8b.ԏŸÈÄáö λ/¥ j°ŠÄKle7’@ÈØ} +Q݁I'{?çX¿ úl[?›V ’‘¼,áô®°€Ö[ÓÉ)5Gc‹Æ ¨½zT×E­›Ëd²šì¯N>©ŠH ùšƒ²nÿ—Gs×I}yhHn•óë-¿û}Ê^pRÌYþFÁق1(3Q|¯橕)"Q ï€×Eƒ#Æx­Šp}M ¡×- ÎíÝ2á&ƒeV‹Ëùâç|Ųê^ÊI’eˆö$„«à?ɪ%.¬Ãu59]ùùÚO³týòQ5ÛuZrî>[ÖØ2B6xvJîˆ×¶}mJ&áðâwU5Ϙo\wïÄfäØÇ'Ñ)ƒpY>OYZ×æÖ ÁŽº„)X¾Œ–6©éý”O© î.2û lìåp)T„#Åðô +„MìfƐ rž<üÔEœÊö$‚Óüš +wŒ,f+¶G×|´:V}ê~'T °ëÃv zZ÷Hg9½yý´c¹ïðþ’2î%JÑEQ[ƒSàS`é]Ê®"`¯Mv"¢dÄÁXÒ]ã¤ðd5É_£ƒxÒÚò]‰†‘E+ Ó'§Jў³…·:(qßIq`7DÉñonÏ[#Ö òJ¨6Ç)Û`^»$;½õ³í¸C5àiJxöà]ò«òL€(_W,²Zdy°j.è¨&oxõ1‹é³b8s<^ ÔÞx´:yt0ç>ê,ùçU“ûùŶÑÄæ«[ÕAŸ8«Ïs>¥êIMfMÊóùÇÔO錵ÆÔÇXä,Ó}QɯºQn߁Ä9ûÔVjÒX¡´ ‹2$•A·‹—n|Êéև•œÅQÓéØ*N[ +J÷3˜ÆµŽÓ0œ°ÞŠ¯Á=¢Òßß®[oÂÿµQEñ­E[ù8H#$*„fü€¾pGÎôÝ"XùÁ4æÏp»Z%Žgù̽sΧõ—i©uJ vFÜù€gr^ƒßä]CJÀ°PI.m ¡™fu¬Oàš\Q^!‚YIIe¬ñ™~PO*Rr¢ˆ¥©´‚'ÃÎq×T?]ÂÚéŽã°•{ MŠò< ÆB•"\•/ö[@’R%ë ¼7øäŠÂpâ9Çç¶)F‚qൢOn%~ËA@#³–(‰QšqÐyû«ƒ e¼²É±¸ìßY¨¿›R«¼P–/Ä\p`„NìC·„ÜMä5g[üðÆZ@]O›E°?ETJó¥cI&6c©ßm9—Ã8 ®{2Š‡ŽÛ8Çå+©¨kÔ²R ’dû3©EƒÕVAvíÉRÖÚs/èwöœkä›RîÔ ÙC™Êu©Eu +ðr±žB¥UfÁ×:֑-ÐPNÝg•9x9˜)”˜ãѱªÆºÒ·‡‡ÙlpRÁQÍ7áç^e¡2-Ì|aŒ 뺃X;_œa¹HZhðÄñ®&yK8u9èYº«;-¦fnC¿ïÕAYÎËËã’h1ÚÉw~‚ÙÑÑ6àHŽ/ÊA¢fŠ‚š!œ‘“ŒV¢1§z‰3˜ b(˜E¾»MLÝQh ¨nQ©óåŽ×k¬Û÷0Z\Æx¿jŠ 㙜Է7<Ša÷*Hfæ#æ.¿uUÉ °ŸOéKëa]ó(‹¢˜TëÈöŒØfùR±5N5ªä4|F®ûÂ[€ß2èã$ ëó(ýÿô~Çtô®·`ùÁ+cÙf8µ3åkÔ9ÿùc?‰0'_)ÅÙ±Ÿ)¼çQ\.ÜühUq¢çYX+[ËÐk[oô^|™ëqhÞÁÓ%Y´l´ÃÌkü8TëkNJ°HÛ¤(‹žg!LŒ<±zÖ!žÝ†ØךÌiVÈ=B†DÍöô¡#£ÏÏ:*‘4t‹0j"A(ëÝßötÄJ=¿O~` +˜ÌóôpJN?oøû·d¶Ù«)©7h™&;‡îð¦îÔ\&„¯¥ÌNóV¼Y G€î]þÿ€•¨Š¸¾ìß¹y2È%}ÀÒ¿—q;ÎEHEÁ—¤Ðvª“ßÜ¿<_ãªZÊÙ¾òúo8ûÐd%¬¢dD®ÇÛ Jalè6’ðíÑù'Äs^eí8nR¶ž5½0] )Åú:6cþýÆƂ^ ن#VJœ]£‹ÖùÒ9½»ax_`lR†Ø o¾«ÚÎìüXϬú¥¼OZl„I8$J”ëgûJößeN‹mz1èÍ6œz?›è)偭ÐÈ Q³È o/ïpÈJz/!»sHÌéÀ揄üf zðZoÀ¨â֒@YÛvLy—“bD3óÑûT§Qlª˜Œ:Å¥oM,«sÆÞ¤ £ñ«øïFüµõN7¥ÑŽh$âg +ô†$f \W$®¤:¢Æµ¨¦mj§B“pùAR*=²‚È1´•_ԗ“ŝ×gØD&üÖ¦S¡ÍƕŒ"ÉTL;®ŽŒóøÊ»C³°EMQ–lR«֮ܐÀL&]öÀG¨åÚ¯Ò>¢&£ G ³c/:ô¨¨)°rÁ¢$½3, çt­Ôlö®ßïž÷Íu>˜Úꩀ÷>ÞMšm¬?Q5‘ÀŠê‡ +UÈfä!¼ñ}·"Žôu¢ÔÍŽÿa4ãÐĶYzîzdiŸJŽÕ›Æ'CR@[°wË5 Ñiˆâøù~·Ž£©‘²ièXEJ0¯´–@±”•D»SN€ôp׏ò?™Âktå<^]—!o€Mñýµ×Ú²°#”'åÔa_¸ªKV™iŸ’ún§‹'Ì$t‡Ý–šõäŠøڏJz%Ši­?"1®ž×Çl‹A'É"9L셈æk+³2Qnï–IӕªØâDLÿd8ëFò4Fÿåçþ¾n5zd¢_“C¹iŽøÇï7øŸÓ¹¡B}ŌŒñLhôHaW¤–·Á73u +¶½Â•;ïZÍCaÄáù®jmvÒÙÏ#SäÎåÕÔÉo·ÊGgSØ[{ò!£«Ë ݜ½¾ƒ¥ï¡$=æ”4ÅíC96q®/G«Ž§†Iå¹YYàAܗÐJÜó„ 5kx´'–*˜=œeÎΙib„¤ìý[:¯ŒRÑ»¸ó]§¤¨‹'ÒG"λŠ6BiÀO ¯]æ¾ú3+Ä9Êf1M)·˜áåô³¿ÔJžp§_Ñ»²ÐŽ&L¨ÈÝ|xáS‡<“˜ü®ö§ñù㇦8œ©‰§C*Wó$PWøu +†½q¬ºúü.pVÜ‘ìbmˆ5wÔ¢@ví|âðӄ,ï¾f¡!Ü9öŠ‰±<¡ºãÁ«Óç̲‹^¹cý¡´mìÖ{[őòw%VîúÇeD2í¯0áˆÂ¨³û­Þò49.U«ì÷4͝b9mà®ç£TÎÞwMyu;g\ w!v3ÝJ{ÿƒÞ¤SV±úÉä¤q쥽m‚ ŽÉúƒ¦E]õ7 ~ÝێPX2:±ßÈ'?êÏÌhÏRY=!FæH°È +æ„å-b³E•‰I½B‡2í£K-üüü¾¸³U^Eð§Õ¸šã¹Ä¯þ_']5Z˜#B¸ÙϦÕéØnˆoŸæPb  éEè|BÁ&9’$-šñk]V6XcÖêÄЄˆ _>s{»“Øb57?ƒq)vœ‘otÞ©]*Ž:} ô$AhëÒ :nÍZ‘+Z–Ç0Ûa«È]^ážºI™Äæs—×Zàâ/ƺú +(Z½Àÿs~P`¡Ão>rÍt”Ô™ŸumŽJëTē\í=>UŸ`OëBÐN¾ÙkÉ$P’ùšh«2鋪L2-¨Ê«õ”wr/'QzÝ#{ZdZËw +ÞþHu雥i “>­ ®_?QáÐË°ÿ"¾ õr¼¶  ~q¡³äE ÞV•·Œ¬]ó7¢{Kk¬y1óAÏÛÌù›ïY¡yÙèo 7Z9;ª©0L©z“w%›Cn×^ŸNZÊêތDJ–ëM­ï—åµäY&Åh%\4ßÄ¥ýOk á¡€’ÎO3ˆM^uˆV"ŽL҉Ÿ«[ éÆ{žœ šÍå¹BWš‰0ƒ•³’}æk?@NxbrÓw/›u¾¼’ß–šùs +¹ï²bŸLªét}ò2B@¡KŠt!²1Ê´m-IG0Á;íRÂ4tú˜Ô×Z?4¹æ‹•Þ1"S°¹¸AEµ™‰Ÿw¼><…;wle +0¹€€æ ÂÏvPîÄl~á9ÕíHþ$8ˆëñΏ ¤­x†þCN`0;·ªíS©-èUŒ’ 2Ø(Óo{~‡šg¤3uh®LÊ\FÚÞ·z݆Xl<îÙëðي¡™Ê5FL4¯Zoî³.x›;9¹4πrDBjK‰ávÐ +š¹è”¶Cauñ +£!"I[º \çô²®‡­‹,íýÂX}G@Q Ç÷åÕû ¿$ë´ûÓµrªåÞád]ç¿Àkڒ — ñüYó’Ø&õ¶c—-54-q ‹b(œ1=üóÙ;§äŽ~!‡ÉÚµ‰»AŒÌœäý¹…§¾¼x1ýE7§ðí©g;³š^#óAÎÀUÎ?˜Ä~ÿÆâ(; [ËÈ՗_´5ÂãsFÝu¦7n9§’§L‹E©Îrr/-¶Ø²xWy—1¥Â}%pËû»Ž¥ë£·<­ëŽ!ÒôÃLG™ÂpÄGiŽm†¸?O(SGL“ÌØ&"ó¿ÙÇg˜]/<ÜI$¾P~ëÐâ:Éw9 ¾¯Î@ËR¦Uãh#U2–p¸›]šá@€Že ¼Q(›óÖÛÕKì鳧¬¢7ÕÏùR, š¾Ë,`€Ïþÿ2òb›ˆ1pIÛÍ„¢æ³ybµ)¦T +$àAÔ¢Hÿ¯§»‡œoÇorh= ­“·+Ø ¹øë2÷Ê^-L0‹U­«+Ä¢öÚé Ê Ð12 ³ì+ ìvJî$[mN¾îCf=ì=¿ƒh· stõ½æ@KgÒV_EöV…”h‘T`‚"÷ ¾5°±*øßBŽWÒdÎ`ã^Ž[!Þ£~ÿÑ÷F¶Jäp†w³¨Ø¢$Ätô¸˜ècÕõŸ×ˆx°9Ç?[Ï?‰Û“(’pcÜ9ïlhýÝxí}à‚ÍUbјa°®¼n¨‘ßôÿ_#|Ò¢Âm€3ÝÏyqé!Îæ´+*ߟ9DÎ'ÊЋøúÜ2=ìEIß/žJ'«#¤Z(!ŒZԗ!}êØdÓW§L¬ž‡7Žß¤øø•¯o‡ø*U¸ÇjԃG€™BÓ›ím€Uaj ­ž-š/¼.Kr×l…sô;›,ƒ IPA +•‰sîUýœç%Â\åwåØ+Ó´˜_Î 8çÉöMg[Ú ë“Åřÿ¹³é?äÄ+»Äñ6{$:E\—œÜÕ¢ø˜~ðÎR—6P#&°P.W1¤Å¬˜•É!ÒçGV÷‹9P}ó]@[uTÉc+·*Â?\ò¢xÇOª^ÓK3ø˜‡H‘¬t†sðc02€EG…¤)r¿õ0?s-©ÛIùjøíàŽôx²òiŒÀæA¾Ú³I2D9ў×`t¼=剖zÉVC¯¬Ú¬½ðþĨ³LáeûÀP<·*\#| +ä,ݞîÂÂ8U»%v GoįÃțÿÀ¶Û yxƹ'^)Tãšã®Ð—äFÞòÂmf{þTûƒ3ØußRƒ2ÌÖ©A‹€ngÝ¬pj”=z¨%õšŽï-‡úº¿„Ùˆ‡}‡œÌk‰l‰î ›fn–°óV|Í]úϳ¿›k±Y˜°(·O”´ÅÊ$»gقäFHА yjªN)ÜryLÎÎ݁FÌ\]:Ð +ûÛRô•l3ÿ$\'…1r@Oü)„ŽQ‰veä,æƒE:_oÛ`7ê5(ž%lpD3w<Ê^9™"…zÁäŬPú7V4Çʅ€—6Žo)•#:O]æ¤Éó/ñ7`ºúŸ™k8ýH3ë¯vNWŒò‡xÉ­˜ï<Ï!þ´—X„ó:°ñúŒŒ«Wl}^Äå³[Hv·2›lhhq;?›Ã=E}6nñ3ԛÎrHçµ÷çÏÜ,2Ò^/{ªdg8Aè'¨KÁcJiqÕw(À?>߬qô„üQVõø£QîÒó(/ z CåÄõ¨]ã¢ñªÓøZŸpßϲEaÿxÿµh'ÑA#çQä© +=ĔXgÔ{›±Z°®î@üMÐ_Èþ9åMsçpò3¤§¿ì{.³èm½WÔ >oÙÔ:[þFzoGŒE‘gž:¼¦Ì¿ä2a‚¦Ümòp€0¤>y„ŠÃ¹½EãÔ¤¾Ž É;ôÁÛéяTbZ͊››WIò™n2:½÷<—á)¿ú|WÉþ‚Þ¿=¼©òh~J…Zïq ìndb-S»¶â4Ág[Èsw(TòØΏ +'ʉ'ׄ`ýnÕB¡Pƒ™ìâ4†ù„"²=X‚ü&øø.䱧Щ¯ÂŸAÖ]ǧ÷²˜ZÎZC´ÓÅ¼ø ±2ÜCçðgFöë‘m4«92¨¯/÷cØf?`z¨–¥ë^Ú^¤góAÀ¿öޛp7ˆ“iN;f̒2ëáõ5u ñ¤¹Ý=`§çÚªl®šwã²êœ·bâר/Õ­™?ÌOyç ›'Í+¥\ÿõýU2ê9!ñBÎ_0½ !7ž1á¼-ì÷À¯o8O\Û85úÝËÑ|zßJJÔn@«+Ì°ª)øb + ×Mo'÷…-H%¯ºLˆé–*Uª¡ÕÍï/ÛÙÞ8@†½\ ¥SÕÙìõ‚Ý6fþ[ûŠÇ'Fxg8B,ü4ž‹èû_0K Ní¶Ÿ:L/œŸ +øR±.¯6hV:x”«‰Ø9Ë‘Epb_ÄÖlºìLçiˆ‘b0)¹°R©íAhÉwŽèrYèK¹w 0r‘C4Á.vú‰JiKÑ_ÑËN=‘§ã¯•t¼ˆnIUJà¡û­H R˜6 ^~ë±eó(j³(  êfšfêŀP?E`ÒÞ<ñBÑ°+Š$[º¿¹b;àLøbz:Ãm$éªHQyã|r$åFÏA‚&b‘ª›Œ:®#ÅR¯FË»D¬½§ $;¼è`o>œ¾lwBOÃ'ØÿÞ ,Ÿ²…IJ2»@3ÖÌy¥‡ì¦É‰°ŒÊÿ• wµ%/ЯD#ÐäóÉczÈj°•tMÝ°ӗ­·ÖŒ² ùDf ÉƒI¤2®^ÿÀ¨ÆšfúŒ)¹‹`“TO\L;:¤kÕØ°m™f(âx`?”*(søñQ¾óõ&ª‰/ú;¦ñòyô´ÞL‹A\çlrW[ oc·'L¡ ‡µÌ:P½ÏӕCpßZ•ᾆÂíG€)5äýÕÁVЕEŠ×£–ÙžaÉMÞ.MÆÙûѫՈùûg’ÂkÏ{¹O 9Ç4åŽAŽÜ„É9²sٚ%F咮înÊë"Ẽâ*’‘y;Å´ÆwŒ’[119À숸í²]ƒ’ÌO«á…:o0pµ’¥ºVIçR›˜à¦bü6›—¿ŒÄÙó÷»/Ž¥8§[\é¶"@°Mxž™zD #’Ò”¢+ã“-Ç»8 Y´zйè/ÕyåÅ/²Ì +ˆ<ñ‚ˆ6G­¨€â”Tq ÞÁÓTf>¹°+<É 6M)· ¬„r¢ VOˁ¦— wŽ_њ÷Jéà‡ïéæø7v,yšL4Õ\Êí1ÛÉvÆ,n\qôÅ¡¾,foH2R0<¼ä`§A8¬ÜHm2œv˜VgËùíæöÙunº O 3v§þýL­n3“>±˜ë-(ÍCªX#`„ÎK…1=O€Yޘä¬Ma‹ô{›ú!W@ÏÑñZšk>MŠ ×,Çl5¡#Üv ‘>\d(æxrHÍ +?rŽ„˜EËPÔörxóºâQÉ1IɪÌQµèÉ°a }l°…½(åk.8(¤eÉÀrâÄɳÄDºO¹ÍL®M™±ýðg2>M|ïÀD¤Â{1!>ód{u"¦ ÄSå±hZW2ð€»@#&wÖýÛ빛RíØ7m¦XAjÿwÌB:’ô¿´ÔʽÐ[»TpÜ–Éöª8d©‚/LÀPÑìzÉûbK%`†w”§3áñ±@Ûqær¯Ô:ۘŸöe NæڟÖ(XksKAeû‡{×òÅ2Ù]¢Æɹ®žº]r©¿õNseê‚ñuíƒV³µZòE9åƒiц[GÇP:€mF×·÷þµ Ǿ:—±œ!ò¥Á}á¶ÿèò»¾ö£ö—uíc¯í€õ:taîu¿ž&RäÛéø²çqŸ¥|ggSfÕ¨»Äbt a0€Iã÷U)è·ÐáÇsp†ñXy9h$Õ&ÿÊöeHfšaÅ$±lN¼KU +Yyڐ(ó·åcÎïf3Å­¯é_>’¶:©hsÏ ØÁe‘v;ûÁ( ¾¯ Áïµ»oÕü<ÑG„Û¡ +&ò²Áx*¨Ë˜œwâ‹a +ñ…ü•Nj;Ã#C¤ÿmýøÛ¡Þ®éhíØTÀàÅ>nBõ1”9ºÆÈÑw2x\­õóÞwê½ ïnL6›þR´ÿE>2O´¢Hm6äbð€Ò á2ë¸ë˜þjGÌƜï¼ÆM“á©ò?ˆw›¿›(m–N‹ˆ­ÉˆY`W3ºÒ“ˆßÕfÕb›x …a?Ôè¢ý4I'hœÏo‹ŽfWT{!²õ>f+¢.¥È¦Çƒ+’}Ϭû"??´sê¿ -9TÍížô}ډ‘С/OůƒÌS´3>·L tŒâ¥ã µ¤ÿ â+¦g"§°„úç5~S'ڙ¡ö‡ìL»MÓ®ã‘í€4 »ÍP’7Ûýó55­«á2ޛjøˆﳆâšÜB„opIȟdù^S`û(¯Ð6hˆ48ôuŒ/oŸCPx1;ÈօYlªèâÇ쒽¥5›äì¢Äÿ7}‡,z Ÿðøº!ÀÎØåÜ(SØ_Ó¡6¡žÅ žãø’A +qøÇØ=ðBU<ô~àÛôË0YPçz9¥x`!G¤Ì°àSŽÆ P•oÔ周arrξ €ÎHt[Êö«Ýe1òöº +)WX1N$‚Ò*DïÿÃGWSGR+îø ì ŸQ¼œØç°B‚à³ÐjûÌ)åp)Š}³åٟŒ¸ 5£ ì‘eýG¨b º‹>æ™Ðk&39Ým¶”nPÞڒW ˆ+`.¥‚NC˜(BcŠ²ì^Ôgÿýå:ÇRc|¶Õ"GÙH¸b·/¥|À‰é\KSªYó(¦Å­þH n@âG³˜\l¯b\&$vþ“Ç…ÒaØLJJ®aS:¿ØÜä™JsÎ-ËđrW"¿ÄÒ6ÝÂO/† S˨€:#ÿ@Là6:¢Ñ¦Ú®¬Àù=¦K¹$¡¡g_Ç9Ïܐ^ä4WqnenÚ÷å÷+gÙÊ8ZœáäãÆÎ"Ø +Þ+vA -RÙ'ð4Ç8ƒV…`“dR+ ¸Ù¶U:k‘ÓCˆnXžµÅ!å’a7u+¿3Ӈ4™Û&.h¤ÅúÃú³8P®©îÏl. +2þÅ +4v±aßç)±›ûϤir| Ÿ€Æo¾+²Ûs;\£k½¨ü9Ë[sڀÝHh81[Y WN©ET¤‡€< +>¡÷í£¥ÂS.ˆQ ìè!;ƒ +ÅÁÔ×ຠýs)¤7ðƤ÷ ’9êÍL%šäáQÿº}' +:|sAÅâcõËÔ«a’£ _hj« ±k7[ÂïŸÙÝò]8 +Wvä@ÿrîÃðŒMŸš9E4ø!ýã[J4iô\ϸ:©ïtP”@ËúOY«’ÌJ|ZË£*]DÍùWbÀUp;gfD¬¿ªí{Ý>ZJƒ‡²¢J$ÓÂ+}e´V×p·iåÂaµƒ9ëFq ®ŒÙŠéŽ®n9ÆQ.2Ǩ²ÓÙÏú&T™ªÉ©r:Ý#0/Œsۛ +av'•C5ZNÒ[¿¶#š <âÖhŠ¯#´NoDɵm¼Þ¿—É«í n`ªòžjFs|ÇÕsÙà×'×é|+’³—uWH'YP ± ¡³ÓTË÷ÞH`G²Êi‡¡fñ¤‰ëQ€2ܔÄt&9…·uÒe/xNº†Ëò”%¹ÊHë°7xW½™Z‘.*øæpUO¡êÈúôqFÙ¬+P ¤„ñÆÊ{0Ïý˜xƍ-ÈÊ ¾y-¢Ã ‡ i:SëÜý÷"™BØXÛµW§@¨rg'2­¤KZ3ôhα& +y\nAR}òc‡ËÛÂ=àÅ6 +Ÿ`ï€å‰þT®·Ê?=è#ß2ɸ8þ¯¢tŒvúǓ«/‹ÀæqïÍ÷¬SfϞ;'iFãȕ¤iDj@'ˆ­z/,íâ$xìU EäZ‹Ê6 ÷ƒwf)«LÈr8Y9mKîBX9ãóIbÃA)9oÓ4 ö+»šÉ*J}ŒÀø“äSâŒdÿ¦›Œ ÷Ãä™ÇﯚWÿiEµ¥¤á1YΑ¢ÃÐaÒV¹û&G +× +*ëkpäË.ÞÏÁÓ Ö„äù•Öóy¶q˜¦0AÚÙÐ_KÏp*£Î¼ÿ°wûêŽL(ҔÎ+?µXp©Ùû· ê-âlIÃsBk!#3lÃ3Bn¾òŠ(9ý}”1×ó¶aò+´U2©k»B]fø( û¨¥:zá)gUɛ Ëè‡&ܪG‚ÞäëïøÝú÷- 2÷äýEû£ך¦Ÿ¶­AS€&åb€BO”wq5òõ„cî¤GuÑTCÄ,jzQdÕ~!yúu¶×ÏIý­ñªÚÚÜáPÕù§É¯ +Cy{(›•º‚Â:â5ÒL-¸}PUÉ“ â‚l귑G²AÛ}JôÙxõŠµ&(9ËtDãìbª|™î¶žÝ=ÞJbr§Übb.ùuñ’ΤâʛÝ0ê÷Þ7´6Ç÷•'…kº ƒñ›Ž„‚CÇïÓ¡Òè’ôÐÍtK縢¶_»QwVÛ¦€”Lžhr 7 -£ñš³|Ÿ`f5ŸüŽøç¤ñ»²ëŠh&Ä +÷Hê÷ô•DÈTþ¦zt=PWþdrÛ3"›šÿÑQè pŽ:ƒyŠj¾{í$â¼ZîÏé»~bÞ}ÑC 'ˆ@¤:Ljoc8.‰Žëf0[fW‹„Û8I5ÕH·«8͐å_åصw1 ™YÕý)±PtֆñÀÈf³®­Ÿ‡ôё+·_½™èU$)^wöè¯4ï/³ák™¨¸1P¶4Ïye ®Á­ù]™ÕbßS{š c3'ŸéœœœC©r²ÓI÷JrìÈ[Ì—R t\©þ•Ðèo«m¡x·â½×¿tN»»wòÂÈJñ:ëú"‚Iý³y ~Àm÷Ð[ó¹f7b‚Ò:¦g|<AR6Æù@OUêTØ«Lý¢¿ZÊ£Š +TrðМà)MŸ“[ijµIŽ»æœðµHFLKäm™¾½OTR¾„´K nð›vÁ¯¿öhwî(þ\ßÑ\õ‹øêR®~àØ{©)b™^Pˆx&^ ðË_vŒ#wŒ–W›IÜ¡––a„Zš)€gÝv×P ñ3Ó¨\dÜîþ‹ŽæýI7šÐ§q 3 ,ˆœ\X®ÀÛÃírØ͉èÚÓH!­ú=Ó vý=4†UsڈӢM1LÝýrŠæUÄÙäØ`¢Í©~ÜQ¾@Q.4`•sC¡æ×¢#¶iÐ'{ڔOcy*¿a`•î%_Oº®yâ[‚a,øÂíp~Öÿ•Ï¬}î7ƒÊÿ©3jRÒü’!=Œ[&}èwŒõh‡èI5D¯Ëy4럪FZZuŒXÇCoÿ½Ô€Aw¨ù̚”s¼“É Œ$÷²âgKOóè^^[­Þžá¨*¼Âp¹Ð™ Ên`ËlWåÿè–! QÑ8ÆÍKš î›d³;wè¸)›ô°cp¢±ßhœÞCžà”§€Iø/]RÀ§í-ü‰‡ƒ:MúãÙ×%Ý«¸-¸´¶Ñ}ŠÞ©Q ±©s`ªÀ‡§¾´â¾ Nw¦G±éS\þÇÚ®˜£«¨;o"îÛ¯ëžúþV»ù1ƒ¾Ñ0ݟ‡}8+~4”+²øÄ´ä?yº÷QŒ;Ћ +̏ò~%&v' iÑþ«îY$êƒhÕø0L?GèaºPœáe>=6ß!9sÚ<%Òýë$T_s»gÑm»ñä¤`›ï§B#@5—_@Íeðž Bâî>i;!vöÍ9¦³¦Éz÷ƒÄl”¡”(Aç9\,ï\[%ÒF€M¥iåÑ@䋡{Da˒³GsªûÛÑïhdÄÇÅ®¨Çžc]ùgÖøl ¤œáDä$Ü̒)¢?„ò˜Zwèh$¿N`Ô5¡3ÎßÊq»ÅdînìLp¸¤sí à¶j¢ÜË1© [Ýèn ¼ãs,ø"/4¸„íΟÁ$g™¥lÊՒܭ’«¯’uú"Չ§V„àÔ)“àfƒŒÍ«ª«ér<Õٗ¨Å#·hß^’ª73P S‹ÏdÝwvsWKrÖ¾.’͏@­yÖ»­ É&j\gà"½Á¦»®eÕ:s´8ۙ¤Æ-ý¡}eE ñ©>z1ĽIt+¼¸xC¤&]fìC`9ºZÛêEë›Ó¢Pó þ|Àš4I½ûiß&ם³¾Qײ‰B™ë¥F0¬™¨¤ŒÓÑ÷„±QÔsˆùuÏ[I…á®ZF>ënãMEœÏ›ÿñI#”¾d…Ü>LìÙAU&˜;"ÊÛ!ŸNWǑŸÙàؔ}×ýŽÙ²ž.¡± ¾ÊÜZrÇF £Ø$·žMg7RûRw¦»FVŽ;PçH1N©p¶ÂcÈ*‘TšƒuFÉ|™Ô‰tüG„YÛø£‡M ¯YðÌá.c4ñNcžMgˆmΛH3Š‹Tâ Ö}bô ˜¢3c­ÞÏtÖ¨?‡ºìäM{y×l€ƒš.ý ’„öÈɜ¦uÚìê3±»lzi9)M%)›h~2ófTé…úÔkâ†3Êo™œ¹D›¯™Ìì¡#¨(×¾¹Í!õúáb¶Ì4hn¸9¥b­­|ü.­Tž™.IB@L%¿Ú,›\’ÒEûsÎÅ­áÒzȹ=³å‚¢µb®^³—7‘“€ )“|¡¦Ò4¤ˆ3ÇMq.bÕ ÿßæ½Cd!mé®ù3Aé\aýGí”âê~HTUO¡qR%Ø28^Uçp3â¢dˆÊR(O~U‹æb‰6?oðÚ´¥ÝÈP‘Êô« º˜¬39«*±B)^çi™ÿ®bQË A¢lÊRì9é”ÚÓò„­äbÄ«XŸ+¸ºFÑäô)R$òŒæccâ"d¤7:ºsjBïòïÇd9…x÷'TyV…F†“=?͒ʩˆ¸Û5 B Zõ õ•nðæâÜà$ró±ŠÜð=·£¼ö׈=mŽAÚV[çº2‚ïqºŒº& ÜZËáƒzT[M—¥¸úÓ«7Ý}e\x¶Ÿ‹¥L”¦Ú¦ûñUÜáºx& }!Øoò­º?ØyàøDlŸG©9‰>þxøÿÁ.ŲjÍ ±—ìɵÐnŽ_2 %–wÚЍsQùì%•‹«MS¦}üU´ã®!¶Ç +OÒcŒxê:†GŒV;‘:T9jj"„mï΂æ|gÍÜ¿fûž  Fó†1Ö*#—ÃäØÌÚ•Ëµ©r¨7Âë×Þ×ó7jÅõ¥8rí¢y ‚5웖gd¿ï_µlôIo8 ++LóøK6̸ìÞüò_Jé‚h¾°ŒGk#ÉÓ°](ÒdÒ×`HGj#ǯÖådÔÈ¡Þ6’‡}D$Ò©÷p“duá=®§ì<ˆÇ†ÙtÂ<"o…—ø«Üc›œ)bX¹à7ª~JëíA\¯b8ÖĒ.£Z$["ë\ z["nôJ$›ðTÇ* ø¡œ…++'ô ÝBÅG#Ÿ¾‚ĶŒZdõž‡E!Ô4½ÏÒþ cH"åÞ7èx –Wkns‘Õä¿,‰šXxXå8žX.îįFË`gö…ÝÊ2®í}Äxή.…{È[†h-´2•Ñö¤Û¤ûϸ)¢É8òÓUk.RÏȀöBãj ­3èýí֒ÿ\y½`îUÑí Ü;+óMâCžTóHÜÝwLSÒǹiÙ˜÷ ø^ZÕ¹Ûìéãºïðµ£I3pʙÍnDʶElŽîJ‹¹ÓÄh‚1ÃV^f3œlí®½ÀBÕoó/ɇÑóí 9s8×ä”z#Ô]ùž‡¯Óþ^ŠX¾|åzÚõþš)+ÅâKãø3 OÉÎ>$WðèÇtû‡=›½„Sý§‡]5Š—1˜£Üj€ÏW€Ã^»M®r¼ÝêÑ#y@Ü ;6{nœÚ‡íÄö“п%dà®sAPQ‚dª‰§"û›¤ª »¶u›Íßsµ:vÚ *¾¥$0Þý‘ØQAp®t„TiÑ&]“û‚ÄI%pC?l9~p•”þ©€JÃ(”Ó­ó_©™ì»Ïm®:)ì3¸LEºsþ–9€I¹áDºép[Þág}§Å¢ 0{¶Ø[¢ÕBÆ]™ìDòð†oZvH¶{µ¾7/P(q=›hRØÚç¶O÷^¼•¶èȖ£PCPËÑ +g í}B-b ÿcá=z ósþ![mwi„1Dõ¸¡é-RNo‚ß~šÆá KG`8)ëfëryzé?ݱiUÁ•!N- ói°zkç˂jÏYÞa›·Èìè+©ZjJ,‡Ö`ò†Ôáuïù²>H Oó?ŽÌ.g’úÊ .ý\<˜iÂvjíϘÆsFñÂé6<’%G»Æô'tj௟tq…ÕC~Øÿ6ÆIŒ)3‚@fD²æåž~q `F½I¥oÞ0«ðÈ[hë°~Fù¿Ý]1OµhNëèQ¡—z£±€…œˆr¶S{4™í¢sGnFÊÐÒ-¿#Èêö»¤¯/̾ׯ¢+æÚFt‹ÃÝEÎ%Ð6îq2ð_«ïpÇI€We·Àw¥ù\8º˜•á ÿ{ˆw͎ÂÑm¢0§¡Xtƒ>ƒJô™M÷ÜÞ¢e³‰hȺ‡iDŠFêMddp[AFºt¸oO¸,|¦˜f€+a0ïhFüQP²Á ŽÆoϲ‰ÝÌôiʊA–J1֏± ê"‡Wé f1„͗NÚÚ=Ü·KTE!‚iC„iÌ¥ïãfGÖh÷*¿û{– ¸2UôõzÞ¦{_INíÀ5ã¿À^4ïÁ{ñK«‘¹ý¼$m™-4€w¿ ÛOçO[É°0ìX½ðF³fÝcNŒ»AfŒqçDi5бcK}WB±.4#ӟ®0>\„‚ÍP“Ê2>òñ·€Œ\}vØЊo7^|œïÄÿâí<¹­ƒŽ½ÝB‰)3J¾Š­ÂOŠÔ$¬ºwÇW’ø9ƒë?+Žx„ zaA: + Idä¹Ö ¿Œ”ŸýˆD/ôóÊY +ª3‰¡ÿR1‚ x­v?Úi…˘’í”Lت¡apœñKŽ·€W©ÃtáÄˏ ‡|+6//•'7­j¢:LìcpՑÁ•†Èäû¸Ç‰39ÒÛpß™gUmø®faµlÅîr˜«$ŠÎ€a»Ë«‹ãhÊ«‹+*sè#*)V`vÔ)bhjþªÌ,ÕrýsK™Ø“ëøÖxޘºÆ·ö÷,IS`R€T’ý~]ž± ¦+Aý +GÛ˱lT+ÄßÆø ½l&4^)†¤s^û;¡ÚRŽ«Ò»ˆýY»+é̛ _)¶>µ†\‹Þp€#Ú—@ž5ÛÇ<ût¤ï¼Ý³z8*]!H¾»§5dàú‰—‡Q¤ie*¬/òò¯}/òs‡Bó˜.äÓ(BŔÏе!bjˆã<è2­Tï>˜bœLt—Š›²=>ÀՑŽäC¿=8è6)c!5XÏÌW®¦Y€Ê|u=-*$^B‚K<úa{'î!(WãÒ+IýŠw¼x/¿å]Òà3rf®èp¨qá¾c‰ šÅuõEE°7¿)m²@/êI$å>Ñ@‰'˜•?"yõxbBU$?à •eಝe@èຳ0áØUˆ3îÅã™ ÎlûKS]õîÛÐì\!þ-LMƒ»›à¢ûâéc žŽ¯ 'kÑ¿oO„òGIJð!—,èŸáùNÕ& +qÇH+mÊ(¯ ^µ,âWǯÜú4Ìß-¢\±â>ń4ó]¼ ¦¯Vµ,útaÀ×ÐÏ~¾,} €ãÂû¸äaÌq¾önþ5"ª“Ÿ¤lù‰±Tùcc®b·+û&c´Åô¡cY?é|Փö)©b¨ì©"›ž©ÓCt\ :òã̈́wsS¾&w¯ùÉ!vÎ캹—ÕžíÈËêõMóþßZ€(t˜¼-ƒ£ø}*A=öý’ýc¥‡ÊaáœÓÓMÐé¬Ý•í¾OÈ­ |Ù³´™ ìSYãlEÉÿdänZeYµ™ìQ‘a9o1š=Yæ´ÄUò/m·xÑK¿ÅšO›…ãÊÿ¹¡ÜÚð†(Uü{âjfzˆIÃCÓ«¯ÇVdŽ¦„P½_àï‡ä¾ðåyùkAúBtÐiå,Ø]ڇ¥ïŸ ÚûÈ@7 ¥NÆÝÁg\C"{¥ÁŠ.7$´{‘G×Î(ò¸ñi­ÜðÆý¾ÓÖ´Öv)>1lGwIoÿ\ùD>ÅÄ/x¢ï¦7˜ÎrS Öq÷ßT5<@úy­Ïƒ9k=ìÏÁK¼†d0Ø"ª¦™ífê³qP)Óî­Ô cP ø6ÚüK8´Kbµ‘ÿwTs‘ßXgºVQ£'ŽÂ[ðÛcì?ãѽËØ©Réh Qw  +lB¥š´ž6L¡²Ø£Wô:7¬£† ¨˜Ý&'¤Ñ´p¹ï˜&FV/cfòô[T´Z½A_™•>ÈôßÓ :ò?^Cܼ@ºùÇîy½Wä»b·x¹ +Ìô/Jnô}½Z’œ÷*\µ·…Òi~–Ái™¥¶ r$¾–ø`?!î.ªDÑ̈ŸÑqÛÜ7l¥}ÐIEK'0Ê&e§þ¢â9T7‹š…,oV<ÃæÛ0 ®lrgþ±Û;9fuÉ@ó™0”k* +»-ü¦¡Â“|ŽçwüePÁu"(‹7™½•9u¡ËT_x0 +ëJ䜥áí{?:ë%ÚKhÑtàúý½µò ]­¤†ÓÝé/n½$¹@ü¢A±äL»lž°³wRôØ;3ÊÆë3œHŠx1,BŸ0Ÿô¥ÒìHþ›[”"!pFEhAÆnÇ.ý}ç;ĜÆNÆq¶$3)Ž½xæO-qNœÆ¢MWC ÈX“»&lrê¬2æÉQÚÒEóœ-]é™12²–Rç¿ 0v,7ˆT´»ìå˜Ê'ÒQ´ÂufŠZTg»A¹Ý°ÞyÙTkF»8IÊ@¾¢ûC»¥¶þâéÛ0R§ÔOžŠï¦Ö-bÀDÛ0¨ÊµŒ©uQƒØ‰›Â]x¬ŒØºÏ,„ÀLU<…ͬꇗ"2æŠC˜–FYp¤Û*®¹3çxâFZ ˆ)ŒS𳐠†«Œ¢ŒZ·Áð˜©ïÞ·’o‘“„ãiú†i}ϖláßTnlÚ%ÀÉ´}§`ßqQøô<¯Ž“„v%¤…³¬™?ñG‰HðôÈõa;%vþ_ÑÂL¼4FÐ6oäÖ¼2í+{Ž‚ŽU|EFcÙ5Áë*0¡YÔ±eß®óÏIóçä÷œÉ”ҏÂJCq{/¤žŒ´Õ|*†Çâ¦"’hª i +—ö~/Nc›îà1ßí]èóAY¯MÖûLÏ"@S˜•úà¬xh¨L–þQ!B_,nź!iVe6LzÇ%2ÞZ‹C"ípòX…Å.þäŒyMsÐ ĚWÇÕDâšãKCÙ41~ãÕ@,(°ÃC§ÿ4Ü®æûòù÷Eí?¥7@}Mó¦yÅñϯ©6 Ð1š2ƒexUBŠfÑûÙ{Û/áé6½3‹É}e0—â’ZPý¤á>ʐ§ECƒ†¨øA^‡!6";|Òi*Bo-¶RعÐs._( êì«¢ÿi¼ùºyþê>BÔbÞæӇ°¯3ŽüҬ腎rZMkÙàF}¬Q¶ a# @ëß~#¥6íõ2¹€Ì ·Ÿµ|hýŽ ¿h5¾ýC0BÝmQ—•ÿ¤F%´©·qQ±bÿ¹8IøÆE¥háŽUs6Y ¶:ÜÖsUütØÄCG#Bħ¢Z&ãõqÿ*R¬Þ[çX‚@SŸ„s(S<è}0¸Úڒ!Q[‘ ]#+‡ä&= ]Ÿs’øž÷æÙ ™v!ôÄ4Ö¡? ðß¿YìRSái/ðÐÕk=)t¿‚Ú·:‡M`trs' ÔᇬêÁ(±†FhË°wKW·Â¢¡·gÓX%óÓëvÊESÒ)PKa‹çCJnXáaävôNÓ6åFû?JÔû4Fԑ 6ˆÈÐø´*s»ÊýPœ_(·š¾e®_Ìoπ´Mm›7}P,½ëõc»òJÒF¾_CŠ\IPÓ#¸ü¬Y iÏ<Ì(ž¥ÖFŠ+Cx ëJÒ`Þf~ÏÓ,âÐûzc…o²*}AG/«¨Úãc< ¢§ ç ?ÕÕ^ÇãO€ ?Ûa´¦ÙŸŸŽ¬à >Û]ªQ"•”>ÀYÑµ¥…Ž¾g+…ô*Rý¾# +Ú@$ë$Q{/Sç¶p©!ˆÎ,Jÿöׅcðu º{8ܜrbÂIZ:?X2ÜeXf~…oB~PWJ%9¬pÀOˆvWhj):ù«ñ͛%ѾD45zRnÇWà3l)"QXo¸ªyeíw— µ/QlF$]õ¬¼ØbUžˆÔ™ÒØ+ýËCëh]µ»‚+ß^ˆýèÁÕ-  ™ Ê;`¡ Év+uä¦çÿȘÏUêbšwåÙܲ/k-K× B([ðZc’ø;8¹æáY{û¬æËp3ë +Aˋ,¿’_>‹¨Ä°þ/Bûé¢|«¥r¸Þ—™ÀnnJ\å·u¢ +G8g¬{¯&˜µÜ¥RªKáx2ŠÜì72Z7%Ÿ±s£™ß ’M·uÕh¯ªWÿB˽箬ǘó G¸½ýÎDµ|ßu›…‹óãyßû¬ìÑ<*š_c Ø-ùpŠ W0"*!ýº&H–yNb)F¬ŒÀZè+Ȥ€uOZOs‰SíM͑ªÐñŒ!ËÚ)ïs•ñ þm½z¤€‰å9¢sFQÚÓÖD;-V4ì&šÞ›Akq$Ûèë05ç¡í^„Pc©øøJ#Ý`׬CÙâ%GOFPúÞnÇAx[JilìWŽ”ö`\;¶^\ef*Q ÷éÝDµC<ýj‹Ä–þ£ÇÃK¤¬ˆ»äIJÀJu s–HçöúâÑ.*|dIÛe…k<3?¨8lXŸ£~Ô¦Éø¿¥F‹*£gɜYäHôosÐÃ;„~òc3*‡Q6›ãVœGbµma“²þõÿÞFíõÐñÉôL¨œˆÈ_bl„q›='‚TfãÿÙ/SM‹÷•ŸÏ×ל¼ŸRÏEâ;2¯©+ÞXþšÒGzñ4Ø[äÈ=WD}Hˆ}PUÉ“ â‚l—§šRB‚€xÇKç´\RÍ„{…Õâ9Ë%8²’Ö ÌgæXÈ¬|À„IWD¼DõŸâ3nµõ@æ]Y“Ú…Ò·J´©qéà+Ñ& ú)ƒá—(üʁ¡N6Ž ¼æ­sú£)WÒÞéS;Bú®“±+`3åþMA|žt»_¼kK«èAròòîM¿›ZîöÀùÒtp÷Y{êœf7û×å}Š K0à> Aâÿn¤À¼'ÒhO„W šr­˜¹ªu )ž…ŠCEšg„$·}e»;–Çw)¾Ì"TÚC?ÛԻTqŒ4vsΉõúWO‰‘b„ø˜\˜Nnðœ€bìKPš³ÉR¹vÖ·j0§YÁzìyÅÿ%Ç8JÛ1+1ñ‚ ›:;™„é_Gû „¡'ahžðjºz¥7¦|ãÈ_ÛÖÿoÐ&™Ú½Úñ« íʃ¶”Ÿ«sÆ +|ӜÓÐ+î̐Þ÷ˆYE½ZM˜;cÊ°€§’ø£gሺuセқ¿–c¤0çios[0¦Ÿ+œ3„Ó>#()EÇ~ÐÆw`I´Â&lŠÂ¬©¢ -{z«/g8SMÏE@)•@¬ +-\²êf|haÆ5q ÕÛ¸ +¥'膄ÝРчO­oÓސE¦§ýšD$CdÇô) YŸI'Ì&äc² EË~{2BE&œR∹É6,ˆá;M¾œr…6°î—æºgL]±÷alõ}›>rUíÿ so‹ÚD`óÍÍEy¶àÂêÛiÛÜû ´C›Ê‚§ZÄ6‡9Ź¯HKÝРM~ËkŠ×ížþ>þÓûSõR”CúøNH‘gSm|ó;0Ív@Wé"û}°;Žf!YXÅQ6ë Vø)o±…|¤DꊼŽtÄàÃì=^Ú¶‰.>iÒ+ëÅÚ:õ¿ t£ q`bÜg=ÒL#±¹x_ +Œ‡}ñÖÑ¡¿zgžTË5ßjø vˆ%6yñ²6õö”ì…¸;°±ø⡪yrOj ñX;"Ú?šqý»Flô¾ªÁÀÖ0¡È<Œõà>DA®é,-ïC6•tŠ\̲z”«‡•J”TÀÀ!y¤Î¿R¢nŽ”¾çonš.| +ŸA[äl"eèÏ Y´qPÝ 1b!û¤ÿ'ãäzàŒaQ_«6­N?˜K$–^H£¿áïµ)ÙKo£¼Ã-&ÈïÜE_7nþi‚x‘8TZGPÝC ¬¾î°ó¢ƒ?„ϫݍkc)>3ˆùÏ ™†¹!`]I7I%›P®RZ˜NÓãi?N–¤xÛÄ×£y«ø°Z7ý±ãØ›ÄÔ >sV=œC”¿e}¥@Ke(+¾à.YN](*íco^gb#ÐX¤†ÙÞíA‰½jQ/‰˜2­wÈcê/WØÂÀ‹SËî·«,5 1w¹$éÊÀðÁ6t@C`ꇭMÜL5 ʻ金 Çã <º)þÿä@rE•:ÜÂ/ՀÌHe“š=ð”sð¸E³ñLÀæÿ×ç[ÁEÒ{bËJQ…Ñ×δ?™#—Á`³Uwyõ"wý¬@¾7N€©Ïh›ÏgPzV['mô«@½2¼¦u²|oGÔA +<å­¸§ëJ¦ùQDSÀ-­Ó€a1ݑîÜÓ%a|×^Ÿ/<8âêt1fæª.ô¢T£‚9‰ü¹Œ“M{yo¦Q|ÆìpØ K| ?]ÿ¸Ÿ]Läu½Íp1Oè|–UÝZŠ G2|§ê‚´E„?¦s˜‹ ©OSæLû0\hJ¡A…ó"çê22x”# ôš-ªøªÂ ÚöUÒçús`Ÿte»å¸ã_ Øøl#ž{$̀V¿Gú $1Ñâ“MØ"%?ͪ–ƒÓ9íÅ~Á©¤5«ˆÃCR_”9ÔU×»LxȖçHPµðæÝèÃ74NYĵե¼·ê5«ÝH*̖¸øá›Pè™êEjjúD˜ü Vsï`«îð[fvè†4ò[›5Üwé¬7yxŠJ|\Q)½ìJ.Õ±.ו)KzClU¬±’®žü•hÿ“q5†„¸¬Î{Ǻr aŸ/Èe+¡¿eeŽ:¹ôÒîù|£ä´>¶Èבf"õrŠÁËk|‹XžÍʼn—LtCÐS~S™C +QÏc®ä׿ñŸæW${0[™®qͱÛچÓ×_€´8; ìi›­ëi £åQœÎuüÑ3¹î7hv ÷ݯ¦–HE²®E²ËƒùE·~«Ö°Øÿe(¥†ÎŽÖÎ,mñ¸4H~7ݪ1yº…Rßuˆ“3±%Bâ Ž@ut³ùgòtH›·ë;Ãå–Ü˸VïàÓvØæ O]I>Nwr¯aÇlÈď€Ñ¤»ÙC‘Í?ç„'11Æ«HGNͦp×â>kÚVŒ0Ó(O¿êԁKú°=OW¶ ÃÚéf3Ï£ùö ‘ææ´;ö’¢“¤ˆÅ­‘‚†¿ÊQË+3>ˆ–ž0•ÝÛÇàg~ +ÛTÃÔtRóçc8Ø#¤Wã #¬o.7»Kߒ eQ/L‹ +£NÆí“ Ü{q0¸ÑÍ}?3O®~[ #aSª2ÃÜá¼zèÕClZj‰+÷;íS=]שX¹#­ Ö#9™øÀ:á‡9i`sñÎ1?äĺ&O;Sš•Ü€€Úљü‰¾÷xnC¶ÄÛA™}ÕÏ÷ °]xzïÓ°øöÔ¹¬ _Þe™Æüéw;[È× ƒ9†!¬ã³j …¼pr[™Í9UëUµÿ^6T®Æ£ûb“çi°ü‡hŠmÊùšŸM{b¹íM4¥±§~±¤ÆÖ¿bôüJ &pA8â1£™çæH¨gS}Ö“m‰þbЪÀim@>»ž§TÞöN’8!¡ÿïŸÂ…!à#v¤ªq0XGW~ýGöB³V«»ú•|‡hðÄvX@҆¤gm€Çv®u ZôóKžU|¾¨hÑÉ.í3 O2šq+»|ó›ÁnÍӜzÇ=M¥°yCÚOL™Æ&ϸ|…§qâô»=_ 3)¸¾Å/Íþ­ñ'˜¸×9î{düM*tÜ饌…eªwy&6—`)$R'¾uƒi4zæãÄ3֙–Y¤TÃ_4I[Jt}”ÒÊðÁ•†¾—‡m ¦Ni¡=°Î$9îsÆ¡ÆGÒ[îI ²gäÛâ΍Ñ@6KiڏêÀêÆeL˜ÇL–‘’ࢍ‰™¼j´|n³ä  Y[̑Dåò™ËOJkaÊ!šÙ–É”L—ìLMŠ¿‚G~ÊC¥ŽvL‡ªÒÃ^ +ˆ9ΕKp‡LwZ”¥žcü£Öø°)´0xS>#q/4C%Mî².ˆ…X»QÒz»$9"4ógÕG#½×°ù ÔH~‹‘W;¥’V¬šÍ¤(d‰wÕ6©h{Ug™r^ř©Þ~éò/*?Û{k y—‘ƒ¾Zleã?hɇµM…«˜ªÑnÙŒ¤Üaߥ7ÕFdR; ´ ´4¾°ÜÈø‚/ÏU@¸â6jÓÛØcã#æìô»» »Û¹ÇXø€±›‹u¦X®Ëˆ&ŠþqQÝ\RZÉPÆÖjM/‚ýÁŸØÀ,ä>Eè(|Ø3ÇéZQ®‘£Ôá©éw͞yèüy»'?b‘7óì¥2¥Ùæ·º¬¯§;%à"žËÀ«ýÏÃáÙ°ˆ¶•³ŸúŠíхÖUõց®;`†¯*§ÌHԁûr²Zj,j± Éæj¾ Rç±{1zñ7€²uÅ넼ý"£WÆ Ð7™bhï$³e·^t⺠·óª®h6ÿÊ„…)uì@¬ìE•=ÎL̊(,3”Þ=ÂQfSŒ?ùP[ӌQåâûž&0¹£áÄ7ÿÂfìò¨í ›gÆñŒþÙL=%[ÐS%¸ácý³c¡Í™*óywcÁåâWõnªô¾“2tÒ÷/oR2¥Zè§Ç™H“BðÒ}X/fAÁ¦ÍÝé9Âa¤}Õâ‹ý_Š ñ'ü`NûÙ­ôדµ‡MÇ ‘ß‘)óKÍÙfOÄÑ#Ìu­œTû5O\Žüf90SÊVå‹ÿcA=÷•9¢§!h=ªÍ°œÌ +8øoþ––Ê‹w8È=¶DRæë2&v9«¬ùŸÃVR쳨_ˆi7ƒ…¼×‡×ܾƖùúO<5Fƒå;æÆ%›’lƒT{Ã(߸}ŸU +ÞúÂßânÍÕýÇÔèødnÀ*›è´Šþö{dpNÆY!RúEמe„}™x2¼IóÎb=w{­° ý³—­¦:‰÷Î ¢ ƒtê«F<™~O-{d¶áêãBá[.Í~‰®XñÞ°7÷@î‡eP=¡¦i¹jæ¸RÊùlzW–}ÀIÊtÑV*Õ^Nìû[ ­`¨í&÷8ɈԹöV2¿íjðåNÑuÕÿ_Ǘk_­•;+¬aUUù(<Ò' çU­rþΗꐺÅrÃ)±öE"ÐÁe©ÀÙÞU2ÁîhýƒszOuiˆ»XtõÄÏ3OŠzWËh3d‹æ€ô³©‘ nn襉:.ß"¤òd­½ÉróÆ:%fÊNω¿Q1ÖG÷ë yñ‡¯ÙÍ_F_ßT›­™”ÿ%¤Ë4··{„Qñ+ä="ºæ¸ˆ“drgnXù˜å÷»ãìzá?»v&ÃÙp/ñ· BÜÄ҉„T¼òȧòCÑck¡Šjà|›ôÃR;¬öé‚J3$Ë,ªXª«»œ$‚Yëd~@]’ÚSOá^iï)Ûòܾ·¥žxÕñð‘ê€|õt‘¬}„ÕÞ~ ÐE;'-â/ÔÐè¥x^7㙪 J@|z=:Ö²0ÌI³Ê¹¾ v\<ñKžS=¡Ü3¿´tDÓì=SÀH°¥ÞÉ6Š +8v|Áp sÑòÑöØp©Û‹V+U«£ ªp+{Gkɖ•À¼ø7h?C=UŊo|Վ/uô ‹„H‡ >káÐ @XôӞB%εWÝÙeIƒzƒn=/¹uüåÀÊkZ+%­ÃF®Ë©K%¡ä1}ªo›¨"z9S$,ÇA%ÀmdÀ²jy˜6m-üL%±8•˜]ä6äۑü„_ͦ۝’†&æhˆ8"®¾U}·®—ÇâçÔÖŠ‚M»¤@gÝ9⒊Qß=Ž{BÐÏ1J¤WÖró a¾úVM>&™M©Dïjihq Ù­û"ÇI^Ϝ1–õɸvb\ÃüvÁÍ(ZkôË ÏýSr,h‰sÎN|¶œÒ¢+²W²g§%[‹¶êU de-=·LP¦{§´wò´&Sk^qÖmë”æ,ø"ÈãR:_!œjÅ`~8ûð +nÓa-,`wót{Xc¼õY­ã܍+jۃh:hB¢¯=2ÔHÖ2™q¯òKï@Ë—1£ÐtÞÌdÍÁ•¡¢6å×ò©QœßÐ7Ñf¬(áù3gÕ³BýÃ[þ‚§ÀqæJl¾µÖ¨xmѵqAýšgïCz³Äåíwrªc¬¥ óMÐ œÚdVKP¡{PÐkvà ’ÍÊeüÂ;a€¶`«Í}.Xe-•Q‡#¤ÍŠ9¥ØrüéÀµsÞåméÇN€¡Õt”åØèFZ Æ%Æ"T(âmÕ…íˆÈë,ŸW›¨ÎBÛEy÷Kr£ÜZžûÎƒájG-ãc·ÜpíFÂ+ª>ÚºýÏ:Ï2ç¤ ڏ=œøe+«ŽËBcSÖ ©å°UÎ"òg™ BáX~ŒÀªÒa\¡üØÖ»¼ óËi󥩀·¶òdüù°Þi†g’øˆeäs끸bŸY#ÏÉF‘* w>f»i^Œ¸yø`Å´Qph±^K\6–˜77ïL׈,¸û «-sºHε~IJu䷗9ùϗ¾‚ÞI*WÓ U«ÞžÀjìXÇm|ǐcdG1얳.¤NÛ³ž¬Ì¾zŠÙËåcè +P<|½—e¹«1«)ƒÌÂʓ¬ hñrù ÊÙøÍKwÔÌ Empì˜ú~»0„°’‘ûz¤¬Ë5€ ñèPfΨCÿԉB4gz¿ZþžzIEç#˜e&·±BXö#Á6á6:0ë’Ãó\zF'3‰í t$™ƒuÀ/©P"–8¼JéÀC Jëq![[öÉXMˆ$#à&ŒT:€Å6­M§·¡F[¶Œ¯º'•E˜û‘Ït—jä:ƒ2ѓ)Z¬×©óëÓÏD“²4qÒFƒ£Æ'sI,ûI:Aw ‰Å0a $ªËªjk,öŸÙ8©ù×M¿qÒ¿Š·… ú0UÙ¡b£\Üô]SeŒÈjåè';G|J¡Ùæýäæ ïµÖgšÉ[ø1–L‹ýÍ —Ü°Œ+ ÝÀć†"˜fQÆÜE‘ÍbŽL¤7"yàô8\XoNǓTȯ §Q!mäÔX—¯slZÕ_m¹¶oS´k‹ø*¤Ùr#•üÒ»¹ —s–Jr¼KuÛaG{h& äP+}àJdN +ô~Í®àãö\OBcî&UX}ü4¯ ¿ºvzƈÖzU㛝ًÛ$$I’*"˜ÝR8LF oƒZ‡UÉÞúŽ”׏¥”2t™Zº z+¬ +ç |ëΆ¶¥ÙWb“Ñàøo¹¾ dGgúpfë…VŽëjÙÄ+OïJTbÀû«‡(¨Þ'+8Ff×Lºû4M¾¢£Bãì„qÿ†ÅxS6Ù C¥\7‹âYÙR­L’¸hqó×À¥Æ#ò.K…àV±¶óT•K¾î8è֊ÓÞ&ìµÁð•+Õ&0ö¼[ô„E’¹Íé¹Ñ™‘-Ý£oñ€Èó¶1/¬qþ ŽB´ˆ¤·G‹MˆKHH$îEhÇg‰µ›ì”€‘ðd÷߸<÷Ǔƒ—úKpÌL;#ð½ø ÿ²w¢ç$úáDùÙ$¸òǔ­L ôSªÄØçì”ÄbÇw·'œ•²ºÒ΁;›M[Øç¸òüX!.b‹§Í8§Ë+ASèQma¬Õ¬1ˈºÇ&Ⱦbin@˜¬²3#Ë;¿FၡŸój¹ ÒHÑúq"éyTTŽ^ãïÙ܎¨XÉÐ;/@c-H2Ì +LħW·d[ªÙ€;ký ê^,Uÿhö9§Õ|0Y¬_±V#å$ñ‘|8È!E·AKw7¹ºÇÚ£·èb+5¶Êy±ß?د¬ÜÇ2Ú0o6è§hÒ1P£`ç_z—}Ñœnu¤Ä#¶ÊÀ¯>ŒŠN†5¯¨­W]RZÎ^AM(Gz®ñÄëV9–)}–¤é£»ýGXæF ÃëÔá¥] ϐ.Þ»â¯ÐùtoúŸV¡T‰Ñ ™H1A Ë1Øo6+ÎP$†w™#,y,ÎRHú2󽺬ØV˜u¾†±Ã²½)N*ð,®¤…+BòDŒ¹ñ[ž¼W ŒÝmPÓ³ƒ«ÝpµQ9[f£I¼êlplRK½ké‚Øc™%\ågIî¶[hÆ^[x ôÁTn™Žv’Kº€t¥šw¨óùÎ)ÞL`Ç'Ä’2L¿ûœ°í@l„i>X¨Z…±?bQÄ|$šÕÎrµä;°\X?È+¸–0‡JܾúÃwÐa{÷x#º¦¬‰™»¿‚JðÚÏR2 3d÷„2\ 0¸ÌQ+Miهà(£ÙƒD¤k½èo@lS奣惌꩕¾Ï2"ù 䦔ªÇ ˜À~ ׶Ñ8³¡•õ4ÌPÿN 0#¨¡i L{Ee5{Ù¡ý¶íñÁ?¥NyCã¬üYô! —F"â’îŠõûÐí·±.µáÎ¥WÑö.ä1í0{ÂÀGŒD9äDµãkêya((¯@6ù—!Ý{|—y‰p¦kH1­âÀ5ªËÂC·Ž²ÒhÎæõ\€œ¿àžöBÝ aˆ¯3¢æ‘d+B%ŠÐ×~٘ïLå;_Ò\Ù¬Þ0U¾2z³~»&mk‘ÿ,¼Pm¶‰.’8úiÇa…׏[ŏ¸?ÜB‡©wð7@F€]´‚#qˈZòþ‰Yõk„˜[‡2°gEâÉ0$khÎʦؒ®’*š‚{¼Ý·\ȔŽªX˜¦Jåþ!Í!/Ò¿#¤˜o)?àT '†ÚÁ½/$ù $²Ü¹ +$ë^3°h]ñ´ÚÏ> Ú’ aZö“·¦:Ł ‰…M 3(ÞL–¬TÞd¡Ï%¶úƒIé f?I£l(è/%Ròï2Až'Ò´‘ìºÂ^*÷Š“t&¾¥ž1P¥b¦–)þ«Ò „ë©8ZR2I1{,¡“¥·„3Æ4ŽZXC¼B¢óÏ«ùÊäÊô[—ÌÐ7»’Œ‘›^ôx|I[ã nÍL#[d±¢á [r3GS( Êk}+_‹<áH2½#u Ž¡lÛü†ö ÌÝEVö´¸R½æ÷]¨ÿ,¹z¸\á¬ôµN\2G“ëu›Jžâ¤`¥OŸcŽ—f¡-ˆë]44f6ÄMVÄÚ·JUDz+Ü+§ +"‹¢Žá¼M†í¥ÒÓ±ç^ÓMÓdï:W@¯ ·ÐDEÜ\ Àÿâp]²Ð‹/ðl7ÌÖ,_`OØí:RÌtgæaa–YŒ˜?@ôvښè2‡iï†ZòÀJ#º×­»^uo9§0ž•²VåÞïZ¤í+ +^ìy \Ýü¯íP´™vŸ^&UþÁ‚ëAèaDÞ+³ðñOX,ÔZqúˆsóÜʵ ì“2bÛ«ä+¿Æªëίêª×Ik±É¢žOåûl>Š íx+ßç‡&g@qJPwCú7uHhfObM¾I,5Œ>÷!ÌíÇ°L"]ˆÑ–÷Üq«RE¼Ôï=LxP'åpA#5'M< žucÄï¤7° 5‡ £ -¶™j…HEŽ…5æÇ̪º© ŽƒŽ¤¡ŽÂk£s–ù ™›£XÀD^IÖ<*À?ÚA«1ÏpÂÍÙ­Òÿ<Úà`GÀÅI€¹„lËÔÑ/V¤¤Á£TD#âڄ%Úð¥ŸKVoõÔ\¼íà²BJúËèûégø0ËãËDb¢xcfMç€4†Üôº®iûu¢›ß ê,RÕÁ[ßÌG`äÝöÁVLúŠ!÷ZjW:3¢Ví0T3³`û~ô)t0çú›³ø%€",ha²d¤ۓÛVcñ»ã˜Vg¬p]‡˜{²ãQ§Wªòôá…¢°;6—Ú!Õo™¬u¨kÀͩŒ£}3[Ê;rG0žÐÎÁÑt>Âj×O·ùù*š²jMÿÚªWÑB„u[)WMrÜÎâû/øÁÏt^Zì§>]eŒz®)6†äÿ£2ht½)—šù"b{eÁ]×oÀTz·nÏÈo¸€ÖNzÜRjPtô2äêü—ˆ LçpbÏüš?—RyÞ.ãýìójé|/ºèsڞoÓ^^u¤fjó:§ÿÿ­ ó­ýÿp +ŸÛsò(u}8i@òYµ—D3ª•¯n>LžÄb±shÍB'R^pKÚE܌ž æ3òÞÇE,ëI>*'´¢²ˆª!®4ƒ'êK^í&Á{Kُ1ã:ðQyn‡Ç­têˆû^üMó‹L¡øEõ~{O‰Ð3n…Àz`>Kïri0u%·ûÃÃkcÆÞ=,ÏxŒ­ûáã}LRÖZ¿ÆO«núÄ[Á{£MJ– qhO¶¦bøÊAV'O魘‹¯ˆ.þ瘬<5\bJ=Á¥NAÄ!¬Ué6^ÔÑM^Îä$ûÕWœf*wúˎhžK”Ge;ÿ®Í;: Š&T_qÒê°å è=Š‚Γì=¨Úïy¨A}4™V–ŸŒZ(*¯êq¥P±‚ïpÛnj‰¬Þz¢64“Vx#!å=¨í©}«žg/Eê m¨B‘˜^Ê nuºÒüõõ.y8ÁJ¢™EN»  çþ +m³:G¤ +ƒ&-Φ‘^ge íöÄäþ*~ù7û¯a¦@Âml`¥U,÷¸ö_ÙvT( è o§õ@’S0`¾¬ˆÛköî5ïI5õhÍ8xgi‡>z1êŠ[Pt¤cºt¢kíK0t²úfÌÕl˜•—õß;ßrl>F¹ôu­ˆÊÄMùŸð]‰Ìoâ oÝ H¬¤ÏRDø$:tQ¹MƁ .#O °e ÷’þµ»d‹è/®Þû ÀäÉ † +n,4ô àkP×7!²Å˜`7ÓâSfs/ö*©7¼n–óD3/‹ ¾Þó0–Úì‚ü‘å'Eò´‚Ò¯øÖ¬É-î Ý©6–†¸ÔÛÇÑÄÈÈ.á· dþ•“Åý˜à[½•üž5e¥|cc¦ŠËòLqŽhR¶øŠfFZ@‚¯²Kz;ºržÊÓÿ5ÃÀUžÊ}!Ĉáå ™ËÈ·×ÖêSh,$<;™Åßã-Do08b’ŒxRon +×ïVìŽ{»CœƒI©ë‘câb<ÊÛûPvâ¹nÌï!®+"*kóUÎ$Õw +Sù©ä†$+G–™e‰$¸ã’Xãàù‚TH7ÿK"DË!$õ¸©÷ßäCi”»ˆq??BÔrˆÝO5ûѐ…<(»ç µ‰PÑu‡š‹9AþH´Àrv^~cµ±|w•möÛQØæŽÏÜj̸~×í¬”µa€¬Ó‰€î׸ªÓìvc +™‰¾üpYš•Ê¦ù÷óæ¸%¨áÖ¿F¼öF¿×2Ù؞ìWŽFC0¬JükWë' îbO&’J=cUq‰ßO/“Jã^øYÃD=رq'fg.G6y8íÄDB_áÆø¾®ë;k/|Ä+]Û"ªÝÝT¦¾ƒwñîÒ/4}s‚Զ͹çÝ7)‚ukg gRžyÝÕ¬%{¶BŠ˜Çc&2û5töÙCЊ³ˆ±áüJV؛Ðײ´Ñ=ð_ˆÏëݪ_”ÿ–óµP^øX®xßiž0µŽ³ +o‹QŸÀ’{ÖÜùÖNF8¤‰Àd'Em à½7+/`Ñãzü*芮¹%öt%fd§ðÝÕÿ‚E±­zŽìָݡAz=-uú%ëûiH¥à‰_è ֎ ºU1ÌAn” +J#™ŠB1† ÷©i üôG§ …U vÔ!µ@ÜـdHú ýÙ*AbŽšV÷™Eð|SWZoqƒÔ¶f—O„j‰­ùžùƒ4¨y:µ0û'­Åüo*iŒ©Äv¯_rYŽ;täs…áÓ$iZåÊu'ÞPâ6ü칄™ –êüà\8i< ?£i6ñc#§ö®ÎÈf»fjÜ ¾56?€®sÿ"ö!ê~ä8VǏc·¤ÉJZô›[òÕMqWþÿí'9ÿX0î@ií ôú¾el«êQíÁ#î+pºÅ]c‘ñ‚ϲ8­71³ÅMÔ=ûªs„z“íÝN¥„[ڇ"õe Ó¡‰×š¦ãaµäþ ñê.ÛýØ"Iͯ[4ºx,k’øàì "豶߹£ïy‹ÏkG€HD;éJQšnA¼’ì}+š’V®…FF€>}&*h#‹Žà›¤¢Ã''x³›Ä`‰à·S.Ê06IôŠ·dÜIÝ^!‘o´dWí]È,¯¯¨*>r ásÞVÜr^KĜêç|ÖddrVC™?ùd.G‡‡È‡Ó ãx^c­t%¬ÈM«¢ó:ô¸ãïtNÁª‰Ê =䅙œ‹°/%¾ËUœ‹°wH6¼U°ø(þÇMûŽvc8ä A´t0ê?©°Žÿ–~.óò›‚û…W®Åˆßë˜î +Ó)Þ݊ëëÌ×FÇ·î€c€®3=Ni+ŽKgôúܘÂÙ ^olÃâm29,|S¹N(/y¿;4kNlSã>àk_…€Àn—ø‰Oj^ea!w3³™ƒR]^=r8sýµ²· yé£Öª©ŽÏ°’Z¥ÞV$¸CZ¹Ë®.1Bš¨®Ü¿)ú‡Ü_%Â!#ÁRÝs¸>ˆxº~È*€ÄvÜ$‘«ü+:Ù !+ +x†ÓÐ悜\W0Û#LhÁƒ¸ ÁG˜<ßË~›H,ÁV9ûÿ¸çxd~ä:/PÂʉ)/¼ã åŸIònâKª~ª^¹ Óÿfü‹0n5—¶Ÿæò¥»Ò·!¶$Õ#5’Ÿe*T‚X.f_1YÂ$.ñ÷if엦O?BÀïÇ6J”K£ê°Ùq!Ó_Šägæ£ZªÒ<àø·—ê7Fòfùt?[þË|’ÐN9f÷|ÉÛN’€&‚f&4Îd¢q™!ê+M}]ÕrÓ ¹©3õ×­?áûÇû1 /Üìÿ¹~ãeâS˜Èn¯¹¡#IÁ£Ãšq'wÔS \C_„à{´YÚƒóÖ¦Š 4.NÄ2ö֝© +”ˆfFY~͌¾ xÇ>§ïÃnúŽäŒ`okÄÑá ñ]HôÏ¢cIiËæ)g'úžœ¤7•™‡¶§ a¼O¨w§e[’¬B\ӟڞµ¾ )O~#ÏLµ™öm½øNòÂ$(ôO]£„øY‰hÜDÁ¸°[#eª>¨Ý©é­{m¶¡Ã°ã~Ð~[÷8ê]˜<è²U`-¬Ey¥®Éñý2˜°K(ô +SM’ùœ·†£ÕYWåf"غ ¹Óòø¹è´ (ä$3×.|1wG…Û„Õœ¶ssÌ`1tȽS×ÿ˜ I=ůš–œ¨î- VNŒr|õߙxý”Ï¥®Y<êª;ƒÛ¾¯€"â»å¬—©¯p‹|ñ¦Ïãý®3[½1®h¡é4®…Þ%ܔ"öæò…¤¡ÂãKᄠ+Ëmà~,H˜+BS'Wt† TOPòû‚ððԝ۾qróãÅØÒößO²R4Š€ÓqLZµŠä`÷¢qZ'¯,̃K¶G¶¶èâÓâµk@é'¾3J‡tKñý pâ4û%ìﮞJÜðe ½‘7üvƒ°ðJ!ðFçCÙñÿ¦ +Cf¾îö­ÚVs_º®ô+$¹PUò?å'*ö€á/óÎTÖÛ÷“µ÷yìž4ñÉ{.L$8!A¤‚LÛ¶ŸT©äéY:ÖuÛRaÓêØÓQbù/ÑBëÝ +îÿM:NüÉW/kñ#K@svE¾Kïý⑵×Mžc˜—¦‡ôƒ¤ÉT„åiùšj‡Š§Ø÷b` JV0ŒKR¯i™ ;F¶Ìž +Î`ö‘á aʌ¶8©’›Ô;Ö¥&¡@Ò¹åïkô­„—ÿ£*…l‡ïªöŸÆöpjQËãÿu”€£Ù]×j‹¢í¡ø²ˆ ËâÏêÖou•T)gˌ‡ba};ô‡çFLq¡°S@@H½i —’.út۞ÒЍ°è]-^*r l×â"/ìü@‹xýð¾–M•™We+ÿjxŽ$ðT`P¯"S‡Ík!w–8ØkŸ+íC4Š•tmÚõ%3ÿØ|âkˆaÈy(¯Â¢óžádëëɜ`v€˜Å±ûnô/ý_ ,kğ¦{o‡ª’29©¨Ó%Þaü 3ƒ‡FÉ£x9>¯g0$•/§…19¹þ +Q®n0ó1^ÒG¸”x»lw¯K*aÈàKeÅooy˜_ÄȤ5_fäʨÚÿ‚غ˜ +ÒÜ;Ç#MÆ®+üo¬ 2QÐeM…f«„Ç«^í­—‘³MÅ©‡â8Ÿ)ØQŠœãü‡ö˜7\àµí>›†{¸ª»ÇS¡Xÿ9㓠֚™_˜’Vº‘ú‚„K“V©*…Ij¶®ó´²kV!‡C,­§eËG‘/ãS9Àdh:U5 ˜À¶ž§tÁlZ©¤rHÁÇD}‰TðŠr‰«=b;È÷³~ÀGðÇOœ¡ÞœjU‘-ÚÃyËLì—ö kUñ ×8PQî×0¹YæŸ"o° + }ñf*·Y=æäu§TìC1·›´ _ƒðG0*ݺLd<²2\å,ýj]øßÛX…Ûƒ¨©zbÑ ÷K‹”ß;+9íü`¯1ã$CÕJýž8ůj®ž%U75FH}]¶aïtÛ1ç/…½xú¤Ó,ôÀÜ#$sâÀ8Q/É´ a7…æø«È|rÃU¬¥jÆx¼ÏZG†ââ.$ +Ã.ñ·u./èa~í9ß?¢é°9aG!p¨ÊVì)I nø1¤"+¥ôÿƒdI\ð±>[U—y¾à¡ê,²ÄèôïßY‡¥yP©òqEtPåXŠŽ^ŀjÃÉñzë ô}ßYp…5¨ ˜ê9ü²Ó öÓ+™ƒÆñ¯s<;ò=¿?A>("¤~y‹p›Ü)%V¬WF )¢¡×»³E— ÞvdKª`Δì×vÔñÚ¹ÓØÛl­AöøŸyŒÒjo +IÓ-Z=È')Wõ¹d!q¹½«£LÙg¥J1›c}FÀ<”Šà@ñœ¹i¿³Ï#MMµTºQöŸX”ˆSÓßdÜR¦oÊRð¾csËÔOÑ+ß'F˜¡!fÜyš"wъ¬=]la<AéWÚ'\zF?ët¼hÚQFB[²¾2ÛÔÑ(I0þ„«W:…¹fˆÙo–ž:ë^ûõҐ˜'ÐÑý^67³½ÖÚF$A†@(Ÿ.vÙçㆀ~dìÓp*‰íÃì$‹âeFÊGâvËT6+ë%2…†1ªËaÜsI«5/¿õ˜RSqH—JÑ߬ +„4\S13cp¹6ŒàŽl#6җ´íÑ%yø¦h†§^¸) ÒüÓ\²ë[Ԓ²Ðԕ£=ÒÍ/2Y¯Åµ5“S)iq;Ofi±¿þ®´5öo÷qüq3Ґ£Šº®šUUAhÏB5v.»’Ók’ýgEO}۔1Þþ¸¤ÓDõ£~ÓÄ0¦!ÞÄw€8*M¸zЩëY¯žúàÍKŠ^mGÔô;¨»=i|²?8±_‹ºÿðEÙ #:p“¥š„T,ìCÃÛooÀrsƒ‡›l-¸ò²ùRåý:\ïmØðnz¬ÃêÐoÀ ´•PÂ×è<”s½r°¦,¥puX#¡çÌ BBEäAƒZ§ff^ +Âîj¤SÍÿÊPªš?ÉÞà~xägsæ‘Øsqô†ýMï“ w($›¢·Ð>œPùÜá Ž=Ö.¢¨WT›„äÌ$%é÷=„ൊÿF}tx½l¯þJzm¹`nÏYÖcÉ·[—ÇÇc°õ ¹=!‘¾µ TuùzLuIo9ïïr9«9rfeº7‘ð3ã½L~}Z¯öóÄ-iÑÑêø£¶â㉯¨rzC¢›Ó£xɪ¾~vÕçǀ¶ëó8»uo$¹ÆÆD†$å6­EÓµՖó*ýÛEÇγ‡cGw@nRé5ý†ÈÀZ*Ççú8ŒGç©©¦ÑیngÞŽg|,Lß{Õ7,Ÿ¢e‚ìùÍ[“1NoF‡†-/ß6»z:ˆÍVU>îÖ·”`x}W;-¡ñ„Ôë~ƒl.ÐÌ&ÑaÄ=âu‚¯8D—r¶Øòü9®äëZ†©dg†w%pƒ=4—~¸ø­-]RŠ´ÒÆn Ê7xB±6mÅÎ܂Ö9 ð9¼tjÁPXw숰ãwÒõÒ°+T\k=¡€›ýÿk×>¶ãËÝ;ò¬>ÍOk2 s¶1cÜ0>sv7¹ŽòU`G{ ¾:¥dKЯ&x¾Ì‰[N€q‰r«'¯þñå尕…^¬‡BøU–ç"¿ÌÃ°.ÖðL¸C ‡Xg‹JýN±|«=,ˆÞô9 ô°pï{À…–9.°)"DÐg؋¾ú¼` ,ð˜õÒêLාÆQx$¬ïû™ß\ájŠ´-}óîJò kÇ0A%gë¥ldkóÆ ì…Ÿæ¨Š…™n…Ð2Ôü’>÷6._ `­¦³ÙÖO:$vБùk’'{\8wÀc•„Ïÿaÿ5'do•uáI M‹š±Ϧx–+‰^8”¦Ø]Ï®B0d…£Çæ+¨¶ôŽWò)7ܹ˜:—£‡PLâÿ}œo„t[X.|ÐJL ”5>¤Ë¥ejIÊ@7bQý¤ï>µ¤‚h¿ LG/éŽ2Úó6¹ž1áðۗýÀжC&àüVe¸Jœ'×±£ú7òùÑîr y{×\:$<ÿ&$MbÇ®ÁžNÝ4ÿÔ@uËD#®=&ôÑ•h “Ä{œ(_©Nê‰Àê¼-xút ÜM)ö°É¤Y–ô2±ݱ=écǬPœpò†uø¿bÜãé*øÒÜÀwû +²®ÖÛµÍ27g’ÓdŽf¬î‚NÅdWr‡Ñmt™N-_i¹ôÕÚÉ{"ƒ;½:>`¶‰jpÑCêsöۖAµÀ|ÕJ§£Wð³ôºà~øq×4ÝúˆÚ¯ˆ8ß0>ì{—mžvå°½‘P`·šŸÙÿc} É8uÏ1¡È‹õ6¥›KÅέ•èšŒ‘hx/¼Þ«P¹<ý +"ÈÞþº;J¬†‡¿“ék+¥ Ô³üÿ’íÎ@}–ÜÉöiØhh>ÉÌ%4™!«2‡G0”y7öå¾^ó=¼°NÞþ0©dñÐ’é­ãÉѼͿµÝn3»8œ¹bÏ«‡GŠw‚ÎdÈ&Ïþï,ò|ízwv¾a?ŸSÜäz>¬X±Ó x +éT!ﵡR¾*ˆi}gJîैI^‰“Ëh*Û芗=43j>’ä¼£k(Þ{暣±0BŒ}¹`ØaݸZ€sóJ„IÚzzµ›‚™P¼ o¡;ë#ïd +ù]C© ¸»N‚¯1ÞvÀŒÈé”Q=jÿÿî ¤·Ç h3µQ^ïkSÍDW‰úì ˆ:îŒÀ‰¯žÛ¬TžóªPÍÕVU¾ ¢n%ÕÚ²9Ý×£^ûÿŸô,D£¤¾¸)®ù™D0óKXÌa`¦’‡É%=æÐã§8ߚ#(5©†ÕL8\~œT¨ãˆ)ÜÙÛ&OÜ覷·ª½ÅÍÆí•Ó¿¬‚’ufå©sG×xuëX» l).aV&.ÿs=ó`.˜«æ 8€üR—œëe¸Ngâ»F±YÀEµ¸Ô탼+5Ë4®÷ÖT¥ÀÉ lԐ´¥·æՀá~°™ Þ7…tÈÃgZ,¬›èÇpˆr/˜Z·+Á»/ÝÉy׊ëòÕ%3GX“y•»m›Ìz¸‰*0'vóD°}g¦OŽóz“¾W>²á $0ÈéKêŒôäxu”€´÷@ÍÈ Ê[Oà «l~ûÁȟ…=Ñò-†l,zl²Òûgã~óvy„)«‘æÑ5¡é´‰tòƅy ×ä§)4íÔçrJÿØ©«šÒgþ /+Ü;ζ·_ù÷îäoԄÔÞ¢‹åx1ƒ×X-)zÒ}ø™“À'm—i»¸Å!j YAjÆ¥¥þM¯L$ˆ>dPÝ/ jÀûß¡vº£täôlzÅ<1_7éYGËy4ߋ¼íS‹”0#æ‚ÐF üF©h﵂eò¬GË0PÁúT:D¸N-8híX۱ι#;žù-ŸuËÈóC·™gÜ㘵]š+È ©Ü–=¹­êo‘àqûY"fÃÍ)ñxO”挍UÊ¥D{’®É(S›€¥i®S1ÖörÂÇÈ0¹²‡\*káÁ…{ΑÜ%)q’B£~^Ÿ'´“HÚ Ñ9`[¸ìbbþŠLÁçÂ}½KÕñžGvµ3Cg[‚~ðSañ1ýM´Cypã;綞D .—ç ܈ ŸÒ¨PGúÈ@‡¨­]§ØH8¤ÈÏýF€[h­p6n§éïƒdyýþNć~qœk#Çv° «^±9趮;‰#îögõÇjÕxà¿lWl;èÛ}”æ}"â'È~ÿá˜çÑ1’?(ð‹Ï²+ì‚Gœ¢Ž'‡Ú~Ýúæ¢=C.iò ø¥8[Rj5~>c¼Ó¼€¶Æò®aF§Ejó»°âQð»}[ê,©ø¼åYÄ}Qó¤lí¯¹â¥m_ÈêK[X“ uC¿Çc)/[}|aÅg–ÅQLÑ·´…«L³Á‘¯à~#ðô{|JA9ü#«d%°û¯ýÿk-2ÑGðAW‹Xï¿U™J]Ø¿bÁª½Làðªo}X°Ç›K'¡¸`ò‰å#NÀÀ·Ÿ©¾ +¦ÂLÙýpóԁ˜)¦,zEzáxÖì¨ÎÊ8ATÉƊw[KÓ +˜¨^øUM«í0KsÒãÇHN@}‡£›qóEY›g÷/ÓÝz*üç+»:Á ~“¸ÞWTÌ\¯@@«å5]µ´¥óÊ¾î† w`À«…­r‚9þ±u§GÔ2Iê±)‹(—Ì +Q“+xÐÃHlY­.| ªul©\RØ¿=Qô íêàS7Ÿn´ÿ%iäc}Nˆқ\v©š+5 Ī þSåÖÆèJz穼\#[°ì Ô£'Àì|™þ5Ù*n6ôÿ5„ § +Œ³Òq§*wèuëÿ[´ã«™²g¸ÀÓi%r¬ç_O:Ó0n% Bnq¿G¿jï¤Øo  «@ÿ÷\UIŠ÷é7¼qV¬R²Ìº‘œœÞÊ31IÌȃ=*O~Êgډ•Œ‘?ó_&‹".œì,½„H¹Na4…sa¾Ýì ?$×Ið UÓ;un ’Å!ç0óÁ®&ӃȢ̍ºâñ葓Uj~㴒Îgãx7[R0u9 ýö`t†VÁÌÍû=…9ŽbðU@NáR0©ŒwF©@¹,+È[4»Y¨ èLWtÛKɞ"—FØCŸ½o/w\%=›óf …uþfRÛ>è÷\7“™Ù‹9ñ•‡>²<ßÉNñ?<!+—º Q©eÐ|žU?ÕçÖ\©8>:Õ$ɪáHáîÔ&++¶\¸úr‰V¹êIù5h¡×<ùcL"4¥ æiyì"u²é2í (Qsºý8ÛǨïhJ\WÿÖU^QOnÎÍ0¡aYüiƒ}6…ÐPŽgµdÐ +,'?ø!š² FyS=Jµ®€v(d<ÈX|Ûí˜m +÷ȵu gISÔÝQŠžÞ² ÚÕ§é»S. +”æÓÓ=Ad.疊3+zq¯îœKH¦Êh›{äN$%?ؗ6Ÿ¾„‘ïï8å÷{!éz±˜×TvaF¢ ãí^_€ÉbOøIKQÀZùìÕ¬ä…i¹5$BɶpÓGÕºÛü5”r”‡W&á5ñ€&BŒ)xÛ\1mmÖ9ƒ¸×çxö´¯Õ†ƒx›†Z2Ê£Ç‘*ºF1X¦ñÓ6·Ÿ¬j›ø!lÏ­{$lµ‹á_"ž|?ƒÖ¹dôð둣¡îåhÿ/ê€>„1Î}Í&„š(7sí÷yPv•Dn&yê2´Cóð¾m‚¹ ԃ·Öܲ-¯ª2­ø¸Òþgi/³ÐÄ †$ö’²Dò^§U#—÷b!çãü…B½ÚÒgò•@Ÿ#€‚/ÛP+Ûʖ@òñ™¡}(pF\Æ'ðP(Õ•¬âäì\Ì~ù ´ßž$þ&éÕ°¹`‹6z:Doe  +‡Fږ/¬33-@+sÛò ÉN~¹õ¿“+áF¬*ÚT+x|Û.˜£ÓMM؍‡ô#…›‚È‹‘ŸÐJç£B?ÆÎTŒC{á›.‡‚ûXb6bÔúÖk=;¾("]gMí<ªËÎéa€°¿ÑNsʯ4-+˜ Þ-v¬+ð ƒá(w|c-:Àqb²? Ç]Í {5^ÿúžðh’žÙp™9+—‰ÙÇ¡ÃNŸFÒÊâþ›€vN/wÙց›N94ð-öö åÕ7Ølöÿ&Uí>È|btÂèNBIðåšdã\| ܀„XVŸVƒšŸi#B_0áM·u¶Yˆo¸¶ ¹oïaŸ}<|Ší~u˜§—èÓS©BE0ßI­;q°Ã?ð”ÍTˆÈ°j€Mé²Þ趯?ù]ÿì>ÃÐ|Çc,ŽÂHPߏ¤Œ¶–Õ¥Zq¡Ú³Sÿ +}µÝ÷gAkp÷Ö¶ ÕK¿Ó¨x•àØk±LYíuöÉS§þ7 ŠŸT—)n¸®<=eÑ~ñF\Ž6DzpŠ@Ù*À6ɛ½ŸH”qè~8o²öÆTNă)o[Áb;Q$íqޏ€µPNrÜc¶7Lmj@ÆöÇÑ#Ý9RŠS¦±²ËuA5$ºˆÛ›ŒwV$³âKpše_ê™Ýó*¤{ Õ+§±7Ã==:“ô’Ùœ³¸M\ú\°zf.g÷­ÄåyzK‰¥qk\>ÁÚ¸ÚS3þ9•Fd”ˆv°;7ûœ…ní”Æ ÀÅzæ¹ztÖ1€~Xó“4-ÆEäӀ›Û¥óyÍHSšß ý7Lϲ×f?Üéö´„>98vøÅP_¿ [-¿W·m7> j±XDâØÔåkD¥~Ø¢½ ‰@÷Q/ú¼°ãCNüBìÜ>™¯áìÒâj‘L“‹„¶£Ú´7g·Cêgj÷µâ¢\je{—ã͟lŠ4|¬ªöÓj•‹]Œî®8ܧ·5ôd¼ª§?«Î\®`ªà•P2O©[¡ÿê.Þ_È34›{ u]hø¶Ãê1±]‰î4‡øV#\ÒT…îóÅr­²#8”aø,ÝêaÍú-òÁP¢®ÏÜØU„ æ¨c?Z†å6Ljd€–°íÁ6)‘r>rödÈmá«OàÂɅ\¬S’tšf‡èësáe=^]v +ÁkpAÈ0?¤’Ž08¢¨E‚nC’ȍé¨U‚Ãêé å¸î«‰y@cJĶяÃWiéÁšG“,(6—Ò”¨~“íHï·څšëF2{ϱìŝ5©p*N´û+5lâj9pøEž!¾(gÆ«Í põ€ &H5‘)¨;.’âX5/0ª\”îôÅýÂÆgdŽ…%2‘ö7ðCµ%¦J×öc`J¿_= Àó¢ÖrÅžôïr±ö¯ +üh™à9ú!ÚӔ=Ҕüµ•¦T؆b¡@ôÚå@‚(ÛÂmøˆ Ÿ„SŒ`]´…‹•C°è--‘Õy͆éú·bKUdÄ/äsˆxµªU]÷bv¸-šFp«l ÆÒZ ùÿž4FèÏåC ûIé”Ý6¸¼M˜3 ­°ûl«Þ®ÍõÇï}©4»g*h__Žñ§¦&Áñ +±¶å¨­¤‡?»rÜB« +¾VÕH´óigÑH|U1ÄY=ü·VðÑ ݛ)IðaÈ +Õ¢c<؞`…º$¡´8³¸õ,à­~{DÞf×ÀT r˜"¶Þšæ„”þ)è¢xÇ„O‘\t¢O˜ úT\c|@hhB¾‹†Ùµ*1¢Ø;ÝàŒ÷K‚6S%ɒƒ„|pK`ۆzòý×L ˆ•vqн笜!É/¬>ÈVÂHWß+—¹à<5;·uÊtDÂåÄšµÉÖ䲎®'ÞH%“å N&ÿ}Pì 3à õꍍa£0;eE¿ÏŒGQŠüw;„«- v‘‡à÷èÎx"Ô 2+7g‚¤YÒÁšVìîúb²1Ž2ÿÅ-ð>fš9Wh}n!t\‹IðmÇ4°Aw1 +¿Ï?3þÔ¡EÅgþòɎä@騎²ÂÖÖʤo¬š„_EŠðꯆÙV^g~™ú0ù` C<bàìêª |€° 3U[‚Ö¼ ™õMVÆß·„íÀ¾¥SÉý°^ázËT\@¹z,õèƒ*ÇvžM±õ4ÏYàÞ8–X é2ÆO >{«öC¯´ëžƒezHï9øõ§©Î‘[á_i³™Ö ÝvE\À€TC%özs¶ÏÀ¦ßÊÛîãÄãòK æ ¶ô¬j}tv +W]{§í¨áÀ҈÷"ÎìWLá<Λ•œµ[âîԐß!ò®§q¤ÈÝLtd®ØUg¢R¡¨*Œ=p†…ݦ¾xûÈ»À§‹ÈUV—">ŒÖ½^v’,³+šhZL;lڜ)ot¹!${ÛôQ½uZ¶LabÆwahë¾¼̺dZËY‡Ä‰û’‰3T#hÿ¼œb>©¦â·ÔR4Ãfng9£ãúŸ¡«ï.¥bx‰ÆÍ;ò-ë°KOóV£Ò£ë1+*ïJ<=#ì +ôS~¼^ÚÒ/Ø´1œÌ <$5ç|JÏvp 1R8:Z‡:"ѧ±]‹ Çc(ÃAëQf÷j¸š¦¯ÌiWÔg(k2i‘ÓC¨Îx$ÇËCcM”Ë-mù¥‡ÕnˆD #ûu»CSË÷îiAßÀ’T1N‘@kxh™¿™bÈ3X¹SŠ/´W"uTõr4䆧 T* +‡ƒ4à¤É +ŠZ@JÙy˜þh7ì’5rP“lÜüãé¿c”„5Èz#³BƒK8mâÄÊlŠUì$©ç€‰7jpI˜¨ÍqZ=Yª30 ?k蹘›'mR,F¼ÅU\;ø®ÈBÚ3“°¯Nø™—êyŸ¤jð{«j +»“äw@æÑ0Ä'h‚>lÁ“ƒ)Aó2XÉË@Å]+ݨý0ÿþ8£…IP¤;?å/ªN°)±x8/çý鳁Â$w(‹Ì¤ö4Œ‘¿ÆÙá™üSo 0à±LÃœ9,Ï£Yˆp`¡<ö{³€øKU$WL5;~ &ÂѼÚÓØ9K¤s¿Ò¢êG}inkf(sŠ«Bg–ñQ¸Š’ E¾ãÂޘš©w.¯ƒÎ$ý c~<ô§ZSZÙY»‚uj…"õÐîŸkª_áû_b·ÖŸÁ|ŸzÂ@~G&@´¿" o'3±^rHåì-¼üõƒ*]}t²ß|¬Éb&³64Á$+4æέ–Šxé̪³¼!pÚ§mxš·ææ?r:!cÆ1 _"qé‡òÿ]܌xEnú4sÒ#&ãç]Ñ''$mÿ2;s¦f9¤‘­µem|¶ßºtŠÙýd^†òˆÚZd·Ël\£ãªý #¦¹V‡Úª…uOtߺòBôbª9[éèn¸îw*[F‚Ú'«´V½~ògTh)ÅÙ0¸WG=š‹6Áxº,a4Ž`¤Ïl^b3Ý4ViOÿ –õ–z@ë^ø¨!} Ïíæl•ma‘±ûLhj-'¿aÃI«Eáe™ì@¤¨–hc(‰Sòý?w;f‹^ ͕ÅÃíñÑïpGóóÎî‹ë4MP. „oo ÈúÉÄ.Œcá>‘ù+€ûÖc¤_·î«±ÅáøÇ0´çôßñx¬"¼§Ý +%šøh8ƘÍØSÉX²Rà„T3G#Ø_Ü)×ÛOÐÄB^h«˜†j:Á5"Þ3‰l¬®D£1ÒÂ4©¢v›fF͛©ï‡¿†¯êÞÚvÍ÷À¸ÚÙ¹ܽ‰w„†ú³;ìõüN7ÛäÏ0KÛ&Ú¯þ Yܼ²88~±ãºQt¹”áPQãL<¼â´B“‘‡_b»1í/ÁuTÔ°wzkim·§je3€¹‡(Éuˋ_åäÙwÂz(8Ñ<£Ü•ýš(9*”8¯&ѫφËM41Úº©ˆ7ðÂltS‘ð€vcúçé꺄jƒš ݱ?ëÍÝÕ"†›Í¼ü黎TyvI ãâà¡Ì‚Ç ‹ÿb’¥#ºßq¡¦^<5;QæÕìâosò¿M⧢`Óò¥SQY,ãw÷,ʙ‡ìƒ?Q²âö²Æ¥ßÄ Ò ˜I×Ì|Úó»‡ÛM…l–ÀÇEu“DQ`Ã’V9;fžJQO)7ò„.º‡cÌß¾æ`Ə8ªÛÅmÐ|V‘²¾W‘‡§Qüg¢•ðâoùahùãcy¡ûprá+MÖåOÇ)æ-`–LƒY7#9x¤±âD«‡¥F­ÜO÷¹uù´¿‡†ZéÛ6œRc¼PùÍmƒÜY7èLpÖ­>ùSfÓRŽÚÒ5+h¶kr…xÈ,fsúċY £"%*EqeåÖ½v8>¡Nuv×GZ–’í–Êù´åÁÑ ɉÜOð¥0ŒäyçA®¼wäiH.´W«¶6;”˜*Ëô|ëÛgTEåÓºUTۛ)纸%y˜~È-ˆ¾?uµOÄtãz¦UÔI;aYï"ÔlTÌ֋Q W¶õ!Å$Pb{AŒwþèîÔٌN¡^ISµŽÙ·?4÷úMÎÄ3p,ÏO¸ÒGAz7€îõñ«û¿pc9uÓ¢¡2! 8DÑVÝßM.ƒJk äÄWe:ms’b~îÙšåÇ'ö¹ k°}E>µ_*È`7…~¡®›žˆû` _a¢rìY?¢|s=óY,­²9üQ¾à ¾˜-¢ñ:—HèìºtÑE£ `Ìë£ÙdÕ#„œñIÄé&cªkð¶ïdY‚ü‚ú,n4Tbˆ9HŸ÷_ÍA¸QŸArc_0ZɊa"Ëé÷ìkÌ»K\ì’èöØ´#å´‹vñ^ß;þ§‡7ÂkDºÇ•@0˜\ˆÓ{õ£îè¶+!>¤6ª ôê˜ ç¬Qd‚‡D:Ö8xlÉ]¼i}™H‡iŠlÎ*g¶²ØýbòÒkJ43.Փ*•uúù¤˜ýÐMF‰üÕwgSa›åÁ-ªtÓ˜²®_ãΆQ"½'Ú@èÈpR~d¢£Ž©ª2]£ï‘„#fAZ¾Ôýxшð®{l Ñfòp㮓f…͐—6Lè¬Ç’ˆâ1uû6CˆÚ‹ºLº@~,¢±YeW֛Š¢¥ªP´Lœ€ðÛ º›}ؘ] ¦`´ŠÉ¨ÃpÒ(œÉáíNöžx]*µa7/é ¸Ôî&QáÐiz  lžX«ylèUépgfàƒKÑ"äe :Ɍ·È?;¿Š]øaã| ‚DŒgT!ö÷!ÇÇ?„™(’r úë‚:s­]pÖJÆ_-kÇLVmšRº´öÀØ90ÙF1ɇï2’㨵~™`[p§ á»àÌïÌt6© ûÏ8—FÐíä˜AM}6˜Öéi—‡‚´]˜ý»£#âœó‡½Û¶÷ü"é+úrŠ!¸ÉÉZáÛÚäÃßc¥\—‚ðy¾f¦rFôIÊK¤m ¦zÐ,f.y(7½Ö“×HÉ$À>JСg@ÂÔ¢ïU‚*ðŒ¸"n,AÊì|®ó«¾x]+üèãq\Š½ƒXa8U…6`›Ui.ý¶kÔC.¨|!èæ¤Ú7¿úŒ1Q"çÁ€XÐQr3 +±~¸\ÚЍR¨…g, wQàc0›OyMlGŠU™AAōb ìŽÒûMsm€žà¨'qH»~B®v#Še¡˜’¹ˆÀ€[­ oòþÿŒÄ§ÆêI=Î6ì…ü^²öøVz§”òÇÄؼ. %µ5مBB}3¯rÙ6¶Ë)¤ûó>·òqŠÎ˜´»á;‘!AZÎR}IÕýñQhº ܏!„.>ÈÁDÐÌm‹W3䏬Z€Ùz¼æšÒѲ{þý ÅÒÁ²ìá«ÍULœp™^·tûžØ€†ɤo‹ï²U*çðs‚š)Œ,©ÖuP抪›3@–¹l`G'\ýyù«ÙøD-€ü&(‚Uö螔d´[e—Õÿ¥<È}Ċ)) Їó<äB*®;ö£ Õ{w6ùvý–¦]ɝª«ìØ®¥6ÎmÀ‡% °LH³ÈU ìbìû®‹ÞäRû3cg¾}Ù$öLÖèŠ&ü)/=í†C$OÁQ•Ø溤̋¸ ™¨(2?Á¯wIÈù‘ÛßàÑy°¡ÜìUE±laŒš~ÄaÖK .8Dˆ‚ªÁ Ðu&ÔZÚtÄZÆ9#{x¥âv,v>XVLª’DOw€®M“0¶þ½Ùè@셀†ú<%y¬×—-FüÔIý àn¿( x¥úfÿr$ßÎó|òÛŒû¼gTÏNQ:“ ю¤j_ßâïB0Â×ÁÀ+ò@÷)ôTT~JÜ/‚QçuS› ²…—4Ež¼þqÈ-MÂð¦ð’?.ÆEzøª€}Tµ˜ÚÆèJF qúût\öfüšö'U—¢(·op¥éêîâÉ=…<÷TNïØ­EËÊöó¶÷>¥t… Æ~ÅM `O°ÛÉE  +ՂS›1I¸€^ 2è\÷»Ã[±G¶×Á‡I0A#µY(Åw± «÷¾Î;ÏÜ[žÌCV9ÚÌ¥_v9õ÷,Â3“ ysGßpÕ½~|îQÁlV€œvÙ¨3ä#š—3|F’oõÕ%,”BÒá¬ÿÀ—ÁŒ¥8áÇ”&aÛԊ‘'Zhcgà ÛfPÌH܌TPØ×£Ù°´|Ýe’=×!Ҁ\¤£aÛ$›¨‰¬Ë”€¯Mª3ÈÒlq†!dӁÅÏ9 ?ÃNXøx=z‰¨ºæQÀHAm*¨Šf¾qÒ Et/Ð<}–ãä„ÉóîÞF—h`Õ}4¸[Œ¶¯ÒXøú˜yE½ˆëZq)ge §³P9üú#‰bхëŽ0xÉÍÄ%ø×ǁ07-•ŒHktÓùWa. +¦ OÊ­zÝ ÃopmC™™Ù\žÔöy +lýñ¯°GüŽX?1g¸htœ\6ÒOÑ¿>‘õsñ¸õØý÷JÆWˆúYXÆqtùsz\ ʝîŒ%†ÙöªŒ+7e¤`¼i%#"j²*“ÿœëö§Àg‚·OJÚRŸñïG‹´5"ŠX‹‡hŠmÊù›<RñׯXï2Žçp;‚:lü½HS)£Â£|ç'ó5]Ù]÷»/ÿ•vWʤÍe&GtPžéÖô8Înló1è˜6‹>ù娄Â,S2,=±¾øñúz±­ V£úÊSbl‘j8d_ü”6lô\®‹1’£>~K??K•iÎð=üB4ŽMðì$sµ2X+ 8Ë<×yZZ콒Û_  +ù>ºÔ,¼`ÍnىŠü¤ªøìÎQ0Ìÿ%—}|˜¯¤þ-è  »˜#ݨay+$|?ºð’¬sö„ñx cáiÿ"#š|Û¸á›Oa…­IÝ+{B÷áÞñùEðb1KɘųU<À29©=A¢™6í ÷Þ 3ͪ‡@8?Á¥ù©æ×:P´‘uDhϧÿ0@S‡F‚z=az«½²Xxªµq[S+¼0úcš”› Ôœ–½*TC[à˜µ“šß[ß×ÌFö {úâåHꙊm1Vˆ¹…!Ýl’ŸÂ\Æ¥ç)V2¹`r¶„ãð¡ù9w‚ –þ–Ïør(¿M¸¦ty¥É\ƒeÂô1QŒ¼ò;d£Díݑ94ªÆۚ²œþH¯mÁÃ×Ùq@˜1*õí¿*>Ö9o¸)n>Y^´ K…¼šËúCWí££¦ßÕÌ3²¤ÍË ht$^2\ Á6Lu]ç}úOŸ ¤%1êãˆè¢Í¶<†êÚQãLðfÅú‘±óOʟÝ2ÿ=Iıäö¡^÷6׀—Õ.ÁÅ4Bâ-Þ¦ËJ6l=÷Ñ?dGåì˜2¦FÓ÷²û4`Mߙiœ)¸¸}¯ø»ö¿ûFÚê°Ü6’þürÈpC 9Íb”‚ìš Ž’ùünÎQ¥+- üI +ø¹÷)º’s¦Þf8Oco¼n´Ñ摍녎b“(Ήr¶7WMÁѼ©zémç¹]S`–2^`÷ ¢Ï¯Áœê¯”õß䦓_¸- ÑfJÍØƀB.çû=1—Lfc[·§ó.À‹ï¶[ÊUÝ6X9¡q˜°ƒ{ý2‡pž»Rõ:0ñSI9+œ&HÇW´á¼c|V_#ÅÊ­”­ +˜#J†m¯—&»+ÄN²Ä^³Jt.Ã_7‘´§ÈgÞD‰À[]¨˜6•ÿÌú}îoÉçÌëk#ð]%>òuB_zŒ'´ãԟÐ'VËÜSÿr¶ŒdΣm¡Û1+ª}Âj¤ÊV¹¼E‡óèíÇǢ÷ɇN/5ïç{²H&èÕë˜ïö â£F|òÓYMxþÐkúõÌË8/AoQ&*`ÂYrýkQ5Û`ý´zä‰ 6ƒLûßC']¨fŸ‡†\¯1ëJÀ11–?•jŽ¯˜% Z5‚§gˆO},Ó)ÍËhÎ[ä`ï»:nH‘±R+ŒáááŒñgMa+žóËsKšwesx{£ÞÉ\¼Hª_·aÀ³`%•Ï±(|Ý÷ÿ´Y`†ÊB¤j´KÚ»9FàÇcëAæ{Ç8V5ÂxYm*QJ HYfƒ1”ÓÆ¿ñæB€. žÂJŸ‚¸ÍÉ1Š0»ÿ[Ã`U¬B±4C"ü­bT1ÄìùPÀ®ƒã‰ \?cÍ|s169bˆÉªn*&sYÂÿ¾B šïŸ9ŸúpŒ§¡ÚváûbóeɝÇJܽ³á* Œ½u®Ž*,;rU®L^v¬›½Î’ÚÁÝ¿ÊÀ;Z¹õ1·ž(>Ž–tƒMÂíÍ »šÀÝÈÀq2³[q(O½ƒÎ¶¨É9@O•”­2PÌ|ùäƒOH ¥Åߦå^Ñc›Ši–:BªÜ³™–^Vòýî/"©Øæê4ÆT%ôâ%ÅUg¾D£žU…¼:%ì½Mow}¯ºÇ烼,¨Æ³Ï†U¡ºþ½áKuõû}ÕՔ“â§9Odƒ¨ó3YtØ +3¾ øƒöËö I + RñZ24Û¤HÔµ£ºŠ­ËP rÕ3C8AڗßWÌC&Æ¢ÑÏñ;l–óœúÔ} DZz ÙB7B?çè¬]mwíÜná ðdJÛçÅ +«6z#lû¤ғÌ?-ÀÖn" FÀ1'0Í+ì`z<®ÇÔý€tH l,·ø”wb˜çP“̃ªg+’y¾Lˆç­wEÍsHetsY@cöK¾rAT(©æËB_C& LlãÁ‹†§¿œH'ʑóNاùÔ¿mAŠ$6ŸiËUç’Ú!ýÔÎ1ô/°ƒ¾Ü—Ò4ÅIù"¾Ã‡áÒY¨³áÞÄ:_îñ£ò]¡é›Õ½Oú©ÓD(NwS?*wÁ“×+äàæÒíÜu¹qPáЦ„‡ð,é÷œÉ­øÉm!Ù+¨È|H%qö8X^ Y™¬".-7²ñY¨0V~ua-o„Zmeg²’Tæöҍ˜z–á\‰g–i/jѨ,Dõà@U¯ WY2WÞ,8;HÎùôö‘vÙrN=ïfîòÛ ù©t+ €‚Û{¤Âô4kD¶of˦ÜSLډ:,*˜ +Êr€ß3¬0 éçX-å€·ðýŒf‚ Yo⧳µèO^dé8|ÑaúÜ´d– “7¸Ýž¡·¡÷zÃñrôÍ[3›~†AÊóA÷Ɏ"h|õÖÔùÆUgDo:EõÙÍ_Òj‘©òtfäiØ]oÂ_–"wú1tÈ,ª÷ô rPeƒç=ó.|ohd}D$Éõú V·Fµã¾mL£À|‰Êã–ø[ÁpÂaõrÖz|0Uoo19†p¯ë±vðXð'¡ÂïSà é Ö;[nﺸPH^ò`ЈßǼh¬¨_KŸ²ÈâUϘöåhk»Z!RíÿQÉV½é î0ÂkDÝT7Áñï ]G%ȚqãV3»®ºLÊßò T•bsS EøOÞŶ/ˆ³|ÍÈÇ,œ_èÃdßìxÏq†lÖ#ú1àJ¹é‘ÀäiŽC “UŸg\¾í¾¦R/Ên;[ÜA¿YN_¨'…Bó:1cëȦt)oÔ*wµÑU _¸LamIàD‹_9h1…šSŒ4ψõÖɍÔź,.Ç@'Ñ[N…÷Ú{dñ˜k†žŠï뿎ór ~þóõD_÷üÎï€Ü@—¯ÌdÝ¡5JâNòŠ¤‹wôK«OvÝî^aPè|¡;ñ_ŸºÄçà*)V.ú¼}T%Y324IYº®‡¿îØ8=x†þwý{VÇ)u&;m%ç×»è4±~MnBLJ_va&Ì,@:VþÃ`û|;=ƒ§åpªö'¢"H^*ˆÔ+ÍQ|ò)”r—Û7\kÎ4JÀ³û-ÌÇÜᐖ·à Á%±=‡K Y»I®ˆ[ç•'(óú¬ÁþÒWÒ)aøѾ›#@¯>$ `LNæò yR°›Æ=‘ƒÛ`Œcr[-/š \e(øj4GN5­)굀 ³!ð<燬û¼Á¾Ê«9¶‹|ޖö6Òä£"ÆäàÆU&®šÀ\õ‰ü·t 'e{v…Y"7<1»É_¿‡€pº:}.kV¤‡¯_<`a¸µYÁ©x_—S`"þ综fÊNïìþ´‡·ú ëW8È ³É+,Þä1)œûv±mæG*nÇ,Á®Èn?91•,ôH* ›jëÐî¬2GÚû` +ÆÇgœ:!mÝÙP˜_á[(÷wü›[F—ïd„SÅE <;Â"ûåx[Xƒ@ÙÐ;ÎU¾L&Ý.ޝ‡U¤^¾æFâV9Ÿæ\FrÿdX(ˆ*d–HÿP²"% + GªoN%Õ´sÏT:!õèÓ÷adÃ!˜Ã aàš3ì/V:_Nã‘ð+wÿ¹ÇØkWAŒ3½î!²N®ÌãÇÖ;aª„F"zò â¯ë"B40ÅâàÊ¿ý æḿ°˜`‰f\³¯É»Ð¨¦›opS«>¸—b–è³0aƒ86M„¼¼!ñuøÑ•Aö»u…⥐¿™Äg¹Æê=Ø6UþG\ò¶¤›ïY/¡ç˜>Þó³ïW¢€:mÜù•ˆŸÄà¾ÔהŽr7é›1ŠÇË ’¦Øû©‘Ç›BK™³šYœ‡w«×f]È;ъ'3+´h¨{¶¯í×FÀâKí‹ÓyU”äi2.Ò£³›|½Ó­ é4~Û—e¤«AØ äÿÊ:‚¶~83œ@ .rƒåï¶ôUËz7WŽ#°$%ûÍΤP²Zù:‘T:x;1êTì&MÑx½Ll{AµñƒmÌ-\ÝZ­Àrƒe]œÝöSàýë,ÞZ%H¿ûílì, +P+fñµ—tßKBã…÷ßÜ ±¾û\ ;^~’œfö§uRŒ­Úú~þtĈ:$.&ÐQ²}±œÁýfE>€PGð!¦ù©Ëi¢Jƒa6o-™–_$z¥Õ°tŽ|²Ú¸V-V«¾(¦­‚¤ +IÜ!C?q²ˆ´¡AX÷Iàü•i^¿–Âo¤›ú˜m`$O.cø Ð,€Ø¯¾ÊçÞ@è ‹T Ý×úþ +&n½ˆÔb”ò†Äoù29â: ûTF2€ +݃g¾[Çӓ×،AOuÿYÁ|UNÁ>•°|?&Uø}J ™ô +M´ ®„&{0ªÞÎ`¶öYøcêZX˪Ɋ-Ê~=ÇÝ+þ l¥šÛ+Kåå`YÐÞõé#}©ðà‚Š—’ÊÝ +Ri}¸ÙȖAMOmÇ5Õz¦q8á6¨î§ZÓÑ@Z*zäc®ê¸ï­%ìl*4“ìpˉÛúßÊæì„R¯²ÚõðØÍqWp—J*ø5Ï÷Ÿšî+ÜY@ò… ½`µ‰<6¦“:w ›Èõ˜üT׫\›ÅžÌøn¢ïPD«]¤qIMÙDZ¤µ hØÑBn÷mz-µVö^+ŠÈn©«j«@z††HS°hú~ä0©æ! ÷E±»x¬4Píèg_æcæu‹çg‡Í®¸®ñà áÎQ°¸ÂËYӞÿ—ju¤eœºÂ£“o?!âDóœ +äÖ]Ì÷ù31ѪB'’Wÿÿ "‹jGn‘½µ`ïçíû·¬jla5jöj¥ÿ0y«ã¼uHŠCþ”“þŽWfËÁî)Ž–‚Âæåbˆn´iL'oã+ éBáYUO†ÊÒb!X)T¾|"Óüì½,YPá~#ÄÍ&üÄÖ³oPTÀK¹·1ªºêm­•hÍ#3“¤Äd‰×šNýe…‡úCoÂ¥šbȗzŸˆ_±WE‡ Ó1ÕfB±G—†BtŒ]"œÎÐçÝÓ I­U噋èÿ“1uvÅP%¹÷Zöºúmâšþ\—x^Ma«¦ÜE£í?ïŸ6 ~ÙƔ¾ˆ Wë½í2Çøa¿R`Fq²§ì14>Eü•ô÷‚{zö3´¤ÄÒMdìদW ó]ZÛ†_æ}£'˜¸†èr†Ÿ1Muݐ7Ôܳ“-åña4â`ݽï®×œ~¬?µ[ÚCG“ˆsùfº,\¤{Û!LUrú–÷—'¸ªŒ>€W†È3†êmÿ:0ÁŒ',ð.;\–÷B'ñö&ç®BOQø„9 +æù…ÐϦÏÖãÖ¬/ÍB±ü¿ôÇ]•Gú/˜òôÊJ*g<Ì«Aœ[Q"¨T~U?™ÿ!à ï¨w¬Hô2²MfP5+ ò1oÊÓ\HtŸ’ÝQ*–­Jdà¹EÕÒô=ÂãÞ× E7\ס‚@aãt´ãÛõÄh|]AšÇFÏðøU~@z–˜)®YÈMK„ÚïA²ÒhOS¿,Ǒ–+<+÷ì€P?E`Æeï+^K<…ÕÍÔ9Iࣽ³«ÅŲ gµŸ\yˆÑ-Žüwœ¢ñÝXȬ§ùU)w˜¥®*³.ýùù°Ìhðl=¶Ý@1+Ez6"ÃTK 1Á/ژÜ9Id{] +´í` +47öµj¶otk£—jo¯VA˜drêLqøÉQÔ«ô¤ž@˜ˆÂy—Ì3Žƒk‘£«ªxžáo5ËÕƍee¢}ËK‰ݍi¦yžã*¢?óÝ 'Æb¹]{Å3#ù‡#Íˁ®Öçj˜ÂàÅGÏnÒ£Ãnlxò,ÃÔåǬd`ºu¶ªÑjS½éfð3²íÃîû(ñââ;U¬gÏJ´ô€:þª»¾b<2AÅ1Å;ÙûPmm—•ð‘º¢T5CI;£$ +›µ8 7à|­ÈLóL˨ˆu±"û„5ÎSÚÒ¦3,dԑ8æ)š‰i”4ÛRä5.(B_†ò´­5Ùôì¯ÙV7P*WX+1Y‘jF„ϐ@8×»‡ØDhõ† VµÇՕ‘¶¸9óC‘°‡:Éפ”¯=ÀšS”ÔŽ§?‡ôVùªIÚ]÷€=qjPëìŒæßÓÝî5°d­¦™C%%’%^•3Þ¢« Ofí›oGz>ÕyÂ@ŸwÙ=SiMŠ ý>¹áS„ý€KŠðæ2¶ÁŸ¤¿–Áˆkoã +mDE·vÝ­aɾ6gâL‰ŒÍT½^†3©‡ë ¥øÔìÄ°3Æu¸¿¥¢ä°0,²Ž;À?sƒN®‹Ï¼Š%àÅó&Œ­²?û)x»V"Ùzè’Ù~՞F*°®ü¯`Ò +^QhTÌ;–Q¶Èàä8Þ{Úãô8Ý s-6õº&PCÉCªMèÔëx4¸¿3´°ÀøxÕ £îj·eH߉d³™¡#†iHU£7ñ~°±.ýÏÝøn·a‰¡Ýu}ægdÔÍ& iìè›R(×؃ýW> %T²Q¾[ÁQn¯‡¬ÜBÃhvIC%ÆÇPãMĀ€»mýбáª(M@¿úO˜ÿsLaí¢â¤à“;!=r[Œõd®^‹lW‚ǕムΪég ሶØU~´|L¸>‡²«ÄY ‡û•|gÉAd˜\À|c¤3ƒjw׏…P3Àá¦UîrÖÖcºj°­ÃYÎñëRƒ-˜qىI§µÊË(˜U<ÃvdC˜ïà›¿÷ÍÁZÁܨl` h…hӋãɶ®’%«åï·[ê¤Ýg ¨¿m³`rÕ¯]­«d5_röK•@Ž + ç’âvD'Uq§ºÖÖ҈_ßlbp?Ÿøö„ËVW‹TŸ±¶AÐ ·-—÷;4ó&|;çÔô«-bÐ߄ò =+Ú¢¢>Õ=5õ?Ô¯›æ¢îÒçÝ ¬†C*ñÞ¡¦Ã;i¿©9;Ù8no²Ì2daêX¢ÇÍD2Òí†ØØCw>â–ªýÑ4B~¼LáDfAøþ䐝(> ÂF–ÇUh“†Ù2¬ŽÎÍ#3FÔYO!4•É¼˜âíØýùÑP¨ÒÆg}ÿI¿_o?—nOópü4ËîìîÐ4d¼,ã¯ð<ÁÇúÎqó¨ꎡ.Ògvëm[Ÿéû!늻H€µ’´0Ý c§¿ÙTÓ«©Iߘð'-°2®ÞõœÌíŠa?ª°¥%=¸“ÞH©$˜CÖ¡Û¶x¤ +Ö#`ï°sÍFñ9ôS#~tœw‚ìÛÔgüÎÓ ôúlS‰‘ µ?Eµ×ä{ ô3²a –­Ù¶ïoˆ¯ãc/­Ÿý¡pkáˆT&Öa%·©ð'Óöz´‚€ƒû¬q=ï³Ï¢ÅÓ÷]:¾š·…‡o"»û“xb! gN͌„ôuQR^ÛØpjNc“kÄ/@9Ç 9¦êï{çë¾²3weµ÷ìóô}¯t$œ“Ü›/©9¢ÆkcÝà=æä§ÞäÏóéÚìO%сd÷¢À>?'¯äŠxzpž-·ÌšÁ°âhÿÀ|üÔÈí>yöMõeÒNáG›Ï³#ò$‚Ô£Û ý„žê¡Dîò¼›Á‚n*ˆµ«ÂgC8³NnåáÛ>¶'*õÏGќ’¢EÇÕ=7¥Û‘ofG9'gRüÒTY9’öƒÍcI­ ÛSØ# 1]Ó©yª_éáöê8‘ MÙHwfÐïÔš‚½;ätBfؔjŒH?½¢YŒ Vä +"Á›Üӊ{öM1B£æ–/~^VÄ3·k­™v,æB‰“uOsSñAg"Êp»‚}By¹š®¨BlßvÈv/_ Fµe/ÀçõïôÛ ¸Á9„ÆTË?Ó/éQ©1ë$0ñT´¢—« ÕÉÄ5Ó¸GžŒ²ª6Ò;jÌZ+¸ìÝÝ$+—¬>ò#»LÇð[êÛ0¼ŠŒy—0oYénï ~·V½1á ´‡qd§¡Í¾œzÕ+zÁˆ²ê§‡»¥L¼qhQâô|ã-.`ŽEô,¦Þ’zW/HÛeò^Ù?Ƀúogh¶E3ûJíכ‹xeoǶ!¥“Ï»Œ’:âï@E“ôprmÄzILò›XàÄK´dÄ}Ç. ¹pn¡ËÛ¯©rpÞ¹…Cjj}ÞQà;ëÇq+j`J¾#µâۖY9jmZJbuÿ&Y4=‚À§‚lÈLÑD^g °Å-'–Û±8ˆö¬‘3wöH_ÜJ@«!̞ àˆW€âïXi²o:¬t](Ùp,¹ò<b š^rö#*¹E%8—½uË© oþ©^Sp-<­\ñ¡;ÆíB©•P¾j­'³‰G×­M+´x×KSñFvÕ \…Ù µ‰ŒUo n¸Ò*ºŠ'”— 6`³kîؾ +Ͳ®‘’}RâCàlý҈¿4û áŽoªÇ‡KHŸd‡®¤ëŸ·€Ú9‡]ØO4|ëdðœ”,Ó-jpCҜ„Û¯<9M,âìi5qšãÈËF§b€$X=’™1ý¶|b®Ž>rÂÞÀ~Nó„)q“ªJJNò#šÍÈñªî¦GÎsƒž%ӕžÈ®'©@*†l6`A§¿Âc{?Œâ¿y[biIòRõþAµÔ*O6µÌNcY*A drç.•Ì»…-¹iq¸ëÅór’ 16ð ¶:ˆõL”Óß`’¼æ²~Ëá©6q™ïHŒæ·•Á²Õë¤Ö=ÑWÒÊ1tlÂìjøœ!Á¿ä•!-‘©«¹t_Àiñu—3p>«:<23ÓµUœXâGBéè=çç‚|\³îâÅVs¶dœp/$ûzðlQÉ:d{†“’ðg‘׏Hÿ…Èxr  .¤êÁ˜{¬L ¬$§êñK+ÇW¯¥ð*j²ñ _°¤ç}^F£w.«L¶ÆϘ¸Á/ÀÀ]œD2ºL°9)g‘a += ֗¬<(NÆúݯ_FŽ5ÂÒÁ‰¢Ñ–Æ"ÃÚØQQ£pèŸå¼`¸M™°fMÞ-3Kð+QD +>èåÁTyDZ±/[…Ëë0TMïá7RïõÖɳšîŠŸGo~˜í:L²Ñá¿}.¯gYzIbY‚¯¢Ï”ùA‘έ¢T¿š °úôy UBBô¡˜“Ïÿ7Ê6"×°Ò.ü᫐17=£Â jzßšiÏâk©¸*Š«"ÔÅYHÝ+8_ +üŸ`^l¶S"˜oã˜:َq±¥ÓN¼ÑêŸê<ÖÕ!vÂgõ»TæèFgú1}ZÆ?¯ …½7qbmŽù<„ÿú“U¦Žïî6ӄ¨nÈ´E‘¹G,י,.‘¾Íàí¼®OÓjèòTŠ^ì~…¦\;aÖ*Sý%–´îo´ÜúþîäÄ-·ÁùJÿÄ(fÄ`z¨O¤*íÄS'édòۏJÉÅlE„ŠPLÇ¡r§ùW=#‚ ™\° +[i´‚ÓÀQ,¡Ž(Íúm]²FËGø²FÃÐ9Ãÿr‘:`­œ£y\Ì5Õ s£mò—8Fæ]‡†ëêü‹’Žãùý֛,SÏø0a#v³I"½[Öæ]N(åà9vä²Q›Füßý7‰•ú‚Pûن Žim' ºd‹Fq53S4 +ü±©¦‚½.Ôý' êE¹]·|» `æŸùé¤Ýð<4-»UÒÉ!ñ³iZçÎjDSÀšùjˆTvãî•/'…æõS̽"¦ ñ”¶¿1-oEx™eS»¼Æüê£$F 1µAatÝ 2³9pÚîy*Ø3êÐL¿AÖ}SÝL\ëA“å¸_=pãs*@‚Q«¸>ƿٗû}Åå³ ÑրhyYàî`¶y¯ˆ+§´˜g;õêÙ.¾’ÜTY’$¾~‹êIz' ¹§ÇÑ*çGٙƒb¢`jŸš EÒ?Ÿ ސÆ]•‰d’ïœmû@Áá ƒeÎ#Xò«îåm×7S3µïÞµãBJFáHH$ +Í,6ºÿ‰HP#¶¿×‹ô†€è¾c¿Nþì+4lÏ^g?gp]ªóôt"bۆ{ömpy®rv‹]êÂ*)Ò'úÝ%s}Oz ß®•ŽçJò“8ñ±8€«ï‡y’£  Ì_ñ»»µlGµ›q*gю=6kÍõƒç:™€ngZb…ôÊC¡›ŽÈÏ,êÑEÅ¡V²QTÓÿŸÓ%Ú2pŽIç›èRåä'­ŒB} ²û×ç~\ø¿ØÑËУÝx!Wèxe 8À}íӚ¬ñß,™V@ºúa»@ ;¬ï–7ãHb›†-”ûPY_z—Y¬ŒP³FÿUO-Å÷Ñ%52–.mº9Xã¤`Ržâôԍ‰÷åWFzG`orrÉ«UErñ®Éãø†|ñì5Ï·nËEÃ:}µªH`sù¾I2fŸÈG“V~4àŽ­àG5Îç—ê¾¾õfáVØ%Ó®am[¥Ê1Æ6ç=¨’l²Æ¼#’Y‰ëªöºrÎ^°’ñ¼ˆƒÔЅiWr÷åçNLP‹ú[Gò)0­Hu~)6èýý”»¢<µŒ¥B< •m[ûœ lYY®ú!Å.÷«JPN÷Ê´öÉU £Ã½PÅ{·B§ÖÇPp¿yyn*’W£:ꤸ è͙œOtV¢Á»xê™RÈí¨—B€ÿ·¿ÞjHî%êgž˜%õKˆí%Ç?.­2ø5¹ÎšB):t¼ÂnËú +î|uF ù ¥éEð—O×vÓ(¯t"ÛM)_ø‚ïhùÜ ˜’×𙇪ç~fPOîå0H5”ÏB7$,ËøèÌGNbàÓÎgÞRŒ ŠÞBRƒ‰óI×±i"ŠB€¦½ë‘éQ¶¶,Q)«9“L‚¹] +ð“®â£õjò*IÑT‡|S;JÆ0a¹p®ÓJ}V© uü+þÚ*º¤®ø ÔZ]î/˜þúTæ%8ö7ª]mf†ÈÿSÒPVj²]{ƒ’_"Œ‡@l*ýhDaÂòT'áf×CÜÃ'T®±î¯^ ×‘=¢ŠôwêgSk î›¿ÒÑ3ÏF`»ÊIÜ㋊§nÑïs¹J—ƒQ…JZ{7mòý»èÀ–,ê&K½ +endstream +endobj + +%QDF: ignore_newline +22 0 obj +146576 +endobj + +xref +0 23 +0000000000 65535 f +0000000025 00000 n +0000000097 00000 n +0000000221 00000 n +0000003486 00000 n +0000003507 00000 n +0000003589 00000 n +0000003741 00000 n +0000003793 00000 n +0000004252 00000 n +0000004272 00000 n +0000004336 00000 n +0000004534 00000 n +0000004570 00000 n +0000004884 00000 n +0000004904 00000 n +0000006922 00000 n +0000006965 00000 n +0000007208 00000 n +0000009576 00000 n +0000009598 00000 n +0000009682 00000 n +0000156384 00000 n +trailer << + /Info 2 0 R + /Root 1 0 R + /Size 23 + /ID [<31415926535897932384626433832795>] +>> +startxref +156408 +%%EOF diff --git a/examples/qtest/mod-info/files/3.qdf b/examples/qtest/mod-info/files/3.qdf new file mode 100644 index 0000000000000000000000000000000000000000..ff82f567a2a60694189af34b7880450513302c52 GIT binary patch literal 6245 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 literal 0 HcmV?d00001 diff --git a/examples/qtest/mod-info/files/no-info.pdf b/examples/qtest/mod-info/files/no-info.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0518044399731cdc736e7dc84d6e77ce372255af GIT binary patch literal 5790 zcmeHLe{2)i9XCZysey$BAqE}n(Ji>p*!RPC7u&U+)=mN$F-e@X1PCMDevDBDGz=D1Wts|IrvLVRa%B$&ocyuNM*3QUdde z)P+Sv!5d;r-6SFwqm_tdI7HD-vvL22a&C^iRgNM#F0YSunLPfDwUWqE^A}01(NTpb%B%Xr-4C1c9P>hIb3D2+4@NyOhGEQJSME zObHzA_p(klN<|}4mWqlT%Tq2^AO#Ndr6euTQ8(#dr9-Z2yrLOsk=EkkikeERZh-00 z5Y~8+*LXx{tg7W(unImiOl;^(VnhUCI3~B`xQ_y8vMW?dF%7myRK|D>mt#Q|VNN}A zau6Um(W12?hRxWaU_Ne5KPxmhH{<5!aKv)gQ)i|mE!eqk+oZZ5t{|h$qfSt0PL*hpq$WfLQ_#`#@wJHCj)XCqLFlfh43k*%`b?{5Edo= z6UJ+K1y(cn9>%JiQUm})cU(}8$x3~a7jWjao7W8n{Q4<912F z;Y9&Nvn+BMtF1E0rK4fG_qNU%aSM3J2oD3^#p@ToM>Ap451xlR0;}Un z)7mD>gaS+Ry9G6Q&d?SAKbjcG1i7ld7M{0xd)>6AwGTIwyU6~ZEUWA6d2h<>gZnO5 z_wPCt+TOIU?0k8})V}ktKY#Co3uluR^BnU+E52OSuSE~v+j;HHgZrKPpL=@h&(EED z`P7-o1MmNF^YFRKpPo*8d#dOE`GZSCLkaGgKfV7^e`N3K-etT0a{c;s<X{aul{YzGu_L#&!~Into`h3zdC!0E!?nY%5L&fea(j7RPScAU0W-b zKlSLWZ6}Hzo3?ZEcjr9u?ms4MOxAp?EP8docieg8`00V=n=V!NYRr8vZMs;}t7t99 zrms#ibu&X3f6znx)zNT#&t|!J-FHZO=Zd057oVKrygBczm6L^JY{K`)amCbNiTk_f2= zCg%oP!{$2cF>+FHLBWw5ar=YX{I~WU?VB0@#n8~{^z@Yvd}-^Pht^T|brn2rTXFY` zy_;UJ?3uRT*S%v-s|R+x^v%LS*WTY$0Lk|^-M5IaW#kIdh#`=X4$C&k==A-sM?&IP1&P6^_Ha} zH?=_yir^M0;j;}N?z16D^x2lNAu^N<;#O&KmxAlNmNp1oZGv00mHDmSG9FH2Y)|t^ zd(_C{D#EJZyFVDNuDrj@Kh^3@d(!b_9L@-oj>i(JC+)Ktb3D-2y9paIM6@=atua)K zG+BZr43OI&Ze)ah*3`%@?>U3c=Op>H7)5Oh>ng9M~BlP zD=h@&cDo6ZCTQ9Y5_YvSq48;ZLj5WzG%S%Cv(pl)!!XJr$ZDL`e_Bd01zzsL7vv;hWdJ z^PU02L!nOwA|BT%rptNCWg!JwN2@9y314?a4_?k?XDG(4hc9L4X&_5PPFcw)smI?ix9e|opjt>0 zx2$7G=%!}p-7ZBKeUL|WZW7r%4R7W(;!ggKD;X2I<8Y0`H6{ecBs?Bn<8X}$fiVe> zN7v^IF1Xg2mqECq`fMF=)yuo9X6k{+X;w<1T8TIo3W_LdR!@!kZMKSOG)T%#LUl=h Z^eSs^Wz(o;I-x{$XG)h8$Bh&({|o&LyafON literal 0 HcmV?d00001 diff --git a/examples/qtest/mod-info/files/source1.pdf b/examples/qtest/mod-info/files/source1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..86cc34771f555a94264492fcaeb598b76ca60bd8 GIT binary patch literal 5932 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

}bWiMR+dWi1~UbCYI&GxWSn&8CWlj=Vbk1 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 nU}%NS7azRiZeQ-k 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 ui!k&fGeJ;{D*pwmx$ge} literal 0 HcmV?d00001 diff --git a/examples/qtest/mod-info/usage.out b/examples/qtest/mod-info/usage.out new file mode 100644 index 0000000..5eeba82 --- /dev/null +++ b/examples/qtest/mod-info/usage.out @@ -0,0 +1,5 @@ +Usage: pdf-mod-info -in in_file [-out out_file] [-key key [-val val]?]+ +Modifies/Adds/Removes PDF /Info entries in the in_file +and stores the result in out_file +Special mode: pdf-mod-info --dump file +dumps all /Info entries to stdout diff --git a/examples/qtest/npages.test b/examples/qtest/npages.test new file mode 100644 index 0000000..b20f254 --- /dev/null +++ b/examples/qtest/npages.test @@ -0,0 +1,23 @@ +#!/usr/bin/env perl +require 5.008; +BEGIN { $^W = 1; } +use strict; + +chdir("npages"); + +require TestDriver; + +my $td = new TestDriver('pdf-npages'); + +$td->runtest("normal", + {$td->COMMAND => "pdf-npages minimal.pdf"}, + {$td->STRING => "1\n", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("error", + {$td->COMMAND => "pdf-npages bad"}, + {$td->STRING => "pdf-npages: bad: not a PDF file\n", + $td->EXIT_STATUS => 2}, + $td->NORMALIZE_NEWLINES); + +$td->report(2); diff --git a/examples/qtest/npages/bad b/examples/qtest/npages/bad new file mode 100644 index 0000000..9daeafb --- /dev/null +++ b/examples/qtest/npages/bad @@ -0,0 +1 @@ +test diff --git a/examples/qtest/npages/minimal.pdf b/examples/qtest/npages/minimal.pdf new file mode 100644 index 0000000..a7e01f9 --- /dev/null +++ b/examples/qtest/npages/minimal.pdf @@ -0,0 +1,79 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R +>> +startxref +556 +%%EOF diff --git a/include/qpdf/Buffer.hh b/include/qpdf/Buffer.hh new file mode 100644 index 0000000..7fabe9a --- /dev/null +++ b/include/qpdf/Buffer.hh @@ -0,0 +1,53 @@ +// Copyright (c) 2005-2012 Jay Berkenbilt +// +// This file is part of qpdf. This software may be distributed under +// the terms of version 2 of the Artistic License which may be found +// in the source distribution. It is provided "as is" without express +// or implied warranty. + +#ifndef __BUFFER_HH__ +#define __BUFFER_HH__ + +#include +#include // for size_t + +class Buffer +{ + public: + QPDF_DLL + Buffer(); + + // Create a Buffer object whose memory is owned by the class and + // will be freed when the Buffer object is destroyed. + QPDF_DLL + Buffer(size_t size); + + // Create a Buffer object whose memory is owned by the caller and + // will not be freed when the Buffer is destroyed. + QPDF_DLL + Buffer(unsigned char* buf, size_t size); + + QPDF_DLL + Buffer(Buffer const&); + QPDF_DLL + Buffer& operator=(Buffer const&); + QPDF_DLL + ~Buffer(); + QPDF_DLL + size_t getSize() const; + QPDF_DLL + unsigned char const* getBuffer() const; + QPDF_DLL + unsigned char* getBuffer(); + + private: + void init(size_t size, unsigned char* buf, bool own_memory); + void copy(Buffer const&); + void destroy(); + + bool own_memory; + size_t size; + unsigned char* buf; +}; + +#endif // __BUFFER_HH__ diff --git a/include/qpdf/BufferInputSource.hh b/include/qpdf/BufferInputSource.hh new file mode 100644 index 0000000..48f6e3a --- /dev/null +++ b/include/qpdf/BufferInputSource.hh @@ -0,0 +1,30 @@ +#ifndef __QPDF_BUFFERINPUTSOURCE_HH__ +#define __QPDF_BUFFERINPUTSOURCE_HH__ + +#include +#include + +class BufferInputSource: public InputSource +{ + public: + BufferInputSource(std::string const& description, Buffer* buf, + bool own_memory = false); + BufferInputSource(std::string const& description, + std::string const& contents); + virtual ~BufferInputSource(); + virtual qpdf_offset_t findAndSkipNextEOL(); + virtual std::string const& getName() const; + virtual qpdf_offset_t tell(); + virtual void seek(qpdf_offset_t offset, int whence); + virtual void rewind(); + virtual size_t read(char* buffer, size_t length); + virtual void unreadCh(char ch); + + private: + bool own_memory; + std::string description; + Buffer* buf; + qpdf_offset_t cur_offset; +}; + +#endif // __QPDF_BUFFERINPUTSOURCE_HH__ diff --git a/include/qpdf/Constants.h b/include/qpdf/Constants.h new file mode 100644 index 0000000..176392e --- /dev/null +++ b/include/qpdf/Constants.h @@ -0,0 +1,61 @@ +/* Copyright (c) 2005-2012 Jay Berkenbilt + * + * This file is part of qpdf. This software may be distributed under + * the terms of version 2 of the Artistic License which may be found + * in the source distribution. It is provided "as is" without express + * or implied warranty. + */ + +#ifndef __QPDFCONSTANTS_H__ +#define __QPDFCONSTANTS_H__ + +/* Keep this file 'C' compatible so it can be used from the C and C++ + * interfaces. + */ + +/* Error Codes */ + +enum qpdf_error_code_e +{ + qpdf_e_success = 0, + qpdf_e_internal, /* logic/programming error -- indicates bug */ + qpdf_e_system, /* I/O error, memory error, etc. */ + qpdf_e_unsupported, /* PDF feature not (yet) supported by qpdf */ + qpdf_e_password, /* incorrect password for encrypted file */ + qpdf_e_damaged_pdf, /* syntax errors or other damage in PDF */ + qpdf_e_pages, /* erroneous or unsupported pages structure */ +}; + +/* Write Parameters */ + +enum qpdf_object_stream_e +{ + qpdf_o_disable = 0, /* disable object streams */ + qpdf_o_preserve, /* preserve object streams */ + qpdf_o_generate /* generate object streams */ +}; +enum qpdf_stream_data_e +{ + qpdf_s_uncompress = 0, /* uncompress stream data */ + qpdf_s_preserve, /* preserve stream data compression */ + qpdf_s_compress /* compress stream data */ +}; + +/* R3 Encryption Parameters */ + +enum qpdf_r3_print_e +{ + qpdf_r3p_full = 0, /* allow all printing */ + qpdf_r3p_low, /* allow only low-resolution printing */ + qpdf_r3p_none /* allow no printing */ +}; +enum qpdf_r3_modify_e /* Allowed changes: */ +{ + qpdf_r3m_all = 0, /* General editing, comments, forms */ + qpdf_r3m_annotate, /* Comments, form field fill-in, and signing */ + qpdf_r3m_form, /* form field fill-in and signing */ + qpdf_r3m_assembly, /* only document assembly */ + qpdf_r3m_none /* no modifications */ +}; + +#endif /* __QPDFCONSTANTS_H__ */ diff --git a/include/qpdf/DLL.h b/include/qpdf/DLL.h new file mode 100644 index 0000000..640e4f6 --- /dev/null +++ b/include/qpdf/DLL.h @@ -0,0 +1,18 @@ +/* Copyright (c) 2005-2012 Jay Berkenbilt + * + * This file is part of qpdf. This software may be distributed under + * the terms of version 2 of the Artistic License which may be found + * in the source distribution. It is provided "as is" without express + * or implied warranty. + */ + +#ifndef __QPDF_DLL_HH__ +#define __QPDF_DLL_HH__ + +#if defined(_WIN32) && defined(DLL_EXPORT) +# define QPDF_DLL __declspec(dllexport) +#else +# define QPDF_DLL +#endif + +#endif /* __QPDF_DLL_HH__ */ diff --git a/include/qpdf/FileInputSource.hh b/include/qpdf/FileInputSource.hh new file mode 100644 index 0000000..6129326 --- /dev/null +++ b/include/qpdf/FileInputSource.hh @@ -0,0 +1,32 @@ +#ifndef __QPDF_FILEINPUTSOURCE_HH__ +#define __QPDF_FILEINPUTSOURCE_HH__ + +#include + +class FileInputSource: public InputSource +{ + public: + FileInputSource(); + void setFilename(char const* filename); + void setFile(char const* description, FILE* filep, bool close_file); + virtual ~FileInputSource(); + virtual qpdf_offset_t findAndSkipNextEOL(); + virtual std::string const& getName() const; + virtual qpdf_offset_t tell(); + virtual void seek(qpdf_offset_t offset, int whence); + virtual void rewind(); + virtual size_t read(char* buffer, size_t length); + virtual void unreadCh(char ch); + + private: + FileInputSource(FileInputSource const&); + FileInputSource& operator=(FileInputSource const&); + + void destroy(); + + bool close_file; + std::string filename; + FILE* file; +}; + +#endif // __QPDF_FILEINPUTSOURCE_HH__ diff --git a/include/qpdf/InputSource.hh b/include/qpdf/InputSource.hh new file mode 100644 index 0000000..782d888 --- /dev/null +++ b/include/qpdf/InputSource.hh @@ -0,0 +1,35 @@ +#ifndef __QPDF_INPUTSOURCE_HH__ +#define __QPDF_INPUTSOURCE_HH__ + +#include +#include +#include + +class InputSource +{ + public: + InputSource() : + last_offset(0) + { + } + virtual ~InputSource() + { + } + + void setLastOffset(qpdf_offset_t); + qpdf_offset_t getLastOffset() const; + std::string readLine(size_t max_line_length); + + virtual qpdf_offset_t findAndSkipNextEOL() = 0; + virtual std::string const& getName() const = 0; + virtual qpdf_offset_t tell() = 0; + virtual void seek(qpdf_offset_t offset, int whence) = 0; + virtual void rewind() = 0; + virtual size_t read(char* buffer, size_t length) = 0; + virtual void unreadCh(char ch) = 0; + + protected: + qpdf_offset_t last_offset; +}; + +#endif // __QPDF_INPUTSOURCE_HH__ diff --git a/include/qpdf/Pipeline.hh b/include/qpdf/Pipeline.hh new file mode 100644 index 0000000..2de17ad --- /dev/null +++ b/include/qpdf/Pipeline.hh @@ -0,0 +1,65 @@ +// Copyright (c) 2005-2012 Jay Berkenbilt +// +// This file is part of qpdf. This software may be distributed under +// the terms of version 2 of the Artistic License which may be found +// in the source distribution. It is provided "as is" without express +// or implied warranty. + +// Generalized Pipeline interface. By convention, subclasses of +// Pipeline are called Pl_Something. +// +// When an instance of Pipeline is created with a pointer to a next +// pipeline, that pipeline writes its data to the next one when it +// finishes with it. In order to make possible a usage style in which +// a pipeline may be passed to a function which may stick other +// pipelines in front of it, the allocator of a pipeline is +// responsible for its destruction. In other words, one pipeline +// object does not attempt to manage the memory of its successor. +// +// The client is required to call finish() before destroying a +// Pipeline in order to avoid loss of data. A Pipeline class should +// not throw an exception in the destructor if this hasn't been done +// though since doing so causes too much trouble when deleting +// pipelines during error conditions. +// +// Some pipelines are reusable (i.e., you can call write() after +// calling finish() and can call finish() multiple times) while others +// are not. It is up to the caller to use a pipeline according to its +// own restrictions. + +#ifndef __PIPELINE_HH__ +#define __PIPELINE_HH__ + +#include +#include + +class Pipeline +{ + public: + QPDF_DLL + Pipeline(char const* identifier, Pipeline* next); + + QPDF_DLL + virtual ~Pipeline(); + + // Subclasses should implement write and finish to do their jobs + // and then, if they are not end-of-line pipelines, call + // getNext()->write or getNext()->finish. + QPDF_DLL + virtual void write(unsigned char* data, size_t len) = 0; + QPDF_DLL + virtual void finish() = 0; + + protected: + Pipeline* getNext(bool allow_null = false); + std::string identifier; + + private: + // Do not implement copy or assign + Pipeline(Pipeline const&); + Pipeline& operator=(Pipeline const&); + + Pipeline* next; +}; + +#endif // __PIPELINE_HH__ diff --git a/include/qpdf/Pl_Buffer.hh b/include/qpdf/Pl_Buffer.hh new file mode 100644 index 0000000..57473fd --- /dev/null +++ b/include/qpdf/Pl_Buffer.hh @@ -0,0 +1,51 @@ +// Copyright (c) 2005-2012 Jay Berkenbilt +// +// This file is part of qpdf. This software may be distributed under +// the terms of version 2 of the Artistic License which may be found +// in the source distribution. It is provided "as is" without express +// or implied warranty. + +#ifndef __PL_BUFFER_HH__ +#define __PL_BUFFER_HH__ + +// This pipeline accumulates the data passed to it into a memory +// buffer. Each subsequent use of this buffer appends to the data +// accumulated so far. getBuffer() may be called only after calling +// finish() and before calling any subsequent write(). At that point, +// a dynamically allocated Buffer object is returned and the internal +// buffer is reset. The caller is responsible for deleting the +// returned Buffer. +// +// For this pipeline, "next" may be null. If a next pointer is +// provided, this pipeline will also pass the data through to it. + +#include +#include +#include +#include + +class Pl_Buffer: public Pipeline +{ + public: + QPDF_DLL + Pl_Buffer(char const* identifier, Pipeline* next = 0); + QPDF_DLL + virtual ~Pl_Buffer(); + QPDF_DLL + virtual void write(unsigned char*, size_t); + QPDF_DLL + virtual void finish(); + + // Each call to getBuffer() resets this object -- see notes above. + // The caller is responsible for deleting the returned Buffer + // object. + QPDF_DLL + Buffer* getBuffer(); + + private: + bool ready; + std::list > data; + size_t total_size; +}; + +#endif // __PL_BUFFER_HH__ diff --git a/include/qpdf/Pl_Concatenate.hh b/include/qpdf/Pl_Concatenate.hh new file mode 100644 index 0000000..e8fd64e --- /dev/null +++ b/include/qpdf/Pl_Concatenate.hh @@ -0,0 +1,32 @@ +#ifndef __PL_CONCATENATE_HH__ +#define __PL_CONCATENATE_HH__ + +// This pipeline will drop all regular finished calls rather than +// passing them onto next. To finish downstream streams, call +// manualFinish. This makes it possible to pipe multiple streams +// (e.g. with QPDFObjectHandle::pipeStreamData) to a downstream like +// Pl_Flate that can't handle multiple calls to finish(). + +#include + +class Pl_Concatenate: public Pipeline +{ + public: + QPDF_DLL + Pl_Concatenate(char const* identifier, Pipeline* next); + QPDF_DLL + virtual ~Pl_Concatenate(); + + QPDF_DLL + virtual void write(unsigned char* data, size_t len); + + QPDF_DLL + virtual void finish(); + + // At the very end, call manualFinish to actually finish the rest of + // the pipeline. + QPDF_DLL + void manualFinish(); +}; + +#endif // __PL_CONCATENATE_HH__ diff --git a/include/qpdf/Pl_Count.hh b/include/qpdf/Pl_Count.hh new file mode 100644 index 0000000..7c5a418 --- /dev/null +++ b/include/qpdf/Pl_Count.hh @@ -0,0 +1,41 @@ +// Copyright (c) 2005-2012 Jay Berkenbilt +// +// This file is part of qpdf. This software may be distributed under +// the terms of version 2 of the Artistic License which may be found +// in the source distribution. It is provided "as is" without express +// or implied warranty. + +#ifndef __PL_COUNT_HH__ +#define __PL_COUNT_HH__ + +// This pipeline is reusable; i.e., it is safe to call write() after +// calling finish(). + +#include +#include + +class Pl_Count: public Pipeline +{ + public: + QPDF_DLL + Pl_Count(char const* identifier, Pipeline* next); + QPDF_DLL + virtual ~Pl_Count(); + QPDF_DLL + virtual void write(unsigned char*, size_t); + QPDF_DLL + virtual void finish(); + // Returns the number of bytes written + QPDF_DLL + qpdf_offset_t getCount() const; + // Returns the last character written, or '\0' if no characters + // have been written (in which case getCount() returns 0) + QPDF_DLL + unsigned char getLastChar() const; + + private: + qpdf_offset_t count; + unsigned char last_char; +}; + +#endif // __PL_COUNT_HH__ diff --git a/include/qpdf/Pl_Discard.hh b/include/qpdf/Pl_Discard.hh new file mode 100644 index 0000000..79b8564 --- /dev/null +++ b/include/qpdf/Pl_Discard.hh @@ -0,0 +1,32 @@ +// Copyright (c) 2005-2012 Jay Berkenbilt +// +// This file is part of qpdf. This software may be distributed under +// the terms of version 2 of the Artistic License which may be found +// in the source distribution. It is provided "as is" without express +// or implied warranty. + +#ifndef __PL_DISCARD_HH__ +#define __PL_DISCARD_HH__ + +// This pipeline discards its output. It is an end-of-line pipeline +// (with no next). + +// This pipeline is reusable; i.e., it is safe to call write() after +// calling finish(). + +#include + +class Pl_Discard: public Pipeline +{ + public: + QPDF_DLL + Pl_Discard(); + QPDF_DLL + virtual ~Pl_Discard(); + QPDF_DLL + virtual void write(unsigned char*, size_t); + QPDF_DLL + virtual void finish(); +}; + +#endif // __PL_DISCARD_HH__ diff --git a/include/qpdf/Pl_Flate.hh b/include/qpdf/Pl_Flate.hh new file mode 100644 index 0000000..31e3de3 --- /dev/null +++ b/include/qpdf/Pl_Flate.hh @@ -0,0 +1,42 @@ +// Copyright (c) 2005-2012 Jay Berkenbilt +// +// This file is part of qpdf. This software may be distributed under +// the terms of version 2 of the Artistic License which may be found +// in the source distribution. It is provided "as is" without express +// or implied warranty. + +#ifndef __PL_FLATE_HH__ +#define __PL_FLATE_HH__ + +#include + +class Pl_Flate: public Pipeline +{ + public: + static int const def_bufsize = 65536; + + enum action_e { a_inflate, a_deflate }; + + QPDF_DLL + Pl_Flate(char const* identifier, Pipeline* next, + action_e action, int out_bufsize = def_bufsize); + QPDF_DLL + virtual ~Pl_Flate(); + + QPDF_DLL + virtual void write(unsigned char* data, size_t len); + QPDF_DLL + virtual void finish(); + + private: + void handleData(unsigned char* data, int len, int flush); + void checkError(char const* prefix, int error_code); + + unsigned char* outbuf; + int out_bufsize; + action_e action; + bool initialized; + void* zdata; +}; + +#endif // __PL_FLATE_HH__ diff --git a/include/qpdf/Pl_StdioFile.hh b/include/qpdf/Pl_StdioFile.hh new file mode 100644 index 0000000..0a0f15d --- /dev/null +++ b/include/qpdf/Pl_StdioFile.hh @@ -0,0 +1,40 @@ +// Copyright (c) 2005-2012 Jay Berkenbilt +// +// This file is part of qpdf. This software may be distributed under +// the terms of version 2 of the Artistic License which may be found +// in the source distribution. It is provided "as is" without express +// or implied warranty. + +// End-of-line pipeline that simply writes its data to a stdio FILE* object. + +#ifndef __PL_STDIOFILE_HH__ +#define __PL_STDIOFILE_HH__ + +#include + +#include + +// +// This pipeline is reusable. +// + +class Pl_StdioFile: public Pipeline +{ + public: + // f is externally maintained; this class just writes to and + // flushes it. It does not close it. + QPDF_DLL + Pl_StdioFile(char const* identifier, FILE* f); + QPDF_DLL + virtual ~Pl_StdioFile(); + + QPDF_DLL + virtual void write(unsigned char* buf, size_t len); + QPDF_DLL + virtual void finish(); + + private: + FILE* file; +}; + +#endif // __PL_STDIOFILE_HH__ diff --git a/include/qpdf/PointerHolder.hh b/include/qpdf/PointerHolder.hh new file mode 100644 index 0000000..a2f33e9 --- /dev/null +++ b/include/qpdf/PointerHolder.hh @@ -0,0 +1,172 @@ +// Copyright (c) 2005-2012 Jay Berkenbilt +// +// This file is part of qpdf. This software may be distributed under +// the terms of version 2 of the Artistic License which may be found +// in the source distribution. It is provided "as is" without express +// or implied warranty. + +#ifndef __POINTERHOLDER_HH__ +#define __POINTERHOLDER_HH__ + +// This class is basically boost::shared_pointer but predates that by +// several years. + +// This class expects to be initialized with a dynamically allocated +// object pointer. It keeps a reference count and deletes this once +// the reference count goes to zero. PointerHolder objects are +// explicitly safe for use in STL containers. + +// It is very important that a client who pulls the pointer out of +// this holder does not let the holder go out of scope until it is +// finished with the pointer. It is also important that exactly one +// instance of this object ever gets initialized with a given pointer. +// Otherwise, the pointer will be deleted twice, and before that, some +// objects will be left with a pointer to a deleted object. In other +// words, the only legitimate way for two PointerHolder objects to +// contain the same pointer is for one to be a copy of the other. +// Copy and assignment semantics are well-defined and essentially +// allow you to use PointerHolder as a means to get pass-by-reference +// semantics in a pass-by-value environment without having to worry +// about memory management details. + +// Comparison (== and <) are defined and operate on the internally +// stored pointers, not on the data. This makes it possible to store +// PointerHolder objects in sorted lists or to find them in STL +// containers just as one would be able to store pointers. Comparing +// the underlying pointers provides a well-defined, if not +// particularly meaningful, ordering. + +template +class PointerHolder +{ + private: + class Data + { + public: + Data(T* pointer, bool array) : + pointer(pointer), + array(array), + refcount(0) + { + } + ~Data() + { + if (array) + { + delete [] this->pointer; + } + else + { + delete this->pointer; + } + } + T* pointer; + bool array; + int refcount; + private: + Data(Data const&); + Data& operator=(Data const&); + }; + + public: + // "tracing" is not used but is kept for interface backward compatbility + PointerHolder(T* pointer = 0, bool tracing = false) + { + this->init(new Data(pointer, false)); + } + // Special constructor indicating to free memory with delete [] + // instead of delete + PointerHolder(bool, T* pointer) + { + this->init(new Data(pointer, true)); + } + PointerHolder(PointerHolder const& rhs) + { + this->copy(rhs); + } + PointerHolder& operator=(PointerHolder const& rhs) + { + if (this != &rhs) + { + this->destroy(); + this->copy(rhs); + } + return *this; + } + ~PointerHolder() + { + this->destroy(); + } + bool operator==(PointerHolder const& rhs) const + { + return this->data->pointer == rhs.data->pointer; + } + bool operator<(PointerHolder const& rhs) const + { + return this->data->pointer < rhs.data->pointer; + } + + // NOTE: The pointer returned by getPointer turns into a pumpkin + // when the last PointerHolder that contains it disappears. + T* getPointer() + { + return this->data->pointer; + } + T const* getPointer() const + { + return this->data->pointer; + } + int getRefcount() const + { + return this->data->refcount; + } + + T const& operator*() const + { + return *this->data->pointer; + } + T& operator*() + { + return *this->data->pointer; + } + + T const* operator->() const + { + return this->data->pointer; + } + T* operator->() + { + return this->data->pointer; + } + + private: + void init(Data* data) + { + this->data = data; + { + ++this->data->refcount; + } + } + void copy(PointerHolder const& rhs) + { + this->init(rhs.data); + } + void destroy() + { + bool gone = false; + { + if (--this->data->refcount == 0) + { + gone = true; + } + } + if (gone) + { + delete this->data; + } + } + + Data* data; +}; + +#endif // __POINTERHOLDER_HH__ diff --git a/include/qpdf/QPDF.hh b/include/qpdf/QPDF.hh new file mode 100644 index 0000000..e594a44 --- /dev/null +++ b/include/qpdf/QPDF.hh @@ -0,0 +1,1015 @@ +// Copyright (c) 2005-2012 Jay Berkenbilt +// +// This file is part of qpdf. This software may be distributed under +// the terms of version 2 of the Artistic License which may be found +// in the source distribution. It is provided "as is" without express +// or implied warranty. + +#ifndef __QPDF_HH__ +#define __QPDF_HH__ + +#include +#include + +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include + +class QPDF_Stream; +class BitStream; +class BitWriter; +class QPDFExc; + +class QPDF +{ + public: + // Get the current version of the QPDF software + QPDF_DLL + static std::string const& QPDFVersion(); + + QPDF_DLL + QPDF(); + QPDF_DLL + ~QPDF(); + + // Associate a file with a QPDF object and do initial parsing of + // the file. PDF objects are not read until they are needed. A + // QPDF object may be associated with only one file in its + // lifetime. This method must be called before any methods that + // potentially ask for information about the PDF file are called. + // Prior to calling this, the only methods that are allowed are + // those that set parameters. If the input file is not + // encrypted,either a null password or an empty password can be + // used. If the file is encrypted, either the user password or + // the owner password may be supplied. + QPDF_DLL + void processFile(char const* filename, char const* password = 0); + + // Parse a PDF from a stdio FILE*. The FILE must be open in + // binary mode and must be seekable. It may be open read only. + // This works exactly like processFile except that the PDF file is + // read from an already opened FILE*. If close_file is true, the + // file will be closed at the end. Otherwise, the caller is + // responsible for closing the file. + QPDF_DLL + void processFile(char const* description, FILE* file, + bool close_file, char const* password = 0); + + // Parse a PDF file loaded into a memory buffer. This works + // exactly like processFile except that the PDF file is in memory + // instead of on disk. The description appears in any warning or + // error message in place of the file name. + QPDF_DLL + void processMemoryFile(char const* description, + char const* buf, size_t length, + char const* password = 0); + + // Create a QPDF object for an empty PDF. This PDF has no pages + // or objects other than a minimal trailer, a document catalog, + // and a /Pages tree containing zero pages. Pages and other + // objects can be added to the file in the normal way, and the + // trailer and document catalog can be mutated. Calling this + // method is equivalent to calling processFile on an equivalent + // PDF file. See the pdf-create.cc example for a demonstration of + // how to use this method to create a PDF file from scratch. + QPDF_DLL + void emptyPDF(); + + // Parameter settings + + // By default, warning messages are issued to std::cerr and output + // messages printed by certain check calls are issued to + // std::cout. This method allows you to specify alternative + // streams for this purpose. Note that no normal QPDF operations + // generate output to std::cout, so for applications that just + // wish to avoid creating output and don't call any check + // functions, calling setSuppressWarnings(true) is sufficient. + // Applications that wish to present check or warning information + // to users may replace the output and error streams to capture + // the output and errors for other use. A null value for either + // stream will cause QPDF to use std::cout or std::cerr as + // appropriate. + QPDF_DLL + void setOutputStreams(std::ostream* out_stream, std::ostream* err_stream); + + // If true, ignore any cross-reference streams in a hybrid file + // (one that contains both cross-reference streams and + // cross-reference tables). This can be useful for testing to + // ensure that a hybrid file would work with an older reader. + QPDF_DLL + void setIgnoreXRefStreams(bool); + + // By default, any warnings are issued to std::cerr or the error + // stream specified in a call to setOutputStreams as they are + // encountered. If this is called with a true value, reporting of + // warnings is suppressed. You may still retrieve warnings by + // calling getWarnings. + QPDF_DLL + void setSuppressWarnings(bool); + + // By default, QPDF will try to recover if it finds certain types + // of errors in PDF files. If turned off, it will throw an + // exception on the first such problem it finds without attempting + // recovery. + QPDF_DLL + void setAttemptRecovery(bool); + + // Other public methods + + // Return the list of warnings that have been issued so far and + // clear the list. This method may be called even if processFile + // throws an exception. Note that if setSuppressWarnings was not + // called or was called with a false value, any warnings retrieved + // here will have already been output. + QPDF_DLL + std::vector getWarnings(); + + QPDF_DLL + std::string getFilename() const; + QPDF_DLL + std::string getPDFVersion() const; + QPDF_DLL + QPDFObjectHandle getTrailer(); + QPDF_DLL + QPDFObjectHandle getRoot(); + + // Install this object handle as an indirect object and return an + // indirect reference to it. + QPDF_DLL + QPDFObjectHandle makeIndirectObject(QPDFObjectHandle); + + // Retrieve an object by object ID and generation. Returns an + // indirect reference to it. + QPDF_DLL + QPDFObjectHandle getObjectByID(int objid, int generation); + + // Replace the object with the given object id with the given + // object. The object handle passed in must be a direct object, + // though it may contain references to other indirect objects + // within it. Calling this method can have somewhat confusing + // results. Any existing QPDFObjectHandle instances that point to + // the old object and that have been resolved (which happens + // automatically if you access them in any way) will continue to + // point to the old object even though that object will no longer + // be associated with the PDF file. Note that replacing an object + // with QPDFObjectHandle::newNull() effectively removes the object + // from the file since a non-existent object is treated as a null + // object. To replace a reserved object, call replaceReserved + // instead. + QPDF_DLL + void replaceObject(int objid, int generation, QPDFObjectHandle); + + // Swap two objects given by ID. Calling this method can have + // confusing results. After swapping two objects, existing + // QPDFObjectHandle instances that reference them will still + // reference the same underlying objects, at which point those + // existing QPDFObjectHandle instances will have incorrect + // information about the object and generation number of those + // objects. While this does not necessarily cause a problem, it + // can certainly be confusing. It is therefore recommended that + // you replace any existing QPDFObjectHandle instances that point + // to the swapped objects with new ones, possibly by calling + // getObjectByID. + QPDF_DLL + void swapObjects(int objid1, int generation1, + int objid2, int generation2); + + // Replace a reserved object. This is a wrapper around + // replaceObject but it guarantees that the underlying object is a + // reserved object. After this call, reserved will be a reference + // to replacement. + QPDF_DLL + void + replaceReserved(QPDFObjectHandle reserved, + QPDFObjectHandle replacement); + + // Copy an object from another QPDF to this one. The return value + // is an indirect reference to the copied object in this file. + // This method is intended to be used to copy non-page objects and + // will not copy page objects. To copy page objects, pass the + // foreign page object directly to addPage (or addPageAt). If you + // copy objects that contain references to pages, you should copy + // the pages first using addPage(At). Otherwise references to the + // pages that have not been copied will be replaced with nulls. + + // When copying objects with this method, object structure will be + // preserved, so all indirectly referenced indirect objects will + // be copied as well. This includes any circular references that + // may exist. The QPDF object keeps a record of what has already + // been copied, so shared objects will not be copied multiple + // times. This also means that if you mutate an object that has + // already been copied and try to copy it again, it won't work + // since the modified object will not be recopied. Therefore, you + // should do all mutation on the original file that you are going + // to do before you start copying its objects to a new file. + QPDF_DLL + QPDFObjectHandle copyForeignObject(QPDFObjectHandle foreign); + + // Encryption support + + enum encryption_method_e { e_none, e_unknown, e_rc4, e_aes }; + struct EncryptionData + { + // This class holds data read from the encryption dictionary. + EncryptionData(int V, int R, int Length_bytes, int P, + std::string const& O, std::string const& U, + std::string const& id1, bool encrypt_metadata) : + V(V), + R(R), + Length_bytes(Length_bytes), + P(P), + O(O), + U(U), + id1(id1), + encrypt_metadata(encrypt_metadata) + { + } + + int V; + int R; + int Length_bytes; + int P; + std::string O; + std::string U; + std::string id1; + bool encrypt_metadata; + }; + + QPDF_DLL + bool isEncrypted() const; + + QPDF_DLL + bool isEncrypted(int& R, int& P); + + QPDF_DLL + bool isEncrypted(int& R, int& P, int& V, + encryption_method_e& stream_method, + encryption_method_e& string_method, + encryption_method_e& file_method); + + // Encryption permissions -- not enforced by QPDF + QPDF_DLL + bool allowAccessibility(); + QPDF_DLL + bool allowExtractAll(); + QPDF_DLL + bool allowPrintLowRes(); + QPDF_DLL + bool allowPrintHighRes(); + QPDF_DLL + bool allowModifyAssembly(); + QPDF_DLL + bool allowModifyForm(); + QPDF_DLL + bool allowModifyAnnotation(); + QPDF_DLL + bool allowModifyOther(); + QPDF_DLL + bool allowModifyAll(); + + // Helper function to trim padding from user password. Calling + // trim_user_password on the result of getPaddedUserPassword gives + // getTrimmedUserPassword's result. + QPDF_DLL + static void trim_user_password(std::string& user_password); + QPDF_DLL + static std::string compute_data_key( + std::string const& encryption_key, int objid, int generation, + bool use_aes); + QPDF_DLL + static std::string compute_encryption_key( + std::string const& password, EncryptionData const& data); + + QPDF_DLL + static void compute_encryption_O_U( + char const* user_password, char const* owner_password, + int V, int R, int key_len, int P, bool encrypt_metadata, + std::string const& id1, + std::string& O, std::string& U); + // Return the full user password as stored in the PDF file. If + // you are attempting to recover the user password in a + // user-presentable form, call getTrimmedUserPassword() instead. + QPDF_DLL + std::string const& getPaddedUserPassword() const; + // Return human-readable form of user password. + QPDF_DLL + std::string getTrimmedUserPassword() const; + + // Linearization support + + // Returns true iff the file starts with a linearization parameter + // dictionary. Does no additional validation. + QPDF_DLL + bool isLinearized(); + + // Performs various sanity checks on a linearized file. Return + // true if no errors or warnings. Otherwise, return false and + // output errors and warnings to std::cout or the output stream + // specified in a call to setOutputStreams. + QPDF_DLL + bool checkLinearization(); + + // Calls checkLinearization() and, if possible, prints normalized + // contents of some of the hints tables to std::cout or the output + // stream specified in a call to setOutputStreams. Normalization + // includes adding min values to delta values and adjusting + // offsets based on the location and size of the primary hint + // stream. + QPDF_DLL + void showLinearizationData(); + + // Shows the contents of the cross-reference table + QPDF_DLL + void showXRefTable(); + + // Optimization support -- see doc/optimization. Implemented in + // QPDF_optimization.cc + + // The object_stream_data map maps from a "compressed" object to + // the object stream that contains it. This enables optimize to + // populate the object <-> user maps with only uncompressed + // objects. If allow_changes is false, an exception will be + // thrown if any changes are made during the optimization process. + // This is available so that the test suite can make sure that a + // linearized file is already optimized. When called in this way, + // optimize() still populates the object <-> user maps + QPDF_DLL + void optimize(std::map const& object_stream_data, + bool allow_changes = true); + + // Replace all references to indirect objects that are "scalars" + // (i.e., things that don't have children: not arrays, streams, or + // dictionaries) with direct objects. + QPDF_DLL + void flattenScalarReferences(); + + // Decode all streams, discarding the output. Used to check + // correctness of stream encoding. + QPDF_DLL + void decodeStreams(); + + // For QPDFWriter: + + // Remove /ID, /Encrypt, and /Prev keys from the trailer + // dictionary since these are regenerated during write. + QPDF_DLL + void trimTrailerForWrite(); + + // Get lists of all objects in order according to the part of a + // linearized file that they belong to. + QPDF_DLL + void getLinearizedParts( + std::map const& object_stream_data, + std::vector& part4, + std::vector& part6, + std::vector& part7, + std::vector& part8, + std::vector& part9); + + QPDF_DLL + void generateHintStream(std::map const& xref, + std::map const& lengths, + std::map const& obj_renumber, + PointerHolder& hint_stream, + int& S, int& O); + + // Map object to object stream that contains it + QPDF_DLL + void getObjectStreamData(std::map&); + // Get a list of objects that would be permitted in an object + // stream + QPDF_DLL + std::vector getCompressibleObjects(); + + // Convenience routines for common functions. See also + // QPDFObjectHandle.hh for additional convenience routines. + + // Page handling API + + // Traverse page tree return all /Page objects. Note that calls + // to page manipulation APIs will change the internal vector that + // this routine returns a pointer to. If you don't want that, + // assign this to a regular vector rather than a const reference. + QPDF_DLL + std::vector const& getAllPages(); + + // This method synchronizes QPDF's cache of the page structure + // with the actual /Pages tree. If you restrict changes to the + // /Pages tree, including addition, removal, or replacement of + // pages or changes to any /Pages objects, to calls to these page + // handling APIs, you never need to call this method. If you + // modify /Pages structures directly, you must call this method + // afterwards. This method updates the internal list of pages, so + // after calling this method, any previous references returned by + // getAllPages() will be valid again. It also resets any state + // about having pushed inherited attributes in /Pages objects down + // to the pages, so if you add any inheritable attributes to a + // /Pages object, you should also call this method. + QPDF_DLL + void updateAllPagesCache(); + + // The PDF /Pages tree allows inherited values. Working with + // the pages of a pdf is much easier when the inheritance is + // resolved by explicitly setting the values in each /Page. + QPDF_DLL + void pushInheritedAttributesToPage(); + + // Add new page at the beginning or the end of the current pdf. + // The newpage parameter may be either a direct object, an + // indirect object from this QPDF, or an indirect object from + // another QPDF. If it is a direct object, it will be made + // indirect. If it is an indirect object from another QPDF, this + // method will call pushInheritedAttributesToPage on the other + // file and then copy the page to this QPDF using the same + // underlying code as copyForeignObject. + QPDF_DLL + void addPage(QPDFObjectHandle newpage, bool first); + + // Add new page before or after refpage. See comments for addPage + // for details about what newpage should be. + QPDF_DLL + void addPageAt(QPDFObjectHandle newpage, bool before, + QPDFObjectHandle refpage); + + // Remove page from the pdf. + QPDF_DLL + void removePage(QPDFObjectHandle page); + + // Resolver class is restricted to QPDFObjectHandle so that only + // it can resolve indirect references. + class Resolver + { + friend class QPDFObjectHandle; + private: + static PointerHolder resolve( + QPDF* qpdf, int objid, int generation) + { + return qpdf->resolve(objid, generation); + } + }; + friend class Resolver; + + // Pipe class is restricted to QPDF_Stream + class Pipe + { + friend class QPDF_Stream; + private: + static void pipeStreamData(QPDF* qpdf, int objid, int generation, + qpdf_offset_t offset, size_t length, + QPDFObjectHandle dict, + Pipeline* pipeline) + { + qpdf->pipeStreamData( + objid, generation, offset, length, dict, pipeline); + } + }; + friend class Pipe; + + private: + static std::string qpdf_version; + + class ObjGen + { + public: + ObjGen(); + ObjGen(int obj, int gen); + bool operator<(ObjGen const&) const; + + int obj; + int gen; + }; + + class ObjCache + { + public: + ObjCache() : + end_before_space(0), + end_after_space(0) + { + } + ObjCache(PointerHolder object, + qpdf_offset_t end_before_space, + qpdf_offset_t end_after_space) : + object(object), + end_before_space(end_before_space), + end_after_space(end_after_space) + { + } + + PointerHolder object; + qpdf_offset_t end_before_space; + qpdf_offset_t end_after_space; + }; + + class ObjCopier + { + public: + std::map object_map; + std::vector to_copy; + std::set visiting; + }; + + class CopiedStreamDataProvider: public QPDFObjectHandle::StreamDataProvider + { + public: + virtual ~CopiedStreamDataProvider() + { + } + virtual void provideStreamData(int objid, int generation, + Pipeline* pipeline); + void registerForeignStream(ObjGen const& local_og, + QPDFObjectHandle foreign_stream); + + private: + std::map foreign_streams; + }; + + class StringDecrypter: public QPDFObjectHandle::StringDecrypter + { + friend class QPDF; + + public: + StringDecrypter(QPDF* qpdf, int objid, int gen); + virtual ~StringDecrypter() + { + } + virtual void decryptString(std::string& val); + + private: + QPDF* qpdf; + int objid; + int gen; + }; + + void parse(char const* password); + void warn(QPDFExc const& e); + void setTrailer(QPDFObjectHandle obj); + void read_xref(qpdf_offset_t offset); + void reconstruct_xref(QPDFExc& e); + qpdf_offset_t read_xrefTable(qpdf_offset_t offset); + qpdf_offset_t read_xrefStream(qpdf_offset_t offset); + qpdf_offset_t processXRefStream( + qpdf_offset_t offset, QPDFObjectHandle& xref_stream); + void insertXrefEntry(int obj, int f0, qpdf_offset_t f1, int f2, + bool overwrite = false); + void setLastObjectDescription(std::string const& description, + int objid, int generation); + QPDFObjectHandle readObject( + PointerHolder, std::string const& description, + int objid, int generation, bool in_object_stream); + size_t recoverStreamLength( + PointerHolder input, int objid, int generation, + qpdf_offset_t stream_offset); + QPDFTokenizer::Token readToken(PointerHolder); + + QPDFObjectHandle readObjectAtOffset( + bool attempt_recovery, + qpdf_offset_t offset, std::string const& description, + int exp_objid, int exp_generation, + int& act_objid, int& act_generation); + PointerHolder resolve(int objid, int generation); + void resolveObjectsInStream(int obj_stream_number); + + // Calls finish() on the pipeline when done but does not delete it + void pipeStreamData(int objid, int generation, + qpdf_offset_t offset, size_t length, + QPDFObjectHandle dict, + Pipeline* pipeline); + + // methods to support page handling + + void getAllPagesInternal(QPDFObjectHandle cur_pages, + std::vector& result); + void insertPage(QPDFObjectHandle newpage, int pos); + int findPage(int objid, int generation); + int findPage(QPDFObjectHandle& page); + void flattenPagesTree(); + void insertPageobjToPage(QPDFObjectHandle const& obj, int pos, + bool check_duplicate); + + // methods to support encryption -- implemented in QPDF_encryption.cc + encryption_method_e interpretCF(QPDFObjectHandle); + void initializeEncryption(); + std::string getKeyForObject(int objid, int generation, bool use_aes); + void decryptString(std::string&, int objid, int generation); + void decryptStream( + Pipeline*& pipeline, int objid, int generation, + QPDFObjectHandle& stream_dict, + std::vector >& heap); + + // Methods to support object copying + QPDFObjectHandle copyForeignObject( + QPDFObjectHandle foreign, bool allow_page); + void reserveObjects(QPDFObjectHandle foreign, ObjCopier& obj_copier, + bool top); + QPDFObjectHandle replaceForeignIndirectObjects( + QPDFObjectHandle foreign, ObjCopier& obj_copier, bool top); + + // Linearization Hint table structures. + // Naming conventions: + + // HSomething is the Something Hint Table or table header + // HSomethingEntry is an entry in the Something table + + // delta_something + min_something = something + // nbits_something = number of bits required for something + + // something_offset is the pre-adjusted offset in the file. If >= + // H0_offset, H0_length must be added to get an actual file + // offset. + + // PDF 1.4: Table F.4 + struct HPageOffsetEntry + { + HPageOffsetEntry() : + delta_nobjects(0), + delta_page_length(0), + nshared_objects(0), + delta_content_offset(0), + delta_content_length(0) + { + } + + int delta_nobjects; // 1 + qpdf_offset_t delta_page_length; // 2 + int nshared_objects; // 3 + // vectors' sizes = nshared_objects + std::vector shared_identifiers; // 4 + std::vector shared_numerators; // 5 + qpdf_offset_t delta_content_offset; // 6 + qpdf_offset_t delta_content_length; // 7 + }; + + // PDF 1.4: Table F.3 + struct HPageOffset + { + HPageOffset() : + min_nobjects(0), + first_page_offset(0), + nbits_delta_nobjects(0), + min_page_length(0), + nbits_delta_page_length(0), + min_content_offset(0), + nbits_delta_content_offset(0), + min_content_length(0), + nbits_delta_content_length(0), + nbits_nshared_objects(0), + nbits_shared_identifier(0), + nbits_shared_numerator(0), + shared_denominator(0) + { + } + + int min_nobjects; // 1 + qpdf_offset_t first_page_offset; // 2 + int nbits_delta_nobjects; // 3 + int min_page_length; // 4 + int nbits_delta_page_length; // 5 + int min_content_offset; // 6 + int nbits_delta_content_offset; // 7 + int min_content_length; // 8 + int nbits_delta_content_length; // 9 + int nbits_nshared_objects; // 10 + int nbits_shared_identifier; // 11 + int nbits_shared_numerator; // 12 + int shared_denominator; // 13 + // vector size is npages + std::vector entries; + }; + + // PDF 1.4: Table F.6 + struct HSharedObjectEntry + { + HSharedObjectEntry() : + delta_group_length(0), + signature_present(0), + nobjects_minus_one(0) + { + } + + // Item 3 is a 128-bit signature (unsupported by Acrobat) + int delta_group_length; // 1 + int signature_present; // 2 -- always 0 + int nobjects_minus_one; // 4 -- always 0 + }; + + // PDF 1.4: Table F.5 + struct HSharedObject + { + HSharedObject() : + first_shared_obj(0), + first_shared_offset(0), + nshared_first_page(0), + nshared_total(0), + nbits_nobjects(0), + min_group_length(0), + nbits_delta_group_length(0) + { + } + + int first_shared_obj; // 1 + qpdf_offset_t first_shared_offset; // 2 + int nshared_first_page; // 3 + int nshared_total; // 4 + int nbits_nobjects; // 5 + int min_group_length; // 6 + int nbits_delta_group_length; // 7 + // vector size is nshared_total + std::vector entries; + }; + + // PDF 1.4: Table F.9 + struct HGeneric + { + HGeneric() : + first_object(0), + first_object_offset(0), + nobjects(0), + group_length(0) + { + } + + int first_object; // 1 + qpdf_offset_t first_object_offset; // 2 + int nobjects; // 3 + int group_length; // 4 + }; + + // Other linearization data structures + + // Initialized from Linearization Parameter dictionary + struct LinParameters + { + LinParameters() : + file_size(0), + first_page_object(0), + first_page_end(0), + npages(0), + xref_zero_offset(0), + first_page(0), + H_offset(0), + H_length(0) + { + } + + qpdf_offset_t file_size; // /L + int first_page_object; // /O + qpdf_offset_t first_page_end; // /E + int npages; // /N + qpdf_offset_t xref_zero_offset; // /T + int first_page; // /P + qpdf_offset_t H_offset; // offset of primary hint stream + qpdf_offset_t H_length; // length of primary hint stream + }; + + // Computed hint table value data structures. These tables + // contain the computed values on which the hint table values are + // based. They exclude things like number of bits and store + // actual values instead of mins and deltas. File offsets are + // also absolute rather than being offset by the size of the + // primary hint table. We populate the hint table structures from + // these during writing and compare the hint table values with + // these during validation. We ignore some values for various + // reasons described in the code. Those values are omitted from + // these structures. Note also that object numbers are object + // numbers from the input file, not the output file. + + // Naming convention: CHSomething is analogous to HSomething + // above. "CH" is computed hint. + + struct CHPageOffsetEntry + { + CHPageOffsetEntry() : + nobjects(0), + nshared_objects(0) + { + } + + int nobjects; + int nshared_objects; + // vectors' sizes = nshared_objects + std::vector shared_identifiers; + }; + + struct CHPageOffset + { + // vector size is npages + std::vector entries; + }; + + struct CHSharedObjectEntry + { + CHSharedObjectEntry(int object) : + object(object) + { + } + + int object; + }; + + // PDF 1.4: Table F.5 + struct CHSharedObject + { + CHSharedObject() : + first_shared_obj(0), + nshared_first_page(0), + nshared_total(0) + { + } + + int first_shared_obj; + int nshared_first_page; + int nshared_total; + // vector size is nshared_total + std::vector entries; + }; + + // No need for CHGeneric -- HGeneric is fine as is. + + + // Data structures to support optimization -- implemented in + // QPDF_optimization.cc + + class ObjUser + { + public: + enum user_e + { + ou_bad, + ou_page, + ou_thumb, + ou_trailer_key, + ou_root_key, + ou_root + }; + + // type is set to ou_bad + ObjUser(); + + // type must be ou_root + ObjUser(user_e type); + + // type must be one of ou_page or ou_thumb + ObjUser(user_e type, int pageno); + + // type must be one of ou_trailer_key or ou_root_key + ObjUser(user_e type, std::string const& key); + + bool operator<(ObjUser const&) const; + + user_e ou_type; + int pageno; // if ou_page; + std::string key; // if ou_trailer_key or ou_root_key + }; + + // methods to support linearization checking -- implemented in + // QPDF_linearization.cc + void readLinearizationData(); + bool checkLinearizationInternal(); + void dumpLinearizationDataInternal(); + QPDFObjectHandle readHintStream( + Pipeline&, qpdf_offset_t offset, size_t length); + void readHPageOffset(BitStream); + void readHSharedObject(BitStream); + void readHGeneric(BitStream, HGeneric&); + int maxEnd(ObjUser const& ou); + qpdf_offset_t getLinearizationOffset(ObjGen const&); + QPDFObjectHandle getUncompressedObject( + QPDFObjectHandle&, std::map const& object_stream_data); + int lengthNextN(int first_object, int n, + std::list& errors); + void checkHPageOffset(std::list& errors, + std::list& warnings, + std::vector const& pages, + std::map& idx_to_obj); + void checkHSharedObject(std::list& warnings, + std::list& errors, + std::vector const& pages, + std::map& idx_to_obj); + void checkHOutlines(std::list& warnings); + void dumpHPageOffset(); + void dumpHSharedObject(); + void dumpHGeneric(HGeneric&); + int adjusted_offset(int offset); + QPDFObjectHandle objGenToIndirect(ObjGen const&); + void calculateLinearizationData( + std::map const& object_stream_data); + void pushOutlinesToPart( + std::vector& part, + std::set& lc_outlines, + std::map const& object_stream_data); + int outputLengthNextN( + int in_object, int n, + std::map const& lengths, + std::map const& obj_renumber); + void calculateHPageOffset( + std::map const& xref, + std::map const& lengths, + std::map const& obj_renumber); + void calculateHSharedObject( + std::map const& xref, + std::map const& lengths, + std::map const& obj_renumber); + void calculateHOutline( + std::map const& xref, + std::map const& lengths, + std::map const& obj_renumber); + void writeHPageOffset(BitWriter&); + void writeHSharedObject(BitWriter&); + void writeHGeneric(BitWriter&, HGeneric&); + + + // Methods to support optimization + + void pushInheritedAttributesToPage(bool allow_changes, + bool warn_skipped_keys); + void pushInheritedAttributesToPageInternal( + QPDFObjectHandle, + std::map >&, + std::vector& all_pages, + bool allow_changes, bool warn_skipped_keys); + void updateObjectMaps(ObjUser const& ou, QPDFObjectHandle oh); + void updateObjectMapsInternal(ObjUser const& ou, QPDFObjectHandle oh, + std::set& visited, bool top); + void filterCompressedObjects(std::map const& object_stream_data); + + + QPDFTokenizer tokenizer; + PointerHolder file; + std::string last_object_description; + bool encrypted; + bool encryption_initialized; + bool ignore_xref_streams; + bool suppress_warnings; + std::ostream* out_stream; + std::ostream* err_stream; + bool attempt_recovery; + int encryption_V; + bool encrypt_metadata; + std::map crypt_filters; + encryption_method_e cf_stream; + encryption_method_e cf_string; + encryption_method_e cf_file; + std::string provided_password; + std::string user_password; + std::string encryption_key; + std::string cached_object_encryption_key; + int cached_key_objid; + int cached_key_generation; + std::string pdf_version; + std::map xref_table; + std::set deleted_objects; + std::map obj_cache; + QPDFObjectHandle trailer; + std::vector all_pages; + std::map pageobj_to_pages_pos; + bool pushed_inherited_attributes_to_pages; + std::vector warnings; + std::map object_copiers; + PointerHolder copied_streams; + // copied_stream_data_provider is owned by copied_streams + CopiedStreamDataProvider* copied_stream_data_provider; + + // Linearization data + qpdf_offset_t first_xref_item_offset; // actual value from file + bool uncompressed_after_compressed; + + // Linearization parameter dictionary and hint table data: may be + // read from file or computed prior to writing a linearized file + QPDFObjectHandle lindict; + LinParameters linp; + HPageOffset page_offset_hints; + HSharedObject shared_object_hints; + HGeneric outline_hints; + + // Computed linearization data: used to populate above tables + // during writing and to compare with them during validation. c_ + // means computed. + LinParameters c_linp; + CHPageOffset c_page_offset_data; + CHSharedObject c_shared_object_data; + HGeneric c_outline_data; + + // Object ordering data for linearized files: initialized by + // calculateLinearizationData(). Part numbers refer to the PDF + // 1.4 specification. + std::vector part4; + std::vector part6; + std::vector part7; + std::vector part8; + std::vector part9; + + // Optimization data + std::map > obj_user_to_objects; + std::map > object_to_obj_users; +}; + +#endif // __QPDF_HH__ diff --git a/include/qpdf/QPDFExc.hh b/include/qpdf/QPDFExc.hh new file mode 100644 index 0000000..30d576e --- /dev/null +++ b/include/qpdf/QPDFExc.hh @@ -0,0 +1,63 @@ +// Copyright (c) 2005-2012 Jay Berkenbilt +// +// This file is part of qpdf. This software may be distributed under +// the terms of version 2 of the Artistic License which may be found +// in the source distribution. It is provided "as is" without express +// or implied warranty. + +#ifndef __QPDFEXC_HH__ +#define __QPDFEXC_HH__ + +#include +#include + +#include +#include + +class QPDFExc: public std::runtime_error +{ + public: + QPDF_DLL + QPDFExc(qpdf_error_code_e error_code, + std::string const& filename, + std::string const& object, + qpdf_offset_t offset, + std::string const& message); + QPDF_DLL + virtual ~QPDFExc() throw (); + + // To get a complete error string, call what(), provided by + // std::exception. The accessors below return the original values + // used to create the exception. Only the error code and message + // are guaranteed to have non-zero/empty values. + + // There is no lookup code that maps numeric error codes into + // strings. The numeric error code is just another way to get at + // the underlying issue, but it is more programmer-friendly than + // trying to parse a string that is subject to change. + + QPDF_DLL + qpdf_error_code_e getErrorCode() const; + QPDF_DLL + std::string const& getFilename() const; + QPDF_DLL + std::string const& getObject() const; + QPDF_DLL + qpdf_offset_t getFilePosition() const; + QPDF_DLL + std::string const& getMessageDetail() const; + + private: + static std::string createWhat(std::string const& filename, + std::string const& object, + qpdf_offset_t offset, + std::string const& message); + + qpdf_error_code_e error_code; + std::string filename; + std::string object; + qpdf_offset_t offset; + std::string message; +}; + +#endif // __QPDFEXC_HH__ diff --git a/include/qpdf/QPDFObject.hh b/include/qpdf/QPDFObject.hh new file mode 100644 index 0000000..4626eb6 --- /dev/null +++ b/include/qpdf/QPDFObject.hh @@ -0,0 +1,44 @@ +// Copyright (c) 2005-2012 Jay Berkenbilt +// +// This file is part of qpdf. This software may be distributed under +// the terms of version 2 of the Artistic License which may be found +// in the source distribution. It is provided "as is" without express +// or implied warranty. + +#ifndef __QPDFOBJECT_HH__ +#define __QPDFOBJECT_HH__ + +#include + +#include + +class QPDF; +class QPDFObjectHandle; + +class QPDFObject +{ + public: + virtual ~QPDFObject() {} + virtual std::string unparse() = 0; + + // Accessor to give specific access to non-public methods + class ObjAccessor + { + friend class QPDF; + friend class QPDFObjectHandle; + private: + static void releaseResolved(QPDFObject* o) + { + if (o) + { + o->releaseResolved(); + } + } + }; + friend class ObjAccessor; + + protected: + virtual void releaseResolved() {} +}; + +#endif // __QPDFOBJECT_HH__ diff --git a/include/qpdf/QPDFObjectHandle.hh b/include/qpdf/QPDFObjectHandle.hh new file mode 100644 index 0000000..0375b83 --- /dev/null +++ b/include/qpdf/QPDFObjectHandle.hh @@ -0,0 +1,565 @@ +// Copyright (c) 2005-2012 Jay Berkenbilt +// +// This file is part of qpdf. This software may be distributed under +// the terms of version 2 of the Artistic License which may be found +// in the source distribution. It is provided "as is" without express +// or implied warranty. + +#ifndef __QPDFOBJECTHANDLE_HH__ +#define __QPDFOBJECTHANDLE_HH__ + +#include +#include + +#include +#include +#include +#include + +#include +#include +#include + +#include + +class Pipeline; +class QPDF; +class QPDF_Dictionary; +class QPDF_Array; +class QPDFTokenizer; + +class QPDFObjectHandle +{ + public: + // This class is used by replaceStreamData. It provides an + // alternative way of associating stream data with a stream. See + // comments on replaceStreamData and newStream for additional + // details. + class StreamDataProvider + { + public: + QPDF_DLL + virtual ~StreamDataProvider() + { + } + // The implementation of this function must write the + // unencrypted, raw stream data to the given pipeline. Every + // call to provideStreamData for a given stream must write the + // same data. The number of bytes written must agree with the + // length provided at the time the StreamDataProvider object + // was associated with the stream. The object ID and + // generation passed to this method are those that belong to + // the stream on behalf of which the provider is called. They + // may be ignored or used by the implementation for indexing + // or other purposes. This information is made available just + // to make it more convenient to use a single + // StreamDataProvider object to provide data for multiple + // streams. + virtual void provideStreamData(int objid, int generation, + Pipeline* pipeline) = 0; + }; + + // This class is used by parse to decrypt strings when reading an + // object that contains encrypted strings. + class StringDecrypter + { + public: + QPDF_DLL + virtual ~StringDecrypter() + { + } + virtual void decryptString(std::string& val) = 0; + }; + + QPDF_DLL + QPDFObjectHandle(); + QPDF_DLL + bool isInitialized() const; + + // Exactly one of these will return true for any object. + QPDF_DLL + bool isBool(); + QPDF_DLL + bool isNull(); + QPDF_DLL + bool isInteger(); + QPDF_DLL + bool isReal(); + QPDF_DLL + bool isName(); + QPDF_DLL + bool isString(); + QPDF_DLL + bool isArray(); + QPDF_DLL + bool isDictionary(); + QPDF_DLL + bool isStream(); + QPDF_DLL + bool isReserved(); + + // This returns true in addition to the query for the specific + // type for indirect objects. + QPDF_DLL + bool isIndirect(); + + // True for everything except array, dictionary, and stream + QPDF_DLL + bool isScalar(); + + // Public factory methods + + // Construct an object of any type from a string representation of + // the object. Throws QPDFExc with an empty filename and an + // offset into the string if there is an error. Any indirect + // object syntax (obj gen R) will cause a logic_error exception to + // be thrown. If object_description is provided, it will appear + // in the message of any QPDFExc exception thrown for invalid + // syntax. + QPDF_DLL + static QPDFObjectHandle parse(std::string const& object_str, + std::string const& object_description = ""); + + // Construct an object as above by reading from the given + // InputSource at its current position and using the tokenizer you + // supply. Indirect objects and encrypted strings are permitted. + // This method is intended to be called by QPDF for parsing + // objects that are ready from the object's input stream. + QPDF_DLL + static QPDFObjectHandle parse(PointerHolder input, + std::string const& object_description, + QPDFTokenizer&, bool& empty, + StringDecrypter* decrypter, + QPDF* context); + + // Type-specific factories + QPDF_DLL + static QPDFObjectHandle newNull(); + QPDF_DLL + static QPDFObjectHandle newBool(bool value); + QPDF_DLL + static QPDFObjectHandle newInteger(long long value); + QPDF_DLL + static QPDFObjectHandle newReal(std::string const& value); + QPDF_DLL + static QPDFObjectHandle newReal(double value, int decimal_places = 0); + QPDF_DLL + static QPDFObjectHandle newName(std::string const& name); + QPDF_DLL + static QPDFObjectHandle newString(std::string const& str); + QPDF_DLL + static QPDFObjectHandle newArray(); + QPDF_DLL + static QPDFObjectHandle newArray( + std::vector const& items); + QPDF_DLL + static QPDFObjectHandle newDictionary(); + QPDF_DLL + static QPDFObjectHandle newDictionary( + std::map const& items); + + // Create a new stream and associate it with the given qpdf + // object. A subsequent call must be made to replaceStreamData() + // to provide data for the stream. The stream's dictionary may be + // retrieved by calling getDict(), and the resulting dictionary + // may be modified. Alternatively, you can create a new + // dictionary and call replaceDict to install it. + QPDF_DLL + static QPDFObjectHandle newStream(QPDF* qpdf); + + // Create a new stream and associate it with the given qpdf + // object. Use the given buffer as the stream data. The stream + // dictionary's /Length key will automatically be set to the size + // of the data buffer. If additional keys are required, the + // stream's dictionary may be retrieved by calling getDict(), and + // the resulting dictionary may be modified. This method is just + // a convenient wrapper around the newStream() and + // replaceStreamData(). It is a convenience methods for streams + // that require no parameters beyond the stream length. Note that + // you don't have to deal with compression yourself if you use + // QPDFWriter. By default, QPDFWriter will automatically compress + // uncompressed stream data. Example programs are provided that + // illustrate this. + QPDF_DLL + static QPDFObjectHandle newStream(QPDF* qpdf, PointerHolder data); + + // Create new stream with data from string. This method will + // create a copy of the data rather than using the user-provided + // buffer as in the PointerHolder version of newStream. + QPDF_DLL + static QPDFObjectHandle newStream(QPDF* qpdf, std::string const& data); + + // A reserved object is a special sentinel used for qpdf to + // reserve a spot for an object that is going to be added to the + // QPDF object. Normally you don't have to use this type since + // you can just call QPDF::makeIndirectObject. However, in some + // cases, if you have to create objects with circular references, + // you may need to create a reserved object so that you can have a + // reference to it and then replace the object later. Reserved + // objects have the special property that they can't be resolved + // to direct objects. This makes it possible to replace a + // reserved object with a new object while preserving existing + // references to them. When you are ready to replace a reserved + // object with its replacement, use QPDF::replaceReserved for this + // purpose rather than the more general QPDF::replaceObject. It + // is an error to try to write a QPDF with QPDFWriter if it has + // any reserved objects in it. + QPDF_DLL + static QPDFObjectHandle newReserved(QPDF* qpdf); + + // Accessor methods. If an accessor method that is valid for only + // a particular object type is called on an object of the wrong + // type, an exception is thrown. + + // Methods for bool objects + QPDF_DLL + bool getBoolValue(); + + // Methods for integer objects + QPDF_DLL + long long getIntValue(); + + // Methods for real objects + QPDF_DLL + std::string getRealValue(); + + // Methods that work for both integer and real objects + QPDF_DLL + bool isNumber(); + QPDF_DLL + double getNumericValue(); + + // Methods for name objects; see also name and array objects + QPDF_DLL + std::string getName(); + + // Methods for string objects + QPDF_DLL + std::string getStringValue(); + QPDF_DLL + std::string getUTF8Value(); + + // Methods for array objects; see also name and array objects + QPDF_DLL + int getArrayNItems(); + QPDF_DLL + QPDFObjectHandle getArrayItem(int n); + QPDF_DLL + std::vector getArrayAsVector(); + + // Methods for dictionary objects + QPDF_DLL + bool hasKey(std::string const&); + QPDF_DLL + QPDFObjectHandle getKey(std::string const&); + QPDF_DLL + std::set getKeys(); + QPDF_DLL + std::map getDictAsMap(); + + // Methods for name and array objects + QPDF_DLL + bool isOrHasName(std::string const&); + + // Return the QPDF object that owns an indirect object. Returns + // null for a direct object. + QPDF_DLL + QPDF* getOwningQPDF(); + + // Create a shallow copy of an object as a direct object. Since + // this is a shallow copy, for dictionaries and arrays, any keys + // or items that were indirect objects will still be indirect + // objects that point to the same place. + QPDF_DLL + QPDFObjectHandle shallowCopy(); + + // Mutator methods. Use with caution. + + // Recursively copy this object, making it direct. Throws an + // exception if a loop is detected or any sub-object is a stream. + QPDF_DLL + void makeDirect(); + + // Mutator methods for array objects + QPDF_DLL + void setArrayItem(int, QPDFObjectHandle const&); + QPDF_DLL + void setArrayFromVector(std::vector const& items); + // Insert an item before the item at the given position ("at") so + // that it has that position after insertion. If "at" is equal to + // the size of the array, insert the item at the end. + QPDF_DLL + void insertItem(int at, QPDFObjectHandle const& item); + QPDF_DLL + void appendItem(QPDFObjectHandle const& item); + // Remove the item at that position, reducing the size of the + // array by one. + QPDF_DLL + void eraseItem(int at); + + // Mutator methods for dictionary objects + + // Replace value of key, adding it if it does not exist + QPDF_DLL + void replaceKey(std::string const& key, QPDFObjectHandle const&); + // Remove key, doing nothing if key does not exist + QPDF_DLL + void removeKey(std::string const& key); + // If the object is null, remove the key. Otherwise, replace it. + QPDF_DLL + void replaceOrRemoveKey(std::string const& key, QPDFObjectHandle); + + // Methods for stream objects + QPDF_DLL + QPDFObjectHandle getDict(); + + // Returns filtered (uncompressed) stream data. Throws an + // exception if the stream is filtered and we can't decode it. + QPDF_DLL + PointerHolder getStreamData(); + // Returns unfiltered (raw) stream data. + QPDF_DLL + PointerHolder getRawStreamData(); + + // Write stream data through the given pipeline. A null pipeline + // value may be used if all you want to do is determine whether a + // stream is filterable. If filter is false, write raw stream + // data and return false. If filter is true, then attempt to + // apply all the decoding filters to the stream data. If we are + // successful, return true. Otherwise, return false and write raw + // data. If filtering is requested and successfully performed, + // then the normalize and compress flags are used to determine + // whether stream data should be normalized and compressed. In + // all cases, if this function returns false, raw data has been + // written. If it returns true, then any requested filtering has + // been performed. Note that if the original stream data has no + // filters applied to it, the return value will be equal to the + // value of the filter parameter. Callers may use the return + // value of this function to determine whether or not the /Filter + // and /DecodeParms keys in the stream dictionary should be + // replaced if writing a new stream object. + QPDF_DLL + bool pipeStreamData(Pipeline*, bool filter, + bool normalize, bool compress); + + // Replace a stream's dictionary. The new dictionary must be + // consistent with the stream's data. This is most appropriately + // used when creating streams from scratch that will use a stream + // data provider and therefore start with an empty dictionary. It + // may be more convenient in this case than calling getDict and + // modifying it for each key. The pdf-create example does this. + QPDF_DLL + void replaceDict(QPDFObjectHandle); + + // Replace this stream's stream data with the given data buffer, + // and replace the /Filter and /DecodeParms keys in the stream + // dictionary with the given values. (If either value is empty, + // the corresponding key is removed.) The stream's /Length key is + // replaced with the length of the data buffer. The stream is + // interpreted as if the data read from the file, after any + // decryption filters have been applied, is as presented. + QPDF_DLL + void replaceStreamData(PointerHolder data, + QPDFObjectHandle const& filter, + QPDFObjectHandle const& decode_parms); + + // Replace the stream's stream data with the given string. + // This method will create a copy of the data rather than using + // the user-provided buffer as in the PointerHolder version + // of replaceStreamData. + QPDF_DLL + void replaceStreamData(std::string const& data, + QPDFObjectHandle const& filter, + QPDFObjectHandle const& decode_parms); + + // As above, replace this stream's stream data. Instead of + // directly providing a buffer with the stream data, call the + // given provider's provideStreamData method. See comments on the + // StreamDataProvider class (defined above) for details on the + // method. The data must be consistent with filter and + // decode_parms as provided. Although it is more complex to use + // this form of replaceStreamData than the one that takes a + // buffer, it makes it possible to avoid allocating memory for the + // stream data. Example programs are provided that use both forms + // of replaceStreamData. + + // Note about stream length: for any given stream, the provider + // must provide the same amount of data each time it is called. + // This is critical for making linearization work properly. + // Versions of qpdf before 3.0.0 required a length to be specified + // here. Starting with version 3.0.0, this is no longer necessary + // (or permitted). The first time the stream data provider is + // invoked for a given stream, the actual length is stored. + // Subsequent times, it is enforced that the length be the same as + // the first time. + + // If you have gotten a compile error here while building code + // that worked with older versions of qpdf, just omit the length + // parameter. You can also simplify your code by not having to + // compute the length in advance. + QPDF_DLL + void replaceStreamData(PointerHolder provider, + QPDFObjectHandle const& filter, + QPDFObjectHandle const& decode_parms); + + // return 0 for direct objects + QPDF_DLL + int getObjectID() const; + QPDF_DLL + int getGeneration() const; + + QPDF_DLL + std::string unparse(); + QPDF_DLL + std::string unparseResolved(); + + // Convenience routines for commonly performed functions + + // Throws an exception if this is not a Page object. Returns an + // empty map if there are no images or no resources. This + // function does not presently support inherited resources. If + // this is a significant concern, call + // pushInheritedAttributesToPage() on the QPDF object that owns + // this page. See comment in the source for details. Return + // value is a map from XObject name to the image object, which is + // always a stream. + QPDF_DLL + std::map getPageImages(); + + // Returns a vector of stream objects representing the content + // streams for the given page. This routine allows the caller to + // not care whether there are one or more than one content streams + // for a page. Throws an exception if this is not a Page object. + QPDF_DLL + std::vector getPageContents(); + + // Add the given object as a new content stream for this page. If + // parameter 'first' is true, add to the beginning. Otherwise, + // add to the end. This routine automatically converts the page + // contents to an array if it is a scalar, allowing the caller not + // to care what the initial structure is. Throws an exception if + // this is not a Page object. + QPDF_DLL + void addPageContents(QPDFObjectHandle contents, bool first); + + // Initializers for objects. This Factory class gives the QPDF + // class specific permission to call factory methods without + // making it a friend of the whole QPDFObjectHandle class. + class Factory + { + friend class QPDF; + private: + static QPDFObjectHandle newIndirect(QPDF* qpdf, + int objid, int generation) + { + return QPDFObjectHandle::newIndirect(qpdf, objid, generation); + } + // object must be dictionary object + static QPDFObjectHandle newStream( + QPDF* qpdf, int objid, int generation, + QPDFObjectHandle stream_dict, qpdf_offset_t offset, size_t length) + { + return QPDFObjectHandle::newStream( + qpdf, objid, generation, stream_dict, offset, length); + } + }; + friend class Factory; + + // Accessor for raw underlying object -- only QPDF is allowed to + // call this. + class ObjAccessor + { + friend class QPDF; + private: + static PointerHolder getObject(QPDFObjectHandle& o) + { + o.dereference(); + return o.obj; + } + }; + friend class ObjAccessor; + + // Provide access to specific classes for recursive + // reverseResolved(). + class ReleaseResolver + { + friend class QPDF_Dictionary; + friend class QPDF_Array; + private: + static void releaseResolved(QPDFObjectHandle& o) + { + o.releaseResolved(); + } + }; + friend class ReleaseResolver; + + // Convenience routine: Throws if the assumption is violated. + QPDF_DLL + void assertInitialized() const; + + QPDF_DLL + void assertNull(); + QPDF_DLL + void assertBool(); + QPDF_DLL + void assertInteger(); + QPDF_DLL + void assertReal(); + QPDF_DLL + void assertName(); + QPDF_DLL + void assertString(); + QPDF_DLL + void assertArray(); + QPDF_DLL + void assertDictionary(); + QPDF_DLL + void assertStream(); + QPDF_DLL + void assertReserved(); + + QPDF_DLL + void assertIndirect(); + QPDF_DLL + void assertScalar(); + QPDF_DLL + void assertNumber(); + + QPDF_DLL + bool isPageObject(); + QPDF_DLL + bool isPagesObject(); + QPDF_DLL + void assertPageObject(); + + private: + QPDFObjectHandle(QPDF*, int objid, int generation); + QPDFObjectHandle(QPDFObject*); + + // Private object factory methods + static QPDFObjectHandle newIndirect(QPDF*, int objid, int generation); + static QPDFObjectHandle newStream( + QPDF* qpdf, int objid, int generation, + QPDFObjectHandle stream_dict, qpdf_offset_t offset, size_t length); + + void assertType(char const* type_name, bool istype) const; + void dereference(); + void makeDirectInternal(std::set& visited); + void releaseResolved(); + static QPDFObjectHandle parseInternal( + PointerHolder input, + std::string const& object_description, + QPDFTokenizer& tokenizer, bool& empty, + StringDecrypter* decrypter, QPDF* context, + bool in_array, bool in_dictionary); + + bool initialized; + + QPDF* qpdf; // 0 for direct object + int objid; // 0 for direct object + int generation; + PointerHolder obj; + bool reserved; +}; + +#endif // __QPDFOBJECTHANDLE_HH__ diff --git a/include/qpdf/QPDFTokenizer.hh b/include/qpdf/QPDFTokenizer.hh new file mode 100644 index 0000000..6b385b4 --- /dev/null +++ b/include/qpdf/QPDFTokenizer.hh @@ -0,0 +1,159 @@ +// Copyright (c) 2005-2012 Jay Berkenbilt +// +// This file is part of qpdf. This software may be distributed under +// the terms of version 2 of the Artistic License which may be found +// in the source distribution. It is provided "as is" without express +// or implied warranty. + +#ifndef __QPDFTOKENIZER_HH__ +#define __QPDFTOKENIZER_HH__ + +#include + +#include +#include +#include +#include + +class QPDFTokenizer +{ + public: + enum token_type_e + { + tt_bad, + tt_array_close, + tt_array_open, + tt_brace_close, + tt_brace_open, + tt_dict_close, + tt_dict_open, + tt_integer, + tt_name, + tt_real, + tt_string, + tt_null, + tt_bool, + tt_word, + }; + + class Token + { + public: + Token() : type(tt_bad) {} + + Token(token_type_e type, std::string const& value) : + type(type), + value(value) + { + } + + Token(token_type_e type, std::string const& value, + std::string raw_value, std::string error_message) : + type(type), + value(value), + raw_value(raw_value), + error_message(error_message) + { + } + token_type_e getType() const + { + return this->type; + } + std::string const& getValue() const + { + return this->value; + } + std::string const& getRawValue() const + { + return this->raw_value; + } + std::string const& getErrorMessage() const + { + return this->error_message; + } + bool operator==(Token const& rhs) + { + // Ignore fields other than type and value + return ((this->type != tt_bad) && + (this->type == rhs.type) && + (this->value == rhs.value)); + } + + private: + token_type_e type; + std::string value; + std::string raw_value; + std::string error_message; + }; + + QPDF_DLL + QPDFTokenizer(); + + // PDF files with version < 1.2 allowed the pound character + // anywhere in a name. Starting with version 1.2, the pound + // character was allowed only when followed by two hexadecimal + // digits. This method should be called when parsing a PDF file + // whose version is older than 1.2. + QPDF_DLL + void allowPoundAnywhereInName(); + + // Mode of operation: + + // Keep presenting characters and calling getToken() until + // getToken() returns true. When it does, be sure to check + // unread_ch and to unread ch if it is true. + + // It these are called when a token is available, an exception + // will be thrown. + QPDF_DLL + void presentCharacter(char ch); + QPDF_DLL + void presentEOF(); + + // If a token is available, return true and initialize token with + // the token, unread_char with whether or not we have to unread + // the last character, and if unread_char, ch with the character + // to unread. + QPDF_DLL + bool getToken(Token& token, bool& unread_char, char& ch); + + // This function returns true of the current character is between + // tokens (i.e., white space that is not part of a string) or is + // part of a comment. A tokenizing filter can call this to + // determine whether to output the character. + QPDF_DLL + bool betweenTokens(); + + // Read a token from an input source. Context describes the + // context in which the token is being read and is used in the + // exception thrown if there is an error. + QPDF_DLL + Token readToken(PointerHolder input, + std::string const& context); + + private: + void reset(); + void resolveLiteral(); + + // Lexer state + enum { st_top, st_in_comment, st_in_string, st_lt, st_gt, + st_literal, st_in_hexstring, st_token_ready } state; + + bool pound_special_in_name; + + // Current token accumulation + token_type_e type; + std::string val; + std::string raw_val; + std::string error_message; + bool unread_char; + char char_to_unread; + + // State for strings + int string_depth; + bool string_ignoring_newline; + char bs_num_register[4]; + bool last_char_was_bs; +}; + +#endif // __QPDFTOKENIZER_HH__ diff --git a/include/qpdf/QPDFWriter.hh b/include/qpdf/QPDFWriter.hh new file mode 100644 index 0000000..2c1c32f --- /dev/null +++ b/include/qpdf/QPDFWriter.hh @@ -0,0 +1,391 @@ +// Copyright (c) 2005-2012 Jay Berkenbilt +// +// This file is part of qpdf. This software may be distributed under +// the terms of version 2 of the Artistic License which may be found +// in the source distribution. It is provided "as is" without express +// or implied warranty. + +// This class implements a simple writer for saving QPDF objects to +// new PDF files. See comments through the header file for additional +// details. + +#ifndef __QPDFWRITER_HH__ +#define __QPDFWRITER_HH__ + +#include +#include + +#include +#include +#include +#include +#include +#include + +#include + +#include + +#include +#include +#include +#include + +class QPDF; +class QPDFObjectHandle; +class Pl_Count; + +class QPDFWriter +{ + public: + // Construct a QPDFWriter object without specifying output. You + // must call one of the output setting routines defined below. + QPDF_DLL + QPDFWriter(QPDF& pdf); + + // Create a QPDFWriter object that writes its output to a file or + // to stdout. This is equivalent to using the previous + // constructor and then calling setOutputFilename(). See + // setOutputFilename() for details. + QPDF_DLL + QPDFWriter(QPDF& pdf, char const* filename); + + // Create a QPDFWriter object that writes its output to an already + // open FILE*. This is equivalent to calling the first + // constructor and then calling setOutputFile(). See + // setOutputFile() for details. + QPDF_DLL + QPDFWriter(QPDF& pdf, char const* description, FILE* file, bool close_file); + + QPDF_DLL + ~QPDFWriter(); + + // Setting Output. Output may be set only one time. If you don't + // use the filename version of the QPDFWriter constructor, you + // must call exactly one of these methods. + + // Passing null as filename means write to stdout. QPDFWriter + // will create a zero-length output file upon construction. If + // write fails, the empty or partially written file will not be + // deleted. This is by design: sometimes the partial file may be + // useful for tracking down problems. If your application doesn't + // want the partially written file to be left behind, you should + // delete it the eventual call to write fails. + QPDF_DLL + void setOutputFilename(char const* filename); + + // Write to the given FILE*, which must be opened by the caller. + // If close_file is true, QPDFWriter will close the file. + // Otherwise, the caller must close the file. The file does not + // need to be seekable; it will be written to in a single pass. + // It must be open in binary mode. + QPDF_DLL + void setOutputFile(char const* description, FILE* file, bool close_file); + + // Indicate that QPDFWriter should create a memory buffer to + // contain the final PDF file. Obtain the memory by calling + // getBuffer(). + QPDF_DLL + void setOutputMemory(); + + // Return the buffer object containing the PDF file. If + // setOutputMemory() has been called, this method may be called + // exactly one time after write() has returned. The caller is + // responsible for deleting the buffer when done. + QPDF_DLL + Buffer* getBuffer(); + + // Setting Parameters + + // Set the value of object stream mode. In disable mode, we never + // generate any object streams. In preserve mode, we preserve + // object stream structure from the original file. In generate + // mode, we generate our own object streams. In all cases, we + // generate a conventional cross-reference table if there are no + // object streams and a cross-reference stream if there are object + // streams. The default is o_preserve. + QPDF_DLL + void setObjectStreamMode(qpdf_object_stream_e); + + // Set value of stream data mode. In uncompress mode, we attempt + // to uncompress any stream that we can. In preserve mode, we + // preserve any filtering applied to streams. In compress mode, + // if we can apply all filters and the stream is not already + // optimally compressed, recompress the stream. + QPDF_DLL + void setStreamDataMode(qpdf_stream_data_e); + + // Set value of content stream normalization. The default is + // "false". If true, we attempt to normalize newlines inside of + // content streams. Some constructs such as inline images may + // thwart our efforts. There may be some cases where this can + // damage the content stream. This flag should be used only for + // debugging and experimenting with PDF content streams. Never + // use it for production files. + QPDF_DLL + void setContentNormalization(bool); + + // Set QDF mode. QDF mode causes special "pretty printing" of + // PDF objects, adds comments for easier perusing of files. + // Resulting PDF files can be edited in a text editor and then run + // through fix-qdf to update cross reference tables and stream + // lengths. + QPDF_DLL + void setQDFMode(bool); + + // Set the minimum PDF version. If the PDF version of the input + // file (or previously set minimum version) is less than the + // version passed to this method, the PDF version of the output + // file will be set to this value. If the original PDF file's + // version or previously set minimum version is already this + // version or later, the original file's version will be used. + // QPDFWriter automatically sets the minimum version to 1.4 when + // R3 encryption parameters are used, and to 1.5 when object + // streams are used. + QPDF_DLL + void setMinimumPDFVersion(std::string const&); + + // Force the PDF version of the output file to be a given version. + // Use of this function may create PDF files that will not work + // properly with older PDF viewers. When a PDF version is set + // using this function, qpdf will use this version even if the + // file contains features that are not supported in that version + // of PDF. In other words, you should only use this function if + // you are sure the PDF file in question has no features of newer + // versions of PDF or if you are willing to create files that old + // viewers may try to open but not be able to properly interpret. + // If any encryption has been applied to the document either + // explicitly or by preserving the encryption of the source + // document, forcing the PDF version to a value too low to support + // that type of encryption will explicitly disable decryption. + // Additionally, forcing to a version below 1.5 will disable + // object streams. + QPDF_DLL + void forcePDFVersion(std::string const&); + + // Provide additional text to insert in the PDF file somewhere + // near the beginning of the file. This can be used to add + // comments to the beginning of a PDF file, for example, if those + // comments are to be consumed by some other application. No + // checks are performed to ensure that the text inserted here is + // valid PDF. If you want to insert multiline comments, you will + // need to include \n in the string yourself and start each line + // with %. An extra newline will be appended if one is not + // already present at the end of your text. + QPDF_DLL + void setExtraHeaderText(std::string const&); + + // Cause a static /ID value to be generated. Use only in test + // suites. + QPDF_DLL + void setStaticID(bool); + + // Use a fixed initialization vector for AES-CBC encryption. This + // is not secure. It should be used only in test suites for + // creating predictable encrypted output. + QPDF_DLL + void setStaticAesIV(bool); + + // Suppress inclusion of comments indicating original object IDs + // when writing QDF files. This can also be useful for testing, + // particularly when using comparison of two qdf files to + // determine whether two PDF files have identical content. + QPDF_DLL + void setSuppressOriginalObjectIDs(bool); + + // Preserve encryption. The default is true unless prefilering, + // content normalization, or qdf mode has been selected in which + // case encryption is never preserved. Encryption is also not + // preserved if we explicitly set encryption parameters. + QPDF_DLL + void setPreserveEncryption(bool); + + // Copy encryption parameters from another QPDF object. If you + // want to copy encryption from the object you are writing, call + // setPreserveEncryption(true) instead. + QPDF_DLL + void copyEncryptionParameters(QPDF&); + + // Set up for encrypted output. Disables stream prefiltering and + // content normalization. Note that setting R2 encryption + // parameters sets the PDF version to at least 1.3, setting R3 + // encryption parameters pushes the PDF version number to at least + // 1.4, and setting R4 parameters pushes the version to at least + // 1.5, or if AES is used, 1.6. + QPDF_DLL + void setR2EncryptionParameters( + char const* user_password, char const* owner_password, + bool allow_print, bool allow_modify, + bool allow_extract, bool allow_annotate); + QPDF_DLL + void setR3EncryptionParameters( + char const* user_password, char const* owner_password, + bool allow_accessibility, bool allow_extract, + qpdf_r3_print_e print, qpdf_r3_modify_e modify); + QPDF_DLL + void setR4EncryptionParameters( + char const* user_password, char const* owner_password, + bool allow_accessibility, bool allow_extract, + qpdf_r3_print_e print, qpdf_r3_modify_e modify, + bool encrypt_metadata, bool use_aes); + + // Create linearized output. Disables qdf mode, content + // normalization, and stream prefiltering. + QPDF_DLL + void setLinearization(bool); + + QPDF_DLL + void write(); + + private: + // flags used by unparseObject + static int const f_stream = 1 << 0; + static int const f_filtered = 1 << 1; + static int const f_in_ostream = 1 << 2; + + enum trailer_e { t_normal, t_lin_first, t_lin_second }; + + void init(); + int bytesNeeded(unsigned long long n); + void writeBinary(unsigned long long val, unsigned int bytes); + void writeString(std::string const& str); + void writeBuffer(PointerHolder&); + void writeStringQDF(std::string const& str); + void writeStringNoQDF(std::string const& str); + void writePad(int nspaces); + void assignCompressedObjectNumbers(int objid); + void enqueueObject(QPDFObjectHandle object); + void writeObjectStreamOffsets( + std::vector& offsets, int first_obj); + void writeObjectStream(QPDFObjectHandle object); + void writeObject(QPDFObjectHandle object, int object_stream_index = -1); + void writeTrailer(trailer_e which, int size, + bool xref_stream, qpdf_offset_t prev = 0); + void unparseObject(QPDFObjectHandle object, int level, + unsigned int flags); + void unparseObject(QPDFObjectHandle object, int level, + unsigned int flags, + // for stream dictionaries + size_t stream_length, bool compress); + void unparseChild(QPDFObjectHandle child, int level, int flags); + void initializeSpecialStreams(); + void preserveObjectStreams(); + void generateObjectStreams(); + void generateID(); + void interpretR3EncryptionParameters( + std::set& bits_to_clear, + char const* user_password, char const* owner_password, + bool allow_accessibility, bool allow_extract, + qpdf_r3_print_e print, qpdf_r3_modify_e modify); + void disableIncompatibleEncryption(int major, int minor); + void parseVersion(std::string const& version, int& major, int& minor) const; + int compareVersions(int major1, int minor1, int major2, int minor2) const; + void setEncryptionParameters( + char const* user_password, char const* owner_password, + int V, int R, int key_len, std::set& bits_to_clear); + void setEncryptionParametersInternal( + int V, int R, int key_len, long P, + std::string const& O, std::string const& U, + std::string const& id1, std::string const& user_password); + void setDataKey(int objid); + int openObject(int objid = 0); + void closeObject(int objid); + void writeStandard(); + void writeLinearized(); + void enqueuePart(std::vector& part); + void writeEncryptionDictionary(); + void writeHeader(); + void writeHintStream(int hint_id); + qpdf_offset_t writeXRefTable( + trailer_e which, int first, int last, int size); + qpdf_offset_t writeXRefTable( + trailer_e which, int first, int last, int size, + // for linearization + qpdf_offset_t prev, + bool suppress_offsets, + int hint_id, + qpdf_offset_t hint_offset, + qpdf_offset_t hint_length); + qpdf_offset_t writeXRefStream( + int objid, int max_id, qpdf_offset_t max_offset, + trailer_e which, int first, int last, int size); + qpdf_offset_t writeXRefStream( + int objid, int max_id, qpdf_offset_t max_offset, + trailer_e which, int first, int last, int size, + // for linearization + qpdf_offset_t prev, + int hint_id, + qpdf_offset_t hint_offset, + qpdf_offset_t hint_length, + bool skip_compression); + int calculateXrefStreamPadding(int xref_bytes); + + // When filtering subsections, push additional pipelines to the + // stack. When ready to switch, activate the pipeline stack. + // Pipelines passed to pushPipeline are deleted when + // clearPipelineStack is called. + Pipeline* pushPipeline(Pipeline*); + void activatePipelineStack(); + void initializePipelineStack(Pipeline *); + + // Calls finish on the current pipeline and pops the pipeline + // stack until the top of stack is a previous active top of stack, + // and restores the pipeline to that point. Deletes any pipelines + // that it pops. If the bp argument is non-null and any of the + // stack items are of type Pl_Buffer, the buffer is retrieved. + void popPipelineStack(PointerHolder* bp = 0); + + void adjustAESStreamLength(size_t& length); + void pushEncryptionFilter(); + void pushDiscardFilter(); + + QPDF& pdf; + char const* filename; + FILE* file; + bool close_file; + Pl_Buffer* buffer_pipeline; + Buffer* output_buffer; + bool normalize_content_set; + bool normalize_content; + bool stream_data_mode_set; + qpdf_stream_data_e stream_data_mode; + bool qdf_mode; + bool static_id; + bool suppress_original_object_ids; + bool direct_stream_lengths; + bool encrypted; + bool preserve_encryption; + bool linearized; + qpdf_object_stream_e object_stream_mode; + std::string encryption_key; + bool encrypt_metadata; + bool encrypt_use_aes; + std::map encryption_dictionary; + + std::string id1; // for /ID key of + std::string id2; // trailer dictionary + std::string min_pdf_version; + std::string forced_pdf_version; + std::string extra_header_text; + int encryption_dict_objid; + std::string cur_data_key; + std::list > to_delete; + Pl_Count* pipeline; + std::list object_queue; + std::map obj_renumber; + std::map xref; + std::map lengths; + int next_objid; + int cur_stream_length_id; + size_t cur_stream_length; + bool added_newline; + int max_ostream_index; + std::set normalized_streams; + std::map page_object_to_seq; + std::map contents_to_page_seq; + std::map object_to_object_stream; + std::map > object_stream_to_objects; + std::list pipeline_stack; +}; + +#endif // __QPDFWRITER_HH__ diff --git a/include/qpdf/QPDFXRefEntry.hh b/include/qpdf/QPDFXRefEntry.hh new file mode 100644 index 0000000..f27b434 --- /dev/null +++ b/include/qpdf/QPDFXRefEntry.hh @@ -0,0 +1,43 @@ +// Copyright (c) 2005-2012 Jay Berkenbilt +// +// This file is part of qpdf. This software may be distributed under +// the terms of version 2 of the Artistic License which may be found +// in the source distribution. It is provided "as is" without express +// or implied warranty. + +#ifndef __QPDFXREFENTRY_HH__ +#define __QPDFXREFENTRY_HH__ + +#include +#include + +class QPDFXRefEntry +{ + public: + // Type constants are from the PDF spec section + // "Cross-Reference Streams": + // 0 = free entry; not used + // 1 = "uncompressed"; field 1 = offset + // 2 = "compressed"; field 1 = object stream number, field 2 = index + + QPDF_DLL + QPDFXRefEntry(); + QPDF_DLL + QPDFXRefEntry(int type, qpdf_offset_t field1, int field2); + + QPDF_DLL + int getType() const; + QPDF_DLL + qpdf_offset_t getOffset() const; // only for type 1 + QPDF_DLL + int getObjStreamNumber() const; // only for type 2 + QPDF_DLL + int getObjStreamIndex() const; // only for type 2 + + private: + int type; + qpdf_offset_t field1; + int field2; +}; + +#endif // __QPDFXREFENTRY_HH__ diff --git a/include/qpdf/QTC.hh b/include/qpdf/QTC.hh new file mode 100644 index 0000000..1433742 --- /dev/null +++ b/include/qpdf/QTC.hh @@ -0,0 +1,19 @@ +// Copyright (c) 2005-2012 Jay Berkenbilt +// +// This file is part of qpdf. This software may be distributed under +// the terms of version 2 of the Artistic License which may be found +// in the source distribution. It is provided "as is" without express +// or implied warranty. + +#ifndef __QTC_HH__ +#define __QTC_HH__ + +#include + +namespace QTC +{ + QPDF_DLL + void TC(char const* const scope, char const* const ccase, int n = 0); +}; + +#endif // __QTC_HH__ diff --git a/include/qpdf/QUtil.hh b/include/qpdf/QUtil.hh new file mode 100644 index 0000000..cdeefd7 --- /dev/null +++ b/include/qpdf/QUtil.hh @@ -0,0 +1,88 @@ +// Copyright (c) 2005-2012 Jay Berkenbilt +// +// This file is part of qpdf. This software may be distributed under +// the terms of version 2 of the Artistic License which may be found +// in the source distribution. It is provided "as is" without express +// or implied warranty. + +#ifndef __QUTIL_HH__ +#define __QUTIL_HH__ + +#include +#include +#include +#include +#include +#include + +namespace QUtil +{ + // This is a collection of useful utility functions that don't + // really go anywhere else. + QPDF_DLL + std::string int_to_string(long long, int length = 0); + QPDF_DLL + std::string double_to_string(double, int decimal_places = 0); + + QPDF_DLL + long long string_to_ll(char const* str); + + // Throw std::runtime_error with a string formed by appending to + // "description: " the standard string corresponding to the + // current value of errno. + QPDF_DLL + void throw_system_error(std::string const& description); + + // The status argument is assumed to be the return value of a + // standard library call that sets errno when it fails. If status + // is -1, convert the current value of errno to a + // std::runtime_error that includes the standard error string. + // Otherwise, return status. + QPDF_DLL + int os_wrapper(std::string const& description, int status); + + // The FILE* argument is assumed to be the return of fopen. If + // null, throw std::runtime_error. Otherwise, return the FILE* + // argument. + QPDF_DLL + FILE* fopen_wrapper(std::string const&, FILE*); + + // Wrap around off_t versions of fseek and ftell if available + QPDF_DLL + int seek(FILE* stream, qpdf_offset_t offset, int whence); + QPDF_DLL + qpdf_offset_t tell(FILE* stream); + + QPDF_DLL + char* copy_string(std::string const&); + + // Set stdin, stdout to binary mode + QPDF_DLL + void binary_stdout(); + QPDF_DLL + void binary_stdin(); + // Set stdout to line buffered + QPDF_DLL + void setLineBuf(FILE*); + + + // May modify argv0 + QPDF_DLL + char* getWhoami(char* argv0); + + // Get the value of an environment variable in a portable fashion. + // Returns true iff the variable is defined. If `value' is + // non-null, initializes it with the value of the variable. + QPDF_DLL + bool get_env(std::string const& var, std::string* value = 0); + + QPDF_DLL + time_t get_current_time(); + + // Return a string containing the byte representation of the UTF-8 + // encoding for the unicode value passed in. + QPDF_DLL + std::string toUTF8(unsigned long uval); +}; + +#endif // __QUTIL_HH__ diff --git a/include/qpdf/Types.h b/include/qpdf/Types.h new file mode 100644 index 0000000..0d6b8a2 --- /dev/null +++ b/include/qpdf/Types.h @@ -0,0 +1,11 @@ +#ifndef __QPDFTYPES_H__ +#define __QPDFTYPES_H__ + +/* Provide an offset type that should be as big as off_t on just about + * any system. If your compiler doesn't support C99 (or at least the + * "long long" type), then you may have to modify this definition. + */ + +typedef long long int qpdf_offset_t; + +#endif /* __QPDFTYPES_H__ */ diff --git a/include/qpdf/qpdf-c.h b/include/qpdf/qpdf-c.h new file mode 100644 index 0000000..beba231 --- /dev/null +++ b/include/qpdf/qpdf-c.h @@ -0,0 +1,379 @@ +/* Copyright (c) 2005-2012 Jay Berkenbilt + * + * This file is part of qpdf. This software may be distributed under + * the terms of version 2 of the Artistic License which may be found + * in the source distribution. It is provided "as is" without express + * or implied warranty. + */ + +#ifndef __QPDF_C_H__ +#define __QPDF_C_H__ + +/* + * This file defines a basic "C" API for qpdf. It provides access to + * a subset of the QPDF library's capabilities to make them accessible + * to callers who can't handle calling C++ functions or working with + * C++ classes. This may be especially useful to Windows users who + * are accessing the qpdf DLL directly or to other people programming + * in non-C/C++ languages that can call C code but not C++ code. + * + * There are several things to keep in mind when using the C API. + * + * The C API is not as rich as the C++ API. For any operations + * that involve actually manipulating PDF objects, you must use + * the C++ API. The C API is primarily useful for doing basic + * transformations on PDF files similar to what you might do with + * the qpdf command-line tool. + * + * These functions store their state in a qpdf_data object. + * Individual instances of qpdf_data are not thread-safe: although + * you may access different qpdf_data objects from different + * threads, you may not access one qpdf_data simultaneously from + * multiple threads. + * + * All dynamic memory, except for that of the qpdf_data object + * itself, is managed by the library. You must create a qpdf_data + * object using qpdf_init and free it using qpdf_cleanup. + * + * Many functions return char*. In all cases, the char* values + * returned are pointers to data inside the qpdf_data object. As + * such, they are always freed by qpdf_cleanup. In most cases, + * strings returned by functions here may be invalidated by + * subsequent function calls, sometimes even to different + * functions. If you want a string to last past the next qpdf + * call or after a call to qpdf_cleanup, you should make a copy of + * it. + * + * Many functions defined here merely set parameters and therefore + * never return error conditions. Functions that may cause PDF + * files to be read or written may return error conditions. Such + * functions return an error code. If there were no errors or + * warnings, they return QPDF_SUCCESS. If there were warnings, + * the return value has the QPDF_WARNINGS bit set. If there + * errors, the QPDF_ERRORS bit is set. In other words, if there + * are both warnings and errors, then the return status will be + * QPDF_WARNINGS | QPDF_ERRORS. You may also call the + * qpdf_more_warnings and qpdf_more_errors functions to test + * whether there are unseen warning or error conditions. By + * default, warnings are written to stderr when detected, but this + * behavior can be suppressed. In all cases, errors and warnings + * may be retrieved by calling qpdf_next_warning and + * qpdf_next_error. All exceptions thrown by the C++ interface + * are caught and converted into error messages by the C + * interface. + * + * Most functions defined here have obvious counterparts that are + * methods to either QPDF or QPDFWriter. Please see comments in + * QPDF.hh and QPDFWriter.hh for details on their use. In order + * to avoid duplication of information, comments here focus + * primarily on differences between the C and C++ API. + */ + +#include +#include +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + + typedef struct _qpdf_data* qpdf_data; + typedef struct _qpdf_error* qpdf_error; + + /* Many functions return an integer error code. Codes are defined + * below. See comments at the top of the file for details. Note + * that the values below can be logically orred together. + */ + typedef int QPDF_ERROR_CODE; +# define QPDF_SUCCESS 0 +# define QPDF_WARNINGS 1 << 0 +# define QPDF_ERRORS 1 << 1 + + typedef int QPDF_BOOL; +# define QPDF_TRUE 1 +# define QPDF_FALSE 0 + + /* Returns the version of the qpdf software */ + QPDF_DLL + char const* qpdf_get_qpdf_version(); + + /* Returns dynamically allocated qpdf_data pointer; must be freed + * by calling qpdf_cleanup. + */ + QPDF_DLL + qpdf_data qpdf_init(); + + /* Pass a pointer to the qpdf_data pointer created by qpdf_init to + * clean up resources. + */ + QPDF_DLL + void qpdf_cleanup(qpdf_data* qpdf); + + /* ERROR REPORTING */ + + /* Returns 1 if there is an error condition. The error condition + * can be retrieved by a single call to qpdf_get_error. + */ + QPDF_DLL + QPDF_BOOL qpdf_has_error(qpdf_data qpdf); + + /* Returns the error condition, if any. The return value is a + * pointer to data that will become invalid after the next call to + * this function, qpdf_next_warning, or qpdf_destroy. After this + * function is called, qpdf_has_error will return QPDF_FALSE until + * the next error condition occurs. If there is no error + * condition, this function returns a null pointer. + */ + QPDF_DLL + qpdf_error qpdf_get_error(qpdf_data qpdf); + + /* Returns 1 if there are any unretrieved warnings, and zero + * otherwise. + */ + QPDF_DLL + QPDF_BOOL qpdf_more_warnings(qpdf_data qpdf); + + /* If there are any warnings, returns a pointer to the next + * warning. Otherwise returns a null pointer. + */ + QPDF_DLL + qpdf_error qpdf_next_warning(qpdf_data qpdf); + + /* Extract fields of the error. */ + + /* Use this function to get a full error message suitable for + * showing to the user. */ + QPDF_DLL + char const* qpdf_get_error_full_text(qpdf_data q, qpdf_error e); + + /* Use these functions to extract individual fields from the + * error; see QPDFExc.hh for details. */ + QPDF_DLL + enum qpdf_error_code_e qpdf_get_error_code(qpdf_data q, qpdf_error e); + QPDF_DLL + char const* qpdf_get_error_filename(qpdf_data q, qpdf_error e); + QPDF_DLL + unsigned long long qpdf_get_error_file_position(qpdf_data q, qpdf_error e); + QPDF_DLL + char const* qpdf_get_error_message_detail(qpdf_data q, qpdf_error e); + + /* By default, warnings are written to stderr. Passing true to + * this function will prevent warnings from being written to + * stderr. They will still be available by calls to + * qpdf_next_warning. + */ + QPDF_DLL + void qpdf_set_suppress_warnings(qpdf_data qpdf, QPDF_BOOL value); + + /* READ FUNCTIONS */ + + /* READ PARAMETER FUNCTIONS -- must be called before qpdf_read */ + + QPDF_DLL + void qpdf_set_ignore_xref_streams(qpdf_data qpdf, QPDF_BOOL value); + + QPDF_DLL + void qpdf_set_attempt_recovery(qpdf_data qpdf, QPDF_BOOL value); + + /* Calling qpdf_read causes processFile to be called in the C++ + * API. Basic parsing is performed, but data from the file is + * only read as needed. For files without passwords, pass a null + * pointer as the password. + */ + QPDF_DLL + QPDF_ERROR_CODE qpdf_read(qpdf_data qpdf, char const* filename, + char const* password); + + /* Calling qpdf_read_memory causes processMemoryFile to be called + * in the C++ API. Otherwise, it behaves in the same way as + * qpdf_read. The description argument will be used in place of + * the file name in any error or warning messages generated by the + * library. + */ + QPDF_DLL + QPDF_ERROR_CODE qpdf_read_memory(qpdf_data qpdf, + char const* description, + char const* buffer, + unsigned long long size, + char const* password); + + /* Read functions below must be called after qpdf_read or + * qpdf_read_memory. */ + + /* + * NOTE: Functions that return char* are returning a pointer to an + * internal buffer that will be reused for each call to a function + * that returns a char*. You must use or copy the value before + * calling any other qpdf library functions. + */ + + /* Return the version of the PDF file. See warning above about + * functions that return char*. */ + QPDF_DLL + char const* qpdf_get_pdf_version(qpdf_data qpdf); + + /* Return the user password. If the file is opened using the + * owner password, the user password may be retrieved using this + * function. If the file is opened using the user password, this + * function will return that user password. See warning above + * about functions that return char*. + */ + QPDF_DLL + char const* qpdf_get_user_password(qpdf_data qpdf); + + /* Return the string value of a key in the document's Info + * dictionary. The key parameter should include the leading + * slash, e.g. "/Author". If the key is not present or has a + * non-string value, a null pointer is returned. Otherwise, a + * pointer to an internal buffer is returned. See warning above + * about functions that return char*. + */ + QPDF_DLL + char const* qpdf_get_info_key(qpdf_data qpdf, char const* key); + + /* Set a value in the info dictionary, possibly replacing an + * existing value. The key must include the leading slash + * (e.g. "/Author"). Passing a null pointer as a value will + * remove the key from the info dictionary. Otherwise, a copy + * will be made of the string that is passed in. + */ + QPDF_DLL + void qpdf_set_info_key(qpdf_data qpdf, char const* key, char const* value); + + /* Indicate whether the input file is linearized. */ + QPDF_DLL + QPDF_BOOL qpdf_is_linearized(qpdf_data qpdf); + + /* Indicate whether the input file is encrypted. */ + QPDF_DLL + QPDF_BOOL qpdf_is_encrypted(qpdf_data qpdf); + + QPDF_DLL + QPDF_BOOL qpdf_allow_accessibility(qpdf_data qpdf); + QPDF_DLL + QPDF_BOOL qpdf_allow_extract_all(qpdf_data qpdf); + QPDF_DLL + QPDF_BOOL qpdf_allow_print_low_res(qpdf_data qpdf); + QPDF_DLL + QPDF_BOOL qpdf_allow_print_high_res(qpdf_data qpdf); + QPDF_DLL + QPDF_BOOL qpdf_allow_modify_assembly(qpdf_data qpdf); + QPDF_DLL + QPDF_BOOL qpdf_allow_modify_form(qpdf_data qpdf); + QPDF_DLL + QPDF_BOOL qpdf_allow_modify_annotation(qpdf_data qpdf); + QPDF_DLL + QPDF_BOOL qpdf_allow_modify_other(qpdf_data qpdf); + QPDF_DLL + QPDF_BOOL qpdf_allow_modify_all(qpdf_data qpdf); + + /* WRITE FUNCTIONS */ + + /* Set up for writing. No writing is actually performed until the + * call to qpdf_write(). + */ + + /* Supply the name of the file to be written and initialize the + * qpdf_data object to handle writing operations. This function + * also attempts to create the file. The PDF data is not written + * until the call to qpdf_write. qpdf_init_write may be called + * multiple times for the same qpdf_data object. When + * qpdf_init_write is called, all information from previous calls + * to functions that set write parameters (qpdf_set_linearization, + * etc.) is lost, so any write parameter functions must be called + * again. + */ + QPDF_DLL + QPDF_ERROR_CODE qpdf_init_write(qpdf_data qpdf, char const* filename); + + /* Initialize for writing but indicate that the PDF file should be + * written to memory. Call qpdf_get_buffer_length and + * qpdf_get_buffer to retrieve the resulting buffer. The memory + * containing the PDF file will be destroyed when qpdf_cleanup is + * called. + */ + QPDF_DLL + QPDF_ERROR_CODE qpdf_init_write_memory(qpdf_data qpdf); + + /* Retrieve the buffer used if the file was written to memory. + * qpdf_get_buffer returns a null pointer if data was not written + * to memory. The memory is freed when qpdf_cleanup is called or + * if a subsequent call to qpdf_init_write or + * qpdf_init_write_memory is called. */ + QPDF_DLL + size_t qpdf_get_buffer_length(qpdf_data qpdf); + QPDF_DLL + unsigned char const* qpdf_get_buffer(qpdf_data qpdf); + + QPDF_DLL + void qpdf_set_object_stream_mode(qpdf_data qpdf, + enum qpdf_object_stream_e mode); + + QPDF_DLL + void qpdf_set_stream_data_mode(qpdf_data qpdf, + enum qpdf_stream_data_e mode); + + QPDF_DLL + void qpdf_set_content_normalization(qpdf_data qpdf, QPDF_BOOL value); + + QPDF_DLL + void qpdf_set_qdf_mode(qpdf_data qpdf, QPDF_BOOL value); + + /* Never use qpdf_set_static_ID except in test suites to suppress + * generation of a random /ID. + */ + QPDF_DLL + void qpdf_set_static_ID(qpdf_data qpdf, QPDF_BOOL value); + + /* Never use qpdf_set_static_aes_IV except in test suites to + * create predictable AES encrypted output. + */ + QPDF_DLL + void qpdf_set_static_aes_IV(qpdf_data qpdf, QPDF_BOOL value); + + QPDF_DLL + void qpdf_set_suppress_original_object_IDs( + qpdf_data qpdf, QPDF_BOOL value); + + QPDF_DLL + void qpdf_set_preserve_encryption(qpdf_data qpdf, QPDF_BOOL value); + + QPDF_DLL + void qpdf_set_r2_encryption_parameters( + qpdf_data qpdf, char const* user_password, char const* owner_password, + QPDF_BOOL allow_print, QPDF_BOOL allow_modify, + QPDF_BOOL allow_extract, QPDF_BOOL allow_annotate); + + QPDF_DLL + void qpdf_set_r3_encryption_parameters( + qpdf_data qpdf, char const* user_password, char const* owner_password, + QPDF_BOOL allow_accessibility, QPDF_BOOL allow_extract, + enum qpdf_r3_print_e print, enum qpdf_r3_modify_e modify); + + QPDF_DLL + void qpdf_set_r4_encryption_parameters( + qpdf_data qpdf, char const* user_password, char const* owner_password, + QPDF_BOOL allow_accessibility, QPDF_BOOL allow_extract, + enum qpdf_r3_print_e print, enum qpdf_r3_modify_e modify, + QPDF_BOOL encrypt_metadata, QPDF_BOOL use_aes); + + QPDF_DLL + void qpdf_set_linearization(qpdf_data qpdf, QPDF_BOOL value); + + QPDF_DLL + void qpdf_set_minimum_pdf_version(qpdf_data qpdf, char const* version); + + QPDF_DLL + void qpdf_force_pdf_version(qpdf_data qpdf, char const* version); + + /* Do actual write operation. */ + QPDF_DLL + QPDF_ERROR_CODE qpdf_write(qpdf_data qpdf); + +#ifdef __cplusplus +} +#endif + + +#endif /* __QPDF_C_H__ */ diff --git a/install-sh b/install-sh new file mode 100755 index 0000000..a9244eb --- /dev/null +++ b/install-sh @@ -0,0 +1,527 @@ +#!/bin/sh +# install - install a program, script, or datafile + +scriptversion=2011-01-19.21; # UTC + +# This originates from X11R5 (mit/util/scripts/install.sh), which was +# later released in X11R6 (xc/config/util/install.sh) with the +# following copyright and license. +# +# Copyright (C) 1994 X Consortium +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- +# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# Except as contained in this notice, the name of the X Consortium shall not +# be used in advertising or otherwise to promote the sale, use or other deal- +# ings in this Software without prior written authorization from the X Consor- +# tium. +# +# +# FSF changes to this file are in the public domain. +# +# Calling this script install-sh is preferred over install.sh, to prevent +# `make' implicit rules from creating a file called install from it +# when there is no Makefile. +# +# This script is compatible with the BSD install script, but was written +# from scratch. + +nl=' +' +IFS=" "" $nl" + +# set DOITPROG to echo to test this script + +# Don't use :- since 4.3BSD and earlier shells don't like it. +doit=${DOITPROG-} +if test -z "$doit"; then + doit_exec=exec +else + doit_exec=$doit +fi + +# Put in absolute file names if you don't have them in your path; +# or use environment vars. + +chgrpprog=${CHGRPPROG-chgrp} +chmodprog=${CHMODPROG-chmod} +chownprog=${CHOWNPROG-chown} +cmpprog=${CMPPROG-cmp} +cpprog=${CPPROG-cp} +mkdirprog=${MKDIRPROG-mkdir} +mvprog=${MVPROG-mv} +rmprog=${RMPROG-rm} +stripprog=${STRIPPROG-strip} + +posix_glob='?' +initialize_posix_glob=' + test "$posix_glob" != "?" || { + if (set -f) 2>/dev/null; then + posix_glob= + else + posix_glob=: + fi + } +' + +posix_mkdir= + +# Desired mode of installed file. +mode=0755 + +chgrpcmd= +chmodcmd=$chmodprog +chowncmd= +mvcmd=$mvprog +rmcmd="$rmprog -f" +stripcmd= + +src= +dst= +dir_arg= +dst_arg= + +copy_on_change=false +no_target_directory= + +usage="\ +Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE + or: $0 [OPTION]... SRCFILES... DIRECTORY + or: $0 [OPTION]... -t DIRECTORY SRCFILES... + or: $0 [OPTION]... -d DIRECTORIES... + +In the 1st form, copy SRCFILE to DSTFILE. +In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. +In the 4th, create DIRECTORIES. + +Options: + --help display this help and exit. + --version display version info and exit. + + -c (ignored) + -C install only if different (preserve the last data modification time) + -d create directories instead of installing files. + -g GROUP $chgrpprog installed files to GROUP. + -m MODE $chmodprog installed files to MODE. + -o USER $chownprog installed files to USER. + -s $stripprog installed files. + -t DIRECTORY install into DIRECTORY. + -T report an error if DSTFILE is a directory. + +Environment variables override the default commands: + CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG + RMPROG STRIPPROG +" + +while test $# -ne 0; do + case $1 in + -c) ;; + + -C) copy_on_change=true;; + + -d) dir_arg=true;; + + -g) chgrpcmd="$chgrpprog $2" + shift;; + + --help) echo "$usage"; exit $?;; + + -m) mode=$2 + case $mode in + *' '* | *' '* | *' +'* | *'*'* | *'?'* | *'['*) + echo "$0: invalid mode: $mode" >&2 + exit 1;; + esac + shift;; + + -o) chowncmd="$chownprog $2" + shift;; + + -s) stripcmd=$stripprog;; + + -t) dst_arg=$2 + # Protect names problematic for `test' and other utilities. + case $dst_arg in + -* | [=\(\)!]) dst_arg=./$dst_arg;; + esac + shift;; + + -T) no_target_directory=true;; + + --version) echo "$0 $scriptversion"; exit $?;; + + --) shift + break;; + + -*) echo "$0: invalid option: $1" >&2 + exit 1;; + + *) break;; + esac + shift +done + +if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then + # When -d is used, all remaining arguments are directories to create. + # When -t is used, the destination is already specified. + # Otherwise, the last argument is the destination. Remove it from $@. + for arg + do + if test -n "$dst_arg"; then + # $@ is not empty: it contains at least $arg. + set fnord "$@" "$dst_arg" + shift # fnord + fi + shift # arg + dst_arg=$arg + # Protect names problematic for `test' and other utilities. + case $dst_arg in + -* | [=\(\)!]) dst_arg=./$dst_arg;; + esac + done +fi + +if test $# -eq 0; then + if test -z "$dir_arg"; then + echo "$0: no input file specified." >&2 + exit 1 + fi + # It's OK to call `install-sh -d' without argument. + # This can happen when creating conditional directories. + exit 0 +fi + +if test -z "$dir_arg"; then + do_exit='(exit $ret); exit $ret' + trap "ret=129; $do_exit" 1 + trap "ret=130; $do_exit" 2 + trap "ret=141; $do_exit" 13 + trap "ret=143; $do_exit" 15 + + # Set umask so as not to create temps with too-generous modes. + # However, 'strip' requires both read and write access to temps. + case $mode in + # Optimize common cases. + *644) cp_umask=133;; + *755) cp_umask=22;; + + *[0-7]) + if test -z "$stripcmd"; then + u_plus_rw= + else + u_plus_rw='% 200' + fi + cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; + *) + if test -z "$stripcmd"; then + u_plus_rw= + else + u_plus_rw=,u+rw + fi + cp_umask=$mode$u_plus_rw;; + esac +fi + +for src +do + # Protect names problematic for `test' and other utilities. + case $src in + -* | [=\(\)!]) src=./$src;; + esac + + if test -n "$dir_arg"; then + dst=$src + dstdir=$dst + test -d "$dstdir" + dstdir_status=$? + else + + # Waiting for this to be detected by the "$cpprog $src $dsttmp" command + # might cause directories to be created, which would be especially bad + # if $src (and thus $dsttmp) contains '*'. + if test ! -f "$src" && test ! -d "$src"; then + echo "$0: $src does not exist." >&2 + exit 1 + fi + + if test -z "$dst_arg"; then + echo "$0: no destination specified." >&2 + exit 1 + fi + dst=$dst_arg + + # If destination is a directory, append the input filename; won't work + # if double slashes aren't ignored. + if test -d "$dst"; then + if test -n "$no_target_directory"; then + echo "$0: $dst_arg: Is a directory" >&2 + exit 1 + fi + dstdir=$dst + dst=$dstdir/`basename "$src"` + dstdir_status=0 + else + # Prefer dirname, but fall back on a substitute if dirname fails. + dstdir=` + (dirname "$dst") 2>/dev/null || + expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$dst" : 'X\(//\)[^/]' \| \ + X"$dst" : 'X\(//\)$' \| \ + X"$dst" : 'X\(/\)' \| . 2>/dev/null || + echo X"$dst" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q' + ` + + test -d "$dstdir" + dstdir_status=$? + fi + fi + + obsolete_mkdir_used=false + + if test $dstdir_status != 0; then + case $posix_mkdir in + '') + # Create intermediate dirs using mode 755 as modified by the umask. + # This is like FreeBSD 'install' as of 1997-10-28. + umask=`umask` + case $stripcmd.$umask in + # Optimize common cases. + *[2367][2367]) mkdir_umask=$umask;; + .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; + + *[0-7]) + mkdir_umask=`expr $umask + 22 \ + - $umask % 100 % 40 + $umask % 20 \ + - $umask % 10 % 4 + $umask % 2 + `;; + *) mkdir_umask=$umask,go-w;; + esac + + # With -d, create the new directory with the user-specified mode. + # Otherwise, rely on $mkdir_umask. + if test -n "$dir_arg"; then + mkdir_mode=-m$mode + else + mkdir_mode= + fi + + posix_mkdir=false + case $umask in + *[123567][0-7][0-7]) + # POSIX mkdir -p sets u+wx bits regardless of umask, which + # is incompatible with FreeBSD 'install' when (umask & 300) != 0. + ;; + *) + tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ + trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 + + if (umask $mkdir_umask && + exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 + then + if test -z "$dir_arg" || { + # Check for POSIX incompatibilities with -m. + # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or + # other-writeable bit of parent directory when it shouldn't. + # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. + ls_ld_tmpdir=`ls -ld "$tmpdir"` + case $ls_ld_tmpdir in + d????-?r-*) different_mode=700;; + d????-?--*) different_mode=755;; + *) false;; + esac && + $mkdirprog -m$different_mode -p -- "$tmpdir" && { + ls_ld_tmpdir_1=`ls -ld "$tmpdir"` + test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" + } + } + then posix_mkdir=: + fi + rmdir "$tmpdir/d" "$tmpdir" + else + # Remove any dirs left behind by ancient mkdir implementations. + rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null + fi + trap '' 0;; + esac;; + esac + + if + $posix_mkdir && ( + umask $mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" + ) + then : + else + + # The umask is ridiculous, or mkdir does not conform to POSIX, + # or it failed possibly due to a race condition. Create the + # directory the slow way, step by step, checking for races as we go. + + case $dstdir in + /*) prefix='/';; + [-=\(\)!]*) prefix='./';; + *) prefix='';; + esac + + eval "$initialize_posix_glob" + + oIFS=$IFS + IFS=/ + $posix_glob set -f + set fnord $dstdir + shift + $posix_glob set +f + IFS=$oIFS + + prefixes= + + for d + do + test X"$d" = X && continue + + prefix=$prefix$d + if test -d "$prefix"; then + prefixes= + else + if $posix_mkdir; then + (umask=$mkdir_umask && + $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break + # Don't fail if two instances are running concurrently. + test -d "$prefix" || exit 1 + else + case $prefix in + *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; + *) qprefix=$prefix;; + esac + prefixes="$prefixes '$qprefix'" + fi + fi + prefix=$prefix/ + done + + if test -n "$prefixes"; then + # Don't fail if two instances are running concurrently. + (umask $mkdir_umask && + eval "\$doit_exec \$mkdirprog $prefixes") || + test -d "$dstdir" || exit 1 + obsolete_mkdir_used=true + fi + fi + fi + + if test -n "$dir_arg"; then + { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && + { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && + { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || + test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 + else + + # Make a couple of temp file names in the proper directory. + dsttmp=$dstdir/_inst.$$_ + rmtmp=$dstdir/_rm.$$_ + + # Trap to clean up those temp files at exit. + trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 + + # Copy the file name to the temp name. + (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && + + # and set any options; do chmod last to preserve setuid bits. + # + # If any of these fail, we abort the whole thing. If we want to + # ignore errors from any of these, just make sure not to ignore + # errors from the above "$doit $cpprog $src $dsttmp" command. + # + { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && + { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && + { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && + { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && + + # If -C, don't bother to copy if it wouldn't change the file. + if $copy_on_change && + old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && + new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && + + eval "$initialize_posix_glob" && + $posix_glob set -f && + set X $old && old=:$2:$4:$5:$6 && + set X $new && new=:$2:$4:$5:$6 && + $posix_glob set +f && + + test "$old" = "$new" && + $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 + then + rm -f "$dsttmp" + else + # Rename the file to the real destination. + $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || + + # The rename failed, perhaps because mv can't rename something else + # to itself, or perhaps because mv is so ancient that it does not + # support -f. + { + # Now remove or move aside any old file at destination location. + # We try this two ways since rm can't unlink itself on some + # systems and the destination file might be busy for other + # reasons. In this case, the final cleanup might fail but the new + # file should still install successfully. + { + test ! -f "$dst" || + $doit $rmcmd -f "$dst" 2>/dev/null || + { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && + { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } + } || + { echo "$0: cannot unlink or rename $dst" >&2 + (exit 1); exit 1 + } + } && + + # Now rename the file to the real destination. + $doit $mvcmd "$dsttmp" "$dst" + } + fi || exit 1 + + trap '' 0 + fi +done + +# Local variables: +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/ispell-words b/ispell-words new file mode 100644 index 0000000..51f70a1 --- /dev/null +++ b/ispell-words @@ -0,0 +1,1207 @@ +aaa +ab +abc +ABCD +abcde +abcdefABCDEF +abcdefghijklmnopqrstuvwxyz +ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghi +abÏ +abs +abuild +ac +accessor +aclocal +AcroForm +acroread +activatePipelineStack +ActiveState +acyclic +addPage +addPageAt +addPageContents +addToTable +adjustAESStreamLength +admon +Adobeâ +aes +AESv +ageneration +AHx +AIX +alloc +allocator +allowAccessibility +allowExtractAll +allowModifyAll +allowModifyAnnotation +allowModifyAssembly +allowModifyForm +allowModifyOther +allowPoundAnywhereInName +allowPrintHighRes +allowPrintLowRes +antivirus +aobjid +apexcovantage +API +APIs +appendItem +appendString +arg +argc +argv +arko +arko's +ArtBox +ascii +asciiHex +ASCIIHexDecode +ASCIIHexDecoder +assertArray +assertBool +assertDictionary +assertIndirect +assertInitialized +assertInteger +assertName +assertNull +assertNumber +assertPageObject +assertReal +assertReserved +assertScalar +assertStream +assertString +assertType +assignCompressedObjectNumbers +atof +atoi +AuthEvent +autobuilder +autoconf +autogen +autoheader +autolabel +automake +autotools +backref +backreference +backrefs +badLength +BADMAGIC +BADOPTION +BaseFont +basename +Berkenbilt +betweenTokens +binmode +BitsPerComponent +bitstream +BitStream +BitWriter +BleedBox +boldseq +bookinfo +bool +bp +bs +BT +buf +BufferInputSource +buflen +bufpl +bufsize +BUGREPORT +buildrules +bw +bytesNeeded +calculateHOutline +calculateHPageOffset +calculateHSharedObject +calculateLinearizationData +calculateXrefStreamPadding +callHello +CAPTURECOUNT +cbc +cc +ccase +CCF +CCITTFaxDecode +cd +cdict +ce +cerr +cf +CFM +ch +ChangeLog +Checkboxes +checkDataChecksum +checkError +checkFileChecksum +checkHOutlines +checkHPageOffset +checkHSharedObject +checkLinearization +checkLinearizationInternal +checkPageContents +checkUnread +CHGeneric +cho +CHPageOffset +CHPageOffsetEntry +CHSharedObject +CHSharedObjectEntry +CHSomething +ciphertext +cl +classname +clearPipelineStack +cleartext +closeObject +cmd +codepoint +ColorSpace +com +compareVersions +compatbility +concat +Cond +config +const +contrib +CopiedStreamDataProvider +copyEncryptionParameters +copyForeign +copyForeignObject +cout +CoVantage +cp +cph +cphe +cplusplus +CPPFLAGS +cr +createPageContents +createWhat +CreationDate +CRNL +CropBox +CryptFilterDecodeParms +cso +csoe +css +cstr +cstring +ctest +ctype +cygwin +daae +DCT +DCTDecode +ddd +de +debian +declspec +DecodeParms +decodeRow +decodeStreams +decrypt +decrypted +decrypter +decrypting +decryptStream +decryptString +def +deflateEnd +deflateInit +defq +delphi +dereference +dereferenced +dest +DESTDIR +detecet +DeviceGray +DeviceRGB +dict +diff +diffs +diffutils +DIR +dirname +disableCBC +disableIncompatibleEncryption +dist +distclean +dlfcn +DLL +DLL's +dllexport +dlls +DLLs +docbook +DOCBOOKX +docdir +DocOpen +DOCTYPE +doubleBoxSize +DTD +dtdvalid +dumpHGeneric +dumpHPageOffset +dumpHSharedObject +dumpInfoDict +dumpLinearizationDataInternal +dwHighDateTime +dwLowDateTime +DWORD +earlychange +EarlyChange +EF +EFF +efgh +EI +elif +elt +EmbeddedFiles +emptyPDF +en +encodeDataIncrementally +encodeFile +encodeRow +encodeString +EncryptionData +EncryptionParameters +EncryptMetadata +endian +endif +endl +endobj +endpos +endstream +enqueue +enqueueing +enqueueObject +enqueuePart +enqueues +enqueuing +enum +env +envar +eod +eof +eol +epub +eraseItem +Erdelsky's +errno +erroffset +errptr +esize +exc +exe +exp +extern +fb +fBqpdf +fclose +fcntl +fd +ferror +FF +ffff +fflush +fghij +fi +fI +fIinfilename +fileinfo +FileInputSource +fileno +filenow +filep +FILETIME +filetrailer +filterCompressedObjects +findAndSkipNextEOL +findPage +fIoptions +fIoutfilename +firstname +firstterm +fl +flate +FlateDecode +flattenPagesTree +flattenScalarReferences +fn +fname +fo +fopen +forcePDFVersion +fprintf +fR +fread +fseek +fseeki +fseeko +ftell +ftelli +ftello +fullinfo +fullpad +func +fwrite +GajiÄ +gcc +gen +generateHintStream +generateID +generateObjectStreams +genok +getAllPages +getAllPagesInternal +getArrayAsVector +getArrayItem +getArrayNItems +getAsArray +getAsMap +getAsVector +getBits +getBoolValue +getBuffer +getCompressibleObjects +getCount +getDataChecksum +getDict +getDictAsMap +getenv +GetEnvironmentVariable +getErrorCode +getErrorMessage +getFileChecksum +getFilename +getFilePosition +getFirstChar +getGeneration +getHexDigest +getIntValue +getItem +getKey +getKeyForObject +getKeys +getLastChar +getLastOffset +getLength +getLinearizationOffset +getLinearizedParts +getMatch +getMessageDetail +getName +getNext +getNItems +getNumericValue +getObject +getObjectByID +getObjectID +getObjectStreamData +getObjStreamIndex +getObjStreamNumber +getOffset +getOffsetLength +getOwningQPDF +getPaddedUserPassword +getPageContents +getPageImages +getPDFVersion +getPointer +getRawStreamData +getRawValue +getRealValue +getRefcount +getRoot +getSize +getStreamData +getStringValue +GetSystemTime +getToken +getTrailer +getTrimmedUserPassword +getTrimmedUserPassword's +getType +GETU +getUncompressedObject +getUserPassword +getUTF +getVal +getValue +getWarnings +getWhoami +GG +ghostscript +GhostScript +github +glerbl +glibc +gm +grayscale +gt +GUIs +gz +gzip +HAGOOGAMAGOOGLE +handleCode +handleData +hasKey +hb +hbp +Hdict +Helvetica +hexkey +hexkeylen +hexstring +hexstrings +HGeneric +hh +HighPart +hlen +Hoffmann +HOi +HPageOffset +HPageOffsetEntry +href +HS +HSharedObject +HSharedObjectEntry +HSi +HSomething +HSomethingEntry +htm +html +http +https +ic +icc +iconv +IDs +idx +ifdef +ifeq +iff +ifndef +Im +ImageC +ImageChecker +ImageInverter +ImageMask +ImageProvider +inbuf +INDOC +indx +inf +infile +infilename +inflateEnd +inflateInit +inflateReset +init +initializeEncryption +initializePipelineStack +initializeSpecialStreams +initializeVector +inline +inode +inputLen +InputSource +insertItem +insertPage +insertPageobjToPage +insertXrefEntry +inst +int +interpretCF +interpretR +ints +inttypes +inv +inverter +io +IOLBF +iostream +isArray +isBool +isDictionary +isdigit +isEncrypted +isIndirect +isInitialized +isInteger +isLinearized +isName +isNull +isNumber +iso +isOrHasName +isPageObject +isPagesObject +ispell +isReal +isReserved +isScalar +isspace +isStream +isString +istype +italicseq +itemizedlist +iter +ith +Jian +jklmnopqrstuvwxyz +keybits +keylen +KEYLENGTH +LARGEFILE +lastnum +lastreleased +latin +lbuf +lc +ld +LDFLAGS +ldquo +len +lengthNextN +Lexer +lhs +libgcc +libqpdf +libs +libtests +libtiff +libtool +libtool's +libtoolize +libtools +libz +lin +lindict +linearization +linearize +linearized +linearizing +linefeeds +linkend +linkey +linp +LinParameters +linux +listitem +ll +lld +lookup +lossy +LowPart +lpcre +lqpdf +lsb +lt +ltmain +lu +lval +lx +lz +lzw +LZWDecode +LZWDecoder +m'qpdf +makeDirect +makeDirectInternal +Makefile +makeIndirectObject +malloc +manualFinish +maxEnd +maxval +md +mdash +MDd +mediabox +MediaBox +MEM +Memcheck +memchr +memcmp +memcpy +memmove +memset +merchantability +metadata +min +mingw +MinGW +MINGW's +mins +misc +MixColumn +mk +mkinstalldirs +monoseq +MSC +msg +msvc +MSVC's +msys +multibyte +multithreaded +Mutator +mutators +mv +nbackrefs +nbits +nbsp +nbytes +nch +ndash +nendobj +nendstream +newArray +newBool +NewDict +newDictionary +newIndirect +newInteger +newName +newNull +newpage +newpdf +newReal +newReserved +newStream +newString +nfirst +nitems +nl +nmatches +nMatches +NoBackref +nobjects +NOMATCH +NOMEMORY +nonprintable +noout +normalizeName +normalizer +npages +npos +nrounds +nshared +nspaces +nstream +nstripes +ntotal +NUL +num +numrange +nval +nwalsh +obj +ObjAccessor +ObjCache +ObjCopier +OBJDIR +ObjectHolder +ObjGen +ObjGens +objGenToIndirect +objid +objidok +objok +ObjStm +ObjUser +objusers +oc +og +ogs +oiter +okey +ol +olist +omap +op +OpenAction +openObject +opensource +ord +org +orig +orred +os +ostream +ostringstream +OtherPage +ou +ous +outbuf +OUTDOC +outfile +outfilename +outputLengthNextN +ovecsize +ovector +padLen +Paeth +pagemode +PageMode +pageno +pageobj +PageSpec +para +param +parms +parseInternal +parseVersion +partLen +pathsep +Pavlyuk +pb +pbytes +pcre +pcreapi +pdf +PDFâ +pdfDumpInfoDict +PDFS +pdlin +pe +perl +ph +phe +php +pipeStreamData +pipeStringAndFinish +Pkey +PKI +pl +plaintext +png +PNGFilter +pngify +PointerHolder +popPipelineStack +pos +POSIX +PP +pre +precompiled +prefilering +prefiltering +presentCharacter +presentEOF +preserveObjectStreams +prev +printability +printf +processChar +processFile +processMemoryFile +processRow +processXRefStream +procset +ProcSet +procsets +programlisting +provideStreamData +PSâ +pt +pthread +ptr +pushDiscardFilter +pushEncryptionFilter +pushInheritedAttributesToPage +pushInheritedAttributesToPageInternal +pushOutlinesToPart +pushPipeline +PUTU +qarray +QArray +qdf +QDFObject +QDFWriter +qdict +QDict +QEXC +qnumbers +QNumbers +qpdf +qpdf's +QPDF's +QPDFCONSTANTS +QPDFExc +QPDFObject +QPDFObjectHandle +QPDFObjectTypeAccessor +QPDFPageData +qpdfs +QPDFStream +QPDFTokenizer +QPDFTYPES +QPDFVersion +QPDFWriter +QPDFXRefEntry +qqqcqqq +qstream +QStream +QStreams +qstrings +QStrings +QTC +qtest +QTest +QuadPart +QUtil +qwert +rand +rb +rbegin +rc +rcon +RDONLY +rdquo +readHGeneric +readHintStream +readHPageOffset +readHSharedObject +readLine +readLinearizationData +README +readObject +readObjectAtOffset +readToken +reattached +recompress +recompressing +recomputation +recoverStreamLength +refcount +refpage +refpos +regexp +registerForeignStream +releaseResolved +ReleaseResolver +remotesensing +removeKey +removePage +repl +replaceDict +replaceFilterData +replaceForeignIndirectObjects +replaceKey +replaceObject +replaceOrRemoveKey +replaceReserved +replaceStreamData +reserveObjects +resolveObjectsInStream +retargeted +retested +reverseResolved +rf +rfont +rhs +rijndael +rijndaelDecrypt +rijndaelEncrypt +rijndaelSetupDecrypt +rijndaelSetupEncrypt +rk +Rkey +RKLENGTH +RL +rm +roundoff +RSA +rstream +RStream +RunLengthDecode +runtest +sAlT +se +sed +seekable +sendNextCode +sep +seq +serif +setArrayFromVector +setArrayItem +setAttemptRecovery +setContentNormalization +setDataKey +setEncryptionParameters +setEncryptionParametersInternal +setFile +setFilename +setFromVector +setIgnoreXRefStreams +setItem +setLastObjectDescription +setLastOffset +setLinearization +setLineBuf +setMinimumPDFVersion +setmode +setObjectStreamMode +setObjGen +setOutputFile +setOutputFilename +setOutputMemory +setOutputStreams +setPreserveEncryption +setQDFMode +setR +setStaticAesIV +setStaticID +setStreamDataMode +setSuppressOriginalObjectIDs +setSuppressWarnings +setTrailer +setvbuf +shallowCopy +showLinearizationData +showXRefTable +sizeof +skipToNextByte +soe +sourceforge +SourceForge +sprintf +srand +srandom +src +sstream +startoffset +startxref +stat +std +STDC +StdCF +stderr +stdexcept +stdin +stdint +StdioFile +stdlib +stdout +STL +StmF +str +strchr +strcmp +strcpy +StreamDataProvider +strerror +StrF +StringDecrypter +stripesize +strlen +strncmp +stronghorse +strrchr +strstr +strtoi +strtol +strtoll +struct +stylesheet +stylesheets +subclasses +SubFilter +SubFilters +Subramanyam +substr +substring +Subtype +supp +suppressions +swapObjects +swversion +Symlink +sys +sysnow +SYSTEMTIME +SystemTimeToFileTime +TARNAME +tbuf +tc +Td +Te +TESTSUITE +Tf +tgen +th +Tj +tmp +tnum +Tobias +tobj +tobjid +TODO +toffset +tokenized +tokenizer +tokenizing +toolchain +Toolchains +toupper +toUTF +TrimBox +trimTrailerForWrite +tt +txt +uc +udata +uinow +uint +uiter +UL +ULARGE +ulink +uLong +ULONGLONG +uncompresesd +uncompress +uncompressing +undef +unencrypted +unfilterable +ungetc +unicode +uninstalled +unistd +unlink +unlinked +unparse +unparseChild +unparseObject +unparseResolved +unreadCh +unreferenced +unresolvable +unretrieved +upass +updateAllPagesCache +updateObjectMaps +updateObjectMapsInternal +updatePagesCache +url +UseOutlines +useStaticIV +USLetter +usr +utf +Util +utils +uval +val +valgrind +valstr +var +variablelist +varlistentry +varname +vc +vec +vecs +VER +viewable +ViewerPreferences +Vitaliy +Vkey +vlen +voidpf +vvv +wb +werror +whoami +WinAnsiEncoding +writeBinary +writeBits +writeBuffer +writeEncryptionDictionary +writeHeader +writeHGeneric +writeHintStream +writeHPageOffset +writeHSharedObject +writeLinearized +writeNext +writeObject +writeObjectStream +writeObjectStreamOffsets +writePad +writeStandard +writeString +writeStringNoQDF +writeStringQDF +writeToken +writeTrailer +writeXRefStream +writeXRefTable +www +wxWindows +xA +xa +xABUL +xbebfbc +xbf +xc +xD +xDC +xeaa +xefcdab +xF +xf +xFC +xfcefa +xfde +xfe +xff +xffeff +xfffa +xfffe +xgen +xhtml +xml +XMLLINT +xmlns +xobj +xobject +XObject +xor +xpacket +xpdf +XRef +xref +XRefStm +xrefStream +xrefTable +xsl +XSLTPROC +XXX +yn +yuiop +yyyymmdd +z's +zalloc +zdata +Zeroize +zeroizing +zfree +zlib +zstream +zzzzz +zzzzzz diff --git a/libqpdf.map b/libqpdf.map new file mode 100644 index 0000000..857f56c --- /dev/null +++ b/libqpdf.map @@ -0,0 +1,4 @@ +LIBQPDF_8 { + global: + *; +}; diff --git a/libqpdf.pc.in b/libqpdf.pc.in new file mode 100644 index 0000000..c765900 --- /dev/null +++ b/libqpdf.pc.in @@ -0,0 +1,10 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: libqpdf +Description: PDF transformation library +Version: @PACKAGE_VERSION@ +Libs: -L${libdir} -lqpdf +Cflags: -I${includedir} diff --git a/libqpdf/BitStream.cc b/libqpdf/BitStream.cc new file mode 100644 index 0000000..eb511f7 --- /dev/null +++ b/libqpdf/BitStream.cc @@ -0,0 +1,44 @@ +#include + +// See comments in bits.cc +#define BITS_READ 1 +#include "bits.icc" + +BitStream::BitStream(unsigned char const* p, int nbytes) : + start(p), + nbytes(nbytes) +{ + reset(); +} + +void +BitStream::reset() +{ + p = start; + bit_offset = 7; + bits_available = 8 * nbytes; +} + +unsigned long long +BitStream::getBits(int nbits) +{ + return read_bits(this->p, this->bit_offset, + this->bits_available, nbits); +} + +void +BitStream::skipToNextByte() +{ + if (bit_offset != 7) + { + unsigned int bits_to_skip = bit_offset + 1; + if (bits_available < bits_to_skip) + { + throw std::logic_error( + "INTERNAL ERROR: overflow skipping to next byte in bitstream"); + } + bit_offset = 7; + ++p; + bits_available -= bits_to_skip; + } +} diff --git a/libqpdf/BitWriter.cc b/libqpdf/BitWriter.cc new file mode 100644 index 0000000..4fb375c --- /dev/null +++ b/libqpdf/BitWriter.cc @@ -0,0 +1,28 @@ +#include + +// See comments in bits.cc +#define BITS_WRITE 1 +#include "bits.icc" + +BitWriter::BitWriter(Pipeline* pl) : + pl(pl), + ch(0), + bit_offset(7) +{ +} + +void +BitWriter::writeBits(unsigned long long val, unsigned int bits) +{ + write_bits(this->ch, this->bit_offset, val, bits, this->pl); +} + +void +BitWriter::flush() +{ + if (bit_offset < 7) + { + int bits_to_write = bit_offset + 1; + write_bits(this->ch, this->bit_offset, 0, bits_to_write, this->pl); + } +} diff --git a/libqpdf/Buffer.cc b/libqpdf/Buffer.cc new file mode 100644 index 0000000..94e69a5 --- /dev/null +++ b/libqpdf/Buffer.cc @@ -0,0 +1,94 @@ +#include + +#include + +Buffer::Buffer() +{ + init(0, 0, true); +} + +Buffer::Buffer(size_t size) +{ + init(size, 0, true); +} + +Buffer::Buffer(unsigned char* buf, size_t size) +{ + init(size, buf, false); +} + +Buffer::Buffer(Buffer const& rhs) +{ + init(0, 0, true); + copy(rhs); +} + +Buffer& +Buffer::operator=(Buffer const& rhs) +{ + copy(rhs); + return *this; +} + +Buffer::~Buffer() +{ + destroy(); +} + +void +Buffer::init(size_t size, unsigned char* buf, bool own_memory) +{ + this->own_memory = own_memory; + this->size = size; + if (own_memory) + { + this->buf = (size ? new unsigned char[size] : 0); + } + else + { + this->buf = buf; + } +} + +void +Buffer::copy(Buffer const& rhs) +{ + if (this != &rhs) + { + this->destroy(); + this->init(rhs.size, 0, true); + if (this->size) + { + memcpy(this->buf, rhs.buf, this->size); + } + } +} + +void +Buffer::destroy() +{ + if (this->own_memory) + { + delete [] this->buf; + } + this->size = 0; + this->buf = 0; +} + +size_t +Buffer::getSize() const +{ + return this->size; +} + +unsigned char const* +Buffer::getBuffer() const +{ + return this->buf; +} + +unsigned char* +Buffer::getBuffer() +{ + return this->buf; +} diff --git a/libqpdf/BufferInputSource.cc b/libqpdf/BufferInputSource.cc new file mode 100644 index 0000000..0343995 --- /dev/null +++ b/libqpdf/BufferInputSource.cc @@ -0,0 +1,153 @@ +#include +#include +#include + +BufferInputSource::BufferInputSource(std::string const& description, + Buffer* buf, bool own_memory) : + own_memory(own_memory), + description(description), + buf(buf), + cur_offset(0) +{ +} + +BufferInputSource::BufferInputSource(std::string const& description, + std::string const& contents) : + own_memory(true), + description(description), + buf(0), + cur_offset(0) +{ + this->buf = new Buffer(contents.length()); + unsigned char* bp = buf->getBuffer(); + memcpy(bp, (char*)contents.c_str(), contents.length()); +} + +BufferInputSource::~BufferInputSource() +{ + if (own_memory) + { + delete this->buf; + } +} + +qpdf_offset_t +BufferInputSource::findAndSkipNextEOL() +{ + if (this->cur_offset < 0) + { + throw std::logic_error("INTERNAL ERROR: BufferInputSource offset < 0"); + } + qpdf_offset_t end_pos = (qpdf_offset_t) this->buf->getSize(); + if (this->cur_offset >= end_pos) + { + this->last_offset = end_pos; + this->cur_offset = end_pos; + return end_pos; + } + + qpdf_offset_t result = 0; + size_t len = (size_t)(end_pos - this->cur_offset); + unsigned char const* buffer = this->buf->getBuffer(); + + void* start = (void*)(buffer + this->cur_offset); + unsigned char* p1 = (unsigned char*)memchr(start, '\r', len); + unsigned char* p2 = (unsigned char*)memchr(start, '\n', len); + unsigned char* p = (p1 && p2) ? std::min(p1, p2) : p1 ? p1 : p2; + if (p) + { + result = p - buffer; + this->cur_offset = result + 1; + ++p; + while ((this->cur_offset < end_pos) && + ((*p == '\r') || (*p == '\n'))) + { + ++p; + ++this->cur_offset; + } + } + else + { + this->cur_offset = end_pos; + result = end_pos; + } + return result; +} + +std::string const& +BufferInputSource::getName() const +{ + return this->description; +} + +qpdf_offset_t +BufferInputSource::tell() +{ + return this->cur_offset; +} + +void +BufferInputSource::seek(qpdf_offset_t offset, int whence) +{ + switch (whence) + { + case SEEK_SET: + this->cur_offset = offset; + break; + + case SEEK_END: + this->cur_offset = (qpdf_offset_t)this->buf->getSize() + offset; + break; + + case SEEK_CUR: + this->cur_offset += offset; + break; + + default: + throw std::logic_error( + "INTERNAL ERROR: invalid argument to BufferInputSource::seek"); + break; + } + + if (this->cur_offset < 0) + { + throw std::runtime_error( + this->description + ": seek before beginning of buffer"); + } +} + +void +BufferInputSource::rewind() +{ + this->cur_offset = 0; +} + +size_t +BufferInputSource::read(char* buffer, size_t length) +{ + if (this->cur_offset < 0) + { + throw std::logic_error("INTERNAL ERROR: BufferInputSource offset < 0"); + } + qpdf_offset_t end_pos = (qpdf_offset_t) this->buf->getSize(); + if (this->cur_offset >= end_pos) + { + this->last_offset = end_pos; + return 0; + } + + this->last_offset = this->cur_offset; + size_t len = std::min((size_t)(end_pos - this->cur_offset), length); + memcpy(buffer, buf->getBuffer() + this->cur_offset, len); + this->cur_offset += len; + return len; +} + +void +BufferInputSource::unreadCh(char ch) +{ + if (this->cur_offset > 0) + { + --this->cur_offset; + } +} diff --git a/libqpdf/FileInputSource.cc b/libqpdf/FileInputSource.cc new file mode 100644 index 0000000..b1f7b5d --- /dev/null +++ b/libqpdf/FileInputSource.cc @@ -0,0 +1,141 @@ +#include +#include +#include +#include + +FileInputSource::FileInputSource() : + close_file(false), + file(0) +{ +} + +void +FileInputSource::setFilename(char const* filename) +{ + destroy(); + this->filename = filename; + this->close_file = true; + this->file = QUtil::fopen_wrapper(std::string("open ") + this->filename, + fopen(this->filename.c_str(), "rb")); +} + +void +FileInputSource::setFile( + char const* description, FILE* filep, bool close_file) +{ + destroy(); + this->filename = description; + this->close_file = close_file; + this->file = filep; + this->seek(0, SEEK_SET); +} + +FileInputSource::~FileInputSource() +{ + destroy(); +} + +void +FileInputSource::destroy() +{ + if (this->file && this->close_file) + { + fclose(this->file); + this->file = 0; + } +} + +qpdf_offset_t +FileInputSource::findAndSkipNextEOL() +{ + qpdf_offset_t result = 0; + bool done = false; + char buf[10240]; + while (! done) + { + qpdf_offset_t cur_offset = QUtil::tell(this->file); + size_t len = this->read(buf, sizeof(buf)); + if (len == 0) + { + done = true; + result = this->tell(); + } + else + { + char* p1 = (char*)memchr((void*)buf, '\r', len); + char* p2 = (char*)memchr((void*)buf, '\n', len); + char* p = (p1 && p2) ? std::min(p1, p2) : p1 ? p1 : p2; + if (p) + { + result = cur_offset + (p - buf); + // We found \r or \n. Keep reading until we get past + // \r and \n characters. + this->seek(result + 1, SEEK_SET); + char ch; + while (! done) + { + if (this->read(&ch, 1) == 0) + { + done = true; + } + else if (! ((ch == '\r') || (ch == '\n'))) + { + this->unreadCh(ch); + done = true; + } + } + } + } + } + return result; +} + +std::string const& +FileInputSource::getName() const +{ + return this->filename; +} + +qpdf_offset_t +FileInputSource::tell() +{ + return QUtil::tell(this->file); +} + +void +FileInputSource::seek(qpdf_offset_t offset, int whence) +{ + QUtil::os_wrapper(std::string("seek to ") + this->filename + ", offset " + + QUtil::int_to_string(offset) + " (" + + QUtil::int_to_string(whence) + ")", + QUtil::seek(this->file, offset, whence)); +} + +void +FileInputSource::rewind() +{ + ::rewind(this->file); +} + +size_t +FileInputSource::read(char* buffer, size_t length) +{ + this->last_offset = QUtil::tell(this->file); + size_t len = fread(buffer, 1, length, this->file); + if ((len == 0) && ferror(this->file)) + { + throw QPDFExc(qpdf_e_system, + this->filename, "", + this->last_offset, + std::string("read ") + + QUtil::int_to_string(length) + " bytes"); + } + return len; +} + +void +FileInputSource::unreadCh(char ch) +{ + QUtil::os_wrapper(this->filename + ": unread character", + ungetc((unsigned char)ch, this->file)); +} diff --git a/libqpdf/InputSource.cc b/libqpdf/InputSource.cc new file mode 100644 index 0000000..79c889b --- /dev/null +++ b/libqpdf/InputSource.cc @@ -0,0 +1,41 @@ +#include +#include +#include + +void +InputSource::setLastOffset(qpdf_offset_t offset) +{ + this->last_offset = offset; +} + +qpdf_offset_t +InputSource::getLastOffset() const +{ + return this->last_offset; +} + +std::string +InputSource::readLine(size_t max_line_length) +{ + // Return at most max_line_length characters from the next line. + // Lines are terminated by one or more \r or \n characters. + // Consume the trailing newline characters but don't return them. + // After this is called, the file will be positioned after a line + // terminator or at the end of the file, and last_offset will + // point to position the file had when this method was called. + + qpdf_offset_t offset = this->tell(); + char* buf = new char[max_line_length + 1]; + PointerHolder bp(true, buf); + memset(buf, '\0', max_line_length + 1); + this->read(buf, max_line_length); + this->seek(offset, SEEK_SET); + qpdf_offset_t eol = this->findAndSkipNextEOL(); + this->last_offset = offset; + size_t line_length = eol - offset; + if (line_length < max_line_length) + { + buf[line_length] = '\0'; + } + return std::string(buf); +} diff --git a/libqpdf/MD5.cc b/libqpdf/MD5.cc new file mode 100644 index 0000000..70be696 --- /dev/null +++ b/libqpdf/MD5.cc @@ -0,0 +1,440 @@ +// This file implements a class for computation of MD5 checksums. +// It is derived from the reference algorithm for MD5 as given in +// RFC 1321. The original copyright notice is as follows: +// +///////////////////////////////////////////////////////////////////////// +// +// Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All +// rights reserved. +// +// License to copy and use this software is granted provided that it +// is identified as the "RSA Data Security, Inc. MD5 Message-Digest +// Algorithm" in all material mentioning or referencing this software +// or this function. +// +// License is also granted to make and use derivative works provided +// that such works are identified as "derived from the RSA Data +// Security, Inc. MD5 Message-Digest Algorithm" in all material +// mentioning or referencing the derived work. +// +// RSA Data Security, Inc. makes no representations concerning either +// the merchantability of this software or the suitability of this +// software for any particular purpose. It is provided "as is" +// without express or implied warranty of any kind. +// +// These notices must be retained in any copies of any part of this +// documentation and/or software. +// +///////////////////////////////////////////////////////////////////////// + +#include +#include + +#include +#include +#include +#include +#include + +int const S11 = 7; +int const S12 = 12; +int const S13 = 17; +int const S14 = 22; +int const S21 = 5; +int const S22 = 9; +int const S23 = 14; +int const S24 = 20; +int const S31 = 4; +int const S32 = 11; +int const S33 = 16; +int const S34 = 23; +int const S41 = 6; +int const S42 = 10; +int const S43 = 15; +int const S44 = 21; + +static unsigned char PADDING[64] = { + 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 +}; + +// F, G, H and I are basic MD5 functions. +#define F(x, y, z) (((x) & (y)) | ((~x) & (z))) +#define G(x, y, z) (((x) & (z)) | ((y) & (~z))) +#define H(x, y, z) ((x) ^ (y) ^ (z)) +#define I(x, y, z) ((y) ^ ((x) | (~z))) + +// ROTATE_LEFT rotates x left n bits. +#define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) + +// FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4. +// Rotation is separate from addition to prevent recomputation. +#define FF(a, b, c, d, x, s, ac) { \ + (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \ + (a) = ROTATE_LEFT ((a), (s)); \ + (a) += (b); \ + } +#define GG(a, b, c, d, x, s, ac) { \ + (a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \ + (a) = ROTATE_LEFT ((a), (s)); \ + (a) += (b); \ + } +#define HH(a, b, c, d, x, s, ac) { \ + (a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \ + (a) = ROTATE_LEFT ((a), (s)); \ + (a) += (b); \ + } +#define II(a, b, c, d, x, s, ac) { \ + (a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \ + (a) = ROTATE_LEFT ((a), (s)); \ + (a) += (b); \ + } + +// MD5 initialization. Begins an MD5 operation, writing a new context. +void MD5::init() +{ + count[0] = count[1] = 0; + // Load magic initialization constants. + state[0] = 0x67452301; + state[1] = 0xefcdab89; + state[2] = 0x98badcfe; + state[3] = 0x10325476; + + finalized = false; + memset(digest_val, 0, sizeof(digest_val)); +} + +// MD5 block update operation. Continues an MD5 message-digest +// operation, processing another message block, and updating the +// context. + +void MD5::update(unsigned char *input, + unsigned int inputLen) +{ + unsigned int i, index, partLen; + + // Compute number of bytes mod 64 + index = (unsigned int)((count[0] >> 3) & 0x3F); + + // Update number of bits + if ((count[0] += ((UINT4)inputLen << 3)) + < ((UINT4)inputLen << 3)) + count[1]++; + count[1] += ((UINT4)inputLen >> 29); + + partLen = 64 - index; + + // Transform as many times as possible. + + if (inputLen >= partLen) { + memcpy + ((POINTER)&buffer[index], (POINTER)input, partLen); + transform(state, buffer); + + for (i = partLen; i + 63 < inputLen; i += 64) + transform(state, &input[i]); + + index = 0; + } + else + i = 0; + + // Buffer remaining input + memcpy + ((POINTER)&buffer[index], (POINTER)&input[i], + inputLen-i); +} + +// MD5 finalization. Ends an MD5 message-digest operation, writing the +// the message digest and zeroizing the context. +void MD5::final() +{ + if (finalized) + { + return; + } + + unsigned char bits[8]; + unsigned int index, padLen; + + // Save number of bits + encode(bits, count, 8); + + // Pad out to 56 mod 64. + + index = (unsigned int)((count[0] >> 3) & 0x3f); + padLen = (index < 56) ? (56 - index) : (120 - index); + update(PADDING, padLen); + + // Append length (before padding) + update(bits, 8); + // Store state in digest_val + encode(digest_val, state, 16); + + // Zeroize sensitive information. + memset(state, 0, sizeof(state)); + memset(count, 0, sizeof(count)); + memset(buffer, 0, sizeof(buffer)); + + finalized = true; +} + +// MD5 basic transformation. Transforms state based on block. +void MD5::transform(UINT4 state[4], unsigned char block[64]) +{ + UINT4 a = state[0], b = state[1], c = state[2], d = state[3], x[16]; + + decode(x, block, 64); + + // Round 1 + FF (a, b, c, d, x[ 0], S11, 0xd76aa478); // 1 + FF (d, a, b, c, x[ 1], S12, 0xe8c7b756); // 2 + FF (c, d, a, b, x[ 2], S13, 0x242070db); // 3 + FF (b, c, d, a, x[ 3], S14, 0xc1bdceee); // 4 + FF (a, b, c, d, x[ 4], S11, 0xf57c0faf); // 5 + FF (d, a, b, c, x[ 5], S12, 0x4787c62a); // 6 + FF (c, d, a, b, x[ 6], S13, 0xa8304613); // 7 + FF (b, c, d, a, x[ 7], S14, 0xfd469501); // 8 + FF (a, b, c, d, x[ 8], S11, 0x698098d8); // 9 + FF (d, a, b, c, x[ 9], S12, 0x8b44f7af); // 10 + FF (c, d, a, b, x[10], S13, 0xffff5bb1); // 11 + FF (b, c, d, a, x[11], S14, 0x895cd7be); // 12 + FF (a, b, c, d, x[12], S11, 0x6b901122); // 13 + FF (d, a, b, c, x[13], S12, 0xfd987193); // 14 + FF (c, d, a, b, x[14], S13, 0xa679438e); // 15 + FF (b, c, d, a, x[15], S14, 0x49b40821); // 16 + + // Round 2 + GG (a, b, c, d, x[ 1], S21, 0xf61e2562); // 17 + GG (d, a, b, c, x[ 6], S22, 0xc040b340); // 18 + GG (c, d, a, b, x[11], S23, 0x265e5a51); // 19 + GG (b, c, d, a, x[ 0], S24, 0xe9b6c7aa); // 20 + GG (a, b, c, d, x[ 5], S21, 0xd62f105d); // 21 + GG (d, a, b, c, x[10], S22, 0x2441453); // 22 + GG (c, d, a, b, x[15], S23, 0xd8a1e681); // 23 + GG (b, c, d, a, x[ 4], S24, 0xe7d3fbc8); // 24 + GG (a, b, c, d, x[ 9], S21, 0x21e1cde6); // 25 + GG (d, a, b, c, x[14], S22, 0xc33707d6); // 26 + GG (c, d, a, b, x[ 3], S23, 0xf4d50d87); // 27 + GG (b, c, d, a, x[ 8], S24, 0x455a14ed); // 28 + GG (a, b, c, d, x[13], S21, 0xa9e3e905); // 29 + GG (d, a, b, c, x[ 2], S22, 0xfcefa3f8); // 30 + GG (c, d, a, b, x[ 7], S23, 0x676f02d9); // 31 + GG (b, c, d, a, x[12], S24, 0x8d2a4c8a); // 32 + + // Round 3 + HH (a, b, c, d, x[ 5], S31, 0xfffa3942); // 33 + HH (d, a, b, c, x[ 8], S32, 0x8771f681); // 34 + HH (c, d, a, b, x[11], S33, 0x6d9d6122); // 35 + HH (b, c, d, a, x[14], S34, 0xfde5380c); // 36 + HH (a, b, c, d, x[ 1], S31, 0xa4beea44); // 37 + HH (d, a, b, c, x[ 4], S32, 0x4bdecfa9); // 38 + HH (c, d, a, b, x[ 7], S33, 0xf6bb4b60); // 39 + HH (b, c, d, a, x[10], S34, 0xbebfbc70); // 40 + HH (a, b, c, d, x[13], S31, 0x289b7ec6); // 41 + HH (d, a, b, c, x[ 0], S32, 0xeaa127fa); // 42 + HH (c, d, a, b, x[ 3], S33, 0xd4ef3085); // 43 + HH (b, c, d, a, x[ 6], S34, 0x4881d05); // 44 + HH (a, b, c, d, x[ 9], S31, 0xd9d4d039); // 45 + HH (d, a, b, c, x[12], S32, 0xe6db99e5); // 46 + HH (c, d, a, b, x[15], S33, 0x1fa27cf8); // 47 + HH (b, c, d, a, x[ 2], S34, 0xc4ac5665); // 48 + + // Round 4 + II (a, b, c, d, x[ 0], S41, 0xf4292244); // 49 + II (d, a, b, c, x[ 7], S42, 0x432aff97); // 50 + II (c, d, a, b, x[14], S43, 0xab9423a7); // 51 + II (b, c, d, a, x[ 5], S44, 0xfc93a039); // 52 + II (a, b, c, d, x[12], S41, 0x655b59c3); // 53 + II (d, a, b, c, x[ 3], S42, 0x8f0ccc92); // 54 + II (c, d, a, b, x[10], S43, 0xffeff47d); // 55 + II (b, c, d, a, x[ 1], S44, 0x85845dd1); // 56 + II (a, b, c, d, x[ 8], S41, 0x6fa87e4f); // 57 + II (d, a, b, c, x[15], S42, 0xfe2ce6e0); // 58 + II (c, d, a, b, x[ 6], S43, 0xa3014314); // 59 + II (b, c, d, a, x[13], S44, 0x4e0811a1); // 60 + II (a, b, c, d, x[ 4], S41, 0xf7537e82); // 61 + II (d, a, b, c, x[11], S42, 0xbd3af235); // 62 + II (c, d, a, b, x[ 2], S43, 0x2ad7d2bb); // 63 + II (b, c, d, a, x[ 9], S44, 0xeb86d391); // 64 + + state[0] += a; + state[1] += b; + state[2] += c; + state[3] += d; + + // Zeroize sensitive information. + + memset ((POINTER)x, 0, sizeof (x)); +} + +// Encodes input (UINT4) into output (unsigned char). Assumes len is a +// multiple of 4. +void MD5::encode(unsigned char *output, UINT4 *input, unsigned int len) +{ + unsigned int i, j; + + for (i = 0, j = 0; j < len; i++, j += 4) { + output[j] = (unsigned char)(input[i] & 0xff); + output[j+1] = (unsigned char)((input[i] >> 8) & 0xff); + output[j+2] = (unsigned char)((input[i] >> 16) & 0xff); + output[j+3] = (unsigned char)((input[i] >> 24) & 0xff); + } +} + +// Decodes input (unsigned char) into output (UINT4). Assumes len is a +// multiple of 4. +void MD5::decode(UINT4 *output, unsigned char *input, unsigned int len) +{ + unsigned int i, j; + + for (i = 0, j = 0; j < len; i++, j += 4) + output[i] = ((UINT4)input[j]) | (((UINT4)input[j+1]) << 8) | + (((UINT4)input[j+2]) << 16) | (((UINT4)input[j+3]) << 24); +} + +// Public functions + +MD5::MD5() +{ + init(); +} + +void MD5::reset() +{ + init(); +} + +void MD5::encodeString(char const* str) +{ + unsigned int len = (unsigned int)strlen(str); + + update((unsigned char *)str, len); + final(); +} + +void MD5::appendString(char const* input_string) +{ + update((unsigned char *)input_string, (unsigned int) strlen(input_string)); +} + +void MD5::encodeDataIncrementally(char const* data, int len) +{ + update((unsigned char *)data, len); +} + +void MD5::encodeFile(char const *filename, int up_to_size) +{ + unsigned char buffer[1024]; + + FILE *file = QUtil::fopen_wrapper( + std::string("MD5: open ") + filename, + fopen(filename, "rb")); + + size_t len; + int so_far = 0; + int to_try = 1024; + do + { + if ((up_to_size >= 0) && ((so_far + to_try) > up_to_size)) + { + to_try = up_to_size - so_far; + } + len = fread(buffer, 1, to_try, file); + if (len > 0) + { + update(buffer, (unsigned int) len); + so_far += len; + if ((up_to_size >= 0) && (so_far >= up_to_size)) + { + break; + } + } + } while (len > 0); + if (ferror(file)) + { + // Assume, perhaps incorrectly, that errno was set by the + // underlying call to read.... + (void) fclose(file); + QUtil::throw_system_error( + std::string("MD5: read error on ") + filename); + } + (void) fclose(file); + + final(); +} + +void MD5::digest(Digest result) +{ + final(); + memcpy(result, digest_val, sizeof(digest_val)); +} + +void MD5::print() +{ + final(); + + unsigned int i; + for (i = 0; i < 16; ++i) + { + printf("%02x", digest_val[i]); + } + printf("\n"); +} + +std::string MD5::unparse() +{ + final(); + + char result[33]; + char* p = result; + unsigned int i; + for (i = 0; i < 16; ++i) + { + sprintf(p, "%02x", digest_val[i]); + p += 2; + } + return result; +} + +std::string +MD5::getDataChecksum(char const* buf, int len) +{ + MD5 m; + m.encodeDataIncrementally(buf, len); + return m.unparse(); +} + +std::string +MD5::getFileChecksum(char const* filename, int up_to_size) +{ + MD5 m; + m.encodeFile(filename, up_to_size); + return m.unparse(); +} + +bool +MD5::checkDataChecksum(char const* const checksum, + char const* buf, int len) +{ + std::string actual_checksum = getDataChecksum(buf, len); + return (checksum == actual_checksum); +} + +bool +MD5::checkFileChecksum(char const* const checksum, + char const* filename, int up_to_size) +{ + bool result = false; + try + { + std::string actual_checksum = getFileChecksum(filename, up_to_size); + result = (checksum == actual_checksum); + } + catch (std::runtime_error) + { + // Ignore -- return false + } + return result; +} diff --git a/libqpdf/Makefile b/libqpdf/Makefile new file mode 100644 index 0000000..9089905 --- /dev/null +++ b/libqpdf/Makefile @@ -0,0 +1 @@ +include ../make/proxy.mk diff --git a/libqpdf/PCRE.cc b/libqpdf/PCRE.cc new file mode 100644 index 0000000..1e5585b --- /dev/null +++ b/libqpdf/PCRE.cc @@ -0,0 +1,354 @@ +#include +#include + +#include +#include +#include + +PCRE::NoBackref::NoBackref() : + std::logic_error("PCRE error: no match") +{ +} + +PCRE::Match::Match(int nbackrefs, char const* subject) +{ + this->init(-1, nbackrefs, subject); +} + +PCRE::Match::~Match() +{ + this->destroy(); +} + +PCRE::Match::Match(Match const& rhs) +{ + this->copy(rhs); +} + +PCRE::Match& +PCRE::Match::operator=(Match const& rhs) +{ + if (this != &rhs) + { + this->destroy(); + this->copy(rhs); + } + return *this; +} + +void +PCRE::Match::init(int nmatches, int nbackrefs, char const* subject) +{ + this->nmatches = nmatches; + this->nbackrefs = nbackrefs; + this->subject = subject; + this->ovecsize = 3 * (1 + nbackrefs); + this->ovector = 0; + if (this->ovecsize) + { + this->ovector = new int[this->ovecsize]; + } +} + +void +PCRE::Match::copy(Match const& rhs) +{ + this->init(rhs.nmatches, rhs.nbackrefs, rhs.subject); + int i; + for (i = 0; i < this->ovecsize; ++i) + { + this->ovector[i] = rhs.ovector[i]; + } +} + +void +PCRE::Match::destroy() +{ + delete [] this->ovector; +} + +PCRE::Match::operator bool() +{ + return (this->nmatches >= 0); +} + +std::string +PCRE::Match::getMatch(int n, int flags) +{ + // This method used to be implemented in terms of + // pcre_get_substring, but that function gives you an empty string + // for an unmatched backreference that is in range. + + int offset; + int length; + try + { + getOffsetLength(n, offset, length); + } + catch (NoBackref&) + { + if (flags & gm_no_substring_returns_empty) + { + return ""; + } + else + { + throw; + } + } + + return std::string(this->subject).substr(offset, length); +} + +void +PCRE::Match::getOffsetLength(int n, int& offset, int& length) +{ + if ((this->nmatches < 0) || + (n > this->nmatches - 1) || + (this->ovector[n * 2] == -1)) + { + throw NoBackref(); + } + offset = this->ovector[n * 2]; + length = this->ovector[n * 2 + 1] - offset; +} + +int +PCRE::Match::getOffset(int n) +{ + int offset; + int length; + this->getOffsetLength(n, offset, length); + return offset; +} + +int +PCRE::Match::getLength(int n) +{ + int offset; + int length; + this->getOffsetLength(n, offset, length); + return length; +} + +int +PCRE::Match::nMatches() const +{ + return this->nmatches; +} + +PCRE::PCRE(char const* pattern, int options) +{ + char const *errptr; + int erroffset; + this->code = pcre_compile(pattern, options, &errptr, &erroffset, 0); + if (this->code) + { + pcre_fullinfo(this->code, 0, PCRE_INFO_CAPTURECOUNT, &(this->nbackrefs)); + } + else + { + std::string message = (std::string("compilation of ") + pattern + + " failed at offset " + + QUtil::int_to_string(erroffset) + ": " + + errptr); + throw std::runtime_error("PCRE error: " + message); + } +} + +PCRE::~PCRE() +{ + pcre_free(this->code); +} + +PCRE::Match +PCRE::match(char const* subject, int options, int startoffset, int size) +{ + if (size == -1) + { + size = (int) strlen(subject); + } + + Match result(this->nbackrefs, subject); + int status = pcre_exec(this->code, 0, subject, size, + startoffset, options, + result.ovector, result.ovecsize); + if (status >= 0) + { + result.nmatches = status; + } + else + { + std::string message; + + switch (status) + { + case PCRE_ERROR_NOMATCH: + break; + + case PCRE_ERROR_BADOPTION: + message = "bad option passed to PCRE::match()"; + throw std::logic_error(message); + break; + + case PCRE_ERROR_NOMEMORY: + message = "insufficient memory"; + throw std::runtime_error(message); + break; + + case PCRE_ERROR_NULL: + case PCRE_ERROR_BADMAGIC: + case PCRE_ERROR_UNKNOWN_NODE: + default: + message = "pcre_exec returned " + QUtil::int_to_string(status); + throw std::logic_error(message); + } + } + + return result; +} + +void +PCRE::test(int n) +{ + try + { + if (n == 1) + { + static char const* utf8 = "abπdefq"; + PCRE u1("^([[:alpha:]]+)"); + PCRE u2("^([\\p{L}]+)", PCRE_UTF8); + PCRE::Match m1 = u1.match(utf8); + if (m1) + { + std::cout << "no utf8: " << m1.getMatch(1) << std::endl; + } + PCRE::Match m2 = u2.match(utf8); + if (m2) + { + std::cout << "utf8: " << m2.getMatch(1) << std::endl; + } + return; + } + + try + { + PCRE pcre1("a**"); + } + catch (std::exception& e) + { + std::cout << e.what() << std::endl; + } + + PCRE pcre2("^([^\\s:]*)\\s*:\\s*(.*?)\\s*$"); + PCRE::Match m2 = pcre2.match("key: value one two three "); + if (m2) + { + std::cout << m2.nMatches() << std::endl; + std::cout << m2.getMatch(0) << std::endl; + std::cout << m2.getOffset(0) << std::endl; + std::cout << m2.getLength(0) << std::endl; + std::cout << m2.getMatch(1) << std::endl; + std::cout << m2.getOffset(1) << std::endl; + std::cout << m2.getLength(1) << std::endl; + std::cout << m2.getMatch(2) << std::endl; + std::cout << m2.getOffset(2) << std::endl; + std::cout << m2.getLength(2) << std::endl; + try + { + std::cout << m2.getMatch(3) << std::endl; + } + catch (std::exception& e) + { + std::cout << e.what() << std::endl; + } + try + { + std::cout << m2.getOffset(3) << std::endl; + } + catch (std::exception& e) + { + std::cout << e.what() << std::endl; + } + } + PCRE pcre3("^(a+)(b+)?$"); + PCRE::Match m3 = pcre3.match("aaa"); + try + { + if (m3) + { + std::cout << m3.nMatches() << std::endl; + std::cout << m3.getMatch(0) << std::endl; + std::cout << m3.getMatch(1) << std::endl; + std::cout << "-" + << m3.getMatch( + 2, Match::gm_no_substring_returns_empty) + << "-" << std::endl; + std::cout << "hello" << std::endl; + std::cout << m3.getMatch(2) << std::endl; + std::cout << "can't see this" << std::endl; + } + } + catch (std::exception& e) + { + std::cout << e.what() << std::endl; + } + + // backref: 1 2 3 4 5 + PCRE pcre4("^((?:(a(b)?)(?:,(c))?)|(c))?$"); + static char const* candidates[] = { + "qqqcqqq", // no match + "ab,c", // backrefs: 0, 1, 2, 3, 4 + "ab", // backrefs: 0, 1, 2, 3 + "a", // backrefs: 0, 1, 2 + "a,c", // backrefs: 0, 1, 2, 4 + "c", // backrefs: 0, 1, 5 + "", // backrefs: 0 + 0 + }; + for (char const** p = candidates; *p; ++p) + { + PCRE::Match m(pcre4.match(*p)); + if (m) + { + int nmatches = m.nMatches(); + for (int i = 0; i < nmatches; ++i) + { + std::cout << *p << ": " << i << ": "; + try + { + std::string match = m.getMatch(i); + std::cout << match; + } + catch (NoBackref&) + { + std::cout << "no backref (getMatch)"; + } + std::cout << std::endl; + + std::cout << *p << ": " << i << ": "; + try + { + int offset; + int length; + m.getOffsetLength(i, offset, length); + std::cout << offset << ", " << length; + } + catch (NoBackref&) + { + std::cout << "no backref (getOffsetLength)"; + } + std:: cout << std::endl; + } + } + else + { + std::cout << *p << ": no match" << std::endl; + } + } + } + catch (std::exception& e) + { + std::cout << "unexpected exception: " << e.what() << std::endl; + } +} diff --git a/libqpdf/Pipeline.cc b/libqpdf/Pipeline.cc new file mode 100644 index 0000000..b80b2d6 --- /dev/null +++ b/libqpdf/Pipeline.cc @@ -0,0 +1,24 @@ +#include +#include + +Pipeline::Pipeline(char const* identifier, Pipeline* next) : + identifier(identifier), + next(next) +{ +} + +Pipeline::~Pipeline() +{ +} + +Pipeline* +Pipeline::getNext(bool allow_null) +{ + if ((next == 0) && (! allow_null)) + { + throw std::logic_error( + this->identifier + + ": Pipeline::getNext() called on pipeline with no next"); + } + return this->next; +} diff --git a/libqpdf/Pl_AES_PDF.cc b/libqpdf/Pl_AES_PDF.cc new file mode 100644 index 0000000..0f73c09 --- /dev/null +++ b/libqpdf/Pl_AES_PDF.cc @@ -0,0 +1,226 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#ifndef HAVE_RANDOM +# define random rand +# define srandom srand +#endif + +bool Pl_AES_PDF::use_static_iv = false; + +Pl_AES_PDF::Pl_AES_PDF(char const* identifier, Pipeline* next, + bool encrypt, unsigned char const key[key_size]) : + Pipeline(identifier, next), + encrypt(encrypt), + cbc_mode(true), + first(true), + offset(0), + nrounds(0) +{ + static int const keybits = 128; + assert(key_size == KEYLENGTH(keybits)); + assert(sizeof(this->rk) / sizeof(uint32_t) == RKLENGTH(keybits)); + std::memcpy(this->key, key, key_size); + std::memset(this->rk, 0, sizeof(this->rk)); + std::memset(this->inbuf, 0, this->buf_size); + std::memset(this->outbuf, 0, this->buf_size); + std::memset(this->cbc_block, 0, this->buf_size); + if (encrypt) + { + this->nrounds = rijndaelSetupEncrypt(this->rk, this->key, keybits); + } + else + { + this->nrounds = rijndaelSetupDecrypt(this->rk, this->key, keybits); + } + assert(this->nrounds == NROUNDS(keybits)); +} + +Pl_AES_PDF::~Pl_AES_PDF() +{ + // nothing needed +} + +void +Pl_AES_PDF::disableCBC() +{ + this->cbc_mode = false; +} + +void +Pl_AES_PDF::useStaticIV() +{ + use_static_iv = true; +} + +void +Pl_AES_PDF::write(unsigned char* data, size_t len) +{ + size_t bytes_left = len; + unsigned char* p = data; + + while (bytes_left > 0) + { + if (this->offset == this->buf_size) + { + flush(false); + } + + size_t available = this->buf_size - this->offset; + size_t bytes = (bytes_left < available ? bytes_left : available); + bytes_left -= bytes; + std::memcpy(this->inbuf + this->offset, p, bytes); + this->offset += bytes; + p += bytes; + } +} + +void +Pl_AES_PDF::finish() +{ + if (this->encrypt) + { + if (this->offset == this->buf_size) + { + flush(false); + } + // Pad as described in section 3.5.1 of version 1.7 of the PDF + // specification, including providing an entire block of padding + // if the input was a multiple of 16 bytes. + unsigned char pad = (unsigned char) (this->buf_size - this->offset); + memset(this->inbuf + this->offset, pad, pad); + this->offset = this->buf_size; + flush(false); + } + else + { + if (this->offset != this->buf_size) + { + // This is never supposed to happen as the output is + // always supposed to be padded. However, we have + // encountered files for which the output is not a + // multiple of the block size. In this case, pad with + // zeroes and hope for the best. + assert(this->buf_size > this->offset); + std::memset(this->inbuf + this->offset, 0, + this->buf_size - this->offset); + this->offset = this->buf_size; + } + flush(true); + } + getNext()->finish(); +} + +void +Pl_AES_PDF::initializeVector() +{ + static bool seeded_random = false; + if (! seeded_random) + { + // Seed the random number generator with something simple, but + // just to be interesting, don't use the unmodified current + // time.... + srandom((int)QUtil::get_current_time() ^ 0xcccc); + seeded_random = true; + } + if (use_static_iv) + { + for (unsigned int i = 0; i < this->buf_size; ++i) + { + this->cbc_block[i] = 14 * (1 + i); + } + } + else + { + for (unsigned int i = 0; i < this->buf_size; ++i) + { + this->cbc_block[i] = (unsigned char)((random() & 0xff0) >> 4); + } + } +} + +void +Pl_AES_PDF::flush(bool strip_padding) +{ + assert(this->offset == this->buf_size); + + if (first) + { + first = false; + if (this->cbc_mode) + { + if (encrypt) + { + // Set cbc_block to a random initialization vector and + // write it to the output stream + initializeVector(); + getNext()->write(this->cbc_block, this->buf_size); + } + else + { + // Take the first block of input as the initialization + // vector. There's nothing to write at this time. + memcpy(this->cbc_block, this->inbuf, this->buf_size); + this->offset = 0; + return; + } + } + } + + if (this->encrypt) + { + if (this->cbc_mode) + { + for (unsigned int i = 0; i < this->buf_size; ++i) + { + this->inbuf[i] ^= this->cbc_block[i]; + } + } + rijndaelEncrypt(this->rk, this->nrounds, this->inbuf, this->outbuf); + if (this->cbc_mode) + { + memcpy(this->cbc_block, this->outbuf, this->buf_size); + } + } + else + { + rijndaelDecrypt(this->rk, this->nrounds, this->inbuf, this->outbuf); + if (this->cbc_mode) + { + for (unsigned int i = 0; i < this->buf_size; ++i) + { + this->outbuf[i] ^= this->cbc_block[i]; + } + memcpy(this->cbc_block, this->inbuf, this->buf_size); + } + } + unsigned int bytes = this->buf_size; + if (strip_padding) + { + unsigned char last = this->outbuf[this->buf_size - 1]; + if (last <= this->buf_size) + { + bool strip = true; + for (unsigned int i = 1; i <= last; ++i) + { + if (this->outbuf[this->buf_size - i] != last) + { + strip = false; + break; + } + } + if (strip) + { + bytes -= last; + } + } + } + getNext()->write(this->outbuf, bytes); + this->offset = 0; +} diff --git a/libqpdf/Pl_ASCII85Decoder.cc b/libqpdf/Pl_ASCII85Decoder.cc new file mode 100644 index 0000000..5c9c9f5 --- /dev/null +++ b/libqpdf/Pl_ASCII85Decoder.cc @@ -0,0 +1,131 @@ +#include +#include +#include +#include + +Pl_ASCII85Decoder::Pl_ASCII85Decoder(char const* identifier, Pipeline* next) : + Pipeline(identifier, next), + pos(0), + eod(0) +{ + memset(this->inbuf, 117, 5); +} + +Pl_ASCII85Decoder::~Pl_ASCII85Decoder() +{ +} + +void +Pl_ASCII85Decoder::write(unsigned char* buf, size_t len) +{ + if (eod > 1) + { + return; + } + for (size_t i = 0; i < len; ++i) + { + if (eod > 1) + { + break; + } + else if (eod == 1) + { + if (buf[i] == '>') + { + flush(); + eod = 2; + } + else + { + throw std::runtime_error( + "broken end-of-data sequence in base 85 data"); + } + } + else + { + switch (buf[i]) + { + case ' ': + case '\f': + case '\v': + case '\t': + case '\r': + case '\n': + QTC::TC("libtests", "Pl_ASCII85Decoder ignore space"); + // ignore whitespace + break; + + case '~': + eod = 1; + break; + + case 'z': + if (pos != 0) + { + throw std::runtime_error( + "unexpected z during base 85 decode"); + } + else + { + QTC::TC("libtests", "Pl_ASCII85Decoder read z"); + getNext()->write((unsigned char*)"\000\000\000\000", 4); + } + break; + + default: + if ((buf[i] < 33) || (buf[i] > 117)) + { + throw std::runtime_error( + "character out of range during base 85 decode"); + } + else + { + this->inbuf[this->pos++] = buf[i]; + if (pos == 5) + { + flush(); + } + } + break; + } + } + } +} + +void +Pl_ASCII85Decoder::flush() +{ + if (this->pos == 0) + { + QTC::TC("libtests", "Pl_ASCII85Decoder no-op flush"); + return; + } + unsigned long lval = 0; + for (int i = 0; i < 5; ++i) + { + lval *= 85; + lval += (this->inbuf[i] - 33); + } + + unsigned char outbuf[4]; + memset(outbuf, 0, 4); + for (int i = 3; i >= 0; --i) + { + outbuf[i] = lval & 0xff; + lval >>= 8; + } + + QTC::TC("libtests", "Pl_ASCII85Decoder partial flush", + (this->pos == 5) ? 0 : 1); + getNext()->write(outbuf, this->pos - 1); + + this->pos = 0; + memset(this->inbuf, 117, 5); +} + +void +Pl_ASCII85Decoder::finish() +{ + flush(); + getNext()->finish(); +} diff --git a/libqpdf/Pl_ASCIIHexDecoder.cc b/libqpdf/Pl_ASCIIHexDecoder.cc new file mode 100644 index 0000000..ca153e8 --- /dev/null +++ b/libqpdf/Pl_ASCIIHexDecoder.cc @@ -0,0 +1,109 @@ +#include +#include +#include +#include +#include + +Pl_ASCIIHexDecoder::Pl_ASCIIHexDecoder(char const* identifier, Pipeline* next) : + Pipeline(identifier, next), + pos(0), + eod(false) +{ + strcpy(this->inbuf, "00"); +} + +Pl_ASCIIHexDecoder::~Pl_ASCIIHexDecoder() +{ +} + +void +Pl_ASCIIHexDecoder::write(unsigned char* buf, size_t len) +{ + if (this->eod) + { + return; + } + for (size_t i = 0; i < len; ++i) + { + char ch = toupper(buf[i]); + switch (ch) + { + case ' ': + case '\f': + case '\v': + case '\t': + case '\r': + case '\n': + QTC::TC("libtests", "Pl_ASCIIHexDecoder ignore space"); + // ignore whitespace + break; + + case '>': + this->eod = true; + flush(); + break; + + default: + if (((ch >= '0') && (ch <= '9')) || + ((ch >= 'A') && (ch <= 'F'))) + { + this->inbuf[this->pos++] = ch; + if (this->pos == 2) + { + flush(); + } + } + else + { + char t[2]; + t[0] = ch; + t[1] = 0; + throw std::runtime_error( + std::string("character out of range" + " during base Hex decode: ") + t); + } + break; + } + if (this->eod) + { + break; + } + } +} + +void +Pl_ASCIIHexDecoder::flush() +{ + if (this->pos == 0) + { + QTC::TC("libtests", "Pl_ASCIIHexDecoder no-op flush"); + return; + } + int b[2]; + for (int i = 0; i < 2; ++i) + { + if (this->inbuf[i] >= 'A') + { + b[i] = this->inbuf[i] - 'A' + 10; + } + else + { + b[i] = this->inbuf[i] - '0'; + } + } + unsigned char ch = (unsigned char)((b[0] << 4) + b[1]); + + QTC::TC("libtests", "Pl_ASCIIHexDecoder partial flush", + (this->pos == 2) ? 0 : 1); + getNext()->write(&ch, 1); + + this->pos = 0; + strcpy(this->inbuf, "00"); +} + +void +Pl_ASCIIHexDecoder::finish() +{ + flush(); + getNext()->finish(); +} diff --git a/libqpdf/Pl_Buffer.cc b/libqpdf/Pl_Buffer.cc new file mode 100644 index 0000000..600ee7d --- /dev/null +++ b/libqpdf/Pl_Buffer.cc @@ -0,0 +1,66 @@ +#include +#include +#include +#include + +Pl_Buffer::Pl_Buffer(char const* identifier, Pipeline* next) : + Pipeline(identifier, next), + ready(false), + total_size(0) +{ +} + +Pl_Buffer::~Pl_Buffer() +{ +} + +void +Pl_Buffer::write(unsigned char* buf, size_t len) +{ + Buffer* b = new Buffer(len); + memcpy(b->getBuffer(), buf, len); + this->data.push_back(b); + this->ready = false; + this->total_size += len; + + if (getNext(true)) + { + getNext()->write(buf, len); + } +} + +void +Pl_Buffer::finish() +{ + this->ready = true; + if (getNext(true)) + { + getNext()->finish(); + } +} + +Buffer* +Pl_Buffer::getBuffer() +{ + if (! this->ready) + { + throw std::logic_error("Pl_Buffer::getBuffer() called when not ready"); + } + + Buffer* b = new Buffer(this->total_size); + unsigned char* p = b->getBuffer(); + while (! this->data.empty()) + { + PointerHolder bp = this->data.front(); + this->data.pop_front(); + size_t bytes = bp->getSize(); + memcpy(p, bp->getBuffer(), bytes); + p += bytes; + this->total_size -= bytes; + } + + assert(this->total_size == 0); + this->ready = false; + + return b; +} diff --git a/libqpdf/Pl_Concatenate.cc b/libqpdf/Pl_Concatenate.cc new file mode 100644 index 0000000..8d48de6 --- /dev/null +++ b/libqpdf/Pl_Concatenate.cc @@ -0,0 +1,28 @@ +#include + +Pl_Concatenate::Pl_Concatenate(char const* identifier, Pipeline* next) : + Pipeline(identifier, next) +{ +} + +Pl_Concatenate::~Pl_Concatenate() +{ +} + +void +Pl_Concatenate::write(unsigned char* data, size_t len) +{ + getNext()->write(data, len); +} + +void +Pl_Concatenate::finish() +{ +} + +void +Pl_Concatenate::manualFinish() +{ + getNext()->finish(); +} + diff --git a/libqpdf/Pl_Count.cc b/libqpdf/Pl_Count.cc new file mode 100644 index 0000000..c76a5e2 --- /dev/null +++ b/libqpdf/Pl_Count.cc @@ -0,0 +1,41 @@ +#include + +Pl_Count::Pl_Count(char const* identifier, Pipeline* next) : + Pipeline(identifier, next), + count(0), + last_char('\0') +{ +} + +Pl_Count::~Pl_Count() +{ +} + +void +Pl_Count::write(unsigned char* buf, size_t len) +{ + if (len) + { + this->count += len; + getNext()->write(buf, len); + this->last_char = buf[len - 1]; + } +} + +void +Pl_Count::finish() +{ + getNext()->finish(); +} + +qpdf_offset_t +Pl_Count::getCount() const +{ + return this->count; +} + +unsigned char +Pl_Count::getLastChar() const +{ + return this->last_char; +} diff --git a/libqpdf/Pl_Discard.cc b/libqpdf/Pl_Discard.cc new file mode 100644 index 0000000..34d49f3 --- /dev/null +++ b/libqpdf/Pl_Discard.cc @@ -0,0 +1,22 @@ +#include + +// Exercised in md5 test suite + +Pl_Discard::Pl_Discard() : + Pipeline("discard", 0) +{ +} + +Pl_Discard::~Pl_Discard() +{ +} + +void +Pl_Discard::write(unsigned char* buf, size_t len) +{ +} + +void +Pl_Discard::finish() +{ +} diff --git a/libqpdf/Pl_Flate.cc b/libqpdf/Pl_Flate.cc new file mode 100644 index 0000000..3061670 --- /dev/null +++ b/libqpdf/Pl_Flate.cc @@ -0,0 +1,222 @@ +#include +#include + +#include + +Pl_Flate::Pl_Flate(char const* identifier, Pipeline* next, + action_e action, int out_bufsize) : + Pipeline(identifier, next), + out_bufsize(out_bufsize), + action(action), + initialized(false) +{ + this->outbuf = new unsigned char[out_bufsize]; + // Indirect through zdata to reach the z_stream so we don't have + // to include zlib.h in Pl_Flate.hh. This means people using + // shared library versions of qpdf don't have to have zlib + // development files available, which particularly helps in a + // Windows environment. + this->zdata = new z_stream; + + z_stream& zstream = *((z_stream*) this->zdata); + zstream.zalloc = (alloc_func)0; + zstream.zfree = (free_func)0; + zstream.opaque = (voidpf)0; + zstream.next_in = 0; + zstream.avail_in = 0; + zstream.next_out = this->outbuf; + zstream.avail_out = out_bufsize; +} + +Pl_Flate::~Pl_Flate() +{ + if (this->outbuf) + { + delete [] this->outbuf; + this->outbuf = 0; + } + delete (z_stream*)this->zdata; + this->zdata = 0; +} + +void +Pl_Flate::write(unsigned char* data, size_t len) +{ + if (this->outbuf == 0) + { + throw std::logic_error( + this->identifier + + ": Pl_Flate: write() called after finish() called"); + } + + // Write in chunks in case len is too big to fit in an int. + // Assume int is at least 32 bits. + static size_t const max_bytes = 1 << 30; + size_t bytes_left = len; + unsigned char* buf = data; + while (bytes_left > 0) + { + size_t bytes = (bytes_left >= max_bytes ? max_bytes : bytes_left); + handleData(buf, (int)bytes, Z_NO_FLUSH); + bytes_left -= bytes; + buf += bytes; + } +} + +void +Pl_Flate::handleData(unsigned char* data, int len, int flush) +{ + z_stream& zstream = *((z_stream*) this->zdata); + zstream.next_in = data; + zstream.avail_in = len; + + if (! this->initialized) + { + int err = Z_OK; + if (this->action == a_deflate) + { + err = deflateInit(&zstream, Z_DEFAULT_COMPRESSION); + } + else + { + err = inflateInit(&zstream); + } + checkError("Init", err); + this->initialized = true; + } + + int err = Z_OK; + + bool done = false; + while (! done) + { + if (action == a_deflate) + { + err = deflate(&zstream, flush); + } + else + { + err = inflate(&zstream, flush); + } + switch (err) + { + case Z_BUF_ERROR: + // Probably shouldn't be able to happen, but possible as a + // boundary condition: if the last call to inflate exactly + // filled the output buffer, it's possible that the next + // call to inflate could have nothing to do. + done = true; + break; + + case Z_STREAM_END: + done = true; + // fall through + + case Z_OK: + { + if ((zstream.avail_in == 0) && + (zstream.avail_out > 0)) + { + // There is nothing left to read, and there was + // sufficient buffer space to write everything we + // needed, so we're done for now. + done = true; + } + uLong ready = (this->out_bufsize - zstream.avail_out); + if (ready > 0) + { + this->getNext()->write(this->outbuf, ready); + zstream.next_out = this->outbuf; + zstream.avail_out = this->out_bufsize; + } + } + break; + + default: + this->checkError("data", err); + break; + } + } +} + +void +Pl_Flate::finish() +{ + if (this->outbuf) + { + if (this->initialized) + { + z_stream& zstream = *((z_stream*) this->zdata); + unsigned char buf[1]; + buf[0] = '\0'; + handleData(buf, 0, Z_FINISH); + int err = Z_OK; + if (action == a_deflate) + { + err = deflateEnd(&zstream); + } + else + { + err = inflateEnd(&zstream); + } + checkError("End", err); + } + + delete [] this->outbuf; + this->outbuf = 0; + } + this->getNext()->finish(); +} + +void +Pl_Flate::checkError(char const* prefix, int error_code) +{ + z_stream& zstream = *((z_stream*) this->zdata); + if (error_code != Z_OK) + { + char const* action_str = (action == a_deflate ? "deflate" : "inflate"); + std::string msg = + this->identifier + ": " + action_str + ": " + prefix + ": "; + + if (zstream.msg) + { + msg += zstream.msg; + } + else + { + switch (error_code) + { + case Z_ERRNO: + msg += "zlib system error"; + break; + + case Z_STREAM_ERROR: + msg += "zlib stream error"; + break; + + case Z_DATA_ERROR: + msg += "zlib data error"; + break; + + case Z_MEM_ERROR: + msg += "zlib memory error"; + break; + + case Z_BUF_ERROR: + msg += "zlib buffer error"; + break; + + case Z_VERSION_ERROR: + msg += "zlib version error"; + break; + + default: + msg += std::string("zlib unknown error (") + + QUtil::int_to_string(error_code) + ")"; + break; + } + } + + throw std::runtime_error(msg); + } +} diff --git a/libqpdf/Pl_LZWDecoder.cc b/libqpdf/Pl_LZWDecoder.cc new file mode 100644 index 0000000..646e45d --- /dev/null +++ b/libqpdf/Pl_LZWDecoder.cc @@ -0,0 +1,228 @@ +#include + +#include +#include +#include +#include + +Pl_LZWDecoder::Pl_LZWDecoder(char const* identifier, Pipeline* next, + bool early_code_change) : + Pipeline(identifier, next), + code_size(9), + next(0), + byte_pos(0), + bit_pos(0), + bits_available(0), + code_change_delta(early_code_change ? 1 : 0), + eod(false), + last_code(256) +{ + memset(buf, 0, 3); +} + +Pl_LZWDecoder::~Pl_LZWDecoder() +{ +} + +void +Pl_LZWDecoder::write(unsigned char* bytes, size_t len) +{ + for (size_t i = 0; i < len; ++i) + { + this->buf[next++] = bytes[i]; + if (this->next == 3) + { + this->next = 0; + } + this->bits_available += 8; + if (this->bits_available >= this->code_size) + { + sendNextCode(); + } + } +} + +void +Pl_LZWDecoder::finish() +{ + getNext()->finish(); +} + +void +Pl_LZWDecoder::sendNextCode() +{ + int high = this->byte_pos; + int med = (this->byte_pos + 1) % 3; + int low = (this->byte_pos + 2) % 3; + + int bits_from_high = 8 - this->bit_pos; + int bits_from_med = this->code_size - bits_from_high; + int bits_from_low = 0; + if (bits_from_med > 8) + { + bits_from_low = bits_from_med - 8; + bits_from_med = 8; + } + int high_mask = (1 << bits_from_high) - 1; + int med_mask = 0xff - ((1 << (8 - bits_from_med)) - 1); + int low_mask = 0xff - ((1 << (8 - bits_from_low)) - 1); + int code = 0; + code += (this->buf[high] & high_mask) << bits_from_med; + code += ((this->buf[med] & med_mask) >> (8 - bits_from_med)); + if (bits_from_low) + { + code <<= bits_from_low; + code += ((this->buf[low] & low_mask) >> (8 - bits_from_low)); + this->byte_pos = low; + this->bit_pos = bits_from_low; + } + else + { + this->byte_pos = med; + this->bit_pos = bits_from_med; + } + if (this->bit_pos == 8) + { + this->bit_pos = 0; + ++this->byte_pos; + this->byte_pos %= 3; + } + this->bits_available -= this->code_size; + + handleCode(code); +} + +unsigned char +Pl_LZWDecoder::getFirstChar(int code) +{ + unsigned char result = '\0'; + if (code < 256) + { + result = (unsigned char) code; + } + else + { + assert(code > 257); + unsigned int idx = code - 258; + assert(idx < table.size()); + Buffer& b = table[idx]; + result = b.getBuffer()[0]; + } + return result; +} + +void +Pl_LZWDecoder::addToTable(unsigned char next) +{ + unsigned int last_size = 0; + unsigned char const* last_data = 0; + unsigned char tmp[1]; + + if (this->last_code < 256) + { + tmp[0] = this->last_code; + last_data = tmp; + last_size = 1; + } + else + { + assert(this->last_code > 257); + unsigned int idx = this->last_code - 258; + assert(idx < table.size()); + Buffer& b = table[idx]; + last_data = b.getBuffer(); + last_size = (unsigned int) b.getSize(); + } + + Buffer entry(1 + last_size); + unsigned char* new_data = entry.getBuffer(); + memcpy(new_data, last_data, last_size); + new_data[last_size] = next; + this->table.push_back(entry); +} + +void +Pl_LZWDecoder::handleCode(int code) +{ + if (this->eod) + { + return; + } + + if (code == 256) + { + if (! this->table.empty()) + { + QTC::TC("libtests", "Pl_LZWDecoder intermediate reset"); + } + this->table.clear(); + this->code_size = 9; + } + else if (code == 257) + { + this->eod = true; + } + else + { + if (this->last_code != 256) + { + // Add to the table from last time. New table entry would + // be what we read last plus the first character of what + // we're reading now. + unsigned char next = '\0'; + unsigned int table_size = (unsigned int) table.size(); + if (code < 256) + { + // just read < 256; last time's next was code + next = code; + } + else if (code > 257) + { + size_t idx = code - 258; + if (idx > table_size) + { + throw std::runtime_error("LZWDecoder: bad code received"); + } + else if (idx == table_size) + { + // The encoder would have just created this entry, + // so the first character of this entry would have + // been the same as the first character of the + // last entry. + QTC::TC("libtests", "Pl_LZWDecoder last was table size"); + next = getFirstChar(this->last_code); + } + else + { + next = getFirstChar(code); + } + } + unsigned int new_idx = 258 + table_size; + if (new_idx == 4096) + { + throw std::runtime_error("LZWDecoder: table full"); + } + addToTable(next); + unsigned int change_idx = new_idx + code_change_delta; + if ((change_idx == 511) || + (change_idx == 1023) || + (change_idx == 2047)) + { + ++this->code_size; + } + } + + if (code < 256) + { + unsigned char ch = (unsigned char) code; + getNext()->write(&ch, 1); + } + else + { + Buffer& b = table[code - 258]; + getNext()->write(b.getBuffer(), b.getSize()); + } + } + + this->last_code = code; +} diff --git a/libqpdf/Pl_MD5.cc b/libqpdf/Pl_MD5.cc new file mode 100644 index 0000000..44911b4 --- /dev/null +++ b/libqpdf/Pl_MD5.cc @@ -0,0 +1,55 @@ +#include +#include + +Pl_MD5::Pl_MD5(char const* identifier, Pipeline* next) : + Pipeline(identifier, next), + in_progress(false) +{ +} + +Pl_MD5::~Pl_MD5() +{ +} + +void +Pl_MD5::write(unsigned char* buf, size_t len) +{ + if (! this->in_progress) + { + this->md5.reset(); + this->in_progress = true; + } + + // Write in chunks in case len is too big to fit in an int. + // Assume int is at least 32 bits. + static size_t const max_bytes = 1 << 30; + size_t bytes_left = len; + unsigned char* data = buf; + while (bytes_left > 0) + { + size_t bytes = (bytes_left >= max_bytes ? max_bytes : bytes_left); + this->md5.encodeDataIncrementally((char*) data, (int)bytes); + bytes_left -= bytes; + data += bytes; + } + + this->getNext()->write(buf, len); +} + +void +Pl_MD5::finish() +{ + this->getNext()->finish(); + this->in_progress = false; +} + +std::string +Pl_MD5::getHexDigest() +{ + if (this->in_progress) + { + throw std::logic_error( + "digest requested for in-progress MD5 Pipeline"); + } + return this->md5.unparse(); +} diff --git a/libqpdf/Pl_PNGFilter.cc b/libqpdf/Pl_PNGFilter.cc new file mode 100644 index 0000000..19b90c0 --- /dev/null +++ b/libqpdf/Pl_PNGFilter.cc @@ -0,0 +1,146 @@ +#include +#include +#include + +Pl_PNGFilter::Pl_PNGFilter(char const* identifier, Pipeline* next, + action_e action, unsigned int columns, + unsigned int bytes_per_pixel) : + Pipeline(identifier, next), + action(action), + columns(columns), + cur_row(0), + prev_row(0), + buf1(0), + buf2(0), + pos(0) +{ + this->buf1 = new unsigned char[columns + 1]; + this->buf2 = new unsigned char[columns + 1]; + this->cur_row = buf1; + + // number of bytes per incoming row + this->incoming = (action == a_encode ? columns : columns + 1); +} + +Pl_PNGFilter::~Pl_PNGFilter() +{ + delete [] buf1; + delete [] buf2; +} + +void +Pl_PNGFilter::write(unsigned char* data, size_t len) +{ + size_t left = this->incoming - this->pos; + size_t offset = 0; + while (len >= left) + { + // finish off current row + memcpy(this->cur_row + this->pos, data + offset, left); + offset += left; + len -= left; + + processRow(); + + // Swap rows + unsigned char* t = this->prev_row; + this->prev_row = this->cur_row; + this->cur_row = t ? t : this->buf2; + memset(this->cur_row, 0, this->columns + 1); + left = this->incoming; + this->pos = 0; + } + if (len) + { + memcpy(this->cur_row + this->pos, data + offset, len); + } + this->pos += len; +} + +void +Pl_PNGFilter::processRow() +{ + if (this->action == a_encode) + { + encodeRow(); + } + else + { + decodeRow(); + } +} + +void +Pl_PNGFilter::decodeRow() +{ + int filter = (int) this->cur_row[0]; + if (this->prev_row) + { + switch (filter) + { + case 0: // none + break; + + case 1: // sub + throw std::logic_error("sub filter not implemented"); + break; + + case 2: // up + for (unsigned int i = 1; i <= this->columns; ++i) + { + this->cur_row[i] += this->prev_row[i]; + } + break; + + case 3: // average + throw std::logic_error("average filter not implemented"); + break; + + case 4: // Paeth + throw std::logic_error("Paeth filter not implemented"); + break; + + default: + // ignore + break; + } + } + + getNext()->write(this->cur_row + 1, this->columns); +} + +void +Pl_PNGFilter::encodeRow() +{ + // For now, hard-code to using UP filter. + unsigned char ch = 2; + getNext()->write(&ch, 1); + if (this->prev_row) + { + for (unsigned int i = 0; i < this->columns; ++i) + { + ch = this->cur_row[i] - this->prev_row[i]; + getNext()->write(&ch, 1); + } + } + else + { + getNext()->write(this->cur_row, this->columns); + } +} + +void +Pl_PNGFilter::finish() +{ + if (this->pos) + { + // write partial row + processRow(); + } + this->prev_row = 0; + this->cur_row = buf1; + this->pos = 0; + memset(this->cur_row, 0, this->columns + 1); + + getNext()->finish(); +} diff --git a/libqpdf/Pl_QPDFTokenizer.cc b/libqpdf/Pl_QPDFTokenizer.cc new file mode 100644 index 0000000..ea13fb7 --- /dev/null +++ b/libqpdf/Pl_QPDFTokenizer.cc @@ -0,0 +1,198 @@ +#include +#include +#include +#include +#include +#include + +Pl_QPDFTokenizer::Pl_QPDFTokenizer(char const* identifier, Pipeline* next) : + Pipeline(identifier, next), + newline_after_next_token(false), + just_wrote_nl(false), + last_char_was_cr(false), + unread_char(false), + char_to_unread('\0'), + in_inline_image(false) +{ + memset(this->image_buf, 0, IMAGE_BUF_SIZE); +} + +Pl_QPDFTokenizer::~Pl_QPDFTokenizer() +{ +} + +void +Pl_QPDFTokenizer::writeNext(char const* buf, size_t len) +{ + if (len) + { + unsigned char* t = new unsigned char[len]; + memcpy(t, buf, len); + getNext()->write(t, len); + delete [] t; + this->just_wrote_nl = (buf[len-1] == '\n'); + } +} + +void +Pl_QPDFTokenizer::writeToken(QPDFTokenizer::Token& token) +{ + std::string value = token.getRawValue(); + + switch (token.getType()) + { + case QPDFTokenizer::tt_string: + value = QPDF_String(token.getValue()).unparse(); + break; + + case QPDFTokenizer::tt_name: + value = QPDF_Name(token.getValue()).unparse(); + break; + + default: + break; + } + writeNext(value.c_str(), value.length()); +} + +void +Pl_QPDFTokenizer::processChar(char ch) +{ + if (this->in_inline_image) + { + // Scan through the input looking for EI surrounded by + // whitespace. If that pattern appears in the inline image's + // representation, we're hosed, but this situation seems + // excessively unlikely, and this code path is only followed + // during content stream normalization, which is pretty much + // used for debugging and human inspection of PDF files. + memmove(this->image_buf, + this->image_buf + 1, + IMAGE_BUF_SIZE - 1); + this->image_buf[IMAGE_BUF_SIZE - 1] = ch; + if (strchr(" \t\n\v\f\r", this->image_buf[0]) && + (this->image_buf[1] == 'E') && + (this->image_buf[2] == 'I') && + strchr(" \t\n\v\f\r", this->image_buf[3])) + { + // We've found an EI operator. We've already written the + // EI operator to output; terminate with a newline + // character and resume normal processing. + writeNext("\n", 1); + this->in_inline_image = false; + QTC::TC("qpdf", "Pl_QPDFTokenizer found EI"); + } + else + { + writeNext(&ch, 1); + } + return; + } + + tokenizer.presentCharacter(ch); + QPDFTokenizer::Token token; + if (tokenizer.getToken(token, this->unread_char, this->char_to_unread)) + { + writeToken(token); + if (this->newline_after_next_token) + { + writeNext("\n", 1); + this->newline_after_next_token = false; + } + if ((token.getType() == QPDFTokenizer::tt_word) && + (token.getValue() == "ID")) + { + // Suspend normal scanning until we find an EI token. + this->in_inline_image = true; + if (this->unread_char) + { + writeNext(&this->char_to_unread, 1); + this->unread_char = false; + } + } + } + else + { + bool suppress = false; + if ((ch == '\n') && (this->last_char_was_cr)) + { + // Always ignore \n following \r + suppress = true; + } + + if ((this->last_char_was_cr = (ch == '\r'))) + { + ch = '\n'; + } + + if (this->tokenizer.betweenTokens()) + { + if (! suppress) + { + writeNext(&ch, 1); + } + } + else + { + if (ch == '\n') + { + this->newline_after_next_token = true; + } + } + } +} + + +void +Pl_QPDFTokenizer::checkUnread() +{ + if (this->unread_char) + { + processChar(this->char_to_unread); + if (this->unread_char) + { + throw std::logic_error( + "INTERNAL ERROR: unread_char still true after processing " + "unread character"); + } + } +} + +void +Pl_QPDFTokenizer::write(unsigned char* buf, size_t len) +{ + checkUnread(); + for (size_t i = 0; i < len; ++i) + { + processChar(buf[i]); + checkUnread(); + } +} + +void +Pl_QPDFTokenizer::finish() +{ + this->tokenizer.presentEOF(); + if (! this->in_inline_image) + { + QPDFTokenizer::Token token; + if (tokenizer.getToken(token, this->unread_char, this->char_to_unread)) + { + writeToken(token); + if (unread_char) + { + if (this->char_to_unread == '\r') + { + this->char_to_unread = '\n'; + } + writeNext(&this->char_to_unread, 1); + } + } + } + if (! this->just_wrote_nl) + { + writeNext("\n", 1); + } + + getNext()->finish(); +} diff --git a/libqpdf/Pl_RC4.cc b/libqpdf/Pl_RC4.cc new file mode 100644 index 0000000..74bb16b --- /dev/null +++ b/libqpdf/Pl_RC4.cc @@ -0,0 +1,56 @@ +#include +#include + +Pl_RC4::Pl_RC4(char const* identifier, Pipeline* next, + unsigned char const* key_data, int key_len, + size_t out_bufsize) : + Pipeline(identifier, next), + out_bufsize(out_bufsize), + rc4(key_data, key_len) +{ + this->outbuf = new unsigned char[out_bufsize]; +} + +Pl_RC4::~Pl_RC4() +{ + if (this->outbuf) + { + delete [] this->outbuf; + this->outbuf = 0; + } +} + +void +Pl_RC4::write(unsigned char* data, size_t len) +{ + if (this->outbuf == 0) + { + throw std::logic_error( + this->identifier + + ": Pl_RC4: write() called after finish() called"); + } + + size_t bytes_left = len; + unsigned char* p = data; + + while (bytes_left > 0) + { + size_t bytes = + (bytes_left < this->out_bufsize ? bytes_left : out_bufsize); + bytes_left -= bytes; + rc4.process(p, (int)bytes, outbuf); + p += bytes; + getNext()->write(outbuf, bytes); + } +} + +void +Pl_RC4::finish() +{ + if (this->outbuf) + { + delete [] this->outbuf; + this->outbuf = 0; + } + this->getNext()->finish(); +} diff --git a/libqpdf/Pl_StdioFile.cc b/libqpdf/Pl_StdioFile.cc new file mode 100644 index 0000000..bd56ac6 --- /dev/null +++ b/libqpdf/Pl_StdioFile.cc @@ -0,0 +1,50 @@ +#include // include first for large file support +#include +#include +#include +#include + +Pl_StdioFile::Pl_StdioFile(char const* identifier, FILE* f) : + Pipeline(identifier, 0), + file(f) +{ +} + +Pl_StdioFile::~Pl_StdioFile() +{ +} + +void +Pl_StdioFile::write(unsigned char* buf, size_t len) +{ + size_t so_far = 0; + while (len > 0) + { + so_far = fwrite(buf, 1, len, this->file); + if (so_far == 0) + { + QUtil::throw_system_error( + this->identifier + ": Pl_StdioFile::write"); + } + else + { + buf += so_far; + len -= so_far; + } + } +} + +void +Pl_StdioFile::finish() +{ + if (fileno(this->file) != -1) + { + fflush(this->file); + } + else + { + throw std::logic_error( + this->identifier + + ": Pl_StdioFile::finish: stream already closed"); + } +} diff --git a/libqpdf/QPDF.cc b/libqpdf/QPDF.cc new file mode 100644 index 0000000..efef337 --- /dev/null +++ b/libqpdf/QPDF.cc @@ -0,0 +1,2049 @@ +#include // include first for large file support +#include + +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +std::string QPDF::qpdf_version = "3.0.2"; + +static char const* EMPTY_PDF = + "%PDF-1.3\n" + "1 0 obj\n" + "<< /Type /Catalog /Pages 2 0 R >>\n" + "endobj\n" + "2 0 obj\n" + "<< /Type /Pages /Kids [] /Count 0 >>\n" + "endobj\n" + "xref\n" + "0 3\n" + "0000000000 65535 f \n" + "0000000009 00000 n \n" + "0000000058 00000 n \n" + "trailer << /Size 3 /Root 1 0 R >>\n" + "startxref\n" + "110\n" + "%%EOF\n"; + + +QPDF::ObjGen::ObjGen(int o = 0, int g = 0) : + obj(o), + gen(g) +{ +} + +bool +QPDF::ObjGen::operator<(ObjGen const& rhs) const +{ + return ((this->obj < rhs.obj) || + ((this->obj == rhs.obj) && (this->gen < rhs.gen))); +} + +void +QPDF::CopiedStreamDataProvider::provideStreamData( + int objid, int generation, Pipeline* pipeline) +{ + QPDFObjectHandle foreign_stream = + this->foreign_streams[ObjGen(objid, generation)]; + foreign_stream.pipeStreamData(pipeline, false, false, false); +} + +void +QPDF::CopiedStreamDataProvider::registerForeignStream( + ObjGen const& local_og, QPDFObjectHandle foreign_stream) +{ + this->foreign_streams[local_og] = foreign_stream; +} + +QPDF::StringDecrypter::StringDecrypter(QPDF* qpdf, int objid, int gen) : + qpdf(qpdf), + objid(objid), + gen(gen) +{ +} + +void +QPDF::StringDecrypter::decryptString(std::string& val) +{ + qpdf->decryptString(val, objid, gen); +} + +std::string const& +QPDF::QPDFVersion() +{ + return QPDF::qpdf_version; +} + +QPDF::QPDF() : + encrypted(false), + encryption_initialized(false), + ignore_xref_streams(false), + suppress_warnings(false), + out_stream(&std::cout), + err_stream(&std::cerr), + attempt_recovery(true), + encryption_V(0), + encrypt_metadata(true), + cf_stream(e_none), + cf_string(e_none), + cf_file(e_none), + cached_key_objid(0), + cached_key_generation(0), + pushed_inherited_attributes_to_pages(false), + copied_stream_data_provider(0), + first_xref_item_offset(0), + uncompressed_after_compressed(false) +{ +} + +QPDF::~QPDF() +{ + // If two objects are mutually referential (through each object + // having an array or dictionary that contains an indirect + // reference to the other), the circular references in the + // PointerHolder objects will prevent the objects from being + // deleted. Walk through all objects in the object cache, which + // is those objects that we read from the file, and break all + // resolved references. At this point, obviously no one is still + // using the QPDF object, but we'll explicitly clear the xref + // table anyway just to prevent any possibility of resolve() + // succeeding. Note that we can't break references like this at + // any time when the QPDF object is active. If we do, the next + // reference will reread the object from the file, which would + // have the effect of undoing any modifications that may have been + // made to any of the objects. + this->xref_table.clear(); + for (std::map::iterator iter = this->obj_cache.begin(); + iter != obj_cache.end(); ++iter) + { + QPDFObject::ObjAccessor::releaseResolved( + (*iter).second.object.getPointer()); + } +} + +void +QPDF::processFile(char const* filename, char const* password) +{ + FileInputSource* fi = new FileInputSource(); + this->file = fi; + fi->setFilename(filename); + parse(password); +} + +void +QPDF::processFile(char const* description, FILE* filep, + bool close_file, char const* password) +{ + FileInputSource* fi = new FileInputSource(); + this->file = fi; + fi->setFile(description, filep, close_file); + parse(password); +} + +void +QPDF::processMemoryFile(char const* description, + char const* buf, size_t length, + char const* password) +{ + this->file = + new BufferInputSource(description, + new Buffer((unsigned char*)buf, length), + true); + parse(password); +} + +void +QPDF::emptyPDF() +{ + processMemoryFile("empty PDF", EMPTY_PDF, strlen(EMPTY_PDF)); +} + +void +QPDF::setIgnoreXRefStreams(bool val) +{ + this->ignore_xref_streams = val; +} + +void +QPDF::setOutputStreams(std::ostream* out, std::ostream* err) +{ + this->out_stream = out ? out : &std::cout; + this->err_stream = err ? err : &std::cerr; +} + +void +QPDF::setSuppressWarnings(bool val) +{ + this->suppress_warnings = val; +} + +void +QPDF::setAttemptRecovery(bool val) +{ + this->attempt_recovery = val; +} + +std::vector +QPDF::getWarnings() +{ + std::vector result = this->warnings; + this->warnings.clear(); + return result; +} + +void +QPDF::parse(char const* password) +{ + PCRE header_re("^%PDF-(1.\\d+)\\b"); + PCRE eof_re("(?s:startxref\\s+(\\d+)\\s+%%EOF\\b)"); + + if (password) + { + this->provided_password = password; + } + + std::string line = this->file->readLine(20); + PCRE::Match m1 = header_re.match(line.c_str()); + if (m1) + { + this->pdf_version = m1.getMatch(1); + if (atof(this->pdf_version.c_str()) < 1.2) + { + this->tokenizer.allowPoundAnywhereInName(); + } + } + else + { + QTC::TC("qpdf", "QPDF not a pdf file"); + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "", 0, "not a PDF file"); + } + + // PDF spec says %%EOF must be found within the last 1024 bytes of + // the file. We add an extra 30 characters to leave room for the + // startxref stuff. + static int const tbuf_size = 1054; + this->file->seek(0, SEEK_END); + if (this->file->tell() > tbuf_size) + { + this->file->seek(-tbuf_size, SEEK_END); + } + else + { + this->file->rewind(); + } + char* buf = new char[tbuf_size + 1]; + // Put buf in an array-style PointerHolder to guarantee deletion + // of buf. + PointerHolder b(true, buf); + memset(buf, '\0', tbuf_size + 1); + this->file->read(buf, tbuf_size); + + // Since buf may contain null characters, we can't do a regexp + // search on buf directly. Find the last occurrence within buf + // where the regexp matches. + char* p = buf; + char const* candidate = ""; + while ((p = (char*)memchr(p, 's', tbuf_size - (p - buf))) != 0) + { + if (eof_re.match(p)) + { + candidate = p; + } + ++p; + } + + try + { + PCRE::Match m2 = eof_re.match(candidate); + if (! m2) + { + QTC::TC("qpdf", "QPDF can't find startxref"); + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), "", 0, + "can't find startxref"); + } + qpdf_offset_t xref_offset = QUtil::string_to_ll(m2.getMatch(1).c_str()); + read_xref(xref_offset); + } + catch (QPDFExc& e) + { + if (this->attempt_recovery) + { + reconstruct_xref(e); + QTC::TC("qpdf", "QPDF reconstructed xref table"); + } + else + { + throw e; + } + } + + initializeEncryption(); +} + +void +QPDF::warn(QPDFExc const& e) +{ + this->warnings.push_back(e); + if (! this->suppress_warnings) + { + *err_stream << "WARNING: " + << this->warnings.back().what() << std::endl; + } +} + +void +QPDF::setTrailer(QPDFObjectHandle obj) +{ + if (this->trailer.isInitialized()) + { + return; + } + this->trailer = obj; +} + +void +QPDF::reconstruct_xref(QPDFExc& e) +{ + PCRE obj_re("^\\s*(\\d+)\\s+(\\d+)\\s+obj\\b"); + PCRE endobj_re("^\\s*endobj\\b"); + PCRE trailer_re("^\\s*trailer\\b"); + + warn(QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), "", 0, + "file is damaged")); + warn(e); + warn(QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), "", 0, + "Attempting to reconstruct cross-reference table")); + + // Delete all references to type 1 (uncompressed) objects + std::set to_delete; + for (std::map::iterator iter = + this->xref_table.begin(); + iter != this->xref_table.end(); ++iter) + { + if (((*iter).second).getType() == 1) + { + to_delete.insert((*iter).first); + } + } + for (std::set::iterator iter = to_delete.begin(); + iter != to_delete.end(); ++iter) + { + this->xref_table.erase(*iter); + } + + this->file->seek(0, SEEK_END); + qpdf_offset_t eof = this->file->tell(); + this->file->seek(0, SEEK_SET); + bool in_obj = false; + while (this->file->tell() < eof) + { + std::string line = this->file->readLine(50); + if (in_obj) + { + if (endobj_re.match(line.c_str())) + { + in_obj = false; + } + } + else + { + PCRE::Match m = obj_re.match(line.c_str()); + if (m) + { + in_obj = true; + int obj = atoi(m.getMatch(1).c_str()); + int gen = atoi(m.getMatch(2).c_str()); + qpdf_offset_t offset = this->file->getLastOffset(); + insertXrefEntry(obj, 1, offset, gen, true); + } + else if ((! this->trailer.isInitialized()) && + trailer_re.match(line.c_str())) + { + // read "trailer" + this->file->seek(this->file->getLastOffset(), SEEK_SET); + readToken(this->file); + QPDFObjectHandle t = + readObject(this->file, "trailer", 0, 0, false); + if (! t.isDictionary()) + { + // Oh well. It was worth a try. + } + else + { + setTrailer(t); + } + } + } + } + + if (! this->trailer.isInitialized()) + { + // We could check the last encountered object to see if it was + // an xref stream. If so, we could try to get the trailer + // from there. This may make it possible to recover files + // with bad startxref pointers even when they have object + // streams. + + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), "", 0, + "unable to find trailer " + "dictionary while recovering damaged file"); + } + + // We could iterate through the objects looking for streams and + // try to find objects inside of them, but it's probably not worth + // the trouble. Acrobat can't recover files with any errors in an + // xref stream, and this would be a real long shot anyway. If we + // wanted to do anything that involved looking at stream contents, + // we'd also have to call initializeEncryption() here. It's safe + // to call it more than once. +} + +void +QPDF::read_xref(qpdf_offset_t xref_offset) +{ + std::map free_table; + while (xref_offset) + { + this->file->seek(xref_offset, SEEK_SET); + std::string line = this->file->readLine(50); + if (line == "xref") + { + xref_offset = read_xrefTable(this->file->tell()); + } + else + { + xref_offset = read_xrefStream(xref_offset); + } + } + + if (! this->trailer.isInitialized()) + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), "", 0, + "unable to find trailer while reading xref"); + } + int size = this->trailer.getKey("/Size").getIntValue(); + int max_obj = 0; + if (! xref_table.empty()) + { + max_obj = (*(xref_table.rbegin())).first.obj; + } + if (! this->deleted_objects.empty()) + { + max_obj = std::max(max_obj, *(this->deleted_objects.rbegin())); + } + if (size != max_obj + 1) + { + QTC::TC("qpdf", "QPDF xref size mismatch"); + warn(QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), "", 0, + std::string("reported number of objects (") + + QUtil::int_to_string(size) + + ") inconsistent with actual number of objects (" + + QUtil::int_to_string(max_obj + 1) + ")")); + } + + // We no longer need the deleted_objects table, so go ahead and + // clear it out to make sure we never depend on its being set. + this->deleted_objects.clear(); +} + +qpdf_offset_t +QPDF::read_xrefTable(qpdf_offset_t xref_offset) +{ + PCRE xref_first_re("^\\s*(\\d+)\\s+(\\d+)"); + PCRE xref_entry_re("(?s:(^\\d{10}) (\\d{5}) ([fn])[ \r\n]{2}$)"); + + std::vector deleted_items; + + this->file->seek(xref_offset, SEEK_SET); + bool done = false; + while (! done) + { + std::string line = this->file->readLine(50); + PCRE::Match m1 = xref_first_re.match(line.c_str()); + if (! m1) + { + QTC::TC("qpdf", "QPDF invalid xref"); + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "xref table", this->file->getLastOffset(), + "xref syntax invalid"); + } + int obj = atoi(m1.getMatch(1).c_str()); + int num = atoi(m1.getMatch(2).c_str()); + static int const xref_entry_size = 20; + char xref_entry[xref_entry_size + 1]; + for (int i = obj; i < obj + num; ++i) + { + if (i == 0) + { + // This is needed by checkLinearization() + this->first_xref_item_offset = this->file->tell(); + } + memset(xref_entry, 0, sizeof(xref_entry)); + this->file->read(xref_entry, xref_entry_size); + PCRE::Match m2 = xref_entry_re.match(xref_entry); + if (! m2) + { + QTC::TC("qpdf", "QPDF invalid xref entry"); + throw QPDFExc( + qpdf_e_damaged_pdf, this->file->getName(), + "xref table", this->file->getLastOffset(), + "invalid xref entry (obj=" + + QUtil::int_to_string(i) + ")"); + } + + // For xref_table, these will always be small enough to be ints + qpdf_offset_t f1 = QUtil::string_to_ll(m2.getMatch(1).c_str()); + int f2 = atoi(m2.getMatch(2).c_str()); + char type = m2.getMatch(3)[0]; + if (type == 'f') + { + // Save deleted items until after we've checked the + // XRefStm, if any. + deleted_items.push_back(ObjGen(i, f2)); + } + else + { + insertXrefEntry(i, 1, f1, f2); + } + } + qpdf_offset_t pos = this->file->tell(); + QPDFTokenizer::Token t = readToken(this->file); + if (t == QPDFTokenizer::Token(QPDFTokenizer::tt_word, "trailer")) + { + done = true; + } + else + { + this->file->seek(pos, SEEK_SET); + } + } + + // Set offset to previous xref table if any + QPDFObjectHandle cur_trailer = + readObject(this->file, "trailer", 0, 0, false); + if (! cur_trailer.isDictionary()) + { + QTC::TC("qpdf", "QPDF missing trailer"); + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "", this->file->getLastOffset(), + "expected trailer dictionary"); + } + + if (! this->trailer.isInitialized()) + { + setTrailer(cur_trailer); + + if (! this->trailer.hasKey("/Size")) + { + QTC::TC("qpdf", "QPDF trailer lacks size"); + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "trailer", this->file->getLastOffset(), + "trailer dictionary lacks /Size key"); + } + if (! this->trailer.getKey("/Size").isInteger()) + { + QTC::TC("qpdf", "QPDF trailer size not integer"); + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "trailer", this->file->getLastOffset(), + "/Size key in trailer dictionary is not " + "an integer"); + } + } + + if (cur_trailer.hasKey("/XRefStm")) + { + if (this->ignore_xref_streams) + { + QTC::TC("qpdf", "QPDF ignoring XRefStm in trailer"); + } + else + { + if (cur_trailer.getKey("/XRefStm").isInteger()) + { + // Read the xref stream but disregard any return value + // -- we'll use our trailer's /Prev key instead of the + // xref stream's. + (void) read_xrefStream( + cur_trailer.getKey("/XRefStm").getIntValue()); + } + else + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "xref stream", xref_offset, + "invalid /XRefStm"); + } + } + } + + // Handle any deleted items now that we've read the /XRefStm. + for (std::vector::iterator iter = deleted_items.begin(); + iter != deleted_items.end(); ++iter) + { + ObjGen& og = *iter; + insertXrefEntry(og.obj, 0, 0, og.gen); + } + + if (cur_trailer.hasKey("/Prev")) + { + if (! cur_trailer.getKey("/Prev").isInteger()) + { + QTC::TC("qpdf", "QPDF trailer prev not integer"); + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "trailer", this->file->getLastOffset(), + "/Prev key in trailer dictionary is not " + "an integer"); + } + QTC::TC("qpdf", "QPDF prev key in trailer dictionary"); + xref_offset = cur_trailer.getKey("/Prev").getIntValue(); + } + else + { + xref_offset = 0; + } + + return xref_offset; +} + +qpdf_offset_t +QPDF::read_xrefStream(qpdf_offset_t xref_offset) +{ + bool found = false; + if (! this->ignore_xref_streams) + { + int xobj; + int xgen; + QPDFObjectHandle xref_obj; + try + { + xref_obj = readObjectAtOffset( + false, xref_offset, "xref stream", -1, 0, xobj, xgen); + } + catch (QPDFExc& e) + { + // ignore -- report error below + } + if (xref_obj.isInitialized() && + xref_obj.isStream() && + xref_obj.getDict().getKey("/Type").isName() && + xref_obj.getDict().getKey("/Type").getName() == "/XRef") + { + QTC::TC("qpdf", "QPDF found xref stream"); + found = true; + xref_offset = processXRefStream(xref_offset, xref_obj); + } + } + + if (! found) + { + QTC::TC("qpdf", "QPDF can't find xref"); + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "", xref_offset, "xref not found"); + } + + return xref_offset; +} + +qpdf_offset_t +QPDF::processXRefStream(qpdf_offset_t xref_offset, QPDFObjectHandle& xref_obj) +{ + QPDFObjectHandle dict = xref_obj.getDict(); + QPDFObjectHandle W_obj = dict.getKey("/W"); + QPDFObjectHandle Index_obj = dict.getKey("/Index"); + if (! (W_obj.isArray() && + (W_obj.getArrayNItems() >= 3) && + W_obj.getArrayItem(0).isInteger() && + W_obj.getArrayItem(1).isInteger() && + W_obj.getArrayItem(2).isInteger() && + dict.getKey("/Size").isInteger() && + (Index_obj.isArray() || Index_obj.isNull()))) + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "xref stream", xref_offset, + "Cross-reference stream does not have" + " proper /W and /Index keys"); + } + std::vector indx; + if (Index_obj.isArray()) + { + int n_index = Index_obj.getArrayNItems(); + if ((n_index % 2) || (n_index < 2)) + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "xref stream", xref_offset, + "Cross-reference stream's /Index has an" + " invalid number of values"); + } + for (int i = 0; i < n_index; ++i) + { + if (Index_obj.getArrayItem(i).isInteger()) + { + indx.push_back(Index_obj.getArrayItem(i).getIntValue()); + } + else + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "xref stream", xref_offset, + "Cross-reference stream's /Index's item " + + QUtil::int_to_string(i) + + " is not an integer"); + } + } + QTC::TC("qpdf", "QPDF xref /Index is array", + n_index == 2 ? 0 : 1); + } + else + { + QTC::TC("qpdf", "QPDF xref /Index is null"); + int size = dict.getKey("/Size").getIntValue(); + indx.push_back(0); + indx.push_back(size); + } + + int num_entries = 0; + for (unsigned int i = 1; i < indx.size(); i += 2) + { + num_entries += indx[i]; + } + + int W[3]; + int entry_size = 0; + for (int i = 0; i < 3; ++i) + { + W[i] = W_obj.getArrayItem(i).getIntValue(); + entry_size += W[i]; + } + + size_t expected_size = entry_size * num_entries; + + PointerHolder bp = xref_obj.getStreamData(); + size_t actual_size = bp->getSize(); + + if (expected_size != actual_size) + { + QPDFExc x(qpdf_e_damaged_pdf, this->file->getName(), + "xref stream", xref_offset, + "Cross-reference stream data has the wrong size;" + " expected = " + QUtil::int_to_string(expected_size) + + "; actual = " + QUtil::int_to_string(actual_size)); + if (expected_size > actual_size) + { + throw x; + } + else + { + warn(x); + } + } + + int cur_chunk = 0; + int chunk_count = 0; + + bool saw_first_compressed_object = false; + + unsigned char const* data = bp->getBuffer(); + for (int i = 0; i < num_entries; ++i) + { + // Read this entry + unsigned char const* entry = data + (entry_size * i); + qpdf_offset_t fields[3]; + unsigned char const* p = entry; + for (int j = 0; j < 3; ++j) + { + fields[j] = 0; + if ((j == 0) && (W[0] == 0)) + { + QTC::TC("qpdf", "QPDF default for xref stream field 0"); + fields[0] = 1; + } + for (int k = 0; k < W[j]; ++k) + { + fields[j] <<= 8; + fields[j] += (int)(*p++); + } + } + + // Get the object and generation number. The object number is + // based on /Index. The generation number is 0 unless this is + // an uncompressed object record, in which case the generation + // number appears as the third field. + int obj = indx[cur_chunk] + chunk_count; + ++chunk_count; + if (chunk_count >= indx[cur_chunk + 1]) + { + cur_chunk += 2; + chunk_count = 0; + } + + if (saw_first_compressed_object) + { + if (fields[0] != 2) + { + this->uncompressed_after_compressed = true; + } + } + else if (fields[0] == 2) + { + saw_first_compressed_object = true; + } + if (obj == 0) + { + // This is needed by checkLinearization() + this->first_xref_item_offset = xref_offset; + } + insertXrefEntry(obj, (int)fields[0], fields[1], (int)fields[2]); + } + + if (! this->trailer.isInitialized()) + { + setTrailer(dict); + } + + if (dict.hasKey("/Prev")) + { + if (! dict.getKey("/Prev").isInteger()) + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "xref stream", this->file->getLastOffset(), + "/Prev key in xref stream dictionary is not " + "an integer"); + } + QTC::TC("qpdf", "QPDF prev key in xref stream dictionary"); + xref_offset = dict.getKey("/Prev").getIntValue(); + } + else + { + xref_offset = 0; + } + + return xref_offset; +} + +void +QPDF::insertXrefEntry(int obj, int f0, qpdf_offset_t f1, int f2, bool overwrite) +{ + // Populate the xref table in such a way that the first reference + // to an object that we see, which is the one in the latest xref + // table in which it appears, is the one that gets stored. This + // works because we are reading more recent appends before older + // ones. Exception: if overwrite is true, then replace any + // existing object. This is used in xref recovery mode, which + // reads the file from beginning to end. + + // If there is already an entry for this object and generation in + // the table, it means that a later xref table has registered this + // object. Disregard this one. + { // private scope + int gen = (f0 == 2 ? 0 : f2); + ObjGen og(obj, gen); + if (this->xref_table.count(og)) + { + if (overwrite) + { + QTC::TC("qpdf", "QPDF xref overwrite object"); + this->xref_table.erase(og); + } + else + { + QTC::TC("qpdf", "QPDF xref reused object"); + return; + } + } + if (this->deleted_objects.count(obj)) + { + QTC::TC("qpdf", "QPDF xref deleted object"); + return; + } + } + + switch (f0) + { + case 0: + this->deleted_objects.insert(obj); + break; + + case 1: + // f2 is generation + QTC::TC("qpdf", "QPDF xref gen > 0", ((f2 > 0) ? 1 : 0)); + this->xref_table[ObjGen(obj, f2)] = QPDFXRefEntry(f0, f1, f2); + break; + + case 2: + this->xref_table[ObjGen(obj, 0)] = QPDFXRefEntry(f0, f1, f2); + break; + + default: + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "xref stream", this->file->getLastOffset(), + "unknown xref stream entry type " + + QUtil::int_to_string(f0)); + break; + } +} + +void +QPDF::showXRefTable() +{ + for (std::map::iterator iter = + this->xref_table.begin(); + iter != this->xref_table.end(); ++iter) + { + ObjGen const& og = (*iter).first; + QPDFXRefEntry const& entry = (*iter).second; + *out_stream << og.obj << "/" << og.gen << ": "; + switch (entry.getType()) + { + case 1: + *out_stream << "uncompressed; offset = " << entry.getOffset(); + break; + + case 2: + *out_stream << "compressed; stream = " << entry.getObjStreamNumber() + << ", index = " << entry.getObjStreamIndex(); + break; + + default: + throw std::logic_error("unknown cross-reference table type while" + " showing xref_table"); + break; + } + *out_stream << std::endl; + } +} + +void +QPDF::setLastObjectDescription(std::string const& description, + int objid, int generation) +{ + this->last_object_description.clear(); + if (! description.empty()) + { + this->last_object_description += description; + if (objid > 0) + { + this->last_object_description += ": "; + } + } + if (objid > 0) + { + this->last_object_description += "object " + + QUtil::int_to_string(objid) + " " + + QUtil::int_to_string(generation); + } +} + +QPDFObjectHandle +QPDF::readObject(PointerHolder input, + std::string const& description, + int objid, int generation, bool in_object_stream) +{ + setLastObjectDescription(description, objid, generation); + qpdf_offset_t offset = input->tell(); + + bool empty = false; + PointerHolder decrypter_ph; + StringDecrypter* decrypter = 0; + if (this->encrypted && (! in_object_stream)) + { + decrypter_ph = new StringDecrypter(this, objid, generation); + decrypter = decrypter_ph.getPointer(); + } + QPDFObjectHandle object = QPDFObjectHandle::parse( + input, description, this->tokenizer, empty, decrypter, this); + if (empty) + { + // Nothing in the PDF spec appears to allow empty objects, but + // they have been encountered in actual PDF files and Adobe + // Reader appears to ignore them. + warn(QPDFExc(qpdf_e_damaged_pdf, input->getName(), + this->last_object_description, + input->getLastOffset(), + "empty object treated as null")); + } + else if (object.isDictionary() && (! in_object_stream)) + { + // check for stream + qpdf_offset_t cur_offset = input->tell(); + if (readToken(input) == + QPDFTokenizer::Token(QPDFTokenizer::tt_word, "stream")) + { + // The PDF specification states that the word "stream" + // should be followed by either a carriage return and + // a newline or by a newline alone. It specifically + // disallowed following it by a carriage return alone + // since, in that case, there would be no way to tell + // whether the NL in a CR NL sequence was part of the + // stream data. However, some readers, including + // Adobe reader, accept a carriage return by itself + // when followed by a non-newline character, so that's + // what we do here. + { + char ch; + if (input->read(&ch, 1) == 0) + { + // A premature EOF here will result in some + // other problem that will get reported at + // another time. + } + else if (ch == '\n') + { + // ready to read stream data + QTC::TC("qpdf", "QPDF stream with NL only"); + } + else if (ch == '\r') + { + // Read another character + if (input->read(&ch, 1) != 0) + { + if (ch == '\n') + { + // Ready to read stream data + QTC::TC("qpdf", "QPDF stream with CRNL"); + } + else + { + // Treat the \r by itself as the + // whitespace after endstream and + // start reading stream data in spite + // of not having seen a newline. + QTC::TC("qpdf", "QPDF stream with CR only"); + input->unreadCh(ch); + warn(QPDFExc( + qpdf_e_damaged_pdf, + input->getName(), + this->last_object_description, + input->tell(), + "stream keyword followed" + " by carriage return only")); + } + } + } + else + { + QTC::TC("qpdf", "QPDF stream without newline"); + warn(QPDFExc(qpdf_e_damaged_pdf, input->getName(), + this->last_object_description, + input->tell(), + "stream keyword not followed" + " by proper line terminator")); + } + } + + // Must get offset before accessing any additional + // objects since resolving a previously unresolved + // indirect object will change file position. + qpdf_offset_t stream_offset = input->tell(); + size_t length = 0; + + try + { + std::map dict = + object.getDictAsMap(); + + if (dict.count("/Length") == 0) + { + QTC::TC("qpdf", "QPDF stream without length"); + throw QPDFExc(qpdf_e_damaged_pdf, input->getName(), + this->last_object_description, offset, + "stream dictionary lacks /Length key"); + } + + QPDFObjectHandle length_obj = dict["/Length"]; + if (! length_obj.isInteger()) + { + QTC::TC("qpdf", "QPDF stream length not integer"); + throw QPDFExc(qpdf_e_damaged_pdf, input->getName(), + this->last_object_description, offset, + "/Length key in stream dictionary is not " + "an integer"); + } + + length = length_obj.getIntValue(); + input->seek( + stream_offset + (qpdf_offset_t)length, SEEK_SET); + if (! (readToken(input) == + QPDFTokenizer::Token( + QPDFTokenizer::tt_word, "endstream"))) + { + QTC::TC("qpdf", "QPDF missing endstream"); + throw QPDFExc(qpdf_e_damaged_pdf, input->getName(), + this->last_object_description, + input->getLastOffset(), + "expected endstream"); + } + } + catch (QPDFExc& e) + { + if (this->attempt_recovery) + { + // may throw an exception + length = recoverStreamLength( + input, objid, generation, stream_offset); + } + else + { + throw e; + } + } + object = QPDFObjectHandle::Factory::newStream( + this, objid, generation, object, stream_offset, length); + } + else + { + input->seek(cur_offset, SEEK_SET); + } + } + + // Override last_offset so that it points to the beginning of the + // object we just read + input->setLastOffset(offset); + return object; +} + +size_t +QPDF::recoverStreamLength(PointerHolder input, + int objid, int generation, + qpdf_offset_t stream_offset) +{ + PCRE endobj_re("^\\s*endobj\\b"); + + // Try to reconstruct stream length by looking for + // endstream(\r\n?|\n)endobj + warn(QPDFExc(qpdf_e_damaged_pdf, input->getName(), + this->last_object_description, stream_offset, + "attempting to recover stream length")); + + input->seek(0, SEEK_END); + qpdf_offset_t eof = input->tell(); + input->seek(stream_offset, SEEK_SET); + qpdf_offset_t last_line_offset = 0; + size_t length = 0; + static int const line_end_length = 12; // room for endstream\r\n\0 + char last_line_end[line_end_length]; + while (input->tell() < eof) + { + std::string line = input->readLine(50); + qpdf_offset_t line_offset = input->getLastOffset(); + if (endobj_re.match(line.c_str())) + { + qpdf_offset_t endstream_offset = 0; + if (last_line_offset >= line_end_length) + { + qpdf_offset_t cur_offset = input->tell(); + // Read from the end of the last line, guaranteeing + // null termination + qpdf_offset_t search_offset = + line_offset - (line_end_length - 1); + input->seek(search_offset, SEEK_SET); + memset(last_line_end, '\0', line_end_length); + input->read(last_line_end, line_end_length - 1); + input->seek(cur_offset, SEEK_SET); + // if endstream[\r\n] will fit in last_line_end, the + // 'e' has to be in one of the first three spots. + // Check explicitly rather than using strstr directly + // in case there are nulls right before endstream. + char* p = ((last_line_end[0] == 'e') ? last_line_end : + (last_line_end[1] == 'e') ? last_line_end + 1 : + (last_line_end[2] == 'e') ? last_line_end + 2 : + 0); + char* endstream_p = 0; + if (p) + { + char* p1 = strstr(p, "endstream\n"); + char* p2 = strstr(p, "endstream\r"); + endstream_p = (p1 ? p1 : p2); + } + if (endstream_p) + { + endstream_offset = + search_offset + (endstream_p - last_line_end); + } + } + if (endstream_offset > 0) + { + // Stream probably ends right before "endstream" + length = endstream_offset - stream_offset; + // Go back to where we would have been if we had just + // read the endstream. + input->seek(line_offset, SEEK_SET); + break; + } + } + last_line_offset = line_offset; + } + + if (length) + { + int this_obj_offset = 0; + ObjGen this_obj(0, 0); + + // Make sure this is inside this object + for (std::map::iterator iter = + this->xref_table.begin(); + iter != this->xref_table.end(); ++iter) + { + ObjGen const& og = (*iter).first; + QPDFXRefEntry const& entry = (*iter).second; + if (entry.getType() == 1) + { + qpdf_offset_t obj_offset = entry.getOffset(); + if ((obj_offset > stream_offset) && + ((this_obj_offset == 0) || + (this_obj_offset > obj_offset))) + { + this_obj_offset = obj_offset; + this_obj = og; + } + } + } + if (this_obj_offset && + (this_obj.obj == objid) && + (this_obj.gen == generation)) + { + // Well, we found endstream\nendobj within the space + // allowed for this object, so we're probably in good + // shape. + } + else + { + QTC::TC("qpdf", "QPDF found wrong endstream in recovery"); + } + } + + if (length == 0) + { + throw QPDFExc(qpdf_e_damaged_pdf, input->getName(), + this->last_object_description, stream_offset, + "unable to recover stream data"); + } + + QTC::TC("qpdf", "QPDF recovered stream length"); + return length; +} + +QPDFTokenizer::Token +QPDF::readToken(PointerHolder input) +{ + return this->tokenizer.readToken(input, this->last_object_description); +} + +QPDFObjectHandle +QPDF::readObjectAtOffset(bool try_recovery, + qpdf_offset_t offset, std::string const& description, + int exp_objid, int exp_generation, + int& objid, int& generation) +{ + setLastObjectDescription(description, exp_objid, exp_generation); + this->file->seek(offset, SEEK_SET); + + QPDFTokenizer::Token tobjid = readToken(this->file); + QPDFTokenizer::Token tgen = readToken(this->file); + QPDFTokenizer::Token tobj = readToken(this->file); + + bool objidok = (tobjid.getType() == QPDFTokenizer::tt_integer); + int genok = (tgen.getType() == QPDFTokenizer::tt_integer); + int objok = (tobj == QPDFTokenizer::Token(QPDFTokenizer::tt_word, "obj")); + + QTC::TC("qpdf", "QPDF check objid", objidok ? 1 : 0); + QTC::TC("qpdf", "QPDF check generation", genok ? 1 : 0); + QTC::TC("qpdf", "QPDF check obj", objok ? 1 : 0); + + try + { + if (! (objidok && genok && objok)) + { + QTC::TC("qpdf", "QPDF expected n n obj"); + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + this->last_object_description, offset, + "expected n n obj"); + } + objid = atoi(tobjid.getValue().c_str()); + generation = atoi(tgen.getValue().c_str()); + + if ((exp_objid >= 0) && + (! ((objid == exp_objid) && (generation == exp_generation)))) + { + QTC::TC("qpdf", "QPDF err wrong objid/generation"); + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + this->last_object_description, offset, + std::string("expected ") + + QUtil::int_to_string(exp_objid) + " " + + QUtil::int_to_string(exp_generation) + " obj"); + } + } + catch (QPDFExc& e) + { + if ((exp_objid >= 0) && try_recovery && this->attempt_recovery) + { + // Try again after reconstructing xref table + reconstruct_xref(e); + ObjGen og(exp_objid, exp_generation); + if (this->xref_table.count(og) && + (this->xref_table[og].getType() == 1)) + { + qpdf_offset_t new_offset = this->xref_table[og].getOffset(); + QPDFObjectHandle result = readObjectAtOffset( + false, new_offset, description, + exp_objid, exp_generation, objid, generation); + QTC::TC("qpdf", "QPDF recovered in readObjectAtOffset"); + return result; + } + else + { + QTC::TC("qpdf", "QPDF object gone after xref reconstruction"); + warn(QPDFExc( + qpdf_e_damaged_pdf, this->file->getName(), + "", 0, + std::string( + "object " + + QUtil::int_to_string(exp_objid) + + " " + + QUtil::int_to_string(exp_generation) + + " not found in file after regenerating" + " cross reference table"))); + return QPDFObjectHandle::newNull(); + } + } + else + { + throw e; + } + } + + QPDFObjectHandle oh = readObject( + this->file, description, objid, generation, false); + + if (! (readToken(this->file) == + QPDFTokenizer::Token(QPDFTokenizer::tt_word, "endobj"))) + { + QTC::TC("qpdf", "QPDF err expected endobj"); + warn(QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + this->last_object_description, this->file->getLastOffset(), + "expected endobj")); + } + + ObjGen og(objid, generation); + if (! this->obj_cache.count(og)) + { + // Store the object in the cache here so it gets cached + // whether we first know the offset or whether we first know + // the object ID and generation (in which we case we would get + // here through resolve). + + // Determine the end offset of this object before and after + // white space. We use these numbers to validate + // linearization hint tables. Offsets and lengths of objects + // may imply the end of an object to be anywhere between these + // values. + qpdf_offset_t end_before_space = this->file->tell(); + + // skip over spaces + while (true) + { + char ch; + if (this->file->read(&ch, 1)) + { + if (! isspace((unsigned char)ch)) + { + this->file->seek(-1, SEEK_CUR); + break; + } + } + else + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + this->last_object_description, offset, + "EOF after endobj"); + } + } + qpdf_offset_t end_after_space = this->file->tell(); + + this->obj_cache[og] = + ObjCache(QPDFObjectHandle::ObjAccessor::getObject(oh), + end_before_space, end_after_space); + } + + return oh; +} + +PointerHolder +QPDF::resolve(int objid, int generation) +{ + // Check object cache before checking xref table. This allows us + // to insert things into the object cache that don't actually + // exist in the file. + ObjGen og(objid, generation); + if (! this->obj_cache.count(og)) + { + if (! this->xref_table.count(og)) + { + // PDF spec says unknown objects resolve to the null object. + return new QPDF_Null; + } + + QPDFXRefEntry const& entry = this->xref_table[og]; + switch (entry.getType()) + { + case 1: + { + qpdf_offset_t offset = entry.getOffset(); + // Object stored in cache by readObjectAtOffset + int aobjid; + int ageneration; + QPDFObjectHandle oh = + readObjectAtOffset(true, offset, "", objid, generation, + aobjid, ageneration); + } + break; + + case 2: + resolveObjectsInStream(entry.getObjStreamNumber()); + break; + + default: + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), "", 0, + "object " + + QUtil::int_to_string(objid) + "/" + + QUtil::int_to_string(generation) + + " has unexpected xref entry type"); + } + } + + return this->obj_cache[og].object; +} + +void +QPDF::resolveObjectsInStream(int obj_stream_number) +{ + // Force resolution of object stream + QPDFObjectHandle obj_stream = getObjectByID(obj_stream_number, 0); + if (! obj_stream.isStream()) + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + this->last_object_description, + this->file->getLastOffset(), + "supposed object stream " + + QUtil::int_to_string(obj_stream_number) + + " is not a stream"); + } + + // For linearization data in the object, use the data from the + // object stream for the objects in the stream. + ObjGen stream_og(obj_stream_number, 0); + qpdf_offset_t end_before_space = + this->obj_cache[stream_og].end_before_space; + qpdf_offset_t end_after_space = + this->obj_cache[stream_og].end_after_space; + + QPDFObjectHandle dict = obj_stream.getDict(); + if (! (dict.getKey("/Type").isName() && + dict.getKey("/Type").getName() == "/ObjStm")) + { + QTC::TC("qpdf", "QPDF ERR object stream with wrong type"); + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + this->last_object_description, + this->file->getLastOffset(), + "supposed object stream " + + QUtil::int_to_string(obj_stream_number) + + " has wrong type"); + } + + if (! (dict.getKey("/N").isInteger() && + dict.getKey("/First").isInteger())) + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + this->last_object_description, + this->file->getLastOffset(), + "object stream " + + QUtil::int_to_string(obj_stream_number) + + " has incorrect keys"); + } + + int n = dict.getKey("/N").getIntValue(); + int first = dict.getKey("/First").getIntValue(); + + std::map offsets; + + PointerHolder bp = obj_stream.getStreamData(); + PointerHolder input = new BufferInputSource( + "object stream " + QUtil::int_to_string(obj_stream_number), + bp.getPointer()); + + for (int i = 0; i < n; ++i) + { + QPDFTokenizer::Token tnum = readToken(input); + QPDFTokenizer::Token toffset = readToken(input); + if (! ((tnum.getType() == QPDFTokenizer::tt_integer) && + (toffset.getType() == QPDFTokenizer::tt_integer))) + { + throw QPDFExc(qpdf_e_damaged_pdf, input->getName(), + this->last_object_description, input->getLastOffset(), + "expected integer in object stream header"); + } + + int num = atoi(tnum.getValue().c_str()); + int offset = QUtil::string_to_ll(toffset.getValue().c_str()); + offsets[num] = offset + first; + } + + for (std::map::iterator iter = offsets.begin(); + iter != offsets.end(); ++iter) + { + int obj = (*iter).first; + int offset = (*iter).second; + input->seek(offset, SEEK_SET); + QPDFObjectHandle oh = readObject(input, "", obj, 0, true); + + // Store in cache + ObjGen og(obj, 0); + + this->obj_cache[og] = + ObjCache(QPDFObjectHandle::ObjAccessor::getObject(oh), + end_before_space, end_after_space); + } +} + +QPDFObjectHandle +QPDF::makeIndirectObject(QPDFObjectHandle oh) +{ + ObjGen o1(0, 0); + if (! this->obj_cache.empty()) + { + o1 = (*(this->obj_cache.rbegin())).first; + } + ObjGen o2 = (*(this->xref_table.rbegin())).first; + QTC::TC("qpdf", "QPDF indirect last obj from xref", + (o2.obj > o1.obj) ? 1 : 0); + int max_objid = std::max(o1.obj, o2.obj); + ObjGen next(max_objid + 1, 0); + this->obj_cache[next] = + ObjCache(QPDFObjectHandle::ObjAccessor::getObject(oh), -1, -1); + return QPDFObjectHandle::Factory::newIndirect(this, next.obj, next.gen); +} + +QPDFObjectHandle +QPDF::getObjectByID(int objid, int generation) +{ + return QPDFObjectHandle::Factory::newIndirect(this, objid, generation); +} + +void +QPDF::replaceObject(int objid, int generation, QPDFObjectHandle oh) +{ + if (oh.isIndirect()) + { + QTC::TC("qpdf", "QPDF replaceObject called with indirect object"); + throw std::logic_error( + "QPDF::replaceObject called with indirect object handle"); + } + + // Force new object to appear in the cache + resolve(objid, generation); + + // Replace the object in the object cache + ObjGen og(objid, generation); + this->obj_cache[og] = + ObjCache(QPDFObjectHandle::ObjAccessor::getObject(oh), -1, -1); +} + +void +QPDF::replaceReserved(QPDFObjectHandle reserved, + QPDFObjectHandle replacement) +{ + QTC::TC("qpdf", "QPDF replaceReserved"); + reserved.assertReserved(); + replaceObject(reserved.getObjectID(), + reserved.getGeneration(), + replacement); +} + +QPDFObjectHandle +QPDF::copyForeignObject(QPDFObjectHandle foreign) +{ + return copyForeignObject(foreign, false); +} + +QPDFObjectHandle +QPDF::copyForeignObject(QPDFObjectHandle foreign, bool allow_page) +{ + if (! foreign.isIndirect()) + { + QTC::TC("qpdf", "QPDF copyForeign direct"); + throw std::logic_error( + "QPDF::copyForeign called with direct object handle"); + } + QPDF* other = foreign.getOwningQPDF(); + if (other == this) + { + QTC::TC("qpdf", "QPDF copyForeign not foreign"); + throw std::logic_error( + "QPDF::copyForeign called with object from this QPDF"); + } + + ObjCopier& obj_copier = this->object_copiers[other]; + if (! obj_copier.visiting.empty()) + { + throw std::logic_error("obj_copier.visiting is not empty" + " at the beginning of copyForeignObject"); + } + + // Make sure we have an object in this file for every referenced + // object in the old file. obj_copier.object_map maps foreign + // ObjGen to local objects. For everything new that we have to + // copy, the local object will be a reservation, unless it is a + // stream, in which case the local object will already be a + // stream. + reserveObjects(foreign, obj_copier, true); + + if (! obj_copier.visiting.empty()) + { + throw std::logic_error("obj_copier.visiting is not empty" + " after reserving objects"); + } + + // Copy any new objects and replace the reservations. + for (std::vector::iterator iter = + obj_copier.to_copy.begin(); + iter != obj_copier.to_copy.end(); ++iter) + { + QPDFObjectHandle& to_copy = *iter; + QPDFObjectHandle copy = + replaceForeignIndirectObjects(to_copy, obj_copier, true); + if (! to_copy.isStream()) + { + ObjGen og(to_copy.getObjectID(), to_copy.getGeneration()); + replaceReserved(obj_copier.object_map[og], copy); + } + } + obj_copier.to_copy.clear(); + + return obj_copier.object_map[ObjGen(foreign.getObjectID(), + foreign.getGeneration())]; +} + +void +QPDF::reserveObjects(QPDFObjectHandle foreign, ObjCopier& obj_copier, + bool top) +{ + if (foreign.isReserved()) + { + throw std::logic_error( + "QPDF: attempting to copy a foreign reserved object"); + } + + if (foreign.isPagesObject()) + { + QTC::TC("qpdf", "QPDF not copying pages object"); + return; + } + + if ((! top) && foreign.isPageObject()) + { + QTC::TC("qpdf", "QPDF not crossing page boundary"); + return; + } + + if (foreign.isIndirect()) + { + ObjGen foreign_og(foreign.getObjectID(), foreign.getGeneration()); + if (obj_copier.visiting.find(foreign_og) != obj_copier.visiting.end()) + { + QTC::TC("qpdf", "QPDF loop reserving objects"); + return; + } + QTC::TC("qpdf", "QPDF copy indirect"); + obj_copier.visiting.insert(foreign_og); + std::map::iterator mapping = + obj_copier.object_map.find(foreign_og); + if (mapping == obj_copier.object_map.end()) + { + obj_copier.to_copy.push_back(foreign); + QPDFObjectHandle reservation; + if (foreign.isStream()) + { + reservation = QPDFObjectHandle::newStream(this); + } + else + { + reservation = QPDFObjectHandle::newReserved(this); + } + obj_copier.object_map[foreign_og] = reservation; + } + } + + if (foreign.isArray()) + { + QTC::TC("qpdf", "QPDF reserve array"); + int n = foreign.getArrayNItems(); + for (int i = 0; i < n; ++i) + { + reserveObjects(foreign.getArrayItem(i), obj_copier, false); + } + } + else if (foreign.isDictionary()) + { + QTC::TC("qpdf", "QPDF reserve dictionary"); + std::set keys = foreign.getKeys(); + for (std::set::iterator iter = keys.begin(); + iter != keys.end(); ++iter) + { + reserveObjects(foreign.getKey(*iter), obj_copier, false); + } + } + else if (foreign.isStream()) + { + QTC::TC("qpdf", "QPDF reserve stream"); + reserveObjects(foreign.getDict(), obj_copier, false); + } + + if (foreign.isIndirect()) + { + ObjGen foreign_og(foreign.getObjectID(), foreign.getGeneration()); + obj_copier.visiting.erase(foreign_og); + } +} + +QPDFObjectHandle +QPDF::replaceForeignIndirectObjects( + QPDFObjectHandle foreign, ObjCopier& obj_copier, bool top) +{ + QPDFObjectHandle result; + if ((! top) && foreign.isIndirect()) + { + QTC::TC("qpdf", "QPDF replace indirect"); + ObjGen foreign_og(foreign.getObjectID(), foreign.getGeneration()); + std::map::iterator mapping = + obj_copier.object_map.find(foreign_og); + if (mapping == obj_copier.object_map.end()) + { + // This case would occur if this is a reference to a Page + // or Pages object that we didn't traverse into. + QTC::TC("qpdf", "QPDF replace foreign indirect with null"); + result = QPDFObjectHandle::newNull(); + } + else + { + result = obj_copier.object_map[foreign_og]; + } + } + else if (foreign.isArray()) + { + QTC::TC("qpdf", "QPDF replace array"); + result = QPDFObjectHandle::newArray(); + int n = foreign.getArrayNItems(); + for (int i = 0; i < n; ++i) + { + result.appendItem( + replaceForeignIndirectObjects( + foreign.getArrayItem(i), obj_copier, false)); + } + } + else if (foreign.isDictionary()) + { + QTC::TC("qpdf", "QPDF replace dictionary"); + result = QPDFObjectHandle::newDictionary(); + std::set keys = foreign.getKeys(); + for (std::set::iterator iter = keys.begin(); + iter != keys.end(); ++iter) + { + result.replaceKey( + *iter, + replaceForeignIndirectObjects( + foreign.getKey(*iter), obj_copier, false)); + } + } + else if (foreign.isStream()) + { + QTC::TC("qpdf", "QPDF replace stream"); + ObjGen foreign_og(foreign.getObjectID(), foreign.getGeneration()); + result = obj_copier.object_map[foreign_og]; + result.assertStream(); + QPDFObjectHandle dict = result.getDict(); + QPDFObjectHandle old_dict = foreign.getDict(); + std::set keys = old_dict.getKeys(); + for (std::set::iterator iter = keys.begin(); + iter != keys.end(); ++iter) + { + dict.replaceKey( + *iter, + replaceForeignIndirectObjects( + old_dict.getKey(*iter), obj_copier, false)); + } + if (this->copied_stream_data_provider == 0) + { + this->copied_stream_data_provider = new CopiedStreamDataProvider(); + this->copied_streams = this->copied_stream_data_provider; + } + ObjGen local_og(result.getObjectID(), result.getGeneration()); + this->copied_stream_data_provider->registerForeignStream( + local_og, foreign); + result.replaceStreamData(this->copied_streams, + dict.getKey("/Filter"), + dict.getKey("/DecodeParms")); + } + else + { + foreign.assertScalar(); + result = foreign; + result.makeDirect(); + } + + if (top && (! result.isStream()) && result.isIndirect()) + { + throw std::logic_error("replacement for foreign object is indirect"); + } + + return result; +} + +void +QPDF::swapObjects(int objid1, int generation1, int objid2, int generation2) +{ + // Force objects to be loaded into cache; then swap them in the + // cache. + resolve(objid1, generation1); + resolve(objid2, generation2); + ObjGen og1(objid1, generation1); + ObjGen og2(objid2, generation2); + ObjCache t = this->obj_cache[og1]; + this->obj_cache[og1] = this->obj_cache[og2]; + this->obj_cache[og2] = t; +} + +void +QPDF::trimTrailerForWrite() +{ + // Note that removing the encryption dictionary does not interfere + // with reading encrypted files. QPDF loads all the information + // it needs from the encryption dictionary at the beginning and + // never looks at it again. + this->trailer.removeKey("/ID"); + this->trailer.removeKey("/Encrypt"); + this->trailer.removeKey("/Prev"); + + // Remove all trailer keys that potentially come from a + // cross-reference stream + this->trailer.removeKey("/Index"); + this->trailer.removeKey("/W"); + this->trailer.removeKey("/Length"); + this->trailer.removeKey("/Filter"); + this->trailer.removeKey("/DecodeParms"); + this->trailer.removeKey("/Type"); + this->trailer.removeKey("/XRefStm"); +} + +std::string +QPDF::getFilename() const +{ + return this->file->getName(); +} + +std::string +QPDF::getPDFVersion() const +{ + return this->pdf_version; +} + +QPDFObjectHandle +QPDF::getTrailer() +{ + return this->trailer; +} + +QPDFObjectHandle +QPDF::getRoot() +{ + return this->trailer.getKey("/Root"); +} + +void +QPDF::getObjectStreamData(std::map& omap) +{ + for (std::map::iterator iter = + this->xref_table.begin(); + iter != this->xref_table.end(); ++iter) + { + ObjGen const& og = (*iter).first; + QPDFXRefEntry const& entry = (*iter).second; + if (entry.getType() == 2) + { + omap[og.obj] = entry.getObjStreamNumber(); + } + } +} + +std::vector +QPDF::getCompressibleObjects() +{ + // Return a set of object numbers of objects that are allowed to + // be in object streams. We disregard generation numbers here + // since this is a helper function for QPDFWriter which is going + // to renumber objects anyway. This code will do weird things if + // we have two objects with the same object number and different + // generations, but so do virtually all PDF consumers, + // particularly since this is not a permitted condition. + + // We walk through the objects by traversing the document from the + // root, including a traversal of the pages tree. This makes that + // objects that are on the same page are more likely to be in the + // same object stream, which is slightly more efficient, + // particularly with linearized files. This is better than + // iterating through the xref table since it avoids preserving + // orphaned items. + + // Exclude encryption dictionary, if any + int encryption_dict_id = 0; + QPDFObjectHandle encryption_dict = trailer.getKey("/Encrypt"); + if (encryption_dict.isIndirect()) + { + encryption_dict_id = encryption_dict.getObjectID(); + } + + std::set visited; + std::list queue; + queue.push_front(this->trailer); + std::vector result; + while (! queue.empty()) + { + QPDFObjectHandle obj = queue.front(); + queue.pop_front(); + if (obj.isIndirect()) + { + int objid = obj.getObjectID(); + if (visited.count(objid)) + { + QTC::TC("qpdf", "QPDF loop detected traversing objects"); + continue; + } + if (objid == encryption_dict_id) + { + QTC::TC("qpdf", "QPDF exclude encryption dictionary"); + } + else if (! obj.isStream()) + { + result.push_back(objid); + } + visited.insert(objid); + } + if (obj.isStream()) + { + QPDFObjectHandle dict = obj.getDict(); + std::set keys = dict.getKeys(); + for (std::set::reverse_iterator iter = keys.rbegin(); + iter != keys.rend(); ++iter) + { + std::string const& key = *iter; + QPDFObjectHandle value = dict.getKey(key); + if (key == "/Length") + { + // omit stream lengths + if (value.isIndirect()) + { + QTC::TC("qpdf", "QPDF exclude indirect length"); + } + } + else + { + queue.push_front(value); + } + } + } + else if (obj.isDictionary()) + { + std::set keys = obj.getKeys(); + for (std::set::reverse_iterator iter = keys.rbegin(); + iter != keys.rend(); ++iter) + { + queue.push_front(obj.getKey(*iter)); + } + } + else if (obj.isArray()) + { + int n = obj.getArrayNItems(); + for (int i = 1; i <= n; ++i) + { + queue.push_front(obj.getArrayItem(n - i)); + } + } + } + + return result; +} + +void +QPDF::pipeStreamData(int objid, int generation, + qpdf_offset_t offset, size_t length, + QPDFObjectHandle stream_dict, + Pipeline* pipeline) +{ + std::vector > to_delete; + if (this->encrypted) + { + decryptStream(pipeline, objid, generation, stream_dict, to_delete); + } + + try + { + this->file->seek(offset, SEEK_SET); + char buf[10240]; + while (length > 0) + { + size_t to_read = (sizeof(buf) < length ? sizeof(buf) : length); + size_t len = this->file->read(buf, to_read); + if (len == 0) + { + throw QPDFExc(qpdf_e_damaged_pdf, + this->file->getName(), + this->last_object_description, + this->file->getLastOffset(), + "unexpected EOF reading stream data"); + } + length -= len; + pipeline->write((unsigned char*)buf, len); + } + } + catch (QPDFExc& e) + { + warn(e); + } + catch (std::runtime_error& e) + { + QTC::TC("qpdf", "QPDF decoding error warning"); + warn(QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "", this->file->getLastOffset(), + "error decoding stream data for object " + + QUtil::int_to_string(objid) + " " + + QUtil::int_to_string(generation) + ": " + e.what())); + } + pipeline->finish(); +} + +void +QPDF::decodeStreams() +{ + for (std::map::iterator iter = + this->xref_table.begin(); + iter != this->xref_table.end(); ++iter) + { + ObjGen const& og = (*iter).first; + QPDFObjectHandle obj = getObjectByID(og.obj, og.gen); + if (obj.isStream()) + { + Pl_Discard pl; + obj.pipeStreamData(&pl, true, false, false); + } + } +} diff --git a/libqpdf/QPDFExc.cc b/libqpdf/QPDFExc.cc new file mode 100644 index 0000000..8bbfb0b --- /dev/null +++ b/libqpdf/QPDFExc.cc @@ -0,0 +1,86 @@ +#include +#include + +QPDFExc::QPDFExc(qpdf_error_code_e error_code, + std::string const& filename, + std::string const& object, + qpdf_offset_t offset, + std::string const& message) : + std::runtime_error(createWhat(filename, object, offset, message)), + error_code(error_code), + filename(filename), + object(object), + offset(offset), + message(message) +{ +} + +QPDFExc::~QPDFExc() throw () +{ +} + +std::string +QPDFExc::createWhat(std::string const& filename, + std::string const& object, + qpdf_offset_t offset, + std::string const& message) +{ + std::string result; + if (! filename.empty()) + { + result += filename; + } + if (! (object.empty() && offset == 0)) + { + result += " ("; + if (! object.empty()) + { + result += object; + if (offset > 0) + { + result += ", "; + } + } + if (offset > 0) + { + result += "file position " + QUtil::int_to_string(offset); + } + result += ")"; + } + if (! result.empty()) + { + result += ": "; + } + result += message; + return result; +} + +qpdf_error_code_e +QPDFExc::getErrorCode() const +{ + return this->error_code; +} + +std::string const& +QPDFExc::getFilename() const +{ + return this->filename; +} + +std::string const& +QPDFExc::getObject() const +{ + return this->object; +} + +qpdf_offset_t +QPDFExc::getFilePosition() const +{ + return this->offset; +} + +std::string const& +QPDFExc::getMessageDetail() const +{ + return this->message; +} diff --git a/libqpdf/QPDFObject.cc b/libqpdf/QPDFObject.cc new file mode 100644 index 0000000..8df2b48 --- /dev/null +++ b/libqpdf/QPDFObject.cc @@ -0,0 +1 @@ +#include diff --git a/libqpdf/QPDFObjectHandle.cc b/libqpdf/QPDFObjectHandle.cc new file mode 100644 index 0000000..54897b8 --- /dev/null +++ b/libqpdf/QPDFObjectHandle.cc @@ -0,0 +1,1306 @@ +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +#include +#include +#include + +QPDFObjectHandle::QPDFObjectHandle() : + initialized(false), + objid(0), + generation(0), + reserved(false) +{ +} + +QPDFObjectHandle::QPDFObjectHandle(QPDF* qpdf, int objid, int generation) : + initialized(true), + qpdf(qpdf), + objid(objid), + generation(generation), + reserved(false) +{ +} + +QPDFObjectHandle::QPDFObjectHandle(QPDFObject* data) : + initialized(true), + qpdf(0), + objid(0), + generation(0), + obj(data), + reserved(false) +{ +} + +void +QPDFObjectHandle::releaseResolved() +{ + // Recursively break any resolved references to indirect objects. + // Do not cross over indirect object boundaries to avoid an + // infinite loop. This method may only be called during final + // destruction. See comments in QPDF::~QPDF(). + if (isIndirect()) + { + if (this->obj.getPointer()) + { + this->obj = 0; + } + } + else + { + QPDFObject::ObjAccessor::releaseResolved(this->obj.getPointer()); + } +} + +bool +QPDFObjectHandle::isInitialized() const +{ + return this->initialized; +} + +template +class QPDFObjectTypeAccessor +{ + public: + static bool check(QPDFObject* o) + { + return (o && dynamic_cast(o)); + } +}; + +bool +QPDFObjectHandle::isBool() +{ + dereference(); + return QPDFObjectTypeAccessor::check(obj.getPointer()); +} + +bool +QPDFObjectHandle::isNull() +{ + dereference(); + return QPDFObjectTypeAccessor::check(obj.getPointer()); +} + +bool +QPDFObjectHandle::isInteger() +{ + dereference(); + return QPDFObjectTypeAccessor::check(obj.getPointer()); +} + +bool +QPDFObjectHandle::isReal() +{ + dereference(); + return QPDFObjectTypeAccessor::check(obj.getPointer()); +} + +bool +QPDFObjectHandle::isNumber() +{ + return (isInteger() || isReal()); +} + +double +QPDFObjectHandle::getNumericValue() +{ + double result = 0.0; + if (isInteger()) + { + result = getIntValue(); + } + else if (isReal()) + { + result = atof(getRealValue().c_str()); + } + else + { + throw std::logic_error("getNumericValue called for non-numeric object"); + } + return result; +} + +bool +QPDFObjectHandle::isName() +{ + dereference(); + return QPDFObjectTypeAccessor::check(obj.getPointer()); +} + +bool +QPDFObjectHandle::isString() +{ + dereference(); + return QPDFObjectTypeAccessor::check(obj.getPointer()); +} + +bool +QPDFObjectHandle::isArray() +{ + dereference(); + return QPDFObjectTypeAccessor::check(obj.getPointer()); +} + +bool +QPDFObjectHandle::isDictionary() +{ + dereference(); + return QPDFObjectTypeAccessor::check(obj.getPointer()); +} + +bool +QPDFObjectHandle::isStream() +{ + dereference(); + return QPDFObjectTypeAccessor::check(obj.getPointer()); +} + +bool +QPDFObjectHandle::isReserved() +{ + // dereference will clear reserved if this has been replaced + dereference(); + return this->reserved; +} + +bool +QPDFObjectHandle::isIndirect() +{ + assertInitialized(); + return (this->objid != 0); +} + +bool +QPDFObjectHandle::isScalar() +{ + return (! (isArray() || isDictionary() || isStream())); +} + +// Bool accessors + +bool +QPDFObjectHandle::getBoolValue() +{ + assertBool(); + return dynamic_cast(obj.getPointer())->getVal(); +} + +// Integer accessors + +long long +QPDFObjectHandle::getIntValue() +{ + assertInteger(); + return dynamic_cast(obj.getPointer())->getVal(); +} + +// Real accessors + +std::string +QPDFObjectHandle::getRealValue() +{ + assertReal(); + return dynamic_cast(obj.getPointer())->getVal(); +} + +// Name accessors + +std::string +QPDFObjectHandle::getName() +{ + assertName(); + return dynamic_cast(obj.getPointer())->getName(); +} + +// String accessors + +std::string +QPDFObjectHandle::getStringValue() +{ + assertString(); + return dynamic_cast(obj.getPointer())->getVal(); +} + +std::string +QPDFObjectHandle::getUTF8Value() +{ + assertString(); + return dynamic_cast(obj.getPointer())->getUTF8Val(); +} + +// Array accessors + +int +QPDFObjectHandle::getArrayNItems() +{ + assertArray(); + return dynamic_cast(obj.getPointer())->getNItems(); +} + +QPDFObjectHandle +QPDFObjectHandle::getArrayItem(int n) +{ + assertArray(); + return dynamic_cast(obj.getPointer())->getItem(n); +} + +std::vector +QPDFObjectHandle::getArrayAsVector() +{ + assertArray(); + return dynamic_cast(obj.getPointer())->getAsVector(); +} + +// Array mutators + +void +QPDFObjectHandle::setArrayItem(int n, QPDFObjectHandle const& item) +{ + assertArray(); + return dynamic_cast(obj.getPointer())->setItem(n, item); +} + +void +QPDFObjectHandle::setArrayFromVector(std::vector const& items) +{ + assertArray(); + return dynamic_cast(obj.getPointer())->setFromVector(items); +} + +void +QPDFObjectHandle::insertItem(int at, QPDFObjectHandle const& item) +{ + assertArray(); + return dynamic_cast(obj.getPointer())->insertItem(at, item); +} + +void +QPDFObjectHandle::appendItem(QPDFObjectHandle const& item) +{ + assertArray(); + return dynamic_cast(obj.getPointer())->appendItem(item); +} + +void +QPDFObjectHandle::eraseItem(int at) +{ + assertArray(); + return dynamic_cast(obj.getPointer())->eraseItem(at); +} + +// Dictionary accessors + +bool +QPDFObjectHandle::hasKey(std::string const& key) +{ + assertDictionary(); + return dynamic_cast(obj.getPointer())->hasKey(key); +} + +QPDFObjectHandle +QPDFObjectHandle::getKey(std::string const& key) +{ + assertDictionary(); + return dynamic_cast(obj.getPointer())->getKey(key); +} + +std::set +QPDFObjectHandle::getKeys() +{ + assertDictionary(); + return dynamic_cast(obj.getPointer())->getKeys(); +} + +std::map +QPDFObjectHandle::getDictAsMap() +{ + assertDictionary(); + return dynamic_cast(obj.getPointer())->getAsMap(); +} + +// Array and Name accessors +bool +QPDFObjectHandle::isOrHasName(std::string const& value) +{ + if (isName() && (getName() == value)) + { + return true; + } + else if (isArray()) + { + int n = getArrayNItems(); + for (int i = 0; i < n; ++i) + { + QPDFObjectHandle item = getArrayItem(0); + if (item.isName() && (item.getName() == value)) + { + return true; + } + } + } + return false; +} + +// Indirect object accessors +QPDF* +QPDFObjectHandle::getOwningQPDF() +{ + // Will be null for direct objects + return this->qpdf; +} + +// Dictionary mutators + +void +QPDFObjectHandle::replaceKey(std::string const& key, + QPDFObjectHandle const& value) +{ + assertDictionary(); + return dynamic_cast( + obj.getPointer())->replaceKey(key, value); +} + +void +QPDFObjectHandle::removeKey(std::string const& key) +{ + assertDictionary(); + return dynamic_cast(obj.getPointer())->removeKey(key); +} + +void +QPDFObjectHandle::replaceOrRemoveKey(std::string const& key, + QPDFObjectHandle value) +{ + assertDictionary(); + return dynamic_cast( + obj.getPointer())->replaceOrRemoveKey(key, value); +} + +// Stream accessors +QPDFObjectHandle +QPDFObjectHandle::getDict() +{ + assertStream(); + return dynamic_cast(obj.getPointer())->getDict(); +} + +void +QPDFObjectHandle::replaceDict(QPDFObjectHandle new_dict) +{ + assertStream(); + dynamic_cast(obj.getPointer())->replaceDict(new_dict); +} + +PointerHolder +QPDFObjectHandle::getStreamData() +{ + assertStream(); + return dynamic_cast(obj.getPointer())->getStreamData(); +} + +PointerHolder +QPDFObjectHandle::getRawStreamData() +{ + assertStream(); + return dynamic_cast(obj.getPointer())->getRawStreamData(); +} + +bool +QPDFObjectHandle::pipeStreamData(Pipeline* p, bool filter, + bool normalize, bool compress) +{ + assertStream(); + return dynamic_cast(obj.getPointer())->pipeStreamData( + p, filter, normalize, compress); +} + +void +QPDFObjectHandle::replaceStreamData(PointerHolder data, + QPDFObjectHandle const& filter, + QPDFObjectHandle const& decode_parms) +{ + assertStream(); + dynamic_cast(obj.getPointer())->replaceStreamData( + data, filter, decode_parms); +} + +void +QPDFObjectHandle::replaceStreamData(std::string const& data, + QPDFObjectHandle const& filter, + QPDFObjectHandle const& decode_parms) +{ + assertStream(); + PointerHolder b = new Buffer(data.length()); + unsigned char* bp = b->getBuffer(); + memcpy(bp, (char*)data.c_str(), data.length()); + dynamic_cast(obj.getPointer())->replaceStreamData( + b, filter, decode_parms); +} + +void +QPDFObjectHandle::replaceStreamData(PointerHolder provider, + QPDFObjectHandle const& filter, + QPDFObjectHandle const& decode_parms) +{ + assertStream(); + dynamic_cast(obj.getPointer())->replaceStreamData( + provider, filter, decode_parms); +} + +int +QPDFObjectHandle::getObjectID() const +{ + return this->objid; +} + +int +QPDFObjectHandle::getGeneration() const +{ + return this->generation; +} + +std::map +QPDFObjectHandle::getPageImages() +{ + assertPageObject(); + + // Note: this code doesn't handle inherited resources. If this + // page dictionary doesn't have a /Resources key or has one whose + // value is null or an empty dictionary, you are supposed to walk + // up the page tree until you find a /Resources dictionary. As of + // this writing, I don't have any test files that use inherited + // resources, and hand-generating one won't be a good test because + // any mistakes in my understanding would be present in both the + // code and the test file. + + // NOTE: If support of inherited resources (see above comment) is + // implemented, edit comment in QPDFObjectHandle.hh for this + // function. Also remove call to pushInheritedAttributesToPage + // from qpdf.cc when show_page_images is true. + + std::map result; + if (this->hasKey("/Resources")) + { + QPDFObjectHandle resources = this->getKey("/Resources"); + if (resources.hasKey("/XObject")) + { + QPDFObjectHandle xobject = resources.getKey("/XObject"); + std::set keys = xobject.getKeys(); + for (std::set::iterator iter = keys.begin(); + iter != keys.end(); ++iter) + { + std::string key = (*iter); + QPDFObjectHandle value = xobject.getKey(key); + if (value.isStream()) + { + QPDFObjectHandle dict = value.getDict(); + if (dict.hasKey("/Subtype") && + (dict.getKey("/Subtype").getName() == "/Image") && + (! dict.hasKey("/ImageMask"))) + { + result[key] = value; + } + } + } + } + } + + return result; +} + +std::vector +QPDFObjectHandle::getPageContents() +{ + assertPageObject(); + + std::vector result; + QPDFObjectHandle contents = this->getKey("/Contents"); + if (contents.isArray()) + { + int n_items = contents.getArrayNItems(); + for (int i = 0; i < n_items; ++i) + { + QPDFObjectHandle item = contents.getArrayItem(i); + if (item.isStream()) + { + result.push_back(item); + } + else + { + throw std::runtime_error( + "unknown item type while inspecting " + "element of /Contents array in page " + "dictionary"); + } + } + } + else if (contents.isStream()) + { + result.push_back(contents); + } + else + { + throw std::runtime_error("unknown object type inspecting /Contents " + "key in page dictionary"); + } + + return result; +} + +void +QPDFObjectHandle::addPageContents(QPDFObjectHandle new_contents, bool first) +{ + assertPageObject(); + new_contents.assertStream(); + + std::vector orig_contents = getPageContents(); + + std::vector content_streams; + if (first) + { + QTC::TC("qpdf", "QPDFObjectHandle prepend page contents"); + content_streams.push_back(new_contents); + } + for (std::vector::iterator iter = orig_contents.begin(); + iter != orig_contents.end(); ++iter) + { + QTC::TC("qpdf", "QPDFObjectHandle append page contents"); + content_streams.push_back(*iter); + } + if (! first) + { + content_streams.push_back(new_contents); + } + + QPDFObjectHandle contents = QPDFObjectHandle::newArray(content_streams); + this->replaceKey("/Contents", contents); +} + +std::string +QPDFObjectHandle::unparse() +{ + std::string result; + if (this->isIndirect()) + { + result = QUtil::int_to_string(this->objid) + " " + + QUtil::int_to_string(this->generation) + " R"; + } + else + { + result = unparseResolved(); + } + return result; +} + +std::string +QPDFObjectHandle::unparseResolved() +{ + if (this->reserved) + { + throw std::logic_error( + "QPDFObjectHandle: attempting to unparse a reserved object"); + } + dereference(); + return this->obj->unparse(); +} + +QPDFObjectHandle +QPDFObjectHandle::parse(std::string const& object_str, + std::string const& object_description) +{ + PointerHolder input = + new BufferInputSource("parsed object", object_str); + QPDFTokenizer tokenizer; + bool empty = false; + QPDFObjectHandle result = + parse(input, object_description, tokenizer, empty, 0, 0); + size_t offset = (size_t) input->tell(); + while (offset < object_str.length()) + { + if (! isspace(object_str[offset])) + { + QTC::TC("qpdf", "QPDFObjectHandle trailing data in parse"); + throw QPDFExc(qpdf_e_damaged_pdf, input->getName(), + object_description, + input->getLastOffset(), + "trailing data found parsing object from string"); + } + ++offset; + } + return result; +} + +QPDFObjectHandle +QPDFObjectHandle::parse(PointerHolder input, + std::string const& object_description, + QPDFTokenizer& tokenizer, bool& empty, + StringDecrypter* decrypter, QPDF* context) +{ + return parseInternal(input, object_description, tokenizer, empty, + decrypter, context, false, false); +} + +QPDFObjectHandle +QPDFObjectHandle::parseInternal(PointerHolder input, + std::string const& object_description, + QPDFTokenizer& tokenizer, bool& empty, + StringDecrypter* decrypter, QPDF* context, + bool in_array, bool in_dictionary) +{ + empty = false; + if (in_dictionary && in_array) + { + // Although dictionaries and arrays arbitrarily nest, these + // variables indicate what is at the top of the stack right + // now, so they can, by definition, never both be true. + throw std::logic_error( + "INTERNAL ERROR: parseInternal: in_dict && in_array"); + } + + QPDFObjectHandle object; + + qpdf_offset_t offset = input->tell(); + std::vector olist; + bool done = false; + while (! done) + { + object = QPDFObjectHandle(); + + QPDFTokenizer::Token token = + tokenizer.readToken(input, object_description); + + switch (token.getType()) + { + case QPDFTokenizer::tt_brace_open: + case QPDFTokenizer::tt_brace_close: + // Don't know what to do with these for now + QTC::TC("qpdf", "QPDFObjectHandle bad brace"); + throw QPDFExc(qpdf_e_damaged_pdf, input->getName(), + object_description, + input->getLastOffset(), + "unexpected brace token"); + break; + + case QPDFTokenizer::tt_array_close: + if (in_array) + { + done = true; + } + else + { + QTC::TC("qpdf", "QPDFObjectHandle bad array close"); + throw QPDFExc(qpdf_e_damaged_pdf, input->getName(), + object_description, + input->getLastOffset(), + "unexpected array close token"); + } + break; + + case QPDFTokenizer::tt_dict_close: + if (in_dictionary) + { + done = true; + } + else + { + QTC::TC("qpdf", "QPDFObjectHandle bad dictionary close"); + throw QPDFExc(qpdf_e_damaged_pdf, input->getName(), + object_description, + input->getLastOffset(), + "unexpected dictionary close token"); + } + break; + + case QPDFTokenizer::tt_array_open: + object = parseInternal( + input, object_description, tokenizer, empty, + decrypter, context, true, false); + break; + + case QPDFTokenizer::tt_dict_open: + object = parseInternal( + input, object_description, tokenizer, empty, + decrypter, context, false, true); + break; + + case QPDFTokenizer::tt_bool: + object = newBool((token.getValue() == "true")); + break; + + case QPDFTokenizer::tt_null: + object = newNull(); + break; + + case QPDFTokenizer::tt_integer: + object = newInteger(QUtil::string_to_ll(token.getValue().c_str())); + break; + + case QPDFTokenizer::tt_real: + object = newReal(token.getValue()); + break; + + case QPDFTokenizer::tt_name: + object = newName(token.getValue()); + break; + + case QPDFTokenizer::tt_word: + { + std::string const& value = token.getValue(); + if ((value == "R") && (in_array || in_dictionary) && + (olist.size() >= 2) && + (olist[olist.size() - 1].isInteger()) && + (olist[olist.size() - 2].isInteger())) + { + if (context == 0) + { + QTC::TC("qpdf", "QPDFObjectHandle indirect without context"); + throw std::logic_error( + "QPDFObjectHandle::parse called without context" + " on an object with indirect references"); + } + // Try to resolve indirect objects + object = newIndirect( + context, + olist[olist.size() - 2].getIntValue(), + olist[olist.size() - 1].getIntValue()); + olist.pop_back(); + olist.pop_back(); + } + else if ((value == "endobj") && + (! (in_array || in_dictionary))) + { + // We just saw endobj without having read + // anything. Treat this as a null and do not move + // the input source's offset. + object = newNull(); + input->seek(input->getLastOffset(), SEEK_SET); + empty = true; + } + else + { + throw QPDFExc(qpdf_e_damaged_pdf, input->getName(), + object_description, + input->getLastOffset(), + "unknown token while reading object (" + + value + ")"); + } + } + break; + + case QPDFTokenizer::tt_string: + { + std::string val = token.getValue(); + if (decrypter) + { + decrypter->decryptString(val); + } + object = QPDFObjectHandle::newString(val); + } + + break; + + default: + throw QPDFExc(qpdf_e_damaged_pdf, input->getName(), + object_description, + input->getLastOffset(), + "unknown token type while reading object"); + break; + } + + if (in_dictionary || in_array) + { + if (! done) + { + olist.push_back(object); + } + } + else if (! object.isInitialized()) + { + throw std::logic_error( + "INTERNAL ERROR: uninitialized object (token = " + + QUtil::int_to_string(token.getType()) + + ", " + token.getValue() + ")"); + } + else + { + done = true; + } + } + + if (in_array) + { + object = newArray(olist); + } + else if (in_dictionary) + { + // Convert list to map. Alternating elements are keys. + std::map dict; + if (olist.size() % 2) + { + QTC::TC("qpdf", "QPDFObjectHandle dictionary odd number of elements"); + throw QPDFExc( + qpdf_e_damaged_pdf, input->getName(), + object_description, input->getLastOffset(), + "dictionary ending here has an odd number of elements"); + } + for (unsigned int i = 0; i < olist.size(); i += 2) + { + QPDFObjectHandle key_obj = olist[i]; + QPDFObjectHandle val = olist[i + 1]; + if (! key_obj.isName()) + { + throw QPDFExc( + qpdf_e_damaged_pdf, + input->getName(), object_description, offset, + std::string("dictionary key not name (") + + key_obj.unparse() + ")"); + } + dict[key_obj.getName()] = val; + } + object = newDictionary(dict); + } + + return object; +} + +QPDFObjectHandle +QPDFObjectHandle::newIndirect(QPDF* qpdf, int objid, int generation) +{ + return QPDFObjectHandle(qpdf, objid, generation); +} + +QPDFObjectHandle +QPDFObjectHandle::newBool(bool value) +{ + return QPDFObjectHandle(new QPDF_Bool(value)); +} + +QPDFObjectHandle +QPDFObjectHandle::newNull() +{ + return QPDFObjectHandle(new QPDF_Null()); +} + +QPDFObjectHandle +QPDFObjectHandle::newInteger(long long value) +{ + return QPDFObjectHandle(new QPDF_Integer(value)); +} + +QPDFObjectHandle +QPDFObjectHandle::newReal(std::string const& value) +{ + return QPDFObjectHandle(new QPDF_Real(value)); +} + +QPDFObjectHandle +QPDFObjectHandle::newReal(double value, int decimal_places) +{ + return QPDFObjectHandle(new QPDF_Real(value, decimal_places)); +} + +QPDFObjectHandle +QPDFObjectHandle::newName(std::string const& name) +{ + return QPDFObjectHandle(new QPDF_Name(name)); +} + +QPDFObjectHandle +QPDFObjectHandle::newString(std::string const& str) +{ + return QPDFObjectHandle(new QPDF_String(str)); +} + +QPDFObjectHandle +QPDFObjectHandle::newArray() +{ + return newArray(std::vector()); +} + +QPDFObjectHandle +QPDFObjectHandle::newArray(std::vector const& items) +{ + return QPDFObjectHandle(new QPDF_Array(items)); +} + +QPDFObjectHandle +QPDFObjectHandle::newDictionary() +{ + return newDictionary(std::map()); +} + +QPDFObjectHandle +QPDFObjectHandle::newDictionary( + std::map const& items) +{ + return QPDFObjectHandle(new QPDF_Dictionary(items)); +} + + +QPDFObjectHandle +QPDFObjectHandle::newStream(QPDF* qpdf, int objid, int generation, + QPDFObjectHandle stream_dict, + qpdf_offset_t offset, size_t length) +{ + return QPDFObjectHandle(new QPDF_Stream( + qpdf, objid, generation, + stream_dict, offset, length)); +} + +QPDFObjectHandle +QPDFObjectHandle::newStream(QPDF* qpdf) +{ + QTC::TC("qpdf", "QPDFObjectHandle newStream"); + QPDFObjectHandle stream_dict = newDictionary(); + QPDFObjectHandle result = qpdf->makeIndirectObject( + QPDFObjectHandle( + new QPDF_Stream(qpdf, 0, 0, stream_dict, 0, 0))); + result.dereference(); + QPDF_Stream* stream = dynamic_cast(result.obj.getPointer()); + stream->setObjGen(result.getObjectID(), result.getGeneration()); + return result; +} + +QPDFObjectHandle +QPDFObjectHandle::newStream(QPDF* qpdf, PointerHolder data) +{ + QTC::TC("qpdf", "QPDFObjectHandle newStream with data"); + QPDFObjectHandle result = newStream(qpdf); + result.replaceStreamData(data, newNull(), newNull()); + return result; +} + +QPDFObjectHandle +QPDFObjectHandle::newStream(QPDF* qpdf, std::string const& data) +{ + QTC::TC("qpdf", "QPDFObjectHandle newStream with string"); + QPDFObjectHandle result = newStream(qpdf); + result.replaceStreamData(data, newNull(), newNull()); + return result; +} + +QPDFObjectHandle +QPDFObjectHandle::newReserved(QPDF* qpdf) +{ + // Reserve a spot for this object by assigning it an object + // number, but then return an unresolved handle to the object. + QPDFObjectHandle reserved = qpdf->makeIndirectObject( + QPDFObjectHandle(new QPDF_Reserved())); + QPDFObjectHandle result = + newIndirect(qpdf, reserved.objid, reserved.generation); + result.reserved = true; + return result; +} + +QPDFObjectHandle +QPDFObjectHandle::shallowCopy() +{ + assertInitialized(); + + if (isStream()) + { + QTC::TC("qpdf", "QPDFObjectHandle ERR shallow copy stream"); + throw std::runtime_error( + "attempt to make a shallow copy of a stream"); + } + + QPDFObjectHandle new_obj; + if (isArray()) + { + QTC::TC("qpdf", "QPDFObjectHandle shallow copy array"); + new_obj = newArray(getArrayAsVector()); + } + else if (isDictionary()) + { + QTC::TC("qpdf", "QPDFObjectHandle shallow copy dictionary"); + new_obj = newDictionary(getDictAsMap()); + } + else + { + QTC::TC("qpdf", "QPDFObjectHandle shallow copy scalar"); + new_obj = *this; + } + + return new_obj; +} + +void +QPDFObjectHandle::makeDirectInternal(std::set& visited) +{ + assertInitialized(); + + if (isStream()) + { + QTC::TC("qpdf", "QPDFObjectHandle ERR clone stream"); + throw std::runtime_error( + "attempt to make a stream into a direct object"); + } + + int cur_objid = this->objid; + if (cur_objid != 0) + { + if (visited.count(cur_objid)) + { + QTC::TC("qpdf", "QPDFObjectHandle makeDirect loop"); + throw std::runtime_error( + "loop detected while converting object from " + "indirect to direct"); + } + visited.insert(cur_objid); + } + + if (isReserved()) + { + throw std::logic_error( + "QPDFObjectHandle: attempting to make a" + " reserved object handle direct"); + } + + dereference(); + this->qpdf = 0; + this->objid = 0; + this->generation = 0; + + PointerHolder new_obj; + + if (isBool()) + { + QTC::TC("qpdf", "QPDFObjectHandle clone bool"); + new_obj = new QPDF_Bool(getBoolValue()); + } + else if (isNull()) + { + QTC::TC("qpdf", "QPDFObjectHandle clone null"); + new_obj = new QPDF_Null(); + } + else if (isInteger()) + { + QTC::TC("qpdf", "QPDFObjectHandle clone integer"); + new_obj = new QPDF_Integer(getIntValue()); + } + else if (isReal()) + { + QTC::TC("qpdf", "QPDFObjectHandle clone real"); + new_obj = new QPDF_Real(getRealValue()); + } + else if (isName()) + { + QTC::TC("qpdf", "QPDFObjectHandle clone name"); + new_obj = new QPDF_Name(getName()); + } + else if (isString()) + { + QTC::TC("qpdf", "QPDFObjectHandle clone string"); + new_obj = new QPDF_String(getStringValue()); + } + else if (isArray()) + { + QTC::TC("qpdf", "QPDFObjectHandle clone array"); + std::vector items; + int n = getArrayNItems(); + for (int i = 0; i < n; ++i) + { + items.push_back(getArrayItem(i)); + items.back().makeDirectInternal(visited); + } + new_obj = new QPDF_Array(items); + } + else if (isDictionary()) + { + QTC::TC("qpdf", "QPDFObjectHandle clone dictionary"); + std::set keys = getKeys(); + std::map items; + for (std::set::iterator iter = keys.begin(); + iter != keys.end(); ++iter) + { + items[*iter] = getKey(*iter); + items[*iter].makeDirectInternal(visited); + } + new_obj = new QPDF_Dictionary(items); + } + else + { + throw std::logic_error("QPDFObjectHandle::makeDirectInternal: " + "unknown object type"); + } + + this->obj = new_obj; + + if (cur_objid) + { + visited.erase(cur_objid); + } +} + +void +QPDFObjectHandle::makeDirect() +{ + std::set visited; + makeDirectInternal(visited); +} + +void +QPDFObjectHandle::assertInitialized() const +{ + if (! this->initialized) + { + throw std::logic_error("operation attempted on uninitialized " + "QPDFObjectHandle"); + } +} + +void +QPDFObjectHandle::assertType(char const* type_name, bool istype) const +{ + if (! istype) + { + throw std::logic_error(std::string("operation for ") + type_name + + " object attempted on object of wrong type"); + } +} + +void +QPDFObjectHandle::assertNull() +{ + assertType("Null", isNull()); +} + +void +QPDFObjectHandle::assertBool() +{ + assertType("Boolean", isBool()); +} + +void +QPDFObjectHandle::assertInteger() +{ + assertType("Integer", isInteger()); +} + +void +QPDFObjectHandle::assertReal() +{ + assertType("Real", isReal()); +} + +void +QPDFObjectHandle::assertName() +{ + assertType("Name", isName()); +} + +void +QPDFObjectHandle::assertString() +{ + assertType("String", isString()); +} + +void +QPDFObjectHandle::assertArray() +{ + assertType("Array", isArray()); +} + +void +QPDFObjectHandle::assertDictionary() +{ + assertType("Dictionary", isDictionary()); +} + +void +QPDFObjectHandle::assertStream() +{ + assertType("Stream", isStream()); +} + +void +QPDFObjectHandle::assertReserved() +{ + assertType("Reserved", isReserved()); +} + +void +QPDFObjectHandle::assertIndirect() +{ + if (! isIndirect()) + { + throw std::logic_error( + "operation for indirect object attempted on direct object"); + } +} + +void +QPDFObjectHandle::assertScalar() +{ + assertType("Scalar", isScalar()); +} + +void +QPDFObjectHandle::assertNumber() +{ + assertType("Number", isNumber()); +} + +bool +QPDFObjectHandle::isPageObject() +{ + return (this->isDictionary() && this->hasKey("/Type") && + (this->getKey("/Type").getName() == "/Page")); +} + +bool +QPDFObjectHandle::isPagesObject() +{ + return (this->isDictionary() && this->hasKey("/Type") && + (this->getKey("/Type").getName() == "/Pages")); +} + +void +QPDFObjectHandle::assertPageObject() +{ + if (! isPageObject()) + { + throw std::logic_error("page operation called on non-Page object"); + } +} + +void +QPDFObjectHandle::dereference() +{ + if (this->obj.getPointer() == 0) + { + PointerHolder obj = QPDF::Resolver::resolve( + this->qpdf, this->objid, this->generation); + if (obj.getPointer() == 0) + { + QTC::TC("qpdf", "QPDFObjectHandle indirect to unknown"); + this->obj = new QPDF_Null(); + } + else if (dynamic_cast(obj.getPointer())) + { + // Do not resolve + } + else + { + this->reserved = false; + this->obj = obj; + } + } +} diff --git a/libqpdf/QPDFTokenizer.cc b/libqpdf/QPDFTokenizer.cc new file mode 100644 index 0000000..1a20bb5 --- /dev/null +++ b/libqpdf/QPDFTokenizer.cc @@ -0,0 +1,522 @@ +#include + +// DO NOT USE ctype -- it is locale dependent for some things, and +// it's not worth the risk of including it in case it may accidentally +// be used. + +#include +#include +#include + +#include +#include + +// See note above about ctype. +static bool is_hex_digit(char ch) +{ + return (strchr("0123456789abcdefABCDEF", ch) != 0); +} +static bool is_space(char ch) +{ + return (strchr(" \f\n\r\t\v", ch) != 0); +} + +QPDFTokenizer::QPDFTokenizer() : + pound_special_in_name(true) +{ + reset(); +} + +void +QPDFTokenizer::allowPoundAnywhereInName() +{ + QTC::TC("qpdf", "QPDFTokenizer allow pound anywhere in name"); + this->pound_special_in_name = false; +} + +void +QPDFTokenizer::reset() +{ + state = st_top; + type = tt_bad; + val = ""; + raw_val = ""; + error_message = ""; + unread_char = false; + char_to_unread = '\0'; + string_depth = 0; + string_ignoring_newline = false; + last_char_was_bs = false; +} + +void +QPDFTokenizer::resolveLiteral() +{ + PCRE num_re("^[\\+\\-]?(?:\\.\\d+|\\d+(?:\\.\\d+)?)$"); + + if ((val.length() > 0) && (val[0] == '/')) + { + type = tt_name; + // Deal with # in name token. Note: '/' by itself is a + // valid name, so don't strip leading /. That way we + // don't have to deal with the empty string as a name. + std::string nval = "/"; + char const* valstr = val.c_str() + 1; + for (char const* p = valstr; *p; ++p) + { + if ((*p == '#') && this->pound_special_in_name) + { + if (p[1] && p[2] && + is_hex_digit(p[1]) && is_hex_digit(p[2])) + { + char num[3]; + num[0] = p[1]; + num[1] = p[2]; + num[2] = '\0'; + char ch = (char)(strtol(num, 0, 16)); + if (ch == '\0') + { + type = tt_bad; + QTC::TC("qpdf", "QPDF_Tokenizer null in name"); + error_message = + "null character not allowed in name token"; + nval += "#00"; + } + else + { + nval += ch; + } + p += 2; + } + else + { + QTC::TC("qpdf", "QPDF_Tokenizer bad name"); + type = tt_bad; + error_message = "invalid name token"; + nval += *p; + } + } + else + { + nval += *p; + } + } + val = nval; + } + else if (num_re.match(val.c_str())) + { + if (val.find('.') != std::string::npos) + { + type = tt_real; + } + else + { + type = tt_integer; + } + } + else if ((val == "true") || (val == "false")) + { + type = tt_bool; + } + else if (val == "null") + { + type = tt_null; + } + else + { + // I don't really know what it is, so leave it as tt_word. + // Lots of cases ($, #, etc.) other than actual words fall + // into this category, but that's okay at least for now. + type = tt_word; + } +} + +void +QPDFTokenizer::presentCharacter(char ch) +{ + if (state == st_token_ready) + { + throw std::logic_error( + "INTERNAL ERROR: QPDF tokenizer presented character " + "while token is waiting"); + } + + char orig_ch = ch; + + // State machine is implemented such that some characters may be + // handled more than once. This happens whenever you have to use + // the character that caused a state change in the new state. + + bool handled = true; + if (state == st_top) + { + // Note: we specifically do not use ctype here. It is + // locale-dependent. + if (strchr(" \t\n\v\f\r", ch)) + { + // ignore + } + else if (ch == '%') + { + // Discard comments + state = st_in_comment; + } + else if (ch == '(') + { + string_depth = 1; + string_ignoring_newline = false; + memset(bs_num_register, '\0', sizeof(bs_num_register)); + last_char_was_bs = false; + state = st_in_string; + } + else if (ch == '<') + { + state = st_lt; + } + else if (ch == '>') + { + state = st_gt; + } + else + { + val += ch; + if (ch == ')') + { + type = tt_bad; + QTC::TC("qpdf", "QPDF_Tokenizer bad )"); + error_message = "unexpected )"; + state = st_token_ready; + } + else if (ch == '[') + { + type = tt_array_open; + state = st_token_ready; + } + else if (ch == ']') + { + type = tt_array_close; + state = st_token_ready; + } + else if (ch == '{') + { + type = tt_brace_open; + state = st_token_ready; + } + else if (ch == '}') + { + type = tt_brace_close; + state = st_token_ready; + } + else + { + state = st_literal; + } + } + } + else if (state == st_in_comment) + { + if ((ch == '\r') || (ch == '\n')) + { + state = st_top; + } + } + else if (state == st_lt) + { + if (ch == '<') + { + val = "<<"; + type = tt_dict_open; + state = st_token_ready; + } + else + { + handled = false; + state = st_in_hexstring; + } + } + else if (state == st_gt) + { + if (ch == '>') + { + val = ">>"; + type = tt_dict_close; + state = st_token_ready; + } + else + { + val = ">"; + type = tt_bad; + QTC::TC("qpdf", "QPDF_Tokenizer bad >"); + error_message = "unexpected >"; + unread_char = true; + char_to_unread = ch; + state = st_token_ready; + } + } + else if (state == st_in_string) + { + if (string_ignoring_newline && (! ((ch == '\r') || (ch == '\n')))) + { + string_ignoring_newline = false; + } + + size_t bs_num_count = strlen(bs_num_register); + bool ch_is_octal = ((ch >= '0') && (ch <= '7')); + if ((bs_num_count == 3) || ((bs_num_count > 0) && (! ch_is_octal))) + { + // We've accumulated \ddd. PDF Spec says to ignore + // high-order overflow. + val += (char) strtol(bs_num_register, 0, 8); + memset(bs_num_register, '\0', sizeof(bs_num_register)); + bs_num_count = 0; + } + + if (string_ignoring_newline && ((ch == '\r') || (ch == '\n'))) + { + // ignore + } + else if (ch_is_octal && (last_char_was_bs || (bs_num_count > 0))) + { + bs_num_register[bs_num_count++] = ch; + } + else if (last_char_was_bs) + { + switch (ch) + { + case 'n': + val += '\n'; + break; + + case 'r': + val += '\r'; + break; + + case 't': + val += '\t'; + break; + + case 'b': + val += '\b'; + break; + + case 'f': + val += '\f'; + break; + + case '\r': + case '\n': + string_ignoring_newline = true; + break; + + default: + // PDF spec says backslash is ignored before anything else + val += ch; + break; + } + } + else if (ch == '\\') + { + // last_char_was_bs is set/cleared below as appropriate + if (bs_num_count) + { + throw std::logic_error( + "INTERNAL ERROR: QPDFTokenizer: bs_num_count != 0 " + "when ch == '\\'"); + } + } + else if (ch == '(') + { + val += ch; + ++string_depth; + } + else if ((ch == ')') && (--string_depth == 0)) + { + type = tt_string; + state = st_token_ready; + } + else + { + val += ch; + } + + last_char_was_bs = ((! last_char_was_bs) && (ch == '\\')); + } + else if (state == st_literal) + { + if (strchr(" \t\n\v\f\r()<>[]{}/%", ch) != 0) + { + // A C-locale whitespace character or delimiter terminates + // token. It is important to unread the whitespace + // character even though it is ignored since it may be the + // newline after a stream keyword. Removing it here could + // make the stream-reading code break on some files, + // though not on any files in the test suite as of this + // writing. + + type = tt_word; + unread_char = true; + char_to_unread = ch; + state = st_token_ready; + } + else + { + val += ch; + } + } + else + { + handled = false; + } + + + if (handled) + { + // okay + } + else if (state == st_in_hexstring) + { + if (ch == '>') + { + type = tt_string; + state = st_token_ready; + if (val.length() % 2) + { + // PDF spec says odd hexstrings have implicit + // trailing 0. + val += '0'; + } + char num[3]; + num[2] = '\0'; + std::string nval; + for (unsigned int i = 0; i < val.length(); i += 2) + { + num[0] = val[i]; + num[1] = val[i+1]; + char nch = (char)(strtol(num, 0, 16)); + nval += nch; + } + val = nval; + } + else if (is_hex_digit(ch)) + { + val += ch; + } + else if (strchr(" \t\n\v\f\r", ch)) + { + // ignore + } + else + { + type = tt_bad; + QTC::TC("qpdf", "QPDF_Tokenizer bad ("); + error_message = std::string("invalid character (") + + ch + ") in hexstring"; + state = st_token_ready; + } + } + else + { + throw std::logic_error( + "INTERNAL ERROR: invalid state while reading token"); + } + + if ((state == st_token_ready) && (type == tt_word)) + { + resolveLiteral(); + } + + if (! (betweenTokens() || ((state == st_token_ready) && unread_char))) + { + this->raw_val += orig_ch; + } +} + +void +QPDFTokenizer::presentEOF() +{ + if (state == st_literal) + { + QTC::TC("qpdf", "QPDF_Tokenizer EOF reading appendable token"); + resolveLiteral(); + } + else if (state != st_token_ready) + { + QTC::TC("qpdf", "QPDF_Tokenizer EOF reading token"); + type = tt_bad; + error_message = "EOF while reading token"; + } + + state = st_token_ready; +} + +bool +QPDFTokenizer::getToken(Token& token, bool& unread_char, char& ch) +{ + bool ready = (this->state == st_token_ready); + unread_char = this->unread_char; + ch = this->char_to_unread; + if (ready) + { + token = Token(type, val, raw_val, error_message); + reset(); + } + return ready; +} + +bool +QPDFTokenizer::betweenTokens() +{ + return ((state == st_top) || (state == st_in_comment)); +} + +QPDFTokenizer::Token +QPDFTokenizer::readToken(PointerHolder input, + std::string const& context) +{ + qpdf_offset_t offset = input->tell(); + Token token; + bool unread_char; + char char_to_unread; + bool presented_eof = false; + while (! getToken(token, unread_char, char_to_unread)) + { + char ch; + if (input->read(&ch, 1) == 0) + { + if (! presented_eof) + { + presentEOF(); + presented_eof = true; + } + else + { + throw std::logic_error( + "getToken returned false after presenting EOF"); + } + } + else + { + if (is_space((unsigned char)ch) && + (input->getLastOffset() == offset)) + { + ++offset; + } + presentCharacter(ch); + } + } + + if (unread_char) + { + input->unreadCh(char_to_unread); + } + + if (token.getType() == tt_bad) + { + throw QPDFExc(qpdf_e_damaged_pdf, input->getName(), + context, offset, token.getErrorMessage()); + } + + input->setLastOffset(offset); + + return token; +} diff --git a/libqpdf/QPDFWriter.cc b/libqpdf/QPDFWriter.cc new file mode 100644 index 0000000..eb08488 --- /dev/null +++ b/libqpdf/QPDFWriter.cc @@ -0,0 +1,2476 @@ +#include // include first for large file support +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include + +#include + +QPDFWriter::QPDFWriter(QPDF& pdf) : + pdf(pdf) +{ + init(); +} + +QPDFWriter::QPDFWriter(QPDF& pdf, char const* filename) : + pdf(pdf) +{ + init(); + setOutputFilename(filename); +} + +QPDFWriter::QPDFWriter(QPDF& pdf, char const* description, + FILE *file, bool close_file) : + pdf(pdf) +{ + init(); + setOutputFile(description, file, close_file); +} + +void +QPDFWriter::init() +{ + filename = 0; + file = 0; + close_file = false; + buffer_pipeline = 0; + output_buffer = 0; + normalize_content_set = false; + normalize_content = false; + stream_data_mode_set = false; + stream_data_mode = qpdf_s_compress; + qdf_mode = false; + static_id = false; + suppress_original_object_ids = false; + direct_stream_lengths = true; + encrypted = false; + preserve_encryption = true; + linearized = false; + object_stream_mode = qpdf_o_preserve; + encrypt_metadata = true; + encrypt_use_aes = false; + encryption_dict_objid = 0; + next_objid = 1; + cur_stream_length_id = 0; + cur_stream_length = 0; + added_newline = false; + max_ostream_index = 0; +} + +QPDFWriter::~QPDFWriter() +{ + if (file && close_file) + { + fclose(file); + } + if (output_buffer) + { + delete output_buffer; + } +} + +void +QPDFWriter::setOutputFilename(char const* filename) +{ + char const* description = filename; + FILE* f = 0; + if (filename == 0) + { + description = "standard output"; + QTC::TC("qpdf", "QPDFWriter write to stdout"); + f = stdout; + QUtil::binary_stdout(); + } + else + { + QTC::TC("qpdf", "QPDFWriter write to file"); + f = QUtil::fopen_wrapper(std::string("open ") + filename, + fopen(filename, "wb+")); + close_file = true; + } + setOutputFile(description, f, close_file); +} + +void +QPDFWriter::setOutputFile(char const* description, FILE* file, bool close_file) +{ + this->filename = description; + this->file = file; + this->close_file = close_file; + Pipeline* p = new Pl_StdioFile("qpdf output", file); + to_delete.push_back(p); + initializePipelineStack(p); +} + +void +QPDFWriter::setOutputMemory() +{ + this->filename = "memory buffer"; + this->buffer_pipeline = new Pl_Buffer("qpdf output"); + to_delete.push_back(this->buffer_pipeline); + initializePipelineStack(this->buffer_pipeline); +} + +Buffer* +QPDFWriter::getBuffer() +{ + Buffer* result = this->output_buffer; + this->output_buffer = 0; + return result; +} + +void +QPDFWriter::setObjectStreamMode(qpdf_object_stream_e mode) +{ + this->object_stream_mode = mode; +} + +void +QPDFWriter::setStreamDataMode(qpdf_stream_data_e mode) +{ + this->stream_data_mode_set = true; + this->stream_data_mode = mode; +} + +void +QPDFWriter::setContentNormalization(bool val) +{ + this->normalize_content_set = true; + this->normalize_content = val; +} + +void +QPDFWriter::setQDFMode(bool val) +{ + this->qdf_mode = val; +} + +void +QPDFWriter::setMinimumPDFVersion(std::string const& version) +{ + bool set_version = false; + if (this->min_pdf_version.empty()) + { + set_version = true; + } + else + { + int old_major = 0; + int old_minor = 0; + int min_major = 0; + int min_minor = 0; + parseVersion(version, old_major, old_minor); + parseVersion(this->min_pdf_version, min_major, min_minor); + if (compareVersions(old_major, old_minor, min_major, min_minor) > 0) + { + QTC::TC("qpdf", "QPDFWriter increasing minimum version"); + set_version = true; + } + } + + if (set_version) + { + this->min_pdf_version = version; + } +} + +void +QPDFWriter::forcePDFVersion(std::string const& version) +{ + this->forced_pdf_version = version; +} + +void +QPDFWriter::setExtraHeaderText(std::string const& text) +{ + this->extra_header_text = text; + if ((this->extra_header_text.length() > 0) && + (*(this->extra_header_text.rbegin()) != '\n')) + { + QTC::TC("qpdf", "QPDFWriter extra header text add newline"); + this->extra_header_text += "\n"; + } + else + { + QTC::TC("qpdf", "QPDFWriter extra header text no newline"); + } +} + +void +QPDFWriter::setStaticID(bool val) +{ + this->static_id = val; +} + +void +QPDFWriter::setStaticAesIV(bool val) +{ + if (val) + { + Pl_AES_PDF::useStaticIV(); + } +} + +void +QPDFWriter::setSuppressOriginalObjectIDs(bool val) +{ + this->suppress_original_object_ids = val; +} + +void +QPDFWriter::setPreserveEncryption(bool val) +{ + this->preserve_encryption = val; +} + +void +QPDFWriter::setLinearization(bool val) +{ + this->linearized = val; +} + +void +QPDFWriter::setR2EncryptionParameters( + char const* user_password, char const* owner_password, + bool allow_print, bool allow_modify, + bool allow_extract, bool allow_annotate) +{ + std::set clear; + if (! allow_print) + { + clear.insert(3); + } + if (! allow_modify) + { + clear.insert(4); + } + if (! allow_extract) + { + clear.insert(5); + } + if (! allow_annotate) + { + clear.insert(6); + } + + setEncryptionParameters(user_password, owner_password, 1, 2, 5, clear); +} + +void +QPDFWriter::setR3EncryptionParameters( + char const* user_password, char const* owner_password, + bool allow_accessibility, bool allow_extract, + qpdf_r3_print_e print, qpdf_r3_modify_e modify) +{ + std::set clear; + interpretR3EncryptionParameters( + clear, user_password, owner_password, + allow_accessibility, allow_extract, print, modify); + setEncryptionParameters(user_password, owner_password, 2, 3, 16, clear); +} + +void +QPDFWriter::setR4EncryptionParameters( + char const* user_password, char const* owner_password, + bool allow_accessibility, bool allow_extract, + qpdf_r3_print_e print, qpdf_r3_modify_e modify, + bool encrypt_metadata, bool use_aes) +{ + std::set clear; + interpretR3EncryptionParameters( + clear, user_password, owner_password, + allow_accessibility, allow_extract, print, modify); + this->encrypt_use_aes = use_aes; + this->encrypt_metadata = encrypt_metadata; + setEncryptionParameters(user_password, owner_password, 4, 4, 16, clear); +} + +void +QPDFWriter::interpretR3EncryptionParameters( + std::set& clear, + char const* user_password, char const* owner_password, + bool allow_accessibility, bool allow_extract, + qpdf_r3_print_e print, qpdf_r3_modify_e modify) +{ + // Acrobat 5 security options: + + // Checkboxes: + // Enable Content Access for the Visually Impaired + // Allow Content Copying and Extraction + + // Allowed changes menu: + // None + // Only Document Assembly + // Only Form Field Fill-in or Signing + // Comment Authoring, Form Field Fill-in or Signing + // General Editing, Comment and Form Field Authoring + + // Allowed printing menu: + // None + // Low Resolution + // Full printing + + if (! allow_accessibility) + { + clear.insert(10); + } + if (! allow_extract) + { + clear.insert(5); + } + + // Note: these switch statements all "fall through" (no break + // statements). Each option clears successively more access bits. + switch (print) + { + case qpdf_r3p_none: + clear.insert(3); // any printing + + case qpdf_r3p_low: + clear.insert(12); // high resolution printing + + case qpdf_r3p_full: + break; + + // no default so gcc warns for missing cases + } + + switch (modify) + { + case qpdf_r3m_none: + clear.insert(11); // document assembly + + case qpdf_r3m_assembly: + clear.insert(9); // filling in form fields + + case qpdf_r3m_form: + clear.insert(6); // modify annotations, fill in form fields + + case qpdf_r3m_annotate: + clear.insert(4); // other modifications + + case qpdf_r3m_all: + break; + + // no default so gcc warns for missing cases + } +} + +void +QPDFWriter::setEncryptionParameters( + char const* user_password, char const* owner_password, + int V, int R, int key_len, std::set& bits_to_clear) +{ + // PDF specification refers to bits with the low bit numbered 1. + // We have to convert this into a bit field. + + // Specification always requires bits 1 and 2 to be cleared. + bits_to_clear.insert(1); + bits_to_clear.insert(2); + + int P = 0; + // Create the complement of P, then invert. + for (std::set::iterator iter = bits_to_clear.begin(); + iter != bits_to_clear.end(); ++iter) + { + P |= (1 << ((*iter) - 1)); + } + P = ~P; + + generateID(); + std::string O; + std::string U; + QPDF::compute_encryption_O_U( + user_password, owner_password, V, R, key_len, P, + this->encrypt_metadata, this->id1, O, U); + setEncryptionParametersInternal( + V, R, key_len, P, O, U, this->id1, user_password); +} + +void +QPDFWriter::copyEncryptionParameters(QPDF& qpdf) +{ + this->preserve_encryption = false; + generateID(); + QPDFObjectHandle trailer = qpdf.getTrailer(); + if (trailer.hasKey("/Encrypt")) + { + this->id1 = + trailer.getKey("/ID").getArrayItem(0).getStringValue(); + QPDFObjectHandle encrypt = trailer.getKey("/Encrypt"); + int V = encrypt.getKey("/V").getIntValue(); + int key_len = 5; + if (V > 1) + { + key_len = encrypt.getKey("/Length").getIntValue() / 8; + } + if (encrypt.hasKey("/EncryptMetadata") && + encrypt.getKey("/EncryptMetadata").isBool()) + { + this->encrypt_metadata = + encrypt.getKey("/EncryptMetadata").getBoolValue(); + } + if (V >= 4) + { + if (encrypt.hasKey("/CF") && + encrypt.getKey("/CF").isDictionary() && + encrypt.hasKey("/StmF") && + encrypt.getKey("/StmF").isName()) + { + // Determine whether to use AES from StmF. QPDFWriter + // can't write files with different StrF and StmF. + QPDFObjectHandle CF = encrypt.getKey("/CF"); + QPDFObjectHandle StmF = encrypt.getKey("/StmF"); + if (CF.hasKey(StmF.getName()) && + CF.getKey(StmF.getName()).isDictionary()) + { + QPDFObjectHandle StmF_data = CF.getKey(StmF.getName()); + if (StmF_data.hasKey("/CFM") && + StmF_data.getKey("/CFM").isName() && + StmF_data.getKey("/CFM").getName() == "/AESV2") + { + this->encrypt_use_aes = true; + } + } + } + } + QTC::TC("qpdf", "QPDFWriter copy encrypt metadata", + this->encrypt_metadata ? 0 : 1); + QTC::TC("qpdf", "QPDFWriter copy use_aes", + this->encrypt_use_aes ? 0 : 1); + setEncryptionParametersInternal( + V, + encrypt.getKey("/R").getIntValue(), + key_len, + encrypt.getKey("/P").getIntValue(), + encrypt.getKey("/O").getStringValue(), + encrypt.getKey("/U").getStringValue(), + this->id1, // this->id1 == the other file's id1 + qpdf.getPaddedUserPassword()); + } +} + +void +QPDFWriter::disableIncompatibleEncryption(int major, int minor) +{ + if (! this->encrypted) + { + return; + } + + bool disable = false; + if (compareVersions(major, minor, 1, 3) < 0) + { + disable = true; + } + else + { + int V = atoi(encryption_dictionary["/V"].c_str()); + int R = atoi(encryption_dictionary["/R"].c_str()); + if (compareVersions(major, minor, 1, 4) < 0) + { + if ((V > 1) || (R > 2)) + { + disable = true; + } + } + else if (compareVersions(major, minor, 1, 5) < 0) + { + if ((V > 2) || (R > 3)) + { + disable = true; + } + } + else if (compareVersions(major, minor, 1, 6) < 0) + { + if (this->encrypt_use_aes) + { + disable = true; + } + } + } + if (disable) + { + QTC::TC("qpdf", "QPDFWriter forced version disabled encryption"); + this->encrypted = false; + } +} + +void +QPDFWriter::parseVersion(std::string const& version, + int& major, int& minor) const +{ + major = atoi(version.c_str()); + minor = 0; + size_t p = version.find('.'); + if ((p != std::string::npos) && (version.length() > p)) + { + minor = atoi(version.substr(p + 1).c_str()); + } + std::string tmp = QUtil::int_to_string(major) + "." + + QUtil::int_to_string(minor); + if (tmp != version) + { + throw std::logic_error( + "INTERNAL ERROR: QPDFWriter::parseVersion" + " called with invalid version number " + version); + } +} + +int +QPDFWriter::compareVersions(int major1, int minor1, + int major2, int minor2) const +{ + if (major1 < major2) + { + return -1; + } + else if (major1 > major2) + { + return 1; + } + else if (minor1 < minor2) + { + return -1; + } + else if (minor1 > minor2) + { + return 1; + } + else + { + return 0; + } +} + +void +QPDFWriter::setEncryptionParametersInternal( + int V, int R, int key_len, long P, + std::string const& O, std::string const& U, + std::string const& id1, std::string const& user_password) +{ + encryption_dictionary["/Filter"] = "/Standard"; + encryption_dictionary["/V"] = QUtil::int_to_string(V); + encryption_dictionary["/Length"] = QUtil::int_to_string(key_len * 8); + encryption_dictionary["/R"] = QUtil::int_to_string(R); + encryption_dictionary["/P"] = QUtil::int_to_string(P); + encryption_dictionary["/O"] = QPDF_String(O).unparse(true); + encryption_dictionary["/U"] = QPDF_String(U).unparse(true); + setMinimumPDFVersion("1.3"); + if (R == 3) + { + setMinimumPDFVersion("1.4"); + } + else if (R >= 4) + { + setMinimumPDFVersion(this->encrypt_use_aes ? "1.6" : "1.5"); + } + + if ((R >= 4) && (! encrypt_metadata)) + { + encryption_dictionary["/EncryptMetadata"] = "false"; + } + if (V == 4) + { + // The spec says the value for the crypt filter key can be + // anything, and xpdf seems to agree. However, Adobe Reader + // won't open our files unless we use /StdCF. + encryption_dictionary["/StmF"] = "/StdCF"; + encryption_dictionary["/StrF"] = "/StdCF"; + std::string method = (this->encrypt_use_aes ? "/AESV2" : "/V2"); + encryption_dictionary["/CF"] = + "<< /StdCF << /AuthEvent /DocOpen /CFM " + method + " >> >>"; + } + + this->encrypted = true; + QPDF::EncryptionData encryption_data( + V, R, key_len, P, O, U, id1, this->encrypt_metadata); + this->encryption_key = QPDF::compute_encryption_key( + user_password, encryption_data); +} + +void +QPDFWriter::setDataKey(int objid) +{ + this->cur_data_key = QPDF::compute_data_key( + this->encryption_key, objid, 0, this->encrypt_use_aes); +} + +int +QPDFWriter::bytesNeeded(unsigned long long n) +{ + int bytes = 0; + while (n) + { + ++bytes; + n >>= 8; + } + return bytes; +} + +void +QPDFWriter::writeBinary(unsigned long long val, unsigned int bytes) +{ + assert(bytes <= sizeof(unsigned long long)); + unsigned char data[sizeof(unsigned long long)]; + for (unsigned int i = 0; i < bytes; ++i) + { + data[bytes - i - 1] = (unsigned char)(val & 0xff); + val >>= 8; + } + this->pipeline->write(data, bytes); +} + +void +QPDFWriter::writeString(std::string const& str) +{ + this->pipeline->write((unsigned char*)str.c_str(), str.length()); +} + +void +QPDFWriter::writeBuffer(PointerHolder& b) +{ + this->pipeline->write(b->getBuffer(), b->getSize()); +} + +void +QPDFWriter::writeStringQDF(std::string const& str) +{ + if (this->qdf_mode) + { + writeString(str); + } +} + +void +QPDFWriter::writeStringNoQDF(std::string const& str) +{ + if (! this->qdf_mode) + { + writeString(str); + } +} + +void +QPDFWriter::writePad(int nspaces) +{ + for (int i = 0; i < nspaces; ++i) + { + writeString(" "); + } +} + +Pipeline* +QPDFWriter::pushPipeline(Pipeline* p) +{ + assert(dynamic_cast(p) == 0); + this->pipeline_stack.push_back(p); + return p; +} + +void +QPDFWriter::initializePipelineStack(Pipeline *p) +{ + this->pipeline = new Pl_Count("qpdf count", p); + to_delete.push_back(this->pipeline); + this->pipeline_stack.push_back(this->pipeline); +} + +void +QPDFWriter::activatePipelineStack() +{ + Pl_Count* c = new Pl_Count("count", this->pipeline_stack.back()); + this->pipeline_stack.push_back(c); + this->pipeline = c; +} + +void +QPDFWriter::popPipelineStack(PointerHolder* bp) +{ + assert(this->pipeline_stack.size() >= 2); + this->pipeline->finish(); + assert(dynamic_cast(this->pipeline_stack.back()) == + this->pipeline); + delete this->pipeline_stack.back(); + this->pipeline_stack.pop_back(); + while (dynamic_cast(this->pipeline_stack.back()) == 0) + { + Pipeline* p = this->pipeline_stack.back(); + this->pipeline_stack.pop_back(); + Pl_Buffer* buf = dynamic_cast(p); + if (bp && buf) + { + *bp = buf->getBuffer(); + } + delete p; + } + this->pipeline = dynamic_cast(this->pipeline_stack.back()); +} + +void +QPDFWriter::adjustAESStreamLength(size_t& length) +{ + if (this->encrypted && (! this->cur_data_key.empty()) && + this->encrypt_use_aes) + { + // Stream length will be padded with 1 to 16 bytes to end up + // as a multiple of 16. It will also be prepended by 16 bits + // of random data. + length += 32 - (length & 0xf); + } +} + +void +QPDFWriter::pushEncryptionFilter() +{ + if (this->encrypted && (! this->cur_data_key.empty())) + { + Pipeline* p = 0; + if (this->encrypt_use_aes) + { + p = new Pl_AES_PDF( + "aes stream encryption", this->pipeline, true, + (unsigned char*) this->cur_data_key.c_str()); + } + else + { + p = new Pl_RC4("rc4 stream encryption", this->pipeline, + (unsigned char*) this->cur_data_key.c_str(), + (int)this->cur_data_key.length()); + } + pushPipeline(p); + } + // Must call this unconditionally so we can call popPipelineStack + // to balance pushEncryptionFilter(). + activatePipelineStack(); +} + +void +QPDFWriter::pushDiscardFilter() +{ + pushPipeline(new Pl_Discard()); + activatePipelineStack(); +} + +int +QPDFWriter::openObject(int objid) +{ + if (objid == 0) + { + objid = this->next_objid++; + } + this->xref[objid] = QPDFXRefEntry(1, pipeline->getCount(), 0); + writeString(QUtil::int_to_string(objid)); + writeString(" 0 obj\n"); + return objid; +} + +void +QPDFWriter::closeObject(int objid) +{ + // Write a newline before endobj as it makes the file easier to + // repair. + writeString("\nendobj\n"); + writeStringQDF("\n"); + this->lengths[objid] = pipeline->getCount() - this->xref[objid].getOffset(); +} + +void +QPDFWriter::assignCompressedObjectNumbers(int objid) +{ + if (this->object_stream_to_objects.count(objid) == 0) + { + return; + } + + // Reserve numbers for the objects that belong to this object + // stream. + for (std::set::iterator iter = + this->object_stream_to_objects[objid].begin(); + iter != this->object_stream_to_objects[objid].end(); + ++iter) + { + obj_renumber[*iter] = next_objid++; + } +} + +void +QPDFWriter::enqueueObject(QPDFObjectHandle object) +{ + if (object.isIndirect()) + { + if (object.getOwningQPDF() != &(this->pdf)) + { + QTC::TC("qpdf", "QPDFWriter foreign object"); + throw std::logic_error( + "QPDFObjectHandle from different QPDF found while writing." + " Use QPDF::copyForeignObject to add objects from" + " another file."); + } + + if (object.isNull()) + { + // This is a place-holder object for an object stream + } + else if (object.isScalar()) + { + // flattenScalarReferences is supposed to have removed all + // indirect scalars. + throw std::logic_error( + "INTERNAL ERROR: QPDFWriter::enqueueObject: indirect scalar: " + + std::string(this->filename) + " " + + QUtil::int_to_string(object.getObjectID()) + " " + + QUtil::int_to_string(object.getGeneration())); + } + int objid = object.getObjectID(); + + if (obj_renumber.count(objid) == 0) + { + if (this->object_to_object_stream.count(objid)) + { + // This is in an object stream. Don't process it + // here. Instead, enqueue the object stream. + int stream_id = this->object_to_object_stream[objid]; + enqueueObject(this->pdf.getObjectByID(stream_id, 0)); + } + else + { + object_queue.push_back(object); + obj_renumber[objid] = next_objid++; + + if (this->object_stream_to_objects.count(objid)) + { + // For linearized files, uncompressed objects go + // at end, and we take care of assigning numbers + // to them elsewhere. + if (! this->linearized) + { + assignCompressedObjectNumbers(objid); + } + } + else if ((! this->direct_stream_lengths) && object.isStream()) + { + // reserve next object ID for length + ++next_objid; + } + } + } + } + else if (object.isArray()) + { + int n = object.getArrayNItems(); + for (int i = 0; i < n; ++i) + { + if (! this->linearized) + { + enqueueObject(object.getArrayItem(i)); + } + } + } + else if (object.isDictionary()) + { + std::set keys = object.getKeys(); + for (std::set::iterator iter = keys.begin(); + iter != keys.end(); ++iter) + { + if (! this->linearized) + { + enqueueObject(object.getKey(*iter)); + } + } + } + else + { + // ignore + } +} + +void +QPDFWriter::unparseChild(QPDFObjectHandle child, int level, int flags) +{ + if (! this->linearized) + { + enqueueObject(child); + } + if (child.isIndirect()) + { + if (child.isScalar()) + { + // flattenScalarReferences is supposed to have removed all + // indirect scalars. + throw std::logic_error( + "INTERNAL ERROR: QPDFWriter::unparseChild: indirect scalar: " + + QUtil::int_to_string(child.getObjectID()) + " " + + QUtil::int_to_string(child.getGeneration())); + } + int old_id = child.getObjectID(); + int new_id = obj_renumber[old_id]; + writeString(QUtil::int_to_string(new_id)); + writeString(" 0 R"); + } + else + { + unparseObject(child, level, flags); + } +} + +void +QPDFWriter::writeTrailer(trailer_e which, int size, bool xref_stream, + qpdf_offset_t prev) +{ + QPDFObjectHandle trailer = pdf.getTrailer(); + if (! xref_stream) + { + writeString("trailer <<"); + } + writeStringQDF("\n"); + if (which == t_lin_second) + { + writeString(" /Size "); + writeString(QUtil::int_to_string(size)); + } + else + { + std::set keys = trailer.getKeys(); + for (std::set::iterator iter = keys.begin(); + iter != keys.end(); ++iter) + { + std::string const& key = *iter; + writeStringQDF(" "); + writeStringNoQDF(" "); + writeString(QPDF_Name::normalizeName(key)); + writeString(" "); + if (key == "/Size") + { + writeString(QUtil::int_to_string(size)); + if (which == t_lin_first) + { + writeString(" /Prev "); + qpdf_offset_t pos = this->pipeline->getCount(); + writeString(QUtil::int_to_string(prev)); + int nspaces = (int)(pos - this->pipeline->getCount() + 21); + assert(nspaces >= 0); + writePad(nspaces); + } + } + else + { + unparseChild(trailer.getKey(key), 1, 0); + } + writeStringQDF("\n"); + } + } + + // Write ID + writeStringQDF(" "); + writeString(" /ID ["); + writeString(QPDF_String(this->id1).unparse(true)); + writeString(QPDF_String(this->id2).unparse(true)); + writeString("]"); + + if (which != t_lin_second) + { + // Write reference to encryption dictionary + if (this->encrypted) + { + writeString(" /Encrypt "); + writeString(QUtil::int_to_string(this->encryption_dict_objid)); + writeString(" 0 R"); + } + } + + writeStringQDF("\n"); + writeStringNoQDF(" "); + writeString(">>"); +} + +void +QPDFWriter::unparseObject(QPDFObjectHandle object, int level, + unsigned int flags) +{ + unparseObject(object, level, flags, 0, false); +} + +void +QPDFWriter::unparseObject(QPDFObjectHandle object, int level, + unsigned int flags, size_t stream_length, + bool compress) +{ + unsigned int child_flags = flags & ~f_stream; + + std::string indent; + for (int i = 0; i < level; ++i) + { + indent += " "; + } + + if (object.isArray()) + { + // Note: PDF spec 1.4 implementation note 121 states that + // Acrobat requires a space after the [ in the /H key of the + // linearization parameter dictionary. We'll do this + // unconditionally for all arrays because it looks nicer and + // doesn't make the files that much bigger. + writeString("["); + writeStringQDF("\n"); + int n = object.getArrayNItems(); + for (int i = 0; i < n; ++i) + { + writeStringQDF(indent); + writeStringQDF(" "); + writeStringNoQDF(" "); + unparseChild(object.getArrayItem(i), level + 1, child_flags); + writeStringQDF("\n"); + } + writeStringQDF(indent); + writeStringNoQDF(" "); + writeString("]"); + } + else if (object.isDictionary()) + { + writeString("<<"); + writeStringQDF("\n"); + std::set keys = object.getKeys(); + for (std::set::iterator iter = keys.begin(); + iter != keys.end(); ++iter) + { + // I'm not fully clear on /Crypt keys in /DecodeParms. If + // one is found, we refuse to filter, so we should be + // safe. + std::string const& key = *iter; + if ((flags & f_filtered) && + ((key == "/Filter") || + (key == "/DecodeParms"))) + { + continue; + } + if ((flags & f_stream) && (key == "/Length")) + { + continue; + } + writeStringQDF(indent); + writeStringQDF(" "); + writeStringNoQDF(" "); + writeString(QPDF_Name::normalizeName(key)); + writeString(" "); + unparseChild(object.getKey(key), level + 1, child_flags); + writeStringQDF("\n"); + } + + if (flags & f_stream) + { + writeStringQDF(indent); + writeStringQDF(" "); + writeString(" /Length "); + + if (this->direct_stream_lengths) + { + writeString(QUtil::int_to_string(stream_length)); + } + else + { + writeString( + QUtil::int_to_string(this->cur_stream_length_id)); + writeString(" 0 R"); + } + writeStringQDF("\n"); + if (compress && (flags & f_filtered)) + { + writeStringQDF(indent); + writeStringQDF(" "); + writeString(" /Filter /FlateDecode"); + writeStringQDF("\n"); + } + } + + writeStringQDF(indent); + writeStringNoQDF(" "); + writeString(">>"); + } + else if (object.isStream()) + { + // Write stream data to a buffer. + int old_id = object.getObjectID(); + int new_id = obj_renumber[old_id]; + if (! this->direct_stream_lengths) + { + this->cur_stream_length_id = new_id + 1; + } + QPDFObjectHandle stream_dict = object.getDict(); + + bool is_metadata = false; + if (stream_dict.getKey("/Type").isName() && + (stream_dict.getKey("/Type").getName() == "/Metadata")) + { + is_metadata = true; + } + bool filter = (this->stream_data_mode != qpdf_s_preserve); + if (this->stream_data_mode == qpdf_s_compress) + { + // Don't filter if the stream is already compressed with + // FlateDecode. We don't want to make it worse by getting + // rid of a predictor or otherwise messing with it. We + // should also avoid messing with anything that's + // compressed with a lossy compression scheme, but we + // don't support any of those right now. + QPDFObjectHandle filter_obj = stream_dict.getKey("/Filter"); + if (filter_obj.isName() && + ((filter_obj.getName() == "/FlateDecode") || + (filter_obj.getName() == "/Fl"))) + { + QTC::TC("qpdf", "QPDFWriter not recompressing /FlateDecode"); + filter = false; + } + } + bool normalize = false; + bool compress = false; + if (is_metadata && + ((! this->encrypted) || (this->encrypt_metadata == false))) + { + QTC::TC("qpdf", "QPDFWriter not compressing metadata"); + filter = true; + compress = false; + } + else if (this->normalize_content && normalized_streams.count(old_id)) + { + normalize = true; + filter = true; + } + else if (filter && (this->stream_data_mode == qpdf_s_compress)) + { + compress = true; + QTC::TC("qpdf", "QPDFWriter compressing uncompressed stream"); + } + + flags |= f_stream; + + pushPipeline(new Pl_Buffer("stream data")); + activatePipelineStack(); + bool filtered = + object.pipeStreamData(this->pipeline, filter, normalize, compress); + PointerHolder stream_data; + popPipelineStack(&stream_data); + if (filtered) + { + flags |= f_filtered; + } + else + { + compress = false; + } + + this->cur_stream_length = stream_data->getSize(); + if (is_metadata && this->encrypted && (! this->encrypt_metadata)) + { + // Don't encrypt stream data for the metadata stream + this->cur_data_key.clear(); + } + adjustAESStreamLength(this->cur_stream_length); + unparseObject(stream_dict, 0, flags, this->cur_stream_length, compress); + writeString("\nstream\n"); + pushEncryptionFilter(); + writeBuffer(stream_data); + char last_char = this->pipeline->getLastChar(); + popPipelineStack(); + + if (this->qdf_mode) + { + if (last_char != '\n') + { + writeString("\n"); + this->added_newline = true; + } + else + { + this->added_newline = false; + } + } + writeString("endstream"); + } + else if (object.isString()) + { + std::string val; + if (this->encrypted && + (! (flags & f_in_ostream)) && + (! this->cur_data_key.empty())) + { + val = object.getStringValue(); + if (this->encrypt_use_aes) + { + Pl_Buffer bufpl("encrypted string"); + Pl_AES_PDF pl("aes encrypt string", &bufpl, true, + (unsigned char const*)this->cur_data_key.c_str()); + pl.write((unsigned char*) val.c_str(), val.length()); + pl.finish(); + Buffer* buf = bufpl.getBuffer(); + val = QPDF_String( + std::string((char*)buf->getBuffer(), + buf->getSize())).unparse(true); + delete buf; + } + else + { + char* tmp = QUtil::copy_string(val); + size_t vlen = val.length(); + RC4 rc4((unsigned char const*)this->cur_data_key.c_str(), + (int)this->cur_data_key.length()); + rc4.process((unsigned char*)tmp, (int)vlen); + val = QPDF_String(std::string(tmp, vlen)).unparse(); + delete [] tmp; + } + } + else + { + val = object.unparseResolved(); + } + writeString(val); + } + else + { + writeString(object.unparseResolved()); + } +} + +void +QPDFWriter::writeObjectStreamOffsets(std::vector& offsets, + int first_obj) +{ + for (unsigned int i = 0; i < offsets.size(); ++i) + { + if (i != 0) + { + writeStringQDF("\n"); + writeStringNoQDF(" "); + } + writeString(QUtil::int_to_string(i + first_obj)); + writeString(" "); + writeString(QUtil::int_to_string(offsets[i])); + } + writeString("\n"); +} + +void +QPDFWriter::writeObjectStream(QPDFObjectHandle object) +{ + // Note: object might be null if this is a place-holder for an + // object stream that we are generating from scratch. + + int old_id = object.getObjectID(); + int new_id = obj_renumber[old_id]; + + std::vector offsets; + qpdf_offset_t first = 0; + + // Generate stream itself. We have to do this in two passes so we + // can calculate offsets in the first pass. + PointerHolder stream_buffer; + int first_obj = -1; + bool compressed = false; + for (int pass = 1; pass <= 2; ++pass) + { + if (pass == 1) + { + pushDiscardFilter(); + } + else + { + // Adjust offsets to skip over comment before first object + + first = offsets[0]; + for (std::vector::iterator iter = offsets.begin(); + iter != offsets.end(); ++iter) + { + *iter -= first; + } + + // Take one pass at writing pairs of numbers so we can get + // their size information + pushDiscardFilter(); + writeObjectStreamOffsets(offsets, first_obj); + first += this->pipeline->getCount(); + popPipelineStack(); + + // Set up a stream to write the stream data into a buffer. + Pipeline* next = pushPipeline(new Pl_Buffer("object stream")); + if (! ((this->stream_data_mode == qpdf_s_uncompress) || + this->qdf_mode)) + { + compressed = true; + next = pushPipeline( + new Pl_Flate("compress object stream", next, + Pl_Flate::a_deflate)); + } + activatePipelineStack(); + writeObjectStreamOffsets(offsets, first_obj); + } + + int count = 0; + for (std::set::iterator iter = + this->object_stream_to_objects[old_id].begin(); + iter != this->object_stream_to_objects[old_id].end(); + ++iter, ++count) + { + int obj = *iter; + int new_obj = this->obj_renumber[obj]; + if (first_obj == -1) + { + first_obj = new_obj; + } + if (this->qdf_mode) + { + writeString("%% Object stream: object " + + QUtil::int_to_string(new_obj) + ", index " + + QUtil::int_to_string(count)); + if (! this->suppress_original_object_ids) + { + writeString("; original object ID: " + + QUtil::int_to_string(obj)); + } + writeString("\n"); + } + if (pass == 1) + { + offsets.push_back(this->pipeline->getCount()); + } + writeObject(this->pdf.getObjectByID(obj, 0), count); + + this->xref[new_obj] = QPDFXRefEntry(2, new_id, count); + } + + // stream_buffer will be initialized only for pass 2 + popPipelineStack(&stream_buffer); + } + + // Write the object + openObject(new_id); + setDataKey(new_id); + writeString("<<"); + writeStringQDF("\n "); + writeString(" /Type /ObjStm"); + writeStringQDF("\n "); + size_t length = stream_buffer->getSize(); + adjustAESStreamLength(length); + writeString(" /Length " + QUtil::int_to_string(length)); + writeStringQDF("\n "); + if (compressed) + { + writeString(" /Filter /FlateDecode"); + } + writeString(" /N " + QUtil::int_to_string(offsets.size())); + writeStringQDF("\n "); + writeString(" /First " + QUtil::int_to_string(first)); + if (! object.isNull()) + { + // If the original object has an /Extends key, preserve it. + QPDFObjectHandle dict = object.getDict(); + QPDFObjectHandle extends = dict.getKey("/Extends"); + if (extends.isIndirect()) + { + QTC::TC("qpdf", "QPDFWriter copy Extends"); + writeStringQDF("\n "); + writeString(" /Extends "); + unparseChild(extends, 1, f_in_ostream); + } + } + writeStringQDF("\n"); + writeStringNoQDF(" "); + writeString(">>\nstream\n"); + if (this->encrypted) + { + QTC::TC("qpdf", "QPDFWriter encrypt object stream"); + } + pushEncryptionFilter(); + writeBuffer(stream_buffer); + popPipelineStack(); + writeString("endstream"); + this->cur_data_key.clear(); + closeObject(new_id); +} + +void +QPDFWriter::writeObject(QPDFObjectHandle object, int object_stream_index) +{ + int old_id = object.getObjectID(); + + if ((object_stream_index == -1) && + (this->object_stream_to_objects.count(old_id))) + { + writeObjectStream(object); + return; + } + + int new_id = obj_renumber[old_id]; + if (this->qdf_mode) + { + if (this->page_object_to_seq.count(old_id)) + { + writeString("%% Page "); + writeString( + QUtil::int_to_string( + this->page_object_to_seq[old_id])); + writeString("\n"); + } + if (this->contents_to_page_seq.count(old_id)) + { + writeString("%% Contents for page "); + writeString( + QUtil::int_to_string( + this->contents_to_page_seq[old_id])); + writeString("\n"); + } + } + if (object_stream_index == -1) + { + if (this->qdf_mode && (! this->suppress_original_object_ids)) + { + writeString("%% Original object ID: " + + QUtil::int_to_string(object.getObjectID()) + " " + + QUtil::int_to_string(object.getGeneration()) + "\n"); + } + openObject(new_id); + setDataKey(new_id); + unparseObject(object, 0, 0); + this->cur_data_key.clear(); + closeObject(new_id); + } + else + { + unparseObject(object, 0, f_in_ostream); + writeString("\n"); + } + + if ((! this->direct_stream_lengths) && object.isStream()) + { + if (this->qdf_mode) + { + if (this->added_newline) + { + writeString("%QDF: ignore_newline\n"); + } + } + openObject(new_id + 1); + writeString(QUtil::int_to_string(this->cur_stream_length)); + closeObject(new_id + 1); + } +} + +void +QPDFWriter::generateID() +{ + // Note: we can't call generateID() at the time of construction + // since the caller hasn't yet had a chance to call setStaticID(), + // but we need to generate it before computing encryption + // dictionary parameters. This is why we call this function both + // from setEncryptionParameters() and from write() and return + // immediately if the ID has already been generated. + + if (! this->id2.empty()) + { + return; + } + + QPDFObjectHandle trailer = pdf.getTrailer(); + + std::string result; + + if (this->static_id) + { + // For test suite use only... + static unsigned char tmp[] = {0x31, 0x41, 0x59, 0x26, + 0x53, 0x58, 0x97, 0x93, + 0x23, 0x84, 0x62, 0x64, + 0x33, 0x83, 0x27, 0x95, + 0x00}; + result = (char*)tmp; + } + else + { + // The PDF specification has guidelines for creating IDs, but it + // states clearly that the only thing that's really important is + // that it is very likely to be unique. We can't really follow + // the guidelines in the spec exactly because we haven't written + // the file yet. This scheme should be fine though. + + std::string seed; + seed += QUtil::int_to_string((int)QUtil::get_current_time()); + seed += " QPDF "; + seed += this->filename; + seed += " "; + if (trailer.hasKey("/Info")) + { + QPDFObjectHandle info = trailer.getKey("/Info"); + std::set keys = info.getKeys(); + for (std::set::iterator iter = keys.begin(); + iter != keys.end(); ++iter) + { + QPDFObjectHandle obj = info.getKey(*iter); + if (obj.isString()) + { + seed += " "; + seed += obj.getStringValue(); + } + } + } + + MD5 m; + m.encodeString(seed.c_str()); + MD5::Digest digest; + m.digest(digest); + result = std::string((char*)digest, sizeof(MD5::Digest)); + } + + // If /ID already exists, follow the spec: use the original first + // word and generate a new second word. Otherwise, we'll use the + // generated ID for both. + + this->id2 = result; + if (trailer.hasKey("/ID")) + { + // Note: keep /ID from old file even if --static-id was given. + this->id1 = trailer.getKey("/ID").getArrayItem(0).getStringValue(); + } + else + { + this->id1 = this->id2; + } +} + +void +QPDFWriter::initializeSpecialStreams() +{ + // Mark all page content streams in case we are filtering or + // normalizing. + std::vector pages = pdf.getAllPages(); + int num = 0; + for (std::vector::iterator iter = pages.begin(); + iter != pages.end(); ++iter) + { + QPDFObjectHandle& page = *iter; + this->page_object_to_seq[page.getObjectID()] = ++num; + QPDFObjectHandle contents = page.getKey("/Contents"); + std::vector contents_objects; + if (contents.isArray()) + { + int n = contents.getArrayNItems(); + for (int i = 0; i < n; ++i) + { + contents_objects.push_back( + contents.getArrayItem(i).getObjectID()); + } + } + else if (contents.isStream()) + { + contents_objects.push_back(contents.getObjectID()); + } + + for (std::vector::iterator iter = contents_objects.begin(); + iter != contents_objects.end(); ++iter) + { + this->contents_to_page_seq[*iter] = num; + this->normalized_streams.insert(*iter); + } + } +} + +void +QPDFWriter::preserveObjectStreams() +{ + this->pdf.getObjectStreamData(this->object_to_object_stream); +} + +void +QPDFWriter::generateObjectStreams() +{ + // Basic strategy: make a list of objects that can go into an + // object stream. Then figure out how many object streams are + // needed so that we can distribute objects approximately evenly + // without having any object stream exceed 100 members. We don't + // have to worry about linearized files here -- if the file is + // linearized, we take care of excluding things that aren't + // allowed here later. + + // This code doesn't do anything with /Extends. + + std::vector const& eligible = this->pdf.getCompressibleObjects(); + unsigned int n_object_streams = + (unsigned int)((eligible.size() + 99) / 100); + unsigned int n_per = (unsigned int)(eligible.size() / n_object_streams); + if (n_per * n_object_streams < eligible.size()) + { + ++n_per; + } + unsigned int n = 0; + int cur_ostream = 0; + for (std::vector::const_iterator iter = eligible.begin(); + iter != eligible.end(); ++iter) + { + if ((n % n_per) == 0) + { + if (n > 0) + { + QTC::TC("qpdf", "QPDFWriter generate >1 ostream"); + } + n = 0; + } + if (n == 0) + { + // Construct a new null object as the "original" object + // stream. The rest of the code knows that this means + // we're creating the object stream from scratch. + cur_ostream = this->pdf.makeIndirectObject( + QPDFObjectHandle::newNull()).getObjectID(); + } + this->object_to_object_stream[*iter] = cur_ostream; + ++n; + } +} + +void +QPDFWriter::write() +{ + // Do preliminary setup + + if (this->linearized) + { + this->qdf_mode = false; + } + + if (this->qdf_mode) + { + if (! this->normalize_content_set) + { + this->normalize_content = true; + } + if (! this->stream_data_mode_set) + { + this->stream_data_mode = qpdf_s_uncompress; + } + } + + if (this->encrypted) + { + // Encryption has been explicitly set + this->preserve_encryption = false; + } + else if (this->normalize_content || + (this->stream_data_mode == qpdf_s_uncompress) || + this->qdf_mode) + { + // Encryption makes looking at contents pretty useless. If + // the user explicitly encrypted though, we still obey that. + this->preserve_encryption = false; + } + + if (preserve_encryption) + { + copyEncryptionParameters(this->pdf); + } + + if (! this->forced_pdf_version.empty()) + { + int major = 0; + int minor = 0; + parseVersion(this->forced_pdf_version, major, minor); + disableIncompatibleEncryption(major, minor); + if (compareVersions(major, minor, 1, 5) < 0) + { + QTC::TC("qpdf", "QPDFWriter forcing object stream disable"); + this->object_stream_mode = qpdf_o_disable; + } + } + + if (this->qdf_mode || this->normalize_content || + (this->stream_data_mode == qpdf_s_uncompress)) + { + initializeSpecialStreams(); + } + + if (this->qdf_mode) + { + // Generate indirect stream lengths for qdf mode since fix-qdf + // uses them for storing recomputed stream length data. + // Certain streams such as object streams, xref streams, and + // hint streams always get direct stream lengths. + this->direct_stream_lengths = false; + } + + switch (this->object_stream_mode) + { + case qpdf_o_disable: + // no action required + break; + + case qpdf_o_preserve: + preserveObjectStreams(); + break; + + case qpdf_o_generate: + generateObjectStreams(); + break; + + // no default so gcc will warn for missing case tag + } + + if (this->linearized) + { + // Page dictionaries are not allowed to be compressed objects. + std::vector pages = pdf.getAllPages(); + for (std::vector::iterator iter = pages.begin(); + iter != pages.end(); ++iter) + { + QPDFObjectHandle& page = *iter; + int objid = page.getObjectID(); + if (this->object_to_object_stream.count(objid)) + { + QTC::TC("qpdf", "QPDFWriter uncompressing page dictionary"); + this->object_to_object_stream.erase(objid); + } + } + } + + if (this->linearized || this->encrypted) + { + // The document catalog is not allowed to be compressed in + // linearized files either. It also appears that Adobe Reader + // 8.0.0 has a bug that prevents it from being able to handle + // encrypted files with compressed document catalogs, so we + // disable them in that case as well. + int objid = pdf.getRoot().getObjectID(); + if (this->object_to_object_stream.count(objid)) + { + QTC::TC("qpdf", "QPDFWriter uncompressing root"); + this->object_to_object_stream.erase(objid); + } + } + + // Generate reverse mapping from object stream to objects + for (std::map::iterator iter = + this->object_to_object_stream.begin(); + iter != this->object_to_object_stream.end(); ++iter) + { + int obj = (*iter).first; + int stream = (*iter).second; + this->object_stream_to_objects[stream].insert(obj); + this->max_ostream_index = + std::max(this->max_ostream_index, + (int)this->object_stream_to_objects[stream].size() - 1); + } + + if (! this->object_stream_to_objects.empty()) + { + setMinimumPDFVersion("1.5"); + } + + generateID(); + + pdf.trimTrailerForWrite(); + pdf.flattenScalarReferences(); + + if (this->linearized) + { + writeLinearized(); + } + else + { + writeStandard(); + } + + this->pipeline->finish(); + if (this->close_file) + { + fclose(this->file); + } + this->file = 0; + if (this->buffer_pipeline) + { + this->output_buffer = this->buffer_pipeline->getBuffer(); + this->buffer_pipeline = 0; + } +} + +void +QPDFWriter::enqueuePart(std::vector& part) +{ + for (std::vector::iterator iter = part.begin(); + iter != part.end(); ++iter) + { + enqueueObject(*iter); + } +} + +void +QPDFWriter::writeEncryptionDictionary() +{ + this->encryption_dict_objid = openObject(this->encryption_dict_objid); + writeString("<<"); + for (std::map::iterator iter = + this->encryption_dictionary.begin(); + iter != this->encryption_dictionary.end(); ++iter) + { + writeString(" "); + writeString((*iter).first); + writeString(" "); + writeString((*iter).second); + } + writeString(" >>"); + closeObject(this->encryption_dict_objid); +} + +void +QPDFWriter::writeHeader() +{ + setMinimumPDFVersion(pdf.getPDFVersion()); + std::string version = this->min_pdf_version; + if (! this->forced_pdf_version.empty()) + { + QTC::TC("qpdf", "QPDFWriter using forced PDF version"); + version = this->forced_pdf_version; + } + + writeString("%PDF-"); + writeString(version); + // This string of binary characters would not be valid UTF-8, so + // it really should be treated as binary. + writeString("\n%\xbf\xf7\xa2\xfe\n"); + writeStringQDF("%QDF-1.0\n\n"); + + // Note: do not write extra header text here. Linearized PDFs + // must include the entire linearization parameter dictionary + // within the first 1024 characters of the PDF file, so for + // linearized files, we have to write extra header text after the + // linearization parameter dictionary. +} + +void +QPDFWriter::writeHintStream(int hint_id) +{ + PointerHolder hint_buffer; + int S = 0; + int O = 0; + pdf.generateHintStream( + this->xref, this->lengths, this->obj_renumber, hint_buffer, S, O); + + openObject(hint_id); + setDataKey(hint_id); + + size_t hlen = hint_buffer->getSize(); + + writeString("<< /Filter /FlateDecode /S "); + writeString(QUtil::int_to_string(S)); + if (O) + { + writeString(" /O "); + writeString(QUtil::int_to_string(O)); + } + writeString(" /Length "); + adjustAESStreamLength(hlen); + writeString(QUtil::int_to_string(hlen)); + writeString(" >>\nstream\n"); + + if (this->encrypted) + { + QTC::TC("qpdf", "QPDFWriter encrypted hint stream"); + } + pushEncryptionFilter(); + writeBuffer(hint_buffer); + char last_char = this->pipeline->getLastChar(); + popPipelineStack(); + + if (last_char != '\n') + { + writeString("\n"); + } + writeString("endstream"); + closeObject(hint_id); +} + +qpdf_offset_t +QPDFWriter::writeXRefTable(trailer_e which, int first, int last, int size) +{ + return writeXRefTable(which, first, last, size, 0, false, 0, 0, 0); +} + +qpdf_offset_t +QPDFWriter::writeXRefTable(trailer_e which, int first, int last, int size, + qpdf_offset_t prev, bool suppress_offsets, + int hint_id, qpdf_offset_t hint_offset, + qpdf_offset_t hint_length) +{ + writeString("xref\n"); + writeString(QUtil::int_to_string(first)); + writeString(" "); + writeString(QUtil::int_to_string(last - first + 1)); + qpdf_offset_t space_before_zero = this->pipeline->getCount(); + writeString("\n"); + for (int i = first; i <= last; ++i) + { + if (i == 0) + { + writeString("0000000000 65535 f \n"); + } + else + { + qpdf_offset_t offset = 0; + if (! suppress_offsets) + { + offset = this->xref[i].getOffset(); + if ((hint_id != 0) && + (i != hint_id) && + (offset >= hint_offset)) + { + offset += hint_length; + } + } + writeString(QUtil::int_to_string(offset, 10)); + writeString(" 00000 n \n"); + } + } + writeTrailer(which, size, false, prev); + writeString("\n"); + return space_before_zero; +} + +qpdf_offset_t +QPDFWriter::writeXRefStream(int objid, int max_id, qpdf_offset_t max_offset, + trailer_e which, int first, int last, int size) +{ + return writeXRefStream(objid, max_id, max_offset, + which, first, last, size, 0, 0, 0, 0, false); +} + +qpdf_offset_t +QPDFWriter::writeXRefStream(int xref_id, int max_id, qpdf_offset_t max_offset, + trailer_e which, int first, int last, int size, + qpdf_offset_t prev, int hint_id, + qpdf_offset_t hint_offset, + qpdf_offset_t hint_length, + bool skip_compression) +{ + qpdf_offset_t xref_offset = this->pipeline->getCount(); + qpdf_offset_t space_before_zero = xref_offset - 1; + + // field 1 contains offsets and object stream identifiers + int f1_size = std::max(bytesNeeded(max_offset), + bytesNeeded(max_id)); + + // field 2 contains object stream indices + int f2_size = bytesNeeded(this->max_ostream_index); + + unsigned int esize = 1 + f1_size + f2_size; + + // Must store in xref table in advance of writing the actual data + // rather than waiting for openObject to do it. + this->xref[xref_id] = QPDFXRefEntry(1, pipeline->getCount(), 0); + + Pipeline* p = pushPipeline(new Pl_Buffer("xref stream")); + bool compressed = false; + if (! ((this->stream_data_mode == qpdf_s_uncompress) || this->qdf_mode)) + { + compressed = true; + if (! skip_compression) + { + // Write the stream dictionary for compression but don't + // actually compress. This helps us with computation of + // padding for pass 1 of linearization. + p = pushPipeline( + new Pl_Flate("compress xref", p, Pl_Flate::a_deflate)); + } + p = pushPipeline( + new Pl_PNGFilter( + "pngify xref", p, Pl_PNGFilter::a_encode, esize, 0)); + } + activatePipelineStack(); + for (int i = first; i <= last; ++i) + { + QPDFXRefEntry& e = this->xref[i]; + switch (e.getType()) + { + case 0: + writeBinary(0, 1); + writeBinary(0, f1_size); + writeBinary(0, f2_size); + break; + + case 1: + { + qpdf_offset_t offset = e.getOffset(); + if ((hint_id != 0) && + (i != hint_id) && + (offset >= hint_offset)) + { + offset += hint_length; + } + writeBinary(1, 1); + writeBinary(offset, f1_size); + writeBinary(0, f2_size); + } + break; + + case 2: + writeBinary(2, 1); + writeBinary(e.getObjStreamNumber(), f1_size); + writeBinary(e.getObjStreamIndex(), f2_size); + break; + + default: + throw std::logic_error("invalid type writing xref stream"); + break; + } + } + PointerHolder xref_data; + popPipelineStack(&xref_data); + + openObject(xref_id); + writeString("<<"); + writeStringQDF("\n "); + writeString(" /Type /XRef"); + writeStringQDF("\n "); + writeString(" /Length " + QUtil::int_to_string(xref_data->getSize())); + if (compressed) + { + writeStringQDF("\n "); + writeString(" /Filter /FlateDecode"); + writeStringQDF("\n "); + writeString(" /DecodeParms << /Columns " + + QUtil::int_to_string(esize) + " /Predictor 12 >>"); + } + writeStringQDF("\n "); + writeString(" /W [ 1 " + + QUtil::int_to_string(f1_size) + " " + + QUtil::int_to_string(f2_size) + " ]"); + if (! ((first == 0) && (last == size - 1))) + { + writeString(" /Index [ " + + QUtil::int_to_string(first) + " " + + QUtil::int_to_string(last - first + 1) + " ]"); + } + writeTrailer(which, size, true, prev); + writeString("\nstream\n"); + writeBuffer(xref_data); + writeString("\nendstream"); + closeObject(xref_id); + return space_before_zero; +} + +int +QPDFWriter::calculateXrefStreamPadding(int xref_bytes) +{ + // This routine is called right after a linearization first pass + // xref stream has been written without compression. Calculate + // the amount of padding that would be required in the worst case, + // assuming the number of uncompressed bytes remains the same. + // The worst case for zlib is that the output is larger than the + // input by 6 bytes plus 5 bytes per 16K, and then we'll add 10 + // extra bytes for number length increases. + + return 16 + (5 * ((xref_bytes + 16383) / 16384)); +} + +void +QPDFWriter::writeLinearized() +{ + // Optimize file and enqueue objects in order + + bool need_xref_stream = (! this->object_to_object_stream.empty()); + pdf.optimize(this->object_to_object_stream); + + std::vector part4; + std::vector part6; + std::vector part7; + std::vector part8; + std::vector part9; + pdf.getLinearizedParts(this->object_to_object_stream, + part4, part6, part7, part8, part9); + + // Object number sequence: + // + // second half + // second half uncompressed objects + // second half xref stream, if any + // second half compressed objects + // first half + // linearization dictionary + // first half xref stream, if any + // part 4 uncompresesd objects + // encryption dictionary, if any + // hint stream + // part 6 uncompressed objects + // first half compressed objects + // + + // Second half objects + int second_half_uncompressed = + (int)(part7.size() + part8.size() + part9.size()); + int second_half_first_obj = 1; + int after_second_half = 1 + second_half_uncompressed; + this->next_objid = after_second_half; + int second_half_xref = 0; + if (need_xref_stream) + { + second_half_xref = this->next_objid++; + } + // Assign numbers to all compressed objects in the second half. + std::vector* vecs2[] = {&part7, &part8, &part9}; + for (int i = 0; i < 3; ++i) + { + for (std::vector::iterator iter = (*vecs2[i]).begin(); + iter != (*vecs2[i]).end(); ++iter) + { + assignCompressedObjectNumbers((*iter).getObjectID()); + } + } + int second_half_end = this->next_objid - 1; + int second_trailer_size = this->next_objid; + + // First half objects + int first_half_start = this->next_objid; + int lindict_id = this->next_objid++; + int first_half_xref = 0; + if (need_xref_stream) + { + first_half_xref = this->next_objid++; + } + int part4_first_obj = this->next_objid; + this->next_objid += part4.size(); + int after_part4 = this->next_objid; + if (this->encrypted) + { + this->encryption_dict_objid = this->next_objid++; + } + int hint_id = this->next_objid++; + int part6_first_obj = this->next_objid; + this->next_objid += part6.size(); + int after_part6 = this->next_objid; + // Assign numbers to all compressed objects in the first half + std::vector* vecs1[] = {&part4, &part6}; + for (int i = 0; i < 2; ++i) + { + for (std::vector::iterator iter = (*vecs1[i]).begin(); + iter != (*vecs1[i]).end(); ++iter) + { + assignCompressedObjectNumbers((*iter).getObjectID()); + } + } + int first_half_end = this->next_objid - 1; + int first_trailer_size = this->next_objid; + + int part4_end_marker = part4.back().getObjectID(); + int part6_end_marker = part6.back().getObjectID(); + qpdf_offset_t space_before_zero = 0; + qpdf_offset_t file_size = 0; + qpdf_offset_t part6_end_offset = 0; + qpdf_offset_t first_half_max_obj_offset = 0; + qpdf_offset_t second_xref_offset = 0; + qpdf_offset_t first_xref_end = 0; + qpdf_offset_t second_xref_end = 0; + + this->next_objid = part4_first_obj; + enqueuePart(part4); + assert(this->next_objid = after_part4); + this->next_objid = part6_first_obj; + enqueuePart(part6); + assert(this->next_objid == after_part6); + this->next_objid = second_half_first_obj; + enqueuePart(part7); + enqueuePart(part8); + enqueuePart(part9); + assert(this->next_objid == after_second_half); + + qpdf_offset_t hint_length = 0; + PointerHolder hint_buffer; + + // Write file in two passes. Part numbers refer to PDF spec 1.4. + + for (int pass = 1; pass <= 2; ++pass) + { + if (pass == 1) + { + pushDiscardFilter(); + } + + // Part 1: header + + writeHeader(); + + // Part 2: linearization parameter dictionary. Save enough + // space to write real dictionary. 200 characters is enough + // space if all numerical values in the parameter dictionary + // that contain offsets are 20 digits long plus a few extra + // characters for safety. The entire linearization parameter + // dictionary must appear within the first 1024 characters of + // the file. + + qpdf_offset_t pos = this->pipeline->getCount(); + openObject(lindict_id); + writeString("<<"); + if (pass == 2) + { + std::vector const& pages = pdf.getAllPages(); + int first_page_object = obj_renumber[pages[0].getObjectID()]; + int npages = (int)pages.size(); + + writeString(" /Linearized 1 /L "); + writeString(QUtil::int_to_string(file_size + hint_length)); + // Implementation note 121 states that a space is + // mandatory after this open bracket. + writeString(" /H [ "); + writeString(QUtil::int_to_string(this->xref[hint_id].getOffset())); + writeString(" "); + writeString(QUtil::int_to_string(hint_length)); + writeString(" ] /O "); + writeString(QUtil::int_to_string(first_page_object)); + writeString(" /E "); + writeString(QUtil::int_to_string(part6_end_offset + hint_length)); + writeString(" /N "); + writeString(QUtil::int_to_string(npages)); + writeString(" /T "); + writeString(QUtil::int_to_string(space_before_zero + hint_length)); + } + writeString(" >>"); + closeObject(lindict_id); + static int const pad = 200; + int spaces = (pos - this->pipeline->getCount() + pad); + assert(spaces >= 0); + writePad(spaces); + writeString("\n"); + + // If the user supplied any additional header text, write it + // here after the linearization parameter dictionary. + writeString(this->extra_header_text); + + // Part 3: first page cross reference table and trailer. + + qpdf_offset_t first_xref_offset = this->pipeline->getCount(); + qpdf_offset_t hint_offset = 0; + if (pass == 2) + { + hint_offset = this->xref[hint_id].getOffset(); + } + if (need_xref_stream) + { + // Must pad here too. + if (pass == 1) + { + // Set first_half_max_obj_offset to a value large + // enough to force four bytes to be reserved for each + // file offset. This would provide adequate space for + // the xref stream as long as the last object in page + // 1 starts with in the first 4 GB of the file, which + // is extremely likely. In the second pass, we will + // know the actual value for this, but it's okay if + // it's smaller. + first_half_max_obj_offset = 1 << 25; + } + pos = this->pipeline->getCount(); + writeXRefStream(first_half_xref, first_half_end, + first_half_max_obj_offset, + t_lin_first, first_half_start, first_half_end, + first_trailer_size, + hint_length + second_xref_offset, + hint_id, hint_offset, hint_length, + (pass == 1)); + qpdf_offset_t endpos = this->pipeline->getCount(); + if (pass == 1) + { + // Pad so we have enough room for the real xref + // stream. + writePad(calculateXrefStreamPadding(endpos - pos)); + first_xref_end = this->pipeline->getCount(); + } + else + { + // Pad so that the next object starts at the same + // place as in pass 1. + writePad(first_xref_end - endpos); + + // A failure of this insertion means we didn't allow + // enough padding for the first pass xref stream. + assert(this->pipeline->getCount() == first_xref_end); + } + writeString("\n"); + } + else + { + writeXRefTable(t_lin_first, first_half_start, first_half_end, + first_trailer_size, hint_length + second_xref_offset, + (pass == 1), hint_id, hint_offset, hint_length); + writeString("startxref\n0\n%%EOF\n"); + } + + // Parts 4 through 9 + + for (std::list::iterator iter = + this->object_queue.begin(); + iter != this->object_queue.end(); ++iter) + { + QPDFObjectHandle cur_object = (*iter); + if (cur_object.getObjectID() == part6_end_marker) + { + first_half_max_obj_offset = this->pipeline->getCount(); + } + writeObject(cur_object); + if (cur_object.getObjectID() == part4_end_marker) + { + if (this->encrypted) + { + writeEncryptionDictionary(); + } + if (pass == 1) + { + this->xref[hint_id] = + QPDFXRefEntry(1, this->pipeline->getCount(), 0); + } + else + { + // Part 5: hint stream + writeBuffer(hint_buffer); + } + } + if (cur_object.getObjectID() == part6_end_marker) + { + part6_end_offset = this->pipeline->getCount(); + } + } + + // Part 10: overflow hint stream -- not used + + // Part 11: main cross reference table and trailer + + second_xref_offset = this->pipeline->getCount(); + if (need_xref_stream) + { + pos = this->pipeline->getCount(); + space_before_zero = + writeXRefStream(second_half_xref, + second_half_end, second_xref_offset, + t_lin_second, 0, second_half_end, + second_trailer_size, + 0, 0, 0, 0, (pass == 1)); + qpdf_offset_t endpos = this->pipeline->getCount(); + + if (pass == 1) + { + // Pad so we have enough room for the real xref + // stream. See comments for previous xref stream on + // how we calculate the padding. + writePad(calculateXrefStreamPadding(endpos - pos)); + writeString("\n"); + second_xref_end = this->pipeline->getCount(); + } + else + { + // Make the file size the same. + qpdf_offset_t pos = this->pipeline->getCount(); + writePad(second_xref_end + hint_length - 1 - pos); + writeString("\n"); + + // If this assertion fails, maybe we didn't have + // enough padding above. + assert(this->pipeline->getCount() == + (qpdf_offset_t)(second_xref_end + hint_length)); + } + } + else + { + space_before_zero = + writeXRefTable(t_lin_second, 0, second_half_end, + second_trailer_size); + } + writeString("startxref\n"); + writeString(QUtil::int_to_string(first_xref_offset)); + writeString("\n%%EOF\n"); + + if (pass == 1) + { + // Close first pass pipeline + file_size = this->pipeline->getCount(); + popPipelineStack(); + + // Save hint offset since it will be set to zero by + // calling openObject. + qpdf_offset_t hint_offset = this->xref[hint_id].getOffset(); + + // Write hint stream to a buffer + pushPipeline(new Pl_Buffer("hint buffer")); + activatePipelineStack(); + writeHintStream(hint_id); + popPipelineStack(&hint_buffer); + hint_length = (qpdf_offset_t)hint_buffer->getSize(); + + // Restore hint offset + this->xref[hint_id] = QPDFXRefEntry(1, hint_offset, 0); + } + } +} + +void +QPDFWriter::writeStandard() +{ + // Start writing + + writeHeader(); + writeString(this->extra_header_text); + + // Put root first on queue. + QPDFObjectHandle trailer = pdf.getTrailer(); + enqueueObject(trailer.getKey("/Root")); + + // Next place any other objects referenced from the trailer + // dictionary into the queue, handling direct objects recursively. + // Root is already there, so enqueuing it a second time is a + // no-op. + std::set keys = trailer.getKeys(); + for (std::set::iterator iter = keys.begin(); + iter != keys.end(); ++iter) + { + enqueueObject(trailer.getKey(*iter)); + } + + // Now start walking queue, output each object + while (this->object_queue.size()) + { + QPDFObjectHandle cur_object = this->object_queue.front(); + this->object_queue.pop_front(); + writeObject(cur_object); + } + + // Write out the encryption dictionary, if any + if (this->encrypted) + { + writeEncryptionDictionary(); + } + + // Now write out xref. next_objid is now the number of objects. + qpdf_offset_t xref_offset = this->pipeline->getCount(); + if (this->object_stream_to_objects.empty()) + { + // Write regular cross-reference table + // Write regular cross-reference table + writeXRefTable(t_normal, 0, this->next_objid - 1, this->next_objid); + } + else + { + // Write cross-reference stream. + int xref_id = this->next_objid++; + writeXRefStream(xref_id, xref_id, xref_offset, t_normal, + 0, this->next_objid - 1, this->next_objid); + } + writeString("startxref\n"); + writeString(QUtil::int_to_string(xref_offset)); + writeString("\n%%EOF\n"); +} diff --git a/libqpdf/QPDFXRefEntry.cc b/libqpdf/QPDFXRefEntry.cc new file mode 100644 index 0000000..847fc8e --- /dev/null +++ b/libqpdf/QPDFXRefEntry.cc @@ -0,0 +1,61 @@ +#include +#include +#include + +QPDFXRefEntry::QPDFXRefEntry() : + type(0), + field1(0), + field2(0) +{ +} + +QPDFXRefEntry::QPDFXRefEntry(int type, qpdf_offset_t field1, int field2) : + type(type), + field1(field1), + field2(field2) +{ + if ((type < 1) || (type > 2)) + { + throw std::logic_error( + "invalid xref type " + QUtil::int_to_string(type)); + } +} + +int +QPDFXRefEntry::getType() const +{ + return this->type; +} + +qpdf_offset_t +QPDFXRefEntry::getOffset() const +{ + if (this->type != 1) + { + throw std::logic_error( + "getOffset called for xref entry of type != 1"); + } + return this->field1; +} + +int +QPDFXRefEntry::getObjStreamNumber() const +{ + if (this->type != 2) + { + throw std::logic_error( + "getObjStreamNumber called for xref entry of type != 2"); + } + return (int) this->field1; +} + +int +QPDFXRefEntry::getObjStreamIndex() const +{ + if (this->type != 2) + { + throw std::logic_error( + "getObjStreamIndex called for xref entry of type != 2"); + } + return this->field2; +} diff --git a/libqpdf/QPDF_Array.cc b/libqpdf/QPDF_Array.cc new file mode 100644 index 0000000..9f72028 --- /dev/null +++ b/libqpdf/QPDF_Array.cc @@ -0,0 +1,98 @@ +#include +#include + +QPDF_Array::QPDF_Array(std::vector const& items) : + items(items) +{ +} + +QPDF_Array::~QPDF_Array() +{ +} + +void +QPDF_Array::releaseResolved() +{ + for (std::vector::iterator iter = this->items.begin(); + iter != this->items.end(); ++iter) + { + QPDFObjectHandle::ReleaseResolver::releaseResolved(*iter); + } +} + +std::string +QPDF_Array::unparse() +{ + std::string result = "[ "; + for (std::vector::iterator iter = this->items.begin(); + iter != this->items.end(); ++iter) + { + result += (*iter).unparse(); + result += " "; + } + result += "]"; + return result; +} + +int +QPDF_Array::getNItems() const +{ + return (int)this->items.size(); +} + +QPDFObjectHandle +QPDF_Array::getItem(int n) const +{ + if ((n < 0) || (n >= (int)this->items.size())) + { + throw std::logic_error( + "INTERNAL ERROR: bounds error accessing QPDF_Array element"); + } + return this->items[n]; +} + +std::vector const& +QPDF_Array::getAsVector() const +{ + return this->items; +} + +void +QPDF_Array::setItem(int n, QPDFObjectHandle const& oh) +{ + // Call getItem for bounds checking + (void) getItem(n); + this->items[n] = oh; +} + +void +QPDF_Array::setFromVector(std::vector const& items) +{ + this->items = items; +} + +void +QPDF_Array::insertItem(int at, QPDFObjectHandle const& item) +{ + // As special case, also allow insert beyond the end + if ((at < 0) || (at > (int)this->items.size())) + { + throw std::logic_error( + "INTERNAL ERROR: bounds error accessing QPDF_Array element"); + } + this->items.insert(this->items.begin() + at, item); +} + +void +QPDF_Array::appendItem(QPDFObjectHandle const& item) +{ + this->items.push_back(item); +} + +void +QPDF_Array::eraseItem(int at) +{ + // Call getItem for bounds checking + (void) getItem(at); + this->items.erase(this->items.begin() + at); +} diff --git a/libqpdf/QPDF_Bool.cc b/libqpdf/QPDF_Bool.cc new file mode 100644 index 0000000..4bcbfc3 --- /dev/null +++ b/libqpdf/QPDF_Bool.cc @@ -0,0 +1,22 @@ +#include + +QPDF_Bool::QPDF_Bool(bool val) : + val(val) +{ +} + +QPDF_Bool::~QPDF_Bool() +{ +} + +std::string +QPDF_Bool::unparse() +{ + return (val ? "true" : "false"); +} + +bool +QPDF_Bool::getVal() const +{ + return this->val; +} diff --git a/libqpdf/QPDF_Dictionary.cc b/libqpdf/QPDF_Dictionary.cc new file mode 100644 index 0000000..3be138a --- /dev/null +++ b/libqpdf/QPDF_Dictionary.cc @@ -0,0 +1,115 @@ +#include + +#include +#include + +QPDF_Dictionary::QPDF_Dictionary( + std::map const& items) : + items(items) +{ +} + +QPDF_Dictionary::~QPDF_Dictionary() +{ +} + +void +QPDF_Dictionary::releaseResolved() +{ + for (std::map::iterator iter = + this->items.begin(); + iter != this->items.end(); ++iter) + { + QPDFObjectHandle::ReleaseResolver::releaseResolved((*iter).second); + } +} + +std::string +QPDF_Dictionary::unparse() +{ + std::string result = "<< "; + for (std::map::iterator iter = + this->items.begin(); + iter != this->items.end(); ++iter) + { + result += QPDF_Name::normalizeName((*iter).first) + + " " + (*iter).second.unparse() + " "; + } + result += ">>"; + return result; +} + +bool +QPDF_Dictionary::hasKey(std::string const& key) +{ + return ((this->items.count(key) > 0) && + (! this->items[key].isNull())); +} + +QPDFObjectHandle +QPDF_Dictionary::getKey(std::string const& key) +{ + // PDF spec says fetching a non-existent key from a dictionary + // returns the null object. + if (this->items.count(key)) + { + // May be a null object + return (*(this->items.find(key))).second; + } + else + { + return QPDFObjectHandle::newNull(); + } +} + +std::set +QPDF_Dictionary::getKeys() +{ + std::set result; + for (std::map::const_iterator iter = + this->items.begin(); + iter != this->items.end(); ++iter) + { + if (hasKey((*iter).first)) + { + result.insert((*iter).first); + } + } + return result; +} + +std::map const& +QPDF_Dictionary::getAsMap() const +{ + + return this->items; +} + +void +QPDF_Dictionary::replaceKey(std::string const& key, + QPDFObjectHandle const& value) +{ + // add or replace value + this->items[key] = value; +} + +void +QPDF_Dictionary::removeKey(std::string const& key) +{ + // no-op if key does not exist + this->items.erase(key); +} + +void +QPDF_Dictionary::replaceOrRemoveKey(std::string const& key, + QPDFObjectHandle value) +{ + if (value.isNull()) + { + removeKey(key); + } + else + { + replaceKey(key, value); + } +} diff --git a/libqpdf/QPDF_Integer.cc b/libqpdf/QPDF_Integer.cc new file mode 100644 index 0000000..fb25af1 --- /dev/null +++ b/libqpdf/QPDF_Integer.cc @@ -0,0 +1,24 @@ +#include + +#include + +QPDF_Integer::QPDF_Integer(long long val) : + val(val) +{ +} + +QPDF_Integer::~QPDF_Integer() +{ +} + +std::string +QPDF_Integer::unparse() +{ + return QUtil::int_to_string(this->val); +} + +long long +QPDF_Integer::getVal() const +{ + return this->val; +} diff --git a/libqpdf/QPDF_Name.cc b/libqpdf/QPDF_Name.cc new file mode 100644 index 0000000..ce2184f --- /dev/null +++ b/libqpdf/QPDF_Name.cc @@ -0,0 +1,48 @@ +#include + +#include +#include + +QPDF_Name::QPDF_Name(std::string const& name) : + name(name) +{ +} + +QPDF_Name::~QPDF_Name() +{ +} + +std::string +QPDF_Name::normalizeName(std::string const& name) +{ + std::string result; + char num[4]; + result += name[0]; + for (unsigned int i = 1; i < name.length(); ++i) + { + char ch = name[i]; + // Don't use locale/ctype here; follow PDF spec guidelines. + if (strchr("#()<>[]{}/%", ch) || (ch < 33) || (ch > 126)) + { + sprintf(num, "#%02x", (unsigned char) ch); + result += num; + } + else + { + result += ch; + } + } + return result; +} + +std::string +QPDF_Name::unparse() +{ + return normalizeName(this->name); +} + +std::string +QPDF_Name::getName() const +{ + return this->name; +} diff --git a/libqpdf/QPDF_Null.cc b/libqpdf/QPDF_Null.cc new file mode 100644 index 0000000..811ddd2 --- /dev/null +++ b/libqpdf/QPDF_Null.cc @@ -0,0 +1,11 @@ +#include + +QPDF_Null::~QPDF_Null() +{ +} + +std::string +QPDF_Null::unparse() +{ + return "null"; +} diff --git a/libqpdf/QPDF_Real.cc b/libqpdf/QPDF_Real.cc new file mode 100644 index 0000000..466ddb7 --- /dev/null +++ b/libqpdf/QPDF_Real.cc @@ -0,0 +1,29 @@ +#include + +#include + +QPDF_Real::QPDF_Real(std::string const& val) : + val(val) +{ +} + +QPDF_Real::QPDF_Real(double value, int decimal_places) : + val(QUtil::double_to_string(value, decimal_places)) +{ +} + +QPDF_Real::~QPDF_Real() +{ +} + +std::string +QPDF_Real::unparse() +{ + return this->val; +} + +std::string +QPDF_Real::getVal() +{ + return this->val; +} diff --git a/libqpdf/QPDF_Reserved.cc b/libqpdf/QPDF_Reserved.cc new file mode 100644 index 0000000..368db3b --- /dev/null +++ b/libqpdf/QPDF_Reserved.cc @@ -0,0 +1,13 @@ +#include +#include + +QPDF_Reserved::~QPDF_Reserved() +{ +} + +std::string +QPDF_Reserved::unparse() +{ + throw std::logic_error("attempt to unparse QPDF_Reserved"); + return ""; +} diff --git a/libqpdf/QPDF_Stream.cc b/libqpdf/QPDF_Stream.cc new file mode 100644 index 0000000..970ee58 --- /dev/null +++ b/libqpdf/QPDF_Stream.cc @@ -0,0 +1,481 @@ +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include + +#include + +std::map QPDF_Stream::filter_abbreviations; + +QPDF_Stream::QPDF_Stream(QPDF* qpdf, int objid, int generation, + QPDFObjectHandle stream_dict, + qpdf_offset_t offset, size_t length) : + qpdf(qpdf), + objid(objid), + generation(generation), + stream_dict(stream_dict), + offset(offset), + length(length) +{ + if (! stream_dict.isDictionary()) + { + throw std::logic_error( + "stream object instantiated with non-dictionary " + "object for dictionary"); + } +} + +QPDF_Stream::~QPDF_Stream() +{ +} + +void +QPDF_Stream::setObjGen(int objid, int generation) +{ + if (! ((this->objid == 0) && (this->generation == 0))) + { + throw std::logic_error( + "attempt to set object ID and generation of a stream" + " that already has them"); + } + this->objid = objid; + this->generation = generation; +} + +std::string +QPDF_Stream::unparse() +{ + // Unparse stream objects as indirect references + return QUtil::int_to_string(this->objid) + " " + + QUtil::int_to_string(this->generation) + " R"; +} + +QPDFObjectHandle +QPDF_Stream::getDict() const +{ + return this->stream_dict; +} + +PointerHolder +QPDF_Stream::getStreamData() +{ + Pl_Buffer buf("stream data buffer"); + if (! pipeStreamData(&buf, true, false, false)) + { + throw std::logic_error("getStreamData called on unfilterable stream"); + } + QTC::TC("qpdf", "QPDF_Stream getStreamData"); + return buf.getBuffer(); +} + +PointerHolder +QPDF_Stream::getRawStreamData() +{ + Pl_Buffer buf("stream data buffer"); + pipeStreamData(&buf, false, false, false); + QTC::TC("qpdf", "QPDF_Stream getRawStreamData"); + return buf.getBuffer(); +} + +bool +QPDF_Stream::filterable(std::vector& filters, + int& predictor, int& columns, + bool& early_code_change) +{ + if (filter_abbreviations.empty()) + { + // The PDF specification provides these filter abbreviations + // for use in inline images, but according to table H.1 in the + // pre-ISO versions of the PDF specification, Adobe Reader + // also accepts them for stream filters. + filter_abbreviations["/AHx"] = "/ASCIIHexDecode"; + filter_abbreviations["/A85"] = "/ASCII85Decode"; + filter_abbreviations["/LZW"] = "/LZWDecode"; + filter_abbreviations["/Fl"] = "/FlateDecode"; + filter_abbreviations["/RL"] = "/RunLengthDecode"; + filter_abbreviations["/CCF"] = "/CCITTFaxDecode"; + filter_abbreviations["/DCT"] = "/DCTDecode"; + } + + // Initialize values to their defaults as per the PDF spec + predictor = 1; + columns = 0; + early_code_change = true; + + bool filterable = true; + + // See if we can support any decode parameters that are specified. + + QPDFObjectHandle decode_obj = + this->stream_dict.getKey("/DecodeParms"); + if (decode_obj.isNull()) + { + // no problem + } + else if (decode_obj.isDictionary()) + { + std::set keys = decode_obj.getKeys(); + for (std::set::iterator iter = keys.begin(); + iter != keys.end(); ++iter) + { + std::string const& key = *iter; + if (key == "/Predictor") + { + QPDFObjectHandle predictor_obj = decode_obj.getKey(key); + if (predictor_obj.isInteger()) + { + predictor = predictor_obj.getIntValue(); + if (! ((predictor == 1) || (predictor == 12))) + { + filterable = false; + } + } + else + { + filterable = false; + } + } + else if (key == "/EarlyChange") + { + QPDFObjectHandle earlychange_obj = decode_obj.getKey(key); + if (earlychange_obj.isInteger()) + { + int earlychange = earlychange_obj.getIntValue(); + early_code_change = (earlychange == 1); + if (! ((earlychange == 0) || (earlychange == 1))) + { + filterable = false; + } + } + else + { + filterable = false; + } + } + else if (key == "/Columns") + { + QPDFObjectHandle columns_obj = decode_obj.getKey(key); + if (columns_obj.isInteger()) + { + columns = columns_obj.getIntValue(); + } + else + { + filterable = false; + } + } + else if (((key == "/Type") || (key == "/Name")) && + decode_obj.getKey("/Type").isName() && + (decode_obj.getKey("/Type").getName() == + "/CryptFilterDecodeParms")) + { + // we handle this in decryptStream + } + else + { + filterable = false; + } + } + } + else + { + // Ignore for now -- some filter types, like CCITTFaxDecode, + // use types other than dictionary for this. + QTC::TC("qpdf", "QPDF_Stream ignore non-dictionary DecodeParms"); + + filterable = false; + } + + if ((predictor > 1) && (columns == 0)) + { + // invalid + filterable = false; + } + + if (! filterable) + { + return false; + } + + // Check filters + + QPDFObjectHandle filter_obj = this->stream_dict.getKey("/Filter"); + bool filters_okay = true; + + if (filter_obj.isNull()) + { + // No filters + } + else if (filter_obj.isName()) + { + // One filter + filters.push_back(filter_obj.getName()); + } + else if (filter_obj.isArray()) + { + // Potentially multiple filters + int n = filter_obj.getArrayNItems(); + for (int i = 0; i < n; ++i) + { + QPDFObjectHandle item = filter_obj.getArrayItem(i); + if (item.isName()) + { + filters.push_back(item.getName()); + } + else + { + filters_okay = false; + } + } + } + else + { + filters_okay = false; + } + + if (! filters_okay) + { + QTC::TC("qpdf", "QPDF_Stream invalid filter"); + throw QPDFExc(qpdf_e_damaged_pdf, qpdf->getFilename(), + "", this->offset, + "stream filter type is not name or array"); + } + + // `filters' now contains a list of filters to be applied in + // order. See which ones we can support. + + for (std::vector::iterator iter = filters.begin(); + iter != filters.end(); ++iter) + { + std::string& filter = *iter; + + if (filter_abbreviations.count(filter)) + { + QTC::TC("qpdf", "QPDF_Stream expand filter abbreviation"); + filter = filter_abbreviations[filter]; + } + + if (! ((filter == "/Crypt") || + (filter == "/FlateDecode") || + (filter == "/LZWDecode") || + (filter == "/ASCII85Decode") || + (filter == "/ASCIIHexDecode"))) + { + filterable = false; + } + } + + return filterable; +} + +bool +QPDF_Stream::pipeStreamData(Pipeline* pipeline, bool filter, + bool normalize, bool compress) +{ + std::vector filters; + int predictor = 1; + int columns = 0; + bool early_code_change = true; + if (filter) + { + filter = filterable(filters, predictor, columns, early_code_change); + } + + if (pipeline == 0) + { + QTC::TC("qpdf", "QPDF_Stream pipeStreamData with null pipeline"); + return filter; + } + + // Construct the pipeline in reverse order. Force pipelines we + // create to be deleted when this function finishes. + std::vector > to_delete; + + if (filter) + { + if (compress) + { + pipeline = new Pl_Flate("compress object stream", pipeline, + Pl_Flate::a_deflate); + to_delete.push_back(pipeline); + } + + if (normalize) + { + pipeline = new Pl_QPDFTokenizer("normalizer", pipeline); + to_delete.push_back(pipeline); + } + + for (std::vector::reverse_iterator iter = filters.rbegin(); + iter != filters.rend(); ++iter) + { + std::string const& filter = *iter; + if (filter == "/Crypt") + { + // Ignore -- handled by pipeStreamData + } + else if (filter == "/FlateDecode") + { + if (predictor == 12) + { + QTC::TC("qpdf", "QPDF_Stream PNG filter"); + pipeline = new Pl_PNGFilter( + "png decode", pipeline, Pl_PNGFilter::a_decode, + columns, 0 /* not used */); + to_delete.push_back(pipeline); + } + + pipeline = new Pl_Flate("stream inflate", + pipeline, Pl_Flate::a_inflate); + to_delete.push_back(pipeline); + } + else if (filter == "/ASCII85Decode") + { + pipeline = new Pl_ASCII85Decoder("ascii85 decode", pipeline); + to_delete.push_back(pipeline); + } + else if (filter == "/ASCIIHexDecode") + { + pipeline = new Pl_ASCIIHexDecoder("asciiHex decode", pipeline); + to_delete.push_back(pipeline); + } + else if (filter == "/LZWDecode") + { + pipeline = new Pl_LZWDecoder("lzw decode", pipeline, + early_code_change); + to_delete.push_back(pipeline); + } + else + { + throw std::logic_error( + "INTERNAL ERROR: QPDFStream: unknown filter " + "encountered after check"); + } + } + } + + if (this->stream_data.getPointer()) + { + QTC::TC("qpdf", "QPDF_Stream pipe replaced stream data"); + pipeline->write(this->stream_data->getBuffer(), + this->stream_data->getSize()); + pipeline->finish(); + } + else if (this->stream_provider.getPointer()) + { + Pl_Count count("stream provider count", pipeline); + this->stream_provider->provideStreamData( + this->objid, this->generation, &count); + qpdf_offset_t actual_length = count.getCount(); + qpdf_offset_t desired_length = 0; + if (this->stream_dict.hasKey("/Length")) + { + desired_length = this->stream_dict.getKey("/Length").getIntValue(); + if (actual_length == desired_length) + { + QTC::TC("qpdf", "QPDF_Stream pipe use stream provider"); + } + else + { + QTC::TC("qpdf", "QPDF_Stream provider length mismatch"); + throw std::logic_error( + "stream data provider for " + + QUtil::int_to_string(this->objid) + " " + + QUtil::int_to_string(this->generation) + + " provided " + + QUtil::int_to_string(actual_length) + + " bytes instead of expected " + + QUtil::int_to_string(desired_length) + " bytes"); + } + } + else + { + QTC::TC("qpdf", "QPDF_Stream provider length not provided"); + this->stream_dict.replaceKey( + "/Length", QPDFObjectHandle::newInteger(actual_length)); + } + } + else if (this->offset == 0) + { + QTC::TC("qpdf", "QPDF_Stream pipe no stream data"); + throw std::logic_error( + "pipeStreamData called for stream with no data"); + } + else + { + QTC::TC("qpdf", "QPDF_Stream pipe original stream data"); + QPDF::Pipe::pipeStreamData(this->qpdf, this->objid, this->generation, + this->offset, this->length, + this->stream_dict, pipeline); + } + + return filter; +} + +void +QPDF_Stream::replaceStreamData(PointerHolder data, + QPDFObjectHandle const& filter, + QPDFObjectHandle const& decode_parms) +{ + this->stream_data = data; + this->stream_provider = 0; + replaceFilterData(filter, decode_parms, data->getSize()); +} + +void +QPDF_Stream::replaceStreamData( + PointerHolder provider, + QPDFObjectHandle const& filter, + QPDFObjectHandle const& decode_parms) +{ + this->stream_provider = provider; + this->stream_data = 0; + replaceFilterData(filter, decode_parms, 0); +} + +void +QPDF_Stream::replaceFilterData(QPDFObjectHandle const& filter, + QPDFObjectHandle const& decode_parms, + size_t length) +{ + this->stream_dict.replaceOrRemoveKey("/Filter", filter); + this->stream_dict.replaceOrRemoveKey("/DecodeParms", decode_parms); + if (length == 0) + { + QTC::TC("qpdf", "QPDF_Stream unknown stream length"); + this->stream_dict.removeKey("/Length"); + } + else + { + this->stream_dict.replaceKey( + "/Length", QPDFObjectHandle::newInteger((int)length)); + } +} + +void +QPDF_Stream::replaceDict(QPDFObjectHandle new_dict) +{ + this->stream_dict = new_dict; + QPDFObjectHandle length_obj = new_dict.getKey("/Length"); + if (length_obj.isInteger()) + { + this->length = length_obj.getIntValue(); + } + else + { + this->length = 0; + } +} diff --git a/libqpdf/QPDF_String.cc b/libqpdf/QPDF_String.cc new file mode 100644 index 0000000..2ac2ed3 --- /dev/null +++ b/libqpdf/QPDF_String.cc @@ -0,0 +1,211 @@ +#include + +#include +#include + +// DO NOT USE ctype -- it is locale dependent for some things, and +// it's not worth the risk of including it in case it may accidentally +// be used. +#include + +// See above about ctype. +static bool is_ascii_printable(unsigned char ch) +{ + return ((ch >= 32) && (ch <= 126)); +} +static bool is_iso_latin1_printable(unsigned char ch) +{ + return (((ch >= 32) && (ch <= 126)) || (ch >= 160)); +} + +QPDF_String::QPDF_String(std::string const& val) : + val(val) +{ +} + +QPDF_String::~QPDF_String() +{ +} + +std::string +QPDF_String::unparse() +{ + return unparse(false); +} + +std::string +QPDF_String::unparse(bool force_binary) +{ + bool use_hexstring = force_binary; + if (! use_hexstring) + { + unsigned int nonprintable = 0; + int consecutive_printable = 0; + for (unsigned int i = 0; i < this->val.length(); ++i) + { + char ch = this->val[i]; + // Note: do not use locale to determine printability. The + // PDF specification accepts arbitrary binary data. Some + // locales imply multibyte characters. We'll consider + // something printable if it is printable in 7-bit ASCII. + // We'll code this manually rather than being rude and + // setting locale. + if ((ch == 0) || (! (is_ascii_printable(ch) || + strchr("\n\r\t\b\f", ch)))) + { + ++nonprintable; + consecutive_printable = 0; + } + else + { + if (++consecutive_printable > 5) + { + // If there are more than 5 consecutive printable + // characters, I want to see them as such. + nonprintable = 0; + break; + } + } + } + + // Use hex notation if more than 20% of the characters are not + // printable in plain ASCII. + if (5 * nonprintable > val.length()) + { + use_hexstring = true; + } + } + std::string result; + if (use_hexstring) + { + result += "<"; + char num[3]; + for (unsigned int i = 0; i < this->val.length(); ++i) + { + sprintf(num, "%02x", (unsigned char) this->val[i]); + result += num; + } + result += ">"; + } + else + { + result += "("; + char num[5]; + for (unsigned int i = 0; i < this->val.length(); ++i) + { + char ch = this->val[i]; + switch (ch) + { + case '\n': + result += "\\n"; + break; + + case '\r': + result += "\\r"; + break; + + case '\t': + result += "\\t"; + break; + + case '\b': + result += "\\b"; + break; + + case '\f': + result += "\\f"; + break; + + case '(': + result += "\\("; + break; + + case ')': + result += "\\)"; + break; + + case '\\': + result += "\\\\"; + break; + + default: + if (is_iso_latin1_printable(ch)) + { + result += this->val[i]; + } + else + { + sprintf(num, "\\%03o", (unsigned char)ch); + result += num; + } + break; + } + } + result += ")"; + } + + return result; +} + +std::string +QPDF_String::getVal() const +{ + return this->val; +} + +std::string +QPDF_String::getUTF8Val() const +{ + std::string result; + size_t len = this->val.length(); + if ((len >= 2) && (len % 2 == 0) && + (this->val[0] == '\xfe') && (this->val[1] == '\xff')) + { + // This is a Unicode string using big-endian UTF-16. This + // code uses unsigned long and unsigned short to hold + // codepoint values. It requires unsigned long to be at least + // 32 bits and unsigned short to be at least 16 bits, but it + // will work fine if they are larger. + unsigned long codepoint = 0L; + for (unsigned int i = 2; i < len; i += 2) + { + // Convert from UTF16-BE. If we get a malformed + // codepoint, this code will generate incorrect output + // without giving a warning. Specifically, a high + // codepoint not followed by a low codepoint will be + // discarded, and a low codepoint not preceded by a high + // codepoint will just get its low 10 bits output. + unsigned short bits = + (((unsigned char) this->val[i]) << 8) + + ((unsigned char) this->val[i+1]); + if ((bits & 0xFC00) == 0xD800) + { + codepoint = 0x10000 + ((bits & 0x3FF) << 10); + continue; + } + else if ((bits & 0xFC00) == 0xDC00) + { + if (codepoint != 0) + { + QTC::TC("qpdf", "QPDF_String non-trivial UTF-16"); + } + codepoint += bits & 0x3FF; + } + else + { + codepoint = bits; + } + + result += QUtil::toUTF8(codepoint); + codepoint = 0; + } + } + else + { + for (unsigned int i = 0; i < len; ++i) + { + result += QUtil::toUTF8((unsigned char) this->val[i]); + } + } + return result; +} diff --git a/libqpdf/QPDF_encryption.cc b/libqpdf/QPDF_encryption.cc new file mode 100644 index 0000000..c73a47b --- /dev/null +++ b/libqpdf/QPDF_encryption.cc @@ -0,0 +1,930 @@ +// This file implements methods from the QPDF class that involve +// encryption. + +#include + +#include + +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +static unsigned char const padding_string[] = { + 0x28, 0xbf, 0x4e, 0x5e, 0x4e, 0x75, 0x8a, 0x41, + 0x64, 0x00, 0x4e, 0x56, 0xff, 0xfa, 0x01, 0x08, + 0x2e, 0x2e, 0x00, 0xb6, 0xd0, 0x68, 0x3e, 0x80, + 0x2f, 0x0c, 0xa9, 0xfe, 0x64, 0x53, 0x69, 0x7a +}; + +static unsigned int const O_key_bytes = sizeof(MD5::Digest); +static unsigned int const key_bytes = 32; + +void +pad_or_truncate_password(std::string const& password, char k1[key_bytes]) +{ + int password_bytes = std::min(key_bytes, (unsigned int)password.length()); + int pad_bytes = key_bytes - password_bytes; + memcpy(k1, password.c_str(), password_bytes); + memcpy(k1 + password_bytes, padding_string, pad_bytes); +} + +void +QPDF::trim_user_password(std::string& user_password) +{ + // Although unnecessary, this routine trims the padding string + // from the end of a user password. Its only purpose is for + // recovery of user passwords which is done in the test suite. + char const* cstr = user_password.c_str(); + size_t len = user_password.length(); + if (len < key_bytes) + { + return; + } + + char const* p = 0; + while ((p = strchr(cstr, '\x28')) != 0) + { + if (memcmp(p, padding_string, len - (p - cstr)) == 0) + { + user_password = user_password.substr(0, p - cstr); + return; + } + } +} + +static std::string +pad_or_truncate_password(std::string const& password) +{ + char k1[key_bytes]; + pad_or_truncate_password(password, k1); + return std::string(k1, key_bytes); +} + +static void +iterate_md5_digest(MD5& md5, MD5::Digest& digest, int iterations) +{ + md5.digest(digest); + + for (int i = 0; i < iterations; ++i) + { + MD5 m; + m.encodeDataIncrementally((char*)digest, sizeof(digest)); + m.digest(digest); + } +} + + +static void +iterate_rc4(unsigned char* data, int data_len, + unsigned char* okey, int key_len, + int iterations, bool reverse) +{ + unsigned char* key = new unsigned char[key_len]; + for (int i = 0; i < iterations; ++i) + { + int const xor_value = (reverse ? iterations - 1 - i : i); + for (int j = 0; j < key_len; ++j) + { + key[j] = okey[j] ^ xor_value; + } + RC4 rc4(key, key_len); + rc4.process(data, data_len); + } + delete [] key; +} + +std::string +QPDF::compute_data_key(std::string const& encryption_key, + int objid, int generation, + bool use_aes) +{ + // Algorithm 3.1 from the PDF 1.7 Reference Manual + + std::string result = encryption_key; + + // Append low three bytes of object ID and low two bytes of generation + result += (char) (objid & 0xff); + result += (char) ((objid >> 8) & 0xff); + result += (char) ((objid >> 16) & 0xff); + result += (char) (generation & 0xff); + result += (char) ((generation >> 8) & 0xff); + if (use_aes) + { + result += "sAlT"; + } + + MD5 md5; + md5.encodeDataIncrementally(result.c_str(), (int)result.length()); + MD5::Digest digest; + md5.digest(digest); + return std::string((char*) digest, + std::min(result.length(), (size_t) 16)); +} + +std::string +QPDF::compute_encryption_key( + std::string const& password, EncryptionData const& data) +{ + // Algorithm 3.2 from the PDF 1.7 Reference Manual + + MD5 md5; + md5.encodeDataIncrementally( + pad_or_truncate_password(password).c_str(), key_bytes); + md5.encodeDataIncrementally(data.O.c_str(), key_bytes); + char pbytes[4]; + pbytes[0] = (char) (data.P & 0xff); + pbytes[1] = (char) ((data.P >> 8) & 0xff); + pbytes[2] = (char) ((data.P >> 16) & 0xff); + pbytes[3] = (char) ((data.P >> 24) & 0xff); + md5.encodeDataIncrementally(pbytes, 4); + md5.encodeDataIncrementally(data.id1.c_str(), (int)data.id1.length()); + if ((data.R >= 4) && (! data.encrypt_metadata)) + { + char bytes[4]; + memset(bytes, 0xff, 4); + md5.encodeDataIncrementally(bytes, 4); + } + MD5::Digest digest; + iterate_md5_digest(md5, digest, ((data.R >= 3) ? 50 : 0)); + return std::string((char*)digest, data.Length_bytes); +} + +static void +compute_O_rc4_key(std::string const& user_password, + std::string const& owner_password, + QPDF::EncryptionData const& data, + unsigned char key[O_key_bytes]) +{ + std::string password = owner_password; + if (password.empty()) + { + password = user_password; + } + MD5 md5; + md5.encodeDataIncrementally( + pad_or_truncate_password(password).c_str(), key_bytes); + MD5::Digest digest; + iterate_md5_digest(md5, digest, ((data.R >= 3) ? 50 : 0)); + memcpy(key, digest, O_key_bytes); +} + +static std::string +compute_O_value(std::string const& user_password, + std::string const& owner_password, + QPDF::EncryptionData const& data) +{ + // Algorithm 3.3 from the PDF 1.7 Reference Manual + + unsigned char O_key[O_key_bytes]; + compute_O_rc4_key(user_password, owner_password, data, O_key); + + char upass[key_bytes]; + pad_or_truncate_password(user_password, upass); + iterate_rc4((unsigned char*) upass, key_bytes, + O_key, data.Length_bytes, (data.R >= 3) ? 20 : 1, false); + return std::string(upass, key_bytes); +} + +static +std::string +compute_U_value_R2(std::string const& user_password, + QPDF::EncryptionData const& data) +{ + // Algorithm 3.4 from the PDF 1.7 Reference Manual + + std::string k1 = QPDF::compute_encryption_key(user_password, data); + char udata[key_bytes]; + pad_or_truncate_password("", udata); + iterate_rc4((unsigned char*) udata, key_bytes, + (unsigned char*)k1.c_str(), data.Length_bytes, 1, false); + return std::string(udata, key_bytes); +} + +static +std::string +compute_U_value_R3(std::string const& user_password, + QPDF::EncryptionData const& data) +{ + // Algorithm 3.5 from the PDF 1.7 Reference Manual + + std::string k1 = QPDF::compute_encryption_key(user_password, data); + MD5 md5; + md5.encodeDataIncrementally( + pad_or_truncate_password("").c_str(), key_bytes); + md5.encodeDataIncrementally(data.id1.c_str(), (int)data.id1.length()); + MD5::Digest digest; + md5.digest(digest); + iterate_rc4(digest, sizeof(MD5::Digest), + (unsigned char*) k1.c_str(), data.Length_bytes, 20, false); + char result[key_bytes]; + memcpy(result, digest, sizeof(MD5::Digest)); + // pad with arbitrary data -- make it consistent for the sake of + // testing + for (unsigned int i = sizeof(MD5::Digest); i < key_bytes; ++i) + { + result[i] = (char)((i * i) % 0xff); + } + return std::string(result, key_bytes); +} + +static std::string +compute_U_value(std::string const& user_password, + QPDF::EncryptionData const& data) +{ + if (data.R >= 3) + { + return compute_U_value_R3(user_password, data); + } + + return compute_U_value_R2(user_password, data); +} + +static bool +check_user_password(std::string const& user_password, + QPDF::EncryptionData const& data) +{ + // Algorithm 3.6 from the PDF 1.7 Reference Manual + + std::string u_value = compute_U_value(user_password, data); + int to_compare = ((data.R >= 3) ? sizeof(MD5::Digest) : key_bytes); + return (memcmp(data.U.c_str(), u_value.c_str(), to_compare) == 0); +} + +static bool +check_owner_password(std::string& user_password, + std::string const& owner_password, + QPDF::EncryptionData const& data) +{ + // Algorithm 3.7 from the PDF 1.7 Reference Manual + + unsigned char key[O_key_bytes]; + compute_O_rc4_key(user_password, owner_password, data, key); + unsigned char O_data[key_bytes]; + memcpy(O_data, (unsigned char*) data.O.c_str(), key_bytes); + iterate_rc4(O_data, key_bytes, key, data.Length_bytes, + (data.R >= 3) ? 20 : 1, true); + std::string new_user_password = + std::string((char*)O_data, key_bytes); + bool result = false; + if (check_user_password(new_user_password, data)) + { + result = true; + user_password = new_user_password; + } + return result; +} + +QPDF::encryption_method_e +QPDF::interpretCF(QPDFObjectHandle cf) +{ + if (cf.isName()) + { + std::string filter = cf.getName(); + if (this->crypt_filters.count(filter) != 0) + { + return this->crypt_filters[filter]; + } + else if (filter == "/Identity") + { + return e_none; + } + else + { + return e_unknown; + } + } + else + { + // Default: /Identity + return e_none; + } +} + +void +QPDF::initializeEncryption() +{ + if (this->encryption_initialized) + { + return; + } + this->encryption_initialized = true; + + // After we initialize encryption parameters, we must used stored + // key information and never look at /Encrypt again. Otherwise, + // things could go wrong if someone mutates the encryption + // dictionary. + + if (! this->trailer.hasKey("/Encrypt")) + { + return; + } + + // Go ahead and set this->encryption here. That way, isEncrypted + // will return true even if there were errors reading the + // encryption dictionary. + this->encrypted = true; + + QPDFObjectHandle id_obj = this->trailer.getKey("/ID"); + if (! (id_obj.isArray() && + (id_obj.getArrayNItems() == 2) && + id_obj.getArrayItem(0).isString())) + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "trailer", this->file->getLastOffset(), + "invalid /ID in trailer dictionary"); + } + + std::string id1 = id_obj.getArrayItem(0).getStringValue(); + QPDFObjectHandle encryption_dict = this->trailer.getKey("/Encrypt"); + if (! encryption_dict.isDictionary()) + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + this->last_object_description, + this->file->getLastOffset(), + "/Encrypt in trailer dictionary is not a dictionary"); + } + + if (! (encryption_dict.getKey("/Filter").isName() && + (encryption_dict.getKey("/Filter").getName() == "/Standard"))) + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "encryption dictionary", this->file->getLastOffset(), + "unsupported encryption filter"); + } + if (! encryption_dict.getKey("/SubFilter").isNull()) + { + warn(QPDFExc(qpdf_e_unsupported, this->file->getName(), + "encryption dictionary", this->file->getLastOffset(), + "file uses encryption SubFilters," + " which qpdf does not support")); + } + + if (! (encryption_dict.getKey("/V").isInteger() && + encryption_dict.getKey("/R").isInteger() && + encryption_dict.getKey("/O").isString() && + encryption_dict.getKey("/U").isString() && + encryption_dict.getKey("/P").isInteger())) + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "encryption dictionary", this->file->getLastOffset(), + "some encryption dictionary parameters are missing " + "or the wrong type"); + } + + int V = encryption_dict.getKey("/V").getIntValue(); + int R = encryption_dict.getKey("/R").getIntValue(); + std::string O = encryption_dict.getKey("/O").getStringValue(); + std::string U = encryption_dict.getKey("/U").getStringValue(); + unsigned int P = (unsigned int) encryption_dict.getKey("/P").getIntValue(); + + if (! (((R == 2) || (R == 3) || (R == 4)) && + ((V == 1) || (V == 2) || (V == 4)))) + { + throw QPDFExc(qpdf_e_unsupported, this->file->getName(), + "encryption dictionary", this->file->getLastOffset(), + "Unsupported /R or /V in encryption dictionary"); + } + + this->encryption_V = V; + + if (! ((O.length() == key_bytes) && (U.length() == key_bytes))) + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "encryption dictionary", this->file->getLastOffset(), + "incorrect length for /O and/or /P in " + "encryption dictionary"); + } + + int Length = 40; + if (encryption_dict.getKey("/Length").isInteger()) + { + Length = encryption_dict.getKey("/Length").getIntValue(); + if ((Length % 8) || (Length < 40) || (Length > 128)) + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "encryption dictionary", this->file->getLastOffset(), + "invalid /Length value in encryption dictionary"); + } + } + + this->encrypt_metadata = true; + if ((V >= 4) && (encryption_dict.getKey("/EncryptMetadata").isBool())) + { + this->encrypt_metadata = + encryption_dict.getKey("/EncryptMetadata").getBoolValue(); + } + + if (V == 4) + { + QPDFObjectHandle CF = encryption_dict.getKey("/CF"); + std::set keys = CF.getKeys(); + for (std::set::iterator iter = keys.begin(); + iter != keys.end(); ++iter) + { + std::string const& filter = *iter; + QPDFObjectHandle cdict = CF.getKey(filter); + if (cdict.isDictionary()) + { + encryption_method_e method = e_none; + if (cdict.getKey("/CFM").isName()) + { + std::string method_name = cdict.getKey("/CFM").getName(); + if (method_name == "/V2") + { + QTC::TC("qpdf", "QPDF_encryption CFM V2"); + method = e_rc4; + } + else if (method_name == "/AESV2") + { + QTC::TC("qpdf", "QPDF_encryption CFM AESV2"); + method = e_aes; + } + else + { + // Don't complain now -- maybe we won't need + // to reference this type. + method = e_unknown; + } + } + this->crypt_filters[filter] = method; + } + } + + QPDFObjectHandle StmF = encryption_dict.getKey("/StmF"); + QPDFObjectHandle StrF = encryption_dict.getKey("/StrF"); + QPDFObjectHandle EFF = encryption_dict.getKey("/EFF"); + this->cf_stream = interpretCF(StmF); + this->cf_string = interpretCF(StrF); + if (EFF.isName()) + { + this->cf_file = interpretCF(EFF); + } + else + { + this->cf_file = this->cf_stream; + } + if (this->cf_file != this->cf_stream) + { + // The issue for qpdf is that it can't tell the difference + // between an embedded file stream and a regular stream. + // Search for a comment containing cf_file. To fix this, + // we need files with encrypted embedded files and + // non-encrypted native streams and vice versa. Also if + // it is possible for them to be encrypted in different + // ways, we should have some of those too. In cases where + // we can detect whether a stream is encrypted or not, we + // might want to try to detecet that automatically in + // defense of possible logic errors surrounding detection + // of embedded file streams, unless that's really clear + // from the specification. + throw QPDFExc(qpdf_e_unsupported, this->file->getName(), + "encryption dictionary", this->file->getLastOffset(), + "This document has embedded files that are" + " encrypted differently from the rest of the file." + " qpdf does not presently support this due to" + " lack of test data; if possible, please submit" + " a bug report that includes this file."); + } + } + EncryptionData data(V, R, Length / 8, P, O, U, id1, this->encrypt_metadata); + if (check_owner_password( + this->user_password, this->provided_password, data)) + { + // password supplied was owner password; user_password has + // been initialized + } + else if (check_user_password(this->provided_password, data)) + { + this->user_password = this->provided_password; + } + else + { + throw QPDFExc(qpdf_e_password, this->file->getName(), + "", 0, "invalid password"); + } + + this->encryption_key = compute_encryption_key(this->user_password, data); +} + +std::string +QPDF::getKeyForObject(int objid, int generation, bool use_aes) +{ + if (! this->encrypted) + { + throw std::logic_error( + "request for encryption key in non-encrypted PDF"); + } + + if (! ((objid == this->cached_key_objid) && + (generation == this->cached_key_generation))) + { + this->cached_object_encryption_key = + compute_data_key(this->encryption_key, objid, generation, use_aes); + this->cached_key_objid = objid; + this->cached_key_generation = generation; + } + + return this->cached_object_encryption_key; +} + +void +QPDF::decryptString(std::string& str, int objid, int generation) +{ + if (objid == 0) + { + return; + } + bool use_aes = false; + if (this->encryption_V == 4) + { + switch (this->cf_string) + { + case e_none: + return; + + case e_aes: + use_aes = true; + break; + + case e_rc4: + break; + + default: + warn(QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + this->last_object_description, + this->file->getLastOffset(), + "unknown encryption filter for strings" + " (check /StrF in /Encrypt dictionary);" + " strings may be decrypted improperly")); + // To avoid repeated warnings, reset cf_string. Assume + // we'd want to use AES if V == 4. + this->cf_string = e_aes; + break; + } + } + + std::string key = getKeyForObject(objid, generation, use_aes); + try + { + if (use_aes) + { + QTC::TC("qpdf", "QPDF_encryption aes decode string"); + assert(key.length() == Pl_AES_PDF::key_size); + Pl_Buffer bufpl("decrypted string"); + Pl_AES_PDF pl("aes decrypt string", &bufpl, false, + (unsigned char const*)key.c_str()); + pl.write((unsigned char*)str.c_str(), str.length()); + pl.finish(); + PointerHolder buf = bufpl.getBuffer(); + str = std::string((char*)buf->getBuffer(), buf->getSize()); + } + else + { + QTC::TC("qpdf", "QPDF_encryption rc4 decode string"); + unsigned int vlen = (int)str.length(); + // Using PointerHolder guarantees that tmp will + // be freed even if rc4.process throws an exception. + PointerHolder tmp(true, QUtil::copy_string(str)); + RC4 rc4((unsigned char const*)key.c_str(), (int)key.length()); + rc4.process((unsigned char*)tmp.getPointer(), vlen); + str = std::string(tmp.getPointer(), vlen); + } + } + catch (QPDFExc& e) + { + throw; + } + catch (std::runtime_error& e) + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + this->last_object_description, + this->file->getLastOffset(), + "error decrypting string for object " + + QUtil::int_to_string(objid) + " " + + QUtil::int_to_string(generation) + ": " + e.what()); + } +} + +void +QPDF::decryptStream(Pipeline*& pipeline, int objid, int generation, + QPDFObjectHandle& stream_dict, + std::vector >& heap) +{ + std::string type; + if (stream_dict.getKey("/Type").isName()) + { + type = stream_dict.getKey("/Type").getName(); + } + if (type == "/XRef") + { + QTC::TC("qpdf", "QPDF_encryption xref stream from encrypted file"); + return; + } + bool use_aes = false; + if (this->encryption_V == 4) + { + encryption_method_e method = e_unknown; + std::string method_source = "/StmF from /Encrypt dictionary"; + + if (stream_dict.getKey("/Filter").isOrHasName("/Crypt") && + stream_dict.getKey("/DecodeParms").isDictionary()) + { + QPDFObjectHandle decode_parms = stream_dict.getKey("/DecodeParms"); + if (decode_parms.getKey("/Type").isName() && + (decode_parms.getKey("/Type").getName() == + "/CryptFilterDecodeParms")) + { + QTC::TC("qpdf", "QPDF_encryption stream crypt filter"); + method = interpretCF(decode_parms.getKey("/Name")); + method_source = "stream's Crypt decode parameters"; + } + } + + if (method == e_unknown) + { + if ((! this->encrypt_metadata) && (type == "/Metadata")) + { + QTC::TC("qpdf", "QPDF_encryption cleartext metadata"); + method = e_none; + } + else + { + // NOTE: We should should use cf_file if this is an + // embedded file, but we can't yet detect embedded + // file streams as such. When fixing, search for all + // occurrences of cf_file to find a reference to this + // comment. + method = this->cf_stream; + } + } + use_aes = false; + switch (method) + { + case e_none: + return; + break; + + case e_aes: + use_aes = true; + break; + + case e_rc4: + break; + + default: + // filter local to this stream. + warn(QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + this->last_object_description, + this->file->getLastOffset(), + "unknown encryption filter for streams" + " (check " + method_source + ");" + " streams may be decrypted improperly")); + // To avoid repeated warnings, reset cf_stream. Assume + // we'd want to use AES if V == 4. + this->cf_stream = e_aes; + break; + } + } + std::string key = getKeyForObject(objid, generation, use_aes); + if (use_aes) + { + QTC::TC("qpdf", "QPDF_encryption aes decode stream"); + assert(key.length() == Pl_AES_PDF::key_size); + pipeline = new Pl_AES_PDF("AES stream decryption", pipeline, + false, (unsigned char*) key.c_str()); + } + else + { + QTC::TC("qpdf", "QPDF_encryption rc4 decode stream"); + pipeline = new Pl_RC4("RC4 stream decryption", pipeline, + (unsigned char*) key.c_str(), (int)key.length()); + } + heap.push_back(pipeline); +} + +void +QPDF::compute_encryption_O_U( + char const* user_password, char const* owner_password, + int V, int R, int key_len, int P, bool encrypt_metadata, + std::string const& id1, std::string& O, std::string& U) +{ + EncryptionData data(V, R, key_len, P, "", "", id1, encrypt_metadata); + data.O = compute_O_value(user_password, owner_password, data); + O = data.O; + U = compute_U_value(user_password, data); +} + +std::string const& +QPDF::getPaddedUserPassword() const +{ + return this->user_password; +} + +std::string +QPDF::getTrimmedUserPassword() const +{ + std::string result = this->user_password; + trim_user_password(result); + return result; +} + +bool +QPDF::isEncrypted() const +{ + return this->encrypted; +} + +bool +QPDF::isEncrypted(int& R, int& P) +{ + int V; + encryption_method_e stream, string, file; + return isEncrypted(R, P, V, stream, string, file); +} + +bool +QPDF::isEncrypted(int& R, int& P, int& V, + encryption_method_e& stream_method, + encryption_method_e& string_method, + encryption_method_e& file_method) +{ + if (this->encrypted) + { + QPDFObjectHandle trailer = getTrailer(); + QPDFObjectHandle encrypt = trailer.getKey("/Encrypt"); + QPDFObjectHandle Pkey = encrypt.getKey("/P"); + QPDFObjectHandle Rkey = encrypt.getKey("/R"); + QPDFObjectHandle Vkey = encrypt.getKey("/V"); + P = Pkey.getIntValue(); + R = Rkey.getIntValue(); + V = Vkey.getIntValue(); + stream_method = this->cf_stream; + string_method = this->cf_stream; + file_method = this->cf_file; + return true; + } + else + { + return false; + } +} + +static bool +is_bit_set(int P, int bit) +{ + // Bits in P are numbered from 1 in the spec + return (P & (1 << (bit - 1))); +} + +bool +QPDF::allowAccessibility() +{ + int R = 0; + int P = 0; + bool status = true; + if (isEncrypted(R, P)) + { + if (R < 3) + { + status = is_bit_set(P, 5); + } + else + { + status = is_bit_set(P, 10); + } + } + return status; +} + +bool +QPDF::allowExtractAll() +{ + int R = 0; + int P = 0; + bool status = true; + if (isEncrypted(R, P)) + { + status = is_bit_set(P, 5); + } + return status; +} + +bool +QPDF::allowPrintLowRes() +{ + int R = 0; + int P = 0; + bool status = true; + if (isEncrypted(R, P)) + { + status = is_bit_set(P, 3); + } + return status; +} + +bool +QPDF::allowPrintHighRes() +{ + int R = 0; + int P = 0; + bool status = true; + if (isEncrypted(R, P)) + { + status = is_bit_set(P, 3); + if ((R >= 3) && (! is_bit_set(P, 12))) + { + status = false; + } + } + return status; +} + +bool +QPDF::allowModifyAssembly() +{ + int R = 0; + int P = 0; + bool status = true; + if (isEncrypted(R, P)) + { + if (R < 3) + { + status = is_bit_set(P, 4); + } + else + { + status = is_bit_set(P, 11); + } + } + return status; +} + +bool +QPDF::allowModifyForm() +{ + int R = 0; + int P = 0; + bool status = true; + if (isEncrypted(R, P)) + { + if (R < 3) + { + status = is_bit_set(P, 6); + } + else + { + status = is_bit_set(P, 9); + } + } + return status; +} + +bool +QPDF::allowModifyAnnotation() +{ + int R = 0; + int P = 0; + bool status = true; + if (isEncrypted(R, P)) + { + status = is_bit_set(P, 6); + } + return status; +} + +bool +QPDF::allowModifyOther() +{ + int R = 0; + int P = 0; + bool status = true; + if (isEncrypted(R, P)) + { + status = is_bit_set(P, 4); + } + return status; +} + +bool +QPDF::allowModifyAll() +{ + int R = 0; + int P = 0; + bool status = true; + if (isEncrypted(R, P)) + { + status = (is_bit_set(P, 4) && is_bit_set(P, 6)); + if (R >= 3) + { + status = status && (is_bit_set(P, 9) && is_bit_set(P, 11)); + } + } + return status; +} diff --git a/libqpdf/QPDF_linearization.cc b/libqpdf/QPDF_linearization.cc new file mode 100644 index 0000000..65f2b99 --- /dev/null +++ b/libqpdf/QPDF_linearization.cc @@ -0,0 +1,2137 @@ +// See doc/linearization. + +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include + +template +static void +load_vector_int(BitStream& bit_stream, int nitems, std::vector& vec, + int bits_wanted, int_type T::*field) +{ + // nitems times, read bits_wanted from the given bit stream, + // storing results in the ith vector entry. + + for (int i = 0; i < nitems; ++i) + { + vec[i].*field = bit_stream.getBits(bits_wanted); + } + // The PDF spec says that each hint table starts at a byte + // boundary. Each "row" actually must start on a byte boundary. + bit_stream.skipToNextByte(); +} + +template +static void +load_vector_vector(BitStream& bit_stream, + int nitems1, std::vector& vec1, int T::*nitems2, + int bits_wanted, std::vector T::*vec2) +{ + // nitems1 times, read nitems2 (from the ith element of vec1) items + // into the vec2 vector field of the ith item of vec1. + for (int i1 = 0; i1 < nitems1; ++i1) + { + for (int i2 = 0; i2 < vec1[i1].*nitems2; ++i2) + { + (vec1[i1].*vec2).push_back(bit_stream.getBits(bits_wanted)); + } + } + bit_stream.skipToNextByte(); +} + +bool +QPDF::checkLinearization() +{ + bool result = false; + try + { + readLinearizationData(); + result = checkLinearizationInternal(); + } + catch (QPDFExc& e) + { + *out_stream << e.what() << std::endl; + } + return result; +} + +bool +QPDF::isLinearized() +{ + // If the first object in the file is a dictionary with a suitable + // /Linearized key and has an /L key that accurately indicates the + // file size, initialize this->lindict and return true. + + // A linearized PDF spec's first object will be contained within + // the first 1024 bytes of the file and will be a dictionary with + // a valid /Linearized key. This routine looks for that and does + // no additional validation. + + // The PDF spec says the linearization dictionary must be + // completely contained within the first 1024 bytes of the file. + // Add a byte for a null terminator. + static int const tbuf_size = 1025; + + char* buf = new char[tbuf_size]; + this->file->seek(0, SEEK_SET); + PointerHolder b(true, buf); + memset(buf, '\0', tbuf_size); + this->file->read(buf, tbuf_size - 1); + + PCRE lindict_re("(?s:(\\d+)\\s+0\\s+obj\\s*<<)"); + + int lindict_obj = -1; + char* p = buf; + while (lindict_obj == -1) + { + PCRE::Match m(lindict_re.match(p)); + if (m) + { + lindict_obj = atoi(m.getMatch(1).c_str()); + if (m.getMatch(0).find('\n') != std::string::npos) + { + QTC::TC("qpdf", "QPDF lindict found newline"); + } + } + else + { + p = (char*)memchr(p, '\0', tbuf_size - (p - buf)); + assert(p != 0); + while ((p - buf < tbuf_size) && (*p == 0)) + { + ++p; + } + if ((p - buf) == tbuf_size) + { + break; + } + QTC::TC("qpdf", "QPDF lindict searching after null"); + } + } + + if (lindict_obj == 0) + { + return false; + } + + QPDFObjectHandle candidate = QPDFObjectHandle::Factory::newIndirect( + this, lindict_obj, 0); + if (! candidate.isDictionary()) + { + return false; + } + + QPDFObjectHandle linkey = candidate.getKey("/Linearized"); + if (! (linkey.isNumber() && ((int)floor(linkey.getNumericValue()) == 1))) + { + return false; + } + + QPDFObjectHandle L = candidate.getKey("/L"); + if (L.isInteger()) + { + qpdf_offset_t Li = L.getIntValue(); + this->file->seek(0, SEEK_END); + if (Li != this->file->tell()) + { + QTC::TC("qpdf", "QPDF /L mismatch"); + return false; + } + else + { + this->linp.file_size = Li; + } + } + + this->lindict = candidate; + + return true; +} + +void +QPDF::readLinearizationData() +{ + // This function throws an exception (which is trapped by + // checkLinearization()) for any errors that prevent loading. + + // Hint table parsing code needs at least 32 bits in a long. + assert(sizeof(long) >= 4); + + if (! isLinearized()) + { + throw std::logic_error("called readLinearizationData for file" + " that is not linearized"); + } + + // /L is read and stored in linp by isLinearized() + QPDFObjectHandle H = lindict.getKey("/H"); + QPDFObjectHandle O = lindict.getKey("/O"); + QPDFObjectHandle E = lindict.getKey("/E"); + QPDFObjectHandle N = lindict.getKey("/N"); + QPDFObjectHandle T = lindict.getKey("/T"); + QPDFObjectHandle P = lindict.getKey("/P"); + + if (! (H.isArray() && + O.isInteger() && + E.isInteger() && + N.isInteger() && + T.isInteger() && + (P.isInteger() || P.isNull()))) + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "linearization dictionary", + this->file->getLastOffset(), + "some keys in linearization dictionary are of " + "the wrong type"); + } + + // Hint table array: offset length [ offset length ] + unsigned int n_H_items = H.getArrayNItems(); + if (! ((n_H_items == 2) || (n_H_items == 4))) + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "linearization dictionary", + this->file->getLastOffset(), + "H has the wrong number of items"); + } + + std::vector H_items; + for (unsigned int i = 0; i < n_H_items; ++i) + { + QPDFObjectHandle oh(H.getArrayItem(i)); + if (oh.isInteger()) + { + H_items.push_back(oh.getIntValue()); + } + else + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "linearization dictionary", + this->file->getLastOffset(), + "some H items are of the wrong type"); + } + } + + // H: hint table offset/length for primary and overflow hint tables + int H0_offset = H_items[0]; + int H0_length = H_items[1]; + int H1_offset = 0; + int H1_length = 0; + if (H_items.size() == 4) + { + // Acrobat doesn't read or write these (as PDF 1.4), so we + // don't have a way to generate a test case. + // QTC::TC("qpdf", "QPDF overflow hint table"); + H1_offset = H_items[2]; + H1_length = H_items[3]; + } + + // P: first page number + int first_page = 0; + if (P.isInteger()) + { + QTC::TC("qpdf", "QPDF P present in lindict"); + first_page = P.getIntValue(); + } + else + { + QTC::TC("qpdf", "QPDF P absent in lindict"); + } + + // Store linearization parameter data + + // file_size initialized by isLinearized() + this->linp.first_page_object = O.getIntValue(); + this->linp.first_page_end = E.getIntValue(); + this->linp.npages = N.getIntValue(); + this->linp.xref_zero_offset = T.getIntValue(); + this->linp.first_page = first_page; + this->linp.H_offset = H0_offset; + this->linp.H_length = H0_length; + + // Read hint streams + + Pl_Buffer pb("hint buffer"); + QPDFObjectHandle H0 = readHintStream(pb, H0_offset, H0_length); + if (H1_offset) + { + (void) readHintStream(pb, H1_offset, H1_length); + } + + // PDF 1.4 hint tables that we ignore: + + // /T thumbnail + // /A thread information + // /E named destination + // /V interactive form + // /I information dictionary + // /C logical structure + // /L page label + + // Individual hint table offsets + QPDFObjectHandle HS = H0.getKey("/S"); // shared object + QPDFObjectHandle HO = H0.getKey("/O"); // outline + + PointerHolder hbp = pb.getBuffer(); + Buffer* hb = hbp.getPointer(); + unsigned char const* h_buf = hb->getBuffer(); + int h_size = (int)hb->getSize(); + + readHPageOffset(BitStream(h_buf, h_size)); + + int HSi = HS.getIntValue(); + readHSharedObject(BitStream(h_buf + HSi, h_size - HSi)); + + if (HO.isInteger()) + { + int HOi = HO.getIntValue(); + readHGeneric(BitStream(h_buf + HOi, h_size - HOi), + this->outline_hints); + } +} + +QPDFObjectHandle +QPDF::readHintStream(Pipeline& pl, qpdf_offset_t offset, size_t length) +{ + int obj; + int gen; + QPDFObjectHandle H = readObjectAtOffset( + false, offset, "linearization hint stream", -1, 0, obj, gen); + ObjCache& oc = this->obj_cache[ObjGen(obj, gen)]; + qpdf_offset_t min_end_offset = oc.end_before_space; + qpdf_offset_t max_end_offset = oc.end_after_space; + if (! H.isStream()) + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "linearization dictionary", + this->file->getLastOffset(), + "hint table is not a stream"); + } + + QPDFObjectHandle Hdict = H.getDict(); + + // Some versions of Acrobat make /Length indirect and place it + // immediately after the stream, increasing length to cover it, + // even though the specification says all objects in the + // linearization parameter dictionary must be direct. We have to + // get the file position of the end of length in this case. + QPDFObjectHandle length_obj = Hdict.getKey("/Length"); + if (length_obj.isIndirect()) + { + QTC::TC("qpdf", "QPDF hint table length indirect"); + // Force resolution + (void) length_obj.getIntValue(); + ObjCache& oc = this->obj_cache + [ObjGen(length_obj.getObjectID(), + length_obj.getGeneration())]; + min_end_offset = oc.end_before_space; + max_end_offset = oc.end_after_space; + } + else + { + QTC::TC("qpdf", "QPDF hint table length direct"); + } + qpdf_offset_t computed_end = offset + (qpdf_offset_t)length; + if ((computed_end < min_end_offset) || + (computed_end > max_end_offset)) + { + *out_stream << "expected = " << computed_end + << "; actual = " << min_end_offset << ".." + << max_end_offset << std::endl; + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + "linearization dictionary", + this->file->getLastOffset(), + "hint table length mismatch"); + } + H.pipeStreamData(&pl, true, false, false); + return Hdict; +} + +void +QPDF::readHPageOffset(BitStream h) +{ + // All comments referring to the PDF spec refer to the spec for + // version 1.4. + + HPageOffset& t = this->page_offset_hints; + + t.min_nobjects = h.getBits(32); // 1 + t.first_page_offset = h.getBits(32); // 2 + t.nbits_delta_nobjects = h.getBits(16); // 3 + t.min_page_length = h.getBits(32); // 4 + t.nbits_delta_page_length = h.getBits(16); // 5 + t.min_content_offset = h.getBits(32); // 6 + t.nbits_delta_content_offset = h.getBits(16); // 7 + t.min_content_length = h.getBits(32); // 8 + t.nbits_delta_content_length = h.getBits(16); // 9 + t.nbits_nshared_objects = h.getBits(16); // 10 + t.nbits_shared_identifier = h.getBits(16); // 11 + t.nbits_shared_numerator = h.getBits(16); // 12 + t.shared_denominator = h.getBits(16); // 13 + + unsigned int nitems = this->linp.npages; + std::vector& entries = t.entries; + entries = std::vector(nitems); + + load_vector_int(h, nitems, entries, + t.nbits_delta_nobjects, + &HPageOffsetEntry::delta_nobjects); + load_vector_int(h, nitems, entries, + t.nbits_delta_page_length, + &HPageOffsetEntry::delta_page_length); + load_vector_int(h, nitems, entries, + t.nbits_nshared_objects, + &HPageOffsetEntry::nshared_objects); + load_vector_vector(h, nitems, entries, + &HPageOffsetEntry::nshared_objects, + t.nbits_shared_identifier, + &HPageOffsetEntry::shared_identifiers); + load_vector_vector(h, nitems, entries, + &HPageOffsetEntry::nshared_objects, + t.nbits_shared_numerator, + &HPageOffsetEntry::shared_numerators); + load_vector_int(h, nitems, entries, + t.nbits_delta_content_offset, + &HPageOffsetEntry::delta_content_offset); + load_vector_int(h, nitems, entries, + t.nbits_delta_content_length, + &HPageOffsetEntry::delta_content_length); +} + +void +QPDF::readHSharedObject(BitStream h) +{ + HSharedObject& t = this->shared_object_hints; + + t.first_shared_obj = h.getBits(32); // 1 + t.first_shared_offset = h.getBits(32); // 2 + t.nshared_first_page = h.getBits(32); // 3 + t.nshared_total = h.getBits(32); // 4 + t.nbits_nobjects = h.getBits(16); // 5 + t.min_group_length = h.getBits(32); // 6 + t.nbits_delta_group_length = h.getBits(16); // 7 + + QTC::TC("qpdf", "QPDF lin nshared_total > nshared_first_page", + (t.nshared_total > t.nshared_first_page) ? 1 : 0); + + int nitems = t.nshared_total; + std::vector& entries = t.entries; + entries = std::vector(nitems); + + load_vector_int(h, nitems, entries, + t.nbits_delta_group_length, + &HSharedObjectEntry::delta_group_length); + load_vector_int(h, nitems, entries, + 1, &HSharedObjectEntry::signature_present); + for (int i = 0; i < nitems; ++i) + { + if (entries[i].signature_present) + { + // Skip 128-bit MD5 hash. These are not supported by + // acrobat, so they should probably never be there. We + // have no test case for this. + for (int j = 0; j < 4; ++j) + { + (void) h.getBits(32); + } + } + } + load_vector_int(h, nitems, entries, + t.nbits_nobjects, + &HSharedObjectEntry::nobjects_minus_one); +} + +void +QPDF::readHGeneric(BitStream h, HGeneric& t) +{ + t.first_object = h.getBits(32); // 1 + t.first_object_offset = h.getBits(32); // 2 + t.nobjects = h.getBits(32); // 3 + t.group_length = h.getBits(32); // 4 +} + +bool +QPDF::checkLinearizationInternal() +{ + // All comments referring to the PDF spec refer to the spec for + // version 1.4. + + std::list errors; + std::list warnings; + + // Check all values in linearization parameter dictionary + + LinParameters& p = this->linp; + + // L: file size in bytes -- checked by isLinearized + + // O: object number of first page + std::vector const& pages = getAllPages(); + if (p.first_page_object != pages[0].getObjectID()) + { + QTC::TC("qpdf", "QPDF err /O mismatch"); + errors.push_back("first page object (/O) mismatch"); + } + + // N: number of pages + int npages = (int)pages.size(); + if (p.npages != npages) + { + // Not tested in the test suite + errors.push_back("page count (/N) mismatch"); + } + + for (int i = 0; i < npages; ++i) + { + QPDFObjectHandle const& page = pages[i]; + ObjGen og(page.getObjectID(), page.getGeneration()); + if (this->xref_table[og].getType() == 2) + { + errors.push_back("page dictionary for page " + + QUtil::int_to_string(i) + " is compressed"); + } + } + + // T: offset of whitespace character preceding xref entry for object 0 + this->file->seek(p.xref_zero_offset, SEEK_SET); + while (1) + { + char ch; + this->file->read(&ch, 1); + if (! ((ch == ' ') || (ch == '\r') || (ch == '\n'))) + { + this->file->seek(-1, SEEK_CUR); + break; + } + } + if (this->file->tell() != this->first_xref_item_offset) + { + QTC::TC("qpdf", "QPDF err /T mismatch"); + errors.push_back("space before first xref item (/T) mismatch " + "(computed = " + + QUtil::int_to_string(this->first_xref_item_offset) + + "; file = " + + QUtil::int_to_string(this->file->tell())); + } + + // P: first page number -- Implementation note 124 says Acrobat + // ignores this value, so we will too. + + // Check numbering of compressed objects in each xref section. + // For linearized files, all compressed objects are supposed to be + // at the end of the containing xref section if any object streams + // are in use. + + if (this->uncompressed_after_compressed) + { + errors.push_back("linearized file contains an uncompressed object" + " after a compressed one in a cross-reference stream"); + } + + // Further checking requires optimization and order calculation. + // Don't allow optimization to make changes. If it has to, then + // the file is not properly linearized. We use the xref table to + // figure out which objects are compressed and which are + // uncompressed. + { // local scope + std::map object_stream_data; + for (std::map::const_iterator iter = + this->xref_table.begin(); + iter != this->xref_table.end(); ++iter) + { + ObjGen const& og = (*iter).first; + QPDFXRefEntry const& entry = (*iter).second; + if (entry.getType() == 2) + { + object_stream_data[og.obj] = entry.getObjStreamNumber(); + } + } + optimize(object_stream_data, false); + calculateLinearizationData(object_stream_data); + } + + // E: offset of end of first page -- Implementation note 123 says + // Acrobat includes on extra object here by mistake. pdlin fails + // to place thumbnail images in section 9, so when thumbnails are + // present, it also gets the wrong value for /E. It also doesn't + // count outlines here when it should even though it places them + // in part 6. This code fails to put thread information + // dictionaries in part 9, so it actually gets the wrong value for + // E when threads are present. In that case, it would probably + // agree with pdlin. As of this writing, the test suite doesn't + // contain any files with threads. + + assert(! this->part6.empty()); + int min_E = -1; + int max_E = -1; + for (std::vector::iterator iter = this->part6.begin(); + iter != this->part6.end(); ++iter) + { + ObjGen og((*iter).getObjectID(), (*iter).getGeneration()); + // All objects have to have been dereferenced to be classified. + assert(this->obj_cache.count(og) > 0); + ObjCache const& oc = this->obj_cache[og]; + min_E = std::max(min_E, (int)oc.end_before_space); + max_E = std::max(max_E, (int)oc.end_after_space); + } + if ((p.first_page_end < min_E) || (p.first_page_end > max_E)) + { + QTC::TC("qpdf", "QPDF warn /E mismatch"); + warnings.push_back("end of first page section (/E) mismatch: /E = " + + QUtil::int_to_string(p.first_page_end) + + "; computed = " + + QUtil::int_to_string(min_E) + ".." + + QUtil::int_to_string(max_E)); + } + + // Check hint tables + + std::map shared_idx_to_obj; + checkHSharedObject(errors, warnings, pages, shared_idx_to_obj); + checkHPageOffset(errors, warnings, pages, shared_idx_to_obj); + checkHOutlines(warnings); + + // Report errors + + bool result = true; + + if (! errors.empty()) + { + result = false; + for (std::list::iterator iter = errors.begin(); + iter != errors.end(); ++iter) + { + *out_stream << "ERROR: " << (*iter) << std::endl; + } + } + + if (! warnings.empty()) + { + result = false; + for (std::list::iterator iter = warnings.begin(); + iter != warnings.end(); ++iter) + { + *out_stream << "WARNING: " << (*iter) << std::endl; + } + } + + return result; +} + +int +QPDF::maxEnd(ObjUser const& ou) +{ + assert(this->obj_user_to_objects.count(ou) > 0); + std::set const& ogs = this->obj_user_to_objects[ou]; + int end = 0; + for (std::set::const_iterator iter = ogs.begin(); + iter != ogs.end(); ++iter) + { + ObjGen const& og = *iter; + assert(this->obj_cache.count(og) > 0); + end = std::max( + end, (int)(this->obj_cache[og].end_after_space)); + } + return end; +} + +qpdf_offset_t +QPDF::getLinearizationOffset(ObjGen const& og) +{ + QPDFXRefEntry entry = this->xref_table[og]; + qpdf_offset_t result = 0; + switch (entry.getType()) + { + case 1: + result = entry.getOffset(); + break; + + case 2: + // For compressed objects, return the offset of the object + // stream that contains them. + result = getLinearizationOffset(ObjGen(entry.getObjStreamNumber(), 0)); + break; + + default: + throw std::logic_error( + "getLinearizationOffset called for xref entry not of type 1 or 2"); + break; + } + return result; +} + +QPDFObjectHandle +QPDF::getUncompressedObject(QPDFObjectHandle& obj, + std::map const& object_stream_data) +{ + if (obj.isNull() || (object_stream_data.count(obj.getObjectID()) == 0)) + { + return obj; + } + else + { + int repl = (*(object_stream_data.find(obj.getObjectID()))).second; + return objGenToIndirect(ObjGen(repl, 0)); + } +} + +int +QPDF::lengthNextN(int first_object, int n, + std::list& errors) +{ + int length = 0; + for (int i = 0; i < n; ++i) + { + ObjGen og(first_object + i, 0); + if (this->xref_table.count(og) == 0) + { + errors.push_back( + "no xref table entry for " + + QUtil::int_to_string(first_object + i) + " 0"); + } + else + { + assert(this->obj_cache.count(og) > 0); + length += this->obj_cache[og].end_after_space - + getLinearizationOffset(og); + } + } + return length; +} + +void +QPDF::checkHPageOffset(std::list& errors, + std::list& warnings, + std::vector const& pages, + std::map& shared_idx_to_obj) +{ + // Implementation note 126 says Acrobat always sets + // delta_content_offset and delta_content_length in the page + // offset header dictionary to 0. It also states that + // min_content_offset in the per-page information is always 0, + // which is an incorrect value. + + // Implementation note 127 explains that Acrobat always sets item + // 8 (min_content_length) to zero, item 9 + // (nbits_delta_content_length) to the value of item 5 + // (nbits_delta_page_length), and item 7 of each per-page hint + // table (delta_content_length) to item 2 (delta_page_length) of + // that entry. Acrobat ignores these values when reading files. + + // Empirically, it also seems that Acrobat sometimes puts items + // under a page's /Resources dictionary in with shared objects + // even when they are private. + + unsigned int npages = (unsigned int)pages.size(); + int table_offset = adjusted_offset( + this->page_offset_hints.first_page_offset); + ObjGen first_page_og(pages[0].getObjectID(), pages[0].getGeneration()); + assert(this->xref_table.count(first_page_og) > 0); + int offset = getLinearizationOffset(first_page_og); + if (table_offset != offset) + { + warnings.push_back("first page object offset mismatch"); + } + + for (unsigned int pageno = 0; pageno < npages; ++pageno) + { + ObjGen page_og(pages[pageno].getObjectID(), + pages[pageno].getGeneration()); + int first_object = page_og.obj; + assert(this->xref_table.count(page_og) > 0); + offset = getLinearizationOffset(page_og); + + HPageOffsetEntry& he = this->page_offset_hints.entries[pageno]; + CHPageOffsetEntry& ce = this->c_page_offset_data.entries[pageno]; + int h_nobjects = he.delta_nobjects + + this->page_offset_hints.min_nobjects; + if (h_nobjects != ce.nobjects) + { + // This happens with pdlin when there are thumbnails. + warnings.push_back( + "object count mismatch for page " + + QUtil::int_to_string(pageno) + ": hint table = " + + QUtil::int_to_string(h_nobjects) + "; computed = " + + QUtil::int_to_string(ce.nobjects)); + } + + // Use value for number of objects in hint table rather than + // computed value if there is a discrepancy. + int length = lengthNextN(first_object, h_nobjects, errors); + int h_length = he.delta_page_length + + this->page_offset_hints.min_page_length; + if (length != h_length) + { + // This condition almost certainly indicates a bad hint + // table or a bug in this code. + errors.push_back( + "page length mismatch for page " + + QUtil::int_to_string(pageno) + ": hint table = " + + QUtil::int_to_string(h_length) + "; computed length = " + + QUtil::int_to_string(length) + " (offset = " + + QUtil::int_to_string(offset) + ")"); + } + + offset += h_length; + + // Translate shared object indexes to object numbers. + std::set hint_shared; + std::set computed_shared; + + if ((pageno == 0) && (he.nshared_objects > 0)) + { + // pdlin and Acrobat both do this even though the spec + // states clearly and unambiguously that they should not. + warnings.push_back("page 0 has shared identifier entries"); + } + + for (int i = 0; i < he.nshared_objects; ++i) + { + int idx = he.shared_identifiers[i]; + assert(shared_idx_to_obj.count(idx) > 0); + hint_shared.insert(shared_idx_to_obj[idx]); + } + + for (int i = 0; i < ce.nshared_objects; ++i) + { + int idx = ce.shared_identifiers[i]; + assert(idx < this->c_shared_object_data.nshared_total); + int obj = this->c_shared_object_data.entries[idx].object; + computed_shared.insert(obj); + } + + for (std::set::iterator iter = hint_shared.begin(); + iter != hint_shared.end(); ++iter) + { + if (! computed_shared.count(*iter)) + { + // pdlin puts thumbnails here even though it shouldn't + warnings.push_back( + "page " + QUtil::int_to_string(pageno) + + ": shared object " + QUtil::int_to_string(*iter) + + ": in hint table but not computed list"); + } + } + + for (std::set::iterator iter = computed_shared.begin(); + iter != computed_shared.end(); ++iter) + { + if (! hint_shared.count(*iter)) + { + // Acrobat does not put some things including at least + // built-in fonts and procsets here, at least in some + // cases. + warnings.push_back( + "page " + QUtil::int_to_string(pageno) + + ": shared object " + QUtil::int_to_string(*iter) + + ": in computed list but not hint table"); + } + } + } +} + +void +QPDF::checkHSharedObject(std::list& errors, + std::list& warnings, + std::vector const& pages, + std::map& idx_to_obj) +{ + // Implementation note 125 says shared object groups always + // contain only one object. Implementation note 128 says that + // Acrobat always nbits_nobjects to zero. Implementation note 130 + // says that Acrobat does not support more than one shared object + // per group. These are all consistent. + + // Implementation note 129 states that MD5 signatures are not + // implemented in Acrobat, so signature_present must always be + // zero. + + // Implementation note 131 states that first_shared_obj and + // first_shared_offset have meaningless values for single-page + // files. + + // Empirically, Acrobat and pdlin generate incorrect values for + // these whenever there are no shared objects not referenced by + // the first page (i.e., nshared_total == nshared_first_page). + + HSharedObject& so = this->shared_object_hints; + if (so.nshared_total < so.nshared_first_page) + { + errors.push_back("shared object hint table: ntotal < nfirst_page"); + } + else + { + // The first nshared_first_page objects are consecutive + // objects starting with the first page object. The rest are + // consecutive starting from the first_shared_obj object. + int cur_object = pages[0].getObjectID(); + for (int i = 0; i < so.nshared_total; ++i) + { + if (i == so.nshared_first_page) + { + QTC::TC("qpdf", "QPDF lin check shared past first page"); + if (this->part8.empty()) + { + errors.push_back( + "part 8 is empty but nshared_total > " + "nshared_first_page"); + } + else + { + int obj = this->part8[0].getObjectID(); + if (obj != so.first_shared_obj) + { + errors.push_back( + "first shared object number mismatch: " + "hint table = " + + QUtil::int_to_string(so.first_shared_obj) + + "; computed = " + + QUtil::int_to_string(obj)); + } + } + + cur_object = so.first_shared_obj; + + ObjGen og(cur_object, 0); + assert(this->xref_table.count(og) > 0); + int offset = getLinearizationOffset(og); + int h_offset = adjusted_offset(so.first_shared_offset); + if (offset != h_offset) + { + errors.push_back( + "first shared object offset mismatch: hint table = " + + QUtil::int_to_string(h_offset) + "; computed = " + + QUtil::int_to_string(offset)); + } + } + + idx_to_obj[i] = cur_object; + HSharedObjectEntry& se = so.entries[i]; + int nobjects = se.nobjects_minus_one + 1; + int length = lengthNextN(cur_object, nobjects, errors); + int h_length = so.min_group_length + se.delta_group_length; + if (length != h_length) + { + errors.push_back( + "shared object " + QUtil::int_to_string(i) + + " length mismatch: hint table = " + + QUtil::int_to_string(h_length) + "; computed = " + + QUtil::int_to_string(length)); + } + cur_object += nobjects; + } + } +} + +void +QPDF::checkHOutlines(std::list& warnings) +{ + // Empirically, Acrobat generates the correct value for the object + // number but incorrectly stores the next object number's offset + // as the offset, at least when outlines appear in part 6. It + // also generates an incorrect value for length (specifically, the + // length that would cover the correct number of objects from the + // wrong starting place). pdlin appears to generate correct + // values in those cases. + + if (this->c_outline_data.nobjects == this->outline_hints.nobjects) + { + if (this->c_outline_data.nobjects == 0) + { + return; + } + + if (this->c_outline_data.first_object == + this->outline_hints.first_object) + { + // Check length and offset. Acrobat gets these wrong. + QPDFObjectHandle outlines = getRoot().getKey("/Outlines"); + ObjGen og(outlines.getObjectID(), outlines.getGeneration()); + assert(this->xref_table.count(og) > 0); + int offset = getLinearizationOffset(og); + ObjUser ou(ObjUser::ou_root_key, "/Outlines"); + int length = maxEnd(ou) - offset; + int table_offset = + adjusted_offset(this->outline_hints.first_object_offset); + if (offset != table_offset) + { + warnings.push_back( + "incorrect offset in outlines table: hint table = " + + QUtil::int_to_string(table_offset) + + "; computed = " + QUtil::int_to_string(offset)); + } + int table_length = this->outline_hints.group_length; + if (length != table_length) + { + warnings.push_back( + "incorrect length in outlines table: hint table = " + + QUtil::int_to_string(table_length) + + "; computed = " + QUtil::int_to_string(length)); + } + } + else + { + warnings.push_back("incorrect first object number in outline " + "hints table."); + } + } + else + { + warnings.push_back("incorrect object count in outline hint table"); + } +} + +void +QPDF::showLinearizationData() +{ + try + { + readLinearizationData(); + checkLinearizationInternal(); + dumpLinearizationDataInternal(); + } + catch (QPDFExc& e) + { + *out_stream << e.what() << std::endl; + } +} + +void +QPDF::dumpLinearizationDataInternal() +{ + *out_stream << this->file->getName() << ": linearization data:" << std::endl + << std::endl; + + *out_stream + << "file_size: " << this->linp.file_size << std::endl + << "first_page_object: " << this->linp.first_page_object << std::endl + << "first_page_end: " << this->linp.first_page_end << std::endl + << "npages: " << this->linp.npages << std::endl + << "xref_zero_offset: " << this->linp.xref_zero_offset << std::endl + << "first_page: " << this->linp.first_page << std::endl + << "H_offset: " << this->linp.H_offset << std::endl + << "H_length: " << this->linp.H_length << std::endl + << std::endl; + + *out_stream << "Page Offsets Hint Table" << std::endl + << std::endl; + dumpHPageOffset(); + *out_stream << std::endl + << "Shared Objects Hint Table" << std::endl + << std::endl; + dumpHSharedObject(); + + if (this->outline_hints.nobjects > 0) + { + *out_stream << std::endl + << "Outlines Hint Table" << std::endl + << std::endl; + dumpHGeneric(this->outline_hints); + } +} + +int +QPDF::adjusted_offset(int offset) +{ + // All offsets >= H_offset have to be increased by H_length + // since all hint table location values disregard the hint table + // itself. + if (offset >= this->linp.H_offset) + { + return offset + this->linp.H_length; + } + return offset; +} + + +void +QPDF::dumpHPageOffset() +{ + HPageOffset& t = this->page_offset_hints; + *out_stream + << "min_nobjects: " << t.min_nobjects + << std::endl + << "first_page_offset: " << adjusted_offset(t.first_page_offset) + << std::endl + << "nbits_delta_nobjects: " << t.nbits_delta_nobjects + << std::endl + << "min_page_length: " << t.min_page_length + << std::endl + << "nbits_delta_page_length: " << t.nbits_delta_page_length + << std::endl + << "min_content_offset: " << t.min_content_offset + << std::endl + << "nbits_delta_content_offset: " << t.nbits_delta_content_offset + << std::endl + << "min_content_length: " << t.min_content_length + << std::endl + << "nbits_delta_content_length: " << t.nbits_delta_content_length + << std::endl + << "nbits_nshared_objects: " << t.nbits_nshared_objects + << std::endl + << "nbits_shared_identifier: " << t.nbits_shared_identifier + << std::endl + << "nbits_shared_numerator: " << t.nbits_shared_numerator + << std::endl + << "shared_denominator: " << t.shared_denominator + << std::endl; + + for (int i1 = 0; i1 < this->linp.npages; ++i1) + { + HPageOffsetEntry& pe = t.entries[i1]; + *out_stream + << "Page " << i1 << ":" << std::endl + << " nobjects: " << pe.delta_nobjects + t.min_nobjects + << std::endl + << " length: " << pe.delta_page_length + t.min_page_length + << std::endl + // content offset is relative to page, not file + << " content_offset: " + << pe.delta_content_offset + t.min_content_offset << std::endl + << " content_length: " + << pe.delta_content_length + t.min_content_length << std::endl + << " nshared_objects: " << pe.nshared_objects << std::endl; + for (int i2 = 0; i2 < pe.nshared_objects; ++i2) + { + *out_stream << " identifier " << i2 << ": " + << pe.shared_identifiers[i2] << std::endl; + *out_stream << " numerator " << i2 << ": " + << pe.shared_numerators[i2] << std::endl; + } + } +} + +void +QPDF::dumpHSharedObject() +{ + HSharedObject& t = this->shared_object_hints; + *out_stream + << "first_shared_obj: " << t.first_shared_obj + << std::endl + << "first_shared_offset: " << adjusted_offset(t.first_shared_offset) + << std::endl + << "nshared_first_page: " << t.nshared_first_page + << std::endl + << "nshared_total: " << t.nshared_total + << std::endl + << "nbits_nobjects: " << t.nbits_nobjects + << std::endl + << "min_group_length: " << t.min_group_length + << std::endl + << "nbits_delta_group_length: " << t.nbits_delta_group_length + << std::endl; + + for (int i = 0; i < t.nshared_total; ++i) + { + HSharedObjectEntry& se = t.entries[i]; + *out_stream << "Shared Object " << i << ":" << std::endl; + *out_stream << " group length: " + << se.delta_group_length + t.min_group_length << std::endl; + // PDF spec says signature present nobjects_minus_one are + // always 0, so print them only if they have a non-zero value. + if (se.signature_present) + { + *out_stream << " signature present" << std::endl; + } + if (se.nobjects_minus_one != 0) + { + *out_stream << " nobjects: " + << se.nobjects_minus_one + 1 << std::endl; + } + } +} + +void +QPDF::dumpHGeneric(HGeneric& t) +{ + *out_stream + << "first_object: " << t.first_object + << std::endl + << "first_object_offset: " << adjusted_offset(t.first_object_offset) + << std::endl + << "nobjects: " << t.nobjects + << std::endl + << "group_length: " << t.group_length + << std::endl; +} + +QPDFObjectHandle +QPDF::objGenToIndirect(ObjGen const& og) +{ + return getObjectByID(og.obj, og.gen); +} + +void +QPDF::calculateLinearizationData(std::map const& object_stream_data) +{ + // This function calculates the ordering of objects, divides them + // into the appropriate parts, and computes some values for the + // linearization parameter dictionary and hint tables. The file + // must be optimized (via calling optimize()) prior to calling + // this function. Note that actual offsets and lengths are not + // computed here, but anything related to object ordering is. + + if (this->object_to_obj_users.empty()) + { + // Note that we can't call optimize here because we don't know + // whether it should be called with or without allow changes. + throw std::logic_error( + "INTERNAL ERROR: QPDF::calculateLinearizationData " + "called before optimize()"); + } + + // Separate objects into the categories sufficient for us to + // determine which part of the linearized file should contain the + // object. This categorization is useful for other purposes as + // well. Part numbers refer to version 1.4 of the PDF spec. + + // Parts 1, 3, 5, 10, and 11 don't contain any objects from the + // original file (except the trailer dictionary in part 11). + + // Part 4 is the document catalog (root) and the following root + // keys: /ViewerPreferences, /PageMode, /Threads, /OpenAction, + // /AcroForm, /Encrypt. Note that Thread information dictionaries + // are supposed to appear in part 9, but we are disregarding that + // recommendation for now. + + // Part 6 is the first page section. It includes all remaining + // objects referenced by the first page including shared objects + // but not including thumbnails. Additionally, if /PageMode is + // /Outlines, then information from /Outlines also appears here. + + // Part 7 contains remaining objects private to pages other than + // the first page. + + // Part 8 contains all remaining shared objects except those that + // are shared only within thumbnails. + + // Part 9 contains all remaining objects. + + // We sort objects into the following categories: + + // * open_document: part 4 + + // * first_page_private: part 6 + + // * first_page_shared: part 6 + + // * other_page_private: part 7 + + // * other_page_shared: part 8 + + // * thumbnail_private: part 9 + + // * thumbnail_shared: part 9 + + // * other: part 9 + + // * outlines: part 6 or 9 + + this->part4.clear(); + this->part6.clear(); + this->part7.clear(); + this->part8.clear(); + this->part9.clear(); + this->c_linp = LinParameters(); + this->c_page_offset_data = CHPageOffset(); + this->c_shared_object_data = CHSharedObject(); + this->c_outline_data = HGeneric(); + + QPDFObjectHandle root = getRoot(); + bool outlines_in_first_page = false; + QPDFObjectHandle pagemode = root.getKey("/PageMode"); + QTC::TC("qpdf", "QPDF categorize pagemode present", + pagemode.isName() ? 1 : 0); + if (pagemode.isName()) + { + if (pagemode.getName() == "/UseOutlines") + { + if (root.hasKey("/Outlines")) + { + outlines_in_first_page = true; + } + else + { + QTC::TC("qpdf", "QPDF UseOutlines but no Outlines"); + } + } + QTC::TC("qpdf", "QPDF categorize pagemode outlines", + outlines_in_first_page ? 1 : 0); + } + + std::set open_document_keys; + open_document_keys.insert("/ViewerPreferences"); + open_document_keys.insert("/PageMode"); + open_document_keys.insert("/Threads"); + open_document_keys.insert("/OpenAction"); + open_document_keys.insert("/AcroForm"); + + std::set lc_open_document; + std::set lc_first_page_private; + std::set lc_first_page_shared; + std::set lc_other_page_private; + std::set lc_other_page_shared; + std::set lc_thumbnail_private; + std::set lc_thumbnail_shared; + std::set lc_other; + std::set lc_outlines; + std::set lc_root; + + for (std::map >::iterator oiter = + this->object_to_obj_users.begin(); + oiter != this->object_to_obj_users.end(); ++oiter) + { + ObjGen const& og = (*oiter).first; + + std::set& ous = (*oiter).second; + + bool in_open_document = false; + bool in_first_page = false; + int other_pages = 0; + int thumbs = 0; + int others = 0; + bool in_outlines = false; + bool is_root = false; + + for (std::set::iterator uiter = ous.begin(); + uiter != ous.end(); ++uiter) + { + ObjUser const& ou = *uiter; + switch (ou.ou_type) + { + case ObjUser::ou_trailer_key: + if (ou.key == "/Encrypt") + { + in_open_document = true; + } + else + { + ++others; + } + break; + + case ObjUser::ou_thumb: + ++thumbs; + break; + + case ObjUser::ou_root_key: + if (open_document_keys.count(ou.key) > 0) + { + in_open_document = true; + } + else if (ou.key == "/Outlines") + { + in_outlines = true; + } + else + { + ++others; + } + break; + + case ObjUser::ou_page: + if (ou.pageno == 0) + { + in_first_page = true; + } + else + { + ++other_pages; + } + break; + + case ObjUser::ou_root: + is_root = true; + break; + + case ObjUser::ou_bad: + throw std::logic_error( + "INTERNAL ERROR: QPDF::calculateLinearizationData: " + "invalid user type"); + break; + } + } + + if (is_root) + { + lc_root.insert(og); + } + else if (in_outlines) + { + lc_outlines.insert(og); + } + else if (in_open_document) + { + lc_open_document.insert(og); + } + else if ((in_first_page) && + (others == 0) && (other_pages == 0) && (thumbs == 0)) + { + lc_first_page_private.insert(og); + } + else if (in_first_page) + { + lc_first_page_shared.insert(og); + } + else if ((other_pages == 1) && (others == 0) && (thumbs == 0)) + { + lc_other_page_private.insert(og); + } + else if (other_pages > 1) + { + lc_other_page_shared.insert(og); + } + else if ((thumbs == 1) && (others == 0)) + { + lc_thumbnail_private.insert(og); + } + else if (thumbs > 1) + { + lc_thumbnail_shared.insert(og); + } + else + { + lc_other.insert(og); + } + } + + // Generate ordering for objects in the output file. Sometimes we + // just dump right from a set into a vector. Rather than + // optimizing this by going straight into the vector, we'll leave + // these phases separate for now. That way, this section can be + // concerned only with ordering, and the above section can be + // considered only with categorization. Note that sets of ObjGens + // are sorted by ObjGen. In a linearized file, objects appear in + // sequence with the possible exception of hints tables which we + // won't see here anyway. That means that running + // calculateLinearizationData() on a linearized file should give + // results identical to the original file ordering. + + // We seem to traverse the page tree a lot in this code, but we + // can address this for a future code optimization if necessary. + // Premature optimization is the root of all evil. + std::vector pages; + { // local scope + // Map all page objects to the containing object stream. This + // should be a no-op in a properly linearized file. + std::vector t = getAllPages(); + for (std::vector::iterator iter = t.begin(); + iter != t.end(); ++iter) + { + pages.push_back(getUncompressedObject(*iter, object_stream_data)); + } + } + unsigned int npages = (unsigned int)pages.size(); + + // We will be initializing some values of the computed hint + // tables. Specifically, we can initialize any items that deal + // with object numbers or counts but not any items that deal with + // lengths or offsets. The code that writes linearized files will + // have to fill in these values during the first pass. The + // validation code can compute them relatively easily given the + // rest of the information. + + this->c_linp.npages = npages; + this->c_page_offset_data.entries = std::vector(npages); + + // Part 4: open document objects. We don't care about the order. + + assert(lc_root.size() == 1); + this->part4.push_back(objGenToIndirect(*(lc_root.begin()))); + for (std::set::iterator iter = lc_open_document.begin(); + iter != lc_open_document.end(); ++iter) + { + this->part4.push_back(objGenToIndirect(*iter)); + } + + // Part 6: first page objects. Note: implementation note 124 + // states that Acrobat always treats page 0 as the first page for + // linearization regardless of /OpenAction. pdlin doesn't provide + // any option to set this and also disregards /OpenAction. We + // will do the same. + + // First, place the actual first page object itself. + ObjGen first_page_og(pages[0].getObjectID(), pages[0].getGeneration()); + if (! lc_first_page_private.count(first_page_og)) + { + throw std::logic_error( + "INTERNAL ERROR: QPDF::calculateLinearizationData: first page " + "object not in lc_first_page_private"); + } + lc_first_page_private.erase(first_page_og); + this->c_linp.first_page_object = pages[0].getObjectID(); + this->part6.push_back(pages[0]); + + // The PDF spec "recommends" an order for the rest of the objects, + // but we are going to disregard it except to the extent that it + // groups private and shared objects contiguously for the sake of + // hint tables. + + for (std::set::iterator iter = lc_first_page_private.begin(); + iter != lc_first_page_private.end(); ++iter) + { + this->part6.push_back(objGenToIndirect(*iter)); + } + + for (std::set::iterator iter = lc_first_page_shared.begin(); + iter != lc_first_page_shared.end(); ++iter) + { + this->part6.push_back(objGenToIndirect(*iter)); + } + + // Place the outline dictionary if it goes in the first page section. + if (outlines_in_first_page) + { + pushOutlinesToPart(this->part6, lc_outlines, object_stream_data); + } + + // Fill in page offset hint table information for the first page. + // The PDF spec says that nshared_objects should be zero for the + // first page. pdlin does not appear to obey this, but it fills + // in garbage values for all the shared object identifiers on the + // first page. + + this->c_page_offset_data.entries[0].nobjects = (int)this->part6.size(); + + // Part 7: other pages' private objects + + // For each page in order: + for (unsigned int i = 1; i < npages; ++i) + { + // Place this page's page object + + ObjGen page_og(pages[i].getObjectID(), pages[i].getGeneration()); + if (! lc_other_page_private.count(page_og)) + { + throw std::logic_error( + "INTERNAL ERROR: " + "QPDF::calculateLinearizationData: page object for page " + + QUtil::int_to_string(i) + " not in lc_other_page_private"); + } + lc_other_page_private.erase(page_og); + this->part7.push_back(pages[i]); + + // Place all non-shared objects referenced by this page, + // updating the page object count for the hint table. + + this->c_page_offset_data.entries[i].nobjects = 1; + + ObjUser ou(ObjUser::ou_page, i); + assert(this->obj_user_to_objects.count(ou) > 0); + std::set ogs = this->obj_user_to_objects[ou]; + for (std::set::iterator iter = ogs.begin(); + iter != ogs.end(); ++iter) + { + ObjGen const& og = (*iter); + if (lc_other_page_private.count(og)) + { + lc_other_page_private.erase(og); + this->part7.push_back(objGenToIndirect(og)); + ++this->c_page_offset_data.entries[i].nobjects; + } + } + } + // That should have covered all part7 objects. + if (! lc_other_page_private.empty()) + { + throw std::logic_error( + "INTERNAL ERROR:" + " QPDF::calculateLinearizationData: lc_other_page_private is " + "not empty after generation of part7"); + } + + // Part 8: other pages' shared objects + + // Order is unimportant. + for (std::set::iterator iter = lc_other_page_shared.begin(); + iter != lc_other_page_shared.end(); ++iter) + { + this->part8.push_back(objGenToIndirect(*iter)); + } + + // Part 9: other objects + + // The PDF specification makes recommendations on ordering here. + // We follow them only to a limited extent. Specifically, we put + // the pages tree first, then private thumbnail objects in page + // order, then shared thumbnail objects, and then outlines (unless + // in part 6). After that, we throw all remaining objects in + // arbitrary order. + + // Place the pages tree. + std::set pages_ogs = + this->obj_user_to_objects[ObjUser(ObjUser::ou_root_key, "/Pages")]; + assert(! pages_ogs.empty()); + for (std::set::iterator iter = pages_ogs.begin(); + iter != pages_ogs.end(); ++iter) + { + ObjGen const& og = *iter; + if (lc_other.count(og)) + { + lc_other.erase(og); + this->part9.push_back(objGenToIndirect(og)); + } + } + + // Place private thumbnail images in page order. Slightly more + // information would be required if we were going to bother with + // thumbnail hint tables. + for (unsigned int i = 0; i < npages; ++i) + { + QPDFObjectHandle thumb = pages[i].getKey("/Thumb"); + thumb = getUncompressedObject(thumb, object_stream_data); + if (! thumb.isNull()) + { + // Output the thumbnail itself + ObjGen thumb_og(thumb.getObjectID(), thumb.getGeneration()); + if (lc_thumbnail_private.count(thumb_og)) + { + lc_thumbnail_private.erase(thumb_og); + this->part9.push_back(thumb); + } + else + { + // No internal error this time...there's nothing to + // stop this object from having been referred to + // somewhere else outside of a page's /Thumb, and if + // it had been, there's nothing to prevent it from + // having been in some set other than + // lc_thumbnail_private. + } + std::set& ogs = + this->obj_user_to_objects[ObjUser(ObjUser::ou_thumb, i)]; + for (std::set::iterator iter = ogs.begin(); + iter != ogs.end(); ++iter) + { + ObjGen const& og = *iter; + if (lc_thumbnail_private.count(og)) + { + lc_thumbnail_private.erase(og); + this->part9.push_back(objGenToIndirect(og)); + } + } + } + } + if (! lc_thumbnail_private.empty()) + { + throw std::logic_error( + "INTERNAL ERROR: " + "QPDF::calculateLinearizationData: lc_thumbnail_private " + "not empty after placing thumbnails"); + } + + // Place shared thumbnail objects + for (std::set::iterator iter = lc_thumbnail_shared.begin(); + iter != lc_thumbnail_shared.end(); ++iter) + { + this->part9.push_back(objGenToIndirect(*iter)); + } + + // Place outlines unless in first page + if (! outlines_in_first_page) + { + pushOutlinesToPart(this->part9, lc_outlines, object_stream_data); + } + + // Place all remaining objects + for (std::set::iterator iter = lc_other.begin(); + iter != lc_other.end(); ++iter) + { + this->part9.push_back(objGenToIndirect(*iter)); + } + + // Make sure we got everything exactly once. + + unsigned int num_placed = + (unsigned int)(this->part4.size() + this->part6.size() + + this->part7.size() + this->part8.size() + + this->part9.size()); + unsigned int num_wanted = (unsigned int)this->object_to_obj_users.size(); + if (num_placed != num_wanted) + { + throw std::logic_error( + "INTERNAL ERROR: QPDF::calculateLinearizationData: wrong " + "number of objects placed (num_placed = " + + QUtil::int_to_string(num_placed) + + "; number of objects: " + + QUtil::int_to_string(num_wanted)); + } + + // Calculate shared object hint table information including + // references to shared objects from page offset hint data. + + // The shared object hint table consists of all part 6 (whether + // shared or not) in order followed by all part 8 objects in + // order. Add the objects to shared object data keeping a map of + // object number to index. Then populate the shared object + // information for the pages. + + // Note that two objects never have the same object number, so we + // can map from object number only without regards to generation. + std::map obj_to_index; + + this->c_shared_object_data.nshared_first_page = + (unsigned int)this->part6.size(); + this->c_shared_object_data.nshared_total = + this->c_shared_object_data.nshared_first_page + + (unsigned int) this->part8.size(); + + std::vector& shared = + this->c_shared_object_data.entries; + for (std::vector::iterator iter = this->part6.begin(); + iter != this->part6.end(); ++iter) + { + QPDFObjectHandle& oh = *iter; + int obj = oh.getObjectID(); + obj_to_index[obj] = (int)shared.size(); + shared.push_back(CHSharedObjectEntry(obj)); + } + QTC::TC("qpdf", "QPDF lin part 8 empty", this->part8.empty() ? 1 : 0); + if (! this->part8.empty()) + { + this->c_shared_object_data.first_shared_obj = + this->part8[0].getObjectID(); + for (std::vector::iterator iter = + this->part8.begin(); + iter != this->part8.end(); ++iter) + { + QPDFObjectHandle& oh = *iter; + int obj = oh.getObjectID(); + obj_to_index[obj] = (int)shared.size(); + shared.push_back(CHSharedObjectEntry(obj)); + } + } + assert(this->c_shared_object_data.nshared_total == + (int) this->c_shared_object_data.entries.size()); + + // Now compute the list of shared objects for each page after the + // first page. + + for (unsigned int i = 1; i < npages; ++i) + { + CHPageOffsetEntry& pe = this->c_page_offset_data.entries[i]; + ObjUser ou(ObjUser::ou_page, i); + assert(this->obj_user_to_objects.count(ou) > 0); + std::set const& ogs = this->obj_user_to_objects[ou]; + for (std::set::const_iterator iter = ogs.begin(); + iter != ogs.end(); ++iter) + { + ObjGen const& og = *iter; + if ((this->object_to_obj_users[og].size() > 1) && + (obj_to_index.count(og.obj) > 0)) + { + int idx = obj_to_index[og.obj]; + ++pe.nshared_objects; + pe.shared_identifiers.push_back(idx); + } + } + } +} + +void +QPDF::pushOutlinesToPart( + std::vector& part, + std::set& lc_outlines, + std::map const& object_stream_data) +{ + QPDFObjectHandle root = getRoot(); + QPDFObjectHandle outlines = root.getKey("/Outlines"); + if (outlines.isNull()) + { + return; + } + outlines = getUncompressedObject(outlines, object_stream_data); + ObjGen outlines_og(outlines.getObjectID(), outlines.getGeneration()); + QTC::TC("qpdf", "QPDF lin outlines in part", + ((&part == (&this->part6)) ? 0 + : (&part == (&this->part9)) ? 1 + : 9999)); // can't happen + this->c_outline_data.first_object = outlines_og.obj; + this->c_outline_data.nobjects = 1; + lc_outlines.erase(outlines_og); + part.push_back(outlines); + for (std::set::iterator iter = lc_outlines.begin(); + iter != lc_outlines.end(); ++iter) + { + part.push_back(objGenToIndirect(*iter)); + ++this->c_outline_data.nobjects; + } +} + +void +QPDF::getLinearizedParts( + std::map const& object_stream_data, + std::vector& part4, + std::vector& part6, + std::vector& part7, + std::vector& part8, + std::vector& part9) +{ + calculateLinearizationData(object_stream_data); + part4 = this->part4; + part6 = this->part6; + part7 = this->part7; + part8 = this->part8; + part9 = this->part9; +} + +static inline int nbits(int val) +{ + return (val == 0 ? 0 : (1 + nbits(val >> 1))); +} + +int +QPDF::outputLengthNextN( + int in_object, int n, + std::map const& lengths, + std::map const& obj_renumber) +{ + // Figure out the length of a series of n consecutive objects in + // the output file starting with whatever object in_object from + // the input file mapped to. + + assert(obj_renumber.count(in_object) > 0); + int first = (*(obj_renumber.find(in_object))).second; + int length = 0; + for (int i = 0; i < n; ++i) + { + assert(lengths.count(first + i) > 0); + length += (*(lengths.find(first + i))).second; + } + return length; +} + +void +QPDF::calculateHPageOffset( + std::map const& xref, + std::map const& lengths, + std::map const& obj_renumber) +{ + // Page Offset Hint Table + + // We are purposely leaving some values set to their initial zero + // values. + + std::vector const& pages = getAllPages(); + unsigned int npages = (unsigned int)pages.size(); + CHPageOffset& cph = this->c_page_offset_data; + std::vector& cphe = cph.entries; + + // Calculate minimum and maximum values for number of objects per + // page and page length. + + int min_nobjects = cphe[0].nobjects; + int max_nobjects = min_nobjects; + int min_length = outputLengthNextN( + pages[0].getObjectID(), min_nobjects, lengths, obj_renumber); + int max_length = min_length; + int max_shared = cphe[0].nshared_objects; + + HPageOffset& ph = this->page_offset_hints; + std::vector& phe = ph.entries; + phe = std::vector(npages); + + for (unsigned int i = 0; i < npages; ++i) + { + // Calculate values for each page, assigning full values to + // the delta items. They will be adjusted later. + + // Repeat calculations for page 0 so we can assign to phe[i] + // without duplicating those assignments. + + int nobjects = cphe[i].nobjects; + int length = outputLengthNextN( + pages[i].getObjectID(), nobjects, lengths, obj_renumber); + int nshared = cphe[i].nshared_objects; + + min_nobjects = std::min(min_nobjects, nobjects); + max_nobjects = std::max(max_nobjects, nobjects); + min_length = std::min(min_length, length); + max_length = std::max(max_length, length); + max_shared = std::max(max_shared, nshared); + + phe[i].delta_nobjects = nobjects; + phe[i].delta_page_length = length; + phe[i].nshared_objects = nshared; + } + + ph.min_nobjects = min_nobjects; + int in_page0_id = pages[0].getObjectID(); + int out_page0_id = (*(obj_renumber.find(in_page0_id))).second; + ph.first_page_offset = (*(xref.find(out_page0_id))).second.getOffset(); + ph.nbits_delta_nobjects = nbits(max_nobjects - min_nobjects); + ph.min_page_length = min_length; + ph.nbits_delta_page_length = nbits(max_length - min_length); + ph.nbits_nshared_objects = nbits(max_shared); + ph.nbits_shared_identifier = + nbits(this->c_shared_object_data.nshared_total); + ph.shared_denominator = 4; // doesn't matter + + // It isn't clear how to compute content offset and content + // length. Since we are not interleaving page objects with the + // content stream, we'll use the same values for content length as + // page length. We will use 0 as content offset because this is + // what Adobe does (implementation note 127) and pdlin as well. + ph.nbits_delta_content_length = ph.nbits_delta_page_length; + ph.min_content_length = ph.min_page_length; + + for (unsigned int i = 0; i < npages; ++i) + { + // Adjust delta entries + assert(phe[i].delta_nobjects >= min_nobjects); + assert(phe[i].delta_page_length >= min_length); + phe[i].delta_nobjects -= min_nobjects; + phe[i].delta_page_length -= min_length; + phe[i].delta_content_length = phe[i].delta_page_length; + + for (int j = 0; j < cphe[i].nshared_objects; ++j) + { + phe[i].shared_identifiers.push_back( + cphe[i].shared_identifiers[j]); + phe[i].shared_numerators.push_back(0); + } + } +} + +void +QPDF::calculateHSharedObject( + std::map const& xref, + std::map const& lengths, + std::map const& obj_renumber) +{ + CHSharedObject& cso = this->c_shared_object_data; + std::vector& csoe = cso.entries; + HSharedObject& so = this->shared_object_hints; + std::vector& soe = so.entries; + soe = std::vector(cso.nshared_total); + + int min_length = outputLengthNextN( + csoe[0].object, 1, lengths, obj_renumber); + int max_length = min_length; + + for (int i = 0; i < cso.nshared_total; ++i) + { + // Assign absolute numbers to deltas; adjust later + int length = outputLengthNextN( + csoe[i].object, 1, lengths, obj_renumber); + min_length = std::min(min_length, length); + max_length = std::max(max_length, length); + soe[i].delta_group_length = length; + } + + so.nshared_total = cso.nshared_total; + so.nshared_first_page = cso.nshared_first_page; + if (so.nshared_total > so.nshared_first_page) + { + so.first_shared_obj = + (*(obj_renumber.find(cso.first_shared_obj))).second; + so.first_shared_offset = + (*(xref.find(so.first_shared_obj))).second.getOffset(); + } + so.min_group_length = min_length; + so.nbits_delta_group_length = nbits(max_length - min_length); + + for (int i = 0; i < cso.nshared_total; ++i) + { + // Adjust deltas + assert(soe[i].delta_group_length >= min_length); + soe[i].delta_group_length -= min_length; + } +} + +void +QPDF::calculateHOutline( + std::map const& xref, + std::map const& lengths, + std::map const& obj_renumber) +{ + HGeneric& cho = this->c_outline_data; + + if (cho.nobjects == 0) + { + return; + } + + HGeneric& ho = this->outline_hints; + + ho.first_object = + (*(obj_renumber.find(cho.first_object))).second; + ho.first_object_offset = + (*(xref.find(ho.first_object))).second.getOffset(); + ho.nobjects = cho.nobjects; + ho.group_length = outputLengthNextN( + cho.first_object, ho.nobjects, lengths, obj_renumber); +} + +template +static void +write_vector_int(BitWriter& w, int nitems, std::vector& vec, + int bits, int_type T::*field) +{ + // nitems times, write bits bits from the given field of the ith + // vector to the given bit writer. + + for (int i = 0; i < nitems; ++i) + { + w.writeBits(vec[i].*field, bits); + } + // The PDF spec says that each hint table starts at a byte + // boundary. Each "row" actually must start on a byte boundary. + w.flush(); +} + +template +static void +write_vector_vector(BitWriter& w, + int nitems1, std::vector& vec1, int T::*nitems2, + int bits, std::vector T::*vec2) +{ + // nitems1 times, write nitems2 (from the ith element of vec1) items + // from the vec2 vector field of the ith item of vec1. + for (int i1 = 0; i1 < nitems1; ++i1) + { + for (int i2 = 0; i2 < vec1[i1].*nitems2; ++i2) + { + w.writeBits((vec1[i1].*vec2)[i2], bits); + } + } + w.flush(); +} + + +void +QPDF::writeHPageOffset(BitWriter& w) +{ + HPageOffset& t = this->page_offset_hints; + + w.writeBits(t.min_nobjects, 32); // 1 + w.writeBits(t.first_page_offset, 32); // 2 + w.writeBits(t.nbits_delta_nobjects, 16); // 3 + w.writeBits(t.min_page_length, 32); // 4 + w.writeBits(t.nbits_delta_page_length, 16); // 5 + w.writeBits(t.min_content_offset, 32); // 6 + w.writeBits(t.nbits_delta_content_offset, 16); // 7 + w.writeBits(t.min_content_length, 32); // 8 + w.writeBits(t.nbits_delta_content_length, 16); // 9 + w.writeBits(t.nbits_nshared_objects, 16); // 10 + w.writeBits(t.nbits_shared_identifier, 16); // 11 + w.writeBits(t.nbits_shared_numerator, 16); // 12 + w.writeBits(t.shared_denominator, 16); // 13 + + unsigned int nitems = (unsigned int)getAllPages().size(); + std::vector& entries = t.entries; + + write_vector_int(w, nitems, entries, + t.nbits_delta_nobjects, + &HPageOffsetEntry::delta_nobjects); + write_vector_int(w, nitems, entries, + t.nbits_delta_page_length, + &HPageOffsetEntry::delta_page_length); + write_vector_int(w, nitems, entries, + t.nbits_nshared_objects, + &HPageOffsetEntry::nshared_objects); + write_vector_vector(w, nitems, entries, + &HPageOffsetEntry::nshared_objects, + t.nbits_shared_identifier, + &HPageOffsetEntry::shared_identifiers); + write_vector_vector(w, nitems, entries, + &HPageOffsetEntry::nshared_objects, + t.nbits_shared_numerator, + &HPageOffsetEntry::shared_numerators); + write_vector_int(w, nitems, entries, + t.nbits_delta_content_offset, + &HPageOffsetEntry::delta_content_offset); + write_vector_int(w, nitems, entries, + t.nbits_delta_content_length, + &HPageOffsetEntry::delta_content_length); +} + +void +QPDF::writeHSharedObject(BitWriter& w) +{ + HSharedObject& t = this->shared_object_hints; + + w.writeBits(t.first_shared_obj, 32); // 1 + w.writeBits(t.first_shared_offset, 32); // 2 + w.writeBits(t.nshared_first_page, 32); // 3 + w.writeBits(t.nshared_total, 32); // 4 + w.writeBits(t.nbits_nobjects, 16); // 5 + w.writeBits(t.min_group_length, 32); // 6 + w.writeBits(t.nbits_delta_group_length, 16); // 7 + + QTC::TC("qpdf", "QPDF lin write nshared_total > nshared_first_page", + (t.nshared_total > t.nshared_first_page) ? 1 : 0); + + int nitems = t.nshared_total; + std::vector& entries = t.entries; + + write_vector_int(w, nitems, entries, + t.nbits_delta_group_length, + &HSharedObjectEntry::delta_group_length); + write_vector_int(w, nitems, entries, + 1, &HSharedObjectEntry::signature_present); + for (int i = 0; i < nitems; ++i) + { + // If signature were present, we'd have to write a 128-bit hash. + assert(entries[i].signature_present == 0); + } + write_vector_int(w, nitems, entries, + t.nbits_nobjects, + &HSharedObjectEntry::nobjects_minus_one); +} + +void +QPDF::writeHGeneric(BitWriter& w, HGeneric& t) +{ + w.writeBits(t.first_object, 32); // 1 + w.writeBits(t.first_object_offset, 32); // 2 + w.writeBits(t.nobjects, 32); // 3 + w.writeBits(t.group_length, 32); // 4 +} + +void +QPDF::generateHintStream(std::map const& xref, + std::map const& lengths, + std::map const& obj_renumber, + PointerHolder& hint_buffer, + int& S, int& O) +{ + // Populate actual hint table values + calculateHPageOffset(xref, lengths, obj_renumber); + calculateHSharedObject(xref, lengths, obj_renumber); + calculateHOutline(xref, lengths, obj_renumber); + + // Write the hint stream itself into a compressed memory buffer. + // Write through a counter so we can get offsets. + Pl_Buffer hint_stream("hint stream"); + Pl_Flate f("compress hint stream", &hint_stream, Pl_Flate::a_deflate); + Pl_Count c("count", &f); + BitWriter w(&c); + + writeHPageOffset(w); + S = (int)c.getCount(); + writeHSharedObject(w); + O = 0; + if (this->outline_hints.nobjects > 0) + { + O = (int)c.getCount(); + writeHGeneric(w, this->outline_hints); + } + c.finish(); + + hint_buffer = hint_stream.getBuffer(); +} diff --git a/libqpdf/QPDF_optimization.cc b/libqpdf/QPDF_optimization.cc new file mode 100644 index 0000000..67f147f --- /dev/null +++ b/libqpdf/QPDF_optimization.cc @@ -0,0 +1,556 @@ +// See the "Optimization" section of the manual. + +#include + +#include +#include +#include +#include +#include + +QPDF::ObjUser::ObjUser() : + ou_type(ou_bad), + pageno(0) +{ +} + +QPDF::ObjUser::ObjUser(user_e type) : + ou_type(type), + pageno(0) +{ + assert(type == ou_root); +} + +QPDF::ObjUser::ObjUser(user_e type, int pageno) : + ou_type(type), + pageno(pageno) +{ + assert((type == ou_page) || (type == ou_thumb)); +} + +QPDF::ObjUser::ObjUser(user_e type, std::string const& key) : + ou_type(type), + pageno(0), + key(key) +{ + assert((type == ou_trailer_key) || (type == ou_root_key)); +} + +bool +QPDF::ObjUser::operator<(ObjUser const& rhs) const +{ + if (this->ou_type < rhs.ou_type) + { + return true; + } + else if (this->ou_type == rhs.ou_type) + { + if (this->pageno < rhs.pageno) + { + return true; + } + else if (this->pageno == rhs.pageno) + { + return (this->key < rhs.key); + } + } + + return false; +} + +void +QPDF::flattenScalarReferences() +{ + // Do a traversal of the entire PDF file structure replacing all + // indirect objects that are not arrays, streams, or dictionaries + // with direct objects. + + std::list queue; + queue.push_back(this->trailer); + std::set visited; + + // Add every object in the xref table to the queue. This ensures + // that we flatten scalar references in unreferenced objects. + // This becomes important if we are preserving object streams in a + // file that has unreferenced objects in its object streams. (See + // QPDF bug 2974522 at SourceForge.) + for (std::map::iterator iter = + this->xref_table.begin(); + iter != this->xref_table.end(); ++iter) + { + ObjGen const& og = (*iter).first; + queue.push_back(getObjectByID(og.obj, og.gen)); + } + + while (! queue.empty()) + { + QPDFObjectHandle node = queue.front(); + queue.pop_front(); + if (node.isIndirect()) + { + ObjGen og(node.getObjectID(), node.getGeneration()); + if (visited.count(og) > 0) + { + continue; + } + visited.insert(og); + } + + if (node.isArray()) + { + int nitems = node.getArrayNItems(); + for (int i = 0; i < nitems; ++i) + { + QPDFObjectHandle oh = node.getArrayItem(i); + if (oh.isScalar()) + { + if (oh.isIndirect()) + { + QTC::TC("qpdf", "QPDF opt flatten array scalar"); + oh.makeDirect(); + node.setArrayItem(i, oh); + } + } + else + { + queue.push_back(oh); + } + } + } + else if (node.isDictionary() || node.isStream()) + { + QPDFObjectHandle dict = node; + if (node.isStream()) + { + dict = node.getDict(); + } + std::set keys = dict.getKeys(); + for (std::set::iterator iter = keys.begin(); + iter != keys.end(); ++iter) + { + std::string const& key = *iter; + QPDFObjectHandle oh = dict.getKey(key); + if (oh.isNull()) + { + // QPDF_Dictionary.getKeys() never returns null + // keys. + throw std::logic_error( + "INTERNAL ERROR: dictionary with null key found"); + } + else if (oh.isScalar()) + { + if (oh.isIndirect()) + { + QTC::TC("qpdf", "QPDF opt flatten dict scalar"); + oh.makeDirect(); + dict.replaceKey(key, oh); + } + } + else + { + queue.push_back(oh); + } + } + } + } +} + +void +QPDF::optimize(std::map const& object_stream_data, + bool allow_changes) +{ + if (! this->obj_user_to_objects.empty()) + { + // already optimized + return; + } + + // Traverse pages tree pushing all inherited resources down to the + // page level. This also initializes this->all_pages. + pushInheritedAttributesToPage(allow_changes, false); + + // Traverse pages + int n = (int)this->all_pages.size(); + for (int pageno = 0; pageno < n; ++pageno) + { + updateObjectMaps(ObjUser(ObjUser::ou_page, pageno), + this->all_pages[pageno]); + } + + // Traverse document-level items + std::set keys = this->trailer.getKeys(); + for (std::set::iterator iter = keys.begin(); + iter != keys.end(); ++iter) + { + std::string const& key = *iter; + if (key == "/Root") + { + // handled separately + } + else + { + updateObjectMaps(ObjUser(ObjUser::ou_trailer_key, key), + this->trailer.getKey(key)); + } + } + + QPDFObjectHandle root = getRoot(); + keys = root.getKeys(); + for (std::set::iterator iter = keys.begin(); + iter != keys.end(); ++iter) + { + // Technically, /I keys from /Thread dictionaries are supposed + // to be handled separately, but we are going to disregard + // that specification for now. There is loads of evidence + // that pdlin and Acrobat both disregard things like this from + // time to time, so this is almost certain not to cause any + // problems. + + std::string const& key = *iter; + updateObjectMaps(ObjUser(ObjUser::ou_root_key, key), + root.getKey(key)); + } + + ObjUser root_ou = ObjUser(ObjUser::ou_root); + ObjGen root_og = ObjGen(root.getObjectID(), root.getGeneration()); + obj_user_to_objects[root_ou].insert(root_og); + object_to_obj_users[root_og].insert(root_ou); + + filterCompressedObjects(object_stream_data); +} + +void +QPDF::pushInheritedAttributesToPage() +{ + // Public API should not have access to allow_changes. + pushInheritedAttributesToPage(true, false); +} + +void +QPDF::pushInheritedAttributesToPage(bool allow_changes, bool warn_skipped_keys) +{ + // Traverse pages tree pushing all inherited resources down to the + // page level. + + // The record of whether we've done this is cleared by + // updateAllPagesCache(). If we're warning for skipped keys, + // re-traverse unconditionally. + if (this->pushed_inherited_attributes_to_pages && (! warn_skipped_keys)) + { + return; + } + + // key_ancestors is a mapping of page attribute keys to a stack of + // Pages nodes that contain values for them. + std::map > key_ancestors; + this->all_pages.clear(); + pushInheritedAttributesToPageInternal( + this->trailer.getKey("/Root").getKey("/Pages"), + key_ancestors, this->all_pages, allow_changes, warn_skipped_keys); + assert(key_ancestors.empty()); + this->pushed_inherited_attributes_to_pages = true; +} + +void +QPDF::pushInheritedAttributesToPageInternal( + QPDFObjectHandle cur_pages, + std::map >& key_ancestors, + std::vector& pages, + bool allow_changes, bool warn_skipped_keys) +{ + // Extract the underlying dictionary object + std::string type = cur_pages.getKey("/Type").getName(); + + if (type == "/Pages") + { + // Make a list of inheritable keys. Any key other than /Type, + // /Parent, Kids, or /Count is an inheritable attribute. Push + // this object onto the stack of pages nodes that have values + // for this attribute. + + std::set inheritable_keys; + std::set keys = cur_pages.getKeys(); + for (std::set::iterator iter = keys.begin(); + iter != keys.end(); ++iter) + { + std::string const& key = *iter; + if ( (key == "/MediaBox") || (key == "/CropBox") || + (key == "/Resources") || (key == "/Rotate") ) + { + if (! allow_changes) + { + throw QPDFExc(qpdf_e_internal, this->file->getName(), + this->last_object_description, + this->file->getLastOffset(), + "optimize detected an " + "inheritable attribute when called " + "in no-change mode"); + } + + // This is an inheritable resource + inheritable_keys.insert(key); + QPDFObjectHandle oh = cur_pages.getKey(key); + QTC::TC("qpdf", "QPDF opt direct pages resource", + oh.isIndirect() ? 0 : 1); + if (! oh.isIndirect()) + { + if (! oh.isScalar()) + { + // Replace shared direct object non-scalar + // resources with indirect objects to avoid + // copying large structures around. + cur_pages.replaceKey(key, makeIndirectObject(oh)); + oh = cur_pages.getKey(key); + } + else + { + // Don't defeat flattenScalarReferences which + // would have already been called by this + // time. + QTC::TC("qpdf", "QPDF opt inherited scalar"); + } + } + key_ancestors[key].push_back(oh); + if (key_ancestors[key].size() > 1) + { + QTC::TC("qpdf", "QPDF opt key ancestors depth > 1"); + } + // Remove this resource from this node. It will be + // reattached at the page level. + cur_pages.removeKey(key); + } + else if (! ((key == "/Type") || (key == "/Parent") || + (key == "/Kids") || (key == "/Count"))) + { + // Warn when flattening, but not if the key is at the top + // level (i.e. "/Parent" not set), as we don't change these; + // but flattening removes intermediate /Pages nodes. + if ( (warn_skipped_keys) && (cur_pages.hasKey("/Parent")) ) + { + QTC::TC("qpdf", "QPDF unknown key not inherited"); + setLastObjectDescription("Pages object", + cur_pages.getObjectID(), + cur_pages.getGeneration()); + warn(QPDFExc(qpdf_e_pages, this->file->getName(), + this->last_object_description, 0, + "Unknown key " + key + " in /Pages object" + " is being discarded as a result of" + " flattening the /Pages tree")); + } + } + } + + // Visit descendant nodes. + QPDFObjectHandle kids = cur_pages.getKey("/Kids"); + int n = kids.getArrayNItems(); + for (int i = 0; i < n; ++i) + { + pushInheritedAttributesToPageInternal( + kids.getArrayItem(i), key_ancestors, pages, + allow_changes, warn_skipped_keys); + } + + // For each inheritable key, pop the stack. If the stack + // becomes empty, remove it from the map. That way, the + // invariant that the list of keys in key_ancestors is exactly + // those keys for which inheritable attributes are available. + + if (! inheritable_keys.empty()) + { + QTC::TC("qpdf", "QPDF opt inheritable keys"); + for (std::set::iterator iter = + inheritable_keys.begin(); + iter != inheritable_keys.end(); ++iter) + { + std::string const& key = (*iter); + key_ancestors[key].pop_back(); + if (key_ancestors[key].empty()) + { + QTC::TC("qpdf", "QPDF opt erase empty key ancestor"); + key_ancestors.erase(key); + } + } + } + else + { + QTC::TC("qpdf", "QPDF opt no inheritable keys"); + } + } + else if (type == "/Page") + { + // Add all available inheritable attributes not present in + // this object to this object. + for (std::map >::iterator + iter = key_ancestors.begin(); + iter != key_ancestors.end(); ++iter) + { + std::string const& key = (*iter).first; + if (! cur_pages.hasKey(key)) + { + QTC::TC("qpdf", "QPDF opt resource inherited"); + cur_pages.replaceKey(key, (*iter).second.back()); + } + else + { + QTC::TC("qpdf", "QPDF opt page resource hides ancestor"); + } + } + pages.push_back(cur_pages); + } + else + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + this->last_object_description, + this->file->getLastOffset(), + "invalid Type " + type + " in page tree"); + } +} + +void +QPDF::updateObjectMaps(ObjUser const& ou, QPDFObjectHandle oh) +{ + std::set visited; + updateObjectMapsInternal(ou, oh, visited, true); +} + +void +QPDF::updateObjectMapsInternal(ObjUser const& ou, QPDFObjectHandle oh, + std::set& visited, bool top) +{ + // Traverse the object tree from this point taking care to avoid + // crossing page boundaries. + + bool is_page_node = false; + + if (oh.isDictionary() && oh.hasKey("/Type")) + { + std::string type = oh.getKey("/Type").getName(); + if (type == "/Page") + { + is_page_node = true; + if (! top) + { + return; + } + } + } + + if (oh.isIndirect()) + { + ObjGen og(oh.getObjectID(), oh.getGeneration()); + if (visited.count(og)) + { + QTC::TC("qpdf", "QPDF opt loop detected"); + return; + } + this->obj_user_to_objects[ou].insert(og); + this->object_to_obj_users[og].insert(ou); + visited.insert(og); + } + + if (oh.isArray()) + { + int n = oh.getArrayNItems(); + for (int i = 0; i < n; ++i) + { + updateObjectMapsInternal(ou, oh.getArrayItem(i), visited, false); + } + } + else if (oh.isDictionary() || oh.isStream()) + { + QPDFObjectHandle dict = oh; + if (oh.isStream()) + { + dict = oh.getDict(); + } + + std::set keys = dict.getKeys(); + for (std::set::iterator iter = keys.begin(); + iter != keys.end(); ++iter) + { + std::string const& key = *iter; + if (is_page_node && (key == "/Thumb")) + { + // Traverse page thumbnail dictionaries as a special + // case. + updateObjectMaps(ObjUser(ObjUser::ou_thumb, ou.pageno), + dict.getKey(key)); + } + else if (is_page_node && (key == "/Parent")) + { + // Don't traverse back up the page tree + } + else + { + updateObjectMapsInternal(ou, dict.getKey(key), + visited, false); + } + } + } +} + +void +QPDF::filterCompressedObjects(std::map const& object_stream_data) +{ + if (object_stream_data.empty()) + { + return; + } + + // Transform object_to_obj_users and obj_user_to_objects so that + // they refer only to uncompressed objects. If something is a + // user of a compressed object, then it is really a user of the + // object stream that contains it. + + std::map > t_obj_user_to_objects; + std::map > t_object_to_obj_users; + + for (std::map >::iterator i1 = + this->obj_user_to_objects.begin(); + i1 != this->obj_user_to_objects.end(); ++i1) + { + ObjUser const& ou = (*i1).first; + std::set const& objects = (*i1).second; + for (std::set::const_iterator i2 = objects.begin(); + i2 != objects.end(); ++i2) + { + ObjGen const& og = (*i2); + std::map::const_iterator i3 = + object_stream_data.find(og.obj); + if (i3 == object_stream_data.end()) + { + t_obj_user_to_objects[ou].insert(og); + } + else + { + t_obj_user_to_objects[ou].insert(ObjGen((*i3).second, 0)); + } + } + } + + for (std::map >::iterator i1 = + this->object_to_obj_users.begin(); + i1 != this->object_to_obj_users.end(); ++i1) + { + ObjGen const& og = (*i1).first; + std::set const& objusers = (*i1).second; + for (std::set::const_iterator i2 = objusers.begin(); + i2 != objusers.end(); ++i2) + { + ObjUser const& ou = (*i2); + std::map::const_iterator i3 = + object_stream_data.find(og.obj); + if (i3 == object_stream_data.end()) + { + t_object_to_obj_users[og].insert(ou); + } + else + { + t_object_to_obj_users[ObjGen((*i3).second, 0)].insert(ou); + } + } + } + + this->obj_user_to_objects = t_obj_user_to_objects; + this->object_to_obj_users = t_object_to_obj_users; +} diff --git a/libqpdf/QPDF_pages.cc b/libqpdf/QPDF_pages.cc new file mode 100644 index 0000000..36ca951 --- /dev/null +++ b/libqpdf/QPDF_pages.cc @@ -0,0 +1,272 @@ +#include + +#include + +#include +#include +#include + +// In support of page manipulation APIs, these methods internally +// maintain state about pages in a pair of data structures: all_pages, +// which is a vector of page objects, and pageobj_to_pages_pos, which +// maps a page object to its position in the all_pages array. +// Unfortunately, the getAllPages() method returns a const reference +// to all_pages and has been in the public API long before the +// introduction of mutation APIs, so we're pretty much stuck with it. +// Anyway, there are lots of calls to it in the library, so the +// efficiency of having it cached is probably worth keeping it. + +// The goal of this code is to ensure that the all_pages vector, which +// users may have a reference to, and the pageobj_to_pages_pos map, +// which users will not have access to, remain consistent outside of +// any call to the library. As long as users only touch the /Pages +// structure through page-specific API calls, they never have to worry +// about anything, and this will also stay consistent. If a user +// touches anything about the /Pages structure outside of these calls +// (such as by directly looking up and manipulating the underlying +// objects), they can call updatePagesCache() to bring things back in +// sync. + +// If the user doesn't ever use the page manipulation APIs, then qpdf +// leaves the /Pages structure alone. If the user does use the APIs, +// then we push all inheritable objects down and flatten the /Pages +// tree. This makes it easier for us to keep /Pages, all_pages, and +// pageobj_to_pages_pos internally consistent at all times. + +// Responsibility for keeping all_pages, pageobj_to_pages_pos, and the +// Pages structure consistent should remain in as few places as +// possible. As of initial writing, only flattenPagesTree, +// insertPage, and removePage, along with methods they call, are +// concerned with it. Everything else goes through one of those +// methods. + +std::vector const& +QPDF::getAllPages() +{ + // Note that pushInheritedAttributesToPage may also be used to + // initialize this->all_pages. + if (this->all_pages.empty()) + { + getAllPagesInternal(getRoot().getKey("/Pages"), this->all_pages); + } + return this->all_pages; +} + +void +QPDF::getAllPagesInternal(QPDFObjectHandle cur_pages, + std::vector& result) +{ + std::string type = cur_pages.getKey("/Type").getName(); + if (type == "/Pages") + { + QPDFObjectHandle kids = cur_pages.getKey("/Kids"); + int n = kids.getArrayNItems(); + for (int i = 0; i < n; ++i) + { + getAllPagesInternal(kids.getArrayItem(i), result); + } + } + else if (type == "/Page") + { + result.push_back(cur_pages); + } + else + { + throw QPDFExc(qpdf_e_damaged_pdf, this->file->getName(), + this->last_object_description, + this->file->getLastOffset(), + "invalid Type " + type + " in page tree"); + } +} + +void +QPDF::updateAllPagesCache() +{ + // Force regeneration of the pages cache. We force immediate + // recalculation of all_pages since users may have references to + // it that they got from calls to getAllPages(). We can defer + // recalculation of pageobj_to_pages_pos until needed. + QTC::TC("qpdf", "QPDF updateAllPagesCache"); + this->all_pages.clear(); + this->pageobj_to_pages_pos.clear(); + this->pushed_inherited_attributes_to_pages = false; + getAllPages(); +} + +void +QPDF::flattenPagesTree() +{ + // If not already done, flatten the /Pages structure and + // initialize pageobj_to_pages_pos. + + if (! this->pageobj_to_pages_pos.empty()) + { + return; + } + + // Push inherited objects down to the /Page level. As a side + // effect this->all_pages will also be generated. + pushInheritedAttributesToPage(true, true); + + QPDFObjectHandle pages = getRoot().getKey("/Pages"); + + int const len = (int)this->all_pages.size(); + for (int pos = 0; pos < len; ++pos) + { + // populate pageobj_to_pages_pos and fix parent pointer + insertPageobjToPage(this->all_pages[pos], pos, true); + this->all_pages[pos].replaceKey("/Parent", pages); + } + + pages.replaceKey("/Kids", QPDFObjectHandle::newArray(this->all_pages)); + // /Count has not changed + assert(pages.getKey("/Count").getIntValue() == len); +} + +void +QPDF::insertPageobjToPage(QPDFObjectHandle const& obj, int pos, + bool check_duplicate) +{ + ObjGen og(obj.getObjectID(), obj.getGeneration()); + if (check_duplicate) + { + if (! this->pageobj_to_pages_pos.insert(std::make_pair(og, pos)).second) + { + QTC::TC("qpdf", "QPDF duplicate page reference"); + setLastObjectDescription("page " + QUtil::int_to_string(pos) + + " (numbered from zero)", + og.obj, og.gen); + throw QPDFExc(qpdf_e_pages, this->file->getName(), + this->last_object_description, 0, + "duplicate page reference found;" + " this would cause loss of data"); + } + } + else + { + this->pageobj_to_pages_pos[og] = pos; + } +} + +void +QPDF::insertPage(QPDFObjectHandle newpage, int pos) +{ + // pos is numbered from 0, so pos = 0 inserts at the beginning and + // pos = npages adds to the end. + + flattenPagesTree(); + newpage.assertPageObject(); + + if (! newpage.isIndirect()) + { + QTC::TC("qpdf", "QPDF insert non-indirect page"); + newpage = this->makeIndirectObject(newpage); + } + else if (newpage.getOwningQPDF() != this) + { + QTC::TC("qpdf", "QPDF insert foreign page"); + newpage.getOwningQPDF()->pushInheritedAttributesToPage(); + newpage = this->copyForeignObject(newpage, true); + } + else + { + QTC::TC("qpdf", "QPDF insert indirect page"); + } + + QTC::TC("qpdf", "QPDF insert page", + (pos == 0) ? 0 : // insert at beginning + (pos == ((int)this->all_pages.size())) ? 1 : // insert at end + 2); // insert in middle + + QPDFObjectHandle pages = getRoot().getKey("/Pages"); + QPDFObjectHandle kids = pages.getKey("/Kids"); + assert ((pos >= 0) && (pos <= (int)this->all_pages.size())); + + newpage.replaceKey("/Parent", pages); + kids.insertItem(pos, newpage); + int npages = kids.getArrayNItems(); + pages.replaceKey("/Count", QPDFObjectHandle::newInteger(npages)); + this->all_pages.insert(this->all_pages.begin() + pos, newpage); + assert((int)this->all_pages.size() == npages); + for (int i = pos + 1; i < npages; ++i) + { + insertPageobjToPage(this->all_pages[i], i, false); + } + insertPageobjToPage(newpage, pos, true); + assert((int)this->pageobj_to_pages_pos.size() == npages); +} + +void +QPDF::removePage(QPDFObjectHandle page) +{ + int pos = findPage(page); // also ensures flat /Pages + QTC::TC("qpdf", "QPDF remove page", + (pos == 0) ? 0 : // remove at beginning + (pos == ((int)this->all_pages.size() - 1)) ? 1 : // remove at end + 2); // remove in middle + + QPDFObjectHandle pages = getRoot().getKey("/Pages"); + QPDFObjectHandle kids = pages.getKey("/Kids"); + + kids.eraseItem(pos); + int npages = kids.getArrayNItems(); + pages.replaceKey("/Count", QPDFObjectHandle::newInteger(npages)); + this->all_pages.erase(this->all_pages.begin() + pos); + assert((int)this->all_pages.size() == npages); + this->pageobj_to_pages_pos.erase( + ObjGen(page.getObjectID(), page.getGeneration())); + assert((int)this->pageobj_to_pages_pos.size() == npages); + for (int i = pos; i < npages; ++i) + { + insertPageobjToPage(this->all_pages[i], i, false); + } +} + +void +QPDF::addPageAt(QPDFObjectHandle newpage, bool before, + QPDFObjectHandle refpage) +{ + int refpos = findPage(refpage); + if (! before) + { + ++refpos; + } + insertPage(newpage, refpos); +} + +void +QPDF::addPage(QPDFObjectHandle newpage, bool first) +{ + if (first) + { + insertPage(newpage, 0); + } + else + { + insertPage(newpage, + getRoot().getKey("/Pages").getKey("/Count").getIntValue()); + } +} + +int +QPDF::findPage(QPDFObjectHandle& page) +{ + page.assertPageObject(); + return findPage(page.getObjectID(), page.getGeneration()); +} + +int +QPDF::findPage(int objid, int generation) +{ + flattenPagesTree(); + std::map::iterator it = + this->pageobj_to_pages_pos.find(ObjGen(objid, generation)); + if (it == this->pageobj_to_pages_pos.end()) + { + setLastObjectDescription("page object", objid, generation); + throw QPDFExc(qpdf_e_pages, this->file->getName(), + this->last_object_description, 0, + "page object not referenced in /Pages tree"); + } + return (*it).second; +} diff --git a/libqpdf/QTC.cc b/libqpdf/QTC.cc new file mode 100644 index 0000000..d0f3e11 --- /dev/null +++ b/libqpdf/QTC.cc @@ -0,0 +1,45 @@ +#include + +#include +#include +#include + +static bool tc_active(char const* const scope) +{ + std::string value; + return (QUtil::get_env("TC_SCOPE", &value) && (value == scope)); +} + +void QTC::TC(char const* const scope, char const* const ccase, int n) +{ + static std::set > cache; + + if (! tc_active(scope)) + { + return; + } + + std::string filename; +#ifdef _WIN32 +# define TC_ENV "TC_WIN_FILENAME" +#else +# define TC_ENV "TC_FILENAME" +#endif + if (! QUtil::get_env(TC_ENV, &filename)) + { + return; + } +#undef TC_ENV + + if (cache.count(std::make_pair(ccase, n))) + { + return; + } + cache.insert(std::make_pair(ccase, n)); + + FILE* tc = + QUtil::fopen_wrapper("open test coverage file (" + filename + ")", + fopen(filename.c_str(), "ab")); + fprintf(tc, "%s %d\n", ccase, n); + fclose(tc); +} diff --git a/libqpdf/QUtil.cc b/libqpdf/QUtil.cc new file mode 100644 index 0000000..2014308 --- /dev/null +++ b/libqpdf/QUtil.cc @@ -0,0 +1,335 @@ +// Include qpdf-config.h first so off_t is guaranteed to have the right size. +#include + +#include + +#include +#include +#include +#include +#include +#include +#ifdef _WIN32 +#include +#include +#include +#else +#include +#endif + +std::string +QUtil::int_to_string(long long num, int fullpad) +{ + // This routine will need to be recompiled if an int can be longer than + // 49 digits. + char t[50]; + + // -2 or -1 to leave space for the possible negative sign and for NUL... + if (abs(fullpad) > (int)sizeof(t) - ((num < 0)?2:1)) + { + throw std::logic_error("Util::int_to_string has been called with " + "a padding value greater than its internal " + "limit"); + } + +#ifdef HAVE_PRINTF_LL +# define PRINTF_LL "ll" +#else +# define PRINTF_LL "l" +#endif + if (fullpad) + { + sprintf(t, "%0*" PRINTF_LL "d", fullpad, num); + } + else + { + sprintf(t, "%" PRINTF_LL "d", num); + } +#undef PRINTF_LL + + return std::string(t); +} + +std::string +QUtil::double_to_string(double num, int decimal_places) +{ + // This routine will need to be recompiled if a double can be longer than + // 99 digits. + char t[100]; + + std::string lhs = int_to_string((int)num); + + // lhs.length() gives us the length of the part on the right hand + // side of the dot + 1 for the dot + decimal_places: total size of + // the required string. -1 on the sizeof side to allow for NUL at + // the end. + // + // If decimal_places <= 0, it is as if no precision was provided + // so trust the buffer is big enough. The following test will + // always pass in those cases. + if (decimal_places + 1 + (int)lhs.length() > (int)sizeof(t) - 1) + { + throw std::logic_error("Util::double_to_string has been called with " + "a number and a decimal places specification " + "that would break an internal limit"); + } + + if (decimal_places) + { + sprintf(t, "%.*f", decimal_places, num); + } + else + { + sprintf(t, "%f", num); + } + return std::string(t); +} + +long long +QUtil::string_to_ll(char const* str) +{ +#ifdef _MSC_VER + return _strtoi64(str, 0, 10); +#else + return strtoll(str, 0, 10); +#endif +} + +void +QUtil::throw_system_error(std::string const& description) +{ + throw std::runtime_error(description + ": " + strerror(errno)); +} + +int +QUtil::os_wrapper(std::string const& description, int status) +{ + if (status == -1) + { + throw_system_error(description); + } + return status; +} + +FILE* +QUtil::fopen_wrapper(std::string const& description, FILE* f) +{ + if (f == 0) + { + throw_system_error(description); + } + return f; +} + +int +QUtil::seek(FILE* stream, qpdf_offset_t offset, int whence) +{ +#if HAVE_FSEEKO + return fseeko(stream, (off_t)offset, whence); +#elif HAVE_FSEEKO64 + return fseeko64(stream, offset, whence); +#else +# ifdef _MSC_VER + return _fseeki64(stream, offset, whence); +# else + return fseek(stream, (long)offset, whence); +# endif +#endif +} + +qpdf_offset_t +QUtil::tell(FILE* stream) +{ +#if HAVE_FSEEKO + return (qpdf_offset_t)ftello(stream); +#elif HAVE_FSEEKO64 + return (qpdf_offset_t)ftello64(stream); +#else +# ifdef _MSC_VER + return _ftelli64(stream); +# else + return (qpdf_offset_t)ftell(stream); +# endif +#endif +} + +char* +QUtil::copy_string(std::string const& str) +{ + char* result = new char[str.length() + 1]; + // Use memcpy in case string contains nulls + result[str.length()] = '\0'; + memcpy(result, str.c_str(), str.length()); + return result; +} + +void +QUtil::binary_stdout() +{ +#ifdef _WIN32 + _setmode(_fileno(stdout), _O_BINARY); +#endif +} + +void +QUtil::binary_stdin() +{ +#ifdef _WIN32 + _setmode(_fileno(stdin), _O_BINARY); +#endif +} + +void +QUtil::setLineBuf(FILE* f) +{ +#ifndef _WIN32 + setvbuf(f, (char *) NULL, _IOLBF, 0); +#endif +} + +char* +QUtil::getWhoami(char* argv0) +{ +#ifdef _WIN32 + char pathsep = '\\'; +#else + char pathsep = '/'; +#endif + char* whoami = 0; + if ((whoami = strrchr(argv0, pathsep)) == NULL) + { + whoami = argv0; + } + else + { + ++whoami; + } +#ifdef _WIN32 + if ((strlen(whoami) > 4) && + (strcmp(whoami + strlen(whoami) - 4, ".exe") == 0)) + { + whoami[strlen(whoami) - 4] = '\0'; + } +#endif + return whoami; +} + +bool +QUtil::get_env(std::string const& var, std::string* value) +{ + // This was basically ripped out of wxWindows. +#ifdef _WIN32 + // first get the size of the buffer + DWORD len = ::GetEnvironmentVariable(var.c_str(), NULL, 0); + if (len == 0) + { + // this means that there is no such variable + return false; + } + + if (value) + { + char* t = new char[len + 1]; + ::GetEnvironmentVariable(var.c_str(), t, len); + *value = t; + delete [] t; + } + + return true; +#else + char* p = getenv(var.c_str()); + if (p == 0) + { + return false; + } + if (value) + { + *value = p; + } + + return true; +#endif +} + +time_t +QUtil::get_current_time() +{ +#ifdef _WIN32 + // The procedure to get local time at this resolution comes from + // the Microsoft documentation. It says to convert a SYSTEMTIME + // to a FILETIME, and to copy the FILETIME to a ULARGE_INTEGER. + // The resulting number is the number of 100-nanosecond intervals + // between January 1, 1601 and now. POSIX threads wants a time + // based on January 1, 1970, so we adjust by subtracting the + // number of seconds in that time period from the result we get + // here. + SYSTEMTIME sysnow; + GetSystemTime(&sysnow); + FILETIME filenow; + SystemTimeToFileTime(&sysnow, &filenow); + ULARGE_INTEGER uinow; + uinow.LowPart = filenow.dwLowDateTime; + uinow.HighPart = filenow.dwHighDateTime; + ULONGLONG now = uinow.QuadPart; + return ((now / 10000000LL) - 11644473600LL); +#else + return time(0); +#endif +} + +std::string +QUtil::toUTF8(unsigned long uval) +{ + std::string result; + + // A UTF-8 encoding of a Unicode value is a single byte for + // Unicode values <= 127. For larger values, the first byte of + // the UTF-8 encoding has '1' as each of its n highest bits and + // '0' for its (n+1)th highest bit where n is the total number of + // bytes required. Subsequent bytes start with '10' and have the + // remaining 6 bits free for encoding. For example, an 11-bit + // Unicode value can be stored in two bytes where the first is + // 110zzzzz, the second is 10zzzzzz, and the z's represent the + // remaining bits. + + if (uval > 0x7fffffff) + { + throw std::runtime_error("bounds error in QUtil::toUTF8"); + } + else if (uval < 128) + { + result += (char)(uval); + } + else + { + unsigned char bytes[7]; + bytes[6] = '\0'; + unsigned char* cur_byte = &bytes[5]; + + // maximum value that will fit in the current number of bytes + unsigned char maxval = 0x3f; // six bits + + while (uval > maxval) + { + // Assign low six bits plus 10000000 to lowest unused + // byte position, then shift + *cur_byte = (unsigned char) (0x80 + (uval & 0x3f)); + uval >>= 6; + // Maximum that will fit in high byte now shrinks by one bit + maxval >>= 1; + // Slide to the left one byte + --cur_byte; + if (cur_byte < bytes) + { + throw std::logic_error("QUtil::toUTF8: overflow error"); + } + } + // If maxval is k bits long, the high (7 - k) bits of the + // resulting byte must be high. + *cur_byte = (unsigned char)((0xff - (1 + (maxval << 1))) + uval); + + result += (char*)cur_byte; + } + + return result; +} diff --git a/libqpdf/RC4.cc b/libqpdf/RC4.cc new file mode 100644 index 0000000..b992937 --- /dev/null +++ b/libqpdf/RC4.cc @@ -0,0 +1,55 @@ +#include + +#include + +static void swap_byte(unsigned char &a, unsigned char &b) +{ + unsigned char t; + + t = a; + a = b; + b = t; +} + +RC4::RC4(unsigned char const* key_data, int key_len) +{ + if (key_len == -1) + { + key_len = (int)strlen((char*)key_data); + } + + for (int i = 0; i < 256; ++i) + { + key.state[i] = i; + } + key.x = 0; + key.y = 0; + + int i1 = 0; + int i2 = 0; + for (int i = 0; i < 256; ++i) + { + i2 = (key_data[i1] + key.state[i] + i2) % 256; + swap_byte(key.state[i], key.state[i2]); + i1 = (i1 + 1) % key_len; + } +} + +void +RC4::process(unsigned char *in_data, int len, unsigned char* out_data) +{ + if (out_data == 0) + { + // Convert in place + out_data = in_data; + } + + for (int i = 0; i < len; ++i) + { + key.x = (key.x + 1) % 256; + key.y = (key.state[key.x] + key.y) % 256; + swap_byte(key.state[key.x], key.state[key.y]); + int xor_index = (key.state[key.x] + key.state[key.y]) % 256; + out_data[i] = in_data[i] ^ key.state[xor_index]; + } +} diff --git a/libqpdf/bits.icc b/libqpdf/bits.icc new file mode 100644 index 0000000..bcd7dd8 --- /dev/null +++ b/libqpdf/bits.icc @@ -0,0 +1,149 @@ + +#ifndef __BITS_CC__ +#define __BITS_CC__ + +#include +#include +#include +#include + +// These functions may be run at places where the function call +// overhead from test coverage testing would be too high. Therefore, +// we make the test coverage cases conditional upon a preprocessor +// symbol. BitStream.cc includes this file without defining the +// symbol, and the specially designed test code that fully exercises +// this code includes with the symbol defined. + +#ifdef BITS_READ +static unsigned long long +read_bits(unsigned char const*& p, unsigned int& bit_offset, + unsigned int& bits_available, unsigned int bits_wanted) +{ + // View p as a stream of bits: + + // 76543210 76543210 .... + + // bit_offset is the bit number within the first byte that marks + // the first bit that we would read. + + if (bits_wanted > bits_available) + { + throw std::length_error("overflow reading bit stream"); + } + if (bits_wanted > 32) + { + throw std::out_of_range("read_bits: too many bits requested"); + } + + unsigned long result = 0; +#ifdef BITS_TESTING + if (bits_wanted == 0) + { + QTC::TC("libtests", "bits zero bits wanted"); + } +#endif + while (bits_wanted > 0) + { + // Grab bits from the first byte clearing anything before + // bit_offset. + unsigned char byte = *p & ((1 << (bit_offset + 1)) - 1); + + // There are bit_offset + 1 bits available in the first byte. + unsigned int to_copy = std::min(bits_wanted, bit_offset + 1); + unsigned int leftover = (bit_offset + 1) - to_copy; + +#ifdef BITS_TESTING + QTC::TC("libtests", "bits bit_offset", + ((bit_offset == 0) ? 0 : + (bit_offset == 7) ? 1 : + 2)); + QTC::TC("libtests", "bits leftover", (leftover > 0) ? 1 : 0); +#endif + + // Right shift so that all the bits we want are right justified. + byte >>= leftover; + + // Copy the bits into result + result <<= to_copy; + result |= byte; + + // Update pointers + if (leftover) + { + bit_offset = leftover - 1; + } + else + { + bit_offset = 7; + ++p; + } + bits_wanted -= to_copy; + bits_available -= to_copy; + +#ifdef BITS_TESTING + QTC::TC("libtests", "bits iterations", + ((bits_wanted > 8) ? 0 : + (bits_wanted > 0) ? 1 : + 2)); +#endif + } + + return result; +} +#endif + +#ifdef BITS_WRITE +static void +write_bits(unsigned char& ch, unsigned int& bit_offset, + unsigned long long val, unsigned int bits, Pipeline* pipeline) +{ + if (bits > 32) + { + throw std::out_of_range("write_bits: too many bits requested"); + } + + // bit_offset + 1 is the number of bits left in ch +#ifdef BITS_TESTING + if (bits == 0) + { + QTC::TC("libtests", "bits write zero bits"); + } +#endif + while (bits > 0) + { + int bits_to_write = std::min(bits, bit_offset + 1); + unsigned char newval = + (val >> (bits - bits_to_write)) & ((1 << bits_to_write) - 1); + int bits_left_in_ch = bit_offset + 1 - bits_to_write; + newval <<= bits_left_in_ch; + ch |= newval; + if (bits_left_in_ch == 0) + { +#ifdef BITS_TESTING + QTC::TC("libtests", "bits write pipeline"); +#endif + pipeline->write(&ch, 1); + bit_offset = 7; + ch = 0; + } + else + { +#ifdef BITS_TESTING + QTC::TC("libtests", "bits write leftover"); +#endif + bit_offset -= bits_to_write; + } + bits -= bits_to_write; +#ifdef BITS_TESTING + QTC::TC("libtests", "bits write iterations", + ((bits > 8) ? 0 : + (bits > 0) ? 1 : + 2)); +#endif + } + +} +#endif + + +#endif // __BITS_CC__ diff --git a/libqpdf/build.mk b/libqpdf/build.mk new file mode 100644 index 0000000..6debf10 --- /dev/null +++ b/libqpdf/build.mk @@ -0,0 +1,83 @@ +TARGETS_libqpdf = libqpdf/$(OUTPUT_DIR)/$(call libname,qpdf) + +INCLUDES_libqpdf = include libqpdf +LDFLAGS_libqpdf = -Llibqpdf/$(OUTPUT_DIR) +LIBS_libqpdf = -lqpdf + +SRCS_libqpdf = \ + libqpdf/BitStream.cc \ + libqpdf/BitWriter.cc \ + libqpdf/Buffer.cc \ + libqpdf/BufferInputSource.cc \ + libqpdf/FileInputSource.cc \ + libqpdf/InputSource.cc \ + libqpdf/MD5.cc \ + libqpdf/PCRE.cc \ + libqpdf/Pipeline.cc \ + libqpdf/Pl_AES_PDF.cc \ + libqpdf/Pl_ASCII85Decoder.cc \ + libqpdf/Pl_ASCIIHexDecoder.cc \ + libqpdf/Pl_Buffer.cc \ + libqpdf/Pl_Concatenate.cc \ + libqpdf/Pl_Count.cc \ + libqpdf/Pl_Discard.cc \ + libqpdf/Pl_Flate.cc \ + libqpdf/Pl_LZWDecoder.cc \ + libqpdf/Pl_MD5.cc \ + libqpdf/Pl_PNGFilter.cc \ + libqpdf/Pl_QPDFTokenizer.cc \ + libqpdf/Pl_RC4.cc \ + libqpdf/Pl_StdioFile.cc \ + libqpdf/QPDF.cc \ + libqpdf/QPDFExc.cc \ + libqpdf/QPDFObject.cc \ + libqpdf/QPDFObjectHandle.cc \ + libqpdf/QPDFTokenizer.cc \ + libqpdf/QPDFWriter.cc \ + libqpdf/QPDFXRefEntry.cc \ + libqpdf/QPDF_Array.cc \ + libqpdf/QPDF_Bool.cc \ + libqpdf/QPDF_Dictionary.cc \ + libqpdf/QPDF_Integer.cc \ + libqpdf/QPDF_Name.cc \ + libqpdf/QPDF_Null.cc \ + libqpdf/QPDF_Real.cc \ + libqpdf/QPDF_Reserved.cc \ + libqpdf/QPDF_Stream.cc \ + libqpdf/QPDF_String.cc \ + libqpdf/QPDF_encryption.cc \ + libqpdf/QPDF_linearization.cc \ + libqpdf/QPDF_optimization.cc \ + libqpdf/QPDF_pages.cc \ + libqpdf/QTC.cc \ + libqpdf/QUtil.cc \ + libqpdf/RC4.cc \ + libqpdf/qpdf-c.cc \ + libqpdf/rijndael.cc + +# ----- + +OBJS_libqpdf = $(call src_to_lobj,$(SRCS_libqpdf)) + +ifeq ($(GENDEPS),1) +-include $(call lobj_to_dep,$(OBJS_libqpdf)) +endif + +$(OBJS_libqpdf): libqpdf/$(OUTPUT_DIR)/%.$(LOBJ): libqpdf/%.cc + $(call libcompile,$<,$(INCLUDES_libqpdf)) + +# Last three arguments to makelib are CURRENT,REVISION,AGE. +# +# * If any interfaces have been removed or changed, we are not binary +# compatible. Increment CURRENT, and set AGE and REVISION to 0. +# Also update libqpdf.map, changing the numeric portion to match +# CURRENT. +# +# * Otherwise, if any interfaces have been added since the last +# public release, then increment CURRENT and AGE, and set REVISION +# to 0. +# +# * Otherwise, increment REVISION + +$(TARGETS_libqpdf): $(OBJS_libqpdf) + $(call makelib,$(OBJS_libqpdf),$@,$(LDFLAGS),$(LIBS),9,0,1) diff --git a/libqpdf/qpdf-c.cc b/libqpdf/qpdf-c.cc new file mode 100644 index 0000000..0312ae5 --- /dev/null +++ b/libqpdf/qpdf-c.cc @@ -0,0 +1,593 @@ +#include + +#include +#include +#include +#include + +#include +#include +#include +#include + +struct _qpdf_error +{ + PointerHolder exc; +}; + +struct _qpdf_data +{ + _qpdf_data(); + ~_qpdf_data(); + + QPDF* qpdf; + QPDFWriter* qpdf_writer; + + PointerHolder error; + _qpdf_error tmp_error; + std::list warnings; + std::string tmp_string; + + // Parameters for functions we call + char const* filename; // or description + char const* buffer; + unsigned long long size; + char const* password; + bool write_memory; + Buffer* output_buffer; +}; + +_qpdf_data::_qpdf_data() : + qpdf(0), + qpdf_writer(0), + write_memory(false), + output_buffer(0) +{ +} + +_qpdf_data::~_qpdf_data() +{ + delete qpdf_writer; + delete qpdf; + delete output_buffer; +} + +// must set qpdf->filename and qpdf->password +static void call_read(qpdf_data qpdf) +{ + qpdf->qpdf->processFile(qpdf->filename, qpdf->password); +} + +// must set qpdf->filename, qpdf->buffer, qpdf->size, and qpdf->password +static void call_read_memory(qpdf_data qpdf) +{ + qpdf->qpdf->processMemoryFile(qpdf->filename, qpdf->buffer, + qpdf->size, qpdf->password); +} + +// must set qpdf->filename +static void call_init_write(qpdf_data qpdf) +{ + qpdf->qpdf_writer = new QPDFWriter(*(qpdf->qpdf), qpdf->filename); +} + +static void call_init_write_memory(qpdf_data qpdf) +{ + qpdf->qpdf_writer = new QPDFWriter(*(qpdf->qpdf)); + qpdf->qpdf_writer->setOutputMemory(); +} + +static void call_write(qpdf_data qpdf) +{ + qpdf->qpdf_writer->write(); +} + +static QPDF_ERROR_CODE trap_errors(qpdf_data qpdf, void (*fn)(qpdf_data)) +{ + QPDF_ERROR_CODE status = QPDF_SUCCESS; + try + { + fn(qpdf); + } + catch (QPDFExc& e) + { + qpdf->error = new QPDFExc(e); + status |= QPDF_ERRORS; + } + catch (std::runtime_error& e) + { + qpdf->error = new QPDFExc(qpdf_e_system, "", "", 0, e.what()); + status |= QPDF_ERRORS; + } + catch (std::exception& e) + { + qpdf->error = new QPDFExc(qpdf_e_internal, "", "", 0, e.what()); + status |= QPDF_ERRORS; + } + + if (qpdf_more_warnings(qpdf)) + { + status |= QPDF_WARNINGS; + } + return status; +} + +char const* qpdf_get_qpdf_version() +{ + QTC::TC("qpdf", "qpdf-c called qpdf_get_qpdf_version"); + return QPDF::QPDFVersion().c_str(); +} + +qpdf_data qpdf_init() +{ + QTC::TC("qpdf", "qpdf-c called qpdf_init"); + qpdf_data qpdf = new _qpdf_data(); + qpdf->qpdf = new QPDF(); + return qpdf; +} + +void qpdf_cleanup(qpdf_data* qpdf) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_cleanup"); + delete *qpdf; + *qpdf = 0; +} + +QPDF_BOOL qpdf_more_warnings(qpdf_data qpdf) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_more_warnings"); + + if (qpdf->warnings.empty()) + { + std::vector w = qpdf->qpdf->getWarnings(); + if (! w.empty()) + { + qpdf->warnings.assign(w.begin(), w.end()); + } + } + if (qpdf->warnings.empty()) + { + return QPDF_FALSE; + } + else + { + return QPDF_TRUE; + } +} + +QPDF_BOOL qpdf_has_error(qpdf_data qpdf) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_has_error"); + return (qpdf->error.getPointer() ? QPDF_TRUE : QPDF_FALSE); +} + +qpdf_error qpdf_get_error(qpdf_data qpdf) +{ + if (qpdf->error.getPointer()) + { + qpdf->tmp_error.exc = qpdf->error; + qpdf->error = 0; + QTC::TC("qpdf", "qpdf-c qpdf_get_error returned error"); + return &qpdf->tmp_error; + } + else + { + return 0; + } +} + +qpdf_error qpdf_next_warning(qpdf_data qpdf) +{ + if (qpdf_more_warnings(qpdf)) + { + qpdf->tmp_error.exc = new QPDFExc(qpdf->warnings.front()); + qpdf->warnings.pop_front(); + QTC::TC("qpdf", "qpdf-c qpdf_next_warning returned warning"); + return &qpdf->tmp_error; + } + else + { + return 0; + } +} + +char const* qpdf_get_error_full_text(qpdf_data qpdf, qpdf_error e) +{ + if (e == 0) + { + return ""; + } + return e->exc->what(); +} + +enum qpdf_error_code_e qpdf_get_error_code(qpdf_data qpdf, qpdf_error e) +{ + if (e == 0) + { + return qpdf_e_success; + } + return e->exc->getErrorCode(); +} + +char const* qpdf_get_error_filename(qpdf_data qpdf, qpdf_error e) +{ + if (e == 0) + { + return ""; + } + return e->exc->getFilename().c_str(); +} + +unsigned long long qpdf_get_error_file_position(qpdf_data qpdf, qpdf_error e) +{ + if (e == 0) + { + return 0; + } + return e->exc->getFilePosition(); +} + +char const* qpdf_get_error_message_detail(qpdf_data qpdf, qpdf_error e) +{ + if (e == 0) + { + return ""; + } + return e->exc->getMessageDetail().c_str(); +} + +void qpdf_set_suppress_warnings(qpdf_data qpdf, QPDF_BOOL value) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_set_suppress_warnings"); + qpdf->qpdf->setSuppressWarnings(value); +} + +void qpdf_set_ignore_xref_streams(qpdf_data qpdf, QPDF_BOOL value) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_set_ignore_xref_streams"); + qpdf->qpdf->setIgnoreXRefStreams(value); +} + +void qpdf_set_attempt_recovery(qpdf_data qpdf, QPDF_BOOL value) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_set_attempt_recovery"); + qpdf->qpdf->setAttemptRecovery(value); +} + +QPDF_ERROR_CODE qpdf_read(qpdf_data qpdf, char const* filename, + char const* password) +{ + QPDF_ERROR_CODE status = QPDF_SUCCESS; + qpdf->filename = filename; + qpdf->password = password; + status = trap_errors(qpdf, &call_read); + QTC::TC("qpdf", "qpdf-c called qpdf_read", status); + return status; +} + +QPDF_ERROR_CODE qpdf_read_memory(qpdf_data qpdf, + char const* description, + char const* buffer, + unsigned long long size, + char const* password) +{ + QPDF_ERROR_CODE status = QPDF_SUCCESS; + qpdf->filename = description; + qpdf->buffer = buffer; + qpdf->size = size; + qpdf->password = password; + status = trap_errors(qpdf, &call_read_memory); + QTC::TC("qpdf", "qpdf-c called qpdf_read_memory", status); + return status; +} + +char const* qpdf_get_pdf_version(qpdf_data qpdf) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_get_pdf_version"); + qpdf->tmp_string = qpdf->qpdf->getPDFVersion(); + return qpdf->tmp_string.c_str(); +} + +char const* qpdf_get_user_password(qpdf_data qpdf) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_get_user_password"); + qpdf->tmp_string = qpdf->qpdf->getTrimmedUserPassword(); + return qpdf->tmp_string.c_str(); +} + +char const* qpdf_get_info_key(qpdf_data qpdf, char const* key) +{ + char const* result = 0; + QPDFObjectHandle trailer = qpdf->qpdf->getTrailer(); + if (trailer.hasKey("/Info")) + { + QPDFObjectHandle info = trailer.getKey("/Info"); + if (info.hasKey(key)) + { + QPDFObjectHandle value = info.getKey(key); + if (value.isString()) + { + qpdf->tmp_string = value.getStringValue(); + result = qpdf->tmp_string.c_str(); + } + } + } + QTC::TC("qpdf", "qpdf-c get_info_key", (result == 0 ? 0 : 1)); + return result; +} + +void qpdf_set_info_key(qpdf_data qpdf, char const* key, char const* value) +{ + if ((key == 0) || (std::strlen(key) == 0) || (key[0] != '/')) + { + return; + } + QPDFObjectHandle value_object; + if (value) + { + QTC::TC("qpdf", "qpdf-c set_info_key to value"); + value_object = QPDFObjectHandle::newString(value); + } + else + { + QTC::TC("qpdf", "qpdf-c set_info_key to null"); + value_object = QPDFObjectHandle::newNull(); + } + + QPDFObjectHandle trailer = qpdf->qpdf->getTrailer(); + if (! trailer.hasKey("/Info")) + { + QTC::TC("qpdf", "qpdf-c add info to trailer"); + trailer.replaceKey( + "/Info", + qpdf->qpdf->makeIndirectObject(QPDFObjectHandle::newDictionary())); + } + else + { + QTC::TC("qpdf", "qpdf-c set-info-key use existing info"); + } + + QPDFObjectHandle info = trailer.getKey("/Info"); + info.replaceOrRemoveKey(key, value_object); +} + +QPDF_BOOL qpdf_is_linearized(qpdf_data qpdf) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_is_linearized"); + return (qpdf->qpdf->isLinearized() ? QPDF_TRUE : QPDF_FALSE); +} + +QPDF_BOOL qpdf_is_encrypted(qpdf_data qpdf) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_is_encrypted"); + return (qpdf->qpdf->isEncrypted() ? QPDF_TRUE : QPDF_FALSE); +} + +QPDF_BOOL qpdf_allow_accessibility(qpdf_data qpdf) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_allow_accessibility"); + return qpdf->qpdf->allowAccessibility(); +} + +QPDF_BOOL qpdf_allow_extract_all(qpdf_data qpdf) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_allow_extract_all"); + return qpdf->qpdf->allowExtractAll(); +} + +QPDF_BOOL qpdf_allow_print_low_res(qpdf_data qpdf) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_allow_print_low_res"); + return qpdf->qpdf->allowPrintLowRes(); +} + +QPDF_BOOL qpdf_allow_print_high_res(qpdf_data qpdf) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_allow_print_high_res"); + return qpdf->qpdf->allowPrintHighRes(); +} + +QPDF_BOOL qpdf_allow_modify_assembly(qpdf_data qpdf) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_allow_modify_assembly"); + return qpdf->qpdf->allowModifyAssembly(); +} + +QPDF_BOOL qpdf_allow_modify_form(qpdf_data qpdf) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_allow_modify_form"); + return qpdf->qpdf->allowModifyForm(); +} + +QPDF_BOOL qpdf_allow_modify_annotation(qpdf_data qpdf) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_allow_modify_annotation"); + return qpdf->qpdf->allowModifyAnnotation(); +} + +QPDF_BOOL qpdf_allow_modify_other(qpdf_data qpdf) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_allow_modify_other"); + return qpdf->qpdf->allowModifyOther(); +} + +QPDF_BOOL qpdf_allow_modify_all(qpdf_data qpdf) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_allow_modify_all"); + return qpdf->qpdf->allowModifyAll(); +} + +static void qpdf_init_write_internal(qpdf_data qpdf) +{ + if (qpdf->qpdf_writer) + { + QTC::TC("qpdf", "qpdf-c called qpdf_init_write multiple times"); + delete qpdf->qpdf_writer; + qpdf->qpdf_writer = 0; + if (qpdf->output_buffer) + { + delete qpdf->output_buffer; + qpdf->output_buffer = 0; + qpdf->write_memory = false; + qpdf->filename = 0; + } + } +} + +QPDF_ERROR_CODE qpdf_init_write(qpdf_data qpdf, char const* filename) +{ + qpdf_init_write_internal(qpdf); + qpdf->filename = filename; + QPDF_ERROR_CODE status = trap_errors(qpdf, &call_init_write); + QTC::TC("qpdf", "qpdf-c called qpdf_init_write", status); + return status; +} + +QPDF_ERROR_CODE qpdf_init_write_memory(qpdf_data qpdf) +{ + qpdf_init_write_internal(qpdf); + QPDF_ERROR_CODE status = trap_errors(qpdf, &call_init_write_memory); + QTC::TC("qpdf", "qpdf-c called qpdf_init_write_memory"); + qpdf->write_memory = true; + return status; +} + +static void qpdf_get_buffer_internal(qpdf_data qpdf) +{ + if (qpdf->write_memory && (qpdf->output_buffer == 0)) + { + qpdf->output_buffer = qpdf->qpdf_writer->getBuffer(); + } +} + +size_t qpdf_get_buffer_length(qpdf_data qpdf) +{ + qpdf_get_buffer_internal(qpdf); + size_t result = 0; + if (qpdf->output_buffer) + { + result = qpdf->output_buffer->getSize(); + } + return result; +} + +unsigned char const* qpdf_get_buffer(qpdf_data qpdf) +{ + unsigned char const* result = 0; + qpdf_get_buffer_internal(qpdf); + if (qpdf->output_buffer) + { + result = qpdf->output_buffer->getBuffer(); + } + return result; +} + +void qpdf_set_object_stream_mode(qpdf_data qpdf, qpdf_object_stream_e mode) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_set_object_stream_mode"); + qpdf->qpdf_writer->setObjectStreamMode(mode); +} + +void qpdf_set_stream_data_mode(qpdf_data qpdf, qpdf_stream_data_e mode) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_set_stream_data_mode"); + qpdf->qpdf_writer->setStreamDataMode(mode); +} + +void qpdf_set_content_normalization(qpdf_data qpdf, QPDF_BOOL value) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_set_content_normalization"); + qpdf->qpdf_writer->setContentNormalization(value); +} + +void qpdf_set_qdf_mode(qpdf_data qpdf, QPDF_BOOL value) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_set_qdf_mode"); + qpdf->qpdf_writer->setQDFMode(value); +} + +void qpdf_set_static_ID(qpdf_data qpdf, QPDF_BOOL value) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_set_static_ID"); + qpdf->qpdf_writer->setStaticID(value); +} + +void qpdf_set_static_aes_IV(qpdf_data qpdf, QPDF_BOOL value) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_set_static_aes_IV"); + qpdf->qpdf_writer->setStaticAesIV(value); +} + +void qpdf_set_suppress_original_object_IDs( + qpdf_data qpdf, QPDF_BOOL value) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_set_suppress_original_object_IDs"); + qpdf->qpdf_writer->setSuppressOriginalObjectIDs(value); +} + +void qpdf_set_preserve_encryption(qpdf_data qpdf, QPDF_BOOL value) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_set_preserve_encryption"); + qpdf->qpdf_writer->setPreserveEncryption(value); +} + +void qpdf_set_r2_encryption_parameters( + qpdf_data qpdf, char const* user_password, char const* owner_password, + QPDF_BOOL allow_print, QPDF_BOOL allow_modify, + QPDF_BOOL allow_extract, QPDF_BOOL allow_annotate) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_set_r2_encryption_parameters"); + qpdf->qpdf_writer->setR2EncryptionParameters( + user_password, owner_password, + allow_print, allow_modify, allow_extract, allow_annotate); +} + +void qpdf_set_r3_encryption_parameters( + qpdf_data qpdf, char const* user_password, char const* owner_password, + QPDF_BOOL allow_accessibility, QPDF_BOOL allow_extract, + qpdf_r3_print_e print, qpdf_r3_modify_e modify) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_set_r3_encryption_parameters"); + qpdf->qpdf_writer->setR3EncryptionParameters( + user_password, owner_password, + allow_accessibility, allow_extract, print, modify); +} + +void qpdf_set_r4_encryption_parameters( + qpdf_data qpdf, char const* user_password, char const* owner_password, + QPDF_BOOL allow_accessibility, QPDF_BOOL allow_extract, + qpdf_r3_print_e print, qpdf_r3_modify_e modify, + QPDF_BOOL encrypt_metadata, QPDF_BOOL use_aes) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_set_r4_encryption_parameters"); + qpdf->qpdf_writer->setR4EncryptionParameters( + user_password, owner_password, + allow_accessibility, allow_extract, print, modify, + encrypt_metadata, use_aes); +} + +void qpdf_set_linearization(qpdf_data qpdf, QPDF_BOOL value) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_set_linearization"); + qpdf->qpdf_writer->setLinearization(value); +} + +void qpdf_set_minimum_pdf_version(qpdf_data qpdf, char const* version) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_set_minimum_pdf_version"); + qpdf->qpdf_writer->setMinimumPDFVersion(version); +} + +void qpdf_force_pdf_version(qpdf_data qpdf, char const* version) +{ + QTC::TC("qpdf", "qpdf-c called qpdf_force_pdf_version"); + qpdf->qpdf_writer->forcePDFVersion(version); +} + +QPDF_ERROR_CODE qpdf_write(qpdf_data qpdf) +{ + QPDF_ERROR_CODE status = QPDF_SUCCESS; + status = trap_errors(qpdf, &call_write); + QTC::TC("qpdf", "qpdf-c called qpdf_write", status); + return status; +} diff --git a/libqpdf/qpdf/BitStream.hh b/libqpdf/qpdf/BitStream.hh new file mode 100644 index 0000000..e45a90e --- /dev/null +++ b/libqpdf/qpdf/BitStream.hh @@ -0,0 +1,29 @@ +// Read bits from a bit stream. See BitWriter for writing. + +#ifndef __BITSTREAM_HH__ +#define __BITSTREAM_HH__ + +#include + +class BitStream +{ + public: + QPDF_DLL + BitStream(unsigned char const* p, int nbytes); + QPDF_DLL + void reset(); + QPDF_DLL + unsigned long long getBits(int nbits); + QPDF_DLL + void skipToNextByte(); + + private: + unsigned char const* start; + int nbytes; + + unsigned char const* p; + unsigned int bit_offset; + unsigned int bits_available; +}; + +#endif // __BITSTREAM_HH__ diff --git a/libqpdf/qpdf/BitWriter.hh b/libqpdf/qpdf/BitWriter.hh new file mode 100644 index 0000000..7e3b07a --- /dev/null +++ b/libqpdf/qpdf/BitWriter.hh @@ -0,0 +1,29 @@ +// Write bits into a bit stream. See BitStream for reading. + +#ifndef __BITWRITER_HH__ +#define __BITWRITER_HH__ + +#include + +class Pipeline; + +class BitWriter +{ + public: + // Write bits to the pipeline. It is the caller's responsibility + // to eventually call finish on the pipeline. + QPDF_DLL + BitWriter(Pipeline* pl); + QPDF_DLL + void writeBits(unsigned long long val, unsigned int bits); + // Force any partial byte to be written to the pipeline. + QPDF_DLL + void flush(); + + private: + Pipeline* pl; + unsigned char ch; + unsigned int bit_offset; +}; + +#endif // __BITWRITER_HH__ diff --git a/libqpdf/qpdf/MD5.hh b/libqpdf/qpdf/MD5.hh new file mode 100644 index 0000000..4cfe027 --- /dev/null +++ b/libqpdf/qpdf/MD5.hh @@ -0,0 +1,92 @@ +#ifndef __MD5_HH__ +#define __MD5_HH__ + +#include +#include +#ifdef HAVE_INTTYPES_H +# include +#endif +#ifdef HAVE_STDINT_H +# include +#endif +#include + +class MD5 +{ + public: + typedef unsigned char Digest[16]; + + QPDF_DLL + MD5(); + QPDF_DLL + void reset(); + + // encodes string and finalizes + QPDF_DLL + void encodeString(char const* input_string); + + // encodes file and finalizes + QPDF_DLL + void encodeFile(char const* filename, int up_to_size = -1); + + // appends string to current md5 object + QPDF_DLL + void appendString(char const* input_string); + + // appends arbitrary data to current md5 object + QPDF_DLL + void encodeDataIncrementally(char const* input_data, int len); + + // computes a raw digest + QPDF_DLL + void digest(Digest); + + // prints the digest to stdout terminated with \r\n (primarily for + // testing) + QPDF_DLL + void print(); + + // returns the digest as a hexadecimal string + QPDF_DLL + std::string unparse(); + + // Convenience functions + QPDF_DLL + static std::string getDataChecksum(char const* buf, int len); + QPDF_DLL + static std::string getFileChecksum(char const* filename, + int up_to_size = -1); + QPDF_DLL + static bool checkDataChecksum(char const* const checksum, + char const* buf, int len); + QPDF_DLL + static bool checkFileChecksum(char const* const checksum, + char const* filename, int up_to_size = -1); + + private: + // POINTER defines a generic pointer type + typedef void *POINTER; + + // UINT2 defines a two byte word + typedef uint16_t UINT2; + + // UINT4 defines a four byte word + typedef uint32_t UINT4; + + void init(); + void update(unsigned char *, unsigned int); + void final(); + + static void transform(UINT4 [4], unsigned char [64]); + static void encode(unsigned char *, UINT4 *, unsigned int); + static void decode(UINT4 *, unsigned char *, unsigned int); + + UINT4 state[4]; // state (ABCD) + UINT4 count[2]; // number of bits, modulo 2^64 (lsb first) + unsigned char buffer[64]; // input buffer + + bool finalized; + Digest digest_val; +}; + +#endif // __MD5_HH__ diff --git a/libqpdf/qpdf/PCRE.hh b/libqpdf/qpdf/PCRE.hh new file mode 100644 index 0000000..8f20065 --- /dev/null +++ b/libqpdf/qpdf/PCRE.hh @@ -0,0 +1,117 @@ +// This is a C++ wrapper class around Philip Hazel's perl-compatible +// regular expressions library. +// + +#ifndef __PCRE_HH__ +#define __PCRE_HH__ + +#include + +#ifdef _WIN32 +# define PCRE_STATIC +#endif +#include +#include +#include + +// Note: this class does not encapsulate all features of the PCRE +// package -- only those that I actually need right now are here. + +class PCRE +{ + public: + // This is thrown when an attempt is made to access a non-existent + // back reference. + class NoBackref: public std::logic_error + { + public: + QPDF_DLL + NoBackref(); + virtual ~NoBackref() throw() {} + }; + + class Match + { + friend class PCRE; + public: + QPDF_DLL + Match(int nbackrefs, char const* subject); + QPDF_DLL + Match(Match const&); + QPDF_DLL + Match& operator=(Match const&); + QPDF_DLL + ~Match(); + QPDF_DLL + operator bool(); + + // All the back reference accessing routines may throw the + // special exception NoBackref (derived from Exception) if the + // back reference does not exist. Exception will be thrown + // for other error conditions. This allows callers to trap + // this condition explicitly when they care about the + // difference between a backreference matching an empty string + // and not matching at all. + + // see getMatch flags below + QPDF_DLL + std::string getMatch(int n, int flags = 0); + QPDF_DLL + void getOffsetLength(int n, int& offset, int& length); + QPDF_DLL + int getOffset(int n); + QPDF_DLL + int getLength(int n); + + // nMatches returns the number of available matches including + // match 0 which is the whole string. In other words, if you + // have one backreference in your expression and the + // expression matches, nMatches() will return 2, getMatch(0) + // will return the whole string, getMatch(1) will return the + // text that matched the backreference, and getMatch(2) will + // throw an exception because it is out of range. + QPDF_DLL + int nMatches() const; + + // Flags for getMatch + + // getMatch on a substring that didn't match should return + // empty string instead of throwing an exception + static int const gm_no_substring_returns_empty = (1 << 0); + + private: + void init(int nmatches, int nbackrefs, char const* subject); + void copy(Match const&); + void destroy(); + + int nbackrefs; + char const* subject; + int* ovector; + int ovecsize; + int nmatches; + }; + + // The value passed in as options is passed to pcre_exec. See man + // pcreapi for details. + QPDF_DLL + PCRE(char const* pattern, int options = 0); + QPDF_DLL + ~PCRE(); + + QPDF_DLL + Match match(char const* subject, int options = 0, int startoffset = 0, + int size = -1); + + QPDF_DLL + static void test(int n = 0); + + private: + // prohibit copying and assignment + PCRE(PCRE const&); + PCRE& operator=(PCRE const&); + + pcre* code; + int nbackrefs; +}; + +#endif // __PCRE_HH__ diff --git a/libqpdf/qpdf/Pl_AES_PDF.hh b/libqpdf/qpdf/Pl_AES_PDF.hh new file mode 100644 index 0000000..3947506 --- /dev/null +++ b/libqpdf/qpdf/Pl_AES_PDF.hh @@ -0,0 +1,55 @@ +#ifndef __PL_AES_PDF_HH__ +#define __PL_AES_PDF_HH__ + +#include +#include +#ifdef HAVE_STDINT_H +# include +#endif + +// This pipeline implements AES-128 with CBC and block padding as +// specified in the PDF specification. + +class Pl_AES_PDF: public Pipeline +{ + public: + // key_data should be a pointer to key_size bytes of data + static unsigned int const key_size = 16; + QPDF_DLL + Pl_AES_PDF(char const* identifier, Pipeline* next, + bool encrypt, unsigned char const key[key_size]); + QPDF_DLL + virtual ~Pl_AES_PDF(); + + QPDF_DLL + virtual void write(unsigned char* data, size_t len); + QPDF_DLL + virtual void finish(); + + // For testing only; PDF always uses CBC + QPDF_DLL + void disableCBC(); + // For testing only: use a fixed initialization vector for CBC + QPDF_DLL + static void useStaticIV(); + + private: + void flush(bool discard_padding); + void initializeVector(); + + static unsigned int const buf_size = 16; + static bool use_static_iv; + + bool encrypt; + bool cbc_mode; + bool first; + size_t offset; // offset into memory buffer + unsigned char key[key_size]; + uint32_t rk[key_size + 28]; + unsigned char inbuf[buf_size]; + unsigned char outbuf[buf_size]; + unsigned char cbc_block[buf_size]; + unsigned int nrounds; +}; + +#endif // __PL_AES_PDF_HH__ diff --git a/libqpdf/qpdf/Pl_ASCII85Decoder.hh b/libqpdf/qpdf/Pl_ASCII85Decoder.hh new file mode 100644 index 0000000..001da86 --- /dev/null +++ b/libqpdf/qpdf/Pl_ASCII85Decoder.hh @@ -0,0 +1,26 @@ +#ifndef __PL_ASCII85DECODER_HH__ +#define __PL_ASCII85DECODER_HH__ + +#include + +class Pl_ASCII85Decoder: public Pipeline +{ + public: + QPDF_DLL + Pl_ASCII85Decoder(char const* identifier, Pipeline* next); + QPDF_DLL + virtual ~Pl_ASCII85Decoder(); + QPDF_DLL + virtual void write(unsigned char* buf, size_t len); + QPDF_DLL + virtual void finish(); + + private: + void flush(); + + char inbuf[5]; + size_t pos; + size_t eod; +}; + +#endif // __PL_ASCII85DECODER_HH__ diff --git a/libqpdf/qpdf/Pl_ASCIIHexDecoder.hh b/libqpdf/qpdf/Pl_ASCIIHexDecoder.hh new file mode 100644 index 0000000..1d33afd --- /dev/null +++ b/libqpdf/qpdf/Pl_ASCIIHexDecoder.hh @@ -0,0 +1,26 @@ +#ifndef __PL_ASCIIHEXDECODER_HH__ +#define __PL_ASCIIHEXDECODER_HH__ + +#include + +class Pl_ASCIIHexDecoder: public Pipeline +{ + public: + QPDF_DLL + Pl_ASCIIHexDecoder(char const* identifier, Pipeline* next); + QPDF_DLL + virtual ~Pl_ASCIIHexDecoder(); + QPDF_DLL + virtual void write(unsigned char* buf, size_t len); + QPDF_DLL + virtual void finish(); + + private: + void flush(); + + char inbuf[3]; + size_t pos; + bool eod; +}; + +#endif // __PL_ASCIIHEXDECODER_HH__ diff --git a/libqpdf/qpdf/Pl_LZWDecoder.hh b/libqpdf/qpdf/Pl_LZWDecoder.hh new file mode 100644 index 0000000..4121f6f --- /dev/null +++ b/libqpdf/qpdf/Pl_LZWDecoder.hh @@ -0,0 +1,43 @@ +#ifndef __PL_LZWDECODER_HH__ +#define __PL_LZWDECODER_HH__ + +#include + +#include +#include + +class Pl_LZWDecoder: public Pipeline +{ + public: + QPDF_DLL + Pl_LZWDecoder(char const* identifier, Pipeline* next, + bool early_code_change); + QPDF_DLL + virtual ~Pl_LZWDecoder(); + QPDF_DLL + virtual void write(unsigned char* buf, size_t len); + QPDF_DLL + virtual void finish(); + + private: + void sendNextCode(); + void handleCode(int code); + unsigned char getFirstChar(int code); + void addToTable(unsigned char next); + + // members used for converting bits to codes + unsigned char buf[3]; + int code_size; + int next; + int byte_pos; + int bit_pos; // left to right: 01234567 + int bits_available; + + // members used for handle LZW decompression + bool code_change_delta; + bool eod; + std::vector table; + int last_code; +}; + +#endif // __PL_LZWDECODER_HH__ diff --git a/libqpdf/qpdf/Pl_MD5.hh b/libqpdf/qpdf/Pl_MD5.hh new file mode 100644 index 0000000..13a0927 --- /dev/null +++ b/libqpdf/qpdf/Pl_MD5.hh @@ -0,0 +1,34 @@ +#ifndef __PL_MD5_HH__ +#define __PL_MD5_HH__ + +// This pipeline sends its output to its successor unmodified. After +// calling finish, the MD5 checksum of the data that passed through +// the pipeline is available. + +// This pipeline is reusable; i.e., it is safe to call write() after +// calling finish(). The first call to write() after a call to +// finish() initializes a new MD5 object. + +#include +#include + +class Pl_MD5: public Pipeline +{ + public: + QPDF_DLL + Pl_MD5(char const* identifier, Pipeline* next); + QPDF_DLL + virtual ~Pl_MD5(); + QPDF_DLL + virtual void write(unsigned char*, size_t); + QPDF_DLL + virtual void finish(); + QPDF_DLL + std::string getHexDigest(); + + private: + bool in_progress; + MD5 md5; +}; + +#endif // __PL_MD5_HH__ diff --git a/libqpdf/qpdf/Pl_PNGFilter.hh b/libqpdf/qpdf/Pl_PNGFilter.hh new file mode 100644 index 0000000..7d7ebe7 --- /dev/null +++ b/libqpdf/qpdf/Pl_PNGFilter.hh @@ -0,0 +1,52 @@ +#ifndef __PL_PNGFILTER_HH__ +#define __PL_PNGFILTER_HH__ + +// This pipeline applies or reverses the application of a PNG filter +// as described in the PNG specification. + +// NOTE: In its initial implementation, it only encodes and decodes +// filters "none" and "up". The primary motivation of this code is to +// encode and decode PDF 1.5+ XRef streams which are often encoded +// with Flate predictor 12, which corresponds to the PNG up filter. +// At present, the bytes_per_pixel parameter is ignored, and an +// exception is thrown if any row of the file has a filter of other +// than 0 or 2. Finishing the implementation would not be difficult. +// See chapter 6 of the PNG specification for a description of the +// filter algorithms. + +#include + +class Pl_PNGFilter: public Pipeline +{ + public: + // Encoding is not presently supported + enum action_e { a_encode, a_decode }; + + QPDF_DLL + Pl_PNGFilter(char const* identifier, Pipeline* next, + action_e action, unsigned int columns, + unsigned int bytes_per_pixel); + QPDF_DLL + virtual ~Pl_PNGFilter(); + + QPDF_DLL + virtual void write(unsigned char* data, size_t len); + QPDF_DLL + virtual void finish(); + + private: + void processRow(); + void encodeRow(); + void decodeRow(); + + action_e action; + unsigned int columns; + unsigned char* cur_row; + unsigned char* prev_row; + unsigned char* buf1; + unsigned char* buf2; + size_t pos; + size_t incoming; +}; + +#endif // __PL_PNGFILTER_HH__ diff --git a/libqpdf/qpdf/Pl_QPDFTokenizer.hh b/libqpdf/qpdf/Pl_QPDFTokenizer.hh new file mode 100644 index 0000000..0d04157 --- /dev/null +++ b/libqpdf/qpdf/Pl_QPDFTokenizer.hh @@ -0,0 +1,41 @@ +#ifndef __PL_QPDFTOKENIZER_HH__ +#define __PL_QPDFTOKENIZER_HH__ + +#include + +#include + +// +// Treat incoming text as a stream consisting of valid PDF tokens, but +// output bad tokens just the same. The idea here is to be able to +// use pipeline for content streams to normalize newlines without +// interfering with meaningful newlines such as those that occur +// inside of strings. +// + +class Pl_QPDFTokenizer: public Pipeline +{ + public: + Pl_QPDFTokenizer(char const* identifier, Pipeline* next); + virtual ~Pl_QPDFTokenizer(); + virtual void write(unsigned char* buf, size_t len); + virtual void finish(); + + private: + void processChar(char ch); + void checkUnread(); + void writeNext(char const*, size_t len); + void writeToken(QPDFTokenizer::Token&); + + QPDFTokenizer tokenizer; + bool newline_after_next_token; + bool just_wrote_nl; + bool last_char_was_cr; + bool unread_char; + char char_to_unread; + bool in_inline_image; + static int const IMAGE_BUF_SIZE = 4; // must be >= 4 + char image_buf[IMAGE_BUF_SIZE]; +}; + +#endif // __PL_QPDFTOKENIZER_HH__ diff --git a/libqpdf/qpdf/Pl_RC4.hh b/libqpdf/qpdf/Pl_RC4.hh new file mode 100644 index 0000000..bb892f1 --- /dev/null +++ b/libqpdf/qpdf/Pl_RC4.hh @@ -0,0 +1,32 @@ +#ifndef __PL_RC4_HH__ +#define __PL_RC4_HH__ + +#include + +#include + +class Pl_RC4: public Pipeline +{ + public: + static int const def_bufsize = 65536; + + // key_len of -1 means treat key_data as a null-terminated string + QPDF_DLL + Pl_RC4(char const* identifier, Pipeline* next, + unsigned char const* key_data, int key_len = -1, + size_t out_bufsize = def_bufsize); + QPDF_DLL + virtual ~Pl_RC4(); + + QPDF_DLL + virtual void write(unsigned char* data, size_t len); + QPDF_DLL + virtual void finish(); + + private: + unsigned char* outbuf; + size_t out_bufsize; + RC4 rc4; +}; + +#endif // __PL_RC4_HH__ diff --git a/libqpdf/qpdf/QPDF_Array.hh b/libqpdf/qpdf/QPDF_Array.hh new file mode 100644 index 0000000..338f6eb --- /dev/null +++ b/libqpdf/qpdf/QPDF_Array.hh @@ -0,0 +1,33 @@ +#ifndef __QPDF_ARRAY_HH__ +#define __QPDF_ARRAY_HH__ + +#include + +#include +#include + +class QPDF_Array: public QPDFObject +{ + public: + QPDF_Array(std::vector const& items); + virtual ~QPDF_Array(); + virtual std::string unparse(); + + int getNItems() const; + QPDFObjectHandle getItem(int n) const; + std::vector const& getAsVector() const; + + void setItem(int, QPDFObjectHandle const&); + void setFromVector(std::vector const& items); + void insertItem(int at, QPDFObjectHandle const& item); + void appendItem(QPDFObjectHandle const& item); + void eraseItem(int at); + + protected: + virtual void releaseResolved(); + + private: + std::vector items; +}; + +#endif // __QPDF_ARRAY_HH__ diff --git a/libqpdf/qpdf/QPDF_Bool.hh b/libqpdf/qpdf/QPDF_Bool.hh new file mode 100644 index 0000000..90dc590 --- /dev/null +++ b/libqpdf/qpdf/QPDF_Bool.hh @@ -0,0 +1,18 @@ +#ifndef __QPDF_BOOL_HH__ +#define __QPDF_BOOL_HH__ + +#include + +class QPDF_Bool: public QPDFObject +{ + public: + QPDF_Bool(bool val); + virtual ~QPDF_Bool(); + virtual std::string unparse(); + bool getVal() const; + + private: + bool val; +}; + +#endif // __QPDF_BOOL_HH__ diff --git a/libqpdf/qpdf/QPDF_Dictionary.hh b/libqpdf/qpdf/QPDF_Dictionary.hh new file mode 100644 index 0000000..af9f7f0 --- /dev/null +++ b/libqpdf/qpdf/QPDF_Dictionary.hh @@ -0,0 +1,40 @@ +#ifndef __QPDF_DICTIONARY_HH__ +#define __QPDF_DICTIONARY_HH__ + +#include + +#include +#include + +#include + +class QPDF_Dictionary: public QPDFObject +{ + public: + QPDF_Dictionary(std::map const& items); + virtual ~QPDF_Dictionary(); + virtual std::string unparse(); + + // hasKey() and getKeys() treat keys with null values as if they + // aren't there. getKey() returns null for the value of a + // non-existent key. This is as per the PDF spec. + bool hasKey(std::string const&); + QPDFObjectHandle getKey(std::string const&); + std::set getKeys(); + std::map const& getAsMap() const; + + // Replace value of key, adding it if it does not exist + void replaceKey(std::string const& key, QPDFObjectHandle const&); + // Remove key, doing nothing if key does not exist + void removeKey(std::string const& key); + // If object is null, replace key; otherwise, remove key + void replaceOrRemoveKey(std::string const& key, QPDFObjectHandle); + + protected: + virtual void releaseResolved(); + + private: + std::map items; +}; + +#endif // __QPDF_DICTIONARY_HH__ diff --git a/libqpdf/qpdf/QPDF_Integer.hh b/libqpdf/qpdf/QPDF_Integer.hh new file mode 100644 index 0000000..f996469 --- /dev/null +++ b/libqpdf/qpdf/QPDF_Integer.hh @@ -0,0 +1,18 @@ +#ifndef __QPDF_INTEGER_HH__ +#define __QPDF_INTEGER_HH__ + +#include + +class QPDF_Integer: public QPDFObject +{ + public: + QPDF_Integer(long long val); + virtual ~QPDF_Integer(); + virtual std::string unparse(); + long long getVal() const; + + private: + long long val; +}; + +#endif // __QPDF_INTEGER_HH__ diff --git a/libqpdf/qpdf/QPDF_Name.hh b/libqpdf/qpdf/QPDF_Name.hh new file mode 100644 index 0000000..361556a --- /dev/null +++ b/libqpdf/qpdf/QPDF_Name.hh @@ -0,0 +1,21 @@ +#ifndef __QPDF_NAME_HH__ +#define __QPDF_NAME_HH__ + +#include + +class QPDF_Name: public QPDFObject +{ + public: + QPDF_Name(std::string const& name); + virtual ~QPDF_Name(); + virtual std::string unparse(); + std::string getName() const; + + // Put # into strings with characters unsuitable for name token + static std::string normalizeName(std::string const& name); + + private: + std::string name; +}; + +#endif // __QPDF_NAME_HH__ diff --git a/libqpdf/qpdf/QPDF_Null.hh b/libqpdf/qpdf/QPDF_Null.hh new file mode 100644 index 0000000..dffe026 --- /dev/null +++ b/libqpdf/qpdf/QPDF_Null.hh @@ -0,0 +1,13 @@ +#ifndef __QPDF_NULL_HH__ +#define __QPDF_NULL_HH__ + +#include + +class QPDF_Null: public QPDFObject +{ + public: + virtual ~QPDF_Null(); + virtual std::string unparse(); +}; + +#endif // __QPDF_NULL_HH__ diff --git a/libqpdf/qpdf/QPDF_Real.hh b/libqpdf/qpdf/QPDF_Real.hh new file mode 100644 index 0000000..2895cee --- /dev/null +++ b/libqpdf/qpdf/QPDF_Real.hh @@ -0,0 +1,20 @@ +#ifndef __QPDF_REAL_HH__ +#define __QPDF_REAL_HH__ + +#include + +class QPDF_Real: public QPDFObject +{ + public: + QPDF_Real(std::string const& val); + QPDF_Real(double value, int decimal_places = 0); + virtual ~QPDF_Real(); + virtual std::string unparse(); + std::string getVal(); + + private: + // Store reals as strings to avoid roundoff errors. + std::string val; +}; + +#endif // __QPDF_REAL_HH__ diff --git a/libqpdf/qpdf/QPDF_Reserved.hh b/libqpdf/qpdf/QPDF_Reserved.hh new file mode 100644 index 0000000..b149f77 --- /dev/null +++ b/libqpdf/qpdf/QPDF_Reserved.hh @@ -0,0 +1,13 @@ +#ifndef __QPDF_RESERVED_HH__ +#define __QPDF_RESERVED_HH__ + +#include + +class QPDF_Reserved: public QPDFObject +{ + public: + virtual ~QPDF_Reserved(); + virtual std::string unparse(); +}; + +#endif // __QPDF_RESERVED_HH__ diff --git a/libqpdf/qpdf/QPDF_Stream.hh b/libqpdf/qpdf/QPDF_Stream.hh new file mode 100644 index 0000000..34eacee --- /dev/null +++ b/libqpdf/qpdf/QPDF_Stream.hh @@ -0,0 +1,61 @@ +#ifndef __QPDF_STREAM_HH__ +#define __QPDF_STREAM_HH__ + +#include + +#include +#include + +class Pipeline; +class QPDF; + +class QPDF_Stream: public QPDFObject +{ + public: + QPDF_Stream(QPDF*, int objid, int generation, + QPDFObjectHandle stream_dict, + qpdf_offset_t offset, size_t length); + virtual ~QPDF_Stream(); + virtual std::string unparse(); + QPDFObjectHandle getDict() const; + + // See comments in QPDFObjectHandle.hh for these methods. + bool pipeStreamData(Pipeline*, bool filter, + bool normalize, bool compress); + PointerHolder getStreamData(); + PointerHolder getRawStreamData(); + void replaceStreamData(PointerHolder data, + QPDFObjectHandle const& filter, + QPDFObjectHandle const& decode_parms); + void replaceStreamData( + PointerHolder provider, + QPDFObjectHandle const& filter, + QPDFObjectHandle const& decode_parms); + + void replaceDict(QPDFObjectHandle new_dict); + + // Replace object ID and generation. This may only be called if + // object ID and generation are 0. It is used by QPDFObjectHandle + // when adding streams to files. + void setObjGen(int objid, int generation); + + private: + static std::map filter_abbreviations; + + void replaceFilterData(QPDFObjectHandle const& filter, + QPDFObjectHandle const& decode_parms, + size_t length); + bool filterable(std::vector& filters, + int& predictor, int& columns, bool& early_code_change); + + QPDF* qpdf; + int objid; + int generation; + QPDFObjectHandle stream_dict; + qpdf_offset_t offset; + size_t length; + PointerHolder stream_data; + PointerHolder stream_provider; +}; + +#endif // __QPDF_STREAM_HH__ diff --git a/libqpdf/qpdf/QPDF_String.hh b/libqpdf/qpdf/QPDF_String.hh new file mode 100644 index 0000000..82860e9 --- /dev/null +++ b/libqpdf/qpdf/QPDF_String.hh @@ -0,0 +1,22 @@ +#ifndef __QPDF_STRING_HH__ +#define __QPDF_STRING_HH__ + +#include + +// QPDF_Strings may included embedded null characters. + +class QPDF_String: public QPDFObject +{ + public: + QPDF_String(std::string const& val); + virtual ~QPDF_String(); + virtual std::string unparse(); + std::string unparse(bool force_binary); + std::string getVal() const; + std::string getUTF8Val() const; + + private: + std::string val; +}; + +#endif // __QPDF_STRING_HH__ diff --git a/libqpdf/qpdf/RC4.hh b/libqpdf/qpdf/RC4.hh new file mode 100644 index 0000000..c26f3d0 --- /dev/null +++ b/libqpdf/qpdf/RC4.hh @@ -0,0 +1,25 @@ +#ifndef __RC4_HH__ +#define __RC4_HH__ + +class RC4 +{ + public: + // key_len of -1 means treat key_data as a null-terminated string + RC4(unsigned char const* key_data, int key_len = -1); + + // out_data = 0 means to encrypt/decrypt in place + void process(unsigned char* in_data, int len, unsigned char* out_data = 0); + + private: + class RC4Key + { + public: + unsigned char state[256]; + unsigned char x; + unsigned char y; + }; + + RC4Key key; +}; + +#endif // __RC4_HH__ diff --git a/libqpdf/qpdf/rijndael.h b/libqpdf/qpdf/rijndael.h new file mode 100644 index 0000000..a9cd71d --- /dev/null +++ b/libqpdf/qpdf/rijndael.h @@ -0,0 +1,25 @@ +#ifndef H__RIJNDAEL +#define H__RIJNDAEL + +#include +#ifdef HAVE_INTTYPES_H +# include +#endif +#ifdef HAVE_STDINT_H +# include +#endif + +int rijndaelSetupEncrypt(uint32_t *rk, const unsigned char *key, + int keybits); +int rijndaelSetupDecrypt(uint32_t *rk, const unsigned char *key, + int keybits); +void rijndaelEncrypt(const uint32_t *rk, int nrounds, + const unsigned char plaintext[16], unsigned char ciphertext[16]); +void rijndaelDecrypt(const uint32_t *rk, int nrounds, + const unsigned char ciphertext[16], unsigned char plaintext[16]); + +#define KEYLENGTH(keybits) ((keybits)/8) +#define RKLENGTH(keybits) ((keybits)/8+28) +#define NROUNDS(keybits) ((keybits)/32+6) + +#endif diff --git a/libqpdf/rijndael.cc b/libqpdf/rijndael.cc new file mode 100644 index 0000000..64748d8 --- /dev/null +++ b/libqpdf/rijndael.cc @@ -0,0 +1,1206 @@ +#define FULL_UNROLL + +#include "qpdf/rijndael.h" + +typedef uint32_t u32; +typedef unsigned char u8; + +static const u32 Te0[256] = +{ + 0xc66363a5U, 0xf87c7c84U, 0xee777799U, 0xf67b7b8dU, + 0xfff2f20dU, 0xd66b6bbdU, 0xde6f6fb1U, 0x91c5c554U, + 0x60303050U, 0x02010103U, 0xce6767a9U, 0x562b2b7dU, + 0xe7fefe19U, 0xb5d7d762U, 0x4dababe6U, 0xec76769aU, + 0x8fcaca45U, 0x1f82829dU, 0x89c9c940U, 0xfa7d7d87U, + 0xeffafa15U, 0xb25959ebU, 0x8e4747c9U, 0xfbf0f00bU, + 0x41adadecU, 0xb3d4d467U, 0x5fa2a2fdU, 0x45afafeaU, + 0x239c9cbfU, 0x53a4a4f7U, 0xe4727296U, 0x9bc0c05bU, + 0x75b7b7c2U, 0xe1fdfd1cU, 0x3d9393aeU, 0x4c26266aU, + 0x6c36365aU, 0x7e3f3f41U, 0xf5f7f702U, 0x83cccc4fU, + 0x6834345cU, 0x51a5a5f4U, 0xd1e5e534U, 0xf9f1f108U, + 0xe2717193U, 0xabd8d873U, 0x62313153U, 0x2a15153fU, + 0x0804040cU, 0x95c7c752U, 0x46232365U, 0x9dc3c35eU, + 0x30181828U, 0x379696a1U, 0x0a05050fU, 0x2f9a9ab5U, + 0x0e070709U, 0x24121236U, 0x1b80809bU, 0xdfe2e23dU, + 0xcdebeb26U, 0x4e272769U, 0x7fb2b2cdU, 0xea75759fU, + 0x1209091bU, 0x1d83839eU, 0x582c2c74U, 0x341a1a2eU, + 0x361b1b2dU, 0xdc6e6eb2U, 0xb45a5aeeU, 0x5ba0a0fbU, + 0xa45252f6U, 0x763b3b4dU, 0xb7d6d661U, 0x7db3b3ceU, + 0x5229297bU, 0xdde3e33eU, 0x5e2f2f71U, 0x13848497U, + 0xa65353f5U, 0xb9d1d168U, 0x00000000U, 0xc1eded2cU, + 0x40202060U, 0xe3fcfc1fU, 0x79b1b1c8U, 0xb65b5bedU, + 0xd46a6abeU, 0x8dcbcb46U, 0x67bebed9U, 0x7239394bU, + 0x944a4adeU, 0x984c4cd4U, 0xb05858e8U, 0x85cfcf4aU, + 0xbbd0d06bU, 0xc5efef2aU, 0x4faaaae5U, 0xedfbfb16U, + 0x864343c5U, 0x9a4d4dd7U, 0x66333355U, 0x11858594U, + 0x8a4545cfU, 0xe9f9f910U, 0x04020206U, 0xfe7f7f81U, + 0xa05050f0U, 0x783c3c44U, 0x259f9fbaU, 0x4ba8a8e3U, + 0xa25151f3U, 0x5da3a3feU, 0x804040c0U, 0x058f8f8aU, + 0x3f9292adU, 0x219d9dbcU, 0x70383848U, 0xf1f5f504U, + 0x63bcbcdfU, 0x77b6b6c1U, 0xafdada75U, 0x42212163U, + 0x20101030U, 0xe5ffff1aU, 0xfdf3f30eU, 0xbfd2d26dU, + 0x81cdcd4cU, 0x180c0c14U, 0x26131335U, 0xc3ecec2fU, + 0xbe5f5fe1U, 0x359797a2U, 0x884444ccU, 0x2e171739U, + 0x93c4c457U, 0x55a7a7f2U, 0xfc7e7e82U, 0x7a3d3d47U, + 0xc86464acU, 0xba5d5de7U, 0x3219192bU, 0xe6737395U, + 0xc06060a0U, 0x19818198U, 0x9e4f4fd1U, 0xa3dcdc7fU, + 0x44222266U, 0x542a2a7eU, 0x3b9090abU, 0x0b888883U, + 0x8c4646caU, 0xc7eeee29U, 0x6bb8b8d3U, 0x2814143cU, + 0xa7dede79U, 0xbc5e5ee2U, 0x160b0b1dU, 0xaddbdb76U, + 0xdbe0e03bU, 0x64323256U, 0x743a3a4eU, 0x140a0a1eU, + 0x924949dbU, 0x0c06060aU, 0x4824246cU, 0xb85c5ce4U, + 0x9fc2c25dU, 0xbdd3d36eU, 0x43acacefU, 0xc46262a6U, + 0x399191a8U, 0x319595a4U, 0xd3e4e437U, 0xf279798bU, + 0xd5e7e732U, 0x8bc8c843U, 0x6e373759U, 0xda6d6db7U, + 0x018d8d8cU, 0xb1d5d564U, 0x9c4e4ed2U, 0x49a9a9e0U, + 0xd86c6cb4U, 0xac5656faU, 0xf3f4f407U, 0xcfeaea25U, + 0xca6565afU, 0xf47a7a8eU, 0x47aeaee9U, 0x10080818U, + 0x6fbabad5U, 0xf0787888U, 0x4a25256fU, 0x5c2e2e72U, + 0x381c1c24U, 0x57a6a6f1U, 0x73b4b4c7U, 0x97c6c651U, + 0xcbe8e823U, 0xa1dddd7cU, 0xe874749cU, 0x3e1f1f21U, + 0x964b4bddU, 0x61bdbddcU, 0x0d8b8b86U, 0x0f8a8a85U, + 0xe0707090U, 0x7c3e3e42U, 0x71b5b5c4U, 0xcc6666aaU, + 0x904848d8U, 0x06030305U, 0xf7f6f601U, 0x1c0e0e12U, + 0xc26161a3U, 0x6a35355fU, 0xae5757f9U, 0x69b9b9d0U, + 0x17868691U, 0x99c1c158U, 0x3a1d1d27U, 0x279e9eb9U, + 0xd9e1e138U, 0xebf8f813U, 0x2b9898b3U, 0x22111133U, + 0xd26969bbU, 0xa9d9d970U, 0x078e8e89U, 0x339494a7U, + 0x2d9b9bb6U, 0x3c1e1e22U, 0x15878792U, 0xc9e9e920U, + 0x87cece49U, 0xaa5555ffU, 0x50282878U, 0xa5dfdf7aU, + 0x038c8c8fU, 0x59a1a1f8U, 0x09898980U, 0x1a0d0d17U, + 0x65bfbfdaU, 0xd7e6e631U, 0x844242c6U, 0xd06868b8U, + 0x824141c3U, 0x299999b0U, 0x5a2d2d77U, 0x1e0f0f11U, + 0x7bb0b0cbU, 0xa85454fcU, 0x6dbbbbd6U, 0x2c16163aU, +}; + +static const u32 Te1[256] = +{ + 0xa5c66363U, 0x84f87c7cU, 0x99ee7777U, 0x8df67b7bU, + 0x0dfff2f2U, 0xbdd66b6bU, 0xb1de6f6fU, 0x5491c5c5U, + 0x50603030U, 0x03020101U, 0xa9ce6767U, 0x7d562b2bU, + 0x19e7fefeU, 0x62b5d7d7U, 0xe64dababU, 0x9aec7676U, + 0x458fcacaU, 0x9d1f8282U, 0x4089c9c9U, 0x87fa7d7dU, + 0x15effafaU, 0xebb25959U, 0xc98e4747U, 0x0bfbf0f0U, + 0xec41adadU, 0x67b3d4d4U, 0xfd5fa2a2U, 0xea45afafU, + 0xbf239c9cU, 0xf753a4a4U, 0x96e47272U, 0x5b9bc0c0U, + 0xc275b7b7U, 0x1ce1fdfdU, 0xae3d9393U, 0x6a4c2626U, + 0x5a6c3636U, 0x417e3f3fU, 0x02f5f7f7U, 0x4f83ccccU, + 0x5c683434U, 0xf451a5a5U, 0x34d1e5e5U, 0x08f9f1f1U, + 0x93e27171U, 0x73abd8d8U, 0x53623131U, 0x3f2a1515U, + 0x0c080404U, 0x5295c7c7U, 0x65462323U, 0x5e9dc3c3U, + 0x28301818U, 0xa1379696U, 0x0f0a0505U, 0xb52f9a9aU, + 0x090e0707U, 0x36241212U, 0x9b1b8080U, 0x3ddfe2e2U, + 0x26cdebebU, 0x694e2727U, 0xcd7fb2b2U, 0x9fea7575U, + 0x1b120909U, 0x9e1d8383U, 0x74582c2cU, 0x2e341a1aU, + 0x2d361b1bU, 0xb2dc6e6eU, 0xeeb45a5aU, 0xfb5ba0a0U, + 0xf6a45252U, 0x4d763b3bU, 0x61b7d6d6U, 0xce7db3b3U, + 0x7b522929U, 0x3edde3e3U, 0x715e2f2fU, 0x97138484U, + 0xf5a65353U, 0x68b9d1d1U, 0x00000000U, 0x2cc1ededU, + 0x60402020U, 0x1fe3fcfcU, 0xc879b1b1U, 0xedb65b5bU, + 0xbed46a6aU, 0x468dcbcbU, 0xd967bebeU, 0x4b723939U, + 0xde944a4aU, 0xd4984c4cU, 0xe8b05858U, 0x4a85cfcfU, + 0x6bbbd0d0U, 0x2ac5efefU, 0xe54faaaaU, 0x16edfbfbU, + 0xc5864343U, 0xd79a4d4dU, 0x55663333U, 0x94118585U, + 0xcf8a4545U, 0x10e9f9f9U, 0x06040202U, 0x81fe7f7fU, + 0xf0a05050U, 0x44783c3cU, 0xba259f9fU, 0xe34ba8a8U, + 0xf3a25151U, 0xfe5da3a3U, 0xc0804040U, 0x8a058f8fU, + 0xad3f9292U, 0xbc219d9dU, 0x48703838U, 0x04f1f5f5U, + 0xdf63bcbcU, 0xc177b6b6U, 0x75afdadaU, 0x63422121U, + 0x30201010U, 0x1ae5ffffU, 0x0efdf3f3U, 0x6dbfd2d2U, + 0x4c81cdcdU, 0x14180c0cU, 0x35261313U, 0x2fc3ececU, + 0xe1be5f5fU, 0xa2359797U, 0xcc884444U, 0x392e1717U, + 0x5793c4c4U, 0xf255a7a7U, 0x82fc7e7eU, 0x477a3d3dU, + 0xacc86464U, 0xe7ba5d5dU, 0x2b321919U, 0x95e67373U, + 0xa0c06060U, 0x98198181U, 0xd19e4f4fU, 0x7fa3dcdcU, + 0x66442222U, 0x7e542a2aU, 0xab3b9090U, 0x830b8888U, + 0xca8c4646U, 0x29c7eeeeU, 0xd36bb8b8U, 0x3c281414U, + 0x79a7dedeU, 0xe2bc5e5eU, 0x1d160b0bU, 0x76addbdbU, + 0x3bdbe0e0U, 0x56643232U, 0x4e743a3aU, 0x1e140a0aU, + 0xdb924949U, 0x0a0c0606U, 0x6c482424U, 0xe4b85c5cU, + 0x5d9fc2c2U, 0x6ebdd3d3U, 0xef43acacU, 0xa6c46262U, + 0xa8399191U, 0xa4319595U, 0x37d3e4e4U, 0x8bf27979U, + 0x32d5e7e7U, 0x438bc8c8U, 0x596e3737U, 0xb7da6d6dU, + 0x8c018d8dU, 0x64b1d5d5U, 0xd29c4e4eU, 0xe049a9a9U, + 0xb4d86c6cU, 0xfaac5656U, 0x07f3f4f4U, 0x25cfeaeaU, + 0xafca6565U, 0x8ef47a7aU, 0xe947aeaeU, 0x18100808U, + 0xd56fbabaU, 0x88f07878U, 0x6f4a2525U, 0x725c2e2eU, + 0x24381c1cU, 0xf157a6a6U, 0xc773b4b4U, 0x5197c6c6U, + 0x23cbe8e8U, 0x7ca1ddddU, 0x9ce87474U, 0x213e1f1fU, + 0xdd964b4bU, 0xdc61bdbdU, 0x860d8b8bU, 0x850f8a8aU, + 0x90e07070U, 0x427c3e3eU, 0xc471b5b5U, 0xaacc6666U, + 0xd8904848U, 0x05060303U, 0x01f7f6f6U, 0x121c0e0eU, + 0xa3c26161U, 0x5f6a3535U, 0xf9ae5757U, 0xd069b9b9U, + 0x91178686U, 0x5899c1c1U, 0x273a1d1dU, 0xb9279e9eU, + 0x38d9e1e1U, 0x13ebf8f8U, 0xb32b9898U, 0x33221111U, + 0xbbd26969U, 0x70a9d9d9U, 0x89078e8eU, 0xa7339494U, + 0xb62d9b9bU, 0x223c1e1eU, 0x92158787U, 0x20c9e9e9U, + 0x4987ceceU, 0xffaa5555U, 0x78502828U, 0x7aa5dfdfU, + 0x8f038c8cU, 0xf859a1a1U, 0x80098989U, 0x171a0d0dU, + 0xda65bfbfU, 0x31d7e6e6U, 0xc6844242U, 0xb8d06868U, + 0xc3824141U, 0xb0299999U, 0x775a2d2dU, 0x111e0f0fU, + 0xcb7bb0b0U, 0xfca85454U, 0xd66dbbbbU, 0x3a2c1616U, +}; + +static const u32 Te2[256] = +{ + 0x63a5c663U, 0x7c84f87cU, 0x7799ee77U, 0x7b8df67bU, + 0xf20dfff2U, 0x6bbdd66bU, 0x6fb1de6fU, 0xc55491c5U, + 0x30506030U, 0x01030201U, 0x67a9ce67U, 0x2b7d562bU, + 0xfe19e7feU, 0xd762b5d7U, 0xabe64dabU, 0x769aec76U, + 0xca458fcaU, 0x829d1f82U, 0xc94089c9U, 0x7d87fa7dU, + 0xfa15effaU, 0x59ebb259U, 0x47c98e47U, 0xf00bfbf0U, + 0xadec41adU, 0xd467b3d4U, 0xa2fd5fa2U, 0xafea45afU, + 0x9cbf239cU, 0xa4f753a4U, 0x7296e472U, 0xc05b9bc0U, + 0xb7c275b7U, 0xfd1ce1fdU, 0x93ae3d93U, 0x266a4c26U, + 0x365a6c36U, 0x3f417e3fU, 0xf702f5f7U, 0xcc4f83ccU, + 0x345c6834U, 0xa5f451a5U, 0xe534d1e5U, 0xf108f9f1U, + 0x7193e271U, 0xd873abd8U, 0x31536231U, 0x153f2a15U, + 0x040c0804U, 0xc75295c7U, 0x23654623U, 0xc35e9dc3U, + 0x18283018U, 0x96a13796U, 0x050f0a05U, 0x9ab52f9aU, + 0x07090e07U, 0x12362412U, 0x809b1b80U, 0xe23ddfe2U, + 0xeb26cdebU, 0x27694e27U, 0xb2cd7fb2U, 0x759fea75U, + 0x091b1209U, 0x839e1d83U, 0x2c74582cU, 0x1a2e341aU, + 0x1b2d361bU, 0x6eb2dc6eU, 0x5aeeb45aU, 0xa0fb5ba0U, + 0x52f6a452U, 0x3b4d763bU, 0xd661b7d6U, 0xb3ce7db3U, + 0x297b5229U, 0xe33edde3U, 0x2f715e2fU, 0x84971384U, + 0x53f5a653U, 0xd168b9d1U, 0x00000000U, 0xed2cc1edU, + 0x20604020U, 0xfc1fe3fcU, 0xb1c879b1U, 0x5bedb65bU, + 0x6abed46aU, 0xcb468dcbU, 0xbed967beU, 0x394b7239U, + 0x4ade944aU, 0x4cd4984cU, 0x58e8b058U, 0xcf4a85cfU, + 0xd06bbbd0U, 0xef2ac5efU, 0xaae54faaU, 0xfb16edfbU, + 0x43c58643U, 0x4dd79a4dU, 0x33556633U, 0x85941185U, + 0x45cf8a45U, 0xf910e9f9U, 0x02060402U, 0x7f81fe7fU, + 0x50f0a050U, 0x3c44783cU, 0x9fba259fU, 0xa8e34ba8U, + 0x51f3a251U, 0xa3fe5da3U, 0x40c08040U, 0x8f8a058fU, + 0x92ad3f92U, 0x9dbc219dU, 0x38487038U, 0xf504f1f5U, + 0xbcdf63bcU, 0xb6c177b6U, 0xda75afdaU, 0x21634221U, + 0x10302010U, 0xff1ae5ffU, 0xf30efdf3U, 0xd26dbfd2U, + 0xcd4c81cdU, 0x0c14180cU, 0x13352613U, 0xec2fc3ecU, + 0x5fe1be5fU, 0x97a23597U, 0x44cc8844U, 0x17392e17U, + 0xc45793c4U, 0xa7f255a7U, 0x7e82fc7eU, 0x3d477a3dU, + 0x64acc864U, 0x5de7ba5dU, 0x192b3219U, 0x7395e673U, + 0x60a0c060U, 0x81981981U, 0x4fd19e4fU, 0xdc7fa3dcU, + 0x22664422U, 0x2a7e542aU, 0x90ab3b90U, 0x88830b88U, + 0x46ca8c46U, 0xee29c7eeU, 0xb8d36bb8U, 0x143c2814U, + 0xde79a7deU, 0x5ee2bc5eU, 0x0b1d160bU, 0xdb76addbU, + 0xe03bdbe0U, 0x32566432U, 0x3a4e743aU, 0x0a1e140aU, + 0x49db9249U, 0x060a0c06U, 0x246c4824U, 0x5ce4b85cU, + 0xc25d9fc2U, 0xd36ebdd3U, 0xacef43acU, 0x62a6c462U, + 0x91a83991U, 0x95a43195U, 0xe437d3e4U, 0x798bf279U, + 0xe732d5e7U, 0xc8438bc8U, 0x37596e37U, 0x6db7da6dU, + 0x8d8c018dU, 0xd564b1d5U, 0x4ed29c4eU, 0xa9e049a9U, + 0x6cb4d86cU, 0x56faac56U, 0xf407f3f4U, 0xea25cfeaU, + 0x65afca65U, 0x7a8ef47aU, 0xaee947aeU, 0x08181008U, + 0xbad56fbaU, 0x7888f078U, 0x256f4a25U, 0x2e725c2eU, + 0x1c24381cU, 0xa6f157a6U, 0xb4c773b4U, 0xc65197c6U, + 0xe823cbe8U, 0xdd7ca1ddU, 0x749ce874U, 0x1f213e1fU, + 0x4bdd964bU, 0xbddc61bdU, 0x8b860d8bU, 0x8a850f8aU, + 0x7090e070U, 0x3e427c3eU, 0xb5c471b5U, 0x66aacc66U, + 0x48d89048U, 0x03050603U, 0xf601f7f6U, 0x0e121c0eU, + 0x61a3c261U, 0x355f6a35U, 0x57f9ae57U, 0xb9d069b9U, + 0x86911786U, 0xc15899c1U, 0x1d273a1dU, 0x9eb9279eU, + 0xe138d9e1U, 0xf813ebf8U, 0x98b32b98U, 0x11332211U, + 0x69bbd269U, 0xd970a9d9U, 0x8e89078eU, 0x94a73394U, + 0x9bb62d9bU, 0x1e223c1eU, 0x87921587U, 0xe920c9e9U, + 0xce4987ceU, 0x55ffaa55U, 0x28785028U, 0xdf7aa5dfU, + 0x8c8f038cU, 0xa1f859a1U, 0x89800989U, 0x0d171a0dU, + 0xbfda65bfU, 0xe631d7e6U, 0x42c68442U, 0x68b8d068U, + 0x41c38241U, 0x99b02999U, 0x2d775a2dU, 0x0f111e0fU, + 0xb0cb7bb0U, 0x54fca854U, 0xbbd66dbbU, 0x163a2c16U, +}; + +static const u32 Te3[256] = +{ + 0x6363a5c6U, 0x7c7c84f8U, 0x777799eeU, 0x7b7b8df6U, + 0xf2f20dffU, 0x6b6bbdd6U, 0x6f6fb1deU, 0xc5c55491U, + 0x30305060U, 0x01010302U, 0x6767a9ceU, 0x2b2b7d56U, + 0xfefe19e7U, 0xd7d762b5U, 0xababe64dU, 0x76769aecU, + 0xcaca458fU, 0x82829d1fU, 0xc9c94089U, 0x7d7d87faU, + 0xfafa15efU, 0x5959ebb2U, 0x4747c98eU, 0xf0f00bfbU, + 0xadadec41U, 0xd4d467b3U, 0xa2a2fd5fU, 0xafafea45U, + 0x9c9cbf23U, 0xa4a4f753U, 0x727296e4U, 0xc0c05b9bU, + 0xb7b7c275U, 0xfdfd1ce1U, 0x9393ae3dU, 0x26266a4cU, + 0x36365a6cU, 0x3f3f417eU, 0xf7f702f5U, 0xcccc4f83U, + 0x34345c68U, 0xa5a5f451U, 0xe5e534d1U, 0xf1f108f9U, + 0x717193e2U, 0xd8d873abU, 0x31315362U, 0x15153f2aU, + 0x04040c08U, 0xc7c75295U, 0x23236546U, 0xc3c35e9dU, + 0x18182830U, 0x9696a137U, 0x05050f0aU, 0x9a9ab52fU, + 0x0707090eU, 0x12123624U, 0x80809b1bU, 0xe2e23ddfU, + 0xebeb26cdU, 0x2727694eU, 0xb2b2cd7fU, 0x75759feaU, + 0x09091b12U, 0x83839e1dU, 0x2c2c7458U, 0x1a1a2e34U, + 0x1b1b2d36U, 0x6e6eb2dcU, 0x5a5aeeb4U, 0xa0a0fb5bU, + 0x5252f6a4U, 0x3b3b4d76U, 0xd6d661b7U, 0xb3b3ce7dU, + 0x29297b52U, 0xe3e33eddU, 0x2f2f715eU, 0x84849713U, + 0x5353f5a6U, 0xd1d168b9U, 0x00000000U, 0xeded2cc1U, + 0x20206040U, 0xfcfc1fe3U, 0xb1b1c879U, 0x5b5bedb6U, + 0x6a6abed4U, 0xcbcb468dU, 0xbebed967U, 0x39394b72U, + 0x4a4ade94U, 0x4c4cd498U, 0x5858e8b0U, 0xcfcf4a85U, + 0xd0d06bbbU, 0xefef2ac5U, 0xaaaae54fU, 0xfbfb16edU, + 0x4343c586U, 0x4d4dd79aU, 0x33335566U, 0x85859411U, + 0x4545cf8aU, 0xf9f910e9U, 0x02020604U, 0x7f7f81feU, + 0x5050f0a0U, 0x3c3c4478U, 0x9f9fba25U, 0xa8a8e34bU, + 0x5151f3a2U, 0xa3a3fe5dU, 0x4040c080U, 0x8f8f8a05U, + 0x9292ad3fU, 0x9d9dbc21U, 0x38384870U, 0xf5f504f1U, + 0xbcbcdf63U, 0xb6b6c177U, 0xdada75afU, 0x21216342U, + 0x10103020U, 0xffff1ae5U, 0xf3f30efdU, 0xd2d26dbfU, + 0xcdcd4c81U, 0x0c0c1418U, 0x13133526U, 0xecec2fc3U, + 0x5f5fe1beU, 0x9797a235U, 0x4444cc88U, 0x1717392eU, + 0xc4c45793U, 0xa7a7f255U, 0x7e7e82fcU, 0x3d3d477aU, + 0x6464acc8U, 0x5d5de7baU, 0x19192b32U, 0x737395e6U, + 0x6060a0c0U, 0x81819819U, 0x4f4fd19eU, 0xdcdc7fa3U, + 0x22226644U, 0x2a2a7e54U, 0x9090ab3bU, 0x8888830bU, + 0x4646ca8cU, 0xeeee29c7U, 0xb8b8d36bU, 0x14143c28U, + 0xdede79a7U, 0x5e5ee2bcU, 0x0b0b1d16U, 0xdbdb76adU, + 0xe0e03bdbU, 0x32325664U, 0x3a3a4e74U, 0x0a0a1e14U, + 0x4949db92U, 0x06060a0cU, 0x24246c48U, 0x5c5ce4b8U, + 0xc2c25d9fU, 0xd3d36ebdU, 0xacacef43U, 0x6262a6c4U, + 0x9191a839U, 0x9595a431U, 0xe4e437d3U, 0x79798bf2U, + 0xe7e732d5U, 0xc8c8438bU, 0x3737596eU, 0x6d6db7daU, + 0x8d8d8c01U, 0xd5d564b1U, 0x4e4ed29cU, 0xa9a9e049U, + 0x6c6cb4d8U, 0x5656faacU, 0xf4f407f3U, 0xeaea25cfU, + 0x6565afcaU, 0x7a7a8ef4U, 0xaeaee947U, 0x08081810U, + 0xbabad56fU, 0x787888f0U, 0x25256f4aU, 0x2e2e725cU, + 0x1c1c2438U, 0xa6a6f157U, 0xb4b4c773U, 0xc6c65197U, + 0xe8e823cbU, 0xdddd7ca1U, 0x74749ce8U, 0x1f1f213eU, + 0x4b4bdd96U, 0xbdbddc61U, 0x8b8b860dU, 0x8a8a850fU, + 0x707090e0U, 0x3e3e427cU, 0xb5b5c471U, 0x6666aaccU, + 0x4848d890U, 0x03030506U, 0xf6f601f7U, 0x0e0e121cU, + 0x6161a3c2U, 0x35355f6aU, 0x5757f9aeU, 0xb9b9d069U, + 0x86869117U, 0xc1c15899U, 0x1d1d273aU, 0x9e9eb927U, + 0xe1e138d9U, 0xf8f813ebU, 0x9898b32bU, 0x11113322U, + 0x6969bbd2U, 0xd9d970a9U, 0x8e8e8907U, 0x9494a733U, + 0x9b9bb62dU, 0x1e1e223cU, 0x87879215U, 0xe9e920c9U, + 0xcece4987U, 0x5555ffaaU, 0x28287850U, 0xdfdf7aa5U, + 0x8c8c8f03U, 0xa1a1f859U, 0x89898009U, 0x0d0d171aU, + 0xbfbfda65U, 0xe6e631d7U, 0x4242c684U, 0x6868b8d0U, + 0x4141c382U, 0x9999b029U, 0x2d2d775aU, 0x0f0f111eU, + 0xb0b0cb7bU, 0x5454fca8U, 0xbbbbd66dU, 0x16163a2cU, +}; + +static const u32 Te4[256] = +{ + 0x63636363U, 0x7c7c7c7cU, 0x77777777U, 0x7b7b7b7bU, + 0xf2f2f2f2U, 0x6b6b6b6bU, 0x6f6f6f6fU, 0xc5c5c5c5U, + 0x30303030U, 0x01010101U, 0x67676767U, 0x2b2b2b2bU, + 0xfefefefeU, 0xd7d7d7d7U, 0xababababU, 0x76767676U, + 0xcacacacaU, 0x82828282U, 0xc9c9c9c9U, 0x7d7d7d7dU, + 0xfafafafaU, 0x59595959U, 0x47474747U, 0xf0f0f0f0U, + 0xadadadadU, 0xd4d4d4d4U, 0xa2a2a2a2U, 0xafafafafU, + 0x9c9c9c9cU, 0xa4a4a4a4U, 0x72727272U, 0xc0c0c0c0U, + 0xb7b7b7b7U, 0xfdfdfdfdU, 0x93939393U, 0x26262626U, + 0x36363636U, 0x3f3f3f3fU, 0xf7f7f7f7U, 0xccccccccU, + 0x34343434U, 0xa5a5a5a5U, 0xe5e5e5e5U, 0xf1f1f1f1U, + 0x71717171U, 0xd8d8d8d8U, 0x31313131U, 0x15151515U, + 0x04040404U, 0xc7c7c7c7U, 0x23232323U, 0xc3c3c3c3U, + 0x18181818U, 0x96969696U, 0x05050505U, 0x9a9a9a9aU, + 0x07070707U, 0x12121212U, 0x80808080U, 0xe2e2e2e2U, + 0xebebebebU, 0x27272727U, 0xb2b2b2b2U, 0x75757575U, + 0x09090909U, 0x83838383U, 0x2c2c2c2cU, 0x1a1a1a1aU, + 0x1b1b1b1bU, 0x6e6e6e6eU, 0x5a5a5a5aU, 0xa0a0a0a0U, + 0x52525252U, 0x3b3b3b3bU, 0xd6d6d6d6U, 0xb3b3b3b3U, + 0x29292929U, 0xe3e3e3e3U, 0x2f2f2f2fU, 0x84848484U, + 0x53535353U, 0xd1d1d1d1U, 0x00000000U, 0xededededU, + 0x20202020U, 0xfcfcfcfcU, 0xb1b1b1b1U, 0x5b5b5b5bU, + 0x6a6a6a6aU, 0xcbcbcbcbU, 0xbebebebeU, 0x39393939U, + 0x4a4a4a4aU, 0x4c4c4c4cU, 0x58585858U, 0xcfcfcfcfU, + 0xd0d0d0d0U, 0xefefefefU, 0xaaaaaaaaU, 0xfbfbfbfbU, + 0x43434343U, 0x4d4d4d4dU, 0x33333333U, 0x85858585U, + 0x45454545U, 0xf9f9f9f9U, 0x02020202U, 0x7f7f7f7fU, + 0x50505050U, 0x3c3c3c3cU, 0x9f9f9f9fU, 0xa8a8a8a8U, + 0x51515151U, 0xa3a3a3a3U, 0x40404040U, 0x8f8f8f8fU, + 0x92929292U, 0x9d9d9d9dU, 0x38383838U, 0xf5f5f5f5U, + 0xbcbcbcbcU, 0xb6b6b6b6U, 0xdadadadaU, 0x21212121U, + 0x10101010U, 0xffffffffU, 0xf3f3f3f3U, 0xd2d2d2d2U, + 0xcdcdcdcdU, 0x0c0c0c0cU, 0x13131313U, 0xececececU, + 0x5f5f5f5fU, 0x97979797U, 0x44444444U, 0x17171717U, + 0xc4c4c4c4U, 0xa7a7a7a7U, 0x7e7e7e7eU, 0x3d3d3d3dU, + 0x64646464U, 0x5d5d5d5dU, 0x19191919U, 0x73737373U, + 0x60606060U, 0x81818181U, 0x4f4f4f4fU, 0xdcdcdcdcU, + 0x22222222U, 0x2a2a2a2aU, 0x90909090U, 0x88888888U, + 0x46464646U, 0xeeeeeeeeU, 0xb8b8b8b8U, 0x14141414U, + 0xdedededeU, 0x5e5e5e5eU, 0x0b0b0b0bU, 0xdbdbdbdbU, + 0xe0e0e0e0U, 0x32323232U, 0x3a3a3a3aU, 0x0a0a0a0aU, + 0x49494949U, 0x06060606U, 0x24242424U, 0x5c5c5c5cU, + 0xc2c2c2c2U, 0xd3d3d3d3U, 0xacacacacU, 0x62626262U, + 0x91919191U, 0x95959595U, 0xe4e4e4e4U, 0x79797979U, + 0xe7e7e7e7U, 0xc8c8c8c8U, 0x37373737U, 0x6d6d6d6dU, + 0x8d8d8d8dU, 0xd5d5d5d5U, 0x4e4e4e4eU, 0xa9a9a9a9U, + 0x6c6c6c6cU, 0x56565656U, 0xf4f4f4f4U, 0xeaeaeaeaU, + 0x65656565U, 0x7a7a7a7aU, 0xaeaeaeaeU, 0x08080808U, + 0xbabababaU, 0x78787878U, 0x25252525U, 0x2e2e2e2eU, + 0x1c1c1c1cU, 0xa6a6a6a6U, 0xb4b4b4b4U, 0xc6c6c6c6U, + 0xe8e8e8e8U, 0xddddddddU, 0x74747474U, 0x1f1f1f1fU, + 0x4b4b4b4bU, 0xbdbdbdbdU, 0x8b8b8b8bU, 0x8a8a8a8aU, + 0x70707070U, 0x3e3e3e3eU, 0xb5b5b5b5U, 0x66666666U, + 0x48484848U, 0x03030303U, 0xf6f6f6f6U, 0x0e0e0e0eU, + 0x61616161U, 0x35353535U, 0x57575757U, 0xb9b9b9b9U, + 0x86868686U, 0xc1c1c1c1U, 0x1d1d1d1dU, 0x9e9e9e9eU, + 0xe1e1e1e1U, 0xf8f8f8f8U, 0x98989898U, 0x11111111U, + 0x69696969U, 0xd9d9d9d9U, 0x8e8e8e8eU, 0x94949494U, + 0x9b9b9b9bU, 0x1e1e1e1eU, 0x87878787U, 0xe9e9e9e9U, + 0xcecececeU, 0x55555555U, 0x28282828U, 0xdfdfdfdfU, + 0x8c8c8c8cU, 0xa1a1a1a1U, 0x89898989U, 0x0d0d0d0dU, + 0xbfbfbfbfU, 0xe6e6e6e6U, 0x42424242U, 0x68686868U, + 0x41414141U, 0x99999999U, 0x2d2d2d2dU, 0x0f0f0f0fU, + 0xb0b0b0b0U, 0x54545454U, 0xbbbbbbbbU, 0x16161616U, +}; + +static const u32 Td0[256] = +{ + 0x51f4a750U, 0x7e416553U, 0x1a17a4c3U, 0x3a275e96U, + 0x3bab6bcbU, 0x1f9d45f1U, 0xacfa58abU, 0x4be30393U, + 0x2030fa55U, 0xad766df6U, 0x88cc7691U, 0xf5024c25U, + 0x4fe5d7fcU, 0xc52acbd7U, 0x26354480U, 0xb562a38fU, + 0xdeb15a49U, 0x25ba1b67U, 0x45ea0e98U, 0x5dfec0e1U, + 0xc32f7502U, 0x814cf012U, 0x8d4697a3U, 0x6bd3f9c6U, + 0x038f5fe7U, 0x15929c95U, 0xbf6d7aebU, 0x955259daU, + 0xd4be832dU, 0x587421d3U, 0x49e06929U, 0x8ec9c844U, + 0x75c2896aU, 0xf48e7978U, 0x99583e6bU, 0x27b971ddU, + 0xbee14fb6U, 0xf088ad17U, 0xc920ac66U, 0x7dce3ab4U, + 0x63df4a18U, 0xe51a3182U, 0x97513360U, 0x62537f45U, + 0xb16477e0U, 0xbb6bae84U, 0xfe81a01cU, 0xf9082b94U, + 0x70486858U, 0x8f45fd19U, 0x94de6c87U, 0x527bf8b7U, + 0xab73d323U, 0x724b02e2U, 0xe31f8f57U, 0x6655ab2aU, + 0xb2eb2807U, 0x2fb5c203U, 0x86c57b9aU, 0xd33708a5U, + 0x302887f2U, 0x23bfa5b2U, 0x02036abaU, 0xed16825cU, + 0x8acf1c2bU, 0xa779b492U, 0xf307f2f0U, 0x4e69e2a1U, + 0x65daf4cdU, 0x0605bed5U, 0xd134621fU, 0xc4a6fe8aU, + 0x342e539dU, 0xa2f355a0U, 0x058ae132U, 0xa4f6eb75U, + 0x0b83ec39U, 0x4060efaaU, 0x5e719f06U, 0xbd6e1051U, + 0x3e218af9U, 0x96dd063dU, 0xdd3e05aeU, 0x4de6bd46U, + 0x91548db5U, 0x71c45d05U, 0x0406d46fU, 0x605015ffU, + 0x1998fb24U, 0xd6bde997U, 0x894043ccU, 0x67d99e77U, + 0xb0e842bdU, 0x07898b88U, 0xe7195b38U, 0x79c8eedbU, + 0xa17c0a47U, 0x7c420fe9U, 0xf8841ec9U, 0x00000000U, + 0x09808683U, 0x322bed48U, 0x1e1170acU, 0x6c5a724eU, + 0xfd0efffbU, 0x0f853856U, 0x3daed51eU, 0x362d3927U, + 0x0a0fd964U, 0x685ca621U, 0x9b5b54d1U, 0x24362e3aU, + 0x0c0a67b1U, 0x9357e70fU, 0xb4ee96d2U, 0x1b9b919eU, + 0x80c0c54fU, 0x61dc20a2U, 0x5a774b69U, 0x1c121a16U, + 0xe293ba0aU, 0xc0a02ae5U, 0x3c22e043U, 0x121b171dU, + 0x0e090d0bU, 0xf28bc7adU, 0x2db6a8b9U, 0x141ea9c8U, + 0x57f11985U, 0xaf75074cU, 0xee99ddbbU, 0xa37f60fdU, + 0xf701269fU, 0x5c72f5bcU, 0x44663bc5U, 0x5bfb7e34U, + 0x8b432976U, 0xcb23c6dcU, 0xb6edfc68U, 0xb8e4f163U, + 0xd731dccaU, 0x42638510U, 0x13972240U, 0x84c61120U, + 0x854a247dU, 0xd2bb3df8U, 0xaef93211U, 0xc729a16dU, + 0x1d9e2f4bU, 0xdcb230f3U, 0x0d8652ecU, 0x77c1e3d0U, + 0x2bb3166cU, 0xa970b999U, 0x119448faU, 0x47e96422U, + 0xa8fc8cc4U, 0xa0f03f1aU, 0x567d2cd8U, 0x223390efU, + 0x87494ec7U, 0xd938d1c1U, 0x8ccaa2feU, 0x98d40b36U, + 0xa6f581cfU, 0xa57ade28U, 0xdab78e26U, 0x3fadbfa4U, + 0x2c3a9de4U, 0x5078920dU, 0x6a5fcc9bU, 0x547e4662U, + 0xf68d13c2U, 0x90d8b8e8U, 0x2e39f75eU, 0x82c3aff5U, + 0x9f5d80beU, 0x69d0937cU, 0x6fd52da9U, 0xcf2512b3U, + 0xc8ac993bU, 0x10187da7U, 0xe89c636eU, 0xdb3bbb7bU, + 0xcd267809U, 0x6e5918f4U, 0xec9ab701U, 0x834f9aa8U, + 0xe6956e65U, 0xaaffe67eU, 0x21bccf08U, 0xef15e8e6U, + 0xbae79bd9U, 0x4a6f36ceU, 0xea9f09d4U, 0x29b07cd6U, + 0x31a4b2afU, 0x2a3f2331U, 0xc6a59430U, 0x35a266c0U, + 0x744ebc37U, 0xfc82caa6U, 0xe090d0b0U, 0x33a7d815U, + 0xf104984aU, 0x41ecdaf7U, 0x7fcd500eU, 0x1791f62fU, + 0x764dd68dU, 0x43efb04dU, 0xccaa4d54U, 0xe49604dfU, + 0x9ed1b5e3U, 0x4c6a881bU, 0xc12c1fb8U, 0x4665517fU, + 0x9d5eea04U, 0x018c355dU, 0xfa877473U, 0xfb0b412eU, + 0xb3671d5aU, 0x92dbd252U, 0xe9105633U, 0x6dd64713U, + 0x9ad7618cU, 0x37a10c7aU, 0x59f8148eU, 0xeb133c89U, + 0xcea927eeU, 0xb761c935U, 0xe11ce5edU, 0x7a47b13cU, + 0x9cd2df59U, 0x55f2733fU, 0x1814ce79U, 0x73c737bfU, + 0x53f7cdeaU, 0x5ffdaa5bU, 0xdf3d6f14U, 0x7844db86U, + 0xcaaff381U, 0xb968c43eU, 0x3824342cU, 0xc2a3405fU, + 0x161dc372U, 0xbce2250cU, 0x283c498bU, 0xff0d9541U, + 0x39a80171U, 0x080cb3deU, 0xd8b4e49cU, 0x6456c190U, + 0x7bcb8461U, 0xd532b670U, 0x486c5c74U, 0xd0b85742U, +}; + +static const u32 Td1[256] = +{ + 0x5051f4a7U, 0x537e4165U, 0xc31a17a4U, 0x963a275eU, + 0xcb3bab6bU, 0xf11f9d45U, 0xabacfa58U, 0x934be303U, + 0x552030faU, 0xf6ad766dU, 0x9188cc76U, 0x25f5024cU, + 0xfc4fe5d7U, 0xd7c52acbU, 0x80263544U, 0x8fb562a3U, + 0x49deb15aU, 0x6725ba1bU, 0x9845ea0eU, 0xe15dfec0U, + 0x02c32f75U, 0x12814cf0U, 0xa38d4697U, 0xc66bd3f9U, + 0xe7038f5fU, 0x9515929cU, 0xebbf6d7aU, 0xda955259U, + 0x2dd4be83U, 0xd3587421U, 0x2949e069U, 0x448ec9c8U, + 0x6a75c289U, 0x78f48e79U, 0x6b99583eU, 0xdd27b971U, + 0xb6bee14fU, 0x17f088adU, 0x66c920acU, 0xb47dce3aU, + 0x1863df4aU, 0x82e51a31U, 0x60975133U, 0x4562537fU, + 0xe0b16477U, 0x84bb6baeU, 0x1cfe81a0U, 0x94f9082bU, + 0x58704868U, 0x198f45fdU, 0x8794de6cU, 0xb7527bf8U, + 0x23ab73d3U, 0xe2724b02U, 0x57e31f8fU, 0x2a6655abU, + 0x07b2eb28U, 0x032fb5c2U, 0x9a86c57bU, 0xa5d33708U, + 0xf2302887U, 0xb223bfa5U, 0xba02036aU, 0x5ced1682U, + 0x2b8acf1cU, 0x92a779b4U, 0xf0f307f2U, 0xa14e69e2U, + 0xcd65daf4U, 0xd50605beU, 0x1fd13462U, 0x8ac4a6feU, + 0x9d342e53U, 0xa0a2f355U, 0x32058ae1U, 0x75a4f6ebU, + 0x390b83ecU, 0xaa4060efU, 0x065e719fU, 0x51bd6e10U, + 0xf93e218aU, 0x3d96dd06U, 0xaedd3e05U, 0x464de6bdU, + 0xb591548dU, 0x0571c45dU, 0x6f0406d4U, 0xff605015U, + 0x241998fbU, 0x97d6bde9U, 0xcc894043U, 0x7767d99eU, + 0xbdb0e842U, 0x8807898bU, 0x38e7195bU, 0xdb79c8eeU, + 0x47a17c0aU, 0xe97c420fU, 0xc9f8841eU, 0x00000000U, + 0x83098086U, 0x48322bedU, 0xac1e1170U, 0x4e6c5a72U, + 0xfbfd0effU, 0x560f8538U, 0x1e3daed5U, 0x27362d39U, + 0x640a0fd9U, 0x21685ca6U, 0xd19b5b54U, 0x3a24362eU, + 0xb10c0a67U, 0x0f9357e7U, 0xd2b4ee96U, 0x9e1b9b91U, + 0x4f80c0c5U, 0xa261dc20U, 0x695a774bU, 0x161c121aU, + 0x0ae293baU, 0xe5c0a02aU, 0x433c22e0U, 0x1d121b17U, + 0x0b0e090dU, 0xadf28bc7U, 0xb92db6a8U, 0xc8141ea9U, + 0x8557f119U, 0x4caf7507U, 0xbbee99ddU, 0xfda37f60U, + 0x9ff70126U, 0xbc5c72f5U, 0xc544663bU, 0x345bfb7eU, + 0x768b4329U, 0xdccb23c6U, 0x68b6edfcU, 0x63b8e4f1U, + 0xcad731dcU, 0x10426385U, 0x40139722U, 0x2084c611U, + 0x7d854a24U, 0xf8d2bb3dU, 0x11aef932U, 0x6dc729a1U, + 0x4b1d9e2fU, 0xf3dcb230U, 0xec0d8652U, 0xd077c1e3U, + 0x6c2bb316U, 0x99a970b9U, 0xfa119448U, 0x2247e964U, + 0xc4a8fc8cU, 0x1aa0f03fU, 0xd8567d2cU, 0xef223390U, + 0xc787494eU, 0xc1d938d1U, 0xfe8ccaa2U, 0x3698d40bU, + 0xcfa6f581U, 0x28a57adeU, 0x26dab78eU, 0xa43fadbfU, + 0xe42c3a9dU, 0x0d507892U, 0x9b6a5fccU, 0x62547e46U, + 0xc2f68d13U, 0xe890d8b8U, 0x5e2e39f7U, 0xf582c3afU, + 0xbe9f5d80U, 0x7c69d093U, 0xa96fd52dU, 0xb3cf2512U, + 0x3bc8ac99U, 0xa710187dU, 0x6ee89c63U, 0x7bdb3bbbU, + 0x09cd2678U, 0xf46e5918U, 0x01ec9ab7U, 0xa8834f9aU, + 0x65e6956eU, 0x7eaaffe6U, 0x0821bccfU, 0xe6ef15e8U, + 0xd9bae79bU, 0xce4a6f36U, 0xd4ea9f09U, 0xd629b07cU, + 0xaf31a4b2U, 0x312a3f23U, 0x30c6a594U, 0xc035a266U, + 0x37744ebcU, 0xa6fc82caU, 0xb0e090d0U, 0x1533a7d8U, + 0x4af10498U, 0xf741ecdaU, 0x0e7fcd50U, 0x2f1791f6U, + 0x8d764dd6U, 0x4d43efb0U, 0x54ccaa4dU, 0xdfe49604U, + 0xe39ed1b5U, 0x1b4c6a88U, 0xb8c12c1fU, 0x7f466551U, + 0x049d5eeaU, 0x5d018c35U, 0x73fa8774U, 0x2efb0b41U, + 0x5ab3671dU, 0x5292dbd2U, 0x33e91056U, 0x136dd647U, + 0x8c9ad761U, 0x7a37a10cU, 0x8e59f814U, 0x89eb133cU, + 0xeecea927U, 0x35b761c9U, 0xede11ce5U, 0x3c7a47b1U, + 0x599cd2dfU, 0x3f55f273U, 0x791814ceU, 0xbf73c737U, + 0xea53f7cdU, 0x5b5ffdaaU, 0x14df3d6fU, 0x867844dbU, + 0x81caaff3U, 0x3eb968c4U, 0x2c382434U, 0x5fc2a340U, + 0x72161dc3U, 0x0cbce225U, 0x8b283c49U, 0x41ff0d95U, + 0x7139a801U, 0xde080cb3U, 0x9cd8b4e4U, 0x906456c1U, + 0x617bcb84U, 0x70d532b6U, 0x74486c5cU, 0x42d0b857U, +}; + +static const u32 Td2[256] = +{ + 0xa75051f4U, 0x65537e41U, 0xa4c31a17U, 0x5e963a27U, + 0x6bcb3babU, 0x45f11f9dU, 0x58abacfaU, 0x03934be3U, + 0xfa552030U, 0x6df6ad76U, 0x769188ccU, 0x4c25f502U, + 0xd7fc4fe5U, 0xcbd7c52aU, 0x44802635U, 0xa38fb562U, + 0x5a49deb1U, 0x1b6725baU, 0x0e9845eaU, 0xc0e15dfeU, + 0x7502c32fU, 0xf012814cU, 0x97a38d46U, 0xf9c66bd3U, + 0x5fe7038fU, 0x9c951592U, 0x7aebbf6dU, 0x59da9552U, + 0x832dd4beU, 0x21d35874U, 0x692949e0U, 0xc8448ec9U, + 0x896a75c2U, 0x7978f48eU, 0x3e6b9958U, 0x71dd27b9U, + 0x4fb6bee1U, 0xad17f088U, 0xac66c920U, 0x3ab47dceU, + 0x4a1863dfU, 0x3182e51aU, 0x33609751U, 0x7f456253U, + 0x77e0b164U, 0xae84bb6bU, 0xa01cfe81U, 0x2b94f908U, + 0x68587048U, 0xfd198f45U, 0x6c8794deU, 0xf8b7527bU, + 0xd323ab73U, 0x02e2724bU, 0x8f57e31fU, 0xab2a6655U, + 0x2807b2ebU, 0xc2032fb5U, 0x7b9a86c5U, 0x08a5d337U, + 0x87f23028U, 0xa5b223bfU, 0x6aba0203U, 0x825ced16U, + 0x1c2b8acfU, 0xb492a779U, 0xf2f0f307U, 0xe2a14e69U, + 0xf4cd65daU, 0xbed50605U, 0x621fd134U, 0xfe8ac4a6U, + 0x539d342eU, 0x55a0a2f3U, 0xe132058aU, 0xeb75a4f6U, + 0xec390b83U, 0xefaa4060U, 0x9f065e71U, 0x1051bd6eU, + 0x8af93e21U, 0x063d96ddU, 0x05aedd3eU, 0xbd464de6U, + 0x8db59154U, 0x5d0571c4U, 0xd46f0406U, 0x15ff6050U, + 0xfb241998U, 0xe997d6bdU, 0x43cc8940U, 0x9e7767d9U, + 0x42bdb0e8U, 0x8b880789U, 0x5b38e719U, 0xeedb79c8U, + 0x0a47a17cU, 0x0fe97c42U, 0x1ec9f884U, 0x00000000U, + 0x86830980U, 0xed48322bU, 0x70ac1e11U, 0x724e6c5aU, + 0xfffbfd0eU, 0x38560f85U, 0xd51e3daeU, 0x3927362dU, + 0xd9640a0fU, 0xa621685cU, 0x54d19b5bU, 0x2e3a2436U, + 0x67b10c0aU, 0xe70f9357U, 0x96d2b4eeU, 0x919e1b9bU, + 0xc54f80c0U, 0x20a261dcU, 0x4b695a77U, 0x1a161c12U, + 0xba0ae293U, 0x2ae5c0a0U, 0xe0433c22U, 0x171d121bU, + 0x0d0b0e09U, 0xc7adf28bU, 0xa8b92db6U, 0xa9c8141eU, + 0x198557f1U, 0x074caf75U, 0xddbbee99U, 0x60fda37fU, + 0x269ff701U, 0xf5bc5c72U, 0x3bc54466U, 0x7e345bfbU, + 0x29768b43U, 0xc6dccb23U, 0xfc68b6edU, 0xf163b8e4U, + 0xdccad731U, 0x85104263U, 0x22401397U, 0x112084c6U, + 0x247d854aU, 0x3df8d2bbU, 0x3211aef9U, 0xa16dc729U, + 0x2f4b1d9eU, 0x30f3dcb2U, 0x52ec0d86U, 0xe3d077c1U, + 0x166c2bb3U, 0xb999a970U, 0x48fa1194U, 0x642247e9U, + 0x8cc4a8fcU, 0x3f1aa0f0U, 0x2cd8567dU, 0x90ef2233U, + 0x4ec78749U, 0xd1c1d938U, 0xa2fe8ccaU, 0x0b3698d4U, + 0x81cfa6f5U, 0xde28a57aU, 0x8e26dab7U, 0xbfa43fadU, + 0x9de42c3aU, 0x920d5078U, 0xcc9b6a5fU, 0x4662547eU, + 0x13c2f68dU, 0xb8e890d8U, 0xf75e2e39U, 0xaff582c3U, + 0x80be9f5dU, 0x937c69d0U, 0x2da96fd5U, 0x12b3cf25U, + 0x993bc8acU, 0x7da71018U, 0x636ee89cU, 0xbb7bdb3bU, + 0x7809cd26U, 0x18f46e59U, 0xb701ec9aU, 0x9aa8834fU, + 0x6e65e695U, 0xe67eaaffU, 0xcf0821bcU, 0xe8e6ef15U, + 0x9bd9bae7U, 0x36ce4a6fU, 0x09d4ea9fU, 0x7cd629b0U, + 0xb2af31a4U, 0x23312a3fU, 0x9430c6a5U, 0x66c035a2U, + 0xbc37744eU, 0xcaa6fc82U, 0xd0b0e090U, 0xd81533a7U, + 0x984af104U, 0xdaf741ecU, 0x500e7fcdU, 0xf62f1791U, + 0xd68d764dU, 0xb04d43efU, 0x4d54ccaaU, 0x04dfe496U, + 0xb5e39ed1U, 0x881b4c6aU, 0x1fb8c12cU, 0x517f4665U, + 0xea049d5eU, 0x355d018cU, 0x7473fa87U, 0x412efb0bU, + 0x1d5ab367U, 0xd25292dbU, 0x5633e910U, 0x47136dd6U, + 0x618c9ad7U, 0x0c7a37a1U, 0x148e59f8U, 0x3c89eb13U, + 0x27eecea9U, 0xc935b761U, 0xe5ede11cU, 0xb13c7a47U, + 0xdf599cd2U, 0x733f55f2U, 0xce791814U, 0x37bf73c7U, + 0xcdea53f7U, 0xaa5b5ffdU, 0x6f14df3dU, 0xdb867844U, + 0xf381caafU, 0xc43eb968U, 0x342c3824U, 0x405fc2a3U, + 0xc372161dU, 0x250cbce2U, 0x498b283cU, 0x9541ff0dU, + 0x017139a8U, 0xb3de080cU, 0xe49cd8b4U, 0xc1906456U, + 0x84617bcbU, 0xb670d532U, 0x5c74486cU, 0x5742d0b8U, +}; + +static const u32 Td3[256] = +{ + 0xf4a75051U, 0x4165537eU, 0x17a4c31aU, 0x275e963aU, + 0xab6bcb3bU, 0x9d45f11fU, 0xfa58abacU, 0xe303934bU, + 0x30fa5520U, 0x766df6adU, 0xcc769188U, 0x024c25f5U, + 0xe5d7fc4fU, 0x2acbd7c5U, 0x35448026U, 0x62a38fb5U, + 0xb15a49deU, 0xba1b6725U, 0xea0e9845U, 0xfec0e15dU, + 0x2f7502c3U, 0x4cf01281U, 0x4697a38dU, 0xd3f9c66bU, + 0x8f5fe703U, 0x929c9515U, 0x6d7aebbfU, 0x5259da95U, + 0xbe832dd4U, 0x7421d358U, 0xe0692949U, 0xc9c8448eU, + 0xc2896a75U, 0x8e7978f4U, 0x583e6b99U, 0xb971dd27U, + 0xe14fb6beU, 0x88ad17f0U, 0x20ac66c9U, 0xce3ab47dU, + 0xdf4a1863U, 0x1a3182e5U, 0x51336097U, 0x537f4562U, + 0x6477e0b1U, 0x6bae84bbU, 0x81a01cfeU, 0x082b94f9U, + 0x48685870U, 0x45fd198fU, 0xde6c8794U, 0x7bf8b752U, + 0x73d323abU, 0x4b02e272U, 0x1f8f57e3U, 0x55ab2a66U, + 0xeb2807b2U, 0xb5c2032fU, 0xc57b9a86U, 0x3708a5d3U, + 0x2887f230U, 0xbfa5b223U, 0x036aba02U, 0x16825cedU, + 0xcf1c2b8aU, 0x79b492a7U, 0x07f2f0f3U, 0x69e2a14eU, + 0xdaf4cd65U, 0x05bed506U, 0x34621fd1U, 0xa6fe8ac4U, + 0x2e539d34U, 0xf355a0a2U, 0x8ae13205U, 0xf6eb75a4U, + 0x83ec390bU, 0x60efaa40U, 0x719f065eU, 0x6e1051bdU, + 0x218af93eU, 0xdd063d96U, 0x3e05aeddU, 0xe6bd464dU, + 0x548db591U, 0xc45d0571U, 0x06d46f04U, 0x5015ff60U, + 0x98fb2419U, 0xbde997d6U, 0x4043cc89U, 0xd99e7767U, + 0xe842bdb0U, 0x898b8807U, 0x195b38e7U, 0xc8eedb79U, + 0x7c0a47a1U, 0x420fe97cU, 0x841ec9f8U, 0x00000000U, + 0x80868309U, 0x2bed4832U, 0x1170ac1eU, 0x5a724e6cU, + 0x0efffbfdU, 0x8538560fU, 0xaed51e3dU, 0x2d392736U, + 0x0fd9640aU, 0x5ca62168U, 0x5b54d19bU, 0x362e3a24U, + 0x0a67b10cU, 0x57e70f93U, 0xee96d2b4U, 0x9b919e1bU, + 0xc0c54f80U, 0xdc20a261U, 0x774b695aU, 0x121a161cU, + 0x93ba0ae2U, 0xa02ae5c0U, 0x22e0433cU, 0x1b171d12U, + 0x090d0b0eU, 0x8bc7adf2U, 0xb6a8b92dU, 0x1ea9c814U, + 0xf1198557U, 0x75074cafU, 0x99ddbbeeU, 0x7f60fda3U, + 0x01269ff7U, 0x72f5bc5cU, 0x663bc544U, 0xfb7e345bU, + 0x4329768bU, 0x23c6dccbU, 0xedfc68b6U, 0xe4f163b8U, + 0x31dccad7U, 0x63851042U, 0x97224013U, 0xc6112084U, + 0x4a247d85U, 0xbb3df8d2U, 0xf93211aeU, 0x29a16dc7U, + 0x9e2f4b1dU, 0xb230f3dcU, 0x8652ec0dU, 0xc1e3d077U, + 0xb3166c2bU, 0x70b999a9U, 0x9448fa11U, 0xe9642247U, + 0xfc8cc4a8U, 0xf03f1aa0U, 0x7d2cd856U, 0x3390ef22U, + 0x494ec787U, 0x38d1c1d9U, 0xcaa2fe8cU, 0xd40b3698U, + 0xf581cfa6U, 0x7ade28a5U, 0xb78e26daU, 0xadbfa43fU, + 0x3a9de42cU, 0x78920d50U, 0x5fcc9b6aU, 0x7e466254U, + 0x8d13c2f6U, 0xd8b8e890U, 0x39f75e2eU, 0xc3aff582U, + 0x5d80be9fU, 0xd0937c69U, 0xd52da96fU, 0x2512b3cfU, + 0xac993bc8U, 0x187da710U, 0x9c636ee8U, 0x3bbb7bdbU, + 0x267809cdU, 0x5918f46eU, 0x9ab701ecU, 0x4f9aa883U, + 0x956e65e6U, 0xffe67eaaU, 0xbccf0821U, 0x15e8e6efU, + 0xe79bd9baU, 0x6f36ce4aU, 0x9f09d4eaU, 0xb07cd629U, + 0xa4b2af31U, 0x3f23312aU, 0xa59430c6U, 0xa266c035U, + 0x4ebc3774U, 0x82caa6fcU, 0x90d0b0e0U, 0xa7d81533U, + 0x04984af1U, 0xecdaf741U, 0xcd500e7fU, 0x91f62f17U, + 0x4dd68d76U, 0xefb04d43U, 0xaa4d54ccU, 0x9604dfe4U, + 0xd1b5e39eU, 0x6a881b4cU, 0x2c1fb8c1U, 0x65517f46U, + 0x5eea049dU, 0x8c355d01U, 0x877473faU, 0x0b412efbU, + 0x671d5ab3U, 0xdbd25292U, 0x105633e9U, 0xd647136dU, + 0xd7618c9aU, 0xa10c7a37U, 0xf8148e59U, 0x133c89ebU, + 0xa927eeceU, 0x61c935b7U, 0x1ce5ede1U, 0x47b13c7aU, + 0xd2df599cU, 0xf2733f55U, 0x14ce7918U, 0xc737bf73U, + 0xf7cdea53U, 0xfdaa5b5fU, 0x3d6f14dfU, 0x44db8678U, + 0xaff381caU, 0x68c43eb9U, 0x24342c38U, 0xa3405fc2U, + 0x1dc37216U, 0xe2250cbcU, 0x3c498b28U, 0x0d9541ffU, + 0xa8017139U, 0x0cb3de08U, 0xb4e49cd8U, 0x56c19064U, + 0xcb84617bU, 0x32b670d5U, 0x6c5c7448U, 0xb85742d0U, +}; + +static const u32 Td4[256] = +{ + 0x52525252U, 0x09090909U, 0x6a6a6a6aU, 0xd5d5d5d5U, + 0x30303030U, 0x36363636U, 0xa5a5a5a5U, 0x38383838U, + 0xbfbfbfbfU, 0x40404040U, 0xa3a3a3a3U, 0x9e9e9e9eU, + 0x81818181U, 0xf3f3f3f3U, 0xd7d7d7d7U, 0xfbfbfbfbU, + 0x7c7c7c7cU, 0xe3e3e3e3U, 0x39393939U, 0x82828282U, + 0x9b9b9b9bU, 0x2f2f2f2fU, 0xffffffffU, 0x87878787U, + 0x34343434U, 0x8e8e8e8eU, 0x43434343U, 0x44444444U, + 0xc4c4c4c4U, 0xdedededeU, 0xe9e9e9e9U, 0xcbcbcbcbU, + 0x54545454U, 0x7b7b7b7bU, 0x94949494U, 0x32323232U, + 0xa6a6a6a6U, 0xc2c2c2c2U, 0x23232323U, 0x3d3d3d3dU, + 0xeeeeeeeeU, 0x4c4c4c4cU, 0x95959595U, 0x0b0b0b0bU, + 0x42424242U, 0xfafafafaU, 0xc3c3c3c3U, 0x4e4e4e4eU, + 0x08080808U, 0x2e2e2e2eU, 0xa1a1a1a1U, 0x66666666U, + 0x28282828U, 0xd9d9d9d9U, 0x24242424U, 0xb2b2b2b2U, + 0x76767676U, 0x5b5b5b5bU, 0xa2a2a2a2U, 0x49494949U, + 0x6d6d6d6dU, 0x8b8b8b8bU, 0xd1d1d1d1U, 0x25252525U, + 0x72727272U, 0xf8f8f8f8U, 0xf6f6f6f6U, 0x64646464U, + 0x86868686U, 0x68686868U, 0x98989898U, 0x16161616U, + 0xd4d4d4d4U, 0xa4a4a4a4U, 0x5c5c5c5cU, 0xccccccccU, + 0x5d5d5d5dU, 0x65656565U, 0xb6b6b6b6U, 0x92929292U, + 0x6c6c6c6cU, 0x70707070U, 0x48484848U, 0x50505050U, + 0xfdfdfdfdU, 0xededededU, 0xb9b9b9b9U, 0xdadadadaU, + 0x5e5e5e5eU, 0x15151515U, 0x46464646U, 0x57575757U, + 0xa7a7a7a7U, 0x8d8d8d8dU, 0x9d9d9d9dU, 0x84848484U, + 0x90909090U, 0xd8d8d8d8U, 0xababababU, 0x00000000U, + 0x8c8c8c8cU, 0xbcbcbcbcU, 0xd3d3d3d3U, 0x0a0a0a0aU, + 0xf7f7f7f7U, 0xe4e4e4e4U, 0x58585858U, 0x05050505U, + 0xb8b8b8b8U, 0xb3b3b3b3U, 0x45454545U, 0x06060606U, + 0xd0d0d0d0U, 0x2c2c2c2cU, 0x1e1e1e1eU, 0x8f8f8f8fU, + 0xcacacacaU, 0x3f3f3f3fU, 0x0f0f0f0fU, 0x02020202U, + 0xc1c1c1c1U, 0xafafafafU, 0xbdbdbdbdU, 0x03030303U, + 0x01010101U, 0x13131313U, 0x8a8a8a8aU, 0x6b6b6b6bU, + 0x3a3a3a3aU, 0x91919191U, 0x11111111U, 0x41414141U, + 0x4f4f4f4fU, 0x67676767U, 0xdcdcdcdcU, 0xeaeaeaeaU, + 0x97979797U, 0xf2f2f2f2U, 0xcfcfcfcfU, 0xcecececeU, + 0xf0f0f0f0U, 0xb4b4b4b4U, 0xe6e6e6e6U, 0x73737373U, + 0x96969696U, 0xacacacacU, 0x74747474U, 0x22222222U, + 0xe7e7e7e7U, 0xadadadadU, 0x35353535U, 0x85858585U, + 0xe2e2e2e2U, 0xf9f9f9f9U, 0x37373737U, 0xe8e8e8e8U, + 0x1c1c1c1cU, 0x75757575U, 0xdfdfdfdfU, 0x6e6e6e6eU, + 0x47474747U, 0xf1f1f1f1U, 0x1a1a1a1aU, 0x71717171U, + 0x1d1d1d1dU, 0x29292929U, 0xc5c5c5c5U, 0x89898989U, + 0x6f6f6f6fU, 0xb7b7b7b7U, 0x62626262U, 0x0e0e0e0eU, + 0xaaaaaaaaU, 0x18181818U, 0xbebebebeU, 0x1b1b1b1bU, + 0xfcfcfcfcU, 0x56565656U, 0x3e3e3e3eU, 0x4b4b4b4bU, + 0xc6c6c6c6U, 0xd2d2d2d2U, 0x79797979U, 0x20202020U, + 0x9a9a9a9aU, 0xdbdbdbdbU, 0xc0c0c0c0U, 0xfefefefeU, + 0x78787878U, 0xcdcdcdcdU, 0x5a5a5a5aU, 0xf4f4f4f4U, + 0x1f1f1f1fU, 0xddddddddU, 0xa8a8a8a8U, 0x33333333U, + 0x88888888U, 0x07070707U, 0xc7c7c7c7U, 0x31313131U, + 0xb1b1b1b1U, 0x12121212U, 0x10101010U, 0x59595959U, + 0x27272727U, 0x80808080U, 0xececececU, 0x5f5f5f5fU, + 0x60606060U, 0x51515151U, 0x7f7f7f7fU, 0xa9a9a9a9U, + 0x19191919U, 0xb5b5b5b5U, 0x4a4a4a4aU, 0x0d0d0d0dU, + 0x2d2d2d2dU, 0xe5e5e5e5U, 0x7a7a7a7aU, 0x9f9f9f9fU, + 0x93939393U, 0xc9c9c9c9U, 0x9c9c9c9cU, 0xefefefefU, + 0xa0a0a0a0U, 0xe0e0e0e0U, 0x3b3b3b3bU, 0x4d4d4d4dU, + 0xaeaeaeaeU, 0x2a2a2a2aU, 0xf5f5f5f5U, 0xb0b0b0b0U, + 0xc8c8c8c8U, 0xebebebebU, 0xbbbbbbbbU, 0x3c3c3c3cU, + 0x83838383U, 0x53535353U, 0x99999999U, 0x61616161U, + 0x17171717U, 0x2b2b2b2bU, 0x04040404U, 0x7e7e7e7eU, + 0xbabababaU, 0x77777777U, 0xd6d6d6d6U, 0x26262626U, + 0xe1e1e1e1U, 0x69696969U, 0x14141414U, 0x63636363U, + 0x55555555U, 0x21212121U, 0x0c0c0c0cU, 0x7d7d7d7dU, +}; + +static const u32 rcon[] = +{ + 0x01000000, 0x02000000, 0x04000000, 0x08000000, + 0x10000000, 0x20000000, 0x40000000, 0x80000000, + 0x1B000000, 0x36000000, + /* for 128-bit blocks, Rijndael never uses more than 10 rcon values */ +}; + +#define GETU32(plaintext) (((u32)(plaintext)[0] << 24) ^ \ + ((u32)(plaintext)[1] << 16) ^ \ + ((u32)(plaintext)[2] << 8) ^ \ + ((u32)(plaintext)[3])) + +#define PUTU32(ciphertext, st) { (ciphertext)[0] = (u8)((st) >> 24); \ + (ciphertext)[1] = (u8)((st) >> 16); \ + (ciphertext)[2] = (u8)((st) >> 8); \ + (ciphertext)[3] = (u8)(st); } + +/** + * Expand the cipher key into the encryption key schedule. + * + * @return the number of rounds for the given cipher key size. + */ +int rijndaelSetupEncrypt(u32 *rk, const u8 *key, int keybits) +{ + int i = 0; + u32 temp; + + rk[0] = GETU32(key ); + rk[1] = GETU32(key + 4); + rk[2] = GETU32(key + 8); + rk[3] = GETU32(key + 12); + if (keybits == 128) + { + for (;;) + { + temp = rk[3]; + rk[4] = rk[0] ^ + (Te4[(temp >> 16) & 0xff] & 0xff000000) ^ + (Te4[(temp >> 8) & 0xff] & 0x00ff0000) ^ + (Te4[(temp ) & 0xff] & 0x0000ff00) ^ + (Te4[(temp >> 24) ] & 0x000000ff) ^ + rcon[i]; + rk[5] = rk[1] ^ rk[4]; + rk[6] = rk[2] ^ rk[5]; + rk[7] = rk[3] ^ rk[6]; + if (++i == 10) + return 10; + rk += 4; + } + } + rk[4] = GETU32(key + 16); + rk[5] = GETU32(key + 20); + if (keybits == 192) + { + for (;;) + { + temp = rk[ 5]; + rk[ 6] = rk[ 0] ^ + (Te4[(temp >> 16) & 0xff] & 0xff000000) ^ + (Te4[(temp >> 8) & 0xff] & 0x00ff0000) ^ + (Te4[(temp ) & 0xff] & 0x0000ff00) ^ + (Te4[(temp >> 24) ] & 0x000000ff) ^ + rcon[i]; + rk[ 7] = rk[ 1] ^ rk[ 6]; + rk[ 8] = rk[ 2] ^ rk[ 7]; + rk[ 9] = rk[ 3] ^ rk[ 8]; + if (++i == 8) + return 12; + rk[10] = rk[ 4] ^ rk[ 9]; + rk[11] = rk[ 5] ^ rk[10]; + rk += 6; + } + } + rk[6] = GETU32(key + 24); + rk[7] = GETU32(key + 28); + if (keybits == 256) + { + for (;;) + { + temp = rk[ 7]; + rk[ 8] = rk[ 0] ^ + (Te4[(temp >> 16) & 0xff] & 0xff000000) ^ + (Te4[(temp >> 8) & 0xff] & 0x00ff0000) ^ + (Te4[(temp ) & 0xff] & 0x0000ff00) ^ + (Te4[(temp >> 24) ] & 0x000000ff) ^ + rcon[i]; + rk[ 9] = rk[ 1] ^ rk[ 8]; + rk[10] = rk[ 2] ^ rk[ 9]; + rk[11] = rk[ 3] ^ rk[10]; + if (++i == 7) + return 14; + temp = rk[11]; + rk[12] = rk[ 4] ^ + (Te4[(temp >> 24) ] & 0xff000000) ^ + (Te4[(temp >> 16) & 0xff] & 0x00ff0000) ^ + (Te4[(temp >> 8) & 0xff] & 0x0000ff00) ^ + (Te4[(temp ) & 0xff] & 0x000000ff); + rk[13] = rk[ 5] ^ rk[12]; + rk[14] = rk[ 6] ^ rk[13]; + rk[15] = rk[ 7] ^ rk[14]; + rk += 8; + } + } + return 0; +} + +/** + * Expand the cipher key into the decryption key schedule. + * + * @return the number of rounds for the given cipher key size. + */ +int rijndaelSetupDecrypt(u32 *rk, const u8 *key, int keybits) +{ + int nrounds, i, j; + u32 temp; + + /* expand the cipher key: */ + nrounds = rijndaelSetupEncrypt(rk, key, keybits); + /* invert the order of the round keys: */ + for (i = 0, j = 4*nrounds; i < j; i += 4, j -= 4) + { + temp = rk[i ]; rk[i ] = rk[j ]; rk[j ] = temp; + temp = rk[i + 1]; rk[i + 1] = rk[j + 1]; rk[j + 1] = temp; + temp = rk[i + 2]; rk[i + 2] = rk[j + 2]; rk[j + 2] = temp; + temp = rk[i + 3]; rk[i + 3] = rk[j + 3]; rk[j + 3] = temp; + } + /* apply the inverse MixColumn transform to all round keys but the first and the last: */ + for (i = 1; i < nrounds; i++) + { + rk += 4; + rk[0] = + Td0[Te4[(rk[0] >> 24) ] & 0xff] ^ + Td1[Te4[(rk[0] >> 16) & 0xff] & 0xff] ^ + Td2[Te4[(rk[0] >> 8) & 0xff] & 0xff] ^ + Td3[Te4[(rk[0] ) & 0xff] & 0xff]; + rk[1] = + Td0[Te4[(rk[1] >> 24) ] & 0xff] ^ + Td1[Te4[(rk[1] >> 16) & 0xff] & 0xff] ^ + Td2[Te4[(rk[1] >> 8) & 0xff] & 0xff] ^ + Td3[Te4[(rk[1] ) & 0xff] & 0xff]; + rk[2] = + Td0[Te4[(rk[2] >> 24) ] & 0xff] ^ + Td1[Te4[(rk[2] >> 16) & 0xff] & 0xff] ^ + Td2[Te4[(rk[2] >> 8) & 0xff] & 0xff] ^ + Td3[Te4[(rk[2] ) & 0xff] & 0xff]; + rk[3] = + Td0[Te4[(rk[3] >> 24) ] & 0xff] ^ + Td1[Te4[(rk[3] >> 16) & 0xff] & 0xff] ^ + Td2[Te4[(rk[3] >> 8) & 0xff] & 0xff] ^ + Td3[Te4[(rk[3] ) & 0xff] & 0xff]; + } + return nrounds; +} + +void rijndaelEncrypt(const u32 *rk, int nrounds, const u8 plaintext[16], + u8 ciphertext[16]) +{ + u32 s0, s1, s2, s3, t0, t1, t2, t3; + #ifndef FULL_UNROLL + int r; + #endif /* ?FULL_UNROLL */ + /* + * map byte array block to cipher state + * and add initial round key: + */ + s0 = GETU32(plaintext ) ^ rk[0]; + s1 = GETU32(plaintext + 4) ^ rk[1]; + s2 = GETU32(plaintext + 8) ^ rk[2]; + s3 = GETU32(plaintext + 12) ^ rk[3]; + #ifdef FULL_UNROLL + /* round 1: */ + t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4]; + t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[ 5]; + t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6]; + t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[ 7]; + /* round 2: */ + s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[ 8]; + s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[ 9]; + s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[10]; + s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[11]; + /* round 3: */ + t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12]; + t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13]; + t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[14]; + t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[15]; + /* round 4: */ + s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[16]; + s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[17]; + s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[18]; + s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[19]; + /* round 5: */ + t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[20]; + t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[21]; + t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[22]; + t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[23]; + /* round 6: */ + s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[24]; + s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[25]; + s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[26]; + s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[27]; + /* round 7: */ + t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[28]; + t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[29]; + t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[30]; + t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[31]; + /* round 8: */ + s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[32]; + s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[33]; + s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[34]; + s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[35]; + /* round 9: */ + t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[36]; + t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[37]; + t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[38]; + t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[39]; + if (nrounds > 10) + { + /* round 10: */ + s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[40]; + s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[41]; + s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[42]; + s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[43]; + /* round 11: */ + t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[44]; + t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[45]; + t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[46]; + t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[47]; + if (nrounds > 12) + { + /* round 12: */ + s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[48]; + s1 = Te0[t1 >> 24] ^ Te1[(t2 >> 16) & 0xff] ^ Te2[(t3 >> 8) & 0xff] ^ Te3[t0 & 0xff] ^ rk[49]; + s2 = Te0[t2 >> 24] ^ Te1[(t3 >> 16) & 0xff] ^ Te2[(t0 >> 8) & 0xff] ^ Te3[t1 & 0xff] ^ rk[50]; + s3 = Te0[t3 >> 24] ^ Te1[(t0 >> 16) & 0xff] ^ Te2[(t1 >> 8) & 0xff] ^ Te3[t2 & 0xff] ^ rk[51]; + /* round 13: */ + t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[52]; + t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[53]; + t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[54]; + t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[55]; + } + } + rk += nrounds << 2; + #else /* !FULL_UNROLL */ + /* + * nrounds - 1 full rounds: + */ + r = nrounds >> 1; + for (;;) + { + t0 = + Te0[(s0 >> 24) ] ^ + Te1[(s1 >> 16) & 0xff] ^ + Te2[(s2 >> 8) & 0xff] ^ + Te3[(s3 ) & 0xff] ^ + rk[4]; + t1 = + Te0[(s1 >> 24) ] ^ + Te1[(s2 >> 16) & 0xff] ^ + Te2[(s3 >> 8) & 0xff] ^ + Te3[(s0 ) & 0xff] ^ + rk[5]; + t2 = + Te0[(s2 >> 24) ] ^ + Te1[(s3 >> 16) & 0xff] ^ + Te2[(s0 >> 8) & 0xff] ^ + Te3[(s1 ) & 0xff] ^ + rk[6]; + t3 = + Te0[(s3 >> 24) ] ^ + Te1[(s0 >> 16) & 0xff] ^ + Te2[(s1 >> 8) & 0xff] ^ + Te3[(s2 ) & 0xff] ^ + rk[7]; + rk += 8; + if (--r == 0) + break; + s0 = + Te0[(t0 >> 24) ] ^ + Te1[(t1 >> 16) & 0xff] ^ + Te2[(t2 >> 8) & 0xff] ^ + Te3[(t3 ) & 0xff] ^ + rk[0]; + s1 = + Te0[(t1 >> 24) ] ^ + Te1[(t2 >> 16) & 0xff] ^ + Te2[(t3 >> 8) & 0xff] ^ + Te3[(t0 ) & 0xff] ^ + rk[1]; + s2 = + Te0[(t2 >> 24) ] ^ + Te1[(t3 >> 16) & 0xff] ^ + Te2[(t0 >> 8) & 0xff] ^ + Te3[(t1 ) & 0xff] ^ + rk[2]; + s3 = + Te0[(t3 >> 24) ] ^ + Te1[(t0 >> 16) & 0xff] ^ + Te2[(t1 >> 8) & 0xff] ^ + Te3[(t2 ) & 0xff] ^ + rk[3]; + } + #endif /* ?FULL_UNROLL */ + /* + * apply last round and + * map cipher state to byte array block: + */ + s0 = + (Te4[(t0 >> 24) ] & 0xff000000) ^ + (Te4[(t1 >> 16) & 0xff] & 0x00ff0000) ^ + (Te4[(t2 >> 8) & 0xff] & 0x0000ff00) ^ + (Te4[(t3 ) & 0xff] & 0x000000ff) ^ + rk[0]; + PUTU32(ciphertext , s0); + s1 = + (Te4[(t1 >> 24) ] & 0xff000000) ^ + (Te4[(t2 >> 16) & 0xff] & 0x00ff0000) ^ + (Te4[(t3 >> 8) & 0xff] & 0x0000ff00) ^ + (Te4[(t0 ) & 0xff] & 0x000000ff) ^ + rk[1]; + PUTU32(ciphertext + 4, s1); + s2 = + (Te4[(t2 >> 24) ] & 0xff000000) ^ + (Te4[(t3 >> 16) & 0xff] & 0x00ff0000) ^ + (Te4[(t0 >> 8) & 0xff] & 0x0000ff00) ^ + (Te4[(t1 ) & 0xff] & 0x000000ff) ^ + rk[2]; + PUTU32(ciphertext + 8, s2); + s3 = + (Te4[(t3 >> 24) ] & 0xff000000) ^ + (Te4[(t0 >> 16) & 0xff] & 0x00ff0000) ^ + (Te4[(t1 >> 8) & 0xff] & 0x0000ff00) ^ + (Te4[(t2 ) & 0xff] & 0x000000ff) ^ + rk[3]; + PUTU32(ciphertext + 12, s3); +} + +void rijndaelDecrypt(const u32 *rk, int nrounds, const u8 ciphertext[16], + u8 plaintext[16]) +{ + u32 s0, s1, s2, s3, t0, t1, t2, t3; + #ifndef FULL_UNROLL + int r; + #endif /* ?FULL_UNROLL */ + + /* + * map byte array block to cipher state + * and add initial round key: + */ + s0 = GETU32(ciphertext ) ^ rk[0]; + s1 = GETU32(ciphertext + 4) ^ rk[1]; + s2 = GETU32(ciphertext + 8) ^ rk[2]; + s3 = GETU32(ciphertext + 12) ^ rk[3]; + #ifdef FULL_UNROLL + /* round 1: */ + t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[ 4]; + t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[ 5]; + t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[ 6]; + t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[ 7]; + /* round 2: */ + s0 = Td0[t0 >> 24] ^ Td1[(t3 >> 16) & 0xff] ^ Td2[(t2 >> 8) & 0xff] ^ Td3[t1 & 0xff] ^ rk[ 8]; + s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[ 9]; + s2 = Td0[t2 >> 24] ^ Td1[(t1 >> 16) & 0xff] ^ Td2[(t0 >> 8) & 0xff] ^ Td3[t3 & 0xff] ^ rk[10]; + s3 = Td0[t3 >> 24] ^ Td1[(t2 >> 16) & 0xff] ^ Td2[(t1 >> 8) & 0xff] ^ Td3[t0 & 0xff] ^ rk[11]; + /* round 3: */ + t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[12]; + t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[13]; + t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[14]; + t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[15]; + /* round 4: */ + s0 = Td0[t0 >> 24] ^ Td1[(t3 >> 16) & 0xff] ^ Td2[(t2 >> 8) & 0xff] ^ Td3[t1 & 0xff] ^ rk[16]; + s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[17]; + s2 = Td0[t2 >> 24] ^ Td1[(t1 >> 16) & 0xff] ^ Td2[(t0 >> 8) & 0xff] ^ Td3[t3 & 0xff] ^ rk[18]; + s3 = Td0[t3 >> 24] ^ Td1[(t2 >> 16) & 0xff] ^ Td2[(t1 >> 8) & 0xff] ^ Td3[t0 & 0xff] ^ rk[19]; + /* round 5: */ + t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[20]; + t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[21]; + t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[22]; + t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[23]; + /* round 6: */ + s0 = Td0[t0 >> 24] ^ Td1[(t3 >> 16) & 0xff] ^ Td2[(t2 >> 8) & 0xff] ^ Td3[t1 & 0xff] ^ rk[24]; + s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[25]; + s2 = Td0[t2 >> 24] ^ Td1[(t1 >> 16) & 0xff] ^ Td2[(t0 >> 8) & 0xff] ^ Td3[t3 & 0xff] ^ rk[26]; + s3 = Td0[t3 >> 24] ^ Td1[(t2 >> 16) & 0xff] ^ Td2[(t1 >> 8) & 0xff] ^ Td3[t0 & 0xff] ^ rk[27]; + /* round 7: */ + t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[28]; + t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[29]; + t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[30]; + t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[31]; + /* round 8: */ + s0 = Td0[t0 >> 24] ^ Td1[(t3 >> 16) & 0xff] ^ Td2[(t2 >> 8) & 0xff] ^ Td3[t1 & 0xff] ^ rk[32]; + s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[33]; + s2 = Td0[t2 >> 24] ^ Td1[(t1 >> 16) & 0xff] ^ Td2[(t0 >> 8) & 0xff] ^ Td3[t3 & 0xff] ^ rk[34]; + s3 = Td0[t3 >> 24] ^ Td1[(t2 >> 16) & 0xff] ^ Td2[(t1 >> 8) & 0xff] ^ Td3[t0 & 0xff] ^ rk[35]; + /* round 9: */ + t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[36]; + t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[37]; + t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[38]; + t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[39]; + if (nrounds > 10) + { + /* round 10: */ + s0 = Td0[t0 >> 24] ^ Td1[(t3 >> 16) & 0xff] ^ Td2[(t2 >> 8) & 0xff] ^ Td3[t1 & 0xff] ^ rk[40]; + s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[41]; + s2 = Td0[t2 >> 24] ^ Td1[(t1 >> 16) & 0xff] ^ Td2[(t0 >> 8) & 0xff] ^ Td3[t3 & 0xff] ^ rk[42]; + s3 = Td0[t3 >> 24] ^ Td1[(t2 >> 16) & 0xff] ^ Td2[(t1 >> 8) & 0xff] ^ Td3[t0 & 0xff] ^ rk[43]; + /* round 11: */ + t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[44]; + t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[45]; + t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[46]; + t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[47]; + if (nrounds > 12) + { + /* round 12: */ + s0 = Td0[t0 >> 24] ^ Td1[(t3 >> 16) & 0xff] ^ Td2[(t2 >> 8) & 0xff] ^ Td3[t1 & 0xff] ^ rk[48]; + s1 = Td0[t1 >> 24] ^ Td1[(t0 >> 16) & 0xff] ^ Td2[(t3 >> 8) & 0xff] ^ Td3[t2 & 0xff] ^ rk[49]; + s2 = Td0[t2 >> 24] ^ Td1[(t1 >> 16) & 0xff] ^ Td2[(t0 >> 8) & 0xff] ^ Td3[t3 & 0xff] ^ rk[50]; + s3 = Td0[t3 >> 24] ^ Td1[(t2 >> 16) & 0xff] ^ Td2[(t1 >> 8) & 0xff] ^ Td3[t0 & 0xff] ^ rk[51]; + /* round 13: */ + t0 = Td0[s0 >> 24] ^ Td1[(s3 >> 16) & 0xff] ^ Td2[(s2 >> 8) & 0xff] ^ Td3[s1 & 0xff] ^ rk[52]; + t1 = Td0[s1 >> 24] ^ Td1[(s0 >> 16) & 0xff] ^ Td2[(s3 >> 8) & 0xff] ^ Td3[s2 & 0xff] ^ rk[53]; + t2 = Td0[s2 >> 24] ^ Td1[(s1 >> 16) & 0xff] ^ Td2[(s0 >> 8) & 0xff] ^ Td3[s3 & 0xff] ^ rk[54]; + t3 = Td0[s3 >> 24] ^ Td1[(s2 >> 16) & 0xff] ^ Td2[(s1 >> 8) & 0xff] ^ Td3[s0 & 0xff] ^ rk[55]; + } + } + rk += nrounds << 2; + #else /* !FULL_UNROLL */ + /* + * nrounds - 1 full rounds: + */ + r = nrounds >> 1; + for (;;) + { + t0 = + Td0[(s0 >> 24) ] ^ + Td1[(s3 >> 16) & 0xff] ^ + Td2[(s2 >> 8) & 0xff] ^ + Td3[(s1 ) & 0xff] ^ + rk[4]; + t1 = + Td0[(s1 >> 24) ] ^ + Td1[(s0 >> 16) & 0xff] ^ + Td2[(s3 >> 8) & 0xff] ^ + Td3[(s2 ) & 0xff] ^ + rk[5]; + t2 = + Td0[(s2 >> 24) ] ^ + Td1[(s1 >> 16) & 0xff] ^ + Td2[(s0 >> 8) & 0xff] ^ + Td3[(s3 ) & 0xff] ^ + rk[6]; + t3 = + Td0[(s3 >> 24) ] ^ + Td1[(s2 >> 16) & 0xff] ^ + Td2[(s1 >> 8) & 0xff] ^ + Td3[(s0 ) & 0xff] ^ + rk[7]; + rk += 8; + if (--r == 0) + break; + s0 = + Td0[(t0 >> 24) ] ^ + Td1[(t3 >> 16) & 0xff] ^ + Td2[(t2 >> 8) & 0xff] ^ + Td3[(t1 ) & 0xff] ^ + rk[0]; + s1 = + Td0[(t1 >> 24) ] ^ + Td1[(t0 >> 16) & 0xff] ^ + Td2[(t3 >> 8) & 0xff] ^ + Td3[(t2 ) & 0xff] ^ + rk[1]; + s2 = + Td0[(t2 >> 24) ] ^ + Td1[(t1 >> 16) & 0xff] ^ + Td2[(t0 >> 8) & 0xff] ^ + Td3[(t3 ) & 0xff] ^ + rk[2]; + s3 = + Td0[(t3 >> 24) ] ^ + Td1[(t2 >> 16) & 0xff] ^ + Td2[(t1 >> 8) & 0xff] ^ + Td3[(t0 ) & 0xff] ^ + rk[3]; + } + #endif /* ?FULL_UNROLL */ + /* + * apply last round and + * map cipher state to byte array block: + */ + s0 = + (Td4[(t0 >> 24) ] & 0xff000000) ^ + (Td4[(t3 >> 16) & 0xff] & 0x00ff0000) ^ + (Td4[(t2 >> 8) & 0xff] & 0x0000ff00) ^ + (Td4[(t1 ) & 0xff] & 0x000000ff) ^ + rk[0]; + PUTU32(plaintext , s0); + s1 = + (Td4[(t1 >> 24) ] & 0xff000000) ^ + (Td4[(t0 >> 16) & 0xff] & 0x00ff0000) ^ + (Td4[(t3 >> 8) & 0xff] & 0x0000ff00) ^ + (Td4[(t2 ) & 0xff] & 0x000000ff) ^ + rk[1]; + PUTU32(plaintext + 4, s1); + s2 = + (Td4[(t2 >> 24) ] & 0xff000000) ^ + (Td4[(t1 >> 16) & 0xff] & 0x00ff0000) ^ + (Td4[(t0 >> 8) & 0xff] & 0x0000ff00) ^ + (Td4[(t3 ) & 0xff] & 0x000000ff) ^ + rk[2]; + PUTU32(plaintext + 8, s2); + s3 = + (Td4[(t3 >> 24) ] & 0xff000000) ^ + (Td4[(t2 >> 16) & 0xff] & 0x00ff0000) ^ + (Td4[(t1 >> 8) & 0xff] & 0x0000ff00) ^ + (Td4[(t0 ) & 0xff] & 0x000000ff) ^ + rk[3]; + PUTU32(plaintext + 12, s3); +} diff --git a/libtests/Makefile b/libtests/Makefile new file mode 100644 index 0000000..9089905 --- /dev/null +++ b/libtests/Makefile @@ -0,0 +1 @@ +include ../make/proxy.mk diff --git a/libtests/aes.cc b/libtests/aes.cc new file mode 100644 index 0000000..ad2f0dd --- /dev/null +++ b/libtests/aes.cc @@ -0,0 +1,112 @@ +#include +#include + +#include +#include +#include +#include + +static void usage() +{ + std::cerr << "Usage: aes [+-]cbc { -encrypt | -decrypt }" + << " hex-key infile outfile" << std::endl; + exit(2); +} + +int main(int argc, char* argv[]) +{ + if (argc != 6) + { + usage(); + } + + char* cbc = argv[1]; + char* action = argv[2]; + char* hexkey = argv[3]; + char* infilename = argv[4]; + char* outfilename = argv[5]; + + bool cbc_mode = true; + if (strcmp(cbc, "-cbc") == 0) + { + cbc_mode = false; + } + else if (strcmp(cbc, "+cbc") != 0) + { + usage(); + } + + bool encrypt = true; + if (strcmp(action, "-decrypt") == 0) + { + encrypt = false; + } + else if (strcmp(action, "-encrypt") != 0) + { + usage(); + } + + unsigned int hexkeylen = (unsigned int)strlen(hexkey); + unsigned int keylen = hexkeylen / 2; + if (keylen != Pl_AES_PDF::key_size) + { + std::cerr << "key length must be " << Pl_AES_PDF::key_size + << " bytes" << std::endl; + exit(2); + } + + FILE* infile = fopen(infilename, "rb"); + if (infile == 0) + { + std::cerr << "can't open " << infilename << std::endl; + exit(2); + } + + FILE* outfile = fopen(outfilename, "wb"); + if (outfile == 0) + { + std::cerr << "can't open " << outfilename << std::endl; + exit(2); + } + + unsigned char key[Pl_AES_PDF::key_size]; + for (unsigned int i = 0; i < strlen(hexkey); i += 2) + { + char t[3]; + t[0] = hexkey[i]; + t[1] = hexkey[i + 1]; + t[2] = '\0'; + + long val = strtol(t, 0, 16); + key[i/2] = (unsigned char) val; + } + + Pl_StdioFile* out = new Pl_StdioFile("stdout", outfile); + Pl_AES_PDF* aes = new Pl_AES_PDF("aes_128_cbc", out, encrypt, key); + if (! cbc_mode) + { + aes->disableCBC(); + } + + // 16 < buffer size, buffer_size is not a multiple of 8 for testing + unsigned char buf[83]; + bool done = false; + while (! done) + { + size_t len = fread(buf, 1, sizeof(buf), infile); + if (len <= 0) + { + done = true; + } + else + { + aes->write(buf, len); + } + } + aes->finish(); + delete aes; + delete out; + fclose(infile); + fclose(outfile); + return 0; +} diff --git a/libtests/ascii85.cc b/libtests/ascii85.cc new file mode 100644 index 0000000..7fd7f69 --- /dev/null +++ b/libtests/ascii85.cc @@ -0,0 +1,37 @@ +#include + +#include +#include +#include + +int main() +{ + Pl_StdioFile out("stdout", stdout); + Pl_ASCII85Decoder decode("decode", &out); + + try + { + unsigned char buf[10000]; + bool done = false; + while (! done) + { + size_t len = fread(buf, 1, sizeof(buf), stdin); + if (len <= 0) + { + done = true; + } + else + { + decode.write(buf, len); + } + } + decode.finish(); + } + catch (std::exception& e) + { + std::cerr << e.what() << std::endl; + exit(2); + } + + return 0; +} diff --git a/libtests/bits.cc b/libtests/bits.cc new file mode 100644 index 0000000..7837ac6 --- /dev/null +++ b/libtests/bits.cc @@ -0,0 +1,177 @@ +#include +#include +#include +#include +#include + +// See comments in bits.cc +#define BITS_TESTING 1 +#define BITS_READ 1 +#define BITS_WRITE 1 +#include "../libqpdf/bits.icc" + +static void +print_values(int byte_offset, unsigned int bit_offset, + unsigned int bits_available) +{ + std::cout << "byte offset = " << byte_offset << ", " + << "bit offset = " << bit_offset << ", " + << "bits available = " << bits_available << std::endl; +} + +static void +test_read_bits(unsigned char const* buf, + unsigned char const*& p, unsigned int& bit_offset, + unsigned int& bits_available, int bits_wanted) +{ + unsigned long result = + read_bits(p, bit_offset, bits_available, bits_wanted); + + std::cout << "bits read: " << bits_wanted << ", result = " << result + << std::endl; + print_values(p - buf, bit_offset, bits_available); +} + +static void +test_write_bits(unsigned char& ch, unsigned int& bit_offset, unsigned long val, + int bits, Pl_Buffer* bp) +{ + write_bits(ch, bit_offset, val, bits, bp); + printf("ch = %02x, bit_offset = %d\n", (unsigned int) ch, bit_offset); +} + +static void +print_buffer(Pl_Buffer* bp) +{ + bp->finish(); + Buffer* b = bp->getBuffer(); + unsigned char const* p = b->getBuffer(); + size_t l = b->getSize(); + for (unsigned long i = 0; i < l; ++i) + { + printf("%02x%s", (unsigned int)(p[i]), + (i == l - 1) ? "\n" : " "); + } + printf("\n"); + delete b; +} + +static void +test() +{ + // 11110101 00010101 01100101 01111001 00010010 10001001 01110101 01001011 + // F5 15 65 79 12 89 75 4B + + // Read tests + + static unsigned char const buf[] = { + 0xF5, 0x15, 0x65, 0x79, 0x12, 0x89, 0x75, 0x4B + }; + + unsigned char const* p = buf; + unsigned int bit_offset = 7; + unsigned int bits_available = 64; + + // 11110:101 0:001010:1 01100101: 01111001 + // 0:00:1:0010 10001001 01110101 01001:011 + print_values(p - buf, bit_offset, bits_available); + test_read_bits(buf, p, bit_offset, bits_available, 5); + test_read_bits(buf, p, bit_offset, bits_available, 4); + test_read_bits(buf, p, bit_offset, bits_available, 6); + test_read_bits(buf, p, bit_offset, bits_available, 9); + test_read_bits(buf, p, bit_offset, bits_available, 9); + test_read_bits(buf, p, bit_offset, bits_available, 2); + test_read_bits(buf, p, bit_offset, bits_available, 1); + test_read_bits(buf, p, bit_offset, bits_available, 0); + test_read_bits(buf, p, bit_offset, bits_available, 25); + + try + { + test_read_bits(buf, p, bit_offset, bits_available, 4); + } + catch (std::exception& e) + { + std::cout << "exception: " << e.what() << std::endl; + print_values(p - buf, bit_offset, bits_available); + } + + test_read_bits(buf, p, bit_offset, bits_available, 3); + std::cout << std::endl; + + // 11110101 00010101 01100101 01111001: 00010010 10001001 01110101 01001011 + + p = buf; + bit_offset = 7; + bits_available = 64; + print_values(p - buf, bit_offset, bits_available); + test_read_bits(buf, p, bit_offset, bits_available, 32); + test_read_bits(buf, p, bit_offset, bits_available, 32); + std::cout << std::endl; + + BitStream b(buf, 8); + std::cout << b.getBits(32) << std::endl; + b.reset(); + std::cout << b.getBits(32) << std::endl; + std::cout << b.getBits(32) << std::endl; + std::cout << std::endl; + + b.reset(); + std::cout << b.getBits(6) << std::endl; + b.skipToNextByte(); + std::cout << b.getBits(8) << std::endl; + b.skipToNextByte(); + std::cout << b.getBits(8) << std::endl; + std::cout << std::endl; + + // Write tests + + // 11110:101 0:001010:1 01100101: 01111001 + // 0:00:1:0010 10001001 01110101 01001:011 + + unsigned char ch = 0; + bit_offset = 7; + Pl_Buffer* bp = new Pl_Buffer("buffer"); + + test_write_bits(ch, bit_offset, 30UL, 5, bp); + test_write_bits(ch, bit_offset, 10UL, 4, bp); + test_write_bits(ch, bit_offset, 10UL, 6, bp); + test_write_bits(ch, bit_offset, 16059UL, 0, bp); + test_write_bits(ch, bit_offset, 357UL, 9, bp); + print_buffer(bp); + + test_write_bits(ch, bit_offset, 242UL, 9, bp); + test_write_bits(ch, bit_offset, 0UL, 2, bp); + test_write_bits(ch, bit_offset, 1UL, 1, bp); + test_write_bits(ch, bit_offset, 5320361UL, 25, bp); + test_write_bits(ch, bit_offset, 3UL, 3, bp); + + print_buffer(bp); + test_write_bits(ch, bit_offset, 4111820153UL, 32, bp); + test_write_bits(ch, bit_offset, 310998347UL, 32, bp); + print_buffer(bp); + + BitWriter bw(bp); + bw.writeBits(30UL, 5); + bw.flush(); + bw.flush(); + bw.writeBits(0xABUL, 8); + bw.flush(); + print_buffer(bp); + + delete bp; +} + +int main() +{ + try + { + test(); + } + catch (std::exception& e) + { + std::cout << "unexpected exception: " << e.what() << std::endl; + exit(2); + } + std::cout << "done" << std::endl; + return 0; +} diff --git a/libtests/buffer.cc b/libtests/buffer.cc new file mode 100644 index 0000000..923be19 --- /dev/null +++ b/libtests/buffer.cc @@ -0,0 +1,71 @@ +#include +#include +#include +#include +#include +#include + +typedef unsigned char* uc; + +int main() +{ + try + { + Pl_Discard discard; + Pl_Count count("count", &discard); + Pl_Buffer bp1("bp1", &count); + bp1.write((uc)"12345", 5); + bp1.write((uc)"67890", 5); + bp1.finish(); + std::cout << "count: " << count.getCount() << std::endl; + bp1.write((uc)"abcde", 5); + bp1.write((uc)"fghij", 6); + bp1.finish(); + std::cout << "count: " << count.getCount() << std::endl; + Buffer* b = bp1.getBuffer(); + std::cout << "size: " << b->getSize() << std::endl; + std::cout << "data: " << b->getBuffer() << std::endl; + delete b; + bp1.write((uc)"qwert", 5); + bp1.write((uc)"yuiop", 6); + bp1.finish(); + std::cout << "count: " << count.getCount() << std::endl; + b = bp1.getBuffer(); + std::cout << "size: " << b->getSize() << std::endl; + std::cout << "data: " << b->getBuffer() << std::endl; + delete b; + + Pl_Buffer bp2("bp2"); + bp2.write((uc)"moo", 3); + bp2.write((uc)"quack", 6); + try + { + delete bp2.getBuffer(); + } + catch (std::exception& e) + { + std::cout << e.what() << std::endl; + } + bp2.finish(); + b = bp2.getBuffer(); + std::cout << "size: " << b->getSize() << std::endl; + std::cout << "data: " << b->getBuffer() << std::endl; + delete b; + + unsigned char lbuf[10]; + Buffer b1(lbuf, 10); + if (! ((b1.getBuffer() == lbuf) && + (b1.getSize() == 10))) + { + throw std::logic_error("hand-created buffer is not as expected"); + } + } + catch (std::exception& e) + { + std::cout << "unexpected exception: " << e.what() << std::endl; + exit(2); + } + + std::cout << "done" << std::endl; + return 0; +} diff --git a/libtests/build.mk b/libtests/build.mk new file mode 100644 index 0000000..6464502 --- /dev/null +++ b/libtests/build.mk @@ -0,0 +1,41 @@ +BINS_libtests = \ + aes \ + ascii85 \ + bits \ + buffer \ + concatenate \ + flate \ + hex \ + lzw \ + md5 \ + pcre \ + png_filter \ + pointer_holder \ + qutil \ + rc4 + +TARGETS_libtests = $(foreach B,$(BINS_libtests),libtests/$(OUTPUT_DIR)/$(call binname,$(B))) + +$(TARGETS_libtests): $(TARGETS_libqpdf) + +INCLUDES_libtests = include libqpdf + +TC_SRCS_libtests = $(wildcard libqpdf/*.cc) $(wildcard libtests/*.cc) \ + libqpdf/bits.icc + +# ----- + +$(foreach B,$(BINS_libtests),$(eval \ + OBJS_$(B) = $(call src_to_obj,libtests/$(B).cc))) + +ifeq ($(GENDEPS),1) +-include $(foreach B,$(BINS_libtests),$(call obj_to_dep,$(OBJS_$(B)))) +endif + +$(foreach B,$(BINS_libtests),$(eval \ + $(OBJS_$(B)): libtests/$(OUTPUT_DIR)/%.$(OBJ): libtests/$(B).cc ; \ + $(call compile,libtests/$(B).cc,$(INCLUDES_libtests)))) + +$(foreach B,$(BINS_libtests),$(eval \ + libtests/$(OUTPUT_DIR)/$(call binname,$(B)): $(OBJS_$(B)) ; \ + $(call makebin,$(OBJS_$(B)),$$@,$(LDFLAGS) $(LDFLAGS_libqpdf),$(LIBS) $(LIBS_libqpdf)))) diff --git a/libtests/concatenate.cc b/libtests/concatenate.cc new file mode 100644 index 0000000..cf4332c --- /dev/null +++ b/libtests/concatenate.cc @@ -0,0 +1,38 @@ +#include +#include +#include +#include +#include + +static void pipeStringAndFinish(Pipeline* p, std::string const& str) +{ + p->write((unsigned char*)str.c_str(), str.length()); + p->finish(); +} + +int main(int argc, char* argv[]) +{ + Pl_Buffer b1("compressed"); + Pl_Flate deflate("compress", &b1, Pl_Flate::a_deflate); + Pl_Concatenate concat("concat", &deflate); + pipeStringAndFinish(&concat, "-one-"); + pipeStringAndFinish(&concat, "-two-"); + concat.manualFinish(); + + PointerHolder b1_buf = b1.getBuffer(); + Pl_Buffer b2("uncompressed"); + Pl_Flate inflate("uncompress", &b2, Pl_Flate::a_inflate); + inflate.write(b1_buf->getBuffer(), b1_buf->getSize()); + inflate.finish(); + PointerHolder b2_buf = b2.getBuffer(); + std::string result((char const*)b2_buf->getBuffer(), b2_buf->getSize()); + if (result == "-one--two-") + { + std::cout << "concatenate test passed" << std::endl; + } + else + { + std::cout << "concatenate test failed: " << result << std::endl; + } + return 0; +} diff --git a/libtests/flate.cc b/libtests/flate.cc new file mode 100644 index 0000000..dc65c56 --- /dev/null +++ b/libtests/flate.cc @@ -0,0 +1,113 @@ + +#include +#include +#include + +#include +#include +#include +#include + +FILE* safe_fopen(char const* filename, char const* mode) +{ + FILE* result = fopen(filename, mode); + if (result == 0) + { + std::cerr << "fopen " << filename << " failed: " << strerror(errno) + << std::endl; + exit(2); + } + return result; +} + +void run(char const* filename) +{ + std::string n1 = std::string(filename) + ".1"; + std::string n2 = std::string(filename) + ".2"; + std::string n3 = std::string(filename) + ".3"; + + FILE* o1 = safe_fopen(n1.c_str(), "wb"); + FILE* o2 = safe_fopen(n2.c_str(), "wb"); + FILE* o3 = safe_fopen(n3.c_str(), "wb"); + Pipeline* out1 = new Pl_StdioFile("o1", o1); + Pipeline* out2 = new Pl_StdioFile("o2", o2); + Pipeline* out3 = new Pl_StdioFile("o3", o3); + + // Compress the file + Pipeline* def1 = new Pl_Flate("def1", out1, Pl_Flate::a_deflate); + + // Decompress the file + Pipeline* inf2 = new Pl_Flate("inf2", out2, Pl_Flate::a_inflate); + + // Count bytes written to o3 + Pl_Count* count3 = new Pl_Count("count3", out3); + + // Do both simultaneously + Pipeline* inf3 = new Pl_Flate("inf3", count3, Pl_Flate::a_inflate); + Pipeline* def3 = new Pl_Flate("def3", inf3, Pl_Flate::a_deflate); + + FILE* in1 = safe_fopen(filename, "rb"); + unsigned char buf[1024]; + size_t len; + while ((len = fread(buf, 1, sizeof(buf), in1)) > 0) + { + // Write to the compression pipeline + def1->write(buf, len); + + // Write to the both pipeline + def3->write(buf, len); + } + + def1->finish(); + delete def1; + delete out1; + fclose(o1); + + def3->finish(); + + std::cout << "bytes written to o3: " << count3->getCount() << std::endl; + + + delete def3; + delete inf3; + delete count3; + delete out3; + fclose(o3); + + // Now read the compressed data and write to the output uncompress pipeline + FILE* in2 = safe_fopen(n1.c_str(), "rb"); + while ((len = fread(buf, 1, sizeof(buf), in2)) > 0) + { + inf2->write(buf, len); + } + + inf2->finish(); + delete inf2; + delete out2; + fclose(o2); + + // At this point, filename, filename.2, and filename.3 should have + // identical contents. filename.1 should be a compressed version. + + std::cout << "done" << std::endl; +} + +int main(int argc, char* argv[]) +{ + if (argc != 2) + { + std::cerr << "Usage: pipeline filename" << std::endl; + exit(2); + } + char* filename = argv[1]; + + try + { + run(filename); + } + catch (std::exception& e) + { + std::cout << e.what() << std::endl; + } + return 0; +} diff --git a/libtests/hex.cc b/libtests/hex.cc new file mode 100644 index 0000000..4e3eefd --- /dev/null +++ b/libtests/hex.cc @@ -0,0 +1,37 @@ +#include + +#include +#include +#include + +int main() +{ + Pl_StdioFile out("stdout", stdout); + Pl_ASCIIHexDecoder decode("decode", &out); + + try + { + unsigned char buf[10000]; + bool done = false; + while (! done) + { + size_t len = fread(buf, 1, sizeof(buf), stdin); + if (len <= 0) + { + done = true; + } + else + { + decode.write(buf, len); + } + } + decode.finish(); + } + catch (std::exception& e) + { + std::cerr << e.what() << std::endl; + exit(2); + } + + return 0; +} diff --git a/libtests/libtests.testcov b/libtests/libtests.testcov new file mode 100644 index 0000000..ddbccd2 --- /dev/null +++ b/libtests/libtests.testcov @@ -0,0 +1,18 @@ +ignored-scope: qpdf +Pl_LZWDecoder intermediate reset 0 +Pl_LZWDecoder last was table size 0 +Pl_ASCII85Decoder ignore space 0 +Pl_ASCII85Decoder read z 0 +Pl_ASCII85Decoder no-op flush 0 +Pl_ASCII85Decoder partial flush 1 +bits leftover 1 +bits bit_offset 2 +bits iterations 2 +bits zero bits wanted 0 +bits write iterations 2 +bits write leftover 0 +bits write pipeline 0 +bits write zero bits 0 +Pl_ASCIIHexDecoder ignore space 0 +Pl_ASCIIHexDecoder no-op flush 0 +Pl_ASCIIHexDecoder partial flush 1 diff --git a/libtests/lzw.cc b/libtests/lzw.cc new file mode 100644 index 0000000..6fd8ca9 --- /dev/null +++ b/libtests/lzw.cc @@ -0,0 +1,60 @@ +#include + +#include +#include +#include +#include +#include + +int main(int argc, char* argv[]) +{ + bool early_code_change = true; + if ((argc == 4) && (strcmp(argv[3], "--no-early-code-change") == 0)) + { + early_code_change = false; + } + + if (argc < 3) + { + std::cerr << "Usage: lzw infile outfile [ --no-early-code-change ]" + << std::endl; + exit(2); + } + + try + { + char* infilename = argv[1]; + char* outfilename = argv[2]; + + FILE* infile = QUtil::fopen_wrapper("open input file", + fopen(infilename, "rb")); + FILE* outfile = QUtil::fopen_wrapper("open output file", + fopen(outfilename, "wb")); + + Pl_StdioFile out("output", outfile); + Pl_LZWDecoder decode("decode", &out, early_code_change); + + unsigned char buf[10000]; + bool done = false; + while (! done) + { + size_t len = fread(buf, 1, sizeof(buf), infile); + if (len <= 0) + { + done = true; + } + else + { + decode.write(buf, len); + } + } + decode.finish(); + } + catch (std::exception& e) + { + std::cerr << e.what() << std::endl; + exit(2); + } + + return 0; +} diff --git a/libtests/md5.cc b/libtests/md5.cc new file mode 100644 index 0000000..ed6a7d7 --- /dev/null +++ b/libtests/md5.cc @@ -0,0 +1,74 @@ +#include +#include +#include +#include +#include + +static void test_string(char const* str) +{ + MD5 a; + a.encodeString(str); + a.print(); +} + +int main(int, char*[]) +{ + test_string(""); + test_string("a"); + test_string("abc"); + test_string("message digest"); + test_string("abcdefghijklmnopqrstuvwxyz"); + test_string("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghi" + "jklmnopqrstuvwxyz0123456789"); + test_string("1234567890123456789012345678901234567890" + "1234567890123456789012345678901234567890"); + MD5 a; + a.encodeFile("md5.in"); + std::cout << a.unparse() << std::endl; + MD5 b; + b.encodeFile("md5.in", 100); + std::cout << b.unparse() << std::endl; + + std::cout + << MD5::checkDataChecksum("900150983cd24fb0d6963f7d28e17f72", "abc", 3) + << std::endl + << MD5::checkFileChecksum("5f4b4321873433daae578f85c72f9e74", "md5.in") + << std::endl + << MD5::checkFileChecksum("6f4b4321873433daae578f85c72f9e74", "md5.in") + << std::endl + << MD5::checkDataChecksum("000150983cd24fb0d6963f7d28e17f72", "abc", 3) + << std::endl + << MD5::checkFileChecksum("6f4b4321873433daae578f85c72f9e74", "glerbl") + << std::endl; + + + Pl_Discard d; + Pl_MD5 p("MD5", &d); + for (int i = 0; i < 2; ++i) + { + FILE* f = fopen("md5.in", "rb"); + if (f) + { + // buffer size < size of md5.in + unsigned char buf[50]; + bool done = false; + while (! done) + { + size_t len = fread(buf, 1, sizeof(buf), f); + if (len <= 0) + { + done = true; + } + else + { + p.write(buf, len); + } + } + fclose(f); + p.finish(); + std::cout << p.getHexDigest() << std::endl; + } + } + + return 0; +} diff --git a/libtests/pcre.cc b/libtests/pcre.cc new file mode 100644 index 0000000..6ebec01 --- /dev/null +++ b/libtests/pcre.cc @@ -0,0 +1,30 @@ +#include +#include +#include + +int main(int argc, char* argv[]) +{ + if ((argc == 2) && (strcmp(argv[1], "--unicode-classes-supported") == 0)) + { + try + { + PCRE("^([\\p{L}]+)", PCRE_UTF8); + std::cout << "1" << std::endl; + } + catch (std::exception& e) + { + std::cout << "0" << std::endl; + } + return 0; + } + + if ((argc == 2) && (strcmp(argv[1], "--unicode-classes") == 0)) + { + PCRE::test(1); + } + else + { + PCRE::test(); + } + return 0; +} diff --git a/libtests/png_filter.cc b/libtests/png_filter.cc new file mode 100644 index 0000000..b735f33 --- /dev/null +++ b/libtests/png_filter.cc @@ -0,0 +1,86 @@ +#include +#include + +#include +#include +#include +#include +#include + +FILE* safe_fopen(char const* filename, char const* mode) +{ + FILE* result = fopen(filename, mode); + if (result == 0) + { + std::cerr << "fopen " << filename << " failed: " << strerror(errno) + << 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; +} diff --git a/libtests/pointer_holder.cc b/libtests/pointer_holder.cc new file mode 100644 index 0000000..c255df5 --- /dev/null +++ b/libtests/pointer_holder.cc @@ -0,0 +1,97 @@ +#include + +#include +#include +#include + +#include + +class Object +{ + public: + Object(); + ~Object(); + void hello(); + void hello() const; + + private: + static int next_id; + int id; +}; + + +int Object::next_id = 0; + +Object::Object() +{ + this->id = ++next_id; + std::cout << "created Object, id " << this->id << std::endl; +} + +Object::~Object() +{ + std::cout << "destroyed Object, id " << this->id << std::endl; +} + +void +Object::hello() +{ + std::cout << "calling Object::hello for " << this->id << std::endl; +} + +void +Object::hello() const +{ + std::cout << "calling Object::hello const for " << this->id << std::endl; +} + +typedef PointerHolder ObjectHolder; + +void callHello(ObjectHolder const& oh) +{ + oh.getPointer()->hello(); + oh->hello(); + (*oh).hello(); +} + +int main(int argc, char* argv[]) +{ + std::list ol1; + + ObjectHolder oh0; + { + std::cout << "hello" << std::endl; + Object* o1 = new Object; + ObjectHolder oh1(o1); + ObjectHolder oh2(oh1); + ObjectHolder oh3(new Object); + ObjectHolder oh4; + ObjectHolder oh5; + if (oh4 == oh5) + { + std::cout << "nulls equal" << std::endl; + } + oh3 = oh1; + oh4 = oh2; + if (oh3 == oh4) + { + std::cout << "equal okay" << std::endl; + } + if ((! (oh3 < oh4)) && (! (oh4 < oh3))) + { + std::cout << "less than okay" << std::endl; + } + ol1.push_back(oh3); + ol1.push_back(oh3); + Object* o3 = new Object; + oh0 = o3; + } + + ol1.front().getPointer()->hello(); + ol1.front()->hello(); + (*ol1.front()).hello(); + callHello(ol1.front()); + ol1.pop_front(); + std::cout << "goodbye" << std::endl; + return 0; +} diff --git a/libtests/qtest/aes.test b/libtests/qtest/aes.test new file mode 100644 index 0000000..7e48840 --- /dev/null +++ b/libtests/qtest/aes.test @@ -0,0 +1,71 @@ +#!/usr/bin/env perl +require 5.008; +BEGIN { $^W = 1; } +use strict; +use File::stat; + +chdir("aes") or die "chdir testdir failed: $!\n"; + +require TestDriver; + +my $td = new TestDriver('AES'); + +cleanup(); + +my $key = '000102030405060708090a0b0c0d0e0f'; +$td->runtest("encrypt test vector", + {$td->COMMAND => "aes -cbc -encrypt $key test-vector.clear tmp1"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); +$td->runtest("check output", + {$td->FILE => "tmp1"}, + {$td->FILE => "test-vector.cipher"}); +$td->runtest("decrypt test vector", + {$td->COMMAND => "aes -cbc -decrypt $key tmp1 tmp2"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); +$td->runtest("check output", + {$td->FILE => "tmp2"}, + {$td->FILE => "test-vector.clear"}); + +$key = '243f6a8885243f6a8885243f6a888524'; +foreach my $d (['data1', 17072], ['data2', 16032]) +{ + my ($file, $size) = @$d; + $td->runtest("encrypt $file", + {$td->COMMAND => "aes +cbc -encrypt $key $file tmp1"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + # sleep one second so random number will get a different seed + sleep(1); + $td->runtest("encrypt $file again", + {$td->COMMAND => "aes +cbc -encrypt $key $file tmp2"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + foreach my $f (qw(tmp1 tmp2)) + { + $td->runtest("check size", + {$td->STRING => sprintf("%d\n", stat($f)->size)}, + {$td->STRING => "$size\n"}); + } + $td->runtest("verify files are different", + {$td->COMMAND => "cmp tmp1 tmp2"}, + {$td->REGEXP => '.*', $td->EXIT_STATUS => '!0'}); + $td->runtest("decrypt $file", + {$td->COMMAND => "aes +cbc -decrypt $key tmp1 tmp3"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + $td->runtest("decrypt $file again", + {$td->COMMAND => "aes +cbc -decrypt $key tmp2 tmp4"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + $td->runtest("check output", + {$td->FILE => "tmp3"}, + {$td->FILE => $file}); + $td->runtest("check output", + {$td->FILE => "tmp4"}, + {$td->FILE => $file}); +} + +cleanup(); + +$td->report(22); + +sub cleanup +{ + system("rm -f tmp?"); +} diff --git a/libtests/qtest/aes/data1 b/libtests/qtest/aes/data1 new file mode 100644 index 0000000000000000000000000000000000000000..577a57d63698648a84693ff522da8f6addb7673f GIT binary patch literal 17041 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 literal 0 HcmV?d00001 diff --git a/libtests/qtest/aes/test-vector.cipher b/libtests/qtest/aes/test-vector.cipher new file mode 100644 index 0000000..77cab1f --- /dev/null +++ b/libtests/qtest/aes/test-vector.cipher @@ -0,0 +1 @@ +iÄàØj{0ØÍ·€p´ÅZ•Odòäènžî‚ÒhH™ \ No newline at end of file diff --git a/libtests/qtest/aes/test-vector.clear b/libtests/qtest/aes/test-vector.clear new file mode 100644 index 0000000000000000000000000000000000000000..2fdaa8e3b66f3dbbca0fb410057bff611d3935de GIT binary patch literal 16 YcmZP&R5Er6O)Kx1xoY>ByYK!304+EN`2YX_ literal 0 HcmV?d00001 diff --git a/libtests/qtest/ascii85.test b/libtests/qtest/ascii85.test new file mode 100644 index 0000000..7ea3ee4 --- /dev/null +++ b/libtests/qtest/ascii85.test @@ -0,0 +1,23 @@ +#!/usr/bin/env perl +require 5.008; +BEGIN { $^W = 1; } +use strict; + +chdir("ascii85") or die "chdir testdir failed: $!\n"; + +require TestDriver; + +my $td = new TestDriver('ascii85'); + +$td->runtest("decode", + {$td->COMMAND => "ascii85 < base85.in"}, + {$td->FILE => "binary.out", + $td->EXIT_STATUS => 0}); + +$td->runtest("partial decode", + {$td->COMMAND => "echo '\@<5skEHbu7\$3~>' | ascii85"}, + {$td->STRING => "asdfqwer\n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->report(2); diff --git a/libtests/qtest/ascii85/base85.in b/libtests/qtest/ascii85/base85.in new file mode 100644 index 0000000..0237ac5 --- /dev/null +++ b/libtests/qtest/ascii85/base85.in @@ -0,0 +1,43 @@ +70!<9iWTSm7KiWTSm7fWNCiWTSm8,rWHiWTSm8H8`MiWTSm8cSiRiWTSm +9)nrWiWTSm9E5&\iWTSm9`P/aiWTSm:&k8fiWTSm:B1AkiWTSm:]LJpiWTSm +;#gSuiWTSm;?-]%iWTSm;ZHf*iWTSm;uco/iWTSm<<*#4iWTSmiWTSm=9&>CiWTSm=TAGHiWTSm=o\P&M<.ZglicMP!!!"'J]"ig!!9c9E!!)4J#6=g,>KOe_2$i.E#lc1Zi<9Je!!!$!,nT#= +#\X23#\ZI(!!)7krVuot-+)V7#\Za0!!)7[rVuot-+Mn; +#\[$8!!)7KrVuot-+r1?#\[<@!!)7;rVuot-,AIC#\[TH!!)7+rVuot-,eaG +#\[lP!!)6prVuot--5$K#\\/X!!)6`rVuot--Y#\X2>!!)9Aqu?]r,o#>B#\XJF!!)91qu?]r,oGVF +#\XbN!!)9!qu?]r,oknJ#\Y%V!!)8fqu?]r,p;1N#\Y=^!!)8Vqu?]r,p_IR +#\YUf!!)8Fqu?]r,q.aV#\Ymn!!)86qu?]r,qS$Z#\Z1!!!)8&qu?]r,r"<^ +#\ZI)!!)7kqu?]r,rFTb#\Za1!!)7[qu?]r,rjlf#\[$9!!)7Kqu?]r,s:/j +#\[QcOH>QcOH>Q(M<0BV#_5(Ziro\gF:@ITK>7VbLuJRDs3dTsiWT +UG&;APTlc'+Liro\hahs3?M<0BV#b_gf"UKgtF:u(`!!!"Q^iTn'"=+Q:"UP +.Tahs4%OH>QcOH>QcOH>Q(M<0BV(lLfgMbOV<:]u[VM+f0#a$_0]zM,Y`'M$ +,*fQi6sbahs4"F=$ufM<0BV#`0NHMd6aJF1!q`($, +La&Mb=>67L4oV%#\-p0uu*'$.'3I^kop\iW4rW,`0m+FNP$V=!!!"m+QWb4 +7M_,io18?,Mb`F=$ufKYWH+F:?1n~>trailing garbage diff --git a/libtests/qtest/ascii85/binary.out b/libtests/qtest/ascii85/binary.out new file mode 100644 index 0000000000000000000000000000000000000000..f33a0b43d9072a5c64f814e256dabc1f8065a74a GIT binary patch literal 2048 zcmY+_F>D)E9LMp$!EP^-5hv8aLK$vwAVUX7v{Hs5-H;SRQn8Ny4D-j6>M`6go;Gsi?4hKQRl^BkQAwmebr9qCGN*+2yP-@=y4?^XJ``zc> zz09=4A~o`o$W`*PNS#~|xkg?QG327ib@F|Y23Zqnk{^h)$PY!XLV(e9ZunsDur;qb6;r;R2~ zVa5(KbqTvTRgdEm?y5cP;f}hDCvl>l#1$N>PvdFaP*<>z>*_POiUajDwr@@jef2qP z--H}i)IP3bPd$TK(4niY;szG=JZ|CPGkanpz#;Cd7w{U+)HR&oRDBh%w_B8|ns5ab4ZSJshZ8IK#gB6TFWr>Jay_r@ny)*j2CLAr|##_!tlW zV*Lr0oONG)8#_2tuVWXd>MwB#chw#2;g0$%Jc$$a7Ovn>{WYG(4Rsg$xURl~t2j_^ z;{f~WySRoc>J-ZCLoDhd zKE}g8S-*?r1?#^06n1c?E@2m^>Tz7cUA2cj+);csj1*lO{1D=+)&f3#>aIv z4Qr}6P}8&~z`mNsH8osO)4ZmRJv9w%40hEtv1wpY)5xZUhkxkzk3-y7)6ixOXKI?- zBsf*m*k&Df)ik&1;EtLGH(NMS)8wX$Lp6! z?CnQ;8$|4`?yWrfzQB0y-cIt*^&4)#;H;+2SLiIU2V=YWGUrB_z2^B%uP?>3PJE#l z2l-f{`LeS+Q!X+wS}5nEe0lKsGZ8!QX7e@vUG{mR@p8OejGE`}j2DYjy{VtavX^hC(YNgfxp=%BWwD(X9WC#0zYXu8;Mkk4 qruIg&&L*@YAIr_Vuk#4cjlZ-}wu9|7w@EJl`#d+&=%88LE&L6VD~eA5 literal 0 HcmV?d00001 diff --git a/libtests/qtest/bits.test b/libtests/qtest/bits.test new file mode 100644 index 0000000..08bee70 --- /dev/null +++ b/libtests/qtest/bits.test @@ -0,0 +1,18 @@ +#!/usr/bin/env perl +require 5.008; +BEGIN { $^W = 1; } +use strict; + +chdir("bits") or die "chdir testdir failed: $!\n"; + +require TestDriver; + +my $td = new TestDriver('bits'); + +$td->runtest("bits", + {$td->COMMAND => "bits"}, + {$td->FILE => "bits.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->report(1); diff --git a/libtests/qtest/bits/bits.out b/libtests/qtest/bits/bits.out new file mode 100644 index 0000000..7311153 --- /dev/null +++ b/libtests/qtest/bits/bits.out @@ -0,0 +1,59 @@ +byte offset = 0, bit offset = 7, bits available = 64 +bits read: 5, result = 30 +byte offset = 0, bit offset = 2, bits available = 59 +bits read: 4, result = 10 +byte offset = 1, bit offset = 6, bits available = 55 +bits read: 6, result = 10 +byte offset = 1, bit offset = 0, bits available = 49 +bits read: 9, result = 357 +byte offset = 3, bit offset = 7, bits available = 40 +bits read: 9, result = 242 +byte offset = 4, bit offset = 6, bits available = 31 +bits read: 2, result = 0 +byte offset = 4, bit offset = 4, bits available = 29 +bits read: 1, result = 1 +byte offset = 4, bit offset = 3, bits available = 28 +bits read: 0, result = 0 +byte offset = 4, bit offset = 3, bits available = 28 +bits read: 25, result = 5320361 +byte offset = 7, bit offset = 2, bits available = 3 +exception: overflow reading bit stream +byte offset = 7, bit offset = 2, bits available = 3 +bits read: 3, result = 3 +byte offset = 8, bit offset = 7, bits available = 0 + +byte offset = 0, bit offset = 7, bits available = 64 +bits read: 32, result = 4111820153 +byte offset = 4, bit offset = 7, bits available = 32 +bits read: 32, result = 310998347 +byte offset = 8, bit offset = 7, bits available = 0 + +4111820153 +4111820153 +310998347 + +61 +21 +101 + +ch = f0, bit_offset = 2 +ch = 00, bit_offset = 6 +ch = 14, bit_offset = 0 +ch = 14, bit_offset = 0 +ch = 00, bit_offset = 7 +f5 15 65 + +ch = 00, bit_offset = 6 +ch = 00, bit_offset = 4 +ch = 10, bit_offset = 3 +ch = 48, bit_offset = 2 +ch = 00, bit_offset = 7 +79 12 89 75 4b + +ch = 00, bit_offset = 7 +ch = 00, bit_offset = 7 +f5 15 65 79 12 89 75 4b + +f0 ab + +done diff --git a/libtests/qtest/buffer.test b/libtests/qtest/buffer.test new file mode 100644 index 0000000..38da9fc --- /dev/null +++ b/libtests/qtest/buffer.test @@ -0,0 +1,18 @@ +#!/usr/bin/env perl +require 5.008; +BEGIN { $^W = 1; } +use strict; + +chdir("buffer") or die "chdir testdir failed: $!\n"; + +require TestDriver; + +my $td = new TestDriver('buffer'); + +$td->runtest("buffer", + {$td->COMMAND => "buffer"}, + {$td->FILE => "buffer.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->report(1); diff --git a/libtests/qtest/buffer/buffer.out b/libtests/qtest/buffer/buffer.out new file mode 100644 index 0000000..787a38e --- /dev/null +++ b/libtests/qtest/buffer/buffer.out @@ -0,0 +1,11 @@ +count: 10 +count: 21 +size: 21 +data: 1234567890abcdefghij +count: 32 +size: 11 +data: qwertyuiop +Pl_Buffer::getBuffer() called when not ready +size: 9 +data: mooquack +done diff --git a/libtests/qtest/flate.test b/libtests/qtest/flate.test new file mode 100644 index 0000000..b7acae6 --- /dev/null +++ b/libtests/qtest/flate.test @@ -0,0 +1,74 @@ +#!/usr/bin/env perl +require 5.008; +BEGIN { $^W = 1; } +use strict; +use File::Copy; +use Digest::MD5; + +chdir("flate") or die "chdir testdir failed: $!\n"; + +require TestDriver; + +cleanup(); + +my $td = new TestDriver('flate'); + +cleanup(); + +open(F, ">farbage") or die; +binmode F; +print F "q" x 10000, "\n"; +print F "w" x 10000, "\n"; +print F "e" x 10000, "\n"; +print F "r" x 10000, "\n"; +print F "t" x 10000, "\n"; +print F "y" x 10000, "\n"; +print F "u" x 10000, "\n"; +print F "i" x 10000, "\n"; +print F "o" x 10000, "\n"; +print F "p" x 10000, "\n"; +close(F); + +check_file("farbage", "a6449c61db5b0645c0693b7560b77a60"); + +$td->runtest("run driver", + {$td->COMMAND => "flate farbage"},, + {$td->STRING => "bytes written to o3: 100010\ndone\n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +check_file("farbage", "a6449c61db5b0645c0693b7560b77a60"); + +$td->runtest("compressed file correct", + {$td->FILE => "farbage.1"}, + {$td->FILE => "compressed"}); + +$td->runtest("uncompress filter works", + {$td->FILE => "farbage"}, + {$td->FILE => "farbage.2"}); + +$td->runtest("double filter works", + {$td->FILE => "farbage"}, + {$td->FILE => "farbage.3"}); + +cleanup(); + +$td->report(6); + +sub cleanup +{ + system("rm -f farbage*"); +} + +sub check_file +{ + my ($file, $sum) = @_; + open(F, "<$file") or die "open $file"; + my $md5 = new Digest::MD5; + $md5->addfile(*F); + close(F); + my $result = $md5->hexdigest; + $td->runtest("check $file", + {$td->STRING => "$result\n"}, + {$td->STRING => "$sum\n"}); +} diff --git a/libtests/qtest/flate/compressed b/libtests/qtest/flate/compressed new file mode 100644 index 0000000000000000000000000000000000000000..79b2da1bb621aa5f4e71817ee1c41b4eb767f9e7 GIT binary patch literal 147 zcmb=J^Y-9I-Ub5(<_)&>Mh1?7fmh$}Y(DW#f&m6T)JMXY3;_!4aJI+^W;mPGh!MtK k;9v%0GKieuhO=3Vm|$#&#uykAXreisEpmcAT0DRg06nr4`2YX_ literal 0 HcmV?d00001 diff --git a/libtests/qtest/hex.test b/libtests/qtest/hex.test new file mode 100644 index 0000000..32ec84b --- /dev/null +++ b/libtests/qtest/hex.test @@ -0,0 +1,22 @@ +#!/usr/bin/env perl +require 5.008; +BEGIN { $^W = 1; } +use strict; + +chdir("hex") or die "chdir testdir failed: $!\n"; + +require TestDriver; + +my $td = new TestDriver('hex'); + +$td->runtest("decode", + {$td->COMMAND => "hex < hex.in"}, + {$td->FILE => "binary.out", + $td->EXIT_STATUS => 0}); + +$td->runtest("partial decode", + {$td->COMMAND => "echo '7a65726F203D203>' | hex"}, + {$td->STRING => "zero = 0", + $td->EXIT_STATUS => 0}); + +$td->report(2); diff --git a/libtests/qtest/hex/binary.out b/libtests/qtest/hex/binary.out new file mode 100644 index 0000000000000000000000000000000000000000..f33a0b43d9072a5c64f814e256dabc1f8065a74a GIT binary patch literal 2048 zcmY+_F>D)E9LMp$!EP^-5hv8aLK$vwAVUX7v{Hs5-H;SRQn8Ny4D-j6>M`6go;Gsi?4hKQRl^BkQAwmebr9qCGN*+2yP-@=y4?^XJ``zc> zz09=4A~o`o$W`*PNS#~|xkg?QG327ib@F|Y23Zqnk{^h)$PY!XLV(e9ZunsDur;qb6;r;R2~ zVa5(KbqTvTRgdEm?y5cP;f}hDCvl>l#1$N>PvdFaP*<>z>*_POiUajDwr@@jef2qP z--H}i)IP3bPd$TK(4niY;szG=JZ|CPGkanpz#;Cd7w{U+)HR&oRDBh%w_B8|ns5ab4ZSJshZ8IK#gB6TFWr>Jay_r@ny)*j2CLAr|##_!tlW zV*Lr0oONG)8#_2tuVWXd>MwB#chw#2;g0$%Jc$$a7Ovn>{WYG(4Rsg$xURl~t2j_^ z;{f~WySRoc>J-ZCLoDhd zKE}g8S-*?r1?#^06n1c?E@2m^>Tz7cUA2cj+);csj1*lO{1D=+)&f3#>aIv z4Qr}6P}8&~z`mNsH8osO)4ZmRJv9w%40hEtv1wpY)5xZUhkxkzk3-y7)6ixOXKI?- zBsf*m*k&Df)ik&1;EtLGH(NMS)8wX$Lp6! z?CnQ;8$|4`?yWrfzQB0y-cIt*^&4)#;H;+2SLiIU2V=YWGUrB_z2^B%uP?>3PJE#l z2l-f{`LeS+Q!X+wS}5nEe0lKsGZ8!QX7e@vUG{mR@p8OejGE`}j2DYjy{VtavX^hC(YNgfxp=%BWwD(X9WC#0zYXu8;Mkk4 qruIg&&L*@YAIr_Vuk#4cjlZ-}wu9|7w@EJl`#d+&=%88LE&L6VD~eA5 literal 0 HcmV?d00001 diff --git a/libtests/qtest/hex/hex.in b/libtests/qtest/hex/hex.in new file mode 100644 index 0000000..9721a35 --- /dev/null +++ b/libtests/qtest/hex/hex.in @@ -0,0 +1,70 @@ +45000028e20508074600002ce205080747000030e205080748000034e20 +5080749000038e20508074a00003ce20508074b000040e20508074c0000 +44e20508074d000048e20508074e00004ce20508074f000050e20508075 +0000054e205080751000058e20508075200005ce205080753000060e205 +080754000064e205080755000068e20508075600006ce20508075700007 +0e205080758000074e205080759000078e20508075a00005589e55383ec +04e8000000005b81c3b44c01008b93f8ffffff85d27405e8de000000e83 +5060000e840070100585bc9c3ff3508e10508ff250ce1050800000000ff +2510e105086800000000e9e0ffffffff2514e105086808000000e9d0fff +fffff2518e105086810000000e9c0ffffffff251ce105086818000000e9 +b0ffffffff2520e105086820000000e9a0ffffffff2524e105086828000 +000e990ffffffff2528e105086830000000e980ffffffff252ce1050868 +38000000e970ffffffff2530e105086840000000e960ffffffff2534e10 +5086848000000e950ffffffff2538e105086850000000e940ffffffff25 +3ce105086858000000e930ffffffff2540e105086860000000e920fffff +fff2544e105086868000000e910ffffffff2548e105086870000000e900 +ffffffff254ce105086878000000e9f0feffffff2550e10508688000000 +0e9e0feffffff2554e105086888000000e9d0feffffff2558e105086890 +000000e9c0feffffff255ce105086898000000e9b0feffffff2560e1050 +868a0000000e9a0feffffff2564e1050868a8000000e990feffffff2568 +e1050868b0000000e980feffffff256ce1050868b8000000e970fefffff +f2570e1050868c0000000e960feffffff2574e1050868c8000000e950fe +ffffff2578e1050868d0000000e940feffffff257ce1050868d8000000e +930feffffff2580e1050868e0000000e920feffffff2584e1050868e800 +0000e910feffffff2588e1050868f0000000e900feffffff258ce105086 +8f8000000e9f0fdffffff2590e105086800010000e9e0fdffffff2594e1 +05086808010000e9d0fdffffff2598e105086810010000e9c0fdffffff2 +59ce105086818010000e9b0fdffffff25a0e105086820010000e9a0fdff +ffff25a4e105086828010000e990fdffffff25a8e105086830010000e98 +0fdffffff25ace105086838010000e970fdffffff25b0e1050868400100 +00e960fdffffff25b4e105086848010000e950fdffffff25b8e10508685 +0010000e940fdffffff25bce105086858010000e930fdffffff25c0e105 +086860010000e920fdffffff25c4e105086868010000e910fdffffff25c +8e105086870010000e900fdffffff25cce105086878010000e9f0fcffff +FF25D0E105086880010000E9E0FCFFFFFF25D4E105086888010000E9D0F +CFFFFFF25D8E105086890010000E9C0FCFFFFFF25DCE105086898010000 +E9B0FCFFFFFF25E0E1050868A0010000E9A0FCFFFFFF25E4E1050868A80 +10000E990FCFFFFFF25E8E1050868B0010000E980FCFFFFFF25ECE10508 +68B8010000E970FCFFFFFF25F0E1050868C0010000E960FCFFFFFF25F4E +1050868C8010000E950FCFFFFFF25F8E1050868D0010000E940FCFFFFFF +25FCE1050868D801 0000E930FCFFFFFF2500E2050868E0010000E920FCF +FFFFF2504E2050868E8010000E910FCFFFFFF2508E2050868F0010000E9 +00FCFFFFFF250CE2050868F8010000E9F0FBFFFFFF2510E205086800020 +000E9E0FBFFFFFF2514E205086808020000E9D0FBFFFFFF2518E2050868 +10020000E9C0FBFFFFFF251CE205086818020000E9B0FBFFFFFF2520E20 +5086820020000E9A0FBFFFFFF2524E205086828020000E990FBFFFFFF25 +28E2050 8683 0020000E980FBFFFFFF252CE205086838020000E970FBFFF +FFF2530E205086840020000E960FBFFFFFF2534E205086848020000E950 +FBFFFFFF2538E205086850020000E940FBFFFFFF253CE20508685802000 +0E930FBFFFFFF2540E205086860020000E920FBFFFFFF2544E205086868 +020000E910FBFFFFFF2548E205086870020000E900FBFFFFFF254CE2050 +86878020000E9F0FAFFFFFF2550E205086880020000E9E0FAFFFFFF2554 +e205086888020000e9d0faffffff2558e205086890020000e9c0fafffff +f255ce205086898020000e9b0faffffff2560e2050868a0020000e9a0fa +ffffff2564e2050868a8020000e990faffffff2568e2050868b0020000e +980faffffff256ce2050868b8020000e970faffffff2570e2050868c002 +0000e960faffffff2574e2050868c8020000e950faffffff2578e205086 +8d0020000e940faffff00000000000000000000000031ed5e89e183e4f0 +50545268009b050868109b0508515668f0e60408e893fbfffff49090909 +0909090909090909090905589e583ec08803dc8e3050800740ceb1c83c0 +04a388e20508ffd2a188e205088b1085d275ebc605c8e3050801c9c3905 +589e583ec08a110e0050885c07412b80000000085c07409c7042410e005 +08ffd0c9c3909090909090909090909090905589e583ec188b45088b4d0 +c8b50048b00894c2408c744240c0000000089542404890424e897fe0000 +c9c3908d7426005589e583ec08891c248b5d0c897424048b75088b4b048 +b56048b06330331d131d209c1751a8b4b088b46088b5b0c8b560c31c831 +da09d00f94c089c283e2018b1c2489d08b74240489ec5dc38d742600a12 +0e505085589e585c075088b4508a320e505085dc38d76008dbc27000000 +00a120e505085589e585c0750da124e5050883c001a324e505085dc3908 +d7426005584c089e5740cc705>trailing farbage diff --git a/libtests/qtest/lzw.test b/libtests/qtest/lzw.test new file mode 100644 index 0000000..e614211 --- /dev/null +++ b/libtests/qtest/lzw.test @@ -0,0 +1,39 @@ +#!/usr/bin/env perl +require 5.008; +BEGIN { $^W = 1; } +use strict; + +chdir("lzw") or die "chdir testdir failed: $!\n"; + +require TestDriver; + +my $td = new TestDriver('lzw'); + +cleanup(); + +$td->runtest("decode: early code change", + {$td->COMMAND => "lzw lzw1.in tmp"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); + +$td->runtest("check output", + {$td->FILE => "tmp"}, + {$td->FILE => "lzw1.out"}); + +$td->runtest("decode: no early code change", + {$td->COMMAND => "lzw lzw2.in tmp --no-early-code-change"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); + +$td->runtest("check output", + {$td->FILE => "tmp"}, + {$td->FILE => "lzw2.out"}); + +cleanup(); + +$td->report(4); + +sub cleanup +{ + unlink "tmp"; +} diff --git a/libtests/qtest/lzw/lzw1.in b/libtests/qtest/lzw/lzw1.in new file mode 100644 index 0000000000000000000000000000000000000000..d95d596cbbb4dcd5e25839a55c0e19ecd0465c9c GIT binary patch literal 64355 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%0A*%cGWY@VX-CKb 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

HxGOJJtl%&xaB& z)Z0Wk_JHv7{QUh0*T&NaG4=(V-Ua*SsCQrUl6zMM`CYekES)M!nNP@<50`N?175ViK%Q(L5}e7m48` zB&4+6JN?pnGPZ#j`Y%#{kZ>A=_%g~|9sq0bjMgu$4&}@Oul0L(V+A*$dj-&rln#)w z>7n?{8t1wRH-lv?IONfjHp0Fv0RVk&kY^e8}KRv;a)Uz1S$5Dh5jJh?&BaaIf;xkQkF^nEG5Kolq=`0b->(+IBU@8 z0wLN%mKKtZ1;K($V9Y+a{rFF2)V>C8ACZ}r&sYb1oqti@S-B?}hHn3Py$y z=b=z+7G_-n?0XUEu*fa+TTsL;r=tAJNSy%oLPsWaB%|4OzI0IJx_SGvsFM=8{k&%wFUVo;N;I26 zR)J^M;f2}$ z#4R&<`$?hT@Bun#UqM*sprzR#MK%WDB@@K~R8c06Q3a3BUV|j%eB2f)^aZl*0=rdA fE)98FMDP57cLwQh;Àô1–Ò_¿ÏX4̑µƒ±Ž†å_÷þ”¤g·Ä'Ÿ0mº;bŠDG?­GÖûõQ¹°1ZgÍâG»ÿ‰çOe0?}PBóÞ@´ÆžÉ—ŧ°æõ—ú~x3Dúüê{úZH[‰—/DÑEa^¾¸Ê¥ÿ•7e.õ¸†_}Û¿g¹u¿ó$úèÍéóç_«ùEiŽ—^*½tWˆñ©%&Ü@‘“HïßK”#ñâŸï†ËM!Ç,åéѲY’ +„'j^B²o ƒû7#±p]²*¦ÑNáfäÀø¾QH‡òyZ#aøYŠ÷”X«ŠÙd¡Ž g•S¢S}í³Z“”MŒä^Á h:§á]¿h#…%¾a+Ô˔Ö[·Ø(Î1 ïJ”UåTÏ5*¤˜’H9lNl+d…\†Ysʳ6Y%YZFl‰MeÀ‘nm ͲP +~mA=tÈh-{,!)ÌReÚòÿÆã’ë’!…{O â'C=èYª&8`Ì° _a“¿S<µ"§ ƒrœî“Þà1cÈð¾s|ë{ϸ†˜½õPÐ4‘ýM=$;sµ„²)Òth$zê:-on©ls¨L~_‰Ï뮐Ìýæ=‚»_à‡?`ø¹KÁsJ$"õnáøˆ·z æ (B6 DêQӈù— ;êf8`ø6•ZêÅÙvª”Ôtõ)ù29¿…§ŒB]D¹0ƒýîI"˲£BK¨¨ILOPÃ(R€"×óasAeF´èeGlöyPꩾYuS…šjk¹tZÖÄ 6ⶍ1y1, G”ï[ŽTϙ«É¬ƒ1êJ˜âÓigL§É—-ÒAѳª¯gë؄ K½Ä‹U3 Øê+]¥r›:êyr]Nx©T(½n#Õ;U”³ƒ ˜1£ã­ÀÆ¡2GɆ"¿ëø†^0*8Q ¨:^b¢GùÎeÝaE/D¸V –£¦u¨Ùì«ÀËIt­ãa¤6ô_Bê1%r{•ÍY:4ö!¦fN¢¡Žä î«I à‚®1¤”¡u)´ %*ÊC@p¡(\”T”ý¶]N¬l•\Y¥rïGÖ#;Г5¥tÞ “Ä(¹¥4]ê'\`툁'ÉX¡·§­'Ùt»môà@Kë—溩­RªËæJ‰úù­†ÀStfÁÔ/#­onpØ%$O‡‚u3<~5ч™Å3a‹ÜK0Ӂ…§þ¬\€t^à h6A׶¦ÜR>ª\‘êc6ãŒÊ5‰¸ÒªOáQǞÚÖh[Œ¦˜2àÅ¡z°½É' Šüà(äz´‚³…žBeiˆ×U² ¡!µ”© hPàh A5㦧VW4¨ðØ^±ë¹×!ƒÜÊõžÛf«Qœ–üœ¹)ܐ™jCùM%4K]ë2Ø&t(>ÎÌ?S±Y†ùg­zóäáÕ­04?֥܃$¥cJ1iFT6u]z!‚º±,Š˜ç(Åa¿ä†ÚÉq[‰ï_eu’ a•c¦‰¹y0’^GÑÀÆ à oTbNÊyëÚ©†Ó$Îaœ¦šzrPÕ^).ð£¡G àJ<¢­‘Aÿ©=çڝ›¤ÖkçsØ·†ýóuwrorçöíû<òÝâî»Ð‹§ÛG¢0j³g²¹%•/:Rܾ Ï)G¯ê4ÉÂ#{ÙVõ1÷øA" ð Í'åðۇ°oí +3 Ñf½ª\2™æ¤Þ0öU2GÏ1ÁùþšäžzòOÅS$<.Ø©ŽgP=Àí”2éÜÏÂw©p’æ‚^y±¸¡ OŽ?ç–67ãÉr©$åô+à ÂeIzÄ!ôù=“ѧ×¹žY + ¯ПþË©=®O"Ù@†$)ïŸMœÕUêì_X9é“ÛŒð;28pmÇ[aFÁW¦™‚ð”º@-Ác”ºT—=šƒU¬†|½{”Tç}Éþyzø‰ŒÆÒL¹ð>C¨#· DU×Lc¸´5\±~§lÑûâF£»Âe’$çzŽÃ e<òeá#šl³»köžÌ”j·Fu¡¤¼wk†™í!CW+ùD1íÔ> +RRdÐZÂÁ.̀¢‚n©™C¹Úx™%êڎLr:ÅÂmç½Tݪ>GlYÑ Çˆ:EdØÅb­@çüYp§{*ŸíÄ'áo#À®ÐL}ªR¸ÿ€¨½(íBôT¼ù§íü÷Ê2 æ°E¾é‰åÕâ|JÂ|., Ïq,vÃ1 ̧wm±—% Gý¾y$GÆ[YÉښ{Ö´¶fŠeó†}1o¨ò¾>ª~Já0‰Æ"ƒ²à{‰¡–w֌c½NÚËêŠ^FeÙ3*Íþÿ®Úl# YCæžò}±4oçÉ>s¼CqåØe$ÕB%UN¼GAï<á5­|+’‹\#¯ç (ótu;ËÆF€€ +B̌õÈ1 +ÌA`8‘¡¼•]Øt"ŒK¬é$ùlRpSþ³% T×,ž*ù-Ëjxž ÊÝóۂø¢’Øò0}Œ ŽûËOòXQã‹ã§¡†2ßQc:‰m0µx†Sñ_ƒá5Údø ¾¤P"`[ {bZ³j™7܄‹Oܳá$²¢ßZ,§‚ÛèÄlKٌëØ_mñrŽ¯Y¯ªË@±´gEÂþf¤}/°<1z+r2³>HÉ)y»RÒ¼úþ !gWïsu®›»(/×õù +úvå]ˆä‹»Ü†ˆ®zj{V »ÙMT½¤ýH\ÒþÊ÷¾t»‡õõa}­êô÷°ÈÞÜ"» ‹ä‹\F­á¿ËµTÝ_¨°“»›¥ôÑ¢/.³‡Eöa‘}Xdÿ Y÷f³µÆÎx—øëXš¿’•yÁ7ª¿Ý59èN·¼Ö]Ãû¹ç5ý<÷v¿ªezvKrÑì`_û*ý°H?,Ò³Þ0»®ÍEîË&Q=®Ï¾Œ7áñ cö¯;på%AV_Ú}M/ٗm~Þ=îìþpÐùy÷ÕþÑñÒß •{·?é…r}á/ßÿøãÁ¯òΊú»ôÍÃçž|ph;­ÎÆF§õ<Á.O.7éK‡îD­_ŒF³¶ÑäŸg››ð·õüi·è7ÿl¶7ZíoZÍv»ý´ùü¼o77ڛ߰æ";š÷™€àeì.CÎã^Q¹0Io¡Ûýú>᪞¥¡ 5輟òVEù‘¡m ÀÔè8îÇW|*PðAòÅ»’Щn>ð ^e ¸¨›ˆ‚KÞ&X·/’ Ùû|*oR +Ø¢ºkêÅv^ö=[kad6¼©ðˆ0cfdÂ2µÌ—¶‰¾Ê(€ Vh°^*×Ãvv#ò¥;_h"¹úu¤|?` +q^›sãhrڏº[åæ? +”£Yä¤fÍFŽÅ’8½e–È'™©Ãþ-®äÓÃD’HÙPKð_j1~Ã-@Ö‹¬•ø/÷à 1ܙýÝïgŸqð¼ášëK⌦|Øn0}µ…hqF#4Ø,[È-¶ª(².gt‹÷õLrLj i]ȌŸ ¸ˆHm*)­‡1rq)h‰„5±2hܰᎁïÅÄ 1$^ø +ûÊñý/â bªÐ<>öêKŠô†8Y}[f]@–r˜¯EµìSب{‡i7…ž&—eߢ尓r¢…ÄJ%¹^ì¶Ð: ;煜tbÃz%²°g©JJáрÕSófÛl­¶ì40|Ð[÷p1Î5‰YF1ц ¼Ø¼øºnÛàô¶,“…±©ˆùܚ$˜nYʁ7Euë Q€g: èÞÙ¶[‹n£qÔ'dH2YJ +q²mô5Süv) Æð ¹nÀ'÷úOVþl‹°) XË0q´*`M_¿4%Òxß-×ó¥ð²à8yYbîÆáoC/\ˆ +–2~-@ “v5°Ì-a<APÛâ'1ÅKv†¿3²Aæ~Ãyà³NE!” óхp£B:r¾¿ÂM|1²‡}ô’zm-2)gèî†k‘J“ Ԅ/?60WŸ¼Ói(nNT\()¹««ƒŽç|€á5[¿5?8çnjN3¥/¯iôGš =õ¨k¿ÿnöÍ'ès«Ör©RB“@ç2œ‚&:Β!3ð&~FÒXõ²ïÙK;¬ÕwÏjU +­$y~¢ÑüÐ$³«Zy+6ëôSʂÚãú㺃³ESŠ-^wû1 +b^kF3ÛÊ<ïÔo‚w2\4Ö[ÖÓ¡I2ìsw½ùþvço®®èÇñ:üÿäŸ!­­¬§™þe5ä*èãÑt¿Ï§\¹7hC X: +»— J“Òç¢gý[ #€Z}–n"\»Å +þvÈõØqrÍL!7Š#Îv {0x¶Â Ë>YHAŽ™‘ÝÐpu~Q_ÆFp·"Ê›pâ2‚×Êa }飼¼DE9/™ƒ`ËxÉ?kkÙaÊUߐòà‹M»°³ˆ¶!¤¬„_ј£là˜£ë v®–ãkP¥P—^ÅDsû?Ó[%áYô©VÏùûã©a¦“³b˜Z$ä+NºŽ3-5‡h¬áÜYd Cvd-˜ÿ̟aØ.»Sk×^¡Š·¯ñnγ‚[€¥5%a<+›]E±î*`Ö`­¦㒽(Šœý0Nÿd«ø̍¼$|VÇCÛ»Æ7¼ÃP¤ÉL!|ÑÁç*â#.dF:9e—Žxu¹ûRs÷=ŸR7W›¥ËÑ¢úEØ%ç&%±è­ô,W@‘<“o4ƒeå_Ý®„¼añÐÄ êoU“F53s1 L|ÜáNø³j`Ϧ;¬v8%ؤØdJ°ãj`ÇS‚½¬örJ°ŸØBÆe–P*Âà“½C²m)88‚ëS!Øÿô¹×ë}ÑxT܌}~ìO3âcâD§XRcnšÖ3W<ój%:òB\þ ù›Ëpr /Ã䚂šr™-îM¦¶¬ž‚’%¥?gJíq"?Ê'ò—ÇùN¡dªåšU­UÅö›\+LI¿s –h†–žƒì^©%eìžQL¦åüʪÆTƒTu4dW¦ug‘i9])쇟 +з ±ÿ—m´óµç°ŠÀo?¯*î+¨×°y¤móYÔ5u6¥A&³Ó7茖FD ¶TYca¾Ù؆CDê?¶åi¾Ô(gÎÌ¡¢GÙ%Üßs–Õ„ ‹×³c±&s’FçÆâýìX,ýÙ€Sç9Ú·—VYµž_ÇЄ2óð÷!KÑþºb8I¾y“ }5«o:W[ֆæñ%ÛáSò Âwœ§º“ŸòeŸ­\Zg+ÞþËû—yò6˜Ý1_‡BÜä¤á¿'&%X®äžgñݜoñÒðY×2¢]‚Ÿe-(Zë¥Ôƒ–»[Ǔ +iücߢyáÛi 7÷cën™¾iÿ^p6ôY$ŽG©a{ü¾Ò>ëû‚=úh}s˜¡,”K²¥Û†·™³ÄL³òeDaÊ(—)º‡Œ âÿEÜ ¤µðdù@§æK• N¡-5¸ZШÔ&f'¼ç‰¦0ÏÆçU²´҅²§ß(D+î]·{å§ir²OÄrÖ2¨«†4½Áª†¹ú† Ý +"¸FxfÀ±\RŒ¬Š2ìúØ\é²ÚB< íօç ]TLÅ¥E¸ ‡¼ÙÓï¢`#ӎٝ->掑ysXNA¤ê*$¦ Ýîäà ükœÎÞ{d´èWH¼{ÆӋâª{d[ÎàH‹” Ü7âÎШu ¸)ü2·e9‹ü—|?Ÿ;öSr=4•¹þ*‰à2£Û¢†Z3ŽÅávLÒÉëx?»Â/_Ä0Þâ^(}ꢡiY—‡tQB0$äSƒÚVµ•»ön¹¾óÕ¬ëâ2{¼œ–,?øyZš¦;~Ó ™kÝ0•SþÏ +:×Á^|bçîíŠ‰sÂdØE·¶dšv&¿h_kë ‹@ì˼røžfw„&[•7.sJµö¥(_ß?–Þÿä8 ôU9äkK‡o;Ç'¯:'ûG»'oä£Ë¤;«ÜóøKð…îNpÞÐ96]Îwä­$ìÁñ +ÃQ6îx«s‚C¢gpù_N¥ ¿§¤vt]]­ñrÒsïPl³JÕ¸š>K͕™Ú{Yó“‰]Šèaò’=¯¾¶Œ@¯µüõ¶|c7)4yëΘg4%×:!øCf ͤwU_­Òúñ +ù±ÛQöý2S¶“í jÎÒ³¦Ë™ûУYæ1s®ýzgö}üâÉúÀ~˜^x¹bîð@9Q‡ð-Ú9ñÚÍææ_6ô»ÑØ?ÙY³4_ôŸW‘&LaٜðoÌ8X´.Àã͖«$€Ó`NrŠ™ÁöèR|èÀ³'ÄéÉÑîÁÉ1ˆÓÎÁáÞë÷¯ö_9ÁxŠJzÃúì½=üñà' +ë#eÿ SÄðû,:§~‹5À痷GÿØ=zûþðU,®ì*N>I<ö,ÀFµn—,m>+Ð^Bõ¿ÛÝÛ7"ìðû ^†ÄUœ+MÛê·° Ã*¨››3*Q6ÐQq›í KÏ UÄ$ê«ý½×NTvH­±ßÔêdR4Cñ8áM,³”êKü%(8P‡ttdB”þbU~“h8ÞhwÄ-wlÙ +$›ÏÆ’–7NJ(tššD‘׫CT i6Â@×uœx¢D]èž>`]Y;S¹3ŒáØ  ÷Ll§F( +¾³2œøöÝzÝꀊ˜¤(oOÚÝׯ EÐ ’¹F4°¡Õ·§†Ø%Ñ H®Ë! ÝÚð¬w2¢"0q†·÷aĪ6`£«hh”¢o¸³pŸ˜Lu– +G"js†EƒS^Â|"숒¡úÂøn9ÇügÍÁ¤JëRµ:Ô´Bq`Ĕ(eÔ2ùÛÀ² ‘¿¶<²DÐËz(¢s83a9²•À¤9›ù‰5ƒ¼"ÙPIŠ²ó‰Á«¯@^uS”Ý×¢P¤ª4̀±$)¯„ìÎ-åD³æ¬Ö ëJá/@â-ª¹rošNK?Qmf¨ê?È@GÝ$RÒùöäçý£Î/{?ïuNDpHL‚}*Uó É] Üõº +ûýKiï[_Œëߏ†iC¥Kx‘“ÑQ’ò{äÿ\³ÓIÔïÑíú'ÿÛݒә\YíÍñ?÷Ô%º²º¨¶Q¯$±ÞÎ%¸-sƒËW!͝é\·¥»C*-ä]V•õy¥ÈŸ®+ù¥$¨Ï¿Øh˜B.óf ”­-`y¸™þå.³w°xé°kϼ‚¸`’%'T¿6ºkµz!¦~• àÁl·Ÿòøÿ£y‚ÿSfÿo>mñgÊþßnÿ>k?Øÿoåóÿÿæâÿ‹™3§ù_ÿÿÇpÂ5ê7q’ð…á—åcð߈è¿ä ÑbüÿãÍ»Üÿòo3Ë!‚ÇxÎ;á˜?·¾Ø*ÏY ÁÇh¢PJ@‘ßÎ<…s\½-oEMݑàÿ[ëƒ?­åŸ©ò_o¨}–„aMb&œx#ðKêgªÚ2 ò<¹Å®EûœB>&•¾àY(5\g­&Pû"üV êë½PÔ +kÙüõ`XÝ©!võa¹¶Äó{™E>_ùã4qi2Ā }ÐÁ\…+Ïó†jA¤¢ h½±ñ’-}†ét3Ôވì.—é7{ɚømàä¸â%wj…w4EO1“[]Þ8È2+ŒÀæâ3—£À‡D¼Åze cþ!®­Ñ_°Nò‚Ü7ÃÊÂETcÖ ˜u~Æ\e¹%wjŠ÷ç!K™ I¾ÝÿY^f&&„ +léÂ,uKNaZôn§„é5ÝJ(\¬¶D" 8 ³q]‡Ö›Òqe„—÷T +d,iܝÐ/ðçȸ2R¼¦F‘KyNÚkX-ä¹5GŸ‰IeŒâ€ ¡«D[ó¸ÖÒh³ZÄ^°3\¼©ýÁvxa‘ÙPwü·èôÓ|òLJzÝpó5ýÇ÷¶~ýCßeË4ò2ӈц Ê4ŠÑJjÿa9yã®Ë-Æ @KG¬QZ)/œðÐr]´Ôºþ°Í»·Ÿ¢ýßÕF{!`Åû¿§›OÛÏ!ÿÛ³Íç-þü¿Z|Sø°ÿ»Ïƒÿ×¢÷~¾Y3ç°²X¦mïŽì^ªª×WqÙÌV¯ón÷¤³ÿëÞþ»“‚=ۍ†ðS7KÀD˯öÜ}ÿ:ƒn±;Ñ¡#nצn[öRyòó_(ó°¦@O„*=˜ŒiG\ˆû»£ƒ7»Gÿ‚>ƒÏr>Ââp £Ž J¿ýáö÷N:{»{?ï‘[ ãŒäf÷"tãæÜ[à€oéo£$8ŒOõ!o¼¹‘뙧\l i{óùwÏê¹¾oL&¶;Ë&éC+yÈ÷R=0S¤1ßJ 3Á\wytÿ„Aͪ$·^Œ¡)±ƒ;Ã+ø¼Nó + D‹mžÚm©3¾~7êÑé)N˜®ñ"î£A†‹›×{¯Ö³õSŽ=$('/`?¿Ãºàþ`<@z—Ÿw_½Þ_—øcÌ.ÐÑQtĉÄÈ[ÒÌå÷K4Üh³ÝwS®xÃȈÉÅ/"`§:v0sN«ú•=ubcÂvšŒ: +0(þ󥝌¯¡›ãPòf®¼ œÊOÙgiÍ=þ ŒvYÑ*¤ ?Óµ¡ó Þ½úmыZ››^rÖøہ·1—š2ºöX]ÆݏcM·Ö\ œûåé›@`¾ÙØ7¤)ÇÓ:'ç4g9™-«« Z3 w¹?ňû°.jKu¥˜}J[;Ø4,u]àÐãPêÈu«£YŒë”~esü­ýXy^!UêLÂRº;¶ \!0iXØ°+9§œÄÓëÌMÏZk2Ì°6Ö Iájhƒ ýØwµZ–·§_obýt¦W…FÆK.äFúÕçŸù!f˜æšd +Ž„˜Â‘+ÐC¡‘’·&P8ϸ¾:NeŒ*¼OS![´·Y:¥ò¾2z-}w„WO]úîh²Ð £‚p ROBq-8}ÛYŠ†}ØDëZ^Ą!k+Û*uG?¡‹¶5Ù8Ùåå/ö’õsnåòZ?¸†xU@êù)„㋸'î”%á¿'Øt(!•Lã9 ’$¾ÒqÊfØsXè0JEä²Ï#s¯O»n˜V…A0z!Nî2XÒkαŸ(Ÿ•£‚`?ò-DbáõÕ¥n|áD´2¢8@(4Y,B“ßU"ñL.í NxF8 ÆùËuÈ•Í÷]«E²O•Ãàuö=kò‹ÖvDä-} ”Á•B±wL”³ælnÔ£³¤Å{#¸#/ê; µ÷š PNL¿ºžjþ®’䓸]µ-±~ÎØÖ0gÚõšV0Iý\ 97á}^Zö¼Î¨ú™¾è–p™’ùk/4?EË|‰³[lHX*4’éoiúµš¦‰A˜¦Á9¸#äO:™ Ž¼}õv ¼äùjw¤l 6-ð‰²à’£?- 6kˆäËÂU¤@N¨¥£H–ø¨dJB¾'ŒP)À¨Ålw‘¬[Ä°M’Qœ +_W¹Iç_„K¯ÞvÁKt5v‘W„9ÇÓôqЏϩ¤ 4}V“•E€ ‹Áø;.ZòøK›Sä<â=ÆD{PûöýÙzr@L°¨n±o͈ÂX7È«ƒ°òµ6aüß8Sd0 Iå Íi’† BÿëƗeÆѽʟ² äÈz؏ƒµ@ÝÌ#HĵÊ·p¡(om38áÏ+7>mÁ¼—ºz +Ò´dìÐd&WJD ¯ˆ¬ôеö Ë+#€Ãè Áÿ¼t‡òä&¡‘¸H™ð¯øÛà¬?2Zÿ’27Lô “Ú²V g‰I2ª_‹L‚‘Ï ”]^f+üou¸—ž¹(B.U:£Œ“|By¼Ä„|UcYEКŒV¢ÄY2hš5…EBÚNCj1#쐟öz…‚ë:ff½  Iå/E[ µIàr]Þ(«²SÛƒ¬M „Î;Uv ¾MƒïòmE%½la-[WqY5FVњ¼q +m¿@C˙P™ ¢¼{u÷Ù1A¶Q® £Xl*øUP¿: µ»¼=¶Œ°|êgá(kM؋ >?œ|PŽ…V¯}…ŒNµžA§4Ò¾âè",yôÒBë},ˆ„‘tVÁK÷àÕ¼Œ‹ÂÔöjþìÏd.Œ žÙÍ窒î}»ÌM&FOvOöÀm;<©9%i7Ajz &|jn6›u<ºL¸¼? Ù^ ÷_Á𴦅<F]ˆúŽÀ¿+ޞ8ˆ/„¼qvÆ g]4äÁ{¡ÌÃÙ8Ž 'ÿz·ßbçI<-Íe³;AëÊn _”Êè̖•cPv•¦·Xwè‘r þ:&ˆtsõøÚktP6(>1&;KÒ 6`´vXُ¥­f$²+ØxH{ÑPÍÔ'¬žëL|dÙXÆvPPÝàæ¼)ˆÓâÒì!´ “°€:À1È!67i²¼?YWF&ähùöÝp9¨Z‰æ6ÎHA×@ÈEµq(oì"CO¬ø[òý%5Y®‰â¹ÍEäX^Á†NÃóhíßTã‘ÉRéh|òÙíÂx9…CœÑd‹BÍiv+³t)Øî†Òü/ŽÑ)oòc‹ÎìþA´÷—;n¾H÷ÂO$l)µ_ÿ^YÐ d®Hï@3]¾*Äñ}ž¶mó ­¿ø&²ñƒð7 ˜°ñ +[ÕºRœü M:MÑeéc²RzP‡-mÒÌýhÀ½° ¶5` W0†ïA.[֒‹°?Â݌zX&õp&Vfæó`þöÕ^ +«oasêÍ<e\ïU‘ð \Â]‘‹0 ERµ”RªÉ!ÆrS8˜ü^‹¹‰³@@ò½’2SöÁ)‘ Çæ-'€ììmÙ¿'C°j\´€Ø)$zº +1V +ïKdÜsÊl"Rwñ5”Ê©Wâ.~v…ú:z>E<ËÊ<«Vî’$Í]”è½oYRo¼ “3|M-«’ý„¯K2ÅY"õ(EŸÀ3CN>\~Ò7äÁ4øUO†x -oå „Û10Ù^¯s]. Õa œªÁÂ[3vÂÌä~6¦@=̅8uçÌ`9‘ÃRUɶ*ýLÜ«riev Æ´ªâR>òS‹«6]}]q¬1›ÀR†B®Ö¬W ~ÛÒzv%,/gSéŸٵÀ-i0Õ¥O)ðÀ¨ªl§tÊ뫉{ sd\區G¹¬a=’¼’s.ú·èŒ=¢k½šòÿ9ÙóîõîɾNDûç£÷{üûqýw—Y——Ù#q«B…´­i—ùŸ*­ ¾e¯V±ÓùáíÑëÝÃW{¯Šþ§O[uwW‹ã¯–Œ¿É#·ٔ,®hÂMEãf? •mI3eÃìãCŠ‹~‡Cð`M!µ:Dí÷i59a·@크™)ºý\,wžyšŸ/P†zrúWÎ`ŠJe7ë õÇ1) (£¢Û\Sß||;Ïo‡³m¶Î°`o\/„˜§,s?N4ê¹\vwî?N®PnS;V0yh‡›pÌsÑÈÀ,¤Ä‡–p0 f°°¼ÀÕÔr)tæ÷ù¬ñ̓ÕµáSœ¸Zۃ¦I¼æm.@zK¾Ø)£*†·Kb‚ÁX QJki/„[º·€l4("lN•w—´*¼uÃ7` #‹—}¼Hf’ }šê¶,%ií@Ę Ò`+À uúy´ I|%ý +ýGuà»àùê!lɨ¼™Œ'¹iR¤nT¨À‰è2mŠBGÌÛTT¢Qõ ÏYY¢–I¢£>0kÿµ×ñŒ’âu§¦ŠØ®(ÅTfI…Aw¿ÂOÎ9vã<—”k2"œÏ}KŠ.¢üm}]7¢ÿXç‘ú¤1?4–¿rö¨rÛ¾ “Ý(N=÷ùžQÑö/”@â\Ã^^tu9ƒn'âÝEœs£Fšt„H…_ qö]àÙiR.ÿVJ•ñà›½rŒ ?^³ópúGÖÿXs1·¼:²Tµ¢Oä¼ÎÓ¹RYݬ|:.Z´Œ¯ÖEÀŽ‹‰|R “êˆÔîϨdIž‹W.Lf/¤‰µ3 +':ý}ißMzóþdÿ×ÎÁáÁ‰=BXØL½MÆ›¼<0i<ªÏ՟Øê®Ã:Wþ”çòDН²âøßív³ ùŸÚ›ígí§íކÏCüïÛø<Äÿ¾™ÜOžY³´  à—Pâdâ*ØlTz•ÀeÜQ˜Œ£0'x•èڞtM…J:ƒãñ¿OvEË}Aœk.² Ã^iôìý££·G`jí½ höá[¾N½Úëî¾Ù§Ó=Dš¯É¸Øax;†Ë3¦yú’ðځZ\Ç7Ž0 Ïd„‘àåjV~MĤöcC.LrK*Ie—kÒí§Ï 8^Q%£í›a›â‰i¸eâzÂZڛ‡¾à»•[˜bŸæi¦± +=³%Tï1w/7,Þå‡Ib°10ãà4âÆNÞøû¾j4IÎ ªºë!«O[0äØ0*r¤i°¤¡ëÕºàRãñÞkâåfdA¶Åj¼ÜŽ·ùÌ '¸.ÙÁË|é ]´}ªÃY‹²¨»ÞàëL]x^gF9Éë³ðµóÊè¶0IU„bEŸ0~ÌӉiaý́+n‡ËÖN°·'¥%×Á÷:| dfÎï܆E0ÔòÕnnŽq!ñÛ7/t€ã÷~ýí†ÆÓ8=ët܇oå3 +ÈúæàìŽê']5·ª«5ãàðäèàð˜ooD8×:ށp@îþjÜýæÁû㟏NðÝ=!e.š½SMÕÅÌTcA¶ÿˆe7Âh¶J|b÷Òp ·È÷Õ×]UÇ/åLYûf÷ûþàuM˜ +ɚím>Ö¹Íþü³¨dR¹ä™SÒã.CË ‘Ó?ñý8»ÎPíï3Tûîé¤TÆ*Š2¶ÙÅéW“ +)hþ2°èZ¦ÔÂ3WÞýy3 +CÊ]Ê7ÄèÀ,êa8pî÷«m\ƒ +qŽ¿Œz“ ÉBŒäBa*ÓEŠ Œƒ¸&°Óh G/E¨p®PtF1f>ìp˜ç¡ù Oý<÷ÒÚ䆁£+³š³Ì8¤ñ_fI®‘‰×?EÝø< Fœ"}LÿÉ÷[úXf¾ñ3g‡ +Î ³#Q“· ±kÐÿ ­ÖQú#’á¿ùÈX(Id¾l狟1óú‚•ž¯æ¸©ž°^0~{ÞßTًÇÁã{܇†ðÏþƞâœYEþ:áEêŸÞó>ÅþÍgϟ?ÿ¦ÕÜh>Ûh¶77Ÿ}Ól·šüуÿß-|rüÿZÿûwkíf³ý—u¼Q@wætçý§Âˆ³¹«8ù$`À+ôòû禞(øÐéÍãߗSt~Ï>×ËmÉïåf:@˜Îu.V¸$ç‹ì¼Û=:9Ø}Ý9~·¿Çÿü/Žq=«ýêsIò¿r¡”‰0q²µ¥ +BˆÝó˜ï3O¶sªâ²O]⣟ä…Á4IPρ+wÿ]Üy’‡°3ýOò*$¡«*¨':¤¥uç_›%OŠš*+n-?ŠºÂ²§‚…bîÍÒz'—”7ªè‰5Ì拳3úñ²‰²ÛfÂen<萰cpîcDϱq"¡On­»´ÏÈé´x¹Ø®›¶ò¢ÙŽV–L)æ'™a>Ô,…¨ý·ÔÓC—Vü"”¥Mez¬Mèň›m¹•÷÷ûW1†O(y¨Èöy°÷÷q2vLnÅhY¾‡71NÙ<`L!ÞpR6=Új1²ö´Æ²Šc‚f¨ÂÎ9¬9†G·UÜeO‹†¿Ò:ãŸøžøäuçÝÛ£˯³ƒ_íÿðþ§zel­èœòåBÙµ àó\›1ƒ–ñË1x¥þ4*WÓôv‰d·2mÍ‰Àz¢íã¢ËúU:á´$t™©µF••Ñv±9Ùa4+¢)Ç£»/líYªpÿ/ y¿»áÌ»ÿ +ûÿg-¸ÿ×n?m>ö´Å÷ÿÍÍg͇ýÿm|öÿ7wB¢.àêß;™U“ Ž)Õúx4áÈð¿|•¢û€i$Ý  +1k4ëCîªâú0†ÜDp îíC†ÂsôÙEôÀè.ÄIÏíôšz È7 ëÄ̔ò‡'ÈÂøjXb› /Gû|ë¾·_d™ÈôØæ7U¸Òþ-Rû@HqyæòCԋ87-ƒ¾û’$½ü%ŽØl8̒°5ç%Y#®±ûñ¶Í‡+I§¯Å1,ªDš…ìCŒ_ˆ“'qæ´ÌÂ+«.œÎ㢲œ»»³~ ¢BÁ7 ¶‰Ï…³rð1×Ýyƒa¡Ê¢‘ˆú ˆcÒmˆÈs­Nµþ°SٜÕÕ¨ËÙÛ}4›;øÌúT«¯‹.™(Ì©è siÂKR“5˜ÄNˆK3øµêjm%ªÿÖü°n'3¥~•õ +±ëÄÃþµÝ/7ëÔêªÊ~õåFFžzãzqLÈzã”ø%W%a%\'³*‹©[•Ly!‚—‘»%«ÄY®I;â`W Æëˆä ’²É3®ÞËÍ«l7\ÖïôƒÅз ã*ö—1©DàA>ZÚ炀EƒÀ˜«„¤eÔ`©Nì$"8ˑtV—²èF_õ˜ÞÆ4º§Ãœ°Þáž{מc “…6g*ËÎþ¯Âþ?¸êœNÀÈ?«  lÿ¿ùü™{þßzþ°ÿ¿•ÏÃþÿæöÿö̙Óp\7w ,â„m1¸y%Q±>÷aƒ´ûKç.Êör·öN/˜½·‡?üT¬‡/Dgѹ¥G– úçq/;ÆÃ._x;;+c9axæ¶.Ã1¦›íŒøÄâŽæàɦ€xBKø^®0º‡d¥ŠÜÔàððP] ‚'¹§o:pñŒ¯³ß5œçp‰›?Ž;Œ¼ÃS þE{§´…vN ­j-l–·°™ÓÂFµ¾+oaN*µž•7Ñz–G§§F# +€S[5%îŠßõ­-³dc) ¿BU(‰ÍÓÑ.)¨ ßR®Sçx番 ß¿Ö↥p†/œg/ùB'N,uÿ…ÿ'SGz( +¸ð“ô4fºµ%‘Û"CÉ@ʛ石Ÿ«Â> –e•Ó‚¾V:ÐÐF” +ØρÅAâ€J¡ÆN¤V5Ÿè\~ +ÞþǪ`Zx¶¶T؁^ØÇa Û4£ƒèÈÞ(ഄ:v[Œ.œ’°ÉT¡ _VÇÊ¥^¡©‚­1¼úB¤hxþñp'v¨d¦‰=ç +&Ø!Z*ÇîP[n &8OëJÙÏ]‰¸²‘Œ®Œb¾áÊ^?ɀ üC&F§ D + u¾¶DrÜMÒ—Ó/¸ýœÅz +œ"¾ì~ª‰Ugœøs‡è{½b¨vjP–Ð;#äÊY³ÛƒÄ&]žö![=èCÞz'1+×Ù.C31ŠSΒAr½•mX³f1'bÊ@HWöë6Ä!RéU0ª“v/ê9¹œAA9!% Äº1{­2tJÀ”ʾ'yƒà+–Àh Ò|g ~S¦8AŒÏdÿ_ +j4qÃZÁòŽÅË †à†WµaÝLFE£yøvÿg™—Šè’At•n_/~S]zô.£ /e7Ó_á§hÿ?JøÞ²]u`YŸÝ dÿß~Öބóÿ§©p³ûÿæ3þçaÿ ŸÿÆø¿7ºõ7´×&ªˆ“Eºÿ«í©¿žÖà<¯{TëýjߖÖd6§Iã‚|N9ìJÎìß½=Ùß;Ù…«oÑ¡½§ä­Ý&ÈÙ&§œ_ƒî¸c 9{Ëà}~ +»®o“¶…‹—ÜÅð…q”²ónwm“%ß:†áÂh„ñ2JƓ Ïþ“Ó~­þù‹µ­*AævZ£ýÞëâü r–‡nÓÎi•È`dÓë³ÚÉÖÖ +/ÝŅ¿.v19mÕNVXÜ`ª8SéÚ·€Çjq^ÖFuV±ãØ€=¥ƒw6ÿ–KãÇò%ÓPMØÑPxCk;Øcì,\üa¯¼Û”ÿEë¿O”Í¢®ÿ­öFó9¬ÿíͧ­ÍæÓ6ØÿŸm<¬ÿ·òyXÿÖÿ×ÿv!n±Xöñf^Wü4U 8(i/ ~Žãö(ˆy.Êãê J× {fNÁZ³Áš°žÅEDVQµn+¿^C n—AèŠÈ_è6!GÿØ=zûþðUMgÄi°¬µÑlÖ­QÉ¿ÔI~¯¨Õžôæê g+èƒÎLäRÿ8ü÷N¶Eþt™¥EÍX¶+…µL ѱÛÊTâ-¢ÞRºEDl ¿5?Øo¨'àG¦ ï°DœNk}àh6…(7™— Ãœ¸x'! Ç~}˦¾;‰5é²vkuQ“UžêÂi^šåLEÄÐHƒ‰Éu¶d»öØ :Ãð¨ñÒȪˆÏ/‚´#pO³oe´aÏÃÕó¿Äƒ4ˆè!ó9VB¾vu ïF?´yZÜM”©hº.ìÄúpøHÍ!©dtmäÎtÎÌ1©1uÒL*L1:¢Q1·|¯BîYԝ¿E”‘b±¸´ivŸI¨ìôûsÅþó16†ã$oq! ˜˜©<Èa5ÅçlàÐVràŸ/Ù úÀZü[ÝåóéZ ÿ=á;¨>×Q*1».nŒ¾ù° +ÓÏ66é”#Ct†9ärZzòÄ‹vêb¿NW‡c+Ò¨z»E³/E BÍrk{^ h*¢«f„1.…âüÔÑ÷cýÈø‰ ­'Lˆ³ŽpeËGJÊ=QPc燇œR ‹åÁ2Ðò©3¤¶¬B¼ŒQŽœ9}J04ᖠ™™”¦–%BfÁE|µÉSΰ½,4dzœz…¢’iòÉesÍ@ÛJ–ÀFzÂæ…Þjÿ(̍…¤epElgæ‡ ÇXxp…[¤x"¹JõÕûQ3ڂ +ŠËOŠ‡ŽÁãÃeJ—Á´ÄŒó*¤ø›Jô‚ÇDH‘ÃõgaÊ4ñ´ÓC`Úƒ–EÐ\¶@#=+ZÔoâã†( !((ï÷cÞk¾¬ð‚á5Wهçì:—º1¶=£.ßv՜Z¢èÚÓkøÖÖܱ.g ÔôÜqÁ^Á »Ì®lyÇñÙ¨ßtjÏÉá=¶×å DR%LHm ×íSú¢vH·Ð­Iµ”ž`V{OûV†#&¢ãúX¢yãEf8ƒ+€€àËyÍA™ã›C Y—¨@‰©ZlLAðŽ•óÁ؏L‚°UìŸë £±Ž Jé¶Ú§:+]íñ¯Ö2#ÞT(û®/a“:ç€Ð֖ãÄïukq›w°§Š>ˆ¥0tTهG¶ˆ™Úu‰Àru¯.+ÉP ‚¥Ízy&qmŽë¿cÐcÅ‘ˆzˆncÚ7 ú$sX Tæf>)ð¾Í•ä䴐6û¨¾ôUÄo+֋›ì»’¶Ý sÝD¾X,4>ÑG}ÎS°%è¬ÜlX%hâçhôÁnTšlÜ Å©Ô–˜UyKžæºH˘ôvws‘AÓ®°vrlð`%Ž0 64I(mm‰d[V&Û«$ÀĪç‚ô¢Ò6– cÄÃËpá +«‰ÊFÂ)ßð¸ðñb$²¼¥Ã@ÏÑ]_ag{½2˘õY²¢¦ç(`®q ;Ž.CRbH%TR7vŽø2ÁIzÛ&l•œ ãLJŸà JVÁÃÓ û‘RQÚÖ7l®MÐ?—«JLÖ¨‚· ]´ ~âœ3Ñ=®‘´mùH³p{‚&鶮x #Ø Ò=Å g•€ÜÀÁE™0‹M—ȃ^{™°%t=†àùá:2D™™ÒЙªëgÛD…Ï"¶o­MÊê2{G±>2ú´-c´q³å©Rv ™ZÆ Rs´ŒõOC ®š6w§u}Y¥~{i­v!Z |Ú~ac ù4ɸFi͉(âŒA„9? ++À•‘nÐïN0 LÝtŽ¦mÂ_¾ázÏ÷ùèŒÖ%¾ð 'ý¾S”iÇZõØq}Z$?ó2ùšÌy¢‘ÖTNñš­ÇvÛ´Úiɔih4vZ©PÖ§zQ Zµqíà4„ì§è{œÓ ¬Tù4ÊÃ|Žº!oËN·Q´·¤–‚àõ†Òj+5©½èIßêÕ¼ÖÄƂ)ž˜‹] 59|¬5…#²»¥®åÛÎ;hlZ¯£ôd’‚ÇÅÖ;“bà +R \åf àÓÜ×ýߞbÅÜ,„yùËNØDUÍÉ ˜_5PUsÒ2ŠªÆ’ 7²e8c‘Ž9 s._5Øò[mIëU¯¸Ÿ…Ë©QO¯\…õ¸ÄèóíïSYM/;…Õ&|ΛÕôšQX-hðõBU³Î“M=‚4ϱÄ)cP#¿ÑõüBFGó ݒ…<Á¼âÀ•'UÄÃÔ!¥²0‡¢–Žª‡˜È”jv|UoWX¹2q!æû{L8ç4%jÊ­<ßÛÃ<'‹" „WrÍ¢Û§×t™„mÑ¥.HU´å-âډ„šŠt»d+SY¡@«ýfa¢ÍB‹?Ù óÙÚÀXUm „cša¢³ IԆñ•Þ८1¢@D×t-Çò‘±T¹HÈKbuÕl.¡·§1ddÙ¦F”^K$†R”Ï4ot·¹}‰ŒÅ‡Slâ…iÉØÞ(Ë/ÄÖ¢§Á#&!yž¹uN»øCY–UÞb`.žS/—ÓHÙ\îŽ8§úl,/ÎÌiÄçà{…€AZêŽñÆâxg¢Úm+þˆ‚0ՌPV¾)×(ݨ50ã’&Xž†!Ú ô9ߏ…Ÿ¢j + ®£Jv­5a1°¹rõxäţ̢! ×ÝKƒÃ؇@Cì|ÄL•s†©¬>þ‘]ß©­’ +¼¶½JĀ±é!’µnޖ…&×v(¹'\—oV܃ÿÁAX…üâ†ú#Óô…µnCÚà +"ÍÁi\á¨5ÄxÉå{ʙ­%üˍEœm¸Âpje£ãL H˜gƒeH%êšÀÊoöà}¨F‘æjvÕl ¸‚øR9 Ãè’çš3m>®jÚ·³ + õvߝÌT˜Ý-ðºäªÛØðu”éÒ¼uÛ]GZ§¿·,úÊXoŽ—y(°Ã7úŠJiUÕ¼Y­cr;g6ñ ÝEK]E 1ØÚ²}^ø—íŸ4‹ë)£Ó bÈÅg<<¡Þî¬äÎw_áÉCÜ v},–…RW‹¿£¨#Ó»LÎà®pjq5 dp]Z&T\3¸l »¡âÊuÇ­«Á2oÐkHã DRòùÛ·]·ŒæM/,¾ÎxɧÅ)âÁëjJ…˜”hÎ —n‹·¾b§î¶Ö%æ’?²zrKÞ<’El²ó÷êO9l~(æxPogQoW@½]‚z» +êíéP·´»WmÚÛzüTþx°¡ ÉX¬‚Ž»Éˆ2¦£ÿe7îàÍÊÕq¾\ ë Ë.}ö¹ +Õ =󋶔°ö —a +³µÿ-¨1K!çõÇðšs9\qËÜpët~:|¿×éÀý¶ c±0»ÏYCÜ,#ý]•Š†$@$sÙ¯ZâU&ªxÚÊ)èA-êP±5ó=ÓWÛ\ˆ?[~ŒÚùµ=µÑßla%Ž”Z¿mЙ’žŽÆœ’$–'KVÕ¶ªª¦ƒÁÓþªÅ„8[ó¨;A »ÁÿØ-¦LÐm¢M ڒòV£âô´%­Ÿ/áÌE¿“¸lWkåðÓ.ӮƳ |¶ZPƒbÿì +-›ü›¸$ÕD7¿¨hÀ(ûEµ¹'<žöùv)òm…Q[aÔö#ï/:%òUÚ3.·ñÎîðJ~±÷‡àó–~. •a¡ê”fßU¦yp•«TŒÿOÛí¼¼–Ž‰­`d(a +î¡X³ª×ÉÏl¹•ÛPÛh¨ím¨×PVa‚`!c@AÉ:ûiMž¦WuÊì5+éOÖÊ\®‘Þà²g*ɞ…ÆBÈ©½dig”Dƒ ¹¶Vs‘É[Tº©\l¥ÝѳsVˆb\ºh?mâܯ‘—[¶ñ³~Jï1ÿ×Åý¨ºg†Ó¡ø3øƒ&à¡D92¹*”aÔbqœ ç½'¾5 &}þ^}¥ûnZ] +›¼¼|¥O +)ZÑÖï·ýÙv0KçïW!%Œ@:¼0¢S”!}yÂÆ|)ãÿ¶í4 㟛ã6À5b{aP¦F!F_x^³U· kQv½V%ÓY°²~/¹{nTNÿ÷ȦN䇪…ÆðãwÖî-í+Èêîu¾ íZƒp -Xk;äÚ4 ëç®ý"öúʞEbÿ¾Yµø:P³³£å†ÿyÁj|¢¿`˜N÷‡ƒ“ú6dŠò§ØÊÝÜgdúN-ª»}K#}Y`*°—)ˆ Å–ߢÎû/¥Âüí?PÕ#øu˜£„Ò‘·³,¥`Ž½E€ÍÛmÎ +ök5Ö¨ª‚.dý¬ÃeU9ËbU´kï‚^»a¨\ÐΆ4œä,4ø@f7rÌ݈æmçXvGǬ-¦-PLa2ɗ&™æ]âæÈ?½]úl”Ó‡Ù"‘^ð•gj×8øÕvD +“6}ÊÍ–æÁ°Ú`M¨/~œxÅð2LÄ­óh(Ø]ÜÛ2YÍ¿ +ÂV;_÷á87 + Ö*)ÙvoOgAy.¨êP(ÃÊ ‡Ù-ðŒçóFˆ›üóÔéG9Ç¢ƒŠÇŒƒiŽ9LjÔ耼«óuŠS·PˆÒ.šÄr¦ï`úU;ìU¬† XC¸¨sî¿üP6=ªØMç×gÞ²ãóeÉÒÄqµ-`ê$ëÞZeæe±|ËÕÛÏ/¹ëweåF[Ã8¨¬Šƒ×,Ú Ùpp$8:˲È<ª9ϼ¡fò”ÄkxUl +Õ/ý«+V$éÆ›òTª× œÛt”^0Ô9`s¶.èû˜œ„Œ®»莫fE~T]”»p+É>@»‡¯!ŸÑ9tÐHÌäó×çs‚ǨÍU“Ùõ #¤®Ú¡rü_,#I“çh[Ր *SM4^—f /€d*Œ~¶•lĵǑV7Jµs†áë;žwZˆÙº™ †š;›ôÙ(HRT!+¸x±ÿ&1£[ˆîu7Qµt.Ì¢$aÉâ)ö±ƒ ËY"s/„2XÏt¹Á ‚ƒ½ü4ÉèêƒÙ¬sOُ…‚'<é‡a +bTÝVFH™+ÌÕ` ‚h¨ i–š·MY,cš¡<¯³\Ó †|YìÀezoÄ1PÃåޑöw¡Á¼h-×ü‚†z5—u—)ÄíhÔÓ]60oN“[™}™º„¾pye¥pïAÜ?t|‰(U×!¼•s[¸á[áº<É]ÒWôE'¥§\E\֌«#î҃! +éÉ{ºUðº—Aõª¤Lz'hš-+(]—Ír̺&cŽð±£Q²ö¬–¨ ÷â¢CX_ۉz¨z´WW·­VÎhKâÉùEžAœ³Wvpà \3riaÛõ£¨tf–ÏÒ­?&ƒQ>=á­Ñ"o}dßã*¯5Ì^YpÎe¢ò¶£\ÚVљdrºwæø›¯<Ø©Z<²n¬Œ7ƒ¹F©‚B}\¸Œ¨#CigÃx¸–„Ý _½¹–«7r î*êEHÝh½JÊŠ4Æ|m, ®@¸‹Q*âÖó$UK;©©JŸ%O`Ú^ñ´TÇ ®ËC²ÁN'cjµ`DÞCHé@òý2LÎøþ:%RLZ~2ô;î,ga½”bø‘í½}³Z__ruÐ4¸„E J87ÂñX¦ÀÁ³£¾Š®&#.©åZ„lÔáß¡BýŸùÚ/iý]¬Çççýæ]hKMÛÊÝýÈd˜¼B‹ QÞ=.!¸¦U}/›ãxÈ ©·[%õ«^¦ÐH4šànGúÏÇp–Š6²!úÒó]‘QïrjàÿZ É0R~¹ DÑ@œòÙþ±hd0\&RqwØßםFçâ²Uã +UþêqÊùÏâ"ÈÙi‰[¹ã÷÷±zänø+´ÃwçÍYŒé®AÌÙçÔ¡î’ E˜Ö”L¸ªô9Í{p]xlf,&'CqTPÜGÁ2¢o;ýp»…d3%0žœÓ'ýòEÒVœ žÖ6´¹]µ°Ø47ːë.¨W@ÃlU‰6¶z+ÉQvè‚#ÁaÌꆣ±c²üì=@‹püÁ˜àa hm‡††*Ô*ŸsøĘ=ôÄN|§C4ª3$cÉÀ×9²©Ìá¬>Æé}PäÓ³êX¡Ð1½h +ºŠ“JÑC÷¨´‹ÓIÔ' 0#z¦vΫçñ–^1/e.sÑ$U™ä\Fw³Ëu³Æ­k¹èluÙ¯‘ãÎ…u<êH KŠZ?@˜2°ìnÚ¢P£X§ÂrU•_l±Ç\ 3zæÛâçà•Ûjù7‚lú1Ò¢\Ÿ°Àèã–?6ãì@ä~l‰à4`Æm´üI )u]ƜÀ¹ê,3”~ɖ`T¡Pú(Df$„¢f¾ÔùªßQ÷†ÉËêõUcٕøjm6Ê«ªiœ|,Jì”|´·jՖg.¼×Z¶H†ã²ÊuÛùGå9vDsoª ÁîՉeÕX–ñ±¯¬Ê•0V¸Í‚S©¾{÷bÄXæx£zD< ëî²ùjAè ‰Å£˜¦¹+.å ÷á؋JkšFn{?#bÍ±ãÛïS16o¨<Û¦ŠÛÏ³H㳓[zÕ@»*çük }¦\qÔGÎ2U7ãGp@=°ZN²üª’32þJåU-†)S‘#pƒåri|‚ƒsú 3Í25¹×ZÛîKÿ\Åè +`¦’X%v¦ˆG02K62-²Kˆbrmݐ Q,ÇÄOŠïèÙ^fÿu£•ºuï?s¯l0¾î5¾f°+’FYÓr)ÉåòQDl…f\»h>›ˆ–!iøKÕì´³ÀÛ¨ÉɱP̦¤qõŽ`@rä2oèˆ8lPˆíÝÃWvà ;áˆu]§˜E?s˜x²âÄú£ÊŽÙ:Ð{öö +3dùrN;º‰ñ—.l~AˆÉ€¸Ã]4܁Ñ>À•¿üñæëՊ)°VØ삽:Vþ `1 Ìh}7˜m‡YÂ'X“Í͝¾†™rû÷9?gf° 2,wÉÆЉR¤äŒ¿â +ræЩˆR Î@t,«#Øù&+Ó`™k%ÊڌÜò•–ÎÜySnD¾§r);:Αàoúžéw+õ7³C©`ƒ *¸¼ÁrTÍ<ã9V50skSˆþÞS?PÌoß7i™‘¯hC”3bYOˆrŽvgYNI&ÒAŽ®!eõeORaÙ3Uõ©&šYá}ÉÞãô|³û«_.çàéR$Rá;‚ùÈ*ˆHæÊEßÿƒ©DÓôc.E5W ðaT"È3Hé$°É#Ͳç$q¤½4gÇ0KK—¡LäíïY).&Cðœ'Nã«X¦ÙÈð'‰ÕMxüU!g¥5I}lñ—C15ƒOÖR?®º^r*Ãiîc +ÏtæÀ Ê?úŽ,†’¾¢YóôH¹Ë”öqÖe(Ï|ê4©#ÁÞ3 ¯Ðn¦¼ùûeûúba3»^_͛m†ä¹*bº€Ü%³s:9E3>¥Ga7 +úÌ1®/ȹÔ1f•YbXõٛ+a‹cf²çFŠ¬à–bƒ¶&ƒ—ç —Ïaè–laþ7Ù›]Á‹•WpmQ®” .)[òIÅU=|SúE•¸ŠùKåúnûöÐ}!B4ț$(Å«$Â@­îè¡óE$b"¬öO«&Bʸ¾Ê墠y®Á ‡'uBŠ˚J €Aá"`b%© +Ž/‚&‹IšT€X~*- Y@tÏ-y§.voà„zÚ|½æ‘³š/pŠy/£!Z8¹fUåé(‡! +FôÖç .Ս ÄýÈ¡œZ¢Ž1à €V I¤QŌ.,š‘éÎjߚkâÆ¢²U¦šqë±^£ÎJ æšDô£YGñ"–ݤHA)ñÎè2Õ¥%žîWÊ­X–}™Æ\H®ÑØ[ø¢h×^¶e/ݯWÛ¬WÝ©c§Ç­—çƒÇ—^Þ{¸zkÚy}‹ÝpT‡@jÐ=z î S‚É×1a¸n•¦“A(fß³ñá¹ Éüñ0\Ï$ÛI~Ùꄸm1á[ñ'Êx‡óäk`ÊHsAfs„–i«¦d¸©$ÏÇMÉqÇm*–³¹ãϗ a­3Vç _jÖê\Y¾öù.œ•ìÔ¥+ªFØ]„ݏœ% …¿B„âB?‚¡ƒ#ŒÕ”­“ë+ÚU¬®žˆ<¶Fizlú7 ȹF䕇K$äWÓk»rY—§*ÍÈYZ½û(¢JÖDŸ¢CÙÓ8æÛÑÉêÅB>XOǒ®˜Ò¨xã—Õ[=…¬x¦ºjL ÐR½±MJ‚„C¾’&x{™..Ã”™Ÿ@ËàÌT³– m('t¿âçÝãÎ÷w_í/ý <¸»ýI/”0øËã÷?þxð«Ì“!ÿ~óðùê?ȝVgc£Óz‚?žà +øär“¾th±Y¿fm£É?Ï67áoëùÓ&þnÑoøö´ý´õM«¹Ñj7[íg­ošífûyëÖ\dGó>hŒ}sÎ{÷ŠÊñíïm t»Ÿ'+K þc{ñè:‰Î/Ƭ֭³ÖßÿþÝZ»Ùlëÿ‰/†ìMÐëÅ1K¿ÂAÌ¥@Ô¥˜ò Ï@BÞ$:Ð¾ I'§„Ý1Æ̹ÔüxŒÇgã+(ñ:ê†CöON^¨ÖZo®³Ú1׌‚." +†× CϸÐÃú¯öö÷9Ë6×ÇŸÆ ƒ„Œ®Áûb<m=yruuµŽœ¼'çOœòuêÀ“¥%]ç{ývo÷äàíá +uÞ²jaÀ= »p‚rI¯ ?¼Þ7ä¶=sD™rËÛ«oˆ6¾O$(^rG}µ¼wtðŽÐz—Ä—Q/L-¸N„'Äã +÷¡–îGû?íÿÚùç¦ør¼¿{´÷sççwï–þÆ ÁIBY9#ó ­ŸgY@Þí› ˆ«”ÿõ¢‘ÇCêæ»ý~Ü5ä›M²ÔLX2â–õ Î{™Ë ŒÑéaG¸Ÿ¼°qRØì,³·¶™9ʤ Z…@+dÀ+pÿ Ÿ ÀN©cõ×H{ÒÔx+BdÉò‡X| ¸Cð†§ Õ ØÚÉngµp½ 2ìÒNµ“”mäaT»äQ˜ôéîA˜äQ@õHäH +ÆÑÜ6xETY‡£Ä1Ó'KènÈŽýe8Œ0Œ5Î<ãó«ÒäðmçÇ÷‡{ ”:'ûoÞ½Þ=Ùï¼=âÓþàð'íÃQ +6c®ðSTºß2À³8jŽR3&ä̳És˜,‰€tý˜´ç5dÃÒñU á;Ûá‹(Ü9à ™pÈ"…ÉUlVCLÖ·ŠÍ™™¡ã’èTY֜°â<óEÑˈ¾I`V¬2 æ› +b + „ýãÿ°Ueç¤`ð¦n1¨_+JïN'JÏՈ,tgKÒZ<ÞåtI}t±‡DqË AØ衑˜«ÂøÍ8ps˜'Ÿ;J˜÷ªr~ÉYÉåBÆ/ãû."[…¯±[ca|IÝ`Z ;W¢…Lkl<Ê]+ôzšþ¡Ù`{Z ‚ý™]Û¨p#řœY~A²Œ&WhÈ—±ÈUu¹º]&¹Z4—(ŠXŒ¢ž–ðJqï§é÷Õ r‹Ðþ«Èl’¯9âY|RÅ÷@~T¨\yD»®^͙0õéW2Áyk˜ø\U¦Ò­Ì JëŽed¬´u¹ñÊmlîæÞVäo§vÄ|ΜKTÙÚ +¤ö"Ϫq2ÃC}d]m+ãV­¾£)”*z‹ËŠö;ÓlbªÆ#œ_ï¿ß:ûô +û-êç÷HkÎQ™!`|fg«è…èÏ7±¶•®þ3*Ê”ƒÕ$of‰+W–fUo]™ºnJKÉS¬TâšÛשnˆ™nžZ‚i0IJ3͌WîvÆ9çÐÔ¤F§èâ®Êþ¢Ÿòóßó$Ísú[zþÛj¶6ìóßÖóçOÎoåópþ{sç¿ræ,öô ÎröûÓÑþ»ò“_UêFÎ}͓§st»’—ÜÀ +”f\t‚Ñ“EP&mF>sâbÛ¿'xHEÑ a»02”wIØΠ冤²Õ@è VðpMæü¬üâã³8LU'×"áÑHfÝKŠÏ­Ú*e‰P«š@¦6X¨¦9†5ì'uãÉÐÍ`[,,ÿþÕU¬ erÎzµ'U1¦{Ò}ó¤ôŠ +áó˜ÅC lð[óƒHÉ`U¾æ ”£6x£p¯Rá { ¡tœ\ã@³yÙc“/j¹Öf×Ŷ§n9UÂ¥¸¹èY¾•W09'€†k\Ãö)}.`ÉéHZU>Ü1æ³? xæ)0æ(†(µñÐpË,ò[ðqç˜6°mó4Ÿtà*2Ý40„mwð)·ÿÂä<œË\lÿmn>o?ý¦Å_m¶7ž¶66áþOk³ý`ÿ½Ïƒý÷æ쿼_/i&ˆÖ!žŒG|ï˜ð¿|UÆWò^8 _†ú|ЬO<‚eÂd®3vC¹a³ î|‡\Û¾ƒ^˜ÝÅÒÓóA;½¦Þò` ÂJr­Ša뙲øªš‰úÍþÑOûå6j]ìV.'½EJ»Æc÷7é ÖÆNmål̐«5çÍ|]‘9–ä +Ñ4™_nN»±µ›?ªgÖ¨'׀4̲¸‚6ìÂÆ®¸zŽÝ€WÊÞÀhåòÆrÑM¹`L‹F+¯?Vëe]/Ø®-|ÆÜà„I+͐¯Ÿš·ÎÞ£}œ¹(N¡ÿéÿçuÃt>÷2ÿçÏ7ðþ»ý|óéó§›àÿñìéƒþ+ŸÛÔÿçTÿ¿í_ϛîܪÿ+ԃ¹˜¾ˆ!ø¢Þª Êí¤D™Ôi}šz?:M‚„«ëœ÷@Å¡LúˆÌÍb, u*õu:ÑÂ.a+Ùu> ’^ZÁµzŠÛˆšÑˆoÆюÏ8ŸÎø¶³ÿëÉþÑáîkuŽvìSç#5±%Ñ®ä¦Äi±Aù0á;:Ž,áé.gÔ³0ÓÃéLßD +#ž¨|oÂJ>*‰ð4ñu†êp“„3Ê· °-¿5m~`'G»'Çγ ’¯Yƒ‰¨‰´(ъùÂÓòŽã~ssCZnÜõ©CE<`áû‰Æ`‰q­ÓùáíÑëÝÃW{N-/3ë Dmÿô¬Ù¬/`÷e²D98<>Ù=<9à\%øg”çƒ@$|`£IzÁÖþçü‚³@¸Wû{¯-µÃÇ^ªïl—µÍÞBIÉÂ_X™£›ã“WÝ×(“Þ•6ÅõÉ9^-Ùn>+)ðÌ8àä‘fÎAŒGÆð- JUŸ³°}œñæøŸ{uÈL¡û`ïu½:ƄT§óÓá{Îøâ!S3U X§~C‚ãxÈç|‡x»â­¨†®¹rêЙ¦’DI÷Ϧ-_f‡|­Á ©û_ñe;8åòs‹m¶Ÿ¶ø?üŸgϚõ[˜LtæDoy{ôÝ£·ï_£ÕàÂ¥µ²e¡óNÐñ/9ý¤5›ñ_þãý›_vö¡¯~ )žóÂû¶êõßaë˹ÀOö_wö~åÛRkL`™—ì;>€pÎñO|ޞ¼î¼{{tbOLþª&tu1S÷ދٺ·\¿9®Ên6³C–9мEŽ› Á 7ÎØM—S«ë(&‰„È™B¶Å£ºO&:²s2tZ+…Á•$Ý¥¢C¿  éF}Š¥bê%A/|žSxàà’×ûõª“Àò³æ0—·–pÌaôøRÀ7.sÌ0²­Ÿ¢ÁéIJˆeÖ¯o/4—iÂöi÷7FÌHRÄÁL@0)"¥tFI4à[¢Z¾ðµ¢yÔ®ÓÛíûÝÑ¿jûqüq2êtùf†cü~³=Å8Ñ3a +3à:ú‚©èƓŸ›’ +è•AKK‹§R?¼ÿé§uöNþõn¿óãîÞþIQЩh6‚‹ ÏyX²nƒù¢ñkÌIÛÖØTѽßÁ4gZÆQ>i—í0>ò҉ º_½èS½”m g´Š(ò%<èÇçcJYm𼐛­ÒÕڄ f»0rϙé;æ6ð3;͓Ÿø>ó¸°a ý<˜ŒÁ“¬zÓXAuÌQxr›³vW•7WË( fªºµÕ‹;|ZDçÃڒy֒' Ê µU!ãÄ¥hpgŜԏìF‰«N¯ç¡é9&ôb‡ábáÅÀòÏC´¸¿}}zG¢*ŒeO¦Ô ÷»ÛʊE2éŽ1הÝõgCØÈù3 ,>wIY(ïGgÇ^'qcî¨^ü°÷îlª,ë>ÿõWþ¼Î¦ØàgŠ:–„ì{ל–pX>¬MnvK«Z‚”]…vþ?Óîz +i0üEIŠ¯Ö1ÔYŒ|ùŠI7“¬úŠû›#÷þ6« ªšû‡ãý‘sŠºTݤÈÿc²Ñ&RHšÍèR–ÿ?tò?´Ú­ÍÿÛøäø´›Í×ïYœ?¼“fQþßàÓy¿ÑÊ—pÞPäkí/|[Ù 8¥¡CA_ÅoX¢—8Ö fg`”Å…ë^Q¤ˆl“è*A R»“ÝG°Ô÷Öp]nÀjNõ1m¤W•L*ÃàDâ (‘\υ`\$Ã÷IBC6|ñN»i*h…ÅûAçFŒA.’8 "ŸKK£Éi|F|¼ïŒMÍEw…9TA52 +•Ðɶ¶x§Ž¯Ã¢Á×VFÒy¸vVÿŒWÿQí@}ÎßÅꀒ2š€f/é… % <@Uíhȸð$cЈ `K¤Q­ŒbËèß妑Fo¨—/Ù2¾”¨™IÆÄ£Úr®ƒÝ©Œ +·uÖ­ÇtÎR  |Í¿ÓCá+“—+¾€¾B„ŠÃ# XOí‚:”‡U’Dòígü³s™ñ.Ԉ6²Ã4a5µ! ]ÍI™Ê ÅÖù<8‹>Õꢏ^2)UCÎÊ ˜ñº—à’ï$Åý¼íSî=悗3,^³cXpt!¾2hŠ´ã 0Ê ú‘2€ë£ 3¶M ‡óküìޖÀ=O%8\Šwѝ~vŽ˜óƒúI`Œþa¿)?3ŸìVqå‘ UûŒ’èRæ¸-ŸYt*N^V‹ íoÏ»\1¿ €\d—P¶‘L¥¬øB“Ÿs)ÌÕ¨žÆvœ›ÎòU¦á¯1Yya-rÈ‘Ô֖ô±ì’yԀ]}N¯ÌTk™oÉäGjŸ-npՁ¼1ÎS ”A;½àB¼×“ðn‡¨ˆ±Ê¢ê£t‘)?¦êâƒ[I•ñ|.ƒþ$ÌÂ]8'”F›êã÷“„xGw0㠝óÅx²ÐåŠ@ù:Co3/ÜÜé\W…h0çqrh{…_MèBÙþu+ÈSËNË2–Ê$Õâá²÷m²•¸†ÄØæ¬Iÿƒ$ ®õ]0åh'èˆC,…‹à’ԅáà”5p%>ê÷aZ„£1oôµ+pIÄðÉù†ÐÁ€ß\! 1¾7¯¥2ø7…xCTD,±È ^íT™øÐ-í +óï“(í ,QRè‹wÖ*ëq—óoù·žýWž·6Ÿc½¹ìYXÑ¡ð“cðç"•<ç +mü¦UZG‡Ù=„—‚å¦@Á9ïMë/á8LXp¦ðxX€Ï@ dø`É¢oᢠK" i*®ªÐ[—xJ?‡Ô™ °Ééšî; t8䢀Óƒ5ÒÖë2ìâ>i8öžœÔp±Á¦°€+ ~oÂ 0½ÏGD}+tþ(rúÀ­ÃÌï@Šÿ™1¬.ec nP{™]Îډv¢v Ç6¥âO^eW\B Pö#.ä®ÁM‚è@.Ž8ù¸Î?òÎó_pÅ.ðó»N°·—­þôéÓ¦8Çpׁ“›gž“er‘òjV¶qŒà¦pâU¨(‘âø„«Â{Ýããý£“šŠ4 WùàCÂOٻ͋ÑÿåB‘Àvà{ÉàO|V;©³'ò»îâoÍ +ׯk&”3$ñ?/ €Ûlu5òXè³³]¶}p-ó“Ùkô›íîÞÂ@ƒx«-k4ë¿í~XĀPqïp1Ô#5‰-ʧîPeÂbx:3½sžà%œ%³=³€3¹$ó‡5èeúÛᨼ֪³ï™åÆ)ŽžZx¬%ŠjZ0e–3ýíäá&-³S§ ô¥“nfà]çA˜”u6¥ôkéG‡Wæ- ¼¶›«†½¦Up[,œ!·ä¼¨»æuc´_{í"‡êõ¡ûª’×£¿ÊtþætÖËQj—E~ŽœÒ‡‚û2c¯X\mq!¡ø}ˆ÷4tuõÐ3£ªN¨)çÒ¢=5óó#;.ù2¼¢Ø7tÌ+¿d•Œ«e9ɁÊiX’ÔÙõïäT&v¢Ñ/}ñ†ÆOÉBI)Œp^ °¦lҏìZ++á¤x”@琐.^3 I¯ßi‰hÌu*®7—ªc/¼-OÔ2»Å­z¡–!“õ@-«1ƒ÷iá•>¨ÕlSÙσjæóWóAµ™=ã‰ê¼žÞµ²ó©À˜ÌKdÕã[„ìÖ«’S*}r]Se S8©2ŸcÞÝÒ*Ï®Ud©X$õþœô{0ŸÝkóÙ¢˜¸„‡KÌk÷Ži‹ U…vª[¢h֎å3cÝ?¢~V@½Bu|j¯·zEµÿæoxÛû‹Ý(ëãWv —îüN€³¯¬r3À©òp?À&HÞ-»”ÇÝß Æsc`@îíºÀHÿ8™>KâÌ-xž@&o¹YdQo+ã˜[D Û;×+¹‹®duÿ›sÖ-èFîµs×0Ío[y×¼T+¹¬pç„+¿Ä¡Ý”× +gN +^m¸súÝ敁E_|ðRÎë79>·t!¡ú¬×"æžU®Hܛé0ÝÕ WÄL‘f¿&j³´[Fî®ï×Jß.öx_çš9M¹˜ÞÊ.~QÈ‹Zmï onÕm°éü5,·1l÷{1¾½éSe•¾wÓh¾ÕÚ½š ´XŸóö¬ŒN=Ð Ýس>Nou×Zv +óµ®Èw´ðÞ#B~å»Ú{Gχ]n…övÆë~/´w¸žÞÃ鲀]pá&øåK¾Ê¶üô0uŸjw’Àw™µzüô¯ýStÿ¿ÌóÝü”Äo>ú웵ÙÞxÚj·¾i¶ž=Ö|¸ÿŸœûÿ­¿ÿý»µv³Ù~0Kš9ݹ¯ü¿ +¹ +’„©ÌLaæ ÙA’s%îFâ¾gÆÃðl2ÄíLŠeQ Óuv§Ýa—ØÁ¯éRßECÞÓäš\‘PVéNäI + _^°!c¹Píî½~ÿjÿU&º€¯Œ\ :î¨?IáÿK¾ÜõAŸ.Þ÷bpْ D4d{ìn駏ù# ì½=üñà'Švà\q'ùÇWȳèܺÚW¼XR–vÀ},HâÉ°gߙ÷Aþñ—³«^)n"MS>^B5@ý«ÚÑî/øz»TÜÓ0IDB•R| ~³{²÷sçÇ×»?çƒÔZÐâФ¾'ÁUç5BÀw»'ý_÷öߝ@c®_ ;á'ÓP>¼û¸y«8ZiÜ.N5j¼ ¸×¹_"?„• ñ/?ìryZF\¸ƒRžR¼ªôßqþ®Ÿ#{°§EL>lC¶N wïh_ÇN©¿ÓMBfšvÞí—ñµÙÌ(HÒΖ<òþ1‹ÙDÁJaþøöˆÃ«2!?q0®.+Žöß¿.c+èEØïŽÞžìï/+äl+>Jâ1×jÂ^§ËןRèˆvÙ°™i±,ˆ~F-¹*pñê‘9ÿ¸¨ðeß=Ü=:zû‹›®ÜÇ*!{—7/%VõIv½E¬|9˜d«zÉ5)DØÚ|(ürðjÿ+§ˆAOòx¢º´ùr+Â^ûí ð(YOêE„œ !ÿ`ØcéEœxéùþø/BÍl0#ߌz ºšò 3ut`9iÕ÷•àÑÛ¡‡Ûù§Õh‚ƒ€â)À¼’@¼Â– È:¡èâ»íœ¢Fšå¬Ù2UËzâk]÷¯*`p•‡Â•Â¡È”+›«¬RÕV=eT:Þß=ª˜® +—B¶ã³ƒ4cÎo<¡ßŠAgƒÚU£ÇOGûïªÀ?OÂQu¨èëݽr]ý¯ŸÝJ©àŒý£Ÿ*A„Éy9Üãw¯*©C|¯¹{2`O[ûa㹀¹TòÉÚŠì™»}7’ÿ±¹ñ´ù\ÛÿZÏ!ÿãÆó§ö¿ÛøäÇÿ|0ýÍnúÓËŜ@uI‹{Ä$ ûp‡‹S|êU +é³á™®÷òØȈ‰'mwÅë§ÓþOoþ• Ô_Òwj½. *ÉqätG§})W‹Ë‹ ÓT6«²é2›uæô÷`g‰\?—p~Žp)?ç¿}¤é^H?Ø1žIÉÉøëb¾rkï-© 5¸ÏÔ  C ÂŒÁeå¶"À²4M­‹Û+*\WNÌ_§)Eç+≘Ü6(B”:”õR¹C 'âà8‹&̪˜„§Ñ°gÞ呃bäƒÀԑñµ4^@v„ŒAPR_ª ‹3¼9|)%ät‹™ì$ðBnÅqÜa² ?ƒ|»µe˜ÿ¡ÿЭS0iDqÐïyuTÃô +BL9#¨šC$Ìì;àa÷ø˜kpo~à[ڃþ·{}ð¿(è}䦽ˆdX?É5¡Œ]†NÚ}×Ëø̟ÒóßN—v]sœ—è›OŸ=µÏÛͧñßoçó_{þËnA 4¦Îœz žØRäN”ÛC®Ê‰\ Lƒõb6Œõ (Ýóï_¯ûôAòRâƒ3ÅÉGî"쏖 ¸–?Lá̪–uh”¦ØeOì¨Ð9Å¢a]©3£ +§C·MùÉc¿‚F8ûv¸š9àsÛÓWª¿Ì$í!ú¬:o#ü¬Œ(©ƒÐñ; Ò,{ñ’µ<·ëÓu®}¥a-2có&aðѽR¯8ˆésx§;º® VmIZ‰ßmÑ8@‘g$f€ëð„@Õ žCrx́!~*Š‹3!²å*Ìåà^ÐA=-Tõ£¶ªXó%mðO.½ÉÈX+l$Z?O'g r_уßôā¿iëƒpõ•=âå†éÌmûvO?A®\îæ€Ï’0¬9øõø&gþö¸sŒ V‡bGS×ÓÔZÜî›oi¹þÏWÀîǹ¼@Kü?Û­vSëÿÏ@ÿ‡?úÿ-|þkõÿ[PÿÕ̙×,ÃrñÆÙ5D)­±´ /Ll,õêû‡1—ãâ„Ü9xÝH¹ú«ü¢2[ŒÐ)‹¯ +3NŸìîý#Wÿ×ooÔYs!¾Sl!æM|$ö ´²ý#Œ{2Äg¸`À3Æ10)Dó2 +ÏOFñÊS<&ÚÖ]Aî©I¿Ç¸<“úñ¼•r²³ƒ~Fœ; Ô!G"ÑϺ…ç/E/^íÿ¸ûþ5ïÍkœVo ÿƒŒD,úðÙ¢Ö0¢‘R‡}+c'-½PZ&yW(v¤mQ>ÉB~Yc'žÌÏ •-°}š%äÞ¦8yHŶyâ†Ë†âaÜ M­~¯`Lx©&sw²”шbhG|Tõk#ÄÅvÞÂ#‘#H¦wâ ÎCaË^ÂwK¢Ä`4¾¦„"…™`PdÂ-q i§‚LÛgvhÄXøtü­¦ÓŠ¬°Ö3¸ŸDD¡:[ã{ rD>þ i!ûH=UC»ÌsncP D¬ZÑAĖ¦ÂLƐHL|@2ßóf2äŽÂ‘ÃÊtµdŽ4;å€?Rª»,£¼ò9Ý &ŸDø¸í‚‚ÔKn[i›hÖt»`7x¶)· +&Iø õâÑ!ZÿÄOê^¦uHЯìÀk’1¯ˆNx™ W£Wë;]Îd/°ÈNM“y] J(JÔõ°#hÚéhk¶ÖþÏ2³j^n8Ճµd}V'%Ulµ¥Ú0ª’¥è¥ùsQdÀ¯Z#ÓÖL]"6<ª„°ÛÀ¿xd‘!=N?›î2£ÆÀAö%¸R`þu,mò<Ž{•Z|䶑$í9-ž,{x›¯n™t%Ó5…ÜšfyšùxàûÛB&W*,ê Ðˆ¾.2{!—Ýñu͂eDlÌ>/Û6“$fvÜaîdiw»â’·¦˜&¿o"UÍÀ”f× NOÖÖüÊn¨V±GAâìóÈ*s;K$ã]í'»tøV ê–±Rò…í+´Jᦥ Ix2P˲\ñI‘T6 +®ÔU’½øUJf k•+ª¤¸{’8þQ÷“L"Y˜0ŸäGØóͯÌùšŽp³Œû¾:y{¼E¦®s¾¡æê“^6áŽ%d›AjÚë«(»c(Ì ¼,AÂvÛ©§VS‘aæÀXH r$mœ´0wC714–&åJ¼«òòrݛ—z1ì«ôP‰)Öz&­–ÖPŽœžënŒ)*ƒ©FrT™_ýÝWzõœã¤è…ƒ¡h‹Î‘hq—‚ W㭇 |6¤/63¹*¥/3é­íª5ˆ\PICÔ¼K]Ô$äNngr™Õñ»êϗY ŪY¼‹=Œ>÷ùSnÿϺüOÛF±ý£Õ~ñøßf«ýlüÚÍgþ?·òÉ÷ÿÞx0ýÏnúÏNš¥ùÎÞ%ñeÄ·)^øÌN Vd‡/ +{ã³Ì†Éq è:!™ßo›Ö’'™(ÑL:Â|ÿCœôaŠ@œŠ (WŸ5pÖü3J'E°xÖXR©‡8WóÍA4¾À©ƒ1µÇ‘ÚäÅ Ɗª + »+i°Q¿3*¯×µ¼)À vœO€oÞÚÐJ¿e³FÃÍcwèõºª\Éka•œ¬Ì}‚RšjGÄgöD¦â;7ßs.éÀ®»µùëÉ;–U2š)uÌ°s™ÇD%yjâ›òNÎ@f]sï rÕ_€ÌKäW-Ÿyü€ûë’fNMˆÙ"κ“$ŠõpßäÍHä|ÐÀíåáüïMÂRTdœqÈS  +34‰\BÂK 0;µ#¤&ˆŽ×æý` “m±Ù„ˆ¢ø`É¢¯¿¦hŸ²ÿ +$MÉ/K¼EXú9ܦ¿.°ÉéšáâyèpÈeE"b eâØyÁC–×m Þ‹ÕP됢ËOŸ]DŸ5×úgO²t™£çFð͋x9k0v_Z»„c-èúòünÕÅú¦ÒÞÝ g”䴫Ʀ­cõ?ñ.þTÔº­#ì^æý",üâdGßÕ¡z¦*¹ùbIiÖu~«»ø[S§žwSŠámªjSf»•fæ±l!Ò-ÏҒL|{‡7=ÊÙ<{{¾D{ӏv ÷C:3 ‡‡˜§ÏßmôK°p<4OBÑ£à%•’Ï¢³šG¡†/3ùÖ±û"/:¦yƒ‹ÙÎY­1 U͐ŽùÎfM“î4g±*ß=œöxvr¢[”ѯ+'D·š«†½'ºh™ÃÏâûâ¤è™¤‡œ.25ß2¾ôá"Ϛ—“"×vÐÁ£®ê¬[ëF¶[ ±8„Âx"m¿FÎQð—[äP½>t_!S4?ÈŬ§yUä 9uè±aÂ&êšY +1ëQRFjŒzl(  CéCÁz™×£+ +®¶¸PÌ.¼û=ü¹ºzè™NUgӔéÉŽšh]1´C>½Þ mœýù’=Y!™Êk_v‚Ë ê³?Wžä…[ÆãÎi|ªœMråxıoøXVzÉòV˲’’Qô¤c¾QÐï 'ý>'3ñ³Œ~è“‡74€JJ2HQ„5e“~d×ZYù&…£:‡|tñšYDš.‰•£›6¶J¥œkÿ~˄™Ü0Mn¯Þïq•÷ä_ïöwßì3ˎ:$ã ø­BDQ•g÷P1΍Y';¬È²7gŽO^)s%4¤Ü ­¨ / Õžs¥è*HzV$“8ev£OÊtfRqµI¤sé%ÔèdV¦®±Ìô>^*nþ`8ÐßFƒ9)¨dÛ¢”ù¼Û¡´®Û>§aõ)°xe?96°Êƒì‰Ç;7ã +¼(F0'ëü¸Ÿ$®š±R¸pMªt¹"P•5RAgÇ/o&—À̈́mA´ó„tMx{ß-({þHgS(Þdêõù¯ß¡Ê²nøL'÷.kýƒ±îΌu‹âÐ-1æÝ;Ž,6‹å[Ån‰œY«™Ïhvÿ¨êXÌ +Rù^e4 à×:Ë_²ªm2<6„Ì„¸®ì`ÂqŒCª­ +iÿz¦ [#ú¡±ƒn)à]„ù*kÒpŠ¸ÕœˆA”­•L3õ:©"Ù>š®ƒ¢ÁGµi÷ÂÛyÆÙÌJÍE M=òCXQÖv| –k&¢ã.ËêªmZêÆW5Óäфn °dˆòìæ³Óƒe¶Ôcy7†R`¯2ñò–§]?‘ß¼`?° kΦ~▅‰ÙÐ3)a¢€i'G×kñpí*á8h"™ Êf’#ë“aôï‰ßÖfL ©•šÅ¤®…í:'H´¯Èv1€âÐÑ~€e‘¤ 05JϊmA˜é|s|@¬œ‚Ò¥CD¦(¡öÉJf›ŒYè +ÖÊB®—ù;âÛJÁ>u)o#ýØÚIçraV ¶üu¬žï@y²B€Å¡¸Ì1õh•5°|ïra´ÊËÔèI#ëÙy¶ÕxßaùÎç¥O}½¡¤Ë÷q~N5._ãt½ëñ½ýi[!áî}[ï Së}œŒÕÙw÷{ë³ð!IïÃÇ÷)ºÿÕUAŸæk£øþW{³ù¼eçÿh=oµ7îÝÆç6ã¿Íy쫹&æÍÓÿ¾{{|ð«TxɧmU†³: +Ï÷?± >œ¬^†}v•£Q˜ä¦éÝ«’§×WhñÚ*'­šy֗D؊ ÝãowÄQ†~AÏ×/¬ä­sÆq[QeøE:ïö_az² ¯°óÉ8Ýv§3`ó Èñ¼Ž' ;¤|è¸f¾µVµ]å4”w‹ªAø"µÓ]_" Çìzƒ±¨ñÈ ‡ +”¼ÈYȘL3,¿O 9¥X2褱æouIŽŒ‚„–Y84 +‹›pª(6N}à3Dÿ ²©V¦¼Äno!*@DLU &Hþiȇû¿žpÚî¿¢ç-õü`o÷xŸ¶ÕÃ÷Çï ‡›úáþ/¯©l«i–}·O͵õSHx¶©Ÿ½zÿæÜÏúN‚z§T…”EƒÓ LPéïY¤~ÿ\g¦`Ö´š™‹¹Raºùzúûçß¿TÁæh÷ð'À¦Õr¨ÃóVçJcöŽúÔj (GÁ‚àÊ wk¥Ž½CY¾! ÆlÞÝ,IFá8Â-~<ªÄ–([Äæu2äZ]؅ -”ãªyyWþ{úTRߨ<ŽcvW ºÅNÈK“˶8Š’%È&22˜­ø›w'ÿ ×S@äi: ÉëÞýKôS㇝߲G¶ŠäzóŽ+„ÖwÛ´’‚¯þ'ØkÕÐVPNûšÏ­¿ ² D(íLËûöþð‡o귛Ûćñ•\JpÍï_Ç¢¶9x +ð;â›ìä2äs֜LjصX ‘ףݚÜ­˜9bV𨽾…¦6°~˜ˆû.x9®Œ»âLg¥¡Aøàçb ëên- ÓÄYAnz}~_²ec/Å M½`Ç8½‘@Q¸ËÝÛ\$ÿÅCrhBŸê¿Ô2`]ÌJxƒF:c”Ün¿?<Ø{ûj_ì´^Eô5_ÐS$²^ñ~©þ™/…ˆ]££I íh~$vó‘ØÍCb7‰Ý<$vç0Ù9ÇTSž\i‹›s’å$m€˜NY,;Ã”]p JDQò[ê,k$e®ÓOèàrç¢%‰ vh=Þ6Ã1™I-Œ2¯Ð»QÄòç‹[¯eýj[¿6¬_›ü–åE›¤‹ ¶©N)ÑÇכËgÜ|up¼ûÃëýÎ/‡mmØD÷\ w/ìöÙÊO\¡Ù ú}ÐnëbZc»¾]TýǨº ÈHɧú#ßEÐ4jݵ´ˆ»³ÐnTFßdºŒ@ÄvœË‡Æ:ŀ+ÒËÖ¸ˆ/…Û0}·péÍÌb¼?¼v4¶Ê¾Ý†ˆ\Ñ(à&oA-+û^š_Ybã¸ÝÛHæ"ÌF…el<êʧ<™×vtét´{·eÝ=Çûj¬íÖó»V +¡¾v}…mƒÊK¤ ˆÌ(näÉ°"²‹Ñ©u•Ã„ë£dÄp’Té–.ƒ¿.M2‘Y(„„sÑdÛ Ä%K5XÚ]Ÿ`$¢þfè‡c +50'Ò”y±ÀòÐ¶Æ UÍr¬{j©¼Sö¦2ðy;‰°\õnš~JFól‘]®ÐÐBº9_ïQ¾ÞgºÑÞûŽÐùf +| +Àãɋ4.¯5wÕÎÌXj¥tMÂî$Ñòu>¢•¶oQlhØ´¤æ¡5­©* 1—ÒNj=åvèW ›# n¿¥¢æ,²oÂä<ô­ÑÐ߇Á8÷Ö¦5ºfœk*âæ!EC¨±Cz#h¸çÜÇ\/ËՙdJC³Ò ÔÉ‚ÛüG¤L²ô¥¶»- >Ðbó0iߌ†l'à‘‚zµböæ]œ¢Å·¦;:“Yð5¹!ûŠi]‡oÐÊ༠’i-ó’ÆøŽ*$;ÿÛ*JÅô$ ÈßTÕ°8š˜ GqJÃ{–D`®›X3‹í|ˊ´Ë‹l”Ù¤¨>7ê†kºãJ@ç“ é=$zø«}Šüae¿óy=€KüŸ>kƒÿïÖl·67Àÿwó!ÿóí|þkó?³u6§Î¢œ€/ƒ$Š')ƒ›<—ͽpÄ5 ƒôácàs ¦°pR(o‘pmìÌì4ü±H=šÀÅ4> ƒ`ԁj¹År÷RâSì/vc^Åf~‚Ò}—m…îtöþõÓ/‡Žc…¦Çí+´‚û ¡ÿFgßÇIrÝùÑ'öâŠg|•®_ìPê‡ã“×è ƒ3ë¼ÛÅ[Nñd‹Eè7Œú<X$c>’ÁyÀ:¬¯Þ°µ5‘³`m®‰f¾õfûøñ€Œå7»þt ¼úît^ýÙ&$ƒE²¾›èIZ͈!GRގTìiÖ³:«úŸáðÌó=ìÕ[ASä!—æyªýãÁá«Î«Ý“Ý]Ƨp<¶:dA—å~Þ=|Ņ™z{ÁY°/R>äfËÓ(mXD®-?Áׯ:Ô\‡ÿx¿o•ç‚ Åjg÷ääèà‡÷'ûÐõý½“·GÿZì—C(5võ%¯Ï¿õ(Š­'] ƒùD…€0žGšU‹D‹ùäîp #ëô¿?|wô¶³·W_ÏßsÚpDël…Ó›Ý_;ïvO~V„‘Wœî"'½Ø–X¬ã8…÷®À¼°;&e ¤-°ûf]xqÈûMvãíg ¨pà#Rq¤õ|%˙\ÖÌ°TkiÉ€¯È,’¤cÀÑ2!ôGí†ÝozEÖ8‹â›pÜæJp‡á'‚æ¶w!k7ìT ÷úqZ¯¾ˆ½aÑ4ϙåÔ¤EÂ%ö·É0ûÔ¾GjRɪ fË# ¬ÂôDM1ÞV»»Ù1¶ +Êöv3ƒgÖìÁXº‹YhÈ.B0H|eÙhƒ¢†—çòŽYå{DVþ x²m>ॶݻ.nÞz Q’õi,¼–³Ø2Ë©ð9tg±¨Õ?Sãì%¶I¾É¹#7…YWÖÊ.W…sõ¹FÇÑñ?"]œiò úç`yÏQ¶|/«¸4W´•ñIÎ ÉEñ·.†¤ǛdŽ¢Pëv ¶fDy2Ð(Y#Š`vuŒ§­~û–aì5Èe¡B•p ©Ÿ)† ó#F,®„°æ¯\؏ù V<ÊêD‹ õ3bAà \¨ õûBÚ™]ErZ¸ €ÄÅK2¬ÖéäLf&Ùlþý +F=ڐµ¦Å$­Ú‰%&Ãü2¾ ⒳|–c çœ)ånr¶¨‹©¢ ©ÞàÜðœæ#wмÀ·zrP˜Ìœ°Kéy!Š +ó«Úç: þ¥”ÇUa +Yä»q©BX#íèd—Yʉ]Ž¿ø.°:^Ýpâ–ÙÕ¾â³‡Ó 6݄ÇA¿cÎF÷!q°!ÞZÏ°Äggi8֓x$ŒPƒb®É0ù0ß³&=æ’ ~¯ítD®Œ¸š›«¢H;ÐÔёÅT{²u7>'²¤øiÓ ÌÍÆy;|"§ìI3áÂëBÙÿ7[։Àç‰iî\¼Í|Šâu£’]ðɉPn]aõ||Q¼uØn¤;Ó¹|–õ…à6ä—{›}–ƒÄç­aŠüŽäsCÊhÆmgÉyGr‹&‰`ŸÉ“¬að…Y×DzªBΪPÀ$ƒ +lÖvpUÁÅDó{qG0‘¯{ѺšÁºÑºšî&öѺ1­§Äò?ّôÌHPP°¢ R,¨%]×®pµ#Ÿz_ªÂ¨2dJ8%9CÒìØ¢AÍÿlɲ &är‡ +Y·R[Á²*Á;¸ˆ[b p¬5ͬ?&Ò¿}`5)m³ØgtŠñ`äD3åOØêK¨ž‰Ü;U!ó*—-ӚY„\ß !­­•B‚"©dìW_t1I¢V½¹ÝrÌ´µ6M[kemjˆˆÀåšìaêË{õ‡ü–¶4ñ!úÓø64óé)N6ñTÊx.سʏ‡ò£Z„TlùÅŽ֍1|Á) j)Àdçf0ٙ“‹ ›(/g Ê á²ãÅÅ@&WÀ€¦W€’šæÛUÉùݱ×d¯ÈŽ\áHí/•°Y›¾kbÐè]58³ÚšoÐÐáEÝ®Aë[ŽÀe)L9(õ1'ˆhyaÄ_%ìñï¿?†£âÇOg¯^‰+=Žm šÐ†i«#®ÛÒv*c‡¥±°,º¬£bâ# Ñg‹ö‘yI{ð¨)XÇãmã÷(_¿ù¾ÆÎÅâ pä¦Ûpn5r÷ å› §FñöbÅÙ_l,ð ÛÍø“³¥p´Ð,Õ,ÓÅUÔùÞþSµ¢ÍûžrÙ¾*&0ø5דX"kKÎÈF~É3u¦00uŽ(D†M#K®äbŽ ÓDáý‹ºÉ`/GmeHÈ´}R«“fGŒ„FGÛåÊ(Þ±`g-)ÖÜm¯^U;k­#Q.Îhö`Jdxm—”ª¨å€k!ˆ?âˆ*ü­lù Æ0a½«€ýýIkãI³ÉÅt:á6NÒi$œ…À’$¢†.yÑ|áÇҏ¢HU$Pü’/6Õ + -p¢óDg–ÎbŽ{^äÑéAd_p!‹{^½¬x-ñWµE´(—·Ùڋº–ƒ5ÕRjšYKj^SÉj_‡µÜó¾½%©]]l/ªÎðتD {Z(hNÀjÓ}Ð_Êòx\Ê~nÙÿ·Èÿ;±r”Îî^ìÿÝÚÜh=ÿïV»Ùj?Ûh}Ól7Ÿ=}þàÿ}Ÿÿïv³¹ñ—uý¾QÏïì¤YšÏÿû]_F½0u 3;×rž¶EߊŸïszõ—ÌxQëÍ“úB‘Ì•¶S¬ +Hèéo‰ÎMÕìTĵP®JÌI’R,€4OuWyÅ-UÊEiR ‡JžœÑYMæ—\ƗʨœLBCÈt + ;b+"ë¬[I1v’é4ùw¡-ÓEVñ˜zƒ/ ‹¿5?¬ _#QÀzjLCpÚʔ¤Çæñ¨°?—OÇe†©‘6²Ã4C5©i¯d’ïÉNÀ+ÌÊ÷ѧZ]ô«óRª†dzö§¼ÒËë^v‚K®qªóc/?Aûšì.xY1ÃÖ5ƒih¼!¾"O™õ 0Jüm†ñ¸œýÎpÒWˆ"«y5~voKàžÆ§œ¸×¥²ëˆ)¡gçE'–ÙI‚at;r.ÅÙm/ÌáY&yò²å毓Á®U“F¶Úõ~oÿUÈBä~󎰃-U9Ì¿µ¥íMyK¦ 1Ùaþ•”eCšŽlK(g½®lºu|Ηh츳éBU¦¶Ñ#•nifB9æ<vuY³2S­e¶£jiW>“Q픦9臞IÅ•lã Òõ^À»Êl»í3†ªOÊ”ý˜J”X%¥ÊóÉ1¥.œÌÉ:ÿ§Èl¬>Äóûʶž­m´táx„é|q‡s†3ýS± ß×uQ* Ðaj=BA¡Ð…<éŒï ›ë‚¼1:ƒ}ßr ñQ¿CMu°ܧl0ïC©A}Ö +†]»å¯­Òâa% úGüä´iÀÎˌi)’P@HÕáH4ìI¡z©ÚøӇîŸY4ð¬”OÖë1œP>òUd: +» aN‡qçô#x—‚…½Å^¼`ßåö–Cÿ½ÇkŒ¡³ñUØÓ0SÎÆߋ`ˆ(`„\z¦"“´Æzg AµòFÜö€ ÄZ&’ä’Bª•3úù䢨Ó*f8HŽ.€R…ñYT‹ù˜%è>¡žzüÿ|; ;‡ºÝyÝÚFaç³MUh«"× Kæ³ îvQP†Å¼ÃÁÿöÛÖÞëÝãã­üüƒáK>WÊ8ˆûü©qýņó1Dìü»ïp0Àû÷Uü¿¯a\žI%–!ì÷?qMúp{‡+!—¡dåptScVñú@'§T͜ãeIéÌ¢é¦Ý€/N\AôÍ_Ïrâãß#‘#p4Haýúm}}ýƒ„K Õ ð¸”>/›¿aE€"…Í`²? 4?uÑ–/Š¸ą&¹ÛÀ³ êóµNË—J@Ò `‰–/‘ a´ ¤‘ ÅY T¿ðÜß{³{ÜM"œìö«ÿ .ƒ¼WÎs4[LjV‚¥”“uÎ\àÄÁ‡à,¶míôœïóÌq¯â¤‡ú£óÍ~ !:ÏO'güñ†û¸ÇÑp‚œ²  cOÝÇgѧ°'^>S‡~ Þ.HñEåy‘¿&XÛ¸šy +¿GqôUnæ~È´*™Îï³&Ÿ»Ïñˆî­-åȎ»¥­-õVöM ælañNÕZx¶¨x'‹JA-ˆoôdÓЇ«x+‹vŠ*ùç ¯dAC¤e‹Ê—²°¥Öd‹ë×F¡ÃxK›RÂѼ¼C§ +•ÝÏ[Ï,cTÍj"~†É“”jw୆/ea©ýgKⳘ|ã4‹±(ì,.ž!0…£±„dKʗ™eÂ×¾)'åêá oì5"[ˆ?wօlxá. žæÌbw½6xd:Û+¬±;ßö\²¤bîAÁÜ)?Åß»¶ÉÞæ§Èþ‚Ätþ›ñ$ Øþßl?o>ÓöÿÖóošíÖý`ÿ¿…OþýŸ…šþç´ü5†ÿì”Yà€ÞQJß\© dš}±#òÎö~Þ=¿NŽvNŽ‹N ü…oàÜÀx¢{k'dúډ µ;ÅÍ=MÀˆF!—VæÆ<ÇqC:7{šÒþË>¯èϦ÷‹0Xa§ØŽ}ÖaÅw$w×;TíÀ°Ì¤¤lÓ(¤°[$‹ +zÙ«µ¹ ï{¥ž o¼ÎË×þþ‹·e$H/âd¼((„2&v”Í]7«¦¹¹æÑXÊïÿ¢ m.€âõcãY3sÿ·Õ~ú°þßÆçáüÿæ.«™3§pžO¸`\³Ô©©ƒþyœDã‹A*±>‡ñ8Ä|ß`û†* 3»ƒ^˜ÈÌO(F¼¹£N¯©3€\ƒõb4ðJŁ•5¾jovOö~ÎU/ôۛ¸F¬lr]sP–ð@œåR¼ñ•ðd„,ìt`à¥yn +Xöê"洋©"FÏYç\õû)äÔÌäØ\T|׿Œ«8øl·æ~ã×—TܘS=ª™ ˜¸Gj=£û¯Kî{î×hŒ.;Ëlà«\ÉÁ1¯Í²¬ªÒ©Qç¿Û95ÉÃÔôÝĂòR­¸ÿ‹‹Ø^ƒÁ{…뤨³N4õú¦FÎxUžÈš¨lXn²öÈk÷çI³y”dæù§réD¤iøïI˜\,èße8ŒàâI¥3>ïÓ­¬nùãûÃ=ƒ“ý7ï^ïžìwÞñépø“€*Äœf‰“§¢‘ÁUyˆ¥¸H5_›˜гɯ8»ïÇAdêš2ã—{!ÂGZ9à…d¡(1¹ŠÍjˆ)E¤,qÏLJ<Ã_–S8_…½·”|ÞvÜ.ðóqçLÓ?ÆØ=þ[eŽS9X·8“<“]R›>äӉÝbò—û„§åxwíû!®³ã¥ÝÆSé6îŽÑ4(æaþÛcÜüiV a§`ír¡[‰ïoÍoù2—|§CFÌVX K8½|È0Û:RÈ%&N¸žî†Óô3)ïc…*‚áߖ ÇÇ[[Â@ÀJäù(q½Ì›ðçû4d¨ÀH¾8 °Ñ}½«œäNw.iF#ÛTM6Æ[SîŒÝî‚÷‹'iO~Çì÷À|·CˆûÅzfþ]‘‘º,ýôÝòéÕFûSo‹÷‹WUÂ[ï![1å]øR_UgÍ«[U¯Ìwéq3]õ±•VP…³¦"ÇMj…‹ç+sž èH¾Þšà»S¼;¢Ü?^­¢-Þ[>0åäþ±äµÈ[âߌõÀÁ·D”ûÇÃB»¬"]ØM96]ñI{Þ½a±ÂaÂz} VÄÂèY7h†žYO\<ËÜ âmóÕݛ ïŠùîF4ÝSá=à²ÿ +[¸&w y76Á»gÉÛ6Þ­àÞtQYÿ*q¡uÞ-•ÚbÊ{ú!G>¾ âbxtÂ݆ápŠá¸¿:á=cÊûe}¼cö½/VÇ{Âè•õϯ‚§8úÎL–÷„ŸoF×ý˜ÿÎìž÷‘ýïÀÞyO&€eòԙfo6`u&7¬qÑ鮳¾êOÑýOóºM‡ÞÍt´øþ糧Mþ¬ÕÜØh=oo<{چøϞ={¸ÿyŸ[ŠÿðßsõÓ7iâ ÓðAèÉøÌj„ ÂÁ)\å·™ŒPÂKž :påi<¾À±á½šðæ/CÉa<\ÓObiIÄéwûG¯IÀíuöÞ¾yóö°(žD^ñùï{ +Îo^ï¾Úët Þ( ΁ˆÞÉF“ô‚­]­}×l~GŸ=ˏIáÉEþٟɯô*§¼_1ÕEFûÞcùEO̒˜]‹óovRFÅ%¯ö B(X×44tC+À§&§ù’Ï­ÀsfÖ)m#Ý&¬ÓuBHZW*È(N‘×U‘Ó û1Ç£Ú)%e ëN4„Ú˜ˆ”žÔêЀ¿î…#æ5×0K=‰)%1€dÜuâÓ?,~«-ë×B§Aª$“.¥Â¬âá¿_3`öŸ)ÁÁ¤êpù²Þ~¶²µYñ@•ò¥Â32àeR³±LŽ¶èŒ +'ÏøºVwÓA€Œ˜O6œ‹vp’„[,„+ê\2OE=BE0§l‘C|Ó ’ó $6dá§Ú·CUܽ±ãô­Jq$/’øª£¢×ÖÂOFêØ×(,]êhځÎ{†OeÄÃ$¤t¶)«…b),¦ãˆÃ 9°Ol@ð|çƒÇ Ž_H®ìԚ"-d~«Ù(,³ýÖùS|åóåS=“4®f¡ÇÉèzN<ô?#šžˆOZéÐô¦ÀFC'±åå%}ñòÒL ËxªÔ¬®‘ Ãê«35’倢š)xŸÜQ0)oÒ}Щ b?èÔ[ÕdqM§ã@z`‘ׂ©“Î!jFwÌ*ËRänÛkªÜæòo{ï¹2òÏ}bsΉݏ‘¨Zò>ÈÝɨcL ±JÒDæK{5L:D+6Sy3ŒßzÊy½$QH!²µ5I£+ښòÍNíñÕãºÀ q¤:ѐýëý8Q¸‚«-_5ØòÕj‹*J4O£1Vö!ùxýñ–^Ò¸Ú)Û1±²â+íÔjgŠ Ü8ïì{f-óɏEÄk¾fފŠw³¨'.s®ƃ×ȹPµòw®ˆå‘ˆ$FÕMŽ +Tlá>GÃ} ÛˆM)ãC*ºÀ‹€Ôͤ#ÐxŠ¡Wq›°y †j–[jDü’3LÔZy)¾y±ëGï´F„ò%'áðùCX²; Ý>Õ¹À[cëì‰ –KìçäHiåPš¦mwògÀ}d«ª›Hè{Æ^LòŸ¥W¡Iþq_± þÿ~Ìç&†e ÿ=¡@©˜§n_m;˯ã±÷öýáI67ƒÝśc(¹÷ÎOïw^ÍG4äM«Ø'ñ˜ \ No newline at end of file diff --git a/libtests/qtest/lzw/lzw2.in b/libtests/qtest/lzw/lzw2.in new file mode 100644 index 0000000000000000000000000000000000000000..5109c45a6fcc985c1ff5b0152809728fa0710e89 GIT binary patch literal 38344 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 G!v6ufpH%4p literal 0 HcmV?d00001 diff --git a/libtests/qtest/lzw/lzw2.out b/libtests/qtest/lzw/lzw2.out new file mode 100644 index 0000000000000000000000000000000000000000..ab1050314480807769fd063df8c9d46fd3732d2e GIT binary patch literal 143954 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 literal 0 HcmV?d00001 diff --git a/libtests/qtest/md5.test b/libtests/qtest/md5.test new file mode 100644 index 0000000..076a37e --- /dev/null +++ b/libtests/qtest/md5.test @@ -0,0 +1,18 @@ +#!/usr/bin/env perl +require 5.008; +BEGIN { $^W = 1; } +use strict; + +chdir("md5") or die "chdir testdir failed: $!\n"; + +require TestDriver; + +my $td = new TestDriver('md5'); + +$td->runtest("md5", + {$td->COMMAND => "md5"}, + {$td->FILE => "md5.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->report(1); diff --git a/libtests/qtest/md5/md5.in b/libtests/qtest/md5/md5.in new file mode 100644 index 0000000000000000000000000000000000000000..408a68b41466c302f0d03d8ed295076dcda50995 GIT binary patch literal 250 zcmV$dKTKz?lO)+%N@GR$>81x9hWpPT`BS)6dKhzku2xjORIjq{c%r=w0a4pYQ+ Ae*gdg literal 0 HcmV?d00001 diff --git a/libtests/qtest/md5/md5.out b/libtests/qtest/md5/md5.out new file mode 100644 index 0000000..148b4e6 --- /dev/null +++ b/libtests/qtest/md5/md5.out @@ -0,0 +1,16 @@ +d41d8cd98f00b204e9800998ecf8427e +0cc175b9c0f1b6a831c399e269772661 +900150983cd24fb0d6963f7d28e17f72 +f96b697d7cb7938d525a2f31aaf161d0 +c3fcd3d76192e4007dfb496cca67e13b +d174ab98d277d9f5a5611c2c9f419d9f +57edf4a22be3c955ac49da2e2107b67a +5f4b4321873433daae578f85c72f9e74 +914b11f5990cf99f1161bfeb5865a4fc +1 +1 +0 +0 +0 +5f4b4321873433daae578f85c72f9e74 +5f4b4321873433daae578f85c72f9e74 diff --git a/libtests/qtest/pcre.test b/libtests/qtest/pcre.test new file mode 100644 index 0000000..9e0ebe1 --- /dev/null +++ b/libtests/qtest/pcre.test @@ -0,0 +1,47 @@ +#!/usr/bin/env perl +require 5.008; +BEGIN { $^W = 1; } +use strict; + +chdir("pcre") or die "chdir testdir failed: $!\n"; + +require TestDriver; + +my $td = new TestDriver('pcre'); + +$td->runtest("PCRE", + {$td->COMMAND => "pcre"}, + {$td->FILE => "pcre.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +chop(my $supported = `pcre --unicode-classes-supported`); +if ($supported =~ m/^1/) +{ + my $xflags = 0; + if (`pcre --unicode-classes | wc -l` == 1) + { + # On Red Hat Enterprise Linux 5, the version of pcre provided + # by default claims to support unicode character classes, but + # they don't actually work. Since qpdf doesn't use this + # functionality, we won't care if this particular test case + # fails. If someone were to make general use of this wrapper, + # this test should be re-enabled, but on the other hand, they + # could just use the C++ interface that's been added to pcre + # since this code was written. + $xflags |= $td->EXPECT_FAILURE; + } + $td->runtest("unicode character classes", + {$td->COMMAND => "pcre --unicode-classes"}, + {$td->FILE => "pcre-unicode-classes.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES | $xflags); +} +else +{ + $td->runtest("unicode classes are not supported", + {$td->STRING => "1"}, + {$td->STRING => "1"}); +} + +$td->report(2); diff --git a/libtests/qtest/pcre/pcre-unicode-classes.out b/libtests/qtest/pcre/pcre-unicode-classes.out new file mode 100644 index 0000000..443febc --- /dev/null +++ b/libtests/qtest/pcre/pcre-unicode-classes.out @@ -0,0 +1,2 @@ +no utf8: ab +utf8: abπdefq diff --git a/libtests/qtest/pcre/pcre.out b/libtests/qtest/pcre/pcre.out new file mode 100644 index 0000000..27e94e6 --- /dev/null +++ b/libtests/qtest/pcre/pcre.out @@ -0,0 +1,68 @@ +PCRE error: compilation of a** failed at offset 2: nothing to repeat +3 +key: value one two three +0 +25 +key +0 +3 +value one two three +5 +19 +PCRE error: no match +PCRE error: no match +2 +aaa +aaa +-- +hello +PCRE error: no match +qqqcqqq: no match +ab,c: 0: ab,c +ab,c: 0: 0, 4 +ab,c: 1: ab,c +ab,c: 1: 0, 4 +ab,c: 2: ab +ab,c: 2: 0, 2 +ab,c: 3: b +ab,c: 3: 1, 1 +ab,c: 4: c +ab,c: 4: 3, 1 +ab: 0: ab +ab: 0: 0, 2 +ab: 1: ab +ab: 1: 0, 2 +ab: 2: ab +ab: 2: 0, 2 +ab: 3: b +ab: 3: 1, 1 +a: 0: a +a: 0: 0, 1 +a: 1: a +a: 1: 0, 1 +a: 2: a +a: 2: 0, 1 +a,c: 0: a,c +a,c: 0: 0, 3 +a,c: 1: a,c +a,c: 1: 0, 3 +a,c: 2: a +a,c: 2: 0, 1 +a,c: 3: no backref (getMatch) +a,c: 3: no backref (getOffsetLength) +a,c: 4: c +a,c: 4: 2, 1 +c: 0: c +c: 0: 0, 1 +c: 1: c +c: 1: 0, 1 +c: 2: no backref (getMatch) +c: 2: no backref (getOffsetLength) +c: 3: no backref (getMatch) +c: 3: no backref (getOffsetLength) +c: 4: no backref (getMatch) +c: 4: no backref (getOffsetLength) +c: 5: c +c: 5: 0, 1 +: 0: +: 0: 0, 0 diff --git a/libtests/qtest/ph.test b/libtests/qtest/ph.test new file mode 100644 index 0000000..9c0ffb8 --- /dev/null +++ b/libtests/qtest/ph.test @@ -0,0 +1,18 @@ +#!/usr/bin/env perl +require 5.008; +BEGIN { $^W = 1; } +use strict; + +chdir("ph") or die "chdir testdir failed: $!\n"; + +require TestDriver; + +my $td = new TestDriver('ph'); + +$td->runtest("PointerHolder", + {$td->COMMAND => "pointer_holder"}, + {$td->FILE => "ph.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->report(1); diff --git a/libtests/qtest/ph/ph.out b/libtests/qtest/ph/ph.out new file mode 100644 index 0000000..1326e48 --- /dev/null +++ b/libtests/qtest/ph/ph.out @@ -0,0 +1,17 @@ +hello +created Object, id 1 +created Object, id 2 +nulls equal +destroyed Object, id 2 +equal okay +less than okay +created Object, id 3 +calling Object::hello for 1 +calling Object::hello for 1 +calling Object::hello for 1 +calling Object::hello const for 1 +calling Object::hello const for 1 +calling Object::hello const for 1 +goodbye +destroyed Object, id 3 +destroyed Object, id 1 diff --git a/libtests/qtest/png_filter.test b/libtests/qtest/png_filter.test new file mode 100644 index 0000000..5b75a20 --- /dev/null +++ b/libtests/qtest/png_filter.test @@ -0,0 +1,63 @@ +#!/usr/bin/env perl +require 5.008; +BEGIN { $^W = 1; } +use strict; +use File::Copy; +use Digest::MD5; + +chdir("png_filter") or die "chdir testdir failed: $!\n"; + +require TestDriver; + +my $td = new TestDriver('png_filter'); + +cleanup(); + +$td->runtest("decode columns = 4", + {$td->COMMAND => "png_filter decode in1 4"}, + {$td->STRING => "done\n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("check output", + {$td->FILE => "out"}, + {$td->FILE => "out1"}); + +$td->runtest("decode columns = 5", + {$td->COMMAND => "png_filter decode in2 5"}, + {$td->STRING => "done\n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("check output", + {$td->FILE => "out"}, + {$td->FILE => "out2"}); + +$td->runtest("encode columns = 4", + {$td->COMMAND => "png_filter encode out1 4"}, + {$td->STRING => "done\n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("check output", + {$td->FILE => "out"}, + {$td->FILE => "in1"}); + +$td->runtest("encode columns = 5", + {$td->COMMAND => "png_filter encode out2 5"}, + {$td->STRING => "done\n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("check output", + {$td->FILE => "out"}, + {$td->FILE => "in2"}); + +cleanup(); + +$td->report(8); + +sub cleanup +{ + unlink "out"; +} diff --git a/libtests/qtest/png_filter/in1 b/libtests/qtest/png_filter/in1 new file mode 100644 index 0000000000000000000000000000000000000000..bb830eca34a23f1a8502f7f6af2f1286fe57ced4 GIT binary patch literal 3985 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 VErWke>%QG|L!ci7tR745{{b@yydeMp literal 0 HcmV?d00001 diff --git a/libtests/qtest/png_filter/out1 b/libtests/qtest/png_filter/out1 new file mode 100644 index 0000000000000000000000000000000000000000..5625f331714200ab09304c10238b77ee6f133a20 GIT binary patch literal 3188 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 zSoJNe`W9Aw3#-0`)%W6qD2QS=BFrPqBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`Yr zBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`Yr zBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`Yr zBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`YrBg`Yr zBg`YrBg`YrBg`Yrqs*hsqs*hsqs*hsqs*hsqs*hsqs*hsqs*hsqs*hsqs*hsqs*hs zqs*hsqs*hsqs*hsqs*hsqs*hsqs*hsqs*hsqs*hsqs*hsqs*hsqs*hsqs*hsqyMj9 z9%UY79%UY79%UY79%UY79%UY79%UY79%UY79%UY79%UY79%UY79%UY79%UY79%UY7 z9%UY79%UY79%UY79%UY79%UY79%UY79%UY79%UY79%UY79%UY79%UY79%UY79%UY7 z9%UY79%CM39%CM39%CM39%CM39%CM39%CM39%CM39%CM39%CM39%CM39%CM39%CM3 z9%CM39%CM39%CM39%CM39%CM39%CM39%CM39%CM39%CM39%CM39%CM39%CM39%CM3 z9%CM39%CM39%CM39%CM39%CM39%CM39%CM39%CM39%CM39%CM39%CM39%CM39%CM3 z9%CM39%CM39%CM39%CM39%CM39%CM39%CM39%CM39%CM39;X_o8mAhk8mAhk8mAhk z8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk z8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk z8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk8mAhk z8mAhk8mAhk8mAhk8mAinuA2ALhIlVNh=M3~Bf&huJi$D{Ji$D{Ji$D{Ji$D{Ji$D{ zJi$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{ zJi$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{ zJi$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$D{Ji$DPEQu_M zEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_M zEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_M zEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_MEQu_M zEQu_MEQu_MEQu`no$QUD{t;P`6K};k@vq2>4e?%l5Cu`}Mv8fgd5U?8d5U?8d5U?8 zd5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8 zd5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8 zd5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8 zd5U?8d5U?8d5U?8d5U?8d5U?8d5U?8d5U?8`D^B{nZIWKn)z$yubIDQ{+jt~=C7H* zX8xM_Yv!++zh?fL`D^B{nZIWKn)z$yubIDQ{+jt~=C7H*X8xM_YvySWN_$Y+gVG+9 z_Mo%}r9CL^L1_<4dr;bg(jJudptJ|2Jt*x#X%9+!P}+mi9+dW=vYu8BTO4%+6dGC6%!&PCWR5EjWBJ5X(LPqfOdDa^2-8NGHo~+Krj0OdglQv8N5qffClM7!m^Q++5vGkW zZG>qfOdDa^2-8NGHo~+Krj0OdglQv88)4cA(?*y!!n6^ljWBJ5X(LPXHzx^>m9t8QI&>#AE<-MZ@5RkyCXb=9q_Ze4Zjs#{mxy6V;U3KfK zTUXt>>ef}auDW&At*dTbb?d5ISKYem)>XHzx^>m9t8QI&>#AE<-MZ@5RkyCXb=9q_ zZe4Zjs#{mxy6V;U3KfKTUXt>>ef}auDbQ_)%jf3BjQK#lZc9#_*wiS z;vyk_6~Bq3NQu|tckzcvi#745_)DydjQCr;5&wv+$ceY&o%mPeh0kUEz4#ysqS%cL z^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0 z^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0 z^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0 z^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=J0^9=L9nPG= z_$>G=_$>G=_$>G=_$>G=_$>G=_$>G=_$>G=_$>G=_$>G=_$>G=_$>G=_$>G=_$>G= z_$>G=`0RfL_$>G=_$>G=_$>G=_$>G=_$>G=_$>G=_$>G=_$>G=_$>G=_$>G=_$>G= z_$>G=_$>G=_$>G=_$>G=_-sUg&w|f_&w|f_&w|f_&w|f_&w|f_&w|f_&w|f_&w|f_ z&w|f_&w|f_&w|f_&w|f_&w|f_&w|f_&w|f_&%PJnv*5GfbIfzhbIfzhbIfzhbIfzh zbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzh zbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzh zbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzh zbIfzhbIfzhbIfzhbIfzhbIfzhbIfzhbIfzh-!gy8{4Mjh%-=G9%ls|#ynmASPxAgr z-apCvCwc!Q|NWnsMcyp(W|23GyjkSUB5xLXv&fr8-YoKFkvEIHS>(+kZx(s8$eTsp zEb?ZNH;cSk)7J0MCn??S=VnT$(q%e!TS>(+kZx(s8$eTspEb?ZNH;cSk) z7J0MCn?>F%@@A1Yi@aIn%_46Wd9%oyMcyp(W|23GyjkSUB5xM?i1<(+kZx(s8$eTsp zEb?ZNH;cSk-KcT>BY+TGOdrgk^AyQ$qx?QUv!Q@fkm-PG=;b~m-VsohQOZfbW^yPMkG)b6Hs zH?_N|-A(OoYIjq+o7&yf?xuD(wY#a^P3>-KcT>BY+TGOdrgk^AyQ$qx?QUv!Q@fkm z-PG=;b~m-VsohQOZfbW^yPMkG)b6HsH?_N|-A(OoYIjq+o7&yf?xuD(wY#a^P3>-e zZ}%5J#YIB=Dt;45krJ=P@8S=U7Hi^9@t0T^8S%GxBmNOtkrQvlJMpi`iw*H!d=Ldu z>_&-siFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6 ziFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6 ziFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6 ziFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iFt{6iTOw7ADMq- z{*n1d<{z1VWd4!)N9G@ye`NlV`A6m-nSW&dk@-jFADMq-{*n1d<{z1VWd4!)N9G@y ze`NlV`A6m-nSW&dk@-jFADMq-{*n1d<{z1VWd4!)N9G@ye`LPptSx74Icv*VTh7{Y z)|RujoVDewEoW^xYs*<%&f0R;mb12;wdJfWXKgua%UN5_+H%&Gv$mYI<*Y4dZ8>Yp zSzFH9a@Ll!ww$%)tSx74Icv*VTh7{Y)|RujoVDewEoW_gKg*Q2OnJ+cw@i7jQoB1~LZRXp|x0!D<-)6qee4F_;^KIta%(t0uGv8*u&3v2rHuG)f z+swC_Z!_O!zRi4_`8M-y=G)A-nQt@SX1>jQoB1~LZRXp|x0!D<-)6qee4F_;^KIta z%(t0uGv8*u&3v2rj>XwAD0@fQJIdZs_Kvc5l)a$j%HC1-j>XwAD0@fQJIdZs_Kvc5l)a$j%HC1-j_p*QW({CavQsTAvUHl=^Vom%h{u1jV zBmNd|#6Kb{a^kIcC;k2y!0dph0I>7Gvabh@Y0 zJ)Q39bWf*yI^EOho=*34x~J1Uo$l#$Pp5l2-P7rwPWN=Wr_(*1?&)+-r+Yfx)9Id0 z_jJ0a(>2y!0dph0I>7Gvabh@Y0J)Q39bWf*yI^EOho=*34x~J1Uo$l#$Pp5l2 z-P7rwPWN=Wr_(*1?&)+-r+eQ!jrr+k@r#Iyg!onbCXym0UW?zwA0jQ*#Gm3Xu`V*= zZ}CR_BeEhV-imkPUy&CZ;=TAF3ZmGJGV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O? zGV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O? zGV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O? zGV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O?GV?O? zGV?O?GV?O?GV?O?GV?O?Ps~3t|HS+g^H0n_G5^H;6Z22ZKQaHr{1fv}%s(;z#QYQU zPs~3t|HS+g^H0n_G5^H;6Z22ZKQaHr{1fv}%s(;z#QYQUPs~3t|HS+g^H0n_G5^H; z6Z22ZKQaHr{1fwix9z)a-);MD+jrZ(+xFeI@3wun?YnK?ZToK9ciX<(_T9Gcwtctl zyKUcX`)=EJ+rHcO-L~(xeYfqqZQpJCZrgX;zT5WQw(qumx9z)a-);MD+jrZ(+xFeI z@3wun?YnK?ZTsJEv*&$#-nZv{d)~L_eS6-w=Y4zLx95F(-nZv{d)~L_eS6-w=Y4zL zx95F(-nZv{d)|+TAH`21Dq`Yi@r#Iyg!onbCX&LQ_w9M#p7-r}-=6pFdEcJ*?Rnpx z_w9M#p7-r}-=6pFdEcJ*?Rnpx_w9M#p7-r}|GoGi3ZmGJ1LgI`2q6-<_F9Vm>)1dV1B^-fcXLQ z1LgBO@k1Lw zwDCh5KeX{f8$Y!1LmNM|@k1LwwDCh5KeX{f8$Y!1!-)7%{3N0xCVm#bh`30IU&U`C zDN^FK_+9)VZ2Zv14{iL=#t&`$(8dpK{Lsb^ZT!&24{iL=#t&`$(8dpK{Lsb^--{2T zAd20nFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GL zFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GL zFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GL zFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0GLFt0HG|Cm?5 z2ly)ZD)=h+D)=h+D)=h+D)=h+D)=h+D)=h+D)=h+D)=h+D)=h+D)=h+D)=h+D)=h+ zD)=h+D)=h+D){Pu1^6oXD)=h+D)=h+D)=h+D)=h+D)=h+D)=h+D)=h+D)=h+D)=h+ zD)=h+D)=h+D)=h+D)=h+D)=h+D)?$dfUknDg0F(Fg0F(Fg0F(Fg0F(Fg0F(Fg0F(F zg0F(Fg0F(Fg0F(Fg0F(Fg0F(Fg0F(Fg0F(Fg0F(Fg0H?8;H%)P;A_ll%xlbR%xlbR z%xlbR%xlbR%xi;!d5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9E zd5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed2L28uQ9JNuQ9JNuQ9JNuQ9JNuQ9JNuQ9JNuQ9JN zuQ9JNuQ9JNuQ9JNuQ9JNuQ9JNuQ9JNuQ9JNuQ9JNul**N*O=Fs*O=Fs*O=Fs*O=Fs z*O=Fs*O=Fs*O=Fs*O=Fs*O=Fs*O=Fs*O=Fs*O=Fs{~z=JWBz~4|Bw0qF+cJjj{Jus z|KZ4gIQsq{jN!-_j*Q{R7>mK~ zBV#x+h9hG*GKM2#I5LJKV>mK~BV#x+h9hG*GKM2#I5LJKV>mK~BV#x+h9hG*iijV@ zPa-Oe;m8<{jN!-_j*Q{R7>0=7 zG4o^Q$IOqJA2UB@e$4!s`7!fj=EuyBnIAJhW`4~4nE5gDW9G-qkC`7cKW2W+{FwPM z^JC`6%#WELGe2g2%>0=7G4o^Q$IOqJA2UB@e$4!s`7!fj=EuyBnIAJhW`4~4nE5gD zW9G-qkC`7cKW2W+{FwPM^JC`6%ulp?qTLhio@n<(yC>Q`(e8qTLhi zo@n<(yC>Q`(e8qTLhio@n<(yC>h<{l!mlkr2O%-$YWR#B1@p_(P<{ zn)p-vCDuho{4L&ye?(T~#9Q%B{44TeL%bIsL_rk0amxIZ`6=^L=BLb0nV&L0Wq!*1 zl=&(1Q|714Pnn-GKV^Q({FM1A^Hb)h%uku0GCyU0%KVi1Df3h2r_4{8pE5sXe#-om z`6=^L=BLb0nV&L0Wq!*1l=&(1Q|714Pnn-GKV^Q({FM1A^Hb)h%uku0GCyU0%KVi1 zDf3h2r_4{8pK0w(YiC+J)7qKV&a`%>wKJ`qY3)pFXIeYc+L_kQw05SoGp(Iz?M!QD zT07I)nbyvwKJ`q zY3)pFXIeYc+L_kQw05SoGp(Iz?M!QDT07I)nbyvl#^$o9Yczwg`8(!b=`i9px zyuRV}4XVjC9Qu-JyhHY~Pbu?>rDSZu>$8y4HJ*oMV6EVf~>jfnVB{3N0xCVmzc z+pyS%#WpOqVX+O1ZCGr>VjC9Qu-JyhHY~Pbu?>rDSZu>$8y4HJ*oMV6EVf~>4U279 zY{Oz37Td7c#(VKW6hyHb=giNUpEEyae$M=y`8o4*=I6}MnV&O1XMWE7ocTHPbLQvF z&zYYyKWBc<{G9nY^K<6s%+HyhGe2j3&itJDIrDSo=giNUpEEyae$M=y`8o4*=I6}M znV&O1XMWE7ocTHPbLQvF&zYYyKWBc<{G9nY^K<6s%+HyhGe2j3&itJDIrDSo=giNU zpEEyae$M=y`8o4*=I6}MnV&QN|2d}nk4P8)f8hBR%~EQjIW$Yt`_nK{6fH$Dvpcir z%$zfwZFkT8-QN65dnj6piJ~Zq=1>&Pp{1pzrDzUCQ4~!yGtqY*`^!_mbj|g8KAzV* z=I@xlWB!i$JLd10zhnN6`8($Cn7?EGj`=(0@0h=1{*L)O=I@xlWB!i$JLd10zhnN6 z`8(!+Gyj|U-^~AJ{x|c#ng7lFZ{~k9|C{;W%>QQoH}eS(nDBrJ518KxCz($&pJYDCe3JPj^GW8D%qN*oGM{8V z$$XOeB=bq;lguZXPcolmKFNHN`6Tm6=9A1PnNKpGWIoA!lKCX_N#>KxCz($&pJYDC ze3JPj^GW8D%qN*oGM{8V$$XOeB=bq;lguZXPcon4F~wtw#}tn#9#cG~cuet_;xWZz zipLa>DIQZirg%*8nBpDIQZirg%*8nBpDIQZirg%(!@p$I1aq(Qd z5HH0K;z#k5_*wiSeigro-^Cx|Pw|&{C0>g+;%zP7Gk?$gJ@fa>-!p&D{5|vc%-=JA z&-^{}_srijf6x3q^Y_f(Gk?$gJ@fa>-!p&D{5|vc%-=JA&-^{}_srijf6x3q^Y_f( zGk?$gJ@fa>-!p&D{5|vc%-=JA&-^{}X=hD4YuZ`U&YE`Cw6mt2HSMfvXH7e6+F8@i zns(N-v!Lg~;v10`8S$+!i#OtJEoPX{ zFrQ&Q!+eJM4D%W0Gt6h0&oG~1KEr&5`3&i+#&FN}RS97|W)76}==5#fut2tfG>1s|_bGn+-)ts*8bTy}|IbF@^YED;k zx|-9~oUZ0{HK(gNUCrrgPFHifn$y*suI6+#r>i+#&FN}RS97|W)76}==5#fut2tfG z>1s|_bGn+-)ts*8bTy}|IbF@^YED;kx|-9~oUZ0{HK(gNUCn*z%J(tn`e3AJg^F`*1%omw2GGAoA$b6CcBJ)M&i_909 zFEU?bzQ}x$`6Ba0=8Mc1nJ+S5WWLCJk@+I?Mdpjl7nv_IUu3?>e3AJg^F`*1%omw2 zGGAoA$b6CcBJ)M&i_909FEU?bzQ}x$`6Ba0=8Mc1nJ+S5WWLCJk@+I?Mdpjl7nv_I zU!t`{Yl+qpttDDZw3cWs(OROlL~DuG60Id#OSG0~Ezw${wM1))))K8HT1&K+Xf4rN zqP0Y8iPjRWC0a|gmS`=}TB5Z?Yl+qpttDDZw3cWs(OROlL~DuG60Id#OSG0~Ezw${ zwM1))))K8HT1&K+Xf4rNqP0Y8iPjRWC0a|gmS`=}TB5Z?Yl+qpttDDZw3cWs(OROl zL~DuG60Id#OSG0~Ezw${wM1))))K8HT1#KFe)QK*;%D)T_*MKSeiwg;KgD0-m3S@Q zh_|&^X1>gPnfWsFW#-Gwmzgg!UuM3{e3|(&^JV7C%$J!jGhb%D%zT;oGV^8T%gmRV zFEd|ezRY}?`7-lm=F7~NnJ+V6X1>gPnfWsFW#-Gwmzgg!UuM3{e3|(&^JV7C%$J!j zGhb%D%zT;oGV^8T%gmRVFEd|ezRY}?`HGrW)U=|e6*aA>X+=#dYFbg#ikeo`w4$aJ zHLa*=MNKPeT2a%AnpV`bqNWu!t*B{5O)F|zQPYZ=R@AhjrWG}X+=#dYFbg#ikeo`w4$aJHLa*=MNKPeT2a%AnpV`bqNWu!t*B{5O)F|z zQPYZ=R@Aier6!-oice$3r?KMGSn+AB#6?0p7EeS{q{LJ4wfIJ)MMiupz7tt7CcYQX z#JG4aUWk|C2l1o$N&GB+5x)wb#)?m4#iz02(^&Coth^Gh#T)Uq7OTuxnXfWmWxmRM zmH8_3RpzVASDCLeUuC|^e3khs^Ht`n%vYJOGGArB%6ygiD)Uw5tISuKuQFd{zRG-+ z`6}~O=BvzCnXfWmWxmRMmH8_3RpzVASDCLeUuC|^e3khs^Ht`n%vYJOGGArB%6ygi znl{$7v8IhRZLDcyO&e?4SkuOuHrBMUrj0ditZ8FS8*AEF)5e-M*0iyvjWunoX=6<_lQ!1+4i3)_ehLzJN7f zz*<}+#AES9Bt=R*6<>>QL|SCTx8ggI6=ULi@l1@1=i-HUDSi;XfHhyhnlE6@7qI3F zSn~y}`2yB_0c*a1HDAEmEAd*q5pQdeXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%C zXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%C zXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%C zXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%CXP#%C zXP#%CXP#%CXP#%CXP#&N5A%PR|HJ$r=KnDNhxtFu|6%?Q^M9EC!~7rS|1kfD`9IA6 zVg3*Ef0+NneBI;MJ$~Ke*FApSq`#S~sb6lUg^ab(2~*sdbZDH>q`#S~sb6lUg^ab(2~*sdbZDH>q`#S~sb6lUg^a zb(2~*sdbZDH>vfwNQlSci7=^klUg^ab(2~*sdbZDH>q`#S~sb6lUg^ab(2~*sdbZD zH>q`#S~sb6lUg^ab(2~*sdbZDH>q`#S~sb6lUg^ab(30uC0>g+;%zN9m~SxOV7|e8 zgZT#Y4dxrnH<)iQ-(bGMe1rK0^9|-3%r}^CFyCOl!F+@H2J;Q(8_YMDZ!q6rzQKHh z`3Cb1<{Qj6m~SxOV7|e8gZT#Y4dxrnH<)iQ-(bGMe1rK0^9|-3%r}^CFyCOl!F+@H z2J;Q(8_YMDZ!q6rzQKHh`KH1)6}G9cO@(bLY*S&I3folJrouKAwyCg9g>5QqQ(>D5 z+f>-5!ZsDQsjy9jZ7OV2VVeruRM@7%HWjw1uuX++Dr{3>n+n@h*rviZ6}G9cO@(bL zY*S&I3folJrouKAwyCg9g>5QqQ(>D5+f>-5!ZsDQsjy9jZ7OV2VVeruRM@7%HWjw1 zuuX++eksgHvgsq)^pR}FMM69lPef9r#8dIL_(r5fMtm#26In4Pz8BBLxOgsJh?n9A z@uT=j{49PEzlz_)@4`p2=_A?nk!-#auf-ejwia8=x0r7+-(tSSe2e)O^DX9E0l|EW z`4;mn=3C6Sm~S!PV!p+Ei}@DwE#_Oyx0r7+-(tSSe2e)O^DX9E%(s|tG2ddo#e9qT z7V|CUTgv>zx+j`#C^R}M1^}Ma; zZ9Q-6d0WrhdfwLaww|~3yshVLJ#XuIThH5i-q!QBp11Y9t>v>zx+j`#C^R}M1^}Ma;Z9Q-6d0WrhdfwLaww|~3yshVLJ#XuIThH5i z-q!QBp11Y9t>v>zx+j`#q((^a|N{fv6R(vP2 zVoZE5o{4esT)Yr3#Sh{~@ss#j{33o8zlq<)AL38(mv|*!i#OtJEegyF%nQs5%nQs5 z%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5 z%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5 z%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5 z%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%nQs5%>QNnFY|wy|I7Se=KnJPm-)ZU z|7HF!^M9HD%lu#F|1$rV`M=EnW&SVof0^%i{Eo-(c>IpX?|A%<$M1Ojj>qqK{Eo-( zc>IpX?|A%<$M1Ojj>qqK{Eo-(e0jV{?U>Y#N$r@_j!Es9)Q(B*nADC*?U>Y#N$r@_ zj!ErAM3?xV_&;G%J0`VbQadKKV^TXNwPR8{CbeTyJ0`VbQadKKV^TXNwPR8{CbeTy zJ0`VbQadKKV^TXNwPR8{CbeTyJ0`VbQadKK6Bh~bSUeFXwPR8{CbeTyJ0`VbQadKK zV^TXNwPR8{CbeTyJ0`VbQadKKV^TXNwPR8{CbeTyJ0`VbQadKKV^TXNwPR8{CbeTy zJFmoR@kYF@#Rujen15jYf%ymKADDk&{(<=i<{y}UVE%#m2j(A`e_;NB`3L47n15jY zf%ymKADDk&{(<=i<{y}UVE%#m2j(A`e_;NB`3L47n15jYf%ymKADDk&{(<=i<{y}U zVE%#muG@Cqw(GWCx9z%Z*KNCQ+jZNn+jiZy>$Y9D?YeE(ZM$yUb=$7ncHOq?wq3XF zx^35OyKdWc+pgPo-L~ttUAOJJZP#tPZrgR+uG@Cqw(GWCx9z%Z*KNCQ+jZNn+jiZy z>$cr5x7qWqJ@4A{u08MC^R7Mb+VieG@7nXOJ@4A{u08MC^R7Mb+VieG@7nXOJ@4A{ zu08L@MM69lPef9r#8dIL_(r5fMtm#mdDotI?RnRpckOxCo_Fne*PeIndDotI?RnRp zckOxCo_Fne*PeIndDotI?RnRpcVCIu;*EG)i;v7dGXKc@BlC~UKQjNw{3G*^%s(>! z$owPokIX+Z|H%9!^N-9wGXKc@BlC~UKQjNw{3G*^%s(>!$owPokIX+Z|H%9!^N-B; zyyTvj-1CxqUUJV%?s>^QFS+L>_q^num)!G`dtP$SOYV8eJukWECHK7Ko|oM7l6ziq z&r9xk$vrQ*=Oy>NcDiq;`*yl-r~7ugZ>Rfqx^JiZcDiq;`*yl-r~7ugZ>Rfqx^JiZcDiq; z`*yl-r~7ugZ>Rfqx^JiZcDiq;`*yl-r~7e{5Rb(ZVW<0cx^JiZcDiq;`*yl-r~7ug zZ>Rfqx^JiZcDiq;`*yl-r~7ugZ>Rfqx^JiZcDiq;`*yl-r~7ugZ>Rfqx^JiZcDnyc zycTc7+gf~P{+an_=AW5=X8xJ^XXc-oe`fxf`Df;znSW;fnfYhtpP7GV{+an_=AW5= zX8xJ^XXc-oe`fxf`Df;znSW;fnfYhtpP7GV{+an_=AW5=X8xJ^XXc-oe`fxf`GJcL zTy)@~0~Z~*=)gq>E;?}0fr}1Ybl{=`7ah3hz(ofxI&jf}iw<0L;GzQ;9k}SgMF%cA zaM6K_4qSBLq5~Hlxahz|2QE5r(SeH&Ty)@~0~Z~*=)gq>E;?}0fr}2lTx7)uR(xQ^ z2UdJw#Rpb=V8sVkd|<@~R(xQ^2UdJw#Rpb=V8sVkd|<@~R(xQ^2UdJw#Rpb=5ElvY zSUeF)krGeE*Ww$I7FK*<#Rpb=V8sVkd|<@~R(xQ^2UdJw#Rpb=V8sVkd|<@~R(xQ^ z2UdJw#Rpb=V8sVkd|<@~uf%KdM!c=XA@f7#hs+O|A2L5=e#rcg`62T|=7-D=nIAGg zWPZr}koh6=L*|Ff51Ah_KV*K${E+z}^F!u`%nz9#GCyQ~$o!D`A@f7#hs+O|A2L5= ze#rcg`62T|=7-D=nIAGgWPZr}koh6=L*|Ff51Ah_KV*K${E+z}^F!u`%nz9#GCyQ~ z$o!D`A@f7#hs+O|A2L5=e#rcg`62T|=7-D=nIAGgWPZr}kogghBOXUQj(8mLIO1`{ z8k&*B&HtN2a)F8&aIioe7w@mjnQZ);IxUSwWmUSwWmUSwWm zUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWm zUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWm zUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWm zUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUSwWmUS$3s^Z%It$NWF$|1tlM`G3s+WBwoW z|Cs;B{6FUZG5?SGf6R|P>e!=>J?hw_jy>wwqmDi5*rSd;>e!=>J?hw_jy>wwqmI8k z%6yK^=h%FX&F9#Bj?L%Te2&fM*nE!7=h%FX&F9#Bj?L%Te2&fM*nEy7qD%Zw{GTwN zWAiySpJVemHlO1jVLr#^b8J4x=5uU5$L4cvKF8*BY(B^4b8J4x=5uU5$L4cvKF8*B zY(B^4b8J4x=5uU5$L4b!7YXrLJQ3z|Y(B^4b8J4x=5w4D=5uU5$L4cvKF8*BY(B^4 zb8J4x=5uU5$L4cvKF8*BY(B^4b8J4x=5uU5$L4cvKF8*BY(B@Y#B1?JysgCv^AqML z%ukq~Fh5~_!u*8!3G)-?C(KWnpD;gRe!~2O`3dtA<|oWgn4d5|VSd8=g!u{c6Xqw( zPne%DKVg2t{Dk=l^AqML%ukq~Fh5~_!u*8!3G)-?C(KWnpD;gRe!~2O`3dtA<|oWg zn4d5|VSd8=g!u{c6Xqw(Pne%DKULVN!cG--s<2aqohs~9VW$c^RoJP*P8D{luv3Md zD(qBYrwTh&*r~!!6?UqyQ-z%>>{MZ=3OiNUslrYbcB-&bg`FzwRAHwIJ5|`J!cG-- zs<2aqohs~9VW$c^RoJP*P8D{luv3MdD(qBYrwTh&*r~!!6?UqyQ-z%>>{MZ=3OiNU zslrYbcB-(`FNOI?PJJY&K9bY8NQlSciAai+cq+aY--xuxh;PMrA}hwk_u`ot7th5D z@lyOCeiT26pT#fYSMi(pUHC{&eI%zolG9h>wRj`m*5Zu$8S^vdXUxx-pD{mUe#ZQa z`5E&w=4Z^$n4d8}V}8c`jQJV!Gv;T^&zPSvKVyEz{EYb-^E2jW%+HvgF+XE|#{7)= z8S^vdXUxx-pD{mUe#ZQa`5E&w=4Z^$n4d8}V}8c`jQJV!Gv;T^&zPSvKVyEz{EYb- z^E2jW%+HvgF+XE|#{7)=8S^vdXUxx-pD{mUe#ZQa`5E&w=4Z^$b$_n=bKRfo{#^Ix zxfy_vgAl*ZsNf&vk#U`*Yo& z>;7E#=ej@F{kiVXb$_n=bKRfo{#^Ixxfy_vgAl*ZsNf&vk#U`*Yo&>;7E#=ej@F{kiVXb$_n=bKRfo{#^IxxK_m|rlzV1B{;g82pW3+5NhFPL92zhHjB{DS!f^9$w| z%rBT+JE zOGR8N;!+Wpinvt7r6MjBajA$)MO-T4QW2MmxKzZYA}$qisfbHOTq@#H5toX%RK%qs zE){X9h)YFWD&kTRmx{Pl#HAuG6>+JEOGR8N;!+Wpin#nzgz;Y*|E2L?8vmv7UmE|V z@n0JMrSV@H|E2L?#zjIr7EeS{q{LJ4wfIJ)MMiupz7tt7CcYQX#JG4aUWk{%_%DtB z()cfp|I+v`jsMd4FOC1w_%DtB()cf5iPz$dcw37r=2y(Gm|ro!Vt&Q^iuo1uE9O_s zub5vkzhZvH{EGP%^DE|8%&(YVF~4Gd#r%r-74s|RSIn=NUopR8e#QKX`4#gk=2y(G zm|ro!Vt&Q^iuo1uE9O_sub5vkzhZvH{EGP%^DE|8%&(YVF~8QqwGOUzaIJ%D9bD_+ zS_juUxYoh74z6`@t%GYFT)=`k*E+b?!L<&qb#SeN zYaLwc;93XQI=I%swGOUzaIJ%D9bD_+S_juUxYoh74z6`@t%GYFT7T<`p z$cS&ncOoms#P{Nv7#GjQ3t{)yc7JX6*LHtx_t$oRZTHu9e{J{Ic7JX6*LHvXO1u_t z#M@ewn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHB zn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHB zn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHB zn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tHBn3tH}Fu!4b z!~BN%4f7l3H_UIC-!Q*ne#88R`3>_M<~Pi5nBOqJVSdB>hWQQi8|F96Z_M<~Pi5nBOqJVSdB> zhWV`yZgp_0gIgWk>flxfw>r4h!L1H%b#SYLTOHi$;8q8>I=I!rtqyK=aI1q`9o*{R zRtL8_xYfa}4sLaDtAkq|-0I*~2e&%7)xoU}Zgp_0gIgWk>flxfw>r4h!L1H%b#SYL zTOHi$;8q8>I=I!rtqyK=aI1scFCEzZt=-?+{jJ^K+WoEF-`f4H-QU{%t=-?+{jJ^K z#zjIr7EeS{q{LJ4wfIJ)MMiupz7tt7CcYQX#JG4aUI@FtwfkGUzqR{YyT7&jTf4ut z`&+xewfkGUzqR|@SK_sJBi`1c%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ z%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ z%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ z%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ%)HFJ z%)HFJ%)HFJ%)HFJ!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~ z!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~ z!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~ z!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~!o0$~ z!o0$~%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F z%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F z%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F z%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?F%Dl?_j`8u%qe#iWd`5p5+ z=6B5RnBOtKV}8f{j`8u%qe#iWd`5p5+=6B5RnBOtKV}8f{j`_V3@0ED3#Cs*)EAd{5_e#81;=K~@ zm3XhjdnMj0@m`7dO1xL%y%O)0c(25JCEhFXUWxZgyjSAA67Q9Guf%&L-YfB5iT6sp zSK_@A@0ED3#Cs*)EAd{5_e#81;=K~@m3XhjdnMj0@m`7dO1xL%y%O)0c(25JCEhFX zUWxZgyjSAA67Q9Guf%&L-YfB5iT6spSK|Gb5)=Mg)9x75|lTk2}&Ep;{Xmb#jGOI^*prLJb)Qdcu? zsjHc{)YZ&e>T2dKbv5&rx|(@QUCq3uu4dj+S2J&^tC_dd)y!M!YUV9g)9x75|lTk2}& zEp;{Xmb#jGOI^*prLJb)Qdcu?sjHc{)YZ&e>T2dKbv5&rx|(@QUCq3uu4dj+S2J&^ ztC_dd)y!M!YUV9g)9x75|lTk2}&Ep;{Xmb#jGOFe*k0QCUs0n`Ji2T%{79zZ>SdI0qR z>H*XPs0UCFpdLUyfO-J+0O|qM1E>d351<}EJ%D-u^#JMt)B~soP!FIUKs|tZ0QCUs z0n`Ji2T%{79zZ>SdI0qR>H*XPs0UCFpdLUyfO-J+0O|qM1E>d351<}EJ%D-u^#JMt z)B~soP!FIUKs|tZ0QCUs0n`Ji2T%{79zZ>SdI0qR>H*Y$0m%AmOnfh%iE;5#v4a^&uH!yEt-oU(pc?0tX<_*jnm^UzQVBWyIfq4V-2IdXS8<;mRZ(!cQ zyn%TG^9JS(%o~_DFmGVqz`TKZ1M>#v4a^&uH!yEt-oU(pc?0tX<_*jnm^UzQVBWyI zfq4V-2IdXS8<;mRZ(!cQyn%TG^9JS(%o~_DFmGVqz`TKZ1M>#v4a^&uH!yD`(@3U~ zOe2{_GL2*!$uyE_B-2QykxV0*Mly|L8p$-0X(ZD~rjbk|nMN{=WE#mdl4&HEqzuV+@oBVE*-)-`{O@6n@?>70}CcoR{cboiflizLn z^1HUyWNS^f)?{lpPJZW8!=9OpJ@?;)QrAeh@#3pTy7N7xAn3P5dtY5Pyol#4GVyyb*6}5o8`@ z9%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS5 z9%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS5 z9%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS5 z9%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS59%LS5-p0I*c^mUK=55T| zn71)+W8TKRjd>gMHs)>2+nBd8Z)4uZyp4Gq^ET#f%-fi^F>hnu#=MPr8}l~iZOq%4 zw=r*H-p0I*c^mUK=55T|n71)+W8TKRjd>gMHs)>2+nBd8Z)4uZyp4Gq^ET#f%-fi^ zF>hnu#=KoQ?aFCaPP=m2mD8@AcIC7yr(HSi%4t_lyK>r<)2^I$<+LlOT{-Q_X;)6W za@v*CuAFw|v@54wIqk}6S5CWf+LhC;oOb23E2mvK?aFCaPP=m2mD8@AcIC7yr(HSi z%4t_lyK>r<)2^I$<+LlOT{-Q_X;)6Wa@v*CuAFw|v@56mOF2G>b{|B$52D=%(e8t2 z_d&G#All<1As&k-A}LbhsrXuaBhn%xz7^kztQZsDi)Uh7JQpv-OYwvFQT!x+7Cwk} zA4IzkqTL74?t^IeLA3iI+Fyy+;*EG)ixBe=^APh8^APh8^APh8^APh8^APh8^APh8 z^APh8^APh8^APh8^APh8^APh8^APh8^APh8^APh8^APh8^APh8^APh8^APh8^APh8 z^APh8^APh8^APh8^APh8^APh8^APh8^APh8^APh8^APh8^APh8^APh8^APh8^APh8 z^APh8^APh8^APh8^APh8^APh8^APh8^APh8^APh8^APh8^APh8^APh8^APh8^APh8 z^APh8^APh8^APh8^APh8^RJkH#r!MgUoroR`B%)pV*VBLub6+u{43^PG5?DBSIoa+ z{uT4Dn199mE9PG@@9-NPext*0boh-9ztQ10I{Ze5-{|lg9e$(3Z*=&L4!_aiH#+=A zhu`S%8y$Y5!*6ta`3<}3u&WNc>aeR0yXvs34!i2Gs}8&Bu&WNc>aeShi0Bgk6aOdd zs>7~2?5e}AI_#>$t~%_h!>&5)s>7~2?5e}AI_#>$t~%_h!>&5)s>7~2?5e}AI_#>$ zt~%_h!>&5)s>7~2?5e}AI^rTB9*ZZ!t~%_h!>&5)s>7~2?5e}AI_#>$t~%_h!>&5) zs>7~2?5e}AI_#>$t~%_h!>&5)s>7~2?5e}AI_#>$t~%_h!>&5)s^gV-E#8Q?wFom0 zGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>Nl zGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>Nl zGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>Nl zGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGY>NlGk?hZA@hgKA2NT) z{2}v)%pWp;$owJmhs+-`f5`kH^M}kIGJnYYA@hgKA2NT){2}v)%pWp;$owJmhs+-` zf5`kH^G8(1wRj0S=^j4kTs?%F_daF)v)#hxBf-m24Eb$Y8#Z`J9o zI=xk=x9ap(o!+X`TXlM?PH)xetvbC`r?=|#R-Iqo$`U&*u`?pN#Q((q2}|s>#7;}> zw8TzJ?6kyAOYF47PD|{x#7;}>w8TzJ?6kyAOYF47PD|{x#7;}>w8TzJ?6kyAOYF47 zPD|{x#7;}>w8YN1NQlSciLk^@OYF47PD|{x#7;}>w8TzJ?6kyAOYF47PD|{x#7;}> zw8TzJ?6kyAOYF47PD|{x#7;}>w8TzJ?6kyAOYF47PD|{3C0>g+;%zM=%p=Sr%p=Sr z%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr z%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr z%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr z%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=Sr%p=UZn0GPnV&28Pi+LCGF6Ld# zyO?(|?_%D?yo-4k^DgFH%)6L(G4EpD#k`Ao7xOOWUCg_fcQNl`-o?C&c^C68=3UIY zn0GPnV&28Pi+LCGF6Ld#yO?(|?_%D?yo-4k^DgFH%)6L(G4EpD#k`Ao7xQjybZetq z8{OLI)<(BBy0y`*jc#ppYol8m-P-8ZMz=P)wb8AOZf$gHqgxx@+UV9sw>G-9(XEYc zZFFm+TN~Zl=+;KJHoCRZt&MJNbZetq8{OLI)<(BBy0y`*jc#ppYol8m-P-8ZMz=P) zwb8AOZf$gHqgxx@+UV9s_m?(&0o}fUZeKvRFQD5O(CrK8_62nN0=j(x-M)bCxJZb{ z;)zI#lz1w>7T<`p$cS&ncOoms#P{Nv7#GjQ3-MC?AbbJczJP9DK({ZT+ZWL73+VO* zbo&CjeF5FRfbLh~wRj`m)*{M0$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E z$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E z$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E z$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E$~?+E z$~?+E$~;CoMmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11 zMmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11 zMmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11 zMmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11Mmk11_C@-QzuwlO zhj|b49_BsFdzkky?_u7eW!MhI%#BtD#;E^=hbBL%ka6)ljd7 zdNtImpV18tTeW!MhI%#BtD#;E^=hbBL%ka6)ljd7dNtImp#OMXRrLBQdVLkWzKY(sNQlSciAai+cq+aY--xuxh;PMrA}hwk_u`ot7th5D z@lyOCeiT26pT#f2SJCUM==D|f`YL*T6}`TS-dEzacq87{qK|nW^FHQ%%=?)4G4EsE z$GneuAM-xuea!oq_c8Bd-p9O;c^~sW=6%fjnD;U7W8TNSk9i;SKIVPQ`sMI6!ul1~udsfF^((Aj zVf_m0S6IKo`W4o%uzrR0E398({R-<>Sii#h71pn?euecbtY2aM3hP%`zry+z)~~RB zh4m|}Ut#?U>sMI6!ul1~udsfF^((AjVf_m0S6IKo`W4o%uzrR0E398({R-<>SpS#8 zd?fuol71gae_SNQWAQ{JMM^vsUyE-g^;ejiEyEAd*q5pQcTz^V*ZHv zBj%5oKVtrf`6K3!m_K6vi1{PtkC;DV{)qV_=8u>^V*ZHvBj%5oKVtrf`6K3!m_K6v zi1{PtkC;DV{)qV_=8u>^V*ZHvBj%5oKVtrf`6K3!m=C#a$ZbPz8*%$ZbPz8*9c z+4GP+583mOJrCLQkUbCC^N>9c+4GP+583mOJrCLQP+TO$WAQ{JMM^vsUyE-vt$exGndB~oJ?0LwZhwORCo`>vt$exGndB~oJ?0M*w zcrD(Dx3w5%KFoZW`7rZg=EKZ~nGZ7`WKQTKFoZW`7rZg=EKZ~nGZ7`W{{p%D#@XlO)3 zBN`gf(1?acG&G{25ePuZDn@)2Bfg3eU&V;8Vk9mS;<0!lk|HIZim$~tA}uoFTk)O9iZSuM zcqYchbMZpF6hDX`#ZTgA@r&?PjQA=>d=(?UiVb6n}|V;8k&*B&HtN2a)F8&aIioe7w@mjnQZ)-8e ze2n=R^D*XQ%*U9IF&|?-#(a$V81pgaW6Z~xk1-!(KE`~E`55yt=3~sqn2#|ZV?M@w zjQJSzG3H~;$C!^XA7ehoe2n=R^D*XQ%*U9IF&|?-#(dl{+%e;h8F$RMW5yjb?wE1Mj5}uBG2@OIcg(nB#vL>6 zm~qF9J7(N5D3}2S3oKBu zKtVx4!2*R1&nJ0u)tj3@1^NH(>(0>gSMfLTckvHlz^@GWl>xsp;8zCx%79-P@GAp; zWx%ft_>}>_GT>JR{K|k|8SpCuer3R~4EU7+zcS!g2K>r^Um5VLH{z|Rh-yEEm=7@@ zVm`!ti1`rnA?8EOhnNpBA7Vble2DoF^C9L#%!il{F&|<+#C(YP5c47CL(GSm4>2EN zKE!;8`4ICV=0nVfm=7@@Vm`!ti1`rnA?8EOhnNpBA7Vble2DoF^C9L#%!il{F&|<+ z#C(YP5c47CL(GSm4>2ENKE!;8`4ICV=0nVfm=7@@Vm`!ti1`rnA?8EOhnNpBA7VbN z_F=UTt9@AQ!)hN^`>@)F)jq8DVYLsdeOT?oY9Chnu-b>!KCJd(wGXR(Snb1VA6EOY z+K1IXtoC8G537Ax?ZavxR{OBpht)o;_F=UTt9@AQ!)hN^`>@)F)jq8DVYLsdeOT?o zY9Chnu-b>!KCJd(wGXR(Snb1VA6EOY+K1IXtoC8G537Ax?ZavxR{OBpht)o;_F=UT zt9@AQ!)hN^`>@)F)jq8DVYLr`uKin|z7yYzAHRis+>{fj4EeTIit!MRnDk#MwK(FoKfYBDrZzVqskdo&Zu%ml{2cGQRR#(XH+?( z${AJ8sB%V?Gpd|X<%}w4R5_!{8CA}xaz>Ris+>{fj4EeTIit!MRnDk#MwK(FoKfYB zDrZzVqskdo&gkcI{2)gCAV&QlM*Sd0{UApDAV&QlM!ytaiLb>s;xFQ_;&0;b;veFl z;$Pxh@tycy{2+c5KZ#djNc=2*5yN6c{3?DEeh{O65Tkw&qka&heh{O65Tkw&qi@7p zQ4!UCl$e*8mzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBB zmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBB zmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBB zmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBmzbBBzh?fL z`D^B{nZIWKn)z$yubIDQUiRg(FPD9}?8{|eF8gxXm&?9f{`_SFDH}-HK*|PEHjuJ` zlntb8AY}t78%Wte$_7$4kg|c44Ww)!WdkW2NZCNj22wVVvVoKhr2IePf5rcaKMMmX z8%Wte$_7$4kg|c44Ww)!WdkW2NZCNj22wVVvVoKhq--E%11TFw*+9w$QZ|sXfs_rT zY#?O=DH}-HK*|PE{!)A;z82pI11TFw*+9w$QZ|sXfs_rTY#?O=DH}-HK*|PEHjuJ` zlntb8AY}t78%Wte$_7$4kg|c44Ww)!WdkW2NZCNj22y?_-inH-_G66s81pgaW6Z~x zk1-!(KE`~E`55yt=3~sqn2#|ZV?M@wjQJSzG3H~;$C!^XA7ehoe2n=R^D*XQ%*U9I zF&|?-#(a$V81pgaW6Z~xk1-!(KE`~E`55yt=3~sqn2#|ZV?M@wjQJSzG3H~;$C!^X zA7ehoe2n=R^D*XQ%*U9IF&|?-#(a$V81pgaW6Z~xk1-!(KE`~E`55yt=3~sqn2#|Z zV?M^b!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y z!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y z!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y!lS~Y z!lS~Y!lUxp<0qe9i6QZ`_(cqh5%H_|O^k|?crAVxe~7Xe6K}*@Q4!UCRGC+qSD9Ct zSD9CtSD9CtSD9CtSD9CtSD9CtSD9CtSD9CtSD9CtSD9CtSD9CtSD9CtSD9CtSD9Ct zSD9CtSD9CtSD9CtSD9CtSD9CtSD9CtSD9CtSD9CtSD9CtSD9CtSD9CtSD9CtSD9Ct zSD9CtSD9CtSD9CtSD9CtSD9CtSD9CtkLz??r{g*u*Xg)U$8|cc({Y`S>vUYF<2oJJ z>9|hEbvmxoah;CqbX=$7Ivv;PxK77)I zr{g*u*Xg)U$8|cc({Y`S>vUYF<2oJJ>9|hEbvmxoah;CqbX=$7Ivv;PxK77)Ir{g*u|J>VjD2dnNckzcPi!t#=ycHEu?Z*W33FZ^bCzww#pI|=0 ze1iD|^9kk?%qN&nFrQ#P!F+=G1oH{z6U--=PcWZgKEZr~`2_O`<`c{(m`^aDU_QZo zg82mV3FZ^bCzww#pI|=0e1iD|^9kk?%qN&nFrQ#P!F+=G1oH{z6U--=PcWZgKEZr~ z`2_O`<`c{(m`^aDU_QZog82mV3FZ^bCzww#pI|=0e1iD|^9kk?%qP`8srE^=PpW-V z?UQPsRQsgbC)GZw_DQu*s(n)JlWLz-`=r_@)jp~ANwrU^eNyd{YM)g5q}nIdKB@Le zwNI*jQtgv!pH%y#+9%aMsrE^=PpW-V?UQPsRQsgbC)GZw_DQu*s(n)JlWLz-`=r_@ z)jp~ANwrU^eNyd{YM)g5q}nIdKB@LewNI*jQtgv!pH%y#+9%aMsrE^=PpW-V?UQPs zRQsgbC)GZw_Q}t+f9unC;(PIf_)+{MUWp;`v-m{}ixKgw_)Uz8l6WnC7k`Md7!z;A zTTv0!eoQf+Vm`%uiun}tDdtnmrmmvG{I?t(*&mp zP7|CaI8AVx;55N$g3|=22~HE7COA!Sn&33SX@b)PrwL9IoF+I;aGKyW!D)ii1g8m3 z6PzYEO>mmvG{I?t(*&mpP7|CaI8AVx;55N$g3|=22~HE7COA!Sn&33SX@b)PrwL9I zoF+I;aGKyW!D)ii1g8m36PzYEO>p|NV9BS~;&<_fD2p-iM!XdjQSC>Kd5w9Ed5w9E zd5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9E zd5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9E zd5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9E zd5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ed5w9Ube(jabe(jabe(jabe(jabe(ja zbe(jabe(jabe(jabe(jabe(jabe(jabe(jabe(jabe(jabe(jabe(jabe(jabe(ja zbe(jabe(jabe(jabe(jabe(jabe(jabe(jabe(jabe(jabe(jabe(jabe(jabe(ja zbe(jabe(jabe(jabe(jabe(jabe(jabe(jabe(jabe(jabe(jabe(jabe(jabe(ja zbe(jabe(jabe(jabe(jabp5k*#iwdN8q6Ea8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb z8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb z8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb z8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb8_XNb z8_XNb8_XNb8_XNb8_XNbXPD10pJ6`3e1`c9^BLwd%x9R-FrQ&Q!+eJM4D%W0Gt6h0 z&oG~1KEr&5`3&nOQQkWM;|Cl9?qlOJnOQQkWM;|Cl9?ql zOJ_-inH-_G6Cu9P>HmbIj+M&oQ54KF55H z`5f~(=5x&Fn9nhvV?M`xj`HmbIj+M&oQ54KF55H`5f~(=5x&Fn9nhvV?M`xj`HmbIj+M&oQ54KF55H`5f~(=5x&Fn9nhvV?M`xj`ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg> zZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg> zZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg> zZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg>ZsBg> zZsBfy=C1ZXwVAh>x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@ zx0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@ zx0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@ zx0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@x0$z@ zzhnN6`8($Cn7?EGj`=(0@0h=1{*L)O=I@xlWB!i$JLd10zhnN6`8($Cn7?EGj`=(0 z@0h=1{*L)O<_n&&;28^^vEUgCp0VH=3!bsy84I4V;28^^vEUgCp0VH=3!bsy84I4V z;28^^vEUgCp0VH=3!bsy84I4V;28^_pJ93nrng{v3#PYVdJF#}{#X2;__Hv*1=CwF zy#>=-FueuSTQI$a|5upag6S=o-h$~ZnBIcvEtuYd=`EPvg6S=o-h$~ZnBIcvEtuYd z=`EPvg6S=o-h$~Zd?~&XUyE;q=`EPvg6S=o-h$~ZnBIcvEtuYd=`EPvg6S=o-h$~Z znBIcvEtuYd=`EPvg6S=o-h$~ZnBIcvEtuYd=`EPvg6S=o-ohL4R#Zf_AB)TvnJ+S5 zWWLCJk@+I?Mdpjl7nv_IUu3?>e3AJg^F`*1%omw2GGAoA$b6CcBJ)M&i_909FEU?b zzQ}x$`6Ba0=8Mc1nJ+S5WWLCJk@+I?Mdpjl7nv_IUu3?>e3AJg^F`*1%omw2GGB83 zlJl3GzvTQS=Px;b$@xppUvmDE^Ou~zToWJD!CFd_Wf64hv&R=r=lJl3GzvTQS=Px;b$@xppUvmDE^Ou~z5a#49l*On%AamrQ=if(ze#zvQ zOn%AamrQ=i5X_RDx%ttW#-Gwmzgg!UuM3{e3|(&^JV7C%$J!jGhb%D%zT;o zGV^8T%gmRVFEd|ezRY}?`7-lm=F7~NnJ+V6X1>gPnfWsFW#-Gwmzgg!UuM3{e3|(& z^JV7C%$J!jGhb%D%zT;oGV^8T%gmRVFEd|ezRY}?`7-lm=F7~NnJ+V6X1>gPnfWsF zW#-Gwmzgg!UuM3{e3|(&^JV7C%$J!jGhb%D%zT;oGV^8T%gk5EtdLnDvqENt%nF$m zGAm?O$gGfAA+theh0F?>6*4PiR>-W7Ss}ARW`)cOnH4fCWLC(mkXa$KLS}``3Yir$ zD`Zy4tdLnDvqENt%nF$mGAm?O$gGfAA+theh0F?>6*4PiR>-W7Ss}ARW`)cOnH4fC zWLC(mkXa$KLS}``3Yir$D`Zy4tdLnDvqENt%nF$mGAm?O$gGfAA+theh0F?>6*4Pi zR>-V;mKpNtXYq>|79-+U@tYVGCGlGPF8&Z@F(%%Kx1u7d{a9tb%6ygiD)Uw5tISuK zuQFd{zRG-+`6}~O=BvzCnXfWmWxmRMmH8_3RpzVASDCLeUuC|^e3khs^Ht`n%vYJO zGGArB%6ygiD)Uw5tISuKuQFd{zRG-+`6}~O=BvzCnXfWmWxmRMmH8_3RpzVASDCLe zUuC|^e3khs^Ht`n%vYJOGGArB%6ygiD)Uw5tISuKuQFd{zRG-+`6}~O=BvzCnXfWm zWxmRMmH8_3RpzVASDCLeUuC|^e3khs^Ht`n%vYJOGGF7n#&?bH8s9a(Ykb%EuJK*t zyT*5o?;77VzH5Bf_^$C?lU$Y5$hJQZV~Giv2GFT7O`#->lU$Y5$hJQ zZV~Giv2GFT7O`#->lU$Y5$hJQZV~JMBmP(XpZK$|h;@rtw}^F%Sht9Ei&(dab&FWH zh;@rtw}^F%Sht9Ei&(dab&FWHh;@rtw}^F%Sht9Ei&(dab&FWHh;@rtw}^F%SpQOd zCB7El2#Z*^h;@rtw}^F%Sht9Ei&(dab&FWHh;@rtw}^F%Sht9Ei&(dab&FWHh;@rt zw}^F%Sht9Ei&(dab&FWHh;@rtw}|yO;;pENYCpQnyUe@HyUe@HyUe@HyUe@HyUe@H zyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@H zyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@H zyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@HyUe@H zyUe@HyUe@HyUe@HyUe@HyUe@HyUhQ?{6Eb9!~8$Y|HJ%0%>TpuKg|Ebe8ZPFe0jr{ zH+*@+mp6QQ!<69cv z()gCfw=}+`@hy#SX?#oLTN>Ze_?E`EG`^+rEsbw!d`sh78sF0Rmd3X<69cv()gCfw=}+`@hy#SX?#oLTN>Ze_?E`EG`^+r zEsbw!d`sh78sF0Rmd3X<69cv`rP=x zeEL>=C%zXyh#$pI;*}T@KZ{?)uow})ir>VjD2dnNckzcPi!t#=ycHEu?Z-CrZRXp| zx0!D<-)6qee4F_;^KIta%(t0uGv8*u&3v2rHuG)f+swC_Z!_O!zRi4_`8M-y=G)A- znQt@SX1>jQoB1~LZRXp|x0!D<-)6qee4F_;^KIta%(t0uGv8*u&3v2rHuG)f+swC_ zZ!_O!zRi4_`8M-y=G)A-nQt@SX1>jQoB1~LZRXp|x0!D<-)6qee4F_;^KIta%(t0u zGv8*u&3v2rHuG)f+swC_Z!_O!zRi3G*$%QDWIM=qknJGbLAHZz2iXp?9b`Mmc988L z+d;O2YzNs6vK?eQ$aawJAlpHjHP&lA) zK;eMG0fhq!2NVt{98fr*a6sXJ!U2T?3I`MpC>&5Ypm0FpfWiTV0}2Ne4k#Q@IG}Jq z;ef&cg#!u)6b>jHP&lA)K;eMG0fhq!2NVt{98fr*a6sXJ!U2T?3I`MpC>&5Ypm0Fp zfWiTV0}2Ne4k#Q@IG}Jq;ef&cg#!u)6b>jHP&lA)K;eMG0fhq!2NVuIEBxTokK!ls zN(_mg#V=x5jEG;wZ(>xG#B1@p_(PP%n0O=Jii)WAsnsG=8MsnsG=8M_-inH-_M^wV z$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9 z$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9 z$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9 z$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Gpe9$Nay{|I7Tp%>T>$ zzs{J+fq%lyC0kA3;rmydn<*q4ue`Pi3_efijzk3WCeK#mRM*g%dA>S26Aj5#|Cn2AjbxBY#_%5a%>>S26Aj5#|Cn2AjbxB zY#_%5a%>>S26Aj5#|CozrT9vGExr*3a%>>S26Aj5#|Cn2AjbxBY#_%5a%>>S26Aj5 z#|Cn2AjbxBY#_%5a%>>S26Aj5#|Cn2AjbxBY#_%5a%>>S26Aj5$8W@2Q4!UCoG?FO ze!~2O`3dtA<|oWgn4d5|VSd8=g!u{c6Xqw(Pne%DKVg2t{Dk=l^AqML%ukq~Fh5~_ z!u*8!3G)-?C(KWnpD;gRe!~2O`3dtA<|oWgn4d5|VSd8=g!u{c6Xqw(Pne%DKVg2t z{Dk=l^AqML%ukq~Fh5~_!u*8!3G)-?C(KWnpD;gF;;9l(m3XSeQzf1%@l=VYN<3BK zsS;0>c&fxxC7vqrREeibJXPYU5>J(Qs>D+zo+|NFiKj|DRpO}c&fxxC7vqrREeibJXPYU5>J(Qs>D+z zo+|NFiKj|DRpO}-!p&D{5|vc%-=JA&-^{}_srijf6x3q^Y_f( zGk?$gJ@fa>-!p&D{5|vc%-=JA&-^{}_srijf6x3q^Y_f(Gk?$gJ@fa>-!ngR@0okg z+O8$Yx0GaEm%@iQAgv+*+_?eBL+4z}_pV|1C zji1^0nT?;>_?eBLy%BFkMO6Fof%ymKADDk&{(<=i<{y}UVE%#m2j(A`e_;NB`3L47 zn15jYf%ymKADDk&{(<=i<{y}UVE%#m2j(A`e_;NB`3L47n15jYf%ymKADEwe?z!il zd+xdCo_p@O=bn4+x#ymH?z!ild+xdCo_p@O=bn4+x#ymH?z!ild+xdCo_p@O=bn4+ zx#ymH?z!ild+xdCo_p@O=bn4+x#ymH?z!ile}3+teKOH=6FoQ4a}zx`(Q^|$H_>ww zJvY&F6FoQ4a}zx`(Q^|$H_>wwJvY&F6FoQ4a}zx`(Q^|$H_>wwJvY&F6FoQ4a}z!P zQhX)87T*XHJvY&F6FoQ4a}zx`(Q^|$H_>wwJvY&F6FoQ4a}zx`(Q^|$H_>wwJvY&F z6FoQ4a}zx`(Q^|$H_>wwJvY&F6FoQ4^EcwHsEBGmE|_01zhHjB{DS!f^9$w|%rBT< zFu!1a!Tf^x1@jB$7tAl1UogL5e!={L`33U}<`>K_m|rlzV1B{;g82pW3+5NhFPL92 zzhHjB{DS!f^9$w|%rBTK_m|rlz zV1B{;g82pW3+5NhFPL92zhHjB{DS!f^9$w|%rBTK_m|rlzBzQ^ilHeu5OM;gKF9}`}yd-!@@RHyq!ApXd1TP6*61*gM zN$`^3CBaLAmjo{fUJ|?{cuDY*;3dIJf|mp@30@MsBzQ^ilHeu5OM;gKF9}`}yd-$} z{|JJY1TP6*61*gMN$`^3CBaLAmjo{fUJ|?{cuDY*;3dIJf|mp@30@MsBzQ^ilHeu5 zOM;gKF9}`}yd-!@@RHyq!ApXd1TP6*61*gMN$`^3CBaLAmjo{fUJ|?{cuDY*;N@q* zl25P2@8S!$owPokIX+Z|H%9!^N-9wGXKc@ zBlC~UKQjNw{3G*^%s(>!$owPokIX+Z|H%9!^N-9wGXKc@BlC~UKQjNw{3G*^%s(>! z$owPokIX+Z|H%9!^N-9wGXKc@BlC~UuN-~l=qpEGIr_@cSB}1N^p&Hp9DU{JD@R{B z`pVH)j=pmAm7}j5edXvYM_)Pm%F$PjzH;=Hqpuu&<>)I%Upe~9(N~VXa`cs>uN-~l z=qpEGIr_@cSB}1N^p&Hp9DU{JD@R{B`pVH)j=pmAm7}jdA8qJYhJIz}SB8FN=vRh* zW$0Iier4!ahJIz}SB8FN=vRh*W$0I5im$}i;v4Z7@mKLT@pthL@lWwD@vZnyd@p_w zKZ>7(pUm5z9pU%e4;MMYHman1ai z`8D%v=GV-xnO`%%W`525n)x;JYv$L?ubE#nzh-{T{F?bS^K0hU%&(bWGrwkj&HS4A zHS=rc*UYb(Uo*dEe$D)v`8D%v=GV-xnO`%%W`525n)x;JYv$L?ubE#nzh-{T{F?bS z^K0hU%&(bWGrwkj&HS4AHS=rc*UYb(Uo*dEe$D)v`8D%v=GV-xnO`%%W`525n)x;J zYv$L?ubJOaxS?=E;fBHug&PVt6mBToP`IIRL*a(P4TT#DHxzCt+)%ioa6{pS!VQHR z3O5vPDBMuEp>RXthQbYn8wxiRZYbPPxS?=E;fBHug&PVt6mBToP`IIRL*a(P4TT#D zHxzCt+)%ioa6{pS!VQHR3O5vPDBMuEp>RXthQbYn8wxiRZYbPPxS?=E;fBHug&PVt z6mBToP`IIRL*a(P4TYP}3P1Stqxea@5<}u=@rxK1BjQ)_n-~=(@ml;Y{t#s`CfQ{FeDG^IPV(%x{_BGQVYh%lwx4E%RIEx6E&u z-!i{te#`up`7QHX=C{mmncp(MWq!;2miaC7TjsaSZ<*gRzh!>Q{7#d1n!MBGohI)z zd8f%cP2OqpPLp?yVRQ#ag2Ngf4_(8=FDt=J$gNh$i{Gj3o6+fu>LB$U$eo*m)iXT+`pyCG=KdAUY z#SbceQ1OF`A5{FH;s+H!sQ5v}4=R38@q>yVRQ#ag2Ngf4_(8=FDt=J$gNh$i{Gj3o z6+fu>LB$U$eo*m)iXT+`pyCG=KdAUY#SbceQ1OF`A5{FH;s+H!sQ5v}4=R38@q>yV zRQ#ag2NgejuK4dh{X_gy{7ZZ*z7yYzAHrADKTge`Nm1{E_)1^GD{7 z%paLQGJjc21`6Kg3=8w!DnLjdrWd6wfk@+L@N9K>r zADKTge`Nm1{E_)1^GD{7%paLQGJjc21`6Kg3=8w!D znLjdrWd6wfk@+L@N9K>rADKTgf1>b2;fcZ%g(nJ66rLzNQFx;8MB$0T6NM)VPZXXg zJW+U}@I>K>!V`rj3QrWCC_GVkqVPoFiNX_wCkjs#o+vy~c%tw`;fcZ%g(nJ66rLzN zQFx;8MB$0T6NM)VPZXXgJW+U}@I>K>!V`rj3QrWCC_GVkqVPoFiNX_wCkjs#o+vy~ zc%tw`;fcZ%g(nJ66rLzNQFx;8MB$0T6NM)VPoEWj@aaeKlXxYD#LwavF)T*Jui`f` zDoWzD_+9)V%3@5s5pP9BRQvIX`6uR|n15paiTNkypO}AQ{)zb~=AW2V9_OoR_TlTYMKU?;* zWj|Z?vt>V9_OoR_TlTYMKYuB{5?_mN#9zc;#oxr=#XrP9#lOV2;ydxZu}Sh}Sh|79-+U@tYVGCGlGPF8&bx-%NC%|C@;pyb*6jMO6Fo1@kYMf5H3< z=3g-Xg83KBzhM3a^Dmfx!Tby6UoiiI`Jlft=&ua=D}(;ZpuaNcuMGMtgZ|2(zcT2r z4EigB{>q@gGWhwgSk9p33|h{hAuj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj z4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj z4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj z4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>Auj4>1oh z4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh z4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh z4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh z4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>1oh4>J!l4>J!l4>J!l z4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l z4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l z4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l z4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!l4>J!lk1&rgk1&rgk1&rgk1&rgk1&rg zk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rg zk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rg zk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1&rg zk1&rgk1&rgk1&rgk1&rgk1&rgk1&rgk1~%kk1~%kk1~%kk1~%k@BbgdelYL<2Yx@8 z_x}^1AI$szBhe4${Xf$W=27NR=27NR=27NR=27NR=27NR=27NR=27NR=27NR=27NR z=27NR=27NR=27NR=27NR=27NR=27NR=27NR=27NR=27NR=27NR=27NR=27NR=27NR z=27NR=27NR=27NR=27NR=27NR=27NR=27NR=27NR=27NR=27NR=27NR=27NR=27NR z=27NR=27NR=27NR=27NR=27NR=27NR<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m z<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m z<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m z<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m<}v0m z<}v0m<}v0m<}v0m<}v0m=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6 z=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6 z=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6 z=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6=5gk6 z=5gk6=5gk6<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr z<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr z<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr z<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr<_YEr z=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB z=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB z=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB z=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB=1JyB<|*bW<|*bW z<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW z<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW z<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW z<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW<|*bW=4s|>=4s|>=4s|>=4s|> z=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|> z=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|> z=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|> z=4s|>=4s|>=4s|>=4s|>=4s|>=4s|>=4s|><{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0 z<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0 z<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0 z<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0 z<{9Q0<{9Q0<{9Q0<{9Q0<{9Q0=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h z=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h z=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h z=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h=2_-h z=2_-h=2_-h=2_-h<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$ z<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$ z<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$ z<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$<~im$ z<~im$=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M z=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M z=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M z=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M=6U9M<^|>j z<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j z<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j z<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j z<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j<^|>j=0)a3=0)a3=0)a3 z=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3 z=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3 z=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3=0)a3 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 zkn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9 zkn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9 zkn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9kn@o9 zkn@o9knOIazT5Y^Bw0q&Uc*eINx!;<9x^Yj`JPoJI;5U?>OIazT5Y^Bw0q&Uc*eINx!;<9x^Yj`JPoJI;5U?>OIazT5Y^Bw0q&Uc*eINx!;<9x^Y zj`JPoJI;5U?>G-T4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P# z4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P# z4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P# z4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P#4?7P# z4?B-Ik2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGw zk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGw zk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGw zk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGwk2sGyk2;S! zk2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S! zk2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S! zk2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S! zk2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;S!k2;Szk2#Myk2#Myk2#My zk2#Myk2#Myk2#Myk2#Myk2#Myk2#Myk2#Myk2#Myk2#Myk2#Myk2#Myk2#Myk2#My zk2#Myk2#Myk2#Myk2#Myk2#Myk2#Myk2#Myk2#Myk2#Myk2#Myk2#Myk2#Myk2#My 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 z=M(1>=M(1>=M(1>=M(1>=M(1>=M(1>=M(2s=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX z=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX z=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX z=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX=TqlX z=TqlX=TqlX=TqlX=TqlX=Tql1=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs z=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs z=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs z=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs=QHOs z=QHOs=QHOs=QHPX=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C z=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C z=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C z=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C=X2+C z=X2)^=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx z=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx z=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx z=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_cx=L_dc=S$~H z=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H z=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H z=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H z=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S$~H=S%0`&cB_1JO6h6?fl#M zxASl3-_F0Ce>?wn{_XtR`M2|L=iko1oqs$3cK+@B+xfTiZ|C36zny?wn{_XtR`M2|L=iko1oqs$3cK+@B+xfTi zZ|C36zny?wn{_XtR`M2|L z=iko1oqs$3cK+@B+xfTiZ|C36znyLf1Lj~|8f4~{Kxr^^B?Cw&VQW$IRA0}Lf1Lj~|8f4~{Kxr^^B?Cw&VQW$IRA0} zLf1Lj~|8f4~ z{Kxr^^B?Cw&VQW$IRA0}o&P%jb^h!8 z*ZHsWU+2Hhf1Uq2|8@TB{MY%f^Izw`&VQZ%I{$V4>-^XGuk&B$zs`T1|2qG5{_FhL z`LFX|=fBQ>o&P%jb^h!8*ZHsWU+2Hhf1Uq2|8@TB{MY%f^Izw`&VQZ%I{$V4>-^XG zuk&B$zs`T1|2qG5{_FhL`LFX|=fBQ>o&P%jb^h!8*ZHsWU+2Hhf1Uq2|8@TB{MY%f z^Izw`&VQZ%I{$V4>-^XGuk&B$zs`T1|2qG5{^$J9`JeMY=YP)soc}rhbN=W2&-tJ8 zKj(kW|D69h|8xH5{LlHH^FQZ*&i|bMIsbG1=lsw4pYuQGf6o7$|2hA2{^$J9`JeMY z=YP)soc}rhbN=W2&-tJ8Kj(kW|D69h|8xH5{LlHH^FQZ*&i|bMIsbG1=lsw4pYuQG zf6o7$|2hA2{^$J9`JeMY=YP)soc}rhbN=W2&-tJ8Kj(kW|D69h|8xH5{LlHH^FQZ* z&i|bMIsbG1=lsw4pYuQGf6o7$|2hAEhjfkv+D>FqbQVkk9~+9cC^`$9W};6@Wvct3 zJ0)u2WQ0uZb$&4a!TbmFAIyI+Z_FF>#=J3a%p3E@yfJUg8}r7zF>lNp^Txa}Z_FF> z#=J3a%p3E@yfJUg8}r7zF>lNp^Txa}Z_FF>#=J3a%p3E@yfJUg8}r7zF>lNp^Txa} zZ_FF>#=J3a%p3E@yfJUg8}r7zF>lNp^Txa}Z_FF>#=J3a%p3E@yfJUg8}r7zF>lNp z^Txa}Z_FF>#=J3a%p3E@yfJUg8}r7zF>lNp^Txa}Z_FF>#=J4_%scbWyfg32JM+%G zGw;kh^Ul08@60>%&b%}4%scbWyfg32JM;cChk0k-nRn)$d1v04cjldWXWp52=AC(G z-kEpioq1>8nRn)$d1v04cjldWXWp52=AC(G-kJAbILtfq&b%}4%scbWyfg32JM+%G zGw;kh^Ul08@60>%&b%}4%scbWyfg32JM+%GGw;kh^Ul2g-C^FDcjldWXWp52=AC(G z-kEpioq1;-%!7F_59Yx?kac`y&=!917;^I#s#gLyCy z=D|Fe2lHSa%!7F_59Yx?kac`y&=!917;^I#s#gLyCy z=D|Fe2lHSa%!7F_59Yx?kac`y&=!917;^I#s#gLyCy z=D|Fe2lHSa%!7F_59WjUU_O`+=7afQK9~>YgZW@Sm=ETI`CvYn59WjUU_O`+=7afQ zK9~>YgZW@Sm=ETI`CvYn59WjUU_O`+=7afQK9~>YgZW@Sm=ETI`CvYn59WjUU_O`+ z=7afQK9~>YgZW@Sm=ETI`CvYn59WjUU_O`+=7afQK9~>YgZW@Sm=ETI`CvYn59WjU zU_O`+=7afQK9~>YgZW@Sm=ETI`CvYn59WjUU_O`+=E*#nC-Y>U%#(RCPv*%ynJ4pP zp3IYZGEe5oJeeo+WS-2Ec`{Gt$vl}S^JJdPlX)^v=E*#nC-Y>U%#(RCPv*%ynJ4pP zp3IYZGEe5oJeeo+WS-2Ec`{Gt$vl}S^JJdPlX)^v=E*#nC-Y>U%#(RCPv*%ynJ4pP zp3IYZGEe5oJeeo+WS-2Ec`{Gt$vl}S^JJdPlX)^v=E*#nC-Y=p%!_$3FXqL(m>2V6 zUd)SmF)!xDyqFjBVqVOPc`+~M#k`mo^I~4ii+M3G=Ec027xQ9X%!_$3FXqL(m>2V6 zUd)SmF)!xDyqFjBVqVOPc`+~M#k`mo^I~4ii+M3G=Ec027xQ9X%!_$3FXqL(m>2V6 zUd)SmF)!xDyqFjBVqVOPc`+~M#k`mo^I~4ii+M3G=Ec027xQ9X%!_$3FXof^WImZs z=9BqkKABJEllf#mnNQ}E`D8wsPv(>PWImZs=9BqkKABJEllf#mnNQ}E`D8wsPv(>P zWImZs=9BqkKABJEllf#mnNQ}E`D8wsPv(>PWImZs=9BqkKABJEllf#mnNQ}E`D8ws zPv(>PWImZs=9BqkKABJEllf#mnNQ}E`D8wsPv(>PWImZs=9BqkKABJEllf#mnNQ}E z`D8wsPv(>PWImZs=8O4azL+oOi}_-{m@npw`C`79FXoH+V!oI!=8O4azL+oOi}_-{ zm@npw`C`79FXoH+V!oI!=8O4azL+oOi}_-{m@npw`C`79FXoH+V!oI!=8O4azL+oO zi}_-{m@npw`C`79FXoH+V!oI!=8O4azL+oOi}_-{m@npw`C`79FXoH+V!oI!=8O4a zzL+oOi}_-{m@npw`C`79FXoH+V!oI!=8O4azL+oOoB3wGnQ!Ks`DVVEZ|0l%X1=ec`C)#TALfVoVSbn&=7;%VewZKThxuWC zm>=ec`C)#TALfVoVSbn&=7;%VewZKThxuWCm>=ec`C)#TALfVoVSbn&=7;%VewZKT zhxuWCm>=ec`C)#TALfVoVSbn&=7;%VewZKThxuWCm>=ec`C)#TALfVoVSbn&=7;%V zewZKThxuWCm>=ec`C)#TALf_&Wqz4o=9l?pewkn9m-%IWnP29Y`DK2YU*?zjWqz4o z=9l?pewkn9m-%IWnP29Y`DK2YU*?zjWqz4o=9l?pewkn9m-%IWnP29Y`DK2YU*?zj zPd@#VPygi8&+~b{|2{Q%8axf222X>h!PDSr@HBWDJPn=(PlKny)8J|FGh!PDSr@HBWDJPn=(PlKnyv-@ZF z&+ebyKf8Z+|Lp$R{j>XL_s{O1-9Nj3cK_`D{nGiB^FPk7o!>aWb$;jk-uZ*`zs?_> z|8xH2{Mq@7^H=9@j@>`Ie|G=u{@MMr`)Bvh?w{R1yMK27?EcyPv-@ZF?;p-Toqsw1 z{{Qna|CoQwKjt6vkNL;^WBxJ!n19Sa<{$Hq`N#ZY{xScUf6PDTAM=m-$NXddG5?r< m%s=KI^N;z*{A2zx|CoQwKjt6vkNL;^WBxJ!n19T_pZ^CIhcuu7 literal 0 HcmV?d00001 diff --git a/libtests/qtest/qutil.test b/libtests/qtest/qutil.test new file mode 100644 index 0000000..9c0410e --- /dev/null +++ b/libtests/qtest/qutil.test @@ -0,0 +1,18 @@ +#!/usr/bin/env perl +require 5.008; +BEGIN { $^W = 1; } +use strict; + +chdir("qutil") or die "chdir testdir failed: $!\n"; + +require TestDriver; + +my $td = new TestDriver('qutil'); + +$td->runtest("QUtil", + {$td->COMMAND => "qutil"}, + {$td->FILE => "qutil.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->report(1); diff --git a/libtests/qtest/qutil/qutil.out b/libtests/qtest/qutil/qutil.out new file mode 100644 index 0000000..a48e626 --- /dev/null +++ b/libtests/qtest/qutil/qutil.out @@ -0,0 +1,30 @@ +16059 +0016059 +16059 +3.141590 +3.142 +1000.123000 +exception 1: Util::int_to_string has been called with a padding value greater than its internal limit +exception 2: Util::int_to_string has been called with a padding value greater than its internal limit +exception 3: Util::int_to_string has been called with a padding value greater than its internal limit +exception 4: Util::double_to_string has been called with a number and a decimal places specification that would break an internal limit +exception 5: Util::double_to_string has been called with a number and a decimal places specification that would break an internal limit +one +7 +compare okay +---- +before open +exception: open file: No such file or directory +---- +before fopen +exception: fopen file: No such file or directory +---- +IN_TESTSUITE: 1: 1 +HAGOOGAMAGOOGLE: 0 +---- +0x41 -> A +0xf7 -> ÷ +0x3c0 -> π +0x16059 -> f0 96 81 99 +0x7fffffff -> fd bf bf bf bf bf +0x80000000: bounds error in QUtil::toUTF8 diff --git a/libtests/qtest/rc4.test b/libtests/qtest/rc4.test new file mode 100644 index 0000000..0207317 --- /dev/null +++ b/libtests/qtest/rc4.test @@ -0,0 +1,45 @@ +#!/usr/bin/env perl +require 5.008; +BEGIN { $^W = 1; } +use strict; + +chdir("rc4") or die "chdir testdir failed: $!\n"; + +require TestDriver; + +my $td = new TestDriver('RC4'); + +cleanup(); + +my @tests = ('0123456789abcdef', + '0123456789abcdef', + '0000000000000000', + 'ef012345', + '0123456789abcdef'); + +my $n = 0; +foreach my $key (@tests) +{ + ++$n; + $td->runtest("test $n", + {$td->COMMAND => "rc4 $key test$n.in tmp1-$n.out"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + $td->runtest("check output", + {$td->FILE => "tmp1-$n.out"}, + {$td->FILE => "test$n.out"}); + $td->runtest("test $n reverse", + {$td->COMMAND => "rc4 $key test$n.out tmp2-$n.out"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + $td->runtest("check output", + {$td->FILE => "tmp2-$n.out"}, + {$td->FILE => "test$n.in"}); +} + +cleanup(); + +$td->report(4 * scalar(@tests)); + +sub cleanup +{ + system("rm -f tmp*-*"); +} diff --git a/libtests/qtest/rc4/test1.in b/libtests/qtest/rc4/test1.in new file mode 100644 index 0000000..be687ec --- /dev/null +++ b/libtests/qtest/rc4/test1.in @@ -0,0 +1 @@ +#Eg‰«Íï \ No newline at end of file diff --git a/libtests/qtest/rc4/test1.out b/libtests/qtest/rc4/test1.out new file mode 100644 index 0000000..0a8617e --- /dev/null +++ b/libtests/qtest/rc4/test1.out @@ -0,0 +1 @@ +u·‡€™àŖ \ No newline at end of file diff --git a/libtests/qtest/rc4/test2.in b/libtests/qtest/rc4/test2.in new file mode 100644 index 0000000000000000000000000000000000000000..1b1cb4d44c57c2d7a5122870fa6ac3e62ff7e94e GIT binary patch literal 8 KcmZQzfB*mh2mk>9 literal 0 HcmV?d00001 diff --git a/libtests/qtest/rc4/test2.out b/libtests/qtest/rc4/test2.out new file mode 100644 index 0000000..9bdb590 --- /dev/null +++ b/libtests/qtest/rc4/test2.out @@ -0,0 +1 @@ +t”ÂçKy \ No newline at end of file diff --git a/libtests/qtest/rc4/test3.in b/libtests/qtest/rc4/test3.in new file mode 100644 index 0000000000000000000000000000000000000000..1b1cb4d44c57c2d7a5122870fa6ac3e62ff7e94e GIT binary patch literal 8 KcmZQzfB*mh2mk>9 literal 0 HcmV?d00001 diff --git a/libtests/qtest/rc4/test3.out b/libtests/qtest/rc4/test3.out new file mode 100644 index 0000000..11f99ca --- /dev/null +++ b/libtests/qtest/rc4/test3.out @@ -0,0 +1 @@ +Þ‰A£7]: \ No newline at end of file diff --git a/libtests/qtest/rc4/test4.in b/libtests/qtest/rc4/test4.in new file mode 100644 index 0000000000000000000000000000000000000000..cb43b5ce1342e5d73830ac8b6a37ea870fae2632 GIT binary patch literal 10 KcmZQzfB^si3IG8B literal 0 HcmV?d00001 diff --git a/libtests/qtest/rc4/test4.out b/libtests/qtest/rc4/test4.out new file mode 100644 index 0000000..1394b33 --- /dev/null +++ b/libtests/qtest/rc4/test4.out @@ -0,0 +1 @@ +Ö¡A§ì<8ß½a \ No newline at end of file diff --git a/libtests/qtest/rc4/test5.in b/libtests/qtest/rc4/test5.in new file mode 100644 index 0000000..60e5cd0 --- /dev/null +++ b/libtests/qtest/rc4/test5.in @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/libtests/qtest/rc4/test5.out b/libtests/qtest/rc4/test5.out new file mode 100644 index 0000000000000000000000000000000000000000..d64d1a49ce92480621f0bc5e42a9471a1698c7ec GIT binary patch literal 512 zcmV+b0{{JWmBZ!{N(p!jO4L#_jvxJ+8|g`pfjxFpG)cC1jmp@^ij6C&tY!#Z4pY^f zCc@FgkiqM|4CZYcYa0``xf!@e!dj6;dX?v1PVr}X&FH@hm4yy6ua=2KPt$i0kC^?- z)aNEvbpV+Q%zg}`#HynNqleNDJCD1~LZQ7e9eP6p-KDDsh?cH^!HWv^ZT~Tr7VCIU zNm|m*kk|Kes24}JUt$S69u2wWx>GN&>_^M>%a`iF6^XoDr$A7*5OY4A|$Wckh;u6Oini zJvF6RT(Ai#4lm8;wd`iu2utKZRi+u)-G9RtZc5`Eql@GrIpyf zzy@#l(-jHp3~Z_ZY=C-VKKM*MGr^V8KI0(74d7LQSI8pNxW#GMNv_qMP7l}fd01;p zfA)m!Y8an%hSZy!ORbxtOO~toBsVOIkN>d^RW(Tfr+PiL@&)0!pUs9~hB_6R)T`tV zq=_^ZJ>BI(rdU-#{b)SD*uW1G5}GJY>dZ{u{#d?oH&h%1aVE&ro+nkS7#g?fK(N3_ CWcvXC literal 0 HcmV?d00001 diff --git a/libtests/qutil.cc b/libtests/qutil.cc new file mode 100644 index 0000000..d1c090f --- /dev/null +++ b/libtests/qutil.cc @@ -0,0 +1,199 @@ +#include +#include +#include +#include +#include +#include +#include + +#ifdef _WIN32 +# include +#else +# include +#endif + +void string_conversion_test() +{ + std::cout << QUtil::int_to_string(16059) << std::endl + << QUtil::int_to_string(16059, 7) << std::endl + << QUtil::int_to_string(16059, -7) << std::endl + << QUtil::double_to_string(3.14159) << std::endl + << QUtil::double_to_string(3.14159, 3) << std::endl + << QUtil::double_to_string(1000.123, -1024) << std::endl; + + try + { + // int_to_string bounds error + std::cout << QUtil::int_to_string(1, 50) << std::endl; + } + catch (std::logic_error &e) + { + std::cout << "exception 1: " << e.what() << std::endl; + } + + try + { + // QUtil::int_to_string bounds error + std::cout << QUtil::int_to_string(1, -50) << std::endl; + } + catch (std::logic_error& e) + { + std::cout << "exception 2: " << e.what() << std::endl; + } + + try + { + // QUtil::int_to_string bounds error + std::cout << QUtil::int_to_string(-1, 49) << std::endl; + } + catch (std::logic_error& e) + { + std::cout << "exception 3: " << e.what() << std::endl; + } + + + try + { + // QUtil::double_to_string bounds error + std::cout << QUtil::double_to_string(3.14159, 1024) << std::endl; + } + catch (std::logic_error& e) + { + std::cout << "exception 4: " << e.what() << std::endl; + } + + try + { + // QUtil::double_to_string bounds error + std::cout << QUtil::double_to_string(1000.0, 95) << std::endl; + } + catch (std::logic_error& e) + { + std::cout << "exception 5: " << e.what() << std::endl; + } + + std::string embedded_null = "one"; + embedded_null += '\0'; + embedded_null += "two"; + std::cout << embedded_null.c_str() << std::endl; + std::cout << embedded_null.length() << std::endl; + char* tmp = QUtil::copy_string(embedded_null); + if (memcmp(tmp, embedded_null.c_str(), 7) == 0) + { + std::cout << "compare okay" << std::endl; + } + else + { + std::cout << "compare failed" << std::endl; + } + delete [] tmp; +} + +void os_wrapper_test() +{ + int fd = -1; + try + { + std::cout << "before open" << std::endl; + fd = QUtil::os_wrapper("open file", + open("/this/file/does/not/exist", O_RDONLY)); + std::cout << "after open" << std::endl; + (void) close(fd); + } + catch (std::runtime_error& s) + { + std::cout << "exception: " << s.what() << std::endl; + } +} + +void fopen_wrapper_test() +{ + FILE* f = 0; + try + { + std::cout << "before fopen" << std::endl; + f = QUtil::fopen_wrapper("fopen file", + fopen("/this/file/does/not/exist", "r")); + std::cout << "after fopen" << std::endl; + (void) fclose(f); + } + catch (std::runtime_error& s) + { + std::cout << "exception: " << s.what() << std::endl; + } +} + +void getenv_test() +{ + std::string val; + std::cout << "IN_TESTSUITE: " << QUtil::get_env("IN_TESTSUITE", &val) + << ": " << val << std::endl; + // Hopefully this environment variable is not defined. + std::cout << "HAGOOGAMAGOOGLE: " << QUtil::get_env("HAGOOGAMAGOOGLE") + << std::endl; +} + +static void print_utf8(unsigned long val) +{ + char t[20]; + sprintf(t, "%lx", val); + std::string result = QUtil::toUTF8(val); + std::cout << "0x" << t << " ->"; + if (val < 0xfffe) + { + std::cout << " " << result; + } + else + { + // Emacs has trouble with utf-8 encoding files with characters + // outside the 16-bit portion, so just show the character + // values. + for (std::string::iterator iter = result.begin(); + iter != result.end(); ++iter) + { + char t[3]; + sprintf(t, "%02x", (unsigned char) (*iter)); + std::cout << " " << t; + } + } + std::cout << std::endl; +} + +void to_utf8_test() +{ + print_utf8(0x41UL); + print_utf8(0xF7UL); + print_utf8(0x3c0UL); + print_utf8(0x16059UL); + print_utf8(0x7fffffffUL); + try + { + print_utf8(0x80000000UL); + } + catch (std::runtime_error& e) + { + std::cout << "0x80000000: " << e.what() << std::endl; + } +} + +int main(int argc, char* argv[]) +{ + try + { + string_conversion_test(); + std::cout << "----" << std::endl; + os_wrapper_test(); + std::cout << "----" << std::endl; + fopen_wrapper_test(); + std::cout << "----" << std::endl; + getenv_test(); + std::cout << "----" << std::endl; + to_utf8_test(); + } + catch (std::exception& e) + { + std::cout << "unexpected exception: " << e.what() << std::endl; + } + + return 0; +} diff --git a/libtests/rc4.cc b/libtests/rc4.cc new file mode 100644 index 0000000..1328fc8 --- /dev/null +++ b/libtests/rc4.cc @@ -0,0 +1,75 @@ +#include +#include + +#include +#include +#include +#include + +int main(int argc, char* argv[]) +{ + if (argc != 4) + { + std::cerr << "Usage: rc4 hex-key infile outfile" << std::endl; + exit(2); + } + + char* hexkey = argv[1]; + char* infilename = argv[2]; + char* outfilename = argv[3]; + unsigned int hexkeylen = (unsigned int)strlen(hexkey); + unsigned int keylen = hexkeylen / 2; + unsigned char* key = new unsigned char[keylen + 1]; + key[keylen] = '\0'; + + FILE* infile = fopen(infilename, "rb"); + if (infile == 0) + { + std::cerr << "can't open " << infilename << std::endl; + exit(2); + } + + for (unsigned int i = 0; i < strlen(hexkey); i += 2) + { + char t[3]; + t[0] = hexkey[i]; + t[1] = hexkey[i + 1]; + t[2] = '\0'; + + long val = strtol(t, 0, 16); + key[i/2] = (unsigned char) val; + } + + FILE* outfile = fopen(outfilename, "wb"); + if (outfile == 0) + { + std::cerr << "can't open " << outfilename << std::endl; + exit(2); + } + Pl_StdioFile* out = new Pl_StdioFile("stdout", outfile); + // Use a small buffer size (64) for testing + Pl_RC4* rc4 = new Pl_RC4("rc4", out, key, keylen, 64); + delete [] key; + + // 64 < buffer size < 512, buffer_size is not a power of 2 for testing + unsigned char buf[100]; + bool done = false; + while (! done) + { + size_t len = fread(buf, 1, sizeof(buf), infile); + if (len <= 0) + { + done = true; + } + else + { + rc4->write(buf, len); + } + } + rc4->finish(); + delete rc4; + delete out; + fclose(infile); + fclose(outfile); + return 0; +} diff --git a/ltmain.sh b/ltmain.sh new file mode 100644 index 0000000..c7d06c3 --- /dev/null +++ b/ltmain.sh @@ -0,0 +1,9661 @@ + +# libtool (GNU libtool) 2.4.2 +# Written by Gordon Matzigkeit , 1996 + +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, +# 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. +# This is free software; see the source for copying conditions. There is NO +# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +# GNU Libtool 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. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, +# or obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + +# Usage: $progname [OPTION]... [MODE-ARG]... +# +# Provide generalized library-building support services. +# +# --config show all configuration variables +# --debug enable verbose shell tracing +# -n, --dry-run display commands without modifying any files +# --features display basic configuration information and exit +# --mode=MODE use operation mode MODE +# --preserve-dup-deps don't remove duplicate dependency libraries +# --quiet, --silent don't print informational messages +# --no-quiet, --no-silent +# print informational messages (default) +# --no-warn don't display warning messages +# --tag=TAG use configuration variables from tag TAG +# -v, --verbose print more informational messages than default +# --no-verbose don't print the extra informational messages +# --version print version information +# -h, --help, --help-all print short, long, or detailed help message +# +# MODE must be one of the following: +# +# clean remove files from the build directory +# compile compile a source file into a libtool object +# execute automatically set library path, then run a program +# finish complete the installation of libtool libraries +# install install libraries or executables +# link create a library or an executable +# uninstall remove libraries from an installed directory +# +# MODE-ARGS vary depending on the MODE. When passed as first option, +# `--mode=MODE' may be abbreviated as `MODE' or a unique abbreviation of that. +# Try `$progname --help --mode=MODE' for a more detailed description of MODE. +# +# When reporting a bug, please describe a test case to reproduce it and +# include the following information: +# +# host-triplet: $host +# shell: $SHELL +# compiler: $LTCC +# compiler flags: $LTCFLAGS +# linker: $LD (gnu? $with_gnu_ld) +# $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1 +# automake: $automake_version +# autoconf: $autoconf_version +# +# Report bugs to . +# GNU libtool home page: . +# General help using GNU software: . + +PROGRAM=libtool +PACKAGE=libtool +VERSION="2.4.2 Debian-2.4.2-1" +TIMESTAMP="" +package_revision=1.3337 + +# Be Bourne compatible +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +$1 +_LTECHO_EOF' +} + +# NLS nuisances: We save the old values to restore during execute mode. +lt_user_locale= +lt_safe_locale= +for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES +do + eval "if test \"\${$lt_var+set}\" = set; then + save_$lt_var=\$$lt_var + $lt_var=C + export $lt_var + lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" + lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" + fi" +done +LC_ALL=C +LANGUAGE=C +export LANGUAGE LC_ALL + +$lt_unset CDPATH + + +# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh +# is ksh but when the shell is invoked as "sh" and the current value of +# the _XPG environment variable is not equal to 1 (one), the special +# positional parameter $0, within a function call, is the name of the +# function. +progpath="$0" + + + +: ${CP="cp -f"} +test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} +: ${MAKE="make"} +: ${MKDIR="mkdir"} +: ${MV="mv -f"} +: ${RM="rm -f"} +: ${SHELL="${CONFIG_SHELL-/bin/sh}"} +: ${Xsed="$SED -e 1s/^X//"} + +# Global variables: +EXIT_SUCCESS=0 +EXIT_FAILURE=1 +EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. +EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. + +exit_status=$EXIT_SUCCESS + +# Make sure IFS has a sensible default +lt_nl=' +' +IFS=" $lt_nl" + +dirname="s,/[^/]*$,," +basename="s,^.*/,," + +# func_dirname file append nondir_replacement +# Compute the dirname of FILE. If nonempty, add APPEND to the result, +# otherwise set result to NONDIR_REPLACEMENT. +func_dirname () +{ + func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` + if test "X$func_dirname_result" = "X${1}"; then + func_dirname_result="${3}" + else + func_dirname_result="$func_dirname_result${2}" + fi +} # func_dirname may be replaced by extended shell implementation + + +# func_basename file +func_basename () +{ + func_basename_result=`$ECHO "${1}" | $SED "$basename"` +} # func_basename may be replaced by extended shell implementation + + +# func_dirname_and_basename file append nondir_replacement +# perform func_basename and func_dirname in a single function +# call: +# dirname: Compute the dirname of FILE. If nonempty, +# add APPEND to the result, otherwise set result +# to NONDIR_REPLACEMENT. +# value returned in "$func_dirname_result" +# basename: Compute filename of FILE. +# value retuned in "$func_basename_result" +# Implementation must be kept synchronized with func_dirname +# and func_basename. For efficiency, we do not delegate to +# those functions but instead duplicate the functionality here. +func_dirname_and_basename () +{ + # Extract subdirectory from the argument. + func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"` + if test "X$func_dirname_result" = "X${1}"; then + func_dirname_result="${3}" + else + func_dirname_result="$func_dirname_result${2}" + fi + func_basename_result=`$ECHO "${1}" | $SED -e "$basename"` +} # func_dirname_and_basename may be replaced by extended shell implementation + + +# func_stripname prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +# func_strip_suffix prefix name +func_stripname () +{ + case ${2} in + .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + esac +} # func_stripname may be replaced by extended shell implementation + + +# These SED scripts presuppose an absolute path with a trailing slash. +pathcar='s,^/\([^/]*\).*$,\1,' +pathcdr='s,^/[^/]*,,' +removedotparts=':dotsl + s@/\./@/@g + t dotsl + s,/\.$,/,' +collapseslashes='s@/\{1,\}@/@g' +finalslash='s,/*$,/,' + +# func_normal_abspath PATH +# Remove doubled-up and trailing slashes, "." path components, +# and cancel out any ".." path components in PATH after making +# it an absolute path. +# value returned in "$func_normal_abspath_result" +func_normal_abspath () +{ + # Start from root dir and reassemble the path. + func_normal_abspath_result= + func_normal_abspath_tpath=$1 + func_normal_abspath_altnamespace= + case $func_normal_abspath_tpath in + "") + # Empty path, that just means $cwd. + func_stripname '' '/' "`pwd`" + func_normal_abspath_result=$func_stripname_result + return + ;; + # The next three entries are used to spot a run of precisely + # two leading slashes without using negated character classes; + # we take advantage of case's first-match behaviour. + ///*) + # Unusual form of absolute path, do nothing. + ;; + //*) + # Not necessarily an ordinary path; POSIX reserves leading '//' + # and for example Cygwin uses it to access remote file shares + # over CIFS/SMB, so we conserve a leading double slash if found. + func_normal_abspath_altnamespace=/ + ;; + /*) + # Absolute path, do nothing. + ;; + *) + # Relative path, prepend $cwd. + func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath + ;; + esac + # Cancel out all the simple stuff to save iterations. We also want + # the path to end with a slash for ease of parsing, so make sure + # there is one (and only one) here. + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$removedotparts" -e "$collapseslashes" -e "$finalslash"` + while :; do + # Processed it all yet? + if test "$func_normal_abspath_tpath" = / ; then + # If we ascended to the root using ".." the result may be empty now. + if test -z "$func_normal_abspath_result" ; then + func_normal_abspath_result=/ + fi + break + fi + func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$pathcar"` + func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ + -e "$pathcdr"` + # Figure out what to do with it + case $func_normal_abspath_tcomponent in + "") + # Trailing empty path component, ignore it. + ;; + ..) + # Parent dir; strip last assembled component from result. + func_dirname "$func_normal_abspath_result" + func_normal_abspath_result=$func_dirname_result + ;; + *) + # Actual path component, append it. + func_normal_abspath_result=$func_normal_abspath_result/$func_normal_abspath_tcomponent + ;; + esac + done + # Restore leading double-slash if one was found on entry. + func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result +} + +# func_relative_path SRCDIR DSTDIR +# generates a relative path from SRCDIR to DSTDIR, with a trailing +# slash if non-empty, suitable for immediately appending a filename +# without needing to append a separator. +# value returned in "$func_relative_path_result" +func_relative_path () +{ + func_relative_path_result= + func_normal_abspath "$1" + func_relative_path_tlibdir=$func_normal_abspath_result + func_normal_abspath "$2" + func_relative_path_tbindir=$func_normal_abspath_result + + # Ascend the tree starting from libdir + while :; do + # check if we have found a prefix of bindir + case $func_relative_path_tbindir in + $func_relative_path_tlibdir) + # found an exact match + func_relative_path_tcancelled= + break + ;; + $func_relative_path_tlibdir*) + # found a matching prefix + func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" + func_relative_path_tcancelled=$func_stripname_result + if test -z "$func_relative_path_result"; then + func_relative_path_result=. + fi + break + ;; + *) + func_dirname $func_relative_path_tlibdir + func_relative_path_tlibdir=${func_dirname_result} + if test "x$func_relative_path_tlibdir" = x ; then + # Have to descend all the way to the root! + func_relative_path_result=../$func_relative_path_result + func_relative_path_tcancelled=$func_relative_path_tbindir + break + fi + func_relative_path_result=../$func_relative_path_result + ;; + esac + done + + # Now calculate path; take care to avoid doubling-up slashes. + func_stripname '' '/' "$func_relative_path_result" + func_relative_path_result=$func_stripname_result + func_stripname '/' '/' "$func_relative_path_tcancelled" + if test "x$func_stripname_result" != x ; then + func_relative_path_result=${func_relative_path_result}/${func_stripname_result} + fi + + # Normalisation. If bindir is libdir, return empty string, + # else relative path ending with a slash; either way, target + # file name can be directly appended. + if test ! -z "$func_relative_path_result"; then + func_stripname './' '' "$func_relative_path_result/" + func_relative_path_result=$func_stripname_result + fi +} + +# The name of this program: +func_dirname_and_basename "$progpath" +progname=$func_basename_result + +# Make sure we have an absolute path for reexecution: +case $progpath in + [\\/]*|[A-Za-z]:\\*) ;; + *[\\/]*) + progdir=$func_dirname_result + progdir=`cd "$progdir" && pwd` + progpath="$progdir/$progname" + ;; + *) + save_IFS="$IFS" + IFS=${PATH_SEPARATOR-:} + for progdir in $PATH; do + IFS="$save_IFS" + test -x "$progdir/$progname" && break + done + IFS="$save_IFS" + test -n "$progdir" || progdir=`pwd` + progpath="$progdir/$progname" + ;; +esac + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +Xsed="${SED}"' -e 1s/^X//' +sed_quote_subst='s/\([`"$\\]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\(["`\\]\)/\\\1/g' + +# Sed substitution that turns a string into a regex matching for the +# string literally. +sed_make_literal_regex='s,[].[^$\\*\/],\\&,g' + +# Sed substitution that converts a w32 file name or path +# which contains forward slashes, into one that contains +# (escaped) backslashes. A very naive implementation. +lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' + +# Re-`\' parameter expansions in output of double_quote_subst that were +# `\'-ed in input to the same. If an odd number of `\' preceded a '$' +# in input to double_quote_subst, that '$' was protected from expansion. +# Since each input `\' is now two `\'s, look for any number of runs of +# four `\'s followed by two `\'s and then a '$'. `\' that '$'. +bs='\\' +bs2='\\\\' +bs4='\\\\\\\\' +dollar='\$' +sed_double_backslash="\ + s/$bs4/&\\ +/g + s/^$bs2$dollar/$bs&/ + s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g + s/\n//g" + +# Standard options: +opt_dry_run=false +opt_help=false +opt_quiet=false +opt_verbose=false +opt_warning=: + +# func_echo arg... +# Echo program name prefixed message, along with the current mode +# name if it has been set yet. +func_echo () +{ + $ECHO "$progname: ${opt_mode+$opt_mode: }$*" +} + +# func_verbose arg... +# Echo program name prefixed message in verbose mode only. +func_verbose () +{ + $opt_verbose && func_echo ${1+"$@"} + + # A bug in bash halts the script if the last line of a function + # fails when set -e is in force, so we need another command to + # work around that: + : +} + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + +# func_error arg... +# Echo program name prefixed message to standard error. +func_error () +{ + $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2 +} + +# func_warning arg... +# Echo program name prefixed warning message to standard error. +func_warning () +{ + $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2 + + # bash bug again: + : +} + +# func_fatal_error arg... +# Echo program name prefixed message to standard error, and exit. +func_fatal_error () +{ + func_error ${1+"$@"} + exit $EXIT_FAILURE +} + +# func_fatal_help arg... +# Echo program name prefixed message to standard error, followed by +# a help hint, and exit. +func_fatal_help () +{ + func_error ${1+"$@"} + func_fatal_error "$help" +} +help="Try \`$progname --help' for more information." ## default + + +# func_grep expression filename +# Check whether EXPRESSION matches any line of FILENAME, without output. +func_grep () +{ + $GREP "$1" "$2" >/dev/null 2>&1 +} + + +# func_mkdir_p directory-path +# Make sure the entire path to DIRECTORY-PATH is available. +func_mkdir_p () +{ + my_directory_path="$1" + my_dir_list= + + if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then + + # Protect directory names starting with `-' + case $my_directory_path in + -*) my_directory_path="./$my_directory_path" ;; + esac + + # While some portion of DIR does not yet exist... + while test ! -d "$my_directory_path"; do + # ...make a list in topmost first order. Use a colon delimited + # list incase some portion of path contains whitespace. + my_dir_list="$my_directory_path:$my_dir_list" + + # If the last portion added has no slash in it, the list is done + case $my_directory_path in */*) ;; *) break ;; esac + + # ...otherwise throw away the child directory and loop + my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` + done + my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'` + + save_mkdir_p_IFS="$IFS"; IFS=':' + for my_dir in $my_dir_list; do + IFS="$save_mkdir_p_IFS" + # mkdir can fail with a `File exist' error if two processes + # try to create one of the directories concurrently. Don't + # stop in that case! + $MKDIR "$my_dir" 2>/dev/null || : + done + IFS="$save_mkdir_p_IFS" + + # Bail out if we (or some other process) failed to create a directory. + test -d "$my_directory_path" || \ + func_fatal_error "Failed to create \`$1'" + fi +} + + +# func_mktempdir [string] +# Make a temporary directory that won't clash with other running +# libtool processes, and avoids race conditions if possible. If +# given, STRING is the basename for that directory. +func_mktempdir () +{ + my_template="${TMPDIR-/tmp}/${1-$progname}" + + if test "$opt_dry_run" = ":"; then + # Return a directory name, but don't create it in dry-run mode + my_tmpdir="${my_template}-$$" + else + + # If mktemp works, use that first and foremost + my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` + + if test ! -d "$my_tmpdir"; then + # Failing that, at least try and use $RANDOM to avoid a race + my_tmpdir="${my_template}-${RANDOM-0}$$" + + save_mktempdir_umask=`umask` + umask 0077 + $MKDIR "$my_tmpdir" + umask $save_mktempdir_umask + fi + + # If we're not in dry-run mode, bomb out on failure + test -d "$my_tmpdir" || \ + func_fatal_error "cannot create temporary directory \`$my_tmpdir'" + fi + + $ECHO "$my_tmpdir" +} + + +# func_quote_for_eval arg +# Aesthetically quote ARG to be evaled later. +# This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT +# is double-quoted, suitable for a subsequent eval, whereas +# FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters +# which are still active within double quotes backslashified. +func_quote_for_eval () +{ + case $1 in + *[\\\`\"\$]*) + func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;; + *) + func_quote_for_eval_unquoted_result="$1" ;; + esac + + case $func_quote_for_eval_unquoted_result in + # Double-quote args containing shell metacharacters to delay + # word splitting, command substitution and and variable + # expansion for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" + ;; + *) + func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" + esac +} + + +# func_quote_for_expand arg +# Aesthetically quote ARG to be evaled later; same as above, +# but do not quote variable references. +func_quote_for_expand () +{ + case $1 in + *[\\\`\"]*) + my_arg=`$ECHO "$1" | $SED \ + -e "$double_quote_subst" -e "$sed_double_backslash"` ;; + *) + my_arg="$1" ;; + esac + + case $my_arg in + # Double-quote args containing shell metacharacters to delay + # word splitting and command substitution for a subsequent eval. + # Many Bourne shells cannot handle close brackets correctly + # in scan sets, so we specify it separately. + *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") + my_arg="\"$my_arg\"" + ;; + esac + + func_quote_for_expand_result="$my_arg" +} + + +# func_show_eval cmd [fail_exp] +# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. +func_show_eval () +{ + my_cmd="$1" + my_fail_exp="${2-:}" + + ${opt_silent-false} || { + func_quote_for_expand "$my_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + if ${opt_dry_run-false}; then :; else + eval "$my_cmd" + my_status=$? + if test "$my_status" -eq 0; then :; else + eval "(exit $my_status); $my_fail_exp" + fi + fi +} + + +# func_show_eval_locale cmd [fail_exp] +# Unless opt_silent is true, then output CMD. Then, if opt_dryrun is +# not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP +# is given, then evaluate it. Use the saved locale for evaluation. +func_show_eval_locale () +{ + my_cmd="$1" + my_fail_exp="${2-:}" + + ${opt_silent-false} || { + func_quote_for_expand "$my_cmd" + eval "func_echo $func_quote_for_expand_result" + } + + if ${opt_dry_run-false}; then :; else + eval "$lt_user_locale + $my_cmd" + my_status=$? + eval "$lt_safe_locale" + if test "$my_status" -eq 0; then :; else + eval "(exit $my_status); $my_fail_exp" + fi + fi +} + +# func_tr_sh +# Turn $1 into a string suitable for a shell variable name. +# Result is stored in $func_tr_sh_result. All characters +# not in the set a-zA-Z0-9_ are replaced with '_'. Further, +# if $1 begins with a digit, a '_' is prepended as well. +func_tr_sh () +{ + case $1 in + [0-9]* | *[!a-zA-Z0-9_]*) + func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'` + ;; + * ) + func_tr_sh_result=$1 + ;; + esac +} + + +# func_version +# Echo version message to standard output and exit. +func_version () +{ + $opt_debug + + $SED -n '/(C)/!b go + :more + /\./!{ + N + s/\n# / / + b more + } + :go + /^# '$PROGRAM' (GNU /,/# warranty; / { + s/^# // + s/^# *$// + s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ + p + }' < "$progpath" + exit $? +} + +# func_usage +# Echo short help message to standard output and exit. +func_usage () +{ + $opt_debug + + $SED -n '/^# Usage:/,/^# *.*--help/ { + s/^# // + s/^# *$// + s/\$progname/'$progname'/ + p + }' < "$progpath" + echo + $ECHO "run \`$progname --help | more' for full usage" + exit $? +} + +# func_help [NOEXIT] +# Echo long help message to standard output and exit, +# unless 'noexit' is passed as argument. +func_help () +{ + $opt_debug + + $SED -n '/^# Usage:/,/# Report bugs to/ { + :print + s/^# // + s/^# *$// + s*\$progname*'$progname'* + s*\$host*'"$host"'* + s*\$SHELL*'"$SHELL"'* + s*\$LTCC*'"$LTCC"'* + s*\$LTCFLAGS*'"$LTCFLAGS"'* + s*\$LD*'"$LD"'* + s/\$with_gnu_ld/'"$with_gnu_ld"'/ + s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/ + s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/ + p + d + } + /^# .* home page:/b print + /^# General help using/b print + ' < "$progpath" + ret=$? + if test -z "$1"; then + exit $ret + fi +} + +# func_missing_arg argname +# Echo program name prefixed message to standard error and set global +# exit_cmd. +func_missing_arg () +{ + $opt_debug + + func_error "missing argument for $1." + exit_cmd=exit +} + + +# func_split_short_opt shortopt +# Set func_split_short_opt_name and func_split_short_opt_arg shell +# variables after splitting SHORTOPT after the 2nd character. +func_split_short_opt () +{ + my_sed_short_opt='1s/^\(..\).*$/\1/;q' + my_sed_short_rest='1s/^..\(.*\)$/\1/;q' + + func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"` + func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"` +} # func_split_short_opt may be replaced by extended shell implementation + + +# func_split_long_opt longopt +# Set func_split_long_opt_name and func_split_long_opt_arg shell +# variables after splitting LONGOPT at the `=' sign. +func_split_long_opt () +{ + my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q' + my_sed_long_arg='1s/^--[^=]*=//' + + func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"` + func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"` +} # func_split_long_opt may be replaced by extended shell implementation + +exit_cmd=: + + + + + +magic="%%%MAGIC variable%%%" +magic_exe="%%%MAGIC EXE variable%%%" + +# Global variables. +nonopt= +preserve_args= +lo2o="s/\\.lo\$/.${objext}/" +o2lo="s/\\.${objext}\$/.lo/" +extracted_archives= +extracted_serial=0 + +# If this variable is set in any of the actions, the command in it +# will be execed at the end. This prevents here-documents from being +# left over by shells. +exec_cmd= + +# func_append var value +# Append VALUE to the end of shell variable VAR. +func_append () +{ + eval "${1}=\$${1}\${2}" +} # func_append may be replaced by extended shell implementation + +# func_append_quoted var value +# Quote VALUE and append to the end of shell variable VAR, separated +# by a space. +func_append_quoted () +{ + func_quote_for_eval "${2}" + eval "${1}=\$${1}\\ \$func_quote_for_eval_result" +} # func_append_quoted may be replaced by extended shell implementation + + +# func_arith arithmetic-term... +func_arith () +{ + func_arith_result=`expr "${@}"` +} # func_arith may be replaced by extended shell implementation + + +# func_len string +# STRING may not start with a hyphen. +func_len () +{ + func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len` +} # func_len may be replaced by extended shell implementation + + +# func_lo2o object +func_lo2o () +{ + func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` +} # func_lo2o may be replaced by extended shell implementation + + +# func_xform libobj-or-source +func_xform () +{ + func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` +} # func_xform may be replaced by extended shell implementation + + +# func_fatal_configuration arg... +# Echo program name prefixed message to standard error, followed by +# a configuration failure hint, and exit. +func_fatal_configuration () +{ + func_error ${1+"$@"} + func_error "See the $PACKAGE documentation for more information." + func_fatal_error "Fatal configuration error." +} + + +# func_config +# Display the configuration for all the tags in this script. +func_config () +{ + re_begincf='^# ### BEGIN LIBTOOL' + re_endcf='^# ### END LIBTOOL' + + # Default configuration. + $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" + + # Now print the configurations for the tags. + for tagname in $taglist; do + $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" + done + + exit $? +} + +# func_features +# Display the features supported by this script. +func_features () +{ + echo "host: $host" + if test "$build_libtool_libs" = yes; then + echo "enable shared libraries" + else + echo "disable shared libraries" + fi + if test "$build_old_libs" = yes; then + echo "enable static libraries" + else + echo "disable static libraries" + fi + + exit $? +} + +# func_enable_tag tagname +# Verify that TAGNAME is valid, and either flag an error and exit, or +# enable the TAGNAME tag. We also add TAGNAME to the global $taglist +# variable here. +func_enable_tag () +{ + # Global variable: + tagname="$1" + + re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" + re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" + sed_extractcf="/$re_begincf/,/$re_endcf/p" + + # Validate tagname. + case $tagname in + *[!-_A-Za-z0-9,/]*) + func_fatal_error "invalid tag name: $tagname" + ;; + esac + + # Don't test for the "default" C tag, as we know it's + # there but not specially marked. + case $tagname in + CC) ;; + *) + if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then + taglist="$taglist $tagname" + + # Evaluate the configuration. Be careful to quote the path + # and the sed script, to avoid splitting on whitespace, but + # also don't use non-portable quotes within backquotes within + # quotes we have to do it in 2 steps: + extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` + eval "$extractedcf" + else + func_error "ignoring unknown tag $tagname" + fi + ;; + esac +} + +# func_check_version_match +# Ensure that we are using m4 macros, and libtool script from the same +# release of libtool. +func_check_version_match () +{ + if test "$package_revision" != "$macro_revision"; then + if test "$VERSION" != "$macro_version"; then + if test -z "$macro_version"; then + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from an older release. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, but the +$progname: definition of this LT_INIT comes from $PACKAGE $macro_version. +$progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION +$progname: and run autoconf again. +_LT_EOF + fi + else + cat >&2 <<_LT_EOF +$progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, +$progname: but the definition of this LT_INIT comes from revision $macro_revision. +$progname: You should recreate aclocal.m4 with macros from revision $package_revision +$progname: of $PACKAGE $VERSION and run autoconf again. +_LT_EOF + fi + + exit $EXIT_MISMATCH + fi +} + + +# Shorthand for --mode=foo, only valid as the first argument +case $1 in +clean|clea|cle|cl) + shift; set dummy --mode clean ${1+"$@"}; shift + ;; +compile|compil|compi|comp|com|co|c) + shift; set dummy --mode compile ${1+"$@"}; shift + ;; +execute|execut|execu|exec|exe|ex|e) + shift; set dummy --mode execute ${1+"$@"}; shift + ;; +finish|finis|fini|fin|fi|f) + shift; set dummy --mode finish ${1+"$@"}; shift + ;; +install|instal|insta|inst|ins|in|i) + shift; set dummy --mode install ${1+"$@"}; shift + ;; +link|lin|li|l) + shift; set dummy --mode link ${1+"$@"}; shift + ;; +uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) + shift; set dummy --mode uninstall ${1+"$@"}; shift + ;; +esac + + + +# Option defaults: +opt_debug=: +opt_dry_run=false +opt_config=false +opt_preserve_dup_deps=false +opt_features=false +opt_finish=false +opt_help=false +opt_help_all=false +opt_silent=: +opt_warning=: +opt_verbose=: +opt_silent=false +opt_verbose=false + + +# Parse options once, thoroughly. This comes as soon as possible in the +# script to make things like `--version' happen as quickly as we can. +{ + # this just eases exit handling + while test $# -gt 0; do + opt="$1" + shift + case $opt in + --debug|-x) opt_debug='set -x' + func_echo "enabling shell trace mode" + $opt_debug + ;; + --dry-run|--dryrun|-n) + opt_dry_run=: + ;; + --config) + opt_config=: +func_config + ;; + --dlopen|-dlopen) + optarg="$1" + opt_dlopen="${opt_dlopen+$opt_dlopen +}$optarg" + shift + ;; + --preserve-dup-deps) + opt_preserve_dup_deps=: + ;; + --features) + opt_features=: +func_features + ;; + --finish) + opt_finish=: +set dummy --mode finish ${1+"$@"}; shift + ;; + --help) + opt_help=: + ;; + --help-all) + opt_help_all=: +opt_help=': help-all' + ;; + --mode) + test $# = 0 && func_missing_arg $opt && break + optarg="$1" + opt_mode="$optarg" +case $optarg in + # Valid mode arguments: + clean|compile|execute|finish|install|link|relink|uninstall) ;; + + # Catch anything else as an error + *) func_error "invalid argument for $opt" + exit_cmd=exit + break + ;; +esac + shift + ;; + --no-silent|--no-quiet) + opt_silent=false +func_append preserve_args " $opt" + ;; + --no-warning|--no-warn) + opt_warning=false +func_append preserve_args " $opt" + ;; + --no-verbose) + opt_verbose=false +func_append preserve_args " $opt" + ;; + --silent|--quiet) + opt_silent=: +func_append preserve_args " $opt" + opt_verbose=false + ;; + --verbose|-v) + opt_verbose=: +func_append preserve_args " $opt" +opt_silent=false + ;; + --tag) + test $# = 0 && func_missing_arg $opt && break + optarg="$1" + opt_tag="$optarg" +func_append preserve_args " $opt $optarg" +func_enable_tag "$optarg" + shift + ;; + + -\?|-h) func_usage ;; + --help) func_help ;; + --version) func_version ;; + + # Separate optargs to long options: + --*=*) + func_split_long_opt "$opt" + set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"} + shift + ;; + + # Separate non-argument short options: + -\?*|-h*|-n*|-v*) + func_split_short_opt "$opt" + set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"} + shift + ;; + + --) break ;; + -*) func_fatal_help "unrecognized option \`$opt'" ;; + *) set dummy "$opt" ${1+"$@"}; shift; break ;; + esac + done + + # Validate options: + + # save first non-option argument + if test "$#" -gt 0; then + nonopt="$opt" + shift + fi + + # preserve --debug + test "$opt_debug" = : || func_append preserve_args " --debug" + + case $host in + *cygwin* | *mingw* | *pw32* | *cegcc*) + # don't eliminate duplications in $postdeps and $predeps + opt_duplicate_compiler_generated_deps=: + ;; + *) + opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps + ;; + esac + + $opt_help || { + # Sanity checks first: + func_check_version_match + + if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then + func_fatal_configuration "not configured to build any kind of library" + fi + + # Darwin sucks + eval std_shrext=\"$shrext_cmds\" + + # Only execute mode is allowed to have -dlopen flags. + if test -n "$opt_dlopen" && test "$opt_mode" != execute; then + func_error "unrecognized option \`-dlopen'" + $ECHO "$help" 1>&2 + exit $EXIT_FAILURE + fi + + # Change the help message to a mode-specific one. + generic_help="$help" + help="Try \`$progname --help --mode=$opt_mode' for more information." + } + + + # Bail if the options were screwed + $exit_cmd $EXIT_FAILURE +} + + + + +## ----------- ## +## Main. ## +## ----------- ## + +# func_lalib_p file +# True iff FILE is a libtool `.la' library or `.lo' object file. +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_lalib_p () +{ + test -f "$1" && + $SED -e 4q "$1" 2>/dev/null \ + | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 +} + +# func_lalib_unsafe_p file +# True iff FILE is a libtool `.la' library or `.lo' object file. +# This function implements the same check as func_lalib_p without +# resorting to external programs. To this end, it redirects stdin and +# closes it afterwards, without saving the original file descriptor. +# As a safety measure, use it only where a negative result would be +# fatal anyway. Works if `file' does not exist. +func_lalib_unsafe_p () +{ + lalib_p=no + if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then + for lalib_p_l in 1 2 3 4 + do + read lalib_p_line + case "$lalib_p_line" in + \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; + esac + done + exec 0<&5 5<&- + fi + test "$lalib_p" = yes +} + +# func_ltwrapper_script_p file +# True iff FILE is a libtool wrapper script +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_script_p () +{ + func_lalib_p "$1" +} + +# func_ltwrapper_executable_p file +# True iff FILE is a libtool wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_executable_p () +{ + func_ltwrapper_exec_suffix= + case $1 in + *.exe) ;; + *) func_ltwrapper_exec_suffix=.exe ;; + esac + $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 +} + +# func_ltwrapper_scriptname file +# Assumes file is an ltwrapper_executable +# uses $file to determine the appropriate filename for a +# temporary ltwrapper_script. +func_ltwrapper_scriptname () +{ + func_dirname_and_basename "$1" "" "." + func_stripname '' '.exe' "$func_basename_result" + func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" +} + +# func_ltwrapper_p file +# True iff FILE is a libtool wrapper script or wrapper executable +# This function is only a basic sanity check; it will hardly flush out +# determined imposters. +func_ltwrapper_p () +{ + func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" +} + + +# func_execute_cmds commands fail_cmd +# Execute tilde-delimited COMMANDS. +# If FAIL_CMD is given, eval that upon failure. +# FAIL_CMD may read-access the current command in variable CMD! +func_execute_cmds () +{ + $opt_debug + save_ifs=$IFS; IFS='~' + for cmd in $1; do + IFS=$save_ifs + eval cmd=\"$cmd\" + func_show_eval "$cmd" "${2-:}" + done + IFS=$save_ifs +} + + +# func_source file +# Source FILE, adding directory component if necessary. +# Note that it is not necessary on cygwin/mingw to append a dot to +# FILE even if both FILE and FILE.exe exist: automatic-append-.exe +# behavior happens only for exec(3), not for open(2)! Also, sourcing +# `FILE.' does not work on cygwin managed mounts. +func_source () +{ + $opt_debug + case $1 in + */* | *\\*) . "$1" ;; + *) . "./$1" ;; + esac +} + + +# func_resolve_sysroot PATH +# Replace a leading = in PATH with a sysroot. Store the result into +# func_resolve_sysroot_result +func_resolve_sysroot () +{ + func_resolve_sysroot_result=$1 + case $func_resolve_sysroot_result in + =*) + func_stripname '=' '' "$func_resolve_sysroot_result" + func_resolve_sysroot_result=$lt_sysroot$func_stripname_result + ;; + esac +} + +# func_replace_sysroot PATH +# If PATH begins with the sysroot, replace it with = and +# store the result into func_replace_sysroot_result. +func_replace_sysroot () +{ + case "$lt_sysroot:$1" in + ?*:"$lt_sysroot"*) + func_stripname "$lt_sysroot" '' "$1" + func_replace_sysroot_result="=$func_stripname_result" + ;; + *) + # Including no sysroot. + func_replace_sysroot_result=$1 + ;; + esac +} + +# func_infer_tag arg +# Infer tagged configuration to use if any are available and +# if one wasn't chosen via the "--tag" command line option. +# Only attempt this if the compiler in the base compile +# command doesn't match the default compiler. +# arg is usually of the form 'gcc ...' +func_infer_tag () +{ + $opt_debug + if test -n "$available_tags" && test -z "$tagname"; then + CC_quoted= + for arg in $CC; do + func_append_quoted CC_quoted "$arg" + done + CC_expanded=`func_echo_all $CC` + CC_quoted_expanded=`func_echo_all $CC_quoted` + case $@ in + # Blanks in the command may have been stripped by the calling shell, + # but not from the CC environment variable when configure was run. + " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ + " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; + # Blanks at the start of $base_compile will cause this to fail + # if we don't check for them as well. + *) + for z in $available_tags; do + if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then + # Evaluate the configuration. + eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" + CC_quoted= + for arg in $CC; do + # Double-quote args containing other shell metacharacters. + func_append_quoted CC_quoted "$arg" + done + CC_expanded=`func_echo_all $CC` + CC_quoted_expanded=`func_echo_all $CC_quoted` + case "$@ " in + " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ + " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) + # The compiler in the base compile command matches + # the one in the tagged configuration. + # Assume this is the tagged configuration we want. + tagname=$z + break + ;; + esac + fi + done + # If $tagname still isn't set, then no tagged configuration + # was found and let the user know that the "--tag" command + # line option must be used. + if test -z "$tagname"; then + func_echo "unable to infer tagged configuration" + func_fatal_error "specify a tag with \`--tag'" +# else +# func_verbose "using $tagname tagged configuration" + fi + ;; + esac + fi +} + + + +# func_write_libtool_object output_name pic_name nonpic_name +# Create a libtool object file (analogous to a ".la" file), +# but don't create it if we're doing a dry run. +func_write_libtool_object () +{ + write_libobj=${1} + if test "$build_libtool_libs" = yes; then + write_lobj=\'${2}\' + else + write_lobj=none + fi + + if test "$build_old_libs" = yes; then + write_oldobj=\'${3}\' + else + write_oldobj=none + fi + + $opt_dry_run || { + cat >${write_libobj}T </dev/null` + if test "$?" -eq 0 && test -n "${func_convert_core_file_wine_to_w32_tmp}"; then + func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | + $SED -e "$lt_sed_naive_backslashify"` + else + func_convert_core_file_wine_to_w32_result= + fi + fi +} +# end: func_convert_core_file_wine_to_w32 + + +# func_convert_core_path_wine_to_w32 ARG +# Helper function used by path conversion functions when $build is *nix, and +# $host is mingw, cygwin, or some other w32 environment. Relies on a correctly +# configured wine environment available, with the winepath program in $build's +# $PATH. Assumes ARG has no leading or trailing path separator characters. +# +# ARG is path to be converted from $build format to win32. +# Result is available in $func_convert_core_path_wine_to_w32_result. +# Unconvertible file (directory) names in ARG are skipped; if no directory names +# are convertible, then the result may be empty. +func_convert_core_path_wine_to_w32 () +{ + $opt_debug + # unfortunately, winepath doesn't convert paths, only file names + func_convert_core_path_wine_to_w32_result="" + if test -n "$1"; then + oldIFS=$IFS + IFS=: + for func_convert_core_path_wine_to_w32_f in $1; do + IFS=$oldIFS + func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" + if test -n "$func_convert_core_file_wine_to_w32_result" ; then + if test -z "$func_convert_core_path_wine_to_w32_result"; then + func_convert_core_path_wine_to_w32_result="$func_convert_core_file_wine_to_w32_result" + else + func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" + fi + fi + done + IFS=$oldIFS + fi +} +# end: func_convert_core_path_wine_to_w32 + + +# func_cygpath ARGS... +# Wrapper around calling the cygpath program via LT_CYGPATH. This is used when +# when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) +# $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or +# (2), returns the Cygwin file name or path in func_cygpath_result (input +# file name or path is assumed to be in w32 format, as previously converted +# from $build's *nix or MSYS format). In case (3), returns the w32 file name +# or path in func_cygpath_result (input file name or path is assumed to be in +# Cygwin format). Returns an empty string on error. +# +# ARGS are passed to cygpath, with the last one being the file name or path to +# be converted. +# +# Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH +# environment variable; do not put it in $PATH. +func_cygpath () +{ + $opt_debug + if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then + func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` + if test "$?" -ne 0; then + # on failure, ensure result is empty + func_cygpath_result= + fi + else + func_cygpath_result= + func_error "LT_CYGPATH is empty or specifies non-existent file: \`$LT_CYGPATH'" + fi +} +#end: func_cygpath + + +# func_convert_core_msys_to_w32 ARG +# Convert file name or path ARG from MSYS format to w32 format. Return +# result in func_convert_core_msys_to_w32_result. +func_convert_core_msys_to_w32 () +{ + $opt_debug + # awkward: cmd appends spaces to result + func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | + $SED -e 's/[ ]*$//' -e "$lt_sed_naive_backslashify"` +} +#end: func_convert_core_msys_to_w32 + + +# func_convert_file_check ARG1 ARG2 +# Verify that ARG1 (a file name in $build format) was converted to $host +# format in ARG2. Otherwise, emit an error message, but continue (resetting +# func_to_host_file_result to ARG1). +func_convert_file_check () +{ + $opt_debug + if test -z "$2" && test -n "$1" ; then + func_error "Could not determine host file name corresponding to" + func_error " \`$1'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback: + func_to_host_file_result="$1" + fi +} +# end func_convert_file_check + + +# func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH +# Verify that FROM_PATH (a path in $build format) was converted to $host +# format in TO_PATH. Otherwise, emit an error message, but continue, resetting +# func_to_host_file_result to a simplistic fallback value (see below). +func_convert_path_check () +{ + $opt_debug + if test -z "$4" && test -n "$3"; then + func_error "Could not determine the host path corresponding to" + func_error " \`$3'" + func_error "Continuing, but uninstalled executables may not work." + # Fallback. This is a deliberately simplistic "conversion" and + # should not be "improved". See libtool.info. + if test "x$1" != "x$2"; then + lt_replace_pathsep_chars="s|$1|$2|g" + func_to_host_path_result=`echo "$3" | + $SED -e "$lt_replace_pathsep_chars"` + else + func_to_host_path_result="$3" + fi + fi +} +# end func_convert_path_check + + +# func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG +# Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT +# and appending REPL if ORIG matches BACKPAT. +func_convert_path_front_back_pathsep () +{ + $opt_debug + case $4 in + $1 ) func_to_host_path_result="$3$func_to_host_path_result" + ;; + esac + case $4 in + $2 ) func_append func_to_host_path_result "$3" + ;; + esac +} +# end func_convert_path_front_back_pathsep + + +################################################## +# $build to $host FILE NAME CONVERSION FUNCTIONS # +################################################## +# invoked via `$to_host_file_cmd ARG' +# +# In each case, ARG is the path to be converted from $build to $host format. +# Result will be available in $func_to_host_file_result. + + +# func_to_host_file ARG +# Converts the file name ARG from $build format to $host format. Return result +# in func_to_host_file_result. +func_to_host_file () +{ + $opt_debug + $to_host_file_cmd "$1" +} +# end func_to_host_file + + +# func_to_tool_file ARG LAZY +# converts the file name ARG from $build format to toolchain format. Return +# result in func_to_tool_file_result. If the conversion in use is listed +# in (the comma separated) LAZY, no conversion takes place. +func_to_tool_file () +{ + $opt_debug + case ,$2, in + *,"$to_tool_file_cmd",*) + func_to_tool_file_result=$1 + ;; + *) + $to_tool_file_cmd "$1" + func_to_tool_file_result=$func_to_host_file_result + ;; + esac +} +# end func_to_tool_file + + +# func_convert_file_noop ARG +# Copy ARG to func_to_host_file_result. +func_convert_file_noop () +{ + func_to_host_file_result="$1" +} +# end func_convert_file_noop + + +# func_convert_file_msys_to_w32 ARG +# Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic +# conversion to w32 is not available inside the cwrapper. Returns result in +# func_to_host_file_result. +func_convert_file_msys_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_msys_to_w32 "$1" + func_to_host_file_result="$func_convert_core_msys_to_w32_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_msys_to_w32 + + +# func_convert_file_cygwin_to_w32 ARG +# Convert file name ARG from Cygwin to w32 format. Returns result in +# func_to_host_file_result. +func_convert_file_cygwin_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + # because $build is cygwin, we call "the" cygpath in $PATH; no need to use + # LT_CYGPATH in this case. + func_to_host_file_result=`cygpath -m "$1"` + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_cygwin_to_w32 + + +# func_convert_file_nix_to_w32 ARG +# Convert file name ARG from *nix to w32 format. Requires a wine environment +# and a working winepath. Returns result in func_to_host_file_result. +func_convert_file_nix_to_w32 () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_file_wine_to_w32 "$1" + func_to_host_file_result="$func_convert_core_file_wine_to_w32_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_nix_to_w32 + + +# func_convert_file_msys_to_cygwin ARG +# Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. +# Returns result in func_to_host_file_result. +func_convert_file_msys_to_cygwin () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + func_convert_core_msys_to_w32 "$1" + func_cygpath -u "$func_convert_core_msys_to_w32_result" + func_to_host_file_result="$func_cygpath_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_msys_to_cygwin + + +# func_convert_file_nix_to_cygwin ARG +# Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed +# in a wine environment, working winepath, and LT_CYGPATH set. Returns result +# in func_to_host_file_result. +func_convert_file_nix_to_cygwin () +{ + $opt_debug + func_to_host_file_result="$1" + if test -n "$1"; then + # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. + func_convert_core_file_wine_to_w32 "$1" + func_cygpath -u "$func_convert_core_file_wine_to_w32_result" + func_to_host_file_result="$func_cygpath_result" + fi + func_convert_file_check "$1" "$func_to_host_file_result" +} +# end func_convert_file_nix_to_cygwin + + +############################################# +# $build to $host PATH CONVERSION FUNCTIONS # +############################################# +# invoked via `$to_host_path_cmd ARG' +# +# In each case, ARG is the path to be converted from $build to $host format. +# The result will be available in $func_to_host_path_result. +# +# Path separators are also converted from $build format to $host format. If +# ARG begins or ends with a path separator character, it is preserved (but +# converted to $host format) on output. +# +# All path conversion functions are named using the following convention: +# file name conversion function : func_convert_file_X_to_Y () +# path conversion function : func_convert_path_X_to_Y () +# where, for any given $build/$host combination the 'X_to_Y' value is the +# same. If conversion functions are added for new $build/$host combinations, +# the two new functions must follow this pattern, or func_init_to_host_path_cmd +# will break. + + +# func_init_to_host_path_cmd +# Ensures that function "pointer" variable $to_host_path_cmd is set to the +# appropriate value, based on the value of $to_host_file_cmd. +to_host_path_cmd= +func_init_to_host_path_cmd () +{ + $opt_debug + if test -z "$to_host_path_cmd"; then + func_stripname 'func_convert_file_' '' "$to_host_file_cmd" + to_host_path_cmd="func_convert_path_${func_stripname_result}" + fi +} + + +# func_to_host_path ARG +# Converts the path ARG from $build format to $host format. Return result +# in func_to_host_path_result. +func_to_host_path () +{ + $opt_debug + func_init_to_host_path_cmd + $to_host_path_cmd "$1" +} +# end func_to_host_path + + +# func_convert_path_noop ARG +# Copy ARG to func_to_host_path_result. +func_convert_path_noop () +{ + func_to_host_path_result="$1" +} +# end func_convert_path_noop + + +# func_convert_path_msys_to_w32 ARG +# Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic +# conversion to w32 is not available inside the cwrapper. Returns result in +# func_to_host_path_result. +func_convert_path_msys_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # Remove leading and trailing path separator characters from ARG. MSYS + # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; + # and winepath ignores them completely. + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" + func_to_host_path_result="$func_convert_core_msys_to_w32_result" + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_msys_to_w32 + + +# func_convert_path_cygwin_to_w32 ARG +# Convert path ARG from Cygwin to w32 format. Returns result in +# func_to_host_file_result. +func_convert_path_cygwin_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_cygwin_to_w32 + + +# func_convert_path_nix_to_w32 ARG +# Convert path ARG from *nix to w32 format. Requires a wine environment and +# a working winepath. Returns result in func_to_host_file_result. +func_convert_path_nix_to_w32 () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" + func_to_host_path_result="$func_convert_core_path_wine_to_w32_result" + func_convert_path_check : ";" \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" + fi +} +# end func_convert_path_nix_to_w32 + + +# func_convert_path_msys_to_cygwin ARG +# Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. +# Returns result in func_to_host_file_result. +func_convert_path_msys_to_cygwin () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # See func_convert_path_msys_to_w32: + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" + func_cygpath -u -p "$func_convert_core_msys_to_w32_result" + func_to_host_path_result="$func_cygpath_result" + func_convert_path_check : : \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" : "$1" + fi +} +# end func_convert_path_msys_to_cygwin + + +# func_convert_path_nix_to_cygwin ARG +# Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a +# a wine environment, working winepath, and LT_CYGPATH set. Returns result in +# func_to_host_file_result. +func_convert_path_nix_to_cygwin () +{ + $opt_debug + func_to_host_path_result="$1" + if test -n "$1"; then + # Remove leading and trailing path separator characters from + # ARG. msys behavior is inconsistent here, cygpath turns them + # into '.;' and ';.', and winepath ignores them completely. + func_stripname : : "$1" + func_to_host_path_tmp1=$func_stripname_result + func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" + func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" + func_to_host_path_result="$func_cygpath_result" + func_convert_path_check : : \ + "$func_to_host_path_tmp1" "$func_to_host_path_result" + func_convert_path_front_back_pathsep ":*" "*:" : "$1" + fi +} +# end func_convert_path_nix_to_cygwin + + +# func_mode_compile arg... +func_mode_compile () +{ + $opt_debug + # Get the compilation command and the source file. + base_compile= + srcfile="$nonopt" # always keep a non-empty value in "srcfile" + suppress_opt=yes + suppress_output= + arg_mode=normal + libobj= + later= + pie_flag= + + for arg + do + case $arg_mode in + arg ) + # do not "continue". Instead, add this to base_compile + lastarg="$arg" + arg_mode=normal + ;; + + target ) + libobj="$arg" + arg_mode=normal + continue + ;; + + normal ) + # Accept any command-line options. + case $arg in + -o) + test -n "$libobj" && \ + func_fatal_error "you cannot specify \`-o' more than once" + arg_mode=target + continue + ;; + + -pie | -fpie | -fPIE) + func_append pie_flag " $arg" + continue + ;; + + -shared | -static | -prefer-pic | -prefer-non-pic) + func_append later " $arg" + continue + ;; + + -no-suppress) + suppress_opt=no + continue + ;; + + -Xcompiler) + arg_mode=arg # the next one goes into the "base_compile" arg list + continue # The current "srcfile" will either be retained or + ;; # replaced later. I would guess that would be a bug. + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + lastarg= + save_ifs="$IFS"; IFS=',' + for arg in $args; do + IFS="$save_ifs" + func_append_quoted lastarg "$arg" + done + IFS="$save_ifs" + func_stripname ' ' '' "$lastarg" + lastarg=$func_stripname_result + + # Add the arguments to base_compile. + func_append base_compile " $lastarg" + continue + ;; + + *) + # Accept the current argument as the source file. + # The previous "srcfile" becomes the current argument. + # + lastarg="$srcfile" + srcfile="$arg" + ;; + esac # case $arg + ;; + esac # case $arg_mode + + # Aesthetically quote the previous argument. + func_append_quoted base_compile "$lastarg" + done # for arg + + case $arg_mode in + arg) + func_fatal_error "you must specify an argument for -Xcompile" + ;; + target) + func_fatal_error "you must specify a target with \`-o'" + ;; + *) + # Get the name of the library object. + test -z "$libobj" && { + func_basename "$srcfile" + libobj="$func_basename_result" + } + ;; + esac + + # Recognize several different file suffixes. + # If the user specifies -o file.o, it is replaced with file.lo + case $libobj in + *.[cCFSifmso] | \ + *.ada | *.adb | *.ads | *.asm | \ + *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ + *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) + func_xform "$libobj" + libobj=$func_xform_result + ;; + esac + + case $libobj in + *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; + *) + func_fatal_error "cannot determine name of library object from \`$libobj'" + ;; + esac + + func_infer_tag $base_compile + + for arg in $later; do + case $arg in + -shared) + test "$build_libtool_libs" != yes && \ + func_fatal_configuration "can not build a shared library" + build_old_libs=no + continue + ;; + + -static) + build_libtool_libs=no + build_old_libs=yes + continue + ;; + + -prefer-pic) + pic_mode=yes + continue + ;; + + -prefer-non-pic) + pic_mode=no + continue + ;; + esac + done + + func_quote_for_eval "$libobj" + test "X$libobj" != "X$func_quote_for_eval_result" \ + && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ + && func_warning "libobj name \`$libobj' may not contain shell special characters." + func_dirname_and_basename "$obj" "/" "" + objname="$func_basename_result" + xdir="$func_dirname_result" + lobj=${xdir}$objdir/$objname + + test -z "$base_compile" && \ + func_fatal_help "you must specify a compilation command" + + # Delete any leftover library objects. + if test "$build_old_libs" = yes; then + removelist="$obj $lobj $libobj ${libobj}T" + else + removelist="$lobj $libobj ${libobj}T" + fi + + # On Cygwin there's no "real" PIC flag so we must build both object types + case $host_os in + cygwin* | mingw* | pw32* | os2* | cegcc*) + pic_mode=default + ;; + esac + if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then + # non-PIC code in shared libraries is not supported + pic_mode=default + fi + + # Calculate the filename of the output object if compiler does + # not support -o with -c + if test "$compiler_c_o" = no; then + output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.${objext} + lockfile="$output_obj.lock" + else + output_obj= + need_locks=no + lockfile= + fi + + # Lock this critical section if it is needed + # We use this script file to make the link, it avoids creating a new file + if test "$need_locks" = yes; then + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + elif test "$need_locks" = warn; then + if test -f "$lockfile"; then + $ECHO "\ +*** ERROR, $lockfile exists and contains: +`cat $lockfile 2>/dev/null` + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + func_append removelist " $output_obj" + $ECHO "$srcfile" > "$lockfile" + fi + + $opt_dry_run || $RM $removelist + func_append removelist " $lockfile" + trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 + + func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 + srcfile=$func_to_tool_file_result + func_quote_for_eval "$srcfile" + qsrcfile=$func_quote_for_eval_result + + # Only build a PIC object if we are building libtool libraries. + if test "$build_libtool_libs" = yes; then + # Without this assignment, base_compile gets emptied. + fbsd_hideous_sh_bug=$base_compile + + if test "$pic_mode" != no; then + command="$base_compile $qsrcfile $pic_flag" + else + # Don't build PIC code + command="$base_compile $qsrcfile" + fi + + func_mkdir_p "$xdir$objdir" + + if test -z "$output_obj"; then + # Place PIC objects in $objdir + func_append command " -o $lobj" + fi + + func_show_eval_locale "$command" \ + 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' + + if test "$need_locks" = warn && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed, then go on to compile the next one + if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then + func_show_eval '$MV "$output_obj" "$lobj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + + # Allow error messages only from the first compilation. + if test "$suppress_opt" = yes; then + suppress_output=' >/dev/null 2>&1' + fi + fi + + # Only build a position-dependent object if we build old libraries. + if test "$build_old_libs" = yes; then + if test "$pic_mode" != yes; then + # Don't build PIC code + command="$base_compile $qsrcfile$pie_flag" + else + command="$base_compile $qsrcfile $pic_flag" + fi + if test "$compiler_c_o" = yes; then + func_append command " -o $obj" + fi + + # Suppress compiler output if we already did a PIC compilation. + func_append command "$suppress_output" + func_show_eval_locale "$command" \ + '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' + + if test "$need_locks" = warn && + test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then + $ECHO "\ +*** ERROR, $lockfile contains: +`cat $lockfile 2>/dev/null` + +but it should contain: +$srcfile + +This indicates that another process is trying to use the same +temporary object file, and libtool could not work around it because +your compiler does not support \`-c' and \`-o' together. If you +repeat this compilation, it may succeed, by chance, but you had better +avoid parallel builds (make -j) in this platform, or get a better +compiler." + + $opt_dry_run || $RM $removelist + exit $EXIT_FAILURE + fi + + # Just move the object if needed + if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then + func_show_eval '$MV "$output_obj" "$obj"' \ + 'error=$?; $opt_dry_run || $RM $removelist; exit $error' + fi + fi + + $opt_dry_run || { + func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" + + # Unlock the critical section if it was locked + if test "$need_locks" != no; then + removelist=$lockfile + $RM "$lockfile" + fi + } + + exit $EXIT_SUCCESS +} + +$opt_help || { + test "$opt_mode" = compile && func_mode_compile ${1+"$@"} +} + +func_mode_help () +{ + # We need to display help for each of the modes. + case $opt_mode in + "") + # Generic help is extracted from the usage comments + # at the start of this file. + func_help + ;; + + clean) + $ECHO \ +"Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... + +Remove files from the build directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +to RM. + +If FILE is a libtool library, object or program, all the files associated +with it are deleted. Otherwise, only FILE itself is deleted using RM." + ;; + + compile) + $ECHO \ +"Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE + +Compile a source file into a libtool library object. + +This mode accepts the following additional options: + + -o OUTPUT-FILE set the output file name to OUTPUT-FILE + -no-suppress do not suppress compiler output for multiple passes + -prefer-pic try to build PIC objects only + -prefer-non-pic try to build non-PIC objects only + -shared do not build a \`.o' file suitable for static linking + -static only build a \`.o' file suitable for static linking + -Wc,FLAG pass FLAG directly to the compiler + +COMPILE-COMMAND is a command to be used in creating a \`standard' object file +from the given SOURCEFILE. + +The output file name is determined by removing the directory component from +SOURCEFILE, then substituting the C source code suffix \`.c' with the +library object suffix, \`.lo'." + ;; + + execute) + $ECHO \ +"Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... + +Automatically set library path, then run a program. + +This mode accepts the following additional options: + + -dlopen FILE add the directory containing FILE to the library path + +This mode sets the library path environment variable according to \`-dlopen' +flags. + +If any of the ARGS are libtool executable wrappers, then they are translated +into their corresponding uninstalled binary, and any of their required library +directories are added to the library path. + +Then, COMMAND is executed, with ARGS as arguments." + ;; + + finish) + $ECHO \ +"Usage: $progname [OPTION]... --mode=finish [LIBDIR]... + +Complete the installation of libtool libraries. + +Each LIBDIR is a directory that contains libtool libraries. + +The commands that this mode executes may require superuser privileges. Use +the \`--dry-run' option if you just want to see what would be executed." + ;; + + install) + $ECHO \ +"Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... + +Install executables or libraries. + +INSTALL-COMMAND is the installation command. The first component should be +either the \`install' or \`cp' program. + +The following components of INSTALL-COMMAND are treated specially: + + -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation + +The rest of the components are interpreted as arguments to that command (only +BSD-compatible install options are recognized)." + ;; + + link) + $ECHO \ +"Usage: $progname [OPTION]... --mode=link LINK-COMMAND... + +Link object files or libraries together to form another library, or to +create an executable program. + +LINK-COMMAND is a command using the C compiler that you would use to create +a program from several object files. + +The following components of LINK-COMMAND are treated specially: + + -all-static do not do any dynamic linking at all + -avoid-version do not add a version suffix if possible + -bindir BINDIR specify path to binaries directory (for systems where + libraries must be found in the PATH setting at runtime) + -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime + -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols + -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) + -export-symbols SYMFILE + try to export only the symbols listed in SYMFILE + -export-symbols-regex REGEX + try to export only the symbols matching REGEX + -LLIBDIR search LIBDIR for required installed libraries + -lNAME OUTPUT-FILE requires the installed library libNAME + -module build a library that can dlopened + -no-fast-install disable the fast-install mode + -no-install link a not-installable executable + -no-undefined declare that a library does not refer to external symbols + -o OUTPUT-FILE create OUTPUT-FILE from the specified objects + -objectlist FILE Use a list of object files found in FILE to specify objects + -precious-files-regex REGEX + don't remove output files matching REGEX + -release RELEASE specify package release information + -rpath LIBDIR the created library will eventually be installed in LIBDIR + -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries + -shared only do dynamic linking of libtool libraries + -shrext SUFFIX override the standard shared library file extension + -static do not do any dynamic linking of uninstalled libtool libraries + -static-libtool-libs + do not do any dynamic linking of libtool libraries + -version-info CURRENT[:REVISION[:AGE]] + specify library version info [each variable defaults to 0] + -weak LIBNAME declare that the target provides the LIBNAME interface + -Wc,FLAG + -Xcompiler FLAG pass linker-specific FLAG directly to the compiler + -Wl,FLAG + -Xlinker FLAG pass linker-specific FLAG directly to the linker + -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) + +All other options (arguments beginning with \`-') are ignored. + +Every other argument is treated as a filename. Files ending in \`.la' are +treated as uninstalled libtool libraries, other files are standard or library +object files. + +If the OUTPUT-FILE ends in \`.la', then a libtool library is created, +only library objects (\`.lo' files) may be specified, and \`-rpath' is +required, except when creating a convenience library. + +If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created +using \`ar' and \`ranlib', or on Windows using \`lib'. + +If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file +is created, otherwise an executable program is created." + ;; + + uninstall) + $ECHO \ +"Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... + +Remove libraries from an installation directory. + +RM is the name of the program to use to delete files associated with each FILE +(typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed +to RM. + +If FILE is a libtool library, all the files associated with it are deleted. +Otherwise, only FILE itself is deleted using RM." + ;; + + *) + func_fatal_help "invalid operation mode \`$opt_mode'" + ;; + esac + + echo + $ECHO "Try \`$progname --help' for more information about other modes." +} + +# Now that we've collected a possible --mode arg, show help if necessary +if $opt_help; then + if test "$opt_help" = :; then + func_mode_help + else + { + func_help noexit + for opt_mode in compile link execute install finish uninstall clean; do + func_mode_help + done + } | sed -n '1p; 2,$s/^Usage:/ or: /p' + { + func_help noexit + for opt_mode in compile link execute install finish uninstall clean; do + echo + func_mode_help + done + } | + sed '1d + /^When reporting/,/^Report/{ + H + d + } + $x + /information about other modes/d + /more detailed .*MODE/d + s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' + fi + exit $? +fi + + +# func_mode_execute arg... +func_mode_execute () +{ + $opt_debug + # The first argument is the command name. + cmd="$nonopt" + test -z "$cmd" && \ + func_fatal_help "you must specify a COMMAND" + + # Handle -dlopen flags immediately. + for file in $opt_dlopen; do + test -f "$file" \ + || func_fatal_help "\`$file' is not a file" + + dir= + case $file in + *.la) + func_resolve_sysroot "$file" + file=$func_resolve_sysroot_result + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "\`$lib' is not a valid libtool archive" + + # Read the libtool library. + dlname= + library_names= + func_source "$file" + + # Skip this library if it cannot be dlopened. + if test -z "$dlname"; then + # Warn if it was a shared library. + test -n "$library_names" && \ + func_warning "\`$file' was not linked with \`-export-dynamic'" + continue + fi + + func_dirname "$file" "" "." + dir="$func_dirname_result" + + if test -f "$dir/$objdir/$dlname"; then + func_append dir "/$objdir" + else + if test ! -f "$dir/$dlname"; then + func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" + fi + fi + ;; + + *.lo) + # Just add the directory containing the .lo file. + func_dirname "$file" "" "." + dir="$func_dirname_result" + ;; + + *) + func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" + continue + ;; + esac + + # Get the absolute pathname. + absdir=`cd "$dir" && pwd` + test -n "$absdir" && dir="$absdir" + + # Now add the directory to shlibpath_var. + if eval "test -z \"\$$shlibpath_var\""; then + eval "$shlibpath_var=\"\$dir\"" + else + eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" + fi + done + + # This variable tells wrapper scripts just to set shlibpath_var + # rather than running their programs. + libtool_execute_magic="$magic" + + # Check if any of the arguments is a wrapper script. + args= + for file + do + case $file in + -* | *.la | *.lo ) ;; + *) + # Do a test to see if this is really a libtool program. + if func_ltwrapper_script_p "$file"; then + func_source "$file" + # Transform arg to wrapped name. + file="$progdir/$program" + elif func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + func_source "$func_ltwrapper_scriptname_result" + # Transform arg to wrapped name. + file="$progdir/$program" + fi + ;; + esac + # Quote arguments (to preserve shell metacharacters). + func_append_quoted args "$file" + done + + if test "X$opt_dry_run" = Xfalse; then + if test -n "$shlibpath_var"; then + # Export the shlibpath_var. + eval "export $shlibpath_var" + fi + + # Restore saved environment variables + for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES + do + eval "if test \"\${save_$lt_var+set}\" = set; then + $lt_var=\$save_$lt_var; export $lt_var + else + $lt_unset $lt_var + fi" + done + + # Now prepare to actually exec the command. + exec_cmd="\$cmd$args" + else + # Display what would be done. + if test -n "$shlibpath_var"; then + eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" + echo "export $shlibpath_var" + fi + $ECHO "$cmd$args" + exit $EXIT_SUCCESS + fi +} + +test "$opt_mode" = execute && func_mode_execute ${1+"$@"} + + +# func_mode_finish arg... +func_mode_finish () +{ + $opt_debug + libs= + libdirs= + admincmds= + + for opt in "$nonopt" ${1+"$@"} + do + if test -d "$opt"; then + func_append libdirs " $opt" + + elif test -f "$opt"; then + if func_lalib_unsafe_p "$opt"; then + func_append libs " $opt" + else + func_warning "\`$opt' is not a valid libtool archive" + fi + + else + func_fatal_error "invalid argument \`$opt'" + fi + done + + if test -n "$libs"; then + if test -n "$lt_sysroot"; then + sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` + sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" + else + sysroot_cmd= + fi + + # Remove sysroot references + if $opt_dry_run; then + for lib in $libs; do + echo "removing references to $lt_sysroot and \`=' prefixes from $lib" + done + else + tmpdir=`func_mktempdir` + for lib in $libs; do + sed -e "${sysroot_cmd} s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ + > $tmpdir/tmp-la + mv -f $tmpdir/tmp-la $lib + done + ${RM}r "$tmpdir" + fi + fi + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + for libdir in $libdirs; do + if test -n "$finish_cmds"; then + # Do each command in the finish commands. + func_execute_cmds "$finish_cmds" 'admincmds="$admincmds +'"$cmd"'"' + fi + if test -n "$finish_eval"; then + # Do the single finish_eval. + eval cmds=\"$finish_eval\" + $opt_dry_run || eval "$cmds" || func_append admincmds " + $cmds" + fi + done + fi + + # Exit here if they wanted silent mode. + $opt_silent && exit $EXIT_SUCCESS + + if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then + echo "----------------------------------------------------------------------" + echo "Libraries have been installed in:" + for libdir in $libdirs; do + $ECHO " $libdir" + done + echo + echo "If you ever happen to want to link against installed libraries" + echo "in a given directory, LIBDIR, you must either use libtool, and" + echo "specify the full pathname of the library, or use the \`-LLIBDIR'" + echo "flag during linking and do at least one of the following:" + if test -n "$shlibpath_var"; then + echo " - add LIBDIR to the \`$shlibpath_var' environment variable" + echo " during execution" + fi + if test -n "$runpath_var"; then + echo " - add LIBDIR to the \`$runpath_var' environment variable" + echo " during linking" + fi + if test -n "$hardcode_libdir_flag_spec"; then + libdir=LIBDIR + eval flag=\"$hardcode_libdir_flag_spec\" + + $ECHO " - use the \`$flag' linker flag" + fi + if test -n "$admincmds"; then + $ECHO " - have your system administrator run these commands:$admincmds" + fi + if test -f /etc/ld.so.conf; then + echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" + fi + echo + + echo "See any operating system documentation about shared libraries for" + case $host in + solaris2.[6789]|solaris2.1[0-9]) + echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" + echo "pages." + ;; + *) + echo "more information, such as the ld(1) and ld.so(8) manual pages." + ;; + esac + echo "----------------------------------------------------------------------" + fi + exit $EXIT_SUCCESS +} + +test "$opt_mode" = finish && func_mode_finish ${1+"$@"} + + +# func_mode_install arg... +func_mode_install () +{ + $opt_debug + # There may be an optional sh(1) argument at the beginning of + # install_prog (especially on Windows NT). + if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || + # Allow the use of GNU shtool's install command. + case $nonopt in *shtool*) :;; *) false;; esac; then + # Aesthetically quote it. + func_quote_for_eval "$nonopt" + install_prog="$func_quote_for_eval_result " + arg=$1 + shift + else + install_prog= + arg=$nonopt + fi + + # The real first argument should be the name of the installation program. + # Aesthetically quote it. + func_quote_for_eval "$arg" + func_append install_prog "$func_quote_for_eval_result" + install_shared_prog=$install_prog + case " $install_prog " in + *[\\\ /]cp\ *) install_cp=: ;; + *) install_cp=false ;; + esac + + # We need to accept at least all the BSD install flags. + dest= + files= + opts= + prev= + install_type= + isdir=no + stripme= + no_mode=: + for arg + do + arg2= + if test -n "$dest"; then + func_append files " $dest" + dest=$arg + continue + fi + + case $arg in + -d) isdir=yes ;; + -f) + if $install_cp; then :; else + prev=$arg + fi + ;; + -g | -m | -o) + prev=$arg + ;; + -s) + stripme=" -s" + continue + ;; + -*) + ;; + *) + # If the previous option needed an argument, then skip it. + if test -n "$prev"; then + if test "x$prev" = x-m && test -n "$install_override_mode"; then + arg2=$install_override_mode + no_mode=false + fi + prev= + else + dest=$arg + continue + fi + ;; + esac + + # Aesthetically quote the argument. + func_quote_for_eval "$arg" + func_append install_prog " $func_quote_for_eval_result" + if test -n "$arg2"; then + func_quote_for_eval "$arg2" + fi + func_append install_shared_prog " $func_quote_for_eval_result" + done + + test -z "$install_prog" && \ + func_fatal_help "you must specify an install program" + + test -n "$prev" && \ + func_fatal_help "the \`$prev' option requires an argument" + + if test -n "$install_override_mode" && $no_mode; then + if $install_cp; then :; else + func_quote_for_eval "$install_override_mode" + func_append install_shared_prog " -m $func_quote_for_eval_result" + fi + fi + + if test -z "$files"; then + if test -z "$dest"; then + func_fatal_help "no file or destination specified" + else + func_fatal_help "you must specify a destination" + fi + fi + + # Strip any trailing slash from the destination. + func_stripname '' '/' "$dest" + dest=$func_stripname_result + + # Check to see that the destination is a directory. + test -d "$dest" && isdir=yes + if test "$isdir" = yes; then + destdir="$dest" + destname= + else + func_dirname_and_basename "$dest" "" "." + destdir="$func_dirname_result" + destname="$func_basename_result" + + # Not a directory, so check to see that there is only one file specified. + set dummy $files; shift + test "$#" -gt 1 && \ + func_fatal_help "\`$dest' is not a directory" + fi + case $destdir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + for file in $files; do + case $file in + *.lo) ;; + *) + func_fatal_help "\`$destdir' must be an absolute directory name" + ;; + esac + done + ;; + esac + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic="$magic" + + staticlibs= + future_libdirs= + current_libdirs= + for file in $files; do + + # Do each installation. + case $file in + *.$libext) + # Do the static libraries later. + func_append staticlibs " $file" + ;; + + *.la) + func_resolve_sysroot "$file" + file=$func_resolve_sysroot_result + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$file" \ + || func_fatal_help "\`$file' is not a valid libtool archive" + + library_names= + old_library= + relink_command= + func_source "$file" + + # Add the libdir to current_libdirs if it is the destination. + if test "X$destdir" = "X$libdir"; then + case "$current_libdirs " in + *" $libdir "*) ;; + *) func_append current_libdirs " $libdir" ;; + esac + else + # Note the libdir as a future libdir. + case "$future_libdirs " in + *" $libdir "*) ;; + *) func_append future_libdirs " $libdir" ;; + esac + fi + + func_dirname "$file" "/" "" + dir="$func_dirname_result" + func_append dir "$objdir" + + if test -n "$relink_command"; then + # Determine the prefix the user has applied to our future dir. + inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` + + # Don't allow the user to place us outside of our expected + # location b/c this prevents finding dependent libraries that + # are installed to the same prefix. + # At present, this check doesn't affect windows .dll's that + # are installed into $libdir/../bin (currently, that works fine) + # but it's something to keep an eye on. + test "$inst_prefix_dir" = "$destdir" && \ + func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" + + if test -n "$inst_prefix_dir"; then + # Stick the inst_prefix_dir data into the link command. + relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` + else + relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` + fi + + func_warning "relinking \`$file'" + func_show_eval "$relink_command" \ + 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' + fi + + # See the names of the shared library. + set dummy $library_names; shift + if test -n "$1"; then + realname="$1" + shift + + srcname="$realname" + test -n "$relink_command" && srcname="$realname"T + + # Install the shared library and build the symlinks. + func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ + 'exit $?' + tstripme="$stripme" + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + case $realname in + *.dll.a) + tstripme="" + ;; + esac + ;; + esac + if test -n "$tstripme" && test -n "$striplib"; then + func_show_eval "$striplib $destdir/$realname" 'exit $?' + fi + + if test "$#" -gt 0; then + # Delete the old symlinks, and create new ones. + # Try `ln -sf' first, because the `ln' binary might depend on + # the symlink we replace! Solaris /bin/ln does not understand -f, + # so we also need to try rm && ln -s. + for linkname + do + test "$linkname" != "$realname" \ + && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" + done + fi + + # Do each command in the postinstall commands. + lib="$destdir/$realname" + func_execute_cmds "$postinstall_cmds" 'exit $?' + fi + + # Install the pseudo-library for information purposes. + func_basename "$file" + name="$func_basename_result" + instname="$dir/$name"i + func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' + + # Maybe install the static library, too. + test -n "$old_library" && func_append staticlibs " $dir/$old_library" + ;; + + *.lo) + # Install (i.e. copy) a libtool object. + + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile="$destdir/$destname" + else + func_basename "$file" + destfile="$func_basename_result" + destfile="$destdir/$destfile" + fi + + # Deduce the name of the destination old-style object file. + case $destfile in + *.lo) + func_lo2o "$destfile" + staticdest=$func_lo2o_result + ;; + *.$objext) + staticdest="$destfile" + destfile= + ;; + *) + func_fatal_help "cannot copy a libtool object to \`$destfile'" + ;; + esac + + # Install the libtool object if requested. + test -n "$destfile" && \ + func_show_eval "$install_prog $file $destfile" 'exit $?' + + # Install the old object if enabled. + if test "$build_old_libs" = yes; then + # Deduce the name of the old-style object file. + func_lo2o "$file" + staticobj=$func_lo2o_result + func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' + fi + exit $EXIT_SUCCESS + ;; + + *) + # Figure out destination file name, if it wasn't already specified. + if test -n "$destname"; then + destfile="$destdir/$destname" + else + func_basename "$file" + destfile="$func_basename_result" + destfile="$destdir/$destfile" + fi + + # If the file is missing, and there is a .exe on the end, strip it + # because it is most likely a libtool script we actually want to + # install + stripped_ext="" + case $file in + *.exe) + if test ! -f "$file"; then + func_stripname '' '.exe' "$file" + file=$func_stripname_result + stripped_ext=".exe" + fi + ;; + esac + + # Do a test to see if this is really a libtool program. + case $host in + *cygwin* | *mingw*) + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + wrapper=$func_ltwrapper_scriptname_result + else + func_stripname '' '.exe' "$file" + wrapper=$func_stripname_result + fi + ;; + *) + wrapper=$file + ;; + esac + if func_ltwrapper_script_p "$wrapper"; then + notinst_deplibs= + relink_command= + + func_source "$wrapper" + + # Check the variables that should have been set. + test -z "$generated_by_libtool_version" && \ + func_fatal_error "invalid libtool wrapper script \`$wrapper'" + + finalize=yes + for lib in $notinst_deplibs; do + # Check to see that each library is installed. + libdir= + if test -f "$lib"; then + func_source "$lib" + fi + libfile="$libdir/"`$ECHO "$lib" | $SED 's%^.*/%%g'` ### testsuite: skip nested quoting test + if test -n "$libdir" && test ! -f "$libfile"; then + func_warning "\`$lib' has not been installed in \`$libdir'" + finalize=no + fi + done + + relink_command= + func_source "$wrapper" + + outputname= + if test "$fast_install" = no && test -n "$relink_command"; then + $opt_dry_run || { + if test "$finalize" = yes; then + tmpdir=`func_mktempdir` + func_basename "$file$stripped_ext" + file="$func_basename_result" + outputname="$tmpdir/$file" + # Replace the output file specification. + relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` + + $opt_silent || { + func_quote_for_expand "$relink_command" + eval "func_echo $func_quote_for_expand_result" + } + if eval "$relink_command"; then : + else + func_error "error: relink \`$file' with the above command before installing it" + $opt_dry_run || ${RM}r "$tmpdir" + continue + fi + file="$outputname" + else + func_warning "cannot relink \`$file'" + fi + } + else + # Install the binary that we compiled earlier. + file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` + fi + fi + + # remove .exe since cygwin /usr/bin/install will append another + # one anyway + case $install_prog,$host in + */usr/bin/install*,*cygwin*) + case $file:$destfile in + *.exe:*.exe) + # this is ok + ;; + *.exe:*) + destfile=$destfile.exe + ;; + *:*.exe) + func_stripname '' '.exe' "$destfile" + destfile=$func_stripname_result + ;; + esac + ;; + esac + func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' + $opt_dry_run || if test -n "$outputname"; then + ${RM}r "$tmpdir" + fi + ;; + esac + done + + for file in $staticlibs; do + func_basename "$file" + name="$func_basename_result" + + # Set up the ranlib parameters. + oldlib="$destdir/$name" + func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 + tool_oldlib=$func_to_tool_file_result + + func_show_eval "$install_prog \$file \$oldlib" 'exit $?' + + if test -n "$stripme" && test -n "$old_striplib"; then + func_show_eval "$old_striplib $tool_oldlib" 'exit $?' + fi + + # Do each command in the postinstall commands. + func_execute_cmds "$old_postinstall_cmds" 'exit $?' + done + + test -n "$future_libdirs" && \ + func_warning "remember to run \`$progname --finish$future_libdirs'" + + if test -n "$current_libdirs"; then + # Maybe just do a dry run. + $opt_dry_run && current_libdirs=" -n$current_libdirs" + exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' + else + exit $EXIT_SUCCESS + fi +} + +test "$opt_mode" = install && func_mode_install ${1+"$@"} + + +# func_generate_dlsyms outputname originator pic_p +# Extract symbols from dlprefiles and create ${outputname}S.o with +# a dlpreopen symbol table. +func_generate_dlsyms () +{ + $opt_debug + my_outputname="$1" + my_originator="$2" + my_pic_p="${3-no}" + my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` + my_dlsyms= + + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + if test -n "$NM" && test -n "$global_symbol_pipe"; then + my_dlsyms="${my_outputname}S.c" + else + func_error "not configured to extract global symbols from dlpreopened files" + fi + fi + + if test -n "$my_dlsyms"; then + case $my_dlsyms in + "") ;; + *.c) + # Discover the nlist of each of the dlfiles. + nlist="$output_objdir/${my_outputname}.nm" + + func_show_eval "$RM $nlist ${nlist}S ${nlist}T" + + # Parse the name list into a source file. + func_verbose "creating $output_objdir/$my_dlsyms" + + $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ +/* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ +/* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ + +#ifdef __cplusplus +extern \"C\" { +#endif + +#if defined(__GNUC__) && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) +#pragma GCC diagnostic ignored \"-Wstrict-prototypes\" +#endif + +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) +/* DATA imports from DLLs on WIN32 con't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT_DLSYM_CONST +#elif defined(__osf__) +/* This system does not cope well with relocations in const data. */ +# define LT_DLSYM_CONST +#else +# define LT_DLSYM_CONST const +#endif + +/* External symbol declarations for the compiler. */\ +" + + if test "$dlself" = yes; then + func_verbose "generating symbol list for \`$output'" + + $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" + + # Add our own program objects to the symbol list. + progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` + for progfile in $progfiles; do + func_to_tool_file "$progfile" func_convert_file_msys_to_w32 + func_verbose "extracting global C symbols from \`$func_to_tool_file_result'" + $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" + done + + if test -n "$exclude_expsyms"; then + $opt_dry_run || { + eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + if test -n "$export_symbols_regex"; then + $opt_dry_run || { + eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + } + fi + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + export_symbols="$output_objdir/$outputname.exp" + $opt_dry_run || { + $RM $export_symbols + eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' + ;; + esac + } + else + $opt_dry_run || { + eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' + eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' + eval '$MV "$nlist"T "$nlist"' + case $host in + *cygwin* | *mingw* | *cegcc* ) + eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' + eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' + ;; + esac + } + fi + fi + + for dlprefile in $dlprefiles; do + func_verbose "extracting global C symbols from \`$dlprefile'" + func_basename "$dlprefile" + name="$func_basename_result" + case $host in + *cygwin* | *mingw* | *cegcc* ) + # if an import library, we need to obtain dlname + if func_win32_import_lib_p "$dlprefile"; then + func_tr_sh "$dlprefile" + eval "curr_lafile=\$libfile_$func_tr_sh_result" + dlprefile_dlbasename="" + if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then + # Use subshell, to avoid clobbering current variable values + dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` + if test -n "$dlprefile_dlname" ; then + func_basename "$dlprefile_dlname" + dlprefile_dlbasename="$func_basename_result" + else + # no lafile. user explicitly requested -dlpreopen . + $sharedlib_from_linklib_cmd "$dlprefile" + dlprefile_dlbasename=$sharedlib_from_linklib_result + fi + fi + $opt_dry_run || { + if test -n "$dlprefile_dlbasename" ; then + eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' + else + func_warning "Could not compute DLL name from $name" + eval '$ECHO ": $name " >> "$nlist"' + fi + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | + $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" + } + else # not an import lib + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + fi + ;; + *) + $opt_dry_run || { + eval '$ECHO ": $name " >> "$nlist"' + func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 + eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" + } + ;; + esac + done + + $opt_dry_run || { + # Make sure we have at least an empty file. + test -f "$nlist" || : > "$nlist" + + if test -n "$exclude_expsyms"; then + $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T + $MV "$nlist"T "$nlist" + fi + + # Try sorting and uniquifying the output. + if $GREP -v "^: " < "$nlist" | + if sort -k 3 /dev/null 2>&1; then + sort -k 3 + else + sort +2 + fi | + uniq > "$nlist"S; then + : + else + $GREP -v "^: " < "$nlist" > "$nlist"S + fi + + if test -f "$nlist"S; then + eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' + else + echo '/* NONE */' >> "$output_objdir/$my_dlsyms" + fi + + echo >> "$output_objdir/$my_dlsyms" "\ + +/* The mapping between symbol names and symbols. */ +typedef struct { + const char *name; + void *address; +} lt_dlsymlist; +extern LT_DLSYM_CONST lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[]; +LT_DLSYM_CONST lt_dlsymlist +lt_${my_prefix}_LTX_preloaded_symbols[] = +{\ + { \"$my_originator\", (void *) 0 }," + + case $need_lib_prefix in + no) + eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + *) + eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" + ;; + esac + echo >> "$output_objdir/$my_dlsyms" "\ + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt_${my_prefix}_LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif\ +" + } # !$opt_dry_run + + pic_flag_for_symtable= + case "$compile_command " in + *" -static "*) ;; + *) + case $host in + # compiling the symbol table file with pic_flag works around + # a FreeBSD bug that causes programs to crash when -lm is + # linked before any other PIC object. But we must not use + # pic_flag when linking with -static. The problem exists in + # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. + *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) + pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; + *-*-hpux*) + pic_flag_for_symtable=" $pic_flag" ;; + *) + if test "X$my_pic_p" != Xno; then + pic_flag_for_symtable=" $pic_flag" + fi + ;; + esac + ;; + esac + symtab_cflags= + for arg in $LTCFLAGS; do + case $arg in + -pie | -fpie | -fPIE) ;; + *) func_append symtab_cflags " $arg" ;; + esac + done + + # Now compile the dynamic symbol file. + func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' + + # Clean up the generated files. + func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' + + # Transform the symbol file into the correct name. + symfileobj="$output_objdir/${my_outputname}S.$objext" + case $host in + *cygwin* | *mingw* | *cegcc* ) + if test -f "$output_objdir/$my_outputname.def"; then + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` + else + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` + fi + ;; + *) + compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` + ;; + esac + ;; + *) + func_fatal_error "unknown suffix for \`$my_dlsyms'" + ;; + esac + else + # We keep going just in case the user didn't refer to + # lt_preloaded_symbols. The linker will fail if global_symbol_pipe + # really was required. + + # Nullify the symbol file. + compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` + finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` + fi +} + +# func_win32_libid arg +# return the library type of file 'arg' +# +# Need a lot of goo to handle *both* DLLs and import libs +# Has to be a shell function in order to 'eat' the argument +# that is supplied when $file_magic_command is called. +# Despite the name, also deal with 64 bit binaries. +func_win32_libid () +{ + $opt_debug + win32_libid_type="unknown" + win32_fileres=`file -L $1 2>/dev/null` + case $win32_fileres in + *ar\ archive\ import\ library*) # definitely import + win32_libid_type="x86 archive import" + ;; + *ar\ archive*) # could be an import, or static + # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. + if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | + $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then + func_to_tool_file "$1" func_convert_file_msys_to_w32 + win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | + $SED -n -e ' + 1,100{ + / I /{ + s,.*,import, + p + q + } + }'` + case $win32_nmres in + import*) win32_libid_type="x86 archive import";; + *) win32_libid_type="x86 archive static";; + esac + fi + ;; + *DLL*) + win32_libid_type="x86 DLL" + ;; + *executable*) # but shell scripts are "executable" too... + case $win32_fileres in + *MS\ Windows\ PE\ Intel*) + win32_libid_type="x86 DLL" + ;; + esac + ;; + esac + $ECHO "$win32_libid_type" +} + +# func_cygming_dll_for_implib ARG +# +# Platform-specific function to extract the +# name of the DLL associated with the specified +# import library ARG. +# Invoked by eval'ing the libtool variable +# $sharedlib_from_linklib_cmd +# Result is available in the variable +# $sharedlib_from_linklib_result +func_cygming_dll_for_implib () +{ + $opt_debug + sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` +} + +# func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs +# +# The is the core of a fallback implementation of a +# platform-specific function to extract the name of the +# DLL associated with the specified import library LIBNAME. +# +# SECTION_NAME is either .idata$6 or .idata$7, depending +# on the platform and compiler that created the implib. +# +# Echos the name of the DLL associated with the +# specified import library. +func_cygming_dll_for_implib_fallback_core () +{ + $opt_debug + match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` + $OBJDUMP -s --section "$1" "$2" 2>/dev/null | + $SED '/^Contents of section '"$match_literal"':/{ + # Place marker at beginning of archive member dllname section + s/.*/====MARK====/ + p + d + } + # These lines can sometimes be longer than 43 characters, but + # are always uninteresting + /:[ ]*file format pe[i]\{,1\}-/d + /^In archive [^:]*:/d + # Ensure marker is printed + /^====MARK====/p + # Remove all lines with less than 43 characters + /^.\{43\}/!d + # From remaining lines, remove first 43 characters + s/^.\{43\}//' | + $SED -n ' + # Join marker and all lines until next marker into a single line + /^====MARK====/ b para + H + $ b para + b + :para + x + s/\n//g + # Remove the marker + s/^====MARK====// + # Remove trailing dots and whitespace + s/[\. \t]*$// + # Print + /./p' | + # we now have a list, one entry per line, of the stringified + # contents of the appropriate section of all members of the + # archive which possess that section. Heuristic: eliminate + # all those which have a first or second character that is + # a '.' (that is, objdump's representation of an unprintable + # character.) This should work for all archives with less than + # 0x302f exports -- but will fail for DLLs whose name actually + # begins with a literal '.' or a single character followed by + # a '.'. + # + # Of those that remain, print the first one. + $SED -e '/^\./d;/^.\./d;q' +} + +# func_cygming_gnu_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is a GNU/binutils-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_gnu_implib_p () +{ + $opt_debug + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` + test -n "$func_cygming_gnu_implib_tmp" +} + +# func_cygming_ms_implib_p ARG +# This predicate returns with zero status (TRUE) if +# ARG is an MS-style import library. Returns +# with nonzero status (FALSE) otherwise. +func_cygming_ms_implib_p () +{ + $opt_debug + func_to_tool_file "$1" func_convert_file_msys_to_w32 + func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` + test -n "$func_cygming_ms_implib_tmp" +} + +# func_cygming_dll_for_implib_fallback ARG +# Platform-specific function to extract the +# name of the DLL associated with the specified +# import library ARG. +# +# This fallback implementation is for use when $DLLTOOL +# does not support the --identify-strict option. +# Invoked by eval'ing the libtool variable +# $sharedlib_from_linklib_cmd +# Result is available in the variable +# $sharedlib_from_linklib_result +func_cygming_dll_for_implib_fallback () +{ + $opt_debug + if func_cygming_gnu_implib_p "$1" ; then + # binutils import library + sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` + elif func_cygming_ms_implib_p "$1" ; then + # ms-generated import library + sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` + else + # unknown + sharedlib_from_linklib_result="" + fi +} + + +# func_extract_an_archive dir oldlib +func_extract_an_archive () +{ + $opt_debug + f_ex_an_ar_dir="$1"; shift + f_ex_an_ar_oldlib="$1" + if test "$lock_old_archive_extraction" = yes; then + lockfile=$f_ex_an_ar_oldlib.lock + until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do + func_echo "Waiting for $lockfile to be removed" + sleep 2 + done + fi + func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ + 'stat=$?; rm -f "$lockfile"; exit $stat' + if test "$lock_old_archive_extraction" = yes; then + $opt_dry_run || rm -f "$lockfile" + fi + if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then + : + else + func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" + fi +} + + +# func_extract_archives gentop oldlib ... +func_extract_archives () +{ + $opt_debug + my_gentop="$1"; shift + my_oldlibs=${1+"$@"} + my_oldobjs="" + my_xlib="" + my_xabs="" + my_xdir="" + + for my_xlib in $my_oldlibs; do + # Extract the objects. + case $my_xlib in + [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; + *) my_xabs=`pwd`"/$my_xlib" ;; + esac + func_basename "$my_xlib" + my_xlib="$func_basename_result" + my_xlib_u=$my_xlib + while :; do + case " $extracted_archives " in + *" $my_xlib_u "*) + func_arith $extracted_serial + 1 + extracted_serial=$func_arith_result + my_xlib_u=lt$extracted_serial-$my_xlib ;; + *) break ;; + esac + done + extracted_archives="$extracted_archives $my_xlib_u" + my_xdir="$my_gentop/$my_xlib_u" + + func_mkdir_p "$my_xdir" + + case $host in + *-darwin*) + func_verbose "Extracting $my_xabs" + # Do not bother doing anything if just a dry run + $opt_dry_run || { + darwin_orig_dir=`pwd` + cd $my_xdir || exit $? + darwin_archive=$my_xabs + darwin_curdir=`pwd` + darwin_base_archive=`basename "$darwin_archive"` + darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` + if test -n "$darwin_arches"; then + darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` + darwin_arch= + func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" + for darwin_arch in $darwin_arches ; do + func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" + $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" + cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" + func_extract_an_archive "`pwd`" "${darwin_base_archive}" + cd "$darwin_curdir" + $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" + done # $darwin_arches + ## Okay now we've a bunch of thin objects, gotta fatten them up :) + darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` + darwin_file= + darwin_files= + for darwin_file in $darwin_filelist; do + darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` + $LIPO -create -output "$darwin_file" $darwin_files + done # $darwin_filelist + $RM -rf unfat-$$ + cd "$darwin_orig_dir" + else + cd $darwin_orig_dir + func_extract_an_archive "$my_xdir" "$my_xabs" + fi # $darwin_arches + } # !$opt_dry_run + ;; + *) + func_extract_an_archive "$my_xdir" "$my_xabs" + ;; + esac + my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` + done + + func_extract_archives_result="$my_oldobjs" +} + + +# func_emit_wrapper [arg=no] +# +# Emit a libtool wrapper script on stdout. +# Don't directly open a file because we may want to +# incorporate the script contents within a cygwin/mingw +# wrapper executable. Must ONLY be called from within +# func_mode_link because it depends on a number of variables +# set therein. +# +# ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR +# variable will take. If 'yes', then the emitted script +# will assume that the directory in which it is stored is +# the $objdir directory. This is a cygwin/mingw-specific +# behavior. +func_emit_wrapper () +{ + func_emit_wrapper_arg1=${1-no} + + $ECHO "\ +#! $SHELL + +# $output - temporary wrapper script for $objdir/$outputname +# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# +# The $output program cannot be directly executed until all the libtool +# libraries that it depends on are installed. +# +# This wrapper script should never be moved out of the build directory. +# If it is, it will not operate correctly. + +# Sed substitution that helps us do robust quoting. It backslashifies +# metacharacters that are still active within double-quoted strings. +sed_quote_subst='$sed_quote_subst' + +# Be Bourne compatible +if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST +else + case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac +fi +BIN_SH=xpg4; export BIN_SH # for Tru64 +DUALCASE=1; export DUALCASE # for MKS sh + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +relink_command=\"$relink_command\" + +# This environment variable determines our operation mode. +if test \"\$libtool_install_magic\" = \"$magic\"; then + # install mode needs the following variables: + generated_by_libtool_version='$macro_version' + notinst_deplibs='$notinst_deplibs' +else + # When we are sourced in execute mode, \$file and \$ECHO are already set. + if test \"\$libtool_execute_magic\" != \"$magic\"; then + file=\"\$0\"" + + qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` + $ECHO "\ + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$1 +_LTECHO_EOF' +} + ECHO=\"$qECHO\" + fi + +# Very basic option parsing. These options are (a) specific to +# the libtool wrapper, (b) are identical between the wrapper +# /script/ and the wrapper /executable/ which is used only on +# windows platforms, and (c) all begin with the string "--lt-" +# (application programs are unlikely to have options which match +# this pattern). +# +# There are only two supported options: --lt-debug and +# --lt-dump-script. There is, deliberately, no --lt-help. +# +# The first argument to this parsing function should be the +# script's $0 value, followed by "$@". +lt_option_debug= +func_parse_lt_options () +{ + lt_script_arg0=\$0 + shift + for lt_opt + do + case \"\$lt_opt\" in + --lt-debug) lt_option_debug=1 ;; + --lt-dump-script) + lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` + test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. + lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` + cat \"\$lt_dump_D/\$lt_dump_F\" + exit 0 + ;; + --lt-*) + \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 + exit 1 + ;; + esac + done + + # Print the debug banner immediately: + if test -n \"\$lt_option_debug\"; then + echo \"${outputname}:${output}:\${LINENO}: libtool wrapper (GNU $PACKAGE$TIMESTAMP) $VERSION\" 1>&2 + fi +} + +# Used when --lt-debug. Prints its arguments to stdout +# (redirection is the responsibility of the caller) +func_lt_dump_args () +{ + lt_dump_args_N=1; + for lt_arg + do + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[\$lt_dump_args_N]: \$lt_arg\" + lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` + done +} + +# Core function for launching the target application +func_exec_program_core () +{ +" + case $host in + # Backslashes separate directories on plain windows + *-*-mingw | *-*-os2* | *-cegcc*) + $ECHO "\ + if test -n \"\$lt_option_debug\"; then + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir\\\\\$program\" 1>&2 + func_lt_dump_args \${1+\"\$@\"} 1>&2 + fi + exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} +" + ;; + + *) + $ECHO "\ + if test -n \"\$lt_option_debug\"; then + \$ECHO \"${outputname}:${output}:\${LINENO}: newargv[0]: \$progdir/\$program\" 1>&2 + func_lt_dump_args \${1+\"\$@\"} 1>&2 + fi + exec \"\$progdir/\$program\" \${1+\"\$@\"} +" + ;; + esac + $ECHO "\ + \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 + exit 1 +} + +# A function to encapsulate launching the target application +# Strips options in the --lt-* namespace from \$@ and +# launches target application with the remaining arguments. +func_exec_program () +{ + case \" \$* \" in + *\\ --lt-*) + for lt_wr_arg + do + case \$lt_wr_arg in + --lt-*) ;; + *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; + esac + shift + done ;; + esac + func_exec_program_core \${1+\"\$@\"} +} + + # Parse options + func_parse_lt_options \"\$0\" \${1+\"\$@\"} + + # Find the directory that this script lives in. + thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` + test \"x\$thisdir\" = \"x\$file\" && thisdir=. + + # Follow symbolic links until we get to the real thisdir. + file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` + while test -n \"\$file\"; do + destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` + + # If there was a directory component, then change thisdir. + if test \"x\$destdir\" != \"x\$file\"; then + case \"\$destdir\" in + [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; + *) thisdir=\"\$thisdir/\$destdir\" ;; + esac + fi + + file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` + file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` + done + + # Usually 'no', except on cygwin/mingw when embedded into + # the cwrapper. + WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 + if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then + # special case for '.' + if test \"\$thisdir\" = \".\"; then + thisdir=\`pwd\` + fi + # remove .libs from thisdir + case \"\$thisdir\" in + *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; + $objdir ) thisdir=. ;; + esac + fi + + # Try to get the absolute directory name. + absdir=\`cd \"\$thisdir\" && pwd\` + test -n \"\$absdir\" && thisdir=\"\$absdir\" +" + + if test "$fast_install" = yes; then + $ECHO "\ + program=lt-'$outputname'$exeext + progdir=\"\$thisdir/$objdir\" + + if test ! -f \"\$progdir/\$program\" || + { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ + test \"X\$file\" != \"X\$progdir/\$program\"; }; then + + file=\"\$\$-\$program\" + + if test ! -d \"\$progdir\"; then + $MKDIR \"\$progdir\" + else + $RM \"\$progdir/\$file\" + fi" + + $ECHO "\ + + # relink executable if necessary + if test -n \"\$relink_command\"; then + if relink_command_output=\`eval \$relink_command 2>&1\`; then : + else + $ECHO \"\$relink_command_output\" >&2 + $RM \"\$progdir/\$file\" + exit 1 + fi + fi + + $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || + { $RM \"\$progdir/\$program\"; + $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } + $RM \"\$progdir/\$file\" + fi" + else + $ECHO "\ + program='$outputname' + progdir=\"\$thisdir/$objdir\" +" + fi + + $ECHO "\ + + if test -f \"\$progdir/\$program\"; then" + + # fixup the dll searchpath if we need to. + # + # Fix the DLL searchpath if we need to. Do this before prepending + # to shlibpath, because on Windows, both are PATH and uninstalled + # libraries must come first. + if test -n "$dllsearchpath"; then + $ECHO "\ + # Add the dll search path components to the executable PATH + PATH=$dllsearchpath:\$PATH +" + fi + + # Export our shlibpath_var if we have one. + if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then + $ECHO "\ + # Add our own library path to $shlibpath_var + $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" + + # Some systems cannot cope with colon-terminated $shlibpath_var + # The second colon is a workaround for a bug in BeOS R4 sed + $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` + + export $shlibpath_var +" + fi + + $ECHO "\ + if test \"\$libtool_execute_magic\" != \"$magic\"; then + # Run the actual program with our arguments. + func_exec_program \${1+\"\$@\"} + fi + else + # The program doesn't exist. + \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 + \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 + \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 + exit 1 + fi +fi\ +" +} + + +# func_emit_cwrapperexe_src +# emit the source code for a wrapper executable on stdout +# Must ONLY be called from within func_mode_link because +# it depends on a number of variable set therein. +func_emit_cwrapperexe_src () +{ + cat < +#include +#ifdef _MSC_VER +# include +# include +# include +#else +# include +# include +# ifdef __CYGWIN__ +# include +# endif +#endif +#include +#include +#include +#include +#include +#include +#include +#include + +/* declarations of non-ANSI functions */ +#if defined(__MINGW32__) +# ifdef __STRICT_ANSI__ +int _putenv (const char *); +# endif +#elif defined(__CYGWIN__) +# ifdef __STRICT_ANSI__ +char *realpath (const char *, char *); +int putenv (char *); +int setenv (const char *, const char *, int); +# endif +/* #elif defined (other platforms) ... */ +#endif + +/* portability defines, excluding path handling macros */ +#if defined(_MSC_VER) +# define setmode _setmode +# define stat _stat +# define chmod _chmod +# define getcwd _getcwd +# define putenv _putenv +# define S_IXUSR _S_IEXEC +# ifndef _INTPTR_T_DEFINED +# define _INTPTR_T_DEFINED +# define intptr_t int +# endif +#elif defined(__MINGW32__) +# define setmode _setmode +# define stat _stat +# define chmod _chmod +# define getcwd _getcwd +# define putenv _putenv +#elif defined(__CYGWIN__) +# define HAVE_SETENV +# define FOPEN_WB "wb" +/* #elif defined (other platforms) ... */ +#endif + +#if defined(PATH_MAX) +# define LT_PATHMAX PATH_MAX +#elif defined(MAXPATHLEN) +# define LT_PATHMAX MAXPATHLEN +#else +# define LT_PATHMAX 1024 +#endif + +#ifndef S_IXOTH +# define S_IXOTH 0 +#endif +#ifndef S_IXGRP +# define S_IXGRP 0 +#endif + +/* path handling portability macros */ +#ifndef DIR_SEPARATOR +# define DIR_SEPARATOR '/' +# define PATH_SEPARATOR ':' +#endif + +#if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ + defined (__OS2__) +# define HAVE_DOS_BASED_FILE_SYSTEM +# define FOPEN_WB "wb" +# ifndef DIR_SEPARATOR_2 +# define DIR_SEPARATOR_2 '\\' +# endif +# ifndef PATH_SEPARATOR_2 +# define PATH_SEPARATOR_2 ';' +# endif +#endif + +#ifndef DIR_SEPARATOR_2 +# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) +#else /* DIR_SEPARATOR_2 */ +# define IS_DIR_SEPARATOR(ch) \ + (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) +#endif /* DIR_SEPARATOR_2 */ + +#ifndef PATH_SEPARATOR_2 +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) +#else /* PATH_SEPARATOR_2 */ +# define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) +#endif /* PATH_SEPARATOR_2 */ + +#ifndef FOPEN_WB +# define FOPEN_WB "w" +#endif +#ifndef _O_BINARY +# define _O_BINARY 0 +#endif + +#define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) +#define XFREE(stale) do { \ + if (stale) { free ((void *) stale); stale = 0; } \ +} while (0) + +#if defined(LT_DEBUGWRAPPER) +static int lt_debug = 1; +#else +static int lt_debug = 0; +#endif + +const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ + +void *xmalloc (size_t num); +char *xstrdup (const char *string); +const char *base_name (const char *name); +char *find_executable (const char *wrapper); +char *chase_symlinks (const char *pathspec); +int make_executable (const char *path); +int check_executable (const char *path); +char *strendzap (char *str, const char *pat); +void lt_debugprintf (const char *file, int line, const char *fmt, ...); +void lt_fatal (const char *file, int line, const char *message, ...); +static const char *nonnull (const char *s); +static const char *nonempty (const char *s); +void lt_setenv (const char *name, const char *value); +char *lt_extend_str (const char *orig_value, const char *add, int to_end); +void lt_update_exe_path (const char *name, const char *value); +void lt_update_lib_path (const char *name, const char *value); +char **prepare_spawn (char **argv); +void lt_dump_script (FILE *f); +EOF + + cat <= 0) + && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) + return 1; + else + return 0; +} + +int +make_executable (const char *path) +{ + int rval = 0; + struct stat st; + + lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", + nonempty (path)); + if ((!path) || (!*path)) + return 0; + + if (stat (path, &st) >= 0) + { + rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); + } + return rval; +} + +/* Searches for the full path of the wrapper. Returns + newly allocated full path name if found, NULL otherwise + Does not chase symlinks, even on platforms that support them. +*/ +char * +find_executable (const char *wrapper) +{ + int has_slash = 0; + const char *p; + const char *p_next; + /* static buffer for getcwd */ + char tmp[LT_PATHMAX + 1]; + int tmp_len; + char *concat_name; + + lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", + nonempty (wrapper)); + + if ((wrapper == NULL) || (*wrapper == '\0')) + return NULL; + + /* Absolute path? */ +#if defined (HAVE_DOS_BASED_FILE_SYSTEM) + if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + else + { +#endif + if (IS_DIR_SEPARATOR (wrapper[0])) + { + concat_name = xstrdup (wrapper); + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } +#if defined (HAVE_DOS_BASED_FILE_SYSTEM) + } +#endif + + for (p = wrapper; *p; p++) + if (*p == '/') + { + has_slash = 1; + break; + } + if (!has_slash) + { + /* no slashes; search PATH */ + const char *path = getenv ("PATH"); + if (path != NULL) + { + for (p = path; *p; p = p_next) + { + const char *q; + size_t p_len; + for (q = p; *q; q++) + if (IS_PATH_SEPARATOR (*q)) + break; + p_len = q - p; + p_next = (*q == '\0' ? q : q + 1); + if (p_len == 0) + { + /* empty path: current directory */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", + nonnull (strerror (errno))); + tmp_len = strlen (tmp); + concat_name = + XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + } + else + { + concat_name = + XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, p, p_len); + concat_name[p_len] = '/'; + strcpy (concat_name + p_len + 1, wrapper); + } + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + } + } + /* not found in PATH; assume curdir */ + } + /* Relative path | not found in path: prepend cwd */ + if (getcwd (tmp, LT_PATHMAX) == NULL) + lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", + nonnull (strerror (errno))); + tmp_len = strlen (tmp); + concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); + memcpy (concat_name, tmp, tmp_len); + concat_name[tmp_len] = '/'; + strcpy (concat_name + tmp_len + 1, wrapper); + + if (check_executable (concat_name)) + return concat_name; + XFREE (concat_name); + return NULL; +} + +char * +chase_symlinks (const char *pathspec) +{ +#ifndef S_ISLNK + return xstrdup (pathspec); +#else + char buf[LT_PATHMAX]; + struct stat s; + char *tmp_pathspec = xstrdup (pathspec); + char *p; + int has_symlinks = 0; + while (strlen (tmp_pathspec) && !has_symlinks) + { + lt_debugprintf (__FILE__, __LINE__, + "checking path component for symlinks: %s\n", + tmp_pathspec); + if (lstat (tmp_pathspec, &s) == 0) + { + if (S_ISLNK (s.st_mode) != 0) + { + has_symlinks = 1; + break; + } + + /* search backwards for last DIR_SEPARATOR */ + p = tmp_pathspec + strlen (tmp_pathspec) - 1; + while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + p--; + if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) + { + /* no more DIR_SEPARATORS left */ + break; + } + *p = '\0'; + } + else + { + lt_fatal (__FILE__, __LINE__, + "error accessing file \"%s\": %s", + tmp_pathspec, nonnull (strerror (errno))); + } + } + XFREE (tmp_pathspec); + + if (!has_symlinks) + { + return xstrdup (pathspec); + } + + tmp_pathspec = realpath (pathspec, buf); + if (tmp_pathspec == 0) + { + lt_fatal (__FILE__, __LINE__, + "could not follow symlinks for %s", pathspec); + } + return xstrdup (tmp_pathspec); +#endif +} + +char * +strendzap (char *str, const char *pat) +{ + size_t len, patlen; + + assert (str != NULL); + assert (pat != NULL); + + len = strlen (str); + patlen = strlen (pat); + + if (patlen <= len) + { + str += len - patlen; + if (strcmp (str, pat) == 0) + *str = '\0'; + } + return str; +} + +void +lt_debugprintf (const char *file, int line, const char *fmt, ...) +{ + va_list args; + if (lt_debug) + { + (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); + va_start (args, fmt); + (void) vfprintf (stderr, fmt, args); + va_end (args); + } +} + +static void +lt_error_core (int exit_status, const char *file, + int line, const char *mode, + const char *message, va_list ap) +{ + fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); + vfprintf (stderr, message, ap); + fprintf (stderr, ".\n"); + + if (exit_status >= 0) + exit (exit_status); +} + +void +lt_fatal (const char *file, int line, const char *message, ...) +{ + va_list ap; + va_start (ap, message); + lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); + va_end (ap); +} + +static const char * +nonnull (const char *s) +{ + return s ? s : "(null)"; +} + +static const char * +nonempty (const char *s) +{ + return (s && !*s) ? "(empty)" : nonnull (s); +} + +void +lt_setenv (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_setenv) setting '%s' to '%s'\n", + nonnull (name), nonnull (value)); + { +#ifdef HAVE_SETENV + /* always make a copy, for consistency with !HAVE_SETENV */ + char *str = xstrdup (value); + setenv (name, str, 1); +#else + int len = strlen (name) + 1 + strlen (value) + 1; + char *str = XMALLOC (char, len); + sprintf (str, "%s=%s", name, value); + if (putenv (str) != EXIT_SUCCESS) + { + XFREE (str); + } +#endif + } +} + +char * +lt_extend_str (const char *orig_value, const char *add, int to_end) +{ + char *new_value; + if (orig_value && *orig_value) + { + int orig_value_len = strlen (orig_value); + int add_len = strlen (add); + new_value = XMALLOC (char, add_len + orig_value_len + 1); + if (to_end) + { + strcpy (new_value, orig_value); + strcpy (new_value + orig_value_len, add); + } + else + { + strcpy (new_value, add); + strcpy (new_value + add_len, orig_value); + } + } + else + { + new_value = xstrdup (add); + } + return new_value; +} + +void +lt_update_exe_path (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", + nonnull (name), nonnull (value)); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + /* some systems can't cope with a ':'-terminated path #' */ + int len = strlen (new_value); + while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1])) + { + new_value[len-1] = '\0'; + } + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +void +lt_update_lib_path (const char *name, const char *value) +{ + lt_debugprintf (__FILE__, __LINE__, + "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", + nonnull (name), nonnull (value)); + + if (name && *name && value && *value) + { + char *new_value = lt_extend_str (getenv (name), value, 0); + lt_setenv (name, new_value); + XFREE (new_value); + } +} + +EOF + case $host_os in + mingw*) + cat <<"EOF" + +/* Prepares an argument vector before calling spawn(). + Note that spawn() does not by itself call the command interpreter + (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : + ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); + GetVersionEx(&v); + v.dwPlatformId == VER_PLATFORM_WIN32_NT; + }) ? "cmd.exe" : "command.com"). + Instead it simply concatenates the arguments, separated by ' ', and calls + CreateProcess(). We must quote the arguments since Win32 CreateProcess() + interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a + special way: + - Space and tab are interpreted as delimiters. They are not treated as + delimiters if they are surrounded by double quotes: "...". + - Unescaped double quotes are removed from the input. Their only effect is + that within double quotes, space and tab are treated like normal + characters. + - Backslashes not followed by double quotes are not special. + - But 2*n+1 backslashes followed by a double quote become + n backslashes followed by a double quote (n >= 0): + \" -> " + \\\" -> \" + \\\\\" -> \\" + */ +#define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" +#define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" +char ** +prepare_spawn (char **argv) +{ + size_t argc; + char **new_argv; + size_t i; + + /* Count number of arguments. */ + for (argc = 0; argv[argc] != NULL; argc++) + ; + + /* Allocate new argument vector. */ + new_argv = XMALLOC (char *, argc + 1); + + /* Put quoted arguments into the new argument vector. */ + for (i = 0; i < argc; i++) + { + const char *string = argv[i]; + + if (string[0] == '\0') + new_argv[i] = xstrdup ("\"\""); + else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) + { + int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); + size_t length; + unsigned int backslashes; + const char *s; + char *quoted_string; + char *p; + + length = 0; + backslashes = 0; + if (quote_around) + length++; + for (s = string; *s != '\0'; s++) + { + char c = *s; + if (c == '"') + length += backslashes + 1; + length++; + if (c == '\\') + backslashes++; + else + backslashes = 0; + } + if (quote_around) + length += backslashes + 1; + + quoted_string = XMALLOC (char, length + 1); + + p = quoted_string; + backslashes = 0; + if (quote_around) + *p++ = '"'; + for (s = string; *s != '\0'; s++) + { + char c = *s; + if (c == '"') + { + unsigned int j; + for (j = backslashes + 1; j > 0; j--) + *p++ = '\\'; + } + *p++ = c; + if (c == '\\') + backslashes++; + else + backslashes = 0; + } + if (quote_around) + { + unsigned int j; + for (j = backslashes; j > 0; j--) + *p++ = '\\'; + *p++ = '"'; + } + *p = '\0'; + + new_argv[i] = quoted_string; + } + else + new_argv[i] = (char *) string; + } + new_argv[argc] = NULL; + + return new_argv; +} +EOF + ;; + esac + + cat <<"EOF" +void lt_dump_script (FILE* f) +{ +EOF + func_emit_wrapper yes | + $SED -n -e ' +s/^\(.\{79\}\)\(..*\)/\1\ +\2/ +h +s/\([\\"]\)/\\\1/g +s/$/\\n/ +s/\([^\n]*\).*/ fputs ("\1", f);/p +g +D' + cat <<"EOF" +} +EOF +} +# end: func_emit_cwrapperexe_src + +# func_win32_import_lib_p ARG +# True if ARG is an import lib, as indicated by $file_magic_cmd +func_win32_import_lib_p () +{ + $opt_debug + case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in + *import*) : ;; + *) false ;; + esac +} + +# func_mode_link arg... +func_mode_link () +{ + $opt_debug + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + # It is impossible to link a dll without this setting, and + # we shouldn't force the makefile maintainer to figure out + # which system we are compiling for in order to pass an extra + # flag for every libtool invocation. + # allow_undefined=no + + # FIXME: Unfortunately, there are problems with the above when trying + # to make a dll which has undefined symbols, in which case not + # even a static library is built. For now, we need to specify + # -no-undefined on the libtool link line when we can be certain + # that all symbols are satisfied, otherwise we get a static library. + allow_undefined=yes + ;; + *) + allow_undefined=yes + ;; + esac + libtool_args=$nonopt + base_compile="$nonopt $@" + compile_command=$nonopt + finalize_command=$nonopt + + compile_rpath= + finalize_rpath= + compile_shlibpath= + finalize_shlibpath= + convenience= + old_convenience= + deplibs= + old_deplibs= + compiler_flags= + linker_flags= + dllsearchpath= + lib_search_path=`pwd` + inst_prefix_dir= + new_inherited_linker_flags= + + avoid_version=no + bindir= + dlfiles= + dlprefiles= + dlself=no + export_dynamic=no + export_symbols= + export_symbols_regex= + generated= + libobjs= + ltlibs= + module=no + no_install=no + objs= + non_pic_objects= + precious_files_regex= + prefer_static_libs=no + preload=no + prev= + prevarg= + release= + rpath= + xrpath= + perm_rpath= + temp_rpath= + thread_safe=no + vinfo= + vinfo_number=no + weak_libs= + single_module="${wl}-single_module" + func_infer_tag $base_compile + + # We need to know -static, to get the right output filenames. + for arg + do + case $arg in + -shared) + test "$build_libtool_libs" != yes && \ + func_fatal_configuration "can not build a shared library" + build_old_libs=no + break + ;; + -all-static | -static | -static-libtool-libs) + case $arg in + -all-static) + if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then + func_warning "complete static linking is impossible in this configuration" + fi + if test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + -static) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=built + ;; + -static-libtool-libs) + if test -z "$pic_flag" && test -n "$link_static_flag"; then + dlopen_self=$dlopen_self_static + fi + prefer_static_libs=yes + ;; + esac + build_libtool_libs=no + build_old_libs=yes + break + ;; + esac + done + + # See if our shared archives depend on static archives. + test -n "$old_archive_from_new_cmds" && build_old_libs=yes + + # Go through the arguments, transforming them on the way. + while test "$#" -gt 0; do + arg="$1" + shift + func_quote_for_eval "$arg" + qarg=$func_quote_for_eval_unquoted_result + func_append libtool_args " $func_quote_for_eval_result" + + # If the previous option needs an argument, assign it. + if test -n "$prev"; then + case $prev in + output) + func_append compile_command " @OUTPUT@" + func_append finalize_command " @OUTPUT@" + ;; + esac + + case $prev in + bindir) + bindir="$arg" + prev= + continue + ;; + dlfiles|dlprefiles) + if test "$preload" = no; then + # Add the symbol object into the linking commands. + func_append compile_command " @SYMFILE@" + func_append finalize_command " @SYMFILE@" + preload=yes + fi + case $arg in + *.la | *.lo) ;; # We handle these cases below. + force) + if test "$dlself" = no; then + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + self) + if test "$prev" = dlprefiles; then + dlself=yes + elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then + dlself=yes + else + dlself=needless + export_dynamic=yes + fi + prev= + continue + ;; + *) + if test "$prev" = dlfiles; then + func_append dlfiles " $arg" + else + func_append dlprefiles " $arg" + fi + prev= + continue + ;; + esac + ;; + expsyms) + export_symbols="$arg" + test -f "$arg" \ + || func_fatal_error "symbol file \`$arg' does not exist" + prev= + continue + ;; + expsyms_regex) + export_symbols_regex="$arg" + prev= + continue + ;; + framework) + case $host in + *-*-darwin*) + case "$deplibs " in + *" $qarg.ltframework "*) ;; + *) func_append deplibs " $qarg.ltframework" # this is fixed later + ;; + esac + ;; + esac + prev= + continue + ;; + inst_prefix) + inst_prefix_dir="$arg" + prev= + continue + ;; + objectlist) + if test -f "$arg"; then + save_arg=$arg + moreargs= + for fil in `cat "$save_arg"` + do +# func_append moreargs " $fil" + arg=$fil + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test "$pic_object" = none && + test "$non_pic_object" = none; then + func_fatal_error "cannot find name of object for \`$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + if test "$pic_object" != none; then + # Prepend the subdirectory the object is found in. + pic_object="$xdir$pic_object" + + if test "$prev" = dlfiles; then + if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + func_append dlfiles " $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test "$prev" = dlprefiles; then + # Preload the old-style object. + func_append dlprefiles " $pic_object" + prev= + fi + + # A PIC object. + func_append libobjs " $pic_object" + arg="$pic_object" + fi + + # Non-PIC object. + if test "$non_pic_object" != none; then + # Prepend the subdirectory the object is found in. + non_pic_object="$xdir$non_pic_object" + + # A standard non-PIC object + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test "$pic_object" = none ; then + arg="$non_pic_object" + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object="$pic_object" + func_append non_pic_objects " $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "\`$arg' is not a valid libtool object" + fi + fi + done + else + func_fatal_error "link input file \`$arg' does not exist" + fi + arg=$save_arg + prev= + continue + ;; + precious_regex) + precious_files_regex="$arg" + prev= + continue + ;; + release) + release="-$arg" + prev= + continue + ;; + rpath | xrpath) + # We need an absolute path. + case $arg in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + if test "$prev" = rpath; then + case "$rpath " in + *" $arg "*) ;; + *) func_append rpath " $arg" ;; + esac + else + case "$xrpath " in + *" $arg "*) ;; + *) func_append xrpath " $arg" ;; + esac + fi + prev= + continue + ;; + shrext) + shrext_cmds="$arg" + prev= + continue + ;; + weak) + func_append weak_libs " $arg" + prev= + continue + ;; + xcclinker) + func_append linker_flags " $qarg" + func_append compiler_flags " $qarg" + prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" + continue + ;; + xcompiler) + func_append compiler_flags " $qarg" + prev= + func_append compile_command " $qarg" + func_append finalize_command " $qarg" + continue + ;; + xlinker) + func_append linker_flags " $qarg" + func_append compiler_flags " $wl$qarg" + prev= + func_append compile_command " $wl$qarg" + func_append finalize_command " $wl$qarg" + continue + ;; + *) + eval "$prev=\"\$arg\"" + prev= + continue + ;; + esac + fi # test -n "$prev" + + prevarg="$arg" + + case $arg in + -all-static) + if test -n "$link_static_flag"; then + # See comment for -static flag below, for more details. + func_append compile_command " $link_static_flag" + func_append finalize_command " $link_static_flag" + fi + continue + ;; + + -allow-undefined) + # FIXME: remove this flag sometime in the future. + func_fatal_error "\`-allow-undefined' must not be used because it is the default" + ;; + + -avoid-version) + avoid_version=yes + continue + ;; + + -bindir) + prev=bindir + continue + ;; + + -dlopen) + prev=dlfiles + continue + ;; + + -dlpreopen) + prev=dlprefiles + continue + ;; + + -export-dynamic) + export_dynamic=yes + continue + ;; + + -export-symbols | -export-symbols-regex) + if test -n "$export_symbols" || test -n "$export_symbols_regex"; then + func_fatal_error "more than one -exported-symbols argument is not allowed" + fi + if test "X$arg" = "X-export-symbols"; then + prev=expsyms + else + prev=expsyms_regex + fi + continue + ;; + + -framework) + prev=framework + continue + ;; + + -inst-prefix-dir) + prev=inst_prefix + continue + ;; + + # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* + # so, if we see these flags be careful not to treat them like -L + -L[A-Z][A-Z]*:*) + case $with_gcc/$host in + no/*-*-irix* | /*-*-irix*) + func_append compile_command " $arg" + func_append finalize_command " $arg" + ;; + esac + continue + ;; + + -L*) + func_stripname "-L" '' "$arg" + if test -z "$func_stripname_result"; then + if test "$#" -gt 0; then + func_fatal_error "require no space between \`-L' and \`$1'" + else + func_fatal_error "need path for \`-L' option" + fi + fi + func_resolve_sysroot "$func_stripname_result" + dir=$func_resolve_sysroot_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + *) + absdir=`cd "$dir" && pwd` + test -z "$absdir" && \ + func_fatal_error "cannot determine absolute directory name of \`$dir'" + dir="$absdir" + ;; + esac + case "$deplibs " in + *" -L$dir "* | *" $arg "*) + # Will only happen for absolute or sysroot arguments + ;; + *) + # Preserve sysroot, but never include relative directories + case $dir in + [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; + *) func_append deplibs " -L$dir" ;; + esac + func_append lib_search_path " $dir" + ;; + esac + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$dir:"*) ;; + ::) dllsearchpath=$dir;; + *) func_append dllsearchpath ":$dir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; + *) func_append dllsearchpath ":$testbindir";; + esac + ;; + esac + continue + ;; + + -l*) + if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) + # These systems don't actually have a C or math library (as such) + continue + ;; + *-*-os2*) + # These systems don't actually have a C library (as such) + test "X$arg" = "X-lc" && continue + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc due to us having libc/libc_r. + test "X$arg" = "X-lc" && continue + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C and math libraries are in the System framework + func_append deplibs " System.ltframework" + continue + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + test "X$arg" = "X-lc" && continue + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + test "X$arg" = "X-lc" && continue + ;; + esac + elif test "X$arg" = "X-lc_r"; then + case $host in + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc_r directly, use -pthread flag. + continue + ;; + esac + fi + func_append deplibs " $arg" + continue + ;; + + -module) + module=yes + continue + ;; + + # Tru64 UNIX uses -model [arg] to determine the layout of C++ + # classes, name mangling, and exception handling. + # Darwin uses the -arch flag to determine output architecture. + -model|-arch|-isysroot|--sysroot) + func_append compiler_flags " $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + prev=xcompiler + continue + ;; + + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + func_append compiler_flags " $arg" + func_append compile_command " $arg" + func_append finalize_command " $arg" + case "$new_inherited_linker_flags " in + *" $arg "*) ;; + * ) func_append new_inherited_linker_flags " $arg" ;; + esac + continue + ;; + + -multi_module) + single_module="${wl}-multi_module" + continue + ;; + + -no-fast-install) + fast_install=no + continue + ;; + + -no-install) + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) + # The PATH hackery in wrapper scripts is required on Windows + # and Darwin in order for the loader to find any dlls it needs. + func_warning "\`-no-install' is ignored for $host" + func_warning "assuming \`-no-fast-install' instead" + fast_install=no + ;; + *) no_install=yes ;; + esac + continue + ;; + + -no-undefined) + allow_undefined=no + continue + ;; + + -objectlist) + prev=objectlist + continue + ;; + + -o) prev=output ;; + + -precious-files-regex) + prev=precious_regex + continue + ;; + + -release) + prev=release + continue + ;; + + -rpath) + prev=rpath + continue + ;; + + -R) + prev=xrpath + continue + ;; + + -R*) + func_stripname '-R' '' "$arg" + dir=$func_stripname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) ;; + =*) + func_stripname '=' '' "$dir" + dir=$lt_sysroot$func_stripname_result + ;; + *) + func_fatal_error "only absolute run-paths are allowed" + ;; + esac + case "$xrpath " in + *" $dir "*) ;; + *) func_append xrpath " $dir" ;; + esac + continue + ;; + + -shared) + # The effects of -shared are defined in a previous loop. + continue + ;; + + -shrext) + prev=shrext + continue + ;; + + -static | -static-libtool-libs) + # The effects of -static are defined in a previous loop. + # We used to do the same as -all-static on platforms that + # didn't have a PIC flag, but the assumption that the effects + # would be equivalent was wrong. It would break on at least + # Digital Unix and AIX. + continue + ;; + + -thread-safe) + thread_safe=yes + continue + ;; + + -version-info) + prev=vinfo + continue + ;; + + -version-number) + prev=vinfo + vinfo_number=yes + continue + ;; + + -weak) + prev=weak + continue + ;; + + -Wc,*) + func_stripname '-Wc,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs="$IFS"; IFS=',' + for flag in $args; do + IFS="$save_ifs" + func_quote_for_eval "$flag" + func_append arg " $func_quote_for_eval_result" + func_append compiler_flags " $func_quote_for_eval_result" + done + IFS="$save_ifs" + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Wl,*) + func_stripname '-Wl,' '' "$arg" + args=$func_stripname_result + arg= + save_ifs="$IFS"; IFS=',' + for flag in $args; do + IFS="$save_ifs" + func_quote_for_eval "$flag" + func_append arg " $wl$func_quote_for_eval_result" + func_append compiler_flags " $wl$func_quote_for_eval_result" + func_append linker_flags " $func_quote_for_eval_result" + done + IFS="$save_ifs" + func_stripname ' ' '' "$arg" + arg=$func_stripname_result + ;; + + -Xcompiler) + prev=xcompiler + continue + ;; + + -Xlinker) + prev=xlinker + continue + ;; + + -XCClinker) + prev=xcclinker + continue + ;; + + # -msg_* for osf cc + -msg_*) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + + # Flags to be passed through unchanged, with rationale: + # -64, -mips[0-9] enable 64-bit mode for the SGI compiler + # -r[0-9][0-9]* specify processor for the SGI compiler + # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler + # +DA*, +DD* enable 64-bit mode for the HP compiler + # -q* compiler args for the IBM compiler + # -m*, -t[45]*, -txscale* architecture-specific flags for GCC + # -F/path path to uninstalled frameworks, gcc on darwin + # -p, -pg, --coverage, -fprofile-* profiling flags for GCC + # @file GCC response files + # -tp=* Portland pgcc target processor selection + # --sysroot=* for sysroot support + # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization + -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ + -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ + -O*|-flto*|-fwhopr*|-fuse-linker-plugin) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + func_append compile_command " $arg" + func_append finalize_command " $arg" + func_append compiler_flags " $arg" + continue + ;; + + # Some other compiler flag. + -* | +*) + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + + *.$objext) + # A standard object. + func_append objs " $arg" + ;; + + *.lo) + # A libtool-controlled object. + + # Check to see that this really is a libtool object. + if func_lalib_unsafe_p "$arg"; then + pic_object= + non_pic_object= + + # Read the .lo file + func_source "$arg" + + if test -z "$pic_object" || + test -z "$non_pic_object" || + test "$pic_object" = none && + test "$non_pic_object" = none; then + func_fatal_error "cannot find name of object for \`$arg'" + fi + + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + if test "$pic_object" != none; then + # Prepend the subdirectory the object is found in. + pic_object="$xdir$pic_object" + + if test "$prev" = dlfiles; then + if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then + func_append dlfiles " $pic_object" + prev= + continue + else + # If libtool objects are unsupported, then we need to preload. + prev=dlprefiles + fi + fi + + # CHECK ME: I think I busted this. -Ossama + if test "$prev" = dlprefiles; then + # Preload the old-style object. + func_append dlprefiles " $pic_object" + prev= + fi + + # A PIC object. + func_append libobjs " $pic_object" + arg="$pic_object" + fi + + # Non-PIC object. + if test "$non_pic_object" != none; then + # Prepend the subdirectory the object is found in. + non_pic_object="$xdir$non_pic_object" + + # A standard non-PIC object + func_append non_pic_objects " $non_pic_object" + if test -z "$pic_object" || test "$pic_object" = none ; then + arg="$non_pic_object" + fi + else + # If the PIC object exists, use it instead. + # $xdir was prepended to $pic_object above. + non_pic_object="$pic_object" + func_append non_pic_objects " $non_pic_object" + fi + else + # Only an error if not doing a dry-run. + if $opt_dry_run; then + # Extract subdirectory from the argument. + func_dirname "$arg" "/" "" + xdir="$func_dirname_result" + + func_lo2o "$arg" + pic_object=$xdir$objdir/$func_lo2o_result + non_pic_object=$xdir$func_lo2o_result + func_append libobjs " $pic_object" + func_append non_pic_objects " $non_pic_object" + else + func_fatal_error "\`$arg' is not a valid libtool object" + fi + fi + ;; + + *.$libext) + # An archive. + func_append deplibs " $arg" + func_append old_deplibs " $arg" + continue + ;; + + *.la) + # A libtool-controlled library. + + func_resolve_sysroot "$arg" + if test "$prev" = dlfiles; then + # This library was specified with -dlopen. + func_append dlfiles " $func_resolve_sysroot_result" + prev= + elif test "$prev" = dlprefiles; then + # The library was specified with -dlpreopen. + func_append dlprefiles " $func_resolve_sysroot_result" + prev= + else + func_append deplibs " $func_resolve_sysroot_result" + fi + continue + ;; + + # Some other compiler argument. + *) + # Unknown arguments in both finalize_command and compile_command need + # to be aesthetically quoted because they are evaled later. + func_quote_for_eval "$arg" + arg="$func_quote_for_eval_result" + ;; + esac # arg + + # Now actually substitute the argument into the commands. + if test -n "$arg"; then + func_append compile_command " $arg" + func_append finalize_command " $arg" + fi + done # argument parsing loop + + test -n "$prev" && \ + func_fatal_help "the \`$prevarg' option requires an argument" + + if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then + eval arg=\"$export_dynamic_flag_spec\" + func_append compile_command " $arg" + func_append finalize_command " $arg" + fi + + oldlibs= + # calculate the name of the file, without its directory + func_basename "$output" + outputname="$func_basename_result" + libobjs_save="$libobjs" + + if test -n "$shlibpath_var"; then + # get the directories listed in $shlibpath_var + eval shlib_search_path=\`\$ECHO \"\${$shlibpath_var}\" \| \$SED \'s/:/ /g\'\` + else + shlib_search_path= + fi + eval sys_lib_search_path=\"$sys_lib_search_path_spec\" + eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" + + func_dirname "$output" "/" "" + output_objdir="$func_dirname_result$objdir" + func_to_tool_file "$output_objdir/" + tool_output_objdir=$func_to_tool_file_result + # Create the object directory. + func_mkdir_p "$output_objdir" + + # Determine the type of output + case $output in + "") + func_fatal_help "you must specify an output file" + ;; + *.$libext) linkmode=oldlib ;; + *.lo | *.$objext) linkmode=obj ;; + *.la) linkmode=lib ;; + *) linkmode=prog ;; # Anything else should be a program. + esac + + specialdeplibs= + + libs= + # Find all interdependent deplibs by searching for libraries + # that are linked more than once (e.g. -la -lb -la) + for deplib in $deplibs; do + if $opt_preserve_dup_deps ; then + case "$libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append libs " $deplib" + done + + if test "$linkmode" = lib; then + libs="$predeps $libs $compiler_lib_search_path $postdeps" + + # Compute libraries that are listed more than once in $predeps + # $postdeps and mark them as special (i.e., whose duplicates are + # not to be eliminated). + pre_post_deps= + if $opt_duplicate_compiler_generated_deps; then + for pre_post_dep in $predeps $postdeps; do + case "$pre_post_deps " in + *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; + esac + func_append pre_post_deps " $pre_post_dep" + done + fi + pre_post_deps= + fi + + deplibs= + newdependency_libs= + newlib_search_path= + need_relink=no # whether we're linking any uninstalled libtool libraries + notinst_deplibs= # not-installed libtool libraries + notinst_path= # paths that contain not-installed libtool libraries + + case $linkmode in + lib) + passes="conv dlpreopen link" + for file in $dlfiles $dlprefiles; do + case $file in + *.la) ;; + *) + func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" + ;; + esac + done + ;; + prog) + compile_deplibs= + finalize_deplibs= + alldeplibs=no + newdlfiles= + newdlprefiles= + passes="conv scan dlopen dlpreopen link" + ;; + *) passes="conv" + ;; + esac + + for pass in $passes; do + # The preopen pass in lib mode reverses $deplibs; put it back here + # so that -L comes before libs that need it for instance... + if test "$linkmode,$pass" = "lib,link"; then + ## FIXME: Find the place where the list is rebuilt in the wrong + ## order, and fix it there properly + tmp_deplibs= + for deplib in $deplibs; do + tmp_deplibs="$deplib $tmp_deplibs" + done + deplibs="$tmp_deplibs" + fi + + if test "$linkmode,$pass" = "lib,link" || + test "$linkmode,$pass" = "prog,scan"; then + libs="$deplibs" + deplibs= + fi + if test "$linkmode" = prog; then + case $pass in + dlopen) libs="$dlfiles" ;; + dlpreopen) libs="$dlprefiles" ;; + link) + libs="$deplibs %DEPLIBS%" + test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" + ;; + esac + fi + if test "$linkmode,$pass" = "lib,dlpreopen"; then + # Collect and forward deplibs of preopened libtool libs + for lib in $dlprefiles; do + # Ignore non-libtool-libs + dependency_libs= + func_resolve_sysroot "$lib" + case $lib in + *.la) func_source "$func_resolve_sysroot_result" ;; + esac + + # Collect preopened libtool deplibs, except any this library + # has declared as weak libs + for deplib in $dependency_libs; do + func_basename "$deplib" + deplib_base=$func_basename_result + case " $weak_libs " in + *" $deplib_base "*) ;; + *) func_append deplibs " $deplib" ;; + esac + done + done + libs="$dlprefiles" + fi + if test "$pass" = dlopen; then + # Collect dlpreopened libraries + save_deplibs="$deplibs" + deplibs= + fi + + for deplib in $libs; do + lib= + found=no + case $deplib in + -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ + |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + func_append compiler_flags " $deplib" + if test "$linkmode" = lib ; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) func_append new_inherited_linker_flags " $deplib" ;; + esac + fi + fi + continue + ;; + -l*) + if test "$linkmode" != lib && test "$linkmode" != prog; then + func_warning "\`-l' is ignored for archives/objects" + continue + fi + func_stripname '-l' '' "$deplib" + name=$func_stripname_result + if test "$linkmode" = lib; then + searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" + else + searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" + fi + for searchdir in $searchdirs; do + for search_ext in .la $std_shrext .so .a; do + # Search the libtool library + lib="$searchdir/lib${name}${search_ext}" + if test -f "$lib"; then + if test "$search_ext" = ".la"; then + found=yes + else + found=no + fi + break 2 + fi + done + done + if test "$found" != yes; then + # deplib doesn't seem to be a libtool library + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" + fi + continue + else # deplib is a libtool library + # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, + # We need to do some special things here, and not later. + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + case " $predeps $postdeps " in + *" $deplib "*) + if func_lalib_p "$lib"; then + library_names= + old_library= + func_source "$lib" + for l in $old_library $library_names; do + ll="$l" + done + if test "X$ll" = "X$old_library" ; then # only static version available + found=no + func_dirname "$lib" "" "." + ladir="$func_dirname_result" + lib=$ladir/$old_library + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" + fi + continue + fi + fi + ;; + *) ;; + esac + fi + fi + ;; # -l + *.ltframework) + if test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + deplibs="$deplib $deplibs" + if test "$linkmode" = lib ; then + case "$new_inherited_linker_flags " in + *" $deplib "*) ;; + * ) func_append new_inherited_linker_flags " $deplib" ;; + esac + fi + fi + continue + ;; + -L*) + case $linkmode in + lib) + deplibs="$deplib $deplibs" + test "$pass" = conv && continue + newdependency_libs="$deplib $newdependency_libs" + func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + prog) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + continue + fi + if test "$pass" = scan; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + *) + func_warning "\`-L' is ignored for archives/objects" + ;; + esac # linkmode + continue + ;; # -L + -R*) + if test "$pass" = link; then + func_stripname '-R' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + dir=$func_resolve_sysroot_result + # Make sure the xrpath contains only unique directories. + case "$xrpath " in + *" $dir "*) ;; + *) func_append xrpath " $dir" ;; + esac + fi + deplibs="$deplib $deplibs" + continue + ;; + *.la) + func_resolve_sysroot "$deplib" + lib=$func_resolve_sysroot_result + ;; + *.$libext) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + continue + fi + case $linkmode in + lib) + # Linking convenience modules into shared libraries is allowed, + # but linking other static libraries is non-portable. + case " $dlpreconveniencelibs " in + *" $deplib "*) ;; + *) + valid_a_lib=no + case $deplibs_check_method in + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ + | $EGREP "$match_pattern_regex" > /dev/null; then + valid_a_lib=yes + fi + ;; + pass_all) + valid_a_lib=yes + ;; + esac + if test "$valid_a_lib" != yes; then + echo + $ECHO "*** Warning: Trying to link with static lib archive $deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because the file extensions .$libext of this argument makes me believe" + echo "*** that it is just a static archive that I should not use here." + else + echo + $ECHO "*** Warning: Linking the shared library $output against the" + $ECHO "*** static library $deplib is not portable!" + deplibs="$deplib $deplibs" + fi + ;; + esac + continue + ;; + prog) + if test "$pass" != link; then + deplibs="$deplib $deplibs" + else + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + fi + continue + ;; + esac # linkmode + ;; # *.$libext + *.lo | *.$objext) + if test "$pass" = conv; then + deplibs="$deplib $deplibs" + elif test "$linkmode" = prog; then + if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then + # If there is no dlopen support or we're linking statically, + # we need to preload. + func_append newdlprefiles " $deplib" + compile_deplibs="$deplib $compile_deplibs" + finalize_deplibs="$deplib $finalize_deplibs" + else + func_append newdlfiles " $deplib" + fi + fi + continue + ;; + %DEPLIBS%) + alldeplibs=yes + continue + ;; + esac # case $deplib + + if test "$found" = yes || test -f "$lib"; then : + else + func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" + fi + + # Check to see that this really is a libtool archive. + func_lalib_unsafe_p "$lib" \ + || func_fatal_error "\`$lib' is not a valid libtool archive" + + func_dirname "$lib" "" "." + ladir="$func_dirname_result" + + dlname= + dlopen= + dlpreopen= + libdir= + library_names= + old_library= + inherited_linker_flags= + # If the library was installed with an old release of libtool, + # it will not redefine variables installed, or shouldnotlink + installed=yes + shouldnotlink=no + avoidtemprpath= + + + # Read the .la file + func_source "$lib" + + # Convert "-framework foo" to "foo.ltframework" + if test -n "$inherited_linker_flags"; then + tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` + for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do + case " $new_inherited_linker_flags " in + *" $tmp_inherited_linker_flag "*) ;; + *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; + esac + done + fi + dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + if test "$linkmode,$pass" = "lib,link" || + test "$linkmode,$pass" = "prog,scan" || + { test "$linkmode" != prog && test "$linkmode" != lib; }; then + test -n "$dlopen" && func_append dlfiles " $dlopen" + test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" + fi + + if test "$pass" = conv; then + # Only check for convenience libraries + deplibs="$lib $deplibs" + if test -z "$libdir"; then + if test -z "$old_library"; then + func_fatal_error "cannot find name of link library for \`$lib'" + fi + # It is a libtool convenience library, so add in its objects. + func_append convenience " $ladir/$objdir/$old_library" + func_append old_convenience " $ladir/$objdir/$old_library" + tmp_libs= + for deplib in $dependency_libs; do + deplibs="$deplib $deplibs" + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append tmp_libs " $deplib" + done + elif test "$linkmode" != prog && test "$linkmode" != lib; then + func_fatal_error "\`$lib' is not a convenience library" + fi + continue + fi # $pass = conv + + + # Get the name of the library we link against. + linklib= + if test -n "$old_library" && + { test "$prefer_static_libs" = yes || + test "$prefer_static_libs,$installed" = "built,no"; }; then + linklib=$old_library + else + for l in $old_library $library_names; do + linklib="$l" + done + fi + if test -z "$linklib"; then + func_fatal_error "cannot find name of link library for \`$lib'" + fi + + # This library was specified with -dlopen. + if test "$pass" = dlopen; then + if test -z "$libdir"; then + func_fatal_error "cannot -dlopen a convenience library: \`$lib'" + fi + if test -z "$dlname" || + test "$dlopen_support" != yes || + test "$build_libtool_libs" = no; then + # If there is no dlname, no dlopen support or we're linking + # statically, we need to preload. We also need to preload any + # dependent libraries so libltdl's deplib preloader doesn't + # bomb out in the load deplibs phase. + func_append dlprefiles " $lib $dependency_libs" + else + func_append newdlfiles " $lib" + fi + continue + fi # $pass = dlopen + + # We need an absolute path. + case $ladir in + [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; + *) + abs_ladir=`cd "$ladir" && pwd` + if test -z "$abs_ladir"; then + func_warning "cannot determine absolute directory name of \`$ladir'" + func_warning "passing it literally to the linker, although it might fail" + abs_ladir="$ladir" + fi + ;; + esac + func_basename "$lib" + laname="$func_basename_result" + + # Find the relevant object directory and library name. + if test "X$installed" = Xyes; then + if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then + func_warning "library \`$lib' was moved." + dir="$ladir" + absdir="$abs_ladir" + libdir="$abs_ladir" + else + dir="$lt_sysroot$libdir" + absdir="$lt_sysroot$libdir" + fi + test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes + else + if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then + dir="$ladir" + absdir="$abs_ladir" + # Remove this search path later + func_append notinst_path " $abs_ladir" + else + dir="$ladir/$objdir" + absdir="$abs_ladir/$objdir" + # Remove this search path later + func_append notinst_path " $abs_ladir" + fi + fi # $installed = yes + func_stripname 'lib' '.la' "$laname" + name=$func_stripname_result + + # This library was specified with -dlpreopen. + if test "$pass" = dlpreopen; then + if test -z "$libdir" && test "$linkmode" = prog; then + func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" + fi + case "$host" in + # special handling for platforms with PE-DLLs. + *cygwin* | *mingw* | *cegcc* ) + # Linker will automatically link against shared library if both + # static and shared are present. Therefore, ensure we extract + # symbols from the import library if a shared library is present + # (otherwise, the dlopen module name will be incorrect). We do + # this by putting the import library name into $newdlprefiles. + # We recover the dlopen module name by 'saving' the la file + # name in a special purpose variable, and (later) extracting the + # dlname from the la file. + if test -n "$dlname"; then + func_tr_sh "$dir/$linklib" + eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" + func_append newdlprefiles " $dir/$linklib" + else + func_append newdlprefiles " $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + func_append dlpreconveniencelibs " $dir/$old_library" + fi + ;; + * ) + # Prefer using a static library (so that no silly _DYNAMIC symbols + # are required to link). + if test -n "$old_library"; then + func_append newdlprefiles " $dir/$old_library" + # Keep a list of preopened convenience libraries to check + # that they are being used correctly in the link pass. + test -z "$libdir" && \ + func_append dlpreconveniencelibs " $dir/$old_library" + # Otherwise, use the dlname, so that lt_dlopen finds it. + elif test -n "$dlname"; then + func_append newdlprefiles " $dir/$dlname" + else + func_append newdlprefiles " $dir/$linklib" + fi + ;; + esac + fi # $pass = dlpreopen + + if test -z "$libdir"; then + # Link the convenience library + if test "$linkmode" = lib; then + deplibs="$dir/$old_library $deplibs" + elif test "$linkmode,$pass" = "prog,link"; then + compile_deplibs="$dir/$old_library $compile_deplibs" + finalize_deplibs="$dir/$old_library $finalize_deplibs" + else + deplibs="$lib $deplibs" # used for prog,scan pass + fi + continue + fi + + + if test "$linkmode" = prog && test "$pass" != link; then + func_append newlib_search_path " $ladir" + deplibs="$lib $deplibs" + + linkalldeplibs=no + if test "$link_all_deplibs" != no || test -z "$library_names" || + test "$build_libtool_libs" = no; then + linkalldeplibs=yes + fi + + tmp_libs= + for deplib in $dependency_libs; do + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result" + func_append newlib_search_path " $func_resolve_sysroot_result" + ;; + esac + # Need to link against all dependency_libs? + if test "$linkalldeplibs" = yes; then + deplibs="$deplib $deplibs" + else + # Need to hardcode shared library paths + # or/and link against static libraries + newdependency_libs="$deplib $newdependency_libs" + fi + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $deplib "*) func_append specialdeplibs " $deplib" ;; + esac + fi + func_append tmp_libs " $deplib" + done # for deplib + continue + fi # $linkmode = prog... + + if test "$linkmode,$pass" = "prog,link"; then + if test -n "$library_names" && + { { test "$prefer_static_libs" = no || + test "$prefer_static_libs,$installed" = "built,yes"; } || + test -z "$old_library"; }; then + # We need to hardcode the library path + if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then + # Make sure the rpath contains only unique directories. + case "$temp_rpath:" in + *"$absdir:"*) ;; + *) func_append temp_rpath "$absdir:" ;; + esac + fi + + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) func_append compile_rpath " $absdir" ;; + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + ;; + esac + fi # $linkmode,$pass = prog,link... + + if test "$alldeplibs" = yes && + { test "$deplibs_check_method" = pass_all || + { test "$build_libtool_libs" = yes && + test -n "$library_names"; }; }; then + # We only need to search for static libraries + continue + fi + fi + + link_static=no # Whether the deplib will be linked statically + use_static_libs=$prefer_static_libs + if test "$use_static_libs" = built && test "$installed" = yes; then + use_static_libs=no + fi + if test -n "$library_names" && + { test "$use_static_libs" = no || test -z "$old_library"; }; then + case $host in + *cygwin* | *mingw* | *cegcc*) + # No point in relinking DLLs because paths are not encoded + func_append notinst_deplibs " $lib" + need_relink=no + ;; + *) + if test "$installed" = no; then + func_append notinst_deplibs " $lib" + need_relink=yes + fi + ;; + esac + # This is a shared library + + # Warn about portability, can't link against -module's on some + # systems (darwin). Don't bleat about dlopened modules though! + dlopenmodule="" + for dlpremoduletest in $dlprefiles; do + if test "X$dlpremoduletest" = "X$lib"; then + dlopenmodule="$dlpremoduletest" + break + fi + done + if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then + echo + if test "$linkmode" = prog; then + $ECHO "*** Warning: Linking the executable $output against the loadable module" + else + $ECHO "*** Warning: Linking the shared library $output against the loadable module" + fi + $ECHO "*** $linklib is not portable!" + fi + if test "$linkmode" = lib && + test "$hardcode_into_libs" = yes; then + # Hardcode the library path. + # Skip directories that are in the system default run-time + # search path. + case " $sys_lib_dlsearch_path " in + *" $absdir "*) ;; + *) + case "$compile_rpath " in + *" $absdir "*) ;; + *) func_append compile_rpath " $absdir" ;; + esac + ;; + esac + case " $sys_lib_dlsearch_path " in + *" $libdir "*) ;; + *) + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + ;; + esac + fi + + if test -n "$old_archive_from_expsyms_cmds"; then + # figure out the soname + set dummy $library_names + shift + realname="$1" + shift + libname=`eval "\\$ECHO \"$libname_spec\""` + # use dlname if we got it. it's perfectly good, no? + if test -n "$dlname"; then + soname="$dlname" + elif test -n "$soname_spec"; then + # bleh windows + case $host in + *cygwin* | mingw* | *cegcc*) + func_arith $current - $age + major=$func_arith_result + versuffix="-$major" + ;; + esac + eval soname=\"$soname_spec\" + else + soname="$realname" + fi + + # Make a new name for the extract_expsyms_cmds to use + soroot="$soname" + func_basename "$soroot" + soname="$func_basename_result" + func_stripname 'lib' '.dll' "$soname" + newlib=libimp-$func_stripname_result.a + + # If the library has no export list, then create one now + if test -f "$output_objdir/$soname-def"; then : + else + func_verbose "extracting exported symbol list from \`$soname'" + func_execute_cmds "$extract_expsyms_cmds" 'exit $?' + fi + + # Create $newlib + if test -f "$output_objdir/$newlib"; then :; else + func_verbose "generating import library for \`$soname'" + func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' + fi + # make sure the library variables are pointing to the new library + dir=$output_objdir + linklib=$newlib + fi # test -n "$old_archive_from_expsyms_cmds" + + if test "$linkmode" = prog || test "$opt_mode" != relink; then + add_shlibpath= + add_dir= + add= + lib_linked=yes + case $hardcode_action in + immediate | unsupported) + if test "$hardcode_direct" = no; then + add="$dir/$linklib" + case $host in + *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; + *-*-sysv4*uw2*) add_dir="-L$dir" ;; + *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ + *-*-unixware7*) add_dir="-L$dir" ;; + *-*-darwin* ) + # if the lib is a (non-dlopened) module then we can not + # link against it, someone is ignoring the earlier warnings + if /usr/bin/file -L $add 2> /dev/null | + $GREP ": [^:]* bundle" >/dev/null ; then + if test "X$dlopenmodule" != "X$lib"; then + $ECHO "*** Warning: lib $linklib is a module, not a shared library" + if test -z "$old_library" ; then + echo + echo "*** And there doesn't seem to be a static archive available" + echo "*** The link will probably fail, sorry" + else + add="$dir/$old_library" + fi + elif test -n "$old_library"; then + add="$dir/$old_library" + fi + fi + esac + elif test "$hardcode_minus_L" = no; then + case $host in + *-*-sunos*) add_shlibpath="$dir" ;; + esac + add_dir="-L$dir" + add="-l$name" + elif test "$hardcode_shlibpath_var" = no; then + add_shlibpath="$dir" + add="-l$name" + else + lib_linked=no + fi + ;; + relink) + if test "$hardcode_direct" = yes && + test "$hardcode_direct_absolute" = no; then + add="$dir/$linklib" + elif test "$hardcode_minus_L" = yes; then + add_dir="-L$absdir" + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + func_append add_dir " -L$inst_prefix_dir$libdir" + ;; + esac + fi + add="-l$name" + elif test "$hardcode_shlibpath_var" = yes; then + add_shlibpath="$dir" + add="-l$name" + else + lib_linked=no + fi + ;; + *) lib_linked=no ;; + esac + + if test "$lib_linked" != yes; then + func_fatal_configuration "unsupported hardcode properties" + fi + + if test -n "$add_shlibpath"; then + case :$compile_shlibpath: in + *":$add_shlibpath:"*) ;; + *) func_append compile_shlibpath "$add_shlibpath:" ;; + esac + fi + if test "$linkmode" = prog; then + test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" + test -n "$add" && compile_deplibs="$add $compile_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + if test "$hardcode_direct" != yes && + test "$hardcode_minus_L" != yes && + test "$hardcode_shlibpath_var" = yes; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) func_append finalize_shlibpath "$libdir:" ;; + esac + fi + fi + fi + + if test "$linkmode" = prog || test "$opt_mode" = relink; then + add_shlibpath= + add_dir= + add= + # Finalize command for both is simple: just hardcode it. + if test "$hardcode_direct" = yes && + test "$hardcode_direct_absolute" = no; then + add="$libdir/$linklib" + elif test "$hardcode_minus_L" = yes; then + add_dir="-L$libdir" + add="-l$name" + elif test "$hardcode_shlibpath_var" = yes; then + case :$finalize_shlibpath: in + *":$libdir:"*) ;; + *) func_append finalize_shlibpath "$libdir:" ;; + esac + add="-l$name" + elif test "$hardcode_automatic" = yes; then + if test -n "$inst_prefix_dir" && + test -f "$inst_prefix_dir$libdir/$linklib" ; then + add="$inst_prefix_dir$libdir/$linklib" + else + add="$libdir/$linklib" + fi + else + # We cannot seem to hardcode it, guess we'll fake it. + add_dir="-L$libdir" + # Try looking first in the location we're being installed to. + if test -n "$inst_prefix_dir"; then + case $libdir in + [\\/]*) + func_append add_dir " -L$inst_prefix_dir$libdir" + ;; + esac + fi + add="-l$name" + fi + + if test "$linkmode" = prog; then + test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" + test -n "$add" && finalize_deplibs="$add $finalize_deplibs" + else + test -n "$add_dir" && deplibs="$add_dir $deplibs" + test -n "$add" && deplibs="$add $deplibs" + fi + fi + elif test "$linkmode" = prog; then + # Here we assume that one of hardcode_direct or hardcode_minus_L + # is not unsupported. This is valid on all known static and + # shared platforms. + if test "$hardcode_direct" != unsupported; then + test -n "$old_library" && linklib="$old_library" + compile_deplibs="$dir/$linklib $compile_deplibs" + finalize_deplibs="$dir/$linklib $finalize_deplibs" + else + compile_deplibs="-l$name -L$dir $compile_deplibs" + finalize_deplibs="-l$name -L$dir $finalize_deplibs" + fi + elif test "$build_libtool_libs" = yes; then + # Not a shared library + if test "$deplibs_check_method" != pass_all; then + # We're trying link a shared library against a static one + # but the system doesn't support it. + + # Just print a warning and add the library to dependency_libs so + # that the program can be linked against the static library. + echo + $ECHO "*** Warning: This system can not link to static lib archive $lib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have." + if test "$module" = yes; then + echo "*** But as you try to build a module library, libtool will still create " + echo "*** a static module, that should work as long as the dlopening application" + echo "*** is linked with the -dlopen flag to resolve symbols at runtime." + if test -z "$global_symbol_pipe"; then + echo + echo "*** However, this would only work if libtool was able to extract symbol" + echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** not find such a program. So, this module is probably useless." + echo "*** \`nm' from GNU binutils and a full rebuild may help." + fi + if test "$build_old_libs" = no; then + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + else + deplibs="$dir/$old_library $deplibs" + link_static=yes + fi + fi # link shared/static library? + + if test "$linkmode" = lib; then + if test -n "$dependency_libs" && + { test "$hardcode_into_libs" != yes || + test "$build_old_libs" = yes || + test "$link_static" = yes; }; then + # Extract -R from dependency_libs + temp_deplibs= + for libdir in $dependency_libs; do + case $libdir in + -R*) func_stripname '-R' '' "$libdir" + temp_xrpath=$func_stripname_result + case " $xrpath " in + *" $temp_xrpath "*) ;; + *) func_append xrpath " $temp_xrpath";; + esac;; + *) func_append temp_deplibs " $libdir";; + esac + done + dependency_libs="$temp_deplibs" + fi + + func_append newlib_search_path " $absdir" + # Link against this library + test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" + # ... and its dependency_libs + tmp_libs= + for deplib in $dependency_libs; do + newdependency_libs="$deplib $newdependency_libs" + case $deplib in + -L*) func_stripname '-L' '' "$deplib" + func_resolve_sysroot "$func_stripname_result";; + *) func_resolve_sysroot "$deplib" ;; + esac + if $opt_preserve_dup_deps ; then + case "$tmp_libs " in + *" $func_resolve_sysroot_result "*) + func_append specialdeplibs " $func_resolve_sysroot_result" ;; + esac + fi + func_append tmp_libs " $func_resolve_sysroot_result" + done + + if test "$link_all_deplibs" != no; then + # Add the search paths of all dependency libraries + for deplib in $dependency_libs; do + path= + case $deplib in + -L*) path="$deplib" ;; + *.la) + func_resolve_sysroot "$deplib" + deplib=$func_resolve_sysroot_result + func_dirname "$deplib" "" "." + dir=$func_dirname_result + # We need an absolute path. + case $dir in + [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; + *) + absdir=`cd "$dir" && pwd` + if test -z "$absdir"; then + func_warning "cannot determine absolute directory name of \`$dir'" + absdir="$dir" + fi + ;; + esac + if $GREP "^installed=no" $deplib > /dev/null; then + case $host in + *-*-darwin*) + depdepl= + eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` + if test -n "$deplibrary_names" ; then + for tmp in $deplibrary_names ; do + depdepl=$tmp + done + if test -f "$absdir/$objdir/$depdepl" ; then + depdepl="$absdir/$objdir/$depdepl" + darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + if test -z "$darwin_install_name"; then + darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` + fi + func_append compiler_flags " ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" + func_append linker_flags " -dylib_file ${darwin_install_name}:${depdepl}" + path= + fi + fi + ;; + *) + path="-L$absdir/$objdir" + ;; + esac + else + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` + test -z "$libdir" && \ + func_fatal_error "\`$deplib' is not a valid libtool archive" + test "$absdir" != "$libdir" && \ + func_warning "\`$deplib' seems to be moved" + + path="-L$absdir" + fi + ;; + esac + case " $deplibs " in + *" $path "*) ;; + *) deplibs="$path $deplibs" ;; + esac + done + fi # link_all_deplibs != no + fi # linkmode = lib + done # for deplib in $libs + if test "$pass" = link; then + if test "$linkmode" = "prog"; then + compile_deplibs="$new_inherited_linker_flags $compile_deplibs" + finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" + else + compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + fi + fi + dependency_libs="$newdependency_libs" + if test "$pass" = dlpreopen; then + # Link the dlpreopened libraries before other libraries + for deplib in $save_deplibs; do + deplibs="$deplib $deplibs" + done + fi + if test "$pass" != dlopen; then + if test "$pass" != conv; then + # Make sure lib_search_path contains only unique directories. + lib_search_path= + for dir in $newlib_search_path; do + case "$lib_search_path " in + *" $dir "*) ;; + *) func_append lib_search_path " $dir" ;; + esac + done + newlib_search_path= + fi + + if test "$linkmode,$pass" != "prog,link"; then + vars="deplibs" + else + vars="compile_deplibs finalize_deplibs" + fi + for var in $vars dependency_libs; do + # Add libraries to $var in reverse order + eval tmp_libs=\"\$$var\" + new_libs= + for deplib in $tmp_libs; do + # FIXME: Pedantically, this is the right thing to do, so + # that some nasty dependency loop isn't accidentally + # broken: + #new_libs="$deplib $new_libs" + # Pragmatically, this seems to cause very few problems in + # practice: + case $deplib in + -L*) new_libs="$deplib $new_libs" ;; + -R*) ;; + *) + # And here is the reason: when a library appears more + # than once as an explicit dependence of a library, or + # is implicitly linked in more than once by the + # compiler, it is considered special, and multiple + # occurrences thereof are not removed. Compare this + # with having the same library being listed as a + # dependency of multiple other libraries: in this case, + # we know (pedantically, we assume) the library does not + # need to be listed more than once, so we keep only the + # last copy. This is not always right, but it is rare + # enough that we require users that really mean to play + # such unportable linking tricks to link the library + # using -Wl,-lname, so that libtool does not consider it + # for duplicate removal. + case " $specialdeplibs " in + *" $deplib "*) new_libs="$deplib $new_libs" ;; + *) + case " $new_libs " in + *" $deplib "*) ;; + *) new_libs="$deplib $new_libs" ;; + esac + ;; + esac + ;; + esac + done + tmp_libs= + for deplib in $new_libs; do + case $deplib in + -L*) + case " $tmp_libs " in + *" $deplib "*) ;; + *) func_append tmp_libs " $deplib" ;; + esac + ;; + *) func_append tmp_libs " $deplib" ;; + esac + done + eval $var=\"$tmp_libs\" + done # for var + fi + # Last step: remove runtime libs from dependency_libs + # (they stay in deplibs) + tmp_libs= + for i in $dependency_libs ; do + case " $predeps $postdeps $compiler_lib_search_path " in + *" $i "*) + i="" + ;; + esac + if test -n "$i" ; then + func_append tmp_libs " $i" + fi + done + dependency_libs=$tmp_libs + done # for pass + if test "$linkmode" = prog; then + dlfiles="$newdlfiles" + fi + if test "$linkmode" = prog || test "$linkmode" = lib; then + dlprefiles="$newdlprefiles" + fi + + case $linkmode in + oldlib) + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + func_warning "\`-dlopen' is ignored for archives" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "\`-l' and \`-L' are ignored for archives" ;; + esac + + test -n "$rpath" && \ + func_warning "\`-rpath' is ignored for archives" + + test -n "$xrpath" && \ + func_warning "\`-R' is ignored for archives" + + test -n "$vinfo" && \ + func_warning "\`-version-info/-version-number' is ignored for archives" + + test -n "$release" && \ + func_warning "\`-release' is ignored for archives" + + test -n "$export_symbols$export_symbols_regex" && \ + func_warning "\`-export-symbols' is ignored for archives" + + # Now set the variables for building old libraries. + build_libtool_libs=no + oldlibs="$output" + func_append objs "$old_deplibs" + ;; + + lib) + # Make sure we only generate libraries of the form `libNAME.la'. + case $outputname in + lib*) + func_stripname 'lib' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + ;; + *) + test "$module" = no && \ + func_fatal_help "libtool library \`$output' must begin with \`lib'" + + if test "$need_lib_prefix" != no; then + # Add the "lib" prefix for modules if required + func_stripname '' '.la' "$outputname" + name=$func_stripname_result + eval shared_ext=\"$shrext_cmds\" + eval libname=\"$libname_spec\" + else + func_stripname '' '.la' "$outputname" + libname=$func_stripname_result + fi + ;; + esac + + if test -n "$objs"; then + if test "$deplibs_check_method" != pass_all; then + func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" + else + echo + $ECHO "*** Warning: Linking the shared library $output against the non-libtool" + $ECHO "*** objects $objs is not portable!" + func_append libobjs " $objs" + fi + fi + + test "$dlself" != no && \ + func_warning "\`-dlopen self' is ignored for libtool libraries" + + set dummy $rpath + shift + test "$#" -gt 1 && \ + func_warning "ignoring multiple \`-rpath's for a libtool library" + + install_libdir="$1" + + oldlibs= + if test -z "$rpath"; then + if test "$build_libtool_libs" = yes; then + # Building a libtool convenience library. + # Some compilers have problems with a `.al' extension so + # convenience libraries should have the same extension an + # archive normally would. + oldlibs="$output_objdir/$libname.$libext $oldlibs" + build_libtool_libs=convenience + build_old_libs=yes + fi + + test -n "$vinfo" && \ + func_warning "\`-version-info/-version-number' is ignored for convenience libraries" + + test -n "$release" && \ + func_warning "\`-release' is ignored for convenience libraries" + else + + # Parse the version information argument. + save_ifs="$IFS"; IFS=':' + set dummy $vinfo 0 0 0 + shift + IFS="$save_ifs" + + test -n "$7" && \ + func_fatal_help "too many parameters to \`-version-info'" + + # convert absolute version numbers to libtool ages + # this retains compatibility with .la files and attempts + # to make the code below a bit more comprehensible + + case $vinfo_number in + yes) + number_major="$1" + number_minor="$2" + number_revision="$3" + # + # There are really only two kinds -- those that + # use the current revision as the major version + # and those that subtract age and use age as + # a minor version. But, then there is irix + # which has an extra 1 added just for fun + # + case $version_type in + # correct linux to gnu/linux during the next big refactor + darwin|linux|osf|windows|none) + func_arith $number_major + $number_minor + current=$func_arith_result + age="$number_minor" + revision="$number_revision" + ;; + freebsd-aout|freebsd-elf|qnx|sunos) + current="$number_major" + revision="$number_minor" + age="0" + ;; + irix|nonstopux) + func_arith $number_major + $number_minor + current=$func_arith_result + age="$number_minor" + revision="$number_minor" + lt_irix_increment=no + ;; + *) + func_fatal_configuration "$modename: unknown library version type \`$version_type'" + ;; + esac + ;; + no) + current="$1" + revision="$2" + age="$3" + ;; + esac + + # Check that each of the things are valid numbers. + case $current in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "CURRENT \`$current' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + case $revision in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "REVISION \`$revision' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + case $age in + 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; + *) + func_error "AGE \`$age' must be a nonnegative integer" + func_fatal_error "\`$vinfo' is not valid version information" + ;; + esac + + if test "$age" -gt "$current"; then + func_error "AGE \`$age' is greater than the current interface number \`$current'" + func_fatal_error "\`$vinfo' is not valid version information" + fi + + # Calculate the version variables. + major= + versuffix= + verstring= + case $version_type in + none) ;; + + darwin) + # Like Linux, but with the current version available in + # verstring for coding it into the library header + func_arith $current - $age + major=.$func_arith_result + versuffix="$major.$age.$revision" + # Darwin ld doesn't like 0 for these options... + func_arith $current + 1 + minor_current=$func_arith_result + xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" + verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" + ;; + + freebsd-aout) + major=".$current" + versuffix=".$current.$revision"; + ;; + + freebsd-elf) + major=".$current" + versuffix=".$current" + ;; + + irix | nonstopux) + if test "X$lt_irix_increment" = "Xno"; then + func_arith $current - $age + else + func_arith $current - $age + 1 + fi + major=$func_arith_result + + case $version_type in + nonstopux) verstring_prefix=nonstopux ;; + *) verstring_prefix=sgi ;; + esac + verstring="$verstring_prefix$major.$revision" + + # Add in all the interfaces that we are compatible with. + loop=$revision + while test "$loop" -ne 0; do + func_arith $revision - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring="$verstring_prefix$major.$iface:$verstring" + done + + # Before this point, $major must not contain `.'. + major=.$major + versuffix="$major.$revision" + ;; + + linux) # correct to gnu/linux during the next big refactor + func_arith $current - $age + major=.$func_arith_result + versuffix="$major.$age.$revision" + ;; + + osf) + func_arith $current - $age + major=.$func_arith_result + versuffix=".$current.$age.$revision" + verstring="$current.$age.$revision" + + # Add in all the interfaces that we are compatible with. + loop=$age + while test "$loop" -ne 0; do + func_arith $current - $loop + iface=$func_arith_result + func_arith $loop - 1 + loop=$func_arith_result + verstring="$verstring:${iface}.0" + done + + # Make executables depend on our current version. + func_append verstring ":${current}.0" + ;; + + qnx) + major=".$current" + versuffix=".$current" + ;; + + sunos) + major=".$current" + versuffix=".$current.$revision" + ;; + + windows) + # Use '-' rather than '.', since we only want one + # extension on DOS 8.3 filesystems. + func_arith $current - $age + major=$func_arith_result + versuffix="-$major" + ;; + + *) + func_fatal_configuration "unknown library version type \`$version_type'" + ;; + esac + + # Clear the version info if we defaulted, and they specified a release. + if test -z "$vinfo" && test -n "$release"; then + major= + case $version_type in + darwin) + # we can't check for "0.0" in archive_cmds due to quoting + # problems, so we reset it completely + verstring= + ;; + *) + verstring="0.0" + ;; + esac + if test "$need_version" = no; then + versuffix= + else + versuffix=".0.0" + fi + fi + + # Remove version info from name if versioning should be avoided + if test "$avoid_version" = yes && test "$need_version" = no; then + major= + versuffix= + verstring="" + fi + + # Check to see if the archive will have undefined symbols. + if test "$allow_undefined" = yes; then + if test "$allow_undefined_flag" = unsupported; then + func_warning "undefined symbols not allowed in $host shared libraries" + build_libtool_libs=no + build_old_libs=yes + fi + else + # Don't allow undefined symbols. + allow_undefined_flag="$no_undefined_flag" + fi + + fi + + func_generate_dlsyms "$libname" "$libname" "yes" + func_append libobjs " $symfileobj" + test "X$libobjs" = "X " && libobjs= + + if test "$opt_mode" != relink; then + # Remove our outputs, but don't remove object files since they + # may have been created when compiling PIC objects. + removelist= + tempremovelist=`$ECHO "$output_objdir/*"` + for p in $tempremovelist; do + case $p in + *.$objext | *.gcno) + ;; + $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) + if test "X$precious_files_regex" != "X"; then + if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 + then + continue + fi + fi + func_append removelist " $p" + ;; + *) ;; + esac + done + test -n "$removelist" && \ + func_show_eval "${RM}r \$removelist" + fi + + # Now set the variables for building old libraries. + if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then + func_append oldlibs " $output_objdir/$libname.$libext" + + # Transform .lo files to .o files. + oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; $lo2o" | $NL2SP` + fi + + # Eliminate all temporary directories. + #for path in $notinst_path; do + # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` + # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` + # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` + #done + + if test -n "$xrpath"; then + # If the user specified any rpath flags, then add them. + temp_xrpath= + for libdir in $xrpath; do + func_replace_sysroot "$libdir" + func_append temp_xrpath " -R$func_replace_sysroot_result" + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + done + if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then + dependency_libs="$temp_xrpath $dependency_libs" + fi + fi + + # Make sure dlfiles contains only unique files that won't be dlpreopened + old_dlfiles="$dlfiles" + dlfiles= + for lib in $old_dlfiles; do + case " $dlprefiles $dlfiles " in + *" $lib "*) ;; + *) func_append dlfiles " $lib" ;; + esac + done + + # Make sure dlprefiles contains only unique files + old_dlprefiles="$dlprefiles" + dlprefiles= + for lib in $old_dlprefiles; do + case "$dlprefiles " in + *" $lib "*) ;; + *) func_append dlprefiles " $lib" ;; + esac + done + + if test "$build_libtool_libs" = yes; then + if test -n "$rpath"; then + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) + # these systems don't actually have a c library (as such)! + ;; + *-*-rhapsody* | *-*-darwin1.[012]) + # Rhapsody C library is in the System framework + func_append deplibs " System.ltframework" + ;; + *-*-netbsd*) + # Don't link with libc until the a.out ld.so is fixed. + ;; + *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) + # Do not include libc due to us having libc/libc_r. + ;; + *-*-sco3.2v5* | *-*-sco5v6*) + # Causes problems with __ctype + ;; + *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) + # Compiler inserts libc in the correct place for threads to work + ;; + *) + # Add libc to deplibs on all other systems if necessary. + if test "$build_libtool_need_lc" = "yes"; then + func_append deplibs " -lc" + fi + ;; + esac + fi + + # Transform deplibs into only deplibs that can be linked in shared. + name_save=$name + libname_save=$libname + release_save=$release + versuffix_save=$versuffix + major_save=$major + # I'm not sure if I'm treating the release correctly. I think + # release should show up in the -l (ie -lgmp5) so we don't want to + # add it in twice. Is that correct? + release="" + versuffix="" + major="" + newdeplibs= + droppeddeps=no + case $deplibs_check_method in + pass_all) + # Don't check for shared/static. Everything works. + # This might be a little naive. We might want to check + # whether the library exists or not. But this is on + # osf3 & osf4 and I'm not really sure... Just + # implementing what was already the behavior. + newdeplibs=$deplibs + ;; + test_compile) + # This code stresses the "libraries are programs" paradigm to its + # limits. Maybe even breaks it. We compile a program, linking it + # against the deplibs as a proxy for the library. Then we can check + # whether they linked in statically or dynamically with ldd. + $opt_dry_run || $RM conftest.c + cat > conftest.c </dev/null` + $nocaseglob + else + potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` + fi + for potent_lib in $potential_libs; do + # Follow soft links. + if ls -lLd "$potent_lib" 2>/dev/null | + $GREP " -> " >/dev/null; then + continue + fi + # The statement above tries to avoid entering an + # endless loop below, in case of cyclic links. + # We might still enter an endless loop, since a link + # loop can be closed while we follow links, + # but so what? + potlib="$potent_lib" + while test -h "$potlib" 2>/dev/null; do + potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` + case $potliblink in + [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; + *) potlib=`$ECHO "$potlib" | $SED 's,[^/]*$,,'`"$potliblink";; + esac + done + if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | + $SED -e 10q | + $EGREP "$file_magic_regex" > /dev/null; then + func_append newdeplibs " $a_deplib" + a_deplib="" + break 2 + fi + done + done + fi + if test -n "$a_deplib" ; then + droppeddeps=yes + echo + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because I did check the linker path looking for a file starting" + if test -z "$potlib" ; then + $ECHO "*** with $libname but no candidates were found. (...for file magic test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a file magic. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + func_append newdeplibs " $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + match_pattern*) + set dummy $deplibs_check_method; shift + match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` + for a_deplib in $deplibs; do + case $a_deplib in + -l*) + func_stripname -l '' "$a_deplib" + name=$func_stripname_result + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + case " $predeps $postdeps " in + *" $a_deplib "*) + func_append newdeplibs " $a_deplib" + a_deplib="" + ;; + esac + fi + if test -n "$a_deplib" ; then + libname=`eval "\\$ECHO \"$libname_spec\""` + for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do + potential_libs=`ls $i/$libname[.-]* 2>/dev/null` + for potent_lib in $potential_libs; do + potlib="$potent_lib" # see symlink-check above in file_magic test + if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ + $EGREP "$match_pattern_regex" > /dev/null; then + func_append newdeplibs " $a_deplib" + a_deplib="" + break 2 + fi + done + done + fi + if test -n "$a_deplib" ; then + droppeddeps=yes + echo + $ECHO "*** Warning: linker path does not have real file for library $a_deplib." + echo "*** I have the capability to make that library automatically link in when" + echo "*** you link to this library. But I can only do this if you have a" + echo "*** shared version of the library, which you do not appear to have" + echo "*** because I did check the linker path looking for a file starting" + if test -z "$potlib" ; then + $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" + else + $ECHO "*** with $libname and none of the candidates passed a file format test" + $ECHO "*** using a regex pattern. Last file checked: $potlib" + fi + fi + ;; + *) + # Add a -L argument. + func_append newdeplibs " $a_deplib" + ;; + esac + done # Gone through all deplibs. + ;; + none | unknown | *) + newdeplibs="" + tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` + if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then + for i in $predeps $postdeps ; do + # can't use Xsed below, because $i might contain '/' + tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s,$i,,"` + done + fi + case $tmp_deplibs in + *[!\ \ ]*) + echo + if test "X$deplibs_check_method" = "Xnone"; then + echo "*** Warning: inter-library dependencies are not supported in this platform." + else + echo "*** Warning: inter-library dependencies are not known to be supported." + fi + echo "*** All declared inter-library dependencies are being dropped." + droppeddeps=yes + ;; + esac + ;; + esac + versuffix=$versuffix_save + major=$major_save + release=$release_save + libname=$libname_save + name=$name_save + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library with the System framework + newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` + ;; + esac + + if test "$droppeddeps" = yes; then + if test "$module" = yes; then + echo + echo "*** Warning: libtool could not satisfy all declared inter-library" + $ECHO "*** dependencies of module $libname. Therefore, libtool will create" + echo "*** a static module, that should work as long as the dlopening" + echo "*** application is linked with the -dlopen flag." + if test -z "$global_symbol_pipe"; then + echo + echo "*** However, this would only work if libtool was able to extract symbol" + echo "*** lists from a program, using \`nm' or equivalent, but libtool could" + echo "*** not find such a program. So, this module is probably useless." + echo "*** \`nm' from GNU binutils and a full rebuild may help." + fi + if test "$build_old_libs" = no; then + oldlibs="$output_objdir/$libname.$libext" + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + else + echo "*** The inter-library dependencies that have been dropped here will be" + echo "*** automatically added whenever a program is linked with this library" + echo "*** or is declared to -dlopen it." + + if test "$allow_undefined" = no; then + echo + echo "*** Since this library must not contain undefined symbols," + echo "*** because either the platform does not support them or" + echo "*** it was explicitly requested with -no-undefined," + echo "*** libtool will only create a static version of it." + if test "$build_old_libs" = no; then + oldlibs="$output_objdir/$libname.$libext" + build_libtool_libs=module + build_old_libs=yes + else + build_libtool_libs=no + fi + fi + fi + fi + # Done checking deplibs! + deplibs=$newdeplibs + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + case $host in + *-*-darwin*) + newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $deplibs " in + *" -L$path/$objdir "*) + func_append new_libs " -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) func_append new_libs " $deplib" ;; + esac + ;; + *) func_append new_libs " $deplib" ;; + esac + done + deplibs="$new_libs" + + # All the library-specific variables (install_libdir is set above). + library_names= + old_library= + dlname= + + # Test again, we may have decided not to build it any more + if test "$build_libtool_libs" = yes; then + # Remove ${wl} instances when linking with ld. + # FIXME: should test the right _cmds variable. + case $archive_cmds in + *\$LD\ *) wl= ;; + esac + if test "$hardcode_into_libs" = yes; then + # Hardcode the library paths + hardcode_libdirs= + dep_rpath= + rpath="$finalize_rpath" + test "$opt_mode" != relink && rpath="$compile_rpath$rpath" + for libdir in $rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + func_replace_sysroot "$libdir" + libdir=$func_replace_sysroot_result + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append dep_rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) func_append perm_rpath " $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" + fi + if test -n "$runpath_var" && test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + func_append rpath "$dir:" + done + eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" + fi + test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" + fi + + shlibpath="$finalize_shlibpath" + test "$opt_mode" != relink && shlibpath="$compile_shlibpath$shlibpath" + if test -n "$shlibpath"; then + eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" + fi + + # Get the real and link names of the library. + eval shared_ext=\"$shrext_cmds\" + eval library_names=\"$library_names_spec\" + set dummy $library_names + shift + realname="$1" + shift + + if test -n "$soname_spec"; then + eval soname=\"$soname_spec\" + else + soname="$realname" + fi + if test -z "$dlname"; then + dlname=$soname + fi + + lib="$output_objdir/$realname" + linknames= + for link + do + func_append linknames " $link" + done + + # Use standard objects if they are pic + test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` + test "X$libobjs" = "X " && libobjs= + + delfiles= + if test -n "$export_symbols" && test -n "$include_expsyms"; then + $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" + export_symbols="$output_objdir/$libname.uexp" + func_append delfiles " $export_symbols" + fi + + orig_export_symbols= + case $host_os in + cygwin* | mingw* | cegcc*) + if test -n "$export_symbols" && test -z "$export_symbols_regex"; then + # exporting using user supplied symfile + if test "x`$SED 1q $export_symbols`" != xEXPORTS; then + # and it's NOT already a .def file. Must figure out + # which of the given symbols are data symbols and tag + # them as such. So, trigger use of export_symbols_cmds. + # export_symbols gets reassigned inside the "prepare + # the list of exported symbols" if statement, so the + # include_expsyms logic still works. + orig_export_symbols="$export_symbols" + export_symbols= + always_export_symbols=yes + fi + fi + ;; + esac + + # Prepare the list of exported symbols + if test -z "$export_symbols"; then + if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then + func_verbose "generating symbol list for \`$libname.la'" + export_symbols="$output_objdir/$libname.exp" + $opt_dry_run || $RM $export_symbols + cmds=$export_symbols_cmds + save_ifs="$IFS"; IFS='~' + for cmd1 in $cmds; do + IFS="$save_ifs" + # Take the normal branch if the nm_file_list_spec branch + # doesn't work or if tool conversion is not needed. + case $nm_file_list_spec~$to_tool_file_cmd in + *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) + try_normal_branch=yes + eval cmd=\"$cmd1\" + func_len " $cmd" + len=$func_len_result + ;; + *) + try_normal_branch=no + ;; + esac + if test "$try_normal_branch" = yes \ + && { test "$len" -lt "$max_cmd_len" \ + || test "$max_cmd_len" -le -1; } + then + func_show_eval "$cmd" 'exit $?' + skipped_export=false + elif test -n "$nm_file_list_spec"; then + func_basename "$output" + output_la=$func_basename_result + save_libobjs=$libobjs + save_output=$output + output=${output_objdir}/${output_la}.nm + func_to_tool_file "$output" + libobjs=$nm_file_list_spec$func_to_tool_file_result + func_append delfiles " $output" + func_verbose "creating $NM input file list: $output" + for obj in $save_libobjs; do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" + done > "$output" + eval cmd=\"$cmd1\" + func_show_eval "$cmd" 'exit $?' + output=$save_output + libobjs=$save_libobjs + skipped_export=false + else + # The command line is too long to execute in one step. + func_verbose "using reloadable object file for export list..." + skipped_export=: + # Break out early, otherwise skipped_export may be + # set to false by a later but shorter cmd. + break + fi + done + IFS="$save_ifs" + if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + fi + + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols="$export_symbols" + test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' + fi + + if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + func_append delfiles " $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + + tmp_deplibs= + for test_deplib in $deplibs; do + case " $convenience " in + *" $test_deplib "*) ;; + *) + func_append tmp_deplibs " $test_deplib" + ;; + esac + done + deplibs="$tmp_deplibs" + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec" && + test "$compiler_needs_object" = yes && + test -z "$libobjs"; then + # extract the archives, so we have objects to list. + # TODO: could optimize this to just extract one archive. + whole_archive_flag_spec= + fi + if test -n "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + else + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $convenience + func_append libobjs " $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + fi + + if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then + eval flag=\"$thread_safe_flag_spec\" + func_append linker_flags " $flag" + fi + + # Make a backup of the uninstalled library when relinking + if test "$opt_mode" = relink; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? + fi + + # Do each of the archive commands. + if test "$module" = yes && test -n "$module_cmds" ; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + eval test_cmds=\"$module_expsym_cmds\" + cmds=$module_expsym_cmds + else + eval test_cmds=\"$module_cmds\" + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + eval test_cmds=\"$archive_expsym_cmds\" + cmds=$archive_expsym_cmds + else + eval test_cmds=\"$archive_cmds\" + cmds=$archive_cmds + fi + fi + + if test "X$skipped_export" != "X:" && + func_len " $test_cmds" && + len=$func_len_result && + test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + : + else + # The command line is too long to link in one step, link piecewise + # or, if using GNU ld and skipped_export is not :, use a linker + # script. + + # Save the value of $output and $libobjs because we want to + # use them later. If we have whole_archive_flag_spec, we + # want to use save_libobjs as it was before + # whole_archive_flag_spec was expanded, because we can't + # assume the linker understands whole_archive_flag_spec. + # This may have to be revisited, in case too many + # convenience libraries get linked in and end up exceeding + # the spec. + if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then + save_libobjs=$libobjs + fi + save_output=$output + func_basename "$output" + output_la=$func_basename_result + + # Clear the reloadable object creation command queue and + # initialize k to one. + test_cmds= + concat_cmds= + objlist= + last_robj= + k=1 + + if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then + output=${output_objdir}/${output_la}.lnkscript + func_verbose "creating GNU ld script: $output" + echo 'INPUT (' > $output + for obj in $save_libobjs + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" >> $output + done + echo ')' >> $output + func_append delfiles " $output" + func_to_tool_file "$output" + output=$func_to_tool_file_result + elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then + output=${output_objdir}/${output_la}.lnk + func_verbose "creating linker input file list: $output" + : > $output + set x $save_libobjs + shift + firstobj= + if test "$compiler_needs_object" = yes; then + firstobj="$1 " + shift + fi + for obj + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" >> $output + done + func_append delfiles " $output" + func_to_tool_file "$output" + output=$firstobj\"$file_list_spec$func_to_tool_file_result\" + else + if test -n "$save_libobjs"; then + func_verbose "creating reloadable object files..." + output=$output_objdir/$output_la-${k}.$objext + eval test_cmds=\"$reload_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + + # Loop over the list of objects to be linked. + for obj in $save_libobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + if test "X$objlist" = X || + test "$len" -lt "$max_cmd_len"; then + func_append objlist " $obj" + else + # The command $test_cmds is almost too long, add a + # command to the queue. + if test "$k" -eq 1 ; then + # The first file doesn't have a previous command to add. + reload_objs=$objlist + eval concat_cmds=\"$reload_cmds\" + else + # All subsequent reloadable object files will link in + # the last one created. + reload_objs="$objlist $last_robj" + eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" + fi + last_robj=$output_objdir/$output_la-${k}.$objext + func_arith $k + 1 + k=$func_arith_result + output=$output_objdir/$output_la-${k}.$objext + objlist=" $obj" + func_len " $last_robj" + func_arith $len0 + $func_len_result + len=$func_arith_result + fi + done + # Handle the remaining objects by creating one last + # reloadable object file. All subsequent reloadable object + # files will link in the last one created. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + reload_objs="$objlist $last_robj" + eval concat_cmds=\"\${concat_cmds}$reload_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" + fi + func_append delfiles " $output" + + else + output= + fi + + if ${skipped_export-false}; then + func_verbose "generating symbol list for \`$libname.la'" + export_symbols="$output_objdir/$libname.exp" + $opt_dry_run || $RM $export_symbols + libobjs=$output + # Append the command to create the export file. + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" + if test -n "$last_robj"; then + eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" + fi + fi + + test -n "$save_libobjs" && + func_verbose "creating a temporary reloadable object file: $output" + + # Loop through the commands generated above and execute them. + save_ifs="$IFS"; IFS='~' + for cmd in $concat_cmds; do + IFS="$save_ifs" + $opt_silent || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS="$save_ifs" + + if test -n "$export_symbols_regex" && ${skipped_export-false}; then + func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' + func_show_eval '$MV "${export_symbols}T" "$export_symbols"' + fi + fi + + if ${skipped_export-false}; then + if test -n "$export_symbols" && test -n "$include_expsyms"; then + tmp_export_symbols="$export_symbols" + test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" + $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' + fi + + if test -n "$orig_export_symbols"; then + # The given exports_symbols file has to be filtered, so filter it. + func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" + # FIXME: $output_objdir/$libname.filter potentially contains lots of + # 's' commands which not all seds can handle. GNU sed should be fine + # though. Also, the filter scales superlinearly with the number of + # global variables. join(1) would be nice here, but unfortunately + # isn't a blessed tool. + $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter + func_append delfiles " $export_symbols $output_objdir/$libname.filter" + export_symbols=$output_objdir/$libname.def + $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols + fi + fi + + libobjs=$output + # Restore the value of output. + output=$save_output + + if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then + eval libobjs=\"\$libobjs $whole_archive_flag_spec\" + test "X$libobjs" = "X " && libobjs= + fi + # Expand the library linking commands again to reset the + # value of $libobjs for piecewise linking. + + # Do each of the archive commands. + if test "$module" = yes && test -n "$module_cmds" ; then + if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then + cmds=$module_expsym_cmds + else + cmds=$module_cmds + fi + else + if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then + cmds=$archive_expsym_cmds + else + cmds=$archive_cmds + fi + fi + fi + + if test -n "$delfiles"; then + # Append the command to remove temporary files to $cmds. + eval cmds=\"\$cmds~\$RM $delfiles\" + fi + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $dlprefiles + func_append libobjs " $func_extract_archives_result" + test "X$libobjs" = "X " && libobjs= + fi + + save_ifs="$IFS"; IFS='~' + for cmd in $cmds; do + IFS="$save_ifs" + eval cmd=\"$cmd\" + $opt_silent || { + func_quote_for_expand "$cmd" + eval "func_echo $func_quote_for_expand_result" + } + $opt_dry_run || eval "$cmd" || { + lt_exit=$? + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + ( cd "$output_objdir" && \ + $RM "${realname}T" && \ + $MV "${realname}U" "$realname" ) + fi + + exit $lt_exit + } + done + IFS="$save_ifs" + + # Restore the uninstalled library and exit + if test "$opt_mode" = relink; then + $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? + + if test -n "$convenience"; then + if test -z "$whole_archive_flag_spec"; then + func_show_eval '${RM}r "$gentop"' + fi + fi + + exit $EXIT_SUCCESS + fi + + # Create links to the real library. + for linkname in $linknames; do + if test "$realname" != "$linkname"; then + func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' + fi + done + + # If -module or -export-dynamic was specified, set the dlname. + if test "$module" = yes || test "$export_dynamic" = yes; then + # On all known operating systems, these are identical. + dlname="$soname" + fi + fi + ;; + + obj) + if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then + func_warning "\`-dlopen' is ignored for objects" + fi + + case " $deplibs" in + *\ -l* | *\ -L*) + func_warning "\`-l' and \`-L' are ignored for objects" ;; + esac + + test -n "$rpath" && \ + func_warning "\`-rpath' is ignored for objects" + + test -n "$xrpath" && \ + func_warning "\`-R' is ignored for objects" + + test -n "$vinfo" && \ + func_warning "\`-version-info' is ignored for objects" + + test -n "$release" && \ + func_warning "\`-release' is ignored for objects" + + case $output in + *.lo) + test -n "$objs$old_deplibs" && \ + func_fatal_error "cannot build library object \`$output' from non-libtool objects" + + libobj=$output + func_lo2o "$libobj" + obj=$func_lo2o_result + ;; + *) + libobj= + obj="$output" + ;; + esac + + # Delete the old objects. + $opt_dry_run || $RM $obj $libobj + + # Objects from convenience libraries. This assumes + # single-version convenience libraries. Whenever we create + # different ones for PIC/non-PIC, this we'll have to duplicate + # the extraction. + reload_conv_objs= + gentop= + # reload_cmds runs $LD directly, so let us get rid of + # -Wl from whole_archive_flag_spec and hope we can get by with + # turning comma into space.. + wl= + + if test -n "$convenience"; then + if test -n "$whole_archive_flag_spec"; then + eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" + reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` + else + gentop="$output_objdir/${obj}x" + func_append generated " $gentop" + + func_extract_archives $gentop $convenience + reload_conv_objs="$reload_objs $func_extract_archives_result" + fi + fi + + # If we're not building shared, we need to use non_pic_objs + test "$build_libtool_libs" != yes && libobjs="$non_pic_objects" + + # Create the old-style object. + reload_objs="$objs$old_deplibs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.${libext}$/d; /\.lib$/d; $lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test + + output="$obj" + func_execute_cmds "$reload_cmds" 'exit $?' + + # Exit if we aren't doing a library object file. + if test -z "$libobj"; then + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + fi + + if test "$build_libtool_libs" != yes; then + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + # Create an invalid libtool object if no PIC, so that we don't + # accidentally link it into a program. + # $show "echo timestamp > $libobj" + # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? + exit $EXIT_SUCCESS + fi + + if test -n "$pic_flag" || test "$pic_mode" != default; then + # Only do commands if we really have different PIC objects. + reload_objs="$libobjs $reload_conv_objs" + output="$libobj" + func_execute_cmds "$reload_cmds" 'exit $?' + fi + + if test -n "$gentop"; then + func_show_eval '${RM}r "$gentop"' + fi + + exit $EXIT_SUCCESS + ;; + + prog) + case $host in + *cygwin*) func_stripname '' '.exe' "$output" + output=$func_stripname_result.exe;; + esac + test -n "$vinfo" && \ + func_warning "\`-version-info' is ignored for programs" + + test -n "$release" && \ + func_warning "\`-release' is ignored for programs" + + test "$preload" = yes \ + && test "$dlopen_support" = unknown \ + && test "$dlopen_self" = unknown \ + && test "$dlopen_self_static" = unknown && \ + func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." + + case $host in + *-*-rhapsody* | *-*-darwin1.[012]) + # On Rhapsody replace the C library is the System framework + compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` + finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` + ;; + esac + + case $host in + *-*-darwin*) + # Don't allow lazy linking, it breaks C++ global constructors + # But is supposedly fixed on 10.4 or later (yay!). + if test "$tagname" = CXX ; then + case ${MACOSX_DEPLOYMENT_TARGET-10.0} in + 10.[0123]) + func_append compile_command " ${wl}-bind_at_load" + func_append finalize_command " ${wl}-bind_at_load" + ;; + esac + fi + # Time to change all our "foo.ltframework" stuff back to "-framework foo" + compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` + ;; + esac + + + # move library search paths that coincide with paths to not yet + # installed libraries to the beginning of the library search list + new_libs= + for path in $notinst_path; do + case " $new_libs " in + *" -L$path/$objdir "*) ;; + *) + case " $compile_deplibs " in + *" -L$path/$objdir "*) + func_append new_libs " -L$path/$objdir" ;; + esac + ;; + esac + done + for deplib in $compile_deplibs; do + case $deplib in + -L*) + case " $new_libs " in + *" $deplib "*) ;; + *) func_append new_libs " $deplib" ;; + esac + ;; + *) func_append new_libs " $deplib" ;; + esac + done + compile_deplibs="$new_libs" + + + func_append compile_command " $compile_deplibs" + func_append finalize_command " $finalize_deplibs" + + if test -n "$rpath$xrpath"; then + # If the user specified any rpath flags, then add them. + for libdir in $rpath $xrpath; do + # This is the magic to use -rpath. + case "$finalize_rpath " in + *" $libdir "*) ;; + *) func_append finalize_rpath " $libdir" ;; + esac + done + fi + + # Now hardcode the library paths + rpath= + hardcode_libdirs= + for libdir in $compile_rpath $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$perm_rpath " in + *" $libdir "*) ;; + *) func_append perm_rpath " $libdir" ;; + esac + fi + case $host in + *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) + testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` + case :$dllsearchpath: in + *":$libdir:"*) ;; + ::) dllsearchpath=$libdir;; + *) func_append dllsearchpath ":$libdir";; + esac + case :$dllsearchpath: in + *":$testbindir:"*) ;; + ::) dllsearchpath=$testbindir;; + *) func_append dllsearchpath ":$testbindir";; + esac + ;; + esac + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + compile_rpath="$rpath" + + rpath= + hardcode_libdirs= + for libdir in $finalize_rpath; do + if test -n "$hardcode_libdir_flag_spec"; then + if test -n "$hardcode_libdir_separator"; then + if test -z "$hardcode_libdirs"; then + hardcode_libdirs="$libdir" + else + # Just accumulate the unique libdirs. + case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in + *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) + ;; + *) + func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" + ;; + esac + fi + else + eval flag=\"$hardcode_libdir_flag_spec\" + func_append rpath " $flag" + fi + elif test -n "$runpath_var"; then + case "$finalize_perm_rpath " in + *" $libdir "*) ;; + *) func_append finalize_perm_rpath " $libdir" ;; + esac + fi + done + # Substitute the hardcoded libdirs into the rpath. + if test -n "$hardcode_libdir_separator" && + test -n "$hardcode_libdirs"; then + libdir="$hardcode_libdirs" + eval rpath=\" $hardcode_libdir_flag_spec\" + fi + finalize_rpath="$rpath" + + if test -n "$libobjs" && test "$build_old_libs" = yes; then + # Transform all the library objects into standard objects. + compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` + finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` + fi + + func_generate_dlsyms "$outputname" "@PROGRAM@" "no" + + # template prelinking step + if test -n "$prelink_cmds"; then + func_execute_cmds "$prelink_cmds" 'exit $?' + fi + + wrappers_required=yes + case $host in + *cegcc* | *mingw32ce*) + # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. + wrappers_required=no + ;; + *cygwin* | *mingw* ) + if test "$build_libtool_libs" != yes; then + wrappers_required=no + fi + ;; + *) + if test "$need_relink" = no || test "$build_libtool_libs" != yes; then + wrappers_required=no + fi + ;; + esac + if test "$wrappers_required" = no; then + # Replace the output file specification. + compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` + link_command="$compile_command$compile_rpath" + + # We have no uninstalled library dependencies, so finalize right now. + exit_status=0 + func_show_eval "$link_command" 'exit_status=$?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + # Delete the generated files. + if test -f "$output_objdir/${outputname}S.${objext}"; then + func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' + fi + + exit $exit_status + fi + + if test -n "$compile_shlibpath$finalize_shlibpath"; then + compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" + fi + if test -n "$finalize_shlibpath"; then + finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" + fi + + compile_var= + finalize_var= + if test -n "$runpath_var"; then + if test -n "$perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $perm_rpath; do + func_append rpath "$dir:" + done + compile_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + if test -n "$finalize_perm_rpath"; then + # We should set the runpath_var. + rpath= + for dir in $finalize_perm_rpath; do + func_append rpath "$dir:" + done + finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " + fi + fi + + if test "$no_install" = yes; then + # We don't need to create a wrapper script. + link_command="$compile_var$compile_command$compile_rpath" + # Replace the output file specification. + link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` + # Delete the old output file. + $opt_dry_run || $RM $output + # Link the executable and exit + func_show_eval "$link_command" 'exit $?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + exit $EXIT_SUCCESS + fi + + if test "$hardcode_action" = relink; then + # Fast installation is not supported + link_command="$compile_var$compile_command$compile_rpath" + relink_command="$finalize_var$finalize_command$finalize_rpath" + + func_warning "this platform does not like uninstalled shared libraries" + func_warning "\`$output' will be relinked during installation" + else + if test "$fast_install" != no; then + link_command="$finalize_var$compile_command$finalize_rpath" + if test "$fast_install" = yes; then + relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` + else + # fast_install is set to needless + relink_command= + fi + else + link_command="$compile_var$compile_command$compile_rpath" + relink_command="$finalize_var$finalize_command$finalize_rpath" + fi + fi + + # Replace the output file specification. + link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` + + # Delete the old output files. + $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname + + func_show_eval "$link_command" 'exit $?' + + if test -n "$postlink_cmds"; then + func_to_tool_file "$output_objdir/$outputname" + postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` + func_execute_cmds "$postlink_cmds" 'exit $?' + fi + + # Now create the wrapper script. + func_verbose "creating $output" + + # Quote the relink command for shipping. + if test -n "$relink_command"; then + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + relink_command="(cd `pwd`; $relink_command)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + fi + + # Only actually do things if not in dry run mode. + $opt_dry_run || { + # win32 will think the script is a binary if it has + # a .exe suffix, so we strip it off here. + case $output in + *.exe) func_stripname '' '.exe' "$output" + output=$func_stripname_result ;; + esac + # test for cygwin because mv fails w/o .exe extensions + case $host in + *cygwin*) + exeext=.exe + func_stripname '' '.exe' "$outputname" + outputname=$func_stripname_result ;; + *) exeext= ;; + esac + case $host in + *cygwin* | *mingw* ) + func_dirname_and_basename "$output" "" "." + output_name=$func_basename_result + output_path=$func_dirname_result + cwrappersource="$output_path/$objdir/lt-$output_name.c" + cwrapper="$output_path/$output_name.exe" + $RM $cwrappersource $cwrapper + trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 + + func_emit_cwrapperexe_src > $cwrappersource + + # The wrapper executable is built using the $host compiler, + # because it contains $host paths and files. If cross- + # compiling, it, like the target executable, must be + # executed on the $host or under an emulation environment. + $opt_dry_run || { + $LTCC $LTCFLAGS -o $cwrapper $cwrappersource + $STRIP $cwrapper + } + + # Now, create the wrapper script for func_source use: + func_ltwrapper_scriptname $cwrapper + $RM $func_ltwrapper_scriptname_result + trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 + $opt_dry_run || { + # note: this script will not be executed, so do not chmod. + if test "x$build" = "x$host" ; then + $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result + else + func_emit_wrapper no > $func_ltwrapper_scriptname_result + fi + } + ;; + * ) + $RM $output + trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 + + func_emit_wrapper no > $output + chmod +x $output + ;; + esac + } + exit $EXIT_SUCCESS + ;; + esac + + # See if we need to build an old-fashioned archive. + for oldlib in $oldlibs; do + + if test "$build_libtool_libs" = convenience; then + oldobjs="$libobjs_save $symfileobj" + addlibs="$convenience" + build_libtool_libs=no + else + if test "$build_libtool_libs" = module; then + oldobjs="$libobjs_save" + build_libtool_libs=no + else + oldobjs="$old_deplibs $non_pic_objects" + if test "$preload" = yes && test -f "$symfileobj"; then + func_append oldobjs " $symfileobj" + fi + fi + addlibs="$old_convenience" + fi + + if test -n "$addlibs"; then + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $addlibs + func_append oldobjs " $func_extract_archives_result" + fi + + # Do each command in the archive commands. + if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then + cmds=$old_archive_from_new_cmds + else + + # Add any objects from preloaded convenience libraries + if test -n "$dlprefiles"; then + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + + func_extract_archives $gentop $dlprefiles + func_append oldobjs " $func_extract_archives_result" + fi + + # POSIX demands no paths to be encoded in archives. We have + # to avoid creating archives with duplicate basenames if we + # might have to extract them afterwards, e.g., when creating a + # static archive out of a convenience library, or when linking + # the entirety of a libtool archive into another (currently + # not supported by libtool). + if (for obj in $oldobjs + do + func_basename "$obj" + $ECHO "$func_basename_result" + done | sort | sort -uc >/dev/null 2>&1); then + : + else + echo "copying selected object files to avoid basename conflicts..." + gentop="$output_objdir/${outputname}x" + func_append generated " $gentop" + func_mkdir_p "$gentop" + save_oldobjs=$oldobjs + oldobjs= + counter=1 + for obj in $save_oldobjs + do + func_basename "$obj" + objbase="$func_basename_result" + case " $oldobjs " in + " ") oldobjs=$obj ;; + *[\ /]"$objbase "*) + while :; do + # Make sure we don't pick an alternate name that also + # overlaps. + newobj=lt$counter-$objbase + func_arith $counter + 1 + counter=$func_arith_result + case " $oldobjs " in + *[\ /]"$newobj "*) ;; + *) if test ! -f "$gentop/$newobj"; then break; fi ;; + esac + done + func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" + func_append oldobjs " $gentop/$newobj" + ;; + *) func_append oldobjs " $obj" ;; + esac + done + fi + func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 + tool_oldlib=$func_to_tool_file_result + eval cmds=\"$old_archive_cmds\" + + func_len " $cmds" + len=$func_len_result + if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then + cmds=$old_archive_cmds + elif test -n "$archiver_list_spec"; then + func_verbose "using command file archive linking..." + for obj in $oldobjs + do + func_to_tool_file "$obj" + $ECHO "$func_to_tool_file_result" + done > $output_objdir/$libname.libcmd + func_to_tool_file "$output_objdir/$libname.libcmd" + oldobjs=" $archiver_list_spec$func_to_tool_file_result" + cmds=$old_archive_cmds + else + # the command line is too long to link in one step, link in parts + func_verbose "using piecewise archive linking..." + save_RANLIB=$RANLIB + RANLIB=: + objlist= + concat_cmds= + save_oldobjs=$oldobjs + oldobjs= + # Is there a better way of finding the last object in the list? + for obj in $save_oldobjs + do + last_oldobj=$obj + done + eval test_cmds=\"$old_archive_cmds\" + func_len " $test_cmds" + len0=$func_len_result + len=$len0 + for obj in $save_oldobjs + do + func_len " $obj" + func_arith $len + $func_len_result + len=$func_arith_result + func_append objlist " $obj" + if test "$len" -lt "$max_cmd_len"; then + : + else + # the above command should be used before it gets too long + oldobjs=$objlist + if test "$obj" = "$last_oldobj" ; then + RANLIB=$save_RANLIB + fi + test -z "$concat_cmds" || concat_cmds=$concat_cmds~ + eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" + objlist= + len=$len0 + fi + done + RANLIB=$save_RANLIB + oldobjs=$objlist + if test "X$oldobjs" = "X" ; then + eval cmds=\"\$concat_cmds\" + else + eval cmds=\"\$concat_cmds~\$old_archive_cmds\" + fi + fi + fi + func_execute_cmds "$cmds" 'exit $?' + done + + test -n "$generated" && \ + func_show_eval "${RM}r$generated" + + # Now create the libtool archive. + case $output in + *.la) + old_library= + test "$build_old_libs" = yes && old_library="$libname.$libext" + func_verbose "creating $output" + + # Preserve any variables that may affect compiler behavior + for var in $variables_saved_for_relink; do + if eval test -z \"\${$var+set}\"; then + relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" + elif eval var_value=\$$var; test -z "$var_value"; then + relink_command="$var=; export $var; $relink_command" + else + func_quote_for_eval "$var_value" + relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" + fi + done + # Quote the link command for shipping. + relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" + relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` + if test "$hardcode_automatic" = yes ; then + relink_command= + fi + + # Only create the output if not a dry run. + $opt_dry_run || { + for installed in no yes; do + if test "$installed" = yes; then + if test -z "$install_libdir"; then + break + fi + output="$output_objdir/$outputname"i + # Replace all uninstalled libtool libraries with the installed ones + newdependency_libs= + for deplib in $dependency_libs; do + case $deplib in + *.la) + func_basename "$deplib" + name="$func_basename_result" + func_resolve_sysroot "$deplib" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` + test -z "$libdir" && \ + func_fatal_error "\`$deplib' is not a valid libtool archive" + func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" + ;; + -L*) + func_stripname -L '' "$deplib" + func_replace_sysroot "$func_stripname_result" + func_append newdependency_libs " -L$func_replace_sysroot_result" + ;; + -R*) + func_stripname -R '' "$deplib" + func_replace_sysroot "$func_stripname_result" + func_append newdependency_libs " -R$func_replace_sysroot_result" + ;; + *) func_append newdependency_libs " $deplib" ;; + esac + done + dependency_libs="$newdependency_libs" + newdlfiles= + + for lib in $dlfiles; do + case $lib in + *.la) + func_basename "$lib" + name="$func_basename_result" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "\`$lib' is not a valid libtool archive" + func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" + ;; + *) func_append newdlfiles " $lib" ;; + esac + done + dlfiles="$newdlfiles" + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + *.la) + # Only pass preopened files to the pseudo-archive (for + # eventual linking with the app. that links it) if we + # didn't already link the preopened objects directly into + # the library: + func_basename "$lib" + name="$func_basename_result" + eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` + test -z "$libdir" && \ + func_fatal_error "\`$lib' is not a valid libtool archive" + func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" + ;; + esac + done + dlprefiles="$newdlprefiles" + else + newdlfiles= + for lib in $dlfiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + *) abs=`pwd`"/$lib" ;; + esac + func_append newdlfiles " $abs" + done + dlfiles="$newdlfiles" + newdlprefiles= + for lib in $dlprefiles; do + case $lib in + [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; + *) abs=`pwd`"/$lib" ;; + esac + func_append newdlprefiles " $abs" + done + dlprefiles="$newdlprefiles" + fi + $RM $output + # place dlname in correct position for cygwin + # In fact, it would be nice if we could use this code for all target + # systems that can't hard-code library paths into their executables + # and that have no shared library path variable independent of PATH, + # but it turns out we can't easily determine that from inspecting + # libtool variables, so we have to hard-code the OSs to which it + # applies here; at the moment, that means platforms that use the PE + # object format with DLL files. See the long comment at the top of + # tests/bindir.at for full details. + tdlname=$dlname + case $host,$output,$installed,$module,$dlname in + *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) + # If a -bindir argument was supplied, place the dll there. + if test "x$bindir" != x ; + then + func_relative_path "$install_libdir" "$bindir" + tdlname=$func_relative_path_result$dlname + else + # Otherwise fall back on heuristic. + tdlname=../bin/$dlname + fi + ;; + esac + $ECHO > $output "\ +# $outputname - a libtool library file +# Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION +# +# Please DO NOT delete this file! +# It is necessary for linking the library. + +# The name that we can dlopen(3). +dlname='$tdlname' + +# Names of this library. +library_names='$library_names' + +# The name of the static archive. +old_library='$old_library' + +# Linker flags that can not go in dependency_libs. +inherited_linker_flags='$new_inherited_linker_flags' + +# Libraries that this one depends upon. +dependency_libs='$dependency_libs' + +# Names of additional weak libraries provided by this library +weak_library_names='$weak_libs' + +# Version information for $libname. +current=$current +age=$age +revision=$revision + +# Is this an already installed library? +installed=$installed + +# Should we warn about portability when linking against -modules? +shouldnotlink=$module + +# Files to dlopen/dlpreopen +dlopen='$dlfiles' +dlpreopen='$dlprefiles' + +# Directory that this library needs to be installed in: +libdir='$install_libdir'" + if test "$installed" = no && test "$need_relink" = yes; then + $ECHO >> $output "\ +relink_command=\"$relink_command\"" + fi + done + } + + # Do a symbolic link so that the libtool archive can be found in + # LD_LIBRARY_PATH before the program is installed. + func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' + ;; + esac + exit $EXIT_SUCCESS +} + +{ test "$opt_mode" = link || test "$opt_mode" = relink; } && + func_mode_link ${1+"$@"} + + +# func_mode_uninstall arg... +func_mode_uninstall () +{ + $opt_debug + RM="$nonopt" + files= + rmforce= + exit_status=0 + + # This variable tells wrapper scripts just to set variables rather + # than running their programs. + libtool_install_magic="$magic" + + for arg + do + case $arg in + -f) func_append RM " $arg"; rmforce=yes ;; + -*) func_append RM " $arg" ;; + *) func_append files " $arg" ;; + esac + done + + test -z "$RM" && \ + func_fatal_help "you must specify an RM program" + + rmdirs= + + for file in $files; do + func_dirname "$file" "" "." + dir="$func_dirname_result" + if test "X$dir" = X.; then + odir="$objdir" + else + odir="$dir/$objdir" + fi + func_basename "$file" + name="$func_basename_result" + test "$opt_mode" = uninstall && odir="$dir" + + # Remember odir for removal later, being careful to avoid duplicates + if test "$opt_mode" = clean; then + case " $rmdirs " in + *" $odir "*) ;; + *) func_append rmdirs " $odir" ;; + esac + fi + + # Don't error if the file doesn't exist and rm -f was used. + if { test -L "$file"; } >/dev/null 2>&1 || + { test -h "$file"; } >/dev/null 2>&1 || + test -f "$file"; then + : + elif test -d "$file"; then + exit_status=1 + continue + elif test "$rmforce" = yes; then + continue + fi + + rmfiles="$file" + + case $name in + *.la) + # Possibly a libtool archive, so verify it. + if func_lalib_p "$file"; then + func_source $dir/$name + + # Delete the libtool libraries and symlinks. + for n in $library_names; do + func_append rmfiles " $odir/$n" + done + test -n "$old_library" && func_append rmfiles " $odir/$old_library" + + case "$opt_mode" in + clean) + case " $library_names " in + *" $dlname "*) ;; + *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; + esac + test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" + ;; + uninstall) + if test -n "$library_names"; then + # Do each command in the postuninstall commands. + func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + fi + + if test -n "$old_library"; then + # Do each command in the old_postuninstall commands. + func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' + fi + # FIXME: should reinstall the best remaining shared library. + ;; + esac + fi + ;; + + *.lo) + # Possibly a libtool object, so verify it. + if func_lalib_p "$file"; then + + # Read the .lo file + func_source $dir/$name + + # Add PIC object to the list of files to remove. + if test -n "$pic_object" && + test "$pic_object" != none; then + func_append rmfiles " $dir/$pic_object" + fi + + # Add non-PIC object to the list of files to remove. + if test -n "$non_pic_object" && + test "$non_pic_object" != none; then + func_append rmfiles " $dir/$non_pic_object" + fi + fi + ;; + + *) + if test "$opt_mode" = clean ; then + noexename=$name + case $file in + *.exe) + func_stripname '' '.exe' "$file" + file=$func_stripname_result + func_stripname '' '.exe' "$name" + noexename=$func_stripname_result + # $file with .exe has already been added to rmfiles, + # add $file without .exe + func_append rmfiles " $file" + ;; + esac + # Do a test to see if this is a libtool program. + if func_ltwrapper_p "$file"; then + if func_ltwrapper_executable_p "$file"; then + func_ltwrapper_scriptname "$file" + relink_command= + func_source $func_ltwrapper_scriptname_result + func_append rmfiles " $func_ltwrapper_scriptname_result" + else + relink_command= + func_source $dir/$noexename + fi + + # note $name still contains .exe if it was in $file originally + # as does the version of $file that was added into $rmfiles + func_append rmfiles " $odir/$name $odir/${name}S.${objext}" + if test "$fast_install" = yes && test -n "$relink_command"; then + func_append rmfiles " $odir/lt-$name" + fi + if test "X$noexename" != "X$name" ; then + func_append rmfiles " $odir/lt-${noexename}.c" + fi + fi + fi + ;; + esac + func_show_eval "$RM $rmfiles" 'exit_status=1' + done + + # Try to remove the ${objdir}s in the directories where we deleted files + for dir in $rmdirs; do + if test -d "$dir"; then + func_show_eval "rmdir $dir >/dev/null 2>&1" + fi + done + + exit $exit_status +} + +{ test "$opt_mode" = uninstall || test "$opt_mode" = clean; } && + func_mode_uninstall ${1+"$@"} + +test -z "$opt_mode" && { + help="$generic_help" + func_fatal_help "you must specify a MODE" +} + +test -z "$exec_cmd" && \ + func_fatal_help "invalid operation mode \`$opt_mode'" + +if test -n "$exec_cmd"; then + eval exec "$exec_cmd" + exit $EXIT_FAILURE +fi + +exit $exit_status + + +# The TAGs below are defined such that we never get into a situation +# in which we disable both kinds of libraries. Given conflicting +# choices, we go for a static library, that is the most portable, +# since we can't tell whether shared libraries were disabled because +# the user asked for that or because the platform doesn't support +# them. This is particularly important on AIX, because we don't +# support having both static and shared libraries enabled at the same +# time on that platform, so we default to a shared-only configuration. +# If a disable-shared tag is given, we'll fallback to a static-only +# configuration. But we'll never go from static-only to shared-only. + +# ### BEGIN LIBTOOL TAG CONFIG: disable-shared +build_libtool_libs=no +build_old_libs=yes +# ### END LIBTOOL TAG CONFIG: disable-shared + +# ### BEGIN LIBTOOL TAG CONFIG: disable-static +build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` +# ### END LIBTOOL TAG CONFIG: disable-static + +# Local Variables: +# mode:shell-script +# sh-indentation:2 +# End: +# vi:sw=2 + diff --git a/m4/libtool.m4 b/m4/libtool.m4 new file mode 100644 index 0000000..828104c --- /dev/null +++ b/m4/libtool.m4 @@ -0,0 +1,8001 @@ +# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- +# +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +m4_define([_LT_COPYING], [dnl +# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, +# 2006, 2007, 2008, 2009, 2010, 2011 Free Software +# Foundation, Inc. +# Written by Gordon Matzigkeit, 1996 +# +# This file is part of GNU Libtool. +# +# GNU Libtool 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. +# +# As a special exception to the GNU General Public License, +# if you distribute this file as part of a program or library that +# is built using GNU Libtool, you may include this file under the +# same distribution terms that you use for the rest of that program. +# +# GNU Libtool 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 GNU Libtool; see the file COPYING. If not, a copy +# can be downloaded from http://www.gnu.org/licenses/gpl.html, or +# obtained by writing to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +]) + +# serial 57 LT_INIT + + +# LT_PREREQ(VERSION) +# ------------------ +# Complain and exit if this libtool version is less that VERSION. +m4_defun([LT_PREREQ], +[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, + [m4_default([$3], + [m4_fatal([Libtool version $1 or higher is required], + 63)])], + [$2])]) + + +# _LT_CHECK_BUILDDIR +# ------------------ +# Complain if the absolute build directory name contains unusual characters +m4_defun([_LT_CHECK_BUILDDIR], +[case `pwd` in + *\ * | *\ *) + AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; +esac +]) + + +# LT_INIT([OPTIONS]) +# ------------------ +AC_DEFUN([LT_INIT], +[AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT +AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl +AC_BEFORE([$0], [LT_LANG])dnl +AC_BEFORE([$0], [LT_OUTPUT])dnl +AC_BEFORE([$0], [LTDL_INIT])dnl +m4_require([_LT_CHECK_BUILDDIR])dnl + +dnl Autoconf doesn't catch unexpanded LT_ macros by default: +m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl +m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl +dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 +dnl unless we require an AC_DEFUNed macro: +AC_REQUIRE([LTOPTIONS_VERSION])dnl +AC_REQUIRE([LTSUGAR_VERSION])dnl +AC_REQUIRE([LTVERSION_VERSION])dnl +AC_REQUIRE([LTOBSOLETE_VERSION])dnl +m4_require([_LT_PROG_LTMAIN])dnl + +_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) + +dnl Parse OPTIONS +_LT_SET_OPTIONS([$0], [$1]) + +# This can be used to rebuild libtool when needed +LIBTOOL_DEPS="$ltmain" + +# Always use our own libtool. +LIBTOOL='$(SHELL) $(top_builddir)/libtool' +AC_SUBST(LIBTOOL)dnl + +_LT_SETUP + +# Only expand once: +m4_define([LT_INIT]) +])# LT_INIT + +# Old names: +AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) +AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_PROG_LIBTOOL], []) +dnl AC_DEFUN([AM_PROG_LIBTOOL], []) + + +# _LT_CC_BASENAME(CC) +# ------------------- +# Calculate cc_basename. Skip known compiler wrappers and cross-prefix. +m4_defun([_LT_CC_BASENAME], +[for cc_temp in $1""; do + case $cc_temp in + compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; + distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; + \-*) ;; + *) break;; + esac +done +cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` +]) + + +# _LT_FILEUTILS_DEFAULTS +# ---------------------- +# It is okay to use these file commands and assume they have been set +# sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. +m4_defun([_LT_FILEUTILS_DEFAULTS], +[: ${CP="cp -f"} +: ${MV="mv -f"} +: ${RM="rm -f"} +])# _LT_FILEUTILS_DEFAULTS + + +# _LT_SETUP +# --------- +m4_defun([_LT_SETUP], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl + +_LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl +dnl +_LT_DECL([], [host_alias], [0], [The host system])dnl +_LT_DECL([], [host], [0])dnl +_LT_DECL([], [host_os], [0])dnl +dnl +_LT_DECL([], [build_alias], [0], [The build system])dnl +_LT_DECL([], [build], [0])dnl +_LT_DECL([], [build_os], [0])dnl +dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([LT_PATH_LD])dnl +AC_REQUIRE([LT_PATH_NM])dnl +dnl +AC_REQUIRE([AC_PROG_LN_S])dnl +test -z "$LN_S" && LN_S="ln -s" +_LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl +dnl +AC_REQUIRE([LT_CMD_MAX_LEN])dnl +_LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl +_LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl +dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_CHECK_SHELL_FEATURES])dnl +m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl +m4_require([_LT_CMD_RELOAD])dnl +m4_require([_LT_CHECK_MAGIC_METHOD])dnl +m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl +m4_require([_LT_CMD_OLD_ARCHIVE])dnl +m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +m4_require([_LT_WITH_SYSROOT])dnl + +_LT_CONFIG_LIBTOOL_INIT([ +# See if we are running on zsh, and set the options which allow our +# commands through without removal of \ escapes INIT. +if test -n "\${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi +]) +if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST +fi + +_LT_CHECK_OBJDIR + +m4_require([_LT_TAG_COMPILER])dnl + +case $host_os in +aix3*) + # AIX sometimes has problems with the GCC collect2 program. For some + # reason, if we set the COLLECT_NAMES environment variable, the problems + # vanish in a puff of smoke. + if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES + fi + ;; +esac + +# Global variables: +ofile=libtool +can_build_shared=yes + +# All known linkers require a `.a' archive for static linking (except MSVC, +# which needs '.lib'). +libext=a + +with_gnu_ld="$lt_cv_prog_gnu_ld" + +old_CC="$CC" +old_CFLAGS="$CFLAGS" + +# Set sane defaults for various variables +test -z "$CC" && CC=cc +test -z "$LTCC" && LTCC=$CC +test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS +test -z "$LD" && LD=ld +test -z "$ac_objext" && ac_objext=o + +_LT_CC_BASENAME([$compiler]) + +# Only perform the check for file, if the check method requires it +test -z "$MAGIC_CMD" && MAGIC_CMD=file +case $deplibs_check_method in +file_magic*) + if test "$file_magic_cmd" = '$MAGIC_CMD'; then + _LT_PATH_MAGIC + fi + ;; +esac + +# Use C for the default configuration in the libtool script +LT_SUPPORTED_TAG([CC]) +_LT_LANG_C_CONFIG +_LT_LANG_DEFAULT_CONFIG +_LT_CONFIG_COMMANDS +])# _LT_SETUP + + +# _LT_PREPARE_SED_QUOTE_VARS +# -------------------------- +# Define a few sed substitution that help us do robust quoting. +m4_defun([_LT_PREPARE_SED_QUOTE_VARS], +[# Backslashify metacharacters that are still active within +# double-quoted strings. +sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' + +# Same as above, but do not quote variable references. +double_quote_subst='s/\([["`\\]]\)/\\\1/g' + +# Sed substitution to delay expansion of an escaped shell variable in a +# double_quote_subst'ed string. +delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + +# Sed substitution to delay expansion of an escaped single quote. +delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' + +# Sed substitution to avoid accidental globbing in evaled expressions +no_glob_subst='s/\*/\\\*/g' +]) + +# _LT_PROG_LTMAIN +# --------------- +# Note that this code is called both from `configure', and `config.status' +# now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, +# `config.status' has no value for ac_aux_dir unless we are using Automake, +# so we pass a copy along to make sure it has a sensible value anyway. +m4_defun([_LT_PROG_LTMAIN], +[m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl +_LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) +ltmain="$ac_aux_dir/ltmain.sh" +])# _LT_PROG_LTMAIN + + +## ------------------------------------- ## +## Accumulate code for creating libtool. ## +## ------------------------------------- ## + +# So that we can recreate a full libtool script including additional +# tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS +# in macros and then make a single call at the end using the `libtool' +# label. + + +# _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) +# ---------------------------------------- +# Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. +m4_define([_LT_CONFIG_LIBTOOL_INIT], +[m4_ifval([$1], + [m4_append([_LT_OUTPUT_LIBTOOL_INIT], + [$1 +])])]) + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_INIT]) + + +# _LT_CONFIG_LIBTOOL([COMMANDS]) +# ------------------------------ +# Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. +m4_define([_LT_CONFIG_LIBTOOL], +[m4_ifval([$1], + [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], + [$1 +])])]) + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) + + +# _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) +# ----------------------------------------------------- +m4_defun([_LT_CONFIG_SAVE_COMMANDS], +[_LT_CONFIG_LIBTOOL([$1]) +_LT_CONFIG_LIBTOOL_INIT([$2]) +]) + + +# _LT_FORMAT_COMMENT([COMMENT]) +# ----------------------------- +# Add leading comment marks to the start of each line, and a trailing +# full-stop to the whole comment if one is not present already. +m4_define([_LT_FORMAT_COMMENT], +[m4_ifval([$1], [ +m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], + [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) +)]) + + + +## ------------------------ ## +## FIXME: Eliminate VARNAME ## +## ------------------------ ## + + +# _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) +# ------------------------------------------------------------------- +# CONFIGNAME is the name given to the value in the libtool script. +# VARNAME is the (base) name used in the configure script. +# VALUE may be 0, 1 or 2 for a computed quote escaped value based on +# VARNAME. Any other value will be used directly. +m4_define([_LT_DECL], +[lt_if_append_uniq([lt_decl_varnames], [$2], [, ], + [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], + [m4_ifval([$1], [$1], [$2])]) + lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) + m4_ifval([$4], + [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) + lt_dict_add_subkey([lt_decl_dict], [$2], + [tagged?], [m4_ifval([$5], [yes], [no])])]) +]) + + +# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) +# -------------------------------------------------------- +m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) + + +# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) +# ------------------------------------------------ +m4_define([lt_decl_tag_varnames], +[_lt_decl_filter([tagged?], [yes], $@)]) + + +# _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) +# --------------------------------------------------------- +m4_define([_lt_decl_filter], +[m4_case([$#], + [0], [m4_fatal([$0: too few arguments: $#])], + [1], [m4_fatal([$0: too few arguments: $#: $1])], + [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], + [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], + [lt_dict_filter([lt_decl_dict], $@)])[]dnl +]) + + +# lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) +# -------------------------------------------------- +m4_define([lt_decl_quote_varnames], +[_lt_decl_filter([value], [1], $@)]) + + +# lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) +# --------------------------------------------------- +m4_define([lt_decl_dquote_varnames], +[_lt_decl_filter([value], [2], $@)]) + + +# lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) +# --------------------------------------------------- +m4_define([lt_decl_varnames_tagged], +[m4_assert([$# <= 2])dnl +_$0(m4_quote(m4_default([$1], [[, ]])), + m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), + m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) +m4_define([_lt_decl_varnames_tagged], +[m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) + + +# lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) +# ------------------------------------------------ +m4_define([lt_decl_all_varnames], +[_$0(m4_quote(m4_default([$1], [[, ]])), + m4_if([$2], [], + m4_quote(lt_decl_varnames), + m4_quote(m4_shift($@))))[]dnl +]) +m4_define([_lt_decl_all_varnames], +[lt_join($@, lt_decl_varnames_tagged([$1], + lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl +]) + + +# _LT_CONFIG_STATUS_DECLARE([VARNAME]) +# ------------------------------------ +# Quote a variable value, and forward it to `config.status' so that its +# declaration there will have the same value as in `configure'. VARNAME +# must have a single quote delimited value for this to work. +m4_define([_LT_CONFIG_STATUS_DECLARE], +[$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) + + +# _LT_CONFIG_STATUS_DECLARATIONS +# ------------------------------ +# We delimit libtool config variables with single quotes, so when +# we write them to config.status, we have to be sure to quote all +# embedded single quotes properly. In configure, this macro expands +# each variable declared with _LT_DECL (and _LT_TAGDECL) into: +# +# ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' +m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], +[m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), + [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) + + +# _LT_LIBTOOL_TAGS +# ---------------- +# Output comment and list of tags supported by the script +m4_defun([_LT_LIBTOOL_TAGS], +[_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl +available_tags="_LT_TAGS"dnl +]) + + +# _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) +# ----------------------------------- +# Extract the dictionary values for VARNAME (optionally with TAG) and +# expand to a commented shell variable setting: +# +# # Some comment about what VAR is for. +# visible_name=$lt_internal_name +m4_define([_LT_LIBTOOL_DECLARE], +[_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], + [description])))[]dnl +m4_pushdef([_libtool_name], + m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl +m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), + [0], [_libtool_name=[$]$1], + [1], [_libtool_name=$lt_[]$1], + [2], [_libtool_name=$lt_[]$1], + [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl +m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl +]) + + +# _LT_LIBTOOL_CONFIG_VARS +# ----------------------- +# Produce commented declarations of non-tagged libtool config variables +# suitable for insertion in the LIBTOOL CONFIG section of the `libtool' +# script. Tagged libtool config variables (even for the LIBTOOL CONFIG +# section) are produced by _LT_LIBTOOL_TAG_VARS. +m4_defun([_LT_LIBTOOL_CONFIG_VARS], +[m4_foreach([_lt_var], + m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), + [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) + + +# _LT_LIBTOOL_TAG_VARS(TAG) +# ------------------------- +m4_define([_LT_LIBTOOL_TAG_VARS], +[m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), + [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) + + +# _LT_TAGVAR(VARNAME, [TAGNAME]) +# ------------------------------ +m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) + + +# _LT_CONFIG_COMMANDS +# ------------------- +# Send accumulated output to $CONFIG_STATUS. Thanks to the lists of +# variables for single and double quote escaping we saved from calls +# to _LT_DECL, we can put quote escaped variables declarations +# into `config.status', and then the shell code to quote escape them in +# for loops in `config.status'. Finally, any additional code accumulated +# from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. +m4_defun([_LT_CONFIG_COMMANDS], +[AC_PROVIDE_IFELSE([LT_OUTPUT], + dnl If the libtool generation code has been placed in $CONFIG_LT, + dnl instead of duplicating it all over again into config.status, + dnl then we will have config.status run $CONFIG_LT later, so it + dnl needs to know what name is stored there: + [AC_CONFIG_COMMANDS([libtool], + [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], + dnl If the libtool generation code is destined for config.status, + dnl expand the accumulated commands and init code now: + [AC_CONFIG_COMMANDS([libtool], + [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) +])#_LT_CONFIG_COMMANDS + + +# Initialize. +m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], +[ + +# The HP-UX ksh and POSIX shell print the target directory to stdout +# if CDPATH is set. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH + +sed_quote_subst='$sed_quote_subst' +double_quote_subst='$double_quote_subst' +delay_variable_subst='$delay_variable_subst' +_LT_CONFIG_STATUS_DECLARATIONS +LTCC='$LTCC' +LTCFLAGS='$LTCFLAGS' +compiler='$compiler_DEFAULT' + +# A function that is used when there is no print builtin or printf. +func_fallback_echo () +{ + eval 'cat <<_LTECHO_EOF +\$[]1 +_LTECHO_EOF' +} + +# Quote evaled strings. +for var in lt_decl_all_varnames([[ \ +]], lt_decl_quote_varnames); do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[[\\\\\\\`\\"\\\$]]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +# Double-quote double-evaled strings. +for var in lt_decl_all_varnames([[ \ +]], lt_decl_dquote_varnames); do + case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in + *[[\\\\\\\`\\"\\\$]]*) + eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" + ;; + *) + eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" + ;; + esac +done + +_LT_OUTPUT_LIBTOOL_INIT +]) + +# _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) +# ------------------------------------ +# Generate a child script FILE with all initialization necessary to +# reuse the environment learned by the parent script, and make the +# file executable. If COMMENT is supplied, it is inserted after the +# `#!' sequence but before initialization text begins. After this +# macro, additional text can be appended to FILE to form the body of +# the child script. The macro ends with non-zero status if the +# file could not be fully written (such as if the disk is full). +m4_ifdef([AS_INIT_GENERATED], +[m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], +[m4_defun([_LT_GENERATED_FILE_INIT], +[m4_require([AS_PREPARE])]dnl +[m4_pushdef([AS_MESSAGE_LOG_FD])]dnl +[lt_write_fail=0 +cat >$1 <<_ASEOF || lt_write_fail=1 +#! $SHELL +# Generated by $as_me. +$2 +SHELL=\${CONFIG_SHELL-$SHELL} +export SHELL +_ASEOF +cat >>$1 <<\_ASEOF || lt_write_fail=1 +AS_SHELL_SANITIZE +_AS_PREPARE +exec AS_MESSAGE_FD>&1 +_ASEOF +test $lt_write_fail = 0 && chmod +x $1[]dnl +m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT + +# LT_OUTPUT +# --------- +# This macro allows early generation of the libtool script (before +# AC_OUTPUT is called), incase it is used in configure for compilation +# tests. +AC_DEFUN([LT_OUTPUT], +[: ${CONFIG_LT=./config.lt} +AC_MSG_NOTICE([creating $CONFIG_LT]) +_LT_GENERATED_FILE_INIT(["$CONFIG_LT"], +[# Run this file to recreate a libtool stub with the current configuration.]) + +cat >>"$CONFIG_LT" <<\_LTEOF +lt_cl_silent=false +exec AS_MESSAGE_LOG_FD>>config.log +{ + echo + AS_BOX([Running $as_me.]) +} >&AS_MESSAGE_LOG_FD + +lt_cl_help="\ +\`$as_me' creates a local libtool stub from the current configuration, +for use in further configure time tests before the real libtool is +generated. + +Usage: $[0] [[OPTIONS]] + + -h, --help print this help, then exit + -V, --version print version number, then exit + -q, --quiet do not print progress messages + -d, --debug don't remove temporary files + +Report bugs to ." + +lt_cl_version="\ +m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl +m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) +configured by $[0], generated by m4_PACKAGE_STRING. + +Copyright (C) 2011 Free Software Foundation, Inc. +This config.lt script is free software; the Free Software Foundation +gives unlimited permision to copy, distribute and modify it." + +while test $[#] != 0 +do + case $[1] in + --version | --v* | -V ) + echo "$lt_cl_version"; exit 0 ;; + --help | --h* | -h ) + echo "$lt_cl_help"; exit 0 ;; + --debug | --d* | -d ) + debug=: ;; + --quiet | --q* | --silent | --s* | -q ) + lt_cl_silent=: ;; + + -*) AC_MSG_ERROR([unrecognized option: $[1] +Try \`$[0] --help' for more information.]) ;; + + *) AC_MSG_ERROR([unrecognized argument: $[1] +Try \`$[0] --help' for more information.]) ;; + esac + shift +done + +if $lt_cl_silent; then + exec AS_MESSAGE_FD>/dev/null +fi +_LTEOF + +cat >>"$CONFIG_LT" <<_LTEOF +_LT_OUTPUT_LIBTOOL_COMMANDS_INIT +_LTEOF + +cat >>"$CONFIG_LT" <<\_LTEOF +AC_MSG_NOTICE([creating $ofile]) +_LT_OUTPUT_LIBTOOL_COMMANDS +AS_EXIT(0) +_LTEOF +chmod +x "$CONFIG_LT" + +# configure is writing to config.log, but config.lt does its own redirection, +# appending to config.log, which fails on DOS, as config.log is still kept +# open by configure. Here we exec the FD to /dev/null, effectively closing +# config.log, so it can be properly (re)opened and appended to by config.lt. +lt_cl_success=: +test "$silent" = yes && + lt_config_lt_args="$lt_config_lt_args --quiet" +exec AS_MESSAGE_LOG_FD>/dev/null +$SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false +exec AS_MESSAGE_LOG_FD>>config.log +$lt_cl_success || AS_EXIT(1) +])# LT_OUTPUT + + +# _LT_CONFIG(TAG) +# --------------- +# If TAG is the built-in tag, create an initial libtool script with a +# default configuration from the untagged config vars. Otherwise add code +# to config.status for appending the configuration named by TAG from the +# matching tagged config vars. +m4_defun([_LT_CONFIG], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +_LT_CONFIG_SAVE_COMMANDS([ + m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl + m4_if(_LT_TAG, [C], [ + # See if we are running on zsh, and set the options which allow our + # commands through without removal of \ escapes. + if test -n "${ZSH_VERSION+set}" ; then + setopt NO_GLOB_SUBST + fi + + cfgfile="${ofile}T" + trap "$RM \"$cfgfile\"; exit 1" 1 2 15 + $RM "$cfgfile" + + cat <<_LT_EOF >> "$cfgfile" +#! $SHELL + +# `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. +# Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION +# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: +# NOTE: Changes made to this file will be lost: look at ltmain.sh. +# +_LT_COPYING +_LT_LIBTOOL_TAGS + +# ### BEGIN LIBTOOL CONFIG +_LT_LIBTOOL_CONFIG_VARS +_LT_LIBTOOL_TAG_VARS +# ### END LIBTOOL CONFIG + +_LT_EOF + + case $host_os in + aix3*) + cat <<\_LT_EOF >> "$cfgfile" +# AIX sometimes has problems with the GCC collect2 program. For some +# reason, if we set the COLLECT_NAMES environment variable, the problems +# vanish in a puff of smoke. +if test "X${COLLECT_NAMES+set}" != Xset; then + COLLECT_NAMES= + export COLLECT_NAMES +fi +_LT_EOF + ;; + esac + + _LT_PROG_LTMAIN + + # We use sed instead of cat because bash on DJGPP gets confused if + # if finds mixed CR/LF and LF-only lines. Since sed operates in + # text mode, it properly converts lines to CR/LF. This bash problem + # is reportedly fixed, but why not run on old versions too? + sed '$q' "$ltmain" >> "$cfgfile" \ + || (rm -f "$cfgfile"; exit 1) + + _LT_PROG_REPLACE_SHELLFNS + + mv -f "$cfgfile" "$ofile" || + (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") + chmod +x "$ofile" +], +[cat <<_LT_EOF >> "$ofile" + +dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded +dnl in a comment (ie after a #). +# ### BEGIN LIBTOOL TAG CONFIG: $1 +_LT_LIBTOOL_TAG_VARS(_LT_TAG) +# ### END LIBTOOL TAG CONFIG: $1 +_LT_EOF +])dnl /m4_if +], +[m4_if([$1], [], [ + PACKAGE='$PACKAGE' + VERSION='$VERSION' + TIMESTAMP='$TIMESTAMP' + RM='$RM' + ofile='$ofile'], []) +])dnl /_LT_CONFIG_SAVE_COMMANDS +])# _LT_CONFIG + + +# LT_SUPPORTED_TAG(TAG) +# --------------------- +# Trace this macro to discover what tags are supported by the libtool +# --tag option, using: +# autoconf --trace 'LT_SUPPORTED_TAG:$1' +AC_DEFUN([LT_SUPPORTED_TAG], []) + + +# C support is built-in for now +m4_define([_LT_LANG_C_enabled], []) +m4_define([_LT_TAGS], []) + + +# LT_LANG(LANG) +# ------------- +# Enable libtool support for the given language if not already enabled. +AC_DEFUN([LT_LANG], +[AC_BEFORE([$0], [LT_OUTPUT])dnl +m4_case([$1], + [C], [_LT_LANG(C)], + [C++], [_LT_LANG(CXX)], + [Go], [_LT_LANG(GO)], + [Java], [_LT_LANG(GCJ)], + [Fortran 77], [_LT_LANG(F77)], + [Fortran], [_LT_LANG(FC)], + [Windows Resource], [_LT_LANG(RC)], + [m4_ifdef([_LT_LANG_]$1[_CONFIG], + [_LT_LANG($1)], + [m4_fatal([$0: unsupported language: "$1"])])])dnl +])# LT_LANG + + +# _LT_LANG(LANGNAME) +# ------------------ +m4_defun([_LT_LANG], +[m4_ifdef([_LT_LANG_]$1[_enabled], [], + [LT_SUPPORTED_TAG([$1])dnl + m4_append([_LT_TAGS], [$1 ])dnl + m4_define([_LT_LANG_]$1[_enabled], [])dnl + _LT_LANG_$1_CONFIG($1)])dnl +])# _LT_LANG + + +m4_ifndef([AC_PROG_GO], [ +############################################################ +# NOTE: This macro has been submitted for inclusion into # +# GNU Autoconf as AC_PROG_GO. When it is available in # +# a released version of Autoconf we should remove this # +# macro and use it instead. # +############################################################ +m4_defun([AC_PROG_GO], +[AC_LANG_PUSH(Go)dnl +AC_ARG_VAR([GOC], [Go compiler command])dnl +AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl +_AC_ARG_VAR_LDFLAGS()dnl +AC_CHECK_TOOL(GOC, gccgo) +if test -z "$GOC"; then + if test -n "$ac_tool_prefix"; then + AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) + fi +fi +if test -z "$GOC"; then + AC_CHECK_PROG(GOC, gccgo, gccgo, false) +fi +])#m4_defun +])#m4_ifndef + + +# _LT_LANG_DEFAULT_CONFIG +# ----------------------- +m4_defun([_LT_LANG_DEFAULT_CONFIG], +[AC_PROVIDE_IFELSE([AC_PROG_CXX], + [LT_LANG(CXX)], + [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) + +AC_PROVIDE_IFELSE([AC_PROG_F77], + [LT_LANG(F77)], + [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) + +AC_PROVIDE_IFELSE([AC_PROG_FC], + [LT_LANG(FC)], + [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) + +dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal +dnl pulling things in needlessly. +AC_PROVIDE_IFELSE([AC_PROG_GCJ], + [LT_LANG(GCJ)], + [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], + [LT_LANG(GCJ)], + [AC_PROVIDE_IFELSE([LT_PROG_GCJ], + [LT_LANG(GCJ)], + [m4_ifdef([AC_PROG_GCJ], + [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) + m4_ifdef([A][M_PROG_GCJ], + [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) + m4_ifdef([LT_PROG_GCJ], + [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) + +AC_PROVIDE_IFELSE([AC_PROG_GO], + [LT_LANG(GO)], + [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) + +AC_PROVIDE_IFELSE([LT_PROG_RC], + [LT_LANG(RC)], + [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) +])# _LT_LANG_DEFAULT_CONFIG + +# Obsolete macros: +AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) +AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) +AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) +AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) +AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_CXX], []) +dnl AC_DEFUN([AC_LIBTOOL_F77], []) +dnl AC_DEFUN([AC_LIBTOOL_FC], []) +dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) +dnl AC_DEFUN([AC_LIBTOOL_RC], []) + + +# _LT_TAG_COMPILER +# ---------------- +m4_defun([_LT_TAG_COMPILER], +[AC_REQUIRE([AC_PROG_CC])dnl + +_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl +_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl +_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl +_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl + +# If no C compiler was specified, use CC. +LTCC=${LTCC-"$CC"} + +# If no C compiler flags were specified, use CFLAGS. +LTCFLAGS=${LTCFLAGS-"$CFLAGS"} + +# Allow CC to be a program name with arguments. +compiler=$CC +])# _LT_TAG_COMPILER + + +# _LT_COMPILER_BOILERPLATE +# ------------------------ +# Check for compiler boilerplate output or warnings with +# the simple compiler test code. +m4_defun([_LT_COMPILER_BOILERPLATE], +[m4_require([_LT_DECL_SED])dnl +ac_outfile=conftest.$ac_objext +echo "$lt_simple_compile_test_code" >conftest.$ac_ext +eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_compiler_boilerplate=`cat conftest.err` +$RM conftest* +])# _LT_COMPILER_BOILERPLATE + + +# _LT_LINKER_BOILERPLATE +# ---------------------- +# Check for linker boilerplate output or warnings with +# the simple link test code. +m4_defun([_LT_LINKER_BOILERPLATE], +[m4_require([_LT_DECL_SED])dnl +ac_outfile=conftest.$ac_objext +echo "$lt_simple_link_test_code" >conftest.$ac_ext +eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err +_lt_linker_boilerplate=`cat conftest.err` +$RM -r conftest* +])# _LT_LINKER_BOILERPLATE + +# _LT_REQUIRED_DARWIN_CHECKS +# ------------------------- +m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ + case $host_os in + rhapsody* | darwin*) + AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) + AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) + AC_CHECK_TOOL([LIPO], [lipo], [:]) + AC_CHECK_TOOL([OTOOL], [otool], [:]) + AC_CHECK_TOOL([OTOOL64], [otool64], [:]) + _LT_DECL([], [DSYMUTIL], [1], + [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) + _LT_DECL([], [NMEDIT], [1], + [Tool to change global to local symbols on Mac OS X]) + _LT_DECL([], [LIPO], [1], + [Tool to manipulate fat objects and archives on Mac OS X]) + _LT_DECL([], [OTOOL], [1], + [ldd/readelf like tool for Mach-O binaries on Mac OS X]) + _LT_DECL([], [OTOOL64], [1], + [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) + + AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], + [lt_cv_apple_cc_single_mod=no + if test -z "${LT_MULTI_MODULE}"; then + # By default we will add the -single_module flag. You can override + # by either setting the environment variable LT_MULTI_MODULE + # non-empty at configure time, or by adding -multi_module to the + # link flags. + rm -rf libconftest.dylib* + echo "int foo(void){return 1;}" > conftest.c + echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ +-dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ + -dynamiclib -Wl,-single_module conftest.c 2>conftest.err + _lt_result=$? + # If there is a non-empty error log, and "single_module" + # appears in it, assume the flag caused a linker warning + if test -s conftest.err && $GREP single_module conftest.err; then + cat conftest.err >&AS_MESSAGE_LOG_FD + # Otherwise, if the output was created with a 0 exit code from + # the compiler, it worked. + elif test -f libconftest.dylib && test $_lt_result -eq 0; then + lt_cv_apple_cc_single_mod=yes + else + cat conftest.err >&AS_MESSAGE_LOG_FD + fi + rm -rf libconftest.dylib* + rm -f conftest.* + fi]) + + AC_CACHE_CHECK([for -exported_symbols_list linker flag], + [lt_cv_ld_exported_symbols_list], + [lt_cv_ld_exported_symbols_list=no + save_LDFLAGS=$LDFLAGS + echo "_main" > conftest.sym + LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [lt_cv_ld_exported_symbols_list=yes], + [lt_cv_ld_exported_symbols_list=no]) + LDFLAGS="$save_LDFLAGS" + ]) + + AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], + [lt_cv_ld_force_load=no + cat > conftest.c << _LT_EOF +int forced_loaded() { return 2;} +_LT_EOF + echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD + echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD + $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD + echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD + $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD + cat > conftest.c << _LT_EOF +int main() { return 0;} +_LT_EOF + echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD + $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err + _lt_result=$? + if test -s conftest.err && $GREP force_load conftest.err; then + cat conftest.err >&AS_MESSAGE_LOG_FD + elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then + lt_cv_ld_force_load=yes + else + cat conftest.err >&AS_MESSAGE_LOG_FD + fi + rm -f conftest.err libconftest.a conftest conftest.c + rm -rf conftest.dSYM + ]) + case $host_os in + rhapsody* | darwin1.[[012]]) + _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; + darwin1.*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + darwin*) # darwin 5.x on + # if running on 10.5 or later, the deployment target defaults + # to the OS version, if on x86, and 10.4, the deployment + # target defaults to 10.4. Don't you love it? + case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in + 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + 10.[[012]]*) + _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; + 10.*) + _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; + esac + ;; + esac + if test "$lt_cv_apple_cc_single_mod" = "yes"; then + _lt_dar_single_mod='$single_module' + fi + if test "$lt_cv_ld_exported_symbols_list" = "yes"; then + _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' + else + _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' + fi + if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then + _lt_dsymutil='~$DSYMUTIL $lib || :' + else + _lt_dsymutil= + fi + ;; + esac +]) + + +# _LT_DARWIN_LINKER_FEATURES([TAG]) +# --------------------------------- +# Checks for linker and compiler features on darwin +m4_defun([_LT_DARWIN_LINKER_FEATURES], +[ + m4_require([_LT_REQUIRED_DARWIN_CHECKS]) + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_automatic, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + if test "$lt_cv_ld_force_load" = "yes"; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' + m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], + [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) + else + _LT_TAGVAR(whole_archive_flag_spec, $1)='' + fi + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" + case $cc_basename in + ifort*) _lt_dar_can_shared=yes ;; + *) _lt_dar_can_shared=$GCC ;; + esac + if test "$_lt_dar_can_shared" = "yes"; then + output_verbose_link_cmd=func_echo_all + _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" + _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" + _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" + m4_if([$1], [CXX], +[ if test "$lt_cv_apple_cc_single_mod" != "yes"; then + _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" + _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" + fi +],[]) + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi +]) + +# _LT_SYS_MODULE_PATH_AIX([TAGNAME]) +# ---------------------------------- +# Links a minimal program and checks the executable +# for the system default hardcoded library path. In most cases, +# this is /usr/lib:/lib, but when the MPI compilers are used +# the location of the communication and MPI libs are included too. +# If we don't find anything, use the default library path according +# to the aix ld manual. +# Store the results from the different compilers for each TAGNAME. +# Allow to override them for all tags through lt_cv_aix_libpath. +m4_defun([_LT_SYS_MODULE_PATH_AIX], +[m4_require([_LT_DECL_SED])dnl +if test "${lt_cv_aix_libpath+set}" = set; then + aix_libpath=$lt_cv_aix_libpath +else + AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], + [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ + lt_aix_libpath_sed='[ + /Import File Strings/,/^$/ { + /^0/ { + s/^0 *\([^ ]*\) *$/\1/ + p + } + }]' + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + # Check for a 64-bit object if we didn't find anything. + if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` + fi],[]) + if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then + _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib" + fi + ]) + aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) +fi +])# _LT_SYS_MODULE_PATH_AIX + + +# _LT_SHELL_INIT(ARG) +# ------------------- +m4_define([_LT_SHELL_INIT], +[m4_divert_text([M4SH-INIT], [$1 +])])# _LT_SHELL_INIT + + + +# _LT_PROG_ECHO_BACKSLASH +# ----------------------- +# Find how we can fake an echo command that does not interpret backslash. +# In particular, with Autoconf 2.60 or later we add some code to the start +# of the generated configure script which will find a shell with a builtin +# printf (which we can use as an echo command). +m4_defun([_LT_PROG_ECHO_BACKSLASH], +[ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO +ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + +AC_MSG_CHECKING([how to print strings]) +# Test print first, because it will be a builtin if present. +if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ + test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='print -r --' +elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then + ECHO='printf %s\n' +else + # Use this function as a fallback that always works. + func_fallback_echo () + { + eval 'cat <<_LTECHO_EOF +$[]1 +_LTECHO_EOF' + } + ECHO='func_fallback_echo' +fi + +# func_echo_all arg... +# Invoke $ECHO with all args, space-separated. +func_echo_all () +{ + $ECHO "$*" +} + +case "$ECHO" in + printf*) AC_MSG_RESULT([printf]) ;; + print*) AC_MSG_RESULT([print -r]) ;; + *) AC_MSG_RESULT([cat]) ;; +esac + +m4_ifdef([_AS_DETECT_SUGGESTED], +[_AS_DETECT_SUGGESTED([ + test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( + ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' + ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO + ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO + PATH=/empty FPATH=/empty; export PATH FPATH + test "X`printf %s $ECHO`" = "X$ECHO" \ + || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) + +_LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) +_LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) +])# _LT_PROG_ECHO_BACKSLASH + + +# _LT_WITH_SYSROOT +# ---------------- +AC_DEFUN([_LT_WITH_SYSROOT], +[AC_MSG_CHECKING([for sysroot]) +AC_ARG_WITH([sysroot], +[ --with-sysroot[=DIR] Search for dependent libraries within DIR + (or the compiler's sysroot if not specified).], +[], [with_sysroot=no]) + +dnl lt_sysroot will always be passed unquoted. We quote it here +dnl in case the user passed a directory name. +lt_sysroot= +case ${with_sysroot} in #( + yes) + if test "$GCC" = yes; then + lt_sysroot=`$CC --print-sysroot 2>/dev/null` + fi + ;; #( + /*) + lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` + ;; #( + no|'') + ;; #( + *) + AC_MSG_RESULT([${with_sysroot}]) + AC_MSG_ERROR([The sysroot must be an absolute path.]) + ;; +esac + + AC_MSG_RESULT([${lt_sysroot:-no}]) +_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl +[dependent libraries, and in which our libraries should be installed.])]) + +# _LT_ENABLE_LOCK +# --------------- +m4_defun([_LT_ENABLE_LOCK], +[AC_ARG_ENABLE([libtool-lock], + [AS_HELP_STRING([--disable-libtool-lock], + [avoid locking (might break parallel builds)])]) +test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes + +# Some flags need to be propagated to the compiler or linker for good +# libtool support. +case $host in +ia64-*-hpux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.$ac_objext` in + *ELF-32*) + HPUX_IA64_MODE="32" + ;; + *ELF-64*) + HPUX_IA64_MODE="64" + ;; + esac + fi + rm -rf conftest* + ;; +*-*-irix6*) + # Find out which ABI we are using. + echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + if test "$lt_cv_prog_gnu_ld" = yes; then + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -melf32bsmip" + ;; + *N32*) + LD="${LD-ld} -melf32bmipn32" + ;; + *64-bit*) + LD="${LD-ld} -melf64bmip" + ;; + esac + else + case `/usr/bin/file conftest.$ac_objext` in + *32-bit*) + LD="${LD-ld} -32" + ;; + *N32*) + LD="${LD-ld} -n32" + ;; + *64-bit*) + LD="${LD-ld} -64" + ;; + esac + fi + fi + rm -rf conftest* + ;; + +x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ +s390*-*linux*|s390*-*tpf*|sparc*-*linux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *32-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_i386_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_i386" + ;; + ppc64-*linux*|powerpc64-*linux*) + LD="${LD-ld} -m elf32ppclinux" + ;; + s390x-*linux*) + LD="${LD-ld} -m elf_s390" + ;; + sparc64-*linux*) + LD="${LD-ld} -m elf32_sparc" + ;; + esac + ;; + *64-bit*) + case $host in + x86_64-*kfreebsd*-gnu) + LD="${LD-ld} -m elf_x86_64_fbsd" + ;; + x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + ppc*-*linux*|powerpc*-*linux*) + LD="${LD-ld} -m elf64ppc" + ;; + s390*-*linux*|s390*-*tpf*) + LD="${LD-ld} -m elf64_s390" + ;; + sparc*-*linux*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; + +*-*-sco3.2v5*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" + AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, + [AC_LANG_PUSH(C) + AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) + AC_LANG_POP]) + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS="$SAVE_CFLAGS" + fi + ;; +*-*solaris*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) + case $host in + i?86-*-solaris*) + LD="${LD-ld} -m elf_x86_64" + ;; + sparc*-*-solaris*) + LD="${LD-ld} -m elf64_sparc" + ;; + esac + # GNU ld 2.21 introduced _sol2 emulations. Use them if available. + if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then + LD="${LD-ld}_sol2" + fi + ;; + *) + if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then + LD="${LD-ld} -64" + fi + ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; +esac + +need_locks="$enable_libtool_lock" +])# _LT_ENABLE_LOCK + + +# _LT_PROG_AR +# ----------- +m4_defun([_LT_PROG_AR], +[AC_CHECK_TOOLS(AR, [ar], false) +: ${AR=ar} +: ${AR_FLAGS=cru} +_LT_DECL([], [AR], [1], [The archiver]) +_LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) + +AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], + [lt_cv_ar_at_file=no + AC_COMPILE_IFELSE([AC_LANG_PROGRAM], + [echo conftest.$ac_objext > conftest.lst + lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' + AC_TRY_EVAL([lt_ar_try]) + if test "$ac_status" -eq 0; then + # Ensure the archiver fails upon bogus file names. + rm -f conftest.$ac_objext libconftest.a + AC_TRY_EVAL([lt_ar_try]) + if test "$ac_status" -ne 0; then + lt_cv_ar_at_file=@ + fi + fi + rm -f conftest.* libconftest.a + ]) + ]) + +if test "x$lt_cv_ar_at_file" = xno; then + archiver_list_spec= +else + archiver_list_spec=$lt_cv_ar_at_file +fi +_LT_DECL([], [archiver_list_spec], [1], + [How to feed a file listing to the archiver]) +])# _LT_PROG_AR + + +# _LT_CMD_OLD_ARCHIVE +# ------------------- +m4_defun([_LT_CMD_OLD_ARCHIVE], +[_LT_PROG_AR + +AC_CHECK_TOOL(STRIP, strip, :) +test -z "$STRIP" && STRIP=: +_LT_DECL([], [STRIP], [1], [A symbol stripping program]) + +AC_CHECK_TOOL(RANLIB, ranlib, :) +test -z "$RANLIB" && RANLIB=: +_LT_DECL([], [RANLIB], [1], + [Commands used to install an old-style archive]) + +# Determine commands to create old-style static archives. +old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' +old_postinstall_cmds='chmod 644 $oldlib' +old_postuninstall_cmds= + +if test -n "$RANLIB"; then + case $host_os in + openbsd*) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" + ;; + *) + old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" + ;; + esac + old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" +fi + +case $host_os in + darwin*) + lock_old_archive_extraction=yes ;; + *) + lock_old_archive_extraction=no ;; +esac +_LT_DECL([], [old_postinstall_cmds], [2]) +_LT_DECL([], [old_postuninstall_cmds], [2]) +_LT_TAGDECL([], [old_archive_cmds], [2], + [Commands used to build an old-style archive]) +_LT_DECL([], [lock_old_archive_extraction], [0], + [Whether to use a lock for old archive extraction]) +])# _LT_CMD_OLD_ARCHIVE + + +# _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, +# [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) +# ---------------------------------------------------------------- +# Check whether the given compiler option works +AC_DEFUN([_LT_COMPILER_OPTION], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_CACHE_CHECK([$1], [$2], + [$2=no + m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$3" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + fi + $RM conftest* +]) + +if test x"[$]$2" = xyes; then + m4_if([$5], , :, [$5]) +else + m4_if([$6], , :, [$6]) +fi +])# _LT_COMPILER_OPTION + +# Old name: +AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) + + +# _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, +# [ACTION-SUCCESS], [ACTION-FAILURE]) +# ---------------------------------------------------- +# Check whether the given linker option works +AC_DEFUN([_LT_LINKER_OPTION], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_SED])dnl +AC_CACHE_CHECK([$1], [$2], + [$2=no + save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS $3" + echo "$lt_simple_link_test_code" > conftest.$ac_ext + if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then + # The linker can only warn and ignore the option if not recognized + # So say no if there are warnings + if test -s conftest.err; then + # Append any errors to the config.log. + cat conftest.err 1>&AS_MESSAGE_LOG_FD + $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + else + $2=yes + fi + fi + $RM -r conftest* + LDFLAGS="$save_LDFLAGS" +]) + +if test x"[$]$2" = xyes; then + m4_if([$4], , :, [$4]) +else + m4_if([$5], , :, [$5]) +fi +])# _LT_LINKER_OPTION + +# Old name: +AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) + + +# LT_CMD_MAX_LEN +#--------------- +AC_DEFUN([LT_CMD_MAX_LEN], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +# find the maximum length of command line arguments +AC_MSG_CHECKING([the maximum length of command line arguments]) +AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl + i=0 + teststring="ABCD" + + case $build_os in + msdosdjgpp*) + # On DJGPP, this test can blow up pretty badly due to problems in libc + # (any single argument exceeding 2000 bytes causes a buffer overrun + # during glob expansion). Even if it were fixed, the result of this + # check would be larger than it should be. + lt_cv_sys_max_cmd_len=12288; # 12K is about right + ;; + + gnu*) + # Under GNU Hurd, this test is not required because there is + # no limit to the length of command line arguments. + # Libtool will interpret -1 as no limit whatsoever + lt_cv_sys_max_cmd_len=-1; + ;; + + cygwin* | mingw* | cegcc*) + # On Win9x/ME, this test blows up -- it succeeds, but takes + # about 5 minutes as the teststring grows exponentially. + # Worse, since 9x/ME are not pre-emptively multitasking, + # you end up with a "frozen" computer, even though with patience + # the test eventually succeeds (with a max line length of 256k). + # Instead, let's just punt: use the minimum linelength reported by + # all of the supported platforms: 8192 (on NT/2K/XP). + lt_cv_sys_max_cmd_len=8192; + ;; + + mint*) + # On MiNT this can take a long time and run out of memory. + lt_cv_sys_max_cmd_len=8192; + ;; + + amigaos*) + # On AmigaOS with pdksh, this test takes hours, literally. + # So we just punt and use a minimum line length of 8192. + lt_cv_sys_max_cmd_len=8192; + ;; + + netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) + # This has been around since 386BSD, at least. Likely further. + if test -x /sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` + elif test -x /usr/sbin/sysctl; then + lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` + else + lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs + fi + # And add a safety zone + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + ;; + + interix*) + # We know the value 262144 and hardcode it with a safety zone (like BSD) + lt_cv_sys_max_cmd_len=196608 + ;; + + os2*) + # The test takes a long time on OS/2. + lt_cv_sys_max_cmd_len=8192 + ;; + + osf*) + # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure + # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not + # nice to cause kernel panics so lets avoid the loop below. + # First set a reasonable default. + lt_cv_sys_max_cmd_len=16384 + # + if test -x /sbin/sysconfig; then + case `/sbin/sysconfig -q proc exec_disable_arg_limit` in + *1*) lt_cv_sys_max_cmd_len=-1 ;; + esac + fi + ;; + sco3.2v5*) + lt_cv_sys_max_cmd_len=102400 + ;; + sysv5* | sco5v6* | sysv4.2uw2*) + kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` + if test -n "$kargmax"; then + lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` + else + lt_cv_sys_max_cmd_len=32768 + fi + ;; + *) + lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` + if test -n "$lt_cv_sys_max_cmd_len"; then + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` + else + # Make teststring a little bigger before we do anything with it. + # a 1K string should be a reasonable start. + for i in 1 2 3 4 5 6 7 8 ; do + teststring=$teststring$teststring + done + SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. + while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \ + = "X$teststring$teststring"; } >/dev/null 2>&1 && + test $i != 17 # 1/2 MB should be enough + do + i=`expr $i + 1` + teststring=$teststring$teststring + done + # Only check the string length outside the loop. + lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` + teststring= + # Add a significant safety factor because C++ compilers can tack on + # massive amounts of additional arguments before passing them to the + # linker. It appears as though 1/2 is a usable value. + lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` + fi + ;; + esac +]) +if test -n $lt_cv_sys_max_cmd_len ; then + AC_MSG_RESULT($lt_cv_sys_max_cmd_len) +else + AC_MSG_RESULT(none) +fi +max_cmd_len=$lt_cv_sys_max_cmd_len +_LT_DECL([], [max_cmd_len], [0], + [What is the maximum length of a command?]) +])# LT_CMD_MAX_LEN + +# Old name: +AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) + + +# _LT_HEADER_DLFCN +# ---------------- +m4_defun([_LT_HEADER_DLFCN], +[AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl +])# _LT_HEADER_DLFCN + + +# _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, +# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) +# ---------------------------------------------------------------- +m4_defun([_LT_TRY_DLOPEN_SELF], +[m4_require([_LT_HEADER_DLFCN])dnl +if test "$cross_compiling" = yes; then : + [$4] +else + lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 + lt_status=$lt_dlunknown + cat > conftest.$ac_ext <<_LT_EOF +[#line $LINENO "configure" +#include "confdefs.h" + +#if HAVE_DLFCN_H +#include +#endif + +#include + +#ifdef RTLD_GLOBAL +# define LT_DLGLOBAL RTLD_GLOBAL +#else +# ifdef DL_GLOBAL +# define LT_DLGLOBAL DL_GLOBAL +# else +# define LT_DLGLOBAL 0 +# endif +#endif + +/* We may have to define LT_DLLAZY_OR_NOW in the command line if we + find out it does not work in some platform. */ +#ifndef LT_DLLAZY_OR_NOW +# ifdef RTLD_LAZY +# define LT_DLLAZY_OR_NOW RTLD_LAZY +# else +# ifdef DL_LAZY +# define LT_DLLAZY_OR_NOW DL_LAZY +# else +# ifdef RTLD_NOW +# define LT_DLLAZY_OR_NOW RTLD_NOW +# else +# ifdef DL_NOW +# define LT_DLLAZY_OR_NOW DL_NOW +# else +# define LT_DLLAZY_OR_NOW 0 +# endif +# endif +# endif +# endif +#endif + +/* When -fvisbility=hidden is used, assume the code has been annotated + correspondingly for the symbols needed. */ +#if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) +int fnord () __attribute__((visibility("default"))); +#endif + +int fnord () { return 42; } +int main () +{ + void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); + int status = $lt_dlunknown; + + if (self) + { + if (dlsym (self,"fnord")) status = $lt_dlno_uscore; + else + { + if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; + else puts (dlerror ()); + } + /* dlclose (self); */ + } + else + puts (dlerror ()); + + return status; +}] +_LT_EOF + if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then + (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null + lt_status=$? + case x$lt_status in + x$lt_dlno_uscore) $1 ;; + x$lt_dlneed_uscore) $2 ;; + x$lt_dlunknown|x*) $3 ;; + esac + else : + # compilation failed + $3 + fi +fi +rm -fr conftest* +])# _LT_TRY_DLOPEN_SELF + + +# LT_SYS_DLOPEN_SELF +# ------------------ +AC_DEFUN([LT_SYS_DLOPEN_SELF], +[m4_require([_LT_HEADER_DLFCN])dnl +if test "x$enable_dlopen" != xyes; then + enable_dlopen=unknown + enable_dlopen_self=unknown + enable_dlopen_self_static=unknown +else + lt_cv_dlopen=no + lt_cv_dlopen_libs= + + case $host_os in + beos*) + lt_cv_dlopen="load_add_on" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ;; + + mingw* | pw32* | cegcc*) + lt_cv_dlopen="LoadLibrary" + lt_cv_dlopen_libs= + ;; + + cygwin*) + lt_cv_dlopen="dlopen" + lt_cv_dlopen_libs= + ;; + + darwin*) + # if libdl is installed we need to link against it + AC_CHECK_LIB([dl], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ + lt_cv_dlopen="dyld" + lt_cv_dlopen_libs= + lt_cv_dlopen_self=yes + ]) + ;; + + *) + AC_CHECK_FUNC([shl_load], + [lt_cv_dlopen="shl_load"], + [AC_CHECK_LIB([dld], [shl_load], + [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], + [AC_CHECK_FUNC([dlopen], + [lt_cv_dlopen="dlopen"], + [AC_CHECK_LIB([dl], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], + [AC_CHECK_LIB([svld], [dlopen], + [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], + [AC_CHECK_LIB([dld], [dld_link], + [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) + ]) + ]) + ]) + ]) + ]) + ;; + esac + + if test "x$lt_cv_dlopen" != xno; then + enable_dlopen=yes + else + enable_dlopen=no + fi + + case $lt_cv_dlopen in + dlopen) + save_CPPFLAGS="$CPPFLAGS" + test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + + save_LDFLAGS="$LDFLAGS" + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" + + save_LIBS="$LIBS" + LIBS="$lt_cv_dlopen_libs $LIBS" + + AC_CACHE_CHECK([whether a program can dlopen itself], + lt_cv_dlopen_self, [dnl + _LT_TRY_DLOPEN_SELF( + lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, + lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) + ]) + + if test "x$lt_cv_dlopen_self" = xyes; then + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" + AC_CACHE_CHECK([whether a statically linked program can dlopen itself], + lt_cv_dlopen_self_static, [dnl + _LT_TRY_DLOPEN_SELF( + lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, + lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) + ]) + fi + + CPPFLAGS="$save_CPPFLAGS" + LDFLAGS="$save_LDFLAGS" + LIBS="$save_LIBS" + ;; + esac + + case $lt_cv_dlopen_self in + yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; + *) enable_dlopen_self=unknown ;; + esac + + case $lt_cv_dlopen_self_static in + yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; + *) enable_dlopen_self_static=unknown ;; + esac +fi +_LT_DECL([dlopen_support], [enable_dlopen], [0], + [Whether dlopen is supported]) +_LT_DECL([dlopen_self], [enable_dlopen_self], [0], + [Whether dlopen of programs is supported]) +_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], + [Whether dlopen of statically linked programs is supported]) +])# LT_SYS_DLOPEN_SELF + +# Old name: +AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) + + +# _LT_COMPILER_C_O([TAGNAME]) +# --------------------------- +# Check to see if options -c and -o are simultaneously supported by compiler. +# This macro does not hard code the compiler like AC_PROG_CC_C_O. +m4_defun([_LT_COMPILER_C_O], +[m4_require([_LT_DECL_SED])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_TAG_COMPILER])dnl +AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], + [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], + [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no + $RM -r conftest 2>/dev/null + mkdir conftest + cd conftest + mkdir out + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + fi + fi + chmod u+w . 2>&AS_MESSAGE_LOG_FD + $RM conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files + $RM out/* && rmdir out + cd .. + $RM -r conftest + $RM conftest* +]) +_LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], + [Does compiler simultaneously support -c and -o options?]) +])# _LT_COMPILER_C_O + + +# _LT_COMPILER_FILE_LOCKS([TAGNAME]) +# ---------------------------------- +# Check to see if we can do hard links to lock some files if needed +m4_defun([_LT_COMPILER_FILE_LOCKS], +[m4_require([_LT_ENABLE_LOCK])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +_LT_COMPILER_C_O([$1]) + +hard_links="nottested" +if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then + # do not overwrite the value of need_locks provided by the user + AC_MSG_CHECKING([if we can lock with hard links]) + hard_links=yes + $RM conftest* + ln conftest.a conftest.b 2>/dev/null && hard_links=no + touch conftest.a + ln conftest.a conftest.b 2>&5 || hard_links=no + ln conftest.a conftest.b 2>/dev/null && hard_links=no + AC_MSG_RESULT([$hard_links]) + if test "$hard_links" = no; then + AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) + need_locks=warn + fi +else + need_locks=no +fi +_LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) +])# _LT_COMPILER_FILE_LOCKS + + +# _LT_CHECK_OBJDIR +# ---------------- +m4_defun([_LT_CHECK_OBJDIR], +[AC_CACHE_CHECK([for objdir], [lt_cv_objdir], +[rm -f .libs 2>/dev/null +mkdir .libs 2>/dev/null +if test -d .libs; then + lt_cv_objdir=.libs +else + # MS-DOS does not allow filenames that begin with a dot. + lt_cv_objdir=_libs +fi +rmdir .libs 2>/dev/null]) +objdir=$lt_cv_objdir +_LT_DECL([], [objdir], [0], + [The name of the directory that contains temporary libtool files])dnl +m4_pattern_allow([LT_OBJDIR])dnl +AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", + [Define to the sub-directory in which libtool stores uninstalled libraries.]) +])# _LT_CHECK_OBJDIR + + +# _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) +# -------------------------------------- +# Check hardcoding attributes. +m4_defun([_LT_LINKER_HARDCODE_LIBPATH], +[AC_MSG_CHECKING([how to hardcode library paths into programs]) +_LT_TAGVAR(hardcode_action, $1)= +if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || + test -n "$_LT_TAGVAR(runpath_var, $1)" || + test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then + + # We can hardcode non-existent directories. + if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && + # If the only mechanism to avoid hardcoding is shlibpath_var, we + # have to relink, otherwise we might link with an installed library + # when we should be linking with a yet-to-be-installed one + ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && + test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then + # Linking always hardcodes the temporary library directory. + _LT_TAGVAR(hardcode_action, $1)=relink + else + # We can link without hardcoding, and we can hardcode nonexisting dirs. + _LT_TAGVAR(hardcode_action, $1)=immediate + fi +else + # We cannot hardcode anything, or else we can only hardcode existing + # directories. + _LT_TAGVAR(hardcode_action, $1)=unsupported +fi +AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) + +if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || + test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then + # Fast installation is not supported + enable_fast_install=no +elif test "$shlibpath_overrides_runpath" = yes || + test "$enable_shared" = no; then + # Fast installation is not necessary + enable_fast_install=needless +fi +_LT_TAGDECL([], [hardcode_action], [0], + [How to hardcode a shared library path into an executable]) +])# _LT_LINKER_HARDCODE_LIBPATH + + +# _LT_CMD_STRIPLIB +# ---------------- +m4_defun([_LT_CMD_STRIPLIB], +[m4_require([_LT_DECL_EGREP]) +striplib= +old_striplib= +AC_MSG_CHECKING([whether stripping libraries is possible]) +if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then + test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" + test -z "$striplib" && striplib="$STRIP --strip-unneeded" + AC_MSG_RESULT([yes]) +else +# FIXME - insert some real tests, host_os isn't really good enough + case $host_os in + darwin*) + if test -n "$STRIP" ; then + striplib="$STRIP -x" + old_striplib="$STRIP -S" + AC_MSG_RESULT([yes]) + else + AC_MSG_RESULT([no]) + fi + ;; + *) + AC_MSG_RESULT([no]) + ;; + esac +fi +_LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) +_LT_DECL([], [striplib], [1]) +])# _LT_CMD_STRIPLIB + + +# _LT_SYS_DYNAMIC_LINKER([TAG]) +# ----------------------------- +# PORTME Fill in your ld.so characteristics +m4_defun([_LT_SYS_DYNAMIC_LINKER], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_OBJDUMP])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_CHECK_SHELL_FEATURES])dnl +AC_MSG_CHECKING([dynamic linker characteristics]) +m4_if([$1], + [], [ +if test "$GCC" = yes; then + case $host_os in + darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; + *) lt_awk_arg="/^libraries:/" ;; + esac + case $host_os in + mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;; + *) lt_sed_strip_eq="s,=/,/,g" ;; + esac + lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` + case $lt_search_path_spec in + *\;*) + # if the path contains ";" then we assume it to be the separator + # otherwise default to the standard path separator (i.e. ":") - it is + # assumed that no part of a normal pathname contains ";" but that should + # okay in the real world where ";" in dirpaths is itself problematic. + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` + ;; + *) + lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` + ;; + esac + # Ok, now we have the path, separated by spaces, we can step through it + # and add multilib dir if necessary. + lt_tmp_lt_search_path_spec= + lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` + for lt_sys_path in $lt_search_path_spec; do + if test -d "$lt_sys_path/$lt_multi_os_dir"; then + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" + else + test -d "$lt_sys_path" && \ + lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" + fi + done + lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' +BEGIN {RS=" "; FS="/|\n";} { + lt_foo=""; + lt_count=0; + for (lt_i = NF; lt_i > 0; lt_i--) { + if ($lt_i != "" && $lt_i != ".") { + if ($lt_i == "..") { + lt_count++; + } else { + if (lt_count == 0) { + lt_foo="/" $lt_i lt_foo; + } else { + lt_count--; + } + } + } + } + if (lt_foo != "") { lt_freq[[lt_foo]]++; } + if (lt_freq[[lt_foo]] == 1) { print lt_foo; } +}'` + # AWK program above erroneously prepends '/' to C:/dos/paths + # for these hosts. + case $host_os in + mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ + $SED 's,/\([[A-Za-z]]:\),\1,g'` ;; + esac + sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` +else + sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" +fi]) +library_names_spec= +libname_spec='lib$name' +soname_spec= +shrext_cmds=".so" +postinstall_cmds= +postuninstall_cmds= +finish_cmds= +finish_eval= +shlibpath_var= +shlibpath_overrides_runpath=unknown +version_type=none +dynamic_linker="$host_os ld.so" +sys_lib_dlsearch_path_spec="/lib /usr/lib" +need_lib_prefix=unknown +hardcode_into_libs=no + +# when you set need_version to no, make sure it does not cause -set_version +# flags to be left without arguments +need_version=unknown + +case $host_os in +aix3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH + + # AIX 3 has no versioning support, so we append a major version to the name. + soname_spec='${libname}${release}${shared_ext}$major' + ;; + +aix[[4-9]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + hardcode_into_libs=yes + if test "$host_cpu" = ia64; then + # AIX 5 supports IA64 + library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + else + # With GCC up to 2.95.x, collect2 would create an import file + # for dependence libraries. The import file would start with + # the line `#! .'. This would cause the generated library to + # depend on `.', always an invalid library. This was fixed in + # development snapshots of GCC prior to 3.0. + case $host_os in + aix4 | aix4.[[01]] | aix4.[[01]].*) + if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' + echo ' yes ' + echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then + : + else + can_build_shared=no + fi + ;; + esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH + fi + ;; + +amigaos*) + case $host_cpu in + powerpc) + # Since July 2007 AmigaOS4 officially supports .so libraries. + # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + ;; + m68k) + library_names_spec='$libname.ixlibrary $libname.a' + # Create ${libname}_ixlibrary.a entries in /sys/libs. + finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' + ;; + esac + ;; + +beos*) + library_names_spec='${libname}${shared_ext}' + dynamic_linker="$host_os ld.so" + shlibpath_var=LIBRARY_PATH + ;; + +bsdi[[45]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" + sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" + # the default ld.so.conf also contains /usr/contrib/lib and + # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow + # libtool to hard-code these into programs + ;; + +cygwin* | mingw* | pw32* | cegcc*) + version_type=windows + shrext_cmds=".dll" + need_version=no + need_lib_prefix=no + + case $GCC,$cc_basename in + yes,*) + # gcc + library_names_spec='$libname.dll.a' + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname~ + chmod a+x \$dldir/$dlname~ + if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then + eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; + fi' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + + case $host_os in + cygwin*) + # Cygwin DLLs use 'cyg' prefix rather than 'lib' + soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' +m4_if([$1], [],[ + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) + ;; + mingw* | cegcc*) + # MinGW DLLs use traditional 'lib' prefix + soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + ;; + pw32*) + # pw32 DLLs use 'pw' prefix rather than 'lib' + library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + ;; + esac + dynamic_linker='Win32 ld.exe' + ;; + + *,cl*) + # Native MSVC + libname_spec='$name' + soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' + library_names_spec='${libname}.dll.lib' + + case $build_os in + mingw*) + sys_lib_search_path_spec= + lt_save_ifs=$IFS + IFS=';' + for lt_path in $LIB + do + IFS=$lt_save_ifs + # Let DOS variable expansion print the short 8.3 style file name. + lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` + sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" + done + IFS=$lt_save_ifs + # Convert to MSYS style. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` + ;; + cygwin*) + # Convert to unix form, then to dos form, then back to unix form + # but this time dos style (no spaces!) so that the unix form looks + # like /cygdrive/c/PROGRA~1:/cygdr... + sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` + sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` + sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + ;; + *) + sys_lib_search_path_spec="$LIB" + if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then + # It is most probably a Windows format PATH. + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` + else + sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` + fi + # FIXME: find the short name or the path components, as spaces are + # common. (e.g. "Program Files" -> "PROGRA~1") + ;; + esac + + # DLL is installed to $(libdir)/../bin by postinstall_cmds + postinstall_cmds='base_file=`basename \${file}`~ + dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ + dldir=$destdir/`dirname \$dlpath`~ + test -d \$dldir || mkdir -p \$dldir~ + $install_prog $dir/$dlname \$dldir/$dlname' + postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ + dlpath=$dir/\$dldll~ + $RM \$dlpath' + shlibpath_overrides_runpath=yes + dynamic_linker='Win32 link.exe' + ;; + + *) + # Assume MSVC wrapper + library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' + dynamic_linker='Win32 ld.exe' + ;; + esac + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + +darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' +m4_if([$1], [],[ + sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) + sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' + ;; + +dgux*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[[23]].*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2.*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[[01]]* | freebsdelf3.[[01]]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ + freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + *) # from 4.6 on, and DragonFly + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; + +gnu*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +haiku*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + dynamic_linker="$host_os runtime_loader" + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LIBRARY_PATH + shlibpath_overrides_runpath=yes + sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' + hardcode_into_libs=yes + ;; + +hpux9* | hpux10* | hpux11*) + # Give a soname corresponding to the major version so that dld.sl refuses to + # link against other versions. + version_type=sunos + need_lib_prefix=no + need_version=no + case $host_cpu in + ia64*) + shrext_cmds='.so' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.so" + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + if test "X$HPUX_IA64_MODE" = X32; then + sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" + else + sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" + fi + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + hppa*64*) + shrext_cmds='.sl' + hardcode_into_libs=yes + dynamic_linker="$host_os dld.sl" + shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH + shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" + sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec + ;; + *) + shrext_cmds='.sl' + dynamic_linker="$host_os dld.sl" + shlibpath_var=SHLIB_PATH + shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555, ... + postinstall_cmds='chmod 555 $lib' + # or fails outright, so override atomically: + install_override_mode=555 + ;; + +interix[[3-9]]*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +irix5* | irix6* | nonstopux*) + case $host_os in + nonstopux*) version_type=nonstopux ;; + *) + if test "$lt_cv_prog_gnu_ld" = yes; then + version_type=linux # correct to gnu/linux during the next big refactor + else + version_type=irix + fi ;; + esac + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' + case $host_os in + irix5* | nonstopux*) + libsuff= shlibsuff= + ;; + *) + case $LD in # libtool.m4 will add one of these switches to LD + *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") + libsuff= shlibsuff= libmagic=32-bit;; + *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") + libsuff=32 shlibsuff=N32 libmagic=N32;; + *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") + libsuff=64 shlibsuff=64 libmagic=64-bit;; + *) libsuff= shlibsuff= libmagic=never-match;; + esac + ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; + +# No shared lib support for Linux oldld, aout, or coff. +linux*oldld* | linux*aout* | linux*coff*) + dynamic_linker=no + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + + # Some binutils ld are patched to set DT_RUNPATH + AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], + [lt_cv_shlibpath_overrides_runpath=no + save_LDFLAGS=$LDFLAGS + save_libdir=$libdir + eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ + LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" + AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], + [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], + [lt_cv_shlibpath_overrides_runpath=yes])]) + LDFLAGS=$save_LDFLAGS + libdir=$save_libdir + ]) + shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath + + # This implies no fast_install, which is unacceptable. + # Some rework will be needed to allow for fast_install + # before this can be enabled. + hardcode_into_libs=yes + + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" + fi + + # We used to test for /lib/ld.so.1 and disable shared libraries on + # powerpc, because MkLinux only supported shared libraries with the + # GNU dynamic linker. Since this was broken with cross compilers, + # most powerpc-linux boxes support dynamic linking these days and + # people can always --disable-shared, the test was removed, and we + # assume the GNU/Linux dynamic linker is in use. + dynamic_linker='GNU/Linux ld.so' + ;; + +netbsdelf*-gnu) + version_type=linux + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='NetBSD ld.elf_so' + ;; + +netbsd*) + version_type=sunos + need_lib_prefix=no + need_version=no + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + dynamic_linker='NetBSD (a.out) ld.so' + else + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + dynamic_linker='NetBSD ld.elf_so' + fi + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + +newsos6) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; + +*nto* | *qnx*) + version_type=qnx + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + dynamic_linker='ldqnx.so' + ;; + +openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. + case $host_os in + openbsd3.3 | openbsd3.3.*) need_version=yes ;; + *) need_version=no ;; + esac + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' + shlibpath_var=LD_LIBRARY_PATH + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + case $host_os in + openbsd2.[[89]] | openbsd2.[[89]].*) + shlibpath_overrides_runpath=no + ;; + *) + shlibpath_overrides_runpath=yes + ;; + esac + else + shlibpath_overrides_runpath=yes + fi + ;; + +os2*) + libname_spec='$name' + shrext_cmds=".dll" + need_lib_prefix=no + library_names_spec='$libname${shared_ext} $libname.a' + dynamic_linker='OS/2 ld.exe' + shlibpath_var=LIBPATH + ;; + +osf3* | osf4* | osf5*) + version_type=osf + need_lib_prefix=no + need_version=no + soname_spec='${libname}${release}${shared_ext}$major' + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" + sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" + ;; + +rdos*) + dynamic_linker=no + ;; + +solaris*) + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + # ldd complains unless libraries are executable + postinstall_cmds='chmod +x $lib' + ;; + +sunos4*) + version_type=sunos + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' + finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + if test "$with_gnu_ld" = yes; then + need_lib_prefix=no + fi + need_version=yes + ;; + +sysv4 | sysv4.3*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + case $host_vendor in + sni) + shlibpath_overrides_runpath=no + need_lib_prefix=no + runpath_var=LD_RUN_PATH + ;; + siemens) + need_lib_prefix=no + ;; + motorola) + need_lib_prefix=no + need_version=no + shlibpath_overrides_runpath=no + sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' + ;; + esac + ;; + +sysv4*MP*) + if test -d /usr/nec ;then + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' + soname_spec='$libname${shared_ext}.$major' + shlibpath_var=LD_LIBRARY_PATH + fi + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; + +tpf*) + # TPF is a cross-target only. Preferred cross-host = GNU/Linux. + version_type=linux # correct to gnu/linux during the next big refactor + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + +uts4*) + version_type=linux # correct to gnu/linux during the next big refactor + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + ;; + +*) + dynamic_linker=no + ;; +esac +AC_MSG_RESULT([$dynamic_linker]) +test "$dynamic_linker" = no && can_build_shared=no + +variables_saved_for_relink="PATH $shlibpath_var $runpath_var" +if test "$GCC" = yes; then + variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" +fi + +if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then + sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" +fi +if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then + sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" +fi + +_LT_DECL([], [variables_saved_for_relink], [1], + [Variables whose values should be saved in libtool wrapper scripts and + restored at link time]) +_LT_DECL([], [need_lib_prefix], [0], + [Do we need the "lib" prefix for modules?]) +_LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) +_LT_DECL([], [version_type], [0], [Library versioning type]) +_LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) +_LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) +_LT_DECL([], [shlibpath_overrides_runpath], [0], + [Is shlibpath searched before the hard-coded library search path?]) +_LT_DECL([], [libname_spec], [1], [Format of library name prefix]) +_LT_DECL([], [library_names_spec], [1], + [[List of archive names. First name is the real one, the rest are links. + The last name is the one that the linker finds with -lNAME]]) +_LT_DECL([], [soname_spec], [1], + [[The coded name of the library, if different from the real name]]) +_LT_DECL([], [install_override_mode], [1], + [Permission mode override for installation of shared libraries]) +_LT_DECL([], [postinstall_cmds], [2], + [Command to use after installation of a shared archive]) +_LT_DECL([], [postuninstall_cmds], [2], + [Command to use after uninstallation of a shared archive]) +_LT_DECL([], [finish_cmds], [2], + [Commands used to finish a libtool library installation in a directory]) +_LT_DECL([], [finish_eval], [1], + [[As "finish_cmds", except a single script fragment to be evaled but + not shown]]) +_LT_DECL([], [hardcode_into_libs], [0], + [Whether we should hardcode library paths into libraries]) +_LT_DECL([], [sys_lib_search_path_spec], [2], + [Compile-time system search path for libraries]) +_LT_DECL([], [sys_lib_dlsearch_path_spec], [2], + [Run-time system search path for libraries]) +])# _LT_SYS_DYNAMIC_LINKER + + +# _LT_PATH_TOOL_PREFIX(TOOL) +# -------------------------- +# find a file program which can recognize shared library +AC_DEFUN([_LT_PATH_TOOL_PREFIX], +[m4_require([_LT_DECL_EGREP])dnl +AC_MSG_CHECKING([for $1]) +AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, +[case $MAGIC_CMD in +[[\\/*] | ?:[\\/]*]) + lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. + ;; +*) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR +dnl $ac_dummy forces splitting on constant user-supplied paths. +dnl POSIX.2 word splitting is done only on the output of word expansions, +dnl not every word. This closes a longstanding sh security hole. + ac_dummy="m4_if([$2], , $PATH, [$2])" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$1; then + lt_cv_path_MAGIC_CMD="$ac_dir/$1" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <<_LT_EOF 1>&2 + +*** Warning: the command libtool uses to detect shared libraries, +*** $file_magic_cmd, produces output that libtool cannot recognize. +*** The result is that libtool may fail to recognize shared libraries +*** as such. This will affect the creation of libtool libraries that +*** depend on shared libraries, but programs linked with such libtool +*** libraries will work regardless of this problem. Nevertheless, you +*** may want to report the problem to your system manager and/or to +*** bug-libtool@gnu.org + +_LT_EOF + fi ;; + esac + fi + break + fi + done + IFS="$lt_save_ifs" + MAGIC_CMD="$lt_save_MAGIC_CMD" + ;; +esac]) +MAGIC_CMD="$lt_cv_path_MAGIC_CMD" +if test -n "$MAGIC_CMD"; then + AC_MSG_RESULT($MAGIC_CMD) +else + AC_MSG_RESULT(no) +fi +_LT_DECL([], [MAGIC_CMD], [0], + [Used to examine libraries when file_magic_cmd begins with "file"])dnl +])# _LT_PATH_TOOL_PREFIX + +# Old name: +AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) + + +# _LT_PATH_MAGIC +# -------------- +# find a file program which can recognize a shared library +m4_defun([_LT_PATH_MAGIC], +[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) +if test -z "$lt_cv_path_MAGIC_CMD"; then + if test -n "$ac_tool_prefix"; then + _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) + else + MAGIC_CMD=: + fi +fi +])# _LT_PATH_MAGIC + + +# LT_PATH_LD +# ---------- +# find the pathname to the GNU or non-GNU linker +AC_DEFUN([LT_PATH_LD], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_PROG_ECHO_BACKSLASH])dnl + +AC_ARG_WITH([gnu-ld], + [AS_HELP_STRING([--with-gnu-ld], + [assume the C compiler uses GNU ld @<:@default=no@:>@])], + [test "$withval" = no || with_gnu_ld=yes], + [with_gnu_ld=no])dnl + +ac_prog=ld +if test "$GCC" = yes; then + # Check if gcc -print-prog-name=ld gives a path. + AC_MSG_CHECKING([for ld used by $CC]) + case $host in + *-*-mingw*) + # gcc leaves a trailing carriage return which upsets mingw + ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; + *) + ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; + esac + case $ac_prog in + # Accept absolute paths. + [[\\/]]* | ?:[[\\/]]*) + re_direlt='/[[^/]][[^/]]*/\.\./' + # Canonicalize the pathname of ld + ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` + while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do + ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` + done + test -z "$LD" && LD="$ac_prog" + ;; + "") + # If it fails, then pretend we aren't using GCC. + ac_prog=ld + ;; + *) + # If it is relative, then search for the first ld in PATH. + with_gnu_ld=unknown + ;; + esac +elif test "$with_gnu_ld" = yes; then + AC_MSG_CHECKING([for GNU ld]) +else + AC_MSG_CHECKING([for non-GNU ld]) +fi +AC_CACHE_VAL(lt_cv_path_LD, +[if test -z "$LD"; then + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then + lt_cv_path_LD="$ac_dir/$ac_prog" + # Check to see if the program is GNU ld. I'd rather use --version, + # but apparently some variants of GNU ld only accept -v. + # Break only if it was the GNU/non-GNU ld that we prefer. + case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then + lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' + lt_cv_file_magic_cmd='func_win32_libid' + else + # Keep this pattern in sync with the one in func_win32_libid. + lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' + lt_cv_file_magic_cmd='$OBJDUMP -f' + fi + ;; + +cegcc*) + # use the weaker test based on 'objdump'. See mingw*. + lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' + lt_cv_file_magic_cmd='$OBJDUMP -f' + ;; + +darwin* | rhapsody*) + lt_cv_deplibs_check_method=pass_all + ;; + +freebsd* | dragonfly*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + case $host_cpu in + i*86 ) + # Not sure whether the presence of OpenBSD here was a mistake. + # Let's accept both of them until this is cleared up. + lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` + ;; + esac + else + lt_cv_deplibs_check_method=pass_all + fi + ;; + +gnu*) + lt_cv_deplibs_check_method=pass_all + ;; + +haiku*) + lt_cv_deplibs_check_method=pass_all + ;; + +hpux10.20* | hpux11*) + lt_cv_file_magic_cmd=/usr/bin/file + case $host_cpu in + ia64*) + lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' + lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so + ;; + hppa*64*) + [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] + lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl + ;; + *) + lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' + lt_cv_file_magic_test_file=/usr/lib/libc.sl + ;; + esac + ;; + +interix[[3-9]]*) + # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' + ;; + +irix5* | irix6* | nonstopux*) + case $LD in + *-32|*"-32 ") libmagic=32-bit;; + *-n32|*"-n32 ") libmagic=N32;; + *-64|*"-64 ") libmagic=64-bit;; + *) libmagic=never-match;; + esac + lt_cv_deplibs_check_method=pass_all + ;; + +# This must be glibc/ELF. +linux* | k*bsd*-gnu | kopensolaris*-gnu) + lt_cv_deplibs_check_method=pass_all + ;; + +netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' + fi + ;; + +newos6*) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' + lt_cv_file_magic_cmd=/usr/bin/file + lt_cv_file_magic_test_file=/usr/lib/libnls.so + ;; + +*nto* | *qnx*) + lt_cv_deplibs_check_method=pass_all + ;; + +openbsd*) + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' + else + lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' + fi + ;; + +osf3* | osf4* | osf5*) + lt_cv_deplibs_check_method=pass_all + ;; + +rdos*) + lt_cv_deplibs_check_method=pass_all + ;; + +solaris*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + lt_cv_deplibs_check_method=pass_all + ;; + +sysv4 | sysv4.3*) + case $host_vendor in + motorola) + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' + lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` + ;; + ncr) + lt_cv_deplibs_check_method=pass_all + ;; + sequent) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' + ;; + sni) + lt_cv_file_magic_cmd='/bin/file' + lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" + lt_cv_file_magic_test_file=/lib/libc.so + ;; + siemens) + lt_cv_deplibs_check_method=pass_all + ;; + pc) + lt_cv_deplibs_check_method=pass_all + ;; + esac + ;; + +tpf*) + lt_cv_deplibs_check_method=pass_all + ;; +esac +]) + +file_magic_glob= +want_nocaseglob=no +if test "$build" = "$host"; then + case $host_os in + mingw* | pw32*) + if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then + want_nocaseglob=yes + else + file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` + fi + ;; + esac +fi + +file_magic_cmd=$lt_cv_file_magic_cmd +deplibs_check_method=$lt_cv_deplibs_check_method +test -z "$deplibs_check_method" && deplibs_check_method=unknown + +_LT_DECL([], [deplibs_check_method], [1], + [Method to check whether dependent libraries are shared objects]) +_LT_DECL([], [file_magic_cmd], [1], + [Command to use when deplibs_check_method = "file_magic"]) +_LT_DECL([], [file_magic_glob], [1], + [How to find potential files when deplibs_check_method = "file_magic"]) +_LT_DECL([], [want_nocaseglob], [1], + [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) +])# _LT_CHECK_MAGIC_METHOD + + +# LT_PATH_NM +# ---------- +# find the pathname to a BSD- or MS-compatible name lister +AC_DEFUN([LT_PATH_NM], +[AC_REQUIRE([AC_PROG_CC])dnl +AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, +[if test -n "$NM"; then + # Let the user override the test. + lt_cv_path_NM="$NM" +else + lt_nm_to_check="${ac_tool_prefix}nm" + if test -n "$ac_tool_prefix" && test "$build" = "$host"; then + lt_nm_to_check="$lt_nm_to_check nm" + fi + for lt_tmp_nm in $lt_nm_to_check; do + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + tmp_nm="$ac_dir/$lt_tmp_nm" + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored + # Tru64's nm complains that /dev/null is an invalid object file + case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in + */dev/null* | *'Invalid file or object type'*) + lt_cv_path_NM="$tmp_nm -B" + break + ;; + *) + case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + */dev/null*) + lt_cv_path_NM="$tmp_nm -p" + break + ;; + *) + lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + ;; + esac + ;; + esac + fi + done + IFS="$lt_save_ifs" + done + : ${lt_cv_path_NM=no} +fi]) +if test "$lt_cv_path_NM" != "no"; then + NM="$lt_cv_path_NM" +else + # Didn't find any BSD compatible name lister, look for dumpbin. + if test -n "$DUMPBIN"; then : + # Let the user override the test. + else + AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) + case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in + *COFF*) + DUMPBIN="$DUMPBIN -symbols" + ;; + *) + DUMPBIN=: + ;; + esac + fi + AC_SUBST([DUMPBIN]) + if test "$DUMPBIN" != ":"; then + NM="$DUMPBIN" + fi +fi +test -z "$NM" && NM=nm +AC_SUBST([NM]) +_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl + +AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], + [lt_cv_nm_interface="BSD nm" + echo "int some_variable = 0;" > conftest.$ac_ext + (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$ac_compile" 2>conftest.err) + cat conftest.err >&AS_MESSAGE_LOG_FD + (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) + (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) + cat conftest.err >&AS_MESSAGE_LOG_FD + (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) + cat conftest.out >&AS_MESSAGE_LOG_FD + if $GREP 'External.*some_variable' conftest.out > /dev/null; then + lt_cv_nm_interface="MS dumpbin" + fi + rm -f conftest*]) +])# LT_PATH_NM + +# Old names: +AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) +AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_PROG_NM], []) +dnl AC_DEFUN([AC_PROG_NM], []) + +# _LT_CHECK_SHAREDLIB_FROM_LINKLIB +# -------------------------------- +# how to determine the name of the shared library +# associated with a specific link library. +# -- PORTME fill in with the dynamic library characteristics +m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], +[m4_require([_LT_DECL_EGREP]) +m4_require([_LT_DECL_OBJDUMP]) +m4_require([_LT_DECL_DLLTOOL]) +AC_CACHE_CHECK([how to associate runtime and link libraries], +lt_cv_sharedlib_from_linklib_cmd, +[lt_cv_sharedlib_from_linklib_cmd='unknown' + +case $host_os in +cygwin* | mingw* | pw32* | cegcc*) + # two different shell functions defined in ltmain.sh + # decide which to use based on capabilities of $DLLTOOL + case `$DLLTOOL --help 2>&1` in + *--identify-strict*) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib + ;; + *) + lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback + ;; + esac + ;; +*) + # fallback: assume linklib IS sharedlib + lt_cv_sharedlib_from_linklib_cmd="$ECHO" + ;; +esac +]) +sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd +test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO + +_LT_DECL([], [sharedlib_from_linklib_cmd], [1], + [Command to associate shared and link libraries]) +])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB + + +# _LT_PATH_MANIFEST_TOOL +# ---------------------- +# locate the manifest tool +m4_defun([_LT_PATH_MANIFEST_TOOL], +[AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) +test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt +AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], + [lt_cv_path_mainfest_tool=no + echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD + $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out + cat conftest.err >&AS_MESSAGE_LOG_FD + if $GREP 'Manifest Tool' conftest.out > /dev/null; then + lt_cv_path_mainfest_tool=yes + fi + rm -f conftest*]) +if test "x$lt_cv_path_mainfest_tool" != xyes; then + MANIFEST_TOOL=: +fi +_LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl +])# _LT_PATH_MANIFEST_TOOL + + +# LT_LIB_M +# -------- +# check for math library +AC_DEFUN([LT_LIB_M], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +LIBM= +case $host in +*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) + # These system don't have libm, or don't need it + ;; +*-ncr-sysv4.3*) + AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") + AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") + ;; +*) + AC_CHECK_LIB(m, cos, LIBM="-lm") + ;; +esac +AC_SUBST([LIBM]) +])# LT_LIB_M + +# Old name: +AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_CHECK_LIBM], []) + + +# _LT_COMPILER_NO_RTTI([TAGNAME]) +# ------------------------------- +m4_defun([_LT_COMPILER_NO_RTTI], +[m4_require([_LT_TAG_COMPILER])dnl + +_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= + +if test "$GCC" = yes; then + case $cc_basename in + nvcc*) + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; + *) + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; + esac + + _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], + lt_cv_prog_compiler_rtti_exceptions, + [-fno-rtti -fno-exceptions], [], + [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) +fi +_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], + [Compiler flag to turn off builtin functions]) +])# _LT_COMPILER_NO_RTTI + + +# _LT_CMD_GLOBAL_SYMBOLS +# ---------------------- +m4_defun([_LT_CMD_GLOBAL_SYMBOLS], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_PROG_CC])dnl +AC_REQUIRE([AC_PROG_AWK])dnl +AC_REQUIRE([LT_PATH_NM])dnl +AC_REQUIRE([LT_PATH_LD])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_TAG_COMPILER])dnl + +# Check for command to grab the raw symbol name followed by C symbol from nm. +AC_MSG_CHECKING([command to parse $NM output from $compiler object]) +AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], +[ +# These are sane defaults that work on at least a few old systems. +# [They come from Ultrix. What could be older than Ultrix?!! ;)] + +# Character class describing NM global symbol codes. +symcode='[[BCDEGRST]]' + +# Regexp to match symbols that can be accessed directly from C. +sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' + +# Define system-specific variables. +case $host_os in +aix*) + symcode='[[BCDT]]' + ;; +cygwin* | mingw* | pw32* | cegcc*) + symcode='[[ABCDGISTW]]' + ;; +hpux*) + if test "$host_cpu" = ia64; then + symcode='[[ABCDEGRST]]' + fi + ;; +irix* | nonstopux*) + symcode='[[BCDEGRST]]' + ;; +osf*) + symcode='[[BCDEGQRST]]' + ;; +solaris*) + symcode='[[BDRT]]' + ;; +sco3.2v5*) + symcode='[[DT]]' + ;; +sysv4.2uw2*) + symcode='[[DT]]' + ;; +sysv5* | sco5v6* | unixware* | OpenUNIX*) + symcode='[[ABDT]]' + ;; +sysv4) + symcode='[[DFNSTU]]' + ;; +esac + +# If we're using GNU nm, then use its standard symbol codes. +case `$NM -V 2>&1` in +*GNU* | *'with BFD'*) + symcode='[[ABCDGIRSTW]]' ;; +esac + +# Transform an extracted symbol line into a proper C declaration. +# Some systems (esp. on ia64) link data and code symbols differently, +# so use this general approach. +lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" + +# Transform an extracted symbol line into symbol name and symbol address +lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" + +# Handle CRLF in mingw tool chain +opt_cr= +case $build_os in +mingw*) + opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp + ;; +esac + +# Try without a prefix underscore, then with it. +for ac_symprfx in "" "_"; do + + # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. + symxfrm="\\1 $ac_symprfx\\2 \\2" + + # Write the raw and C identifiers. + if test "$lt_cv_nm_interface" = "MS dumpbin"; then + # Fake it for dumpbin and say T for any non-static function + # and D for any global variable. + # Also find C++ and __fastcall symbols from MSVC++, + # which start with @ or ?. + lt_cv_sys_global_symbol_pipe="$AWK ['"\ +" {last_section=section; section=\$ 3};"\ +" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ +" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ +" \$ 0!~/External *\|/{next};"\ +" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ +" {if(hide[section]) next};"\ +" {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ +" {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ +" s[1]~/^[@?]/{print s[1], s[1]; next};"\ +" s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ +" ' prfx=^$ac_symprfx]" + else + lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" + fi + lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" + + # Check to see that the pipe works correctly. + pipe_works=no + + rm -f conftest* + cat > conftest.$ac_ext <<_LT_EOF +#ifdef __cplusplus +extern "C" { +#endif +char nm_test_var; +void nm_test_func(void); +void nm_test_func(void){} +#ifdef __cplusplus +} +#endif +int main(){nm_test_var='a';nm_test_func();return(0);} +_LT_EOF + + if AC_TRY_EVAL(ac_compile); then + # Now try to grab the symbols. + nlist=conftest.nm + if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then + # Try sorting and uniquifying the output. + if sort "$nlist" | uniq > "$nlist"T; then + mv -f "$nlist"T "$nlist" + else + rm -f "$nlist"T + fi + + # Make sure that we snagged all the symbols we need. + if $GREP ' nm_test_var$' "$nlist" >/dev/null; then + if $GREP ' nm_test_func$' "$nlist" >/dev/null; then + cat <<_LT_EOF > conftest.$ac_ext +/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ +#if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE) +/* DATA imports from DLLs on WIN32 con't be const, because runtime + relocations are performed -- see ld's documentation on pseudo-relocs. */ +# define LT@&t@_DLSYM_CONST +#elif defined(__osf__) +/* This system does not cope well with relocations in const data. */ +# define LT@&t@_DLSYM_CONST +#else +# define LT@&t@_DLSYM_CONST const +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +_LT_EOF + # Now generate the symbol file. + eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' + + cat <<_LT_EOF >> conftest.$ac_ext + +/* The mapping between symbol names and symbols. */ +LT@&t@_DLSYM_CONST struct { + const char *name; + void *address; +} +lt__PROGRAM__LTX_preloaded_symbols[[]] = +{ + { "@PROGRAM@", (void *) 0 }, +_LT_EOF + $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext + cat <<\_LT_EOF >> conftest.$ac_ext + {0, (void *) 0} +}; + +/* This works around a problem in FreeBSD linker */ +#ifdef FREEBSD_WORKAROUND +static const void *lt_preloaded_setup() { + return lt__PROGRAM__LTX_preloaded_symbols; +} +#endif + +#ifdef __cplusplus +} +#endif +_LT_EOF + # Now try linking the two files. + mv conftest.$ac_objext conftstm.$ac_objext + lt_globsym_save_LIBS=$LIBS + lt_globsym_save_CFLAGS=$CFLAGS + LIBS="conftstm.$ac_objext" + CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" + if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then + pipe_works=yes + fi + LIBS=$lt_globsym_save_LIBS + CFLAGS=$lt_globsym_save_CFLAGS + else + echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD + fi + else + echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD + fi + else + echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD + fi + else + echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD + cat conftest.$ac_ext >&5 + fi + rm -rf conftest* conftst* + + # Do not use the global_symbol_pipe unless it works. + if test "$pipe_works" = yes; then + break + else + lt_cv_sys_global_symbol_pipe= + fi +done +]) +if test -z "$lt_cv_sys_global_symbol_pipe"; then + lt_cv_sys_global_symbol_to_cdecl= +fi +if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then + AC_MSG_RESULT(failed) +else + AC_MSG_RESULT(ok) +fi + +# Response file support. +if test "$lt_cv_nm_interface" = "MS dumpbin"; then + nm_file_list_spec='@' +elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then + nm_file_list_spec='@' +fi + +_LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], + [Take the output of nm and produce a listing of raw symbols and C names]) +_LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], + [Transform the output of nm in a proper C declaration]) +_LT_DECL([global_symbol_to_c_name_address], + [lt_cv_sys_global_symbol_to_c_name_address], [1], + [Transform the output of nm in a C name address pair]) +_LT_DECL([global_symbol_to_c_name_address_lib_prefix], + [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], + [Transform the output of nm in a C name address pair when lib prefix is needed]) +_LT_DECL([], [nm_file_list_spec], [1], + [Specify filename containing input files for $NM]) +]) # _LT_CMD_GLOBAL_SYMBOLS + + +# _LT_COMPILER_PIC([TAGNAME]) +# --------------------------- +m4_defun([_LT_COMPILER_PIC], +[m4_require([_LT_TAG_COMPILER])dnl +_LT_TAGVAR(lt_prog_compiler_wl, $1)= +_LT_TAGVAR(lt_prog_compiler_pic, $1)= +_LT_TAGVAR(lt_prog_compiler_static, $1)= + +m4_if([$1], [CXX], [ + # C++ specific cases for pic, static, wl, etc. + if test "$GXX" = yes; then + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + ;; + *djgpp*) + # DJGPP does not support shared libraries at all + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + ;; + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + _LT_TAGVAR(lt_prog_compiler_static, $1)= + ;; + interix[[3-9]]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic + fi + ;; + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + else + case $host_os in + aix[[4-9]]*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + else + _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' + fi + ;; + chorus*) + case $cc_basename in + cxch68*) + # Green Hills C++ Compiler + # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" + ;; + esac + ;; + mingw* | cygwin* | os2* | pw32* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + dgux*) + case $cc_basename in + ec++*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + ;; + ghcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + *) + ;; + esac + ;; + freebsd* | dragonfly*) + # FreeBSD uses GNU C++ + ;; + hpux9* | hpux10* | hpux11*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + if test "$host_cpu" != ia64; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + fi + ;; + aCC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + ;; + esac + ;; + *) + ;; + esac + ;; + interix*) + # This is c89, which is MS Visual C++ (no shared libs) + # Anyone wants to do a port? + ;; + irix5* | irix6* | nonstopux*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + # CC pic flag -KPIC is the default. + ;; + *) + ;; + esac + ;; + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + KCC*) + # KAI C++ Compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + ecpc* ) + # old Intel C++ for x86_64 which still supported -KPIC. + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + icpc* ) + # Intel C++, used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + cxx*) + # Compaq C++ + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) + # IBM XL 8.0, 9.0 on PPC and BlueGene + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + esac + ;; + esac + ;; + lynxos*) + ;; + m88k*) + ;; + mvs*) + case $cc_basename in + cxx*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' + ;; + *) + ;; + esac + ;; + netbsd* | netbsdelf*-gnu) + ;; + *qnx* | *nto*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' + ;; + RCC*) + # Rational C++ 2.4.1 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + cxx*) + # Digital/Compaq C++ + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + *) + ;; + esac + ;; + psos*) + ;; + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + gcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + ;; + *) + ;; + esac + ;; + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + lcc*) + # Lucid + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + ;; + *) + ;; + esac + ;; + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + case $cc_basename in + CC*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + ;; + *) + ;; + esac + ;; + vxworks*) + ;; + *) + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + esac + fi +], +[ + if test "$GCC" = yes; then + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + + case $host_os in + aix*) + # All AIX code is PIC. + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + m68k) + # FIXME: we need at least 68020 code to build shared libraries, but + # adding the `-m68020' flag to GCC prevents building anything better, + # like `-m68040'. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' + ;; + esac + ;; + + beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) + # PIC is the default for these OSes. + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + # Although the cygwin gcc ignores -fPIC, still need this for old-style + # (--disable-auto-import) libraries + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + + darwin* | rhapsody*) + # PIC is the default on this platform + # Common symbols not allowed in MH_DYLIB files + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' + ;; + + haiku*) + # PIC is the default for Haiku. + # The "-static" flag exists, but is broken. + _LT_TAGVAR(lt_prog_compiler_static, $1)= + ;; + + hpux*) + # PIC is the default for 64-bit PA HP-UX, but not for 32-bit + # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag + # sets the default TLS model and affects inlining. + case $host_cpu in + hppa*64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + ;; + + interix[[3-9]]*) + # Interix 3.x gcc -fpic/-fPIC options generate broken code. + # Instead, we relocate shared libraries at runtime. + ;; + + msdosdjgpp*) + # Just because we use GCC doesn't mean we suddenly get shared libraries + # on systems that don't support them. + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + enable_shared=no + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic + fi + ;; + + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + ;; + esac + + case $cc_basename in + nvcc*) # Cuda Compiler Driver 2.2 + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' + if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then + _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" + fi + ;; + esac + else + # PORTME Check for flag to pass linker flags through the system compiler. + case $host_os in + aix*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + if test "$host_cpu" = ia64; then + # AIX 5 now supports IA64 processor + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + else + _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' + fi + ;; + + mingw* | cygwin* | pw32* | os2* | cegcc*) + # This hack is so that the source file can tell whether it is being + # built for inclusion in a dll (and should export symbols for example). + m4_if([$1], [GCJ], [], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) + ;; + + hpux9* | hpux10* | hpux11*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but + # not for PA HP-UX. + case $host_cpu in + hppa*64*|ia64*) + # +Z the default + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' + ;; + esac + # Is there a better lt_prog_compiler_static that works with the bundled CC? + _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' + ;; + + irix5* | irix6* | nonstopux*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # PIC (with -KPIC) is the default. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + # old Intel for x86_64 which still supported -KPIC. + ecc*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + # icc used to be incompatible with GCC. + # ICC 10 doesn't accept -KPIC any more. + icc* | ifort*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + # Lahey Fortran 8.1. + lf95*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' + _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' + ;; + nagfor*) + # NAG Fortran compiler + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group compilers (*not* the Pentium gcc compiler, + # which looks to be a dead project) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + ccc*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # All Alpha code is PIC. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + xl* | bgxl* | bgf* | mpixl*) + # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) + # Sun Fortran 8.3 passes all unrecognized flags to the linker + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='' + ;; + *Sun\ F* | *Sun*Fortran*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + ;; + *Sun\ C*) + # Sun C 5.9 + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + ;; + *Intel*\ [[CF]]*Compiler*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' + ;; + *Portland\ Group*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + esac + ;; + esac + ;; + + newsos6) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + *nto* | *qnx*) + # QNX uses GNU C++, but need to define -shared option too, otherwise + # it will coredump. + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' + ;; + + osf3* | osf4* | osf5*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + # All OSF/1 code is PIC. + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + rdos*) + _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' + ;; + + solaris*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + case $cc_basename in + f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; + *) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; + esac + ;; + + sunos4*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + sysv4 | sysv4.2uw2* | sysv4.3*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + sysv4*MP*) + if test -d /usr/nec ;then + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + fi + ;; + + sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + unicos*) + _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + + uts4*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' + _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + ;; + + *) + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; + esac + fi +]) +case $host_os in + # For platforms which do not support PIC, -DPIC is meaningless: + *djgpp*) + _LT_TAGVAR(lt_prog_compiler_pic, $1)= + ;; + *) + _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" + ;; +esac + +AC_CACHE_CHECK([for $compiler option to produce PIC], + [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], + [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) +_LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) + +# +# Check to make sure the PIC flag actually works. +# +if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then + _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], + [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], + [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], + [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in + "" | " "*) ;; + *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; + esac], + [_LT_TAGVAR(lt_prog_compiler_pic, $1)= + _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) +fi +_LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], + [Additional compiler flags for building library objects]) + +_LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], + [How to pass a linker flag through the compiler]) +# +# Check to make sure the static flag actually works. +# +wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" +_LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], + _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), + $lt_tmp_static_flag, + [], + [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) +_LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], + [Compiler flag to prevent dynamic linking]) +])# _LT_COMPILER_PIC + + +# _LT_LINKER_SHLIBS([TAGNAME]) +# ---------------------------- +# See if the linker supports building shared libraries. +m4_defun([_LT_LINKER_SHLIBS], +[AC_REQUIRE([LT_PATH_LD])dnl +AC_REQUIRE([LT_PATH_NM])dnl +m4_require([_LT_PATH_MANIFEST_TOOL])dnl +m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_DECL_SED])dnl +m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl +m4_require([_LT_TAG_COMPILER])dnl +AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) +m4_if([$1], [CXX], [ + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] + case $host_os in + aix[[4-9]]*) + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global defined + # symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + ;; + pw32*) + _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" + ;; + cygwin* | mingw* | cegcc*) + case $cc_basename in + cl*) + _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + ;; + *) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] + ;; + esac + ;; + linux* | k*bsd*-gnu | gnu*) + _LT_TAGVAR(link_all_deplibs, $1)=no + ;; + *) + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + ;; + esac +], [ + runpath_var= + _LT_TAGVAR(allow_undefined_flag, $1)= + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(archive_cmds, $1)= + _LT_TAGVAR(archive_expsym_cmds, $1)= + _LT_TAGVAR(compiler_needs_object, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + _LT_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(hardcode_automatic, $1)=no + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(hardcode_libdir_separator, $1)= + _LT_TAGVAR(hardcode_minus_L, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + _LT_TAGVAR(inherit_rpath, $1)=no + _LT_TAGVAR(link_all_deplibs, $1)=unknown + _LT_TAGVAR(module_cmds, $1)= + _LT_TAGVAR(module_expsym_cmds, $1)= + _LT_TAGVAR(old_archive_from_new_cmds, $1)= + _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= + _LT_TAGVAR(thread_safe_flag_spec, $1)= + _LT_TAGVAR(whole_archive_flag_spec, $1)= + # include_expsyms should be a list of space-separated symbols to be *always* + # included in the symbol list + _LT_TAGVAR(include_expsyms, $1)= + # exclude_expsyms can be an extended regexp of symbols to exclude + # it will be wrapped by ` (' and `)$', so one must not match beginning or + # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', + # as well as any symbol that contains `d'. + _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] + # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out + # platforms (ab)use it in PIC code, but their linkers get confused if + # the symbol is explicitly referenced. Since portable code cannot + # rely on this symbol name, it's probably fine to never include it in + # preloaded symbol tables. + # Exclude shared library initialization/finalization symbols. +dnl Note also adjust exclude_expsyms for C++ above. + extract_expsyms_cmds= + + case $host_os in + cygwin* | mingw* | pw32* | cegcc*) + # FIXME: the MSVC++ port hasn't been tested in a loooong time + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + if test "$GCC" != yes; then + with_gnu_ld=no + fi + ;; + interix*) + # we just hope/assume this is gcc and not c89 (= MSVC++) + with_gnu_ld=yes + ;; + openbsd*) + with_gnu_ld=no + ;; + linux* | k*bsd*-gnu | gnu*) + _LT_TAGVAR(link_all_deplibs, $1)=no + ;; + esac + + _LT_TAGVAR(ld_shlibs, $1)=yes + + # On some targets, GNU ld is compatible enough with the native linker + # that we're better off using the native interface for both. + lt_use_gnu_ld_interface=no + if test "$with_gnu_ld" = yes; then + case $host_os in + aix*) + # The AIX port of GNU ld has always aspired to compatibility + # with the native linker. However, as the warning in the GNU ld + # block says, versions before 2.19.5* couldn't really create working + # shared libraries, regardless of the interface used. + case `$LD -v 2>&1` in + *\ \(GNU\ Binutils\)\ 2.19.5*) ;; + *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; + *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + ;; + *) + lt_use_gnu_ld_interface=yes + ;; + esac + fi + + if test "$lt_use_gnu_ld_interface" = yes; then + # If archive_cmds runs LD, not CC, wlarc should be empty + wlarc='${wl}' + + # Set some defaults for GNU ld with shared library support. These + # are reset later if shared libraries are not supported. Putting them + # here allows them to be overridden if necessary. + runpath_var=LD_RUN_PATH + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + # ancient GNU ld didn't support --whole-archive et. al. + if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + supports_anon_versioning=no + case `$LD -v 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 + *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... + *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... + *\ 2.11.*) ;; # other 2.11 versions + *) supports_anon_versioning=yes ;; + esac + + # See if GNU ld supports shared libraries. + case $host_os in + aix[[3-9]]*) + # On AIX/PPC, the GNU linker is very broken + if test "$host_cpu" != ia64; then + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: the GNU linker, at least up to release 2.19, is reported +*** to be unable to reliably create shared libraries on AIX. +*** Therefore, libtool is disabling shared libraries support. If you +*** really care for shared libraries, you may want to install binutils +*** 2.20 or above, or modify your PATH so that a non-GNU linker is found. +*** You will then need to restart the configuration process. + +_LT_EOF + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='' + ;; + m68k) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, + # as there is no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' + _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + haiku*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + interix[[3-9]]*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + + gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) + tmp_diet=no + if test "$host_os" = linux-dietlibc; then + case $cc_basename in + diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) + esac + fi + if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ + && test "$tmp_diet" = no + then + tmp_addflag=' $pic_flag' + tmp_sharedflag='-shared' + case $cc_basename,$host_cpu in + pgcc*) # Portland Group C compiler + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag' + ;; + pgf77* | pgf90* | pgf95* | pgfortran*) + # Portland Group f77 and f90 compilers + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + tmp_addflag=' $pic_flag -Mnomain' ;; + ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 + tmp_addflag=' -i_dynamic' ;; + efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 + tmp_addflag=' -i_dynamic -nofor_main' ;; + ifc* | ifort*) # Intel Fortran compiler + tmp_addflag=' -nofor_main' ;; + lf95*) # Lahey Fortran 8.1 + _LT_TAGVAR(whole_archive_flag_spec, $1)= + tmp_sharedflag='--shared' ;; + xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) + tmp_sharedflag='-qmkshrobj' + tmp_addflag= ;; + nvcc*) # Cuda Compiler Driver 2.2 + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + ;; + esac + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) # Sun C 5.9 + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + tmp_sharedflag='-G' ;; + *Sun\ F*) # Sun Fortran 8.3 + tmp_sharedflag='-G' ;; + esac + _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + + case $cc_basename in + xlf* | bgf* | bgxlf* | mpixlf*) + # IBM XL Fortran 10.1 on PPC cannot create shared libs itself + _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' + fi + ;; + esac + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' + wlarc= + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + fi + ;; + + solaris*) + if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: The releases 2.8.* of the GNU linker cannot reliably +*** create shared libraries on Solaris systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.9.1 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) + case `$LD -v 2>&1` in + *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) + _LT_TAGVAR(ld_shlibs, $1)=no + cat <<_LT_EOF 1>&2 + +*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not +*** reliably create shared libraries on SCO systems. Therefore, libtool +*** is disabling shared libraries support. We urge you to upgrade GNU +*** binutils to release 2.16.91.0.3 or newer. Another option is to modify +*** your PATH or compiler configuration so that the native linker is +*** used, and then restart. + +_LT_EOF + ;; + *) + # For security reasons, it is highly recommended that you always + # use absolute paths for naming shared libraries, and exclude the + # DT_RUNPATH tag from executables and libraries. But doing so + # requires that you compile everything twice, which is a pain. + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + sunos4*) + _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' + wlarc= + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + + if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then + runpath_var= + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) + case $host_os in + aix3*) + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' + # Note: this linker hardcodes the directories in LIBPATH if there + # are no directories specified by -L. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then + # Neither direct hardcoding nor static linking is supported with a + # broken collect2. + _LT_TAGVAR(hardcode_direct, $1)=unsupported + fi + ;; + + aix[[4-9]]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + # If we're using GNU nm, then we don't want the "-C" option. + # -C means demangle to AIX nm, but means don't demangle with GNU nm + # Also, AIX nm treats weak defined symbols like other global + # defined symbols, whereas GNU nm marks them as "W". + if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + else + _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' + fi + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) + for ld_flag in $LDFLAGS; do + if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then + aix_use_runtimelinking=yes + break + fi + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + _LT_TAGVAR(archive_cmds, $1)='' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + + if test "$GCC" = yes; then + case $host_os in aix4.[[012]]|aix4.[[012]].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + _LT_TAGVAR(hardcode_direct, $1)=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)= + fi + ;; + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + _LT_TAGVAR(link_all_deplibs, $1)=no + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to export. + _LT_TAGVAR(always_export_symbols, $1)=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + # This is similar to how AIX traditionally builds its shared libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + amigaos*) + case $host_cpu in + powerpc) + # see comment about AmigaOS4 .so support + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='' + ;; + m68k) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + ;; + + bsdi[[45]]*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic + ;; + + cygwin* | mingw* | pw32* | cegcc*) + # When not using gcc, we currently assume that we are using + # Microsoft Visual C++. + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + case $cc_basename in + cl*) + # Native MSVC + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' + _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' + # Don't use ranlib + _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' + _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # Assume MSVC wrapper + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' + # The linker will automatically build a .lib file if we build a DLL. + _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + # FIXME: Should let the user specify the lib program. + _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + ;; + esac + ;; + + darwin* | rhapsody*) + _LT_DARWIN_LINKER_FEATURES($1) + ;; + + dgux*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor + # support. Future versions do this automatically, but an explicit c++rt0.o + # does not break anything, and helps significantly (at the cost of a little + # extra space). + freebsd2.2*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # Unfortunately, older versions of FreeBSD 2 do not have this feature. + freebsd2.*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + # FreeBSD 3 and greater uses gcc -shared to do shared libraries. + freebsd* | dragonfly*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + hpux9*) + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_direct, $1)=yes + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + ;; + + hpux10*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' + fi + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + fi + ;; + + hpux11*) + if test "$GCC" = yes && test "$with_gnu_ld" = no; then + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + else + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + m4_if($1, [], [ + # Older versions of the 11.00 compiler do not understand -b yet + # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) + _LT_LINKER_OPTION([if $CC understands -b], + _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], + [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], + [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) + ;; + esac + fi + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + case $host_cpu in + hppa*64*|ia64*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + *) + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + + # hardcode_minus_L: Not really in the search PATH, + # but as the default location of the library. + _LT_TAGVAR(hardcode_minus_L, $1)=yes + ;; + esac + fi + ;; + + irix5* | irix6* | nonstopux*) + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + # Try to use the -exported_symbol ld option, if it does not + # work, assume that -exports_file does not work either and + # implicitly export all symbols. + # This should be the same for all languages, so no per-tag cache variable. + AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], + [lt_cv_irix_exported_symbol], + [save_LDFLAGS="$LDFLAGS" + LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" + AC_LINK_IFELSE( + [AC_LANG_SOURCE( + [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], + [C++], [[int foo (void) { return 0; }]], + [Fortran 77], [[ + subroutine foo + end]], + [Fortran], [[ + subroutine foo + end]])])], + [lt_cv_irix_exported_symbol=yes], + [lt_cv_irix_exported_symbol=no]) + LDFLAGS="$save_LDFLAGS"]) + if test "$lt_cv_irix_exported_symbol" = yes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' + fi + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(inherit_rpath, $1)=yes + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + netbsd* | netbsdelf*-gnu) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out + else + _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + newsos6) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *nto* | *qnx*) + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + else + case $host_os in + openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + ;; + esac + fi + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + os2*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' + _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' + ;; + + osf3*) + if test "$GCC" = yes; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + + osf4* | osf5*) # as osf3* with the addition of -msym flag + if test "$GCC" = yes; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + else + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ + $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' + + # Both c and cxx compiler support -rpath directly + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)='no' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + + solaris*) + _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' + if test "$GCC" = yes; then + wlarc='${wl}' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + else + case `$CC -V 2>&1` in + *"Compilers 5.0"*) + wlarc='' + _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' + ;; + *) + wlarc='${wl}' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' + ;; + esac + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. GCC discards it without `$wl', + # but is careful enough not to reorder. + # Supported since Solaris 2.6 (maybe 2.5.1?) + if test "$GCC" = yes; then + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' + fi + ;; + esac + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + sunos4*) + if test "x$host_vendor" = xsequent; then + # Use $CC to link under sequent, because it throws in some extra .o + # files that make .init and .fini sections work. + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' + fi + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4) + case $host_vendor in + sni) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' + _LT_TAGVAR(hardcode_direct, $1)=no + ;; + motorola) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4.3*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' + ;; + + sysv4*MP*) + if test -d /usr/nec; then + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var=LD_RUN_PATH + hardcode_runpath_var=yes + _LT_TAGVAR(ld_shlibs, $1)=yes + fi + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + if test "$GCC" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + fi + ;; + + uts4*) + _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + *) + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + + if test x$host_vendor = xsni; then + case $host in + sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' + ;; + esac + fi + fi +]) +AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) +test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + +_LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld + +_LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl +_LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl +_LT_DECL([], [extract_expsyms_cmds], [2], + [The commands to extract the exported symbol list from a shared archive]) + +# +# Do we need to explicitly link libc? +# +case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in +x|xyes) + # Assume -lc should be added + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + + if test "$enable_shared" = yes && test "$GCC" = yes; then + case $_LT_TAGVAR(archive_cmds, $1) in + *'~'*) + # FIXME: we may have to deal with multi-command sequences. + ;; + '$CC '*) + # Test whether the compiler implicitly links with -lc since on some + # systems, -lgcc has to come before -lc. If gcc already passes -lc + # to ld, don't add -lc before -lgcc. + AC_CACHE_CHECK([whether -lc should be explicitly linked in], + [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), + [$RM conftest* + echo "$lt_simple_compile_test_code" > conftest.$ac_ext + + if AC_TRY_EVAL(ac_compile) 2>conftest.err; then + soname=conftest + lib=conftest + libobjs=conftest.$ac_objext + deplibs= + wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) + pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) + compiler_flags=-v + linker_flags=-v + verstring= + output_objdir=. + libname=conftest + lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) + _LT_TAGVAR(allow_undefined_flag, $1)= + if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) + then + lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no + else + lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes + fi + _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag + else + cat conftest.err 1>&5 + fi + $RM conftest* + ]) + _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) + ;; + esac + fi + ;; +esac + +_LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], + [Whether or not to add -lc for building shared libraries]) +_LT_TAGDECL([allow_libtool_libs_with_static_runtimes], + [enable_shared_with_static_runtimes], [0], + [Whether or not to disallow shared libs when runtime libs are static]) +_LT_TAGDECL([], [export_dynamic_flag_spec], [1], + [Compiler flag to allow reflexive dlopens]) +_LT_TAGDECL([], [whole_archive_flag_spec], [1], + [Compiler flag to generate shared objects directly from archives]) +_LT_TAGDECL([], [compiler_needs_object], [1], + [Whether the compiler copes with passing no objects directly]) +_LT_TAGDECL([], [old_archive_from_new_cmds], [2], + [Create an old-style archive from a shared archive]) +_LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], + [Create a temporary old-style archive to link instead of a shared archive]) +_LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) +_LT_TAGDECL([], [archive_expsym_cmds], [2]) +_LT_TAGDECL([], [module_cmds], [2], + [Commands used to build a loadable module if different from building + a shared archive.]) +_LT_TAGDECL([], [module_expsym_cmds], [2]) +_LT_TAGDECL([], [with_gnu_ld], [1], + [Whether we are building with GNU ld or not]) +_LT_TAGDECL([], [allow_undefined_flag], [1], + [Flag that allows shared libraries with undefined symbols to be built]) +_LT_TAGDECL([], [no_undefined_flag], [1], + [Flag that enforces no undefined symbols]) +_LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], + [Flag to hardcode $libdir into a binary during linking. + This must work even if $libdir does not exist]) +_LT_TAGDECL([], [hardcode_libdir_separator], [1], + [Whether we need a single "-rpath" flag with a separated argument]) +_LT_TAGDECL([], [hardcode_direct], [0], + [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + DIR into the resulting binary]) +_LT_TAGDECL([], [hardcode_direct_absolute], [0], + [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes + DIR into the resulting binary and the resulting library dependency is + "absolute", i.e impossible to change by setting ${shlibpath_var} if the + library is relocated]) +_LT_TAGDECL([], [hardcode_minus_L], [0], + [Set to "yes" if using the -LDIR flag during linking hardcodes DIR + into the resulting binary]) +_LT_TAGDECL([], [hardcode_shlibpath_var], [0], + [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR + into the resulting binary]) +_LT_TAGDECL([], [hardcode_automatic], [0], + [Set to "yes" if building a shared library automatically hardcodes DIR + into the library and all subsequent libraries and executables linked + against it]) +_LT_TAGDECL([], [inherit_rpath], [0], + [Set to yes if linker adds runtime paths of dependent libraries + to runtime path list]) +_LT_TAGDECL([], [link_all_deplibs], [0], + [Whether libtool must link a program against all its dependency libraries]) +_LT_TAGDECL([], [always_export_symbols], [0], + [Set to "yes" if exported symbols are required]) +_LT_TAGDECL([], [export_symbols_cmds], [2], + [The commands to list exported symbols]) +_LT_TAGDECL([], [exclude_expsyms], [1], + [Symbols that should not be listed in the preloaded symbols]) +_LT_TAGDECL([], [include_expsyms], [1], + [Symbols that must always be exported]) +_LT_TAGDECL([], [prelink_cmds], [2], + [Commands necessary for linking programs (against libraries) with templates]) +_LT_TAGDECL([], [postlink_cmds], [2], + [Commands necessary for finishing linking programs]) +_LT_TAGDECL([], [file_list_spec], [1], + [Specify filename containing input files]) +dnl FIXME: Not yet implemented +dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], +dnl [Compiler flag to generate thread safe objects]) +])# _LT_LINKER_SHLIBS + + +# _LT_LANG_C_CONFIG([TAG]) +# ------------------------ +# Ensure that the configuration variables for a C compiler are suitably +# defined. These variables are subsequently used by _LT_CONFIG to write +# the compiler configuration to `libtool'. +m4_defun([_LT_LANG_C_CONFIG], +[m4_require([_LT_DECL_EGREP])dnl +lt_save_CC="$CC" +AC_LANG_PUSH(C) + +# Source file extension for C test sources. +ac_ext=c + +# Object file extension for compiled C test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="int some_variable = 0;" + +# Code to be used in simple link tests +lt_simple_link_test_code='int main(){return(0);}' + +_LT_TAG_COMPILER +# Save the default compiler, since it gets overwritten when the other +# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. +compiler_DEFAULT=$CC + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + LT_SYS_DLOPEN_SELF + _LT_CMD_STRIPLIB + + # Report which library types will actually be built + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_CONFIG($1) +fi +AC_LANG_POP +CC="$lt_save_CC" +])# _LT_LANG_C_CONFIG + + +# _LT_LANG_CXX_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for a C++ compiler are suitably +# defined. These variables are subsequently used by _LT_CONFIG to write +# the compiler configuration to `libtool'. +m4_defun([_LT_LANG_CXX_CONFIG], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +m4_require([_LT_DECL_EGREP])dnl +m4_require([_LT_PATH_MANIFEST_TOOL])dnl +if test -n "$CXX" && ( test "X$CXX" != "Xno" && + ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || + (test "X$CXX" != "Xg++"))) ; then + AC_PROG_CXXCPP +else + _lt_caught_CXX_error=yes +fi + +AC_LANG_PUSH(C++) +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(compiler_needs_object, $1)=no +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for C++ test sources. +ac_ext=cpp + +# Object file extension for compiled C++ test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the CXX compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_caught_CXX_error" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="int some_variable = 0;" + + # Code to be used in simple link tests + lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC=$CC + lt_save_CFLAGS=$CFLAGS + lt_save_LD=$LD + lt_save_GCC=$GCC + GCC=$GXX + lt_save_with_gnu_ld=$with_gnu_ld + lt_save_path_LD=$lt_cv_path_LD + if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then + lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx + else + $as_unset lt_cv_prog_gnu_ld + fi + if test -n "${lt_cv_path_LDCXX+set}"; then + lt_cv_path_LD=$lt_cv_path_LDCXX + else + $as_unset lt_cv_path_LD + fi + test -z "${LDCXX+set}" || LD=$LDCXX + CC=${CXX-"c++"} + CFLAGS=$CXXFLAGS + compiler=$CC + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + + if test -n "$compiler"; then + # We don't want -fno-exception when compiling C++ code, so set the + # no_builtin_flag separately + if test "$GXX" = yes; then + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' + else + _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= + fi + + if test "$GXX" = yes; then + # Set up default GNU C++ configuration + + LT_PATH_LD + + # Check if GNU C++ uses GNU ld as the underlying linker, since the + # archiving commands below assume that GNU ld is being used. + if test "$with_gnu_ld" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + + # If archive_cmds runs LD, not CC, wlarc should be empty + # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to + # investigate it a little bit more. (MM) + wlarc='${wl}' + + # ancient GNU ld didn't support --whole-archive et. al. + if eval "`$CC -print-prog-name=ld` --help 2>&1" | + $GREP 'no-whole-archive' > /dev/null; then + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else + _LT_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + with_gnu_ld=no + wlarc= + + # A generic and very simple default shared library creation + # command for GNU C++ for the case where it uses the native + # linker, instead of GNU ld. If possible, this setting should + # overridden to take advantage of the native linker features on + # the platform it is being used on. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + fi + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + GXX=no + with_gnu_ld=no + wlarc= + fi + + # PORTME: fill in a description of your system's C++ link characteristics + AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) + _LT_TAGVAR(ld_shlibs, $1)=yes + case $host_os in + aix3*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aix[[4-9]]*) + if test "$host_cpu" = ia64; then + # On IA64, the linker does run time linking by default, so we don't + # have to do anything special. + aix_use_runtimelinking=no + exp_sym_flag='-Bexport' + no_entry_flag="" + else + aix_use_runtimelinking=no + + # Test if we are trying to use run time linking or normal + # AIX style linking. If -brtl is somewhere in LDFLAGS, we + # need to do runtime linking. + case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) + for ld_flag in $LDFLAGS; do + case $ld_flag in + *-brtl*) + aix_use_runtimelinking=yes + break + ;; + esac + done + ;; + esac + + exp_sym_flag='-bexport' + no_entry_flag='-bnoentry' + fi + + # When large executables or shared objects are built, AIX ld can + # have problems creating the table of contents. If linking a library + # or program results in "error TOC overflow" add -mminimal-toc to + # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not + # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. + + _LT_TAGVAR(archive_cmds, $1)='' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' + + if test "$GXX" = yes; then + case $host_os in aix4.[[012]]|aix4.[[012]].*) + # We only want to do this on AIX 4.2 and lower, the check + # below for broken collect2 doesn't work under 4.3+ + collect2name=`${CC} -print-prog-name=collect2` + if test -f "$collect2name" && + strings "$collect2name" | $GREP resolve_lib_name >/dev/null + then + # We have reworked collect2 + : + else + # We have old collect2 + _LT_TAGVAR(hardcode_direct, $1)=unsupported + # It fails to find uninstalled libraries when the uninstalled + # path is not listed in the libpath. Setting hardcode_minus_L + # to unsupported forces relinking + _LT_TAGVAR(hardcode_minus_L, $1)=yes + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)= + fi + esac + shared_flag='-shared' + if test "$aix_use_runtimelinking" = yes; then + shared_flag="$shared_flag "'${wl}-G' + fi + else + # not using gcc + if test "$host_cpu" = ia64; then + # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release + # chokes on -Wl,-G. The following line is correct: + shared_flag='-G' + else + if test "$aix_use_runtimelinking" = yes; then + shared_flag='${wl}-G' + else + shared_flag='${wl}-bM:SRE' + fi + fi + fi + + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' + # It seems that -bexpall does not export symbols beginning with + # underscore (_), so it is better to generate a list of symbols to + # export. + _LT_TAGVAR(always_export_symbols, $1)=yes + if test "$aix_use_runtimelinking" = yes; then + # Warning - without using the other runtime loading flags (-brtl), + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(allow_undefined_flag, $1)='-berok' + # Determine the default libpath from the value encoded in an empty + # executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" + else + if test "$host_cpu" = ia64; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' + _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" + else + # Determine the default libpath from the value encoded in an + # empty executable. + _LT_SYS_MODULE_PATH_AIX([$1]) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" + # Warning - without using the other run time loading flags, + # -berok will link without error, but may produce a broken library. + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' + if test "$with_gnu_ld" = yes; then + # We only use this code for GNU lds that support --whole-archive. + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + else + # Exported symbols can be pulled into shared objects from archives + _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' + fi + _LT_TAGVAR(archive_cmds_need_lc, $1)=yes + # This is similar to how AIX traditionally builds its shared + # libraries. + _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' + fi + fi + ;; + + beos*) + if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + # Joseph Beckenbach says some releases of gcc + # support --undefined. This deserves some investigation. FIXME + _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + chorus*) + case $cc_basename in + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + cygwin* | mingw* | pw32* | cegcc*) + case $GXX,$cc_basename in + ,cl* | no,cl*) + # Native MSVC + # hardcode_libdir_flag_spec is actually meaningless, as there is + # no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=yes + _LT_TAGVAR(file_list_spec, $1)='@' + # Tell ltmain to make .lib files, not .a files. + libext=lib + # Tell ltmain to make .dll files, not .so files. + shrext_cmds=".dll" + # FIXME: Setting linknames here is a bad hack. + _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames=' + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; + else + $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp; + fi~ + $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ + linknames=' + # The linker will not automatically build a static lib if we build a DLL. + # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + # Don't use ranlib + _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' + _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ + lt_tool_outputfile="@TOOL_OUTPUT@"~ + case $lt_outputfile in + *.exe|*.EXE) ;; + *) + lt_outputfile="$lt_outputfile.exe" + lt_tool_outputfile="$lt_tool_outputfile.exe" + ;; + esac~ + func_to_tool_file "$lt_outputfile"~ + if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then + $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; + $RM "$lt_outputfile.manifest"; + fi' + ;; + *) + # g++ + # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, + # as there is no search path for DLLs. + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols' + _LT_TAGVAR(allow_undefined_flag, $1)=unsupported + _LT_TAGVAR(always_export_symbols, $1)=no + _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes + + if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + # If the export-symbols file already is a .def file (1st line + # is EXPORTS), use it as is; otherwise, prepend... + _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then + cp $export_symbols $output_objdir/$soname.def; + else + echo EXPORTS > $output_objdir/$soname.def; + cat $export_symbols >> $output_objdir/$soname.def; + fi~ + $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + darwin* | rhapsody*) + _LT_DARWIN_LINKER_FEATURES($1) + ;; + + dgux*) + case $cc_basename in + ec++*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + ghcx*) + # Green Hills C++ Compiler + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + freebsd2.*) + # C++ shared libraries reported to be fairly broken before + # switch to ELF + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + freebsd-elf*) + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + ;; + + freebsd* | dragonfly*) + # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF + # conventions + _LT_TAGVAR(ld_shlibs, $1)=yes + ;; + + gnu*) + ;; + + haiku*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + + hpux9*) + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, + # but as the default + # location of the library. + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes; then + _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + hpux10*|hpux11*) + if test $with_gnu_ld = no; then + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + case $host_cpu in + hppa*64*|ia64*) + ;; + *) + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + ;; + esac + fi + case $host_cpu in + hppa*64*|ia64*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + *) + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, + # but as the default + # location of the library. + ;; + esac + + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes; then + if test $with_gnu_ld = no; then + case $host_cpu in + hppa*64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + ia64*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + ;; + esac + fi + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + interix[[3-9]]*) + _LT_TAGVAR(hardcode_direct, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. + # Instead, shared libraries are loaded at an image base (0x10000000 by + # default) and relocated if they conflict, which is a slow very memory + # consuming and fragmenting process. To avoid this, we pick a random, + # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link + # time. Moving up from 0x10000000 also allows more sbrk(2) space. + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' + ;; + irix5* | irix6*) + case $cc_basename in + CC*) + # SGI C++ + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + + # Archives containing C++ object files must be created using + # "CC -ar", where "CC" is the IRIX C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' + ;; + *) + if test "$GXX" = yes; then + if test "$with_gnu_ld" = no; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib' + fi + fi + _LT_TAGVAR(link_all_deplibs, $1)=yes + ;; + esac + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + _LT_TAGVAR(inherit_rpath, $1)=yes + ;; + + linux* | k*bsd*-gnu | kopensolaris*-gnu) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + + # Archives containing C++ object files must be created using + # "CC -Bstatic", where "CC" is the KAI C++ compiler. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' + ;; + icpc* | ecpc* ) + # Intel C++ + with_gnu_ld=yes + # version 8.0 and above of icpc choke on multiply defined symbols + # if we add $predep_objects and $postdep_objects, however 7.1 and + # earlier do not add the objects themselves. + case `$CC -V 2>&1` in + *"Version 7."*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + *) # Version 8.0 or newer + tmp_idyn= + case $host_cpu in + ia64*) tmp_idyn=' -i_dynamic';; + esac + _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' + ;; + esac + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' + ;; + pgCC* | pgcpp*) + # Portland Group C++ compiler + case `$CC -V` in + *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) + _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ + compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' + _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ + $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ + $RANLIB $oldlib' + _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ + rm -rf $tpldir~ + $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ + $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + *) # Version 6 and above use weak symbols + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + ;; + cxx*) + # Compaq C++ + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' + + runpath_var=LD_RUN_PATH + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' + ;; + xl* | mpixl* | bgxl*) + # IBM XL 8.0 on PPC, with GNU ld + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' + if test "x$supports_anon_versioning" = xyes; then + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ + cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ + echo "local: *; };" >> $output_objdir/$libname.ver~ + $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' + fi + ;; + *) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive' + _LT_TAGVAR(compiler_needs_object, $1)=yes + + # Not sure whether something based on + # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 + # would be better. + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' + ;; + esac + ;; + esac + ;; + + lynxos*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + m88k*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + mvs*) + case $cc_basename in + cxx*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + netbsd*) + if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' + wlarc= + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + fi + # Workaround some broken pre-1.5 toolchains + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' + ;; + + *nto* | *qnx*) + _LT_TAGVAR(ld_shlibs, $1)=yes + ;; + + openbsd2*) + # C++ shared libraries are fairly broken + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + openbsd*) + if test -f /usr/libexec/ld.so; then + _LT_TAGVAR(hardcode_direct, $1)=yes + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_direct_absolute, $1)=yes + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' + _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + fi + output_verbose_link_cmd=func_echo_all + else + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + + osf3* | osf4* | osf5*) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler + + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Archives containing C++ object files must be created using + # the KAI C++ compiler. + case $host in + osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; + *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; + esac + ;; + RCC*) + # Rational C++ 2.4.1 + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + cxx*) + case $host in + osf3*) + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + ;; + *) + _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' + _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ + echo "-hidden">> $lib.exp~ + $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~ + $RM $lib.exp' + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' + ;; + *) + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' + case $host in + osf3*) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + ;; + esac + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + + else + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + + psos*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + sunos4*) + case $cc_basename in + CC*) + # Sun C++ 4.x + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + lcc*) + # Lucid + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + solaris*) + case $cc_basename in + CC* | sunCC*) + # Sun C++ 4.2, 5.x and Centerline C++ + _LT_TAGVAR(archive_cmds_need_lc,$1)=yes + _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' + _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + # The compiler driver will combine and reorder linker options, + # but understands `-z linker_flag'. + # Supported since Solaris 2.6 (maybe 2.5.1?) + _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' + ;; + esac + _LT_TAGVAR(link_all_deplibs, $1)=yes + + output_verbose_link_cmd='func_echo_all' + + # Archives containing C++ object files must be created using + # "CC -xar", where "CC" is the Sun C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' + ;; + gcx*) + # Green Hills C++ Compiler + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + + # The C++ compiler must be used to create the archive. + _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' + ;; + *) + # GNU C++ compiler with Solaris linker + if test "$GXX" = yes && test "$with_gnu_ld" = no; then + _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' + if $CC --version | $GREP -v '^2\.7' > /dev/null; then + _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + else + # g++ 2.7 appears to require `-G' NOT `-shared' on this + # platform. + _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' + _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ + $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' + fi + + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' + case $host_os in + solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; + *) + _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + ;; + esac + fi + ;; + esac + ;; + + sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + sysv5* | sco3.2v5* | sco5v6*) + # Note: We can NOT use -z defs as we might desire, because we do not + # link with -lc, and that would cause any symbols used from libc to + # always be unresolved, which means just about no library would + # ever link correctly. If we're not using GNU ld we use -z text + # though, which does catch some bad symbols but isn't as heavy-handed + # as -z defs. + _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' + _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' + _LT_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_TAGVAR(hardcode_shlibpath_var, $1)=no + _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' + _LT_TAGVAR(hardcode_libdir_separator, $1)=':' + _LT_TAGVAR(link_all_deplibs, $1)=yes + _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' + runpath_var='LD_RUN_PATH' + + case $cc_basename in + CC*) + _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ + '"$_LT_TAGVAR(old_archive_cmds, $1)" + _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ + '"$_LT_TAGVAR(reload_cmds, $1)" + ;; + *) + _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' + ;; + esac + ;; + + tandem*) + case $cc_basename in + NCC*) + # NonStop-UX NCC 3.20 + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + ;; + + vxworks*) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + + *) + # FIXME: insert proper C++ library support + _LT_TAGVAR(ld_shlibs, $1)=no + ;; + esac + + AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) + test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no + + _LT_TAGVAR(GCC, $1)="$GXX" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_SYS_HIDDEN_LIBDEPS($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS + LDCXX=$LD + LD=$lt_save_LD + GCC=$lt_save_GCC + with_gnu_ld=$lt_save_with_gnu_ld + lt_cv_path_LDCXX=$lt_cv_path_LD + lt_cv_path_LD=$lt_save_path_LD + lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld + lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld +fi # test "$_lt_caught_CXX_error" != yes + +AC_LANG_POP +])# _LT_LANG_CXX_CONFIG + + +# _LT_FUNC_STRIPNAME_CNF +# ---------------------- +# func_stripname_cnf prefix suffix name +# strip PREFIX and SUFFIX off of NAME. +# PREFIX and SUFFIX must not contain globbing or regex special +# characters, hashes, percent signs, but SUFFIX may contain a leading +# dot (in which case that matches only a dot). +# +# This function is identical to the (non-XSI) version of func_stripname, +# except this one can be used by m4 code that may be executed by configure, +# rather than the libtool script. +m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl +AC_REQUIRE([_LT_DECL_SED]) +AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) +func_stripname_cnf () +{ + case ${2} in + .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;; + *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;; + esac +} # func_stripname_cnf +])# _LT_FUNC_STRIPNAME_CNF + +# _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) +# --------------------------------- +# Figure out "hidden" library dependencies from verbose +# compiler output when linking a shared library. +# Parse the compiler output and extract the necessary +# objects, libraries and library flags. +m4_defun([_LT_SYS_HIDDEN_LIBDEPS], +[m4_require([_LT_FILEUTILS_DEFAULTS])dnl +AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl +# Dependencies to place before and after the object being linked: +_LT_TAGVAR(predep_objects, $1)= +_LT_TAGVAR(postdep_objects, $1)= +_LT_TAGVAR(predeps, $1)= +_LT_TAGVAR(postdeps, $1)= +_LT_TAGVAR(compiler_lib_search_path, $1)= + +dnl we can't use the lt_simple_compile_test_code here, +dnl because it contains code intended for an executable, +dnl not a library. It's possible we should let each +dnl tag define a new lt_????_link_test_code variable, +dnl but it's only used here... +m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF +int a; +void foo (void) { a = 0; } +_LT_EOF +], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF +class Foo +{ +public: + Foo (void) { a = 0; } +private: + int a; +}; +_LT_EOF +], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer*4 a + a=0 + return + end +_LT_EOF +], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF + subroutine foo + implicit none + integer a + a=0 + return + end +_LT_EOF +], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF +public class foo { + private int a; + public void bar (void) { + a = 0; + } +}; +_LT_EOF +], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF +package foo +func foo() { +} +_LT_EOF +]) + +_lt_libdeps_save_CFLAGS=$CFLAGS +case "$CC $CFLAGS " in #( +*\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; +*\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; +*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; +esac + +dnl Parse the compiler output and extract the necessary +dnl objects, libraries and library flags. +if AC_TRY_EVAL(ac_compile); then + # Parse the compiler output and extract the necessary + # objects, libraries and library flags. + + # Sentinel used to keep track of whether or not we are before + # the conftest object file. + pre_test_object_deps_done=no + + for p in `eval "$output_verbose_link_cmd"`; do + case ${prev}${p} in + + -L* | -R* | -l*) + # Some compilers place space between "-{L,R}" and the path. + # Remove the space. + if test $p = "-L" || + test $p = "-R"; then + prev=$p + continue + fi + + # Expand the sysroot to ease extracting the directories later. + if test -z "$prev"; then + case $p in + -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; + -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; + -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; + esac + fi + case $p in + =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; + esac + if test "$pre_test_object_deps_done" = no; then + case ${prev} in + -L | -R) + # Internal compiler library paths should come after those + # provided the user. The postdeps already come after the + # user supplied libs so there is no need to process them. + if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then + _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" + else + _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" + fi + ;; + # The "-l" case would never come before the object being + # linked, so don't bother handling this case. + esac + else + if test -z "$_LT_TAGVAR(postdeps, $1)"; then + _LT_TAGVAR(postdeps, $1)="${prev}${p}" + else + _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" + fi + fi + prev= + ;; + + *.lto.$objext) ;; # Ignore GCC LTO objects + *.$objext) + # This assumes that the test object file only shows up + # once in the compiler output. + if test "$p" = "conftest.$objext"; then + pre_test_object_deps_done=yes + continue + fi + + if test "$pre_test_object_deps_done" = no; then + if test -z "$_LT_TAGVAR(predep_objects, $1)"; then + _LT_TAGVAR(predep_objects, $1)="$p" + else + _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" + fi + else + if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then + _LT_TAGVAR(postdep_objects, $1)="$p" + else + _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" + fi + fi + ;; + + *) ;; # Ignore the rest. + + esac + done + + # Clean up. + rm -f a.out a.exe +else + echo "libtool.m4: error: problem compiling $1 test program" +fi + +$RM -f confest.$objext +CFLAGS=$_lt_libdeps_save_CFLAGS + +# PORTME: override above test on systems where it is broken +m4_if([$1], [CXX], +[case $host_os in +interix[[3-9]]*) + # Interix 3.5 installs completely hosed .la files for C++, so rather than + # hack all around it, let's just trust "g++" to DTRT. + _LT_TAGVAR(predep_objects,$1)= + _LT_TAGVAR(postdep_objects,$1)= + _LT_TAGVAR(postdeps,$1)= + ;; + +linux*) + case `$CC -V 2>&1 | sed 5q` in + *Sun\ C*) + # Sun C++ 5.9 + + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + if test "$solaris_use_stlport4" != yes; then + _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' + fi + ;; + esac + ;; + +solaris*) + case $cc_basename in + CC* | sunCC*) + # The more standards-conforming stlport4 library is + # incompatible with the Cstd library. Avoid specifying + # it if it's in CXXFLAGS. Ignore libCrun as + # -library=stlport4 depends on it. + case " $CXX $CXXFLAGS " in + *" -library=stlport4 "*) + solaris_use_stlport4=yes + ;; + esac + + # Adding this requires a known-good setup of shared libraries for + # Sun compiler versions before 5.6, else PIC objects from an old + # archive will be linked into the output, leading to subtle bugs. + if test "$solaris_use_stlport4" != yes; then + _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' + fi + ;; + esac + ;; +esac +]) + +case " $_LT_TAGVAR(postdeps, $1) " in +*" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; +esac + _LT_TAGVAR(compiler_lib_search_dirs, $1)= +if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then + _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` +fi +_LT_TAGDECL([], [compiler_lib_search_dirs], [1], + [The directories searched by this compiler when creating a shared library]) +_LT_TAGDECL([], [predep_objects], [1], + [Dependencies to place before and after the objects being linked to + create a shared library]) +_LT_TAGDECL([], [postdep_objects], [1]) +_LT_TAGDECL([], [predeps], [1]) +_LT_TAGDECL([], [postdeps], [1]) +_LT_TAGDECL([], [compiler_lib_search_path], [1], + [The library search path used internally by the compiler when linking + a shared library]) +])# _LT_SYS_HIDDEN_LIBDEPS + + +# _LT_LANG_F77_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for a Fortran 77 compiler are +# suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_F77_CONFIG], +[AC_LANG_PUSH(Fortran 77) +if test -z "$F77" || test "X$F77" = "Xno"; then + _lt_disable_F77=yes +fi + +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for f77 test sources. +ac_ext=f + +# Object file extension for compiled f77 test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the F77 compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_disable_F77" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + lt_save_GCC=$GCC + lt_save_CFLAGS=$CFLAGS + CC=${F77-"f77"} + CFLAGS=$FFLAGS + compiler=$CC + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + GCC=$G77 + if test -n "$compiler"; then + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_TAGVAR(GCC, $1)="$G77" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC="$lt_save_CC" + CFLAGS="$lt_save_CFLAGS" +fi # test "$_lt_disable_F77" != yes + +AC_LANG_POP +])# _LT_LANG_F77_CONFIG + + +# _LT_LANG_FC_CONFIG([TAG]) +# ------------------------- +# Ensure that the configuration variables for a Fortran compiler are +# suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_FC_CONFIG], +[AC_LANG_PUSH(Fortran) + +if test -z "$FC" || test "X$FC" = "Xno"; then + _lt_disable_FC=yes +fi + +_LT_TAGVAR(archive_cmds_need_lc, $1)=no +_LT_TAGVAR(allow_undefined_flag, $1)= +_LT_TAGVAR(always_export_symbols, $1)=no +_LT_TAGVAR(archive_expsym_cmds, $1)= +_LT_TAGVAR(export_dynamic_flag_spec, $1)= +_LT_TAGVAR(hardcode_direct, $1)=no +_LT_TAGVAR(hardcode_direct_absolute, $1)=no +_LT_TAGVAR(hardcode_libdir_flag_spec, $1)= +_LT_TAGVAR(hardcode_libdir_separator, $1)= +_LT_TAGVAR(hardcode_minus_L, $1)=no +_LT_TAGVAR(hardcode_automatic, $1)=no +_LT_TAGVAR(inherit_rpath, $1)=no +_LT_TAGVAR(module_cmds, $1)= +_LT_TAGVAR(module_expsym_cmds, $1)= +_LT_TAGVAR(link_all_deplibs, $1)=unknown +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds +_LT_TAGVAR(no_undefined_flag, $1)= +_LT_TAGVAR(whole_archive_flag_spec, $1)= +_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no + +# Source file extension for fc test sources. +ac_ext=${ac_fc_srcext-f} + +# Object file extension for compiled fc test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# No sense in running all these tests if we already determined that +# the FC compiler isn't working. Some variables (like enable_shared) +# are currently assumed to apply to all compilers on this platform, +# and will be corrupted by setting them based on a non-working compiler. +if test "$_lt_disable_FC" != yes; then + # Code to be used in simple compile tests + lt_simple_compile_test_code="\ + subroutine t + return + end +" + + # Code to be used in simple link tests + lt_simple_link_test_code="\ + program t + end +" + + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_TAG_COMPILER + + # save warnings/boilerplate of simple test code + _LT_COMPILER_BOILERPLATE + _LT_LINKER_BOILERPLATE + + # Allow CC to be a program name with arguments. + lt_save_CC="$CC" + lt_save_GCC=$GCC + lt_save_CFLAGS=$CFLAGS + CC=${FC-"f95"} + CFLAGS=$FCFLAGS + compiler=$CC + GCC=$ac_cv_fc_compiler_gnu + + _LT_TAGVAR(compiler, $1)=$CC + _LT_CC_BASENAME([$compiler]) + + if test -n "$compiler"; then + AC_MSG_CHECKING([if libtool supports shared libraries]) + AC_MSG_RESULT([$can_build_shared]) + + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no + + # On AIX, shared libraries and static libraries use the same namespace, and + # are all built from PIC. + case $host_os in + aix3*) + test "$enable_shared" = yes && enable_static=no + if test -n "$RANLIB"; then + archive_cmds="$archive_cmds~\$RANLIB \$lib" + postinstall_cmds='$RANLIB $lib' + fi + ;; + aix[[4-9]]*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) + + AC_MSG_CHECKING([whether to build static libraries]) + # Make sure either enable_shared or enable_static is yes. + test "$enable_shared" = yes || enable_static=yes + AC_MSG_RESULT([$enable_static]) + + _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" + _LT_TAGVAR(LD, $1)="$LD" + + ## CAVEAT EMPTOR: + ## There is no encapsulation within the following macros, do not change + ## the running order or otherwise move them around unless you know exactly + ## what you are doing... + _LT_SYS_HIDDEN_LIBDEPS($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_SYS_DYNAMIC_LINKER($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) + fi # test -n "$compiler" + + GCC=$lt_save_GCC + CC=$lt_save_CC + CFLAGS=$lt_save_CFLAGS +fi # test "$_lt_disable_FC" != yes + +AC_LANG_POP +])# _LT_LANG_FC_CONFIG + + +# _LT_LANG_GCJ_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for the GNU Java Compiler compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_GCJ_CONFIG], +[AC_REQUIRE([LT_PROG_GCJ])dnl +AC_LANG_SAVE + +# Source file extension for Java test sources. +ac_ext=java + +# Object file extension for compiled Java test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="class foo {}" + +# Code to be used in simple link tests +lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC=$CC +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC=yes +CC=${GCJ-"gcj"} +CFLAGS=$GCJFLAGS +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_TAGVAR(LD, $1)="$LD" +_LT_CC_BASENAME([$compiler]) + +# GCJ did not exist at the time GCC didn't implicitly link libc in. +_LT_TAGVAR(archive_cmds_need_lc, $1)=no + +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) +fi + +AC_LANG_RESTORE + +GCC=$lt_save_GCC +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_GCJ_CONFIG + + +# _LT_LANG_GO_CONFIG([TAG]) +# -------------------------- +# Ensure that the configuration variables for the GNU Go compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_GO_CONFIG], +[AC_REQUIRE([LT_PROG_GO])dnl +AC_LANG_SAVE + +# Source file extension for Go test sources. +ac_ext=go + +# Object file extension for compiled Go test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code="package main; func main() { }" + +# Code to be used in simple link tests +lt_simple_link_test_code='package main; func main() { }' + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC=$CC +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC=yes +CC=${GOC-"gccgo"} +CFLAGS=$GOFLAGS +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_TAGVAR(LD, $1)="$LD" +_LT_CC_BASENAME([$compiler]) + +# Go did not exist at the time GCC didn't implicitly link libc in. +_LT_TAGVAR(archive_cmds_need_lc, $1)=no + +_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds +_LT_TAGVAR(reload_flag, $1)=$reload_flag +_LT_TAGVAR(reload_cmds, $1)=$reload_cmds + +## CAVEAT EMPTOR: +## There is no encapsulation within the following macros, do not change +## the running order or otherwise move them around unless you know exactly +## what you are doing... +if test -n "$compiler"; then + _LT_COMPILER_NO_RTTI($1) + _LT_COMPILER_PIC($1) + _LT_COMPILER_C_O($1) + _LT_COMPILER_FILE_LOCKS($1) + _LT_LINKER_SHLIBS($1) + _LT_LINKER_HARDCODE_LIBPATH($1) + + _LT_CONFIG($1) +fi + +AC_LANG_RESTORE + +GCC=$lt_save_GCC +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_GO_CONFIG + + +# _LT_LANG_RC_CONFIG([TAG]) +# ------------------------- +# Ensure that the configuration variables for the Windows resource compiler +# are suitably defined. These variables are subsequently used by _LT_CONFIG +# to write the compiler configuration to `libtool'. +m4_defun([_LT_LANG_RC_CONFIG], +[AC_REQUIRE([LT_PROG_RC])dnl +AC_LANG_SAVE + +# Source file extension for RC test sources. +ac_ext=rc + +# Object file extension for compiled RC test sources. +objext=o +_LT_TAGVAR(objext, $1)=$objext + +# Code to be used in simple compile tests +lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' + +# Code to be used in simple link tests +lt_simple_link_test_code="$lt_simple_compile_test_code" + +# ltmain only uses $CC for tagged configurations so make sure $CC is set. +_LT_TAG_COMPILER + +# save warnings/boilerplate of simple test code +_LT_COMPILER_BOILERPLATE +_LT_LINKER_BOILERPLATE + +# Allow CC to be a program name with arguments. +lt_save_CC="$CC" +lt_save_CFLAGS=$CFLAGS +lt_save_GCC=$GCC +GCC= +CC=${RC-"windres"} +CFLAGS= +compiler=$CC +_LT_TAGVAR(compiler, $1)=$CC +_LT_CC_BASENAME([$compiler]) +_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + +if test -n "$compiler"; then + : + _LT_CONFIG($1) +fi + +GCC=$lt_save_GCC +AC_LANG_RESTORE +CC=$lt_save_CC +CFLAGS=$lt_save_CFLAGS +])# _LT_LANG_RC_CONFIG + + +# LT_PROG_GCJ +# ----------- +AC_DEFUN([LT_PROG_GCJ], +[m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], + [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], + [AC_CHECK_TOOL(GCJ, gcj,) + test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" + AC_SUBST(GCJFLAGS)])])[]dnl +]) + +# Old name: +AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_GCJ], []) + + +# LT_PROG_GO +# ---------- +AC_DEFUN([LT_PROG_GO], +[AC_CHECK_TOOL(GOC, gccgo,) +]) + + +# LT_PROG_RC +# ---------- +AC_DEFUN([LT_PROG_RC], +[AC_CHECK_TOOL(RC, windres,) +]) + +# Old name: +AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_RC], []) + + +# _LT_DECL_EGREP +# -------------- +# If we don't have a new enough Autoconf to choose the best grep +# available, choose the one first in the user's PATH. +m4_defun([_LT_DECL_EGREP], +[AC_REQUIRE([AC_PROG_EGREP])dnl +AC_REQUIRE([AC_PROG_FGREP])dnl +test -z "$GREP" && GREP=grep +_LT_DECL([], [GREP], [1], [A grep program that handles long lines]) +_LT_DECL([], [EGREP], [1], [An ERE matcher]) +_LT_DECL([], [FGREP], [1], [A literal string matcher]) +dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too +AC_SUBST([GREP]) +]) + + +# _LT_DECL_OBJDUMP +# -------------- +# If we don't have a new enough Autoconf to choose the best objdump +# available, choose the one first in the user's PATH. +m4_defun([_LT_DECL_OBJDUMP], +[AC_CHECK_TOOL(OBJDUMP, objdump, false) +test -z "$OBJDUMP" && OBJDUMP=objdump +_LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) +AC_SUBST([OBJDUMP]) +]) + +# _LT_DECL_DLLTOOL +# ---------------- +# Ensure DLLTOOL variable is set. +m4_defun([_LT_DECL_DLLTOOL], +[AC_CHECK_TOOL(DLLTOOL, dlltool, false) +test -z "$DLLTOOL" && DLLTOOL=dlltool +_LT_DECL([], [DLLTOOL], [1], [DLL creation program]) +AC_SUBST([DLLTOOL]) +]) + +# _LT_DECL_SED +# ------------ +# Check for a fully-functional sed program, that truncates +# as few characters as possible. Prefer GNU sed if found. +m4_defun([_LT_DECL_SED], +[AC_PROG_SED +test -z "$SED" && SED=sed +Xsed="$SED -e 1s/^X//" +_LT_DECL([], [SED], [1], [A sed program that does not truncate output]) +_LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], + [Sed that helps us avoid accidentally triggering echo(1) options like -n]) +])# _LT_DECL_SED + +m4_ifndef([AC_PROG_SED], [ +############################################################ +# NOTE: This macro has been submitted for inclusion into # +# GNU Autoconf as AC_PROG_SED. When it is available in # +# a released version of Autoconf we should remove this # +# macro and use it instead. # +############################################################ + +m4_defun([AC_PROG_SED], +[AC_MSG_CHECKING([for a sed that does not truncate output]) +AC_CACHE_VAL(lt_cv_path_SED, +[# Loop through the user's path and test for sed and gsed. +# Then use that list of sed's as ones to test for truncation. +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for lt_ac_prog in sed gsed; do + for ac_exec_ext in '' $ac_executable_extensions; do + if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then + lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" + fi + done + done +done +IFS=$as_save_IFS +lt_ac_max=0 +lt_ac_count=0 +# Add /usr/xpg4/bin/sed as it is typically found on Solaris +# along with /bin/sed that truncates output. +for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do + test ! -f $lt_ac_sed && continue + cat /dev/null > conftest.in + lt_ac_count=0 + echo $ECHO_N "0123456789$ECHO_C" >conftest.in + # Check for GNU sed and select it if it is found. + if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then + lt_cv_path_SED=$lt_ac_sed + break + fi + while true; do + cat conftest.in conftest.in >conftest.tmp + mv conftest.tmp conftest.in + cp conftest.in conftest.nl + echo >>conftest.nl + $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break + cmp -s conftest.out conftest.nl || break + # 10000 chars as input seems more than enough + test $lt_ac_count -gt 10 && break + lt_ac_count=`expr $lt_ac_count + 1` + if test $lt_ac_count -gt $lt_ac_max; then + lt_ac_max=$lt_ac_count + lt_cv_path_SED=$lt_ac_sed + fi + done +done +]) +SED=$lt_cv_path_SED +AC_SUBST([SED]) +AC_MSG_RESULT([$SED]) +])#AC_PROG_SED +])#m4_ifndef + +# Old name: +AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([LT_AC_PROG_SED], []) + + +# _LT_CHECK_SHELL_FEATURES +# ------------------------ +# Find out whether the shell is Bourne or XSI compatible, +# or has some other useful features. +m4_defun([_LT_CHECK_SHELL_FEATURES], +[AC_MSG_CHECKING([whether the shell understands some XSI constructs]) +# Try some XSI features +xsi_shell=no +( _lt_dummy="a/b/c" + test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ + = c,a/b,b/c, \ + && eval 'test $(( 1 + 1 )) -eq 2 \ + && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ + && xsi_shell=yes +AC_MSG_RESULT([$xsi_shell]) +_LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) + +AC_MSG_CHECKING([whether the shell understands "+="]) +lt_shell_append=no +( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ + >/dev/null 2>&1 \ + && lt_shell_append=yes +AC_MSG_RESULT([$lt_shell_append]) +_LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) + +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + lt_unset=unset +else + lt_unset=false +fi +_LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl + +# test EBCDIC or ASCII +case `echo X|tr X '\101'` in + A) # ASCII based system + # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr + lt_SP2NL='tr \040 \012' + lt_NL2SP='tr \015\012 \040\040' + ;; + *) # EBCDIC based system + lt_SP2NL='tr \100 \n' + lt_NL2SP='tr \r\n \100\100' + ;; +esac +_LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl +_LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl +])# _LT_CHECK_SHELL_FEATURES + + +# _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) +# ------------------------------------------------------ +# In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and +# '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. +m4_defun([_LT_PROG_FUNCTION_REPLACE], +[dnl { +sed -e '/^$1 ()$/,/^} # $1 /c\ +$1 ()\ +{\ +m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) +} # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") +test 0 -eq $? || _lt_function_replace_fail=: +]) + + +# _LT_PROG_REPLACE_SHELLFNS +# ------------------------- +# Replace existing portable implementations of several shell functions with +# equivalent extended shell implementations where those features are available.. +m4_defun([_LT_PROG_REPLACE_SHELLFNS], +[if test x"$xsi_shell" = xyes; then + _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac]) + + _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl + func_basename_result="${1##*/}"]) + + _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl + case ${1} in + */*) func_dirname_result="${1%/*}${2}" ;; + * ) func_dirname_result="${3}" ;; + esac + func_basename_result="${1##*/}"]) + + _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl + # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are + # positional parameters, so assign one to ordinary parameter first. + func_stripname_result=${3} + func_stripname_result=${func_stripname_result#"${1}"} + func_stripname_result=${func_stripname_result%"${2}"}]) + + _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl + func_split_long_opt_name=${1%%=*} + func_split_long_opt_arg=${1#*=}]) + + _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl + func_split_short_opt_arg=${1#??} + func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) + + _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl + case ${1} in + *.lo) func_lo2o_result=${1%.lo}.${objext} ;; + *) func_lo2o_result=${1} ;; + esac]) + + _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) + + _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) + + _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) +fi + +if test x"$lt_shell_append" = xyes; then + _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) + + _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl + func_quote_for_eval "${2}" +dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ + eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) + + # Save a `func_append' function call where possible by direct use of '+=' + sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +else + # Save a `func_append' function call even when '+=' is not available + sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ + && mv -f "$cfgfile.tmp" "$cfgfile" \ + || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") + test 0 -eq $? || _lt_function_replace_fail=: +fi + +if test x"$_lt_function_replace_fail" = x":"; then + AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) +fi +]) + +# _LT_PATH_CONVERSION_FUNCTIONS +# ----------------------------- +# Determine which file name conversion functions should be used by +# func_to_host_file (and, implicitly, by func_to_host_path). These are needed +# for certain cross-compile configurations and native mingw. +m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +AC_REQUIRE([AC_CANONICAL_BUILD])dnl +AC_MSG_CHECKING([how to convert $build file names to $host format]) +AC_CACHE_VAL(lt_cv_to_host_file_cmd, +[case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 + ;; + esac + ;; + *-*-cygwin* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin + ;; + *-*-cygwin* ) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; + * ) # otherwise, assume *nix + lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin + ;; + esac + ;; + * ) # unhandled hosts (and "normal" native builds) + lt_cv_to_host_file_cmd=func_convert_file_noop + ;; +esac +]) +to_host_file_cmd=$lt_cv_to_host_file_cmd +AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) +_LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], + [0], [convert $build file names to $host format])dnl + +AC_MSG_CHECKING([how to convert $build file names to toolchain format]) +AC_CACHE_VAL(lt_cv_to_tool_file_cmd, +[#assume ordinary cross tools, or native build. +lt_cv_to_tool_file_cmd=func_convert_file_noop +case $host in + *-*-mingw* ) + case $build in + *-*-mingw* ) # actually msys + lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 + ;; + esac + ;; +esac +]) +to_tool_file_cmd=$lt_cv_to_tool_file_cmd +AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) +_LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], + [0], [convert $build files to toolchain format])dnl +])# _LT_PATH_CONVERSION_FUNCTIONS diff --git a/m4/ltoptions.m4 b/m4/ltoptions.m4 new file mode 100644 index 0000000..5d9acd8 --- /dev/null +++ b/m4/ltoptions.m4 @@ -0,0 +1,384 @@ +# Helper functions for option handling. -*- Autoconf -*- +# +# Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation, +# Inc. +# Written by Gary V. Vaughan, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 7 ltoptions.m4 + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) + + +# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) +# ------------------------------------------ +m4_define([_LT_MANGLE_OPTION], +[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) + + +# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) +# --------------------------------------- +# Set option OPTION-NAME for macro MACRO-NAME, and if there is a +# matching handler defined, dispatch to it. Other OPTION-NAMEs are +# saved as a flag. +m4_define([_LT_SET_OPTION], +[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl +m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), + _LT_MANGLE_DEFUN([$1], [$2]), + [m4_warning([Unknown $1 option `$2'])])[]dnl +]) + + +# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) +# ------------------------------------------------------------ +# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. +m4_define([_LT_IF_OPTION], +[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) + + +# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) +# ------------------------------------------------------- +# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME +# are set. +m4_define([_LT_UNLESS_OPTIONS], +[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), + [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), + [m4_define([$0_found])])])[]dnl +m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 +])[]dnl +]) + + +# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) +# ---------------------------------------- +# OPTION-LIST is a space-separated list of Libtool options associated +# with MACRO-NAME. If any OPTION has a matching handler declared with +# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about +# the unknown option and exit. +m4_defun([_LT_SET_OPTIONS], +[# Set options +m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), + [_LT_SET_OPTION([$1], _LT_Option)]) + +m4_if([$1],[LT_INIT],[ + dnl + dnl Simply set some default values (i.e off) if boolean options were not + dnl specified: + _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no + ]) + _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no + ]) + dnl + dnl If no reference was made to various pairs of opposing options, then + dnl we run the default mode handler for the pair. For example, if neither + dnl `shared' nor `disable-shared' was passed, we enable building of shared + dnl archives by default: + _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) + _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) + _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) + _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], + [_LT_ENABLE_FAST_INSTALL]) + ]) +])# _LT_SET_OPTIONS + + +## --------------------------------- ## +## Macros to handle LT_INIT options. ## +## --------------------------------- ## + +# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) +# ----------------------------------------- +m4_define([_LT_MANGLE_DEFUN], +[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) + + +# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) +# ----------------------------------------------- +m4_define([LT_OPTION_DEFINE], +[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl +])# LT_OPTION_DEFINE + + +# dlopen +# ------ +LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes +]) + +AU_DEFUN([AC_LIBTOOL_DLOPEN], +[_LT_SET_OPTION([LT_INIT], [dlopen]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `dlopen' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) + + +# win32-dll +# --------- +# Declare package support for building win32 dll's. +LT_OPTION_DEFINE([LT_INIT], [win32-dll], +[enable_win32_dll=yes + +case $host in +*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) + AC_CHECK_TOOL(AS, as, false) + AC_CHECK_TOOL(DLLTOOL, dlltool, false) + AC_CHECK_TOOL(OBJDUMP, objdump, false) + ;; +esac + +test -z "$AS" && AS=as +_LT_DECL([], [AS], [1], [Assembler program])dnl + +test -z "$DLLTOOL" && DLLTOOL=dlltool +_LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl + +test -z "$OBJDUMP" && OBJDUMP=objdump +_LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl +])# win32-dll + +AU_DEFUN([AC_LIBTOOL_WIN32_DLL], +[AC_REQUIRE([AC_CANONICAL_HOST])dnl +_LT_SET_OPTION([LT_INIT], [win32-dll]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `win32-dll' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) + + +# _LT_ENABLE_SHARED([DEFAULT]) +# ---------------------------- +# implement the --enable-shared flag, and supports the `shared' and +# `disable-shared' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_SHARED], +[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([shared], + [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], + [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_shared=yes ;; + no) enable_shared=no ;; + *) + enable_shared=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_shared=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) + + _LT_DECL([build_libtool_libs], [enable_shared], [0], + [Whether or not to build shared libraries]) +])# _LT_ENABLE_SHARED + +LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) + +# Old names: +AC_DEFUN([AC_ENABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) +]) + +AC_DEFUN([AC_DISABLE_SHARED], +[_LT_SET_OPTION([LT_INIT], [disable-shared]) +]) + +AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) +AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_SHARED], []) +dnl AC_DEFUN([AM_DISABLE_SHARED], []) + + + +# _LT_ENABLE_STATIC([DEFAULT]) +# ---------------------------- +# implement the --enable-static flag, and support the `static' and +# `disable-static' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_STATIC], +[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([static], + [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], + [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_static=yes ;; + no) enable_static=no ;; + *) + enable_static=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_static=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_static=]_LT_ENABLE_STATIC_DEFAULT) + + _LT_DECL([build_old_libs], [enable_static], [0], + [Whether or not to build static libraries]) +])# _LT_ENABLE_STATIC + +LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) + +# Old names: +AC_DEFUN([AC_ENABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) +]) + +AC_DEFUN([AC_DISABLE_STATIC], +[_LT_SET_OPTION([LT_INIT], [disable-static]) +]) + +AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) +AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AM_ENABLE_STATIC], []) +dnl AC_DEFUN([AM_DISABLE_STATIC], []) + + + +# _LT_ENABLE_FAST_INSTALL([DEFAULT]) +# ---------------------------------- +# implement the --enable-fast-install flag, and support the `fast-install' +# and `disable-fast-install' LT_INIT options. +# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. +m4_define([_LT_ENABLE_FAST_INSTALL], +[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl +AC_ARG_ENABLE([fast-install], + [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], + [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], + [p=${PACKAGE-default} + case $enableval in + yes) enable_fast_install=yes ;; + no) enable_fast_install=no ;; + *) + enable_fast_install=no + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for pkg in $enableval; do + IFS="$lt_save_ifs" + if test "X$pkg" = "X$p"; then + enable_fast_install=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) + +_LT_DECL([fast_install], [enable_fast_install], [0], + [Whether or not to optimize for fast installation])dnl +])# _LT_ENABLE_FAST_INSTALL + +LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) +LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) + +# Old names: +AU_DEFUN([AC_ENABLE_FAST_INSTALL], +[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you put +the `fast-install' option into LT_INIT's first parameter.]) +]) + +AU_DEFUN([AC_DISABLE_FAST_INSTALL], +[_LT_SET_OPTION([LT_INIT], [disable-fast-install]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you put +the `disable-fast-install' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) +dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) + + +# _LT_WITH_PIC([MODE]) +# -------------------- +# implement the --with-pic flag, and support the `pic-only' and `no-pic' +# LT_INIT options. +# MODE is either `yes' or `no'. If omitted, it defaults to `both'. +m4_define([_LT_WITH_PIC], +[AC_ARG_WITH([pic], + [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], + [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], + [lt_p=${PACKAGE-default} + case $withval in + yes|no) pic_mode=$withval ;; + *) + pic_mode=default + # Look at the argument we got. We use all the common list separators. + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for lt_pkg in $withval; do + IFS="$lt_save_ifs" + if test "X$lt_pkg" = "X$lt_p"; then + pic_mode=yes + fi + done + IFS="$lt_save_ifs" + ;; + esac], + [pic_mode=default]) + +test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) + +_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl +])# _LT_WITH_PIC + +LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) +LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) + +# Old name: +AU_DEFUN([AC_LIBTOOL_PICMODE], +[_LT_SET_OPTION([LT_INIT], [pic-only]) +AC_DIAGNOSE([obsolete], +[$0: Remove this warning and the call to _LT_SET_OPTION when you +put the `pic-only' option into LT_INIT's first parameter.]) +]) + +dnl aclocal-1.4 backwards compatibility: +dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) + +## ----------------- ## +## LTDL_INIT Options ## +## ----------------- ## + +m4_define([_LTDL_MODE], []) +LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], + [m4_define([_LTDL_MODE], [nonrecursive])]) +LT_OPTION_DEFINE([LTDL_INIT], [recursive], + [m4_define([_LTDL_MODE], [recursive])]) +LT_OPTION_DEFINE([LTDL_INIT], [subproject], + [m4_define([_LTDL_MODE], [subproject])]) + +m4_define([_LTDL_TYPE], []) +LT_OPTION_DEFINE([LTDL_INIT], [installable], + [m4_define([_LTDL_TYPE], [installable])]) +LT_OPTION_DEFINE([LTDL_INIT], [convenience], + [m4_define([_LTDL_TYPE], [convenience])]) diff --git a/m4/ltsugar.m4 b/m4/ltsugar.m4 new file mode 100644 index 0000000..9000a05 --- /dev/null +++ b/m4/ltsugar.m4 @@ -0,0 +1,123 @@ +# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- +# +# Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. +# Written by Gary V. Vaughan, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 6 ltsugar.m4 + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) + + +# lt_join(SEP, ARG1, [ARG2...]) +# ----------------------------- +# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their +# associated separator. +# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier +# versions in m4sugar had bugs. +m4_define([lt_join], +[m4_if([$#], [1], [], + [$#], [2], [[$2]], + [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) +m4_define([_lt_join], +[m4_if([$#$2], [2], [], + [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) + + +# lt_car(LIST) +# lt_cdr(LIST) +# ------------ +# Manipulate m4 lists. +# These macros are necessary as long as will still need to support +# Autoconf-2.59 which quotes differently. +m4_define([lt_car], [[$1]]) +m4_define([lt_cdr], +[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], + [$#], 1, [], + [m4_dquote(m4_shift($@))])]) +m4_define([lt_unquote], $1) + + +# lt_append(MACRO-NAME, STRING, [SEPARATOR]) +# ------------------------------------------ +# Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. +# Note that neither SEPARATOR nor STRING are expanded; they are appended +# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). +# No SEPARATOR is output if MACRO-NAME was previously undefined (different +# than defined and empty). +# +# This macro is needed until we can rely on Autoconf 2.62, since earlier +# versions of m4sugar mistakenly expanded SEPARATOR but not STRING. +m4_define([lt_append], +[m4_define([$1], + m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) + + + +# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) +# ---------------------------------------------------------- +# Produce a SEP delimited list of all paired combinations of elements of +# PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list +# has the form PREFIXmINFIXSUFFIXn. +# Needed until we can rely on m4_combine added in Autoconf 2.62. +m4_define([lt_combine], +[m4_if(m4_eval([$# > 3]), [1], + [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl +[[m4_foreach([_Lt_prefix], [$2], + [m4_foreach([_Lt_suffix], + ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, + [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) + + +# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) +# ----------------------------------------------------------------------- +# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited +# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. +m4_define([lt_if_append_uniq], +[m4_ifdef([$1], + [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], + [lt_append([$1], [$2], [$3])$4], + [$5])], + [lt_append([$1], [$2], [$3])$4])]) + + +# lt_dict_add(DICT, KEY, VALUE) +# ----------------------------- +m4_define([lt_dict_add], +[m4_define([$1($2)], [$3])]) + + +# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) +# -------------------------------------------- +m4_define([lt_dict_add_subkey], +[m4_define([$1($2:$3)], [$4])]) + + +# lt_dict_fetch(DICT, KEY, [SUBKEY]) +# ---------------------------------- +m4_define([lt_dict_fetch], +[m4_ifval([$3], + m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), + m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) + + +# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) +# ----------------------------------------------------------------- +m4_define([lt_if_dict_fetch], +[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], + [$5], + [$6])]) + + +# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) +# -------------------------------------------------------------- +m4_define([lt_dict_filter], +[m4_if([$5], [], [], + [lt_join(m4_quote(m4_default([$4], [[, ]])), + lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), + [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl +]) diff --git a/m4/ltversion.m4 b/m4/ltversion.m4 new file mode 100644 index 0000000..07a8602 --- /dev/null +++ b/m4/ltversion.m4 @@ -0,0 +1,23 @@ +# ltversion.m4 -- version numbers -*- Autoconf -*- +# +# Copyright (C) 2004 Free Software Foundation, Inc. +# Written by Scott James Remnant, 2004 +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# @configure_input@ + +# serial 3337 ltversion.m4 +# This file is part of GNU Libtool + +m4_define([LT_PACKAGE_VERSION], [2.4.2]) +m4_define([LT_PACKAGE_REVISION], [1.3337]) + +AC_DEFUN([LTVERSION_VERSION], +[macro_version='2.4.2' +macro_revision='1.3337' +_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) +_LT_DECL(, macro_revision, 0) +]) diff --git a/m4/lt~obsolete.m4 b/m4/lt~obsolete.m4 new file mode 100644 index 0000000..c573da9 --- /dev/null +++ b/m4/lt~obsolete.m4 @@ -0,0 +1,98 @@ +# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- +# +# Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc. +# Written by Scott James Remnant, 2004. +# +# This file is free software; the Free Software Foundation gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. + +# serial 5 lt~obsolete.m4 + +# These exist entirely to fool aclocal when bootstrapping libtool. +# +# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) +# which have later been changed to m4_define as they aren't part of the +# exported API, or moved to Autoconf or Automake where they belong. +# +# The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN +# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us +# using a macro with the same name in our local m4/libtool.m4 it'll +# pull the old libtool.m4 in (it doesn't see our shiny new m4_define +# and doesn't know about Autoconf macros at all.) +# +# So we provide this file, which has a silly filename so it's always +# included after everything else. This provides aclocal with the +# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything +# because those macros already exist, or will be overwritten later. +# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. +# +# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. +# Yes, that means every name once taken will need to remain here until +# we give up compatibility with versions before 1.7, at which point +# we need to keep only those names which we still refer to. + +# This is to help aclocal find these macros, as it can't see m4_define. +AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) + +m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) +m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) +m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) +m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) +m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) +m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) +m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) +m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) +m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) +m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) +m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) +m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) +m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) +m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) +m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) +m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) +m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) +m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) +m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) +m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) +m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) +m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) +m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) +m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) +m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) +m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) +m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) +m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) +m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) +m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) +m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) +m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) +m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) +m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) +m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) +m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) +m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) +m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) +m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) +m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) +m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) +m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) +m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) +m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) +m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) +m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) +m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) +m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) +m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) +m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) +m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) +m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) +m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) +m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) +m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) +m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) +m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) +m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) diff --git a/make/gcc-linux.mk b/make/gcc-linux.mk new file mode 100644 index 0000000..d34ecf0 --- /dev/null +++ b/make/gcc-linux.mk @@ -0,0 +1,87 @@ +# +# This file primarily exists for making it possible to test the build +# system and external library support from Linux. However, its use is +# strongly discouraged; use the (default) libtool rules for building +# on Linux. +# + +# --- Required interface definitions --- + +OBJ=o +LOBJ=o + +# Usage: $(call libname,base) +define libname +lib$(1).so +endef + +# Usage: $(call binname,base) +define binname +$(1) +endef + +# --- Required rule definitions --- + +# 1 2 +# Usage: $(call compile,src,includes) +define compile + $(CXX) $(CPPFLAGS) $(CXXFLAGS) \ + $(call depflags,$(basename $(call src_to_obj,$(1)))) \ + $(foreach I,$(2),-I$(I)) \ + -c $(1) -o $(call src_to_obj,$(1)) +endef + +# 1 2 +# Usage: $(call c_compile,src,includes) +define c_compile + $(CC) $(CPPFLAGS) $(CFLAGS) \ + $(call depflags,$(basename $(call c_src_to_obj,$(1)))) \ + $(foreach I,$(2),-I$(I)) \ + -c $(1) -o $(call c_src_to_obj,$(1)) +endef + +define libcompile + $(CXX) $(CPPFLAGS) $(CXXFLAGS) -fpic \ + $(call depflags,$(basename $(call src_to_lobj,$(1)))) \ + $(foreach I,$(2),-I$(I)) \ + -c $(1) -o $(call src_to_lobj,$(1)) +endef +define c_libcompile + $(CC) $(CPPFLAGS) $(CXXFLAGS) -fpic \ + $(call depflags,$(basename $(call c_src_to_lobj,$(1)))) \ + $(foreach I,$(2),-I$(I)) \ + -c $(1) -o $(call c_src_to_lobj,$(1)) +endef + + +# 1 2 +# Usage: $(call makeslib,objs,library) +define makeslib + $(RM) $2 + $(AR) cru $(2) $(1) + $(RANLIB) $(2) +endef + +# 1 2 3 4 5 6 7 +# Usage: $(call makelib,objs,library,ldflags,libs,current,revision,age) +define makelib + $(RM) $(2) $(2).* + major=$$(( $(5) - $(7) )); \ + versuffix=$$major.$(7).$(6); \ + $(CXX) $(CXXFLAGS) -shared -o $(2).$$versuffix $(1) \ + -Wl,--soname -Wl,`basename $(2)`.$$major \ + $(3) $(4) && \ + ln -s `basename $(2)`.$$versuffix $(2) && \ + ln -s `basename $(2)`.$$versuffix $(2).$$major +endef + +# 1 2 3 4 +# Usage: $(call makebin,objs,binary,ldflags,libs) +define makebin + $(CXX) $(CXXFLAGS) $(1) -o $(2) $(LDFLAGS) $(3) $(4) +endef + +# Install target + +install: all + @echo Automated installation is not supported for buildrules=$(BUILDRULES) diff --git a/make/installwin.mk b/make/installwin.mk new file mode 100644 index 0000000..e3401d8 --- /dev/null +++ b/make/installwin.mk @@ -0,0 +1,21 @@ +DEST=$(INSTALL_DIR)/$(PACKAGE_TARNAME)-$(PACKAGE_VERSION) +installwin: all + $(RM) -r $(INSTALL_DIR) + mkdir $(INSTALL_DIR) + mkdir $(DEST) + mkdir $(DEST)/bin + mkdir $(DEST)/lib + mkdir $(DEST)/include + mkdir $(DEST)/include/qpdf + mkdir $(DEST)/doc + cp libqpdf/$(OUTPUT_DIR)/$(STATIC_LIB_NAME) $(DEST)/lib + cp libqpdf/$(OUTPUT_DIR)/qpdf*.dll $(DEST)/bin + perl copy_dlls libqpdf/$(OUTPUT_DIR)/qpdf*.dll $(DEST)/bin $(OBJDUMP) + cp qpdf/$(OUTPUT_DIR)/qpdf.exe $(DEST)/bin + cp zlib-flate/$(OUTPUT_DIR)/zlib-flate.exe $(DEST)/bin + cp qpdf/fix-qdf $(DEST)/bin + cp include/qpdf/*.h $(DEST)/include/qpdf + cp include/qpdf/*.hh $(DEST)/include/qpdf + cp doc/stylesheet.css $(DEST)/doc + cp doc/qpdf-manual.html $(DEST)/doc + cp doc/qpdf-manual.pdf $(DEST)/doc diff --git a/make/libtool.mk b/make/libtool.mk new file mode 100644 index 0000000..8112c2c --- /dev/null +++ b/make/libtool.mk @@ -0,0 +1,133 @@ +# --- Required interface definitions --- + +# LIBTOOL needs bash +SHELL=/bin/bash + +OBJ=o +LOBJ=lo + +# Usage: $(call libname,base) +define libname +lib$(1).la +endef + +# Usage: $(call binname,base) +define binname +$(1) +endef + +# --- Private definitions --- + +ifeq ($(HAVE_LD_VERSION_SCRIPT), 1) +LD_VERSION_FLAGS=-Wl,--version-script=libqpdf.map +else +LD_VERSION_FLAGS= +endif + +# Usage: $(call libdepflags,$(basename obj)) +# Usage: $(call fixdeps,$(basename obj)) +ifeq ($(GENDEPS),1) +libdepflags=-MD -MF $(1).tdep -MP +fixdeps=sed -e 's/\.o:/.lo:/' < $(1).tdep > $(1).dep + +else +libdepflags= +fixdeps= +endif + +# --- Required rule definitions --- + +# 1 2 +# Usage: $(call compile,src,includes) +define compile + $(CXX) $(CXXFLAGS) \ + $(call depflags,$(basename $(call src_to_obj,$(1)))) \ + $(foreach I,$(2),-I$(I)) \ + $(CPPFLAGS) \ + -c $(1) -o $(call src_to_obj,$(1)) +endef + +# 1 2 +# Usage: $(call c_compile,src,includes) +define c_compile + $(CC) $(CFLAGS) \ + $(call depflags,$(basename $(call c_src_to_obj,$(1)))) \ + $(foreach I,$(2),-I$(I)) \ + $(CPPFLAGS) \ + -c $(1) -o $(call c_src_to_obj,$(1)) +endef + +# 1 2 +# Usage: $(call libcompile,src,includes) +define libcompile + $(LIBTOOL) --quiet --mode=compile \ + $(CXX) $(CXXFLAGS) \ + $(call libdepflags,$(basename $(call src_to_obj,$(1)))) \ + $(foreach I,$(2),-I$(I)) \ + $(CPPFLAGS) \ + -c $(1) -o $(call src_to_obj,$(1)); \ + $(call fixdeps,$(basename $(call src_to_obj,$(1)))) +endef + +# 1 2 +# Usage: $(call libcompile,src,includes) +define c_libcompile + $(LIBTOOL) --quiet --mode=compile \ + $(CC) $(CXXFLAGS) \ + $(call libdepflags,$(basename $(call c_src_to_obj,$(1)))) \ + $(foreach I,$(2),-I$(I)) \ + $(CPPFLAGS) \ + -c $(1) -o $(call c_src_to_obj,$(1)); \ + $(call fixdeps,$(basename $(call src_to_obj,$(1)))) +endef + +# 1 2 +# Usage: $(call makeslib,objs,library) +define makeslib + $(RM) $2 + $(AR) cru $(2) $(1) + $(RANLIB) $(2) +endef + +# 1 2 3 4 5 6 7 +# Usage: $(call makelib,objs,library,ldflags,libs,current,revision,age) +define makelib + $(LIBTOOL) --mode=link \ + $(CXX) $(CXXFLAGS) $(LD_VERSION_FLAGS) \ + -o $(2) $(1) $(4) $(3) \ + -rpath $(libdir) -version-info $(5):$(6):$(7) +endef + +# 1 2 3 4 +# Usage: $(call makebin,objs,binary,ldflags,libs) +define makebin + $(LIBTOOL) --mode=link $(CXX) $(CXXFLAGS) $(1) -o $(2) $(4) $(3) +endef + +# Install target + +install: all + ./mkinstalldirs $(DESTDIR)$(libdir)/pkgconfig + ./mkinstalldirs $(DESTDIR)$(bindir) + ./mkinstalldirs $(DESTDIR)$(includedir)/qpdf + ./mkinstalldirs $(DESTDIR)$(docdir) + ./mkinstalldirs $(DESTDIR)$(mandir)/man1 + $(LIBTOOL) --mode=install install -c \ + libqpdf/$(OUTPUT_DIR)/libqpdf.la \ + $(DESTDIR)$(libdir)/libqpdf.la + $(LIBTOOL) --finish $(DESTDIR)$(libdir) + $(RM) $(DESTDIR)$(libdir)/libqpdf.la + $(LIBTOOL) --mode=install install -c \ + qpdf/$(OUTPUT_DIR)/qpdf \ + $(DESTDIR)$(bindir)/qpdf + $(LIBTOOL) --mode=install install -c \ + zlib-flate/$(OUTPUT_DIR)/zlib-flate \ + $(DESTDIR)$(bindir)/zlib-flate + cp qpdf/fix-qdf $(DESTDIR)$(bindir) + cp include/qpdf/*.h $(DESTDIR)$(includedir)/qpdf + cp include/qpdf/*.hh $(DESTDIR)$(includedir)/qpdf + cp doc/stylesheet.css $(DESTDIR)$(docdir) +# cp doc/qpdf-manual.html $(DESTDIR)$(docdir) +# cp doc/qpdf-manual.pdf $(DESTDIR)$(docdir) + cp doc/*.1 $(DESTDIR)$(mandir)/man1 + cp libqpdf.pc $(DESTDIR)$(libdir)/pkgconfig diff --git a/make/mingw.mk b/make/mingw.mk new file mode 100644 index 0000000..00119d1 --- /dev/null +++ b/make/mingw.mk @@ -0,0 +1,83 @@ +# --- Required interface definitions --- + +OBJ=o +LOBJ=o + +# Usage: $(call libname,base) +define libname +lib$(1).a +endef + +# Usage: $(call binname,base) +define binname +$(1).exe +endef + +# --- Required rule definitions --- + +# 1 2 +# Usage: $(call compile,src,includes) +define compile + $(CXX) $(CPPFLAGS) $(CXXFLAGS) \ + $(call depflags,$(basename $(call src_to_obj,$(1)))) \ + $(foreach I,$(2),-I$(I)) \ + -c $(1) -o $(call src_to_obj,$(1)) +endef + +# 1 2 +# Usage: $(call c_compile,src,includes) +define c_compile + $(CC) $(CPPFLAGS) $(CFLAGS) \ + $(call depflags,$(basename $(call src_to_obj,$(1)))) \ + $(foreach I,$(2),-I$(I)) \ + -c $(1) -o $(call c_src_to_obj,$(1)) +endef + +# 1 2 +# Usage: $(call libcompile,src,includes) +define libcompile + $(CXX) $(CPPFLAGS) $(CXXFLAGS) -DDLL_EXPORT \ + $(call depflags,$(basename $(call src_to_obj,$(1)))) \ + $(foreach I,$(2),-I$(I)) \ + -c $(1) -o $(call src_to_obj,$(1)) +endef + +# 1 2 +# Usage: $(call c_libcompile,src,includes) +define c_libcompile + $(CC) $(CPPFLAGS) $(CFLAGS) -DDLL_EXPORT \ + $(call depflags,$(basename $(call src_to_obj,$(1)))) \ + $(foreach I,$(2),-I$(I)) \ + -c $(1) -o $(call c_src_to_obj,$(1)) +endef + +# 1 2 +# Usage: $(call makeslib,objs,library) +define makeslib + $(RM) $2 + $(AR) cru $(2) $(1) + $(RANLIB) $(2) +endef + +# 1 2 3 4 5 6 7 +# Usage: $(call makelib,objs,library,ldflags,libs,current,revision,age) +define makelib + $(DLLTOOL) -l $(2) -D $$(basename `echo $(2) | sed -e 's,/lib\(.*\).a,/\1,'`$(shell expr $(5) - $(7)).dll) $(1); \ + $(CXX) -shared -o `echo $(2) | sed -e 's,/lib\(.*\).a,/\1,'`$(shell expr $(5) - $(7)).dll \ + $(1) $(3) $(4) +endef + +# 1 2 3 4 +# Usage: $(call makebin,objs,binary,ldflags,libs) +define makebin + $(CXX) $(CXXFLAGS) $(1) -o $(2) $(3) $(4) +endef + +# Install target + +INSTALL_DIR = install-mingw$(WINDOWS_WORDSIZE) +STATIC_LIB_NAME = libqpdf.a +include make/installwin.mk +install: installwin + $(STRIP) $(DEST)/bin/*.exe + $(STRIP) $(DEST)/bin/*.dll diff --git a/make/msvc.mk b/make/msvc.mk new file mode 100644 index 0000000..5f3f69a --- /dev/null +++ b/make/msvc.mk @@ -0,0 +1,107 @@ +# --- Required interface definitions --- + +OBJ=obj +LOBJ=obj + +# Usage: $(call libname,base) +define libname +$(1).lib +endef + +# Usage: $(call binname,base) +define binname +$(1).exe +endef + +# --- Local Changes --- + +# Filter out -g +CFLAGS := $(filter-out -g,$(CFLAGS)) +CXXFLAGS := $(filter-out -g,$(CXXFLAGS)) + +# /WX makes all warnings errors. +CFLAGS += /WX +CXXFLAGS += /WX + +# /w14267 makes warning 4267 a level 1 warning. This warning reports +# potential issues between size_t, off_t, and non-compatible integer +# types. +CFLAGS += /w14267 +CXXFLAGS += /w14267 + +clean:: + $(RM) *.pdb + +# --- Required rule definitions --- + +# 1 2 +# Usage: $(call compile,src,includes) +define compile + cl /nologo /Zi /Gy /EHsc /MD /TP /GR $(CPPFLAGS) $(CXXFLAGS) \ + $(foreach I,$(2),-I$(I)) \ + /c $(1) /Fo$(call src_to_obj,$(1)) +endef + +# 1 2 +# Usage: $(call c_compile,src,includes) +define c_compile + cl /nologo /O2 /Zi /Gy /EHsc /MD $(CPPFLAGS) $(CFLAGS) \ + $(foreach I,$(2),-I$(I)) \ + /c $(1) /Fo$(call c_src_to_obj,$(1)) +endef + +# 1 2 +# Usage: $(call libcompile,src,includes) +define libcompile + cl /nologo /O2 /Zi /Gy /EHsc /MD /TP /GR $(CPPFLAGS) $(CXXFLAGS) \ + -DDLL_EXPORT $(foreach I,$(2),-I$(I)) \ + /c $(1) /Fo$(call src_to_obj,$(1)) +endef + +# 1 2 +# Usage: $(call c_libcompile,src,includes) +define c_libcompile + cl /nologo /O2 /Zi /Gy /EHsc /MD $(CPPFLAGS) $(CXXFLAGS) \ + -DDLL_EXPORT $(foreach I,$(2),-I$(I)) \ + /c $(1) /Fo$(call c_src_to_obj,$(1)) +endef + +# 1 2 +# Usage: $(call makeslib,objs,library) +define makeslib + lib /nologo /OUT:$(2) $(1) +endef + +# 1 2 3 4 5 6 7 +# Usage: $(call makelib,objs,library,ldflags,libs,current,revision,age) +define makelib + cl /nologo /O2 /Zi /Gy /EHsc /MD /LD /Fe$(basename $(2))$(shell expr $(5) - $(7)).dll $(1) \ + /link /incremental:no \ + $(foreach L,$(subst -L,,$(3)),/LIBPATH:$(L)) \ + $(foreach L,$(subst -l,,$(4)),$(L).lib) + if [ -f $(basename $(2))$(shell expr $(5) - $(7)).dll.manifest ]; then \ + mt.exe -nologo -manifest $(basename $(2))$(shell expr $(5) - $(7)).dll.manifest \ + -outputresource:$(basename $(2))$(shell expr $(5) - $(7)).dll\;2; \ + fi + mv $(basename $(2))$(shell expr $(5) - $(7)).lib $(2) +endef + +# 1 2 3 4 +# Usage: $(call makebin,objs,binary,ldflags,libs) +define makebin + cl /nologo /O2 /Zi /Gy /EHsc /MD $(1) \ + /link /incremental:no /OUT:$(2) \ + $(foreach L,$(subst -L,,$(3)),/LIBPATH:$(L)) \ + $(foreach L,$(subst -l,,$(4)),$(L).lib) + if [ -f $(2).manifest ]; then \ + mt.exe -nologo -manifest $(2).manifest \ + -outputresource:$(2)\;2; \ + fi +endef + +# Install target + +INSTALL_DIR = install-msvc$(WINDOWS_WORDSIZE) +STATIC_LIB_NAME = qpdf.lib +include make/installwin.mk +install: installwin diff --git a/make/proxy.mk b/make/proxy.mk new file mode 100644 index 0000000..1683186 --- /dev/null +++ b/make/proxy.mk @@ -0,0 +1,10 @@ +THIS=$(notdir $(abspath .)) + +all: + $(MAKE) -C .. build_$(THIS) + +check: + $(MAKE) -C .. check_$(THIS) + +clean: + $(MAKE) -C .. clean_$(THIS) diff --git a/make/rules.mk b/make/rules.mk new file mode 100644 index 0000000..efeb9a7 --- /dev/null +++ b/make/rules.mk @@ -0,0 +1,49 @@ +include make/$(BUILDRULES).mk + +define firstelem +$(word 1,$(subst /, ,$(1))) +endef +SPC := $(subst /, ,/) +define lastelem +$(subst $(SPC),/,$(word $(words $(subst /, ,$(1))),$(subst /, ,$(1)))) +endef +define objbase +$(patsubst %.$(2),%.$(3),$(firstelem)/$(OUTPUT_DIR)/$(lastelem)) +endef + +# Usage: $(call src_to_obj,srcs) +define src_to_obj +$(foreach F,$(1),$(call objbase,$(F),cc,$(OBJ))) +endef + +# Usage: $(call c_src_to_obj,srcs) +define c_src_to_obj +$(foreach F,$(1),$(call objbase,$(F),c,$(OBJ))) +endef + +# Usage: $(call src_to_lobj,srcs) +define src_to_lobj +$(foreach F,$(1),$(call objbase,$(F),cc,$(LOBJ))) +endef + +# Usage: $(call c_src_to_lobj,srcs) +define c_src_to_lobj +$(foreach F,$(1),$(call objbase,$(F),c,$(LOBJ))) +endef + +# Usage: $(call obj_to_dep,objs) +define obj_to_dep +$(patsubst %.$(OBJ),%.dep,$(1)) +endef + +# Usage: $(call lobj_to_dep,objs) +define lobj_to_dep +$(patsubst %.$(LOBJ),%.dep,$(1)) +endef + +# Usage: $(call depflags,$(basename obj)) +ifeq ($(GENDEPS),1) +depflags=-MD -MF $(1).dep -MP +else +depflags= +endif diff --git a/make_dist b/make_dist new file mode 100755 index 0000000..fb1436e --- /dev/null +++ b/make_dist @@ -0,0 +1,165 @@ +#!/usr/bin/env perl +# +# This program creates a source distribution of qpdf. For details, +# see README.maintainer. +# + +require 5.008; +use warnings; +use strict; +use File::Basename; +use Cwd; +use IO::File; + +my $whoami = basename($0); + +usage() unless @ARGV >= 1; +my $srcdir = shift(@ARGV); +my $run_tests = 1; +if (@ARGV) +{ + if ($ARGV[0] eq '--no-tests') + { + $run_tests = 0; + } + else + { + usage(); + } +} +$srcdir =~ s,/$,,; +usage() unless $srcdir =~ m/^qpdf-(\d+\.\d+(?:\.(a|b|rc)?\d+)?)$/; +my $version = $1; +usage() unless -d $srcdir; + +my $pwd = getcwd(); +cd($srcdir); + +# Check versions +my $fh = safe_open("configure.ac"); +my $config_version = 'unknown'; +while (<$fh>) +{ + if (m/^AC_INIT\(\[qpdf\],\[([^\)]+)\]\)/) + { + $config_version = $1; + last; + } +} +$fh->close(); + +$fh = safe_open("libqpdf/QPDF.cc"); +my $code_version = 'unknown'; +while (<$fh>) +{ + if (m/QPDF::qpdf_version = \"([^\"]+)\"/) + { + $code_version = $1; + last; + } +} +$fh->close(); + +$fh = safe_open("manual/qpdf-manual.xml"); +my $doc_version = 'unknown'; +while (<$fh>) +{ + if (m/swversion "([^\"]+)\"/) + { + $doc_version = $1; + last; + } +} +$fh->close(); + +$fh = safe_open("qpdf.spec"); +my $spec_version = 'unknown'; +while (<$fh>) +{ + if (m/Version: (.*)$/) + { + $spec_version = $1; + last; + } +} + +my $version_error = 0; +if ($version ne $config_version) +{ + print "$whoami: configure.ac version = $config_version\n"; + $version_error = 1; +} +if ($version ne $code_version) +{ + print "$whoami: QPDF.cc version = $code_version\n"; + $version_error = 1; +} +if ($version ne $doc_version) +{ + print "$whoami: qpdf-manual.xml version = $doc_version\n"; + $version_error = 1; +} +if ($version ne $spec_version) +{ + print "$whoami: qpdf.spec version = $spec_version\n"; + $version_error = 1; +} +if ($version_error) +{ + die "$whoami: version numbers are not consistent\n"; +} + +run("./autogen.sh"); +run("./configure --enable-doc-maintenance --enable-werror"); +run("make build_manual"); +run("make distclean"); +cd($pwd); +run("tar czvf $srcdir.tar.gz-candidate $srcdir"); +if ($run_tests) +{ + cd($srcdir); + run("./configure"); + run("make check"); + cd($pwd); +} +rename "$srcdir.tar.gz-candidate", "$srcdir.tar.gz" or die; + +print " +Source distribution created as $srcdir.tar.gz +You can now remove $srcdir. +If this is a release, don't forget to tag the version control system and +make a backup of the release tar file. + +"; + +sub safe_open +{ + my $file = shift; + my $fh = new IO::File("<$file") or die "$whoami: can't open $file: $!"; + $fh; +} + +sub run +{ + my $cmd = shift; + system($cmd) == 0 or die "$whoami: $cmd failed\n"; +} + +sub cd +{ + my $dir = shift; + chdir($dir) or die; +} + +sub usage +{ + die " +Usage: $whoami qpdf-version [ --no-tests ] + +qpdf-version must be a directory containing a pristine export of that +version of qpdf from the version control system. Use of --no-tests +can be used for internally testing releases, but do not use it for a +real release. + +"; +} diff --git a/make_windows_releases b/make_windows_releases new file mode 100755 index 0000000..dff7931 --- /dev/null +++ b/make_windows_releases @@ -0,0 +1,27 @@ +#!/bin/sh +if [ ! -d external-libs ]; then + echo "Please extract qpdf-external-libs-bin.zip and try again" + exit 2 +fi + +set -e +set -x +cwd=`pwd` +PATH=$cwd/libqpdf/build:$PATH + +rm -rf install-mingw* install-msvc* + +./config-mingw64 +make check install +make distclean +./config-mingw32 +make check install +make distclean + +set +x + +echo '' +echo 'Now run "./make_windows_releases-msvc 64" in a 64-bit MSVC environment' +echo 'and "./make_windows_releases-msvc 32" in a 32-bit MSVC environment.' +echo 'Then run "./make_windows_releases-finish".' +echo '' diff --git a/make_windows_releases-finish b/make_windows_releases-finish new file mode 100755 index 0000000..3ab5867 --- /dev/null +++ b/make_windows_releases-finish @@ -0,0 +1,24 @@ +#!/bin/sh +if [ ! -d external-libs ]; then + echo "Please extract qpdf-external-libs-bin.zip and try again" + exit 2 +fi + +set -e +set -x +cwd=`pwd` +PATH=$cwd/libqpdf/build:$PATH + +cd install-mingw32 +v=`ls -d qpdf-*` +cd .. + +for i in mingw32 mingw64 msvc32 msvc64; do + cp -p README-windows-install.txt install-$i/$v/README.txt + (cd install-$i; zip -r ../$v-bin-$i.zip $v) +done + +set +x + +echo "" +echo "$v-bin-mingw{32,64}.zip and $v-bin-msvc{32,64}.zip have been created." diff --git a/make_windows_releases-msvc b/make_windows_releases-msvc new file mode 100755 index 0000000..40a3979 --- /dev/null +++ b/make_windows_releases-msvc @@ -0,0 +1,21 @@ +#!/bin/sh +if [ ! -d external-libs ]; then + echo "Please extract qpdf-external-libs-bin.zip and try again" + exit 2 +fi + +w=$1 + +if [ "$w" = "" ]; then + echo "Usage: $0 {32|64}" + exit 2 +fi + +set -e +set -x +cwd=`pwd` +PATH=$cwd/libqpdf/build:$PATH + +./config-msvc $w +make check install +make distclean diff --git a/manual/Makefile b/manual/Makefile new file mode 100644 index 0000000..9089905 --- /dev/null +++ b/manual/Makefile @@ -0,0 +1 @@ +include ../make/proxy.mk diff --git a/manual/README b/manual/README new file mode 100644 index 0000000..88118ac --- /dev/null +++ b/manual/README @@ -0,0 +1,3 @@ +This directory contains sources to the documentation. If you are +looking for pre-built documentation, please look in the "doc" +directory. diff --git a/manual/build.mk b/manual/build.mk new file mode 100644 index 0000000..55c4965 --- /dev/null +++ b/manual/build.mk @@ -0,0 +1,43 @@ +INDOC = manual/qpdf-manual +OUTDOC = manual/$(OUTPUT_DIR)/qpdf-manual + +TARGETS_manual := doc/qpdf.1 doc/fix-qdf.1 doc/zlib-flate.1 +ifeq ($(BUILD_HTML),1) +TARGETS_manual += doc/qpdf-manual.html +endif +ifeq ($(BUILD_PDF),1) +TARGETS_manual += doc/qpdf-manual.pdf +endif + +VALIDATE=manual/$(OUTPUT_DIR)/validate + +ifeq ($(VALIDATE_DOC),1) + +$(VALIDATE): $(INDOC).xml + $(XMLLINT) --noout --dtdvalid $(DOCBOOKX_DTD) $< + touch $(VALIDATE) + +else + +$(VALIDATE): + touch $(VALIDATE) + +endif + +$(OUTDOC).pdf: $(OUTDOC).fo + $(FOP) $< -pdf $@ + +$(OUTDOC).html: $(INDOC).xml manual/html.xsl $(VALIDATE) + $(XSLTPROC) --output $@ manual/html.xsl $< + +.PRECIOUS: $(OUTDOC).fo +$(OUTDOC).fo: $(INDOC).xml manual/print.xsl $(VALIDATE) + $(XSLTPROC) --output $@ manual/print.xsl $< + +doc/%.1: manual/%.1.in + sed -e 's:@PACKAGE_VERSION@:$(PACKAGE_VERSION):g' \ + -e 's:@docdir@:$(docdir):g' \ + < $< > $@ + +doc/%: manual/$(OUTPUT_DIR)/% + cp $< $@ diff --git a/manual/common.xsl b/manual/common.xsl new file mode 100644 index 0000000..e564bfd --- /dev/null +++ b/manual/common.xsl @@ -0,0 +1,9 @@ + + + + 0pt + + + + diff --git a/manual/fix-qdf.1.in b/manual/fix-qdf.1.in new file mode 100644 index 0000000..e1f7f8c --- /dev/null +++ b/manual/fix-qdf.1.in @@ -0,0 +1,18 @@ +\" This file is not processed by autoconf, but rather by build.mk in +\" the manual directory. +.TH FIX-QDF "1" "April 2008" "fix-qdf version @PACKAGE_VERSION@" "User Commands" +.SH NAME +fix-qdf \- repair PDF files in QDF form after editing +.SH SYNOPSIS +.B qpdf +< \fIinfilename\fR > \fIoutfilename\fR +.SH DESCRIPTION +The fix-qdf program is part of the qpdf package. +.PP +The fix-qdf program reads a PDF file in QDF form and writes out +the same file with stream lengths, cross-reference table entries, and +object stream offset tables regenerated. +.PP +For details about fix-qdf and about PDF files in QDF mode, please see +the qpdf manual, which can be found in @docdir@/qpdf-manual.html or +@docdir@/qpdf-manual.pdf. diff --git a/manual/html.xsl.in b/manual/html.xsl.in new file mode 100644 index 0000000..e96f058 --- /dev/null +++ b/manual/html.xsl.in @@ -0,0 +1,8 @@ + + + + + stylesheet.css + diff --git a/manual/print.xsl.in b/manual/print.xsl.in new file mode 100644 index 0000000..d712cb3 --- /dev/null +++ b/manual/print.xsl.in @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + #F0F0F0 + 0.5pt + solid + #575757 + 3pt + + + #00c + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/manual/qpdf-manual.xml b/manual/qpdf-manual.xml new file mode 100644 index 0000000..0bdc32c --- /dev/null +++ b/manual/qpdf-manual.xml @@ -0,0 +1,3277 @@ + + + + + + + + +]> + + + QPDF Manual + For QPDF Version &swversion;, &lastreleased; + + JayBerkenbilt + + + 2005–2012 + Jay Berkenbilt + + + + General Information + + QPDF is a program that does structural, content-preserving + transformations on PDF files. QPDF's website is located at http://qpdf.sourceforge.net/. + QPDF's source code is hosted on github at https://github.com/qpdf/qpdf. + + + QPDF has been released under the terms of Version + 2.0 of the Artistic License, a copy of which appears in the + file Artistic-2.0 in the source distribution. + + + QPDF was originally created in 2001 and modified periodically + between 2001 and 2005 during my employment at Apex CoVantage. Upon my + departure from Apex, the company graciously allowed me to take + ownership of the software and continue maintaining as an open + source project, a decision for which I am very grateful. I have + made considerable enhancements to it since that time. I feel + fortunate to have worked for people who would make such a decision. + This work would not have been possible without their support. + + + + What is QPDF? + + QPDF is a program that does structural, content-preserving + transformations on PDF files. It could have been called something + like pdf-to-pdf. It also provides many useful + capabilities to developers of PDF-producing software or for people + who just want to look at the innards of a PDF file to learn more + about how they work. + + + With QPDF, it is possible to copy objects from one PDF file into + another and to manipulate the list of pages in a PDF file. This + makes it possible to merge and split PDF files. The QPDF library + also makes it possible for you to create PDF files from scratch. + In this mode, you are responsible for supplying all the contents of + the file, while the QPDF library takes care off all the syntactical + representation of the objects, creation of cross references tables + and, if you use them, object streams, encryption, linearization, + and other syntactic details. You are still responsible for + generating PDF content on your own. + + + QPDF has been designed with very few external dependencies, and it + is intentionally very lightweight. QPDF is + not a PDF content creation library, a PDF + viewer, or a program capable of converting PDF into other formats. + In particular, QPDF knows nothing about the semantics of PDF + content streams. If you are looking for something that can do + that, you should look elsewhere. However, once you have a valid + PDF file, QPDF can be used to transform that file in ways perhaps + your original PDF creation can't handle. For example, many + programs generate simple PDF files but can't password-protect them, + web-optimize them, or perform other transformations of that type. + + + + Building and Installing QPDF + + This chapter describes how to build and install qpdf. Please see + also the README and + INSTALL files in the source distribution. + + + System Requirements + + The qpdf package has relatively few external dependencies. In + order to build qpdf, the following packages are required: + + + + zlib: http://www.zlib.net/ + + + + + pcre: http://www.pcre.org/ + + + + + gnu make 3.81 or newer: http://www.gnu.org/software/make + + + + + perl version 5.8 or newer: + http://www.perl.org/; + required for fix-qdf and the test suite. + + + + + GNU diffutils (any version): http://www.gnu.org/software/diffutils/ + is required to run the test suite. Note that this is the + version of diff present on virtually all GNU/Linux systems. + This is required because the test suite uses diff + -u. + + + + + A C++ compiler that works well with STL and has the long + long type. Most modern C++ compilers should fit the + bill fine. QPDF is tested with gcc and Microsoft Visual C++. + + + + + + Part of qpdf's test suite does comparisons of the contents PDF + files by converting them images and comparing the images. The + image comparison tests are disabled by default. Those tests are + not required for determining correctness of a qpdf build if you + have not modified the code since the test suite also contains + expected output files that are compared literally. The image + comparison tests provide an extra check to make sure that any + content transformations don't break the rendering of pages. + Transformations that affect the content streams themselves are off + by default and are only provided to help developers look into the + contents of PDF files. If you are making deep changes to the + library that cause changes in the contents of the files that qpdf + generates, then you should enable the image comparison tests. + Enable them by running configure with the + flag. If you enable + this, the following additional requirements are required by the + test suite. Note that in no case are these items required to use + qpdf. + + + + libtiff: http://www.remotesensing.org/libtiff/ + + + + + GhostScript version 8.60 or newer: http://www.ghostscript.com + + + + If you do not enable this, then you do not need to have tiff and + ghostscript. + + + If Adobe Reader is installed as acroread, some + additional test cases will be enabled. These test cases simply + verify that Adobe Reader can open the files that qpdf creates. + They require version 8.0 or newer to pass. However, in order to + avoid having qpdf depend on non-free (as in liberty) software, the + test suite will still pass without Adobe reader, and the test + suite still exercises the full functionality of the software. + + + Pre-built documentation is distributed with qpdf, so you should + generally not need to rebuild the documentation. In order to + build the documentation from its docbook sources, you need the + docbook XML style sheets (http://downloads.sourceforge.net/docbook/). + To build the PDF version of the documentation, you need Apache fop + (http://xml.apache.org/fop/) + version 0.94 or higher. + + + + Build Instructions + + Building qpdf on UNIX is generally just a matter of running + + ./configure +make + + You can also run make check to run the test + suite and make install to install. Please run + ./configure --help for options on what can be + configured. You can also set the value of + DESTDIR during installation to install to a + temporary location, as is common with many open source packages. + Please see also the README and + INSTALL files in the source distribution. + + + Building on Windows is a little bit more complicated. For + details, please see README-windows.txt in the + source distribution. You can also download a binary distribution + for Windows. There is a port of qpdf to Visual C++ version 6 in + the contrib area generously contributed by + Jian Ma. This is also discussed in more detail in + README-windows.txt. + + + There are some other things you can do with the build. Although + qpdf uses autoconf, it does not use + automake but instead uses a + hand-crafted non-recursive Makefile that requires gnu make. If + you're really interested, please read the comments in the + top-level Makefile. + + + + + Running QPDF + + This chapter describes how to run the qpdf program from the command + line. + + + Basic Invocation + + When running qpdf, the basic invocation is as follows: + + qpdf + + This converts PDF file to PDF file + . The output file is functionally + identical to the input file but may have been structurally + reorganized. Also, orphaned objects will be removed from the + file. Many transformations are available as controlled by the + options below. In place of , the + parameter may be specified. This causes + qpdf to use a dummy input file that contains zero pages. The only + normal use case for using would be if you + were going to add pages from another source, as discussed in . + + + does not have to be seekable, even + when generating linearized files. Specifying + “” as + means to write to standard output. However, you can't specify the + same file as both the input and the output because qpdf reads data + from the input file as it writes to the output file. + + + Most options require an output file, but some testing or + inspection commands do not. These are specifically noted. + + + + Basic Options + + The following options are the most common ones and perform + commonly needed transformations. + + + + + + Specifies a password for accessing encrypted files. + + + + + + + + Causes generation of a linearized (web-optimized) output file. + + + + + + + + Encrypt the file using the same encryption parameters, + including user and owner password, as the specified file. Use + to specify a password + if one is needed to open this file. Note that copying the + encryption parameters from a file also copies the first half + of /ID from the file since this is part of + the encryption parameters. + + + + + + + + If the file specified with + requires a password, specify the password using this option. + Note that only one of the user or owner password is required. + Both passwords will be preserved since QPDF does not + distinguish between the two passwords. It is possible to + preserve encryption parameters, including the owner password, + from a file even if you don't know the file's owner password. + + + + + + + + Causes generation an encrypted output file. Please see for details on how to + specify encryption parameters. + + + + + + + + Removes any encryption on the file. A password must be + supplied if the file is password protected. + + + + + + + + Select specific pages from one or more input files. See for details on how to do page + selection (splitting and merging). + + + + + + + Password-protected files may be opened by specifying a password. + By default, qpdf will preserve any encryption data associated with + a file. If is specified, qpdf will + attempt to remove any encryption information. If + is specified, qpdf will replace the + document's encryption parameters with whatever is specified. + + + Note that qpdf does not obey encryption restrictions already + imposed on the file. Doing so would be meaningless since qpdf can + be used to remove encryption from the file entirely. This + functionality is not intended to be used for bypassing copyright + restrictions or other restrictions placed on files by their + producers. + + + In all cases where qpdf allows specification of a password, care + must be taken if the password contains characters that fall + outside of the 7-bit US-ASCII character range to ensure that the + exact correct byte sequence is provided. It is possible that a + future version of qpdf may handle this more gracefully. For + example, if a password was encrypted using a password that was + encoded in ISO-8859-1 and your terminal is configured to use + UTF-8, the password you supply may not work properly. There are + various approaches to handling this. For example, if you are + using Linux and have the iconv executable (part of the ICU + package) installed, you could pass to qpdf where + password is a password specified in + your terminal's locale. A detailed discussion of this is out of + scope for this manual, but just be aware of this issue if you have + trouble with a password that contains 8-bit characters. + + + + Encryption Options + + To change the encryption parameters of a file, use the --encrypt + flag. The syntax is + + + + Note that “” terminates parsing of + encryption flags and must be present even if no restrictions are + present. + + + Either or both of the user password and the owner password may be + empty strings. + + + The value for + may be 40 + or 128. The restriction flags are dependent upon key length. + When no additional restrictions are given, the default is to be + fully permissive. + + + If is 40, + the following restriction options are available: + + + + + + Determines whether or not to allow printing. + + + + + + + + Determines whether or not to allow document modification. + + + + + + + + Determines whether or not to allow text/image extraction. + + + + + + + + Determines whether or not to allow comments and form fill-in + and signing. + + + + + If is 128, + the following restriction options are available: + + + + + + Determines whether or not to allow accessibility to visually + impaired. + + + + + + + + Determines whether or not to allow text/graphic extraction. + + + + + + + + Controls printing access. + may be + one of the following: + + + + : allow full printing + + + + + : allow low-resolution printing only + + + + + : disallow printing + + + + + + + + + + + Controls modify access. + may be + one of the following, each of which implies all the options + that follow it: + + + + : allow full document modification + + + + + : allow comment authoring and form operations + + + + + : allow form field fill-in and signing + + + + + : allow document assembly only + + + + + : allow no modifications + + + + + + + + + + + If specified, any metadata stream in the document will be left + unencrypted even if the rest of the document is encrypted. + This also forces the PDF version to be at least 1.5. + + + + + + + + If is specified, AES encryption + will be used instead of RC4 encryption. This forces the PDF + version to be at least 1.6. + + + + + + + + Use of this option forces the /V and + /R parameters in the document's encryption + dictionary to be set to the value 4. As + qpdf will automatically do this when required, there is no + reason to ever use this option. It exists primarily for use + in testing qpdf itself. This option also forces the PDF + version to be at least 1.5. + + + + + The default for each permission option is to be fully permissive. + + + + Page Selection Options + + Starting with qpdf 3.0, it is possible to split and merge PDF + files by selecting pages from one or more input files. Whatever + file is given as the primary input file is used as the starting + point, but its pages are replaced with pages as specified. + + + + Multiple input files may be specified. Each one is given as the + name of the input file, an optional password (if required to open + the file), and the range of pages. Note that + “” terminates parsing of page + selection flags. + + + For each file that pages should be taken from, specify the file, a + password needed to open the file (if any), and a page range. The + password needs to be given only once per file. If any of the + input files are the same as the primary input file or the file + used to copy encryption parameters (if specified), you do not need + to repeat the password here. The same file can be repeated + multiple times. If a file that is repeated has a password, the + password only has to be given the first time. All non-page data + (info, outlines, page numbers, etc.) are taken from the primary + input file. To discard these, use as the + primary input. + + + It is not presently possible to specify the same page from the + same file directly more than once, but you can make this work by + specifying two different paths to the same file (such as by + putting ./ somewhere in the path). This can + also be used if you want to repeat a page from one of the input + files in the output file. This may be made more convenient in a + future version of qpdf if there is enough demand for this feature. + + + The page range is a set of numbers separated by commas, ranges of + numbers separated dashes, or combinations of those. The character + “z” represents the last page. Pages can appear in any + order. Ranges can appear with a high number followed by a low + number, which causes the pages to appear in reverse. Repeating a + number will cause an error, but you can use the workaround + discussed above should you really want to include the same page + twice. + + + Example page ranges: + + + + 1,3,5-9,15-12: pages 1, 2, 3, 5, 6, 7, 8, + 9, 15, 14, 13, and 12. + + + + + z-1: all pages in the document in reverse + + + + + + Note that qpdf doesn't presently do anything special about other + constructs in a PDF file that may know about pages, so semantics + of splitting and merging vary across features. For example, the + document's outlines (bookmarks) point to actual page objects, so + if you select some pages and not others, bookmarks that point to + pages that are in the output file will work, and remaining + bookmarks will not work. On the other hand, page labels (page + numbers specified in the file) are just sequential, so page labels + will be messed up in the output file. A future version of + qpdf may do a better job at handling these + issues. (Note that the qpdf library already contains all of the + APIs required in order to implement this in your own application + if you need it.) In the mean time, you can always use + as the primary input file to avoid + copying all of that from the first file. For example, to take + pages 1 through 5 from a infile.pdf while + preserving all metadata associated with that file, you could use + + qpdf + + If you wanted pages 1 through 5 from + infile.pdf but you wanted the rest of the + metadata to be dropped, you could instead run + + qpdf + + If you wanted to take pages 1–5 from + file1.pdf and pages 11–15 from + file2.pdf in reverse, you would run + + qpdf + + If, for some reason, you wanted to take the first page of an + encrypted file called encrypted.pdf with + password pass and repeat it twice in an output + file, and if you wanted to drop metadata (like page numbers and + outlines) but preserve encryption, you would use + + qpdf + + Note that we had to specify the password all three times because + giving a password as + doesn't count for page selection, and as far as qpdf is concerned, + encrypted.pdf and + ./encrypted.pdf are separated files. These + are all corner cases that most users should hopefully never have + to be bothered with. + + + + Advanced Transformation Options + + These transformation options control fine points of how qpdf + creates the output file. Mostly these are of use only to people + who are very familiar with the PDF file format or who are PDF + developers. The following options are available: + + + + + + Controls transformation of stream data. The value of + may be one + of the following: + + + + : recompress stream data when + possible (default) + + + + + : leave all stream data as is + + + + + : uncompress stream data when + possible + + + + + + + + + + + Enables or disables normalization of content streams. + + + + + + + + Prevents qpdf from attempting to recover damaged files. + + + + + + + + Controls handing of object streams. The value of + may be one of + the following: + + + + : preserve original object streams + (default) + + + + + : don't write any object streams + + + + + : use object streams wherever + possible + + + + + + + + + + + Tells qpdf to ignore any cross-reference streams. + + + + + + + + Turns on QDF mode. For additional information on QDF, please + see . + + + + + + + + Forces the PDF version of the output file to be at least + version. In other words, if the + input file has a lower version than the specified version, the + specified version will be used. If the input file has a + higher version, the input file's original version will be + used. It is seldom necessary to use this option since qpdf + will automatically increase the version as needed when adding + features that require newer PDF readers. + + + + + + + + This option forces the PDF version to be the exact version + specified even when the file may have content that + is not supported in that version. In some cases, + forcing the output file's PDF version to be lower than that of + the input file will cause qpdf to disable certain features of + the document. Specifically, AES encryption is disabled if the + version is less than 1.6, cleartext metadata and object + streams are disabled if less than 1.5, 128-bit encryption keys + are disabled if less than 1.4, and all encryption is disabled + if less than 1.3. Even with these precautions, qpdf won't be + able to do things like eliminate use of newer image + compression schemes, transparency groups, or other features + that may have been added in more recent versions of PDF. + + + As a general rule, with the exception of big structural things + like the use of object streams or AES encryption, PDF viewers + are supposed to ignore features in files that they don't + support from newer versions. This means that forcing the + version to a lower version may make it possible to open your + PDF file with an older version, though bear in mind that some + of the original document's functionality may be lost. + + + + + + + By default, when a stream is encoded using non-lossy filters that + qpdf understands and is not already compressed using a good + compression scheme, qpdf will uncompress and recompress streams. + Assuming proper filter implements, this is safe and generally + results in smaller files. This behavior may also be explicitly + requested with . + + + When is specified, qpdf + will never attempt to change the filtering of any stream data. + + + When is specified, qpdf + will attempt to remove any non-lossy filters that it supports. + This includes /FlateDecode, + /LZWDecode, /ASCII85Decode, + and /ASCIIHexDecode. This can be very useful + for inspecting the contents of various streams. + + + When is specified, qpdf + will attempt to normalize whitespace and newlines in page content + streams. This is generally safe but could, in some cases, cause + damage to the content streams. This option is intended for people + who wish to study PDF content streams or to debug PDF content. + You should not use this for “production” PDF files. + + + Ordinarily, qpdf will attempt to recover from certain types of + errors in PDF files. These include errors in the cross-reference + table, certain types of object numbering errors, and certain types + of stream length errors. Sometimes, qpdf may think it has + recovered but may not have actually recovered, so care should be + taken when using this option as some data loss is possible. The + option will prevent qpdf from + attempting recovery. In this case, it will fail on the first + error that it encounters. + + + Object streams, also known as compressed objects, were introduced + into the PDF specification at version 1.5, corresponding to + Acrobat 6. Some older PDF viewers may not support files with + object streams. qpdf can be used to transform files with object + streams to files without object streams or vice versa. As + mentioned above, there are three object stream modes: + , , and + . + + + In mode, the relationship to objects and + the streams that contain them is preserved from the original file. + In mode, all objects are written as + regular, uncompressed objects. The resulting file should be + readable by older PDF viewers. (Of course, the content of the + files may include features not supported by older viewers, but at + least the structure will be supported.) In + mode, qpdf will create its own object + streams. This will usually result in more compact PDF files, + though they may not be readable by older viewers. In this mode, + qpdf will also make sure the PDF version number in the header is + at least 1.5. + + + Ordinarily, qpdf reads cross-reference streams when they are + present in a PDF file. If + is specified, qpdf will ignore any cross-reference streams for + hybrid PDF files. The purpose of hybrid files is to make some + content available to viewers that are not aware of cross-reference + streams. It is almost never desirable to ignore them. The only + time when you might want to use this feature is if you are testing + creation of hybrid PDF files and wish to see how a PDF consumer + that doesn't understand object and cross-reference streams would + interpret such a file. + + + The flag turns on QDF mode, which changes + some of the defaults described above. Specifically, in QDF mode, + by default, stream data is uncompressed, content streams are + normalized, and encryption is removed. These defaults can still + be overridden by specifying the appropriate options as described + above. Additionally, in QDF mode, stream lengths are stored as + indirect objects, objects are laid out in a less efficient but + more readable fashion, and the documents are interspersed with + comments that make it easier for the user to find things and also + make it possible for fix-qdf to work properly. + QDF mode is intended for people, mostly developers, who wish to + inspect or modify PDF files in a text editor. For details, please + see . + + + + Testing, Inspection, and Debugging Options + + These options can be useful for digging into PDF files or for use + in automated test suites for software that uses the qpdf library. + When any of the options in this section are specified, no output + file should be given. The following options are available: + + + + + + Causes generation of a fixed value for /ID. This is intended + for testing only. Never use it for production files. + + + + + + + + Causes use of a static initialization vector for AES-CBC. + This is intended for testing only so that output files can be + reproducible. Never use it for production files. This option + in particular is not secure since it significantly weakens the + encryption. + + + + + + + + Suppresses inclusion of original object ID comments in QDF + files. This can be useful when generating QDF files for test + purposes, particularly when comparing them to determine + whether two PDF files have identical content. + + + + + + + + Shows document encryption parameters. Also shows the + document's user password if the owner password is given. + + + + + + + + Checks file integrity and linearization status. + + + + + + + + Checks and displays all data in the linearization hint tables. + + + + + + + + Shows the contents of the cross-reference table in a + human-readable form. This is especially useful for files with + cross-reference streams which are stored in a binary format. + + + + + + + + Show the contents of the given object. This is especially + useful for inspecting objects that are inside of object + streams (also known as “compressed objects”). + + + + + + + + When used along with the + option, if the object is a stream, shows the raw stream data + instead of object's contents. + + + + + + + + When used along with the + option, if the object is a stream, shows the filtered stream + data instead of object's contents. If the stream is filtered + using filters that qpdf does not support, an error will be + issued. + + + + + + + + Shows the object and generation number for each page + dictionary object and for each content stream associated with + the page. Having this information makes it more convenient to + inspect objects from a particular page. + + + + + + + + When used along with , also shows + the object and generation numbers for the image objects on + each page. (At present, information about images in shared + resource dictionaries are not output by this command. This is + discussed in a comment in the source code.) + + + + + + + + Checks file structure and well as encryption, linearization, + and encoding of stream data. A file for which + reports no errors may still have + errors in stream data content but should otherwise be + structurally sound. If any errors, + qpdf will exit with a status of 2. There are some recoverable + conditions that detects. These are + issued as warnings instead of errors. If qpdf finds no errors + but finds warnings, it will exit with a status of 3 (as of + version 2.0.4). + + + + + + + The and + options are ignored unless + is given. Either of these options + will cause the stream data to be written to standard output. In + order to avoid commingling of stream data with other output, it is + recommend that these objects not be combined with other + test/inspection options. + + + If is given and + is also given, qpdf will + attempt to normalize the stream data as if it is a page content + stream. This attempt will be made even if it is not a page + content stream, in which case it will produce unusable results. + + + + + QDF Mode + + In QDF mode, qpdf creates PDF files in what we call QDF + form. A PDF file in QDF form, sometimes called a QDF + file, is a completely valid PDF file that has + %QDF-1.0 as its third line (after the pdf header + and binary characters) and has certain other characteristics. The + purpose of QDF form is to make it possible to edit PDF files, with + some restrictions, in an ordinary text editor. This can be very + useful for experimenting with different PDF constructs or for + making one-off edits to PDF files (though there are other reasons + why this may not always work). + + + It is ordinarily very difficult to edit PDF files in a text editor + for two reasons: most meaningful data in PDF files is compressed, + and PDF files are full of offset and length information that makes + it hard to add or remove data. A QDF file is organized in a manner + such that, if edits are kept within certain constraints, the + fix-qdf program, distributed with qpdf, is able + to restore edited files to a correct state. The + fix-qdf program takes no command-line + arguments. It reads a possibly edited QDF file from standard input + and writes a repaired file to standard output. + + + The following attributes characterize a QDF file: + + + + All objects appear in numerical order in the PDF file, including + when objects appear in object streams. + + + + + Objects are printed in an easy-to-read format, and all line + endings are normalized to UNIX line endings. + + + + + Unless specifically overridden, streams appear uncompressed + (when qpdf supports the filters and they are compressed with a + non-lossy compression scheme), and most content streams are + normalized (line endings are converted to just a UNIX-style + linefeeds). + + + + + All streams lengths are represented as indirect objects, and the + stream length object is always the next object after the stream. + If the stream data does not end with a newline, an extra newline + is inserted, and a special comment appears after the stream + indicating that this has been done. + + + + + If the PDF file contains object streams, if object stream + n contains k objects, + those objects are numbered from n+1 through + n+k, and the object number/offset pairs + appear on a separate line for each object. Additionally, each + object in the object stream is preceded by a comment indicating + its object number and index. This makes it very easy to find + objects in object streams. + + + + + All beginnings of objects, stream tokens, + endstream tokens, and + endobj tokens appear on lines by themselves. + A blank line follows every endobj token. + + + + + If there is a cross-reference stream, it is unfiltered. + + + + + Page dictionaries and page content streams are marked with + special comments that make them easy to find. + + + + + Comments precede each object indicating the object number of the + corresponding object in the original file. + + + + + + When editing a QDF file, any edits can be made as long as the above + constraints are maintained. This means that you can freely edit a + page's content without worrying about messing up the QDF file. It + is also possible to add new objects so long as those objects are + added after the last object in the file or subsequent objects are + renumbered. If a QDF file has object streams in it, you can always + add the new objects before the xref stream and then change the + number of the xref stream, since nothing generally ever references + it by number. + + + It is not generally practical to remove objects from QDF files + without messing up object numbering, but if you remove all + references to an object, you can run qpdf on the file (after + running fix-qdf), and qpdf will omit the + now-orphaned object. + + + When fix-qdf is run, it goes through the file + and recomputes the following parts of the file: + + + + the /N, /W, and + /First keys of all object stream dictionaries + + + + + the pairs of numbers representing object numbers and offsets of + objects in object streams + + + + + all stream lengths + + + + + the cross-reference table or cross-reference stream + + + + + the offset to the cross-reference table or cross-reference + stream following the startxref token + + + + + + + Using the QPDF Library + + The source tree for the qpdf package has an + examples directory that contains a few + example programs. The qpdf/qpdf.cc source + file also serves as a useful example since it exercises almost all + of the qpdf library's public interface. The best source of + documentation on the library itself is reading comments in + include/qpdf/QPDF.hh, + include/qpdf/QDFWriter.hh, and + include/qpdf/QPDFObjectHandle.hh. + + + All header files are installed in the include/qpdf directory. It + is recommend that you use #include + <qpdf/QPDF.hh> rather than adding + include/qpdf to your include path. + + + When linking against the qpdf static library, you may also need to + specify -lpcre -lz on your link command. If + your system understands how to read libtool + .la files, this may not be necessary. + + + The qpdf library is safe to use in a multithreaded program, but no + individual QPDF object instance (including + QPDF, QPDFObjectHandle, or + QPDFWriter) can be used in more than one thread at a + time. Multiple threads may simultaneously work with different + instances of these and all other QPDF objects. + + + + Design and Library Notes + + Introduction + + This section was written prior to the implementation of the qpdf + package and was subsequently modified to reflect the + implementation. In some cases, for purposes of explanation, it + may differ slightly from the actual implementation. As always, + the source code and test suite are authoritative. Even if there + are some errors, this document should serve as a road map to + understanding how this code works. + + + In general, one should adhere strictly to a specification when + writing but be liberal in reading. This way, the product of our + software will be accepted by the widest range of other programs, + and we will accept the widest range of input files. This library + attempts to conform to that philosophy whenever possible but also + aims to provide strict checking for people who want to validate + PDF files. If you don't want to see warnings and are trying to + write something that is tolerant, you can call + setSuppressWarnings(true). If you want to fail + on the first error, you can call + setAttemptRecovery(false). The default + behavior is to generating warnings for recoverable problems. Note + that recovery will not always produce the desired results even if + it is able to get through the file. Unlike most other PDF files + that produce generic warnings such as “This file is + damaged,”, qpdf generally issues a detailed error message + that would be most useful to a PDF developer. This is by design + as there seems to be a shortage of PDF validation tools out + there. (This was, in fact, one of the major motivations behind + the initial creation of qpdf.) + + + + Design Goals + + The QPDF package includes support for reading and rewriting PDF + files. It aims to hide from the user details involving object + locations, modified (appended) PDF files, the + directness/indirectness of objects, and stream filters including + encryption. It does not aim to hide knowledge of the object + hierarchy or content stream contents. Put another way, a user of + the qpdf library is expected to have knowledge about how PDF files + work, but is not expected to have to keep track of bookkeeping + details such as file positions. + + + A user of the library never has to care whether an object is + direct or indirect. All access to objects deals with this + transparently. All memory management details are also handled by + the library. + + + The PointerHolder object is used internally + by the library to deal with memory management. This is basically + a smart pointer object very similar in spirit to the Boost + library's shared_ptr object, but predating + it by several years. This library also makes use of a technique + for giving fine-grained access to methods in one class to other + classes by using public subclasses with friends and only private + members that in turn call private methods of the containing class. + See QPDFObjectHandle::Factory as an + example. + + + The top-level qpdf class is QPDF. A + QPDF object represents a PDF file. The + library provides methods for both accessing and mutating PDF + files. + + + QPDFObject is the basic PDF Object class. + It is an abstract base class from which are derived classes for + each type of PDF object. Clients do not interact with Objects + directly but instead interact with + QPDFObjectHandle. + + + QPDFObjectHandle contains + PointerHolder<QPDFObject> and + includes accessor methods that are type-safe proxies to the + methods of the derived object classes as well as methods for + querying object types. They can be passed around by value, + copied, stored in containers, etc. with very low overhead. + Instances of QPDFObjectHandle always + contain a reference back to the QPDF object + from which they were created. A + QPDFObjectHandle may be direct or indirect. + If indirect, the QPDFObject the + PointerHolder initially points to is a null + pointer. In this case, the first attempt to access the underlying + QPDFObject will result in the + QPDFObject being resolved via a call to the + referenced QPDF instance. This makes it + essentially impossible to make coding errors in which certain + things will work for some PDF files and not for others based on + which objects are direct and which objects are indirect. + + + Instances of QPDFObjectHandle can be + directly created and modified using static factory methods in the + QPDFObjectHandle class. There are factory + methods for each type of object as well as a convenience method + QPDFObjectHandle::parse that creates an + object from a string representation of the object. Existing + instances of QPDFObjectHandle can also be + modified in several ways. See comments in + QPDFObjectHandle.hh for details. + + + When the QPDF class creates a new object, + it dynamically allocates the appropriate type of + QPDFObject and immediately hands the + pointer to an instance of QPDFObjectHandle. + The parser reads a token from the current file position. If the + token is a not either a dictionary or array opener, an object is + immediately constructed from the single token and the parser + returns. Otherwise, the parser is invoked recursively in a + special mode in which it accumulates objects until it finds a + balancing closer. During this process, the + “R” keyword is recognized and an + indirect QPDFObjectHandle may be + constructed. + + + The QPDF::resolve() method, which is used to + resolve an indirect object, may be invoked from the + QPDFObjectHandle class. It first checks a + cache to see whether this object has already been read. If not, + it reads the object from the PDF file and caches it. It the + returns the resulting QPDFObjectHandle. + The calling object handle then replaces its + PointerHolder<QDFObject> with the one + from the newly returned QPDFObjectHandle. + In this way, only a single copy of any direct object need exist + and clients can access objects transparently without knowing + caring whether they are direct or indirect objects. Additionally, + no object is ever read from the file more than once. That means + that only the portions of the PDF file that are actually needed + are ever read from the input file, thus allowing the qpdf package + to take advantage of this important design goal of PDF files. + + + If the requested object is inside of an object stream, the object + stream itself is first read into memory. Then the tokenizer reads + objects from the memory stream based on the offset information + stored in the stream. Those individual objects are cached, after + which the temporary buffer holding the object stream contents are + discarded. In this way, the first time an object in an object + stream is requested, all objects in the stream are cached. + + + An instance of QPDF is constructed by using + the class's default constructor. If desired, the + QPDF object may be configured with various + methods that change its default behavior. Then the + QPDF::processFile() method is passed the name + of a PDF file, which permanently associates the file with that + QPDF object. A password may also be given for access to + password-protected files. QPDF does not enforce encryption + parameters and will treat user and owner passwords equivalently. + Either password may be used to access an encrypted file. + + + As pointed out earlier, the intention is not for qpdf to be used + to bypass security on files. but as any open source PDF consumer + may be easily modified to bypass basic PDF document security, + and qpdf offers may transformations that can do this as well, + there seems to be little point in the added complexity of + conditionally enforcing document security. + + + QPDF will allow recovery of a user password + given an owner password. The input PDF file must be seekable. + (Output files written by QPDFWriter need + not be seekable, even when creating linearized files.) During + construction, QPDF validates the PDF file's + header, and then reads the cross reference tables and trailer + dictionaries. The QPDF class keeps only + the first trailer dictionary though it does read all of them so it + can check the /Prev key. + QPDF class users may request the root + object and the trailer dictionary specifically. The cross + reference table is kept private. Objects may then be requested by + number of by walking the object tree. + + + When a PDF file has a cross-reference stream instead of a + cross-reference table and trailer, requesting the document's + trailer dictionary returns the stream dictionary from the + cross-reference stream instead. + + + There are some convenience routines for very common operations + such as walking the page tree and returning a vector of all page + objects. For full details, please see the header file + QPDF.hh. + + + The following example should clarify how + QPDF processes a simple file. + + + + Client constructs QPDF + pdf and calls + pdf.processFile("a.pdf");. + + + + + The QPDF class checks the beginning of + a.pdf for + %!PDF-1.[0-9]+. It then reads the cross + reference table mentioned at the end of the file, ensuring that + it is looking before the last %%EOF. After + getting to trailer keyword, it invokes the + parser. + + + + + The parser sees “<<”, so + it calls itself recursively in dictionary creation mode. + + + + + In dictionary creation mode, the parser keeps accumulating + objects until it encounters + “>>”. Each object that is + read is pushed onto a stack. If + “R” is read, the last two + objects on the stack are inspected. If they are integers, they + are popped off the stack and their values are used to construct + an indirect object handle which is then pushed onto the stack. + When “>>” is finally read, + the stack is converted into a + QPDF_Dictionary which is placed in a + QPDFObjectHandle and returned. + + + + + The resulting dictionary is saved as the trailer dictionary. + + + + + The /Prev key is searched. If present, + QPDF seeks to that point and repeats + except that the new trailer dictionary is not saved. If + /Prev is not present, the initial parsing + process is complete. + + + If there is an encryption dictionary, the document's encryption + parameters are initialized. + + + + + The client requests root object. The + QPDF class gets the value of root key + from trailer dictionary and returns it. It is an unresolved + indirect QPDFObjectHandle. + + + + + The client requests the /Pages key from root + QPDFObjectHandle. The + QPDFObjectHandle notices that it is + indirect so it asks QPDF to resolve it. + QPDF looks in the object cache for an + object with the root dictionary's object ID and generation + number. Upon not seeing it, it checks the cross reference + table, gets the offset, and reads the object present at that + offset. It stores the result in the object cache and returns + the cached result. The calling + QPDFObjectHandle replaces its object + pointer with the one from the resolved + QPDFObjectHandle, verifies that it a + valid dictionary object, and returns the (unresolved indirect) + QPDFObject handle to the top of the + Pages hierarchy. + + + As the client continues to request objects, the same process is + followed for each new requested object. + + + + + + + Encryption + + Encryption is supported transparently by qpdf. When opening a PDF + file, if an encryption dictionary exists, the + QPDF object processes this dictionary using + the password (if any) provided. The primary decryption key is + computed and cached. No further access is made to the encryption + dictionary after that time. When an object is read from a file, + the object ID and generation of the object in which it is + contained is always known. Using this information along with the + stored encryption key, all stream and string objects are + transparently decrypted. Raw encrypted objects are never stored + in memory. This way, nothing in the library ever has to know or + care whether it is reading an encrypted file. + + + An interface is also provided for writing encrypted streams and + strings given an encryption key. This is used by + QPDFWriter when it rewrites encrypted + files. + + + + Adding and Removing Pages + + While qpdf's API has supported adding and modifying objects for + some time, version 3.0 introduces specific methods for adding and + removing pages. These are largely convenience routines that + handle two tricky issues: pushing inheritable resources from the + /Pages tree down to individual pages and + manipulation of the /Pages tree itself. For + details, see addPage and surrounding methods + in QPDF.hh. + + + + Reserving Object Numbers + + Version 3.0 of qpdf introduced the concept of reserved objects. + These are seldom needed for ordinary operations, but there are + cases in which you may want to add a series of indirect objects + with references to each other to a QPDF + object. This causes a problem because you can't determine the + object ID that a new indirect object will have until you add it to + the QPDF object with + QPDF::makeIndirectObject. The only way to + add two mutually referential objects to a + QPDF object prior to version 3.0 would be + to add the new objects first and then make them refer to each + other after adding them. Now it is possible to create a + reserved object using + QPDFObjectHandle::newReserved. This is an + indirect object that stays “unresolved” even if it is + queried for its type. So now, if you want to create a set of + mutually referential objects, you can create reservations for each + one of them and use those reservations to construct the + references. When finished, you can call + QPDF::replaceReserved to replace the reserved + objects with the real ones. This functionality will never be + needed by most applications, but it is used internally by QPDF + when copying objects from other PDF files, as discussed in . For an example of how to use + reserved objects, search for newReserved in + test_driver.cc in qpdf's sources. + + + + Copying Objects From Other PDF Files + + Version 3.0 of qpdf introduced the ability to copy objects into a + QPDF object from a different + QPDF object, which we refer to as + foreign objects. This allows arbitrary + merging of PDF files. The qpdf command-line + tool provides limited support for basic page selection, including + merging in pages from other files, but the library's API makes it + possible to implement arbitrarily complex merging operations. The + main method for copying foreign objects is + QPDF::copyForeignObject. This takes an + indirect object from another QPDF and + copies it recursively into this object while preserving all object + structure, including circular references. This means you can add + a direct object that you create from scratch to a + QPDF object with + QPDF::makeIndirectObject, and you can add an + indirect object from another file with + QPDF::copyForeignObject. The fact that + QPDF::makeIndirectObject does not + automatically detect a foreign object and copy it is an explicit + design decision. Copying a foreign object seems like a + sufficiently significant thing to do that it should be done + explicitly. + + + The other way to copy foreign objects is by passing a page from + one QPDF to another by calling + QPDF::addPage. In contrast to + QPDF::makeIndirectObject, this method + automatically distinguishes between indirect objects in the + current file, foreign objects, and direct objects. + + + + Writing PDF Files + + The qpdf library supports file writing of + QPDF objects to PDF files through the + QPDFWriter class. The + QPDFWriter class has two writing modes: one + for non-linearized files, and one for linearized files. See for a description of linearization + is implemented. This section describes how we write + non-linearized files including the creation of QDF files (see + . + + + This outline was written prior to implementation and is not + exactly accurate, but it provides a correct “notional” + idea of how writing works. Look at the code in + QPDFWriter for exact details. + + + + Initialize state: + + + + next object number = 1 + + + + + object queue = empty + + + + + renumber table: old object id/generation to new id/0 = empty + + + + + xref table: new id -> offset = empty + + + + + + + + Create a QPDF object from a file. + + + + + Write header for new PDF file. + + + + + Request the trailer dictionary. + + + + + For each value that is an indirect object, grab the next object + number (via an operation that returns and increments the + number). Map object to new number in renumber table. Push + object onto queue. + + + + + While there are more objects on the queue: + + + + Pop queue. + + + + + Look up object's new number n in the + renumbering table. + + + + + Store current offset into xref table. + + + + + Write n 0 obj. + + + + + If object is null, whether direct or indirect, write out + null, thus eliminating unresolvable indirect object + references. + + + + + If the object is a stream stream, write stream contents, + piped through any filters as required, to a memory buffer. + Use this buffer to determine the stream length. + + + + + If object is not a stream, array, or dictionary, write out + its contents. + + + + + If object is an array or dictionary (including stream), + traverse its elements (for array) or values (for + dictionaries), handling recursive dictionaries and arrays, + looking for indirect objects. When an indirect object is + found, if it is not resolvable, ignore. (This case is + handled when writing it out.) Otherwise, look it up in the + renumbering table. If not found, grab the next available + object number, assign to the referenced object in the + renumbering table, and push the referenced object onto the + queue. As a special case, when writing out a stream + dictionary, replace length, filters, and decode parameters + as required. + + + Write out dictionary or array, replacing any unresolvable + indirect object references with null (pdf spec says + reference to non-existent object is legal and resolves to + null) and any resolvable ones with references to the + renumbered objects. + + + + + If the object is a stream, write + stream\n, the stream contents (from the + memory buffer), and \nendstream\n. + + + + + When done, write endobj. + + + + + + + + + Once we have finished the queue, all referenced objects will have + been written out and all deleted objects or unreferenced objects + will have been skipped. The new cross-reference table will + contain an offset for every new object number from 1 up to the + number of objects written. This can be used to write out a new + xref table. Finally we can write out the trailer dictionary with + appropriately computed /ID (see spec, 8.3, File Identifiers), the + cross reference table offset, and %%EOF. + + + + Filtered Streams + + Support for streams is implemented through the + Pipeline interface which was designed for + this package. + + + When reading streams, create a series of + Pipeline objects. The + Pipeline abstract base requires + implementation write() and + finish() and provides an implementation of + getNext(). Each pipeline object, upon + receiving data, does whatever it is going to do and then writes + the data (possibly modified) to its successor. Alternatively, a + pipeline may be an end-of-the-line pipeline that does something + like store its output to a file or a memory buffer ignoring a + successor. For additional details, look at + Pipeline.hh. + + + QPDF can read raw or filtered streams. + When reading a filtered stream, the QPDF + class creates a Pipeline object for one of + each appropriate filter object and chains them together. The last + filter should write to whatever type of output is required. The + QPDF class has an interface to write raw or + filtered stream contents to a given pipeline. + + + + + Linearization + + This chapter describes how QPDF and + QPDFWriter implement creation and processing + of linearized PDFS. + + + Basic Strategy for Linearization + + To avoid the incestuous problem of having the qpdf library + validate its own linearized files, we have a special linearized + file checking mode which can be invoked via qpdf + --check-linearization (or qpdf + --check). This mode reads the linearization parameter + dictionary and the hint streams and validates that object + ordering, parameters, and hint stream contents are correct. The + validation code was first tested against linearized files created + by external tools (Acrobat and pdlin) and then used to validate + files created by QPDFWriter itself. + + + + Preparing For Linearization + + Before creating a linearized PDF file from any other PDF file, the + PDF file must be altered such that all page attributes are + propagated down to the page level (and not inherited from parents + in the /Pages tree). We also have to know + which objects refer to which other objects, being concerned with + page boundaries and a few other cases. We refer to this part of + preparing the PDF file as optimization, + discussed in . Note the, in + this context, the term optimization is a + qpdf term, and the term linearization is a + term from the PDF specification. Do not be confused by the fact + that many applications refer to linearization as optimization or + web optimization. + + + When creating linearized PDF files from optimized PDF files, there + are really only a few issues that need to be dealt with: + + + + Creation of hints tables + + + + + Placing objects in the correct order + + + + + Filling in offsets and byte sizes + + + + + + + Optimization + + In order to perform various operations such as linearization and + splitting files into pages, it is necessary to know which objects + are referenced by which pages, page thumbnails, and root and + trailer dictionary keys. It is also necessary to ensure that all + page-level attributes appear directly at the page level and are + not inherited from parents in the pages tree. + + + We refer to the process of enforcing these constraints as + optimization. As mentioned above, note + that some applications refer to linearization as optimization. + Although this optimization was initially motivated by the need to + create linearized files, we are using these terms separately. + + + PDF file optimization is implemented in the + QPDF_optimization.cc source file. That file + is richly commented and serves as the primary reference for the + optimization process. + + + After optimization has been completed, the private member + variables obj_user_to_objects and + object_to_obj_users in + QPDF have been populated. Any object that + has more than one value in the + object_to_obj_users table is shared. Any + object that has exactly one value in the + object_to_obj_users table is private. To find + all the private objects in a page or a trailer or root dictionary + key, one merely has make this determination for each element in + the obj_user_to_objects table for the given + page or key. + + + Note that pages and thumbnails have different object user types, + so the above test on a page will not include objects referenced by + the page's thumbnail dictionary and nothing else. + + + + Writing Linearized Files + + We will create files with only primary hint streams. We will + never write overflow hint streams. (As of PDF version 1.4, + Acrobat doesn't either, and they are never necessary.) The hint + streams contain offset information to objects that point to where + they would be if the hint stream were not present. This means + that we have to calculate all object positions before we can + generate and write the hint table. This means that we have to + generate the file in two passes. To make this reliable, + QPDFWriter in linearization mode invokes + exactly the same code twice to write the file to a pipeline. + + + In the first pass, the target pipeline is a count pipeline chained + to a discard pipeline. The count pipeline simply passes its data + through to the next pipeline in the chain but can return the + number of bytes passed through it at any intermediate point. The + discard pipeline is an end of line pipeline that just throws its + data away. The hint stream is not written and dummy values with + adequate padding are stored in the first cross reference table, + linearization parameter dictionary, and /Prev key of the first + trailer dictionary. All the offset, length, object renumbering + information, and anything else we need for the second pass is + stored. + + + At the end of the first pass, this information is passed to the + QPDF class which constructs a compressed + hint stream in a memory buffer and returns it. + QPDFWriter uses this information to write a + complete hint stream object into a memory buffer. At this point, + the length of the hint stream is known. + + + In the second pass, the end of the pipeline chain is a regular + file instead of a discard pipeline, and we have known values for + all the offsets and lengths that we didn't have in the first pass. + We have to adjust offsets that appear after the start of the hint + stream by the length of the hint stream, which is known. Anything + that is of variable length is padded, with the padding code + surrounding any writing code that differs in the two passes. This + ensures that changes to the way things are represented never + results in offsets that were gathered during the first pass + becoming incorrect for the second pass. + + + Using this strategy, we can write linearized files to a + non-seekable output stream with only a single pass to disk or + wherever the output is going. + + + + Calculating Linearization Data + + Once a file is optimized, we have information about which objects + access which other objects. We can then process these tables to + decide which part (as described in “Linearized PDF Document + Structure” in the PDF specification) each object is + contained within. This tells us the exact order in which objects + are written. The QPDFWriter class asks for + this information and enqueues objects for writing in the proper + order. It also turns on a check that causes an exception to be + thrown if an object is encountered that has not already been + queued. (This could happen only if there were a bug in the + traversal code used to calculate the linearization data.) + + + + Known Issues with Linearization + + There are a handful of known issues with this linearization code. + These issues do not appear to impact the behavior of linearized + files which still work as intended: it is possible for a web + browser to begin to display them before they are fully + downloaded. In fact, it seems that various other programs that + create linearized files have many of these same issues. These + items make reference to terminology used in the linearization + appendix of the PDF specification. + + + + Thread Dictionary information keys appear in part 4 with the + rest of Threads instead of in part 9. Objects in part 9 are + not grouped together functionally. + + + + + We are not calculating numerators for shared object positions + within content streams or interleaving them within content + streams. + + + + + We generate only page offset, shared object, and outline hint + tables. It would be relatively easy to add some additional + tables. We gather most of the information needed to create + thumbnail hint tables. There are comments in the code about + this. + + + + + + + Debugging Note + + The qpdf --show-linearization command can show + the complete contents of linearization hint streams. To look at + the raw data, you can extract the filtered contents of the + linearization hint tables using qpdf --show-object=n + --filtered-stream-data. Then, to convert this into a + bit stream (since linearization tables are bit streams written + without regard to byte boundaries), you can pipe the resulting + data through the following perl code: + + use bytes; +binmode STDIN; +undef $/; +my $a = <STDIN>; +my @ch = split(//, $a); +map { printf("%08b", ord($_)) } @ch; +print "\n"; + + + + + + Object and Cross-Reference Streams + + This chapter provides information about the implementation of + object stream and cross-reference stream support in qpdf. + + + Object Streams + + Object streams can contain any regular object except the + following: + + + + stream objects + + + + + objects with generation > 0 + + + + + the encryption dictionary + + + + + objects containing the /Length of another stream + + + + In addition, Adobe reader (at least as of version 8.0.0) appears + to not be able to handle having the document catalog appear in an + object stream if the file is encrypted, though this is not + specifically disallowed by the specification. + + + There are additional restrictions for linearized files. See for details. + + + The PDF specification refers to objects in object streams as + “compressed objects” regardless of whether the object + stream is compressed. + + + The generation number of every object in an object stream must be + zero. It is possible to delete and replace an object in an object + stream with a regular object. + + + The object stream dictionary has the following keys: + + + + /N: number of objects + + + + + /First: byte offset of first object + + + + + /Extends: indirect reference to stream that + this extends + + + + + + Stream collections are formed with /Extends. + They must form a directed acyclic graph. These can be used for + semantic information and are not meaningful to the PDF document's + syntactic structure. Although qpdf preserves stream collections, + it never generates them and doesn't make use of this information + in any way. + + + The specification recommends limiting the number of objects in + object stream for efficiency in reading and decoding. Acrobat 6 + uses no more than 100 objects per object stream for linearized + files and no more 200 objects per stream for non-linearized files. + QPDFWriter, in object stream generation + mode, never puts more than 100 objects in an object stream. + + + Object stream contents consists of N pairs of + integers, each of which is the object number and the byte offset + of the object relative to the first object in the stream, followed + by the objects themselves, concatenated. + + + + Cross-Reference Streams + + For non-hybrid files, the value following + startxref is the byte offset to the xref stream + rather than the word xref. + + + For hybrid files (files containing both xref tables and + cross-reference streams), the xref table's trailer dictionary + contains the key /XRefStm whose value is the + byte offset to a cross-reference stream that supplements the xref + table. A PDF 1.5-compliant application should read the xref table + first. Then it should replace any object that it has already seen + with any defined in the xref stream. Then it should follow any + /Prev pointer in the original xref table's + trailer dictionary. The specification is not clear about what + should be done, if anything, with a /Prev + pointer in the xref stream referenced by an xref table. The + QPDF class ignores it, which is probably + reasonable since, if this case were to appear for any sensible PDF + file, the previous xref table would probably have a corresponding + /XRefStm pointer of its own. For example, if a + hybrid file were appended, the appended section would have its own + xref table and /XRefStm. The appended xref + table would point to the previous xref table which would point the + /XRefStm, meaning that the new + /XRefStm doesn't have to point to it. + + + Since xref streams must be read very early, they may not be + encrypted, and the may not contain indirect objects for keys + required to read them, which are these: + + + + /Type: value /XRef + + + + + /Size: value n+1: where + n is highest object number (same as + /Size in the trailer dictionary) + + + + + /Index (optional): value + [n count ...] + used to determine which objects' information is stored in this + stream. The default is [0 /Size]. + + + + + /Prev: value + offset: byte offset of previous xref + stream (same as /Prev in the trailer + dictionary) + + + + + /W [...]: sizes of each field in the xref + table + + + + + + The other fields in the xref stream, which may be indirect if + desired, are the union of those from the xref table's trailer + dictionary. + + + Cross-Reference Stream Data + + The stream data is binary and encoded in big-endian byte order. + Entries are concatenated, and each entry has a length equal to + the total of the entries in /W above. Each + entry consists of one or more fields, the first of which is the + type of the field. The number of bytes for each field is given + by /W above. A 0 in /W + indicates that the field is omitted and has the default value. + The default value for the field type is + “1”. All other default values are + “0”. + + + PDF 1.5 has three field types: + + + + 0: for free objects. Format: 0 obj + next-generation, same as the free table in a + traditional cross-reference table + + + + + 1: regular non-compressed object. Format: 1 offset + generation + + + + + 2: for objects in object streams. Format: 2 + object-stream-number index, the number of object + stream containing the object and the index within the object + stream of the object. + + + + + + It seems standard to have the first entry in the table be + 0 0 0 instead of 0 0 ffff + if there are no deleted objects. + + + + + Implications for Linearized Files + + For linearized files, the linearization dictionary, document + catalog, and page objects may not be contained in object streams. + + + Objects stored within object streams are given the highest range + of object numbers within the main and first-page cross-reference + sections. + + + It is okay to use cross-reference streams in place of regular xref + tables. There are on special considerations. + + + Hint data refers to object streams themselves, not the objects in + the streams. Shared object references should also be made to the + object streams. There are no reference in any hint tables to the + object numbers of compressed objects (objects within object + streams). + + + When numbering objects, all shared objects within both the first + and second halves of the linearized files must be numbered + consecutively after all normal uncompressed objects in that half. + + + + Implementation Notes + + There are three modes for writing object streams: + , , and + . In disable mode, we do not generate + any object streams, and we also generate an xref table rather than + xref streams. This can be used to generate PDF files that are + viewable with older readers. In preserve mode, we write object + streams such that written object streams contain the same objects + and /Extends relationships as in the original + file. This is equal to disable if the file has no object streams. + In generate, we create object streams ourselves by grouping + objects that are allowed in object streams together in sets of no + more than 100 objects. We also ensure that the PDF version is at + least 1.5 in generate mode, but we preserve the version header in + the other modes. The default is . + + + We do not support creation of hybrid files. When we write files, + even in preserve mode, we will lose any xref tables and merge any + appended sections. + + + + + Release Notes + + For a detailed list of changes, please see the file + ChangeLog in the source distribution. + + + + 3.0.2: September 6, 2012 + + + + + Bug fix: QPDFWriter::setOutputMemory did + not work when not used with + QPDFWriter::setStaticID, which made it + pretty much useless. This has been fixed. + + + + + New API call + QPDFWriter::setExtraHeaderText inserts + additional text near the header of the PDF file. The intended + use case is to insert comments that may be consumed by a + downstream application, though other use cases may exist. + + + + + + + + + 3.0.1: August 11, 2012 + + + + + Version 3.0.0 included addition of files for + pkg-config, but this was not mentioned in + the release notes. The release notes for 3.0.0 were updated + to mention this. + + + + + Bug fix: if an object stream ended with a scalar object not + followed by space, qpdf would incorrectly report that it + encountered a premature EOF. This bug has been in qpdf since + version 2.0. + + + + + + + + + 3.0.0: August 2, 2012 + + + + + Acknowledgment: I would like to express gratitude for the + contributions of Tobias Hoffmann toward the release of qpdf + version 3.0. He is responsible for most of the implementation + and design of the new API for manipulating pages, and + contributed code and ideas for many of the improvements made + in version 3.0. Without his work, this release would + certainly not have happened as soon as it did, if at all. + + + + + Non-compatible API change: The version of + QPDFObjectHandle::replaceStreamData that + uses a StreamDataProvider no longer + requires (or accepts) a length parameter. + See for an explanation. + While care is taken to avoid non-compatible API changes in + general, an exception was made this time because the new + interface offers an opportunity to significantly simplify + calling code. + + + + + Support has been added for large files. The test suite + verifies support for files larger than 4 gigabytes, and manual + testing has verified support for files larger than 10 + gigabytes. Large file support is available for both 32-bit + and 64-bit platforms as long as the compiler and underlying + platforms support it. + + + + + Support for page selection (splitting and merging PDF files) + has been added to the qpdf command-line + tool. See . + + + + + Options have been added to the qpdf + command-line tool for copying encryption parameters from + another file. See . + + + + + New methods have been added to the QPDF + object for adding and removing pages. See . + + + + + New methods have been added to the QPDF + object for copying objects from other PDF files. See + + + + + A new method QPDFObjectHandle::parse has + been added for constructing + QPDFObjectHandle objects from a string + description. + + + + + Methods have been added to QPDFWriter + to allow writing to an already open stdio FILE* + addition to writing to standard output or a named file. + Methods have been added to QPDF to be + able to process a file from an already open stdio + FILE*. This makes it possible to read and write + PDF from secure temporary files that have been unlinked prior + to being fully read or written. + + + + + The QPDF::emptyPDF can be used to allow + creation of PDF files from scratch. The example + examples/pdf-create.cc illustrates how it + can be used. + + + + + Several methods to take + PointerHolder<Buffer> can now + also accept std::string arguments. + + + + + Many new convenience methods have been added to the library, + most in QPDFObjectHandle. See + ChangeLog for a full list. + + + + + When building on a platform that supports ELF shared libraries + (such as Linux), symbol versions are enabled by default. They + can be disabled by passing + to + ./configure. + + + + + The file libqpdf.pc is now installed to + support pkg-config. + + + + + Image comparison tests are off by default now since they are + not needed to verify a correct build or port of qpdf. They + are needed only when changing the actual PDF output generated + by qpdf. You should enable them if you are making deep + changes to qpdf itself. See README for + details. + + + + + Large file tests are off by default but can be turned on with + ./configure or by setting an environment + variable before running the test suite. See + README for details. + + + + + When qpdf's test suite fails, failures are not printed to the + terminal anymore by default. Instead, find them in + build/qtest.log. For packagers who are + building with an autobuilder, you can add the + option to + ./configure to restore the old behavior. + + + + + + + + + 2.3.1: December 28, 2011 + + + + + Fix thread-safety problem resulting from non-thread-safe use + of the PCRE library. + + + + + Made a few minor documentation fixes. + + + + + Add workaround for a bug that appears in some versions of + ghostscript to the test suite + + + + + Fix minor build issue for Visual C++ 2010. + + + + + + + 2.3.0: August 11, 2011 + + + + + Bug fix: when preserving existing encryption on encrypted + files with cleartext metadata, older qpdf versions would + generate password-protected files with no valid password. + This operation now works. This bug only affected files + created by copying existing encryption parameters; explicit + encryption with specification of cleartext metadata worked + before and continues to work. + + + + + Enhance QPDFWriter with a new + constructor that allows you to delay the specification of the + output file. When using this constructor, you may now call + QPDFWriter::setOutputFilename to specify + the output file, or you may use + QPDFWriter::setOutputMemory to cause + QPDFWriter to write the resulting PDF + file to a memory buffer. You may then use + QPDFWriter::getBuffer to retrieve the + memory buffer. + + + + + Add new API call QPDF::replaceObject for + replacing objects by object ID + + + + + Add new API call QPDF::swapObjects for + swapping two objects by object ID + + + + + Add QPDFObjectHandle::getDictAsMap and + QPDFObjectHandle::getArrayAsVector to + allow retrieval of dictionary objects as maps and array + objects as vectors. + + + + + Add functions qpdf_get_info_key and + qpdf_set_info_key to the C API for + manipulating string fields of the document's + /Info dictionary. + + + + + Add functions qpdf_init_write_memory, + qpdf_get_buffer_length, and + qpdf_get_buffer to the C API for writing + PDF files to a memory buffer instead of a file. + + + + + + + + + 2.2.4: June 25, 2011 + + + + + Fix installation and compilation issues; no functionality + changes. + + + + + + + 2.2.3: April 30, 2011 + + + + + Handle some damaged streams with incorrect characters + following the stream keyword. + + + + + Improve handling of inline images when normalizing content + streams. + + + + + Enhance error recovery to properly handle files that use + object 0 as a regular object, which is specifically disallowed + by the spec. + + + + + + + 2.2.2: October 4, 2010 + + + + + Add new function qpdf_read_memory + to the C API to call + QPDF::processMemoryFile. This was an + omission in qpdf 2.2.1. + + + + + + + 2.2.1: October 1, 2010 + + + + + Add new method QPDF::setOutputStreams + to replace std::cout and + std::cerr with other streams for generation + of diagnostic messages and error messages. This can be useful + for GUIs or other applications that want to capture any output + generated by the library to present to the user in some other + way. Note that QPDF does not write to + std::cout (or the specified output stream) + except where explicitly mentioned in + QPDF.hh, and that the only use of the + error stream is for warnings. Note also that output of + warnings is suppressed when + setSuppressWarnings(true) is called. + + + + + Add new method QPDF::processMemoryFile + for operating on PDF files that are loaded into memory rather + than in a file on disk. + + + + + Give a warning but otherwise ignore empty PDF objects by + treating them as null. Empty object are not permitted by the + PDF specification but have been known to appear in some actual + PDF files. + + + + + Handle inline image filter abbreviations when the appear as + stream filter abbreviations. The PDF specification does not + allow use of stream filter abbreviations in this way, but + Adobe Reader and some other PDF readers accept them since they + sometimes appear incorrectly in actual PDF files. + + + + + Implement miscellaneous enhancements to + PointerHolder and + Buffer to support other changes. + + + + + + + 2.2.0: August 14, 2010 + + + + + Add new methods to QPDFObjectHandle + (newStream and + replaceStreamData for creating new + streams and replacing stream data. This makes it possible to + perform a wide range of operations that were not previously + possible. + + + + + Add new helper method in + QPDFObjectHandle + (addPageContents) for appending or + prepending new content streams to a page. This method makes + it possible to manipulate content streams without having to be + concerned whether a page's contents are a single stream or an + array of streams. + + + + + Add new method in QPDFObjectHandle: + replaceOrRemoveKey, which replaces a + dictionary key + with a given value unless the value is null, in which case it + removes the key instead. + + + + + Add new method in QPDFObjectHandle: + getRawStreamData, which returns the raw + (unfiltered) stream data into a buffer. This complements the + getStreamData method, which returns the + filtered (uncompressed) stream data and can only be used when + the stream's data is filterable. + + + + + Provide two new examples: + pdf-double-page-size and + pdf-invert-images that illustrate the newly + added interfaces. + + + + + Fix a memory leak that would cause loss of a few bytes for + every object involved in a cycle of object references. Thanks + to Jian Ma for calling my attention to the leak. + + + + + + + 2.1.5: April 25, 2010 + + + + + Remove restriction of file identifier strings to 16 bytes. + This unnecessary restriction was preventing qpdf from being + able to encrypt or decrypt files with identifier strings that + were not exactly 16 bytes long. The specification imposes no + such restriction. + + + + + + + 2.1.4: April 18, 2010 + + + + + Apply the same padding calculation fix from version 2.1.2 to + the main cross reference stream as well. + + + + + Since qpdf --check only performs limited + checks, clarify the output to make it clear that there still + may be errors that qpdf can't check. This should make it less + surprising to people when another PDF reader is unable to read + a file that qpdf thinks is okay. + + + + + + + 2.1.3: March 27, 2010 + + + + + Fix bug that could cause a failure when rewriting PDF files + that contain object streams with unreferenced objects that in + turn reference indirect scalars. + + + + + Don't complain about (invalid) AES streams that aren't a + multiple of 16 bytes. Instead, pad them before decrypting. + + + + + + + 2.1.2: January 24, 2010 + + + + + Fix bug in padding around first half cross reference stream in + linearized files. The bug could cause an assertion failure + when linearizing certain unlucky files. + + + + + + + 2.1.1: December 14, 2009 + + + + + No changes in functionality; insert missing include in an + internal library header file to support gcc 4.4, and update + test suite to ignore broken Adobe Reader installations. + + + + + + + 2.1: October 30, 2009 + + + + + This is the first version of qpdf to include Windows support. + On Windows, it is possible to build a DLL. Additionally, a + partial C-language API has been introduced, which makes it + possible to call qpdf functions from non-C++ environments. I + am very grateful to Zarko Gagic (http://delphi.about.com/) + for tirelessly testing numerous pre-release versions of this + DLL and providing many excellent suggestions on improving the + interface. + + + For programming to the C interface, please see the header file + qpdf/qpdf-c.h and the example + examples/pdf-linearize.c. + + + + + Zarko Gajic has written a Delphi wrapper for qpdf, which can + be downloaded from qpdf's download side. Zarko's Delphi + wrapper is released with the same licensing terms as qpdf + itself and comes with this disclaimer: “Delphi wrapper + unit qpdf.pas created by Zarko Gajic + (http://delphi.about.com/). + Use at your own risk and for whatever purpose you want. No + support is provided. Sample code is provided.” + + + + + Support has been added for AES encryption and crypt filters. + Although qpdf does not presently support files that use + PKI-based encryption, with the addition of AES and crypt + filters, qpdf is now be able to open most encrypted files + created with newer versions of Acrobat or other PDF creation + software. Note that I have not been able to get very many + files encrypted in this way, so it's possible there could + still be some cases that qpdf can't handle. Please report + them if you find them. + + + + + Many error messages have been improved to include more + information in hopes of making qpdf a more useful tool for PDF + experts to use in manually recovering damaged PDF files. + + + + + Attempt to avoid compressing metadata streams if possible. + This is consistent with other PDF creation applications. + + + + + Provide new command-line options for AES encrypt, cleartext + metadata, and setting the minimum and forced PDF versions of + output files. + + + + + Add additional methods to the QPDF + object for querying the document's permissions. Although qpdf + does not enforce these permissions, it does make them + available so that applications that use qpdf can enforce + permissions. + + + + + The option to qpdf + has been extended to include some additional information. + + + + + There have been a handful of non-compatible API changes. For + details, see . + + + + + + + 2.0.6: May 3, 2009 + + + + + Do not attempt to uncompress streams that have decode + parameters we don't recognize. Earlier versions of qpdf would + have rejected files with such streams. + + + + + + + 2.0.5: March 10, 2009 + + + + + Improve error handling in the LZW decoder, and fix a small + error introduced in the previous version with regard to + handling full tables. The LZW decoder has been more strongly + verified in this release. + + + + + + + 2.0.4: February 21, 2009 + + + + + Include proper support for LZW streams encoded without the + “early code change” flag. Special thanks to Atom + Smasher who reported the problem and provided an input file + compressed in this way, which I did not previously have. + + + + + Implement some improvements to file recovery logic. + + + + + + + 2.0.3: February 15, 2009 + + + + + Compile cleanly with gcc 4.4. + + + + + Handle strings encoded as UTF-16BE properly. + + + + + + + 2.0.2: June 30, 2008 + + + + + Update test suite to work properly with a + non-bash /bin/sh and + with Perl 5.10. No changes were made to the actual qpdf + source code itself for this release. + + + + + + + 2.0.1: May 6, 2008 + + + + + No changes in functionality or interface. This release + includes fixes to the source code so that qpdf compiles + properly and passes its test suite on a broader range of + platforms. See ChangeLog in the source + distribution for details. + + + + + + + 2.0: April 29, 2008 + + + + + First public release. + + + + + + + + + Upgrading from 2.0 to 2.1 + + Although, as a general rule, we like to avoid introducing + source-level incompatibilities in qpdf's interface, there were a + few non-compatible changes made in this version. A considerable + amount of source code that uses qpdf will probably compile without + any changes, but in some cases, you may have to update your code. + The changes are enumerated here. There are also some new + interfaces; for those, please refer to the header files. + + + + + QPDF's exception handling mechanism now uses + std::logic_error for internal errors and + std::runtime_error for runtime errors in + favor of the now removed QEXC classes used + in previous versions. The QEXC exception + classes predated the addition of the + <stdexcept> header file to the C++ + standard library. Most of the exceptions thrown by the qpdf + library itself are still of type QPDFExc + which is now derived from + std::runtime_error. Programs that caught + an instance of std::exception and + displayed it by calling the what() method + will not need to be changed. + + + + + The QPDFExc class now internally + represents various fields of the error condition and provides + interfaces for querying them. Among the fields is a numeric + error code that can help applications act differently on (a small + number of) different error conditions. See + QPDFExc.hh for details. + + + + + Warnings can be retrieved from qpdf as instances of + QPDFExc instead of strings. + + + + + The nested QPDF::EncryptionData class's + constructor takes an additional argument. This class is + primarily intended to be used by + QPDFWriter. There's not really anything + useful an end-user application could do with it. It probably + shouldn't really be part of the public interface to begin with. + Likewise, some of the methods for computing internal encryption + dictionary parameters have changed to support + /R=4 encryption. + + + + + The method QPDF::getUserPassword has been + removed since it didn't do what people would think it did. There + are now two new methods: + QPDF::getPaddedUserPassword and + QPDF::getTrimmedUserPassword. The first one + does what the old QPDF::getUserPassword + method used to do, which is to return the password with possible + binary padding as specified by the PDF specification. The second + one returns a human-readable password string. + + + + + The enumerated types that used to be nested in + QPDFWriter have moved to top-level + enumerated types and are now defined in the file + qpdf/Constants.h. This enables them to be + shared by both the C and C++ interfaces. + + + + + + Upgrading to 3.0 + + For the most part, the API for qpdf version 3.0 is backward + compatible with versions 2.1 and later. There are two exceptions: + + + + The method + QPDFObjectHandle::replaceStreamData that + uses a StreamDataProvider to provide the + stream data no longer takes a length + parameter. While it would have been easy enough to keep the + parameter for backward compatibility, in this case, the + parameter was removed since this provides the user an + opportunity to simplify the calling code. This method was + introduced in version 2.2. At the time, the + length parameter was required in order to + ensure that calls to the stream data provider returned the same + length for a specific stream every time they were invoked. In + particular, the linearization code depends on this. Instead, + qpdf 3.0 and newer check for that constraint explicitly. The + first time the stream data provider is called for a specific + stream, the actual length is saved, and subsequent calls are + required to return the same number of bytes. This means the + calling code no longer has to compute the length in advance, + which can be a significant simplification. If your code fails + to compile because of the extra argument and you don't want to + make other changes to your code, just omit the argument. + + + + + Many methods take long long instead of other + integer types. Most if not all existing code should compile + fine with this change since such parameters had always + previously been smaller types. This change was required to + support files larger than two gigabytes in size. + + + + + + diff --git a/manual/qpdf.1.in b/manual/qpdf.1.in new file mode 100644 index 0000000..3ecec56 --- /dev/null +++ b/manual/qpdf.1.in @@ -0,0 +1,19 @@ +\" This file is not processed by autoconf, but rather by build.mk in +\" the manual directory. +.TH QPDF "1" "April 2008" "qpdf version @PACKAGE_VERSION@" "User Commands" +.SH NAME +qpdf \- PDF transformation software +.SH SYNOPSIS +.B qpdf +[ \fIoptions \fR] \fIinfilename [ outfilename ]\fR +.SH DESCRIPTION +The qpdf program is used to convert one PDF file to another equivalent +PDF file. It is capable of performing a variety of transformations +such as linearization (also known as web optimization or fast web +viewing), encryption, and decryption of PDF files. It also has many +options for inspecting or checking PDF files, some of which are +useful primarily to PDF developers. +.PP +For a summary of qpdf's options, please run +\fBqpdf --help\fR. A complete manual can be found in +@docdir@/qpdf-manual.html or @docdir@/qpdf-manual.pdf. diff --git a/manual/zlib-flate.1.in b/manual/zlib-flate.1.in new file mode 100644 index 0000000..e74eb3f --- /dev/null +++ b/manual/zlib-flate.1.in @@ -0,0 +1,26 @@ +\" This file is not processed by autoconf, but rather by build.mk in +\" the manual directory. +.TH ZLIB-FLATE "1" "April 2008" "zlib-flate from qpdf version @PACKAGE_VERSION@" "User Commands" +.SH NAME +zlib-flate \- raw zlib compression program +.SH SYNOPSIS +.B zlib-flate +\fI-compress | -uncompress\fR +.SH DESCRIPTION +The zlib-flate program is part of the qpdf package. +.PP +The zlib-flate program reads from standard input and writes to +standard output either compressing or uncompressing its input using raw +zlib compression. It can be used to uncompress or compress raw PDF +streams or other data that is compressed with raw zlib compression. +This program is provided primarily as a debugging tool, though it +could be used for other purposes, such as being called from a script +that creates simple PDF files. +.PP +This program should not be used as a general purpose compression +tool. Use something like gzip(1) instead. +.PP +For details about qpdf, please see the qpdf manual, which can be found +in @docdir@/qpdf-manual.html or @docdir@/qpdf-manual.pdf. +.SH "SEE ALSO" +qpdf(1), gzip(1) diff --git a/mkinstalldirs b/mkinstalldirs new file mode 100755 index 0000000..4191a45 --- /dev/null +++ b/mkinstalldirs @@ -0,0 +1,162 @@ +#! /bin/sh +# mkinstalldirs --- make directory hierarchy + +scriptversion=2009-04-28.21; # UTC + +# Original author: Noah Friedman +# Created: 1993-05-16 +# Public domain. +# +# This file is maintained in Automake, please report +# bugs to or send patches to +# . + +nl=' +' +IFS=" "" $nl" +errstatus=0 +dirmode= + +usage="\ +Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ... + +Create each directory DIR (with mode MODE, if specified), including all +leading file name components. + +Report bugs to ." + +# process command line arguments +while test $# -gt 0 ; do + case $1 in + -h | --help | --h*) # -h for help + echo "$usage" + exit $? + ;; + -m) # -m PERM arg + shift + test $# -eq 0 && { echo "$usage" 1>&2; exit 1; } + dirmode=$1 + shift + ;; + --version) + echo "$0 $scriptversion" + exit $? + ;; + --) # stop option processing + shift + break + ;; + -*) # unknown option + echo "$usage" 1>&2 + exit 1 + ;; + *) # first non-opt arg + break + ;; + esac +done + +for file +do + if test -d "$file"; then + shift + else + break + fi +done + +case $# in + 0) exit 0 ;; +esac + +# Solaris 8's mkdir -p isn't thread-safe. If you mkdir -p a/b and +# mkdir -p a/c at the same time, both will detect that a is missing, +# one will create a, then the other will try to create a and die with +# a "File exists" error. This is a problem when calling mkinstalldirs +# from a parallel make. We use --version in the probe to restrict +# ourselves to GNU mkdir, which is thread-safe. +case $dirmode in + '') + if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then + echo "mkdir -p -- $*" + exec mkdir -p -- "$@" + else + # On NextStep and OpenStep, the `mkdir' command does not + # recognize any option. It will interpret all options as + # directories to create, and then abort because `.' already + # exists. + test -d ./-p && rmdir ./-p + test -d ./--version && rmdir ./--version + fi + ;; + *) + if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 && + test ! -d ./--version; then + echo "mkdir -m $dirmode -p -- $*" + exec mkdir -m "$dirmode" -p -- "$@" + else + # Clean up after NextStep and OpenStep mkdir. + for d in ./-m ./-p ./--version "./$dirmode"; + do + test -d $d && rmdir $d + done + fi + ;; +esac + +for file +do + case $file in + /*) pathcomp=/ ;; + *) pathcomp= ;; + esac + oIFS=$IFS + IFS=/ + set fnord $file + shift + IFS=$oIFS + + for d + do + test "x$d" = x && continue + + pathcomp=$pathcomp$d + case $pathcomp in + -*) pathcomp=./$pathcomp ;; + esac + + if test ! -d "$pathcomp"; then + echo "mkdir $pathcomp" + + mkdir "$pathcomp" || lasterr=$? + + if test ! -d "$pathcomp"; then + errstatus=$lasterr + else + if test ! -z "$dirmode"; then + echo "chmod $dirmode $pathcomp" + lasterr= + chmod "$dirmode" "$pathcomp" || lasterr=$? + + if test ! -z "$lasterr"; then + errstatus=$lasterr + fi + fi + fi + fi + + pathcomp=$pathcomp/ + done +done + +exit $errstatus + +# Local Variables: +# mode: shell-script +# sh-indentation: 2 +# eval: (add-hook 'write-file-hooks 'time-stamp) +# time-stamp-start: "scriptversion=" +# time-stamp-format: "%:y-%02m-%02d.%02H" +# time-stamp-time-zone: "UTC" +# time-stamp-end: "; # UTC" +# End: diff --git a/packaging/qpdf.spec b/packaging/qpdf.spec new file mode 100644 index 0000000..a9c20c3 --- /dev/null +++ b/packaging/qpdf.spec @@ -0,0 +1,105 @@ +%define _unpackaged_files_terminate_build 0 + +Summary: Command-line tools and library for transforming PDF files +Name: qpdf +Version: 3.0.2 +Release: 2 +License: Artistic +Group: System Environment/Libraries +URL: http://qpdf.sourceforge.net/ +Source: %{name}-%{version}.tar.gz +Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root +BuildRequires: zlib-devel +BuildRequires: libpcre-devel +#BuildRequires: pcre + +%description +QPDF is a program that does structural, content-preserving +transformations on PDF files. It could have been called something +like pdf-to-pdf. It also provides many useful capabilities to +developers of PDF-producing software or for people who just want to +look at the innards of a PDF file to learn more about how they work. + +QPDF offers many capabilities such as linearization (web +optimization), encrypt, and decription of PDF files. Note that QPDF +does not have the capability to create PDF files from scratch; it is +only used to create PDF files with special characteristics starting +from other PDF files or to inspect or extract information from +existing PDF files. + +%package devel +Summary: Development files for qpdf PDF manipulation library +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} zlib-devel libpcre-devel + +%description devel +The qpdf-devel package contains header files and libraries necessary +for developing programs using the qpdf library. + +%package static +Summary: Static QPDF library +Group: Development/Libraries +Requires: %{name}-devel = %{version}-%{release} + +%description static +The qpdf-static package contains the static qpdf library. + +%prep +%setup -q + +%build +./autogen.sh +%configure --without-docdir +# --docdir='${datarootdir}'/doc/%{name}-%{version} + +make %{?_smp_mflags} +make check + +%install +rm -rf $RPM_BUILD_ROOT +%makeinstall +# %doc below clobbers our docdir, so we have to copy it to a safe +# place so we can install it using %doc. We should still set docdir +# properly when configuring so that it gets substituted properly by +# autoconf. +#cp -a $RPM_BUILD_ROOT%{_datadir}/doc/%{name}-%{version} install-docs +#mkdir -p install-examples/examples +#cp -p examples/*.cc examples/*.c install-examples/examples +# Red Hat doesn't ship .la files. +#rm -f $RPM_BUILD_ROOT%{_libdir}/libqpdf.la + +mkdir -p %{buildroot}/usr/share/license +cp %{_builddir}/%{buildsubdir}/Artistic-2.0 %{buildroot}/usr/share/license/%{name} + +%post +/sbin/ldconfig + +%postun +/sbin/ldconfig + +%files +%manifest qpdf.manifest +%defattr(-,root,root) +#README TODO Artistic-2.0 install-docs/* +/usr/share/license/%{name} +%exclude %{_bindir}/* +%{_libdir}/libqpdf*.so.* +%exclude %{_mandir}/man1/* + +%files devel +%defattr(-,root,root) +#install-examples/examples +%{_includedir}/* +%{_libdir}/libqpdf*.so +%{_libdir}/pkgconfig + +%files static +%defattr(-,root,root) +%{_libdir}/libqpdf*.a + +%clean +rm -rf $RPM_BUILD_ROOT + +%changelog +* Mon Apr 28 2008 Jay Berkenbilt - 2.0-1 +- Initial packaging diff --git a/qpdf.manifest b/qpdf.manifest new file mode 100644 index 0000000..81ace0c --- /dev/null +++ b/qpdf.manifest @@ -0,0 +1,6 @@ + + + + + + diff --git a/qpdf.spec b/qpdf.spec new file mode 100644 index 0000000..3f32939 --- /dev/null +++ b/qpdf.spec @@ -0,0 +1,94 @@ +Summary: Command-line tools and library for transforming PDF files +Name: qpdf +Version: 3.0.2 +Release: 1%{?dist} +License: Artistic +Group: System Environment/Libraries +URL: http://qpdf.sourceforge.net/ + +Source: %{name}-%{version}.tar.gz + +Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root +BuildRequires: zlib-devel +BuildRequires: pcre-devel + +%description +QPDF is a program that does structural, content-preserving +transformations on PDF files. It could have been called something +like pdf-to-pdf. It also provides many useful capabilities to +developers of PDF-producing software or for people who just want to +look at the innards of a PDF file to learn more about how they work. + +QPDF offers many capabilities such as linearization (web +optimization), encrypt, and decription of PDF files. Note that QPDF +does not have the capability to create PDF files from scratch; it is +only used to create PDF files with special characteristics starting +from other PDF files or to inspect or extract information from +existing PDF files. + +%package devel +Summary: Development files for qpdf PDF manipulation library +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} zlib-devel pcre-devel + +%description devel +The qpdf-devel package contains header files and libraries necessary +for developing programs using the qpdf library. + +%package static +Summary: Static QPDF library +Group: Development/Libraries +Requires: %{name}-devel = %{version}-%{release} + +%description static +The qpdf-static package contains the static qpdf library. + +%prep +%setup -q + +%build +%configure --disable-test-compare-images --docdir='${datarootdir}'/doc/%{name}-%{version} +make %{?_smp_mflags} +make check + +%install +rm -rf $RPM_BUILD_ROOT +%makeinstall +# %doc below clobbers our docdir, so we have to copy it to a safe +# place so we can install it using %doc. We should still set docdir +# properly when configuring so that it gets substituted properly by +# autoconf. +cp -a $RPM_BUILD_ROOT%{_datadir}/doc/%{name}-%{version} install-docs +mkdir -p install-examples/examples +cp -p examples/*.cc examples/*.c install-examples/examples +# Red Hat doesn't ship .la files. +rm -f $RPM_BUILD_ROOT%{_libdir}/libqpdf.la + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files +%defattr(-,root,root) +%doc README TODO Artistic-2.0 install-docs/* +%{_bindir}/* +%{_libdir}/libqpdf*.so.* +%{_mandir}/man1/* + +%files devel +%defattr(-,root,root) +%doc install-examples/examples +%{_includedir}/* +%{_libdir}/libqpdf*.so +%{_libdir}/pkgconfig + +%files static +%defattr(-,root,root) +%{_libdir}/libqpdf*.a + +%clean +rm -rf $RPM_BUILD_ROOT + +%changelog +* Mon Apr 28 2008 Jay Berkenbilt - 2.0-1 +- Initial packaging diff --git a/qpdf/Makefile b/qpdf/Makefile new file mode 100644 index 0000000..9089905 --- /dev/null +++ b/qpdf/Makefile @@ -0,0 +1 @@ +include ../make/proxy.mk diff --git a/qpdf/build.mk b/qpdf/build.mk new file mode 100644 index 0000000..e3d5097 --- /dev/null +++ b/qpdf/build.mk @@ -0,0 +1,33 @@ +BINS_qpdf = qpdf test_driver pdf_from_scratch test_large_file +CBINS_qpdf = qpdf-ctest + +TARGETS_qpdf = $(foreach B,$(BINS_qpdf) $(CBINS_qpdf),qpdf/$(OUTPUT_DIR)/$(call binname,$(B))) + +$(TARGETS_qpdf): $(TARGETS_libqpdf) + +INCLUDES_qpdf = include + +TC_SRCS_qpdf = $(wildcard libqpdf/*.cc) $(wildcard qpdf/*.cc) + +# ----- + +$(foreach B,$(BINS_qpdf),$(eval \ + OBJS_$(B) = $(call src_to_obj,qpdf/$(B).cc))) +$(foreach B,$(CBINS_qpdf),$(eval \ + OBJS_$(B) = $(call c_src_to_obj,qpdf/$(B).c))) + +ifeq ($(GENDEPS),1) +-include $(foreach B,$(BINS_qpdf) $(CBINS_qpdf),$(call obj_to_dep,$(OBJS_$(B)))) +endif + +$(foreach B,$(BINS_qpdf),$(eval \ + $(OBJS_$(B)): qpdf/$(OUTPUT_DIR)/%.$(OBJ): qpdf/$(B).cc ; \ + $(call compile,qpdf/$(B).cc,$(INCLUDES_qpdf)))) + +$(foreach B,$(CBINS_qpdf),$(eval \ + $(OBJS_$(B)): qpdf/$(OUTPUT_DIR)/%.$(OBJ): qpdf/$(B).c ; \ + $(call c_compile,qpdf/$(B).c,$(INCLUDES_qpdf)))) + +$(foreach B,$(BINS_qpdf) $(CBINS_qpdf),$(eval \ + qpdf/$(OUTPUT_DIR)/$(call binname,$(B)): $(OBJS_$(B)) ; \ + $(call makebin,$(OBJS_$(B)),$$@,$(LDFLAGS) $(LDFLAGS_libqpdf),$(LIBS_libqpdf) $(LIBS)))) diff --git a/qpdf/fix-qdf b/qpdf/fix-qdf new file mode 100755 index 0000000..b0e56e1 --- /dev/null +++ b/qpdf/fix-qdf @@ -0,0 +1,373 @@ +#!/usr/bin/env perl + +require 5.008_001; +use warnings; +use strict; +use File::Basename; + +my $whoami = basename($0); +my $dirname = dirname($0); + +if ((@ARGV == 1) && ($ARGV[0] eq '--version')) +{ + exec "$dirname/qpdf", '--version'; + exit 2; +} + +my $offset = 0; +my $last_offset = 0; + +my $file = shift(@ARGV); +if (defined $file) +{ + open(F, "<$file") or die "$whoami: can't open $file: $!\n"; +} +else +{ + $file = 'stdin'; + open(F, "<&STDIN") or die "$whoami: can't dup stdin: $!\n"; +} +binmode F; +binmode STDOUT; + +my $line = get_line(); +if (! ((defined $line) && ($line =~ m/^%PDF-1\.\d+\b/))) +{ + die "$whoami: $file: not a pdf file\n"; +} +print $line; +$line = get_line(); +die "$whoami: $file: premature EOF\n" unless defined $line; +print $line; +$line = get_line(); +if (! ((defined $line) && ($line =~ m/^%QDF-1.\d+\b/))) +{ + die "$whoami: $file: not a qdf file\n"; +} +print $line; + +my $last_obj = 0; +my @xref = (); + +my $stream_start = 0; +my $stream_length = 0; +my $xref_offset = 0; +my $xref_f1_nbytes = 0; +my $xref_size = 0; + +my $cur_state = 0; +my $st_top = ++$cur_state; +my $st_in_obj = ++$cur_state; +my $st_in_stream = ++$cur_state; +my $st_after_stream = ++$cur_state; +my $st_in_ostream_dict = ++$cur_state; +my $st_in_ostream_offsets = ++$cur_state; +my $st_in_ostream_outer = ++$cur_state; +my $st_in_ostream_obj = ++$cur_state; +my $st_in_xref_stream_dict = ++$cur_state; +my $st_in_length = ++$cur_state; +my $st_at_xref = ++$cur_state; +my $st_before_trailer = ++$cur_state; +my $st_in_trailer = ++$cur_state; +my $st_done = ++$cur_state; + +my @ostream = (); +my @ostream_offsets = (); +my @ostream_discarded = (); +my $ostream_idx = 0; +my $ostream_id = 0; +my $ostream_extends = ""; + +my $state = $st_top; +while (defined($line = get_line())) +{ + if ($state == $st_top) + { + if ($line =~ m/^(\d+) 0 obj$/) + { + check_obj_id($1); + $state = $st_in_obj; + } + elsif ($line =~ m/^xref$/) + { + $xref_offset = $last_offset; + $state = $st_at_xref; + } + print $line; + } + elsif ($state == $st_in_obj) + { + print $line; + if ($line =~ m/^stream$/) + { + $state = $st_in_stream; + $stream_start = $offset; + } + elsif ($line =~ m/^endobj$/) + { + $state = $st_top; + } + elsif ($line =~ m,/Type /ObjStm,) + { + $state = $st_in_ostream_dict; + $ostream_id = $last_obj; + } + elsif ($line =~ m,/Type /XRef,) + { + $xref_offset = $xref[-1][1]; + $xref_f1_nbytes = 0; + my $t = $xref_offset; + while ($t) + { + $t >>= 8; + ++$xref_f1_nbytes; + } + my $esize = $xref_f1_nbytes + 2; + $xref_size = 1 + @xref; + my $length = $xref_size * $esize; + print " /Length $length\n"; + print " /W [ 1 $xref_f1_nbytes 1 ]\n"; + $state = $st_in_xref_stream_dict; + } + } + elsif ($state == $st_in_ostream_dict) + { + if ($line =~ m/^stream/) + { + $state = $st_in_ostream_offsets; + } + else + { + push(@ostream_discarded, $line); + if ($line =~ m,/Extends (\d+ 0 R),) + { + $ostream_extends = $1; + } + } + # discard line + } + elsif ($state == $st_in_ostream_offsets) + { + if ($line =~ m/^\%\% Object stream: object (\d+)/) + { + check_obj_id($1); + $stream_start = $last_offset; + $state = $st_in_ostream_outer; + push(@ostream, $line); + } + else + { + push(@ostream_discarded, $line); + } + # discard line + } + elsif ($state == $st_in_ostream_outer) + { + adjust_ostream_xref(); + push(@ostream_offsets, $last_offset - $stream_start); + $state = $st_in_ostream_obj; + push(@ostream, $line); + } + elsif ($state == $st_in_ostream_obj) + { + push(@ostream, $line); + if ($line =~ m/^\%\% Object stream: object (\d+)/) + { + check_obj_id($1); + $state = $st_in_ostream_outer; + } + elsif ($line =~ m/^endstream/) + { + $stream_length = $last_offset - $stream_start; + write_ostream(); + $state = $st_in_obj; + } + } + elsif ($state == $st_in_xref_stream_dict) + { + if ($line =~ m,/(Length|W) ,) + { + # already printed + } + elsif ($line =~ m,/Size ,) + { + my $size = 1 + @xref; + print " /Size $xref_size\n"; + } + else + { + print $line; + } + if ($line =~ m/^stream\n/) + { + my $pack = "(C C$xref_f1_nbytes C)"; + print pack($pack, 0, 0, 0); + foreach my $x (@xref) + { + my ($type, $f1, $f2) = @$x; + $f2 = 0 unless defined $f2; + my @f1 = (); + for (my $i = 0; $i < $xref_f1_nbytes; ++$i) + { + unshift(@f1, $f1 & 0xff); + $f1 >>= 8; + } + print pack($pack, $type, @f1, $f2); + } + print "\nendstream\nendobj\n\n"; + print "startxref\n$xref_offset\n\%\%EOF\n"; + $state = $st_done; + } + } + elsif ($state == $st_in_stream) + { + if ($line =~ m/^endstream$/) + { + $stream_length = $last_offset - $stream_start; + $state = $st_after_stream; + } + print $line; + } + elsif ($state == $st_after_stream) + { + if ($line =~ m/^\%QDF: ignore_newline$/) + { + --$stream_length; + } + elsif ($line =~ m/^(\d+) 0 obj$/) + { + check_obj_id($1); + $state = $st_in_length; + } + print $line; + } + elsif ($state == $st_in_length) + { + if ($line !~ m/^\d+$/) + { + die "$file:$.: expected integer\n"; + } + my $new = "$stream_length\n"; + $offset -= length($line); + $offset += length($new); + print $new; + $state = $st_top; + } + elsif ($state == $st_at_xref) + { + my $n = scalar(@xref); + print "0 ", $n+1, "\n0000000000 65535 f \n"; + for (@xref) + { + my ($type, $f1, $f2) = @$_; + printf("%010d 00000 n \n", $f1); + } + $state = $st_before_trailer; + } + elsif ($state == $st_before_trailer) + { + if ($line =~ m/^trailer <>$/) + { + print "startxref\n$xref_offset\n\%\%EOF\n"; + $state = $st_done; + } + } + elsif ($state == $st_done) + { + # ignore + } +} + +die "$whoami: $file: premature EOF\n" unless $state == $st_done; + +sub get_line +{ + my $line = scalar(); + if (defined $line) + { + $last_offset = $offset; + $offset += length($line); + } + $line; +} + +sub check_obj_id +{ + my $cur_obj = shift; + if ($cur_obj != $last_obj + 1) + { + die "$file:$.: expected object ", $last_obj + 1, "\n"; + } + $last_obj = $cur_obj; + push(@xref, [1, $last_offset]); +} + +sub adjust_ostream_xref +{ + pop(@xref); + push(@xref, [2, $ostream_id, $ostream_idx++]); +} + +sub write_ostream +{ + my $first = $ostream_offsets[0]; + my $onum = $ostream_id; + my $offsets = ""; + my $n = scalar(@ostream_offsets); + for (@ostream_offsets) + { + $_ -= $first; + ++$onum; + $offsets .= "$onum $_\n"; + } + my $offset_adjust = length($offsets); + $first += length($offsets); + $stream_length += length($offsets); + my $dict_data = ""; + $dict_data .= " /Length $stream_length\n"; + $dict_data .= " /N $n\n"; + $dict_data .= " /First $first\n"; + if ($ostream_extends) + { + $dict_data .= " /Extends $ostream_extends\n"; + } + $dict_data .= ">>\n"; + $offset_adjust += length($dict_data); + print $dict_data; + print "stream\n"; + print $offsets; + foreach (@ostream) + { + print $_; + } + + for (@ostream_discarded) + { + $offset -= length($_); + } + $offset += $offset_adjust; + + $ostream_idx = 0; + $ostream_id = 0; + @ostream = (); + @ostream_offsets = (); + @ostream_discarded = (); + $ostream_extends = ""; +} diff --git a/qpdf/pdf_from_scratch.cc b/qpdf/pdf_from_scratch.cc new file mode 100644 index 0000000..10ef551 --- /dev/null +++ b/qpdf/pdf_from_scratch.cc @@ -0,0 +1,120 @@ +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +static char const* whoami = 0; + +void usage() +{ + std::cerr << "Usage: " << whoami << " n" << std::endl; + exit(2); +} + +static QPDFObjectHandle createPageContents(QPDF& pdf, std::string const& text) +{ + std::string contents = "BT /F1 15 Tf 72 720 Td (" + text + ") Tj ET\n"; + return QPDFObjectHandle::newStream(&pdf, contents); +} + +QPDFObjectHandle newName(std::string const& name) +{ + return QPDFObjectHandle::newName(name); +} + +void runtest(int n) +{ + QPDF pdf; + pdf.emptyPDF(); + if (n == 0) + { + // Create a minimal PDF from scratch. + + QPDFObjectHandle font = pdf.makeIndirectObject( + QPDFObjectHandle::parse("<<" + " /Type /Font" + " /Subtype /Type1" + " /Name /F1" + " /BaseFont /Helvetica" + " /Encoding /WinAnsiEncoding" + ">>")); + + QPDFObjectHandle procset = pdf.makeIndirectObject( + QPDFObjectHandle::parse("[/PDF /Text]")); + + QPDFObjectHandle contents = createPageContents(pdf, "First Page"); + + QPDFObjectHandle mediabox = QPDFObjectHandle::parse("[0 0 612 792]"); + + QPDFObjectHandle rfont = QPDFObjectHandle::newDictionary(); + rfont.replaceKey("/F1", font); + + QPDFObjectHandle resources = QPDFObjectHandle::newDictionary(); + resources.replaceKey("/ProcSet", procset); + resources.replaceKey("/Font", rfont); + + QPDFObjectHandle page = pdf.makeIndirectObject( + QPDFObjectHandle::newDictionary()); + page.replaceKey("/Type", newName("/Page")); + page.replaceKey("/MediaBox", mediabox); + page.replaceKey("/Contents", contents); + page.replaceKey("/Resources", resources); + + pdf.addPage(page, true); + + QPDFWriter w(pdf, "a.pdf"); + w.setStaticID(true); + w.setStreamDataMode(qpdf_s_preserve); + w.write(); + } + else + { + throw std::runtime_error(std::string("invalid test ") + + QUtil::int_to_string(n)); + } + + std::cout << "test " << n << " done" << std::endl; +} + +int main(int argc, char* argv[]) +{ + QUtil::setLineBuf(stdout); + if ((whoami = strrchr(argv[0], '/')) == NULL) + { + whoami = argv[0]; + } + else + { + ++whoami; + } + // For libtool's sake.... + if (strncmp(whoami, "lt-", 3) == 0) + { + whoami += 3; + } + + if (argc != 2) + { + usage(); + } + + try + { + int n = atoi(argv[1]); + runtest(n); + } + catch (std::exception& e) + { + std::cerr << e.what() << std::endl; + exit(2); + } + + return 0; +} diff --git a/qpdf/qpdf-ctest.c b/qpdf/qpdf-ctest.c new file mode 100644 index 0000000..072e5a7 --- /dev/null +++ b/qpdf/qpdf-ctest.c @@ -0,0 +1,447 @@ +#include +#include +#include +#include +#include +#include + +static char* whoami = 0; +static qpdf_data qpdf = 0; + +static void report_errors() +{ + qpdf_error e = 0; + while (qpdf_more_warnings(qpdf)) + { + e = qpdf_next_warning(qpdf); + printf("warning: %s\n", qpdf_get_error_full_text(qpdf, e)); + printf(" code: %d\n", qpdf_get_error_code(qpdf, e)); + printf(" file: %s\n", qpdf_get_error_filename(qpdf, e)); + /* If your compiler doesn't support %lld, change to %ld and + * lose precision in the error message. + */ + printf(" pos : %lld\n", qpdf_get_error_file_position(qpdf, e)); + printf(" text: %s\n", qpdf_get_error_message_detail(qpdf, e)); + } + if (qpdf_has_error(qpdf)) + { + e = qpdf_get_error(qpdf); + assert(qpdf_has_error(qpdf) == QPDF_FALSE); + printf("error: %s\n", qpdf_get_error_full_text(qpdf, e)); + printf(" code: %d\n", qpdf_get_error_code(qpdf, e)); + printf(" file: %s\n", qpdf_get_error_filename(qpdf, e)); + /* see above comment about %lld */ + printf(" pos : %lld\n", qpdf_get_error_file_position(qpdf, e)); + printf(" text: %s\n", qpdf_get_error_message_detail(qpdf, e)); + } + else + { + e = qpdf_get_error(qpdf); + assert(e == 0); + assert(qpdf_get_error_code(qpdf, e) == qpdf_e_success); + // Call these to ensure that they can be called on a null + // error pointer. + (void)qpdf_get_error_full_text(qpdf, e); + (void)qpdf_get_error_filename(qpdf, e); + (void)qpdf_get_error_file_position(qpdf, e); + (void)qpdf_get_error_message_detail(qpdf, e); + } +} + +static void read_file_into_memory(char const* filename, + char** buf, unsigned long* size) +{ + char* buf_p = 0; + FILE* f = NULL; + size_t bytes_read = 0; + size_t len = 0; + + f = fopen(filename, "rb"); + if (f == NULL) + { + fprintf(stderr, "%s: unable to open %s: %s\n", + whoami, filename, strerror(errno)); + exit(2); + } + fseek(f, 0, SEEK_END); + *size = (unsigned long) ftell(f); + fseek(f, 0, SEEK_SET); + *buf = malloc(*size); + if (*buf == NULL) + { + fprintf(stderr, "%s: unable to allocate %lu bytes\n", + whoami, *size); + exit(2); + } + buf_p = *buf; + bytes_read = 0; + len = 0; + while ((len = fread(buf_p + bytes_read, 1, *size - bytes_read, f)) > 0) + { + bytes_read += len; + } + if (bytes_read != *size) + { + if (ferror(f)) + { + fprintf(stderr, "%s: failure reading file %s into memory:", + whoami, filename); + } + else + { + fprintf(stderr, "%s: premature EOF reading file %s:", + whoami, filename); + } + fprintf(stderr, " read %lu, wanted %lu\n", + (unsigned long) bytes_read, (unsigned long) size); + exit(2); + } + fclose(f); +} + +static void test01(char const* infile, + char const* password, + char const* outfile, + char const* outfile2) +{ + qpdf_read(qpdf, infile, password); + printf("version: %s\n", qpdf_get_pdf_version(qpdf)); + printf("linearized: %d\n", qpdf_is_linearized(qpdf)); + printf("encrypted: %d\n", qpdf_is_encrypted(qpdf)); + if (qpdf_is_encrypted(qpdf)) + { + printf("user password: %s\n", qpdf_get_user_password(qpdf)); + printf("extract for accessibility: %d\n", + qpdf_allow_accessibility(qpdf)); + printf("extract for any purpose: %d\n", + qpdf_allow_extract_all(qpdf)); + printf("print low resolution: %d\n", + qpdf_allow_print_low_res(qpdf)); + printf("print high resolution: %d\n", + qpdf_allow_print_high_res(qpdf)); + printf("modify document assembly: %d\n", + qpdf_allow_modify_assembly(qpdf)); + printf("modify forms: %d\n", + qpdf_allow_modify_form(qpdf)); + printf("modify annotations: %d\n", + qpdf_allow_modify_annotation(qpdf)); + printf("modify other: %d\n", + qpdf_allow_modify_other(qpdf)); + printf("modify anything: %d\n", + qpdf_allow_modify_all(qpdf)); + } + report_errors(); +} + +static void test02(char const* infile, + char const* password, + char const* outfile, + char const* outfile2) +{ + qpdf_set_suppress_warnings(qpdf, QPDF_TRUE); + if (((qpdf_read(qpdf, infile, password) & QPDF_ERRORS) == 0) && + ((qpdf_init_write(qpdf, outfile) & QPDF_ERRORS) == 0)) + { + qpdf_set_static_ID(qpdf, QPDF_TRUE); + qpdf_write(qpdf); + } + report_errors(); +} + +static void test03(char const* infile, + char const* password, + char const* outfile, + char const* outfile2) +{ + qpdf_read(qpdf, infile, password); + qpdf_init_write(qpdf, outfile); + qpdf_set_static_ID(qpdf, QPDF_TRUE); + qpdf_set_content_normalization(qpdf, QPDF_TRUE); + qpdf_write(qpdf); + report_errors(); +} + +static void test04(char const* infile, + char const* password, + char const* outfile, + char const* outfile2) +{ + qpdf_set_ignore_xref_streams(qpdf, QPDF_TRUE); + qpdf_read(qpdf, infile, password); + qpdf_init_write(qpdf, outfile); + qpdf_set_static_ID(qpdf, QPDF_TRUE); + qpdf_write(qpdf); + report_errors(); +} + +static void test05(char const* infile, + char const* password, + char const* outfile, + char const* outfile2) +{ + qpdf_read(qpdf, infile, password); + qpdf_init_write(qpdf, outfile); + qpdf_set_static_ID(qpdf, QPDF_TRUE); + qpdf_set_linearization(qpdf, QPDF_TRUE); + qpdf_write(qpdf); + report_errors(); +} + +static void test06(char const* infile, + char const* password, + char const* outfile, + char const* outfile2) +{ + char* buf = NULL; + unsigned long size = 0; + read_file_into_memory(infile, &buf, &size); + qpdf_read_memory(qpdf, infile, buf, size, password); + qpdf_init_write(qpdf, outfile); + qpdf_set_static_ID(qpdf, QPDF_TRUE); + qpdf_set_object_stream_mode(qpdf, qpdf_o_generate); + qpdf_write(qpdf); + report_errors(); +} + +static void test07(char const* infile, + char const* password, + char const* outfile, + char const* outfile2) +{ + qpdf_read(qpdf, infile, password); + qpdf_init_write(qpdf, outfile); + qpdf_set_static_ID(qpdf, QPDF_TRUE); + qpdf_set_qdf_mode(qpdf, QPDF_TRUE); + qpdf_write(qpdf); + report_errors(); +} + +static void test08(char const* infile, + char const* password, + char const* outfile, + char const* outfile2) +{ + qpdf_read(qpdf, infile, password); + qpdf_init_write(qpdf, outfile); + qpdf_set_static_ID(qpdf, QPDF_TRUE); + qpdf_set_qdf_mode(qpdf, QPDF_TRUE); + qpdf_set_suppress_original_object_IDs(qpdf, QPDF_TRUE); + qpdf_write(qpdf); + report_errors(); +} + +static void test09(char const* infile, + char const* password, + char const* outfile, + char const* outfile2) +{ + qpdf_read(qpdf, infile, password); + qpdf_init_write(qpdf, outfile); + qpdf_set_static_ID(qpdf, QPDF_TRUE); + qpdf_set_stream_data_mode(qpdf, qpdf_s_uncompress); + qpdf_write(qpdf); + report_errors(); +} + +static void test10(char const* infile, + char const* password, + char const* outfile, + char const* outfile2) +{ + qpdf_set_attempt_recovery(qpdf, QPDF_FALSE); + qpdf_read(qpdf, infile, password); + report_errors(); +} + +static void test11(char const* infile, + char const* password, + char const* outfile, + char const* outfile2) +{ + qpdf_read(qpdf, infile, password); + qpdf_init_write(qpdf, outfile); + qpdf_set_static_ID(qpdf, QPDF_TRUE); + qpdf_set_r2_encryption_parameters( + qpdf, "user1", "owner1", QPDF_FALSE, QPDF_TRUE, QPDF_TRUE, QPDF_TRUE); + qpdf_write(qpdf); + report_errors(); +} + +static void test12(char const* infile, + char const* password, + char const* outfile, + char const* outfile2) +{ + qpdf_read(qpdf, infile, password); + qpdf_init_write(qpdf, outfile); + qpdf_set_static_ID(qpdf, QPDF_TRUE); + qpdf_set_r3_encryption_parameters( + qpdf, "user2", "owner2", QPDF_TRUE, QPDF_TRUE, + qpdf_r3p_low, qpdf_r3m_all); + qpdf_write(qpdf); + report_errors(); +} + +static void test13(char const* infile, + char const* password, + char const* outfile, + char const* outfile2) +{ + qpdf_read(qpdf, infile, password); + printf("user password: %s\n", qpdf_get_user_password(qpdf)); + qpdf_init_write(qpdf, outfile); + qpdf_set_static_ID(qpdf, QPDF_TRUE); + qpdf_set_preserve_encryption(qpdf, QPDF_FALSE); + qpdf_write(qpdf); + report_errors(); +} + +static void test14(char const* infile, + char const* password, + char const* outfile, + char const* outfile2) +{ + qpdf_read(qpdf, infile, password); + qpdf_init_write(qpdf, outfile); + qpdf_set_static_ID(qpdf, QPDF_TRUE); + qpdf_set_minimum_pdf_version(qpdf, "1.6"); + qpdf_write(qpdf); + qpdf_init_write(qpdf, outfile2); + qpdf_set_static_ID(qpdf, QPDF_TRUE); + qpdf_force_pdf_version(qpdf, "1.4"); + qpdf_write(qpdf); + report_errors(); +} + +static void test15(char const* infile, + char const* password, + char const* outfile, + char const* outfile2) +{ + qpdf_read(qpdf, infile, password); + qpdf_init_write(qpdf, outfile); + qpdf_set_static_ID(qpdf, QPDF_TRUE); + qpdf_set_static_aes_IV(qpdf, QPDF_TRUE); + qpdf_set_r4_encryption_parameters( + qpdf, "user2", "owner2", QPDF_TRUE, QPDF_TRUE, + qpdf_r3p_low, qpdf_r3m_all, QPDF_TRUE, QPDF_TRUE); + qpdf_write(qpdf); + report_errors(); +} + +static void print_info(char const* key) +{ + char const* value = qpdf_get_info_key(qpdf, key); + printf("Info key %s: %s\n", + key, (value ? value : "(null)")); +} + +static void test16(char const* infile, + char const* password, + char const* outfile, + char const* outfile2) +{ + unsigned long buflen = 0L; + unsigned char const* buf = 0; + FILE* f = 0; + + qpdf_read(qpdf, infile, password); + print_info("/Author"); + print_info("/Producer"); + print_info("/Creator"); + qpdf_set_info_key(qpdf, "/Author", "Mr. Potato Head"); + qpdf_set_info_key(qpdf, "/Producer", "QPDF library"); + qpdf_set_info_key(qpdf, "/Creator", 0); + print_info("/Author"); + print_info("/Producer"); + print_info("/Creator"); + qpdf_init_write_memory(qpdf); + qpdf_set_static_ID(qpdf, QPDF_TRUE); + qpdf_set_static_aes_IV(qpdf, QPDF_TRUE); + qpdf_set_stream_data_mode(qpdf, qpdf_s_uncompress); + qpdf_write(qpdf); + f = fopen(outfile, "wb"); + if (f == NULL) + { + fprintf(stderr, "%s: unable to open %s: %s\n", + whoami, outfile, strerror(errno)); + exit(2); + } + buflen = qpdf_get_buffer_length(qpdf); + buf = qpdf_get_buffer(qpdf); + fwrite(buf, 1, buflen, f); + fclose(f); + report_errors(); +} + +int main(int argc, char* argv[]) +{ + char* p = 0; + int n = 0; + char const* infile = 0; + char const* password = 0; + char const* outfile = 0; + char const* outfile2 = 0; + void (*fn)(char const*, char const*, char const*, char const*) = 0; + + if ((p = strrchr(argv[0], '/')) != NULL) + { + whoami = p + 1; + } + else if ((p = strrchr(argv[0], '\\')) != NULL) + { + whoami = p + 1; + } + else + { + whoami = argv[0]; + } + if ((argc == 2) && (strcmp(argv[1], "--version") == 0)) + { + printf("qpdf-ctest version %s\n", qpdf_get_qpdf_version()); + return 0; + } + + if (argc < 5) + { + fprintf(stderr, "usage: %s n infile password outfile\n", whoami); + exit(2); + } + + n = atoi(argv[1]); + infile = argv[2]; + password = argv[3]; + outfile = argv[4]; + outfile2 = (argc > 5 ? argv[5] : 0); + + fn = ((n == 1) ? test01 : + (n == 2) ? test02 : + (n == 3) ? test03 : + (n == 4) ? test04 : + (n == 5) ? test05 : + (n == 6) ? test06 : + (n == 7) ? test07 : + (n == 8) ? test08 : + (n == 9) ? test09 : + (n == 10) ? test10 : + (n == 11) ? test11 : + (n == 12) ? test12 : + (n == 13) ? test13 : + (n == 14) ? test14 : + (n == 15) ? test15 : + (n == 16) ? test16 : + 0); + + if (fn == 0) + { + fprintf(stderr, "%s: invalid test number %d\n", whoami, n); + exit(2); + } + + qpdf = qpdf_init(); + fn(infile, password, outfile, outfile2); + qpdf_cleanup(&qpdf); + assert(qpdf == 0); + + return 0; +} diff --git a/qpdf/qpdf.cc b/qpdf/qpdf.cc new file mode 100644 index 0000000..2835a96 --- /dev/null +++ b/qpdf/qpdf.cc @@ -0,0 +1,1625 @@ +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include + +#include +#include + +#include + +static int const EXIT_ERROR = 2; +static int const EXIT_WARNING = 3; + +static char const* whoami = 0; + +struct PageSpec +{ + PageSpec(std::string const& filename, + char const* password, + char const* range) : + filename(filename), + password(password), + range(range) + { + } + + std::string filename; + char const* password; + char const* range; +}; + +struct QPDFPageData +{ + QPDFPageData(QPDF* qpdf, char const* range); + + QPDF* qpdf; + std::vector orig_pages; + std::vector selected_pages; +}; + +// Note: let's not be too noisy about documenting the fact that this +// software purposely fails to enforce the distinction between user +// and owner passwords. A user password is sufficient to gain full +// access to the PDF file, so there is nothing this software can do +// with an owner password that it couldn't do with a user password +// other than changing the /P value in the encryption dictionary. +// (Setting this value requires the owner password.) The +// documentation discusses this as well. + +static char const* help = "\ +\n\ +Usage: qpdf [ options ] { infilename | --empty } [ outfilename ]\n\ +\n\ +An option summary appears below. Please see the documentation for details.\n\ +\n\ +Note that when contradictory options are provided, whichever options are\n\ +provided last take precedence.\n\ +\n\ +\n\ +Basic Options\n\ +-------------\n\ +\n\ +--password=password specify a password for accessing encrypted files\n\ +--linearize generated a linearized (web optimized) file\n\ +--copy-encryption=file copy encryption parameters from specified file\n\ +--encryption-file-password=password\n\ + password used to open the file from which encryption\n\ + parameters are being copied\n\ +--encrypt options -- generate an encrypted file\n\ +--decrypt remove any encryption on the file\n\ +--pages options -- select specific pages from one or more files\n\ +\n\ +If none of --copy-encryption, --encrypt or --decrypt are given, qpdf will\n\ +preserve any encryption data associated with a file.\n\ +\n\ +Note that when copying encryption parameters from another file, all\n\ +parameters will be copied, including both user and owner passwords, even\n\ +if the user password is used to open the other file. This works even if\n\ +the owner password is not known.\n\ +\n\ +\n\ +Encryption Options\n\ +------------------\n\ +\n\ + --encrypt user-password owner-password key-length flags --\n\ +\n\ +Note that -- terminates parsing of encryption flags.\n\ +\n\ +Either or both of the user password and the owner password may be\n\ +empty strings.\n\ +\n\ +key-length may be 40 or 128\n\ +\n\ +Additional flags are dependent upon key length.\n\ +\n\ + If 40:\n\ +\n\ + --print=[yn] allow printing\n\ + --modify=[yn] allow document modification\n\ + --extract=[yn] allow text/graphic extraction\n\ + --annotate=[yn] allow comments and form fill-in and signing\n\ +\n\ + If 128:\n\ +\n\ + --accessibility=[yn] allow accessibility to visually impaired\n\ + --extract=[yn] allow other text/graphic extraction\n\ + --print=print-opt control printing access\n\ + --modify=modify-opt control modify access\n\ + --cleartext-metadata prevents encryption of metadata\n\ + --use-aes=[yn] indicates whether to use AES encryption\n\ + --force-V4 forces use of V=4 encryption handler\n\ +\n\ + print-opt may be:\n\ +\n\ + full allow full printing\n\ + low allow only low-resolution printing\n\ + none disallow printing\n\ +\n\ + modify-opt may be:\n\ +\n\ + all allow full document modification\n\ + annotate allow comment authoring and form operations\n\ + form allow form field fill-in and signing\n\ + assembly allow document assembly only\n\ + none allow no modifications\n\ +\n\ +The default for each permission option is to be fully permissive.\n\ +\n\ +Specifying cleartext-metadata forces the PDF version to at least 1.5.\n\ +Specifying use of AES forces the PDF version to at least 1.6. These\n\ +options are both off by default.\n\ +\n\ +The --force-V4 flag forces the V=4 encryption handler introduced in PDF 1.5\n\ +to be used even if not otherwise needed. This option is primarily useful\n\ +for testing qpdf and has no other practical use.\n\ +\n\ +\n\ +Page Selection Options\n\ +----------------------\n\ +\n\ +These options allow pages to be selected from one or more PDF files.\n\ +Whatever file is given as the primary input file is used as the\n\ +starting point, but its pages are replaced with pages as specified.\n\ +\n\ +--pages file [ --password=password ] page-range ... --\n\ +\n\ +For each file that pages should be taken from, specify the file, a\n\ +password needed to open the file (if any), and a page range. The\n\ +password needs to be given only once per file. If any of the input\n\ +files are the same as the primary input file or the file used to copy\n\ +encryption parameters (if specified), you do not need to repeat the\n\ +password here. The same file can be repeated multiple times. All\n\ +non-page data (info, outlines, page numbers, etc. are taken from the\n\ +primary input file. To discard this, use --empty as the primary\n\ +input.\n\ +\n\ +The page range is a set of numbers separated by commas, ranges of\n\ +numbers separated dashes, or combinations of those. The character\n\ +\"z\" represents the last page. Pages can appear in any order. Ranges\n\ +can appear with a high number followed by a low number, which causes the\n\ +pages to appear in reverse. Repeating a number will cause an error, but\n\ +the manual discusses a workaround should you really want to include the\n\ +same page twice.\n\ +\n\ +See the manual for examples and a discussion of additional subtleties.\n\ +\n\ +\n\ +Advanced Transformation Options\n\ +-------------------------------\n\ +\n\ +These transformation options control fine points of how qpdf creates\n\ +the output file. Mostly these are of use only to people who are very\n\ +familiar with the PDF file format or who are PDF developers.\n\ +\n\ +--stream-data=option controls transformation of stream data (below)\n\ +--normalize-content=[yn] enables or disables normalization of content streams\n\ +--suppress-recovery prevents qpdf from attempting to recover damaged files\n\ +--object-streams=mode controls handing of object streams\n\ +--ignore-xref-streams tells qpdf to ignore any cross-reference streams\n\ +--qdf turns on \"QDF mode\" (below)\n\ +--min-version=version sets the minimum PDF version of the output file\n\ +--force-version=version forces this to be the PDF version of the output file\n\ +\n\ +Values for stream data options:\n\ +\n\ + compress recompress stream data when possible (default)\n\ + preserve leave all stream data as is\n\ + uncompress uncompress stream data when possible\n\ +\n\ +Values for object stream mode:\n\ +\n\ + preserve preserve original object streams (default)\n\ + disable don't write any object streams\n\ + generate use object streams wherever possible\n\ +\n\ +In qdf mode, by default, content normalization is turned on, and the\n\ +stream data mode is set to uncompress.\n\ +\n\ +Setting the minimum PDF version of the output file may raise the version\n\ +but will never lower it. Forcing the PDF version of the output file may\n\ +set the PDF version to a lower value than actually allowed by the file's\n\ +contents. You should only do this if you have no other possible way to\n\ +open the file or if you know that the file definitely doesn't include\n\ +features not supported later versions.\n\ +\n\ +Testing, Inspection, and Debugging Options\n\ +------------------------------------------\n\ +\n\ +These options can be useful for digging into PDF files or for use in\n\ +automated test suites for software that uses the qpdf library.\n\ +\n\ +--static-id generate static /ID: FOR TESTING ONLY!\n\ +--static-aes-iv use a static initialization vector for AES-CBC\n\ + This is option is not secure! FOR TESTING ONLY!\n\ +--no-original-object-ids suppress original object ID comments in qdf mode\n\ +--show-encryption quickly show encryption parameters\n\ +--check-linearization check file integrity and linearization status\n\ +--show-linearization check and show all linearization data\n\ +--show-xref show the contents of the cross-reference table\n\ +--show-object=obj[,gen] show the contents of the given object\n\ + --raw-stream-data show raw stream data instead of object contents\n\ + --filtered-stream-data show filtered stream data instead of object contents\n\ +--show-pages shows the object/generation number for each page\n\ + --with-images also shows the object IDs for images on each page\n\ +--check check file structure + encryption, linearization\n\ +\n\ +The --raw-stream-data and --filtered-stream-data options are ignored\n\ +unless --show-object is given. Either of these options will cause the\n\ +stream data to be written to standard output.\n\ +\n\ +If --filtered-stream-data is given and --normalize-content=y is also\n\ +given, qpdf will attempt to normalize the stream data as if it is a\n\ +page content stream. This attempt will be made even if it is not a\n\ +page content stream, in which case it will produce unusable results.\n\ +\n\ +Ordinarily, qpdf exits with a status of 0 on success or a status of 2\n\ +if any errors occurred. In --check mode, if there were warnings but not\n\ +errors, qpdf exits with a status of 3.\n\ +\n"; + +void usage(std::string const& msg) +{ + std::cerr + << std::endl + << whoami << ": " << msg << std::endl + << std::endl + << "Usage: " << whoami << " [options] infile outfile" << std::endl + << "For detailed help, run " << whoami << " --help" << std::endl + << std::endl; + exit(EXIT_ERROR); +} + +static std::string show_bool(bool v) +{ + return v ? "allowed" : "not allowed"; +} + +static std::string show_encryption_method(QPDF::encryption_method_e method) +{ + std::string result = "unknown"; + switch (method) + { + case QPDF::e_none: + result = "none"; + break; + case QPDF::e_unknown: + result = "unknown"; + break; + case QPDF::e_rc4: + result = "RC4"; + break; + case QPDF::e_aes: + result = "AESv2"; + break; + // no default so gcc will warn for missing case + } + return result; +} + +static void show_encryption(QPDF& pdf) +{ + // Extract /P from /Encrypt + int R = 0; + int P = 0; + int V = 0; + QPDF::encryption_method_e stream_method = QPDF::e_unknown; + QPDF::encryption_method_e string_method = QPDF::e_unknown; + QPDF::encryption_method_e file_method = QPDF::e_unknown; + if (! pdf.isEncrypted(R, P, V, + stream_method, string_method, file_method)) + { + std::cout << "File is not encrypted" << std::endl; + } + else + { + std::cout << "R = " << R << std::endl; + std::cout << "P = " << P << std::endl; + std::string user_password = pdf.getTrimmedUserPassword(); + std::cout << "User password = " << user_password << std::endl + << "extract for accessibility: " + << show_bool(pdf.allowAccessibility()) << std::endl + << "extract for any purpose: " + << show_bool(pdf.allowExtractAll()) << std::endl + << "print low resolution: " + << show_bool(pdf.allowPrintLowRes()) << std::endl + << "print high resolution: " + << show_bool(pdf.allowPrintHighRes()) << std::endl + << "modify document assembly: " + << show_bool(pdf.allowModifyAssembly()) << std::endl + << "modify forms: " + << show_bool(pdf.allowModifyForm()) << std::endl + << "modify annotations: " + << show_bool(pdf.allowModifyAnnotation()) << std::endl + << "modify other: " + << show_bool(pdf.allowModifyOther()) << std::endl + << "modify anything: " + << show_bool(pdf.allowModifyAll()) << std::endl; + if (V >= 4) + { + std::cout << "stream encryption method: " + << show_encryption_method(stream_method) << std::endl + << "string encryption method: " + << show_encryption_method(string_method) << std::endl + << "file encryption method: " + << show_encryption_method(file_method) << std::endl; + } + } +} + +static std::vector parse_numrange(char const* range, int max) +{ + std::vector result; + char const* p = range; + try + { + std::vector work; + static int const comma = -1; + static int const dash = -2; + + enum { st_top, + st_in_number, + st_after_number } state = st_top; + bool last_separator_was_dash = false; + int cur_number = 0; + while (*p) + { + char ch = *p; + if (isdigit(ch)) + { + if (! ((state == st_top) || (state == st_in_number))) + { + throw std::runtime_error("digit not expected"); + } + state = st_in_number; + cur_number *= 10; + cur_number += (ch - '0'); + } + else if (ch == 'z') + { + // z represents max + if (! (state == st_top)) + { + throw std::runtime_error("z not expected"); + } + state = st_after_number; + cur_number = max; + } + else if ((ch == ',') || (ch == '-')) + { + if (! ((state == st_in_number) || (state == st_after_number))) + { + throw std::runtime_error("unexpected separator"); + } + work.push_back(cur_number); + cur_number = 0; + if (ch == ',') + { + state = st_top; + last_separator_was_dash = false; + work.push_back(comma); + } + else if (ch == '-') + { + if (last_separator_was_dash) + { + throw std::runtime_error("unexpected dash"); + } + state = st_top; + last_separator_was_dash = true; + work.push_back(dash); + } + } + else + { + throw std::runtime_error("unexpected character"); + } + ++p; + } + if ((state == st_in_number) || (state == st_after_number)) + { + work.push_back(cur_number); + } + else + { + throw std::runtime_error("number expected"); + } + + p = 0; + for (size_t i = 0; i < work.size(); i += 2) + { + int num = work[i]; + if ((num < 1) || (num > max)) + { + throw std::runtime_error( + "number " + QUtil::int_to_string(num) + " out of range"); + } + if (i == 0) + { + result.push_back(work[i]); + } + else + { + int separator = work[i-1]; + if (separator == comma) + { + result.push_back(num); + } + else if (separator == dash) + { + int lastnum = result.back(); + if (num > lastnum) + { + for (int j = lastnum + 1; j <= num; ++j) + { + result.push_back(j); + } + } + else + { + for (int j = lastnum - 1; j >= num; --j) + { + result.push_back(j); + } + } + } + else + { + throw std::logic_error( + "INTERNAL ERROR parsing numeric range"); + } + } + } + } + catch (std::runtime_error e) + { + if (p) + { + usage("error at * in numeric range " + + std::string(range, p - range) + "*" + p + ": " + e.what()); + } + else + { + usage("error in numeric range " + + std::string(range) + ": " + e.what()); + } + } + return result; +} + +static void +parse_encrypt_options( + int argc, char* argv[], int& cur_arg, + std::string& user_password, std::string& owner_password, int& keylen, + bool& r2_print, bool& r2_modify, bool& r2_extract, bool& r2_annotate, + bool& r3_accessibility, bool& r3_extract, + qpdf_r3_print_e& r3_print, qpdf_r3_modify_e& r3_modify, + bool& force_V4, bool& cleartext_metadata, bool& use_aes) +{ + if (cur_arg + 3 >= argc) + { + usage("insufficient arguments to --encrypt"); + } + user_password = argv[cur_arg++]; + owner_password = argv[cur_arg++]; + std::string len_str = argv[cur_arg++]; + if (len_str == "40") + { + keylen = 40; + } + else if (len_str == "128") + { + keylen = 128; + } + else + { + usage("encryption key length must be 40 or 128"); + } + while (1) + { + char* arg = argv[cur_arg]; + if (arg == 0) + { + usage("insufficient arguments to --encrypt"); + } + else if (strcmp(arg, "--") == 0) + { + return; + } + if (arg[0] == '-') + { + ++arg; + if (arg[0] == '-') + { + ++arg; + } + } + else + { + usage(std::string("invalid encryption parameter ") + arg); + } + ++cur_arg; + char* parameter = strchr(arg, '='); + if (parameter) + { + *parameter++ = 0; + } + if (strcmp(arg, "print") == 0) + { + if (parameter == 0) + { + usage("--print must be given as --print=option"); + } + std::string val = parameter; + if (keylen == 40) + { + if (val == "y") + { + r2_print = true; + } + else if (val == "n") + { + r2_print = false; + } + else + { + usage("invalid 40-bit -print parameter"); + } + } + else + { + if (val == "full") + { + r3_print = qpdf_r3p_full; + } + else if (val == "low") + { + r3_print = qpdf_r3p_low; + } + else if (val == "none") + { + r3_print = qpdf_r3p_none; + } + else + { + usage("invalid 128-bit -print parameter"); + } + } + } + else if (strcmp(arg, "modify") == 0) + { + if (parameter == 0) + { + usage("--modify must be given as --modify=option"); + } + std::string val = parameter; + if (keylen == 40) + { + if (val == "y") + { + r2_modify = true; + } + else if (val == "n") + { + r2_modify = false; + } + else + { + usage("invalid 40-bit -modify parameter"); + } + } + else + { + if (val == "all") + { + r3_modify = qpdf_r3m_all; + } + else if (val == "annotate") + { + r3_modify = qpdf_r3m_annotate; + } + else if (val == "form") + { + r3_modify = qpdf_r3m_form; + } + else if (val == "assembly") + { + r3_modify = qpdf_r3m_assembly; + } + else if (val == "none") + { + r3_modify = qpdf_r3m_none; + } + else + { + usage("invalid 128-bit -modify parameter"); + } + } + } + else if (strcmp(arg, "extract") == 0) + { + if (parameter == 0) + { + usage("--extract must be given as --extract=option"); + } + std::string val = parameter; + bool result = false; + if (val == "y") + { + result = true; + } + else if (val == "n") + { + result = false; + } + else + { + usage("invalid -extract parameter"); + } + if (keylen == 40) + { + r2_extract = result; + } + else + { + r3_extract = result; + } + } + else if (strcmp(arg, "annotate") == 0) + { + if (parameter == 0) + { + usage("--annotate must be given as --annotate=option"); + } + std::string val = parameter; + bool result = false; + if (val == "y") + { + result = true; + } + else if (val == "n") + { + result = false; + } + else + { + usage("invalid -annotate parameter"); + } + if (keylen == 40) + { + r2_annotate = result; + } + else + { + usage("-annotate invalid for 128-bit keys"); + } + } + else if (strcmp(arg, "accessibility") == 0) + { + if (parameter == 0) + { + usage("--accessibility must be given as" + " --accessibility=option"); + } + std::string val = parameter; + bool result = false; + if (val == "y") + { + result = true; + } + else if (val == "n") + { + result = false; + } + else + { + usage("invalid -accessibility parameter"); + } + if (keylen == 128) + { + r3_accessibility = result; + } + else + { + usage("-accessibility invalid for 40-bit keys"); + } + } + else if (strcmp(arg, "cleartext-metadata") == 0) + { + if (parameter) + { + usage("--cleartext-metadata does not take a parameter"); + } + if (keylen == 40) + { + usage("--cleartext-metadata is invalid for 40-bit keys"); + } + else + { + cleartext_metadata = true; + } + } + else if (strcmp(arg, "force-V4") == 0) + { + if (parameter) + { + usage("--force-V4 does not take a parameter"); + } + if (keylen == 40) + { + usage("--force-V4 is invalid for 40-bit keys"); + } + else + { + force_V4 = true; + } + } + else if (strcmp(arg, "use-aes") == 0) + { + if (parameter == 0) + { + usage("--use-aes must be given as --extract=option"); + } + std::string val = parameter; + bool result = false; + if (val == "y") + { + result = true; + } + else if (val == "n") + { + result = false; + } + else + { + usage("invalid -use-aes parameter"); + } + if (keylen == 40) + { + usage("use-aes is invalid for 40-bit keys"); + } + else + { + use_aes = result; + } + } + else + { + usage(std::string("invalid encryption parameter --") + arg); + } + } +} + +static std::vector +parse_pages_options( + int argc, char* argv[], int& cur_arg) +{ + std::vector result; + while (1) + { + if ((cur_arg < argc) && (strcmp(argv[cur_arg], "--") == 0)) + { + break; + } + if (cur_arg + 2 >= argc) + { + usage("insufficient arguments to --pages"); + } + char* file = argv[cur_arg++]; + char* password = 0; + char* range = argv[cur_arg++]; + if (strncmp(range, "--password=", 11) == 0) + { + // Oh, that's the password, not the range + if (cur_arg + 1 >= argc) + { + usage("insufficient arguments to --pages"); + } + password = range + 11; + range = argv[cur_arg++]; + } + + result.push_back(PageSpec(file, password, range)); + } + return result; +} + +static void test_numrange(char const* range) +{ + if (range == 0) + { + std::cout << "null" << std::endl; + } + else + { + std::vector result = parse_numrange(range, 15); + std::cout << "numeric range " << range << " ->"; + for (std::vector::iterator iter = result.begin(); + iter != result.end(); ++iter) + { + std::cout << " " << *iter; + } + std::cout << std::endl; + } +} + +QPDFPageData::QPDFPageData(QPDF* qpdf, char const* range) : + qpdf(qpdf), + orig_pages(qpdf->getAllPages()) +{ + this->selected_pages = parse_numrange(range, (int)this->orig_pages.size()); +} + +int main(int argc, char* argv[]) +{ + whoami = QUtil::getWhoami(argv[0]); + QUtil::setLineBuf(stdout); + + // For libtool's sake.... + if (strncmp(whoami, "lt-", 3) == 0) + { + whoami += 3; + } + + if ((argc == 2) && + ((strcmp(argv[1], "--version") == 0) || + (strcmp(argv[1], "-version") == 0))) + { + // make_dist looks for the line of code here that actually + // prints the version number, so read make_dist if you change + // anything other than the version number. Don't worry about + // the numbers. That's just a guide to 80 columns so that the + // help message looks right on an 80-column display. + + // 1 2 3 4 5 6 7 8 + // 12345678901234567890123456789012345678901234567890123456789012345678901234567890 + std::cout + << whoami << " version " << QPDF::QPDFVersion() << std::endl + << "Copyright (c) 2005-2012 Jay Berkenbilt" + << std::endl + << "This software may be distributed under the terms of version 2 of the" + << std::endl + << "Artistic License which may be found in the source distribution. It is" + << std::endl + << "provided \"as is\" without express or implied warranty." + << std::endl; + exit(0); + } + + if ((argc == 2) && + ((strcmp(argv[1], "--help") == 0) || + (strcmp(argv[1], "-help") == 0))) + { + std::cout << help; + exit(0); + } + + char const* password = 0; + bool linearize = false; + bool decrypt = false; + + bool copy_encryption = false; + char const* encryption_file = 0; + char const* encryption_file_password = 0; + + bool encrypt = false; + std::string user_password; + std::string owner_password; + int keylen = 0; + bool r2_print = true; + bool r2_modify = true; + bool r2_extract = true; + bool r2_annotate = true; + bool r3_accessibility = true; + bool r3_extract = true; + qpdf_r3_print_e r3_print = qpdf_r3p_full; + qpdf_r3_modify_e r3_modify = qpdf_r3m_all; + bool force_V4 = false; + bool cleartext_metadata = false; + bool use_aes = false; + + bool stream_data_set = false; + qpdf_stream_data_e stream_data_mode = qpdf_s_compress; + bool normalize_set = false; + bool normalize = false; + bool suppress_recovery = false; + bool object_stream_set = false; + qpdf_object_stream_e object_stream_mode = qpdf_o_preserve; + bool ignore_xref_streams = false; + bool qdf_mode = false; + std::string min_version; + std::string force_version; + + bool static_id = false; + bool static_aes_iv = false; + bool suppress_original_object_id = false; + bool show_encryption = false; + bool check_linearization = false; + bool show_linearization = false; + bool show_xref = false; + int show_obj = 0; + int show_gen = 0; + bool show_raw_stream_data = false; + bool show_filtered_stream_data = false; + bool show_pages = false; + bool show_page_images = false; + bool check = false; + + std::vector page_specs; + + bool require_outfile = true; + char const* infilename = 0; + char const* outfilename = 0; + + for (int i = 1; i < argc; ++i) + { + char const* arg = argv[i]; + if ((arg[0] == '-') && (strcmp(arg, "-") != 0)) + { + ++arg; + if (arg[0] == '-') + { + // Be lax about -arg vs --arg + ++arg; + } + char* parameter = (char*)strchr(arg, '='); + if (parameter) + { + *parameter++ = 0; + } + + // Arguments that start with space are undocumented and + // are for use by the test suite. + if (strcmp(arg, " test-numrange") == 0) + { + test_numrange(parameter); + exit(0); + } + else if (strcmp(arg, "password") == 0) + { + if (parameter == 0) + { + usage("--password must be given as --password=pass"); + } + password = parameter; + } + else if (strcmp(arg, "empty") == 0) + { + infilename = ""; + } + else if (strcmp(arg, "linearize") == 0) + { + linearize = true; + } + else if (strcmp(arg, "encrypt") == 0) + { + parse_encrypt_options( + argc, argv, ++i, + user_password, owner_password, keylen, + r2_print, r2_modify, r2_extract, r2_annotate, + r3_accessibility, r3_extract, r3_print, r3_modify, + force_V4, cleartext_metadata, use_aes); + encrypt = true; + decrypt = false; + copy_encryption = false; + } + else if (strcmp(arg, "decrypt") == 0) + { + decrypt = true; + encrypt = false; + copy_encryption = false; + } + else if (strcmp(arg, "copy-encryption") == 0) + { + if (parameter == 0) + { + usage("--copy-encryption must be given as" + "--copy_encryption=file"); + } + encryption_file = parameter; + copy_encryption = true; + encrypt = false; + decrypt = false; + } + else if (strcmp(arg, "encryption-file-password") == 0) + { + if (parameter == 0) + { + usage("--encryption-file-password must be given as" + "--encryption-file-password=password"); + } + encryption_file_password = parameter; + } + else if (strcmp(arg, "pages") == 0) + { + page_specs = parse_pages_options(argc, argv, ++i); + if (page_specs.empty()) + { + usage("--pages: no page specifications given"); + } + } + else if (strcmp(arg, "stream-data") == 0) + { + if (parameter == 0) + { + usage("--stream-data must be given as" + "--stream-data=option"); + } + stream_data_set = true; + if (strcmp(parameter, "compress") == 0) + { + stream_data_mode = qpdf_s_compress; + } + else if (strcmp(parameter, "preserve") == 0) + { + stream_data_mode = qpdf_s_preserve; + } + else if (strcmp(parameter, "uncompress") == 0) + { + stream_data_mode = qpdf_s_uncompress; + } + else + { + usage("invalid stream-data option"); + } + } + else if (strcmp(arg, "normalize-content") == 0) + { + if ((parameter == 0) || (*parameter == '\0')) + { + usage("--normalize-content must be given as" + " --normalize-content=[yn]"); + } + normalize_set = true; + normalize = (parameter[0] == 'y'); + } + else if (strcmp(arg, "suppress-recovery") == 0) + { + suppress_recovery = true; + } + else if (strcmp(arg, "object-streams") == 0) + { + if (parameter == 0) + { + usage("--object-streams must be given as" + " --object-streams=option"); + } + object_stream_set = true; + if (strcmp(parameter, "disable") == 0) + { + object_stream_mode = qpdf_o_disable; + } + else if (strcmp(parameter, "preserve") == 0) + { + object_stream_mode = qpdf_o_preserve; + } + else if (strcmp(parameter, "generate") == 0) + { + object_stream_mode = qpdf_o_generate; + } + else + { + usage("invalid object stream mode"); + } + } + else if (strcmp(arg, "ignore-xref-streams") == 0) + { + ignore_xref_streams = true; + } + else if (strcmp(arg, "qdf") == 0) + { + qdf_mode = true; + } + else if (strcmp(arg, "min-version") == 0) + { + if (parameter == 0) + { + usage("--min-version be given as" + "--min-version=version"); + } + min_version = parameter; + } + else if (strcmp(arg, "force-version") == 0) + { + if (parameter == 0) + { + usage("--force-version be given as" + "--force-version=version"); + } + force_version = parameter; + } + else if (strcmp(arg, "static-id") == 0) + { + static_id = true; + } + else if (strcmp(arg, "static-aes-iv") == 0) + { + static_aes_iv = true; + } + else if (strcmp(arg, "no-original-object-ids") == 0) + { + suppress_original_object_id = true; + } + else if (strcmp(arg, "show-encryption") == 0) + { + show_encryption = true; + require_outfile = false; + } + else if (strcmp(arg, "check-linearization") == 0) + { + check_linearization = true; + require_outfile = false; + } + else if (strcmp(arg, "show-linearization") == 0) + { + show_linearization = true; + require_outfile = false; + } + else if (strcmp(arg, "show-xref") == 0) + { + show_xref = true; + require_outfile = false; + } + else if (strcmp(arg, "show-object") == 0) + { + if (parameter == 0) + { + usage("--show-object must be given as" + " --show-object=obj[,gen]"); + } + char* obj = parameter; + char* gen = obj; + if ((gen = strchr(obj, ',')) != 0) + { + *gen++ = 0; + show_gen = atoi(gen); + } + show_obj = atoi(obj); + require_outfile = false; + } + else if (strcmp(arg, "raw-stream-data") == 0) + { + show_raw_stream_data = true; + } + else if (strcmp(arg, "filtered-stream-data") == 0) + { + show_filtered_stream_data = true; + } + else if (strcmp(arg, "show-pages") == 0) + { + show_pages = true; + require_outfile = false; + } + else if (strcmp(arg, "with-images") == 0) + { + show_page_images = true; + } + else if (strcmp(arg, "check") == 0) + { + check = true; + require_outfile = false; + } + else + { + usage(std::string("unknown option --") + arg); + } + } + else if (infilename == 0) + { + infilename = arg; + } + else if (outfilename == 0) + { + outfilename = arg; + } + else + { + usage(std::string("unknown argument ") + arg); + } + } + + if (infilename == 0) + { + usage("an input file name is required"); + } + else if (require_outfile && (outfilename == 0)) + { + usage("an output file name is required; use - for standard output"); + } + else if ((! require_outfile) && (outfilename != 0)) + { + usage("no output file may be given for this option"); + } + + try + { + QPDF pdf; + QPDF encryption_pdf; + if (ignore_xref_streams) + { + pdf.setIgnoreXRefStreams(true); + } + if (suppress_recovery) + { + pdf.setAttemptRecovery(false); + } + if (strcmp(infilename, "") == 0) + { + pdf.emptyPDF(); + } + else + { + pdf.processFile(infilename, password); + } + if (outfilename == 0) + { + if (show_encryption) + { + ::show_encryption(pdf); + } + if (check_linearization) + { + if (pdf.checkLinearization()) + { + std::cout << infilename << ": no linearization errors" + << std::endl; + } + else + { + exit(EXIT_ERROR); + } + } + if (show_linearization) + { + if (pdf.isLinearized()) + { + pdf.showLinearizationData(); + } + else + { + std::cout << infilename << " is not linearized" + << std::endl; + } + } + if (show_xref) + { + pdf.showXRefTable(); + } + if (show_obj > 0) + { + QPDFObjectHandle obj = pdf.getObjectByID(show_obj, show_gen); + if (obj.isStream()) + { + if (show_raw_stream_data || show_filtered_stream_data) + { + bool filter = show_filtered_stream_data; + if (filter && + (! obj.pipeStreamData(0, true, false, false))) + { + QTC::TC("qpdf", "qpdf unable to filter"); + std::cerr << "Unable to filter stream data." + << std::endl; + exit(EXIT_ERROR); + } + else + { + QUtil::binary_stdout(); + Pl_StdioFile out("stdout", stdout); + obj.pipeStreamData(&out, filter, normalize, false); + } + } + else + { + std::cout + << "Object is stream. Dictionary:" << std::endl + << obj.getDict().unparseResolved() << std::endl; + } + } + else + { + std::cout << obj.unparseResolved() << std::endl; + } + } + if (show_pages) + { + if (show_page_images) + { + pdf.pushInheritedAttributesToPage(); + } + std::vector pages = pdf.getAllPages(); + int pageno = 0; + for (std::vector::iterator iter = + pages.begin(); + iter != pages.end(); ++iter) + { + QPDFObjectHandle& page = *iter; + ++pageno; + + std::cout << "page " << pageno << ": " + << page.getObjectID() << " " + << page.getGeneration() << " R" << std::endl; + if (show_page_images) + { + std::map images = + page.getPageImages(); + if (! images.empty()) + { + std::cout << " images:" << std::endl; + for (std::map::iterator + iter = images.begin(); + iter != images.end(); ++iter) + { + std::string const& name = (*iter).first; + QPDFObjectHandle image = (*iter).second; + QPDFObjectHandle dict = image.getDict(); + int width = + dict.getKey("/Width").getIntValue(); + int height = + dict.getKey("/Height").getIntValue(); + std::cout << " " << name << ": " + << image.unparse() + << ", " << width << " x " << height + << std::endl; + } + } + } + + std::cout << " content:" << std::endl; + std::vector content = + page.getPageContents(); + for (std::vector::iterator iter = + content.begin(); + iter != content.end(); ++iter) + { + std::cout << " " << (*iter).unparse() << std::endl; + } + } + } + if (check) + { + bool okay = false; + std::cout << "checking " << infilename << std::endl; + try + { + std::cout << "PDF Version: " << pdf.getPDFVersion() + << std::endl; + ::show_encryption(pdf); + if (pdf.isLinearized()) + { + std::cout << "File is linearized\n"; + okay = pdf.checkLinearization(); + // any errors are reported by checkLinearization(). + } + else + { + std::cout << "File is not linearized\n"; + // calling flattenScalarReferences causes full + // traversal of file, so any structural errors + // would be exposed. + pdf.flattenScalarReferences(); + // Also explicitly decode all streams. + pdf.decodeStreams(); + okay = true; + } + } + catch (std::exception& e) + { + std::cout << e.what() << std::endl; + } + if (okay) + { + if (! pdf.getWarnings().empty()) + { + exit(EXIT_WARNING); + } + else + { + std::cout << "No syntax or stream encoding errors" + << " found; the file may still contain" + << std::endl + << "errors that qpdf cannot detect" + << std::endl; + } + } + } + } + else + { + std::vector > page_heap; + if (! page_specs.empty()) + { + // Parse all page specifications and translate them + // into lists of actual pages. + + // Create a QPDF object for each file that we may take + // pages from. + std::map page_spec_qpdfs; + page_spec_qpdfs[infilename] = &pdf; + std::vector parsed_specs; + for (std::vector::iterator iter = page_specs.begin(); + iter != page_specs.end(); ++iter) + { + PageSpec& page_spec = *iter; + if (page_spec_qpdfs.count(page_spec.filename) == 0) + { + // Open the PDF file and store the QPDF + // object. Throw a PointerHolder to the qpdf + // into a heap so that it survives through + // writing the output but gets cleaned up + // automatically at the end. Do not + // canonicalize the file name. Using two + // different paths to refer to the same file + // is a document workaround for duplicating a + // page. If you are using this an example of + // how to do this with the API, you can just + // create two different QPDF objects to the + // same underlying file with the same path to + // achieve the same affect. + PointerHolder qpdf_ph = new QPDF(); + page_heap.push_back(qpdf_ph); + QPDF* qpdf = qpdf_ph.getPointer(); + char const* password = page_spec.password; + if (encryption_file && (password == 0) && + (page_spec.filename == encryption_file)) + { + QTC::TC("qpdf", "qpdf pages encryption password"); + password = encryption_file_password; + } + qpdf->processFile( + page_spec.filename.c_str(), password); + page_spec_qpdfs[page_spec.filename] = qpdf; + } + + // Read original pages from the PDF, and parse the + // page range associated with this occurrence of + // the file. + parsed_specs.push_back( + QPDFPageData(page_spec_qpdfs[page_spec.filename], + page_spec.range)); + } + + // Clear all pages out of the primary QPDF's pages + // tree but leave the objects in place in the file so + // they can be re-added without changing their object + // numbers. This enables other things in the original + // file, such as outlines, to continue to work. + std::vector orig_pages = pdf.getAllPages(); + for (std::vector::iterator iter = + orig_pages.begin(); + iter != orig_pages.end(); ++iter) + { + pdf.removePage(*iter); + } + + // Add all the pages from all the files in the order + // specified. Keep track of any pages from the + // original file that we are selecting. + std::set selected_from_orig; + for (std::vector::iterator iter = + parsed_specs.begin(); + iter != parsed_specs.end(); ++iter) + { + QPDFPageData& page_data = *iter; + for (std::vector::iterator pageno_iter = + page_data.selected_pages.begin(); + pageno_iter != page_data.selected_pages.end(); + ++pageno_iter) + { + // Pages are specified from 1 but numbered + // from 0 in the vector + int pageno = *pageno_iter - 1; + pdf.addPage(page_data.orig_pages[pageno], false); + if (page_data.qpdf == &pdf) + { + // This is a page from the original file. + // Keep track of the fact that we are + // using it. + selected_from_orig.insert(pageno); + } + } + } + + // Delete page objects for unused page in primary. + // This prevents those objects from being preserved by + // being referred to from other places, such as the + // outlines dictionary. + for (int pageno = 0; pageno < (int)orig_pages.size(); ++pageno) + { + if (selected_from_orig.count(pageno) == 0) + { + pdf.replaceObject(orig_pages[pageno].getObjectID(), + orig_pages[pageno].getGeneration(), + QPDFObjectHandle::newNull()); + } + } + } + + if (strcmp(outfilename, "-") == 0) + { + outfilename = 0; + } + QPDFWriter w(pdf, outfilename); + if (qdf_mode) + { + w.setQDFMode(true); + } + if (normalize_set) + { + w.setContentNormalization(normalize); + } + if (stream_data_set) + { + w.setStreamDataMode(stream_data_mode); + } + if (decrypt) + { + w.setPreserveEncryption(false); + } + if (static_id) + { + w.setStaticID(true); + } + if (static_aes_iv) + { + w.setStaticAesIV(true); + } + if (suppress_original_object_id) + { + w.setSuppressOriginalObjectIDs(true); + } + if (copy_encryption) + { + encryption_pdf.processFile( + encryption_file, encryption_file_password); + w.copyEncryptionParameters(encryption_pdf); + } + if (encrypt) + { + if (keylen == 40) + { + w.setR2EncryptionParameters( + user_password.c_str(), owner_password.c_str(), + r2_print, r2_modify, r2_extract, r2_annotate); + } + else if (keylen == 128) + { + if (force_V4 || cleartext_metadata || use_aes) + { + w.setR4EncryptionParameters( + user_password.c_str(), owner_password.c_str(), + r3_accessibility, r3_extract, r3_print, r3_modify, + !cleartext_metadata, use_aes); + } + else + { + w.setR3EncryptionParameters( + user_password.c_str(), owner_password.c_str(), + r3_accessibility, r3_extract, r3_print, r3_modify); + } + } + else + { + throw std::logic_error("bad encryption keylen"); + } + } + if (linearize) + { + w.setLinearization(true); + } + if (object_stream_set) + { + w.setObjectStreamMode(object_stream_mode); + } + if (! min_version.empty()) + { + w.setMinimumPDFVersion(min_version); + } + if (! force_version.empty()) + { + w.forcePDFVersion(force_version); + } + w.write(); + } + if (! pdf.getWarnings().empty()) + { + std::cerr << whoami << ": operation succeeded with warnings;" + << " resulting file may have some problems" << std::endl; + exit(EXIT_WARNING); + } + } + catch (std::exception& e) + { + std::cerr << e.what() << std::endl; + exit(EXIT_ERROR); + } + + return 0; +} diff --git a/qpdf/qpdf.testcov b/qpdf/qpdf.testcov new file mode 100644 index 0000000..f966337 --- /dev/null +++ b/qpdf/qpdf.testcov @@ -0,0 +1,244 @@ +ignored-scope: libtests +QPDF lindict searching after null 0 +QPDF err expected endobj 0 +QPDF err wrong objid/generation 0 +QPDF check objid 1 +QPDF check generation 1 +QPDF check obj 1 +QPDF hint table length indirect 0 +QPDF hint table length direct 0 +QPDF P absent in lindict 0 +QPDF P present in lindict 0 +QPDF expected n n obj 0 +QPDF lindict found newline 0 +QPDF /L mismatch 0 +QPDF err /T mismatch 0 +QPDF err /O mismatch 0 +QPDF opt direct pages resource 1 +QPDF opt inheritable keys 0 +QPDF opt no inheritable keys 0 +QPDF opt erase empty key ancestor 0 +QPDF opt resource inherited 0 +QPDF opt page resource hides ancestor 0 +QPDF opt key ancestors depth > 1 0 +QPDF opt loop detected 0 +QPDF categorize pagemode present 1 +QPDF categorize pagemode outlines 1 +QPDF warn /E mismatch 0 +QPDF lin outlines in part 1 +QPDF lin nshared_total > nshared_first_page 1 +QPDF lin part 8 empty 1 +QPDF lin check shared past first page 0 +QPDF opt flatten array scalar 0 +QPDF opt flatten dict scalar 0 +main QTest implicit 0 +main QTest indirect 1 +main QTest null 0 +main QTest bool 1 +main QTest int 0 +main QTest real 0 +main QTest name 0 +main QTest string 0 +main QTest array 0 +main QTest array indirect 1 +main QTest dictionary 0 +main QTest dictionary indirect 1 +main QTest stream 0 +QPDFWriter write to stdout 0 +QPDFWriter write to file 0 +QPDF lin write nshared_total > nshared_first_page 1 +QPDFWriter encrypted hint stream 0 +QPDF opt inherited scalar 0 +QPDF xref reused object 0 +QPDF xref gen > 0 1 +QPDF xref size mismatch 0 +QPDF not a pdf file 0 +QPDF can't find startxref 0 +QPDF invalid xref 0 +QPDF invalid xref entry 0 +QPDF missing trailer 0 +QPDF trailer lacks size 0 +QPDF trailer size not integer 0 +QPDF trailer prev not integer 0 +QPDFObjectHandle bad brace 0 +QPDFObjectHandle bad array close 0 +QPDFObjectHandle dictionary odd number of elements 0 +QPDF stream without length 0 +QPDF stream length not integer 0 +QPDF missing endstream 0 +QPDFObjectHandle bad dictionary close 0 +QPDF can't find xref 0 +QPDF_Tokenizer bad ) 0 +QPDF_Tokenizer bad > 0 +QPDF_Tokenizer bad ( 0 +QPDF_Tokenizer null in name 0 +QPDF_Tokenizer bad name 0 +QPDF_Stream invalid filter 0 +QPDF UseOutlines but no Outlines 0 +QPDFObjectHandle clone bool 0 +QPDFObjectHandle clone null 0 +QPDFObjectHandle clone integer 0 +QPDFObjectHandle clone real 0 +QPDFObjectHandle clone name 0 +QPDFObjectHandle clone string 0 +QPDFObjectHandle clone array 0 +QPDFObjectHandle clone dictionary 0 +QPDFObjectHandle makeDirect loop 0 +QPDFObjectHandle ERR clone stream 0 +QPDFTokenizer allow pound anywhere in name 0 +QPDF indirect last obj from xref 1 +QPDF default for xref stream field 0 0 +QPDF prev key in xref stream dictionary 0 +QPDF prev key in trailer dictionary 0 +QPDF found xref stream 0 +QPDF ignoring XRefStm in trailer 0 +QPDF xref deleted object 0 +QPDF_Stream PNG filter 0 +QPDF xref /Index is null 0 +QPDF xref /Index is array 1 +QPDFWriter copy Extends 0 +QPDFWriter encrypt object stream 0 +QPDFWriter uncompressing page dictionary 0 +QPDFWriter uncompressing root 0 +QPDFWriter compressing uncompressed stream 0 +QPDF exclude indirect length 0 +QPDFWriter generate >1 ostream 0 +QPDF exclude encryption dictionary 0 +QPDF loop detected traversing objects 0 +QPDF reconstructed xref table 0 +QPDF recovered in readObjectAtOffset 0 +QPDF recovered stream length 0 +QPDF found wrong endstream in recovery 0 +QPDFObjectHandle indirect to unknown 0 +QPDF_Stream pipeStreamData with null pipeline 0 +QPDFWriter not recompressing /FlateDecode 0 +QPDF_encryption xref stream from encrypted file 0 +qpdf unable to filter 0 +QPDF_String non-trivial UTF-16 0 +QPDF xref overwrite object 0 +QPDF decoding error warning 0 +QPDF_Stream ignore non-dictionary DecodeParms 0 +qpdf-c called qpdf_init 0 +qpdf-c called qpdf_cleanup 0 +qpdf-c called qpdf_more_warnings 0 +qpdf-c qpdf_get_error returned error 0 +qpdf-c qpdf_next_warning returned warning 0 +qpdf-c called qpdf_set_suppress_warnings 0 +qpdf-c called qpdf_set_ignore_xref_streams 0 +qpdf-c called qpdf_set_attempt_recovery 0 +qpdf-c called qpdf_read 3 +qpdf-c called qpdf_get_pdf_version 0 +qpdf-c called qpdf_get_user_password 0 +qpdf-c called qpdf_is_linearized 0 +qpdf-c called qpdf_is_encrypted 0 +qpdf-c called qpdf_init_write 3 +qpdf-c called qpdf_set_object_stream_mode 0 +qpdf-c called qpdf_set_stream_data_mode 0 +qpdf-c called qpdf_set_content_normalization 0 +qpdf-c called qpdf_set_qdf_mode 0 +qpdf-c called qpdf_set_static_ID 0 +qpdf-c called qpdf_set_suppress_original_object_IDs 0 +qpdf-c called qpdf_set_preserve_encryption 0 +qpdf-c called qpdf_set_r2_encryption_parameters 0 +qpdf-c called qpdf_set_r3_encryption_parameters 0 +qpdf-c called qpdf_set_linearization 0 +qpdf-c called qpdf_write 3 +qpdf-c called qpdf_allow_accessibility 0 +qpdf-c called qpdf_allow_extract_all 0 +qpdf-c called qpdf_allow_print_low_res 0 +qpdf-c called qpdf_allow_print_high_res 0 +qpdf-c called qpdf_allow_modify_assembly 0 +qpdf-c called qpdf_allow_modify_form 0 +qpdf-c called qpdf_allow_modify_annotation 0 +qpdf-c called qpdf_allow_modify_other 0 +qpdf-c called qpdf_allow_modify_all 0 +QPDFWriter increasing minimum version 0 +QPDFWriter using forced PDF version 0 +qpdf-c called qpdf_set_minimum_pdf_version 0 +qpdf-c called qpdf_force_pdf_version 0 +qpdf-c called qpdf_init_write multiple times 0 +QPDF_encryption rc4 decode string 0 +QPDF_encryption rc4 decode stream 0 +QPDFWriter not compressing metadata 0 +QPDF_encryption CFM V2 0 +QPDF_encryption CFM AESV2 0 +QPDF_encryption aes decode string 0 +QPDF_encryption cleartext metadata 0 +QPDF_encryption aes decode stream 0 +QPDFWriter forcing object stream disable 0 +QPDFWriter forced version disabled encryption 0 +qpdf-c called qpdf_set_r4_encryption_parameters 0 +qpdf-c called qpdf_set_static_aes_IV 0 +QPDF_encryption stream crypt filter 0 +QPDF ERR object stream with wrong type 0 +QPDF object gone after xref reconstruction 0 +qpdf-c called qpdf_has_error 0 +qpdf-c called qpdf_get_qpdf_version 0 +QPDF_Stream pipe original stream data 0 +QPDF_Stream pipe replaced stream data 0 +QPDF_Stream pipe use stream provider 0 +QPDF_Stream provider length mismatch 0 +QPDFObjectHandle newStream 0 +QPDFObjectHandle newStream with data 0 +QPDF_Stream pipe no stream data 0 +QPDFObjectHandle prepend page contents 0 +QPDFObjectHandle append page contents 0 +QPDF_Stream getRawStreamData 0 +QPDF_Stream getStreamData 0 +QPDF_Stream expand filter abbreviation 0 +qpdf-c called qpdf_read_memory 0 +Pl_QPDFTokenizer found EI 0 +QPDF stream without newline 0 +QPDF stream with CR only 0 +QPDF stream with CRNL 0 +QPDF stream with NL only 0 +QPDF replaceObject called with indirect object 0 +QPDFWriter copy encrypt metadata 1 +qpdf-c get_info_key 1 +qpdf-c set_info_key to value 0 +qpdf-c set_info_key to null 0 +qpdf-c set-info-key use existing info 0 +qpdf-c add info to trailer 0 +qpdf-c called qpdf_init_write_memory 0 +exercise processFile(name) 0 +exercise processFile(FILE*) 0 +exercise processMemoryFile 0 +QPDF duplicate page reference 0 +QPDF remove page 2 +QPDF insert page 2 +QPDF updateAllPagesCache 0 +QPDF insert non-indirect page 0 +QPDF insert indirect page 0 +QPDFObjectHandle ERR shallow copy stream 0 +QPDFObjectHandle shallow copy array 0 +QPDFObjectHandle shallow copy dictionary 0 +QPDFObjectHandle shallow copy scalar 0 +QPDFObjectHandle newStream with string 0 +QPDF unknown key not inherited 0 +QPDF_Stream provider length not provided 0 +QPDF_Stream unknown stream length 0 +QPDF replaceReserved 0 +QPDF copyForeign direct 0 +QPDF copyForeign not foreign 0 +QPDF copy indirect 0 +QPDF loop reserving objects 0 +QPDF replace indirect 0 +QPDF replace array 0 +QPDF replace dictionary 0 +QPDF replace stream 0 +QPDF reserve array 0 +QPDF reserve dictionary 0 +QPDF reserve stream 0 +QPDF not crossing page boundary 0 +QPDF replace foreign indirect with null 0 +QPDF not copying pages object 0 +QPDF insert foreign page 0 +QPDFWriter foreign object 0 +QPDFWriter copy use_aes 1 +QPDFObjectHandle indirect without context 0 +QPDFObjectHandle trailing data in parse 0 +qpdf pages encryption password 0 +QPDF_Tokenizer EOF reading token 0 +QPDF_Tokenizer EOF reading appendable token 0 +QPDFWriter extra header text no newline 0 +QPDFWriter extra header text add newline 0 diff --git a/qpdf/qtest/qpdf.test b/qpdf/qtest/qpdf.test new file mode 100644 index 0000000..d12f064 --- /dev/null +++ b/qpdf/qtest/qpdf.test @@ -0,0 +1,1922 @@ +#!/usr/bin/env perl +require 5.008; +BEGIN { $^W = 1; } +use strict; +use File::Copy; +use File::Basename; +use Cwd; +use Digest::MD5; + +chdir("qpdf") or die "chdir testdir failed: $!\n"; + +require TestDriver; + +cleanup(); + +my $td = new TestDriver('qpdf'); + +my $compare_images = 1; +if ((exists $ENV{'QPDF_SKIP_TEST_COMPARE_IMAGES'}) && + ($ENV{'QPDF_SKIP_TEST_COMPARE_IMAGES'} eq '1')) +{ + $compare_images = 0; +} +my $large_file_test_path = $ENV{'QPDF_LARGE_FILE_TEST_PATH'} || undef; + +my $have_acroread = 0; + +if ($compare_images) +{ + # check for working acroread + if (system("acroread -toPostScript -pairs good1.pdf a.ps" . + " >/dev/null 2>&1") == 0) + { + $have_acroread = 1; + } +} + +# These variables are used to store the total number of tests in the +# test suite. NOTE: qtest's requirement to indicate the number of +# tests serves as a check that the test suite is operating properly. +# Do not calculate these values as a side effect of running the tests. +# That defeats the purpose. However, since this test suite consists +# of several separate series of tests, many of which iterate over +# static lists of things, we calculate the numbers as we go in terms +# of static values. + +# This should be set to the number of times we called compare_pdfs. +# This has to be kept separate because the number of test cases +# compare_pdfs generates depends on the value of $compare_images. +my $n_compare_pdfs = 0; + +# This should be set to the number of times we call acroread. +my $n_acroread = 0; + +# Each section of tests should increment this number by the number of +# tests they generate excluding calls to acroread or compare_pdfs, +# which are tracked separately by $n_compare_pdfs and $n_acroread. +my $n_tests = 0; + +# Call show_ntests after each block of test cases. In show_ntests, +# you can turn on printing of the expected number of test cases. This +# is useful for tracking down problems in the number of test cases. + +show_ntests(); +# ---------- + +$n_compare_pdfs += 5; + +# Check compare_pdfs to make sure that it works properly. Each call +# to compare_pdfs is worth three test cases. +compare_pdfs("p1-a-p2-b.pdf", "p1-a-p2-b.pdf"); +compare_pdfs("p1-a.pdf", "p1-a.pdf"); +compare_pdfs("p1-a.pdf", "p1-b.pdf", 1); +compare_pdfs("p1-a.pdf", "p1-a-p2-b.pdf", 1); +compare_pdfs("p1-a-p2-a.pdf", "p1-a-p2-b.pdf", 1); +flush_tiff_cache(); + +show_ntests(); +# ---------- +$td->notify("--- Stream Replacement Tests ---"); +$n_tests += 8; + +$td->runtest("replace stream data", + {$td->COMMAND => "test_driver 7 qstream.pdf"}, + {$td->STRING => "test 7 done\n", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "replaced-stream-data.pdf"}); +$td->runtest("replace stream data compressed", + {$td->COMMAND => "test_driver 8 qstream.pdf"}, + {$td->FILE => "test8.out", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "replaced-stream-data-flate.pdf"}); +$td->runtest("new streams", + {$td->COMMAND => "test_driver 9 minimal.pdf"}, + {$td->FILE => "test9.out", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("new stream", + {$td->FILE => "a.pdf"}, + {$td->FILE => "new-streams.pdf"}); +$td->runtest("add page contents", + {$td->COMMAND => "test_driver 10 minimal.pdf"}, + {$td->STRING => "test 10 done\n", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("new stream", + {$td->FILE => "a.pdf"}, + {$td->FILE => "add-contents.pdf"}); + +show_ntests(); +# ---------- +$td->notify("--- Page API Tests ---"); +$n_tests += 9; + +$td->runtest("basic page API", + {$td->COMMAND => "test_driver 15 page_api_1.pdf"}, + {$td->STRING => "test 15 done\n", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "page_api_1-out.pdf"}); +$td->runtest("manual page manipulation", + {$td->COMMAND => "test_driver 16 page_api_1.pdf"}, + {$td->STRING => "test 16 done\n", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "page_api_1-out2.pdf"}); +$td->runtest("duplicate page", + {$td->COMMAND => "test_driver 17 page_api_2.pdf"}, + {$td->FILE => "page_api_2.out", $td->EXIT_STATUS => 2}, + $td->NORMALIZE_NEWLINES); +$td->runtest("delete and re-add a page", + {$td->COMMAND => "test_driver 18 page_api_1.pdf"}, + {$td->STRING => "test 18 done\n", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "page_api_1-out3.pdf"}); +$td->runtest("duplicate page", + {$td->COMMAND => "test_driver 19 page_api_1.pdf"}, + {$td->FILE => "page_api_1.out", $td->EXIT_STATUS => 2}, + $td->NORMALIZE_NEWLINES); +$td->runtest("remove page we don't have", + {$td->COMMAND => "test_driver 22 page_api_1.pdf"}, + {$td->FILE => "page_api_1.out2", $td->EXIT_STATUS => 2}, + $td->NORMALIZE_NEWLINES); +# ---------- +$td->notify("--- Miscellaneous Tests ---"); +$n_tests += 53; + +$td->runtest("qpdf version", + {$td->COMMAND => "qpdf --version"}, + {$td->REGEXP => "qpdf version \\S+\n.*", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("C API: qpdf version", + {$td->COMMAND => "qpdf-ctest --version"}, + {$td->REGEXP => "qpdf-ctest version \\S+\n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +foreach (my $i = 1; $i <= 3; ++$i) +{ + $td->runtest("misc tests", + {$td->COMMAND => "test_driver 5 misc-$i.pdf"}, + {$td->FILE => "misc-$i.out", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +} + +$td->runtest("get stream data", + {$td->COMMAND => "test_driver 11 stream-data.pdf"}, + {$td->FILE => "test11.out", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +# Make sure we ignore decode parameters that we don't understand +$td->runtest("unknown decode parameters", + {$td->COMMAND => "qpdf --check fax-decode-parms.pdf"}, + {$td->FILE => "fax-decode-parms.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +# Handle xref stream with more entries than reported (bug 2872265) +$td->runtest("xref with short size", + {$td->COMMAND => "qpdf --show-xref xref-with-short-size.pdf"}, + {$td->FILE => "xref-with-short-size.out", + $td->EXIT_STATUS => 3}, + $td->NORMALIZE_NEWLINES); +$td->runtest("recover xref with short size", + {$td->COMMAND => "qpdf xref-with-short-size.pdf a.pdf"}, + {$td->FILE => "xref-with-short-size-recover.out", + $td->EXIT_STATUS => 3}, + $td->NORMALIZE_NEWLINES); +$td->runtest("show new xref stream", + {$td->COMMAND => "qpdf --show-xref a.pdf"}, + {$td->FILE => "xref-with-short-size-new.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +# Handle file with object stream containing an unreferenced object +# that in turn contains an indirect scalar (bug 2974522). +$td->runtest("unreferenced indirect scalar", + {$td->COMMAND => + "qpdf --qdf --static-id --object-streams=preserve" . + " unreferenced-indirect-scalar.pdf a.qdf"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output", + {$td->FILE => "a.qdf"}, + {$td->FILE => "unreferenced-indirect-scalar.out"}); + +# Encrypt files whose /ID strings are other than 32 bytes long (bug +# 2991412). +foreach my $file (qw(short-id long-id)) +{ + $td->runtest("encrypt $file.pdf", + {$td->COMMAND => + "qpdf --encrypt '' pass 40 -- $file.pdf a.pdf"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + + $td->runtest("check $file.pdf", + {$td->COMMAND => "qpdf --check a.pdf"}, + {$td->FILE => "$file-check.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +} + +# Handle file with invalid xref table and object 0 as a regular object +# (bug 3159950). +$td->runtest("check obj0.pdf", + {$td->COMMAND => "qpdf --check obj0.pdf"}, + {$td->FILE => "obj0-check.out", + $td->EXIT_STATUS => 3}, + $td->NORMALIZE_NEWLINES); + +# Min/Force version +$td->runtest("set min version", + {$td->COMMAND => "qpdf --min-version=1.6 good1.pdf a.pdf"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check version", + {$td->COMMAND => "qpdf --check a.pdf"}, + {$td->FILE => "min-version.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("force version", + {$td->COMMAND => "qpdf --force-version=1.4 a.pdf b.pdf"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check version", + {$td->COMMAND => "qpdf --check b.pdf"}, + {$td->FILE => "forced-version.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +unlink "a.pdf", "b.pdf" or die; +$td->runtest("C API: min/force versions", + {$td->COMMAND => "qpdf-ctest 14 object-stream.pdf '' a.pdf b.pdf"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("C check version 1", + {$td->COMMAND => "qpdf --check a.pdf"}, + {$td->FILE => "min-version.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("C check version 2", + {$td->COMMAND => "qpdf --check b.pdf"}, + {$td->FILE => "forced-version.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +# Stream filter abbreviations from table H.1 +$td->runtest("stream filter abbreviations", + {$td->COMMAND => "qpdf --static-id filter-abbreviation.pdf a.pdf"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "filter-abbreviation.out"}); + +$td->runtest("empty object", + {$td->COMMAND => "qpdf -show-object=7,0 empty-object.pdf"}, + {$td->FILE => "empty-object.out", + $td->EXIT_STATUS => 3}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("error/output redirection to null", + {$td->COMMAND => "test_driver 12 linearized-and-warnings.pdf"}, + {$td->FILE => "linearized-and-warnings-1.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("error/output redirection to strings", + {$td->COMMAND => "test_driver 13 linearized-and-warnings.pdf"}, + {$td->FILE => "linearized-and-warnings-2.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("odd terminators for stream keyword", + {$td->COMMAND => + "qpdf --qdf --static-id" . + " stream-line-enders.pdf a.qdf"}, + {$td->FILE => "stream-line-enders.out", + $td->EXIT_STATUS => 3}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output", + {$td->FILE => "a.qdf"}, + {$td->FILE => "stream-line-enders.qdf"}); + +$td->runtest("swap and replace", + {$td->COMMAND => "test_driver 14 test14-in.pdf"}, + {$td->FILE => "test14.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "test14-out.pdf"}); +# Test 14 also exercises writing to memory without static ID. +$td->runtest("check non-static ID version", + {$td->COMMAND => "./diff-ignore-ID-version a.pdf b.pdf"}, + {$td->STRING => "okay\n", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("C API info key functions", + {$td->COMMAND => "qpdf-ctest 16 minimal.pdf '' a.pdf"}, + {$td->FILE => "c-info1.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "c-info-out.pdf"}); +unlink "a.pdf" or die; + +$td->runtest("C API info key functions", + {$td->COMMAND => "qpdf-ctest 16 c-info2-in.pdf '' a.pdf"}, + {$td->FILE => "c-info2.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "c-info-out.pdf"}); +unlink "a.pdf" or die; + +$td->runtest("shallow copy an array", + {$td->COMMAND => "test_driver 20 shallow_array.pdf"}, + {$td->STRING => "test 20 done\n", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "shallow_array-out.pdf"}); +$td->runtest("shallow copy a stream", + {$td->COMMAND => "test_driver 21 shallow_array.pdf"}, + {$td->FILE => "shallow_stream.out", $td->EXIT_STATUS => 2}, + $td->NORMALIZE_NEWLINES); +$td->runtest("warn for unknown key in Pages", + {$td->COMMAND => "test_driver 23 lin-special.pdf"}, + {$td->FILE => "pages-warning.out", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("reserved objects", + {$td->COMMAND => "test_driver 24 minimal.pdf"}, + {$td->FILE => "reserved-objects.out", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "reserved-objects.pdf"}); +$td->runtest("detect foreign object in write", + {$td->COMMAND => "test_driver 29" . + " copy-foreign-objects-in.pdf minimal.pdf"}, + {$td->FILE => "foreign-in-write.out", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("parse objects from string", + {$td->COMMAND => "test_driver 31 minimal.pdf"}, # file not used + {$td->FILE => "parse-object.out", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("EOF terminating literal tokens", + {$td->COMMAND => "qpdf --check eof-terminates-literal.pdf"}, + {$td->FILE => "eof-terminates-literal.out", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("EOF reading token", + {$td->COMMAND => "qpdf --check eof-reading-token.pdf"}, + {$td->FILE => "eof-reading-token.out", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("extra header text", + {$td->COMMAND => "test_driver 32 minimal.pdf"}, + {$td->FILE => "test-32.out", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "extra-header-no-newline.pdf"}); +$td->runtest("check output", + {$td->FILE => "b.pdf"}, + {$td->FILE => "extra-header-lin-no-newline.pdf"}); +$td->runtest("check output", + {$td->FILE => "c.pdf"}, + {$td->FILE => "extra-header-newline.pdf"}); +$td->runtest("check output", + {$td->FILE => "d.pdf"}, + {$td->FILE => "extra-header-lin-newline.pdf"}); + +show_ntests(); +# ---------- +$td->notify("--- Numeric range parsing tests ---"); +my @nrange_tests = ( + [",5", + "qpdf: error at * in numeric range *,5: unexpected separator", + 2], + ["4,,5", + "qpdf: error at * in numeric range 4,*,5: unexpected separator", + 2], + ["4,5,", + "qpdf: error at * in numeric range 4,5,*: number expected", + 2], + ["z1,", + "qpdf: error at * in numeric range z*1,: digit not expected", + 2], + ["1z,", + "qpdf: error at * in numeric range 1*z,: z not expected", + 2], + ["1-5?", + "qpdf: error at * in numeric range 1-5*?: unexpected character", + 2], + ["1-30", + "qpdf: error in numeric range 1-30: number 30 out of range", + 2], + ["1-10,0,5", + "qpdf: error in numeric range 1-10,0,5: number 0 out of range", + 2], + ["1-10,1234,5", + "qpdf: error in numeric range 1-10,1234,5: number 1234 out of range", + 2], + ["1,3,5-10,z-13,13,9,z,2", + "numeric range 1,3,5-10,z-13,13,9,z,2" . + " -> 1 3 5 6 7 8 9 10 15 14 13 13 9 15 2", + 0], + ); +$n_tests += scalar(@nrange_tests); +foreach my $d (@nrange_tests) +{ + my ($range, $output, $status) = @$d; + $td->runtest("numeric range $range", + {$td->COMMAND => ['qpdf', '-- test-numrange=' . $range], + $td->FILTER => "grep 'numeric range'"}, + {$td->STRING => $output . "\n", $td->EXIT_STATUS => $status}, + $td->NORMALIZE_NEWLINES); +} + +# ---------- +$td->notify("--- Merging and Splitting ---"); +$n_tests += 6; + +# Select pages from the same file multiple times including selecting +# twice from an encrypted file and specifying the password only the +# first time. The file 20-pages.pdf is specified with two different +# paths to duplicate a page. +my $pages_options = "--pages page-labels-and-outlines.pdf 1,3,5-7,z" . + " 20-pages.pdf --password=user z-15" . + " page-labels-and-outlines.pdf 12" . + " 20-pages.pdf 10" . + " ./20-pages.pdf --password=owner 10" . + " minimal.pdf 1 --"; + +$td->runtest("merge three files", + {$td->COMMAND => "qpdf page-labels-and-outlines.pdf a.pdf" . + " $pages_options --static-id"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); +# Manually verified about this file: make sure that outline entries +# that pointed to pages that were preserved still work in the copy, +# and verify that all pages are as expected. page-labels-and-outlines +# as well as 20-pages have text on page n (from 1) that shows its page +# position from 0, so page 1 says it's page 0. +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "merge-three-files-1.pdf"}); +# Select the same pages but add them to an empty file +$td->runtest("merge three files", + {$td->COMMAND => "qpdf --empty a.pdf" . + " $pages_options --static-id"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); +# Manually verified about this file: it has the same pages but does +# not contain outlines, page labels, or other things from the original +# file. +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "merge-three-files-2.pdf"}); +$td->runtest("avoid respecification of password", + {$td->COMMAND => + "qpdf --empty a.pdf --copy-encryption=20-pages.pdf" . + " --encryption-file-password=user" . + " --pages 20-pages.pdf 1,z -- --static-id"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "pages-copy-encryption.pdf"}); +# ---------- +$td->notify("--- PDF From Scratch ---"); +$n_tests += 2; + +$td->runtest("basic qpdf from scratch", + {$td->COMMAND => "pdf_from_scratch 0"}, + {$td->STRING => "test 0 done\n", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "from-scratch-0.pdf"}); +# ---------- +$td->notify("--- Copy Foreign Objects ---"); +$n_tests += 7; + +foreach my $d ([25, 1], [26, 2], [27, 3]) +{ + my ($testn, $outn) = @$d; + $td->runtest("copy objects $outn", + {$td->COMMAND => "test_driver $testn" . + " copy-foreign-objects-in.pdf minimal.pdf"}, + {$td->STRING => "test $testn done\n", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + $td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "copy-foreign-objects-out$outn.pdf"}); +} +$td->runtest("copy objects error", + {$td->COMMAND => "test_driver 28" . + " copy-foreign-objects-in.pdf minimal.pdf"}, + {$td->FILE => "copy-foreign-objects-errors.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +# ---------- +$td->notify("--- Error Condition Tests ---"); +# $n_tests incremented after initialization of badfiles below. + +my @badfiles = ("not a PDF file", # 1 + "no startxref", # 2 + "bad primary xref offset", # 3 + "invalid xref syntax", # 4 + "invalid xref entry", # 5 + "free table inconsistency", # 6 + "no trailer dictionary", # 7 + "bad secondary xref", # 8 + "no /Size in trailer", # 9 + "/Size not integer", # 10 + "/Prev not integer", # 11 + "/Size inconsistency", # 12 + "bad {", # 13 + "bad }", # 14 + "bad ]", # 15 + "bad >>", # 16 + "odd number of dictionary items", # 17 + "bad )", # 18 + "bad >", # 19 + "invalid hexstring character", # 20 + "invalid name token", # 21 + "no /Length for stream dictionary", # 22 + "/Length not integer", # 23 + "expected endstream", # 24 + "bad obj declaration (objid)", # 25 + "bad obj declaration (generation)", # 26 + "bad obj declaration (obj)", # 27 + "expected endobj", # 28 + "null in name", # 29 + "invalid stream /Filter", # 30 + "unknown stream /Filter", # 31 + "obj/gen mismatch", # 32 + "invalid stream /Filter and xref", # 33 + "obj/gen in wrong place", # 34 + "object stream of wrong type", # 35 + ); + +$n_tests += @badfiles + 5; + +# Test 6 contains errors in the free table consistency, but we no +# longer have any consistency check for this since it is not important +# neither Acrobat nor other PDF viewers really care. Tests 12 and 28 +# have error conditions that used to be fatal but are now considered +# non-fatal. +my %badtest_overrides = (6 => 0, 12 => 0, 28 => 0, 31 => 0); +for (my $i = 1; $i <= scalar(@badfiles); ++$i) +{ + my $status = $badtest_overrides{$i}; + $status = 2 unless defined $status; + $td->runtest($badfiles[$i-1], + {$td->COMMAND => "test_driver 0 bad$i.pdf"}, + {$td->FILE => "bad$i.out", + $td->EXIT_STATUS => $status}, + $td->NORMALIZE_NEWLINES); +} + +$td->runtest("C API: errors", + {$td->COMMAND => "qpdf-ctest 2 bad1.pdf '' a.pdf"}, + {$td->FILE => "c-read-errors.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("C API: warnings and errors", + {$td->COMMAND => "qpdf-ctest 2 bad17.pdf '' a.pdf"}, + {$td->FILE => "c-read-warnings-and-errors.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("C API: errors writing", + {$td->COMMAND => "qpdf-ctest 2 bad30.pdf '' a.pdf"}, + {$td->FILE => "c-write-errors.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("C API: errors and warnings writing", + {$td->COMMAND => "qpdf-ctest 2 bad33.pdf '' a.pdf"}, + {$td->FILE => "c-write-warnings-and-errors.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("C API: no recovery", + {$td->COMMAND => "qpdf-ctest 10 bad33.pdf '' a.pdf"}, + {$td->FILE => "c-no-recovery.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +show_ntests(); +# ---------- +$td->notify("--- Recovery Tests ---"); +$n_tests += @badfiles + 8; + +# Recovery tests. These are mostly after-the-fact -- when recovery +# was implemented, some degree of recovery was possible on many of the +# files. Mostly the recovery does not actually repair the error, +# though in some cases it may. Acrobat Reader would not be able to +# recover any of these files any better. +my %recover_failures = (); +for (1, 7, 13..21, 24, 29..30, 33, 35) +{ + $recover_failures{$_} = 1; +} +for (my $i = 1; $i <= scalar(@badfiles); ++$i) +{ + my $status = 0; + if (exists $recover_failures{$i}) + { + $status = 2; + } + $td->runtest("recover " . $badfiles[$i-1], + {$td->COMMAND => "test_driver 1 bad$i.pdf"}, + {$td->FILE => "bad$i-recover.out", + $td->EXIT_STATUS => $status}, + $td->NORMALIZE_NEWLINES); +} + +# This heifer file was a real file that contained errors that Acrobat +# Reader can recover. We can recover it too. +$td->runtest("recover heifer file", + {$td->COMMAND => "qpdf --static-id --no-original-object-ids" . + " -qdf heifer.pdf a.pdf"}, + {$td->FILE => "heifer.out", + $td->EXIT_STATUS => 3}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "heifer.qdf"}); + +# See if we can recover the cross reference table on a file that has +# been appended to even when it deletes and reuses objects. We can't +# completely do it in the case of deleted objects, but we can get +# mostly there. +$td->runtest("good replaced page contents", + {$td->COMMAND => + "qpdf --static-id -qdf --no-original-object-ids" . + " append-page-content.pdf a.pdf"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "append-page-content-good.qdf"}); +$td->runtest("damaged replaced page contents", + {$td->COMMAND => + "qpdf --static-id -qdf --no-original-object-ids" . + " append-page-content-damaged.pdf a.pdf"}, + {$td->FILE => "append-page-content-damaged.out", + $td->EXIT_STATUS => 3}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "append-page-content-damaged.qdf"}); +$td->runtest("run check on damaged file", + {$td->COMMAND => "qpdf --check append-page-content-damaged.pdf"}, + {$td->FILE => "append-page-content-damaged-check.out", + $td->EXIT_STATUS => 3}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check with C API", + {$td->COMMAND => + "qpdf-ctest 1 append-page-content-damaged.pdf '' ''"}, + {$td->FILE => "append-page-content-damaged-c-check.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +show_ntests(); +# ---------- +$td->notify("--- Basic Parsing Tests ---"); +# $n_tests incremented below after initialization of @goodfiles. + +my @goodfiles = ("implicit null", # 1 + "direct null", # 2 + "unresolved null", # 3 + "indirect null", # 4 + "indirect bool, real", # 5 + "direct bool", # 6 + "integer", # 7 + "real, ASCIIHexDecode", # 8 + "string", # 9 + "array", # 10 + "dictionary", # 11 + "stream", # 12 + "nesting, strings, names", # 13 + "tokenizing pipeline", # 14 + "name", # 15 + "object-stream", # 16 + "hybrid xref", # 17 + "hybrid xref old mode", # 18 + "xref with prev", # 19 + "lots of compressible objects", # 20 + ); + +$n_tests += (3 * @goodfiles) + 6; + +my %goodtest_overrides = ('14' => 3); +my %goodtest_flags = + ('18' => '-ignore-xref-streams', + '20' => '-object-streams=generate', + ); +for (my $i = 1; $i <= scalar(@goodfiles); ++$i) +{ + my $n = $goodtest_overrides{$i} || 1; + $td->runtest("$goodfiles[$i-1]", + {$td->COMMAND => "test_driver $n good$i.pdf"}, + {$td->FILE => "good$i.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + my $xflags = $goodtest_flags{$i} || ''; + check_pdf("create qdf", + "qpdf --static-id -qdf $xflags good$i.pdf", + "good$i.qdf", 0); +} + +check_pdf("no normalization", + "qpdf -qdf --static-id --normalize-content=n good7.pdf", + "good7-not-normalized.qdf", + 0); + +check_pdf("no qdf", + "qpdf --static-id good17.pdf", + "good17-not-qdf.pdf", + 0); + +check_pdf("no recompression", + "qpdf --static-id --stream-data=preserve good17.pdf", + "good17-not-recompressed.pdf", + 0); + +show_ntests(); +# ---------- +$td->notify("--- C API Tests ---"); + +my @capi = ( + [2, 'no options'], + [3, 'normalized content'], + [4, 'ignore xref streams'], + [5, 'linearized'], + [6, 'object streams'], + [7, 'qdf'], + [8, 'no original object ids'], + [9, 'uncompressed streams'], + ); +$n_tests += (2 * @capi) + 3; +foreach my $d (@capi) +{ + my ($n, $description) = @$d; + my $outfile = $description; + $outfile =~ s/ /-/g; + $outfile = "c-$outfile.pdf"; + $td->runtest($description, + {$td->COMMAND => "qpdf-ctest $n hybrid-xref.pdf '' a.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + $td->runtest("check $description", + {$td->FILE => "a.pdf"}, + {$td->FILE => $outfile}); +} +$td->runtest("write to bad file name", + {$td->COMMAND => "qpdf-ctest 2 hybrid-xref.pdf '' /:a:/:b:"}, + {$td->REGEXP => "error: open /:a:/:b:: .*", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("write damaged to bad file name", + {$td->COMMAND => "qpdf-ctest 2 append-page-content-damaged.pdf" . + " '' /:a:/:b:"}, + {$td->REGEXP => + "warning:(?s:.*)\n" . + "error: open /:a:/:b:: .*", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("write damaged", + {$td->COMMAND => "qpdf-ctest 2 append-page-content-damaged.pdf" . + " '' a.pdf"}, + {$td->FILE => "c-write-damaged.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +show_ntests(); +# ---------- +$td->notify("--- Object Stream Tests ---"); +$n_tests += (36 * 4) + (12 * 2); +$n_compare_pdfs += 36; + +for (my $n = 16; $n <= 19; ++$n) +{ + my $in = "good$n.pdf"; + foreach my $flags ('-object-streams=disable', + '-object-streams=preserve', + '-object-streams=generate') + { + foreach my $qdf ('-qdf', '', '-encrypt "" x 128 --') + { + # 4 tests + 1 compare_pdfs * 36 cases + # 2 additional tests * 12 cases + $td->runtest("object stream mode", + {$td->COMMAND => + "qpdf --static-id $flags $qdf $in a.pdf"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); + compare_pdfs("good$n.pdf", "a.pdf"); + if ($qdf eq '-qdf') + { + $td->runtest("fix-qdf identity check", + {$td->COMMAND => "fix-qdf a.pdf >| b.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + $td->runtest("compare files", + {$td->FILE => "a.pdf"}, + {$td->FILE => "b.pdf"}); + } + $td->runtest("convert to qdf", + {$td->COMMAND => + "qpdf --static-id --no-original-object-ids" . + " -qdf -decrypt" . + " -object-streams=disable $in a.qdf"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); + $td->runtest("convert output to qdf", + {$td->COMMAND => + "qpdf --static-id --no-original-object-ids" . + " -qdf -object-streams=disable a.pdf b.qdf"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); + $td->runtest("compare files", + {$td->FILE => "a.qdf"}, + {$td->FILE => "b.qdf"}); + } + } + flush_tiff_cache(); +} + +show_ntests(); +# ---------- +$td->notify("--- Specific File Tests ---"); +$n_tests += 4; +$n_compare_pdfs += 1; + +# Special PDF files that caused problems at some point + +# This file is a PDF 1.1 file with /# as a name and with +# inconsistencies in its free table. It also has LZW streams that +# happen to test boundary conditions in the LZW decoder. +$td->runtest("old and complex", + {$td->COMMAND => "qpdf --check old-and-complex.pdf"}, + {$td->FILE => "old-and-complex-check.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("old and complex (C API)", + {$td->COMMAND => "qpdf-ctest 1 old-and-complex.pdf '' ''"}, + {$td->FILE => "old-and-complex-c-check.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("convert to qdf", + {$td->COMMAND => "qpdf --qdf old-and-complex.pdf a.qdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + +compare_pdfs("old-and-complex.pdf", "a.qdf"); + +$td->runtest("damaged stream", + {$td->COMMAND => "qpdf --check damaged-stream.pdf"}, + {$td->FILE => "damaged-stream.out", $td->EXIT_STATUS => 3}, + $td->NORMALIZE_NEWLINES); + +show_ntests(); +# ---------- +$td->notify("--- Mutability Tests ---"); +$n_tests += 4; + +$td->runtest("no normalization", + {$td->COMMAND => "test_driver 4 test4-1.pdf"}, + {$td->FILE => "test4-1.qdf", + $td->EXIT_STATUS => 0}); + +$td->runtest("object ordering", + {$td->COMMAND => "test_driver 4 test4-4.pdf"}, + {$td->FILE => "test4-4.qdf", + $td->EXIT_STATUS => 0}); + +$td->runtest("loop detected", + {$td->COMMAND => "test_driver 4 test4-2.pdf"}, + {$td->FILE => "test4-2.out", + $td->EXIT_STATUS => 2}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("stream detected", + {$td->COMMAND => "test_driver 4 test4-3.pdf"}, + {$td->FILE => "test4-3.out", + $td->EXIT_STATUS => 2}, + $td->NORMALIZE_NEWLINES); + +show_ntests(); +# ---------- +$td->notify("--- Extraction Tests ---"); +$n_tests += 11; + +$td->runtest("show xref", + {$td->COMMAND => "qpdf encrypted-with-images.pdf" . + " --show-xref"}, + {$td->FILE => "show-xref.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("show pages", + {$td->COMMAND => "qpdf encrypted-with-images.pdf" . + " --show-pages"}, + {$td->FILE => "show-pages.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("show-pages-images", + {$td->COMMAND => "qpdf encrypted-with-images.pdf" . + " --show-pages --with-images"}, + {$td->FILE => "show-pages-images.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("show-page-1", + {$td->COMMAND => "qpdf encrypted-with-images.pdf" . + " --show-object=5,0"}, + {$td->FILE => "show-page-1.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("show-page-1-content-raw", + {$td->COMMAND => "qpdf encrypted-with-images.pdf" . + " --show-object=7 --raw-stream-data"}, + {$td->FILE => "show-page-1-content-raw.out", + $td->EXIT_STATUS => 0}); + +$td->runtest("show-page-1-content-filtered", + {$td->COMMAND => "qpdf encrypted-with-images.pdf" . + " --show-object=7 --filtered-stream-data"}, + {$td->FILE => "show-page-1-content-filtered.out", + $td->EXIT_STATUS => 0}); + +$td->runtest("show-page-1-content-normalized", + {$td->COMMAND => "qpdf encrypted-with-images.pdf" . + " --show-object=7,0 --filtered-stream-data --normalize-content=y"}, + {$td->FILE => "show-page-1-content-normalized.out", + $td->EXIT_STATUS => 0}); + +$td->runtest("show-page-1-image", + {$td->COMMAND => "qpdf encrypted-with-images.pdf" . + " --show-object=8 --raw-stream-data"}, + {$td->FILE => "show-page-1-image.out", + $td->EXIT_STATUS => 0}); + +$td->runtest("unfilterable stream data", + {$td->COMMAND => "qpdf encrypted-with-images.pdf" . + " --show-object=8 --filtered-stream-data"}, + {$td->FILE => "show-unfilterable.out", + $td->EXIT_STATUS => 2}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("show-xref-by-id", + {$td->COMMAND => "qpdf encrypted-with-images.pdf" . + " --show-object=12"}, + {$td->FILE => "show-xref-by-id.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("show-xref-by-id-filtered", + {$td->COMMAND => "qpdf encrypted-with-images.pdf" . + " --show-object=12 --filtered-stream-data"}, + {$td->FILE => "show-xref-by-id-filtered.out", + $td->EXIT_STATUS => 0}); + +show_ntests(); +# ---------- +$td->notify("--- Clear-text Metadata Tests ---"); +$n_tests += 58; + +# args: file, exp_encrypted, exp_cleartext +check_metadata("compressed-metadata.pdf", 0, 0); +check_metadata("enc-base.pdf", 0, 1); + +foreach my $f (qw(compressed-metadata.pdf enc-base.pdf)) +{ + foreach my $w (qw(compress preserve)) + { + $td->runtest("$w streams", + {$td->COMMAND => "qpdf --stream-data=$w $f a.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + check_metadata("a.pdf", 0, 1); + $td->runtest("encrypt normally", + {$td->COMMAND => + "qpdf --encrypt '' '' 128 -- a.pdf b.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + check_metadata("b.pdf", 1, 0); + unlink "b.pdf"; + $td->runtest("encrypt V4", + {$td->COMMAND => + "qpdf --encrypt '' '' 128 --force-V4 -- a.pdf b.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + check_metadata("b.pdf", 1, 0); + unlink "b.pdf"; + $td->runtest("encrypt with cleartext metadata", + {$td->COMMAND => + "qpdf --encrypt '' '' 128 --cleartext-metadata --" . + " a.pdf b.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + check_metadata("b.pdf", 1, 1); + $td->runtest("preserve encryption", + {$td->COMMAND => "qpdf b.pdf c.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + check_metadata("c.pdf", 1, 1); + unlink "b.pdf", "c.pdf"; + $td->runtest("encrypt with aes and cleartext metadata", + {$td->COMMAND => + "qpdf --encrypt '' '' 128" . + " --cleartext-metadata --use-aes=y -- a.pdf b.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + check_metadata("b.pdf", 1, 1); + $td->runtest("preserve encryption", + {$td->COMMAND => "qpdf b.pdf c.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + check_metadata("c.pdf", 1, 1); + unlink "b.pdf", "c.pdf"; + } +} + +show_ntests(); +# ---------- +$td->notify("--- Linearization Tests ---"); +# $n_tests incremented after initialization of @linearized_files and +# @to_linearize. + +# *'ed files were linearized with Pdlin. +my @linearized_files = + ('lin0', # not linearized + 'lin1', # * outlines, page labels, pdlin + 'lin2', # * lin1 with null and newline + 'lin3', # same file saved with acrobat + 'lin4', # * lin1 with no /PageMode + 'lin5', # lin3 with embedded thumbnails + 'lin6', # * lin5 with pdlin + 'lin7', # lin5 with /PageMode /UseThumbs + 'lin8', # * lin7 with pdlin + 'lin9', # * shared objects, indirect null + 'badlin1', # parameter dictionary errors + ); + +my @to_linearize = + ('lin-special', # lots of weird cases -- see file comments + 'delete-and-reuse', # deleted, reused objects + 'lin-delete-and-reuse', # linearized, then delete and reuse + 'object-stream', # contains object streams + 'hybrid-xref', # contains both xref tables and streams + @linearized_files, # we should be able to relinearize + ); + +$n_tests += @linearized_files + 6; +$n_tests += (3 * @to_linearize * 5) + 6; + +foreach my $base (@linearized_files) +{ + $td->runtest("dump linearization: $base", + {$td->COMMAND => "qpdf --show-linearization $base.pdf"}, + {$td->FILE => "$base.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +} + +# Check normal modified and linearized modified files, making sure +# that their qdf files are identical. The next two tests have the +# same expected output files and different input files. +check_pdf("modified", + "qpdf --static-id --qdf --no-original-object-ids" . + " delete-and-reuse.pdf", "delete-and-reuse.qdf", + 0); +check_pdf("linearized and modified", + "qpdf --static-id --qdf --no-original-object-ids" . + " lin-delete-and-reuse.pdf", "delete-and-reuse.qdf", # same output + 0); + +$td->runtest("check linearized and modified", + {$td->COMMAND => "qpdf --check lin-delete-and-reuse.pdf"}, + {$td->FILE => "lin-delete-and-reuse-check.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check multiple modifications", + {$td->COMMAND => "qpdf --check multiple-mods.pdf"}, + {$td->FILE => "multiple-mods-check.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +foreach my $base (@to_linearize) +{ + foreach my $omode (qw(disable preserve generate)) + { + my $oarg = "-object-streams=$omode"; + $td->runtest("linearize $base ($omode)", + {$td->COMMAND => + "qpdf -linearize $oarg --static-id $base.pdf a.pdf"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); + $td->runtest("check linearization", + {$td->COMMAND => "qpdf --check-linearization a.pdf"}, + {$td->STRING => "a.pdf: no linearization errors\n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + # Relinearizing twice should produce identical results. We + # have to do it twice because, if objects changed ordering + # during the original linearization, the hint tables won't + # exactly match. This is because object identifiers are + # inserted into the hint table in their original order since + # we don't yet have renumbering information when we compute + # the table values. + $td->runtest("relinearize $base 1", + {$td->COMMAND => + "qpdf -linearize --static-id a.pdf b.pdf"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); + $td->runtest("relinearize $base 2", + {$td->COMMAND => + "qpdf -linearize --static-id b.pdf c.pdf"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); + $td->runtest("compare files ($omode)", + {$td->FILE => "b.pdf"}, + {$td->FILE => "c.pdf"}); + if (($base eq 'lin-special') || ($base eq 'object-stream')) + { + $td->runtest("check $base ($omode)", + {$td->FILE => "a.pdf"}, + {$td->FILE => "$base.$omode.exp"}); + } + } +} + +show_ntests(); +# ---------- +$td->notify("--- Encryption Tests ---"); +# $n_tests incremented below + +# The enc-file.pdf files were encrypted using Acrobat 5.0, not the +# qpdf library. The files are decrypted using qpdf, then re-encrypted +# using qpdf with specific flags. The /P value is checked. The +# resulting files were saved and manually checked with Acrobat 5.0 to +# ensure that the security settings were as intended. + +# Values: basename, password, encryption flags, /P Encrypt key, +# extract-for-accessibility, extract-for-any-purpose, +# print-low-res, print-high-res, modify-assembly, modify-forms, +# modify-annotate, modify-other, modify-all +my @encrypted_files = + (['base', ''], + ['R3,V2', '', + '-accessibility=n -extract=n -print=full -modify=all', -532, + 0, 0, 1, 1, 1, 1, 1, 1, 1], + ['R3,V2,U=view', 'view', + '-accessibility=y -extract=n -print=none -modify=none', -3392, + 1, 0, 0, 0, 0, 0, 0, 0, 0], + ['R3,V2,O=master', 'master', + '-accessibility=n -extract=y -print=none -modify=annotate', -2576, + 0, 1, 0, 0, 1, 1, 1, 0, 0], + ['R3,V2,O=master', '', + '-accessibility=n -extract=n -print=none -modify=form', -2624, + 0, 0, 0, 0, 1, 1, 0, 0, 0], + ['R3,V2,U=view,O=master', 'view', + '-accessibility=n -extract=n -print=none -modify=assembly', -2880, + 0, 0, 0, 0, 1, 0, 0, 0, 0], + ['R3,V2,U=view,O=master', 'master', + '-accessibility=n -print=low', -2564, + 0, 1, 1, 0, 1, 1, 1, 1, 1], + ['R2,V1', '', + '-print=n -modify=n -extract=n -annotate=n', -64, + 0, 0, 0, 0, 0, 0, 0, 0, 0], + ['R2,V1,U=view', 'view', + '-print=y -modify=n -extract=n -annotate=n', -60, + 0, 0, 1, 1, 0, 0, 0, 0, 0], + ['R2,V1,O=master', 'master', + '-print=n -modify=y -extract=n -annotate=n', -56, + 0, 0, 0, 0, 1, 0, 0, 1, 0], + ['R2,V1,O=master', '', + '-print=n -modify=n -extract=y -annotate=n', -48, + 1, 1, 0, 0, 0, 0, 0, 0, 0], + ['R2,V1,U=view,O=master', 'view', + '-print=n -modify=n -extract=n -annotate=y', -32, + 0, 0, 0, 0, 0, 1, 1, 0, 0], + ['R2,V1,U=view,O=master', 'master', + '', -4, + 1, 1, 1, 1, 1, 1, 1, 1, 1], + ['long-password', 'asdf asdf asdf asdf asdf asdf qwer'], + ['long-password', 'asdf asdf asdf asdf asdf asdf qw']); + +$n_tests += 3 + (2 * (@encrypted_files)) + (6 * (@encrypted_files - 3)) + 9; + +$td->runtest("encrypted file", + {$td->COMMAND => "test_driver 2 U25A0.pdf"}, + {$td->FILE => "encrypted1.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("preserve encryption", + {$td->COMMAND => "qpdf U25A0.pdf U25A0.enc"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); +$td->runtest("recheck encrypted file", + {$td->COMMAND => "test_driver 2 U25A0.enc"}, + {$td->FILE => "encrypted1.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +foreach my $d (@encrypted_files) +{ + my ($file, $pass, $xeflags, $P, + $accessible, $extract, $printlow, $printhigh, + $modifyassembly, $modifyform, $modifyannot, + $modifyother, $modifyall) = @$d; + + my $f = sub { $_[0] ? "allowed" : "not allowed" }; + my $enc_details = + "extract for accessibility: " . &$f($accessible) . "\n" . + "extract for any purpose: " . &$f($extract) . "\n" . + "print low resolution: " . &$f($printlow) . "\n" . + "print high resolution: " . &$f($printhigh) . "\n" . + "modify document assembly: " . &$f($modifyassembly) . "\n" . + "modify forms: " . &$f($modifyform) . "\n" . + "modify annotations: " . &$f($modifyannot) . "\n" . + "modify other: " . &$f($modifyother) . "\n" . + "modify anything: " . &$f($modifyall) . "\n"; + + # Test writing to stdout + $td->runtest("decrypt $file", + {$td->COMMAND => + "qpdf --static-id -qdf --no-original-object-ids" . + " --password=\"$pass\" enc-$file.pdf -" . + " > $file.enc"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); + if ($file eq 'base') + { + $td->runtest("check ID", + {$td->COMMAND => "perl check-ID.pl $file.enc"}, + {$td->STRING => "ID okay\n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + } + else + { + $td->runtest("check against base", + {$td->COMMAND => "./diff-encrypted base.enc $file.enc"}, + {$td->STRING => "okay\n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + } + if ($file =~ m/^R(\d),V(\d)(?:,U=(\w+))?(?:,O=(\w+))?$/) + { + my $R = $1; + my $V = $2; + my $upass = $3 || ""; + my $opass = $4 || ""; + my $bits = (($V == 2) ? 128 : 40); + + my $eflags = "-encrypt \"$upass\" \"$opass\" $bits $xeflags --"; + $td->runtest("encrypt $file", + {$td->COMMAND => + "qpdf --static-id --no-original-object-ids -qdf" . + " $eflags $file.enc $file.enc2"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); + $td->runtest("check /P", + {$td->COMMAND => + "qpdf --show-encryption --password=\"$pass\"" . + " $file.enc2"}, + {$td->STRING => "R = $R\nP = $P\n" . + "User password = $upass\n$enc_details", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + $td->runtest("decrypt again", + {$td->COMMAND => + "qpdf --static-id --no-original-object-ids -qdf" . + " --password=\"$pass\"" . + " $file.enc2 $file.enc3"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); + $td->runtest("compare", + {$td->FILE => "$file.enc"}, + {$td->FILE => "$file.enc3"}); + $td->runtest("preserve encryption", + {$td->COMMAND => + "qpdf --static-id --password=\"$pass\"" . + " $file.enc2 $file.enc4"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); + $td->runtest("check /P", + {$td->COMMAND => + "qpdf --show-encryption --password=\"$pass\"" . + " $file.enc4"}, + {$td->STRING => "R = $R\nP = $P\n" . + "User password = $upass\n$enc_details", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + } +} + +$td->runtest("non-encrypted", + {$td->COMMAND => "qpdf --show-encryption enc-base.pdf"}, + {$td->STRING => "File is not encrypted\n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +$td->runtest("invalid password", + {$td->COMMAND => "qpdf -qdf --password=quack" . + " enc-R2,V1,U=view.pdf a.qdf"}, + {$td->STRING => "enc-R2,V1,U=view.pdf: invalid password\n", + $td->EXIT_STATUS => 2}, + $td->NORMALIZE_NEWLINES); +$td->runtest("C API: invalid password", + {$td->COMMAND => "qpdf-ctest 2 enc-R2,V1,U=view.pdf '' a.qdf"}, + {$td->FILE => "c-invalid-password.out", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +my @cenc = ( + [11, 'hybrid-xref.pdf', "''", 'r2', ""], + [12, 'hybrid-xref.pdf', "''", 'r3', ""], + [15, 'hybrid-xref.pdf', "''", 'r4', ""], + [13, 'c-r2.pdf', 'user1', 'decrypt with user', + "user password: user1\n"], + [13, 'c-r3.pdf', 'owner2', 'decrypt with owner', + "user password: user2\n"], + ); +$n_tests += 2 * @cenc; + +foreach my $d (@cenc) +{ + my ($n, $infile, $pass, $description, $output) = @$d; + my $outfile = $description; + $outfile =~ s/ /-/g; + $outfile = "c-$outfile.pdf"; + $td->runtest("C API encryption: $description", + {$td->COMMAND => "qpdf-ctest $n $infile $pass a.pdf"}, + {$td->STRING => $output, $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + $td->runtest("check $description", + {$td->FILE => "a.pdf"}, + {$td->FILE => $outfile}); +} + +# Test combinations of linearization and encryption. Note that we do +# content checks on encrypted and linearized files in various +# combinations below. Here we are just making sure that they are +# linearized and/or encrypted as desired. + +$td->runtest("linearize encrypted file", + {$td->COMMAND => "qpdf --linearize U25A0.pdf a.pdf"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); +$td->runtest("check encryption", + {$td->COMMAND => "qpdf --show-encryption a.pdf", + $td->FILTER => "grep -v allowed"}, + {$td->STRING => "R = 2\nP = -60\nUser password = \n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check linearization", + {$td->COMMAND => "qpdf --check-linearization a.pdf"}, + {$td->STRING => "a.pdf: no linearization errors\n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("linearize and encrypt file", + {$td->COMMAND => + "qpdf --linearize --encrypt user owner 128 --use-aes=y --" . + " lin-special.pdf a.pdf"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); +$td->runtest("check encryption", + {$td->COMMAND => "qpdf --show-encryption --password=owner a.pdf", + $td->FILTER => "grep -v allowed | grep -v method"}, + {$td->STRING => "R = 4\nP = -4\nUser password = user\n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check linearization", + {$td->COMMAND => "qpdf --check-linearization" . + " --password=user a.pdf"}, + {$td->STRING => "a.pdf: no linearization errors\n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +# Test AES encryption in various ways. +$n_tests += 14; +$td->runtest("encrypt with AES", + {$td->COMMAND => "qpdf --encrypt '' '' 128 --use-aes=y --" . + " enc-base.pdf a.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); +$td->runtest("check encryption", + {$td->COMMAND => "qpdf --show-encryption a.pdf", + $td->FILTER => "grep -v allowed | grep -v method"}, + {$td->STRING => "R = 4\nP = -4\nUser password = \n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("convert original to qdf", + {$td->COMMAND => "qpdf --static-id --no-original-object-ids" . + " --qdf --min-version=1.6 enc-base.pdf a.qdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); +$td->runtest("convert encrypted to qdf", + {$td->COMMAND => "qpdf --static-id --no-original-object-ids" . + " --qdf a.pdf b.qdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); +$td->runtest("compare files", + {$td->FILE => 'a.qdf'}, + {$td->FILE => 'b.qdf'}); +$td->runtest("linearize with AES and object streams", + {$td->COMMAND => "qpdf --encrypt '' '' 128 --use-aes=y --" . + " --linearize --object-streams=generate enc-base.pdf a.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); +$td->runtest("check encryption", + {$td->COMMAND => "qpdf --show-encryption a.pdf", + $td->FILTER => "grep -v allowed | grep -v method"}, + {$td->STRING => "R = 4\nP = -4\nUser password = \n", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("linearize original", + {$td->COMMAND => "qpdf --linearize --object-streams=generate" . + " enc-base.pdf b.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); +$td->runtest("convert linearized original to qdf", + {$td->COMMAND => "qpdf --static-id --no-original-object-ids" . + " --qdf --object-streams=generate --min-version=1.6" . + " b.pdf a.qdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); +$td->runtest("convert encrypted to qdf", + {$td->COMMAND => "qpdf --static-id --no-original-object-ids" . + " --qdf --object-streams=generate a.pdf b.qdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); +$td->runtest("compare files", + {$td->FILE => 'a.qdf'}, + {$td->FILE => 'b.qdf'}); +$td->runtest("force version on aes encrypted", + {$td->COMMAND => "qpdf --force-version=1.4 a.pdf b.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); +$td->runtest("check", + {$td->COMMAND => "qpdf --check b.pdf"}, + {$td->FILE => "aes-forced-check.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("make sure there is no xref stream", + {$td->COMMAND => "grep /ObjStm b.pdf | wc -l"}, + {$td->REGEXP => "\\s*0\\s*", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + +# Look at some actual V4 files +$n_tests += 14; +foreach my $d (['--force-V4', 'V4'], + ['--cleartext-metadata', 'V4-clearmeta'], + ['--use-aes=y', 'V4-aes'], + ['--cleartext-metadata --use-aes=y', 'V4-aes-clearmeta']) +{ + my ($args, $out) = @$d; + $td->runtest("encrypt $args", + {$td->COMMAND => "qpdf --static-aes-iv --static-id" . + " --encrypt '' '' 128 $args -- enc-base.pdf a.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + $td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => "$out.pdf"}); + $td->runtest("show encryption", + {$td->COMMAND => "qpdf --show-encryption a.pdf"}, + {$td->FILE => "$out-encryption.out", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +} +# Crypt Filter +$td->runtest("decrypt with crypt filter", + {$td->COMMAND => "qpdf --decrypt --static-id" . + " metadata-crypt-filter.pdf a.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); +$td->runtest("check output", + {$td->FILE => 'a.pdf'}, + {$td->FILE => 'decrypted-crypt-filter.pdf'}); + +# Copy encryption parameters +$n_tests += 10; +$td->runtest("create reference qdf", + {$td->COMMAND => + "qpdf --qdf --no-original-object-ids minimal.pdf a.qdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); +$td->runtest("create encrypted file", + {$td->COMMAND => + "qpdf --encrypt user owner 128 --use-aes=y --extract=n --" . + " minimal.pdf a.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); +$td->runtest("copy encryption parameters", + {$td->COMMAND => "test_driver 30 minimal.pdf a.pdf"}, + {$td->STRING => "test 30 done\n", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output encryption", + {$td->COMMAND => "qpdf --show-encryption b.pdf --password=owner"}, + {$td->FILE => "copied-encryption.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("convert to qdf", + {$td->COMMAND => + "qpdf --qdf b.pdf b.qdf" . + " --password=owner --no-original-object-ids"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); +$td->runtest("compare qdf", + {$td->COMMAND => "./diff-ignore-ID-version a.qdf b.qdf"}, + {$td->STRING => "okay\n", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("copy encryption with qpdf", + {$td->COMMAND => + "qpdf --copy-encryption=a.pdf". + " --encryption-file-password=user" . + " minimal.pdf c.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("check output encryption", + {$td->COMMAND => "qpdf --show-encryption c.pdf --password=owner"}, + {$td->FILE => "copied-encryption.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +$td->runtest("convert to qdf", + {$td->COMMAND => + "qpdf --qdf c.pdf c.qdf" . + " --password=owner --no-original-object-ids"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); +$td->runtest("compare qdf", + {$td->COMMAND => "./diff-ignore-ID-version a.qdf c.qdf"}, + {$td->STRING => "okay\n", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + + +show_ntests(); +# ---------- +$td->notify("--- Content Preservation Tests ---"); +# $n_tests incremented below + +my @files = ("U25A0.pdf", # encrypted + "inline-images.pdf", + "lin-special.pdf", + "object-stream.pdf", + "hybrid-xref.pdf"); +my @flags = (["-qdf", # 1 + "qdf"], + ["-qdf --normalize-content=n", # 2 + "qdf not normalized"], + ["-qdf --stream-data=preserve", # 3 + "qdf not uncompressed"], + ["-qdf --stream-data=preserve --normalize-content=n", # 4 + "qdf not normalized or uncompressed"], + ["--stream-data=uncompress", # 5 + "uncompresed"], + ["--normalize-content=y", # 6 + "normalized"], + ["--stream-data=uncompress --normalize-content=y", # 7 + "uncompressed and normalized"], + ["-decrypt", # 8 + "decrypted"], + ["-linearize", # 9 + "linearized"], + ["-encrypt \"\" owner 128 --", # 10 + "encrypted"], + ["-linearize -encrypt \"\" o 128 --", # 11 + "linearized and encrypted"], + ["", # 12 + "no arguments"], + ); + +$n_tests += 1 + (@files * @flags * 2 * 3); +$n_compare_pdfs += 1 + (@files * @flags * 2); +$n_acroread += (@files * @flags * 2); + +foreach my $file (@files) +{ + my $base = basename($file, '.pdf'); + + foreach my $o (qw(disable generate)) + { + my $n = 0; + my $oflags = "--object-streams=$o"; + my $odescrip = "os:" . substr($o, 0, 1); + my $osuf = ($o eq 'generate' ? "-ogen" : ""); + foreach my $d (@flags) + { + my ($flags, $fdescrip) = @$d; + ++$n; + system("rm -f *.pnm"); + + $td->runtest("$file ($odescrip $fdescrip)", + {$td->COMMAND => "qpdf $flags $oflags $file a.pdf"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); + + $td->runtest("check status", + {$td->COMMAND => "qpdf --check a.pdf"}, + {$td->FILE => "$base.$n$osuf.check", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + + $td->runtest("check with C API", + {$td->COMMAND => [qw(qpdf-ctest 1 a.pdf), "", ""]}, + {$td->FILE => "$base.$n$osuf.c-check", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + + compare_pdfs($file, "a.pdf"); + + if ($have_acroread) + { + # These tests require Adobe Reader > 7.x to work with + # encrypted files. + $td->runtest("check with Adobe Reader", + {$td->COMMAND => + "acroread -toPostScript -pairs a.pdf 1.ps"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); + } + } + flush_tiff_cache(); + } +} + +# inline-images-cr.pdf is xbkm938-dies.pdf from PDF collection +$td->runtest("convert inline-images-cr to qdf", + {$td->COMMAND => "qpdf --static-id --no-original-object-ids" . + " --qdf inline-images-cr.pdf a.pdf"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + +compare_pdfs("inline-images-cr.pdf", "a.pdf"); + +show_ntests(); +# ---------- +$td->notify("--- fix-qdf Tests ---"); +$n_tests += 4; + +for (my $n = 1; $n <= 2; ++$n) +{ + $td->runtest("fix-qdf $n", + {$td->COMMAND => "fix-qdf fix$n.qdf"}, + {$td->FILE => "fix$n.qdf.out", + $td->EXIT_STATUS => 0}); + + $td->runtest("identity fix-qdf $n", + {$td->COMMAND => "fix-qdf fix$n.qdf.out"}, + {$td->FILE => "fix$n.qdf.out", + $td->EXIT_STATUS => 0}); +} + +show_ntests(); +# ---------- +$td->notify("--- Large File Tests ---"); +my $nlarge = 1; +if (defined $large_file_test_path) +{ + $nlarge = 2; +} +else +{ + $td->notify("--- Skipping tests on actual large files ---"); +} +$n_tests += $nlarge * 13; +for (my $large = 0; $large < $nlarge; ++$large) +{ + if ($large) + { + $td->notify("--- Running tests on actual large files ---"); + } + else + { + $td->notify("--- Running large file tests on small files ---"); + } + my $size = ($large ? "large" : "small"); + my $file = $large ? "$large_file_test_path/a.pdf" : "a.pdf"; + $td->runtest("write test file", + {$td->COMMAND => "test_large_file write $size $file"}, + {$td->FILE => "large_file.out", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + $td->runtest("read test file", + {$td->COMMAND => "test_large_file read $size $file"}, + {$td->FILE => "large_file.out", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + $td->runtest("check", + {$td->COMMAND => "qpdf --suppress-recovery --check $file", + $td->FILTER => "grep -v checking"}, + {$td->FILE => "large_file-check-normal.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + + for my $ostream (0, 1) + { + for my $linearize (0, 1) + { + if (($ostream == 0) && ($linearize == 0)) + { + # Original file has no object streams and is not linearized. + next; + } + my $args = ""; + my $omode = $ostream ? "generate" : "disable"; + my $lin = $linearize ? "--linearize" : ""; + my $newfile = "$file-new"; + + $td->runtest("transform: ostream=$ostream, linearize=$linearize", + {$td->COMMAND => + "qpdf --stream-data=preserve" . + " --object-streams=$omode" . + " $lin $file $newfile"}, + {$td->STRING => "", $td->EXIT_STATUS => 0}); + $td->runtest("read test file", + {$td->COMMAND => + "test_large_file read $size $newfile"}, + {$td->FILE => "large_file.out", $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + my $check_out = + ($linearize + ? ($ostream + ? "large_file-check-ostream-linearized.out" + : "large_file-check-linearized.out") + : ($ostream + ? "large_file-check-ostream.out" + : "large_file-check-normal.out")); + $td->runtest("check: ostream=$ostream, linearize=$linearize", + {$td->COMMAND => + "qpdf --suppress-recovery --check $newfile", + $td->FILTER => "grep -v checking"}, + {$td->FILE => $check_out, $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + unlink $newfile; + } + } + + # Clobber xref + open(F, "+<$file") or die; + seek(F, -50, 2); + my $pos = tell F; + my $buf; + read(F, $buf, 50); + die unless $buf =~ m/^(.*startxref\n)\d+/s; + $pos += length($1); + seek(F, $pos, 0) or die; + print F "oops" or die; + close(F); + + my $cmd = +{$td->COMMAND => "test_large_file read $size $file"}; + if ($large) + { + $cmd->{$td->FILTER} = "sed -e s,$large_file_test_path/,,"; + } + $td->runtest("reconstruct xref table", + $cmd, + {$td->FILE => "large_file_xref_reconstruct.out", + $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); + unlink $file; +} +# ---------- + +cleanup(); + +# See comments at beginning about calculation of number of tests. We +# do it strictly based on static values, not as a by-product of +# running the test suite. +$td->report(calc_ntests()); + +sub calc_ntests +{ + my $result = $n_tests; + if ($have_acroread) + { + $result += $n_acroread; + } + if ($compare_images) + { + $result += 3 * ($n_compare_pdfs); + } + $result; +} + +sub show_ntests +{ + if (0) + { + $td->emphasize("tests so far: ". calc_ntests()); + } +} + +sub check_pdf +{ + my ($description, $command, $output, $status) = @_; + unlink "a.pdf"; + $td->runtest($description, + {$td->COMMAND => "$command a.pdf"}, + {$td->STRING => "", + $td->EXIT_STATUS => $status}); + $td->runtest("check output", + {$td->FILE => "a.pdf"}, + {$td->FILE => $output}); +} + +sub flush_tiff_cache +{ + system("rm -rf tiff-cache"); +} + +sub compare_pdfs +{ + return unless $compare_images; + + my ($f1, $f2, $exp) = @_; + + $exp = 0 unless defined $exp; + + system("rm -rf tif1 tif2"); + + mkdir "tiff-cache", 0777 unless -d "tiff-cache"; + + my $md5_1 = get_md5_checksum($f1); + my $md5_2 = get_md5_checksum($f2); + + mkdir "tif1", 0777 or die; + mkdir "tif2", 0777 or die; + + if (-f "tiff-cache/$md5_1.tif") + { + $td->runtest("get cached original file image", + {$td->COMMAND => "cp tiff-cache/$md5_1.tif tif1/a.tif"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); + } + else + { + # We discard gs's stderr since it has sometimes been known to + # complain about files that are not bad. In particular, gs + # 9.04 can't handle empty xref sections such as those found in + # the hybrid xref cases. We don't really care whether gs + # complains or not as long as it creates correct images. If + # it doesn't create correct images, the test will fail, and we + # can run manually to see the error message. If it does, then + # we don't care about the warning. + $td->runtest("convert original file to image", + {$td->COMMAND => + "(cd tif1;" . + " gs 2>/dev/null -q -dNOPAUSE -sDEVICE=tiff12nc" . + " -sOutputFile=a.tif - < ../$f1)"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); + copy("tif1/a.tif", "tiff-cache/$md5_1.tif"); + } + + if (-f "tiff-cache/$md5_2.tif") + { + $td->runtest("get cached new file image", + {$td->COMMAND => "cp tiff-cache/$md5_2.tif tif2/a.tif"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); + } + else + { + $td->runtest("convert new file to image", + {$td->COMMAND => + "(cd tif2;" . + " gs 2>/dev/null -q -dNOPAUSE -sDEVICE=tiff12nc" . + " -sOutputFile=a.tif - < ../$f2)"}, + {$td->STRING => "", + $td->EXIT_STATUS => 0}); + copy("tif2/a.tif", "tiff-cache/$md5_2.tif"); + } + + $td->runtest("compare images", + {$td->COMMAND => "tiffcmp -t tif1/a.tif tif2/a.tif"}, + {$td->REGEXP => ".*", + $td->EXIT_STATUS => $exp}); + + system("rm -rf tif1 tif2"); +} + +sub check_metadata +{ + my ($file, $exp_encrypted, $exp_cleartext) = @_; + my $out = "encrypted=$exp_encrypted; cleartext=$exp_cleartext\n" . + "test 6 done\n"; + $td->runtest("check metadata: $file", + {$td->COMMAND => "test_driver 6 $file"}, + {$td->STRING => $out, $td->EXIT_STATUS => 0}, + $td->NORMALIZE_NEWLINES); +} + +sub get_md5_checksum +{ + my $file = shift; + open(F, "<$file") or fatal("can't open $file: $!"); + binmode F; + my $digest = Digest::MD5->new->addfile(*F)->hexdigest; + close(F); + $digest; +} + +sub cleanup +{ + system("rm -rf *.ps *.pnm ?.pdf ?.qdf *.enc* tif1 tif2 tiff-cache"); +} diff --git a/qpdf/qtest/qpdf/20-pages.pdf b/qpdf/qtest/qpdf/20-pages.pdf new file mode 100644 index 0000000000000000000000000000000000000000..616ac93049c7a805cc8b0de0d01bca606eb5c710 GIT binary patch literal 7343 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 literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/U25A0.1-ogen.c-check b/qpdf/qtest/qpdf/U25A0.1-ogen.c-check new file mode 100644 index 0000000..7fc743a --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.1-ogen.c-check @@ -0,0 +1,3 @@ +version: 1.5 +linearized: 0 +encrypted: 0 diff --git a/qpdf/qtest/qpdf/U25A0.1-ogen.check b/qpdf/qtest/qpdf/U25A0.1-ogen.check new file mode 100644 index 0000000..f95a8ec --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.1-ogen.check @@ -0,0 +1,6 @@ +checking a.pdf +PDF Version: 1.5 +File is not encrypted +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.1.c-check b/qpdf/qtest/qpdf/U25A0.1.c-check new file mode 100644 index 0000000..757cc85 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.1.c-check @@ -0,0 +1,3 @@ +version: 1.3 +linearized: 0 +encrypted: 0 diff --git a/qpdf/qtest/qpdf/U25A0.1.check b/qpdf/qtest/qpdf/U25A0.1.check new file mode 100644 index 0000000..5da27b2 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.1.check @@ -0,0 +1,6 @@ +checking a.pdf +PDF Version: 1.3 +File is not encrypted +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.10-ogen.c-check b/qpdf/qtest/qpdf/U25A0.10-ogen.c-check new file mode 100644 index 0000000..963cdba --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.10-ogen.c-check @@ -0,0 +1,13 @@ +version: 1.5 +linearized: 0 +encrypted: 1 +user password: +extract for accessibility: 1 +extract for any purpose: 1 +print low resolution: 1 +print high resolution: 1 +modify document assembly: 1 +modify forms: 1 +modify annotations: 1 +modify other: 1 +modify anything: 1 diff --git a/qpdf/qtest/qpdf/U25A0.10-ogen.check b/qpdf/qtest/qpdf/U25A0.10-ogen.check new file mode 100644 index 0000000..331cd70 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.10-ogen.check @@ -0,0 +1,17 @@ +checking a.pdf +PDF Version: 1.5 +R = 3 +P = -4 +User password = +extract for accessibility: allowed +extract for any purpose: allowed +print low resolution: allowed +print high resolution: allowed +modify document assembly: allowed +modify forms: allowed +modify annotations: allowed +modify other: allowed +modify anything: allowed +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.10.c-check b/qpdf/qtest/qpdf/U25A0.10.c-check new file mode 100644 index 0000000..628b5fa --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.10.c-check @@ -0,0 +1,13 @@ +version: 1.4 +linearized: 0 +encrypted: 1 +user password: +extract for accessibility: 1 +extract for any purpose: 1 +print low resolution: 1 +print high resolution: 1 +modify document assembly: 1 +modify forms: 1 +modify annotations: 1 +modify other: 1 +modify anything: 1 diff --git a/qpdf/qtest/qpdf/U25A0.10.check b/qpdf/qtest/qpdf/U25A0.10.check new file mode 100644 index 0000000..921e171 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.10.check @@ -0,0 +1,17 @@ +checking a.pdf +PDF Version: 1.4 +R = 3 +P = -4 +User password = +extract for accessibility: allowed +extract for any purpose: allowed +print low resolution: allowed +print high resolution: allowed +modify document assembly: allowed +modify forms: allowed +modify annotations: allowed +modify other: allowed +modify anything: allowed +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.11-ogen.c-check b/qpdf/qtest/qpdf/U25A0.11-ogen.c-check new file mode 100644 index 0000000..ef82b7f --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.11-ogen.c-check @@ -0,0 +1,13 @@ +version: 1.5 +linearized: 1 +encrypted: 1 +user password: +extract for accessibility: 1 +extract for any purpose: 1 +print low resolution: 1 +print high resolution: 1 +modify document assembly: 1 +modify forms: 1 +modify annotations: 1 +modify other: 1 +modify anything: 1 diff --git a/qpdf/qtest/qpdf/U25A0.11-ogen.check b/qpdf/qtest/qpdf/U25A0.11-ogen.check new file mode 100644 index 0000000..aae0b3a --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.11-ogen.check @@ -0,0 +1,17 @@ +checking a.pdf +PDF Version: 1.5 +R = 3 +P = -4 +User password = +extract for accessibility: allowed +extract for any purpose: allowed +print low resolution: allowed +print high resolution: allowed +modify document assembly: allowed +modify forms: allowed +modify annotations: allowed +modify other: allowed +modify anything: allowed +File is linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.11.c-check b/qpdf/qtest/qpdf/U25A0.11.c-check new file mode 100644 index 0000000..a528204 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.11.c-check @@ -0,0 +1,13 @@ +version: 1.4 +linearized: 1 +encrypted: 1 +user password: +extract for accessibility: 1 +extract for any purpose: 1 +print low resolution: 1 +print high resolution: 1 +modify document assembly: 1 +modify forms: 1 +modify annotations: 1 +modify other: 1 +modify anything: 1 diff --git a/qpdf/qtest/qpdf/U25A0.11.check b/qpdf/qtest/qpdf/U25A0.11.check new file mode 100644 index 0000000..74a360c --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.11.check @@ -0,0 +1,17 @@ +checking a.pdf +PDF Version: 1.4 +R = 3 +P = -4 +User password = +extract for accessibility: allowed +extract for any purpose: allowed +print low resolution: allowed +print high resolution: allowed +modify document assembly: allowed +modify forms: allowed +modify annotations: allowed +modify other: allowed +modify anything: allowed +File is linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.12-ogen.c-check b/qpdf/qtest/qpdf/U25A0.12-ogen.c-check new file mode 100644 index 0000000..11d6d63 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.12-ogen.c-check @@ -0,0 +1,13 @@ +version: 1.5 +linearized: 0 +encrypted: 1 +user password: +extract for accessibility: 0 +extract for any purpose: 0 +print low resolution: 1 +print high resolution: 1 +modify document assembly: 0 +modify forms: 0 +modify annotations: 0 +modify other: 0 +modify anything: 0 diff --git a/qpdf/qtest/qpdf/U25A0.12-ogen.check b/qpdf/qtest/qpdf/U25A0.12-ogen.check new file mode 100644 index 0000000..4e945d5 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.12-ogen.check @@ -0,0 +1,17 @@ +checking a.pdf +PDF Version: 1.5 +R = 2 +P = -60 +User password = +extract for accessibility: not allowed +extract for any purpose: not allowed +print low resolution: allowed +print high resolution: allowed +modify document assembly: not allowed +modify forms: not allowed +modify annotations: not allowed +modify other: not allowed +modify anything: not allowed +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.12.c-check b/qpdf/qtest/qpdf/U25A0.12.c-check new file mode 100644 index 0000000..b37fa75 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.12.c-check @@ -0,0 +1,13 @@ +version: 1.3 +linearized: 0 +encrypted: 1 +user password: +extract for accessibility: 0 +extract for any purpose: 0 +print low resolution: 1 +print high resolution: 1 +modify document assembly: 0 +modify forms: 0 +modify annotations: 0 +modify other: 0 +modify anything: 0 diff --git a/qpdf/qtest/qpdf/U25A0.12.check b/qpdf/qtest/qpdf/U25A0.12.check new file mode 100644 index 0000000..581b48b --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.12.check @@ -0,0 +1,17 @@ +checking a.pdf +PDF Version: 1.3 +R = 2 +P = -60 +User password = +extract for accessibility: not allowed +extract for any purpose: not allowed +print low resolution: allowed +print high resolution: allowed +modify document assembly: not allowed +modify forms: not allowed +modify annotations: not allowed +modify other: not allowed +modify anything: not allowed +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.2-ogen.c-check b/qpdf/qtest/qpdf/U25A0.2-ogen.c-check new file mode 100644 index 0000000..7fc743a --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.2-ogen.c-check @@ -0,0 +1,3 @@ +version: 1.5 +linearized: 0 +encrypted: 0 diff --git a/qpdf/qtest/qpdf/U25A0.2-ogen.check b/qpdf/qtest/qpdf/U25A0.2-ogen.check new file mode 100644 index 0000000..f95a8ec --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.2-ogen.check @@ -0,0 +1,6 @@ +checking a.pdf +PDF Version: 1.5 +File is not encrypted +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.2.c-check b/qpdf/qtest/qpdf/U25A0.2.c-check new file mode 100644 index 0000000..757cc85 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.2.c-check @@ -0,0 +1,3 @@ +version: 1.3 +linearized: 0 +encrypted: 0 diff --git a/qpdf/qtest/qpdf/U25A0.2.check b/qpdf/qtest/qpdf/U25A0.2.check new file mode 100644 index 0000000..5da27b2 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.2.check @@ -0,0 +1,6 @@ +checking a.pdf +PDF Version: 1.3 +File is not encrypted +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.3-ogen.c-check b/qpdf/qtest/qpdf/U25A0.3-ogen.c-check new file mode 100644 index 0000000..7fc743a --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.3-ogen.c-check @@ -0,0 +1,3 @@ +version: 1.5 +linearized: 0 +encrypted: 0 diff --git a/qpdf/qtest/qpdf/U25A0.3-ogen.check b/qpdf/qtest/qpdf/U25A0.3-ogen.check new file mode 100644 index 0000000..f95a8ec --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.3-ogen.check @@ -0,0 +1,6 @@ +checking a.pdf +PDF Version: 1.5 +File is not encrypted +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.3.c-check b/qpdf/qtest/qpdf/U25A0.3.c-check new file mode 100644 index 0000000..757cc85 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.3.c-check @@ -0,0 +1,3 @@ +version: 1.3 +linearized: 0 +encrypted: 0 diff --git a/qpdf/qtest/qpdf/U25A0.3.check b/qpdf/qtest/qpdf/U25A0.3.check new file mode 100644 index 0000000..5da27b2 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.3.check @@ -0,0 +1,6 @@ +checking a.pdf +PDF Version: 1.3 +File is not encrypted +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.4-ogen.c-check b/qpdf/qtest/qpdf/U25A0.4-ogen.c-check new file mode 100644 index 0000000..7fc743a --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.4-ogen.c-check @@ -0,0 +1,3 @@ +version: 1.5 +linearized: 0 +encrypted: 0 diff --git a/qpdf/qtest/qpdf/U25A0.4-ogen.check b/qpdf/qtest/qpdf/U25A0.4-ogen.check new file mode 100644 index 0000000..f95a8ec --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.4-ogen.check @@ -0,0 +1,6 @@ +checking a.pdf +PDF Version: 1.5 +File is not encrypted +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.4.c-check b/qpdf/qtest/qpdf/U25A0.4.c-check new file mode 100644 index 0000000..757cc85 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.4.c-check @@ -0,0 +1,3 @@ +version: 1.3 +linearized: 0 +encrypted: 0 diff --git a/qpdf/qtest/qpdf/U25A0.4.check b/qpdf/qtest/qpdf/U25A0.4.check new file mode 100644 index 0000000..5da27b2 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.4.check @@ -0,0 +1,6 @@ +checking a.pdf +PDF Version: 1.3 +File is not encrypted +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.5-ogen.c-check b/qpdf/qtest/qpdf/U25A0.5-ogen.c-check new file mode 100644 index 0000000..7fc743a --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.5-ogen.c-check @@ -0,0 +1,3 @@ +version: 1.5 +linearized: 0 +encrypted: 0 diff --git a/qpdf/qtest/qpdf/U25A0.5-ogen.check b/qpdf/qtest/qpdf/U25A0.5-ogen.check new file mode 100644 index 0000000..f95a8ec --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.5-ogen.check @@ -0,0 +1,6 @@ +checking a.pdf +PDF Version: 1.5 +File is not encrypted +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.5.c-check b/qpdf/qtest/qpdf/U25A0.5.c-check new file mode 100644 index 0000000..757cc85 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.5.c-check @@ -0,0 +1,3 @@ +version: 1.3 +linearized: 0 +encrypted: 0 diff --git a/qpdf/qtest/qpdf/U25A0.5.check b/qpdf/qtest/qpdf/U25A0.5.check new file mode 100644 index 0000000..5da27b2 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.5.check @@ -0,0 +1,6 @@ +checking a.pdf +PDF Version: 1.3 +File is not encrypted +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.6-ogen.c-check b/qpdf/qtest/qpdf/U25A0.6-ogen.c-check new file mode 100644 index 0000000..7fc743a --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.6-ogen.c-check @@ -0,0 +1,3 @@ +version: 1.5 +linearized: 0 +encrypted: 0 diff --git a/qpdf/qtest/qpdf/U25A0.6-ogen.check b/qpdf/qtest/qpdf/U25A0.6-ogen.check new file mode 100644 index 0000000..f95a8ec --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.6-ogen.check @@ -0,0 +1,6 @@ +checking a.pdf +PDF Version: 1.5 +File is not encrypted +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.6.c-check b/qpdf/qtest/qpdf/U25A0.6.c-check new file mode 100644 index 0000000..757cc85 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.6.c-check @@ -0,0 +1,3 @@ +version: 1.3 +linearized: 0 +encrypted: 0 diff --git a/qpdf/qtest/qpdf/U25A0.6.check b/qpdf/qtest/qpdf/U25A0.6.check new file mode 100644 index 0000000..5da27b2 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.6.check @@ -0,0 +1,6 @@ +checking a.pdf +PDF Version: 1.3 +File is not encrypted +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.7-ogen.c-check b/qpdf/qtest/qpdf/U25A0.7-ogen.c-check new file mode 100644 index 0000000..7fc743a --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.7-ogen.c-check @@ -0,0 +1,3 @@ +version: 1.5 +linearized: 0 +encrypted: 0 diff --git a/qpdf/qtest/qpdf/U25A0.7-ogen.check b/qpdf/qtest/qpdf/U25A0.7-ogen.check new file mode 100644 index 0000000..f95a8ec --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.7-ogen.check @@ -0,0 +1,6 @@ +checking a.pdf +PDF Version: 1.5 +File is not encrypted +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.7.c-check b/qpdf/qtest/qpdf/U25A0.7.c-check new file mode 100644 index 0000000..757cc85 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.7.c-check @@ -0,0 +1,3 @@ +version: 1.3 +linearized: 0 +encrypted: 0 diff --git a/qpdf/qtest/qpdf/U25A0.7.check b/qpdf/qtest/qpdf/U25A0.7.check new file mode 100644 index 0000000..5da27b2 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.7.check @@ -0,0 +1,6 @@ +checking a.pdf +PDF Version: 1.3 +File is not encrypted +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.8-ogen.c-check b/qpdf/qtest/qpdf/U25A0.8-ogen.c-check new file mode 100644 index 0000000..7fc743a --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.8-ogen.c-check @@ -0,0 +1,3 @@ +version: 1.5 +linearized: 0 +encrypted: 0 diff --git a/qpdf/qtest/qpdf/U25A0.8-ogen.check b/qpdf/qtest/qpdf/U25A0.8-ogen.check new file mode 100644 index 0000000..f95a8ec --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.8-ogen.check @@ -0,0 +1,6 @@ +checking a.pdf +PDF Version: 1.5 +File is not encrypted +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.8.c-check b/qpdf/qtest/qpdf/U25A0.8.c-check new file mode 100644 index 0000000..757cc85 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.8.c-check @@ -0,0 +1,3 @@ +version: 1.3 +linearized: 0 +encrypted: 0 diff --git a/qpdf/qtest/qpdf/U25A0.8.check b/qpdf/qtest/qpdf/U25A0.8.check new file mode 100644 index 0000000..5da27b2 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.8.check @@ -0,0 +1,6 @@ +checking a.pdf +PDF Version: 1.3 +File is not encrypted +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.9-ogen.c-check b/qpdf/qtest/qpdf/U25A0.9-ogen.c-check new file mode 100644 index 0000000..cc892af --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.9-ogen.c-check @@ -0,0 +1,13 @@ +version: 1.5 +linearized: 1 +encrypted: 1 +user password: +extract for accessibility: 0 +extract for any purpose: 0 +print low resolution: 1 +print high resolution: 1 +modify document assembly: 0 +modify forms: 0 +modify annotations: 0 +modify other: 0 +modify anything: 0 diff --git a/qpdf/qtest/qpdf/U25A0.9-ogen.check b/qpdf/qtest/qpdf/U25A0.9-ogen.check new file mode 100644 index 0000000..1d11997 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.9-ogen.check @@ -0,0 +1,17 @@ +checking a.pdf +PDF Version: 1.5 +R = 2 +P = -60 +User password = +extract for accessibility: not allowed +extract for any purpose: not allowed +print low resolution: allowed +print high resolution: allowed +modify document assembly: not allowed +modify forms: not allowed +modify annotations: not allowed +modify other: not allowed +modify anything: not allowed +File is linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.9.c-check b/qpdf/qtest/qpdf/U25A0.9.c-check new file mode 100644 index 0000000..18ee32d --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.9.c-check @@ -0,0 +1,13 @@ +version: 1.3 +linearized: 1 +encrypted: 1 +user password: +extract for accessibility: 0 +extract for any purpose: 0 +print low resolution: 1 +print high resolution: 1 +modify document assembly: 0 +modify forms: 0 +modify annotations: 0 +modify other: 0 +modify anything: 0 diff --git a/qpdf/qtest/qpdf/U25A0.9.check b/qpdf/qtest/qpdf/U25A0.9.check new file mode 100644 index 0000000..e543256 --- /dev/null +++ b/qpdf/qtest/qpdf/U25A0.9.check @@ -0,0 +1,17 @@ +checking a.pdf +PDF Version: 1.3 +R = 2 +P = -60 +User password = +extract for accessibility: not allowed +extract for any purpose: not allowed +print low resolution: allowed +print high resolution: allowed +modify document assembly: not allowed +modify forms: not allowed +modify annotations: not allowed +modify other: not allowed +modify anything: not allowed +File is linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/U25A0.pdf b/qpdf/qtest/qpdf/U25A0.pdf new file mode 100644 index 0000000000000000000000000000000000000000..f8b779d4fb44e7812a1467e8e7a5089e0642f5d3 GIT binary patch literal 67790 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 (&A2r{U$n33{hM5(T<@mnVP?BHCOG(VD9LL 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 literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/V4-aes-clearmeta-encryption.out b/qpdf/qtest/qpdf/V4-aes-clearmeta-encryption.out new file mode 100644 index 0000000..928818d --- /dev/null +++ b/qpdf/qtest/qpdf/V4-aes-clearmeta-encryption.out @@ -0,0 +1,15 @@ +R = 4 +P = -4 +User password = +extract for accessibility: allowed +extract for any purpose: allowed +print low resolution: allowed +print high resolution: allowed +modify document assembly: allowed +modify forms: allowed +modify annotations: allowed +modify other: allowed +modify anything: allowed +stream encryption method: AESv2 +string encryption method: AESv2 +file encryption method: AESv2 diff --git a/qpdf/qtest/qpdf/V4-aes-clearmeta.pdf b/qpdf/qtest/qpdf/V4-aes-clearmeta.pdf new file mode 100644 index 0000000..61c57f5 --- /dev/null +++ b/qpdf/qtest/qpdf/V4-aes-clearmeta.pdf @@ -0,0 +1,417 @@ +%PDF-1.6 +%¿÷¢þ +1 0 obj +<< /Metadata 3 0 R /Outlines 4 0 R /PageLabels << /Nums [ 0 << /P <0e1c2a38465462707e8c9aa8b6c4d2e00f262aedded08d15ff2f51f65bab002f> >> 2 << /S /r /St 1 >> 7 << /P <0e1c2a38465462707e8c9aa8b6c4d2e00f262aedded08d15ff2f51f65bab002f> >> 9 << /S /r /St 6 >> 11 << /P <0e1c2a38465462707e8c9aa8b6c4d2e00f262aedded08d15ff2f51f65bab002f> >> 12 << /S /D /St 2 >> 15 << /S /D /St 6 >> 19 << /P <0e1c2a38465462707e8c9aa8b6c4d2e00f262aedded08d15ff2f51f65bab002f> >> 20 << /S /D /St 12 >> 22 << /S /D /St 16059 >> 23 << /S /r /St 50 >> 29 << /S /r /St 54 >> ] >> /PageMode /UseOutlines /Pages 5 0 R /Type /Catalog >> +endobj +2 0 obj +<< /CreationDate <0e1c2a38465462707e8c9aa8b6c4d2e00921a6a7b0c133fb2f989c3da27b2ac814b1c32543f37411fd736a4671a646b7> /ModDate <0e1c2a38465462707e8c9aa8b6c4d2e00921a6a7b0c133fb2f989c3da27b2ac814b1c32543f37411fd736a4671a646b7> >> +endobj +3 0 obj +<< /Subtype /XML /Type /Metadata /Length 770 >> +stream + + + + + + 2003-10-10T18:04:32-03:00 + 2003-10-10T18:04:32-03:00 + + + + 2003-10-10T18:04:32-03:00 + 2003-10-10T18:04:32-03:00 + 2003-10-10T18:04:32-03:00 + + + +endstream +endobj +4 0 obj +<< /Count 6 /First 6 0 R /Last 7 0 R /Type /Outlines >> +endobj +5 0 obj +<< /Count 30 /Kids [ 8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R 22 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 35 0 R 36 0 R 37 0 R ] /Type /Pages >> +endobj +6 0 obj +<< /Count 4 /Dest [ 13 0 R /XYZ null null null ] /First 38 0 R /Last 39 0 R /Next 7 0 R /Parent 4 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e0b238a868ad6ebb3fd7d78dc22672a04960be7d3e8245bea76dbe68c23e5f03de54c759f400d5dcbfdac739c9d936cf84> /Type /Outline >> +endobj +7 0 obj +<< /Dest [ 23 0 R /XYZ 66 756 3 ] /Parent 4 0 R /Prev 6 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e0ca5f0294db4ad20336e77370836f9058f3c825cbf836d07b61ebbfaa698ec301> /Type /Outline >> +endobj +8 0 obj +<< /Contents 40 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +9 0 obj +<< /Contents 43 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +10 0 obj +<< /Contents 44 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +11 0 obj +<< /Contents 45 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +12 0 obj +<< /Contents 46 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +13 0 obj +<< /Contents 47 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +14 0 obj +<< /Contents 48 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +15 0 obj +<< /Contents 49 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +16 0 obj +<< /Contents 50 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +17 0 obj +<< /Contents 51 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +18 0 obj +<< /Contents 52 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +19 0 obj +<< /Contents 53 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +20 0 obj +<< /Contents 54 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +21 0 obj +<< /Contents 55 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +22 0 obj +<< /Contents 56 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +23 0 obj +<< /Contents 57 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +24 0 obj +<< /Contents 58 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +25 0 obj +<< /Contents 59 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +26 0 obj +<< /Contents 60 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +27 0 obj +<< /Contents 61 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +28 0 obj +<< /Contents 62 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +29 0 obj +<< /Contents 63 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +30 0 obj +<< /Contents 64 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +31 0 obj +<< /Contents 65 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +32 0 obj +<< /Contents 66 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +33 0 obj +<< /Contents 67 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +34 0 obj +<< /Contents 68 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +35 0 obj +<< /Contents 69 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +36 0 obj +<< /Contents 70 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +37 0 obj +<< /Contents 71 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +38 0 obj +<< /Count -3 /Dest [ 19 0 R /Fit ] /First 72 0 R /Last 73 0 R /Next 39 0 R /Parent 6 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e09ca6cded56239338246ee0f67eaedc7a5934c16efed6ab448a94b6aea5813c37> /Type /Outline >> +endobj +39 0 obj +<< /Count 2 /Dest [ 21 0 R /FitH 792 ] /First 74 0 R /Last 75 0 R /Parent 6 0 R /Prev 38 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e0a67a0507bb5990eb05f0e2d4963d3fe76e56d39f83b79788f140d31295a240f0> /Type /Outline >> +endobj +40 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàˆs¥^‰||Æ÷m„]I·&œ‰Ä}Õ¾[Z^Oªãýrš¥¼Ev;c¤^Ð+$*0‘ÿ˜Éמ{ûU=ªQendstream +endobj +41 0 obj +<< /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> +endobj +42 0 obj +[ /PDF /Text ] +endobj +43 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà²ÓÂDžâo®Ôä‚°æàž%û÷Ï@TÕ¼þ¿¬ÑçAêû5dÜϑt°÷}dIÛÃ>†ûëuÅ_Í®•´²±íendstream +endobj +44 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒ࿐‘‰aŽÎÔ~ƒ’ Ë̼QO…º‘?ØЮ–=¹™(!‡¬Î Tm÷j2)~k™ãßùJÅyÅ^¾oèendstream +endobj +45 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà°s¿³»@¼Xýª!è>›‹ü¬%«+jNŽýòi„Xt-;ðǖKøc÷ZאˆwaÞbe1Ž“64JÍendstream +endobj +46 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒànðÂygs× +An KR䧛QúµNœýu°˜™2Ž0†›²NÃÒ$}öÏ[ +yyuOÝendstream +endobj +47 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà5¤ÛÇ Êr/°2“r‡ *·ÉZÜ©_iU6~Ã38*xÖ™á8i¥‹\¶œtø;øZ@êØ-Ž`?»‚endstream +endobj +48 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàl Ô‰,écZ‚‰¤†)c|°~R‚¨¹lA SÔ=i*Œ¼ç ~•2Q[—<þ‹BÝ÷n7ºî–|eB9øendstream +endobj +49 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàL°3`±ò¹Àü¾g{Š±nA pkB¿ÌÉåy²õ8ešZëØi=¨ bZɁTÄ<žt +°éRŠðƒ˜¦êendstream +endobj +50 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàÀlÚñ2Wä„p@sðk.})3~+EQ"iÊçÚÞó•b;L¶m™™x—ºl²ˆG°¼Îh¥«lnõ—eÌ:®endstream +endobj +51 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà8›Ý::[šãlê«Þ‚å}ª°bܲ‘‰Žê›wTu×´F9Í"Sw:€o >]í .ú·¢iqtŠrendstream +endobj +52 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒ྄ø÷ä5sì’‰I‘ѵC¥£fèÔ_®N2…žŸ¢gËÅe¸RÈd¦i˜w²âEOôù/q÷â;wendstream +endobj +53 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà +;´§P]ã:ßÔ/é3E-%èÆ·ë«’3V¾9¬ËÌh,2;÷'ˆ½ÙQ;u=²Ùì¿AI®q àendstream +endobj +54 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàÍ}!×òY6aÓDÕw4N"Þ§½S,ºŠ+åø3÷ÕULP¯„)yf!Tg\4ܙ§5džÝ+endstream +endobj +55 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà+®µ£Xt4[‰Ñ맾¶Mñ »»`tÎrq“->¦’Gôäûý×ÖYN ò$/z÷xÔÇ1Xö7”­føN endstream +endobj +56 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàŽ7'›”|+t¶FÀX5Pü”öÕo[¹¬FA ó¦'ޝ}4=  >M¿úx_¬¬qÇÖÄÙ·òÀ8ÅÅö©endstream +endobj +57 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàˆI´Žž›!Ð @IxIô'î:[¾Z K3-îEûï„rãä(hH>þÅ*²r±~ØðÎ M? XRendstream +endobj +58 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàfyWlñÍ4.oÇIwÌÔÿއ§Î·Ú?¶è|’ŽÜ#,ˆo?0%›Ã’•Ðw1Øeð¢}ÁÈ»OýÍendstream +endobj +59 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà0yí\ÖénRㄠÅ=9r_ï• +ᜄå2ÿc|-ná¤[•zʉ²2ïZ北&­¼“œ>sŸ%È1ûendstream +endobj +60 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà‘ ‡Í`[¿ûâ¿~pl< ^½/L®§Þ-t KEsS¤¯A©fAWc¿ÊÖãԜÓ1qIŒ1SÉónlendstream +endobj +61 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàËk†O ñÑ:FþþŒEà  zh¥t£ë"õ”ðsETƒ=‚S–ÍÈ£À$w[˜— ½Fu§ÝèkÔ4‹Yendstream +endobj +62 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàB-køÇWx—æC)+¿†ú²ô¢<¿T$ÃÚy Tªö×*¬žØØç[¦eš/zÿŠß}Ëé34ÒŠsíè©endstream +endobj +63 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàìð–d¥lƒø—Ê À͛֠óø~2ÚÆ´ëC'#09Ë><®@w¾›D +î“[îÄV4ü©˜8 N_þ@>4Ùendstream +endobj +64 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàHmyû5­ev$Dî ºOÔ Må +âd: +øjd¹w:¨o-´‹V*¹vd7CL¥\eb[É.g‹dƓça§Eqendstream +endobj +65 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàlÎ`Ð(›-U|•wâ)è¡Æì†T†ºÎ ¥ý.×[]áÛwˆ££¦­UØ7‚¹™Ä@£¸]ƒ›Ëendstream +endobj +66 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàZr›ŒgcoXs³9†Ú§Ìö}kx]Äã–ÊG±fi ;¹Î ÕT> +stream +*8FTbp~Œš¨¶ÄÒàlEXžÓ?-ŒÞB²»_“y!:ZF,{Æx\ÐúrΟOÏ kác§Gér»ØD&m?!€¢iZ|ÄIóendstream +endobj +68 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàF÷¡›†ÑJGÄPÕÕAu0ˆk’ßß« ©yÁmûéÇìc¼Ru°pHÌG›4¢ÐéqÞµï`Ý:/f¥>endstream +endobj +69 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàI#â"¾™³@u¡²6V啒ڍÛe¥UæÑ%%®Æé’ÓóC‰ÐOÀ Qàg°f›÷×Ý÷֐ºtµÞ‡z÷endstream +endobj +70 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàÕɀGÄÄȺ>ž.£Ã^Aúp$0èçƒÀèÑ?DŠ½eðÚi³«$Û¦Q°Z¨Ô‚O(>Ë܃ñï°Ib §Hxendstream +endobj +71 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàêŸ9ê'”¸†÷¦^ž´ËΝŸj$=pÝ7o·ÌöAÍR-"ƒàæ³øHIûU@ÅP[ìÓfêIˆ/õJøµÞendstream +endobj +72 0 obj +<< /Count -2 /Dest [ 20 0 R /FitV 100 ] /First 76 0 R /Last 77 0 R /Next 73 0 R /Parent 38 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e009f4dac5b02074cf4849a0d15459676b96276012437a65dfe861c2b7d3d43dd6> /Type /Outline >> +endobj +73 0 obj +<< /Count 1 /Dest [ 20 0 R /XYZ null null null ] /First 78 0 R /Last 78 0 R /Parent 38 0 R /Prev 72 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e0c8222a80899552e8f55dff601a31f50ffc49f7b882208cd32b38b84cfe08d06192fc7fe104a29384ae6afba06ffad9f6> /Type /Outline >> +endobj +74 0 obj +<< /Dest [ 9 0 R /FitR 66 714 180 770 ] /Next 75 0 R /Parent 39 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e0db2e1806fe2bc539dca1f3bd07df1c861300b43e8d6d1687249b4d7eb69b0cdfa03e717dfdaaff3f9da9e992e7ce7799> /Type /Outline >> +endobj +75 0 obj +<< /Dest [ 8 0 R /XYZ null null null ] /Parent 39 0 R /Prev 74 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e00ac2f6a290fab9e2e24e3fd1f20574bac271aecc390740758b0021043b15220d46b1ad3fad6590683df8d41be3cc2dac> /Type /Outline >> +endobj +76 0 obj +<< /Dest [ 26 0 R /XYZ null null null ] /Next 77 0 R /Parent 72 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e046551c4c9d5ec737ae978879e7bfa7738e87f54a8f1db0e78c3b34ae0a955661fac26995b1dd5f61f84227daff5e8a0a> /Type /Outline >> +endobj +77 0 obj +<< /Dest [ 27 0 R /XYZ null null null ] /Parent 72 0 R /Prev 76 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e0ed02472a72f56c1be52ac90f82aa7ccd10e56983f5f1d989945c2682605e030fdd5ab6e2c0e46505fe6148f3574fe4af> /Type /Outline >> +endobj +78 0 obj +<< /Dest [ 30 0 R /XYZ null null null ] /Parent 73 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e04e0071f73ffb55e63fee8c296c57a5116ad91676f573b1c2fe59aca102ad3421cc50bd84f88f518cd8bbd9962c7a59d0> /Type /Outline >> +endobj +79 0 obj +<< /CF << /StdCF << /AuthEvent /DocOpen /CFM /AESV2 >> >> /EncryptMetadata false /Filter /Standard /Length 128 /O <36451bd39d753b7c1d10922c28e6665aa4f3353fb0348b536893e3b1db5c579b> /P -4 /R 4 /StmF /StdCF /StrF /StdCF /U /V 4 >> +endobj +xref +0 80 +0000000000 65535 f +0000000015 00000 n +0000000634 00000 n +0000000876 00000 n +0000001726 00000 n +0000001797 00000 n +0000002059 00000 n +0000002332 00000 n +0000002531 00000 n +0000002712 00000 n +0000002893 00000 n +0000003075 00000 n +0000003257 00000 n +0000003439 00000 n +0000003621 00000 n +0000003803 00000 n +0000003985 00000 n +0000004167 00000 n +0000004349 00000 n +0000004531 00000 n +0000004713 00000 n +0000004895 00000 n +0000005077 00000 n +0000005259 00000 n +0000005441 00000 n +0000005623 00000 n +0000005805 00000 n +0000005987 00000 n +0000006169 00000 n +0000006351 00000 n +0000006533 00000 n +0000006715 00000 n +0000006897 00000 n +0000007079 00000 n +0000007261 00000 n +0000007443 00000 n +0000007625 00000 n +0000007807 00000 n +0000007989 00000 n +0000008218 00000 n +0000008451 00000 n +0000008602 00000 n +0000008710 00000 n +0000008741 00000 n +0000008892 00000 n +0000009043 00000 n +0000009194 00000 n +0000009345 00000 n +0000009496 00000 n +0000009647 00000 n +0000009798 00000 n +0000009949 00000 n +0000010100 00000 n +0000010251 00000 n +0000010402 00000 n +0000010553 00000 n +0000010704 00000 n +0000010855 00000 n +0000011006 00000 n +0000011157 00000 n +0000011308 00000 n +0000011459 00000 n +0000011610 00000 n +0000011761 00000 n +0000011912 00000 n +0000012063 00000 n +0000012214 00000 n +0000012365 00000 n +0000012516 00000 n +0000012667 00000 n +0000012818 00000 n +0000012969 00000 n +0000013120 00000 n +0000013355 00000 n +0000013631 00000 n +0000013871 00000 n +0000014110 00000 n +0000014350 00000 n +0000014590 00000 n +0000014817 00000 n +trailer << /Info 2 0 R /Root 1 0 R /Size 80 /ID [<66d36a30a97e0f16f39955c6221e0c2a><31415926535897932384626433832795>] /Encrypt 79 0 R >> +startxref +15129 +%%EOF diff --git a/qpdf/qtest/qpdf/V4-aes-encryption.out b/qpdf/qtest/qpdf/V4-aes-encryption.out new file mode 100644 index 0000000..928818d --- /dev/null +++ b/qpdf/qtest/qpdf/V4-aes-encryption.out @@ -0,0 +1,15 @@ +R = 4 +P = -4 +User password = +extract for accessibility: allowed +extract for any purpose: allowed +print low resolution: allowed +print high resolution: allowed +modify document assembly: allowed +modify forms: allowed +modify annotations: allowed +modify other: allowed +modify anything: allowed +stream encryption method: AESv2 +string encryption method: AESv2 +file encryption method: AESv2 diff --git a/qpdf/qtest/qpdf/V4-aes.pdf b/qpdf/qtest/qpdf/V4-aes.pdf new file mode 100644 index 0000000..a779a50 --- /dev/null +++ b/qpdf/qtest/qpdf/V4-aes.pdf @@ -0,0 +1,396 @@ +%PDF-1.6 +%¿÷¢þ +1 0 obj +<< /Metadata 3 0 R /Outlines 4 0 R /PageLabels << /Nums [ 0 << /P <0e1c2a38465462707e8c9aa8b6c4d2e04a74ca52697dc92e78001ad964146eca> >> 2 << /S /r /St 1 >> 7 << /P <0e1c2a38465462707e8c9aa8b6c4d2e04a74ca52697dc92e78001ad964146eca> >> 9 << /S /r /St 6 >> 11 << /P <0e1c2a38465462707e8c9aa8b6c4d2e04a74ca52697dc92e78001ad964146eca> >> 12 << /S /D /St 2 >> 15 << /S /D /St 6 >> 19 << /P <0e1c2a38465462707e8c9aa8b6c4d2e04a74ca52697dc92e78001ad964146eca> >> 20 << /S /D /St 12 >> 22 << /S /D /St 16059 >> 23 << /S /r /St 50 >> 29 << /S /r /St 54 >> ] >> /PageMode /UseOutlines /Pages 5 0 R /Type /Catalog >> +endobj +2 0 obj +<< /CreationDate <0e1c2a38465462707e8c9aa8b6c4d2e0e9899cdac1e580de96cee46c62bbe494cccd4890015eb51e9ebe9e163bd4e9db> /ModDate <0e1c2a38465462707e8c9aa8b6c4d2e0e9899cdac1e580de96cee46c62bbe494cccd4890015eb51e9ebe9e163bd4e9db> >> +endobj +3 0 obj +<< /Subtype /XML /Type /Metadata /Length 336 /Filter /FlateDecode >> +stream +*8FTbp~Œš¨¶ÄÒàTMÀF5¥¯œ÷YL3“Ü#íbÕÎd¢«¯21Î ÿÊCÊ+ƒK†N¯™ŸçËA¸ƒv®±Ô“§{’´“QÂío+Ì/;ÜùÓ£•À–ønÏO離§i‰D Q'ä5ºd‘)b”óØÆøtZ,VNjí#f¤ÐPj¸'Êpà0súq»òB> T©AÖ>U1´3\o¿.Aa¹±`쒴˜˜¨áv™^tïá+Õ©{Òj€CÒ¯Ñ!ÇLOIrÎoŒšuð]í#©#"ÛbŒ¯Íù8iæ| èÕăFšöõ4¢§æ]×dójÎÚTT6'Âe¡r}N“6J 5h¹âMèeë3œvp.±98U¡x¿8ÐQ  1ŠæPÏ7PÕp­Cyh±Ü—mÎ4_åd#3óҜÜO¼ñ¿áendstream +endobj +4 0 obj +<< /Count 6 /First 6 0 R /Last 7 0 R /Type /Outlines >> +endobj +5 0 obj +<< /Count 30 /Kids [ 8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R 22 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 35 0 R 36 0 R 37 0 R ] /Type /Pages >> +endobj +6 0 obj +<< /Count 4 /Dest [ 13 0 R /XYZ null null null ] /First 38 0 R /Last 39 0 R /Next 7 0 R /Parent 4 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e06136b49986838be63dd18d04525fd8bf58c0dc5fe6482939c2c7a9ca3c1ad893cd4ba6267c0a6bd4524eac5c97204097> /Type /Outline >> +endobj +7 0 obj +<< /Dest [ 23 0 R /XYZ 66 756 3 ] /Parent 4 0 R /Prev 6 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e01aab63c49ef4a1b1c1be421714d196a241c3db586c7b1a023de3fad2ee034155> /Type /Outline >> +endobj +8 0 obj +<< /Contents 40 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +9 0 obj +<< /Contents 43 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +10 0 obj +<< /Contents 44 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +11 0 obj +<< /Contents 45 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +12 0 obj +<< /Contents 46 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +13 0 obj +<< /Contents 47 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +14 0 obj +<< /Contents 48 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +15 0 obj +<< /Contents 49 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +16 0 obj +<< /Contents 50 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +17 0 obj +<< /Contents 51 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +18 0 obj +<< /Contents 52 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +19 0 obj +<< /Contents 53 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +20 0 obj +<< /Contents 54 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +21 0 obj +<< /Contents 55 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +22 0 obj +<< /Contents 56 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +23 0 obj +<< /Contents 57 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +24 0 obj +<< /Contents 58 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +25 0 obj +<< /Contents 59 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +26 0 obj +<< /Contents 60 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +27 0 obj +<< /Contents 61 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +28 0 obj +<< /Contents 62 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +29 0 obj +<< /Contents 63 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +30 0 obj +<< /Contents 64 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +31 0 obj +<< /Contents 65 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +32 0 obj +<< /Contents 66 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +33 0 obj +<< /Contents 67 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +34 0 obj +<< /Contents 68 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +35 0 obj +<< /Contents 69 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +36 0 obj +<< /Contents 70 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +37 0 obj +<< /Contents 71 0 R /CropBox [ 0 0 612 792 ] /MediaBox [ 0 0 612 792 ] /Parent 5 0 R /Resources << /Font << /F1 41 0 R >> /ProcSet 42 0 R >> /Rotate 0 /Type /Page >> +endobj +38 0 obj +<< /Count -3 /Dest [ 19 0 R /Fit ] /First 72 0 R /Last 73 0 R /Next 39 0 R /Parent 6 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e00d32ee8de70f8143ac3ffce5881e2d1e8551ed442e4deac827472d66d5d787e2> /Type /Outline >> +endobj +39 0 obj +<< /Count 2 /Dest [ 21 0 R /FitH 792 ] /First 74 0 R /Last 75 0 R /Parent 6 0 R /Prev 38 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e0137ae7685fcbcc14362f866f06ed55a84cb760275f947487ad009505412e6472> /Type /Outline >> +endobj +40 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà+°ÜÛZ°ç^xàòÔÑÌÉñlÆãfñN?è"•®­Á•”d¢q)”ÃýȎwl՝¬ÀÍÍ0~#WžúÉâ¤endstream +endobj +41 0 obj +<< /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> +endobj +42 0 obj +[ /PDF /Text ] +endobj +43 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàª#ÄÏ8†µú¤IՃÖ<:T–bÝÁqÆÃ#ïGk]´Ý”Nöˆ˜ŠÇªŒuOÿf¯PfÏsyDŽ–nõ{ endstream +endobj +44 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàiWÛä…ÜbJ@[wQh©Š + Éc®ÇZ|ÇYt3'PÆíY …6£ñLC®I›…/½9îê¹ói¸k¡Åendstream +endobj +45 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà:+X©–~Ÿò £ƒÒ˜HoÅ5L»?7À-ž¹s¨> +stream +*8FTbp~Œš¨¶ÄÒàÊVÐX&±Àó^»ä‚,ÍÞtíô Ié +{„$ãÍÁéÿKP¾WËT€ˆL&kÌ}=ÃïG²U!ý+Õ¼„ù„¼endstream +endobj +47 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà-‰•Ü¾áÔÓÇ&1ÖÛ*Œ<Ù{YY^œIò‚ÅN4o‚†?ÔÏ +ͪ„ª¡þÛüæ2“±ÿ':õ£endstream +endobj +48 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà˜+”[Œ%óÍ`P´9‡¯Ç™"Ö²Nݵ7­·©@0»iðùeó XM~þZô3†ÄÆØyœÊÆØ&öÐYwVnÂendstream +endobj +49 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà*’5xXXzuN†%4m«Š¢è-õºïùÞoÁžS}}ÑÎ(Ÿz/ÁÒH€•1X¯±2ù¿"Ævk3Åm‚pI÷ˆendstream +endobj +50 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàªî_@<ž’†¢^NC¾kóŽÑ:T¶q¥¶u˜Ùl! —Œë^&ïڑÈë D=¶‡lûÔJõO³‡TÈ3endstream +endobj +51 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàÓ¥:p&¿‘)B?òceFÛÊØë߄>t>ÒÂë¤öðÇí #ä…Ъ.S-DHš3Žùz:øòI}%6äendstream +endobj +52 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà+;”t;Õ-Ip¶”ñ'[{?°¸Ÿç¿{gëv¢XBµÌ¤ò‚>VTڅVì\HÏ^CÈ9Ã,$ñ + Jendstream +endobj +53 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàиˆ¥D™@yö‹]촎°®÷T{JNiý•ÛnÓ ×ƒF˘.Tȝ«bÞÄ{Y=Ñ¡w¼þøjŽÍendstream +endobj +54 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàÚœ‰sXP@aDtÕåv»Fëqíry«âÈepõÛ(Tã“8Sr‚ ¦ †¸ÆûJɔ-+æí+hì³=²endstream +endobj +55 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà_„ïòínË®g{ÄX+!· +ƀ؂ú~)ò/;8I-t¤3Nûb·?w݉ÈÀú¬_ó:§Ä??ÏR„VÃéendstream +endobj +56 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà«¡Ì÷qNPß\žÁò j'(n8t‡‡ÊR|Ùǜ¤úÆ‹çWBæ«? µåòÅp ±ª>r…9l:psendstream +endobj +57 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàUŸ- ‚ D£sÊA”4?PÇü¾fË®F@vœx´Â#¡nó×Ðõøá¹Ã¡§Œ‰‚”jJã͵endstream +endobj +58 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàÇdggýjî´ÇÅKu_¢ªî¶!¢™ø÷S‘7EßeÍ$2ߘ‘ ´RÊÊ-‰B2Û=Ëj’öPþ'·gûpendstream +endobj +59 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàםóöcRÜގؽ¥iG9p~Ìþñ­©ƒŠÛCMt=“RqâIQPèÄ´÷cÄ.Ž«îu? $‰¥üendstream +endobj +60 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà4{êIŒK Ï^ϑçÊÅü’Ê é‰?ú £SÁ‘Iò¬h‚­! +cd£f‹õS¨ëz´-F¶yÎ]D a +endstream +endobj +61 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà‘U´ôⵊ'quà9ÛêE_X‘Š2?÷oƒ}ñüŸ“µP²Ý|ö$8–5¡vÉN1êñ!…mkNûGËêkendstream +endobj +62 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàR_Úù¿ÑÔÊ&åçNý¶½ú +¿sÒ9å.±Ö±ãw™ÐïÁ-)«2o{ÎT]¦ rŸåÞØùÑ'K:N‡´,ž endstream +endobj +63 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàÚ¬à™X6‚ãÙë2‰VíVò½¨s¬±Ü‡|‡±ã~ôžÉæúùMgO_ž÷ù:'z)¤ñeÞ %ñ©Rºendstream +endobj +64 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà£ðŸ ^¾…ÖX€K,~y¼ÑBˇ»ýeW»óñPË"Op°{—ÍV'IrHöÁÝl}À‡í¤íxœÜ,DÌõ>¦endstream +endobj +65 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà-ÒD)A3½N¡ÔØÝÜKNjŸ›{3¦.Xž/ƒWQä0¨û ©¼s;Œ=u è¢O €é¦ +bШ}µF)endstream +endobj +66 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàH}:¿‰ŽèçáÀäz(Mph8,çŸ Æ´‡´ò]Ð $‹¼ùL„Q@âë$;YÙ/Ž»œ¶`âÏendstream +endobj +67 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàÅb^šQp/¹Íðh¥~Ûë.€†Ê«=!veÔàot™G¦*4o²¾‹ÈߣЩn¥îÙÖu}á7§Dendstream +endobj +68 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒà°ØõüWK2L‘ÜԗJ„_Øc$)iB²& ËÝM•è]‘¦Øú¥MvåfÊJ8:V”kϧövE*ñ0ôendstream +endobj +69 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàp ^±íØàg´² ’°©d6']‘p„Q÷붬;éuûæ*}òÜ&l"‚¿²‰‹Ý–˜"D«/1ÐôÚUÿ1endstream +endobj +70 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàY§Çú¡Œªÿú®½ø—î 2î8.ÄEÔë&rͨu#…Å)ns^¯`‚±'±•Ã©:y¹ÛE.ï ™Ôendstream +endobj +71 0 obj +<< /Filter /FlateDecode /Length 80 >> +stream +*8FTbp~Œš¨¶ÄÒàÏÈê9ĉa•ù®M³òFx÷›GÂxÿ´~¬s\‰õ՛JŸ\V„›ð ʍî=…BcEêóÑEoEendstream +endobj +72 0 obj +<< /Count -2 /Dest [ 20 0 R /FitV 100 ] /First 76 0 R /Last 77 0 R /Next 73 0 R /Parent 38 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e07c76f6fcecead465c803262ea791484b04c51c26159b59425907bcc42e1be548> /Type /Outline >> +endobj +73 0 obj +<< /Count 1 /Dest [ 20 0 R /XYZ null null null ] /First 78 0 R /Last 78 0 R /Parent 38 0 R /Prev 72 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e00ecc6b31415d55a1de00b0903aeaad8c731ac82890762caeaafc79be29e82ffb4691d98b5d4d3cb09a4b4039f2998101> /Type /Outline >> +endobj +74 0 obj +<< /Dest [ 9 0 R /FitR 66 714 180 770 ] /Next 75 0 R /Parent 39 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e039e9f7d0e37272d3b044d6d3b507bdb1998c19b21c89a1744fa9237eeece598e6eec369f7c3a8499c611dbd9c816132d> /Type /Outline >> +endobj +75 0 obj +<< /Dest [ 8 0 R /XYZ null null null ] /Parent 39 0 R /Prev 74 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e04d5f590b78857cf339220d36761f4a713eec4515820b51b71a1ef5c342350c34cc1cf169ba36ea4d5bfd2d091d9b2205> /Type /Outline >> +endobj +76 0 obj +<< /Dest [ 26 0 R /XYZ null null null ] /Next 77 0 R /Parent 72 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e0574eadbdf1cacfaa4d10c6db42bba8a7787fed0d573c3da76ade6b526ece9d5ef1d82645e02cd7e9927a49c6bbec87f1> /Type /Outline >> +endobj +77 0 obj +<< /Dest [ 27 0 R /XYZ null null null ] /Parent 72 0 R /Prev 76 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e0fa2fa2ce18f2e66b9047bb8c62213738cbb5f5467f1d81f21aa746aeefef585601e35e5915b8cf99a095f615d866824b> /Type /Outline >> +endobj +78 0 obj +<< /Dest [ 30 0 R /XYZ null null null ] /Parent 73 0 R /Title <0e1c2a38465462707e8c9aa8b6c4d2e0a57e63f459f8a8428dfc859f799038f972379574e01ef823841a76dbefaa14665223960437217436968f6261cc32feb9> /Type /Outline >> +endobj +79 0 obj +<< /CF << /StdCF << /AuthEvent /DocOpen /CFM /AESV2 >> >> /Filter /Standard /Length 128 /O <36451bd39d753b7c1d10922c28e6665aa4f3353fb0348b536893e3b1db5c579b> /P -4 /R 4 /StmF /StdCF /StrF /StdCF /U <32c27288b9ec6a4fab94e6188828595c0122456a91bae5134273a6db134c87c4> /V 4 >> +endobj +xref +0 80 +0000000000 65535 f +0000000015 00000 n +0000000634 00000 n +0000000876 00000 n +0000001313 00000 n +0000001384 00000 n +0000001646 00000 n +0000001919 00000 n +0000002118 00000 n +0000002299 00000 n +0000002480 00000 n +0000002662 00000 n +0000002844 00000 n +0000003026 00000 n +0000003208 00000 n +0000003390 00000 n +0000003572 00000 n +0000003754 00000 n +0000003936 00000 n +0000004118 00000 n +0000004300 00000 n +0000004482 00000 n +0000004664 00000 n +0000004846 00000 n +0000005028 00000 n +0000005210 00000 n +0000005392 00000 n +0000005574 00000 n +0000005756 00000 n +0000005938 00000 n +0000006120 00000 n +0000006302 00000 n +0000006484 00000 n +0000006666 00000 n +0000006848 00000 n +0000007030 00000 n +0000007212 00000 n +0000007394 00000 n +0000007576 00000 n +0000007805 00000 n +0000008038 00000 n +0000008189 00000 n +0000008297 00000 n +0000008328 00000 n +0000008479 00000 n +0000008630 00000 n +0000008781 00000 n +0000008932 00000 n +0000009083 00000 n +0000009234 00000 n +0000009385 00000 n +0000009536 00000 n +0000009687 00000 n +0000009838 00000 n +0000009989 00000 n +0000010140 00000 n +0000010291 00000 n +0000010442 00000 n +0000010593 00000 n +0000010744 00000 n +0000010895 00000 n +0000011046 00000 n +0000011197 00000 n +0000011348 00000 n +0000011499 00000 n +0000011650 00000 n +0000011801 00000 n +0000011952 00000 n +0000012103 00000 n +0000012254 00000 n +0000012405 00000 n +0000012556 00000 n +0000012707 00000 n +0000012942 00000 n +0000013218 00000 n +0000013458 00000 n +0000013697 00000 n +0000013937 00000 n +0000014177 00000 n +0000014404 00000 n +trailer << /Info 2 0 R /Root 1 0 R /Size 80 /ID [<66d36a30a97e0f16f39955c6221e0c2a><31415926535897932384626433832795>] /Encrypt 79 0 R >> +startxref +14693 +%%EOF diff --git a/qpdf/qtest/qpdf/V4-clearmeta-encryption.out b/qpdf/qtest/qpdf/V4-clearmeta-encryption.out new file mode 100644 index 0000000..157fb8d --- /dev/null +++ b/qpdf/qtest/qpdf/V4-clearmeta-encryption.out @@ -0,0 +1,15 @@ +R = 4 +P = -4 +User password = +extract for accessibility: allowed +extract for any purpose: allowed +print low resolution: allowed +print high resolution: allowed +modify document assembly: allowed +modify forms: allowed +modify annotations: allowed +modify other: allowed +modify anything: allowed +stream encryption method: RC4 +string encryption method: RC4 +file encryption method: RC4 diff --git a/qpdf/qtest/qpdf/V4-clearmeta.pdf b/qpdf/qtest/qpdf/V4-clearmeta.pdf new file mode 100644 index 0000000000000000000000000000000000000000..01325cc532740da296980b9cc4eed75d0301884a GIT binary patch literal 15214 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 ZSg4xkh*GM{3~Zn+lJpA>?j9ZC_y1nw2d)4B literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/add-contents.pdf b/qpdf/qtest/qpdf/add-contents.pdf new file mode 100644 index 0000000..06b683a --- /dev/null +++ b/qpdf/qtest/qpdf/add-contents.pdf @@ -0,0 +1,54 @@ +%PDF-1.3 +%¿÷¢þ +1 0 obj +<< /Pages 2 0 R /Type /Catalog >> +endobj +2 0 obj +<< /Count 1 /Kids [ 3 0 R ] /Type /Pages >> +endobj +3 0 obj +<< /Contents [ 4 0 R 5 0 R 6 0 R ] /MediaBox [ 0 0 612 792 ] /Parent 2 0 R /Resources << /Font << /F1 7 0 R >> /ProcSet 8 0 R >> /Type /Page >> +endobj +4 0 obj +<< /Length 37 >> +stream +BT /F1 12 Tf 72 620 Td (Baked) Tj ET +endstream +endobj +5 0 obj +<< /Length 44 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj +6 0 obj +<< /Length 38 >> +stream +BT /F1 18 Tf 72 520 Td (Mashed) Tj ET +endstream +endobj +7 0 obj +<< /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> +endobj +8 0 obj +[ /PDF /Text ] +endobj +xref +0 9 +0000000000 65535 f +0000000015 00000 n +0000000064 00000 n +0000000123 00000 n +0000000282 00000 n +0000000368 00000 n +0000000461 00000 n +0000000548 00000 n +0000000655 00000 n +trailer << /Root 1 0 R /Size 9 /ID [<31415926535897932384626433832795><31415926535897932384626433832795>] >> +startxref +685 +%%EOF diff --git a/qpdf/qtest/qpdf/aes-forced-check.out b/qpdf/qtest/qpdf/aes-forced-check.out new file mode 100644 index 0000000..a7f3445 --- /dev/null +++ b/qpdf/qtest/qpdf/aes-forced-check.out @@ -0,0 +1,6 @@ +checking b.pdf +PDF Version: 1.4 +File is not encrypted +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/append-page-content-damaged-c-check.out b/qpdf/qtest/qpdf/append-page-content-damaged-c-check.out new file mode 100644 index 0000000..ae557e5 --- /dev/null +++ b/qpdf/qtest/qpdf/append-page-content-damaged-c-check.out @@ -0,0 +1,21 @@ +WARNING: append-page-content-damaged.pdf: file is damaged +WARNING: append-page-content-damaged.pdf: can't find startxref +WARNING: append-page-content-damaged.pdf: Attempting to reconstruct cross-reference table +version: 1.3 +linearized: 0 +encrypted: 0 +warning: append-page-content-damaged.pdf: file is damaged + code: 5 + file: append-page-content-damaged.pdf + pos : 0 + text: file is damaged +warning: append-page-content-damaged.pdf: can't find startxref + code: 5 + file: append-page-content-damaged.pdf + pos : 0 + text: can't find startxref +warning: append-page-content-damaged.pdf: Attempting to reconstruct cross-reference table + code: 5 + file: append-page-content-damaged.pdf + pos : 0 + text: Attempting to reconstruct cross-reference table diff --git a/qpdf/qtest/qpdf/append-page-content-damaged-check.out b/qpdf/qtest/qpdf/append-page-content-damaged-check.out new file mode 100644 index 0000000..b529bc3 --- /dev/null +++ b/qpdf/qtest/qpdf/append-page-content-damaged-check.out @@ -0,0 +1,7 @@ +WARNING: append-page-content-damaged.pdf: file is damaged +WARNING: append-page-content-damaged.pdf: can't find startxref +WARNING: append-page-content-damaged.pdf: Attempting to reconstruct cross-reference table +checking append-page-content-damaged.pdf +PDF Version: 1.3 +File is not encrypted +File is not linearized diff --git a/qpdf/qtest/qpdf/append-page-content-damaged.out b/qpdf/qtest/qpdf/append-page-content-damaged.out new file mode 100644 index 0000000..bd4ecfa --- /dev/null +++ b/qpdf/qtest/qpdf/append-page-content-damaged.out @@ -0,0 +1,4 @@ +WARNING: append-page-content-damaged.pdf: file is damaged +WARNING: append-page-content-damaged.pdf: can't find startxref +WARNING: append-page-content-damaged.pdf: Attempting to reconstruct cross-reference table +qpdf: operation succeeded with warnings; resulting file may have some problems diff --git a/qpdf/qtest/qpdf/append-page-content-damaged.pdf b/qpdf/qtest/qpdf/append-page-content-damaged.pdf new file mode 100644 index 0000000..7f15df3 --- /dev/null +++ b/qpdf/qtest/qpdf/append-page-content-damaged.pdf @@ -0,0 +1,1592 @@ +%PDF-1.3 +%¿÷¢þ +%QDF-1.0 + +1 0 obj +<< + /PageLabels 107 0 R + /Pages 2 0 R + /Type /Catalog + /PageMode /UseOutlines + /Outlines 95 0 R +>> +endobj + +2 0 obj +<< + /Count 30 + /Kids [ + 3 0 R + 4 0 R + 5 0 R + 6 0 R + 7 0 R + 8 0 R + 9 0 R + 10 0 R + 11 0 R + 12 0 R + 13 0 R + 14 0 R + 15 0 R + 16 0 R + 17 0 R + 18 0 R + 19 0 R + 20 0 R + 21 0 R + 22 0 R + 23 0 R + 24 0 R + 25 0 R + 26 0 R + 27 0 R + 28 0 R + 29 0 R + 30 0 R + 31 0 R + 32 0 R + ] + /Type /Pages +>> +endobj + +%% Page 1 +3 0 obj +<< + /Contents 33 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 2 +4 0 obj +<< + /Contents 37 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 3 +5 0 obj +<< + /Contents 39 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 4 +6 0 obj +<< + /Contents 41 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 5 +7 0 obj +<< + /Contents 43 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 6 +8 0 obj +<< + /Contents 45 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 7 +9 0 obj +<< + /Contents 47 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 8 +10 0 obj +<< + /Contents 49 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 9 +11 0 obj +<< + /Contents 51 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 10 +12 0 obj +<< + /Contents 53 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 11 +13 0 obj +<< + /Contents 55 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 12 +14 0 obj +<< + /Contents 57 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 13 +15 0 obj +<< + /Contents 59 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 14 +16 0 obj +<< + /Contents 61 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 15 +17 0 obj +<< + /Contents 63 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 16 +18 0 obj +<< + /Contents 65 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 17 +19 0 obj +<< + /Contents 67 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 18 +20 0 obj +<< + /Contents 69 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 19 +21 0 obj +<< + /Contents 71 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 20 +22 0 obj +<< + /Contents 73 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 21 +23 0 obj +<< + /Contents 75 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 22 +24 0 obj +<< + /Contents 77 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 23 +25 0 obj +<< + /Contents 79 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 24 +26 0 obj +<< + /Contents 81 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 25 +27 0 obj +<< + /Contents 83 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 26 +28 0 obj +<< + /Contents 85 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 27 +29 0 obj +<< + /Contents 87 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 28 +30 0 obj +<< + /Contents 89 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 29 +31 0 obj +<< + /Contents 91 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 30 +32 0 obj +<< + /Contents 93 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Contents for page 1 +33 0 obj +<< + /Length 34 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 0) Tj +ET +endstream +endobj + +34 0 obj +46 +endobj + +35 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +36 0 obj +[ + /PDF + /Text +] +endobj + +%% Contents for page 2 +37 0 obj +<< + /Length 38 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 1) Tj +ET +endstream +endobj + +38 0 obj +46 +endobj + +%% Contents for page 3 +39 0 obj +<< + /Length 40 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 2) Tj +ET +endstream +endobj + +40 0 obj +46 +endobj + +%% Contents for page 4 +41 0 obj +<< + /Length 42 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 3) Tj +ET +endstream +endobj + +42 0 obj +46 +endobj + +%% Contents for page 5 +43 0 obj +<< + /Length 44 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 4) Tj +ET +endstream +endobj + +44 0 obj +46 +endobj + +%% Contents for page 6 +45 0 obj +<< + /Length 46 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 5) Tj +ET +endstream +endobj + +46 0 obj +46 +endobj + +%% Contents for page 7 +47 0 obj +<< + /Length 48 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 6) Tj +ET +endstream +endobj + +48 0 obj +46 +endobj + +%% Contents for page 8 +49 0 obj +<< + /Length 50 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 7) Tj +ET +endstream +endobj + +50 0 obj +46 +endobj + +%% Contents for page 9 +51 0 obj +<< + /Length 52 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 8) Tj +ET +endstream +endobj + +52 0 obj +46 +endobj + +%% Contents for page 10 +53 0 obj +<< + /Length 54 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 9) Tj +ET +endstream +endobj + +54 0 obj +46 +endobj + +%% Contents for page 11 +55 0 obj +<< + /Length 56 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 10) Tj +ET +endstream +endobj + +56 0 obj +47 +endobj + +%% Contents for page 12 +57 0 obj +<< + /Length 58 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 11) Tj +ET +endstream +endobj + +58 0 obj +47 +endobj + +%% Contents for page 13 +59 0 obj +<< + /Length 60 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 12) Tj +ET +endstream +endobj + +60 0 obj +47 +endobj + +%% Contents for page 14 +61 0 obj +<< + /Length 62 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 13) Tj +ET +endstream +endobj + +62 0 obj +47 +endobj + +%% Contents for page 15 +63 0 obj +<< + /Length 64 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 14) Tj +ET +endstream +endobj + +64 0 obj +47 +endobj + +%% Contents for page 16 +65 0 obj +<< + /Length 66 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 15) Tj +ET +endstream +endobj + +66 0 obj +47 +endobj + +%% Contents for page 17 +67 0 obj +<< + /Length 68 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 16) Tj +ET +endstream +endobj + +68 0 obj +47 +endobj + +%% Contents for page 18 +69 0 obj +<< + /Length 70 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 17) Tj +ET +endstream +endobj + +70 0 obj +47 +endobj + +%% Contents for page 19 +71 0 obj +<< + /Length 72 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 18) Tj +ET +endstream +endobj + +72 0 obj +47 +endobj + +%% Contents for page 20 +73 0 obj +<< + /Length 74 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 19) Tj +ET +endstream +endobj + +74 0 obj +47 +endobj + +%% Contents for page 21 +75 0 obj +<< + /Length 76 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 20) Tj +ET +endstream +endobj + +76 0 obj +47 +endobj + +%% Contents for page 22 +77 0 obj +<< + /Length 78 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 21) Tj +ET +endstream +endobj + +78 0 obj +47 +endobj + +%% Contents for page 23 +79 0 obj +<< + /Length 80 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 22) Tj +ET +endstream +endobj + +80 0 obj +47 +endobj + +%% Contents for page 24 +81 0 obj +<< + /Length 82 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 23) Tj +ET +endstream +endobj + +82 0 obj +47 +endobj + +%% Contents for page 25 +83 0 obj +<< + /Length 84 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 24) Tj +ET +endstream +endobj + +84 0 obj +47 +endobj + +%% Contents for page 26 +85 0 obj +<< + /Length 86 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 25) Tj +ET +endstream +endobj + +86 0 obj +47 +endobj + +%% Contents for page 27 +87 0 obj +<< + /Length 88 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 26) Tj +ET +endstream +endobj + +88 0 obj +47 +endobj + +%% Contents for page 28 +89 0 obj +<< + /Length 90 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 27) Tj +ET +endstream +endobj + +90 0 obj +47 +endobj + +%% Contents for page 29 +91 0 obj +<< + /Length 92 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 28) Tj +ET +endstream +endobj + +92 0 obj +47 +endobj + +%% Contents for page 30 +93 0 obj +<< + /Length 94 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 29) Tj +ET +endstream +endobj + +94 0 obj +47 +endobj + +95 0 obj +<< + /Type /Outlines + /First 96 0 R + /Last 97 0 R + /Count 6 +>> +endobj + +96 0 obj +<< + /Type /Outline + /Title (Isís 1 -> 5: /XYZ null null null) + /Parent 95 0 R + /Count 4 + /Next 97 0 R + /First 98 0 R + /Last 99 0 R + /Dest [ 8 0 R /XYZ null null null ] +>> +endobj + +97 0 obj +<< + /Type /Outline + /Title (Trepak 2 -> 15: /XYZ 66 756 3) + /Parent 95 0 R + /Prev 96 0 R + /Dest [ 18 0 R /XYZ 66 756 3 ] +>> +endobj + +98 0 obj +<< + /Type /Outline + /Title (Amanda 1.1 -> 11: /Fit) + /Parent 96 0 R + /Next 99 0 R + /First 100 0 R + /Last 101 0 R + /Count -3 + /Dest [ 14 0 R /Fit ] +>> +endobj + +99 0 obj +<< + /Type /Outline + % /Title (Sandy (Sandy [Greek]) 1.2 -> 13: /FitH 792) + /Title + /Parent 96 0 R + /Prev 98 0 R + /First 105 0 R + /Last 106 0 R + /Count 2 + /Dest [ 16 0 R /FitH 792 ] +>> +endobj + +100 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.1 -> 12: /FitV 100) + /Parent 98 0 R + /Next 101 0 R + /First 102 0 R + /Last 103 0 R + /Count -2 + /Dest [ 15 0 R /FitV 100 ] +>> +endobj + +101 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.2 -> 12: /XYZ null null null) + /Parent 98 0 R + /Prev 100 0 R + /First 104 0 R + /Last 104 0 R + /Count 1 + /Dest [ 15 0 R /XYZ null null null ] +>> +endobj + +102 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.1.1 -> 18: /XYZ null null null) + /Parent 100 0 R + /Next 103 0 R + /Dest [ 21 0 R /XYZ null null null ] +>> +endobj + +103 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.1.2 -> 19: /XYZ null null null) + /Parent 100 0 R + /Prev 102 0 R + /Dest [ 22 0 R /XYZ null null null ] +>> +endobj + +104 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.2.1 -> 22: /XYZ null null null) + /Parent 101 0 R + /Dest [ 25 0 R /XYZ null null null ] +>> +endobj + +105 0 obj +<< + /Type /Outline + /Title (Trepsichord 1.2.1 -> 1: /FitR 66 714 180 770) + /Parent 99 0 R + /Next 106 0 R + /Dest [ 4 0 R /FitR 66 714 180 770 ] +>> +endobj + +106 0 obj +<< + /Type /Outline + /Title (Trepsicle 1.2.2 -> 0: /XYZ null null null) + /Parent 99 0 R + /Prev 105 0 R + /Dest [ 3 0 R /XYZ null null null ] +>> +endobj + +107 0 obj + << /Nums [ + 0 << /P () >> + 2 << /S /r /St 1 >> + 7 << /P () >> + 9 << /S /r /St 6 >> + 11 << /P () >> + 12 << /S /D /St 2 >> + 15 << /S /D /St 6 >> + 19 << /P () >> + 20 << /S /D /St 12 >> + 22 << /S /D /St 16059 >> + 23 << /S /r /St 50 >> + 29 << /S /r /St 54 >> + ] >> +endobj + +xref +0 108 +0000000000 65535 f +0000000025 00000 n +0000000145 00000 n +0000000541 00000 n +0000000746 00000 n +0000000951 00000 n +0000001156 00000 n +0000001361 00000 n +0000001566 00000 n +0000001771 00000 n +0000001976 00000 n +0000002182 00000 n +0000002389 00000 n +0000002596 00000 n +0000002803 00000 n +0000003010 00000 n +0000003217 00000 n +0000003424 00000 n +0000003631 00000 n +0000003838 00000 n +0000004045 00000 n +0000004252 00000 n +0000004459 00000 n +0000004666 00000 n +0000004873 00000 n +0000005080 00000 n +0000005287 00000 n +0000005494 00000 n +0000005701 00000 n +0000005908 00000 n +0000006115 00000 n +0000006322 00000 n +0000006529 00000 n +0000006748 00000 n +0000006851 00000 n +0000006871 00000 n +0000006990 00000 n +0000007049 00000 n +0000007152 00000 n +0000007195 00000 n +0000007298 00000 n +0000007341 00000 n +0000007444 00000 n +0000007487 00000 n +0000007590 00000 n +0000007633 00000 n +0000007736 00000 n +0000007779 00000 n +0000007882 00000 n +0000007925 00000 n +0000008028 00000 n +0000008071 00000 n +0000008174 00000 n +0000008218 00000 n +0000008321 00000 n +0000008365 00000 n +0000008469 00000 n +0000008513 00000 n +0000008617 00000 n +0000008661 00000 n +0000008765 00000 n +0000008809 00000 n +0000008913 00000 n +0000008957 00000 n +0000009061 00000 n +0000009105 00000 n +0000009209 00000 n +0000009253 00000 n +0000009357 00000 n +0000009401 00000 n +0000009505 00000 n +0000009549 00000 n +0000009653 00000 n +0000009697 00000 n +0000009801 00000 n +0000009845 00000 n +0000009949 00000 n +0000009993 00000 n +0000010097 00000 n +0000010141 00000 n +0000010245 00000 n +0000010289 00000 n +0000010393 00000 n +0000010437 00000 n +0000010541 00000 n +0000010585 00000 n +0000010689 00000 n +0000010733 00000 n +0000010837 00000 n +0000010881 00000 n +0000010985 00000 n +0000011029 00000 n +0000011133 00000 n +0000011177 00000 n +0000011281 00000 n +0000011301 00000 n +0000011388 00000 n +0000011584 00000 n +0000011730 00000 n +0000011905 00000 n +0000012258 00000 n +0000012449 00000 n +0000012659 00000 n +0000012828 00000 n +0000012997 00000 n +0000013150 00000 n +0000013319 00000 n +0000013484 00000 n +trailer << + /Root 1 0 R + /Size 108 +>> +startxref +13801 +%%EOF + +% 1. Delete page labels +xref +0 1 +0000000107 65535 f +107 1 +0000000000 00001 f +trailer << /Root 1 0 R /Size 108 /Prev 13801 >> +startxref +16059 +%%EOF + +% 2. Delete outlines, reuse page labels. + +107 1 obj + << /Nums [ + 0 << /P () >> + 2 << /S /D /St 1 >> + 7 << /P () >> + 9 << /S /R /St 6 >> + 11 << /P () >> + 12 << /S /r /St 2 >> + 15 << /S /r /St 6 >> + 19 << /P () >> + 20 << /S /R /St 12 >> + 22 << /S /D /St 16059 >> + 23 << /S /r /St 50 >> + 29 << /S /r /St 54 >> + ] >> +endobj + +% Reuse object 1 with the same generation number. Leave outlines +% there pointing to a deleted object. +1 0 obj +<< + /PageLabels 107 1 R + /Pages 2 0 R + /Type /Catalog + /PageMode /UseOutlines + /Outlines 95 0 R +>> +endobj + +% Reuse object 33 to replace contents for page 1 +33 0 obj +<< + /Length 50 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 0 new) Tj +ET +endstream +endobj + +% Delete object 34 + +xref +0 2 +0000000034 65535 f +0000016648 00000 n +33 2 +0000016817 00000 n +0000000095 00001 f +95 13 +0000000096 00001 f +0000000097 00001 f +0000000098 00001 f +0000000099 00001 f +0000000100 00001 f +0000000101 00001 f +0000000102 00001 f +0000000103 00001 f +0000000104 00001 f +0000000105 00001 f +0000000106 00001 f +0000000000 00001 f +0000016227 00001 n +trailer << /Size 108 /Prev 16059 /Root 1 0 R >> +startxref +oops +%%EOF diff --git a/qpdf/qtest/qpdf/append-page-content-damaged.qdf b/qpdf/qtest/qpdf/append-page-content-damaged.qdf new file mode 100644 index 0000000..d81bd67 --- /dev/null +++ b/qpdf/qtest/qpdf/append-page-content-damaged.qdf @@ -0,0 +1,1614 @@ +%PDF-1.3 +%¿÷¢þ +%QDF-1.0 + +1 0 obj +<< + /Outlines 2 0 R + /PageLabels 3 0 R + /PageMode /UseOutlines + /Pages 4 0 R + /Type /Catalog +>> +endobj + +2 0 obj +<< + /Count 6 + /First 5 0 R + /Last 6 0 R + /Type /Outlines +>> +endobj + +3 0 obj +<< + /Nums [ + 0 + << + /P () + >> + 2 + << + /S /D + /St 1 + >> + 7 + << + /P () + >> + 9 + << + /S /R + /St 6 + >> + 11 + << + /P () + >> + 12 + << + /S /r + /St 2 + >> + 15 + << + /S /r + /St 6 + >> + 19 + << + /P () + >> + 20 + << + /S /R + /St 12 + >> + 22 + << + /S /D + /St 16059 + >> + 23 + << + /S /r + /St 50 + >> + 29 + << + /S /r + /St 54 + >> + ] +>> +endobj + +4 0 obj +<< + /Count 30 + /Kids [ + 7 0 R + 8 0 R + 9 0 R + 10 0 R + 11 0 R + 12 0 R + 13 0 R + 14 0 R + 15 0 R + 16 0 R + 17 0 R + 18 0 R + 19 0 R + 20 0 R + 21 0 R + 22 0 R + 23 0 R + 24 0 R + 25 0 R + 26 0 R + 27 0 R + 28 0 R + 29 0 R + 30 0 R + 31 0 R + 32 0 R + 33 0 R + 34 0 R + 35 0 R + 36 0 R + ] + /Type /Pages +>> +endobj + +5 0 obj +<< + /Count 4 + /Dest [ + 12 0 R + /XYZ + null + null + null + ] + /First 37 0 R + /Last 38 0 R + /Next 6 0 R + /Parent 2 0 R + /Title (Isís 1 -> 5: /XYZ null null null) + /Type /Outline +>> +endobj + +6 0 obj +<< + /Dest [ + 22 0 R + /XYZ + 66 + 756 + 3 + ] + /Parent 2 0 R + /Prev 5 0 R + /Title (Trepak 2 -> 15: /XYZ 66 756 3) + /Type /Outline +>> +endobj + +%% Page 1 +7 0 obj +<< + /Contents 39 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 2 +8 0 obj +<< + /Contents 43 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 3 +9 0 obj +<< + /Contents 45 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 4 +10 0 obj +<< + /Contents 47 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 5 +11 0 obj +<< + /Contents 49 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 6 +12 0 obj +<< + /Contents 51 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 7 +13 0 obj +<< + /Contents 53 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 8 +14 0 obj +<< + /Contents 55 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 9 +15 0 obj +<< + /Contents 57 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 10 +16 0 obj +<< + /Contents 59 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 11 +17 0 obj +<< + /Contents 61 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 12 +18 0 obj +<< + /Contents 63 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 13 +19 0 obj +<< + /Contents 65 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 14 +20 0 obj +<< + /Contents 67 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 15 +21 0 obj +<< + /Contents 69 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 16 +22 0 obj +<< + /Contents 71 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 17 +23 0 obj +<< + /Contents 73 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 18 +24 0 obj +<< + /Contents 75 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 19 +25 0 obj +<< + /Contents 77 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 20 +26 0 obj +<< + /Contents 79 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 21 +27 0 obj +<< + /Contents 81 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 22 +28 0 obj +<< + /Contents 83 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 23 +29 0 obj +<< + /Contents 85 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 24 +30 0 obj +<< + /Contents 87 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 25 +31 0 obj +<< + /Contents 89 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 26 +32 0 obj +<< + /Contents 91 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 27 +33 0 obj +<< + /Contents 93 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 28 +34 0 obj +<< + /Contents 95 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 29 +35 0 obj +<< + /Contents 97 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +%% Page 30 +36 0 obj +<< + /Contents 99 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 4 0 R + /Resources << + /Font << + /F1 41 0 R + >> + /ProcSet 42 0 R + >> + /Type /Page +>> +endobj + +37 0 obj +<< + /Count -3 + /Dest [ + 18 0 R + /Fit + ] + /First 101 0 R + /Last 102 0 R + /Next 38 0 R + /Parent 5 0 R + /Title (Amanda 1.1 -> 11: /Fit) + /Type /Outline +>> +endobj + +38 0 obj +<< + /Count 2 + /Dest [ + 20 0 R + /FitH + 792 + ] + /First 103 0 R + /Last 104 0 R + /Parent 5 0 R + /Prev 37 0 R + /Title + /Type /Outline +>> +endobj + +%% Contents for page 1 +39 0 obj +<< + /Length 40 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 0 new) Tj +ET +endstream +endobj + +40 0 obj +50 +endobj + +41 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +42 0 obj +[ + /PDF + /Text +] +endobj + +%% Contents for page 2 +43 0 obj +<< + /Length 44 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 1) Tj +ET +endstream +endobj + +44 0 obj +46 +endobj + +%% Contents for page 3 +45 0 obj +<< + /Length 46 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 2) Tj +ET +endstream +endobj + +46 0 obj +46 +endobj + +%% Contents for page 4 +47 0 obj +<< + /Length 48 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 3) Tj +ET +endstream +endobj + +48 0 obj +46 +endobj + +%% Contents for page 5 +49 0 obj +<< + /Length 50 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 4) Tj +ET +endstream +endobj + +50 0 obj +46 +endobj + +%% Contents for page 6 +51 0 obj +<< + /Length 52 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 5) Tj +ET +endstream +endobj + +52 0 obj +46 +endobj + +%% Contents for page 7 +53 0 obj +<< + /Length 54 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 6) Tj +ET +endstream +endobj + +54 0 obj +46 +endobj + +%% Contents for page 8 +55 0 obj +<< + /Length 56 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 7) Tj +ET +endstream +endobj + +56 0 obj +46 +endobj + +%% Contents for page 9 +57 0 obj +<< + /Length 58 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 8) Tj +ET +endstream +endobj + +58 0 obj +46 +endobj + +%% Contents for page 10 +59 0 obj +<< + /Length 60 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 9) Tj +ET +endstream +endobj + +60 0 obj +46 +endobj + +%% Contents for page 11 +61 0 obj +<< + /Length 62 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 10) Tj +ET +endstream +endobj + +62 0 obj +47 +endobj + +%% Contents for page 12 +63 0 obj +<< + /Length 64 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 11) Tj +ET +endstream +endobj + +64 0 obj +47 +endobj + +%% Contents for page 13 +65 0 obj +<< + /Length 66 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 12) Tj +ET +endstream +endobj + +66 0 obj +47 +endobj + +%% Contents for page 14 +67 0 obj +<< + /Length 68 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 13) Tj +ET +endstream +endobj + +68 0 obj +47 +endobj + +%% Contents for page 15 +69 0 obj +<< + /Length 70 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 14) Tj +ET +endstream +endobj + +70 0 obj +47 +endobj + +%% Contents for page 16 +71 0 obj +<< + /Length 72 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 15) Tj +ET +endstream +endobj + +72 0 obj +47 +endobj + +%% Contents for page 17 +73 0 obj +<< + /Length 74 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 16) Tj +ET +endstream +endobj + +74 0 obj +47 +endobj + +%% Contents for page 18 +75 0 obj +<< + /Length 76 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 17) Tj +ET +endstream +endobj + +76 0 obj +47 +endobj + +%% Contents for page 19 +77 0 obj +<< + /Length 78 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 18) Tj +ET +endstream +endobj + +78 0 obj +47 +endobj + +%% Contents for page 20 +79 0 obj +<< + /Length 80 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 19) Tj +ET +endstream +endobj + +80 0 obj +47 +endobj + +%% Contents for page 21 +81 0 obj +<< + /Length 82 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 20) Tj +ET +endstream +endobj + +82 0 obj +47 +endobj + +%% Contents for page 22 +83 0 obj +<< + /Length 84 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 21) Tj +ET +endstream +endobj + +84 0 obj +47 +endobj + +%% Contents for page 23 +85 0 obj +<< + /Length 86 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 22) Tj +ET +endstream +endobj + +86 0 obj +47 +endobj + +%% Contents for page 24 +87 0 obj +<< + /Length 88 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 23) Tj +ET +endstream +endobj + +88 0 obj +47 +endobj + +%% Contents for page 25 +89 0 obj +<< + /Length 90 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 24) Tj +ET +endstream +endobj + +90 0 obj +47 +endobj + +%% Contents for page 26 +91 0 obj +<< + /Length 92 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 25) Tj +ET +endstream +endobj + +92 0 obj +47 +endobj + +%% Contents for page 27 +93 0 obj +<< + /Length 94 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 26) Tj +ET +endstream +endobj + +94 0 obj +47 +endobj + +%% Contents for page 28 +95 0 obj +<< + /Length 96 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 27) Tj +ET +endstream +endobj + +96 0 obj +47 +endobj + +%% Contents for page 29 +97 0 obj +<< + /Length 98 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 28) Tj +ET +endstream +endobj + +98 0 obj +47 +endobj + +%% Contents for page 30 +99 0 obj +<< + /Length 100 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 29) Tj +ET +endstream +endobj + +100 0 obj +47 +endobj + +101 0 obj +<< + /Count -2 + /Dest [ + 19 0 R + /FitV + 100 + ] + /First 105 0 R + /Last 106 0 R + /Next 102 0 R + /Parent 37 0 R + /Title (Isosicle 1.1.1 -> 12: /FitV 100) + /Type /Outline +>> +endobj + +102 0 obj +<< + /Count 1 + /Dest [ + 19 0 R + /XYZ + null + null + null + ] + /First 107 0 R + /Last 107 0 R + /Parent 37 0 R + /Prev 101 0 R + /Title (Isosicle 1.1.2 -> 12: /XYZ null null null) + /Type /Outline +>> +endobj + +103 0 obj +<< + /Dest [ + 8 0 R + /FitR + 66 + 714 + 180 + 770 + ] + /Next 104 0 R + /Parent 38 0 R + /Title (Trepsichord 1.2.1 -> 1: /FitR 66 714 180 770) + /Type /Outline +>> +endobj + +104 0 obj +<< + /Dest [ + 7 0 R + /XYZ + null + null + null + ] + /Parent 38 0 R + /Prev 103 0 R + /Title (Trepsicle 1.2.2 -> 0: /XYZ null null null) + /Type /Outline +>> +endobj + +105 0 obj +<< + /Dest [ + 25 0 R + /XYZ + null + null + null + ] + /Next 106 0 R + /Parent 101 0 R + /Title (Isosicle 1.1.1.1 -> 18: /XYZ null null null) + /Type /Outline +>> +endobj + +106 0 obj +<< + /Dest [ + 26 0 R + /XYZ + null + null + null + ] + /Parent 101 0 R + /Prev 105 0 R + /Title (Isosicle 1.1.1.2 -> 19: /XYZ null null null) + /Type /Outline +>> +endobj + +107 0 obj +<< + /Dest [ + 29 0 R + /XYZ + null + null + null + ] + /Parent 102 0 R + /Title (Isosicle 1.1.2.1 -> 22: /XYZ null null null) + /Type /Outline +>> +endobj + +xref +0 108 +0000000000 65535 f +0000000025 00000 n +0000000142 00000 n +0000000222 00000 n +0000000753 00000 n +0000001143 00000 n +0000001359 00000 n +0000001534 00000 n +0000001739 00000 n +0000001944 00000 n +0000002149 00000 n +0000002355 00000 n +0000002561 00000 n +0000002767 00000 n +0000002973 00000 n +0000003179 00000 n +0000003386 00000 n +0000003593 00000 n +0000003800 00000 n +0000004007 00000 n +0000004214 00000 n +0000004421 00000 n +0000004628 00000 n +0000004835 00000 n +0000005042 00000 n +0000005249 00000 n +0000005456 00000 n +0000005663 00000 n +0000005870 00000 n +0000006077 00000 n +0000006284 00000 n +0000006491 00000 n +0000006698 00000 n +0000006905 00000 n +0000007112 00000 n +0000007319 00000 n +0000007526 00000 n +0000007722 00000 n +0000007906 00000 n +0000008239 00000 n +0000008346 00000 n +0000008366 00000 n +0000008485 00000 n +0000008544 00000 n +0000008647 00000 n +0000008690 00000 n +0000008793 00000 n +0000008836 00000 n +0000008939 00000 n +0000008982 00000 n +0000009085 00000 n +0000009128 00000 n +0000009231 00000 n +0000009274 00000 n +0000009377 00000 n +0000009420 00000 n +0000009523 00000 n +0000009566 00000 n +0000009669 00000 n +0000009713 00000 n +0000009816 00000 n +0000009860 00000 n +0000009964 00000 n +0000010008 00000 n +0000010112 00000 n +0000010156 00000 n +0000010260 00000 n +0000010304 00000 n +0000010408 00000 n +0000010452 00000 n +0000010556 00000 n +0000010600 00000 n +0000010704 00000 n +0000010748 00000 n +0000010852 00000 n +0000010896 00000 n +0000011000 00000 n +0000011044 00000 n +0000011148 00000 n +0000011192 00000 n +0000011296 00000 n +0000011340 00000 n +0000011444 00000 n +0000011488 00000 n +0000011592 00000 n +0000011636 00000 n +0000011740 00000 n +0000011784 00000 n +0000011888 00000 n +0000011932 00000 n +0000012036 00000 n +0000012080 00000 n +0000012184 00000 n +0000012228 00000 n +0000012332 00000 n +0000012376 00000 n +0000012480 00000 n +0000012524 00000 n +0000012628 00000 n +0000012672 00000 n +0000012777 00000 n +0000012798 00000 n +0000013003 00000 n +0000013235 00000 n +0000013430 00000 n +0000013617 00000 n +0000013808 00000 n +0000013999 00000 n +trailer << + /Root 1 0 R + /Size 108 + /ID [<31415926535897932384626433832795><31415926535897932384626433832795>] +>> +startxref +14174 +%%EOF diff --git a/qpdf/qtest/qpdf/append-page-content-good.qdf b/qpdf/qtest/qpdf/append-page-content-good.qdf new file mode 100644 index 0000000..7f11503 --- /dev/null +++ b/qpdf/qtest/qpdf/append-page-content-good.qdf @@ -0,0 +1,1408 @@ +%PDF-1.3 +%¿÷¢þ +%QDF-1.0 + +1 0 obj +<< + /PageLabels 2 0 R + /PageMode /UseOutlines + /Pages 3 0 R + /Type /Catalog +>> +endobj + +2 0 obj +<< + /Nums [ + 0 + << + /P () + >> + 2 + << + /S /D + /St 1 + >> + 7 + << + /P () + >> + 9 + << + /S /R + /St 6 + >> + 11 + << + /P () + >> + 12 + << + /S /r + /St 2 + >> + 15 + << + /S /r + /St 6 + >> + 19 + << + /P () + >> + 20 + << + /S /R + /St 12 + >> + 22 + << + /S /D + /St 16059 + >> + 23 + << + /S /r + /St 50 + >> + 29 + << + /S /r + /St 54 + >> + ] +>> +endobj + +3 0 obj +<< + /Count 30 + /Kids [ + 4 0 R + 5 0 R + 6 0 R + 7 0 R + 8 0 R + 9 0 R + 10 0 R + 11 0 R + 12 0 R + 13 0 R + 14 0 R + 15 0 R + 16 0 R + 17 0 R + 18 0 R + 19 0 R + 20 0 R + 21 0 R + 22 0 R + 23 0 R + 24 0 R + 25 0 R + 26 0 R + 27 0 R + 28 0 R + 29 0 R + 30 0 R + 31 0 R + 32 0 R + 33 0 R + ] + /Type /Pages +>> +endobj + +%% Page 1 +4 0 obj +<< + /Contents 34 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 2 +5 0 obj +<< + /Contents 38 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 3 +6 0 obj +<< + /Contents 40 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 4 +7 0 obj +<< + /Contents 42 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 5 +8 0 obj +<< + /Contents 44 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 6 +9 0 obj +<< + /Contents 46 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 7 +10 0 obj +<< + /Contents 48 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 8 +11 0 obj +<< + /Contents 50 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 9 +12 0 obj +<< + /Contents 52 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 10 +13 0 obj +<< + /Contents 54 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 11 +14 0 obj +<< + /Contents 56 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 12 +15 0 obj +<< + /Contents 58 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 13 +16 0 obj +<< + /Contents 60 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 14 +17 0 obj +<< + /Contents 62 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 15 +18 0 obj +<< + /Contents 64 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 16 +19 0 obj +<< + /Contents 66 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 17 +20 0 obj +<< + /Contents 68 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 18 +21 0 obj +<< + /Contents 70 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 19 +22 0 obj +<< + /Contents 72 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 20 +23 0 obj +<< + /Contents 74 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 21 +24 0 obj +<< + /Contents 76 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 22 +25 0 obj +<< + /Contents 78 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 23 +26 0 obj +<< + /Contents 80 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 24 +27 0 obj +<< + /Contents 82 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 25 +28 0 obj +<< + /Contents 84 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 26 +29 0 obj +<< + /Contents 86 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 27 +30 0 obj +<< + /Contents 88 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 28 +31 0 obj +<< + /Contents 90 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 29 +32 0 obj +<< + /Contents 92 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 30 +33 0 obj +<< + /Contents 94 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Contents for page 1 +34 0 obj +<< + /Length 35 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 0 new) Tj +ET +endstream +endobj + +35 0 obj +50 +endobj + +36 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +37 0 obj +[ + /PDF + /Text +] +endobj + +%% Contents for page 2 +38 0 obj +<< + /Length 39 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 1) Tj +ET +endstream +endobj + +39 0 obj +46 +endobj + +%% Contents for page 3 +40 0 obj +<< + /Length 41 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 2) Tj +ET +endstream +endobj + +41 0 obj +46 +endobj + +%% Contents for page 4 +42 0 obj +<< + /Length 43 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 3) Tj +ET +endstream +endobj + +43 0 obj +46 +endobj + +%% Contents for page 5 +44 0 obj +<< + /Length 45 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 4) Tj +ET +endstream +endobj + +45 0 obj +46 +endobj + +%% Contents for page 6 +46 0 obj +<< + /Length 47 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 5) Tj +ET +endstream +endobj + +47 0 obj +46 +endobj + +%% Contents for page 7 +48 0 obj +<< + /Length 49 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 6) Tj +ET +endstream +endobj + +49 0 obj +46 +endobj + +%% Contents for page 8 +50 0 obj +<< + /Length 51 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 7) Tj +ET +endstream +endobj + +51 0 obj +46 +endobj + +%% Contents for page 9 +52 0 obj +<< + /Length 53 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 8) Tj +ET +endstream +endobj + +53 0 obj +46 +endobj + +%% Contents for page 10 +54 0 obj +<< + /Length 55 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 9) Tj +ET +endstream +endobj + +55 0 obj +46 +endobj + +%% Contents for page 11 +56 0 obj +<< + /Length 57 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 10) Tj +ET +endstream +endobj + +57 0 obj +47 +endobj + +%% Contents for page 12 +58 0 obj +<< + /Length 59 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 11) Tj +ET +endstream +endobj + +59 0 obj +47 +endobj + +%% Contents for page 13 +60 0 obj +<< + /Length 61 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 12) Tj +ET +endstream +endobj + +61 0 obj +47 +endobj + +%% Contents for page 14 +62 0 obj +<< + /Length 63 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 13) Tj +ET +endstream +endobj + +63 0 obj +47 +endobj + +%% Contents for page 15 +64 0 obj +<< + /Length 65 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 14) Tj +ET +endstream +endobj + +65 0 obj +47 +endobj + +%% Contents for page 16 +66 0 obj +<< + /Length 67 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 15) Tj +ET +endstream +endobj + +67 0 obj +47 +endobj + +%% Contents for page 17 +68 0 obj +<< + /Length 69 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 16) Tj +ET +endstream +endobj + +69 0 obj +47 +endobj + +%% Contents for page 18 +70 0 obj +<< + /Length 71 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 17) Tj +ET +endstream +endobj + +71 0 obj +47 +endobj + +%% Contents for page 19 +72 0 obj +<< + /Length 73 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 18) Tj +ET +endstream +endobj + +73 0 obj +47 +endobj + +%% Contents for page 20 +74 0 obj +<< + /Length 75 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 19) Tj +ET +endstream +endobj + +75 0 obj +47 +endobj + +%% Contents for page 21 +76 0 obj +<< + /Length 77 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 20) Tj +ET +endstream +endobj + +77 0 obj +47 +endobj + +%% Contents for page 22 +78 0 obj +<< + /Length 79 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 21) Tj +ET +endstream +endobj + +79 0 obj +47 +endobj + +%% Contents for page 23 +80 0 obj +<< + /Length 81 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 22) Tj +ET +endstream +endobj + +81 0 obj +47 +endobj + +%% Contents for page 24 +82 0 obj +<< + /Length 83 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 23) Tj +ET +endstream +endobj + +83 0 obj +47 +endobj + +%% Contents for page 25 +84 0 obj +<< + /Length 85 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 24) Tj +ET +endstream +endobj + +85 0 obj +47 +endobj + +%% Contents for page 26 +86 0 obj +<< + /Length 87 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 25) Tj +ET +endstream +endobj + +87 0 obj +47 +endobj + +%% Contents for page 27 +88 0 obj +<< + /Length 89 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 26) Tj +ET +endstream +endobj + +89 0 obj +47 +endobj + +%% Contents for page 28 +90 0 obj +<< + /Length 91 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 27) Tj +ET +endstream +endobj + +91 0 obj +47 +endobj + +%% Contents for page 29 +92 0 obj +<< + /Length 93 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 28) Tj +ET +endstream +endobj + +93 0 obj +47 +endobj + +%% Contents for page 30 +94 0 obj +<< + /Length 95 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 29) Tj +ET +endstream +endobj + +95 0 obj +47 +endobj + +xref +0 96 +0000000000 65535 f +0000000025 00000 n +0000000124 00000 n +0000000655 00000 n +0000001052 00000 n +0000001257 00000 n +0000001462 00000 n +0000001667 00000 n +0000001872 00000 n +0000002077 00000 n +0000002282 00000 n +0000002488 00000 n +0000002694 00000 n +0000002901 00000 n +0000003108 00000 n +0000003315 00000 n +0000003522 00000 n +0000003729 00000 n +0000003936 00000 n +0000004143 00000 n +0000004350 00000 n +0000004557 00000 n +0000004764 00000 n +0000004971 00000 n +0000005178 00000 n +0000005385 00000 n +0000005592 00000 n +0000005799 00000 n +0000006006 00000 n +0000006213 00000 n +0000006420 00000 n +0000006627 00000 n +0000006834 00000 n +0000007041 00000 n +0000007260 00000 n +0000007367 00000 n +0000007387 00000 n +0000007506 00000 n +0000007565 00000 n +0000007668 00000 n +0000007711 00000 n +0000007814 00000 n +0000007857 00000 n +0000007960 00000 n +0000008003 00000 n +0000008106 00000 n +0000008149 00000 n +0000008252 00000 n +0000008295 00000 n +0000008398 00000 n +0000008441 00000 n +0000008544 00000 n +0000008587 00000 n +0000008690 00000 n +0000008734 00000 n +0000008837 00000 n +0000008881 00000 n +0000008985 00000 n +0000009029 00000 n +0000009133 00000 n +0000009177 00000 n +0000009281 00000 n +0000009325 00000 n +0000009429 00000 n +0000009473 00000 n +0000009577 00000 n +0000009621 00000 n +0000009725 00000 n +0000009769 00000 n +0000009873 00000 n +0000009917 00000 n +0000010021 00000 n +0000010065 00000 n +0000010169 00000 n +0000010213 00000 n +0000010317 00000 n +0000010361 00000 n +0000010465 00000 n +0000010509 00000 n +0000010613 00000 n +0000010657 00000 n +0000010761 00000 n +0000010805 00000 n +0000010909 00000 n +0000010953 00000 n +0000011057 00000 n +0000011101 00000 n +0000011205 00000 n +0000011249 00000 n +0000011353 00000 n +0000011397 00000 n +0000011501 00000 n +0000011545 00000 n +0000011649 00000 n +0000011693 00000 n +0000011797 00000 n +trailer << + /Root 1 0 R + /Size 96 + /ID [<31415926535897932384626433832795><31415926535897932384626433832795>] +>> +startxref +11817 +%%EOF diff --git a/qpdf/qtest/qpdf/append-page-content.pdf b/qpdf/qtest/qpdf/append-page-content.pdf new file mode 100644 index 0000000..38fd28f --- /dev/null +++ b/qpdf/qtest/qpdf/append-page-content.pdf @@ -0,0 +1,1592 @@ +%PDF-1.3 +%¿÷¢þ +%QDF-1.0 + +1 0 obj +<< + /PageLabels 107 0 R + /Pages 2 0 R + /Type /Catalog + /PageMode /UseOutlines + /Outlines 95 0 R +>> +endobj + +2 0 obj +<< + /Count 30 + /Kids [ + 3 0 R + 4 0 R + 5 0 R + 6 0 R + 7 0 R + 8 0 R + 9 0 R + 10 0 R + 11 0 R + 12 0 R + 13 0 R + 14 0 R + 15 0 R + 16 0 R + 17 0 R + 18 0 R + 19 0 R + 20 0 R + 21 0 R + 22 0 R + 23 0 R + 24 0 R + 25 0 R + 26 0 R + 27 0 R + 28 0 R + 29 0 R + 30 0 R + 31 0 R + 32 0 R + ] + /Type /Pages +>> +endobj + +%% Page 1 +3 0 obj +<< + /Contents 33 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 2 +4 0 obj +<< + /Contents 37 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 3 +5 0 obj +<< + /Contents 39 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 4 +6 0 obj +<< + /Contents 41 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 5 +7 0 obj +<< + /Contents 43 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 6 +8 0 obj +<< + /Contents 45 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 7 +9 0 obj +<< + /Contents 47 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 8 +10 0 obj +<< + /Contents 49 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 9 +11 0 obj +<< + /Contents 51 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 10 +12 0 obj +<< + /Contents 53 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 11 +13 0 obj +<< + /Contents 55 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 12 +14 0 obj +<< + /Contents 57 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 13 +15 0 obj +<< + /Contents 59 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 14 +16 0 obj +<< + /Contents 61 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 15 +17 0 obj +<< + /Contents 63 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 16 +18 0 obj +<< + /Contents 65 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 17 +19 0 obj +<< + /Contents 67 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 18 +20 0 obj +<< + /Contents 69 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 19 +21 0 obj +<< + /Contents 71 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 20 +22 0 obj +<< + /Contents 73 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 21 +23 0 obj +<< + /Contents 75 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 22 +24 0 obj +<< + /Contents 77 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 23 +25 0 obj +<< + /Contents 79 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 24 +26 0 obj +<< + /Contents 81 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 25 +27 0 obj +<< + /Contents 83 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 26 +28 0 obj +<< + /Contents 85 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 27 +29 0 obj +<< + /Contents 87 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 28 +30 0 obj +<< + /Contents 89 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 29 +31 0 obj +<< + /Contents 91 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 30 +32 0 obj +<< + /Contents 93 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Contents for page 1 +33 0 obj +<< + /Length 34 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 0) Tj +ET +endstream +endobj + +34 0 obj +46 +endobj + +35 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +36 0 obj +[ + /PDF + /Text +] +endobj + +%% Contents for page 2 +37 0 obj +<< + /Length 38 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 1) Tj +ET +endstream +endobj + +38 0 obj +46 +endobj + +%% Contents for page 3 +39 0 obj +<< + /Length 40 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 2) Tj +ET +endstream +endobj + +40 0 obj +46 +endobj + +%% Contents for page 4 +41 0 obj +<< + /Length 42 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 3) Tj +ET +endstream +endobj + +42 0 obj +46 +endobj + +%% Contents for page 5 +43 0 obj +<< + /Length 44 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 4) Tj +ET +endstream +endobj + +44 0 obj +46 +endobj + +%% Contents for page 6 +45 0 obj +<< + /Length 46 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 5) Tj +ET +endstream +endobj + +46 0 obj +46 +endobj + +%% Contents for page 7 +47 0 obj +<< + /Length 48 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 6) Tj +ET +endstream +endobj + +48 0 obj +46 +endobj + +%% Contents for page 8 +49 0 obj +<< + /Length 50 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 7) Tj +ET +endstream +endobj + +50 0 obj +46 +endobj + +%% Contents for page 9 +51 0 obj +<< + /Length 52 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 8) Tj +ET +endstream +endobj + +52 0 obj +46 +endobj + +%% Contents for page 10 +53 0 obj +<< + /Length 54 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 9) Tj +ET +endstream +endobj + +54 0 obj +46 +endobj + +%% Contents for page 11 +55 0 obj +<< + /Length 56 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 10) Tj +ET +endstream +endobj + +56 0 obj +47 +endobj + +%% Contents for page 12 +57 0 obj +<< + /Length 58 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 11) Tj +ET +endstream +endobj + +58 0 obj +47 +endobj + +%% Contents for page 13 +59 0 obj +<< + /Length 60 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 12) Tj +ET +endstream +endobj + +60 0 obj +47 +endobj + +%% Contents for page 14 +61 0 obj +<< + /Length 62 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 13) Tj +ET +endstream +endobj + +62 0 obj +47 +endobj + +%% Contents for page 15 +63 0 obj +<< + /Length 64 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 14) Tj +ET +endstream +endobj + +64 0 obj +47 +endobj + +%% Contents for page 16 +65 0 obj +<< + /Length 66 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 15) Tj +ET +endstream +endobj + +66 0 obj +47 +endobj + +%% Contents for page 17 +67 0 obj +<< + /Length 68 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 16) Tj +ET +endstream +endobj + +68 0 obj +47 +endobj + +%% Contents for page 18 +69 0 obj +<< + /Length 70 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 17) Tj +ET +endstream +endobj + +70 0 obj +47 +endobj + +%% Contents for page 19 +71 0 obj +<< + /Length 72 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 18) Tj +ET +endstream +endobj + +72 0 obj +47 +endobj + +%% Contents for page 20 +73 0 obj +<< + /Length 74 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 19) Tj +ET +endstream +endobj + +74 0 obj +47 +endobj + +%% Contents for page 21 +75 0 obj +<< + /Length 76 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 20) Tj +ET +endstream +endobj + +76 0 obj +47 +endobj + +%% Contents for page 22 +77 0 obj +<< + /Length 78 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 21) Tj +ET +endstream +endobj + +78 0 obj +47 +endobj + +%% Contents for page 23 +79 0 obj +<< + /Length 80 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 22) Tj +ET +endstream +endobj + +80 0 obj +47 +endobj + +%% Contents for page 24 +81 0 obj +<< + /Length 82 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 23) Tj +ET +endstream +endobj + +82 0 obj +47 +endobj + +%% Contents for page 25 +83 0 obj +<< + /Length 84 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 24) Tj +ET +endstream +endobj + +84 0 obj +47 +endobj + +%% Contents for page 26 +85 0 obj +<< + /Length 86 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 25) Tj +ET +endstream +endobj + +86 0 obj +47 +endobj + +%% Contents for page 27 +87 0 obj +<< + /Length 88 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 26) Tj +ET +endstream +endobj + +88 0 obj +47 +endobj + +%% Contents for page 28 +89 0 obj +<< + /Length 90 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 27) Tj +ET +endstream +endobj + +90 0 obj +47 +endobj + +%% Contents for page 29 +91 0 obj +<< + /Length 92 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 28) Tj +ET +endstream +endobj + +92 0 obj +47 +endobj + +%% Contents for page 30 +93 0 obj +<< + /Length 94 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 29) Tj +ET +endstream +endobj + +94 0 obj +47 +endobj + +95 0 obj +<< + /Type /Outlines + /First 96 0 R + /Last 97 0 R + /Count 6 +>> +endobj + +96 0 obj +<< + /Type /Outline + /Title (Isís 1 -> 5: /XYZ null null null) + /Parent 95 0 R + /Count 4 + /Next 97 0 R + /First 98 0 R + /Last 99 0 R + /Dest [ 8 0 R /XYZ null null null ] +>> +endobj + +97 0 obj +<< + /Type /Outline + /Title (Trepak 2 -> 15: /XYZ 66 756 3) + /Parent 95 0 R + /Prev 96 0 R + /Dest [ 18 0 R /XYZ 66 756 3 ] +>> +endobj + +98 0 obj +<< + /Type /Outline + /Title (Amanda 1.1 -> 11: /Fit) + /Parent 96 0 R + /Next 99 0 R + /First 100 0 R + /Last 101 0 R + /Count -3 + /Dest [ 14 0 R /Fit ] +>> +endobj + +99 0 obj +<< + /Type /Outline + % /Title (Sandy (Sandy [Greek]) 1.2 -> 13: /FitH 792) + /Title + /Parent 96 0 R + /Prev 98 0 R + /First 105 0 R + /Last 106 0 R + /Count 2 + /Dest [ 16 0 R /FitH 792 ] +>> +endobj + +100 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.1 -> 12: /FitV 100) + /Parent 98 0 R + /Next 101 0 R + /First 102 0 R + /Last 103 0 R + /Count -2 + /Dest [ 15 0 R /FitV 100 ] +>> +endobj + +101 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.2 -> 12: /XYZ null null null) + /Parent 98 0 R + /Prev 100 0 R + /First 104 0 R + /Last 104 0 R + /Count 1 + /Dest [ 15 0 R /XYZ null null null ] +>> +endobj + +102 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.1.1 -> 18: /XYZ null null null) + /Parent 100 0 R + /Next 103 0 R + /Dest [ 21 0 R /XYZ null null null ] +>> +endobj + +103 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.1.2 -> 19: /XYZ null null null) + /Parent 100 0 R + /Prev 102 0 R + /Dest [ 22 0 R /XYZ null null null ] +>> +endobj + +104 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.2.1 -> 22: /XYZ null null null) + /Parent 101 0 R + /Dest [ 25 0 R /XYZ null null null ] +>> +endobj + +105 0 obj +<< + /Type /Outline + /Title (Trepsichord 1.2.1 -> 1: /FitR 66 714 180 770) + /Parent 99 0 R + /Next 106 0 R + /Dest [ 4 0 R /FitR 66 714 180 770 ] +>> +endobj + +106 0 obj +<< + /Type /Outline + /Title (Trepsicle 1.2.2 -> 0: /XYZ null null null) + /Parent 99 0 R + /Prev 105 0 R + /Dest [ 3 0 R /XYZ null null null ] +>> +endobj + +107 0 obj + << /Nums [ + 0 << /P () >> + 2 << /S /r /St 1 >> + 7 << /P () >> + 9 << /S /r /St 6 >> + 11 << /P () >> + 12 << /S /D /St 2 >> + 15 << /S /D /St 6 >> + 19 << /P () >> + 20 << /S /D /St 12 >> + 22 << /S /D /St 16059 >> + 23 << /S /r /St 50 >> + 29 << /S /r /St 54 >> + ] >> +endobj + +xref +0 108 +0000000000 65535 f +0000000025 00000 n +0000000145 00000 n +0000000541 00000 n +0000000746 00000 n +0000000951 00000 n +0000001156 00000 n +0000001361 00000 n +0000001566 00000 n +0000001771 00000 n +0000001976 00000 n +0000002182 00000 n +0000002389 00000 n +0000002596 00000 n +0000002803 00000 n +0000003010 00000 n +0000003217 00000 n +0000003424 00000 n +0000003631 00000 n +0000003838 00000 n +0000004045 00000 n +0000004252 00000 n +0000004459 00000 n +0000004666 00000 n +0000004873 00000 n +0000005080 00000 n +0000005287 00000 n +0000005494 00000 n +0000005701 00000 n +0000005908 00000 n +0000006115 00000 n +0000006322 00000 n +0000006529 00000 n +0000006748 00000 n +0000006851 00000 n +0000006871 00000 n +0000006990 00000 n +0000007049 00000 n +0000007152 00000 n +0000007195 00000 n +0000007298 00000 n +0000007341 00000 n +0000007444 00000 n +0000007487 00000 n +0000007590 00000 n +0000007633 00000 n +0000007736 00000 n +0000007779 00000 n +0000007882 00000 n +0000007925 00000 n +0000008028 00000 n +0000008071 00000 n +0000008174 00000 n +0000008218 00000 n +0000008321 00000 n +0000008365 00000 n +0000008469 00000 n +0000008513 00000 n +0000008617 00000 n +0000008661 00000 n +0000008765 00000 n +0000008809 00000 n +0000008913 00000 n +0000008957 00000 n +0000009061 00000 n +0000009105 00000 n +0000009209 00000 n +0000009253 00000 n +0000009357 00000 n +0000009401 00000 n +0000009505 00000 n +0000009549 00000 n +0000009653 00000 n +0000009697 00000 n +0000009801 00000 n +0000009845 00000 n +0000009949 00000 n +0000009993 00000 n +0000010097 00000 n +0000010141 00000 n +0000010245 00000 n +0000010289 00000 n +0000010393 00000 n +0000010437 00000 n +0000010541 00000 n +0000010585 00000 n +0000010689 00000 n +0000010733 00000 n +0000010837 00000 n +0000010881 00000 n +0000010985 00000 n +0000011029 00000 n +0000011133 00000 n +0000011177 00000 n +0000011281 00000 n +0000011301 00000 n +0000011388 00000 n +0000011584 00000 n +0000011730 00000 n +0000011905 00000 n +0000012258 00000 n +0000012449 00000 n +0000012659 00000 n +0000012828 00000 n +0000012997 00000 n +0000013150 00000 n +0000013319 00000 n +0000013484 00000 n +trailer << + /Root 1 0 R + /Size 108 +>> +startxref +13801 +%%EOF + +% 1. Delete page labels +xref +0 1 +0000000107 65535 f +107 1 +0000000000 00001 f +trailer << /Root 1 0 R /Size 108 /Prev 13801 >> +startxref +16059 +%%EOF + +% 2. Delete outlines, reuse page labels. + +107 1 obj + << /Nums [ + 0 << /P () >> + 2 << /S /D /St 1 >> + 7 << /P () >> + 9 << /S /R /St 6 >> + 11 << /P () >> + 12 << /S /r /St 2 >> + 15 << /S /r /St 6 >> + 19 << /P () >> + 20 << /S /R /St 12 >> + 22 << /S /D /St 16059 >> + 23 << /S /r /St 50 >> + 29 << /S /r /St 54 >> + ] >> +endobj + +% Reuse object 1 with the same generation number. Leave outlines +% there pointing to a deleted object. +1 0 obj +<< + /PageLabels 107 1 R + /Pages 2 0 R + /Type /Catalog + /PageMode /UseOutlines + /Outlines 95 0 R +>> +endobj + +% Reuse object 33 to replace contents for page 1 +33 0 obj +<< + /Length 50 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 0 new) Tj +ET +endstream +endobj + +% Delete object 34 + +xref +0 2 +0000000034 65535 f +0000016648 00000 n +33 2 +0000016817 00000 n +0000000095 00001 f +95 13 +0000000096 00001 f +0000000097 00001 f +0000000098 00001 f +0000000099 00001 f +0000000100 00001 f +0000000101 00001 f +0000000102 00001 f +0000000103 00001 f +0000000104 00001 f +0000000105 00001 f +0000000106 00001 f +0000000000 00001 f +0000016227 00001 n +trailer << /Size 108 /Prev 16059 /Root 1 0 R >> +startxref +16940 +%%EOF diff --git a/qpdf/qtest/qpdf/bad1-recover.out b/qpdf/qtest/qpdf/bad1-recover.out new file mode 100644 index 0000000..f89eeb6 --- /dev/null +++ b/qpdf/qtest/qpdf/bad1-recover.out @@ -0,0 +1 @@ +bad1.pdf: not a PDF file diff --git a/qpdf/qtest/qpdf/bad1.out b/qpdf/qtest/qpdf/bad1.out new file mode 100644 index 0000000..f89eeb6 --- /dev/null +++ b/qpdf/qtest/qpdf/bad1.out @@ -0,0 +1 @@ +bad1.pdf: not a PDF file diff --git a/qpdf/qtest/qpdf/bad1.pdf b/qpdf/qtest/qpdf/bad1.pdf new file mode 100644 index 0000000..75891bc --- /dev/null +++ b/qpdf/qtest/qpdf/bad1.pdf @@ -0,0 +1 @@ +oops diff --git a/qpdf/qtest/qpdf/bad10-recover.out b/qpdf/qtest/qpdf/bad10-recover.out new file mode 100644 index 0000000..25de9bc --- /dev/null +++ b/qpdf/qtest/qpdf/bad10-recover.out @@ -0,0 +1,9 @@ +WARNING: bad10.pdf: file is damaged +WARNING: bad10.pdf (trailer, file position 712): /Size key in trailer dictionary is not an integer +WARNING: bad10.pdf: Attempting to reconstruct cross-reference table +/QTest is implicit +/QTest is direct +/QTest is null +unparse: null +unparseResolved: null +test 1 done diff --git a/qpdf/qtest/qpdf/bad10.out b/qpdf/qtest/qpdf/bad10.out new file mode 100644 index 0000000..2545a72 --- /dev/null +++ b/qpdf/qtest/qpdf/bad10.out @@ -0,0 +1 @@ +bad10.pdf (trailer, file position 712): /Size key in trailer dictionary is not an integer diff --git a/qpdf/qtest/qpdf/bad10.pdf b/qpdf/qtest/qpdf/bad10.pdf new file mode 100644 index 0000000..1f2be0c --- /dev/null +++ b/qpdf/qtest/qpdf/bad10.pdf @@ -0,0 +1,79 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size (h) + /Root 1 0 R +>> +startxref +556 +%%EOF diff --git a/qpdf/qtest/qpdf/bad11-recover.out b/qpdf/qtest/qpdf/bad11-recover.out new file mode 100644 index 0000000..43bcd06 --- /dev/null +++ b/qpdf/qtest/qpdf/bad11-recover.out @@ -0,0 +1,9 @@ +WARNING: bad11.pdf: file is damaged +WARNING: bad11.pdf (trailer, file position 905): /Prev key in trailer dictionary is not an integer +WARNING: bad11.pdf: Attempting to reconstruct cross-reference table +/QTest is implicit +/QTest is direct +/QTest is null +unparse: null +unparseResolved: null +test 1 done diff --git a/qpdf/qtest/qpdf/bad11.out b/qpdf/qtest/qpdf/bad11.out new file mode 100644 index 0000000..78ad060 --- /dev/null +++ b/qpdf/qtest/qpdf/bad11.out @@ -0,0 +1 @@ +bad11.pdf (trailer, file position 905): /Prev key in trailer dictionary is not an integer diff --git a/qpdf/qtest/qpdf/bad11.pdf b/qpdf/qtest/qpdf/bad11.pdf new file mode 100644 index 0000000..4cf46e5 --- /dev/null +++ b/qpdf/qtest/qpdf/bad11.pdf @@ -0,0 +1,104 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000128 00000 n +0000000300 00000 n +0000000389 00000 n +0000000424 00000 n +trailer << + /Size 7 + /Root 1 0 R +>> +startxref +542 +%%EOF + +4 0 obj +<< + /Length 43 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Salad) Tj +ET +endstream +endobj + +xref +0 1 +0000000000 65535 f +4 1 +0000000750 00000 n +trailer << + /Size 7 + /Root 1 0 R + /Prev [542] +>> +startxref +845 +%%EOF diff --git a/qpdf/qtest/qpdf/bad12-recover.out b/qpdf/qtest/qpdf/bad12-recover.out new file mode 100644 index 0000000..97dfb64 --- /dev/null +++ b/qpdf/qtest/qpdf/bad12-recover.out @@ -0,0 +1,7 @@ +WARNING: bad12.pdf: reported number of objects (9) inconsistent with actual number of objects (8) +/QTest is implicit +/QTest is direct +/QTest is null +unparse: null +unparseResolved: null +test 1 done diff --git a/qpdf/qtest/qpdf/bad12.out b/qpdf/qtest/qpdf/bad12.out new file mode 100644 index 0000000..d07d74b --- /dev/null +++ b/qpdf/qtest/qpdf/bad12.out @@ -0,0 +1,7 @@ +WARNING: bad12.pdf: reported number of objects (9) inconsistent with actual number of objects (8) +/QTest is implicit +/QTest is direct +/QTest is null +unparse: null +unparseResolved: null +test 0 done diff --git a/qpdf/qtest/qpdf/bad12.pdf b/qpdf/qtest/qpdf/bad12.pdf new file mode 100644 index 0000000..0fc8028 --- /dev/null +++ b/qpdf/qtest/qpdf/bad12.pdf @@ -0,0 +1,122 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000128 00000 n +0000000300 00000 n +0000000389 00000 n +0000000424 00000 n +trailer << + /Size 7 + /Root 1 0 R +>> +startxref +542 +%%EOF + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 7 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +7 0 obj +<< + /Length 48 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Sandwiches) Tj +ET +endstream +endobj + +xref +0 1 +0000000004 65535 f +3 2 +0000000750 00000 n +0000000000 00001 f +7 1 +0000000922 00000 n +trailer << + /Size 9 + /Root 1 0 R + /Prev 542 +>> +startxref +1022 +%%EOF diff --git a/qpdf/qtest/qpdf/bad13-recover.out b/qpdf/qtest/qpdf/bad13-recover.out new file mode 100644 index 0000000..c20d98a --- /dev/null +++ b/qpdf/qtest/qpdf/bad13-recover.out @@ -0,0 +1,4 @@ +WARNING: bad13.pdf: file is damaged +WARNING: bad13.pdf (trailer, file position 753): unexpected brace token +WARNING: bad13.pdf: Attempting to reconstruct cross-reference table +bad13.pdf (trailer, file position 753): unexpected brace token diff --git a/qpdf/qtest/qpdf/bad13.out b/qpdf/qtest/qpdf/bad13.out new file mode 100644 index 0000000..04c34e3 --- /dev/null +++ b/qpdf/qtest/qpdf/bad13.out @@ -0,0 +1 @@ +bad13.pdf (trailer, file position 753): unexpected brace token diff --git a/qpdf/qtest/qpdf/bad13.pdf b/qpdf/qtest/qpdf/bad13.pdf new file mode 100644 index 0000000..2fb59d2 --- /dev/null +++ b/qpdf/qtest/qpdf/bad13.pdf @@ -0,0 +1,80 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R + /Something { +>> +startxref +556 +%%EOF diff --git a/qpdf/qtest/qpdf/bad14-recover.out b/qpdf/qtest/qpdf/bad14-recover.out new file mode 100644 index 0000000..e66441a --- /dev/null +++ b/qpdf/qtest/qpdf/bad14-recover.out @@ -0,0 +1,4 @@ +WARNING: bad14.pdf: file is damaged +WARNING: bad14.pdf (trailer, file position 753): unexpected brace token +WARNING: bad14.pdf: Attempting to reconstruct cross-reference table +bad14.pdf (trailer, file position 753): unexpected brace token diff --git a/qpdf/qtest/qpdf/bad14.out b/qpdf/qtest/qpdf/bad14.out new file mode 100644 index 0000000..6d32b70 --- /dev/null +++ b/qpdf/qtest/qpdf/bad14.out @@ -0,0 +1 @@ +bad14.pdf (trailer, file position 753): unexpected brace token diff --git a/qpdf/qtest/qpdf/bad14.pdf b/qpdf/qtest/qpdf/bad14.pdf new file mode 100644 index 0000000..551fdfd --- /dev/null +++ b/qpdf/qtest/qpdf/bad14.pdf @@ -0,0 +1,80 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R + /Something } +>> +startxref +556 +%%EOF diff --git a/qpdf/qtest/qpdf/bad15-recover.out b/qpdf/qtest/qpdf/bad15-recover.out new file mode 100644 index 0000000..0575a33 --- /dev/null +++ b/qpdf/qtest/qpdf/bad15-recover.out @@ -0,0 +1,4 @@ +WARNING: bad15.pdf: file is damaged +WARNING: bad15.pdf (trailer, file position 753): unexpected array close token +WARNING: bad15.pdf: Attempting to reconstruct cross-reference table +bad15.pdf (trailer, file position 753): unexpected array close token diff --git a/qpdf/qtest/qpdf/bad15.out b/qpdf/qtest/qpdf/bad15.out new file mode 100644 index 0000000..54e799d --- /dev/null +++ b/qpdf/qtest/qpdf/bad15.out @@ -0,0 +1 @@ +bad15.pdf (trailer, file position 753): unexpected array close token diff --git a/qpdf/qtest/qpdf/bad15.pdf b/qpdf/qtest/qpdf/bad15.pdf new file mode 100644 index 0000000..5578e1d --- /dev/null +++ b/qpdf/qtest/qpdf/bad15.pdf @@ -0,0 +1,80 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R + /Something ] +>> +startxref +556 +%%EOF diff --git a/qpdf/qtest/qpdf/bad16-recover.out b/qpdf/qtest/qpdf/bad16-recover.out new file mode 100644 index 0000000..1256cea --- /dev/null +++ b/qpdf/qtest/qpdf/bad16-recover.out @@ -0,0 +1,4 @@ +WARNING: bad16.pdf: file is damaged +WARNING: bad16.pdf (trailer, file position 753): unexpected dictionary close token +WARNING: bad16.pdf: Attempting to reconstruct cross-reference table +bad16.pdf (trailer, file position 753): unexpected dictionary close token diff --git a/qpdf/qtest/qpdf/bad16.out b/qpdf/qtest/qpdf/bad16.out new file mode 100644 index 0000000..d3a7221 --- /dev/null +++ b/qpdf/qtest/qpdf/bad16.out @@ -0,0 +1 @@ +bad16.pdf (trailer, file position 753): unexpected dictionary close token diff --git a/qpdf/qtest/qpdf/bad16.pdf b/qpdf/qtest/qpdf/bad16.pdf new file mode 100644 index 0000000..b8bdb5f --- /dev/null +++ b/qpdf/qtest/qpdf/bad16.pdf @@ -0,0 +1,80 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R + /Something[>> +>> +startxref +556 +%%EOF diff --git a/qpdf/qtest/qpdf/bad17-recover.out b/qpdf/qtest/qpdf/bad17-recover.out new file mode 100644 index 0000000..d09805a --- /dev/null +++ b/qpdf/qtest/qpdf/bad17-recover.out @@ -0,0 +1,4 @@ +WARNING: bad17.pdf: file is damaged +WARNING: bad17.pdf (trailer, file position 753): dictionary ending here has an odd number of elements +WARNING: bad17.pdf: Attempting to reconstruct cross-reference table +bad17.pdf (trailer, file position 753): dictionary ending here has an odd number of elements diff --git a/qpdf/qtest/qpdf/bad17.out b/qpdf/qtest/qpdf/bad17.out new file mode 100644 index 0000000..7285b0a --- /dev/null +++ b/qpdf/qtest/qpdf/bad17.out @@ -0,0 +1 @@ +bad17.pdf (trailer, file position 753): dictionary ending here has an odd number of elements diff --git a/qpdf/qtest/qpdf/bad17.pdf b/qpdf/qtest/qpdf/bad17.pdf new file mode 100644 index 0000000..5afb00d --- /dev/null +++ b/qpdf/qtest/qpdf/bad17.pdf @@ -0,0 +1,80 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R + /Something +>> +startxref +556 +%%EOF diff --git a/qpdf/qtest/qpdf/bad18-recover.out b/qpdf/qtest/qpdf/bad18-recover.out new file mode 100644 index 0000000..b312804 --- /dev/null +++ b/qpdf/qtest/qpdf/bad18-recover.out @@ -0,0 +1,4 @@ +WARNING: bad18.pdf: file is damaged +WARNING: bad18.pdf (trailer, file position 753): unexpected ) +WARNING: bad18.pdf: Attempting to reconstruct cross-reference table +bad18.pdf (trailer, file position 753): unexpected ) diff --git a/qpdf/qtest/qpdf/bad18.out b/qpdf/qtest/qpdf/bad18.out new file mode 100644 index 0000000..b5ea090 --- /dev/null +++ b/qpdf/qtest/qpdf/bad18.out @@ -0,0 +1 @@ +bad18.pdf (trailer, file position 753): unexpected ) diff --git a/qpdf/qtest/qpdf/bad18.pdf b/qpdf/qtest/qpdf/bad18.pdf new file mode 100644 index 0000000..96cf793 --- /dev/null +++ b/qpdf/qtest/qpdf/bad18.pdf @@ -0,0 +1,80 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R + /Something ) +>> +startxref +556 +%%EOF diff --git a/qpdf/qtest/qpdf/bad19-recover.out b/qpdf/qtest/qpdf/bad19-recover.out new file mode 100644 index 0000000..133dcb9 --- /dev/null +++ b/qpdf/qtest/qpdf/bad19-recover.out @@ -0,0 +1,4 @@ +WARNING: bad19.pdf: file is damaged +WARNING: bad19.pdf (trailer, file position 753): unexpected > +WARNING: bad19.pdf: Attempting to reconstruct cross-reference table +bad19.pdf (trailer, file position 753): unexpected > diff --git a/qpdf/qtest/qpdf/bad19.out b/qpdf/qtest/qpdf/bad19.out new file mode 100644 index 0000000..3ff479a --- /dev/null +++ b/qpdf/qtest/qpdf/bad19.out @@ -0,0 +1 @@ +bad19.pdf (trailer, file position 753): unexpected > diff --git a/qpdf/qtest/qpdf/bad19.pdf b/qpdf/qtest/qpdf/bad19.pdf new file mode 100644 index 0000000..f95036f --- /dev/null +++ b/qpdf/qtest/qpdf/bad19.pdf @@ -0,0 +1,80 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R + /Something > +>> +startxref +556 +%%EOF diff --git a/qpdf/qtest/qpdf/bad2-recover.out b/qpdf/qtest/qpdf/bad2-recover.out new file mode 100644 index 0000000..569ca19 --- /dev/null +++ b/qpdf/qtest/qpdf/bad2-recover.out @@ -0,0 +1,9 @@ +WARNING: bad2.pdf: file is damaged +WARNING: bad2.pdf: can't find startxref +WARNING: bad2.pdf: Attempting to reconstruct cross-reference table +/QTest is implicit +/QTest is direct +/QTest is null +unparse: null +unparseResolved: null +test 1 done diff --git a/qpdf/qtest/qpdf/bad2.out b/qpdf/qtest/qpdf/bad2.out new file mode 100644 index 0000000..9179b77 --- /dev/null +++ b/qpdf/qtest/qpdf/bad2.out @@ -0,0 +1 @@ +bad2.pdf: can't find startxref diff --git a/qpdf/qtest/qpdf/bad2.pdf b/qpdf/qtest/qpdf/bad2.pdf new file mode 100644 index 0000000..aa63b0b --- /dev/null +++ b/qpdf/qtest/qpdf/bad2.pdf @@ -0,0 +1,76 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000128 00000 n +0000000300 00000 n +0000000389 00000 n +0000000424 00000 n +trailer << + /Size 7 + /Root 1 0 R +>> +farbage 542 +%%EOF diff --git a/qpdf/qtest/qpdf/bad20-recover.out b/qpdf/qtest/qpdf/bad20-recover.out new file mode 100644 index 0000000..d9e3566 --- /dev/null +++ b/qpdf/qtest/qpdf/bad20-recover.out @@ -0,0 +1,4 @@ +WARNING: bad20.pdf: file is damaged +WARNING: bad20.pdf (trailer, file position 753): invalid character (q) in hexstring +WARNING: bad20.pdf: Attempting to reconstruct cross-reference table +bad20.pdf (trailer, file position 753): invalid character (q) in hexstring diff --git a/qpdf/qtest/qpdf/bad20.out b/qpdf/qtest/qpdf/bad20.out new file mode 100644 index 0000000..0b70ae1 --- /dev/null +++ b/qpdf/qtest/qpdf/bad20.out @@ -0,0 +1 @@ +bad20.pdf (trailer, file position 753): invalid character (q) in hexstring diff --git a/qpdf/qtest/qpdf/bad20.pdf b/qpdf/qtest/qpdf/bad20.pdf new file mode 100644 index 0000000..e42cfe0 --- /dev/null +++ b/qpdf/qtest/qpdf/bad20.pdf @@ -0,0 +1,80 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R + /Something +>> +startxref +556 +%%EOF diff --git a/qpdf/qtest/qpdf/bad21-recover.out b/qpdf/qtest/qpdf/bad21-recover.out new file mode 100644 index 0000000..73d2e89 --- /dev/null +++ b/qpdf/qtest/qpdf/bad21-recover.out @@ -0,0 +1,4 @@ +WARNING: bad21.pdf: file is damaged +WARNING: bad21.pdf (trailer, file position 742): invalid name token +WARNING: bad21.pdf: Attempting to reconstruct cross-reference table +bad21.pdf (trailer, file position 742): invalid name token diff --git a/qpdf/qtest/qpdf/bad21.out b/qpdf/qtest/qpdf/bad21.out new file mode 100644 index 0000000..055484c --- /dev/null +++ b/qpdf/qtest/qpdf/bad21.out @@ -0,0 +1 @@ +bad21.pdf (trailer, file position 742): invalid name token diff --git a/qpdf/qtest/qpdf/bad21.pdf b/qpdf/qtest/qpdf/bad21.pdf new file mode 100644 index 0000000..4be5f0e --- /dev/null +++ b/qpdf/qtest/qpdf/bad21.pdf @@ -0,0 +1,80 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R + /Som#ething 1 +>> +startxref +556 +%%EOF diff --git a/qpdf/qtest/qpdf/bad22-recover.out b/qpdf/qtest/qpdf/bad22-recover.out new file mode 100644 index 0000000..41eb3e3 --- /dev/null +++ b/qpdf/qtest/qpdf/bad22-recover.out @@ -0,0 +1,21 @@ +WARNING: bad22.pdf (object 4 0, file position 341): attempting to recover stream length +/QTest is indirect +/QTest is a stream. Dictionary: << /Qength 44 >> +Raw stream data: +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET + +Uncompressed stream data: +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET + +End of stream data +unparse: 4 0 R +unparseResolved: 4 0 R +test 1 done diff --git a/qpdf/qtest/qpdf/bad22.out b/qpdf/qtest/qpdf/bad22.out new file mode 100644 index 0000000..ec6d5f8 --- /dev/null +++ b/qpdf/qtest/qpdf/bad22.out @@ -0,0 +1 @@ +bad22.pdf (object 4 0, file position 314): stream dictionary lacks /Length key diff --git a/qpdf/qtest/qpdf/bad22.pdf b/qpdf/qtest/qpdf/bad22.pdf new file mode 100644 index 0000000..b0d42ac --- /dev/null +++ b/qpdf/qtest/qpdf/bad22.pdf @@ -0,0 +1,80 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Qength 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R + /QTest 4 0 R +>> +startxref +556 +%%EOF diff --git a/qpdf/qtest/qpdf/bad23-recover.out b/qpdf/qtest/qpdf/bad23-recover.out new file mode 100644 index 0000000..773205a --- /dev/null +++ b/qpdf/qtest/qpdf/bad23-recover.out @@ -0,0 +1,21 @@ +WARNING: bad23.pdf (object 4 0, file position 341): attempting to recover stream length +/QTest is indirect +/QTest is a stream. Dictionary: << /Length () >> +Raw stream data: +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET + +Uncompressed stream data: +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET + +End of stream data +unparse: 4 0 R +unparseResolved: 4 0 R +test 1 done diff --git a/qpdf/qtest/qpdf/bad23.out b/qpdf/qtest/qpdf/bad23.out new file mode 100644 index 0000000..b4cf25e --- /dev/null +++ b/qpdf/qtest/qpdf/bad23.out @@ -0,0 +1 @@ +bad23.pdf (object 4 0, file position 314): /Length key in stream dictionary is not an integer diff --git a/qpdf/qtest/qpdf/bad23.pdf b/qpdf/qtest/qpdf/bad23.pdf new file mode 100644 index 0000000..0baead9 --- /dev/null +++ b/qpdf/qtest/qpdf/bad23.pdf @@ -0,0 +1,80 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length () +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R + /QTest 4 0 R +>> +startxref +556 +%%EOF diff --git a/qpdf/qtest/qpdf/bad24-recover.out b/qpdf/qtest/qpdf/bad24-recover.out new file mode 100644 index 0000000..0af01e9 --- /dev/null +++ b/qpdf/qtest/qpdf/bad24-recover.out @@ -0,0 +1,2 @@ +WARNING: bad24.pdf (object 4 0, file position 341): attempting to recover stream length +bad24.pdf (object 4 0, file position 341): unable to recover stream data diff --git a/qpdf/qtest/qpdf/bad24.out b/qpdf/qtest/qpdf/bad24.out new file mode 100644 index 0000000..f503214 --- /dev/null +++ b/qpdf/qtest/qpdf/bad24.out @@ -0,0 +1 @@ +bad24.pdf (object 4 0, file position 385): expected endstream diff --git a/qpdf/qtest/qpdf/bad24.pdf b/qpdf/qtest/qpdf/bad24.pdf new file mode 100644 index 0000000..7af8c7d --- /dev/null +++ b/qpdf/qtest/qpdf/bad24.pdf @@ -0,0 +1,80 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +enxstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R + /QTest 4 0 R +>> +startxref +556 +%%EOF diff --git a/qpdf/qtest/qpdf/bad25-recover.out b/qpdf/qtest/qpdf/bad25-recover.out new file mode 100644 index 0000000..23893d5 --- /dev/null +++ b/qpdf/qtest/qpdf/bad25-recover.out @@ -0,0 +1,10 @@ +WARNING: bad25.pdf: file is damaged +WARNING: bad25.pdf (object 4 0, file position 307): expected n n obj +WARNING: bad25.pdf: Attempting to reconstruct cross-reference table +WARNING: bad25.pdf: object 4 0 not found in file after regenerating cross reference table +/QTest is implicit +/QTest is indirect +/QTest is null +unparse: 4 0 R +unparseResolved: null +test 1 done diff --git a/qpdf/qtest/qpdf/bad25.out b/qpdf/qtest/qpdf/bad25.out new file mode 100644 index 0000000..f336b34 --- /dev/null +++ b/qpdf/qtest/qpdf/bad25.out @@ -0,0 +1 @@ +bad25.pdf (object 4 0, file position 307): expected n n obj diff --git a/qpdf/qtest/qpdf/bad25.pdf b/qpdf/qtest/qpdf/bad25.pdf new file mode 100644 index 0000000..a51974d --- /dev/null +++ b/qpdf/qtest/qpdf/bad25.pdf @@ -0,0 +1,80 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +x 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R + /QTest 4 0 R +>> +startxref +556 +%%EOF diff --git a/qpdf/qtest/qpdf/bad26-recover.out b/qpdf/qtest/qpdf/bad26-recover.out new file mode 100644 index 0000000..248aff7 --- /dev/null +++ b/qpdf/qtest/qpdf/bad26-recover.out @@ -0,0 +1,10 @@ +WARNING: bad26.pdf: file is damaged +WARNING: bad26.pdf (object 4 0, file position 307): expected n n obj +WARNING: bad26.pdf: Attempting to reconstruct cross-reference table +WARNING: bad26.pdf: object 4 0 not found in file after regenerating cross reference table +/QTest is implicit +/QTest is indirect +/QTest is null +unparse: 4 0 R +unparseResolved: null +test 1 done diff --git a/qpdf/qtest/qpdf/bad26.out b/qpdf/qtest/qpdf/bad26.out new file mode 100644 index 0000000..30c3b72 --- /dev/null +++ b/qpdf/qtest/qpdf/bad26.out @@ -0,0 +1 @@ +bad26.pdf (object 4 0, file position 307): expected n n obj diff --git a/qpdf/qtest/qpdf/bad26.pdf b/qpdf/qtest/qpdf/bad26.pdf new file mode 100644 index 0000000..4a7e3b2 --- /dev/null +++ b/qpdf/qtest/qpdf/bad26.pdf @@ -0,0 +1,80 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 x obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R + /QTest 4 0 R +>> +startxref +556 +%%EOF diff --git a/qpdf/qtest/qpdf/bad27-recover.out b/qpdf/qtest/qpdf/bad27-recover.out new file mode 100644 index 0000000..f06203b --- /dev/null +++ b/qpdf/qtest/qpdf/bad27-recover.out @@ -0,0 +1,10 @@ +WARNING: bad27.pdf: file is damaged +WARNING: bad27.pdf (object 4 0, file position 307): expected n n obj +WARNING: bad27.pdf: Attempting to reconstruct cross-reference table +WARNING: bad27.pdf: object 4 0 not found in file after regenerating cross reference table +/QTest is implicit +/QTest is indirect +/QTest is null +unparse: 4 0 R +unparseResolved: null +test 1 done diff --git a/qpdf/qtest/qpdf/bad27.out b/qpdf/qtest/qpdf/bad27.out new file mode 100644 index 0000000..2c494e4 --- /dev/null +++ b/qpdf/qtest/qpdf/bad27.out @@ -0,0 +1 @@ +bad27.pdf (object 4 0, file position 307): expected n n obj diff --git a/qpdf/qtest/qpdf/bad27.pdf b/qpdf/qtest/qpdf/bad27.pdf new file mode 100644 index 0000000..032b212 --- /dev/null +++ b/qpdf/qtest/qpdf/bad27.pdf @@ -0,0 +1,80 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 xbj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R + /QTest 4 0 R +>> +startxref +556 +%%EOF diff --git a/qpdf/qtest/qpdf/bad28-recover.out b/qpdf/qtest/qpdf/bad28-recover.out new file mode 100644 index 0000000..62322d9 --- /dev/null +++ b/qpdf/qtest/qpdf/bad28-recover.out @@ -0,0 +1,21 @@ +WARNING: bad28.pdf (object 4 0, file position 395): expected endobj +/QTest is indirect +/QTest is a stream. Dictionary: << /Length 44 >> +Raw stream data: +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET + +Uncompressed stream data: +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET + +End of stream data +unparse: 4 0 R +unparseResolved: 4 0 R +test 1 done diff --git a/qpdf/qtest/qpdf/bad28.out b/qpdf/qtest/qpdf/bad28.out new file mode 100644 index 0000000..11309bc --- /dev/null +++ b/qpdf/qtest/qpdf/bad28.out @@ -0,0 +1,21 @@ +WARNING: bad28.pdf (object 4 0, file position 395): expected endobj +/QTest is indirect +/QTest is a stream. Dictionary: << /Length 44 >> +Raw stream data: +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET + +Uncompressed stream data: +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET + +End of stream data +unparse: 4 0 R +unparseResolved: 4 0 R +test 0 done diff --git a/qpdf/qtest/qpdf/bad28.pdf b/qpdf/qtest/qpdf/bad28.pdf new file mode 100644 index 0000000..c77a206 --- /dev/null +++ b/qpdf/qtest/qpdf/bad28.pdf @@ -0,0 +1,80 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +enwobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R + /QTest 4 0 R +>> +startxref +556 +%%EOF diff --git a/qpdf/qtest/qpdf/bad29-recover.out b/qpdf/qtest/qpdf/bad29-recover.out new file mode 100644 index 0000000..e027db9 --- /dev/null +++ b/qpdf/qtest/qpdf/bad29-recover.out @@ -0,0 +1,4 @@ +WARNING: bad29.pdf: file is damaged +WARNING: bad29.pdf (trailer, file position 742): null character not allowed in name token +WARNING: bad29.pdf: Attempting to reconstruct cross-reference table +bad29.pdf (trailer, file position 742): null character not allowed in name token diff --git a/qpdf/qtest/qpdf/bad29.out b/qpdf/qtest/qpdf/bad29.out new file mode 100644 index 0000000..7d4189e --- /dev/null +++ b/qpdf/qtest/qpdf/bad29.out @@ -0,0 +1 @@ +bad29.pdf (trailer, file position 742): null character not allowed in name token diff --git a/qpdf/qtest/qpdf/bad29.pdf b/qpdf/qtest/qpdf/bad29.pdf new file mode 100644 index 0000000..a45151e --- /dev/null +++ b/qpdf/qtest/qpdf/bad29.pdf @@ -0,0 +1,80 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R + /Som#00ething 1 +>> +startxref +556 +%%EOF diff --git a/qpdf/qtest/qpdf/bad3-recover.out b/qpdf/qtest/qpdf/bad3-recover.out new file mode 100644 index 0000000..e282d66 --- /dev/null +++ b/qpdf/qtest/qpdf/bad3-recover.out @@ -0,0 +1,9 @@ +WARNING: bad3.pdf: file is damaged +WARNING: bad3.pdf (file position 542): xref not found +WARNING: bad3.pdf: Attempting to reconstruct cross-reference table +/QTest is implicit +/QTest is direct +/QTest is null +unparse: null +unparseResolved: null +test 1 done diff --git a/qpdf/qtest/qpdf/bad3.out b/qpdf/qtest/qpdf/bad3.out new file mode 100644 index 0000000..ef99562 --- /dev/null +++ b/qpdf/qtest/qpdf/bad3.out @@ -0,0 +1 @@ +bad3.pdf (file position 542): xref not found diff --git a/qpdf/qtest/qpdf/bad3.pdf b/qpdf/qtest/qpdf/bad3.pdf new file mode 100644 index 0000000..3e078f3 --- /dev/null +++ b/qpdf/qtest/qpdf/bad3.pdf @@ -0,0 +1,76 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +noxref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000128 00000 n +0000000300 00000 n +0000000389 00000 n +0000000424 00000 n +trailer << + /Size 7 + /Root 1 0 R +>> +startxref 542 +%%EOF diff --git a/qpdf/qtest/qpdf/bad30-recover.out b/qpdf/qtest/qpdf/bad30-recover.out new file mode 100644 index 0000000..515bfbd --- /dev/null +++ b/qpdf/qtest/qpdf/bad30-recover.out @@ -0,0 +1,6 @@ +/QTest is indirect +/QTest is a stream. Dictionary: << /Filter (FlateDecode) /Length 123 >> +Raw stream data: +xœ%11 û¼b;tà4| wXIDì Øå÷8G·«Í>rQ¨uŠ OÒ êEŒ:©IWìÃPlíµII)Ãr´p4~;§ÎAs/ò҅jcúú¾÷Žs§åözû»žT.?®uŽæ§<Ž¼…Ð*6ä +Uncompressed stream data: +bad30.pdf (file position 629): stream filter type is not name or array diff --git a/qpdf/qtest/qpdf/bad30.out b/qpdf/qtest/qpdf/bad30.out new file mode 100644 index 0000000..515bfbd --- /dev/null +++ b/qpdf/qtest/qpdf/bad30.out @@ -0,0 +1,6 @@ +/QTest is indirect +/QTest is a stream. Dictionary: << /Filter (FlateDecode) /Length 123 >> +Raw stream data: +xœ%11 û¼b;tà4| wXIDì Øå÷8G·«Í>rQ¨uŠ OÒ êEŒ:©IWìÃPlíµII)Ãr´p4~;§ÎAs/ò҅jcúú¾÷Žs§åözû»žT.?®uŽæ§<Ž¼…Ð*6ä +Uncompressed stream data: +bad30.pdf (file position 629): stream filter type is not name or array diff --git a/qpdf/qtest/qpdf/bad30.pdf b/qpdf/qtest/qpdf/bad30.pdf new file mode 100644 index 0000000..05c5276 --- /dev/null +++ b/qpdf/qtest/qpdf/bad30.pdf @@ -0,0 +1,93 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +7 0 obj +<< + % Comment + /Length + 123 + /Filter (FlateDecode) +>> +stream +xœ%11 û¼b;tà4| wXIDì Øå÷8G·«Í>rQ¨uŠ OÒ êEŒ:©IWìÃPlíµII)Ãr´p4~;§ÎAs/ò҅jcúú¾÷Žs§åözû»žT.?®uŽæ§<Ž¼…Ð*6ä +endstream +endobj + +xref +0 8 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +0000000556 00000 n +trailer << + /Size 8 + /Root 1 0 R + /QTest 7 0 R +>> +startxref +771 +%%EOF diff --git a/qpdf/qtest/qpdf/bad31-recover.out b/qpdf/qtest/qpdf/bad31-recover.out new file mode 100644 index 0000000..313e208 --- /dev/null +++ b/qpdf/qtest/qpdf/bad31-recover.out @@ -0,0 +1,9 @@ +/QTest is indirect +/QTest is a stream. Dictionary: << /Filter [ /Oink /Moo /FlateDecode ] /Length 123 >> +Raw stream data: +xœ%11 û¼b;tà4| wXIDì Øå÷8G·«Í>rQ¨uŠ OÒ êEŒ:©IWìÃPlíµII)Ãr´p4~;§ÎAs/ò҅jcúú¾÷Žs§åözû»žT.?®uŽæ§<Ž¼…Ð*6ä +Uncompressed stream data: +Stream data is not filterable. +unparse: 7 0 R +unparseResolved: 7 0 R +test 1 done diff --git a/qpdf/qtest/qpdf/bad31.out b/qpdf/qtest/qpdf/bad31.out new file mode 100644 index 0000000..2ad0153 --- /dev/null +++ b/qpdf/qtest/qpdf/bad31.out @@ -0,0 +1,9 @@ +/QTest is indirect +/QTest is a stream. Dictionary: << /Filter [ /Oink /Moo /FlateDecode ] /Length 123 >> +Raw stream data: +xœ%11 û¼b;tà4| wXIDì Øå÷8G·«Í>rQ¨uŠ OÒ êEŒ:©IWìÃPlíµII)Ãr´p4~;§ÎAs/ò҅jcúú¾÷Žs§åözû»žT.?®uŽæ§<Ž¼…Ð*6ä +Uncompressed stream data: +Stream data is not filterable. +unparse: 7 0 R +unparseResolved: 7 0 R +test 0 done diff --git a/qpdf/qtest/qpdf/bad31.pdf b/qpdf/qtest/qpdf/bad31.pdf new file mode 100644 index 0000000..b3c986c --- /dev/null +++ b/qpdf/qtest/qpdf/bad31.pdf @@ -0,0 +1,93 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +7 0 obj +<< + % Comment + /Length + 123 + /Filter [/Oink /Moo /FlateDecode] +>> +stream +xœ%11 û¼b;tà4| wXIDì Øå÷8G·«Í>rQ¨uŠ OÒ êEŒ:©IWìÃPlíµII)Ãr´p4~;§ÎAs/ò҅jcúú¾÷Žs§åözû»žT.?®uŽæ§<Ž¼…Ð*6ä +endstream +endobj + +xref +0 8 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +0000000556 00000 n +trailer << + /Size 8 + /Root 1 0 R + /QTest 7 0 R +>> +startxref +783 +%%EOF diff --git a/qpdf/qtest/qpdf/bad32-recover.out b/qpdf/qtest/qpdf/bad32-recover.out new file mode 100644 index 0000000..c038a29 --- /dev/null +++ b/qpdf/qtest/qpdf/bad32-recover.out @@ -0,0 +1,10 @@ +WARNING: bad32.pdf: file is damaged +WARNING: bad32.pdf (object 4 0, file position 307): expected 4 0 obj +WARNING: bad32.pdf: Attempting to reconstruct cross-reference table +WARNING: bad32.pdf: object 4 0 not found in file after regenerating cross reference table +/QTest is implicit +/QTest is indirect +/QTest is null +unparse: 4 0 R +unparseResolved: null +test 1 done diff --git a/qpdf/qtest/qpdf/bad32.out b/qpdf/qtest/qpdf/bad32.out new file mode 100644 index 0000000..60727cc --- /dev/null +++ b/qpdf/qtest/qpdf/bad32.out @@ -0,0 +1 @@ +bad32.pdf (object 4 0, file position 307): expected 4 0 obj diff --git a/qpdf/qtest/qpdf/bad32.pdf b/qpdf/qtest/qpdf/bad32.pdf new file mode 100644 index 0000000..2581993 --- /dev/null +++ b/qpdf/qtest/qpdf/bad32.pdf @@ -0,0 +1,80 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +9 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Size 7 + /Root 1 0 R + /QTest 4 0 R +>> +startxref +556 +%%EOF diff --git a/qpdf/qtest/qpdf/bad33-recover.out b/qpdf/qtest/qpdf/bad33-recover.out new file mode 100644 index 0000000..51dabe6 --- /dev/null +++ b/qpdf/qtest/qpdf/bad33-recover.out @@ -0,0 +1,9 @@ +WARNING: bad33.pdf: file is damaged +WARNING: bad33.pdf (file position 1771): xref not found +WARNING: bad33.pdf: Attempting to reconstruct cross-reference table +/QTest is indirect +/QTest is a stream. Dictionary: << /Filter (FlateDecode) /Length 123 >> +Raw stream data: +xœ%11 û¼b;tà4| wXIDì Øå÷8G·«Í>rQ¨uŠ OÒ êEŒ:©IWìÃPlíµII)Ãr´p4~;§ÎAs/ò҅jcúú¾÷Žs§åözû»žT.?®uŽæ§<Ž¼…Ð*6ä +Uncompressed stream data: +bad33.pdf (file position 629): stream filter type is not name or array diff --git a/qpdf/qtest/qpdf/bad33.out b/qpdf/qtest/qpdf/bad33.out new file mode 100644 index 0000000..9057b06 --- /dev/null +++ b/qpdf/qtest/qpdf/bad33.out @@ -0,0 +1 @@ +bad33.pdf (file position 1771): xref not found diff --git a/qpdf/qtest/qpdf/bad33.pdf b/qpdf/qtest/qpdf/bad33.pdf new file mode 100644 index 0000000..963d857 --- /dev/null +++ b/qpdf/qtest/qpdf/bad33.pdf @@ -0,0 +1,93 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +7 0 obj +<< + % Comment + /Length + 123 + /Filter (FlateDecode) +>> +stream +xœ%11 û¼b;tà4| wXIDì Øå÷8G·«Í>rQ¨uŠ OÒ êEŒ:©IWìÃPlíµII)Ãr´p4~;§ÎAs/ò҅jcúú¾÷Žs§åözû»žT.?®uŽæ§<Ž¼…Ð*6ä +endstream +endobj + +xref +0 8 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +0000000556 00000 n +trailer << + /Size 8 + /Root 1 0 R + /QTest 7 0 R +>> +startxref +1771 +%%EOF diff --git a/qpdf/qtest/qpdf/bad34-recover.out b/qpdf/qtest/qpdf/bad34-recover.out new file mode 100644 index 0000000..08cc7bb --- /dev/null +++ b/qpdf/qtest/qpdf/bad34-recover.out @@ -0,0 +1,23 @@ +WARNING: bad34.pdf: file is damaged +WARNING: bad34.pdf (object 4 0, file position 322): expected n n obj +WARNING: bad34.pdf: Attempting to reconstruct cross-reference table +/QTest is indirect +/QTest is a stream. Dictionary: << /Length 44 /Quack 9 0 R >> +Raw stream data: +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET + +Uncompressed stream data: +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET + +End of stream data +unparse: 4 0 R +unparseResolved: 4 0 R +test 1 done diff --git a/qpdf/qtest/qpdf/bad34.out b/qpdf/qtest/qpdf/bad34.out new file mode 100644 index 0000000..ee65e14 --- /dev/null +++ b/qpdf/qtest/qpdf/bad34.out @@ -0,0 +1 @@ +bad34.pdf (object 4 0, file position 322): expected n n obj diff --git a/qpdf/qtest/qpdf/bad34.pdf b/qpdf/qtest/qpdf/bad34.pdf new file mode 100644 index 0000000..6070a5d --- /dev/null +++ b/qpdf/qtest/qpdf/bad34.pdf @@ -0,0 +1,81 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +4 0 obj +<< + /Length 44 + /Quack 9 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000322 00000 n +0000000418 00000 n +0000000453 00000 n +trailer << + /Size 7 + /Root 1 0 R + /QTest 4 0 R +>> +startxref +571 +%%EOF diff --git a/qpdf/qtest/qpdf/bad35-recover.out b/qpdf/qtest/qpdf/bad35-recover.out new file mode 100644 index 0000000..add1666 --- /dev/null +++ b/qpdf/qtest/qpdf/bad35-recover.out @@ -0,0 +1 @@ +bad35.pdf (object 1 0, file position 521): supposed object stream 1 has wrong type diff --git a/qpdf/qtest/qpdf/bad35.out b/qpdf/qtest/qpdf/bad35.out new file mode 100644 index 0000000..add1666 --- /dev/null +++ b/qpdf/qtest/qpdf/bad35.out @@ -0,0 +1 @@ +bad35.pdf (object 1 0, file position 521): supposed object stream 1 has wrong type diff --git a/qpdf/qtest/qpdf/bad35.pdf b/qpdf/qtest/qpdf/bad35.pdf new file mode 100644 index 0000000000000000000000000000000000000000..799cb09bf15547067b06a2ea5b9323224ae8f9a8 GIT binary patch literal 807 zcmZuvO>fgc5KRIX_QGFy7fWyed)FUHq^c4ru|S0q5=%vjdf3KGaMgM%dxHW$r+ z#SJmDcBvw2X}vQ$Z{N)9n_%%aeWE)xUfz;%l;Ws z-twwx9b(D$2UBm|HzaZ*j*ms_8l!K7LL_1&N+ghx5-C)sLJ6{?(Lawjn5mtGuPjZt2UZ1&FhUV zt9py@ysF>SZFPUZ1(>?*wIYiJ7u@HA^7pbP4DOM$f@!HGm7w@a_L!baMJP(LUvyLQ z62+C67mx5y4*0vt`m!|46RxVC22-})*QN1lOuY){SW`Mk@ANgr83UKrI*RbDkoUPT yG?CpjJQO^jZ#Z~97}1~Bkk*LS6IxG)qi5t*gGVZDoo?K|q0%xr7C|uol#9Q4IK+> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +x0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000128 00000 n +0000000300 00000 n +0000000389 00000 n +0000000424 00000 n +trailer << + /Size 7 + /Root 1 0 R +>> +startxref +542 +%%EOF diff --git a/qpdf/qtest/qpdf/bad5-recover.out b/qpdf/qtest/qpdf/bad5-recover.out new file mode 100644 index 0000000..75fe746 --- /dev/null +++ b/qpdf/qtest/qpdf/bad5-recover.out @@ -0,0 +1,9 @@ +WARNING: bad5.pdf: file is damaged +WARNING: bad5.pdf (xref table, file position 591): invalid xref entry (obj=2) +WARNING: bad5.pdf: Attempting to reconstruct cross-reference table +/QTest is implicit +/QTest is direct +/QTest is null +unparse: null +unparseResolved: null +test 1 done diff --git a/qpdf/qtest/qpdf/bad5.out b/qpdf/qtest/qpdf/bad5.out new file mode 100644 index 0000000..2955619 --- /dev/null +++ b/qpdf/qtest/qpdf/bad5.out @@ -0,0 +1 @@ +bad5.pdf (xref table, file position 591): invalid xref entry (obj=2) diff --git a/qpdf/qtest/qpdf/bad5.pdf b/qpdf/qtest/qpdf/bad5.pdf new file mode 100644 index 0000000..d6b0871 --- /dev/null +++ b/qpdf/qtest/qpdf/bad5.pdf @@ -0,0 +1,77 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +000x000063 00000 n +0000000128 00000 n +0000000300 00000 n +0000000389 00000 n +0000000424 00000 n +trailer << + /Size 7 + /Root 1 0 R +>> +startxref +542 +%%EOF diff --git a/qpdf/qtest/qpdf/bad6-recover.out b/qpdf/qtest/qpdf/bad6-recover.out new file mode 100644 index 0000000..1d31025 --- /dev/null +++ b/qpdf/qtest/qpdf/bad6-recover.out @@ -0,0 +1,6 @@ +/QTest is implicit +/QTest is direct +/QTest is null +unparse: null +unparseResolved: null +test 1 done diff --git a/qpdf/qtest/qpdf/bad6.out b/qpdf/qtest/qpdf/bad6.out new file mode 100644 index 0000000..26b50cb --- /dev/null +++ b/qpdf/qtest/qpdf/bad6.out @@ -0,0 +1,6 @@ +/QTest is implicit +/QTest is direct +/QTest is null +unparse: null +unparseResolved: null +test 0 done diff --git a/qpdf/qtest/qpdf/bad6.pdf b/qpdf/qtest/qpdf/bad6.pdf new file mode 100644 index 0000000..50238b2 --- /dev/null +++ b/qpdf/qtest/qpdf/bad6.pdf @@ -0,0 +1,122 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000128 00000 n +0000000300 00000 n +0000000389 00000 n +0000000424 00000 n +trailer << + /Size 7 + /Root 1 0 R +>> +startxref +542 +%%EOF + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 7 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +7 0 obj +<< + /Length 48 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Sandwiches) Tj +ET +endstream +endobj + +xref +0 1 +0000000006 65535 f +3 2 +0000000750 00000 n +0000000000 00000 f +7 1 +0000000922 00000 n +trailer << + /Size 8 + /Root 1 0 R + /Prev 542 +>> +startxref +1022 +%%EOF diff --git a/qpdf/qtest/qpdf/bad7-recover.out b/qpdf/qtest/qpdf/bad7-recover.out new file mode 100644 index 0000000..fbf93ce --- /dev/null +++ b/qpdf/qtest/qpdf/bad7-recover.out @@ -0,0 +1,4 @@ +WARNING: bad7.pdf: file is damaged +WARNING: bad7.pdf (file position 698): expected trailer dictionary +WARNING: bad7.pdf: Attempting to reconstruct cross-reference table +bad7.pdf: unable to find trailer dictionary while recovering damaged file diff --git a/qpdf/qtest/qpdf/bad7.out b/qpdf/qtest/qpdf/bad7.out new file mode 100644 index 0000000..ae3da54 --- /dev/null +++ b/qpdf/qtest/qpdf/bad7.out @@ -0,0 +1 @@ +bad7.pdf (file position 698): expected trailer dictionary diff --git a/qpdf/qtest/qpdf/bad7.pdf b/qpdf/qtest/qpdf/bad7.pdf new file mode 100644 index 0000000..f44c1e6 --- /dev/null +++ b/qpdf/qtest/qpdf/bad7.pdf @@ -0,0 +1,77 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000128 00000 n +0000000300 00000 n +0000000389 00000 n +0000000424 00000 n +trailer 3 << + /Size 7 + /Root 1 0 R +>> +startxref +542 +%%EOF diff --git a/qpdf/qtest/qpdf/bad8-recover.out b/qpdf/qtest/qpdf/bad8-recover.out new file mode 100644 index 0000000..f55a794 --- /dev/null +++ b/qpdf/qtest/qpdf/bad8-recover.out @@ -0,0 +1,9 @@ +WARNING: bad8.pdf: file is damaged +WARNING: bad8.pdf (file position 543): xref not found +WARNING: bad8.pdf: Attempting to reconstruct cross-reference table +/QTest is implicit +/QTest is direct +/QTest is null +unparse: null +unparseResolved: null +test 1 done diff --git a/qpdf/qtest/qpdf/bad8.out b/qpdf/qtest/qpdf/bad8.out new file mode 100644 index 0000000..ace464d --- /dev/null +++ b/qpdf/qtest/qpdf/bad8.out @@ -0,0 +1 @@ +bad8.pdf (file position 543): xref not found diff --git a/qpdf/qtest/qpdf/bad8.pdf b/qpdf/qtest/qpdf/bad8.pdf new file mode 100644 index 0000000..9f424af --- /dev/null +++ b/qpdf/qtest/qpdf/bad8.pdf @@ -0,0 +1,104 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000128 00000 n +0000000300 00000 n +0000000389 00000 n +0000000424 00000 n +trailer << + /Size 7 + /Root 1 0 R +>> +startxref +542 +%%EOF + +4 0 obj +<< + /Length 43 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Salad) Tj +ET +endstream +endobj + +xref +0 1 +0000000000 65535 f +4 1 +0000000750 00000 n +trailer << + /Size 7 + /Root 1 0 R + /Prev 543 +>> +startxref +845 +%%EOF diff --git a/qpdf/qtest/qpdf/bad9-recover.out b/qpdf/qtest/qpdf/bad9-recover.out new file mode 100644 index 0000000..f795a15 --- /dev/null +++ b/qpdf/qtest/qpdf/bad9-recover.out @@ -0,0 +1,9 @@ +WARNING: bad9.pdf: file is damaged +WARNING: bad9.pdf (trailer, file position 712): trailer dictionary lacks /Size key +WARNING: bad9.pdf: Attempting to reconstruct cross-reference table +/QTest is implicit +/QTest is direct +/QTest is null +unparse: null +unparseResolved: null +test 1 done diff --git a/qpdf/qtest/qpdf/bad9.out b/qpdf/qtest/qpdf/bad9.out new file mode 100644 index 0000000..45524ff --- /dev/null +++ b/qpdf/qtest/qpdf/bad9.out @@ -0,0 +1 @@ +bad9.pdf (trailer, file position 712): trailer dictionary lacks /Size key diff --git a/qpdf/qtest/qpdf/bad9.pdf b/qpdf/qtest/qpdf/bad9.pdf new file mode 100644 index 0000000..a52b15f --- /dev/null +++ b/qpdf/qtest/qpdf/bad9.pdf @@ -0,0 +1,79 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +xref +0 7 +0000000000 65535 f +0000000009 00000 n +0000000063 00000 n +0000000135 00000 n +0000000307 00000 n +0000000403 00000 n +0000000438 00000 n +trailer << + /Siqe 7 + /Root 1 0 R +>> +startxref +556 +%%EOF diff --git a/qpdf/qtest/qpdf/badlin1.out b/qpdf/qtest/qpdf/badlin1.out new file mode 100644 index 0000000..8ad4bfd --- /dev/null +++ b/qpdf/qtest/qpdf/badlin1.out @@ -0,0 +1,380 @@ +ERROR: first page object (/O) mismatch +ERROR: space before first xref item (/T) mismatch (computed = 11777; file = 11771 +WARNING: end of first page section (/E) mismatch: /E = 1827; computed = 3889..3891 +WARNING: page 0 has shared identifier entries +WARNING: page 0: shared object 62: in hint table but not computed list +badlin1.pdf: linearization data: + +file_size: 13103 +first_page_object: 63 +first_page_end: 1827 +npages: 30 +xref_zero_offset: 11770 +first_page: 0 +H_offset: 1211 +H_length: 203 + +Page Offsets Hint Table + +min_nobjects: 2 +first_page_offset: 1414 +nbits_delta_nobjects: 4 +min_page_length: 259 +nbits_delta_page_length: 12 +min_content_offset: 0 +nbits_delta_content_offset: 0 +min_content_length: 0 +nbits_delta_content_length: 12 +nbits_nshared_objects: 2 +nbits_shared_identifier: 2 +nbits_shared_numerator: 4 +shared_denominator: 8 +Page 0: + nobjects: 16 + length: 2477 + content_offset: 0 + content_length: 2218 + nshared_objects: 2 + identifier 0: 0 + numerator 0: 0 + identifier 1: 0 + numerator 1: 0 +Page 1: + nobjects: 2 + length: 259 + content_offset: 0 + content_length: 0 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 2: + nobjects: 2 + length: 259 + content_offset: 0 + content_length: 0 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 3: + nobjects: 2 + length: 259 + content_offset: 0 + content_length: 0 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 4: + nobjects: 2 + length: 259 + content_offset: 0 + content_length: 0 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 5: + nobjects: 2 + length: 261 + content_offset: 0 + content_length: 2 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 6: + nobjects: 2 + length: 262 + content_offset: 0 + content_length: 3 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 7: + nobjects: 2 + length: 262 + content_offset: 0 + content_length: 3 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 8: + nobjects: 2 + length: 262 + content_offset: 0 + content_length: 3 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 9: + nobjects: 2 + length: 262 + content_offset: 0 + content_length: 3 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 10: + nobjects: 2 + length: 263 + content_offset: 0 + content_length: 4 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 11: + nobjects: 2 + length: 263 + content_offset: 0 + content_length: 4 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 12: + nobjects: 2 + length: 263 + content_offset: 0 + content_length: 4 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 13: + nobjects: 2 + length: 263 + content_offset: 0 + content_length: 4 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 14: + nobjects: 2 + length: 263 + content_offset: 0 + content_length: 4 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 15: + nobjects: 2 + length: 263 + content_offset: 0 + content_length: 4 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 16: + nobjects: 2 + length: 263 + content_offset: 0 + content_length: 4 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 17: + nobjects: 2 + length: 263 + content_offset: 0 + content_length: 4 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 18: + nobjects: 2 + length: 263 + content_offset: 0 + content_length: 4 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 19: + nobjects: 2 + length: 263 + content_offset: 0 + content_length: 4 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 20: + nobjects: 2 + length: 263 + content_offset: 0 + content_length: 4 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 21: + nobjects: 2 + length: 263 + content_offset: 0 + content_length: 4 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 22: + nobjects: 2 + length: 263 + content_offset: 0 + content_length: 4 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 23: + nobjects: 2 + length: 263 + content_offset: 0 + content_length: 4 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 24: + nobjects: 2 + length: 263 + content_offset: 0 + content_length: 4 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 25: + nobjects: 2 + length: 263 + content_offset: 0 + content_length: 4 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 26: + nobjects: 2 + length: 263 + content_offset: 0 + content_length: 4 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 27: + nobjects: 2 + length: 263 + content_offset: 0 + content_length: 4 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 28: + nobjects: 2 + length: 263 + content_offset: 0 + content_length: 4 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 +Page 29: + nobjects: 2 + length: 263 + content_offset: 0 + content_length: 4 + nshared_objects: 2 + identifier 0: 2 + numerator 0: 0 + identifier 1: 3 + numerator 1: 0 + +Shared Objects Hint Table + +first_shared_obj: 0 +first_shared_offset: 0 +nshared_first_page: 16 +nshared_total: 16 +nbits_nobjects: 0 +min_group_length: 34 +nbits_delta_group_length: 9 +Shared Object 0: + group length: 157 +Shared Object 1: + group length: 105 +Shared Object 2: + group length: 117 +Shared Object 3: + group length: 34 +Shared Object 4: + group length: 82 +Shared Object 5: + group length: 191 +Shared Object 6: + group length: 144 +Shared Object 7: + group length: 168 +Shared Object 8: + group length: 291 +Shared Object 9: + group length: 165 +Shared Object 10: + group length: 162 +Shared Object 11: + group length: 182 +Shared Object 12: + group length: 201 +Shared Object 13: + group length: 150 +Shared Object 14: + group length: 164 +Shared Object 15: + group length: 164 + +Outlines Hint Table + +first_object: 66 +first_object_offset: 1827 +nobjects: 12 +group_length: 2064 diff --git a/qpdf/qtest/qpdf/badlin1.pdf b/qpdf/qtest/qpdf/badlin1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..8539ac4ba85902d54a91354ef4ff1cd30b37d790 GIT binary patch literal 13103 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 TuGYmaA$Y!8A~|`MK~MYycWTlT literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/c-decrypt-with-user.pdf b/qpdf/qtest/qpdf/c-decrypt-with-user.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9a0f23b4ff35384cebe384cfbca24ce01da2efd4 GIT binary patch literal 9668 zcmc&)dr(tX8fWc-^tP5q#X;2eK!a6FP3|KJ5d{RyfDZx*Em}kg$(4o;i6$4sXi-YF zK3Z06-M*~bb-UITtr%#nOFOKt-BQ-AS}o4*IH*+GOx4!Gw!Yimdrsiq_GH>*2Il_3 zTyk^H`Tfp!zVDaseDft2cqMj%z!9AV{DB&hkoP`gEW)RC9KlgLMO%e`y5D z0&@jB*Idrp-GEe!ujVE>Llxr(UW z_WIUR=SkJ*b>G~G`_k1OuluOx(tEq7B<{Rh!R#gz)7v&>mKL6P$Mk8^^%J*8=5JG` zUG^4EemC~k^%;h)g6gkE_H!LyZ@4ru~OIbc$v9|BN z+`ny1d*jsO6QcKd$k(&_J?&>N%_k2&5!ct)3eIHqPyO;*TV2PUtLMOqj4oK_IDau5A>al zjhwn>#>-7rKyR$1vjK>RUz zZ|T9!PkBl0ns2RY?W|wqQLdl3$h|F_iyx8poVIL_Z$WN^ z>dnTOS~r(Vm;R$Kc13eyW$zd7P0q2zgeOfM)wOWPZT*=sXGUu;est&k3+ks&=N7Ks z6yDKZm+yW1=xe%9{>ogu>iL(hsQbwNKecWBxBdMw^>?3o{D}2?vK2MpkXxy}aCZy?BZMiFR*}YxGlUI%};MP35VS8$J)^jnQKRvi+|}grQ95=f4N1`AHVUytW$A^e(b;CS-qGVne`p{Y^!_w zx#oR0Z-(U^daC;WwMTPeG>ykUi~puq^~|)ba~^!?c3DDH_dQkHCVU>>|Hy}#jm*w& zL+8uMvofZE3mHov_@KG&`;2cN9XE$}UcayT-59$0K+I%2s~sGmdB2@wv${bEpimG{ zC}1cp3<)X~J#_FvqL=(6AtBz9v zbzCE>j>9AZJ3Ec6Iu0`$oRh3N4$~`~ldL)pb3L4stU3-8Pn?siI!*`FagD4x4%2Sj zPO|DayaV8zWYuvxppI*0)p0tYj%#Jrad<1k&Q2?9V=&Pi4shxb*SldL)pFV8q9 zS#=!VNpcn$F;KRIIMBtc9K=cVFhJ?Q^0blzh26hHKdhLH*wxraC|vkq@oHV z^X~Hg_xUxQnTd+<&hE%gWnRk1#j4MWB0uhRjXFOftVd5wz$#m?-ZB83Wp=Z$7^BQ( z?KLcCvzUQ$mV>Xy+8h-?S!{F6bhvHei+pnxU-i|KKxwKj=U@p~sL=4AQK1H|B^HBW zAxFR};fp&tdVUmJ%Yo8?S~0BH3{d%18;~K|fDw)0vl9835!BKu#Lyz28Z^HzlbDSo zOKS~7i`*?D8wuWfeo@j?ODhUPi~OmGoJZirRJF8jFr>(B$3^7TL?OOssTvI}vgDlC z6Gj|aP~lQU&!H-dxaFQCVl2L8X&N}Bz~U+Qj3wf6U}>&5q`;!7 zdmbSYFko1!2wh`=opuQn3^2M$`hLIsw@aV3$60}q>YG2)heS|Sfe4qCcGP6$N5 z_LUIxaO9x1D`aHRv3*s90Y?s6yh276J=<496ky2kf*zE5g^El`&Ut2lBnV!^hX+~o zZQtwwsR+Dm4-c{^*}jDVJWM-G0yeVCHsu-XvV-fE{w~bN2FP`_K?_*O$1KUR9RXZh z8?=Ijj4TPN<$+v#*d&aS1l5`V87I8y4vT|%B|)_zK*p&ZHVN}ef@%w4!i7XCVdx?_ z-^eZ*Z23urZ9M@xeo*HR-zrdr`U0|@_UbAJ-(Dc}0`RQ`7S8Dcd{2SU2~f=U7?6PC z|M>0#qtnUv7VsH1-@#|A9DZ?^V$0h9Owuz~TNV_37#8+;ib5^iet+I<;^xdQ TuGYmaA$Y!8A~|`MK~MYycWTlT literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/c-ignore-xref-streams.pdf b/qpdf/qtest/qpdf/c-ignore-xref-streams.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c3d17dcefe9c80ffb048dc6fb2792dd844b30852 GIT binary patch literal 9976 zcmc(l%WvF79LEa?5slP43q$|>rCfx)TDdga0-PF~_Th>k+xX=Sa zaNxq36Mq4UxNzc{A|aJmxgnL){s-I;^XS&I{#oLHSCfO2%zA#`?{CKQ*_q$&;>Jqv zP4bpNi$DDR%|D3X5Rb0iL`zFJ*hu%Xwb3BM!Fy%4eozhbA}eikiK)7=kAtm`ZmHML zr&T%}?cwERlobQrU%xz!bAEJCRG5W0xReh{yp5UZ%gt4ot2EchTw`-h%$0=pm$uc% z#EKHzpV$DzMj$o>u`!4ZLTnUjqfi@#+9=dUp*9M&QK*eVZ4_#wP#Z-hpiM9vh1n=O z(;?7K9Nt2?Ko+t13;!FX2% z*7MODsaMP&1T$-Ud0BNCk9IdRHNZ9n-DGD)TXG!f9?+3Z*pDM^7&@|J@5hlI4d}=| z27Vmr(SVNZ6Y0m19u44#+r{C>ksb}`$gWdAjtsY;CCdy?mh^Z)OFoHYcn&RDw0Rn( zR&H~PR!^2%!OeYw+q~z(iStQr^ZpMl`9!zbi$F_0*=_bkz>@F@Z?i{(mVDCN>=&UW zpY%3+S7^y6z0E!vTJlM6v!{oaeA3&TFQ6r#^fqT5XvrtN&AAI&@=0%V285P;(%YOz zfhFma-sWr!E%~IkIj2KQKIv_02GEjEdYk$MwB(cCraCgU^lnz{RX4EOngqRkSY>1N zdze<)O17&@QmWEaR^u$)M~7dR=wW~3{vEaz(klzAPaXaA<=x{mr(b>g_`$+)u=>Wm ztKt2vg?oREPd z+y<|1lxuoT`bbS=<2{SF(W@Kf8efxbv<8$-wV=6}yHT$BH5s7GP`Qm?-6+=po9v@? zsN4pyZj@_+O>UzNsN6=dPL#iM*7GOm3RG@GSU1Yfdj1^sq4L}qMxC6`wva^3jbYTu z`CT-0r`0zspVag|4-jVG$?(`b|W^w?;NVm0rLwnP__ zX4^;@0S!WRA-r)PlR$$A{f&&qeNwNnMq3<$+(;sTE+wH_C9{1g<-jv#2^c>rILMdE zSb?SyFNR}9lNjW|h%P71_GL5zc`&XEy^Z@s1oB{!{s^XVUo1f$Jk%eK&fdp~0C{j0 zg8ATFfIPTVPgyfw#6ccBmcSoRBA_8cIG2LJ=Son$QJu|0un2e&JON`R^!H+#eIs2Z zYQ&4-GbEA-jHwJ0kcXsjJ|xp8^jQtbH9s3|A_j9VBRC&2hT|d=y^WrY7ljefh)4o7 zBBnp=Z1m*}%v&Vj8jO?~&^HdDMxs9@nAK3Xf#)SA63lN*;atYtWkfYj^Pwu~=`S<& zN23bscSZGWvd#SCOi>aCt1EbWi4pz8Q>maCCsD#Ei`6Vh&RDFLU?P_P`;Hx3C``wd P0dlNDp~b}u>pk=@f?6pz literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/c-info-out.pdf b/qpdf/qtest/qpdf/c-info-out.pdf new file mode 100644 index 0000000..4a81688 --- /dev/null +++ b/qpdf/qtest/qpdf/c-info-out.pdf @@ -0,0 +1,44 @@ +%PDF-1.3 +%¿÷¢þ +1 0 obj +<< /Pages 3 0 R /Type /Catalog >> +endobj +2 0 obj +<< /Author (Mr. Potato Head) /Producer (QPDF library) >> +endobj +3 0 obj +<< /Count 1 /Kids [ 4 0 R ] /Type /Pages >> +endobj +4 0 obj +<< /Contents 5 0 R /MediaBox [ 0 0 612 792 ] /Parent 3 0 R /Resources << /Font << /F1 6 0 R >> /ProcSet 7 0 R >> /Type /Page >> +endobj +5 0 obj +<< /Length 44 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj +6 0 obj +<< /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> +endobj +7 0 obj +[ /PDF /Text ] +endobj +xref +0 8 +0000000000 65535 f +0000000015 00000 n +0000000064 00000 n +0000000136 00000 n +0000000195 00000 n +0000000338 00000 n +0000000431 00000 n +0000000538 00000 n +trailer << /Info 2 0 R /Root 1 0 R /Size 8 /ID [<31415926535897932384626433832795><31415926535897932384626433832795>] >> +startxref +568 +%%EOF diff --git a/qpdf/qtest/qpdf/c-info1.out b/qpdf/qtest/qpdf/c-info1.out new file mode 100644 index 0000000..625eaa3 --- /dev/null +++ b/qpdf/qtest/qpdf/c-info1.out @@ -0,0 +1,6 @@ +Info key /Author: (null) +Info key /Producer: (null) +Info key /Creator: (null) +Info key /Author: Mr. Potato Head +Info key /Producer: QPDF library +Info key /Creator: (null) diff --git a/qpdf/qtest/qpdf/c-info2-in.pdf b/qpdf/qtest/qpdf/c-info2-in.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7a83ea2c63304502e042f61c588a8c3bebcfe0ac GIT binary patch literal 926 zcmZWo-HOvd6!r(927HGjSWwW-|0ID@>~0$@x@&CB7#?Xy}pEZ;+eE*mhI#w`R07*=lf2YgKqf5JhHXsx4&QhX(kvTW^c4s3-ke9 zupDeehMLv5e1iEg8n?2=P&`M>}*=~wr#hjs_UA{CF3#& zx8&%jY@X0#vBoS0KE$-Z3oO7~1DauAHT96?qR1kYK?xEHyeVHyAZ4Os6zF z`|FQSA2(0$Ke)5`)!69$#}~iHjf+3oy~|rSzTdpNK~r|jojt0}s_HS#Svi9KjHU0G zOd<+;k7G%ty#6}j9iAsOa7I^Xd5D6KikU3^SCirQcEB=Mt+$$Am71U=-4KJ=TEev2 zlXb>o%>Z9B_6LaT+AhSf$4nGS9pE)a(8p_-=>`XwW%>u0O>mvBaUJiF>-s2D6(=*A zr09t9xzA$(YQymd7z&}5uY4aR9~hu{{Vq&ew&`F)7QtEkzzb~4_8npo$F_aj@&dQr uBC~)-%ri`jkeNFpj7CA=JBAe-ffdAYd#d&%mo$^5OvEHwv)OwYYX1QpXaKzc literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/c-info2.out b/qpdf/qtest/qpdf/c-info2.out new file mode 100644 index 0000000..61d3735 --- /dev/null +++ b/qpdf/qtest/qpdf/c-info2.out @@ -0,0 +1,6 @@ +Info key /Author: Someone Else +Info key /Producer: Something Else +Info key /Creator: A. Nony Mous +Info key /Author: Mr. Potato Head +Info key /Producer: QPDF library +Info key /Creator: (null) diff --git a/qpdf/qtest/qpdf/c-invalid-password.out b/qpdf/qtest/qpdf/c-invalid-password.out new file mode 100644 index 0000000..679643f --- /dev/null +++ b/qpdf/qtest/qpdf/c-invalid-password.out @@ -0,0 +1,5 @@ +error: enc-R2,V1,U=view.pdf: invalid password + code: 4 + file: enc-R2,V1,U=view.pdf + pos : 0 + text: invalid password diff --git a/qpdf/qtest/qpdf/c-linearized.pdf b/qpdf/qtest/qpdf/c-linearized.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dbe62ffe6b2788b8442ffe836f9a1cf01c17c906 GIT binary patch literal 10729 zcmd^_e^3P-}k$FPn1EcTZ%7JU{R-r_dmguIFJE{r3j0U2h!(lcFOFuRZ>=f z!zF;r;s`a6t^_$CPNf963I};Wss~C1kR}5{rh*&O04W2~Oc;wR6d*AXqwH4tc;J8g zgDDBtg=B8tNCBzINUevLLD>u48-N_1tIk&JrkwDz*zBgXRDr_^qnJ;F*;(QOG=wBa zaaoDo1>`_#a8g!Vf!pB(H~}vWNV6dc91!pqa!9dTsZDSNL`V?y3Zui}21*j1hY?6K zAV#1f(Lu@)9VLf|G(`(?;z?YNE7XKiK`K=0I5kO-D!GzS%1Kg15^-up;*Uq<(coQf zCuJ_dHoaY7u?`mITk=&wi+7!u1f7WwsfejlOzr-Y-%+O~cC&xdV~4ur6I7PR5WmmbFrh4RjEoj+&-3#w?r}ku7E|Zha-R(FDNytb}#h&e26?h)TeQK zZg6g}L9(92Wxl&(1NK?^z*{~u$WNyDP6^fd2Ux3zBsG6%$AUvg_T-+?CU)=cs*)Tu z^mc*^ol&>`ae-&H8Iq+l7IbiL5gdZvlTLEj-IU$!0!k%wsj0AT z%_|&qb<)t3uzcgxs77I(!^m+aM#|+Va~43lbm{BhahQK_po~L@qO0EEbQEMzu(Va< zs~DCvb~Z>l`xwa4VMlZ0W6G{q7dB)xT&y57Wkh;lif`Mw*QVSl?91&g zn|DQ;xdf_!4hmjInZ=ESgT6Yr%v>ZomRHvh1Ugp^1f$i#C~A`%9}MYt-uj#UiYBD?&gN|$#nNqs4?a$x9h9C0 znrHnMD>X=iOSRfPndQ}k&6@+x9B(*LzBc;{OZc6C_C9*?$v20SHAnoeZ=C~bBr(gE z_Aur<(u$gPPR(xbf2Otkme2WtHCtl9N4vH*X+I`X8+=il^FqH*8yXsJwpuvt^$gu)lY5 z{!0h4haawQ^gR*W5R$s$Mrr7!W>4ss)3!wJ|3~SryQ<3Bk!u%cG=1G>S~jy?EAMU@ zYz{f}-0ZrKjy>b5zc>FI(_KUSuT3+)-{JE6YURwYEM0e!|NL~v;ojdTTuZOLiMK=ZRCTVSdd`y+gO(jvJYEurLC|JbYoVdfkU70&l({`*vQs zwC4Jfosqhl_$!B=TL(pkfqQ_eLn2{|^OLxP?iIW@t|k0R9soqX(!CbcFmc}XN-3pga$6W;jfz(>8BIKu;F z7lg%CFAE(O&S8P`iYA=!MbrwET@V;oyfF0GLM{wm-NZ!|PLy2`7=2zCCM<#rgI79n zQT;l~E(DAtEWd8X02c(mf6uw^(Q9)65VQ6@3!=u4gacS^MC?TqZqU^%Z@VZY=3bvX{gI7ZdQ8g50 z7lww{fqIM>baWG5(h?xqYg82Y4ED3TvQcB*#)6NuxevDkNcAIs;FF46-C*Fp~0$+ zRXpxX&a0wwQB@RW7lsDQi)Qe+FFCJ@%0*RClwBAaEH9eNLMMN#&NG$!HO z$bi4vmeg2FJ8Cyhk$5N`^94H%yl-O1--yC5LPfNqDEmYhlkz}Mu&k(^$9ySxMN}cG zh@$Mm&|q273Lf*N;1yAYs3MB83qyltMXPws7i<{f8!4iSsDjQe2#q$D-Kgg=UkY9k zRfsC0D7!E;SaxFvmcg;2sB32|bCRPBcBascW~*&h7u|D3SB??(VbOo-F=YhI8k(UI z&niJs?6M|$Ap5*AcG9l=W8|l_Drc;FOr*W|xYUnv*i~$q!gPu0HKkqBq|GcLS zb*;gMHo-d6BtFr)>8bwF{Z8@NUlMg$L6+1mD_(61?l)z9nvbvPDru?7s$Zl# p_7hW>#OjIAbK9RLwv7FMFT>V9v(vrFNv+2ST!}?RCF^zAzX5k~w(S4_ literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/c-no-options.pdf b/qpdf/qtest/qpdf/c-no-options.pdf new file mode 100644 index 0000000000000000000000000000000000000000..4c777c61a0fc24bebea33239ed2b63e96f42759c GIT binary patch literal 9668 zcmc&)eNa@_6{n^kd5Pg8;vi~rA&XH%+7Ek>!{?5%=mh+Cz_}H=UCRt;h*-ft#4^L^@+Sn33E;v6TIqUa7O=(D5Ia9NK z;F0{_ZO(Y-%(IhX4+O}!a|Q#Q=dUaz4?mYM(A*BrWe-mO=0-VvyJtSHe793x#{aw7Z=(LuF}pAn%WNy zoR5#5zHDn@^$(4AZ>?*KbRQ1xocA-Gd)K~={m$!0?^Ul|{o2hBm&e?)#6DA9?LS2P zJavEh;jJ$O%C;=oU-wDOq6)pBbQ4YmGO$PVqa)c zew6Or=D2!4mrs}fVIY20YjSn}*B?#IbHqiaOdr#;c-LL?xpC*l8ZUo#@8e7Q7tiJw zuiX;a)!9%OeE;}crZ0ZWT)rOolc}Wl*uh_PZ2zetbB2y2x zBnR5`hX($c(Y2!Z&EUoYZPtA5+t#07r+ z-07sVy|(wQS-HBX zJDZPH{cYl6&+$P=S=u`e*SD|#rr(x!d%XFLHqBt-=0kJNBpmtA;HALYrPS!0AIO*6 z{W~wT9=LrwqTt92wSTWao)>3mKKWJRcm2ATW^AAL_!D<4l45!vs@XB=ABlrceVX0O z?C!O6zmYm8YX-QKwfwP9S{weA_5ITm=0WET`&!tIk(&?2Os==q!vPxl?L3#$56S=~ z1OX)k3}r+iL8S{16MB%sOE`%SGnx-U_~4@hK7`n#8DXR_ff9yL;R(Xhq_8F};L%|q zVHGO8N_a?k6=6+AScMVRWP}NfFo6jV5fB(*>2jbIqLtSJza*Z~K14%!IM&1Y0V6Qc zE?}K5dycmr+Jr|mkQ6YQC;(S0viso3VY#rfes8VM0hi`Q$n1sxLcfrJ5%_0j!Z|*# z!^U!e5%$8r5=lup@l!BPdSTCMapF1SoP+~Vi4*cAoRi=UYH{K%f^!Ogjnwfcinj>P zNr)4*?8I9H=M?@#t7IqMA~>gTMxYWW-Xb_BRrLvd9&k>A(5dB5yhU(Mg3_wRNmj=V zs_Hl;tK$Y$bsQxT*x4CW)p3;3;G9&|ag<)+oK)3ulNq2-<3?3=9Mw2*JE^MUsDd)YDO?(b6%5(RsI(I5CoWoxPOhX& zbX0M4!2`j+zPheEJ6RLi-5cGlElB&kRQFX$^ymG)F&9Tg^qGlCSY->6KyN=~t4m;4!@xXel%Tookr7q8GkKZM}D74qWs;`*@T3c-;hf2VFg$DjD6l%~~ zVlfyMa(JvVSlr1o!%=KK2g-+P#i(L4L}kbZa4os&@c(B6Ml?dmNfcs6&`YZj$|9c` zHh(Can2RGzYYoaG_ln3?0xo@DNmDPaC@72krHEWW;KfwEv~Hj%a>q##c`Z?l?^&uw z$|6h7c_U%Pk$Dv!5#OdH*0#x=v-GAvv}Z+>Mci^<3NaqvvNR1;6j(gvzVSpN4lK>} z6a^Md-S-rcgaM;c#r=n@h^fU`?qi4vIIx_4DFS?IIH3Aw5fgD>Ir&lq__PRYAs)kl z<@+#4U%6L;;R0Ctb=U z1fpMu%7_IxvYd7)gDg6BsD`lM$a3PP46^9ip*o@nLq-?$`_)SkWJ+?*vt^PXbPXRF zWYM=nb7fKyblDymWKpt1i)B2_I6?w8y2mx`CFhF685hnl1tmeXNhaeoj+lf6B|)`~u;D@?l`!EV zxX{Wj8*ceYM{PYa9X~?n4{Q~v5&8mhz3$o?4{R^sdjVi;frIn<0PHE?I{`{zj{ylN z_yfBOtX?ndEr1y|>|nCF0xU>}AI5?_P&Sh$8B%Ye40>9hZZeu^icV(?l!2k?beb}n z^qK#AMEQ?ej~tZ|qb8f98lomgZI~F_I_X$th31zxPh7dSep6%1qt2eO;7Ih7iPwTt zigVuVo4coUeB!0q=cdKB5~CkF8hLq-X50F|OffUp+ZL648WHhqnnusxet+C-;^*u> TuHMHkBOqTRk(xTkVkZ6z7RJ&O literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/c-no-original-object-ids.pdf b/qpdf/qtest/qpdf/c-no-original-object-ids.pdf new file mode 100644 index 0000000..d46bf04 --- /dev/null +++ b/qpdf/qtest/qpdf/c-no-original-object-ids.pdf @@ -0,0 +1,1512 @@ +%PDF-1.5 +%¿÷¢þ +%QDF-1.0 + +1 0 obj +<< + /Outlines 3 0 R + /PageLabels 15 0 R + /PageMode /UseOutlines + /Pages 16 0 R + /Type /Catalog +>> +endobj + +2 0 obj +<< + /Type /ObjStm + /Length 3176 + /N 13 + /First 126 +>> +stream +3 0 +4 100 +5 335 +6 520 +7 718 +8 1044 +9 1262 +10 1508 +11 1715 +12 1922 +13 2115 +14 2329 +15 2535 +%% Object stream: object 3, index 0 +<< + /Count 6 + /First 4 0 R + /Last 5 0 R + /Type /Outlines +>> +%% Object stream: object 4, index 1 +<< + /Count 4 + /Dest [ + 17 0 R + /XYZ + null + null + null + ] + /First 6 0 R + /Last 7 0 R + /Next 5 0 R + /Parent 3 0 R + /Title (Isís 1 -> 5: /XYZ null null null) + /Type /Outline +>> +%% Object stream: object 5, index 2 +<< + /Dest [ + 18 0 R + /XYZ + 66 + 756 + 3 + ] + /Parent 3 0 R + /Prev 4 0 R + /Title (Trepak 2 -> 15: /XYZ 66 756 3) + /Type /Outline +>> +%% Object stream: object 6, index 3 +<< + /Count -3 + /Dest [ + 19 0 R + /Fit + ] + /First 8 0 R + /Last 9 0 R + /Next 7 0 R + /Parent 4 0 R + /Title (Amanda 1.1 -> 11: /Fit) + /Type /Outline +>> +%% Object stream: object 7, index 4 +<< + /Count 2 + /Dest [ + 20 0 R + /FitH + 792 + ] + /First 13 0 R + /Last 14 0 R + /Parent 4 0 R + /Prev 6 0 R + /Title + /Type /Outline +>> +%% Object stream: object 8, index 5 +<< + /Count -2 + /Dest [ + 21 0 R + /FitV + 100 + ] + /First 10 0 R + /Last 11 0 R + /Next 9 0 R + /Parent 6 0 R + /Title (Isosicle 1.1.1 -> 12: /FitV 100) + /Type /Outline +>> +%% Object stream: object 9, index 6 +<< + /Count 1 + /Dest [ + 21 0 R + /XYZ + null + null + null + ] + /First 12 0 R + /Last 12 0 R + /Parent 6 0 R + /Prev 8 0 R + /Title (Isosicle 1.1.2 -> 12: /XYZ null null null) + /Type /Outline +>> +%% Object stream: object 10, index 7 +<< + /Dest [ + 22 0 R + /XYZ + null + null + null + ] + /Next 11 0 R + /Parent 8 0 R + /Title (Isosicle 1.1.1.1 -> 18: /XYZ null null null) + /Type /Outline +>> +%% Object stream: object 11, index 8 +<< + /Dest [ + 23 0 R + /XYZ + null + null + null + ] + /Parent 8 0 R + /Prev 10 0 R + /Title (Isosicle 1.1.1.2 -> 19: /XYZ null null null) + /Type /Outline +>> +%% Object stream: object 12, index 9 +<< + /Dest [ + 24 0 R + /XYZ + null + null + null + ] + /Parent 9 0 R + /Title (Isosicle 1.1.2.1 -> 22: /XYZ null null null) + /Type /Outline +>> +%% Object stream: object 13, index 10 +<< + /Dest [ + 25 0 R + /FitR + 66 + 714 + 180 + 770 + ] + /Next 14 0 R + /Parent 7 0 R + /Title (Trepsichord 1.2.1 -> 1: /FitR 66 714 180 770) + /Type /Outline +>> +%% Object stream: object 14, index 11 +<< + /Dest [ + 26 0 R + /XYZ + null + null + null + ] + /Parent 7 0 R + /Prev 13 0 R + /Title (Trepsicle 1.2.2 -> 0: /XYZ null null null) + /Type /Outline +>> +%% Object stream: object 15, index 12 +<< + /Nums [ + 0 + << + /P () + >> + 2 + << + /S /r + /St 1 + >> + 7 + << + /P () + >> + 9 + << + /S /r + /St 6 + >> + 11 + << + /P () + >> + 12 + << + /S /D + /St 2 + >> + 15 + << + /S /D + /St 6 + >> + 19 + << + /P () + >> + 20 + << + /S /D + /St 12 + >> + 22 + << + /S /D + /St 16059 + >> + 23 + << + /S /r + /St 50 + >> + 29 + << + /S /r + /St 54 + >> + ] +>> +endstream +endobj + +16 0 obj +<< + /Count 30 + /Kids [ + 26 0 R + 25 0 R + 27 0 R + 28 0 R + 29 0 R + 17 0 R + 30 0 R + 31 0 R + 32 0 R + 33 0 R + 34 0 R + 19 0 R + 21 0 R + 20 0 R + 35 0 R + 18 0 R + 36 0 R + 37 0 R + 22 0 R + 23 0 R + 38 0 R + 39 0 R + 24 0 R + 40 0 R + 41 0 R + 42 0 R + 43 0 R + 44 0 R + 45 0 R + 46 0 R + ] + /Type /Pages +>> +endobj + +%% Page 6 +17 0 obj +<< + /Contents 47 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 16 +18 0 obj +<< + /Contents 51 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 12 +19 0 obj +<< + /Contents 53 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 14 +20 0 obj +<< + /Contents 55 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 13 +21 0 obj +<< + /Contents 57 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 19 +22 0 obj +<< + /Contents 59 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 20 +23 0 obj +<< + /Contents 61 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 23 +24 0 obj +<< + /Contents 63 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 2 +25 0 obj +<< + /Contents 65 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 1 +26 0 obj +<< + /Contents 67 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 3 +27 0 obj +<< + /Contents 69 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 4 +28 0 obj +<< + /Contents 71 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 5 +29 0 obj +<< + /Contents 73 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 7 +30 0 obj +<< + /Contents 75 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 8 +31 0 obj +<< + /Contents 77 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 9 +32 0 obj +<< + /Contents 79 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 10 +33 0 obj +<< + /Contents 81 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 11 +34 0 obj +<< + /Contents 83 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 15 +35 0 obj +<< + /Contents 85 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 17 +36 0 obj +<< + /Contents 87 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 18 +37 0 obj +<< + /Contents 89 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 21 +38 0 obj +<< + /Contents 91 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 22 +39 0 obj +<< + /Contents 93 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 24 +40 0 obj +<< + /Contents 95 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 25 +41 0 obj +<< + /Contents 97 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 26 +42 0 obj +<< + /Contents 99 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 27 +43 0 obj +<< + /Contents 101 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 28 +44 0 obj +<< + /Contents 103 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 29 +45 0 obj +<< + /Contents 105 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 30 +46 0 obj +<< + /Contents 107 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Contents for page 6 +47 0 obj +<< + /Length 48 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 5) Tj +ET +endstream +endobj + +48 0 obj +46 +endobj + +49 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +50 0 obj +[ + /PDF + /Text +] +endobj + +%% Contents for page 16 +51 0 obj +<< + /Length 52 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 15) Tj +ET +endstream +endobj + +52 0 obj +47 +endobj + +%% Contents for page 12 +53 0 obj +<< + /Length 54 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 11) Tj +ET +endstream +endobj + +54 0 obj +47 +endobj + +%% Contents for page 14 +55 0 obj +<< + /Length 56 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 13) Tj +ET +endstream +endobj + +56 0 obj +47 +endobj + +%% Contents for page 13 +57 0 obj +<< + /Length 58 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 12) Tj +ET +endstream +endobj + +58 0 obj +47 +endobj + +%% Contents for page 19 +59 0 obj +<< + /Length 60 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 18) Tj +ET +endstream +endobj + +60 0 obj +47 +endobj + +%% Contents for page 20 +61 0 obj +<< + /Length 62 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 19) Tj +ET +endstream +endobj + +62 0 obj +47 +endobj + +%% Contents for page 23 +63 0 obj +<< + /Length 64 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 22) Tj +ET +endstream +endobj + +64 0 obj +47 +endobj + +%% Contents for page 2 +65 0 obj +<< + /Length 66 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 1) Tj +ET +endstream +endobj + +66 0 obj +46 +endobj + +%% Contents for page 1 +67 0 obj +<< + /Length 68 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 0) Tj +ET +endstream +endobj + +68 0 obj +46 +endobj + +%% Contents for page 3 +69 0 obj +<< + /Length 70 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 2) Tj +ET +endstream +endobj + +70 0 obj +46 +endobj + +%% Contents for page 4 +71 0 obj +<< + /Length 72 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 3) Tj +ET +endstream +endobj + +72 0 obj +46 +endobj + +%% Contents for page 5 +73 0 obj +<< + /Length 74 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 4) Tj +ET +endstream +endobj + +74 0 obj +46 +endobj + +%% Contents for page 7 +75 0 obj +<< + /Length 76 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 6) Tj +ET +endstream +endobj + +76 0 obj +46 +endobj + +%% Contents for page 8 +77 0 obj +<< + /Length 78 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 7) Tj +ET +endstream +endobj + +78 0 obj +46 +endobj + +%% Contents for page 9 +79 0 obj +<< + /Length 80 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 8) Tj +ET +endstream +endobj + +80 0 obj +46 +endobj + +%% Contents for page 10 +81 0 obj +<< + /Length 82 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 9) Tj +ET +endstream +endobj + +82 0 obj +46 +endobj + +%% Contents for page 11 +83 0 obj +<< + /Length 84 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 10) Tj +ET +endstream +endobj + +84 0 obj +47 +endobj + +%% Contents for page 15 +85 0 obj +<< + /Length 86 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 14) Tj +ET +endstream +endobj + +86 0 obj +47 +endobj + +%% Contents for page 17 +87 0 obj +<< + /Length 88 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 16) Tj +ET +endstream +endobj + +88 0 obj +47 +endobj + +%% Contents for page 18 +89 0 obj +<< + /Length 90 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 17) Tj +ET +endstream +endobj + +90 0 obj +47 +endobj + +%% Contents for page 21 +91 0 obj +<< + /Length 92 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 20) Tj +ET +endstream +endobj + +92 0 obj +47 +endobj + +%% Contents for page 22 +93 0 obj +<< + /Length 94 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 21) Tj +ET +endstream +endobj + +94 0 obj +47 +endobj + +%% Contents for page 24 +95 0 obj +<< + /Length 96 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 23) Tj +ET +endstream +endobj + +96 0 obj +47 +endobj + +%% Contents for page 25 +97 0 obj +<< + /Length 98 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 24) Tj +ET +endstream +endobj + +98 0 obj +47 +endobj + +%% Contents for page 26 +99 0 obj +<< + /Length 100 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 25) Tj +ET +endstream +endobj + +100 0 obj +47 +endobj + +%% Contents for page 27 +101 0 obj +<< + /Length 102 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 26) Tj +ET +endstream +endobj + +102 0 obj +47 +endobj + +%% Contents for page 28 +103 0 obj +<< + /Length 104 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 27) Tj +ET +endstream +endobj + +104 0 obj +47 +endobj + +%% Contents for page 29 +105 0 obj +<< + /Length 106 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 28) Tj +ET +endstream +endobj + +106 0 obj +47 +endobj + +%% Contents for page 30 +107 0 obj +<< + /Length 108 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 29) Tj +ET +endstream +endobj + +108 0 obj +47 +endobj + +109 0 obj +<< + /Type /XRef + /Length 440 + /W [ 1 2 1 ] + /Root 1 0 R + /Size 110 + /ID [<31415926535897932384626433832795><31415926535897932384626433832795>] +>> +stream +  +   Sç·‡W'÷Ç—f5Ó¢q@߯Oï ¿!"_#/#ÿ$Ð%¡&r'O'¶'Ê(A(}(å))y)¥* *9*¡*Í+5+a+É+õ,],ˆ,ï---¬..>.¥.Ð/7/b/É/ô0[0†0í11€1¬22@2¨2Ô3<3h3Ð3ü4d44ø5$5Œ5¸6 6L6µ6â7L7y7ã88z8§99& +endstream +endobj + +startxref +14630 +%%EOF diff --git a/qpdf/qtest/qpdf/c-no-recovery.out b/qpdf/qtest/qpdf/c-no-recovery.out new file mode 100644 index 0000000..2db03a7 --- /dev/null +++ b/qpdf/qtest/qpdf/c-no-recovery.out @@ -0,0 +1,5 @@ +error: bad33.pdf (file position 1771): xref not found + code: 5 + file: bad33.pdf + pos : 1771 + text: xref not found diff --git a/qpdf/qtest/qpdf/c-normalized-content.pdf b/qpdf/qtest/qpdf/c-normalized-content.pdf new file mode 100644 index 0000000000000000000000000000000000000000..77e22068316ec18c8e3025cbe151890c593cd2fe GIT binary patch literal 8917 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 +endobj + +2 0 obj +<< + /Type /ObjStm + /Length 3496 + /N 13 + /First 150 +>> +stream +3 0 +4 124 +5 383 +6 592 +7 814 +8 1165 +9 1408 +10 1679 +11 1911 +12 2143 +13 2361 +14 2600 +15 2831 +%% Object stream: object 3, index 0; original object ID: 95 +<< + /Count 6 + /First 4 0 R + /Last 5 0 R + /Type /Outlines +>> +%% Object stream: object 4, index 1; original object ID: 96 +<< + /Count 4 + /Dest [ + 17 0 R + /XYZ + null + null + null + ] + /First 6 0 R + /Last 7 0 R + /Next 5 0 R + /Parent 3 0 R + /Title (Isís 1 -> 5: /XYZ null null null) + /Type /Outline +>> +%% Object stream: object 5, index 2; original object ID: 97 +<< + /Dest [ + 18 0 R + /XYZ + 66 + 756 + 3 + ] + /Parent 3 0 R + /Prev 4 0 R + /Title (Trepak 2 -> 15: /XYZ 66 756 3) + /Type /Outline +>> +%% Object stream: object 6, index 3; original object ID: 98 +<< + /Count -3 + /Dest [ + 19 0 R + /Fit + ] + /First 8 0 R + /Last 9 0 R + /Next 7 0 R + /Parent 4 0 R + /Title (Amanda 1.1 -> 11: /Fit) + /Type /Outline +>> +%% Object stream: object 7, index 4; original object ID: 99 +<< + /Count 2 + /Dest [ + 20 0 R + /FitH + 792 + ] + /First 13 0 R + /Last 14 0 R + /Parent 4 0 R + /Prev 6 0 R + /Title + /Type /Outline +>> +%% Object stream: object 8, index 5; original object ID: 100 +<< + /Count -2 + /Dest [ + 21 0 R + /FitV + 100 + ] + /First 10 0 R + /Last 11 0 R + /Next 9 0 R + /Parent 6 0 R + /Title (Isosicle 1.1.1 -> 12: /FitV 100) + /Type /Outline +>> +%% Object stream: object 9, index 6; original object ID: 101 +<< + /Count 1 + /Dest [ + 21 0 R + /XYZ + null + null + null + ] + /First 12 0 R + /Last 12 0 R + /Parent 6 0 R + /Prev 8 0 R + /Title (Isosicle 1.1.2 -> 12: /XYZ null null null) + /Type /Outline +>> +%% Object stream: object 10, index 7; original object ID: 102 +<< + /Dest [ + 22 0 R + /XYZ + null + null + null + ] + /Next 11 0 R + /Parent 8 0 R + /Title (Isosicle 1.1.1.1 -> 18: /XYZ null null null) + /Type /Outline +>> +%% Object stream: object 11, index 8; original object ID: 103 +<< + /Dest [ + 23 0 R + /XYZ + null + null + null + ] + /Parent 8 0 R + /Prev 10 0 R + /Title (Isosicle 1.1.1.2 -> 19: /XYZ null null null) + /Type /Outline +>> +%% Object stream: object 12, index 9; original object ID: 104 +<< + /Dest [ + 24 0 R + /XYZ + null + null + null + ] + /Parent 9 0 R + /Title (Isosicle 1.1.2.1 -> 22: /XYZ null null null) + /Type /Outline +>> +%% Object stream: object 13, index 10; original object ID: 105 +<< + /Dest [ + 25 0 R + /FitR + 66 + 714 + 180 + 770 + ] + /Next 14 0 R + /Parent 7 0 R + /Title (Trepsichord 1.2.1 -> 1: /FitR 66 714 180 770) + /Type /Outline +>> +%% Object stream: object 14, index 11; original object ID: 106 +<< + /Dest [ + 26 0 R + /XYZ + null + null + null + ] + /Parent 7 0 R + /Prev 13 0 R + /Title (Trepsicle 1.2.2 -> 0: /XYZ null null null) + /Type /Outline +>> +%% Object stream: object 15, index 12; original object ID: 107 +<< + /Nums [ + 0 + << + /P () + >> + 2 + << + /S /r + /St 1 + >> + 7 + << + /P () + >> + 9 + << + /S /r + /St 6 + >> + 11 + << + /P () + >> + 12 + << + /S /D + /St 2 + >> + 15 + << + /S /D + /St 6 + >> + 19 + << + /P () + >> + 20 + << + /S /D + /St 12 + >> + 22 + << + /S /D + /St 16059 + >> + 23 + << + /S /r + /St 50 + >> + 29 + << + /S /r + /St 54 + >> + ] +>> +endstream +endobj + +%% Original object ID: 2 0 +16 0 obj +<< + /Count 30 + /Kids [ + 26 0 R + 25 0 R + 27 0 R + 28 0 R + 29 0 R + 17 0 R + 30 0 R + 31 0 R + 32 0 R + 33 0 R + 34 0 R + 19 0 R + 21 0 R + 20 0 R + 35 0 R + 18 0 R + 36 0 R + 37 0 R + 22 0 R + 23 0 R + 38 0 R + 39 0 R + 24 0 R + 40 0 R + 41 0 R + 42 0 R + 43 0 R + 44 0 R + 45 0 R + 46 0 R + ] + /Type /Pages +>> +endobj + +%% Page 6 +%% Original object ID: 8 0 +17 0 obj +<< + /Contents 47 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 16 +%% Original object ID: 18 0 +18 0 obj +<< + /Contents 51 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 12 +%% Original object ID: 14 0 +19 0 obj +<< + /Contents 53 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 14 +%% Original object ID: 16 0 +20 0 obj +<< + /Contents 55 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 13 +%% Original object ID: 15 0 +21 0 obj +<< + /Contents 57 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 19 +%% Original object ID: 21 0 +22 0 obj +<< + /Contents 59 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 20 +%% Original object ID: 22 0 +23 0 obj +<< + /Contents 61 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 23 +%% Original object ID: 25 0 +24 0 obj +<< + /Contents 63 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 2 +%% Original object ID: 4 0 +25 0 obj +<< + /Contents 65 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 1 +%% Original object ID: 3 0 +26 0 obj +<< + /Contents 67 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 3 +%% Original object ID: 5 0 +27 0 obj +<< + /Contents 69 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 4 +%% Original object ID: 6 0 +28 0 obj +<< + /Contents 71 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 5 +%% Original object ID: 7 0 +29 0 obj +<< + /Contents 73 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 7 +%% Original object ID: 9 0 +30 0 obj +<< + /Contents 75 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 8 +%% Original object ID: 10 0 +31 0 obj +<< + /Contents 77 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 9 +%% Original object ID: 11 0 +32 0 obj +<< + /Contents 79 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 10 +%% Original object ID: 12 0 +33 0 obj +<< + /Contents 81 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 11 +%% Original object ID: 13 0 +34 0 obj +<< + /Contents 83 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 15 +%% Original object ID: 17 0 +35 0 obj +<< + /Contents 85 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 17 +%% Original object ID: 19 0 +36 0 obj +<< + /Contents 87 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 18 +%% Original object ID: 20 0 +37 0 obj +<< + /Contents 89 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 21 +%% Original object ID: 23 0 +38 0 obj +<< + /Contents 91 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 22 +%% Original object ID: 24 0 +39 0 obj +<< + /Contents 93 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 24 +%% Original object ID: 26 0 +40 0 obj +<< + /Contents 95 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 25 +%% Original object ID: 27 0 +41 0 obj +<< + /Contents 97 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 26 +%% Original object ID: 28 0 +42 0 obj +<< + /Contents 99 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 27 +%% Original object ID: 29 0 +43 0 obj +<< + /Contents 101 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 28 +%% Original object ID: 30 0 +44 0 obj +<< + /Contents 103 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 29 +%% Original object ID: 31 0 +45 0 obj +<< + /Contents 105 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Page 30 +%% Original object ID: 32 0 +46 0 obj +<< + /Contents 107 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 16 0 R + /Resources << + /Font << + /F1 49 0 R + >> + /ProcSet 50 0 R + >> + /Type /Page +>> +endobj + +%% Contents for page 6 +%% Original object ID: 45 0 +47 0 obj +<< + /Length 48 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 5) Tj +ET +endstream +endobj + +48 0 obj +46 +endobj + +%% Original object ID: 35 0 +49 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +%% Original object ID: 36 0 +50 0 obj +[ + /PDF + /Text +] +endobj + +%% Contents for page 16 +%% Original object ID: 65 0 +51 0 obj +<< + /Length 52 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 15) Tj +ET +endstream +endobj + +52 0 obj +47 +endobj + +%% Contents for page 12 +%% Original object ID: 57 0 +53 0 obj +<< + /Length 54 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 11) Tj +ET +endstream +endobj + +54 0 obj +47 +endobj + +%% Contents for page 14 +%% Original object ID: 61 0 +55 0 obj +<< + /Length 56 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 13) Tj +ET +endstream +endobj + +56 0 obj +47 +endobj + +%% Contents for page 13 +%% Original object ID: 59 0 +57 0 obj +<< + /Length 58 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 12) Tj +ET +endstream +endobj + +58 0 obj +47 +endobj + +%% Contents for page 19 +%% Original object ID: 71 0 +59 0 obj +<< + /Length 60 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 18) Tj +ET +endstream +endobj + +60 0 obj +47 +endobj + +%% Contents for page 20 +%% Original object ID: 73 0 +61 0 obj +<< + /Length 62 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 19) Tj +ET +endstream +endobj + +62 0 obj +47 +endobj + +%% Contents for page 23 +%% Original object ID: 79 0 +63 0 obj +<< + /Length 64 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 22) Tj +ET +endstream +endobj + +64 0 obj +47 +endobj + +%% Contents for page 2 +%% Original object ID: 37 0 +65 0 obj +<< + /Length 66 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 1) Tj +ET +endstream +endobj + +66 0 obj +46 +endobj + +%% Contents for page 1 +%% Original object ID: 33 0 +67 0 obj +<< + /Length 68 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 0) Tj +ET +endstream +endobj + +68 0 obj +46 +endobj + +%% Contents for page 3 +%% Original object ID: 39 0 +69 0 obj +<< + /Length 70 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 2) Tj +ET +endstream +endobj + +70 0 obj +46 +endobj + +%% Contents for page 4 +%% Original object ID: 41 0 +71 0 obj +<< + /Length 72 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 3) Tj +ET +endstream +endobj + +72 0 obj +46 +endobj + +%% Contents for page 5 +%% Original object ID: 43 0 +73 0 obj +<< + /Length 74 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 4) Tj +ET +endstream +endobj + +74 0 obj +46 +endobj + +%% Contents for page 7 +%% Original object ID: 47 0 +75 0 obj +<< + /Length 76 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 6) Tj +ET +endstream +endobj + +76 0 obj +46 +endobj + +%% Contents for page 8 +%% Original object ID: 49 0 +77 0 obj +<< + /Length 78 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 7) Tj +ET +endstream +endobj + +78 0 obj +46 +endobj + +%% Contents for page 9 +%% Original object ID: 51 0 +79 0 obj +<< + /Length 80 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 8) Tj +ET +endstream +endobj + +80 0 obj +46 +endobj + +%% Contents for page 10 +%% Original object ID: 53 0 +81 0 obj +<< + /Length 82 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 9) Tj +ET +endstream +endobj + +82 0 obj +46 +endobj + +%% Contents for page 11 +%% Original object ID: 55 0 +83 0 obj +<< + /Length 84 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 10) Tj +ET +endstream +endobj + +84 0 obj +47 +endobj + +%% Contents for page 15 +%% Original object ID: 63 0 +85 0 obj +<< + /Length 86 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 14) Tj +ET +endstream +endobj + +86 0 obj +47 +endobj + +%% Contents for page 17 +%% Original object ID: 67 0 +87 0 obj +<< + /Length 88 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 16) Tj +ET +endstream +endobj + +88 0 obj +47 +endobj + +%% Contents for page 18 +%% Original object ID: 69 0 +89 0 obj +<< + /Length 90 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 17) Tj +ET +endstream +endobj + +90 0 obj +47 +endobj + +%% Contents for page 21 +%% Original object ID: 75 0 +91 0 obj +<< + /Length 92 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 20) Tj +ET +endstream +endobj + +92 0 obj +47 +endobj + +%% Contents for page 22 +%% Original object ID: 77 0 +93 0 obj +<< + /Length 94 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 21) Tj +ET +endstream +endobj + +94 0 obj +47 +endobj + +%% Contents for page 24 +%% Original object ID: 81 0 +95 0 obj +<< + /Length 96 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 23) Tj +ET +endstream +endobj + +96 0 obj +47 +endobj + +%% Contents for page 25 +%% Original object ID: 83 0 +97 0 obj +<< + /Length 98 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 24) Tj +ET +endstream +endobj + +98 0 obj +47 +endobj + +%% Contents for page 26 +%% Original object ID: 85 0 +99 0 obj +<< + /Length 100 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 25) Tj +ET +endstream +endobj + +100 0 obj +47 +endobj + +%% Contents for page 27 +%% Original object ID: 87 0 +101 0 obj +<< + /Length 102 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 26) Tj +ET +endstream +endobj + +102 0 obj +47 +endobj + +%% Contents for page 28 +%% Original object ID: 89 0 +103 0 obj +<< + /Length 104 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 27) Tj +ET +endstream +endobj + +104 0 obj +47 +endobj + +%% Contents for page 29 +%% Original object ID: 91 0 +105 0 obj +<< + /Length 106 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 28) Tj +ET +endstream +endobj + +106 0 obj +47 +endobj + +%% Contents for page 30 +%% Original object ID: 93 0 +107 0 obj +<< + /Length 108 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 29) Tj +ET +endstream +endobj + +108 0 obj +47 +endobj + +109 0 obj +<< + /Type /XRef + /Length 440 + /W [ 1 2 1 ] + /Root 1 0 R + /Size 110 + /ID [<31415926535897932384626433832795><31415926535897932384626433832795>] +>> +stream +4«  +  ÉxdP<(ìÖÀª”~hS>* !!î"Ú#Æ$²%ž&Š'v(b)O*<+),",‰,¹-L-¤. .T.¼//l/´00d0Ì11|1Ä2,2s2Ú3!3ˆ3Ï464}4ä5+5’5Ù6@6‡6î757œ7ä8K8“8û9C9«9ó:[:£; ;S;»<>|>Å?/?x?â@+@•@ÞAHA] +endstream +endobj + +startxref +16733 +%%EOF diff --git a/qpdf/qtest/qpdf/c-r2.pdf b/qpdf/qtest/qpdf/c-r2.pdf new file mode 100644 index 0000000000000000000000000000000000000000..0301696cfa65e5d80d25704419ce69d1c121431e GIT binary patch literal 9893 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 literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/c-read-errors.out b/qpdf/qtest/qpdf/c-read-errors.out new file mode 100644 index 0000000..4959433 --- /dev/null +++ b/qpdf/qtest/qpdf/c-read-errors.out @@ -0,0 +1,5 @@ +error: bad1.pdf: not a PDF file + code: 5 + file: bad1.pdf + pos : 0 + text: not a PDF file diff --git a/qpdf/qtest/qpdf/c-read-warnings-and-errors.out b/qpdf/qtest/qpdf/c-read-warnings-and-errors.out new file mode 100644 index 0000000..117663e --- /dev/null +++ b/qpdf/qtest/qpdf/c-read-warnings-and-errors.out @@ -0,0 +1,20 @@ +warning: bad17.pdf: file is damaged + code: 5 + file: bad17.pdf + pos : 0 + text: file is damaged +warning: bad17.pdf (trailer, file position 753): dictionary ending here has an odd number of elements + code: 5 + file: bad17.pdf + pos : 753 + text: dictionary ending here has an odd number of elements +warning: bad17.pdf: Attempting to reconstruct cross-reference table + code: 5 + file: bad17.pdf + pos : 0 + text: Attempting to reconstruct cross-reference table +error: bad17.pdf (trailer, file position 753): dictionary ending here has an odd number of elements + code: 5 + file: bad17.pdf + pos : 753 + text: dictionary ending here has an odd number of elements diff --git a/qpdf/qtest/qpdf/c-uncompressed-streams.pdf b/qpdf/qtest/qpdf/c-uncompressed-streams.pdf new file mode 100644 index 0000000..28b3aa0 --- /dev/null +++ b/qpdf/qtest/qpdf/c-uncompressed-streams.pdf @@ -0,0 +1,434 @@ +%PDF-1.5 +%¿÷¢þ +1 0 obj +<< /Outlines 3 0 R /PageLabels 15 0 R /PageMode /UseOutlines /Pages 16 0 R /Type /Catalog >> +endobj +2 0 obj +<< /Type /ObjStm /Length 2064 /N 13 /First 87 >> +stream +3 0 4 56 5 217 6 334 7 470 8 730 9 882 10 1053 11 1191 12 1329 13 1454 14 1594 15 1730 +<< /Count 6 /First 4 0 R /Last 5 0 R /Type /Outlines >> +<< /Count 4 /Dest [ 17 0 R /XYZ null null null ] /First 6 0 R /Last 7 0 R /Next 5 0 R /Parent 3 0 R /Title (Isís 1 -> 5: /XYZ null null null) /Type /Outline >> +<< /Dest [ 18 0 R /XYZ 66 756 3 ] /Parent 3 0 R /Prev 4 0 R /Title (Trepak 2 -> 15: /XYZ 66 756 3) /Type /Outline >> +<< /Count -3 /Dest [ 19 0 R /Fit ] /First 8 0 R /Last 9 0 R /Next 7 0 R /Parent 4 0 R /Title (Amanda 1.1 -> 11: /Fit) /Type /Outline >> +<< /Count 2 /Dest [ 20 0 R /FitH 792 ] /First 13 0 R /Last 14 0 R /Parent 4 0 R /Prev 6 0 R /Title /Type /Outline >> +<< /Count -2 /Dest [ 21 0 R /FitV 100 ] /First 10 0 R /Last 11 0 R /Next 9 0 R /Parent 6 0 R /Title (Isosicle 1.1.1 -> 12: /FitV 100) /Type /Outline >> +<< /Count 1 /Dest [ 21 0 R /XYZ null null null ] /First 12 0 R /Last 12 0 R /Parent 6 0 R /Prev 8 0 R /Title (Isosicle 1.1.2 -> 12: /XYZ null null null) /Type /Outline >> +<< /Dest [ 22 0 R /XYZ null null null ] /Next 11 0 R /Parent 8 0 R /Title (Isosicle 1.1.1.1 -> 18: /XYZ null null null) /Type /Outline >> +<< /Dest [ 23 0 R /XYZ null null null ] /Parent 8 0 R /Prev 10 0 R /Title (Isosicle 1.1.1.2 -> 19: /XYZ null null null) /Type /Outline >> +<< /Dest [ 24 0 R /XYZ null null null ] /Parent 9 0 R /Title (Isosicle 1.1.2.1 -> 22: /XYZ null null null) /Type /Outline >> +<< /Dest [ 25 0 R /FitR 66 714 180 770 ] /Next 14 0 R /Parent 7 0 R /Title (Trepsichord 1.2.1 -> 1: /FitR 66 714 180 770) /Type /Outline >> +<< /Dest [ 26 0 R /XYZ null null null ] /Parent 7 0 R /Prev 13 0 R /Title (Trepsicle 1.2.2 -> 0: /XYZ null null null) /Type /Outline >> +<< /Nums [ 0 << /P () >> 2 << /S /r /St 1 >> 7 << /P () >> 9 << /S /r /St 6 >> 11 << /P () >> 12 << /S /D /St 2 >> 15 << /S /D /St 6 >> 19 << /P () >> 20 << /S /D /St 12 >> 22 << /S /D /St 16059 >> 23 << /S /r /St 50 >> 29 << /S /r /St 54 >> ] >> +endstream +endobj +16 0 obj +<< /Count 30 /Kids [ 26 0 R 25 0 R 27 0 R 28 0 R 29 0 R 17 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 19 0 R 21 0 R 20 0 R 35 0 R 18 0 R 36 0 R 37 0 R 22 0 R 23 0 R 38 0 R 39 0 R 24 0 R 40 0 R 41 0 R 42 0 R 43 0 R 44 0 R 45 0 R 46 0 R ] /Type /Pages >> +endobj +17 0 obj +<< /Contents 47 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +18 0 obj +<< /Contents 50 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +19 0 obj +<< /Contents 51 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +20 0 obj +<< /Contents 52 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +21 0 obj +<< /Contents 53 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +22 0 obj +<< /Contents 54 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +23 0 obj +<< /Contents 55 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +24 0 obj +<< /Contents 56 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +25 0 obj +<< /Contents 57 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +26 0 obj +<< /Contents 58 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +27 0 obj +<< /Contents 59 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +28 0 obj +<< /Contents 60 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +29 0 obj +<< /Contents 61 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +30 0 obj +<< /Contents 62 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +31 0 obj +<< /Contents 63 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +32 0 obj +<< /Contents 64 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +33 0 obj +<< /Contents 65 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +34 0 obj +<< /Contents 66 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +35 0 obj +<< /Contents 67 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +36 0 obj +<< /Contents 68 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +37 0 obj +<< /Contents 69 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +38 0 obj +<< /Contents 70 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +39 0 obj +<< /Contents 71 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +40 0 obj +<< /Contents 72 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +41 0 obj +<< /Contents 73 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +42 0 obj +<< /Contents 74 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +43 0 obj +<< /Contents 75 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +44 0 obj +<< /Contents 76 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +45 0 obj +<< /Contents 77 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +46 0 obj +<< /Contents 78 0 R /MediaBox [ 0 0 612 792 ] /Parent 16 0 R /Resources << /Font << /F1 48 0 R >> /ProcSet 49 0 R >> /Type /Page >> +endobj +47 0 obj +<< /Length 46 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 5) Tj +ET +endstream +endobj +48 0 obj +<< /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> +endobj +49 0 obj +[ /PDF /Text ] +endobj +50 0 obj +<< /Length 47 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 15) Tj +ET +endstream +endobj +51 0 obj +<< /Length 47 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 11) Tj +ET +endstream +endobj +52 0 obj +<< /Length 47 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 13) Tj +ET +endstream +endobj +53 0 obj +<< /Length 47 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 12) Tj +ET +endstream +endobj +54 0 obj +<< /Length 47 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 18) Tj +ET +endstream +endobj +55 0 obj +<< /Length 47 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 19) Tj +ET +endstream +endobj +56 0 obj +<< /Length 47 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 22) Tj +ET +endstream +endobj +57 0 obj +<< /Length 46 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 1) Tj +ET +endstream +endobj +58 0 obj +<< /Length 46 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 0) Tj +ET +endstream +endobj +59 0 obj +<< /Length 46 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 2) Tj +ET +endstream +endobj +60 0 obj +<< /Length 46 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 3) Tj +ET +endstream +endobj +61 0 obj +<< /Length 46 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 4) Tj +ET +endstream +endobj +62 0 obj +<< /Length 46 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 6) Tj +ET +endstream +endobj +63 0 obj +<< /Length 46 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 7) Tj +ET +endstream +endobj +64 0 obj +<< /Length 46 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 8) Tj +ET +endstream +endobj +65 0 obj +<< /Length 46 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 9) Tj +ET +endstream +endobj +66 0 obj +<< /Length 47 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 10) Tj +ET +endstream +endobj +67 0 obj +<< /Length 47 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 14) Tj +ET +endstream +endobj +68 0 obj +<< /Length 47 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 16) Tj +ET +endstream +endobj +69 0 obj +<< /Length 47 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 17) Tj +ET +endstream +endobj +70 0 obj +<< /Length 47 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 20) Tj +ET +endstream +endobj +71 0 obj +<< /Length 47 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 21) Tj +ET +endstream +endobj +72 0 obj +<< /Length 47 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 23) Tj +ET +endstream +endobj +73 0 obj +<< /Length 47 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 24) Tj +ET +endstream +endobj +74 0 obj +<< /Length 47 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 25) Tj +ET +endstream +endobj +75 0 obj +<< /Length 47 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 26) Tj +ET +endstream +endobj +76 0 obj +<< /Length 47 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 27) Tj +ET +endstream +endobj +77 0 obj +<< /Length 47 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 28) Tj +ET +endstream +endobj +78 0 obj +<< /Length 47 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 29) Tj +ET +endstream +endobj +79 0 obj +<< /Type /XRef /Length 320 /W [ 1 2 1 ] /Root 1 0 R /Size 80 /ID [<31415926535897932384626433832795><31415926535897932384626433832795>] >> +stream +{  +  Ü å +y  ¡ 5 É ] ñ…­AÕiý‘%¹Máu 1ÅY큩= (‰êK¬ nÏ/ï O ¯!!o!Ï"/""ñ#R#³$$u$Ö%7%˜%ù&Z&»' +endstream +endobj +startxref +10012 +%%EOF diff --git a/qpdf/qtest/qpdf/c-write-damaged.out b/qpdf/qtest/qpdf/c-write-damaged.out new file mode 100644 index 0000000..16c4390 --- /dev/null +++ b/qpdf/qtest/qpdf/c-write-damaged.out @@ -0,0 +1,15 @@ +warning: append-page-content-damaged.pdf: file is damaged + code: 5 + file: append-page-content-damaged.pdf + pos : 0 + text: file is damaged +warning: append-page-content-damaged.pdf: can't find startxref + code: 5 + file: append-page-content-damaged.pdf + pos : 0 + text: can't find startxref +warning: append-page-content-damaged.pdf: Attempting to reconstruct cross-reference table + code: 5 + file: append-page-content-damaged.pdf + pos : 0 + text: Attempting to reconstruct cross-reference table diff --git a/qpdf/qtest/qpdf/c-write-errors.out b/qpdf/qtest/qpdf/c-write-errors.out new file mode 100644 index 0000000..211cfdf --- /dev/null +++ b/qpdf/qtest/qpdf/c-write-errors.out @@ -0,0 +1,5 @@ +error: bad30.pdf (file position 629): stream filter type is not name or array + code: 5 + file: bad30.pdf + pos : 629 + text: stream filter type is not name or array diff --git a/qpdf/qtest/qpdf/c-write-warnings-and-errors.out b/qpdf/qtest/qpdf/c-write-warnings-and-errors.out new file mode 100644 index 0000000..d486d59 --- /dev/null +++ b/qpdf/qtest/qpdf/c-write-warnings-and-errors.out @@ -0,0 +1,20 @@ +warning: bad33.pdf: file is damaged + code: 5 + file: bad33.pdf + pos : 0 + text: file is damaged +warning: bad33.pdf (file position 1771): xref not found + code: 5 + file: bad33.pdf + pos : 1771 + text: xref not found +warning: bad33.pdf: Attempting to reconstruct cross-reference table + code: 5 + file: bad33.pdf + pos : 0 + text: Attempting to reconstruct cross-reference table +error: bad33.pdf (file position 629): stream filter type is not name or array + code: 5 + file: bad33.pdf + pos : 629 + text: stream filter type is not name or array diff --git a/qpdf/qtest/qpdf/check-ID.pl b/qpdf/qtest/qpdf/check-ID.pl new file mode 100644 index 0000000..963b48f --- /dev/null +++ b/qpdf/qtest/qpdf/check-ID.pl @@ -0,0 +1,20 @@ +use strict; +$^W=1; + +my $okay = 0; +my $id = '31415926535897932384626433832795'; +while (<>) +{ + if ((m,/ID ?\[<([[:xdigit:]]{32})><$id>\],) && ($1 ne $id)) + { + $okay = 1; + } +} +if ($okay) +{ + print "ID okay\n"; +} +else +{ + print "ID bad\n"; +} diff --git a/qpdf/qtest/qpdf/compressed-metadata.pdf b/qpdf/qtest/qpdf/compressed-metadata.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1d93bb386ead9546f00f546880dc82c528ee3b34 GIT binary patch literal 14007 zcmd5@4U8366|OC9*GY}37NH<=(b7WO?VCIQg9wFPo@~p)vb!ymE$HmNS^D7d9)0gE z%M$wQ-$=wSL}~2GG{JXuz+a%uO5;qlT1&Q zP}XKgdbrUZ7VAN2qzkQEY3Ein-p33s6pi9SVXf|6fC2ZS4;W&YV&<^v;nzld>;-(*N3@U)ytj z+Xd&|kKFjLuOEGK=g4s16?Z&fpPrUodS+H>THKxvclf6;Dqqx<4c@pFcQv+Y?(Cf9?yz ze|?~D=b1O=?s#YWQwv-27k)8tcKG41*n7{-Jo4h}J7CUb2<7avH5ANFTWP3RB^C>Q zxxzm1<+jX&&$jq1W~`oIqm#^XENVtqN#^!^jx9xpU+nUqR29G20`DfU5cn^#vZ+|m zR3t1F{;6qVMHg0dVMP~K zbYVpoR&-%yZIHTb*;PVIiS>#`!GI<2L;U&(BsFuES$)?UQXDE2LO;Nsh`27`Wq8PS z0W!1P-&&7-iUhVyZ@yZ9W!h26SAfx47Z7t^l6_dOk$DRNX5$F}OPn%_9H(Uw z+q8gp0b$g2SJ~eZB#4C3TlP158-Zy72n~<~7RJE9#vEX1D;29SK%jOpHJP?@Y4hUJ zR?g=tu^?Y;S7UHG{aoHl{6+#56PM}sE2W|G08A4r2U)N$K2TzaY3KA=E)Def5Lb}` ztf{+HWgG}eEMmu|IutlIHyE^>;Ya~!sTa5L4O9bV~D-nS`?aA zM<(TbW@2fe^GbNK)(Ci#!lQ_|A{_|m5?&9W+Xm=_Canu}-1Ha_x%3=BOnM9zJg0(< z_~;XRjwqe6Ck#mimP)el^iK;O{nYBVb_K-9lH(-YZL1Fm9XoNDIdhH!|K?Cy8d0*byk^y zU56#E33dIOuw1GS z3%d?K5*gFA-XO6W;bGTor33pOH=Q-?J3Q{%t;%iK_qh42Vc%gwt92;1W8dQ@w1$0$ z8Lif>z~PP9(E@mKJkAo*uq+1it7*KZMR@J*1a5&dE#u_1#x@97p3L9)Q10FzJ-qo{ zlcru$^Ao7WY8tI+5n3xIP>a;G>z7@2(8_pKrLLOXbP* z8m%3UEbo0v527_L2?XO7M*~|!dv&SYz+U}MLRB>+B}j=t?A4_NC=RhnT|sW#W1IDk zN~w|`fCFuyCP+O&6FYY9V2mBR9VS766n4GAc{T}jtaEp^l>7u_`9};T*B1hrq<-=) z1X+j-3^H~#7WgoWO3b4QO*dgD=-^-^oWLbEq#`IbB9>7RBv5HWXYnAI_ms*xCV$9q zifG17j)g7EvJ#t&4jvrK*Wp<5Dq>@q49avgfgQx9J4S32lFh`E*Y4JnM_8B za;(V=GSF!lT9}~&Xwq*ov=|x@GdY-~JPYJ3w_#{u0+-O_5!i&34NWIsU!yY^S*S9% zw1)G3YuO)EAg5hLt^XsIX@a~xNa}6uEHL{=iuE>~t=3qZVMCI|+8hV>bK!t}tRK~w z>=?b4>MpvLnk-haem1-z5N~tffNHEwQ!zeGWBa41JR@V*WLr)l+ZnMMLv1=U{`7l%)`7ksS`7jJ7tVZn_7CQbi)-;C6}C>&Uh6 zjt$$(#o9C{?t`iZ;vA})>``XyS_`c~3h5k=GgV!bSCp!V>nNq{FkI9J)lrT^H+G0P z*3Yugc&USUmr@sT3DqcjkRRBqmc4ud-V0)f`8$e(C3xL{-&}N;O6;vJ{<$Z=-G{mY z9ok9Xe9Ow|mZz(pYy0XTwFY(9HO&EF9_p(DnzvxSYCx(vy6*PV9EJDDH0pWkVE=$` g=lX%P=mPeR6})-mm8-mHLB+6jW%lePE3(S}0DnM<@&Et; literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/copied-encryption.out b/qpdf/qtest/qpdf/copied-encryption.out new file mode 100644 index 0000000..cbec230 --- /dev/null +++ b/qpdf/qtest/qpdf/copied-encryption.out @@ -0,0 +1,15 @@ +R = 4 +P = -20 +User password = user +extract for accessibility: allowed +extract for any purpose: not allowed +print low resolution: allowed +print high resolution: allowed +modify document assembly: allowed +modify forms: allowed +modify annotations: allowed +modify other: allowed +modify anything: allowed +stream encryption method: AESv2 +string encryption method: AESv2 +file encryption method: AESv2 diff --git a/qpdf/qtest/qpdf/copy-foreign-objects-errors.out b/qpdf/qtest/qpdf/copy-foreign-objects-errors.out new file mode 100644 index 0000000..2660a96 --- /dev/null +++ b/qpdf/qtest/qpdf/copy-foreign-objects-errors.out @@ -0,0 +1,3 @@ +logic error: QPDF::copyForeign called with object from this QPDF +logic error: QPDF::copyForeign called with direct object handle +test 28 done diff --git a/qpdf/qtest/qpdf/copy-foreign-objects-in.pdf b/qpdf/qtest/qpdf/copy-foreign-objects-in.pdf new file mode 100644 index 0000000..caa4d8f --- /dev/null +++ b/qpdf/qtest/qpdf/copy-foreign-objects-in.pdf @@ -0,0 +1,335 @@ +%PDF-1.3 +%¿÷¢þ +%QDF-1.0 + +% This test file is specifically crafted for testing copyForeignObject +% and also for testing addPage when called with a page from another +% file. + +% The /QTest key in trailer has pointers to several indirect objects: +% O1, O2, O3 where O1 is an array that contains a dictionary that has +% a key that points to O2, O2 is a dictionary that contains an array +% that points to O1, and O3 is a page object that inherits some +% resource from its parent /Pages and also points to some other page. +% O1 also points to a stream whose dictionary has a key that points to +% another stream whose dictionary points back to the first stream. + +1 0 obj +<< + /Pages 2 0 R + /Type /Catalog +>> +endobj + +2 0 obj +<< + /Count 5 + /Kids [ + 3 0 R + 4 0 R + 5 0 R + 6 0 R + 7 0 R + ] + /Rotate 180 + /Type /Pages +>> +endobj + +%% Page 1 +3 0 obj +<< + /Contents 8 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 10 0 R + >> + /ProcSet [ + /PDF + /Text + ] + >> + /Type /Page +>> +endobj + +%% Page 2 +4 0 obj +<< + /Contents 11 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 10 0 R + >> + /ProcSet [ + /PDF + /Text + ] + >> + /Type /Page +>> +endobj + +%% Page 3, object O3 +5 0 obj +<< + /This-is-O3 true + /Contents 13 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 10 0 R + >> + /ProcSet [ + /PDF + /Text + ] + >> + /OtherPage 6 0 R + /Type /Page +>> +endobj + +%% Page 4 +6 0 obj +<< + /This-is-O3-other-page true + /Contents 15 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 10 0 R + >> + /ProcSet [ + /PDF + /Text + ] + >> + /Type /Page +>> +endobj + +%% Page 5 +7 0 obj +<< + /Contents 17 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 10 0 R + >> + /ProcSet [ + /PDF + /Text + ] + >> + /Type /Page +>> +endobj + +%% Contents for page 1 +8 0 obj +<< + /Length 9 0 R +>> +stream +BT /F1 15 Tf 72 720 Td (Original page 0) Tj ET +endstream +endobj + +9 0 obj +47 +endobj + +10 0 obj +<< + /BaseFont /Times-Roman + /Encoding /WinAnsiEncoding + /Subtype /Type1 + /Type /Font +>> +endobj + +%% Contents for page 2 +11 0 obj +<< + /Length 12 0 R +>> +stream +BT /F1 15 Tf 72 720 Td (Original page 1) Tj ET +endstream +endobj + +12 0 obj +47 +endobj + +%% Contents for page 3 +13 0 obj +<< + /Length 14 0 R +>> +stream +BT /F1 15 Tf 72 720 Td (Original page 2) Tj ET +endstream +endobj + +14 0 obj +47 +endobj + +%% Contents for page 4 +15 0 obj +<< + /Length 16 0 R +>> +stream +BT /F1 15 Tf 72 720 Td (Original page 3) Tj ET +endstream +endobj + +16 0 obj +47 +endobj + +%% Contents for page 5 +17 0 obj +<< + /Length 18 0 R +>> +stream +BT /F1 15 Tf 72 720 Td (Original page 4) Tj ET +endstream +endobj + +18 0 obj +47 +endobj + +% O1 +19 0 obj +[ + /This-is-O1 + /potato + << /O2 [3.14159 << /O2 20 0 R >> 2.17828 ] >> + /salad + /O2 20 0 R + /Stream1 21 0 R +] +endobj + +% O2 +20 0 obj +<< + /This-is-O2 true + /K1 [2.236 /O1 19 0 R 1.732] + /O1 19 0 R +>> +endobj + +% stream1 +21 0 obj +<< + /This-is-Stream1 true + /Length 22 0 R + /Stream2 23 0 R +>> +stream +This is stream 1. +endstream +endobj + +22 0 obj +18 +endobj + +% stream2 +23 0 obj +<< + /This-is-Stream2 true + /Length 24 0 R + /Stream1 21 0 R +>> +stream +This is stream 2. +endstream +endobj + +24 0 obj +18 +endobj + +% QTest +25 0 obj +<< /This-is-QTest true /O1 19 0 R /O2 20 0 R /O3 5 0 R >> +endobj + +xref +0 26 +0000000000 65535 f +0000000655 00000 n +0000000709 00000 n +0000000845 00000 n +0000001073 00000 n +0000001313 00000 n +0000001580 00000 n +0000001839 00000 n +0000002081 00000 n +0000002183 00000 n +0000002202 00000 n +0000002334 00000 n +0000002438 00000 n +0000002481 00000 n +0000002585 00000 n +0000002628 00000 n +0000002732 00000 n +0000002775 00000 n +0000002879 00000 n +0000002904 00000 n +0000003042 00000 n +0000003138 00000 n +0000003255 00000 n +0000003285 00000 n +0000003402 00000 n +0000003430 00000 n +trailer << + /Root 1 0 R + /Size 26 + /QTest 25 0 R + /ID [<9adb6b2fdb22e857340f7103917b16e4>] +>> +startxref +3505 +%%EOF diff --git a/qpdf/qtest/qpdf/copy-foreign-objects-out1.pdf b/qpdf/qtest/qpdf/copy-foreign-objects-out1.pdf new file mode 100644 index 0000000..49de3cd --- /dev/null +++ b/qpdf/qtest/qpdf/copy-foreign-objects-out1.pdf @@ -0,0 +1,66 @@ +%PDF-1.3 +%¿÷¢þ +1 0 obj +<< /Pages 3 0 R /Type /Catalog >> +endobj +2 0 obj +<< /O1 4 0 R /O2 5 0 R /This-is-QTest true >> +endobj +3 0 obj +<< /Count 1 /Kids [ 6 0 R ] /Type /Pages >> +endobj +4 0 obj +[ /This-is-O1 /potato << /O2 [ 3.14159 << /O2 5 0 R >> 2.17828 ] >> /salad /O2 5 0 R /Stream1 7 0 R ] +endobj +5 0 obj +<< /K1 [ 2.236 /O1 4 0 R 1.732 ] /O1 4 0 R /This-is-O2 true >> +endobj +6 0 obj +<< /Contents 8 0 R /MediaBox [ 0 0 612 792 ] /Parent 3 0 R /Resources << /Font << /F1 9 0 R >> /ProcSet 10 0 R >> /Type /Page >> +endobj +7 0 obj +<< /Stream2 11 0 R /This-is-Stream1 true /Length 18 >> +stream +This is stream 1. +endstream +endobj +8 0 obj +<< /Length 44 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj +9 0 obj +<< /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> +endobj +10 0 obj +[ /PDF /Text ] +endobj +11 0 obj +<< /Stream1 7 0 R /This-is-Stream2 true /Length 18 >> +stream +This is stream 2. +endstream +endobj +xref +0 12 +0000000000 65535 f +0000000015 00000 n +0000000064 00000 n +0000000125 00000 n +0000000184 00000 n +0000000301 00000 n +0000000379 00000 n +0000000523 00000 n +0000000628 00000 n +0000000721 00000 n +0000000828 00000 n +0000000859 00000 n +trailer << /QTest 2 0 R /Root 1 0 R /Size 12 /ID [<31415926535897932384626433832795><31415926535897932384626433832795>] >> +startxref +964 +%%EOF diff --git a/qpdf/qtest/qpdf/copy-foreign-objects-out2.pdf b/qpdf/qtest/qpdf/copy-foreign-objects-out2.pdf new file mode 100644 index 0000000..76529aa --- /dev/null +++ b/qpdf/qtest/qpdf/copy-foreign-objects-out2.pdf @@ -0,0 +1,81 @@ +%PDF-1.3 +%¿÷¢þ +1 0 obj +<< /Pages 3 0 R /Type /Catalog >> +endobj +2 0 obj +<< /O1 4 0 R /O2 5 0 R /O3 6 0 R /This-is-QTest true >> +endobj +3 0 obj +<< /Count 2 /Kids [ 7 0 R 6 0 R ] /Type /Pages >> +endobj +4 0 obj +[ /This-is-O1 /potato << /O2 [ 3.14159 << /O2 5 0 R >> 2.17828 ] >> /salad /O2 5 0 R /Stream1 8 0 R ] +endobj +5 0 obj +<< /K1 [ 2.236 /O1 4 0 R 1.732 ] /O1 4 0 R /This-is-O2 true >> +endobj +6 0 obj +<< /Contents 9 0 R /MediaBox [ 0 0 612 792 ] /Parent 3 0 R /Resources << /Font << /F1 10 0 R >> /ProcSet [ /PDF /Text ] >> /Rotate 180 /This-is-O3 true /Type /Page >> +endobj +7 0 obj +<< /Contents 11 0 R /MediaBox [ 0 0 612 792 ] /Parent 3 0 R /Resources << /Font << /F1 12 0 R >> /ProcSet 13 0 R >> /Type /Page >> +endobj +8 0 obj +<< /Stream2 14 0 R /This-is-Stream1 true /Length 18 >> +stream +This is stream 1. +endstream +endobj +9 0 obj +<< /Length 47 >> +stream +BT /F1 15 Tf 72 720 Td (Original page 2) Tj ET +endstream +endobj +10 0 obj +<< /BaseFont /Times-Roman /Encoding /WinAnsiEncoding /Subtype /Type1 /Type /Font >> +endobj +11 0 obj +<< /Length 44 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj +12 0 obj +<< /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> +endobj +13 0 obj +[ /PDF /Text ] +endobj +14 0 obj +<< /Stream1 8 0 R /This-is-Stream2 true /Length 18 >> +stream +This is stream 2. +endstream +endobj +xref +0 15 +0000000000 65535 f +0000000015 00000 n +0000000064 00000 n +0000000135 00000 n +0000000200 00000 n +0000000317 00000 n +0000000395 00000 n +0000000577 00000 n +0000000723 00000 n +0000000828 00000 n +0000000924 00000 n +0000001024 00000 n +0000001118 00000 n +0000001226 00000 n +0000001257 00000 n +trailer << /QTest 2 0 R /Root 1 0 R /Size 15 /ID [<31415926535897932384626433832795><31415926535897932384626433832795>] >> +startxref +1362 +%%EOF diff --git a/qpdf/qtest/qpdf/copy-foreign-objects-out3.pdf b/qpdf/qtest/qpdf/copy-foreign-objects-out3.pdf new file mode 100644 index 0000000..f2911a2 --- /dev/null +++ b/qpdf/qtest/qpdf/copy-foreign-objects-out3.pdf @@ -0,0 +1,92 @@ +%PDF-1.3 +%¿÷¢þ +1 0 obj +<< /Pages 3 0 R /Type /Catalog >> +endobj +2 0 obj +<< /O1 4 0 R /O2 5 0 R /O3 6 0 R /This-is-QTest true >> +endobj +3 0 obj +<< /Count 3 /Kids [ 7 0 R 8 0 R 6 0 R ] /Type /Pages >> +endobj +4 0 obj +[ /This-is-O1 /potato << /O2 [ 3.14159 << /O2 5 0 R >> 2.17828 ] >> /salad /O2 5 0 R /Stream1 9 0 R ] +endobj +5 0 obj +<< /K1 [ 2.236 /O1 4 0 R 1.732 ] /O1 4 0 R /This-is-O2 true >> +endobj +6 0 obj +<< /Contents 10 0 R /MediaBox [ 0 0 612 792 ] /OtherPage 8 0 R /Parent 3 0 R /Resources << /Font << /F1 11 0 R >> /ProcSet [ /PDF /Text ] >> /Rotate 180 /This-is-O3 true /Type /Page >> +endobj +7 0 obj +<< /Contents 12 0 R /MediaBox [ 0 0 612 792 ] /Parent 3 0 R /Resources << /Font << /F1 13 0 R >> /ProcSet 14 0 R >> /Type /Page >> +endobj +8 0 obj +<< /Contents 15 0 R /MediaBox [ 0 0 612 792 ] /Parent 3 0 R /Resources << /Font << /F1 11 0 R >> /ProcSet [ /PDF /Text ] >> /Rotate 180 /This-is-O3-other-page true /Type /Page >> +endobj +9 0 obj +<< /Stream2 16 0 R /This-is-Stream1 true /Length 18 >> +stream +This is stream 1. +endstream +endobj +10 0 obj +<< /Length 47 >> +stream +BT /F1 15 Tf 72 720 Td (Original page 2) Tj ET +endstream +endobj +11 0 obj +<< /BaseFont /Times-Roman /Encoding /WinAnsiEncoding /Subtype /Type1 /Type /Font >> +endobj +12 0 obj +<< /Length 44 >> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj +13 0 obj +<< /BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font >> +endobj +14 0 obj +[ /PDF /Text ] +endobj +15 0 obj +<< /Length 47 >> +stream +BT /F1 15 Tf 72 720 Td (Original page 3) Tj ET +endstream +endobj +16 0 obj +<< /Stream1 9 0 R /This-is-Stream2 true /Length 18 >> +stream +This is stream 2. +endstream +endobj +xref +0 17 +0000000000 65535 f +0000000015 00000 n +0000000064 00000 n +0000000135 00000 n +0000000206 00000 n +0000000323 00000 n +0000000401 00000 n +0000000601 00000 n +0000000747 00000 n +0000000941 00000 n +0000001046 00000 n +0000001143 00000 n +0000001243 00000 n +0000001337 00000 n +0000001445 00000 n +0000001476 00000 n +0000001573 00000 n +trailer << /QTest 2 0 R /Root 1 0 R /Size 17 /ID [<31415926535897932384626433832795><31415926535897932384626433832795>] >> +startxref +1678 +%%EOF diff --git a/qpdf/qtest/qpdf/damaged-stream-c-check.out b/qpdf/qtest/qpdf/damaged-stream-c-check.out new file mode 100644 index 0000000..b172362 --- /dev/null +++ b/qpdf/qtest/qpdf/damaged-stream-c-check.out @@ -0,0 +1 @@ +warning: damaged-stream.pdf: offset 426: error decoding stream data for object 5 0: LZWDecoder: bad code received diff --git a/qpdf/qtest/qpdf/damaged-stream.out b/qpdf/qtest/qpdf/damaged-stream.out new file mode 100644 index 0000000..39e7260 --- /dev/null +++ b/qpdf/qtest/qpdf/damaged-stream.out @@ -0,0 +1,5 @@ +checking damaged-stream.pdf +PDF Version: 1.3 +File is not encrypted +File is not linearized +WARNING: damaged-stream.pdf (file position 426): error decoding stream data for object 5 0: LZWDecoder: bad code received diff --git a/qpdf/qtest/qpdf/damaged-stream.pdf b/qpdf/qtest/qpdf/damaged-stream.pdf new file mode 100644 index 0000000000000000000000000000000000000000..32e7713f024f3b91b6fdf58905f9506abd68178c GIT binary patch literal 77635 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

m{EMrI?oww*ZHIa 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

{!WOWw6Q}3T|6;0vgW#AKdB%TluKQV(Pdp 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 Rjg5(k1(JkBL{1d)e*rbf<3s=e literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/decrypted-crypt-filter.pdf b/qpdf/qtest/qpdf/decrypted-crypt-filter.pdf new file mode 100644 index 0000000000000000000000000000000000000000..75e7f788296a99ee7056566da3375e00a379ca7a GIT binary patch literal 14383 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 RJZVw*EHrN4e(Qe6_#cu0%g6u# literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/delete-and-reuse.pdf b/qpdf/qtest/qpdf/delete-and-reuse.pdf new file mode 100644 index 0000000..53a89ae --- /dev/null +++ b/qpdf/qtest/qpdf/delete-and-reuse.pdf @@ -0,0 +1,1573 @@ +%PDF-1.3 +%¿÷¢þ +%QDF-1.0 + +1 0 obj +<< + /PageLabels 107 0 R + /Pages 2 0 R + /Type /Catalog + /PageMode /UseOutlines + /Outlines 95 0 R +>> +endobj + +2 0 obj +<< + /Count 30 + /Kids [ + 3 0 R + 4 0 R + 5 0 R + 6 0 R + 7 0 R + 8 0 R + 9 0 R + 10 0 R + 11 0 R + 12 0 R + 13 0 R + 14 0 R + 15 0 R + 16 0 R + 17 0 R + 18 0 R + 19 0 R + 20 0 R + 21 0 R + 22 0 R + 23 0 R + 24 0 R + 25 0 R + 26 0 R + 27 0 R + 28 0 R + 29 0 R + 30 0 R + 31 0 R + 32 0 R + ] + /Type /Pages +>> +endobj + +%% Page 1 +3 0 obj +<< + /Contents 33 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 2 +4 0 obj +<< + /Contents 37 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 3 +5 0 obj +<< + /Contents 39 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 4 +6 0 obj +<< + /Contents 41 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 5 +7 0 obj +<< + /Contents 43 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 6 +8 0 obj +<< + /Contents 45 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 7 +9 0 obj +<< + /Contents 47 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 8 +10 0 obj +<< + /Contents 49 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 9 +11 0 obj +<< + /Contents 51 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 10 +12 0 obj +<< + /Contents 53 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 11 +13 0 obj +<< + /Contents 55 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 12 +14 0 obj +<< + /Contents 57 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 13 +15 0 obj +<< + /Contents 59 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 14 +16 0 obj +<< + /Contents 61 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 15 +17 0 obj +<< + /Contents 63 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 16 +18 0 obj +<< + /Contents 65 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 17 +19 0 obj +<< + /Contents 67 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 18 +20 0 obj +<< + /Contents 69 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 19 +21 0 obj +<< + /Contents 71 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 20 +22 0 obj +<< + /Contents 73 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 21 +23 0 obj +<< + /Contents 75 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 22 +24 0 obj +<< + /Contents 77 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 23 +25 0 obj +<< + /Contents 79 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 24 +26 0 obj +<< + /Contents 81 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 25 +27 0 obj +<< + /Contents 83 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 26 +28 0 obj +<< + /Contents 85 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 27 +29 0 obj +<< + /Contents 87 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 28 +30 0 obj +<< + /Contents 89 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 29 +31 0 obj +<< + /Contents 91 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Page 30 +32 0 obj +<< + /Contents 93 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 2 0 R + /Resources << + /Font << + /F1 35 0 R + >> + /ProcSet 36 0 R + >> + /Type /Page +>> +endobj + +%% Contents for page 1 +33 0 obj +<< + /Length 34 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 0) Tj +ET +endstream +endobj + +34 0 obj +46 +endobj + +35 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +36 0 obj +[ + /PDF + /Text +] +endobj + +%% Contents for page 2 +37 0 obj +<< + /Length 38 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 1) Tj +ET +endstream +endobj + +38 0 obj +46 +endobj + +%% Contents for page 3 +39 0 obj +<< + /Length 40 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 2) Tj +ET +endstream +endobj + +40 0 obj +46 +endobj + +%% Contents for page 4 +41 0 obj +<< + /Length 42 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 3) Tj +ET +endstream +endobj + +42 0 obj +46 +endobj + +%% Contents for page 5 +43 0 obj +<< + /Length 44 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 4) Tj +ET +endstream +endobj + +44 0 obj +46 +endobj + +%% Contents for page 6 +45 0 obj +<< + /Length 46 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 5) Tj +ET +endstream +endobj + +46 0 obj +46 +endobj + +%% Contents for page 7 +47 0 obj +<< + /Length 48 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 6) Tj +ET +endstream +endobj + +48 0 obj +46 +endobj + +%% Contents for page 8 +49 0 obj +<< + /Length 50 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 7) Tj +ET +endstream +endobj + +50 0 obj +46 +endobj + +%% Contents for page 9 +51 0 obj +<< + /Length 52 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 8) Tj +ET +endstream +endobj + +52 0 obj +46 +endobj + +%% Contents for page 10 +53 0 obj +<< + /Length 54 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 9) Tj +ET +endstream +endobj + +54 0 obj +46 +endobj + +%% Contents for page 11 +55 0 obj +<< + /Length 56 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 10) Tj +ET +endstream +endobj + +56 0 obj +47 +endobj + +%% Contents for page 12 +57 0 obj +<< + /Length 58 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 11) Tj +ET +endstream +endobj + +58 0 obj +47 +endobj + +%% Contents for page 13 +59 0 obj +<< + /Length 60 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 12) Tj +ET +endstream +endobj + +60 0 obj +47 +endobj + +%% Contents for page 14 +61 0 obj +<< + /Length 62 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 13) Tj +ET +endstream +endobj + +62 0 obj +47 +endobj + +%% Contents for page 15 +63 0 obj +<< + /Length 64 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 14) Tj +ET +endstream +endobj + +64 0 obj +47 +endobj + +%% Contents for page 16 +65 0 obj +<< + /Length 66 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 15) Tj +ET +endstream +endobj + +66 0 obj +47 +endobj + +%% Contents for page 17 +67 0 obj +<< + /Length 68 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 16) Tj +ET +endstream +endobj + +68 0 obj +47 +endobj + +%% Contents for page 18 +69 0 obj +<< + /Length 70 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 17) Tj +ET +endstream +endobj + +70 0 obj +47 +endobj + +%% Contents for page 19 +71 0 obj +<< + /Length 72 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 18) Tj +ET +endstream +endobj + +72 0 obj +47 +endobj + +%% Contents for page 20 +73 0 obj +<< + /Length 74 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 19) Tj +ET +endstream +endobj + +74 0 obj +47 +endobj + +%% Contents for page 21 +75 0 obj +<< + /Length 76 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 20) Tj +ET +endstream +endobj + +76 0 obj +47 +endobj + +%% Contents for page 22 +77 0 obj +<< + /Length 78 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 21) Tj +ET +endstream +endobj + +78 0 obj +47 +endobj + +%% Contents for page 23 +79 0 obj +<< + /Length 80 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 22) Tj +ET +endstream +endobj + +80 0 obj +47 +endobj + +%% Contents for page 24 +81 0 obj +<< + /Length 82 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 23) Tj +ET +endstream +endobj + +82 0 obj +47 +endobj + +%% Contents for page 25 +83 0 obj +<< + /Length 84 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 24) Tj +ET +endstream +endobj + +84 0 obj +47 +endobj + +%% Contents for page 26 +85 0 obj +<< + /Length 86 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 25) Tj +ET +endstream +endobj + +86 0 obj +47 +endobj + +%% Contents for page 27 +87 0 obj +<< + /Length 88 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 26) Tj +ET +endstream +endobj + +88 0 obj +47 +endobj + +%% Contents for page 28 +89 0 obj +<< + /Length 90 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 27) Tj +ET +endstream +endobj + +90 0 obj +47 +endobj + +%% Contents for page 29 +91 0 obj +<< + /Length 92 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 28) Tj +ET +endstream +endobj + +92 0 obj +47 +endobj + +%% Contents for page 30 +93 0 obj +<< + /Length 94 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 29) Tj +ET +endstream +endobj + +94 0 obj +47 +endobj + +95 0 obj +<< + /Type /Outlines + /First 96 0 R + /Last 97 0 R + /Count 6 +>> +endobj + +96 0 obj +<< + /Type /Outline + /Title (Isís 1 -> 5: /XYZ null null null) + /Parent 95 0 R + /Count 4 + /Next 97 0 R + /First 98 0 R + /Last 99 0 R + /Dest [ 8 0 R /XYZ null null null ] +>> +endobj + +97 0 obj +<< + /Type /Outline + /Title (Trepak 2 -> 15: /XYZ 66 756 3) + /Parent 95 0 R + /Prev 96 0 R + /Dest [ 18 0 R /XYZ 66 756 3 ] +>> +endobj + +98 0 obj +<< + /Type /Outline + /Title (Amanda 1.1 -> 11: /Fit) + /Parent 96 0 R + /Next 99 0 R + /First 100 0 R + /Last 101 0 R + /Count -3 + /Dest [ 14 0 R /Fit ] +>> +endobj + +99 0 obj +<< + /Type /Outline + % /Title (Sandy (Sandy [Greek]) 1.2 -> 13: /FitH 792) + /Title + /Parent 96 0 R + /Prev 98 0 R + /First 105 0 R + /Last 106 0 R + /Count 2 + /Dest [ 16 0 R /FitH 792 ] +>> +endobj + +100 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.1 -> 12: /FitV 100) + /Parent 98 0 R + /Next 101 0 R + /First 102 0 R + /Last 103 0 R + /Count -2 + /Dest [ 15 0 R /FitV 100 ] +>> +endobj + +101 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.2 -> 12: /XYZ null null null) + /Parent 98 0 R + /Prev 100 0 R + /First 104 0 R + /Last 104 0 R + /Count 1 + /Dest [ 15 0 R /XYZ null null null ] +>> +endobj + +102 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.1.1 -> 18: /XYZ null null null) + /Parent 100 0 R + /Next 103 0 R + /Dest [ 21 0 R /XYZ null null null ] +>> +endobj + +103 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.1.2 -> 19: /XYZ null null null) + /Parent 100 0 R + /Prev 102 0 R + /Dest [ 22 0 R /XYZ null null null ] +>> +endobj + +104 0 obj +<< + /Type /Outline + /Title (Isosicle 1.1.2.1 -> 22: /XYZ null null null) + /Parent 101 0 R + /Dest [ 25 0 R /XYZ null null null ] +>> +endobj + +105 0 obj +<< + /Type /Outline + /Title (Trepsichord 1.2.1 -> 1: /FitR 66 714 180 770) + /Parent 99 0 R + /Next 106 0 R + /Dest [ 4 0 R /FitR 66 714 180 770 ] +>> +endobj + +106 0 obj +<< + /Type /Outline + /Title (Trepsicle 1.2.2 -> 0: /XYZ null null null) + /Parent 99 0 R + /Prev 105 0 R + /Dest [ 3 0 R /XYZ null null null ] +>> +endobj + +107 0 obj + << /Nums [ + 0 << /P () >> + 2 << /S /r /St 1 >> + 7 << /P () >> + 9 << /S /r /St 6 >> + 11 << /P () >> + 12 << /S /D /St 2 >> + 15 << /S /D /St 6 >> + 19 << /P () >> + 20 << /S /D /St 12 >> + 22 << /S /D /St 16059 >> + 23 << /S /r /St 50 >> + 29 << /S /r /St 54 >> + ] >> +endobj + +xref +0 108 +0000000000 65535 f +0000000025 00000 n +0000000145 00000 n +0000000541 00000 n +0000000746 00000 n +0000000951 00000 n +0000001156 00000 n +0000001361 00000 n +0000001566 00000 n +0000001771 00000 n +0000001976 00000 n +0000002182 00000 n +0000002389 00000 n +0000002596 00000 n +0000002803 00000 n +0000003010 00000 n +0000003217 00000 n +0000003424 00000 n +0000003631 00000 n +0000003838 00000 n +0000004045 00000 n +0000004252 00000 n +0000004459 00000 n +0000004666 00000 n +0000004873 00000 n +0000005080 00000 n +0000005287 00000 n +0000005494 00000 n +0000005701 00000 n +0000005908 00000 n +0000006115 00000 n +0000006322 00000 n +0000006529 00000 n +0000006748 00000 n +0000006851 00000 n +0000006871 00000 n +0000006990 00000 n +0000007049 00000 n +0000007152 00000 n +0000007195 00000 n +0000007298 00000 n +0000007341 00000 n +0000007444 00000 n +0000007487 00000 n +0000007590 00000 n +0000007633 00000 n +0000007736 00000 n +0000007779 00000 n +0000007882 00000 n +0000007925 00000 n +0000008028 00000 n +0000008071 00000 n +0000008174 00000 n +0000008218 00000 n +0000008321 00000 n +0000008365 00000 n +0000008469 00000 n +0000008513 00000 n +0000008617 00000 n +0000008661 00000 n +0000008765 00000 n +0000008809 00000 n +0000008913 00000 n +0000008957 00000 n +0000009061 00000 n +0000009105 00000 n +0000009209 00000 n +0000009253 00000 n +0000009357 00000 n +0000009401 00000 n +0000009505 00000 n +0000009549 00000 n +0000009653 00000 n +0000009697 00000 n +0000009801 00000 n +0000009845 00000 n +0000009949 00000 n +0000009993 00000 n +0000010097 00000 n +0000010141 00000 n +0000010245 00000 n +0000010289 00000 n +0000010393 00000 n +0000010437 00000 n +0000010541 00000 n +0000010585 00000 n +0000010689 00000 n +0000010733 00000 n +0000010837 00000 n +0000010881 00000 n +0000010985 00000 n +0000011029 00000 n +0000011133 00000 n +0000011177 00000 n +0000011281 00000 n +0000011301 00000 n +0000011388 00000 n +0000011584 00000 n +0000011730 00000 n +0000011905 00000 n +0000012258 00000 n +0000012449 00000 n +0000012659 00000 n +0000012828 00000 n +0000012997 00000 n +0000013150 00000 n +0000013319 00000 n +0000013484 00000 n +trailer << + /Root 1 0 R + /Size 108 +>> +startxref +13801 +%%EOF + +% 1. Delete page labels +xref +0 1 +0000000107 65535 f +107 1 +0000000000 00001 f +trailer << /Root 1 0 R /Size 108 /Prev 13801 >> +startxref +16059 +%%EOF + +% 2. Delete outlines, reuse page labels. + +107 1 obj + << /Nums [ + 0 << /P () >> + 2 << /S /D /St 1 >> + 7 << /P () >> + 9 << /S /R /St 6 >> + 11 << /P () >> + 12 << /S /r /St 2 >> + 15 << /S /r /St 6 >> + 19 << /P () >> + 20 << /S /R /St 12 >> + 22 << /S /D /St 16059 >> + 23 << /S /r /St 50 >> + 29 << /S /r /St 54 >> + ] >> +endobj + +% Reuse object 1 with the same generation number. Leave outlines +% there pointing to a deleted object. +1 0 obj +<< + /PageLabels 107 1 R + /Pages 2 0 R + /Type /Catalog + /PageMode /UseOutlines + /Outlines 95 0 R +>> +endobj + +xref +0 2 +0000000095 65535 f +0000016648 00000 n +95 13 +0000000096 00001 f +0000000097 00001 f +0000000098 00001 f +0000000099 00001 f +0000000100 00001 f +0000000101 00001 f +0000000102 00001 f +0000000103 00001 f +0000000104 00001 f +0000000105 00001 f +0000000106 00001 f +0000000000 00001 f +0000016227 00001 n +trailer << /Size 108 /Prev 16059 /Root 1 0 R >> +startxref +16768 +%%EOF diff --git a/qpdf/qtest/qpdf/delete-and-reuse.qdf b/qpdf/qtest/qpdf/delete-and-reuse.qdf new file mode 100644 index 0000000..14fbbdb --- /dev/null +++ b/qpdf/qtest/qpdf/delete-and-reuse.qdf @@ -0,0 +1,1408 @@ +%PDF-1.3 +%¿÷¢þ +%QDF-1.0 + +1 0 obj +<< + /PageLabels 2 0 R + /PageMode /UseOutlines + /Pages 3 0 R + /Type /Catalog +>> +endobj + +2 0 obj +<< + /Nums [ + 0 + << + /P () + >> + 2 + << + /S /D + /St 1 + >> + 7 + << + /P () + >> + 9 + << + /S /R + /St 6 + >> + 11 + << + /P () + >> + 12 + << + /S /r + /St 2 + >> + 15 + << + /S /r + /St 6 + >> + 19 + << + /P () + >> + 20 + << + /S /R + /St 12 + >> + 22 + << + /S /D + /St 16059 + >> + 23 + << + /S /r + /St 50 + >> + 29 + << + /S /r + /St 54 + >> + ] +>> +endobj + +3 0 obj +<< + /Count 30 + /Kids [ + 4 0 R + 5 0 R + 6 0 R + 7 0 R + 8 0 R + 9 0 R + 10 0 R + 11 0 R + 12 0 R + 13 0 R + 14 0 R + 15 0 R + 16 0 R + 17 0 R + 18 0 R + 19 0 R + 20 0 R + 21 0 R + 22 0 R + 23 0 R + 24 0 R + 25 0 R + 26 0 R + 27 0 R + 28 0 R + 29 0 R + 30 0 R + 31 0 R + 32 0 R + 33 0 R + ] + /Type /Pages +>> +endobj + +%% Page 1 +4 0 obj +<< + /Contents 34 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 2 +5 0 obj +<< + /Contents 38 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 3 +6 0 obj +<< + /Contents 40 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 4 +7 0 obj +<< + /Contents 42 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 5 +8 0 obj +<< + /Contents 44 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 6 +9 0 obj +<< + /Contents 46 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 7 +10 0 obj +<< + /Contents 48 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 8 +11 0 obj +<< + /Contents 50 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 9 +12 0 obj +<< + /Contents 52 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 10 +13 0 obj +<< + /Contents 54 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 11 +14 0 obj +<< + /Contents 56 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 12 +15 0 obj +<< + /Contents 58 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 13 +16 0 obj +<< + /Contents 60 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 14 +17 0 obj +<< + /Contents 62 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 15 +18 0 obj +<< + /Contents 64 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 16 +19 0 obj +<< + /Contents 66 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 17 +20 0 obj +<< + /Contents 68 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 18 +21 0 obj +<< + /Contents 70 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 19 +22 0 obj +<< + /Contents 72 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 20 +23 0 obj +<< + /Contents 74 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 21 +24 0 obj +<< + /Contents 76 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 22 +25 0 obj +<< + /Contents 78 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 23 +26 0 obj +<< + /Contents 80 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 24 +27 0 obj +<< + /Contents 82 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 25 +28 0 obj +<< + /Contents 84 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 26 +29 0 obj +<< + /Contents 86 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 27 +30 0 obj +<< + /Contents 88 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 28 +31 0 obj +<< + /Contents 90 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 29 +32 0 obj +<< + /Contents 92 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Page 30 +33 0 obj +<< + /Contents 94 0 R + /MediaBox [ + 0 + 0 + 612 + 792 + ] + /Parent 3 0 R + /Resources << + /Font << + /F1 36 0 R + >> + /ProcSet 37 0 R + >> + /Type /Page +>> +endobj + +%% Contents for page 1 +34 0 obj +<< + /Length 35 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 0) Tj +ET +endstream +endobj + +35 0 obj +46 +endobj + +36 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +37 0 obj +[ + /PDF + /Text +] +endobj + +%% Contents for page 2 +38 0 obj +<< + /Length 39 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 1) Tj +ET +endstream +endobj + +39 0 obj +46 +endobj + +%% Contents for page 3 +40 0 obj +<< + /Length 41 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 2) Tj +ET +endstream +endobj + +41 0 obj +46 +endobj + +%% Contents for page 4 +42 0 obj +<< + /Length 43 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 3) Tj +ET +endstream +endobj + +43 0 obj +46 +endobj + +%% Contents for page 5 +44 0 obj +<< + /Length 45 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 4) Tj +ET +endstream +endobj + +45 0 obj +46 +endobj + +%% Contents for page 6 +46 0 obj +<< + /Length 47 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 5) Tj +ET +endstream +endobj + +47 0 obj +46 +endobj + +%% Contents for page 7 +48 0 obj +<< + /Length 49 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 6) Tj +ET +endstream +endobj + +49 0 obj +46 +endobj + +%% Contents for page 8 +50 0 obj +<< + /Length 51 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 7) Tj +ET +endstream +endobj + +51 0 obj +46 +endobj + +%% Contents for page 9 +52 0 obj +<< + /Length 53 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 8) Tj +ET +endstream +endobj + +53 0 obj +46 +endobj + +%% Contents for page 10 +54 0 obj +<< + /Length 55 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 9) Tj +ET +endstream +endobj + +55 0 obj +46 +endobj + +%% Contents for page 11 +56 0 obj +<< + /Length 57 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 10) Tj +ET +endstream +endobj + +57 0 obj +47 +endobj + +%% Contents for page 12 +58 0 obj +<< + /Length 59 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 11) Tj +ET +endstream +endobj + +59 0 obj +47 +endobj + +%% Contents for page 13 +60 0 obj +<< + /Length 61 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 12) Tj +ET +endstream +endobj + +61 0 obj +47 +endobj + +%% Contents for page 14 +62 0 obj +<< + /Length 63 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 13) Tj +ET +endstream +endobj + +63 0 obj +47 +endobj + +%% Contents for page 15 +64 0 obj +<< + /Length 65 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 14) Tj +ET +endstream +endobj + +65 0 obj +47 +endobj + +%% Contents for page 16 +66 0 obj +<< + /Length 67 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 15) Tj +ET +endstream +endobj + +67 0 obj +47 +endobj + +%% Contents for page 17 +68 0 obj +<< + /Length 69 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 16) Tj +ET +endstream +endobj + +69 0 obj +47 +endobj + +%% Contents for page 18 +70 0 obj +<< + /Length 71 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 17) Tj +ET +endstream +endobj + +71 0 obj +47 +endobj + +%% Contents for page 19 +72 0 obj +<< + /Length 73 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 18) Tj +ET +endstream +endobj + +73 0 obj +47 +endobj + +%% Contents for page 20 +74 0 obj +<< + /Length 75 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 19) Tj +ET +endstream +endobj + +75 0 obj +47 +endobj + +%% Contents for page 21 +76 0 obj +<< + /Length 77 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 20) Tj +ET +endstream +endobj + +77 0 obj +47 +endobj + +%% Contents for page 22 +78 0 obj +<< + /Length 79 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 21) Tj +ET +endstream +endobj + +79 0 obj +47 +endobj + +%% Contents for page 23 +80 0 obj +<< + /Length 81 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 22) Tj +ET +endstream +endobj + +81 0 obj +47 +endobj + +%% Contents for page 24 +82 0 obj +<< + /Length 83 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 23) Tj +ET +endstream +endobj + +83 0 obj +47 +endobj + +%% Contents for page 25 +84 0 obj +<< + /Length 85 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 24) Tj +ET +endstream +endobj + +85 0 obj +47 +endobj + +%% Contents for page 26 +86 0 obj +<< + /Length 87 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 25) Tj +ET +endstream +endobj + +87 0 obj +47 +endobj + +%% Contents for page 27 +88 0 obj +<< + /Length 89 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 26) Tj +ET +endstream +endobj + +89 0 obj +47 +endobj + +%% Contents for page 28 +90 0 obj +<< + /Length 91 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 27) Tj +ET +endstream +endobj + +91 0 obj +47 +endobj + +%% Contents for page 29 +92 0 obj +<< + /Length 93 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 28) Tj +ET +endstream +endobj + +93 0 obj +47 +endobj + +%% Contents for page 30 +94 0 obj +<< + /Length 95 0 R +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato 29) Tj +ET +endstream +endobj + +95 0 obj +47 +endobj + +xref +0 96 +0000000000 65535 f +0000000025 00000 n +0000000124 00000 n +0000000655 00000 n +0000001052 00000 n +0000001257 00000 n +0000001462 00000 n +0000001667 00000 n +0000001872 00000 n +0000002077 00000 n +0000002282 00000 n +0000002488 00000 n +0000002694 00000 n +0000002901 00000 n +0000003108 00000 n +0000003315 00000 n +0000003522 00000 n +0000003729 00000 n +0000003936 00000 n +0000004143 00000 n +0000004350 00000 n +0000004557 00000 n +0000004764 00000 n +0000004971 00000 n +0000005178 00000 n +0000005385 00000 n +0000005592 00000 n +0000005799 00000 n +0000006006 00000 n +0000006213 00000 n +0000006420 00000 n +0000006627 00000 n +0000006834 00000 n +0000007041 00000 n +0000007260 00000 n +0000007363 00000 n +0000007383 00000 n +0000007502 00000 n +0000007561 00000 n +0000007664 00000 n +0000007707 00000 n +0000007810 00000 n +0000007853 00000 n +0000007956 00000 n +0000007999 00000 n +0000008102 00000 n +0000008145 00000 n +0000008248 00000 n +0000008291 00000 n +0000008394 00000 n +0000008437 00000 n +0000008540 00000 n +0000008583 00000 n +0000008686 00000 n +0000008730 00000 n +0000008833 00000 n +0000008877 00000 n +0000008981 00000 n +0000009025 00000 n +0000009129 00000 n +0000009173 00000 n +0000009277 00000 n +0000009321 00000 n +0000009425 00000 n +0000009469 00000 n +0000009573 00000 n +0000009617 00000 n +0000009721 00000 n +0000009765 00000 n +0000009869 00000 n +0000009913 00000 n +0000010017 00000 n +0000010061 00000 n +0000010165 00000 n +0000010209 00000 n +0000010313 00000 n +0000010357 00000 n +0000010461 00000 n +0000010505 00000 n +0000010609 00000 n +0000010653 00000 n +0000010757 00000 n +0000010801 00000 n +0000010905 00000 n +0000010949 00000 n +0000011053 00000 n +0000011097 00000 n +0000011201 00000 n +0000011245 00000 n +0000011349 00000 n +0000011393 00000 n +0000011497 00000 n +0000011541 00000 n +0000011645 00000 n +0000011689 00000 n +0000011793 00000 n +trailer << + /Root 1 0 R + /Size 96 + /ID [<31415926535897932384626433832795><31415926535897932384626433832795>] +>> +startxref +11813 +%%EOF diff --git a/qpdf/qtest/qpdf/diff-encrypted b/qpdf/qtest/qpdf/diff-encrypted new file mode 100755 index 0000000..a68822e --- /dev/null +++ b/qpdf/qtest/qpdf/diff-encrypted @@ -0,0 +1,7 @@ +#!/bin/sh +lines=$(expr + $(diff $1 $2 | egrep '^[<>]' | egrep -v 'Date' | wc -l)) +if [ "$lines" = "0" ]; then + echo okay +else + diff -a -U 0 $1 $2 +fi diff --git a/qpdf/qtest/qpdf/diff-ignore-ID-version b/qpdf/qtest/qpdf/diff-ignore-ID-version new file mode 100755 index 0000000..e6b3347 --- /dev/null +++ b/qpdf/qtest/qpdf/diff-ignore-ID-version @@ -0,0 +1,8 @@ +#!/bin/sh +lines=$(expr + $(diff $1 $2 | egrep '^[<>]' | \ + egrep -v '/ID' | egrep -v '%PDF-' | wc -l)) +if [ "$lines" = "0" ]; then + echo okay +else + diff -a -U 0 $1 $2 +fi diff --git a/qpdf/qtest/qpdf/empty-object.out b/qpdf/qtest/qpdf/empty-object.out new file mode 100644 index 0000000..78274f8 --- /dev/null +++ b/qpdf/qtest/qpdf/empty-object.out @@ -0,0 +1,3 @@ +WARNING: empty-object.pdf (object 7 0, file position 575): empty object treated as null +null +qpdf: operation succeeded with warnings; resulting file may have some problems diff --git a/qpdf/qtest/qpdf/empty-object.pdf b/qpdf/qtest/qpdf/empty-object.pdf new file mode 100644 index 0000000..55eef2a --- /dev/null +++ b/qpdf/qtest/qpdf/empty-object.pdf @@ -0,0 +1,84 @@ +%PDF-1.3 +1 0 obj +<< + /Type /Catalog + /Pages 2 0 R + /X 7 0 R +>> +endobj + +2 0 obj +<< + /Type /Pages + /Kids [ + 3 0 R + ] + /Count 1 +>> +endobj + +3 0 obj +<< + /Type /Page + /Parent 2 0 R + /MediaBox [0 0 612 792] + /Contents 4 0 R + /Resources << + /ProcSet 5 0 R + /Font << + /F1 6 0 R + >> + >> +>> +endobj + +4 0 obj +<< + /Length 44 +>> +stream +BT + /F1 24 Tf + 72 720 Td + (Potato) Tj +ET +endstream +endobj + +5 0 obj +[ + /PDF + /Text +] +endobj + +6 0 obj +<< + /Type /Font + /Subtype /Type1 + /Name /F1 + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding +>> +endobj + +7 0 obj +endobj + +xref +0 8 +0000000000 65535 f +0000000009 00000 n +0000000074 00000 n +0000000146 00000 n +0000000318 00000 n +0000000414 00000 n +0000000449 00000 n +0000000567 00000 n +trailer << + /Size 8 + /Root 1 0 R +>> +startxref +583 +%%EOF diff --git a/qpdf/qtest/qpdf/enc-R2,V1,O=master.pdf b/qpdf/qtest/qpdf/enc-R2,V1,O=master.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bac7eaec90b989e0b7ef49461887ee88b86d9202 GIT binary patch literal 17146 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 literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/enc-R2,V1,U=view.pdf b/qpdf/qtest/qpdf/enc-R2,V1,U=view.pdf new file mode 100644 index 0000000000000000000000000000000000000000..d99bf6f819fc0db8d832545a8aecff2e131aa985 GIT binary patch literal 17137 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 literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/enc-R2,V1.pdf b/qpdf/qtest/qpdf/enc-R2,V1.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dec9e6d78bf47bebddd0cb4f84127ddef9d7a351 GIT binary patch literal 17143 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 T`hx&s^#4~@KPto&dHw$fzU{m= literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/enc-R3,V2,O=master.pdf b/qpdf/qtest/qpdf/enc-R3,V2,O=master.pdf new file mode 100644 index 0000000000000000000000000000000000000000..88585663ade93e49a0999555b0b069c16fbad03f GIT binary patch literal 17144 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 BzN7#E literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/enc-R3,V2,U=view,O=master.pdf b/qpdf/qtest/qpdf/enc-R3,V2,U=view,O=master.pdf new file mode 100644 index 0000000000000000000000000000000000000000..9b95ae363ec6be69413162ac9858fe6846236e0b GIT binary patch literal 17139 zcmdU1cT^O~*Toe9#W508f{ln`z?q&rfQV!X4hy0p7zP*wg#m{F5kcKGAW>Y*iVKES z%z}y$45+9WP!thNV8DPP7;sI$s_toQy5}J0JLfxR;SYy-R=<9I>(;GT)%7s*ba1jj zM{yZuHMQ4oF}jIRgoQ)|%wkwuBMhc{s7xx6hsH^R5EOhBBO)&Na6$YKl*8d6Y?Ose zh0PFDfO16OH%Ekv3WVU7@d$?nJ|-Y2kIe$t+SnirsVoS3M*hz~v2tlJ14PJXBMg@E z2jwH!Z-|W1O=%LccvKsT3Pdy;k4tYS;Ie4#glw9P&0^8~u~8nq9S0Rq{js?sHqFN8 z(Vl}XM1|CL92NkR^1K{2i%YX{cpRFIr@|j!NN*=ZX}EBN99n!F5s&s97%eFA0S1ub zQ^+NuVNyBZ7lY{yn1!Gyhrt{t3ywg908+#YvPc#vpBJe>L?AZI;1v-8zJa@8-#q2g z7{DtOFaccY;AhR}2XXik4oe~uNLj%sKbRvD@pyrJHXD_)0@)H9Yc`)J3}j1r0??Gl zmk2;3UI14h5d;W1tRO*<%~ZfpMwCJ#S70P#G0e;y#ZEX^8Q7g$28E|&rqo>$APtK` zz#w6cj}DIl1A>Kp@kGpr0jjgHFWv}KjxfCyVC(>!fZRaTx&a?HV4x_u3EJYs0dvBJ zZ9vb!djik65xWq@y(#a_0Bmj51~`HtQQVSD)xU& z2tgDg1oXr@WWu~iDZ;duC?sJKGeMug|MrLo0ydv0sW@5@24o}(*js)T0fJ#ydPo(L zAaETb0z(H{;H{N9f%Se1>Q13y3Mm$$L>45G2LX3p2nRYv%#8+q>ZBKFyG(MZ#-ns} zK~qe_7r`S_-DMj_Tnu%v;LRGwVEQ2D2ajY~Z}T7a&%bdIL+^Mzzv{j6-F@G?>3*_l z{<3)!OyX9=f_9#W1qTJ=iNTx*dJ#yQR5nu)f}m_5YNXgu&{r)w3AzIXQUW4D0fm`F zq)uTHh15YBhyg+P0i6M#6S|60$fc5SMmOipgH7*`$(h{EHlQ}!`R~1ddG+rq9<=JZ z^G0Xs=G2h}|GGKmMi%BQSyXg-wE|6=pRjP*#-m?MQ{#j=*=f#szR4fi1Ff`o@I&Uz zG0$XY%rMJcW_Qt4`lRnXmqocjfe=pRt(3r`SP&3d&<`zWgE9J3`0XQP3aLyHg`g~; zU&^iu3YFMJ#9~}$A$;IO00suse@}@VH2%p4FKJXnv^)^>IV7SJ@P+?^0(bZr2hY#+ zlt%=5OTp*>vj~9+6Q>d+5b$d+kBC%#N3RG402f?F?i7qwErh{6wNQ=$`b8cER0QZ4 z_B`$q_>Fiv`-o@|CBL;l*i^MY5Zr`NMVJ&ZFR?KjmG8@o8anvfye-1@iKD02D~u;= zJm$PBnK4d3dn4o&4o?f|@q0mzjhDufVo(N1j4C`pLK7XNAY3@_V&O9<`%Xb*(P3ev ze?U)=7>YgFuYxzOX7+t+=xD(FUB2q?i`y^GziQX7LHF*ga{Yj`(<&mzl(z*zWk_67 zNPIpb05cf}(t;cee5PLo6I&a3z+m7G{X;g@6$hRnwx_he#Z+D+MM3l&jv4_BjvC4$ zW(N#5ltoM(IM^0YDU|VY;L!Dg<5WQn6Z-sBn8!7Xx0vY`$(P&YOmc51blBTy8PG8L znUfA*MW{GnM2`}oDz%QO3>A+D&>iC-R2?ExoSiUI7hqR7Ia#<5WGwV3n-1iTp7D9k#rQA5zM z1wtwD-@Go=Y8wC zUYB*YDzX2}s}}sfo;o}^VajrT_grUp*bQG&SVU(lfg^ZG^gS{2Df^z_w34Re&R0GF z==_O5H|fAa&%X-0D92yEeb)!ef9mu``Td4;)%)`G@!+tFe#dJwI=|bO&9u7PsIz^) zMsEXk6;Gf9mKa#X6X0=ysSye&oGWo=;7fCD6Deo*mrTPuw}>=d=9O0cBA9_6G%f>Q_OX?Bv$t zLyBYVfxcH4ox0LxZ1IO7(_B9n`VYIe%F!m%WXIv#cihrCEl(KaV{w%n6@jUeBm@hT zLBhNmDpWhT+ny=v?M`>Ug-%mbnhy=R5tDYw?x-R+tBG~`>t30QzkEf`B#ZECotpDY zAB@wzV8un(J=wNLEHzWuSLP({jvd4@3nY>AWyPexk0 z*iI59#c~y}ost65~05XHMNJLPmY$n2-6e=4liwbQqfazNj4su*4$a(MR00pLP zP~o5fS31lec_ze@9e7Va&aX?tUBTqJ zo_%iLrFS(Ui=>WjB`+(_&_@xIA|6~6ZxblHyTon(8`D)0y|UIm7)FPb5E&Arq#;dWDKYo`_aTLm zwuhy78bpRvGQLhcz~}PYtx@@f8jaEWc}Q8qt>gRSLi(TnoZ9ECW7Ue!KK-wG*Eg?b zzMeVT9j zV!`chyTXdfbqaT+9mvsJX?-cpc32yG&ES0`iu^1%gUCF zE1?KrF-qbpNLlg3r32tf60kM}0B+oY#DR=!?!fc2i6yaE6>A$; zdS2pY(Btnddo#@+^ETz(v{TcKIg%FLlz3u$_bz>%jOWZ@Ed6BQ5L`L!@|bja(^ku( z{-qvozo@{K&>=Fegf_Is6>dUfOR)bwu2`t;QCBv;tR(Z*BWUUD2Vh_8aPL{!-nX0n zI1pjKEwovBWVuzA=?7zfn-x-zs&tdxAH4iC5*F;3ey5`Um{dBhm}3|L30JTK+M@X+ z9bn^$NJr3DEYx=4ifbDg*IcdV6MCPk*wU9}RZf46ez4%b?(($$vQ&FQ8mn%~~2{n*$nUr|&IYoUe7RSyy;*-^`d^>A%l8#@uiy^5fl+=2aU%nLnC- zJ*@JmwBLnYEVXT~OD3rRmdL8Wi^djU33X`ASn#H}qs&}bsOP7@fkgA5_cxQsCgZdURYGPX@I7$W9c^8`W@wZ8=ZnYD?5klGgg*uZj8IG0$4(f z$iNcvKmis{OFDwYa!6v7#BJGSEWd&m1-2&m2JFfEFPntvQa1WoK0Z#p!A79 z4i_}k);Af@fyF$-5Xit1^3a;GTs$%92#m!-Z5OcgMc4O->QW!$sNOrqzT{dy$aab9 zH|NWd@w+GZq%#Xlf2fOB_PD&Pd9I??FEM#9=V0cyWOL?WsS03;%!&*wArBN_@yw({ z080|HHl=`z%Ntn=-fY%-bUTrs^ln2y!+uWmm@j)yCVfxcGI4F5;6l(JjQ6b4BDM0_ zS@}9wN3rEi_72AC6^;5TfF;z33@jlJt$~GSdOFCm3k$V9jOEdnT_1G~>oxT3mn4Xn z)GxI4>^V4BP{Z_f?NX#ENgjEA=)Z%8EPc>_eSttw6&1h|sTGN_JVG8QjKx!vjvxi_&>J!Rwhb&UZ)7RB zSh}ZMc?D}h<(%O%ZE?=ltOM7=uTQsj*IsG4{`$VlXWl%DoozP5v#;9(k7pm953cR@ za(lSC3SbE}A_Ggv0|i(-HR%w*lEkb{VEOcwS9QYVJl?C6uBL{wx|Btqi|=(dPs4nJ zdbb?DXz{Z2oXo*DnzraX-+Hn>sdIGv`pPLDISFH$=)hv0DN?|1br_&!i<{qZR$f@B z?a^31E^lPU=6*LkBQm`A{d7RhdFR3D8R`$O?J)ilo4<(D{CeJ$c_Xg=b}ZaflM~G0 z=G7-!*?NyU8*TbT1+at~kr<1;)>ei^%47K*XXS;3+Ad&mc_Rax9XL1Y*|;U9FYPzK znYg#-rgENT1hS;y+us*;h8m7vJ7dacjRKR*6yJoYa~qt?WNHlUS$Wq~086M58CXId zT1x>RPfa?46kwsY3s_v<$iR+B>(|rosbx+~?~2F9K0S{2^?n~>>Hi+-XVt~*#of1c z;g{FCiz?QMO!C5mroI}uCPFGM-=G3mLXAkkf|Eim(obTnpyRB(uu$6rtbo4qs(7_I z-dtzWo=5WNKQh-3db;$<%kLJ4b}U&pM<%J9Z+l#On@i5nuU**h42<_itTw)scJ<~m zITdoR?SJG8;g;#|w}1yjTix;!fz&|CKU6q?}`9jO9XBC{eBmQV)@uy|(D5tKkc(y}&_ z0#Lz0O=G_!hT7Cxk$;=3htFd-RI1@Kf5d?;%Lr? zwc2Q=P5JJzDmJ$;&lqEW?i#|%3?d06DFHZ6*iqI8Sg7q`tdPF&s*&jqITrW)AgkFV zPf_hH@~mh3*jN~R{B*5rWyU)r8?~X?pNwXk2hPms5^48&_q`#-jC2)yFqmfwutL=f zFIe%>K~}U_sOc&^>H|g2u*5i*$KhdQ?sAAzIB;=vB6bSLmq$5ZH7HYeI#pR8h6nt7SWa9Rj zm5+ngZYaEx{QJwb+AC_dUK_sX&!n8`TAUS|zkW$~E~|9=+nGD6YafH0kWIX?FI2pl z5fW-d(papbL>U&80(d4Lt0Qv@4T42B%0s>QD8joOk55@bpgbK9Yr+7-L0t^|z~1|U z4`nV4DmkE4c?z6^d*R@2uY-ZD00lJ;u;#(MT-SftcI%Zz z%L4A@{C-4paqrf26fEgx#rp8HN?!5KO=$X(`J2 zd8%=;hdV;l!oWk`WIj~yU9?H7z?S)ARaoV-!k1}ctCBl6@13;VWunupt5$8^1ad~R~zQ|}h+`mFK1ch-+HEH_*ATg@vw zaW!}E)J*#EWO@8;sY^`vwaCDizPWYxE;na}Pczx}IIAWNskYA1aLL*;HL5A$f+YX- zpB4UU+1uaFnXuqrYs1SGZZ`_vDjZ(Qhm70jH0yo6ct`D;i6uIlpTDThusmN|{p9rU z7xm@hfT!J_MWQtyTv?UbV|{nu;dcF+S5+{|F41oJD8s>D=O4)!8r;i#{$~q8)iB+} zed{l!t~k1`r0R-(Y^U$V6v)4Izr@Q#$KV?4_OTALp`7$bF zyKj2%qM=K5y_L^^fm5B_;s%9Ww>^LM!Ib>{cRQ`o+W(JfxzQ%Mk85K*cdnt9)qU3q zC*C!j>(It%d%Asr4uwGPVST7l&^WN#y>z=Wm1{(*cJLSG! z&~vxDM5}nb@7l0F?o&3fwb%FuX3Xz)EiT4c+kC(&#;|)=^$Y6{_KuccO5I*m*?r`k z+>l#APrRqSmL9!jZQ3Yh-&wUjbTn(+_K}nBrmvoIbW-&*W1&TfEc&2k)F}D-(?jYi z9{lOKvG&Em-jRjbZw@CtbePXIHW5qRGB!(WyW1UJx8{znzM^1e@KcATHGL$(`jeyd zQ$~tMssr$-OPTwq89GZP9CS{i=hm z^J5M(eU?eCjIikzViff-5RI;}D?Q9uSEc#6N8HYoS2tdbcU}2MeN}w-1N2z~FCs)> zg`%=36?`Ck9uK@=3?>RyIU*>-@aJdoDpo#AwQ*SVb{wc@lxunPVpA@kUgXNL1m}-6VP$t3*dnrN;?s~j|40_E&>*uOIlwm zV8hvlV&l+@i3MDE43g50Pv?+80H-}lI{}Yw6Txl$*6oBWIFV6oSSby~#)jo$6dRY$ z4I!6~fsjw^d#g;y}|pxS5{fI1gYhDB}1rHxCJMb`*W;t3D#QtlyyZ*{3Q z8U~=8fuu5|quOW6$Q%v>jy&;6kx=%xpkPx{by^lmqTUZ3m_R8U{di={7D* zNL$~R1B8-pqhr9K|1kjYmmcWYb3}9uxNO=V4M4dZ@_3{DF#r+z|5eeC3OLG|{{I2c Cimmwo literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/enc-R3,V2,U=view.pdf b/qpdf/qtest/qpdf/enc-R3,V2,U=view.pdf new file mode 100644 index 0000000000000000000000000000000000000000..a4efba7a722b3a09106efc171bf51fa85a005318 GIT binary patch literal 17142 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 F{{T%;rN{sP literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/enc-R3,V2.pdf b/qpdf/qtest/qpdf/enc-R3,V2.pdf new file mode 100644 index 0000000000000000000000000000000000000000..80727887c4aac4f9514fc2eed8614317bd9a2fff GIT binary patch literal 17140 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 E16Y>7nE(I) literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/enc-base.pdf b/qpdf/qtest/qpdf/enc-base.pdf new file mode 100644 index 0000000000000000000000000000000000000000..bac513072869b3418afc50f1e230e5d78a0c58fe GIT binary patch literal 16937 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 literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/encrypted-with-images.pdf b/qpdf/qtest/qpdf/encrypted-with-images.pdf new file mode 100644 index 0000000000000000000000000000000000000000..dbceb4454f6f37ee83edfe519a0d4c46935a9a57 GIT binary patch literal 50219 zcmZs?Q?M{f(5|=a^)1`BZQHhO+qP}nwr$(C?d+5MNlsOAHB~)5UEOa#H#5~kA}=gT z!$8XdMbh_H_zT5=PmgbBXbHv5jZY_UU}oZk&-|Z75uZ-k!`=j+PRPL7z}n6XpO+WP z#MbzKIWqol2mUV~IYUb&XB&JvX%kyBXLEc;Mpk?}Q44El6UYBnYXfH!VG|=eh2nQ<%_>U`|rsu;w#B zfvjSdBfGRmu5ubx3n`G$wVB5jI2bnbC+5|icpeQp&=++0hXk3R`u?I}@1DX{_3qaom#-KI+d3HJU$OXLnrzQi&=Nd}El0 z+UdK6CZ-QnYlzQxc5PEHnw3u~pe~cBO=sk?S8P@$2pPnWlR$!(9x!Y@9^naBFVLbr zR81)r$6Vua%@h>KH}Z2pvW8f2@2dSyqn7@<5B-$CB9F^wd;Rb~?f$3M|51_ce^c>) zbYo@s|CjCm)hP#V?U2k9gK+o<*#9AZqZmq)>GgPBsUIVOLH)fPZ{0mNt%ry6pEoCb zO)eFpG_i_aj8Xti%MutVU1s6`Ck6KZEd@afXD4|RMFM$5lw1s*|4(`(Z2lwa z|3*puKTb@Hobl<@ER6rdgoTCW|3QX{gMpsoe*?k?FGdvTdF>OmnYiMD#UQ|w0epam znWSzALk~b);6T|lD{z5U=qt*JcN?c3Kgedg&#Vk0gCjVkrSlR>mEiIJ!>o3&2b zEV546QCSr~B?(l2R$A%eMP_DB=PRL*@}#7;jOqy|+T_ za72mkEDjx;oPV!d*0v>VB>UqsxxZ-R$eN$3hL3CDc{K-n0!~bjMiX11no7*~8>VK{L}rt`FS7*_jR3|p zCTNGtvq?8d{RABgaTJJa!>HCiUar&AFIWYwJ||bHPU(FNQ`|a85O)Bhh-_`X z+z9Z)E-ec^wIR6>6|R zxDIr29-F&f=}>&mqIczvmyHM%YE)T8Eb+jHn(`bUb^kG1h7r~JbPBZKq%N=y3eVQB zakCkYFFDZdb-~o(q&O|;VYQ|?xb(0CS$vq#=|fhE`oIomcZuwkhH$FpU~iRG z&5eqBq~*At7L`&uX0Y6I`Kv29hbX0E;Tv(!xrvu&I!Gf@E(old?)p>KWDM|K zEwz|wBPKXjvolY&1SiukRYkuSBP55};}2T?slgJw`Y6 z)FpM0-^C#Jc_qaidM^w@J@?a=S6D= zsNrKPMECI=DT5ettmi`359CrUgbPJ;NaLlm-A-% zhcuvZ1$2(bjnWCq4)VxB40BECwEK3sizu2^1`@0RjG=5J`c3@o=Z+0H@jH?Eb7`>s z7MkmIWztM7v_bfHBuTe<1WZmz`Y6{b!*GPZn;KMdnoyW%3~0N+lK&RKdJxL>L68OV z$*v%e(FTBvRo?~p{+QOoN^w0>B8<0a=~w{<@%>TZx*}SkNIGo# zAhY>9KV-30j81OpGvD?5MK<0G;lt=0&=nf#uceVo>X;Jvz|Ve>vwR`uwRgBoWbM;G z!LL|W?dcNojOr%GRog#|QSx$IhOr}dxY$7Jkx``}nz^4@!xABnE3zgWYaYpu4T?=V zp&l8L1_rAwA{3~o2Vm(Qfj@*0*q(0LVev0mr=uf1<$dZTWHURNSy(FsY(STfr4{-aqq315J8AFL5sVx+~xOJv7`beu8V# zgfez&t&DF&*O>XF8m1A(UvSgTX10&vV)L7D%NISBH?flY#)-_(0_??TN5*%Hx%yO zleYp(Wpy&gi2)*8;8mxgt*SGk&{CzCdqJ{`K_GeGChHn>qM7Y82j}LX(ilyN6}h@1 z#wK5+KnkN~HfYR~TP*=m(ZIQ&mGCdTGI>=4sN1ny6bw(ekq!d+)oWkJUH;XyFT1p9 zQas~!U$F#NEqoEwfKi6*zPhti7*2&5 zyi&8I5NWU0NP92+bAVPG-DY)VpyPr(aEZhkngY7fwlGAsA`i{y$Gs1r-yuPmVZ$NJJJ?Vz{$2m+ZS zWL*)(6HAcO;e*%f3npHxH854b!B{(|h2%THcwC-Ve5Mb@+mNtMUqJjyX~q1(DDlsr zcwB!M7m`{0XFqg) z-W^67hM>I^8vo!=&TUUBvDR(+I?3=ZK7Sd?f0A66b0Q80y*Y3v1KrG}yM$is;cAAJ z*rB)kgom@R{nO03M=4S+3Bx)besR>nLWydB7k_#U7rRkRDK!D5)j%34!4;E6ZWZ}h z)0qWNcr(oSVN5+Arg+L#F`I|$JrWXWhi@Z+4Tb(D*yo$8k`{NOl)kb0={ULw^XxDf ztrUFHE!W9sz3cvI+PYTB;GYXvl7J4dlL#T78Nt$;X7%EhhYO_k`*AN$;o_w=VpVtj z6*Bt!3+NyOk5VKz>6;%RLe7Bo=&8im;qSiA51L!ds>Mp(Ed`7`<;^`&vbLM985uqU zjezk(MGAQEZt?YMM34?SJ}FmSTA2aH;P*ss24kYE?;wem;qhP*|FUPTn9#wC&G0&$ z9(g%V?y0=1j5!xE8N3&`f5^tS4oRrBosqZm`tIGoc3z{_cQ2h{8PDx91Sviuz`6u6 zn-TFt`j%UQn_cFS9;_msL#12P#gb^1toQ{}1I9s<~lcW)`1TA$>Xosp!%*Wu3 z#EQ#wHMFm)q3(fAuUF^pe$X|nA6D9ifI8vu@j{}pvo2O74DKC>xR{&h$Y$L$W78P~ z0`9R@-2~0segU)+AD9$YSY7yoQ}YV0s_p zkCg8&s@{Fdy8*g;#Obi`_80u(mMx+2vdZbx%|yMFW8Nwl4Xk)hTf_q_-y8g z#h`A%V!P2uJFUAK&LnFID^EksLTT7yfPV;>EUF%?)z2c+jjE=^2sVEuq~hMqa|U~W z_iyK#`KYv}@Z|kH>6<25IgNSzDockRWpJrq*^Q^o&E z{i^%b5PtE-N{pM$VUpI-wfW1N9=>7jH)(lUlN5j3s4|5j@um~)_oH(2-u|5}vZ2k} zRZ)}P0fUu%zKMSuT(5c4i2hNOI&05xe|jDTK<6x#5E zo_lK$r8W`SeCfIUVr}G&ju6s{5&4)~jpIh^v36`R#eQzfdVW)SgwR-(&k9X^92Hvb zJXn}UJe*YpavYuW;Pbe-MXMf?QBUZv4FimEQI|1RW!2f^esp){iEwF7tw6dY;hio< z?bdI)md_)&FZmHB?3nA^#04RD)+edu< zn9*1E>nSx%h0#s-*iaIJskPyghg;uX8BN(!8Lb{nuYAuTI?+N`=oV$m3t^7Zm}Hou zpEk<%9e2;p;-Sko?whOMInvwSCGL_4kGk}E&*c)$0{%xI~= z$K*@%>KJS!=+kv;$hCQ|aZQPul%)VT>xX{x&KuS_$ zrk)}K(7}j;?8)45Y`LfWhl9O!-=>-2i8$$u!8-LdWkfTM^9zX!eC+4N6NBqW>=I%G zQS$@twCv(Ph=MJPe0hM6QUhDm2>CG{7c{5-Oz@3JV;kji%|?#9fr8n?V-?l|j(=qD z>MZ^%g08^st)oU-J*6p)ABZ6kk${yoWblmmK@q|h&ZUS$eSY?u-$IX$lT=T+2nly? zRLmQ-gUAw^5LH28EAN@-=r@g_K-xCp1+h@L=6!cRJGS-N}3LfVI zQ!7K&Lp~{CvkQg~0wKM?RUT`oJC;Kw2I*jtPMKtQyLbp8jqG$wq(Fs3z{Y}Qqk?^Y zKN9s@aUrL`H8n8NEQA0mRf&+WRRJ;{_6dpT^=0GOn@hh!-;G;Bro2nwI%N0f#z;g8 zY#4Nl5+1CU8IE0W5(-oJbkjiB)f8&qiJB%89v3bdwCS}K9TQj)p0G*`)c$){G%)hA zBWTM2rv5_1wOf=$1Nbm4H+XgLXxwbA)nOfXDUv6E2KMn*#<~1ZJ<>*0XCt*W43dJF z#P#skobonr?KBbkqu1hnNA6Hc>Q8d08s0Xh1DEdR0g|2b1kVNkt_mer_)*nL6W5~W zpn2c`hD;8Vmva{Cc{YZN&~7xUm>K#f!4^|-%{2TWXr$(wP^(?qGF571M59AuK6G1m z`*hvJv{hn8ky!4uj6-wStKr9ZGfGyg(alhxP0}qIl(d?7L=kN@w>t^s^PU0{A!#R^ zI^tpMK)I#5*6olsX+c^p_3=v6hk>%6*a~MLJ0;r_^MR{Q3FR(y68h2>qz_OlA44ZQ z-G6djSy4#Wl$YQ6vm?Hj1RHGIXeT~%T%+&rsC|NSpM55T&E*6s4Ze<%1rAa=HAZ-Q zju{Jb>>qT561WiPeIhSY`1#B?FDVH2Q}|BeG|EW{NnyY%4G(5mvWLhna(iv=3ZIIGG__Dr^tEdT{NO+?tpI|-cXwCrJz5(AM^@k5m1QeYi(FDZ`@!pjYo* z;)r}S3_?8Qcur75CRGd=W*(3juvWt>z$0mAWniMNu8_c9NOTp6J~oThtVEVi4?Ao~ za!Tj~z*QfouvyMzU9%rVbfiMD0;vVv2T<~7jS-ysfMmU~bojHL#eUy5QAFEiA<58O z4Bv?OIcaKDs5LLKT0oYqo1lv*9(Hi@zG_oNYv*4?>A(}KHl_pN1~&NpBC^#=gJ#~O zc3P%SIc%)$a)e^s<3h_|E+Wy;0ivAgo%js2``3Mz;oD+&3ZOLJTuIls`NyVasMrL~ zBT@v#XKxAYRGq##r7HAxwa~Vo(nJ=4KvX)<{6<2ux@kjHAYtqfDI!felX+^e=4(If zmB|iny;A6elY1gfI>y6ao?g?n}f=HQ;Ot)`2|9s$ampQGwxOjNO0-cR%h3Bzs zK(U*_x047>r)VjaF1qKk8e}5xNIg+S-zVl-DwpP#c;A3ZGEzhKf-I7XxGv?-mC}^&^YHH|+xXeR(}LB6@{}$==eDT?6Rf|3Fr?~I zyjdca%O?=3xj~&0FOYDqF=BRQBJ9G)di6sT-%vMOy|gr+c9 zZ2g0tx$rL{quQz z+acgrcKBw*`+!6q6D3(b2aCLDJ zI(y~UJT>=$0w_KBS?9_!bcgJ#TSyz@rO|BD5?qj8V}=bM8T%oF1k-k&)aynTuC)Q~ z6~R&`*rMVm?Uz|rZ!$Bui%xw*Lee-8IY>jl9)C}%jpI&u9k;D%%2JsB`k$A*SK=yF8GoP1)*Rrq$o;Jzz6DH@Fxt^4uh0w^-$S!ucDM zMGVRT)^@RNi_{7D+6z|8V79r9f7NA0n0f>VJG(_mJp{aF60Lb2{>!zd_|gEVzekgC zo#i--B|&LNl^Hd0rJq(9*%UYV8NKLxAto$WuspLXmM|xf&IDW+f&q`+qTYzs9eC2Y zXM6GVaAc-?d2ZtOTSi`J_m9u?Wn>DJ?d^HthS@-}U|RzM)HJ!ioM8Aoxkc-hoh0N^ zzT4`S9-LDWUcf>hpV`SL%@NWxh9-hFW;xazTL7^F~dYTlz77@kI1D%L&x+G=Ufwd_WrQLuyjfCwBSlzut^aGdDI!oz_@-G1lhZ*5C3H~DIvt_ennJ2pWU?8$vq zeb^zU^94t_`xhMowT%}~X7^5El*1$=mn$;OKup@@-E?zBIexKy#k#0NuG9bB_Ya

5*$lR01@1n#dM;X)aJScKyK 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 b*2w;)iItEAVKwk&)O2jyi1ziRbD8LGQYP%b literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/encrypted1.out b/qpdf/qtest/qpdf/encrypted1.out new file mode 100644 index 0000000..99102b9 --- /dev/null +++ b/qpdf/qtest/qpdf/encrypted1.out @@ -0,0 +1,578 @@ +D:20000914005716 +Acrobat Distiller 4.05 for Windows +<68735ba82e3c37b5b8228510ba7e3ff6a57adff9901483de2357988c0a42aa48> + +1 g +/GS1 gs +1 i +178.226 60.781 344.491 -11.279 re +f +BT +/F4 1 Tf +9.999 0 0 9.999 178.2259 51.9016 Tm +0 g +0.003 Tc +0 Tw +[(T)7(h)-1(e)-249(U)5(ni)5(code)-249(St)5(andar)8(d)-253(3)-1(.0,)-251(C)10(opyr)8(i)5(ght)-247(©)-221(1991-2000,)-251(U)5(n)-1(i)5(c)3(ode,)-251(I)0(nc.)-251(A)2(l)5(l)-247(r)8(i)5(ght)5(s)-244(r)8(es)8(er)8(ved)]TJ +ET +1 g +72.035 60.781 15.119 -11.279 re +f +BT +9.999 0 0 9.999 72.0347 51.9016 Tm +0 g +0.004 Tc +(542)Tj +ET +1 g +490.8 769.802 31.197 -15.959 re +f +BT +/F5 1 Tf +13.9985 0 0 13.9985 490.7998 756.9629 Tm +0 g +0.0057 Tc +[(25F)8.1(F)]TJ +ET +1 g +242.541 769.802 108.831 -15.959 re +f +BT +13.9985 0 0 13.9985 242.5405 756.9629 Tm +0 g +0.0027 Tc +[(Geom)12.8(etric)-247.6(Shapes)]TJ +ET +1 g +72.035 769.802 31.317 -15.959 re +f +BT +13.9985 0 0 13.9985 72.0347 756.9629 Tm +0 g +0.0057 Tc +[(25A)7.7(0)]TJ +ET +0 G +2 J 1 j 1.49 w 10 M []0 d +202.104 727.685 m +202.104 79.259 l +391.928 727.685 m +391.928 79.259 l +202.104 712.807 m +391.928 712.807 l +202.104 79.259 m +391.928 79.259 l +S +BT +/F6 1 Tf +9.999 0 0 9.999 209.0633 719.286 Tm +-0.004 Tc +[(25A)-1389(25B)-1377(25C)-1346(25D)-1370(25E)-1413(25F)]TJ +ET +1 g +360.371 396.033 31.557 -39.597 re +f +/Cs9 cs 0 /P1 scn +360.371 396.033 31.557 -39.597 re +f +1 g +360.371 356.436 31.557 -39.597 re +f +/Cs9 cs 0 /P1 scn +360.371 356.436 31.557 -39.597 re +f +1 g +360.371 316.84 31.557 -39.597 re +f +/Cs9 cs 0 /P1 scn +360.371 316.84 31.557 -39.597 re +f +1 g +360.371 277.243 31.557 -39.597 re +f +/Cs9 cs 0 /P1 scn +360.371 277.243 31.557 -39.597 re +f +1 g +360.371 237.646 31.557 -39.597 re +f +/Cs9 cs 0 /P1 scn +360.371 237.646 31.557 -39.597 re +f +1 g +360.371 198.049 31.557 -39.597 re +f +/Cs9 cs 0 /P1 scn +360.371 198.049 31.557 -39.597 re +f +1 g +360.371 158.453 31.557 -39.597 re +f +/Cs9 cs 0 /P1 scn +360.371 158.453 31.557 -39.597 re +f +1 g +360.371 118.856 31.557 -39.597 re +f +/Cs9 cs 0 /P1 scn +360.371 118.856 31.557 -39.597 re +f +0.248 w +202.104 712.807 m +202.104 79.259 l +233.781 712.807 m +233.781 79.259 l +265.339 712.807 m +265.339 79.259 l +297.016 712.807 m +297.016 79.259 l +328.693 712.807 m +328.693 79.259 l +360.371 712.807 m +360.371 79.259 l +391.928 712.807 m +391.928 79.259 l +202.104 712.807 m +391.928 712.807 l +202.104 673.21 m +391.928 673.21 l +202.104 633.613 m +391.928 633.613 l +202.104 594.016 m +391.928 594.016 l +202.104 554.42 m +391.928 554.42 l +202.104 514.823 m +391.928 514.823 l +202.104 475.226 m +391.928 475.226 l +202.104 435.63 m +391.928 435.63 l +202.104 396.033 m +391.928 396.033 l +202.104 356.436 m +391.928 356.436 l +202.104 316.84 m +391.928 316.84 l +202.104 277.243 m +391.928 277.243 l +202.104 237.646 m +391.928 237.646 l +202.104 198.049 m +391.928 198.049 l +202.104 158.453 m +391.928 158.453 l +202.104 118.856 m +391.928 118.856 l +202.104 79.259 m +391.928 79.259 l +S +BT +/F7 1 Tf +21.998 0 0 21.998 209.6633 687.6086 Tm +0 g +0 Tc +()Tj +0 -1.8 TD +()Tj +T* +()Tj +T* +()Tj +T* +()Tj +T* +()Tj +T* +()Tj +T* +()Tj +T* +( )Tj +T* +(\012)Tj +/F9 1 Tf +0.2673 -1.8 TD +()Tj +T* +()Tj +/F7 1 Tf +-0.3436 -1.8 TD +( )Tj +T* +( )Tj +0.2018 -1.8 TD +(\015)Tj +T* +()Tj +1.2491 27.0002 TD +()Tj +0 -1.8 TD +()Tj +0.06 -1.8 TD +()Tj +T* +()Tj +0.2127 -1.8 TD +()Tj +T* +()Tj +-0.1636 -1.8 TD +()Tj +T* +()Tj +0.1855 -1.8 TD +()Tj +T* +()Tj +-0.1418 -1.8 TD +()Tj +T* +()Tj +-0.0927 -1.8 TD +()Tj +T* +()Tj +0.2127 -1.8 TD +()Tj +T* +()Tj +1.2764 27.0002 TD +()Tj +0 -1.8 TD +( )Tj +0.1855 -1.8 TD +(!)Tj +T* +(")Tj +-0.1418 -1.8 TD +(#)Tj +T* +($)Tj +-0.0927 -1.8 TD +(%)Tj +T* +(&)Tj +T* +(')Tj +T* +(\()Tj +0.0927 -1.8 TD +(\))Tj +-0.0927 -1.8 TD +(*)Tj +T* +(+)Tj +T* +(,)Tj +T* +(-)Tj +T* +(.)Tj +1.44 27.0002 TD +(/)Tj +0 -1.8 TD +(0)Tj +T* +(1)Tj +T* +(2)Tj +T* +(3)Tj +T* +(4)Tj +T* +(5)Tj +T* +(6)Tj +0.2018 -1.8 TD +(7)Tj +-0.2018 -1.8 TD +(8)Tj +T* +(9)Tj +T* +(:)Tj +T* +(;)Tj +T* +(<)Tj +T* +(=)Tj +T* +(>)Tj +1.44 27.0002 TD +(?)Tj +0 -1.8 TD +(@)Tj +T* +(A)Tj +T* +(B)Tj +T* +(C)Tj +T* +(D)Tj +0.2018 -1.8 TD +(E)Tj +-0.2018 -1.8 TD +(F)Tj +T* +(G)Tj +T* +(H)Tj +T* +(I)Tj +T* +(J)Tj +T* +(K)Tj +T* +(L)Tj +T* +(M)Tj +T* +(N)Tj +1.4346 27.0002 TD +(O)Tj +0 -1.8 TD +(P)Tj +T* +(Q)Tj +T* +(R)Tj +T* +(S)Tj +T* +(T)Tj +T* +(U)Tj +T* +(V)Tj +/F11 1 Tf +5.9995 0 0 5.9995 212.183 675.2496 Tm +0.004 Tc +[(25A)11(0)]TJ +0 -6.6 TD +[(25A)11(1)]TJ +T* +[(25A)11(2)]TJ +T* +[(25A)11(3)]TJ +T* +[(25A)11(4)]TJ +T* +[(25A)11(5)]TJ +T* +[(25A)11(6)]TJ +T* +[(25A)11(7)]TJ +T* +[(25A)11(8)]TJ +T* +[(25A)11(9)]TJ +-0.04 -6.6 TD +[(25A)11(A)]TJ +T* +[(25A)11(B)]TJ +-0.04 -6.6 TD +[(25A)11(C)]TJ +T* +[(25A)11(D)]TJ +0.04 -6.6 TD +[(25A)11(E)]TJ +0.02 -6.6 TD +[(25A)11(F)]TJ +5.28 99 TD +[(25B)11(0)]TJ +0 -6.6 TD +[(25B)11(1)]TJ +T* +[(25B)11(2)]TJ +T* +[(25B)11(3)]TJ +T* +[(25B)11(4)]TJ +T* +[(25B)11(5)]TJ +T* +[(25B)11(6)]TJ +T* +[(25B)11(7)]TJ +T* +[(25B)11(8)]TJ +T* +[(25B)11(9)]TJ +-0.04 -6.6 TD +[(25B)11(A)]TJ +T* +[(25B)11(B)]TJ +-0.04 -6.6 TD +[(25B)11(C)]TJ +T* +[(25B)11(D)]TJ +0.04 -6.6 TD +[(25B)11(E)]TJ +0.02 -6.6 TD +[(25B)11(F)]TJ +5.26 99 TD +0.0053 Tc +(25C0)Tj +0 -6.6 TD +(25C1)Tj +T* +(25C2)Tj +T* +(25C3)Tj +T* +(25C4)Tj +T* +(25C5)Tj +T* +(25C6)Tj +T* +(25C7)Tj +T* +(25C8)Tj +T* +(25C9)Tj +-0.04 -6.6 TD +(25CA)Tj +T* +(25CB)Tj +-0.02 -6.6 TD +(25CC)Tj +T* +(25CD)Tj +0.02 -6.6 TD +(25CE)Tj +0.02 -6.6 TD +(25CF)Tj +5.3 99 TD +(25D0)Tj +0 -6.6 TD +(25D1)Tj +T* +(25D2)Tj +T* +(25D3)Tj +T* +(25D4)Tj +T* +(25D5)Tj +T* +(25D6)Tj +T* +(25D7)Tj +T* +(25D8)Tj +T* +(25D9)Tj +-0.04 -6.6 TD +(25DA)Tj +T* +(25DB)Tj +-0.02 -6.6 TD +(25DC)Tj +T* +(25DD)Tj +0.02 -6.6 TD +(25DE)Tj +0.02 -6.6 TD +(25DF)Tj +5.34 99 TD +0.004 Tc +[(25E)11(0)]TJ +0 -6.6 TD +[(25E)11(1)]TJ +T* +[(25E)11(2)]TJ +T* +[(25E)11(3)]TJ +T* +[(25E)11(4)]TJ +T* +[(25E)11(5)]TJ +T* +[(25E)11(6)]TJ +T* +[(25E)11(7)]TJ +T* +[(25E)11(8)]TJ +T* +[(25E)11(9)]TJ +-0.04 -6.6 TD +[(25E)11(A)]TJ +T* +[(25E)11(B)]TJ +-0.04 -6.6 TD +[(25E)11(C)]TJ +T* +[(25E)11(D)]TJ +0.04 -6.6 TD +[(25E)11(E)]TJ +0.02 -6.6 TD +[(25E)11(F)]TJ +5.3 99 TD +0.0023 Tc +(25F0)Tj +0 -6.6 TD +(25F1)Tj +T* +(25F2)Tj +T* +(25F3)Tj +T* +(25F4)Tj +T* +(25F5)Tj +T* +(25F6)Tj +T* +(25F7)Tj +/F6 1 Tf +9.999 0 0 9.999 191.4248 687.6086 Tm +0 Tc +(0)Tj +0 -3.9601 TD +(1)Tj +T* +(2)Tj +T* +(3)Tj +T* +(4)Tj +T* +(5)Tj +T* +(6)Tj +T* +(7)Tj +T* +(8)Tj +T* +(9)Tj +-0.06 -3.9601 TD +(A)Tj +T* +(B)Tj +-0.024 -3.9601 TD +(C)Tj +T* +(D)Tj +0.024 -3.9601 TD +(E)Tj +0.024 -3.9601 TD +(F)Tj +ET +1.49 w +202.104 727.685 m +202.104 79.259 l +391.928 727.685 m +391.928 79.259 l +202.104 712.807 m +391.928 712.807 l +202.104 79.259 m +391.928 79.259 l +S +test 2 done diff --git a/qpdf/qtest/qpdf/eof-reading-token.out b/qpdf/qtest/qpdf/eof-reading-token.out new file mode 100644 index 0000000..58e5b09 --- /dev/null +++ b/qpdf/qtest/qpdf/eof-reading-token.out @@ -0,0 +1,5 @@ +checking eof-reading-token.pdf +PDF Version: 1.3 +File is not encrypted +File is not linearized +object stream 12 (file position 5): EOF while reading token diff --git a/qpdf/qtest/qpdf/eof-reading-token.pdf b/qpdf/qtest/qpdf/eof-reading-token.pdf new file mode 100644 index 0000000000000000000000000000000000000000..080bb50b96ae972897472b2b34c39037ff0b5ff1 GIT binary patch literal 1632 zcmbVMOK;Oa5Vq6u(2Bx|`v}R(91!Kr(mJ4LR0_oJ_mg{5J5X` zvBgEkqXvCEE+B4Xw0RJ4IqpOPObT`(b zE8HkWBXve~Cqg7O9d85~pLYe@{*%u95a%Ak=FVxs7%CaD0MA<5^|uNABAQ{9(=Z@E=q--IV_6JM%Qzf*N*73x{kFl{m&`hUX`{V>Nt&?MbR+ zwFtEZ!zeVHO~Y{;uEV{8XW9+VE?AyZa16_%N?Mt*wQ75mWy@2)=+KY;MW?C81 V15yzrqMKkz%sgsQ(^fW1>^Baot?2*& literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/eof-terminates-literal.out b/qpdf/qtest/qpdf/eof-terminates-literal.out new file mode 100644 index 0000000..2feaefd --- /dev/null +++ b/qpdf/qtest/qpdf/eof-terminates-literal.out @@ -0,0 +1,6 @@ +checking eof-terminates-literal.pdf +PDF Version: 1.3 +File is not encrypted +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/eof-terminates-literal.pdf b/qpdf/qtest/qpdf/eof-terminates-literal.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e695ec58852d91ba910e13ed76ef65d630224950 GIT binary patch literal 1632 zcmbVMOK;Oa5Vq6u(2Bx|`v}R@nsSPq-<55f8hk}Gcpj0G0 z*kemRQXzJh4So~fT?>B(_zirYF2^De@eKI8Y{jP|&35$Y!CDgD!T=4rA8HSCfW4%r|oag5Cj&rf#8YWN7-lT^uS z5o!yDQD`=shT}F|hkFIjv>TpXuso;W7?xLe7mxo!qTKd5YOUrG4ww=SOxZHQlsA2w zZbGIw1s_$haXiNHT~XDqikiEDqob%3r*X_EIpr+cmuQ)yPF_ZP4()5S=N0wTv@)Ux Uq#{T}H^GvadDNn&t!$RqZ~k+w-~a#s literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/extra-header-lin-newline.pdf b/qpdf/qtest/qpdf/extra-header-lin-newline.pdf new file mode 100644 index 0000000000000000000000000000000000000000..7a5ff3e660096b540e88814b5a06fdf1ea4c2f59 GIT binary patch literal 1334 zcmc&!J#Q015H*QF;UsB%eSmj=G4)7^GqkQF?|sUep2o1~KF@$F}EV2>JJO9;I_J z-S(;Cz?XJRttQCFm(Sg$3C1gr%$Aax`kkk@J|4v|&YpJ$S+S73XYQJXq} zHq%)&7!k=6Sqpn0)B!;rjP8YtN(>HfFnr}}Fg{|j{@6}{wQr{WR7>YQlT25k#x@X{yI(;PC z5no9LIJhQ0E=BnROAT+8r)ogPh-xBB`e_RxDjh=1GJ2ul>qMoJQX*;9g#>RB8S$W~ znIS<{&RNTm`k3<%d}!9k@H6A0R{eCu8m6_iw7z)q@x}4*-i@1=ho6^*Wc}9Jm&VfB z*Yw)OLgD<<)!`foswq`<8~dz;=tMD)u#?+RfyjGW;hE3?$(raM3K_LHx;RFGqPPR( zaTMQ=vuGOF;5}3>M0eNwyHYE!a4Wa#jm|Z7ydpF&RZjYvV)7trXX@X9-)f5dDRJ2h lbEDw{EBB&ujqBiC!(Q%B{jZt$Y1TX1FBbeOPgr*DieG4bR>=SW literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/extra-header-lin-no-newline.pdf b/qpdf/qtest/qpdf/extra-header-lin-no-newline.pdf new file mode 100644 index 0000000000000000000000000000000000000000..e115c46218cf923edddc935e7d0fd216bb7330fd GIT binary patch literal 1334 zcmc&!J#Q015H*QF;Us%pgFcKAFueqJuotgLEyerl!;ca?{8O3)$UjH;K zFd^C5GnSWuJd9$&)99J#0L2|p#%v&Kumw)QfKnf}foy;SWEFR20Hmr8HgV&*P%0TB z?xb!&K}dO3yGa7Ii?sK@54!vF-U7LjL`nN9kP5 zcjoT~9@47Tv<5ZJnV3v@)DtNv*6T?k0c$}WNCU|SLeeC8t;k>CDy$)pY97F zWiELy>CUK)@Fy3-s3#E?342_MifAVtywU*X;y8)8E1!T($7NH&`^NB9yVYv(R?FxV z7Cw}&_(#Vtub+J1KUw&8M&I16w%(o;3Y*Ut->b>Wq`q@8V<_UJYB`A|>Yjl+?(~u9 zM0_O~;^3P2xD@3NEH%6}p5nnAQC(!oAZ;T=r9+5W#xE3nov2h&N+j)ukl;-sV;&SW zGbE_WIcqsmA9MbJ56$`o{LDD7*FGJxrfF?1tuG#bd~r0ocjM;e(dVTRS-*AqrMYza zHNAGeP&m7Ebu>qUYD!hz!age@I#CQIZ09yqAo8A8cqTMJvL<>5LPl+lE{;*4DDDDz z9L4wJESd(YypPI-=_DklR?F?kSmGWGAkZ*@ifl(=k$ lx$*FUm3vXS#&vM6VK?`u{?|QN6G?wVY{l{t5>hu&3-p~;60?I`Ss7|zoglOj#@0Z)UXoz zHAue7h2+Eo7u4w+(rSUzXLDYHkC6d5qxWw)I31>0uIA8g6E0__(4;FsM=g=h1LujD zl`sZsp_2-{<*T74T|=ctF(m}scF*`sup_lb78mcx^C3=sK(0P3jOv}N0Wa0En4(Uj zI8&IhFCK)JsNF_Hp{7HwA=*c_!x%kRCNZ5WIZwHqqboszoFdn}z-P`h@A9ddSx~79 z&K6|-sU(+!{*M(Mx&F&W@8*~9A3tm!-Mx2f^RuyWdiO7WjT#rfi#wM$u6?_HdxNg+ zkURg3%&O}VE4dxPIpO&`uEmsrb1bo?kaKWe3Hex-q7FP~3*1SDh7Xsg+AhdUhTq!( zEm!TgncuV;qb1!8i}+f@q*~;<;Ag~zn7I23qA;W(oWVXuQ?OZ(bu38^VqOp*#QYQ& zX|5~Sz&*r<9$He>>4J$I-8VZOC}j?pJ&i+g&LIY;*M)J5dVv?FeuP?+G)}2clOXb= efYOBeaT>P&UokP~pwz6;)`l<$@eetEk&%DLCgJA* literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/extra-header-no-newline.pdf b/qpdf/qtest/qpdf/extra-header-no-newline.pdf new file mode 100644 index 0000000000000000000000000000000000000000..1df11d302ac1e9e84243250ffec379d49c33d1e0 GIT binary patch literal 823 zcmah|OODe(5alDJ&=PkjB)kLsX@8|Cf=R|A0)~)8Vi9H0lk|i}PWQ;}Fo6{p;0CNX z0vBML5kg`G>){gY5Y?S=JW>|e3)`>iRlR!Eb_Tutf&Y*a=j)%(e~IHjS1p%ZYU03= z0?E$`Avy8E19kj{wA)ka-?r>orspZm3eDm$C? za<(MvPZhZs4t|``u@}5-^>2Rp{_(@+(cOEuHa}Y%w}1cq*SK~5yS#I8Rk8 zCG*lhBeU*$z$$J>aG&tvE!Sekz&(`MQpg3kuY`OoE71T)Y>7L`(eTmgSlb1e$?$tS zpsm&TZRR(vCTK}7$0WYiFs&E4F8K-ZAR*rFf;ft31Shb=Xa+V4vcb}H5A(xh4+}C} zq`9teLvNoO`DjUcBsFXQe_B4*fdkzV>{T@u()DQhA3u4roW=Tc^nuc)@ fhm@u?NV2H&|BR_Q2bE@}wl+jzgn!84i=6xeKjPsR literal 0 HcmV?d00001 diff --git a/qpdf/qtest/qpdf/fax-decode-parms.out b/qpdf/qtest/qpdf/fax-decode-parms.out new file mode 100644 index 0000000..17f4ce3 --- /dev/null +++ b/qpdf/qtest/qpdf/fax-decode-parms.out @@ -0,0 +1,6 @@ +checking fax-decode-parms.pdf +PDF Version: 1.4 +File is not encrypted +File is not linearized +No syntax or stream encoding errors found; the file may still contain +errors that qpdf cannot detect diff --git a/qpdf/qtest/qpdf/fax-decode-parms.pdf b/qpdf/qtest/qpdf/fax-decode-parms.pdf new file mode 100644 index 0000000000000000000000000000000000000000..2d8c336be6424b1c29dac8caa4e14b2609d2b359 GIT binary patch literal 1565966 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