2 * RAZF : Random Access compressed(Z) File
4 * Release Date: 2008-10-27
6 * Copyright 2008, Jue Ruan <ruanjue@gmail.com>, Heng Li <lh3@sanger.ac.uk>
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
41 #if ZLIB_VERNUM < 0x1221
57 #warning "zlib < 1.2.2.1; RAZF writing is disabled."
60 #define DEF_MEM_LEVEL 8
62 static inline uint32_t byte_swap_4(uint32_t v){
63 v = ((v & 0x0000FFFFU) << 16) | (v >> 16);
64 return ((v & 0x00FF00FFU) << 8) | ((v & 0xFF00FF00U) >> 8);
67 static inline uint64_t byte_swap_8(uint64_t v){
68 v = ((v & 0x00000000FFFFFFFFLLU) << 32) | (v >> 32);
69 v = ((v & 0x0000FFFF0000FFFFLLU) << 16) | ((v & 0xFFFF0000FFFF0000LLU) >> 16);
70 return ((v & 0x00FF00FF00FF00FFLLU) << 8) | ((v & 0xFF00FF00FF00FF00LLU) >> 8);
73 static inline int is_big_endian(){
76 return (c[0] != 0x01);
80 static void add_zindex(RAZF *rz, int64_t in, int64_t out){
81 if(rz->index->size == rz->index->cap){
82 rz->index->cap = rz->index->cap * 1.5 + 2;
83 rz->index->cell_offsets = realloc(rz->index->cell_offsets, sizeof(int) * rz->index->cap);
84 rz->index->bin_offsets = realloc(rz->index->bin_offsets, sizeof(int64_t) * (rz->index->cap/RZ_BIN_SIZE + 1));
86 if(rz->index->size % RZ_BIN_SIZE == 0) rz->index->bin_offsets[rz->index->size / RZ_BIN_SIZE] = out;
87 rz->index->cell_offsets[rz->index->size] = out - rz->index->bin_offsets[rz->index->size / RZ_BIN_SIZE];
91 static void save_zindex(RAZF *rz, int fd){
94 is_be = is_big_endian();
95 if(is_be) write(fd, &rz->index->size, sizeof(int));
97 v32 = byte_swap_4((uint32_t)rz->index->size);
98 write(fd, &v32, sizeof(uint32_t));
100 v32 = rz->index->size / RZ_BIN_SIZE + 1;
102 for(i=0;i<v32;i++) rz->index->bin_offsets[i] = byte_swap_8((uint64_t)rz->index->bin_offsets[i]);
103 for(i=0;i<rz->index->size;i++) rz->index->cell_offsets[i] = byte_swap_4((uint32_t)rz->index->cell_offsets[i]);
105 write(fd, rz->index->bin_offsets, sizeof(int64_t) * v32);
106 write(fd, rz->index->cell_offsets, sizeof(int32_t) * rz->index->size);
110 static void load_zindex(RAZF *rz, int fd){
113 if(!rz->load_index) return;
114 if(rz->index == NULL) rz->index = malloc(sizeof(ZBlockIndex));
115 is_be = is_big_endian();
116 read(fd, &rz->index->size, sizeof(int));
117 if(!is_be) rz->index->size = byte_swap_4((uint32_t)rz->index->size);
118 rz->index->cap = rz->index->size;
119 v32 = rz->index->size / RZ_BIN_SIZE + 1;
120 rz->index->bin_offsets = malloc(sizeof(int64_t) * v32);
121 read(fd, rz->index->bin_offsets, sizeof(int64_t) * v32);
122 rz->index->cell_offsets = malloc(sizeof(int) * rz->index->size);
123 read(fd, rz->index->cell_offsets, sizeof(int) * rz->index->size);
125 for(i=0;i<v32;i++) rz->index->bin_offsets[i] = byte_swap_8((uint64_t)rz->index->bin_offsets[i]);
126 for(i=0;i<rz->index->size;i++) rz->index->cell_offsets[i] = byte_swap_4((uint32_t)rz->index->cell_offsets[i]);
131 static RAZF* razf_open_w(int fd)
133 fprintf(stderr, "[razf_open_w] Writing is not available with zlib ver < 1.2.2.1\n");
137 static RAZF* razf_open_w(int fd){
139 rz = calloc(1, sizeof(RAZF));
142 rz->stream = calloc(sizeof(z_stream), 1);
143 rz->inbuf = malloc(RZ_BUFFER_SIZE);
144 rz->outbuf = malloc(RZ_BUFFER_SIZE);
145 rz->index = calloc(sizeof(ZBlockIndex), 1);
146 deflateInit2(rz->stream, RZ_COMPRESS_LEVEL, Z_DEFLATED, WINDOW_BITS + 16, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY);
147 rz->stream->avail_out = RZ_BUFFER_SIZE;
148 rz->stream->next_out = rz->outbuf;
149 rz->header = calloc(sizeof(gz_header), 1);
150 rz->header->os = 0x03; //Unix
151 rz->header->text = 0;
152 rz->header->time = 0;
153 rz->header->extra = malloc(7);
154 strncpy((char*)rz->header->extra, "RAZF", 4);
155 rz->header->extra[4] = 1; // obsolete field
156 // block size = RZ_BLOCK_SIZE, Big-Endian
157 rz->header->extra[5] = RZ_BLOCK_SIZE >> 8;
158 rz->header->extra[6] = RZ_BLOCK_SIZE & 0xFF;
159 rz->header->extra_len = 7;
160 rz->header->name = rz->header->comment = 0;
161 rz->header->hcrc = 0;
162 deflateSetHeader(rz->stream, rz->header);
163 rz->block_pos = rz->block_off = 0;
167 static void _razf_write(RAZF* rz, const void *data, int size){
169 rz->stream->avail_in = size;
170 rz->stream->next_in = (void*)data;
172 tout = rz->stream->avail_out;
173 deflate(rz->stream, Z_NO_FLUSH);
174 rz->out += tout - rz->stream->avail_out;
175 if(rz->stream->avail_out) break;
176 write(rz->filedes, rz->outbuf, RZ_BUFFER_SIZE - rz->stream->avail_out);
177 rz->stream->avail_out = RZ_BUFFER_SIZE;
178 rz->stream->next_out = rz->outbuf;
179 if(rz->stream->avail_in == 0) break;
181 rz->in += size - rz->stream->avail_in;
182 rz->block_off += size - rz->stream->avail_in;
185 static void razf_flush(RAZF *rz){
188 _razf_write(rz, rz->inbuf, rz->buf_len);
189 rz->buf_off = rz->buf_len = 0;
191 if(rz->stream->avail_out){
192 write(rz->filedes, rz->outbuf, RZ_BUFFER_SIZE - rz->stream->avail_out);
193 rz->stream->avail_out = RZ_BUFFER_SIZE;
194 rz->stream->next_out = rz->outbuf;
197 tout = rz->stream->avail_out;
198 deflate(rz->stream, Z_FULL_FLUSH);
199 rz->out += tout - rz->stream->avail_out;
200 if(rz->stream->avail_out == 0){
201 write(rz->filedes, rz->outbuf, RZ_BUFFER_SIZE - rz->stream->avail_out);
202 rz->stream->avail_out = RZ_BUFFER_SIZE;
203 rz->stream->next_out = rz->outbuf;
206 rz->block_pos = rz->out;
210 static void razf_end_flush(RAZF *rz){
213 _razf_write(rz, rz->inbuf, rz->buf_len);
214 rz->buf_off = rz->buf_len = 0;
217 tout = rz->stream->avail_out;
218 deflate(rz->stream, Z_FINISH);
219 rz->out += tout - rz->stream->avail_out;
220 if(rz->stream->avail_out < RZ_BUFFER_SIZE){
221 write(rz->filedes, rz->outbuf, RZ_BUFFER_SIZE - rz->stream->avail_out);
222 rz->stream->avail_out = RZ_BUFFER_SIZE;
223 rz->stream->next_out = rz->outbuf;
228 static void _razf_buffered_write(RAZF *rz, const void *data, int size){
231 if(rz->buf_len == RZ_BUFFER_SIZE){
232 _razf_write(rz, rz->inbuf, rz->buf_len);
235 if(size + rz->buf_len < RZ_BUFFER_SIZE){
236 for(i=0;i<size;i++) ((char*)rz->inbuf + rz->buf_len)[i] = ((char*)data)[i];
240 n = RZ_BUFFER_SIZE - rz->buf_len;
241 for(i=0;i<n;i++) ((char*)rz->inbuf + rz->buf_len)[i] = ((char*)data)[i];
249 int razf_write(RAZF* rz, const void *data, int size){
253 next_block = ((rz->in / RZ_BLOCK_SIZE) + 1) * RZ_BLOCK_SIZE;
254 while(rz->in + rz->buf_len + size >= next_block){
255 n = next_block - rz->in - rz->buf_len;
256 _razf_buffered_write(rz, data, n);
260 add_zindex(rz, rz->in, rz->out);
261 next_block = ((rz->in / RZ_BLOCK_SIZE) + 1) * RZ_BLOCK_SIZE;
263 _razf_buffered_write(rz, data, size);
269 #define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */
270 #define HEAD_CRC 0x02 /* bit 1 set: header CRC present */
271 #define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */
272 #define ORIG_NAME 0x08 /* bit 3 set: original file name present */
273 #define COMMENT 0x10 /* bit 4 set: file comment present */
274 #define RESERVED 0xE0 /* bits 5..7: reserved */
276 static int _read_gz_header(unsigned char *data, int size, int *extra_off, int *extra_len){
277 int method, flags, n, len;
278 if(size < 2) return 0;
279 if(data[0] != 0x1f || data[1] != 0x8b) return 0;
280 if(size < 4) return 0;
283 if(method != Z_DEFLATED || (flags & RESERVED)) return 0;
284 n = 4 + 6; // Skip 6 bytes
287 if(flags & EXTRA_FIELD){
288 if(size < n + 2) return 0;
289 len = ((int)data[n + 1] << 8) | data[n];
293 if(n >= size) return 0;
297 *extra_len = n - (*extra_off);
299 if(flags & ORIG_NAME) while(n < size && data[n++]);
300 if(flags & COMMENT) while(n < size && data[n++]);
301 if(flags & HEAD_CRC){
302 if(n + 2 > size) return 0;
308 static RAZF* razf_open_r(int fd, int _load_index){
310 int ext_off, ext_len;
313 unsigned char c[] = "RAZF";
314 rz = calloc(1, sizeof(RAZF));
317 rz->stream = calloc(sizeof(z_stream), 1);
318 rz->inbuf = malloc(RZ_BUFFER_SIZE);
319 rz->outbuf = malloc(RZ_BUFFER_SIZE);
320 rz->end = rz->src_end = 0x7FFFFFFFFFFFFFFFLL;
321 n = read(rz->filedes, rz->inbuf, RZ_BUFFER_SIZE);
322 ret = _read_gz_header(rz->inbuf, n, &ext_off, &ext_len);
326 rz->file_type = FILE_TYPE_PLAIN;
327 memcpy(rz->outbuf, rz->inbuf, n);
333 rz->header_size = ret;
334 ret = inflateInit2(rz->stream, -WINDOW_BITS);
335 if(ret != Z_OK){ inflateEnd(rz->stream); goto PLAIN_FILE;}
336 rz->stream->avail_in = n - rz->header_size;
337 rz->stream->next_in = rz->inbuf + rz->header_size;
338 rz->stream->avail_out = RZ_BUFFER_SIZE;
339 rz->stream->next_out = rz->outbuf;
340 rz->file_type = FILE_TYPE_GZ;
341 rz->in = rz->header_size;
342 rz->block_pos = rz->header_size;
343 rz->next_block_pos = rz->header_size;
345 if(ext_len < 7 || memcmp(rz->inbuf + ext_off, c, 4) != 0) return rz;
346 if(((((unsigned char*)rz->inbuf)[ext_off + 5] << 8) | ((unsigned char*)rz->inbuf)[ext_off + 6]) != RZ_BLOCK_SIZE){
347 fprintf(stderr, " -- WARNING: RZ_BLOCK_SIZE is not %d, treat source as gz file. in %s -- %s:%d --\n", RZ_BLOCK_SIZE, __FUNCTION__, __FILE__, __LINE__);
350 rz->load_index = _load_index;
351 rz->file_type = FILE_TYPE_RZ;
352 if(lseek(fd, -16, SEEK_END) == -1){
356 rz->src_end = rz->end = 0x7FFFFFFFFFFFFFFFLL;
358 is_be = is_big_endian();
360 read(fd, &end, sizeof(int64_t));
361 if(!is_be) rz->src_end = (int64_t)byte_swap_8((uint64_t)end);
362 else rz->src_end = end;
363 read(fd, &end, sizeof(int64_t));
364 if(!is_be) rz->end = (int64_t)byte_swap_8((uint64_t)end);
367 rz->stream->avail_in -= n - rz->end;
370 if(rz->end > rz->src_end){
371 lseek(fd, rz->in, SEEK_SET);
374 if(lseek(fd, rz->end, SEEK_SET) != rz->end){
375 lseek(fd, rz->in, SEEK_SET);
379 lseek(fd, n, SEEK_SET);
384 RAZF* razf_dopen(int fd, const char *mode){
385 if(strcasecmp(mode, "r") == 0) return razf_open_r(fd, 1);
386 else if(strcasecmp(mode, "w") == 0) return razf_open_w(fd);
390 RAZF* razf_dopen2(int fd, const char *mode)
392 if(strcasecmp(mode, "r") == 0) return razf_open_r(fd, 0);
393 else if(strcasecmp(mode, "w") == 0) return razf_open_w(fd);
397 static inline RAZF* _razf_open(const char *filename, const char *mode, int _load_index){
400 if(strcasecmp(mode, "r") == 0){
401 fd = open(filename, O_RDONLY);
402 rz = razf_open_r(fd, _load_index);
403 } else if(strcasecmp(mode, "w") == 0){
404 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0644);
405 rz = razf_open_w(fd);
410 RAZF* razf_open(const char *filename, const char *mode){
411 return _razf_open(filename, mode, 1);
414 RAZF* razf_open2(const char *filename, const char *mode){
415 return _razf_open(filename, mode, 0);
418 int razf_get_data_size(RAZF *rz, int64_t *u_size, int64_t *c_size){
420 if(rz->mode != 'r' && rz->mode != 'R') return 0;
421 switch(rz->file_type){
422 case FILE_TYPE_PLAIN:
423 if(rz->end == 0x7fffffffffffffffLL){
424 if((n = lseek(rz->filedes, 0, SEEK_CUR)) == -1) return 0;
425 rz->end = lseek(rz->filedes, 0, SEEK_END);
426 lseek(rz->filedes, n, SEEK_SET);
428 *u_size = *c_size = rz->end;
433 if(rz->src_end == rz->end) return 0;
434 *u_size = rz->src_end;
442 static int _razf_read(RAZF* rz, void *data, int size){
444 if(rz->z_eof || rz->z_err) return 0;
445 if (rz->file_type == FILE_TYPE_PLAIN) {
446 ret = read(rz->filedes, data, size);
447 if (ret == 0) rz->z_eof = 1;
450 rz->stream->avail_out = size;
451 rz->stream->next_out = data;
452 while(rz->stream->avail_out){
453 if(rz->stream->avail_in == 0){
454 if(rz->in >= rz->end){ rz->z_eof = 1; break; }
455 if(rz->end - rz->in < RZ_BUFFER_SIZE){
456 rz->stream->avail_in = read(rz->filedes, rz->inbuf, rz->end -rz->in);
458 rz->stream->avail_in = read(rz->filedes, rz->inbuf, RZ_BUFFER_SIZE);
460 if(rz->stream->avail_in == 0){
464 rz->stream->next_in = rz->inbuf;
466 tin = rz->stream->avail_in;
467 ret = inflate(rz->stream, Z_BLOCK);
468 rz->in += tin - rz->stream->avail_in;
469 if(ret == Z_NEED_DICT || ret == Z_MEM_ERROR || ret == Z_DATA_ERROR){
470 fprintf(stderr, "[_razf_read] inflate error: %d (at %s:%d)\n", ret, __FILE__, __LINE__);
474 if(ret == Z_STREAM_END){
478 if ((rz->stream->data_type&128) && !(rz->stream->data_type&64)){
480 rz->next_block_pos = rz->in;
484 return size - rz->stream->avail_out;
487 int razf_read(RAZF *rz, void *data, int size){
492 if(size < rz->buf_len){
493 for(i=0;i<size;i++) ((char*)data)[i] = ((char*)rz->outbuf + rz->buf_off)[i];
497 rz->block_off += size;
501 for(i=0;i<rz->buf_len;i++) ((char*)data)[i] = ((char*)rz->outbuf + rz->buf_off)[i];
504 rz->block_off += rz->buf_len;
508 rz->block_pos = rz->next_block_pos;
513 } else if(rz->buf_flush){
514 rz->block_pos = rz->next_block_pos;
518 if(rz->buf_flush) continue;
519 rz->buf_len = _razf_read(rz, rz->outbuf, RZ_BUFFER_SIZE);
520 if(rz->z_eof && rz->buf_len == 0) break;
522 rz->out += ori_size - size;
523 return ori_size - size;
526 int razf_skip(RAZF* rz, int size){
531 if(size < rz->buf_len){
534 rz->block_off += size;
541 rz->block_off += rz->buf_len;
543 rz->block_pos = rz->next_block_pos;
548 } else if(rz->buf_flush){
549 rz->block_pos = rz->next_block_pos;
553 if(rz->buf_flush) continue;
554 rz->buf_len = _razf_read(rz, rz->outbuf, RZ_BUFFER_SIZE);
557 rz->out += ori_size - size;
558 return ori_size - size;
561 static void _razf_reset_read(RAZF *rz, int64_t in, int64_t out){
562 lseek(rz->filedes, in, SEEK_SET);
566 rz->next_block_pos = in;
569 rz->z_eof = rz->z_err = 0;
570 inflateReset(rz->stream);
571 rz->stream->avail_in = 0;
572 rz->buf_off = rz->buf_len = 0;
575 int64_t razf_jump(RAZF *rz, int64_t block_start, int block_offset){
578 if(rz->file_type == FILE_TYPE_PLAIN){
579 rz->buf_off = rz->buf_len = 0;
580 pos = block_start + block_offset;
581 pos = lseek(rz->filedes, pos, SEEK_SET);
582 rz->out = rz->in = pos;
585 if(block_start == rz->block_pos && block_offset >= rz->block_off) {
586 block_offset -= rz->block_off;
587 goto SKIP; // Needn't reset inflate
589 if(block_start == 0) block_start = rz->header_size; // Automaticly revist wrong block_start
590 _razf_reset_read(rz, block_start, 0);
592 if(block_offset) razf_skip(rz, block_offset);
593 return rz->block_off;
596 int64_t razf_seek(RAZF* rz, int64_t pos, int where){
598 int64_t seek_pos, new_out;
600 if (where == SEEK_CUR) pos += rz->out;
601 else if (where == SEEK_END) pos += rz->src_end;
602 if(rz->file_type == FILE_TYPE_PLAIN){
603 seek_pos = lseek(rz->filedes, pos, SEEK_SET);
604 rz->buf_off = rz->buf_len = 0;
605 rz->out = rz->in = seek_pos;
607 } else if(rz->file_type == FILE_TYPE_GZ){
608 if(pos >= rz->out) goto SKIP;
611 if(pos == rz->out) return pos;
612 if(pos > rz->src_end) return rz->out;
613 if(!rz->seekable || !rz->load_index){
614 if(pos >= rz->out) goto SKIP;
616 idx = pos / RZ_BLOCK_SIZE - 1;
617 seek_pos = (idx < 0)? rz->header_size:(rz->index->cell_offsets[idx] + rz->index->bin_offsets[idx / RZ_BIN_SIZE]);
618 new_out = (idx + 1) * RZ_BLOCK_SIZE;
619 if(pos > rz->out && new_out <= rz->out) goto SKIP;
620 _razf_reset_read(rz, seek_pos, new_out);
622 razf_skip(rz, (int)(pos - rz->out));
626 uint64_t razf_tell2(RAZF *rz)
629 if (rz->load_index) {
630 int64_t idx, seek_pos;
631 idx = rz->out / RZ_BLOCK_SIZE - 1;
632 seek_pos = (idx < 0)? rz->header_size:(rz->index->cell_offsets[idx] + rz->index->bin_offsets[idx / RZ_BIN_SIZE]);
633 if (seek_pos != rz->block_pos || rz->out%RZ_BLOCK_SIZE != rz->block_off)
634 fprintf(stderr, "[razf_tell2] inconsistent block offset: (%lld, %lld) != (%lld, %lld)\n",
635 (long long)seek_pos, (long long)rz->out%RZ_BLOCK_SIZE, (long long)rz->block_pos, (long long) rz->block_off);
638 return (uint64_t)rz->block_pos<<16 | (rz->block_off&0xffff);
641 int64_t razf_seek2(RAZF *rz, uint64_t voffset, int where)
643 if (where != SEEK_SET) return -1;
644 return razf_jump(rz, voffset>>16, voffset&0xffff);
647 void razf_close(RAZF *rz){
651 deflateEnd(rz->stream);
652 save_zindex(rz, rz->filedes);
654 write(rz->filedes, &rz->in, sizeof(int64_t));
655 write(rz->filedes, &rz->out, sizeof(int64_t));
657 uint64_t v64 = byte_swap_8((uint64_t)rz->in);
658 write(rz->filedes, &v64, sizeof(int64_t));
659 v64 = byte_swap_8((uint64_t)rz->out);
660 write(rz->filedes, &v64, sizeof(int64_t));
663 } else if(rz->mode == 'r'){
664 if(rz->stream) inflateEnd(rz->stream);
666 if(rz->inbuf) free(rz->inbuf);
667 if(rz->outbuf) free(rz->outbuf);
669 free(rz->header->extra);
670 free(rz->header->name);
671 free(rz->header->comment);
675 free(rz->index->bin_offsets);
676 free(rz->index->cell_offsets);