X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fsys-file-writer.c;h=3350a344854efcda877623822b7e9868b21898bb;hb=7a718e594fb0425e1e8f4ebbfa06463de8e88699;hp=8cfd577f1a6c656ea0ae70d5a87dcfdd0ecf9a38;hpb=a1c1a4ca100da5c40fe8637b1d460e61a4a8668e;p=pspp diff --git a/src/data/sys-file-writer.c b/src/data/sys-file-writer.c index 8cfd577f1a..3350a34485 100644 --- a/src/data/sys-file-writer.c +++ b/src/data/sys-file-writer.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-2000, 2006-2013 Free Software Foundation, Inc. + Copyright (C) 1997-2000, 2006-2014 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -33,7 +33,6 @@ #include "data/casewriter.h" #include "data/dictionary.h" #include "data/file-handle-def.h" -#include "data/file-name.h" #include "data/format.h" #include "data/make-file.h" #include "data/missing-values.h" @@ -73,7 +72,7 @@ struct sfm_writer FILE *file; /* File stream. */ struct replace_file *rf; /* Ticket for replacing output file. */ - enum sfm_compression compression; + enum any_compression compression; casenumber case_cnt; /* Number of cases written so far. */ uint8_t space; /* ' ' in the file's character encoding. */ @@ -183,8 +182,8 @@ sfm_writer_default_options (void) { struct sfm_write_options opts; opts.compression = (settings_get_scompression () - ? SFM_COMP_SIMPLE - : SFM_COMP_NONE); + ? ANY_COMP_SIMPLE + : ANY_COMP_NONE); opts.create_writeable = true; opts.version = 3; return opts; @@ -224,9 +223,9 @@ sfm_open_writer (struct file_handle *fh, struct dictionary *d, files have been observed, so drop back to simple compression for those files. */ w->compression = opts.compression; - if (w->compression == SFM_COMP_ZLIB + if (w->compression == ANY_COMP_ZLIB && is_encoding_ebcdic_compatible (dict_get_encoding (d))) - w->compression = SFM_COMP_SIMPLE; + w->compression = ANY_COMP_SIMPLE; w->case_cnt = 0; @@ -251,8 +250,7 @@ sfm_open_writer (struct file_handle *fh, struct dictionary *d, mode = 0444; if (opts.create_writeable) mode |= 0222; - w->rf = replace_file_start (fh_get_file_name (fh), "wb", mode, - &w->file, NULL); + w->rf = replace_file_start (fh, "wb", mode, &w->file); if (w->rf == NULL) { msg (ME, _("Error opening `%s' for writing as a system file: %s."), @@ -306,7 +304,7 @@ sfm_open_writer (struct file_handle *fh, struct dictionary *d, write_int (w, 999); write_int (w, 0); - if (w->compression == SFM_COMP_ZLIB) + if (w->compression == ANY_COMP_ZLIB) { w->zstream.zalloc = Z_NULL; w->zstream.zfree = Z_NULL; @@ -377,7 +375,7 @@ write_header (struct sfm_writer *w, const struct dictionary *d) /* Record-type code. */ if (is_encoding_ebcdic_compatible (dict_encoding)) write_string (w, EBCDIC_MAGIC, 4); - else if (w->compression == SFM_COMP_ZLIB) + else if (w->compression == ANY_COMP_ZLIB) write_string (w, ASCII_ZMAGIC, 4); else write_string (w, ASCII_MAGIC, 4); @@ -394,8 +392,8 @@ write_header (struct sfm_writer *w, const struct dictionary *d) write_int (w, calc_oct_idx (d, NULL)); /* Compressed? */ - write_int (w, (w->compression == SFM_COMP_NONE ? 0 - : w->compression == SFM_COMP_SIMPLE ? 1 + write_int (w, (w->compression == ANY_COMP_NONE ? 0 + : w->compression == ANY_COMP_SIMPLE ? 1 : 2)); /* Weight variable. */ @@ -1216,7 +1214,7 @@ sys_file_casewriter_write (struct casewriter *writer, void *w_, w->case_cnt++; - if (w->compression == SFM_COMP_NONE) + if (w->compression == ANY_COMP_NONE) write_case_uncompressed (w, c); else write_case_compressed (w, c); @@ -1255,7 +1253,7 @@ close_writer (struct sfm_writer *w) { /* Flush buffer. */ flush_compressed (w); - if (w->compression == SFM_COMP_ZLIB) + if (w->compression == ANY_COMP_ZLIB) { finish_zstream (w); write_ztrailer (w); @@ -1422,6 +1420,7 @@ finish_zstream (struct sfm_writer *w) block = &w->blocks[w->n_blocks++]; block->uncompressed_size = w->zstream.total_in; block->compressed_size = w->zstream.total_out; + deflateEnd (&w->zstream); } static void @@ -1507,7 +1506,7 @@ flush_compressed (struct sfm_writer *w) if (w->n_opcodes) { unsigned int n = 8 * (1 + w->n_elements); - if (w->compression == SFM_COMP_SIMPLE) + if (w->compression == ANY_COMP_SIMPLE) write_bytes (w, w->cbuf, n); else write_zlib (w, w->cbuf, n);