1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465
|
# This file is generated by rake. Do not edit.
##
# The Zlib module contains several classes for compressing and decompressing
# streams, and for working with "gzip" files.
#
# == Classes
#
# Following are the classes that are most likely to be of interest to the
# user:
# - Zlib::Inflate
# - Zlib::Deflate
# - Zlib::GzipReader
# - Zlib::GzipWriter
#
# There are two important base classes for the classes above: Zlib::ZStream
# and Zlib::GzipFile. Everything else is an error class.
#
# == Constants
#
# Here's a list.
#
# Zlib::VERSION
# The Ruby/zlib version string.
#
# Zlib::ZLIB_VERSION
# The string which represents the version of zlib.h.
#
# Zlib::BINARY
# Zlib::ASCII
# Zlib::UNKNOWN
# The integers representing data types which Zlib::ZStream#data_type
# method returns.
#
# Zlib::NO_COMPRESSION
# Zlib::BEST_SPEED
# Zlib::BEST_COMPRESSION
# Zlib::DEFAULT_COMPRESSION
# The integers representing compression levels which are an argument
# for Zlib::Deflate.new, Zlib::Deflate#deflate, and so on.
#
# Zlib::FILTERED
# Zlib::HUFFMAN_ONLY
# Zlib::DEFAULT_STRATEGY
# The integers representing compression methods which are an argument
# for Zlib::Deflate.new and Zlib::Deflate#params.
#
# Zlib::DEF_MEM_LEVEL
# Zlib::MAX_MEM_LEVEL
# The integers representing memory levels which are an argument for
# Zlib::Deflate.new, Zlib::Deflate#params, and so on.
#
# Zlib::MAX_WBITS
# The default value of windowBits which is an argument for
# Zlib::Deflate.new and Zlib::Inflate.new.
#
# Zlib::NO_FLUSH
# Zlib::SYNC_FLUSH
# Zlib::FULL_FLUSH
# Zlib::FINISH
# The integers to control the output of the deflate stream, which are
# an argument for Zlib::Deflate#deflate and so on.
#--
# These constants are missing!
#
# Zlib::OS_CODE
# Zlib::OS_MSDOS
# Zlib::OS_AMIGA
# Zlib::OS_VMS
# Zlib::OS_UNIX
# Zlib::OS_VMCMS
# Zlib::OS_ATARI
# Zlib::OS_OS2
# Zlib::OS_MACOS
# Zlib::OS_ZSYSTEM
# Zlib::OS_CPM
# Zlib::OS_TOPS20
# Zlib::OS_WIN32
# Zlib::OS_QDOS
# Zlib::OS_RISCOS
# Zlib::OS_UNKNOWN
# The return values of Zlib::GzipFile#os_code method.
module Zlib
ZLIB_VERSION = "1.2.3"
BEST_COMPRESSION = 9
BEST_SPEED = 1
BLOCK = 5
BUF_ERROR = -5
DATA_ERROR = -3
DEFAULT_COMPRESSION = -1
DEFAULT_STRATEGY = 0
DEFLATED = 8
ERRNO = -1
FILTERED = 1
FINISH = 4
FIXED = 4
FULL_FLUSH = 3
HUFFMAN_ONLY = 2
MEM_ERROR = -4
NEED_DICT = 2
NO_COMPRESSION = 0
NO_FLUSH = 0
OK = 0
PARTIAL_FLUSH = 1
RLE = 3
STREAM_END = 1
STREAM_ERROR = -2
SYNC_FLUSH = 2
VERSION_ERROR = -6
# DEF_MEM_LEVEL not available
MAX_MEM_LEVEL = 9
MAX_WBITS = 15
OS_MSDOS = 0x00
OS_AMIGA = 0x01
OS_VMS = 0x02
OS_UNIX = 0x03
OS_ATARI = 0x05
OS_OS2 = 0x06
OS_MACOS = 0x07
OS_TOPS20 = 0x0a
OS_WIN32 = 0x0b
OS_VMCMS = 0x04
OS_ZSYSTEM = 0x08
OS_CPM = 0x09
OS_QDOS = 0x0c
OS_RISCOS = 0x0d
OS_UNKNOWN = 0xff
# OS_CODE not available
unless defined? OS_CODE then
OS_CODE = OS_UNIX
end
# from zutil.h
unless defined? DEF_MEM_LEVEL then
DEF_MEM_LEVEL = MAX_MEM_LEVEL >= 8 ? 8 : MAX_MEM_LEVEL
end
class Error < StandardError; end
class StreamEnd < Error; end
class NeedDict < Error; end
class StreamError < Error; end
class DataError < Error; end
class BufError < Error; end
class VersionError < Error; end
class MemError < Error; end
##
# Zlib::ZStream is the abstract class for the stream which handles the
# compressed data. The operations are defined in the subclasses:
# Zlib::Deflate for compression, and Zlib::Inflate for decompression.
#
# An instance of Zlib::ZStream has one stream (struct zstream in the source)
# and two variable-length buffers which associated to the input (next_in) of
# the stream and the output (next_out) of the stream. In this document,
# "input buffer" means the buffer for input, and "output buffer" means the
# buffer for output.
#
# Data input into an instance of Zlib::ZStream are temporally stored into
# the end of input buffer, and then data in input buffer are processed from
# the beginning of the buffer until no more output from the stream is
# produced (i.e. until avail_out > 0 after processing). During processing,
# output buffer is allocated and expanded automatically to hold all output
# data.
#
# Some particular instance methods consume the data in output buffer and
# return them as a String.
#
# Here is an ascii art for describing above:
#
# +================ an instance of Zlib::ZStream ================+
# || ||
# || +--------+ +-------+ +--------+ ||
# || +--| output |<---------|zstream|<---------| input |<--+ ||
# || | | buffer | next_out+-------+next_in | buffer | | ||
# || | +--------+ +--------+ | ||
# || | | ||
# +===|======================================================|===+
# | |
# v |
# "output data" "input data"
#
# If an error occurs during processing input buffer, an exception which is a
# subclass of Zlib::Error is raised. At that time, both input and output
# buffer keep their conditions at the time when the error occurs.
#
# == Method Catalogue
#
# Many of the methods in this class are fairly low-level and unlikely to be
# of interest to users. In fact, users are unlikely to use this class
# directly; rather they will be interested in Zlib::Inflate and
# Zlib::Deflate.
#
# The higher level methods are listed below.
#
# - #total_in
# - #total_out
# - #data_type
# - #adler
# - #reset
# - #finish
# - #finished?
# - #close
# - #closed?
class ZStream < FFI::Struct
self.size = 56
layout :next_in, :pointer, 0,
:avail_in, :uint, 4,
:total_in, :ulong, 8,
:next_out, :pointer, 12,
:avail_out, :uint, 16,
:total_out, :ulong, 20,
:msg, :string, 24,
:state, :pointer, 28,
:zalloc, :pointer, 32,
:zfree, :pointer, 36,
:opaque, :pointer, 40,
:data_type, :int, 44,
:adler, :ulong, 48,
:reserved, :ulong, 52
#--
# HACK from MRI's zlib.c
#++
READY = 0x1
IN_STREAM = 0x2
FINISHED = 0x4
CLOSING = 0x8
UNUSED = 0x10
attr_accessor :flags
attr_reader :input
attr_reader :output
def self.inherited(subclass)
subclass.instance_variable_set :@layout, @layout
subclass.instance_variable_set :@size, @size
end
def initialize
super
self[:avail_in] = 0
self[:avail_out] = 0
self[:next_in] = nil
self[:opaque] = nil
self[:zalloc] = nil
self[:zfree] = nil
reset_input
@output = nil
@flags = 0
@func = nil
end
def closing?
@flags & CLOSING == CLOSING
end
def detatch_output
if @output.nil? then
data = ''
else
data = @output
@output = nil
self[:avail_out] = 0
self[:next_out] = nil
end
data
end
##
# Closes the stream. All operations on the closed stream will raise an
# exception.
def end
unless ready? then
warn "attempt to close uninitialized stream; ignored."
return nil
end
if in_stream? then
warn "attempt to close unfinished zstream; reset forced"
reset
end
reset_input
err = Zlib.send @func_end, pointer
Zlib.handle_error err, message
@flags = 0
# HACK this may be wrong
@output = nil
@next_out.free unless @next_out.nil?
@next_out = nil
nil
end
alias :close :end
def expand_output
if @output.nil? then
@output = ''
@next_out = MemoryPointer.new CHUNK if @next_out.nil?
@next_out.write_string "\000" * CHUNK
self[:next_out] = @next_out
else
have = CHUNK - self[:avail_out]
@output << @next_out.read_string(have)
self[:next_out] = @next_out # Zlib advances self[:next_out]
end
self[:avail_out] = CHUNK
end
##
# Finishes the stream and flushes output buffer. See Zlib::Deflate#finish
# and Zlib::Inflate#finish for details of this behavior.
def finish
run '', Zlib::FINISH
detatch_output
end
##
# Returns true if the stream is finished.
def finished?
@flags & FINISHED == FINISHED
end
##
# Flushes output buffer and returns all data in that buffer.
def flush_next_out
detatch_output
end
def in_stream?
@flags & IN_STREAM == IN_STREAM
end
def input_empty?
@input.nil? or @input.empty?
end
##
# The msg field of the struct
def message
self[:msg]
end
def ready
@flags |= READY
end
def ready?
@flags & READY == READY
end
##
# Resets and initializes the stream. All data in both input and output
# buffer are discarded.
def reset
err = Zlib.send @func_reset, pointer
Zlib.handle_error err, message
@flags = READY
reset_input
end
def reset_input
@input = nil
end
def run(data, flush)
if @input.nil? and data.empty? then
data_in = MemoryPointer.new 1
data_in.write_string "\000", 1
self[:next_in] = data_in
self[:avail_in] = 0
else
@input ||= ''
@input << data
data_in = MemoryPointer.new @input.length
data_in.write_string @input, @input.length
self[:next_in] = data_in
self[:avail_in] = @input.length
end
expand_output if self[:avail_out] == 0
loop do
err = Zlib.send @func_run, pointer, flush
available = self[:avail_out]
expand_output # HACK does this work when err is set?
if err == Zlib::STREAM_END then
@flags &= ~IN_STREAM
@flags |= FINISHED
break
end
unless err == Zlib::OK then
if flush != Zlib::FINISH and err == Zlib::BUF_ERROR and
self[:avail_out] > 0 then
@flags |= IN_STREAM
break
end
if self[:avail_in] > 0 then
@input = self[:next_in].read_string(self[:avail_in]) + @input
end
Zlib.handle_error err, message
end
if available > 0 then
@flags |= IN_STREAM
break
end
end
reset_input
if self[:avail_in] > 0 then
@input = self[:next_in].read_string self[:avail_in]
end
ensure
data_in.free
self[:next_in] = nil
end
##
# Returns the number of bytes consumed
def total_in
self[:total_in]
end
##
# Returns the number bytes processed
def total_out
self[:total_out]
end
end
set_ffi_lib 'libz'
# deflateInit2 is a macro pointing to deflateInit2_
attach_function :deflateInit2_, [
:pointer, # z_streamp strm
:int, # int level
:int, # int method
:int, # int windowBits
:int, # int memLevel
:int, # int strategy
:string, # ZLIB_VERSION
:int # (int)sizeof(z_stream)
], :int
def self.deflateInit2(stream, level, method, window_bits, mem_level, strategy)
deflateInit2_ stream, level, method, window_bits, mem_level, strategy,
ZLIB_VERSION, ZStream.size
end
attach_function :deflate, [:pointer, :int], :int
attach_function :deflateEnd, [:pointer], :int
attach_function :deflateParams, [:pointer, :int, :int],
:int
attach_function :deflateReset, [:pointer], :int
attach_function :deflateSetDictionary,
[:pointer, :string, :uint], :int
# inflateInit2 is a macro pointing to inflateInit2_
attach_function :inflateInit2_,
[:pointer, :int, :string, :int], :int
def self.inflateInit2(stream, window_bits)
inflateInit2_ stream, window_bits, ZLIB_VERSION, ZStream.size
end
attach_function :inflate, [:pointer, :int], :int
attach_function :inflateEnd, [:pointer], :int
attach_function :inflateReset, [:pointer], :int
attach_function :inflateSetDictionary,
[:pointer, :string, :uint], :int
attach_function :adler32_c, :adler32, [:ulong, :string, :uint],
:ulong
attach_function :crc32_c, :crc32, [:ulong, :string, :uint],
:ulong
attach_function :get_crc_table_c, :get_crc_table, [], :pointer
attach_function :zError, [:int], :string
# Chunk size for inflation and deflation
CHUNK = 1024
#--
# HACK from zlib.c
#++
GZ_EXTRAFLAG_FAST = 0x4
GZ_EXTRAFLAG_SLOW = 0x2
##
# Zlib::Deflate is the class for compressing data. See Zlib::ZStream for
# more information.
class Deflate < ZStream
##
# Compresses the given +string+. Valid values of level are
# <tt>Zlib::NO_COMPRESSION</tt>, <tt>Zlib::BEST_SPEED</tt>,
# <tt>Zlib::BEST_COMPRESSION</tt>, <tt>Zlib::DEFAULT_COMPRESSION</tt>, and
# an integer from 0 to 9.
#
# This method is almost equivalent to the following code:
#
# def deflate(string, level)
# z = Zlib::Deflate.new(level)
# dst = z.deflate(string, Zlib::FINISH)
# z.close
# dst
# end
def self.deflate(data, level = Zlib::DEFAULT_COMPRESSION)
deflator = new level
zipped = deflator.deflate data, Zlib::FINISH
zipped
ensure
deflator.end
end
##
# Creates a new deflate stream for compression. See zlib.h for details of
# each argument. If an argument is nil, the default value of that argument
# is used.
def initialize(level = Zlib::DEFAULT_COMPRESSION,
window_bits = Zlib::MAX_WBITS,
mem_level = Zlib::DEF_MEM_LEVEL,
strategy = Zlib::DEFAULT_STRATEGY)
level ||= Zlib::DEFAULT_COMPRESSION
window_bits ||= Zlib::MAX_WBITS
mem_level ||= Zlib::DEF_MEM_LEVEL
strategy ||= Zlib::DEFAULT_STRATEGY
super()
@func_end = :deflateEnd
@func_reset = :deflateReset
@func_run = :deflate
err = Zlib.deflateInit2(pointer, level, Zlib::DEFLATED,
window_bits, mem_level, strategy)
Zlib.handle_error err, message
ready
end
##
# Same as IO.
def <<(data)
do_deflate data, Zlib::NO_FLUSH
self
end
##
# Inputs +string+ into the deflate stream and returns the output from the
# stream. On calling this method, both the input and the output buffers
# of the stream are flushed. If +string+ is nil, this method finishes the
# stream, just like Zlib::ZStream#finish.
#
# The value of +flush+ should be either <tt>Zlib::NO_FLUSH</tt>,
# <tt>Zlib::SYNC_FLUSH</tt>, <tt>Zlib::FULL_FLUSH</tt>, or
# <tt>Zlib::FINISH</tt>. See zlib.h for details.
def deflate(data, flush = Zlib::NO_FLUSH)
do_deflate data, flush
detatch_output
end
##
# Performs the deflate operation and leaves the compressed data in the
# output buffer
def do_deflate(data, flush)
if data.nil? then
run '', Zlib::FINISH
else
data = StringValue data
if flush != Zlib::NO_FLUSH or not data.empty? then # prevent BUF_ERROR
run data, flush
end
end
end
##
# Finishes compressing the deflate input stream and returns the output
# buffer.
def finish
run '', Zlib::FINISH
detatch_output
end
##
# This method is equivalent to <tt>deflate('', flush)</tt>. If flush is
# omitted, <tt>Zlib::SYNC_FLUSH</tt> is used as flush. This method is
# just provided to improve the readability of your Ruby program.
def flush(flush = Zlib::SYNC_FLUSH)
run '', flush unless flush == Zlib::NO_FLUSH
detatch_output
end
##
# Changes the parameters of the deflate stream. See zlib.h for details.
# The output from the stream by changing the params is preserved in output
# buffer.
def params(level, strategy)
err = Zlib.deflateParams pointer, level, strategy
raise Zlib::BufError, 'buffer expansion not implemented' if
err == Zlib::BUF_ERROR
Zlib.handle_error err, message
nil
end
##
# Sets the preset dictionary and returns +dictionary+. This method is
# available just only after Zlib::Deflate.new or Zlib::ZStream#reset
# method was called. See zlib.h for details.
def set_dictionary(dictionary)
dict = StringValue dictionary
err = Zlib.deflateSetDictionary pointer, dict, dict.length
Zlib.handle_error err, message
dictionary
end
end
##
# Zlib::GzipFile is an abstract class for handling a gzip formatted
# compressed file. The operations are defined in the subclasses,
# Zlib::GzipReader for reading, and Zlib::GzipWriter for writing.
#
# GzipReader should be used by associating an IO, or IO-like, object.
class GzipFile
SYNC = Zlib::ZStream::UNUSED
HEADER_FINISHED = Zlib::ZStream::UNUSED << 1
FOOTER_FINISHED = Zlib::ZStream::UNUSED << 2
FLAG_MULTIPART = 0x2
FLAG_EXTRA = 0x4
FLAG_ORIG_NAME = 0x8
FLAG_COMMENT = 0x10
FLAG_ENCRYPT = 0x20
FLAG_UNKNOWN_MASK = 0xc0
EXTRAFLAG_FAST = 0x4
EXTRAFLAG_SLOW = 0x2
MAGIC1 = 0x1f
MAGIC2 = 0x8b
METHOD_DEFLATE = 8
##
# Base class of errors that occur when processing GZIP files.
class Error < Zlib::Error; end
##
# Raised when gzip file footer is not found.
class NoFooter < Error; end
##
# Raised when the CRC checksum recorded in gzip file footer is not
# equivalent to the CRC checksum of the actual uncompressed data.
class CRCError < Error; end
##
# Raised when the data length recorded in the gzip file footer is not
# equivalent to the length of the actual uncompressed data.
class LengthError < Error; end
##
# Accessor for the underlying ZStream
attr_reader :zstream # :nodoc:
##
# See Zlib::GzipReader#wrap and Zlib::GzipWriter#wrap.
def self.wrap(*args)
obj = new(*args)
if block_given? then
begin
yield obj
ensure
obj.close if obj.zstream.ready?
end
end
end
def initialize
@comment = nil
@crc = 0
@level = nil
@mtime = Time.at 0
@orig_name = nil
@os_code = Zlib::OS_CODE
end
##
# Closes the GzipFile object. This method calls close method of the
# associated IO object. Returns the associated IO object.
def close
io = finish
io.close if io.respond_to? :close
io
end
##
# Same as IO
def closed?
@io.nil?
end
##
# Returns comments recorded in the gzip file header, or nil if the
# comment is not present.
def comment
raise Error, 'closed gzip stream' if @io.nil?
@comment.dup
end
def end
return if @zstream.closing?
@zstream.flags |= Zlib::ZStream::CLOSING
begin
end_run
ensure
@zstream.end
end
end
##
# Closes the GzipFile object. Unlike Zlib::GzipFile#close, this method
# never calls the close method of the associated IO object. Returns the
# associated IO object.
def finish
self.end
io = @io
@io = nil
@orig_name = nil
@comment = nil
io
end
def finished?
@zstream.finished? and @zstream.output.empty? # HACK I think
end
def footer_finished?
@zstream.flags & Zlib::GzipFile::FOOTER_FINISHED ==
Zlib::GzipFile::FOOTER_FINISHED
end
def header_finished?
@zstream.flags & Zlib::GzipFile::HEADER_FINISHED ==
Zlib::GzipFile::HEADER_FINISHED
end
##
# Returns last modification time recorded in the gzip file header.
def mtime
Time.at @mtime
end
##
# Returns original filename recorded in the gzip file header, or +nil+ if
# original filename is not present.
def orig_name
raise Error, 'closed gzip stream' if @io.nil?
@orig_name.dup
end
end
##
# Zlib::GzipReader is the class for reading a gzipped file. GzipReader
# should be used an IO, or -IO-lie, object.
#
# Zlib::GzipReader.open('hoge.gz') {|gz|
# print gz.read
# }
#
# File.open('hoge.gz') do |f|
# gz = Zlib::GzipReader.new(f)
# print gz.read
# gz.close
# end
#
# == Method Catalogue
#
# The following methods in Zlib::GzipReader are just like their counterparts
# in IO, but they raise Zlib::Error or Zlib::GzipFile::Error exception if an
# error was found in the gzip file.
#
# - #each
# - #each_line
# - #each_byte
# - #gets
# - #getc
# - #lineno
# - #lineno=
# - #read
# - #readchar
# - #readline
# - #readlines
# - #ungetc
#
# Be careful of the footer of the gzip file. A gzip file has the checksum of
# pre-compressed data in its footer. GzipReader checks all uncompressed data
# against that checksum at the following cases, and if it fails, raises
# <tt>Zlib::GzipFile::NoFooter</tt>, <tt>Zlib::GzipFile::CRCError</tt>, or
# <tt>Zlib::GzipFile::LengthError</tt> exception.
#
# - When an reading request is received beyond the end of file (the end of
# compressed data). That is, when Zlib::GzipReader#read,
# Zlib::GzipReader#gets, or some other methods for reading returns nil.
# - When Zlib::GzipFile#close method is called after the object reaches the
# end of file.
# - When Zlib::GzipReader#unused method is called after the object reaches
# the end of file.
#
# The rest of the methods are adequately described in their own
# documentation.
class GzipReader < GzipFile # HACK use a buffer class
##
# Creates a GzipReader object associated with +io+. The GzipReader object
# reads gzipped data from +io+, and parses/decompresses them. At least,
# +io+ must have a +read+ method that behaves same as the +read+ method in
# IO class.
#
# If the gzip file header is incorrect, raises an Zlib::GzipFile::Error
# exception.
def initialize(io)
@io = io
@zstream = Zlib::Inflate.new -Zlib::MAX_WBITS
@buffer = ''
super()
read_header
end
def check_footer
@zstream.flags |= Zlib::GzipFile::FOOTER_FINISHED
footer = @zstream.input.slice! 0, 8
rest = @io.read 8 - footer.length
footer << rest if rest
raise NoFooter, 'footer is not found' unless footer.length == 8
crc, length = footer.unpack 'VV'
@zstream[:total_in] += 8 # to rewind correctly
raise CRCError, 'invalid compressed data -- crc error' unless @crc == crc
raise LengthError, 'invalid compressed data -- length error' unless
length == @zstream.total_out
end
def end_run
check_footer if @zstream.finished? and not footer_finished?
end
def eof?
@zstream.finished? and @zstream.input_empty?
end
def pos
@zstream[:total_out] - @buffer.length
end
##
# See Zlib::GzipReader documentation for a description.
def read(length = nil)
data = @buffer
while chunk = @io.read(CHUNK) do
inflated = @zstream.inflate(chunk)
@crc = Zlib.crc32 inflated, @crc
data << inflated
break if length and data.length > length
end
if length then
@buffer = data.slice! length..-1
else
@buffer = ''
end
check_footer if @zstream.finished? and not footer_finished?
data
rescue Zlib::Error => e
raise GzipFile::Error, e.message
end
def read_header
header = @io.read 10
raise Error, 'not in gzip format' unless header.length == 10
magic1, magic2, method, flags, @mtime, extra_flags, @os_code =
header.unpack 'CCCCVCC'
unless magic1 == Zlib::GzipFile::MAGIC1 and
magic2 == Zlib::GzipFile::MAGIC2 then
raise Error, 'not in gzip format'
end
unless method == Zlib::GzipFile::METHOD_DEFLATE then
raise Error, "unsupported compression method #{method}"
end
if flags & Zlib::GzipFile::FLAG_MULTIPART ==
Zlib::GzipFile::FLAG_MULTIPART then
raise Error, 'multi-part gzip file is not supported'
end
if flags & Zlib::GzipFile::FLAG_ENCRYPT ==
Zlib::GzipFile::FLAG_ENCRYPT then
raise Error, 'encrypted gzip file is not supported'
end
if flags & Zlib::GzipFile::FLAG_UNKNOWN_MASK ==
Zlib::GzipFile::FLAG_UNKNOWN_MASK then
raise Error, "unknown flags 0x#{flags.to_s 16}"
end
if extra_flags & Zlib::GzipFile::EXTRAFLAG_FAST ==
Zlib::GzipFile::EXTRAFLAG_FAST then
@level = Zlib::BEST_SPEED
elsif extra_flags & Zlib::GzipFile::EXTRAFLAG_SLOW ==
Zlib::GzipFile::EXTRAFLAG_SLOW then
@level = Zlib::BEST_COMPRESSION
else
@level = Zlib::DEFAULT_COMPRESSION
end
if flags & Zlib::GzipFile::FLAG_EXTRA == Zlib::GzipFile::FLAG_EXTRA then
length = @io.read 2
raise Zlib::GzipFile::Error, 'unexpected end of file' if
length.nil? or length.length != 2
length, = length.unpack 'v'
extra = @io.read length + 2
raise Zlib::GzipFile::Error, 'unexpected end of file' if
extra.nil? or extra.length != length + 2
end
if flags & Zlib::GzipFile::FLAG_ORIG_NAME ==
Zlib::GzipFile::FLAG_ORIG_NAME then
@orig_name = ''
c = @io.getc
until c == 0 do
@orig_name << c.chr
c = @io.getc
end
end
if flags & Zlib::GzipFile::FLAG_COMMENT ==
Zlib::GzipFile::FLAG_COMMENT then
@comment = ''
c = @io.getc
until c == 0 do
@comment << c.chr
c = @io.getc
end
end
end
end
##
# Zlib::GzipWriter is a class for writing gzipped files. GzipWriter should
# be used with an instance of IO, or IO-like, object.
#
# For example:
#
# Zlib::GzipWriter.open('hoge.gz') do |gz|
# gz.write 'jugemu jugemu gokou no surikire...'
# end
#
# File.open('hoge.gz', 'w') do |f|
# gz = Zlib::GzipWriter.new(f)
# gz.write 'jugemu jugemu gokou no surikire...'
# gz.close
# end
#
# NOTE: Due to the limitation of Ruby's finalizer, you must explicitly close
# GzipWriter objects by Zlib::GzipWriter#close etc. Otherwise, GzipWriter
# will be not able to write the gzip footer and will generate a broken gzip
# file.
class GzipWriter < GzipFile # HACK use a buffer class
##
# Set the comment
attr_writer :comment
##
# Set the original name
attr_writer :orig_name
##
# Creates a GzipWriter object associated with +io+. +level+ and +strategy+
# should be the same as the arguments of Zlib::Deflate.new. The
# GzipWriter object writes gzipped data to +io+. At least, +io+ must
# respond to the +write+ method that behaves same as write method in IO
# class.
def initialize(io, level = Zlib::DEFAULT_COMPRESSION,
strategy = Zlib::DEFAULT_STRATEGY)
@io = io
@zstream = Zlib::Deflate.new level, -Zlib::MAX_WBITS,
Zlib::DEF_MEM_LEVEL, strategy
@buffer = ''
super()
end
def end_run
make_header unless header_finished?
@zstream.run '', Zlib::FINISH
write_raw
make_footer
nil
end
##
# Flushes all the internal buffers of the GzipWriter object. The meaning
# of +flush+ is same as in Zlib::Deflate#deflate.
# <tt>Zlib::SYNC_FLUSH</tt> is used if +flush+ is omitted. It is no use
# giving flush <tt>Zlib::NO_FLUSH</tt>.
def flush
true
end
##
# Writes out a gzip header
def make_header
flags = 0
extra_flags = 0
flags |= Zlib::GzipFile::FLAG_ORIG_NAME if @orig_name
flags |= Zlib::GzipFile::FLAG_COMMENT if @comment
extra_flags |= Zlib::GzipFile::EXTRAFLAG_FAST if
@level == Zlib::BEST_SPEED
extra_flags |= Zlib::GzipFile::EXTRAFLAG_SLOW if
@level == Zlib::BEST_COMPRESSION
header = [
Zlib::GzipFile::MAGIC1, # byte 0
Zlib::GzipFile::MAGIC2, # byte 1
Zlib::GzipFile::METHOD_DEFLATE, # byte 2
flags, # byte 3
@mtime.to_i, # bytes 4-7
extra_flags, # byte 8
@os_code # byte 9
].pack 'CCCCVCC'
@io.write header
@io.write "#{@orig_name}\0" if @orig_name
@io.write "#{@comment}\0" if @comment
@zstream.flags |= Zlib::GzipFile::HEADER_FINISHED
end
##
# Writes out a gzip footer
def make_footer
footer = [
@crc, # bytes 0-3
@zstream.total_in, # bytes 4-7
].pack 'VV'
@io.write footer
@zstream.flags |= Zlib::GzipFile::FOOTER_FINISHED
end
##
# Sets the modification time of this file
def mtime=(time)
if header_finished? then
raise Zlib::GzipFile::Error, 'header is already written'
end
@mtime = Integer time
end
def sync?
@zstream.flags & Zlib::GzipFile::SYNC == Zlib::GzipFile::SYNC
end
##
# Same as IO.
def write(data)
make_header unless header_finished?
data = String data
if data.length > 0 or sync? then
@crc = Zlib.crc32_c @crc, data, data.length
flush = sync? ? Zlib::SYNC_FLUSH : Zlib::NO_FLUSH
@zstream.run data, flush
end
write_raw
end
##
# Same as IO.
alias << write
def write_raw
data = @zstream.detatch_output
unless data.empty? then
@io.write data
@io.flush if sync? and io.respond_to :flush
end
end
end
##
# Zlib:Inflate is the class for decompressing compressed data. Unlike
# Zlib::Deflate, an instance of this class is not able to duplicate (clone,
# dup) itself.
class Inflate < ZStream
##
# Decompresses +string+. Raises a Zlib::NeedDict exception if a preset
# dictionary is needed for decompression.
#
# This method is almost equivalent to the following code:
#
# def inflate(string)
# zstream = Zlib::Inflate.new
# buf = zstream.inflate(string)
# zstream.finish
# zstream.close
# buf
# end
def self.inflate(data)
inflator = new
unzipped = inflator.inflate data
unzipped
ensure
inflator.end
end
##
# Creates a new inflate stream for decompression. See zlib.h for details
# of the argument. If +window_bits+ is +nil+, the default value is used.
def initialize(window_bits = Zlib::MAX_WBITS)
super()
@func_end = :inflateEnd
@func_reset = :inflateReset
@func_run = :inflate
err = Zlib.inflateInit2 pointer, window_bits
Zlib.handle_error err, message # HACK
ready
end
##
# Inputs +string+ into the inflate stream just like Zlib::Inflate#inflate,
# but returns the Zlib::Inflate object itself. The output from the stream
# is preserved in output buffer.
def <<(string)
string = StringValue string unless string.nil?
if finished? then
unless string.nil? then
@input ||= ''
@input << string
end
else
run string, Zlib::SYNC_FLUSH
end
end
##
# Inputs +string+ into the inflate stream and returns the output from the
# stream. Calling this method, both the input and the output buffer of
# the stream are flushed. If string is +nil+, this method finishes the
# stream, just like Zlib::ZStream#finish.
#
# Raises a Zlib::NeedDict exception if a preset dictionary is needed to
# decompress. Set the dictionary by Zlib::Inflate#set_dictionary and then
# call this method again with an empty string. (<i>???</i>)
def inflate(data)
data = Type.coerce_to data, String, :to_str unless data.nil?
if finished? then
if data.nil? then
unzipped = detatch_output
else
@input ||= ''
@input << data
unzipped = ''
end
else
if data.nil? then
run '', Zlib::FINISH
elsif not data.empty? then
run data, Zlib::SYNC_FLUSH
end
unzipped = detatch_output
if finished? and not @input.nil? then
expand_output
end
end
unzipped
end
##
# Sets the preset dictionary and returns +string+. This method is
# available just only after a Zlib::NeedDict exception was raised. See
# zlib.h for details.
def set_dictionary(dictionary)
dict = StringValue dictionary
err = Zlib.inflateSetDictionary pointer, dict, dict.length
Zlib.handle_error err, message
dictionary
end
end
##
# Calculates Alder-32 checksum for +string+, and returns updated value of
# +adler+. If +string+ is omitted, it returns the Adler-32 initial value. If
# +adler+ is omitted, it assumes that the initial value is given to +adler+.
def self.adler32(string = "", sum = 1)
do_checksum(string, sum, :adler32_c)
end
##
# Returns the table for calculating CRC checksum as an array.
def self.crc_table
get_crc_table_c.read_array_of_long(256).map do |x|
x >= 0 ? x : 2 ** 32 + x # HACK convert back to unsigned
end
end
##
# Calculates CRC checksum for +string+, and returns updated value of +crc+.
# If +string+ is omitted, it returns the CRC initial value. If +crc+ is
# omitted, it assumes that the initial value is given to +crc+.
def self.crc32(string = "", sum = 0)
do_checksum(string, sum, :crc32_c)
end
##
# Generates a checksum using function +type+
def self.do_checksum(string, vsum, type)
if vsum
raise RangeError if vsum >= (2 ** 128)
raise "Explain why you did this: email ephoenix@engineyard.com" if vsum < 0
sum = vsum
elsif string.nil?
sum = 0
else
sum = send(type, 0, nil, 0)
end
send(type, sum, string, string ? string.size : 0)
end
##
# Raises an exception of the appropriate class
def self.handle_error(error, message = nil)
return if error == Zlib::OK
message = zError error if message.nil?
klass = case error
when Zlib::STREAM_END then Zlib::StreamEnd
when Zlib::NEED_DICT then Zlib::NeedDict
when Zlib::STREAM_ERROR then Zlib::StreamError
when Zlib::DATA_ERROR then Zlib::DataError
when Zlib::BUF_ERROR then Zlib::BufError
when Zlib::MEM_ERROR then Zlib::MemError
when Errno then Errno.handle message
else
message = "unknown zlib error #{error}: #{message}"
Zlib::Error
end
raise klass, message
end
end
|