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
|
// $Id$
//
// This is just an istream which chooses its streambuf implementation
// based on whether the file is gzipped or not. Could be extended
// to work with other compression formats, too.
//
// What makes it interesting compared to the classic gzstream implementation
// is the ability to perform seeks in a reasonably efficient manner. In the
// event that a seek is requested (other than a rewind, or tellg()) the file
// is decompressed once and snapshots of the compression state are made
// every 1MB or so. Further seeks are then quite efficient since they don't
// have to begin at the head of the file.
//
// It also features threaded readahead with adaptive buffering - it will read
// increasingly larger chunks of the raw file as it perceives a sequential read
// in progress, and will launch a thread to grab the next probable chunk of the
// file while the previous chunk is being parsed. This is especially helpful for
// files being read across a slow network connection.
// If lots of seeking is going on, and the buffer size proves excessive, the read
// buffer size decreases. This is also true for the non-compressed case, so this
// is generally useful for file read speed optimization.
//
// draws heavily on example code from the zlib distro, so
// for conditions of distribution and use, see copyright notice in zlib.h
//
// Copyright (C) Insilicos LLC 2008,2011 ALl Rights Reserved.
// For conditions of distribution and use, see copyright notice in zlib.h
//
// based on:
/* gzio.c -- IO on .gz files
* Copyright (C) 1995-2005 Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
Main idea there is as follows:
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
// efficient random access stuff based on
/* zran.c -- example of zlib/gzip stream indexing and random access
* Copyright (C) 2005 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
Version 1.0 29 May 2005 Mark Adler */
#define PWIZ_SOURCE
#include <cstdio>
#include "zlib.h"
#include "random_access_compressed_ifstream.hpp"
#if defined(_MSC_VER) || defined(__MINGW32__) // MSVC or MinGW
#include <winsock2.h>
#else
#include <stdint.h>
#include <netinet/in.h>
#endif
#include <boost/iostreams/device/file_descriptor.hpp>
#include <sys/stat.h>
#include <vector>
#include <cassert>
#include <cerrno>
#include <iostream>
#include <cstring>
#include "pwiz/utility/misc/Std.hpp"
#include <boost/thread.hpp>
#include <boost/filesystem/path.hpp>
#include <boost/filesystem/detail/utf8_codecvt_facet.hpp>
namespace pwiz {
namespace util {
#ifndef Z_BUFSIZE
# ifdef MAXSEG_64K
# define Z_BUFSIZE 4096 /* minimize memory usage for 16-bit DOS */
# else
# define Z_BUFSIZE 16384
# endif
#endif
#define DECOMPRESS_BUFSIZE 16384
#define DEFAULT_CHUNKY_BUFSIZE 32768
#define MAX_CHUNKY_BUFSIZE DEFAULT_CHUNKY_BUFSIZE*1024
#define ALLOC(size) malloc(size)
#define TRYFREE(p) {if (p) free(p); p=NULL;}
static int const gz_magic[2] = {0x1f, 0x8b}; /* gzip magic header */
/* gzip flag byte */
#define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
#define HEAD_CRC 0x02 /* bit 1 set: header CRC present */
#define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
#define ORIG_NAME 0x08 /* bit 3 set: original file name present */
#define COMMENT 0x10 /* bit 4 set: file comment present */
#define RESERVED 0xE0 /* bits 5..7: reserved */
#define SPAN 1048576L /* desired distance between access points */
#define WINSIZE 32768U /* sliding window size */
#define CHUNK 16384 /* file input buffer size */
/* access point entry */
class synchpoint {
public:
random_access_compressed_ifstream_off_t out; /* corresponding offset in uncompressed data */
random_access_compressed_ifstream_off_t in; /* offset in input file of first full byte */
z_stream *state; // stream state
};
//
// here's where the real customization of the stream happens
//
class chunky_streambuf; // forward ref
class random_access_compressed_streambuf : public std::streambuf {
friend class random_access_compressed_ifstream; // so we can modify some behaviors
public:
random_access_compressed_streambuf(chunky_streambuf *rdbuf); // ctor
virtual ~random_access_compressed_streambuf();
bool is_open() const;
chunky_streambuf *close(); // close file and hand back readbuf
protected:
virtual pos_type seekoff(off_type off,
std::ios_base::seekdir way,
std::ios_base::openmode which = std::ios_base::in); // we don't do out
virtual pos_type seekpos(pos_type pos,
std::ios_base::openmode which = std::ios_base::in); // we don't do out
virtual int_type underflow(); // repopulate the input buffer
private:
std::streampos my_seekg(std::streampos offset, std::ios_base::seekdir whence,std::ios_base::openmode Mode); // streampos not the same as streamoff, esp in win32
z_stream stream;
int z_err; /* error code for last stream operation */
int z_eof; /* set if end of input file */
std::istream *infile; /* raw .gz file we're reading */
Byte *inbuf; /* input buffer */
Byte *outbuf; /* output buffer */
uLong crc; /* crc32 of uncompressed data */
random_access_compressed_ifstream_off_t start; /* start of compressed data in file (header skipped) */
random_access_compressed_ifstream_off_t uncompressedLength; /* total length of uncompressed file */
std::streampos last_seek_pos; /* last requested seek position (uncompressed) */
std::streampos outbuf_headpos; /* filepos for head of outbuf */
std::streamoff outbuf_len; /* length of outbuf last time we populated it */
std::vector<synchpoint *> index; // index for random access
/* Add an entry to the access point list. */
synchpoint *addIndexEntry(random_access_compressed_ifstream_off_t in, random_access_compressed_ifstream_off_t out);
// gzip stuff
int do_flush(int flush);
int get_byte();
int get_buf(int len);
void check_header();
int destroy();
uLong getLong();
int build_index();
void update_istream_ptrs(std::streampos new_headpos,int new_buflen,int new_posoffset=0) {
outbuf_headpos = new_headpos; // note the decompressed filepos corresponding to buf head
outbuf_len = new_buflen; // how many bytes in the buffer are consumable?
// declare first, next, last for istream use
setg((char *)outbuf,(char *)outbuf+new_posoffset,(char *)outbuf + new_buflen);
}
std::streampos get_next_read_pos() {
return outbuf_headpos+boost::iostreams::offset_to_position(gptr()-(char *)outbuf);
}
bool pos_is_in_outbuf(std::streampos pos) {
return ((outbuf_headpos <= pos) &&
(pos < (outbuf_headpos + outbuf_len)));
}
};
class chunky_streambuf : public std::streambuf {
public:
chunky_streambuf();
virtual ~chunky_streambuf();
bool open(const char *path);
bool is_open() const;
void close();
virtual pos_type seekoff(off_type off,
std::ios_base::seekdir way,
std::ios_base::openmode which = std::ios_base::in); // we don't do out
virtual pos_type seekpos(pos_type pos,
std::ios_base::openmode which = std::ios_base::in); // we don't do out
virtual int_type underflow(); // repopulate the input buffer
std::streampos my_seekg(boost::iostreams::stream_offset offset, std::ios_base::seekdir whence,std::ios_base::openmode Mode); // streampos not the same as streamoff, esp in win32
boost::iostreams::file_descriptor_source *handle; /* handle of file we're reading */
char *path; /* path name for debugging only */
size_t desired_readbuf_len; /* dynamic sizing of disk reads */
boost::iostreams::stream_offset last_seek_pos; /* last requested seek position */
#define N_INBUFS 3 // lookback, current, readahead
struct {
Byte *filereadbuf; /* file read buffer */
size_t maxbufsize; /* size of read buffer */
boost::iostreams::stream_offset readbuf_head_filepos; /* filepos for head of readbuf */
std::streamsize readbuf_len; /* length of readbuf last time we populated it */
std::streamsize readbuf_requested_len; /* number of bytes we actually tried to load */
boost::iostreams::stream_offset chars_used; /* number of chars actually read out of buffer */
} inbuf[N_INBUFS]; // read out of one while the other populates in another thread
int current_inbuf;
int readerThread_inbuf;
boost::thread *readerThread;
boost::iostreams::stream_offset flen; /* unknown until first SEEK_END */
inline void test_invariant() const {
#ifdef _DEBUG
assert(gptr()>=(char *)inbuf[current_inbuf].filereadbuf);
assert(gptr()<=(char *)inbuf[current_inbuf].filereadbuf+inbuf[current_inbuf].readbuf_len);
#endif
}
inline boost::iostreams::stream_offset &readbuf_head_filepos() {
return inbuf[current_inbuf].readbuf_head_filepos;
}
inline boost::iostreams::stream_offset &readbuf_head_filepos(int n) {
return inbuf[n].readbuf_head_filepos;
}
inline Byte* &filereadbuf() { /* file read buffer */
return inbuf[current_inbuf].filereadbuf; /* file read buffer */
}
inline Byte* &filereadbuf(int n) { /* file read buffer */
return inbuf[n].filereadbuf; /* file read buffer */
}
inline size_t &maxbufsize() { /* size of read buffer */
return inbuf[current_inbuf].maxbufsize; /* size of read buffer */
}
inline size_t &maxbufsize(int n) { /* size of read buffer */
return inbuf[n].maxbufsize; /* size of read buffer */
}
inline std::streamsize &readbuf_len() { /* length of readbuf last time we populated it */
return inbuf[current_inbuf].readbuf_len; /* length of readbuf last time we populated it */
}
inline std::streamsize &readbuf_len(int n) { /* length of readbuf last time we populated it */
return inbuf[n].readbuf_len; /* length of readbuf last time we populated it */
}
inline std::streamsize &readbuf_requested_len() { /* bytes we tried to read last time we populated it */
return inbuf[current_inbuf].readbuf_requested_len;
}
inline std::streamsize &readbuf_requested_len(int n) { /* bytes we tried to read last time we populated it */
return inbuf[n].readbuf_requested_len;
}
inline void resize_readbufs(size_t newsize) {
newsize = (newsize < DEFAULT_CHUNKY_BUFSIZE) ? DEFAULT_CHUNKY_BUFSIZE : newsize;
newsize = (newsize > MAX_CHUNKY_BUFSIZE) ? MAX_CHUNKY_BUFSIZE : newsize;
this->desired_readbuf_len = newsize;
int hotbuf = find_readbuf_for_gptr();
for (int n=N_INBUFS;n--;) {
if (newsize > this->maxbufsize(n)) {
Byte * newbuf = (Byte *)realloc(this->filereadbuf(n),newsize);
if (newbuf) {
this->filereadbuf(n) = newbuf;
this->maxbufsize(n) = newsize;
if (n==hotbuf) { // let parent know we moved the read buffer
// declare first, next, last for istream use
setg((char *)newbuf, (char *)newbuf+(gptr()-eback()), (char *)newbuf + this->readbuf_len(n));
test_invariant();
}
}
else {
// Failed to reallocate. So, stick with the old size and stop trying.
this->desired_readbuf_len = this->maxbufsize(n);
break;
}
}
}
}
inline bool shortread(int n) const {
test_invariant();
return ((inbuf[n].readbuf_requested_len > 0) &&
(inbuf[n].readbuf_requested_len != inbuf[n].readbuf_len));
}
inline boost::iostreams::stream_offset &chars_used() { /* number of chars actually read out of buffer */
test_invariant();
return inbuf[current_inbuf].chars_used; /* number of chars actually read out of buffer */
}
std::streamsize readBuffer(int inbuf, boost::iostreams::stream_offset headpos, size_t readlen) {
inbuf = inbuf%N_INBUFS;
test_invariant();
std::streamsize nread = this->handle->read((char *)this->filereadbuf(inbuf), readlen);
// cout << headpos << " read " << nread << " ask " << readlen << "\n";
if (nread > 0) { // in case of eof, leave current buffer state alone
test_invariant();
this->readbuf_len(inbuf) = nread;
this->readbuf_head_filepos(inbuf) = headpos;
this->readbuf_requested_len(inbuf) = readlen;
test_invariant();
return nread;
} else {
test_invariant();
return 0;
}
}
void set_inbuf(int bufnum,
boost::iostreams::stream_offset readpos) { // for reusing an already loaded buffer
bufnum = bufnum%N_INBUFS;
set_inbuf(bufnum,readbuf_head_filepos(bufnum),readbuf_len(bufnum),readpos,readbuf_requested_len(bufnum));
}
void set_inbuf(int bufnum,boost::iostreams::stream_offset headpos,
size_t readlen,
boost::iostreams::stream_offset readpos,
size_t requested_readlen) {
current_inbuf = bufnum%N_INBUFS;
update_istream_ptrs(headpos,readlen,readpos-headpos);
inbuf[current_inbuf].readbuf_requested_len = requested_readlen;
}
void update_istream_ptrs(boost::iostreams::stream_offset new_headpos,int new_buflen,int new_posoffset=0) {
readbuf_head_filepos() = new_headpos; // note the filepos corresponding to buf head
readbuf_len() = new_buflen; // how many bytes in the buffer?
if (new_buflen) { // not just a reset to provoke underflow
int n = find_readbuf_for_gptr();
if (n>=0)
inbuf[n].chars_used = this->gptr()-this->eback(); // note usage of old buffer
}
// declare first, next, last for istream use
setg((char *)filereadbuf(),(char *)filereadbuf()+new_posoffset,(char *)filereadbuf() + new_buflen);
test_invariant();
}
boost::iostreams::stream_offset get_next_read_pos() {
test_invariant();
return readbuf_head_filepos()+(gptr()-(char *)filereadbuf());
}
bool pos_is_in_readbuf(boost::iostreams::stream_offset pos) {
test_invariant();
return ((readbuf_head_filepos() <= pos) &&
(pos < (readbuf_head_filepos() + readbuf_len())));
}
int find_readbuf_for_gptr() {
for (int n=N_INBUFS;n--;) {
if (inbuf[n].filereadbuf &&
((char *)inbuf[n].filereadbuf<=gptr()) &&
(gptr() <= ((char *)inbuf[n].filereadbuf + inbuf[n].readbuf_len))) {
return n;
}
}
return -1;
}
int find_readbuf_for_pos(boost::iostreams::stream_offset pos) {
test_invariant();
for (int n=N_INBUFS;n--;) {
if (((!readerThread) || (n!=readerThread_inbuf)) && // don't mess with an active read
(readbuf_head_filepos(n) <= pos) &&
(pos < (readbuf_head_filepos(n) + readbuf_len(n)))) {
return n;
}
}
// didn't find it - maybe we're loading it?
if (readerThread) {
this->readerThread->join(); // wait for completion
int n = readerThread_inbuf;
delete this->readerThread;
this->readerThread = NULL;
if ((readbuf_head_filepos(n) <= pos) &&
(pos < (readbuf_head_filepos(n) + readbuf_len(n)))) {
return n;
}
}
return -1;
}
bool physical_seek(const std::streampos &pos) {
return physical_seek(boost::iostreams::position_to_offset(pos));
}
bool physical_seek(const boost::iostreams::stream_offset &off) {
if (off >= 0) {
this->handle->seek(off,std::ios_base::beg);
return true;
}
return false;
}
};
#define gzio_raw_readerror(s) (s->infile->bad())
// default ctor
PWIZ_API_DECL
random_access_compressed_ifstream::random_access_compressed_ifstream() :
std::istream(new chunky_streambuf()) {
compressionType = NONE;
}
// constructor
PWIZ_API_DECL
random_access_compressed_ifstream::random_access_compressed_ifstream(const char *path) :
std::istream(new chunky_streambuf())
{
open(path);
}
PWIZ_API_DECL
void random_access_compressed_ifstream::open(const char *path) {
chunky_streambuf *fb = (chunky_streambuf *)rdbuf();
// cout << "opening "<<path<<"\n";
bool gzipped = false;
compressionType = NONE;
if (fb->open(path)) {
// check for gzip magic header
gzipped = ((fb->sbumpc() == gz_magic[0]) && (fb->sbumpc() == gz_magic[1]));
fb->pubseekpos(0); // rewind
if (gzipped) { // replace streambuf with gzip handler (handing it current rdbuf)
rdbuf( new random_access_compressed_streambuf( (chunky_streambuf *)rdbuf() ));
compressionType = GZIP;
}
} else {
this->setstate(std::ios::failbit); // could not open, set the fail flag
}
}
PWIZ_API_DECL
bool random_access_compressed_ifstream::is_open() const { // for ease of use as ifstream replacement
if (NONE == compressionType) {
return ((chunky_streambuf *)rdbuf())->is_open();
} else {
return ((random_access_compressed_streambuf *)rdbuf())->is_open();
}
}
PWIZ_API_DECL
void random_access_compressed_ifstream::close() {
// cout << "close\n";
if (rdbuf()) {
if (NONE != compressionType) {
// retrieve rdbuf from gzip handler
rdbuf(((random_access_compressed_streambuf *)rdbuf())->close());
}
((chunky_streambuf *)rdbuf())->close();
compressionType = NONE;
}
}
PWIZ_API_DECL
random_access_compressed_ifstream::~random_access_compressed_ifstream()
{
close();
delete rdbuf(NULL);
}
random_access_compressed_streambuf::random_access_compressed_streambuf(chunky_streambuf *rawbuf) {
int err;
this->stream.zalloc = (alloc_func)0;
this->stream.zfree = (free_func)0;
this->stream.opaque = (voidpf)0;
this->stream.next_in = this->inbuf = Z_NULL;
this->stream.next_out = this->outbuf = Z_NULL;
this->stream.avail_in = this->stream.avail_out = 0;
this->last_seek_pos = -1;
this->infile = new istream(rawbuf); // dynamic disk buffer size
this->z_err = Z_OK;
this->z_eof = 0;
this->crc = crc32(0L, Z_NULL, 0);
if ((this->infile->fail())) {
this->destroy();
return;
}
this->stream.next_in = this->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
this->outbuf = (Byte*)ALLOC(DECOMPRESS_BUFSIZE);
err = inflateInit2(&(this->stream), -MAX_WBITS);
/* windowBits is passed < 0 to tell that there is no zlib header.
* Note that in this case inflate *requires* an extra "dummy" byte
* after the compressed stream in order to complete decompression and
* return Z_STREAM_END. Here the gzip CRC32 ensures that 4 bytes are
* present after the compressed stream.
*/
if (err != Z_OK || this->inbuf == Z_NULL) {
this->destroy();
return;
}
this->stream.avail_out = DECOMPRESS_BUFSIZE;
errno = 0;
this->check_header(); /* skip the .gz header */
this->infile->clear(); // clear eof flag for short files
this->start = this->infile->tellg() - (std::streamoff)(this->stream.avail_in);
this->update_istream_ptrs(0,0); // we're pointed at head of file, but no read yet
}
bool random_access_compressed_streambuf::is_open() const { // for ifstream-ish-ness
return true; // only ever exist when file is open
}
chunky_streambuf * random_access_compressed_streambuf::close() { // for ifstream-ish-ness
chunky_streambuf *rawbuf = (chunky_streambuf *) this->infile->rdbuf(); // preserve
this->infile->rdbuf(NULL);
this->destroy();
return rawbuf; // hand it back to parent
}
random_access_compressed_streambuf::~random_access_compressed_streambuf() {
this->destroy();
}
/* ===========================================================================
Read a byte from a random_access_gzstream; update next_in and avail_in. Return EOF
for end of file.
IN assertion: the stream s has been sucessfully opened for reading.
*/
int random_access_compressed_streambuf::get_byte()
{
if (this->z_eof) {
return EOF;
}
if (this->stream.avail_in == 0) {
errno = 0;
this->infile->read((char *)this->inbuf, Z_BUFSIZE);
this->stream.avail_in = this->infile->gcount(); // how many did we read?
if (this->stream.avail_in <= 0) {
this->z_eof = 1;
if (gzio_raw_readerror(this)) {
this->z_err = Z_ERRNO;
} else if (this->infile->eof()) {
this->infile->clear(); // clear eof flag
}
return EOF;
}
this->stream.next_in = this->inbuf;
}
this->stream.avail_in--;
return *(this->stream.next_in)++;
}
/* ===========================================================================
Check the gzip header of a random_access_gzstream opened for reading. set this->err
to Z_DATA_ERROR if the magic header is not present, or present but the rest of the header
is incorrect.
IN assertion: the stream s has already been created sucessfully;
this->stream.avail_in is zero for the first time, but may be non-zero
for concatenated .gz files.
*/
void random_access_compressed_streambuf::check_header()
{
int method; /* method byte */
int flags; /* flags byte */
uInt len;
int c;
/* Assure two bytes in the buffer so we can peek ahead -- handle case
where first byte of header is at the end of the buffer after the last
gzip segment */
len = this->stream.avail_in;
if (len < 2) {
if (len) {
this->inbuf[0] = this->stream.next_in[0];
}
errno = 0;
this->infile->read((char *)(this->inbuf + len), Z_BUFSIZE >> len);
len = this->infile->gcount();
if (len <= 0 && gzio_raw_readerror(this)) {
this->z_err = Z_ERRNO;
}
this->stream.avail_in += len;
this->stream.next_in = this->inbuf;
if (this->stream.avail_in < 2) {
if (this->stream.avail_in) {
this->z_err = Z_DATA_ERROR;
}
return;
}
}
/* Peek ahead to check the gzip magic header */
if (this->stream.next_in[0] != gz_magic[0] ||
this->stream.next_in[1] != gz_magic[1]) {
this->z_err = Z_DATA_ERROR;
return;
}
this->stream.avail_in -= 2;
this->stream.next_in += 2;
/* Check the rest of the gzip header */
method = this->get_byte();
flags = this->get_byte();
if (method != Z_DEFLATED || (flags & RESERVED) != 0) {
this->z_err = Z_DATA_ERROR;
return;
}
/* Discard time, xflags and OS code: */
for (len = 0; len < 6; len++) {
this->get_byte();
}
if ((flags & EXTRA_FIELD) != 0) { /* skip the extra field */
len = (uInt)this->get_byte();
len += ((uInt)this->get_byte())<<8;
/* len is garbage if EOF but the loop below will quit anyway */
while (len-- != 0 && this->get_byte() != EOF) ;
}
if ((flags & ORIG_NAME) != 0) { /* skip the original file name */
while ((c = this->get_byte()) != 0 && c != EOF) ;
}
if ((flags & COMMENT) != 0) { /* skip the .gz file comment */
while ((c = this->get_byte()) != 0 && c != EOF) ;
}
if ((flags & HEAD_CRC) != 0) { /* skip the header crc */
for (len = 0; len < 2; len++) {
this->get_byte();
}
}
this->z_err = this->z_eof ? Z_DATA_ERROR : Z_OK;
}
/* ===========================================================================
* Cleanup then free the given random_access_gzstream. Return a zlib error code.
Try freeing in the reverse order of allocations.
*/
int random_access_compressed_streambuf::destroy ()
{
int err = Z_OK;
bool bClosedOK=true;
if (this->stream.state != NULL) {
err = inflateEnd(&(this->stream));
if (this->infile) {
delete this->infile;
}
this->infile = NULL;
}
// clean up the seek index list if any
for (int i=(int)this->index.size();i--;) {
inflateEnd(this->index[i]->state);
delete this->index[i]->state;
delete this->index[i];
}
this->index.clear(); // set length 0
if (!bClosedOK) {
#ifdef ESPIPE
if (errno != ESPIPE) /* fclose is broken for pipes in HP/UX */
#endif
err = Z_ERRNO;
}
if (this->z_err < 0) {
err = this->z_err;
}
TRYFREE(this->inbuf);
TRYFREE(this->outbuf);
return err;
}
//
// this gets called each time ifstream uses up its input buffer
//
random_access_compressed_streambuf::int_type random_access_compressed_streambuf::underflow() {
int nread = 0;
int len = DECOMPRESS_BUFSIZE; // we'll try to read the next full chunk
if (this->last_seek_pos >= 0) { // we had a seek request
/* here's where we tear out the inefficient default seek behavior and replace
with the stuff from zran.c - bpratt */
/* Use the index to read len bytes from offset into buf, return bytes read or
negative for error (Z_DATA_ERROR or Z_MEM_ERROR). If data is requested past
the end of the uncompressed data, then extract() will return a value less
than len, indicating how much as actually read into buf. This function
should not return a data error unless the file was modified since the index
was generated. extract() may also return Z_ERRNO if there is an error on
reading or seeking the input file. */
int skip, ret;
unsigned char *discard = new unsigned char[WINSIZE];
random_access_compressed_ifstream_off_t offset =
boost::iostreams::position_to_offset(this->last_seek_pos); // last requested absolute uncompress filepos
std::streampos next_read_pos = this->last_seek_pos; // will be new outbuf head pos
this->last_seek_pos = -1; // satisfied it
// first locate the index entry which will get us at or just before target
size_t ind = this->index.size();
while (--ind && this->index[ind]->out > offset);
// and prepare to decompress
synchpoint *synch = this->index[ind];
inflateEnd(&this->stream); // tidy up old ptrs
inflateCopy(&this->stream,synch->state);
z_stream &strm = this->stream;
assert(strm.total_in == synch->in-this->start);
this->infile->clear(); // clear eof flag if any
this->infile->seekg(boost::iostreams::offset_to_position(synch->in));
/* skip uncompressed bytes until offset reached */
offset -= synch->out; // now offset is the number of uncompressed bytes we need to skip
strm.avail_in = 0; // inflateCopy doesn't retain the input buffer
skip = 1; /* while skipping to offset */
do {
/* define where to put uncompressed data, and how much */
if (offset == 0 && skip) { /* at offset now */
strm.avail_out = len;
strm.next_out = (Bytef *)this->outbuf;
skip = 0; /* only do this once */
}
if (offset > WINSIZE) { /* skip WINSIZE bytes */
strm.avail_out = WINSIZE;
strm.next_out = discard;
offset -= WINSIZE;
}
else if (offset != 0) { /* last skip */
strm.avail_out = (unsigned)offset;
strm.next_out = discard;
offset = 0;
}
/* uncompress until avail_out filled, or end of stream */
do {
if (strm.avail_in == 0) {
this->infile->read((char *)this->inbuf, CHUNK);
strm.avail_in = this->infile->gcount();
if (gzio_raw_readerror(this)) {
ret = Z_ERRNO;
goto perform_seek_ret;
} else if (this->infile->eof()) {
this->infile->clear(); // clear eof flag
}
if (strm.avail_in == 0) {
ret = Z_DATA_ERROR;
goto perform_seek_ret;
}
strm.next_in = this->inbuf;
}
ret = inflate(&strm, Z_NO_FLUSH); /* normal inflate */
if (ret == Z_NEED_DICT)
ret = Z_DATA_ERROR;
if (ret == Z_MEM_ERROR || ret == Z_DATA_ERROR)
goto perform_seek_ret;
if (ret == Z_STREAM_END) {
break;
}
} while (strm.avail_out != 0);
/* if reach end of stream, then don't keep trying to get more */
if (ret == Z_STREAM_END) {
// reached EOF, clear fail bit
this->infile->clear();
break;
}
/* do until offset reached and requested data read, or stream ends */
} while (skip);
nread = skip ? 0 : len - strm.avail_out;
update_istream_ptrs(next_read_pos,nread);
/* return error if any */
perform_seek_ret:
delete []discard;
} else {
std::streampos buftailpos = get_next_read_pos(); // buf tail will be buf head unless we seek
Bytef *start = (Bytef*)this->outbuf; /* starting point for crc computation */
Byte *next_out; /* == stream.next_out but not forced far (for MSDOS) */
next_out = (Byte*)start;
this->stream.next_out = next_out;
this->stream.avail_out = len;
while (this->stream.avail_out != 0) {
if (this->stream.avail_in == 0 && !this->z_eof) {
errno = 0;
this->infile->read((char *)this->inbuf, Z_BUFSIZE);
this->stream.avail_in = this->infile->gcount();
if (this->stream.avail_in <= 0) {
this->z_eof = 1;
if (gzio_raw_readerror(this)) {
this->z_err = Z_ERRNO;
break;
} else if (this->infile->eof()) {
this->infile->clear(); // clear eof flag
}
}
this->stream.next_in = this->inbuf;
}
this->z_err = inflate(&(this->stream), Z_NO_FLUSH);
if (this->z_err != Z_OK || this->z_eof) {
break;
}
}
this->crc = crc32(this->crc, start, (uInt)(this->stream.next_out - start));
if (len == (int)this->stream.avail_out &&
(this->z_err == Z_DATA_ERROR || this->z_err == Z_ERRNO)) {
return traits_type::eof();;
}
nread = (int)(len - this->stream.avail_out); // how many bytes actually read?
update_istream_ptrs(buftailpos,nread); // update outbuf head position, length
}
return (nread>0)?outbuf[0]:traits_type::eof();
}
std::streampos random_access_compressed_streambuf::seekpos(std::streampos pos,std::ios_base::openmode Mode) {
return my_seekg(pos,std::ios_base::beg,Mode);
}
std::streampos random_access_compressed_streambuf::seekoff(std::streamoff offset, std::ios_base::seekdir whence,std::ios_base::openmode Mode) {
return my_seekg(boost::iostreams::offset_to_position(offset),whence,Mode);
}
std::streampos random_access_compressed_streambuf::my_seekg(std::streampos offset, std::ios_base::seekdir whence,std::ios_base::openmode Mode) {
if (this->z_err == Z_ERRNO || this->z_err == Z_DATA_ERROR) {
return -1;
}
// watch out for a simple rewind or tellg
if (0==offset) {
if (whence == std::ios_base::cur) {
if (this->last_seek_pos >= 0 ) { // unsatisfied seek request
return last_seek_pos; // that's where we'd be if we'd actually seeked
} else {
return get_next_read_pos(); // nothing to do
}
}
if ((whence == std::ios_base::beg) && // just a rewind
!this->index.size()) { // no index yet
// do we already have this decompressed?
if (pos_is_in_outbuf(offset) || // already in buffer
(offset==outbuf_headpos)) // or buffer is not yet loaded, let underflow() do it
{
update_istream_ptrs(outbuf_headpos,outbuf_len);
} else { // rewind without provoking index build
this->stream.avail_in = 0;
this->stream.avail_out = 0;
this->stream.total_in = 0;
this->stream.total_out = 0;
this->stream.next_in = this->inbuf;
this->crc = crc32(0L, Z_NULL, 0);
(void)inflateReset(&this->stream);
this->last_seek_pos = -1; // no need to seek
this->infile->seekg(boost::iostreams::offset_to_position(this->start));
update_istream_ptrs(0,0); // blow the cache
}
return 0;
} // end just a rewind and no index yet
} // end if offset==0
this->z_err = Z_OK;
this->z_eof = 0;
/* find where in stream to start */
/* compute absolute position */
std::streampos pos = offset;
if (whence == std::ios_base::cur) {
pos += this->get_next_read_pos();
} else if (whence == std::ios_base::end) {
if (!this->index.size()) { // first seek - build index
this->build_index(); // sets uncompressedLength
}
pos += boost::iostreams::offset_to_position(this->uncompressedLength);
}
// do we already have this decompressed?
if (pos_is_in_outbuf(pos)) {
update_istream_ptrs(outbuf_headpos,outbuf_len,pos-outbuf_headpos);
this->last_seek_pos = -1; // no need to actually seek
} else {
// just note the request for now, actually seek at read time
this->last_seek_pos = pos;
if (!this->index.size()) { // first seek - build index
this->build_index();
}
update_istream_ptrs(outbuf_headpos,0); // blow the cache
}
return pos;
}
/* ===========================================================================
Reads a long in LSB order from the given random_access_gzstream. Sets z_err in case
of error.
*/
uLong random_access_compressed_streambuf::getLong ()
{
uLong x = (uLong)this->get_byte();
int c;
x += ((uLong)this->get_byte())<<8;
x += ((uLong)this->get_byte())<<16;
c = this->get_byte();
if (c == EOF) {
this->z_err = Z_DATA_ERROR;
}
x += ((uLong)c)<<24;
return x;
}
//
// from here we're stealing from zran.c
//
/* Add an entry to the access point list. */
synchpoint *random_access_compressed_streambuf::addIndexEntry(random_access_compressed_ifstream_off_t in, random_access_compressed_ifstream_off_t out)
{
/* fill in entry and increment how many we have */
synchpoint *next = new synchpoint();
if (next) {
next->in = in;
next->out = out;
next->state = new z_stream;
inflateCopy(next->state,&this->stream);
this->index.push_back(next);
}
return next;
}
/* Make one entire pass through the compressed stream and build an index, with
access points about every span bytes of uncompressed output -- span is
chosen to balance the speed of random access against the memory requirements
of the list, about 32K bytes per access point. Note that data after the end
of the first zlib or gzip stream in the file is ignored. build_index()
returns 0 on success, Z_MEM_ERROR for out of memory, Z_DATA_ERROR for an error in
the input file, or Z_ERRNO for a file read error.
On success, *built points to the resulting index. */
int random_access_compressed_streambuf::build_index()
{
int ret;
random_access_compressed_ifstream_off_t span=SPAN;
random_access_compressed_ifstream_off_t totin, totout; /* our own total counters to avoid 4GB limit */
random_access_compressed_ifstream_off_t last; /* totout value of last access point */
unsigned char *input = new unsigned char[CHUNK];
unsigned char *window = new unsigned char[WINSIZE];
z_stream &strm = this->stream;
/* initialize inflate */
this->stream.avail_in = 0;
this->stream.avail_out = 0;
this->stream.total_in = 0;
this->stream.total_out = 0;
this->stream.next_in = this->inbuf;
this->crc = crc32(0L, Z_NULL, 0);
ret = inflateReset(&strm);
this->infile->clear(); // clear stale eof bit if any
this->infile->seekg((std::streamoff)this->start); // rewind
if (ret != Z_OK) {
goto build_index_error;
}
/* inflate the input, maintain a sliding window, and build an index -- this
also validates the integrity of the compressed data using the check
information at the end of the gzip or zlib stream */
totout = last = 0;
totin = this->start;
this->addIndexEntry(totin,totout); // note head of file
do {
/* get some compressed data from input file */
this->infile->read((char *)input, CHUNK);
strm.avail_in = this->infile->gcount();
if (gzio_raw_readerror(this)) {
ret = Z_ERRNO;
goto build_index_error;
}
if (strm.avail_in == 0) {
ret = Z_DATA_ERROR;
goto build_index_error;
}
strm.next_in = input;
/* process all of that, or until end of stream */
do {
/* reset sliding window if necessary */
if (strm.avail_out == 0) {
strm.avail_out = WINSIZE;
strm.next_out = window;
}
/* inflate until out of input, output, or at end of block --
update the total input and output counters */
totin += strm.avail_in; // note input filepos at start of inflate
totout += strm.avail_out; // note uncompressed filepos prior to inflate
ret = inflate(&strm, Z_BLOCK); /* return at end of block */
totin -= strm.avail_in; // if we use this as a synchpoint we'll have to repopulate the input buffer
totout -= strm.avail_out;
if (ret == Z_NEED_DICT)
ret = Z_DATA_ERROR;
if (ret == Z_MEM_ERROR || ret == Z_DATA_ERROR)
goto build_index_error;
if (ret == Z_STREAM_END) {
// reached end successfully
this->infile->clear(); // clear the fail bit
break;
}
/* add an index entry every 'span' bytes */
if (( totout - last) > span) {
if (!this->addIndexEntry(totin,totout)) {
ret = Z_MEM_ERROR;
goto build_index_error;
}
last = totout;
}
} while (strm.avail_in != 0);
} while (ret != Z_STREAM_END);
/* return index (release unused entries in list) */
this->uncompressedLength = totout;
/* return error */
build_index_error:
delete[] window;
delete[] input;
return ret;
}
//
// stuff for an ifstream with a really big buffer and smarter seek
//
//
chunky_streambuf::chunky_streambuf() {
this->handle = NULL;
this->flen = 0;
this->path = NULL;
this->readerThread = NULL;
this->desired_readbuf_len = DEFAULT_CHUNKY_BUFSIZE;
this->last_seek_pos = -1;
for (this->current_inbuf=N_INBUFS;this->current_inbuf--;) {
this->inbuf[current_inbuf].chars_used = 0;
this->inbuf[current_inbuf].filereadbuf = NULL;
}
this->current_inbuf = 0;
}
bool chunky_streambuf::open(const char *path) {
if (!path) {
return false;
}
boost::filesystem::detail::utf8_codecvt_facet utf8;
this->handle = new boost::iostreams::file_descriptor_source(boost::filesystem::path(path, utf8));
this->flen = 0;
this->desired_readbuf_len = 0;
// dynamic read buffer sizing - start small
for (this->current_inbuf=N_INBUFS;this->current_inbuf--;) {
this->chars_used() = 0;
this->readbuf_len() = 0;
this->readbuf_head_filepos() = -1;
this->filereadbuf() = NULL;
this->maxbufsize() = 0;
}
// allocate a modest read buffer (we'll grow it if that makes
// sense for how the file is being read)
this->resize_readbufs(4*DEFAULT_CHUNKY_BUFSIZE); // alloc moderately
this->resize_readbufs(DEFAULT_CHUNKY_BUFSIZE); // but start small
for (this->current_inbuf=N_INBUFS;this->current_inbuf--;) {
if (!this->filereadbuf()) {
return false; // no memory
}
}
this->path = strdup(path);
if ((this->path == NULL) || !this->is_open()) {
return false;
}
this->set_inbuf(0,0,0,0,0); // we're pointed at head of file, but no read yet
return true;
}
bool chunky_streambuf::is_open() const { // for ifstream-ish-ness
return (this->handle && this->handle->is_open());
}
void chunky_streambuf::close() { // for ifstream-ish-ness
if (this->is_open()) {
if (this->readerThread) { // were we working on a readahead?
this->readerThread->join(); // wait for completion
delete this->readerThread;
this->readerThread = NULL;
}
delete this->handle;
this->handle = NULL;
}
}
chunky_streambuf::~chunky_streambuf() {
// cout << "destroy\n";
this->close();
for (this->current_inbuf=N_INBUFS;this->current_inbuf--;) {
TRYFREE(this->filereadbuf());
}
TRYFREE(this->path);
}
// code for thread that reads the next chunk while we parse the current one
void readAhead(chunky_streambuf *csb, int inbuf, boost::iostreams::stream_offset headpos, size_t readlen) {
// cout << "t ";
csb->readBuffer(inbuf, headpos, readlen);
}
//
// this gets called each time ifstream uses up its input buffer
//
chunky_streambuf::int_type chunky_streambuf::underflow() {
test_invariant();
std::streamsize nread = 0;
boost::iostreams::stream_offset next_read_pos;
if (this->last_seek_pos >= 0) { // we had a seek request
int bufnum = find_readbuf_for_pos(this->last_seek_pos); // will wait for readahead thread
if (bufnum>=0) { // found it already loaded
set_inbuf(bufnum,last_seek_pos);
std::streamsize offset = last_seek_pos-readbuf_head_filepos();
last_seek_pos = -1; // satisfied it
test_invariant();
return filereadbuf()[offset];
} else { // actually need to read
// did we leave a lot of chars unread in current buffer?
if (chars_used() && (int)this->desired_readbuf_len > 2*chars_used()) {
// reduce the read size a bit
size_t newsize = DEFAULT_CHUNKY_BUFSIZE*(1+(chars_used()/DEFAULT_CHUNKY_BUFSIZE)); // ugh - why isn't min() portable
this->resize_readbufs(newsize);
}
next_read_pos = this->last_seek_pos; // will be new outbuf head pos
this->last_seek_pos = -1; // satisfied it
if (this->physical_seek(next_read_pos)) {
nread = readBuffer(current_inbuf+1,next_read_pos,this->desired_readbuf_len);
if (nread) {
set_inbuf(current_inbuf+1,next_read_pos);
}
}
}
} else {
// we hit end of buffer - perhaps we are streaming?
next_read_pos = get_next_read_pos();
int bufnum = find_readbuf_for_pos(next_read_pos); // will wait for readahead thread
bool readahead_success = false;
if (bufnum >= 0) { // already loaded
set_inbuf(bufnum,next_read_pos);
readahead_success = true;
if (shortread(bufnum) || // eof after this buffer
find_readbuf_for_pos(readbuf_head_filepos()+readbuf_len())>-1) {
// fully cached - just get on with it
test_invariant();
return filereadbuf()[get_next_read_pos()-readbuf_head_filepos()];
}
}
// are we making contiguous reads?
int last_inbuf = find_readbuf_for_pos(readbuf_head_filepos()-1);
bool streaming = ((last_inbuf>-1) && (find_readbuf_for_pos(readbuf_head_filepos(last_inbuf)-1)>-1));
// we read all of last buffer, try a bigger read now
this->resize_readbufs(this->desired_readbuf_len*4);
if (!readahead_success) { // need an immediate blocking read
if (this->physical_seek(next_read_pos)) {
nread = readBuffer(current_inbuf+1, next_read_pos, this->desired_readbuf_len);
if (nread > 0) { // eof?
set_inbuf(current_inbuf+1, next_read_pos);
}
}
} else {
nread = readbuf_len();
}
if (nread && !readerThread && streaming && !shortread(current_inbuf)) { // not eof, not already reading, in sequential read mode
// read the next chunk asynchronously in hopes we'll want that next
readerThread_inbuf=(current_inbuf+1)%N_INBUFS;
if (this->physical_seek(readbuf_head_filepos()+nread)) {
readerThread = new boost::thread(readAhead, this, readerThread_inbuf,
readbuf_head_filepos()+nread, this->desired_readbuf_len);
}
}
}
if (!nread) {
return traits_type::eof();
} else {
test_invariant();
return filereadbuf()[get_next_read_pos()-readbuf_head_filepos()];
}
}
std::streampos chunky_streambuf::seekpos(std::streampos pos,std::ios_base::openmode Mode) {
return my_seekg(boost::iostreams::position_to_offset(pos),std::ios_base::beg,Mode);
}
std::streampos chunky_streambuf::seekoff(std::streamoff offset, std::ios_base::seekdir whence,std::ios_base::openmode Mode) {
return my_seekg(offset,whence,Mode);
}
std::streampos chunky_streambuf::my_seekg(boost::iostreams::stream_offset offset, std::ios_base::seekdir whence,std::ios_base::openmode Mode) {
if (!this->is_open()) {
return -1;
}
// watch out for a simple rewind or tellg
if (0==offset) {
if (whence == std::ios_base::cur) {
if (this->last_seek_pos >= 0) { // unsatisfied seek request
return last_seek_pos; // that's where we'd be if we'd actually seeked
} else {
return get_next_read_pos(); // nothing to do
}
}
if (whence == std::ios_base::beg) { // just a rewind
// do we already have this loaded?
int n = find_readbuf_for_pos(0);
if (n >= 0) {
set_inbuf(n,0);
} else { // rewind
this->physical_seek(0);
set_inbuf(current_inbuf+1,0,0,0,0); // blow the cache
}
last_seek_pos = -1; // no need to seek
return 0;
} // end just a rewind
} // end if offset==0
/* find where in stream to start */
/* compute absolute position */
boost::iostreams::stream_offset pos = offset;
if (whence == std::ios_base::cur) {
pos += this->get_next_read_pos();
} else if (whence == std::ios_base::end) {
if (!this->flen) { // length is unknown
this->flen = boost::iostreams::position_to_offset(this->handle->seek(0,std::ios_base::end));
}
pos = this->flen+pos;
}
// do we already have this loaded?
int n = find_readbuf_for_pos(pos); // will wait for readhead if any
if (n>=0) {
set_inbuf(n,pos);
this->last_seek_pos = -1; // no need to actually seek
} else {
// just note the request for now, actually seek at read time
this->last_seek_pos = pos;
set_inbuf(current_inbuf+1,0,0,0,0); // blow the cache
}
return pos;
}
} // namespace util
} // namespace pwiz
|