bde3036092fb2a4a4307d55bd748fbf5f7b42bfa
[pspp-builds.git] / src / data / ChangeLog
1 2008-03-04  Ben Pfaff  <blp@gnu.org>
2
3         Patch #6441.  Reviewed by John Darrington.
4
5         * format.c (fmt_fix): New function.
6         (fmt_fix_input): New function.
7         (fmt_fix_output): New function.
8
9         * format.def: Correct minimum width for DATETIME format.  It was
10         7, should have been 17.
11
12         * automake.mk: Add new files.
13
14         * format-guesser.c: New file.
15
16         * format-guesser.h: New file.
17
18 2008-02-18  Ben Pfaff  <blp@gnu.org>
19
20         Patch #6426.  Reviewed by John Darrington.
21         
22         * format.c (min_width): Renamed fmt_min_width and made public.
23         Updated all references.
24         (max_width): Renamed fmt_max_width and made public.  Updated all
25         references.
26         (max_decimals): Renamed fmt_max_decimals and made public.  Updated
27         all references.
28         (var_create): Use the new functions for default variable
29         attributes below.
30         (var_default_formats): New function.
31         (var_default_measure): New function.
32         (var_default_alignment): New function.
33
34         * format.h (macro FMT_MAX_NUMERIC_WIDTH): New macro.
35
36 2008-02-09  Ben Pfaff  <blp@gnu.org>
37
38         Add a couple of extensions to GET DATA TYPE=TXT.  Patch #6412.
39         Thanks to John Darrington for review.
40
41         * data-in.c (data_in): Add new argument to designate the last
42         column of the data field being parsed, for use in error messages.
43         Update all callers.
44
45         * data-parser (struct data_parser): New member `quote_escape'.
46         (data_parser_create): Initialize quote_escape.
47         (data_parser_set_quotes): New function.
48         (cut_field): Support escaped quotes.
49         (parse_delimited_span): Ditto.
50         (parse_delimited_no_span): Ditto.
51
52         * get-data.c (parse_get_txt): Support ESCAPE extension subcommand
53         in enhanced mode.  Only support multiple quote characters in
54         enhanced mode.
55
56 2008-02-06  John Darrington <john@darrington.wattle.id.au>
57
58         psql-reader.c psql-reader.h: Read more than one tuple at
59         once.  Fix bug reading a query which returns no data. Fix bug
60         when transformation followed a reader.
61         Ask the server for the number of records in the query, for the
62         benefit of the gui.
63
64 2008-02-05  John Darrington <john@darrington.wattle.id.au>
65
66         psql-reader.c: So yesterday they release postgresql 8.3.0
67         which has money represented with 64 bits.  They must get
68         paid more than me.
69
70 2008-02-02  John Darrington <john@darrington.wattle.id.au>
71
72         psql-reader.c psql-reader.h: New files.  Thanks to Ben Pfaff
73         for reviewing this code.
74         
75 2008-02-02  Ben Pfaff  <blp@gnu.org>
76
77         Patch #6347.
78
79         * sys-file-reader.c (read_variable_record): Allow missing values
80         to be specified on long string variables, but warn about them
81         because PSPP does not yet support them.
82         (read_extension_record): Ignore extension records 20 and 21, which
83         PSPP does not yet support.
84         (read_header): Fix error message when floating-point format cannot
85         be identified.
86
87 2008-02-01  Ben Pfaff  <blp@gnu.org>
88
89         Patch #6386.  Thanks to John Darrington for review and for the
90         updates to gnumeric-reader.c.
91
92         * dictionary.c (make_hinted_name): New function.
93         (make_numeric_name): New function.
94         (dict_make_unique_var_name): New function.
95
96         * gnumeric-reader.c (devise_name): Removed.
97         (munge_name): Removed.
98         (gnumeric_open_reader): Use new function
99         dict_make_unique_var_name.
100
101         * short-names.c (set_var_short_name_suffix): Use new function
102         str_format_26adic.
103
104 2008-01-19  John Darrington <john@darrington.wattle.id.au>
105
106         * settings.c settings.h: Moved static variables into a 
107         single struct.  Renamed functions to have a settings_ prefix.
108
109 2008-01-14  John Darrington <john@darrington.wattle.id.au>
110
111         * data-out.c (output_AHEX): Corrected number of bytes in
112         call to output_hex.  Closes bug #22011
113
114 2008-01-02  John Darrington <john@darrington.wattle.id.au>
115
116         * variable.c variable.h: Replaced var_get_value_name with 
117         var_append_value_name which doesn't use any static data.
118         Thanks to Ben for review.
119
120 2007-12-07  Ben Pfaff  <blp@gnu.org>
121
122         Patch #6302.
123
124         * casegrouper.c (casegrouper_get_next_group): Cause a casegrouper
125         made from an empty casereader produce a casegrouper with no
126         groups, instead of one with one group that has no cases.
127
128         * casereader.c (casereader_is_empty): New function.
129
130 2007-12-06  Ben Pfaff  <blp@gnu.org>
131
132         Patch #6303.
133
134         * sys-file-reader.c (read_display_parameters): Handle variable
135         display parameters record with only 2 data items per variable.
136         Reported by Guido Gay <gay@irer.it>.
137
138 2007-12-04  Ben Pfaff  <blp@gnu.org>
139
140         * identifier.c (lex_id_match_n): New function.
141         (lex_id_match): Reimplement in terms of lex_id_match_n.
142
143 2007-11-24  Ben Pfaff  <blp@gnu.org>
144
145         * automake.mk (src_data_libdata_a_SOURCES): Add val-type.h, to fix
146         make distcheck.
147
148 2007-11-24  Ben Pfaff  <blp@gnu.org>
149
150         Fix warning reported when reading back system files that include
151         very long string variables.  Thanks to Guido Gay <gay@irer.it> for
152         reporting this bug.
153
154         * short-names.c (short_names_assign): Fix dumb typo, in which `i'
155         was written where `j' was meant.
156
157 2007-11-18  Ben Pfaff  <blp@gnu.org>
158
159         Properly write variables that include a range of missing values to
160         system files.  Thanks to Guido Gay <gay@irer.it> for reporting
161         this bug.
162
163         * sys-file-writer.c (write_variable): Correctly calculate
164         n_missing_values field when writing variables that include a range
165         of missing values.
166
167 2007-11-10  Ben Pfaff  <blp@gnu.org>
168
169         Cleanups and bug fixes devised while writing up documentation.
170         Patch #6262.
171
172         * automake.mk (src_data_libdata_a_SOURCES): Add new files.
173
174         * dict-class.c: New file.
175         (dict_class_from_id): Move here.
176         (dict_class_to_name): Move here.
177
178         * dict-class.h: New file.
179         (enum dict_class): Move here.  Change from consecutive integers to
180         consecutive bits, to make testing for any of multiple values
181         easier.  Add new DC_ALL constant.
182
183         * dictionary.c (struct dictionary): Change `case_limit' from
184         size_t to casenumber.
185         (dict_get_vars): Make final argument an enum dict_class.
186         (dict_get_vars_mutable): Ditto.
187         (dict_get_case_limit): Change return value to casenumber.
188         (dict_set_case_limit): Change final argument to a casenumber.
189         (dict_unset_split_var): Add assertion.  Rephrase slightly.
190         (dict_set_label): Use xstrndup to simplify.
191
192         * format.c (fmt_step_width): AHEX format also needs 2-byte
193         stepping.
194         (fmt_set_style): Simplify assertions.
195
196         * missing-values.c (mv_add_num_range): Rename mv_add_range.
197         Simplify implementation.
198         (mv_has_value): Simplify implementation.
199         (mv_pop_value): Remove the first value, not the last, to avoid
200         having GET followed by SAVE reverse the order of missing values.
201         (mv_peek_value): Rename mv_get_value.  Simplify assertion.
202         (mv_has_range): Simplify implementation.
203         (mv_peek_range): Rename mv_get_range.
204         (can_resize_string): Removed.
205         (mv_is_resizable): Use value_is_resizable.
206         (mv_resize): Use value_resize.
207
208         * short-names.h (SHORT_NAME_LEN): Move here.
209
210         * val-type.h: New file, for definitions related to type and width
211         of abstract values.  Before, these definitions were mixed among
212         those related to "union value" and those related to variables.
213         (macro SYSMIS): Move here.
214         (macro LOWEST): Move here.
215         (macro HIGHEST): Move here.
216         (macro MAX_STRING); Move here.
217         (enum val_type): New enum with values VAL_NUMERIC and VAL_STRING.
218         Replaces enum var_type that had values VAR_NUMERIC and VAR_STRING.
219         All references updated.
220         (val_type_is_valid): New function.  Replaces var_type_is_valid.
221         All references updated.
222         (val_type_from_width): New function.  Replaces
223         var_type_from_width.  All references updated.
224
225         * value-labels.c (val_labs_copy): Renamed val_labs_clone.  All
226         references updated.
227         (val_labs_can_set_width): Use value_is_resizable.
228         (val_labs_add): Simply return false if the value labels set is too
229         wide, instead of having undefined behavior.
230         (val_labs_replace): Ditto.
231         (val_labs_replace): Ditto.
232         (val_labs_first): Set iterator to null if iteration is complete.
233         (val_labs_first_sorted): Ditto.
234         (val_labs_done): Become a no-op if the iterator is null.
235
236         * value.c (value_is_resizable): New function.
237         (value_resize): New function.
238
239         * variable.c (var_get_dict_class): New function.
240
241         * variable.h (macro LONG_NAME_LEN): Rename VAR_NAME_LEN.  Update
242         all references.
243
244 2007-11-08  Ben Pfaff  <blp@gnu.org>
245
246         * data-in.c: Make formatted data parsing locale-independent.
247         (parse_number): Use c_strtod instead of strtod, to avoid
248         locale-specific behavior.
249         (parse_Z): Ditto.
250
251 2007-11-06  Ben Pfaff  <blp@gnu.org>
252
253         Patch #6256: add support for binary, 360 file formats.  Reviewed
254         by John Darrington.
255
256         * data-in.c (struct data_in): Add `encoding' member.
257         (data_in): Add `encoding' parameter, and re-encode the data passed
258         in where appropriate.  Update all callers to pass it in.
259         (parse_A): Implement EBCDIC recoding wart described in manual.
260         (parse_AHEX): Implement EBCDIC recoding.
261
262         * data-out.c (data_out_legacy): New function.
263         (data_out): Make into a wrapper around data_out_legacy.
264
265         * file-handle-def.c (struct file_handle): New member `encoding'.
266         (fh_create_file): Set encoding.
267         (fh_default_properties): Set default encoding.
268         (fh_get_legacy_encoding): New function.
269
270         * file-handle-def.h (enum fh_mode): New modes FH_MODE_FIXED
271         (that replaces FH_MODE_BINARY), FH_MODE_VARIABLE,
272         FH_MODE_360_VARIABLE, FH_MODE_360_SPANNED.
273         (struct fh_properties): New member `encoding'.
274
275 2007-11-05  Ben Pfaff  <blp@gnu.org>
276
277         Patch #6258.  Reviewed by John Darrington.
278
279         * file-handle-def.c (fh_lock): Add comment that TYPE should be
280         marked with N_() in the caller.  Added these markings to each
281         caller too.  Should make i18n easier.
282         Suggested by Chusslove Illich <caslav.ilic@gmx.net>.
283
284 2007-11-03  Ben Pfaff  <blp@gnu.org>
285
286         Allow output files to overwrite input files (bug #21280).
287
288         * file-handle-def.c: Separate locking of files for input and for
289         output, to allow both to take place at once.  Also, distinguish a
290         file handle from the identity of the underlying file, because the
291         identity of a file changes over time and the file handle can't
292         represent two different identities.
293         (struct file_handle): Remove `next', `open_cnt', `deleted',
294         `type', `open_mode', `aux', `identity' members.  Change `id' from
295         char array to char *.  Add `ref_cnt' member.
296         (file_handle_from_ll) New function.
297         (file_handles) Removed.
298         (named_handles) New variable.
299         (fh_init) Initialize named_handles.
300         (fh_done) Remove name from all named_handles.
301         (free_handle) Updated for modified struct file_handle.
302         (unname_handle) New function.
303         (fh_ref) New function.
304         (fh_from_file_name) Removed.
305         (fh_unref) New function.
306         (fh_unname) New function.
307         (fh_from_id) Rewritten.
308         (create_handle) Updated for modified struct file_handle.
309         (fh_inline_file) Increment the handle's ref count.
310         (fh_create_file) Updated for modified struct file_handle.
311         (fh_create_scratch) Ditto.
312         (fh_free) Removed.
313         (mode_name) Removed.
314         (fh_open) Removed.
315         (fh_close) Removed.
316         (fh_is_open) Removed.
317         (fh_get_id) Updated for modified struct file_handle.
318         (fh_get_default_handle) Increment the handle's ref count.
319         (fh_set_default_handle) Handle ref counts.
320         (struct fh_lock) New structure.
321         (locks) New static var.
322         (fh_lock) New function.
323         (fh_unlock) New function.
324         (fh_lock_get_aux) New function.
325         (fh_lock_set_aux) New function.
326         (fh_is_locked) New function.
327         (make_key) New function.
328         (free_key) New function.
329         (compare_fh_locks) New function.
330         (hash_fh_lock) New function.
331
332         * file-handle-def.h (enum fh_access) New enum.
333
334         * file-name.c: Made file_identity the same in all supported
335         environments.
336         (struct file_identity): New `name' member.
337         (fn_get_identity): For a file that doesn't exist, get the
338         dev/inode of its directory plus its name.  If even the directory
339         doesn't exist, just use its name.  Merge the Windows
340         implementation into the Unix one.
341         (fn_compare_file_identities): Rewritten.  Merge the Windows
342         implementation into the Unix one.
343         (fn_hash_identity): New function.
344
345         * make-file.c (struct replace_file): New structure.
346         (all_files): New static var.
347         (replace_file_start): New function.
348         (replace_file_commit): New function.
349         (replace_file_abort): New function.
350         (free_replace_file): New function.
351         (unlink_replace_files): New function.
352
353         * por-file-reader.c (struct pfm_reader): Add `lock' member.
354         (close_reader): Unlock file.
355         (pfm_open_reader): Lock file.
356
357         * por-file-writer.c (struct pfm_writer): Add fh_lock, replace_file
358         members.
359         (pfm_open_writer): Lock file and prepare for its replacement.
360         (close_writer): Unlock file.
361
362         * scratch-handle.h (struct scratch_handle): Add unique_id so that
363         different generations of a scratch file can be distinguished.
364
365         * scratch-reader.c (scratch_reader_open): Verify that the file is
366         a scratch file.
367
368         * scratch-writer.c (struct scratch_writer): Add `lock' and `dict',
369         remove scratch_handle member.
370         (scratch_writer_open): Lock handle.  Prepare to replace handle
371         data, instead of doing it immediately.
372         (scratch_writer_casewriter_destroy): Replace handle data and
373         unlock handle.
374
375         * sys-file-reader.c (struct sfm_reader): Add `lock' member.
376         (sfm_open_reader): Lock file.
377         (close_reader): Unlock file.
378
379         * sys-file-writer.c (struct sfm_writer): Add fh_lock, replace_file
380         members.
381         (sfm_open_writer): Lock file and prepare for its replacement.
382         (close_writer): Unlock file.
383
384 2007-11-02  Ben Pfaff  <blp@gnu.org>
385
386         * data-out.c (output_number): Use isfinite (from C99) instead of
387         gsl_isfinite, since we now have universal support for it in
388         gnulib.
389         (output_infinite): Ditto.
390         [!HAVE_ROUND] (round): Remove definition, since we now have a
391         replacement in gnulib.
392
393 2007-10-27  John Darrington <john@darrington.wattle.id.au>
394
395         * dictionary.c: Fixed bug in dict_clone, where the vardict.dict member
396         wasn't initialised correctly. Closes bugs #21330 and 21397
397
398
399 2007-10-08  Ben Pfaff  <blp@gnu.org>
400
401         Fix bug #21280.  Thanks to John Darrington for review.
402
403         * file-name.c (create_stream): New function.
404
405         * por-file-writer.c (pfm_open_writer): Use fh_open to open the
406         file handle before creating the file, to ensure that we don't
407         truncate a file that we're reading.  Make code easier to read by
408         using create_stream.
409
410         * sys-file-write.c (sfm_open_writer): Ditto.
411
412 2007-10-01  Ben Pfaff  <blp@gnu.org>
413
414         Fix bug #21192.  Thanks to John Darrington for review.
415
416         * casereader.c (casereader_read): Decrement case_cnt before
417         calling the casereader's "read" member function, so that we
418         interact properly with lazy_casereader.
419
420         * datasheet.c: Add regression test for above bug fix.
421         (clone_datasheet): New function.
422         (lazy_callback): New function.
423         (check_datasheet_casereader): New function.
424         (check_datasheet): Check datasheet contents are reported correctly
425         through an ordinary casereader and a lazy casereader.
426         (clone_model): Use clone_datasheet.
427
428 2007-09-24  Ben Pfaff  <blp@gnu.org>
429
430         Patch #6210.  Reviewed by John Darrington.
431         * settings.c: Drop "long view", which is not needed any longer.
432         (static var long_view): Removed.
433         (force_long_view): Removed.
434         (get_viewwidth): Removed.
435         (init_viewport): Removed long_view reference.
436
437 2007-09-19  John Darrington <john@darrington.wattle.id.au>
438         
439         * settings.c settings.h: Changed viewport's length and width to be 
440         owned by the user interface which uses the data library.  This allows
441         better abstraction, and makes dynamically adjustable dimensions easier.
442         
443 2007-09-18  Ben Pfaff  <blp@gnu.org>
444
445         * procedure.c (proc_extract_active_file_data): New function.
446
447         * lazy-casereader.h: New file.
448
449         * lazy-casereader.c: New file.
450
451         * casereader.c (casereader_dynamic_cast): New function.
452
453 2007-09-14  Ben Pfaff  <blp@gnu.org>
454
455         * dictionary.c (dict_clone): Copy case indexes from cloned
456         dictionary.  Fixes bug #21061.  Reviewed by John Darrington.
457
458 2007-09-13  John Darrington <john@darrington.wattle.id.au>
459
460         * value.c value.h (create_value): New function.
461
462 2007-09-12  Ben Pfaff  <blp@gnu.org>
463
464         Make it clear that translator casereader and casewriter translate
465         functions are supposed to destroy their input case.
466         
467         * casereader-translator.c (struct casereader_translator): Change
468         input case parameter of translate member function from const
469         struct ccase * to struct ccase *.
470         (casereader_create_translator): Ditto, for translate parameter.
471
472         * casewriter-translator.c (struct casewriter_translator): Ditto.
473         (casewriter_create_translator): Ditto.
474
475 2007-08-27  John Darrington <john@darrington.wattle.id.au>
476         
477         * sys-file-reader.c (read_display_parameters): Force display width 
478         to 8, if the sys file says 0 (like SPSS does).
479
480 2007-08-12  Ben Pfaff  <blp@gnu.org>
481
482         * dictionary.c (dict_dump): New function.
483
484 2007-08-12  Ben Pfaff  <blp@gnu.org>
485
486         Drop dict_compactor in favor of using the new struct case_map.
487
488         * dictionary.c (struct copy_map): Removed.
489         (struct dict_compactor): Removed.
490         (dict_make_compactor): Removed.
491         (dict_compactor_compact): Removed.
492         (dict_compactor_destroy): Removed.
493
494         * procedure.c (struct data_set): Change `compactor' member to be a
495         struct case_map *.
496         (proc_open): Use case_map_to_compact_dict instead of
497         dict_make_compactor.
498         (proc_casereader_read): Use case_map_execute instead of
499         dict_compactor_compact.
500         (proc_commit): Use case_map_destroy instead of
501         dict_compactor_destroy.
502
503         * scratch-writer.c (struct scratch_writer): Change `compactor'
504         member to be a struct case_map *.
505         (scratch_writer_open): Use case_map_to_compact_dict instead of
506         dict_make_compactor.
507         (scratch_writer_casewriter_write): Use case_map_execute instead of
508         dict_compactor_compact.
509
510 2007-08-12  Ben Pfaff  <blp@gnu.org>
511
512         * automake.mk: Add case-map.c, case-map.h.
513
514         * case-map.c: New file.
515
516         * case-map.h: New file.
517
518 2007-08-12  Ben Pfaff  <blp@gnu.org>
519
520         * dictionary.c (dict_compact_values): Don't delete scratch
521         variables as well as compacting case indexes.  Update all callers.
522         (dict_get_compacted_value_cnt): Rename dict_count_values and
523         change interface.  Update all callers.
524         (dict_get_compacted_value_cnt): Remove.
525         (dict_compacting_would_shrink): Remove.
526         (dict_compacting_would_change): Remove.
527         (dict_make_compactor): Add new parameter.  Update all callers.
528         
529         * procedure.c (proc_casereader_read): Use casewriter_get_value_cnt
530         instead of dict_count_values, changing an O(N) operation into
531         O(1).
532
533 2007-08-12  Ben Pfaff  <blp@gnu.org>
534
535         * casereader.c (casereader_read): Don't require cases read by a
536         casereader to be exactly the expected size: as long as they're big
537         enough, it's OK.
538
539 2007-08-12  Ben Pfaff  <blp@gnu.org>
540
541         Make casewriters keep track of the number of `union value's in
542         each case.  This is useful for two reasons: casewriter_write can
543         then check that the case being written is large enough, and later
544         recipients of the casewriter can determine the size of the case.
545         
546         * casewriter-translator.c (casewriter_create_translator): Add
547         value_cnt parameter.
548         
549         * casewriter.c (struct casewriter): Add value_cnt member.
550         (casewriter_write): Check that the case passed in is big enough.
551         (casewriter_get_value_cnt): New function.
552         (casewriter_create): Add value_cnt parameter.
553
554 2007-08-09  Ben Pfaff  <blp@gnu.org>
555
556         Fix bug reported by Jason Stover.
557         * settings.c: Move get_termcap_viewport and in particular the
558         #include for <curses.h> to the end of the file.  curses.h
559         redefines bool on some systems (e.g. OpenBSD), which causes
560         disagreement between uses of bool before its inclusion and
561         afterward.
562         Tested by Jason Stover.
563
564 2007-07-29  Ben Pfaff  <blp@gnu.org>
565
566         Provisional fix for bug #18692 and bug #20161.  Reviewed by John
567         Darrington.
568
569         * file-name.c (fn_open): Only pass "r" or "w" to popen as mode
570         argument (never "rb" or "wb") because SUSv3 says that only those
571         modes are defined, and glibc in fact rejects other modes.
572
573         Open portable files with fn_open so that they can be read from
574         pipes.  Fix missing fh_close call to go along with fh_open.
575         Report an error if the file close reports an error.
576         * por-file-reader.c (close_reader): New function.
577         (por_file_casereader_destroy): Use close_reader.
578         (pfm_open_reader): Open file with fn_open.
579
580 2007-07-28  Ben Pfaff  <blp@gnu.org>
581
582         Make PSPP able to read all the portable files I could find on the
583         web.  Thanks to John Darrington for review.  Bug #17620.
584         * por-file-reader.c (struct pfm_reader): New member `line_length'.
585         (error): Print file offset in hexadecimal.
586         (warning): New function.
587         (advance): Treat lines less than 80 bytes long as padded to 80
588         bytes with spaces.
589         (pfm_open_reader): Call read_documents if we find an "E" record.
590         (convert_format): Convert invalid formats to the default format
591         instead of aborting reading the file.
592         (read_variables): Rename duplicate variable names instead of
593         aborting reading the file.
594         (read_value_label): Allow string variables of different widths to
595         be assigned value labels in the same record.  Replace duplicate
596         value labels instead of aborting.
597         (read_documents): New function.
598
599         * por-file-writer.c (pfm_open_writer): Call write_documents if the
600         dictionary has documents.
601         (write_documents): New function.
602
603 2007-07-25  Ben Pfaff  <blp@gnu.org>
604
605         Fix bugs related to bug #17213.
606
607         * settings.c: Use HAVE_LIBNCURSES instead of HAVE_LIBTERMCAP,
608         since the former is what config.h has.  Include the needed ncurses
609         headers.
610         (static var echo) Rename to `do_echo' because the original name is
611         the same as an ncurses identifier.
612         (get_termcap_viewport) Use error instead of msg.
613
614         * file-name.c (fn_interp_vars): Fix interpolation of $VARS.
615         (fn_close): Don't close stdin, stdout, stderr.
616
617 2007-07-26 John Darrington <john@darrington.wattle.id.au>
618
619         * procedure.c procedure.h: Added callbacks which get invoked whenever 
620         a dataset's transformation chain changes.
621
622 2007-07-24  Ben Pfaff  <blp@gnu.org>
623
624         Fix bug #6113.
625         * sys-file-writer.c (write_variable_display_parameters): Use new
626         var_default_display_width function to choose display width of
627         segments after the first one in a given variable.
628         * variable.c (var_create): Use var_default_display_width to pick
629         new variable's display width.
630         (var_default_display_width): New function.
631         Reviewed by John Darrington.
632
633 2007-07-24  Ben Pfaff  <blp@gnu.org>
634
635         Fix bug #20427.
636         * por-file-writer.c (write_variables): Write weight variable.
637         Reviewed by John Darrington.
638
639 2007-07-23  Ben Pfaff  <blp@gnu.org>
640
641         Improvements to system file reader and writer.
642         
643         First, move all detailed knowledge of very long strings into
644         sys-file-private.[ch], so that this nasty stuff can be isolated.
645
646         * sys-file-private.c (REAL_VLS_CHUNK): New macro.
647         (EFFECTIVE_VLS_CHUNK): New macro.
648         (min_int): New function.
649         (max_int): New function.
650         (sfm_width_to_bytes): Rewrite.
651         (sfm_width_to_octs): New function.
652         (sfm_segment_alloc_width): New function.
653         (sfm_segment_alloc_bytes): New function.
654         (sfm_segment_used_bytes): New function.
655         (sfm_segment_offset): New function.
656         (sfm_segment_effective_offset): New function.
657         (sfm_dictionary_to_sfm_vars): New function.
658
659         * sys-file-private.h (MIN_VERY_LONG_STRING): Removed.
660         (EFFECTIVE_LONG_STRING_LENGTH): Removed.
661         (struct sfm_var): New structure.
662
663         Next, improvements to the system file reader.
664
665         * sys-file-reader.h (struct sfm_read_info): Changed `case_cnt' to
666         type casenumber.  Added `version_major', `version_minor',
667         `version_revision'.
668
669         * sys-file-reader.c (struct sfm_reader): Replaced `flt64_cnt' by
670         `oct_cnt'.  Rename `vars', `var_cnt' to `sfm_vars', `sfm_var_cnt'.
671         Change `case_cnt' to type casenumber.  Removed `has_vls'.
672         (struct sfm_var): Removed.
673         (sfm_open_reader): Don't warn on wrong case size if the file was
674         written by SPSS 13, which tends to get it wrong.  Use
675         sfm_dictionary_to_sfm_vars.
676         (read_header): Always output system file info.
677         (read_variable_record): Simplify code for reading missing values.
678         (read_machine_int32_info): Save version numbers from system file
679         into info struct passed as new argument.
680         (read_long_string_map): Restructured to use new sys-file-private
681         functions.
682         (read_value_labels): Use size_overflow_p.
683         (sys_file_casereader_read): Get rid of distinction between fast
684         and slow paths.  Use information provided by sys-file-primate's
685         struct sfm_var to simplify code.
686         (skip_whole_strings): New function.
687         (read_int32): Renamed read_int.  Changed return value to int.
688         Updated all callers.
689         (read_flt64): Renamed read_float.  Changed return value to
690         double.  Updated all callers.
691         (int32_to_native): Removed.  Changed callers to use
692         integer_convert.
693         (flt64_to_double): Removed.  Changed callers to use float_convert.
694         
695         Finally, get rid of int32, flt64 terminology and types in system
696         file writer.  The former wasn't very useful since a POSIX "int"
697         can hold the whole range of int32 and we generally didn't have a
698         need for it to be exactly-32-bits, just at-least-32-bits.  The
699         latter was inconvenient because we had to assume that it could be
700         different from double and thereby convert special values SYSMIS,
701         HIGHEST, LOWEST to and from it in multiple places.  Instead, now
702         we just use "int" and "double" in most places, and do conversions,
703         if necessary, very close to where we do I/O.  This change meant
704         that the writer code couldn't represent records in the file as C
705         structs any longer, but that's no great loss.  The code actually
706         seems to be more readable without them.
707
708         Simplify the compression buffering code: only buffer as much as
709         necessary, which is no more than eight 8-byte units at any given
710         time.
711
712         * sys-file-writer.c (typedef flt64): Removed.
713         (macro second_lowest_flt64): Removed.
714         (struct sysfile_header): Removed.
715         (struct sysfile_variable): Removed.
716         (struct sfm_writer): Removed `needs_translation', `has_vls',
717         `flt64_cnt'.  Changed `compress' to type bool and `case_cnt' to
718         type casenumber.  Renamed `vars' to `sfm_vars', `var_cnt' to
719         `sfm_var_cnt'.  Replaced `buf', `end', `ptr', `x', `y' for
720         compression buffering by `opcodes', `opcode_cnt', `data',
721         `data_cnt'.  Renamed `var_cnt_vls' as `segment_cnt'.
722         (sfm_open_writer): Use sfm_dictionary_to_sfm_vars.  Use simple
723         data writer functions instead of structures.
724         (calc_oct_idx): New function.
725         (write_header): Use simple data writer functions instead of
726         structures.
727         (write_format_spec): Renamed write_format.  New argument.
728         (write_variable_continuation_records): New function.
729         (write_variable): Use simple data writer functions instead of
730         structures.  Use write_variable_continuation_records.  Write
731         entire very long string instead of requiring caller to understand
732         them.
733         (write_value_labels): Use simple data writer functions instead of
734         structures.
735         (write_documents): Ditto.
736         (write_variable_display_parameters): Use sys-file-private
737         functions to simplify.  Use simple data writer functions instead
738         of structures.
739         (write_vls_length_table): Use simple data writer functions instead
740         of structures.
741         (write_longvar_table): Ditto.
742         (write_rec_7_34): Break into new functions
743         write_integer_info_record, write_float_info_record.  Use simple
744         data writer functions instead of structures.
745         (buf_write): Removed.
746         (append_string_max): Removed.
747         (ensure_buf_space): Removed.
748         (sys_file_casewriter_write): Get rid of the distinction between
749         fast and slow paths, which didn't seem to be too useful.  Use new
750         functions write_case_uncompressed, write_case_compressed.
751         (put_instruction): Removed.
752         (put_element): Removed.
753         (write_compressed_data): Removed.
754         (close_writer): Use flush_compressed.  Only write case count to
755         system file if it will fit in the field.
756         (write_case_compressed): New function.
757         (write_case_uncompressed): New function.
758         (flush_compressed): New function.
759         (put_cmp_opcode): New function.
760         (put_cmp_number): New function.
761         (write_int): New function.
762         (convert_double_to_output_format): New function.
763         (write_float): New function.
764         (write_value): New function.
765         (write_string): New function.
766         (write_bytes): New function.
767         (write_zeros): New function.
768         (write_spaces): New function.
769
770         Reviewed by John Darrington.
771
772 2007-07-22  Ben Pfaff  <blp@gnu.org>
773
774         Don't try to write very long strings to portable files.  The
775         format does not support it.
776
777         * por-file-writer.c (MAX_POR_WIDTH): New macro.
778         (pfm_open_writer): Limit output width to MAX_POR_WIDTH.
779         (write_format): Add arg to take width to resize format to.
780         (write_value): Limit width of value written to MAX_POR_WIDTH.
781         (write_variables): Limit width of variable and its output formats
782         to MAX_POR_WIDTH.
783         Reviewed by John Darrington.
784
785 2007-07-22  Ben Pfaff  <blp@gnu.org>
786
787         * sys-file-reader.c (read_variable_to_value_map): Use max_warnings
788         local variable instead of literal 5.
789         Reviewed by John Darrington.
790         
791 2007-07-22  Ben Pfaff  <blp@gnu.org>
792
793         Fix problems with uniqueness of short names in system files with
794         very long string variables.  Now a variable may have multiple
795         short names.
796         
797         * automake.mk (src_data_libdata_a_SOURCES): Add new files
798         short-names.c, short-names.h.
799
800         * dictionary.c (dict_clone): Clone all the short names.
801         (compare_strings): Move into short-names.c.
802         (hash_strings): Ditto.
803         (set_var_short_name_suffix): Ditto.
804         (dict_assign_short_names): Ditto, rename short_names_assign,
805         change to assign all short names.
806         
807         * por-file-writer.c (write_variables): Use short_names_assign
808         instead of dict_assign_short_names.
809
810         * short-names.c: New file.
811
812         * short-names.h: New file.
813
814         * sys-file-private.c (sfm_width_to_segments): New function.
815
816         * sys-file-reader.c (read_long_var_name_map): Save and restore all
817         the short names, not just the first one.
818         
819         * sys-file-writer.c (cont_var_name): Removed.
820         (sfm_open_writer): Use short_names_assign instead of
821         dict_assign_short_names.  Use unique short names assigned by
822         short_names_assign instead of those generated by cont_var_name.
823
824         * variable.c (struct variable): Remove `short_name' member,
825         replace by `short_names' and `short_name_cnt'.
826         (var_create) Initialize new members.
827         (var_get_short_name_cnt): New function.
828         (var_get_short_name): Now takes an index argument.  Changed most
829         callers to pass 0.
830         (var_set_short_name): Ditto.
831         (var_clear_short_name): Renamed var_clear_short_names, changed to
832         clear all short names.
833         
834         Reviewed by John Darrington.
835
836 2007-07-22  Ben Pfaff  <blp@gnu.org>
837
838         * variable.c (var_set_width): Use new var_set_width function.
839
840         * missing-values.c (mv_n_values): Drop assertion, which was not
841         needed.
842
843         * format.c (fmt_default_for_width): New function.
844         (fmt_resize): New function.
845
846         Reviewed by John Darrington.
847
848 2007-07-18 John Darrington <john@darrington.wattle.id.au>
849
850         * datasheet.c (datasheet_delete_columns): Added assertion to check
851         we're not deleting outside the range of the sheet.  
852
853         
854         * dictionary.c dictionary.h variable.c: Added the ability for string
855         variables to be resized.
856         
857         * vardict.h: Added some prototypes (moved from dictionary.h) as
858         these should only be called by variable.c
859
860
861 2007-07-14 John Darrington <john@darrington.wattle.id.au>
862
863         * sfm-reader.c: Respect case_cnt field in file header.
864
865 2007-07-01 John Darrington <john@darrington.wattle.id.au>
866
867         * transformation.c transformation.h (trns_chain_execute): Changed the 
868         signature (Patch #6057)
869
870 2007-06-10  Ben Pfaff  <blp@gnu.org>
871
872         * casereader-filter.c (casereader_filter_destroy): Make sure to
873         write all the remaining excluded cases to the casewriter, if any.
874
875         * caseinit.c (init_list_destroy): Rewrite.
876         (init_list_clear): Ditto.
877
878         * casegrouper.c (casegrouper_get_next_group): Always set *reader
879         to null when returning false.
880
881 2007-06-06  Ben Pfaff  <blp@gnu.org>
882
883         Actually implement the new procedure code and adapt all of its
884         clients to match.  Also adapt all of the other case sources and
885         sinks in the tree and their clients to use the
886         casereader/casewriter infrastructure.
887
888         * automake.mk: Add and remove files.
889
890         * any-reader.c: Change into a casereader.
891         * por-file-reader.c: Ditto.
892         * scratch-reader.c: Ditto.
893         * sys-file-reader.c: Ditto.
894
895         * any-writer.c: Change into a casewriter.
896         * por-file-writer.c: Ditto.
897         * scratch-writer.c: Ditto.
898         * sys-file-writer.c: Ditto.
899
900         * procedure.c: Change to use casereader, casewriter, caseinit, and
901         other new infrastructure.
902
903         * scratch-handle.c: Adapt to new infrastructure.
904
905         * case-sink.c: Removed, now dead code.
906         * case-sink.h: Ditto.
907         * case-source.c: Ditto.
908         * case-source.h: Ditto.
909         * casefile-factory.c: Ditto.
910         * casefile-private.h: Ditto.
911         * casefile.c: Ditto.
912         * casefile.h: Ditto.
913         * casefilter.c: Ditto.
914         * casefilter.h: Ditto.
915         * fastfile.c: Ditto.
916         * fastfile.h: Ditto.
917         * fastfile-factory.c: Ditto.
918         * fastfile-factory.h: Ditto.
919         * storage-stream.c: Ditto.
920         * storage-stream.h: Ditto.
921
922 2007-06-06  Ben Pfaff  <blp@gnu.org>
923
924         Add datasheet code.
925
926         * automake.mk: Add new files.
927
928         * datasheet.c: New file.
929
930         * datasheet.h: New file.
931
932 2007-06-06  Ben Pfaff  <blp@gnu.org>
933
934         Until now, the procedure code has provided a case to the
935         case_source, which has filled in the data values that come from
936         the active file.  "Left" data values that don't come from the
937         active file naturally stay the same from case to case, because the
938         procedure code keeps using that same case.
939
940         One of the compromises that comes with the new procedure code is
941         that the active file allocates and provides its own case, which
942         the procedure code then has to resize to provide room for any
943         other variables that should go in the case and then fill in the
944         values of "left" variables.  Then, when we're done with that case,
945         we have to save the values of "left" variables to copy into the
946         next case read from the active file.
947
948         The caseinit code helps with this.
949
950         * automake.mk: Add new files.
951
952         * caseinit.c: New file. 
953
954         * caseinit.h: New file. 
955
956 2007-06-06  Ben Pfaff  <blp@gnu.org>
957
958         * value.h (value_cnt_from_width): New function.
959
960         * variable.c (var_get_value_cnt): Use new function.
961
962 2007-06-06  Ben Pfaff  <blp@gnu.org>
963
964         Add casegrouper, to allow cases read from a given casereader to be
965         broken into groups, each of which has its own casereader.
966         Generally cases are grouped based on having equal values for some
967         set of variables.
968
969         * automake.mk: Add new files.
970
971         * casegrouper.c: New file.
972
973         * casegrouper.h: New file.
974
975 2007-06-06  Ben Pfaff  <blp@gnu.org>
976
977         Add interface to lexicographical ordering of cases.
978
979         * automake.mk: Add new files.
980
981         * case-ordering.c: New file.
982
983         * case-ordering.h: New file.
984
985 2007-06-06  Ben Pfaff  <blp@gnu.org>
986
987         Add casereaders and casewriters, the basis of the new data processing
988         implementation.  A casereader is a uniform interface to reading cases
989         from a data source; a casewriter is a uniform interface to writing
990         cases to a data sink.
991
992         * automake.mk: Add new files.
993         
994         * casereader-filter.c: New file.
995         
996         * casereader-provider.h: New file.
997
998         * casereader-translator.c: New file.
999         
1000         * casereader.c: New file.
1001         
1002         * casereader.h: New file.
1003         
1004         * casewriter-provider.h: New file.
1005         
1006         * casewriter-translator.c: New file.
1007         
1008         * casewriter.c: New file.
1009         
1010         * casewriter.h: New file.
1011
1012 2007-06-06  Ben Pfaff  <blp@gnu.org>
1013
1014         "casewindow" data structure that extends the deque (from libpspp)
1015         of cases with the ability to dump cases to disk if we get too many
1016         of them in memory.
1017
1018         * automake.mk: Add new files.
1019
1020         * casewindow.c: New file.
1021
1022         * casewindow.h: New file.
1023
1024 2007-06-06  Ben Pfaff  <blp@gnu.org>
1025
1026         sparse_cases data structure that augments a sparse_array of cases
1027         with the ability to dump cases to disk if we get too many cases in
1028         memory.
1029
1030         * automake.mk: Add new files.
1031
1032         * sparse-cases.c: New file.
1033
1034         * sparse-cases.h: New file.
1035
1036 2007-06-06  Ben Pfaff  <blp@gnu.org>
1037
1038         Adds a low-level on-disk case array data structure.
1039         
1040         * automake.mk: Add new files.
1041
1042         * case-tmpfile.c: New file.
1043
1044         * case-tmpfile.h: New file.
1045
1046 2007-06-06  Ben Pfaff  <blp@gnu.org>
1047
1048         In a couple of places we calculate the maximum number of cases to
1049         keep in memory based on the user-defined workspace.  Enable
1050         centralizing the calculation through a new function.
1051         
1052         * settings.c (get_workspace_cases): New function.
1053
1054 2007-06-06  Ben Pfaff  <blp@gnu.org>
1055
1056         The casenumber type is defined in transformations.h, but case.h is
1057         a more sensible place.  Move it.
1058
1059         * case.h (CASENUMBER_MAX): New macro.
1060         (typedef casenumber): Move here, from transformations.h.
1061
1062 2007-06-03  Ben Pfaff  <blp@gnu.org>
1063
1064         Slightly generalize case_to_values and case_from_values functions.
1065
1066         * case.c (case_to_values): Rename case_copy_out, change interface.
1067         (case_from_values): Rename case_copy_in, change interface.
1068
1069         * fastfile.c (fastfilereader_get_next_case): Update caller.
1070         (write_case_to_disk): Ditto.
1071
1072 2007-06-02  Ben Pfaff  <blp@gnu.org>
1073
1074         Clean up after a forgotten part of patch #5829.
1075         
1076         * casedeque.h: Remove unused file.
1077
1078         * automake.mk: Remove casedeque.h from sources.
1079
1080 2007-05-10  Jason Stover  <jhs@math.gcsu.edu>
1081
1082         * category.c: Removed redundant #include
1083
1084 2007-05-06  Ben Pfaff  <blp@gnu.org>
1085
1086         Abstract the documents within a dictionary a little better.
1087         Thanks to John Darrington for suggestion, initial version, and
1088         review.  Patch #5917.
1089
1090         * dictionary.c (struct dictionary): Change `documents' member from
1091         char * to struct string.
1092         (dict_clear): Destroy struct string.
1093         (dict_get_documents): Convert struct string to char *.
1094         (dict_set_documents): Set struct string.  Pad to 80-character
1095         multiple.
1096         (dict_clear_documents): New function.
1097         (dict_add_document_line): New function.
1098         (dict_get_document_line_cnt): New function.
1099         (dict_get_document_line): New function.
1100
1101         * dictionary.h (macro DOC_LINE_LENGTH): New macro.
1102
1103         * sys-file-reader.c (read_documents): Use new document functions.
1104
1105 2007-04-19 John Darrington <john@darrington.wattle.id.au>
1106
1107         * sys-file-reader.c: When reading a system file which has no 
1108         long name table, automatically create one where the long names 
1109         are the lower case versions of the short names.
1110         
1111 2007-04-22  Ben Pfaff  <blp@gnu.org>
1112
1113         * dictionary.c (dict_set_split_vars): dict_destroy expects that
1114         dict_clear will free most data related to the dictionary.
1115         dict_clear does a decent job, except that dict_set_split_vars on
1116         some systems won't actually free the dict's "split" member.
1117         Instead, it'll allocate a 1-byte region.  Fix this.
1118
1119         * value.c (value_copy): New function.
1120         (value_set_missing): Ditto.
1121
1122 2007-04-22 John Darrington <john@darrington.wattle.id.au>
1123
1124         * Deleted existing category.h and moved cat-routines.h into 
1125         category.h  Encapsulated struct cat_vals better.
1126
1127 2007-04-19 John Darrington <john@darrington.wattle.id.au>
1128
1129         * sys-file-reader.c: When reading a system file which has no 
1130         long name table, automatically create one where the long names 
1131         are the lower case versions of the short names.
1132         
1133 2007-04-16 John Darrington <john@darrington.wattle.id.au>
1134
1135         * sys-file-reader.c: Some versions of Other Software seem to 
1136         produce system files with string  variables' measure set to 
1137         zero.  We'll assume these are supposed to be nominal variables.
1138
1139 2007-03-30  Ben Pfaff  <blp@gnu.org>
1140
1141         * procedure.c: Adapt to new deque data structure.
1142
1143 Mon Feb 19 10:53:21 2007  John McCabe-Dansted <gmatht@gmail.com>
1144                           Ben Pfaff <blp@gnu.org>
1145
1146         * file-name.c: Mingw compatibility fixes.
1147         (fn_search_path): Use ISSLASH instead of comparing against '/'
1148         directly.
1149         (fn_dir_name): Use dir_name from gnulib.
1150         (fn_is_absolute): Use IS_ABSOLUTE_FILE_NAME from gnulib.
1151         (fn_get_identity): Use GetFullPathName instead of canonicalize
1152         from gnulib, because the latter does not fully support
1153         Windows-style path names.  Use this implementation based on the
1154         detected presence of Windows instead of the absence of Unix, since
1155         the new implementation is Windows-specific.
1156         (fn_compare_file_identities): In Windows implementation, compare
1157         names case-insensitively.
1158
1159 Sun Feb 18 13:28:02 2007  Ben Pfaff  <blp@gnu.org>
1160
1161         * make-file.c: Don't include mkstemp.h, because gnulib now causes
1162         <stdlib.h> to have the same effect.
1163
1164 Sun Feb 18 11:20:24 2007  Ben Pfaff  <blp@gnu.org>
1165
1166         * por-file-reader.c: Add missing _() around messages.
1167
1168 Sun Feb 11 20:44:13 2007  Ben Pfaff  <blp@gnu.org>
1169
1170         * make-file.c: Include "mkstemp.h", without which linking on
1171         mingw32 fails.
1172
1173 Thu Feb  8 14:59:05 2007  Ben Pfaff  <blp@gnu.org>
1174  
1175         Reduce platform dependence.
1176  
1177         * file-name.c (fn_tilde_expand): Removed, and removed calls to it.
1178         Everywhere we using this, we really should have just depended on
1179         the shell to expand tildes.
1180         (fn_search_path): Simplify, given that we don't do tilde expansion
1181         any longer.
1182         (fn_normalize): Removed.  Caller changed to use the canonicalize
1183         module from gnulib.
1184         (fn_get_cwd): Removed.  Only user was fn_normalize.
1185         (fn_is_absolute): Really only test for absolute names.
1186         (fn_is_special): Use pipe files if HAVE_POPEN, not if we're in
1187         unix.
1188         (fn_readlink): Removed, as it was only used fn_normalize.
1189         (fn_exists): Assume the stat function is available; gnulib does.
1190         (fn_open): Use pipe files if HAVE_POPEN, not if we're in unix.
1191  
1192 Sat Feb  3 21:52:17 2007  Ben Pfaff  <blp@gnu.org>
1193
1194         * dictionary.c (dict_create_vector_assert): New function.
1195
1196 Wed Feb  7 21:25:15 2007  Ben Pfaff  <blp@gnu.org>
1197
1198         * file-name.c (fn_normalize): Correct name of function
1199         fn_is_special.  Thanks to John McCabe-Dansted <gmatht@gmail.com>
1200         for pointing this out.
1201
1202 Thu Feb  1 16:53:37 2007  Ben Pfaff  <blp@gnu.org>
1203
1204         We are using a single member in struct file_handle, the "name"
1205         field, for more than one purpose.  When it begins with '"', it's a
1206         file name; otherwise, it's a token that can be used to identify
1207         it.  When that assertion fires, it's because we searched for the
1208         name case-sensitively as a file name (so that there was no match),
1209         and then we try to insert it case-insensitively as a token, which
1210         fails because duplicates aren't allowed.
1211
1212         Solution: break the two purposes into two separate fields.  This
1213         fixes the problem and likely makes the code easier to read too.
1214
1215         Fixes bug #18922.  Thanks to John Darrington for bug report and
1216         review.
1217
1218         * file-handle-def.c (struct file_handle): New `id' member.
1219         (fh_from_name): Rename fh_from_id.  Update all callers.
1220         (create_handle): New `id' parameter.  Update all callers.
1221         (fh_create_file): Ditto.
1222         (fh_get_id): New function.
1223
1224 Mon Jan 15 16:18:10 2007  Ben Pfaff  <blp@gnu.org>
1225
1226         * case.c (case_is_null): Change return type to bool.
1227
1228 Mon Jan 15 10:57:28 2007  Ben Pfaff  <blp@gnu.org>
1229
1230         Add debugging code.
1231         
1232         * case.c (case_clone) [DEBUGGING]: When debugging, don't use
1233         reference counting to share data.  This makes it easy for
1234         valgrind, etc. to find accesses to cases that have been destroyed
1235         but have been kept around by another user's ref-count.  This often
1236         happens when the data set is small enough to find in memory; if a
1237         bigger data set that would overflow to disk were used, then data
1238         corruption would occur.
1239
1240 Mon Jan 15 10:55:18 2007  Ben Pfaff  <blp@gnu.org>
1241
1242         Simplify code.
1243
1244         * case.c (case_unshare): Make it check internally whether the
1245         ref_cnt is greater than 1, so that the callers don't have to.
1246         Update callers not to check.
1247
1248 Mon Jan 15 10:53:01 2007  Ben Pfaff  <blp@gnu.org>
1249
1250         Before, I was thinking that I might want to get rid of reference
1251         counting at some point.  Now, I'm pretty sure that it's here to
1252         stay.  Thus, because we have to store the value_cnt anyway for
1253         reference-counted cases, we might as well expose it to users.
1254
1255         * case.c (case_get_value_cnt): New function.
1256         (case_resize): Drop OLD_CNT argument.  Update all callers.  Only
1257         resize case if its size actually changed.
1258
1259         * casefile.c (casefile_append_xfer): Use case_get_value_cnt
1260         instead of peeking inside struct case directly.
1261         (casefile_append): Ditto.
1262
1263 Mon Jan 15 10:50:22 2007  Ben Pfaff  <blp@gnu.org>
1264
1265         Get rid of the inlines for the case functions, which made the
1266         header file hard to read.  (Also, in testing with "-O2 -DNDEBUG",
1267         the inlines didn't speed up "make check" at all, which is not a
1268         perfect benchmark but seems indicative.)
1269         
1270         * case.c: Remove #ifdef DEBUGGING...#endif around many function
1271         definitions.  Remove some assertions on nonnull pointers that were
1272         redundant with a pointer dereference soon after in the function.
1273         Also:
1274         (struct case_data): Move definition here from case.h.
1275         (case_data): Ditto.
1276         (case_num): Ditto.
1277         (case_str): Ditto.
1278         (case_data_wr): Ditto.
1279         
1280 Sun Jan 14 21:41:12 2007  Ben Pfaff  <blp@gnu.org>
1281
1282         * automake.mk: Add casedeque.h to sources.
1283         
1284         * casedeque.h: New file.
1285
1286         * procedure.c: (struct dataset) Change lag_count, lag_head,
1287         lag_queue member into single struct casedeque member.  Update all
1288         users to use the casedeque instead.
1289         (lag_case) Removed.
1290
1291 Sun Jan 14 21:43:12 2007  Ben Pfaff  <blp@gnu.org>
1292
1293         * procedure.c: Simplify lagged cases interface.  Updated all
1294         clients--well, the only client--to use the simplified interface.
1295         (dataset_n_lag) Removed.
1296         (dataset_set_n_lag) Removed.
1297         (dataset_need_lag) New function.
1298
1299 Tue Jan  9 07:20:05 WST 2007 John Darrington <john@darrington.wattle.id.au>
1300
1301         * dictionary.c procedure.c: More changes to ensure that callbacks occur
1302         whenever appropriate, but only when the dataset/dictionary is in a 
1303         consistent state.
1304
1305 Sun Jan  7 08:33:04 WST 2007 John Darrington <john@darrington.wattle.id.au>
1306
1307         * dictionary.c dictionary.h : Added callbacks for change of filter and 
1308         split variables.  Refactored some code to ensure that callbacks get
1309         invoked when appropriate.
1310
1311         * procedure.c (proc_cancel_temporary_transformations): Make sure that 
1312         replace_dict callback occurs when permanent_dict replaces the current
1313         dictionary.
1314
1315 Wed Jan  3 11:02:11 WST 2007 John Darrington <john@darrington.wattle.id.au>
1316
1317         * dictionary.c dictionary.h : Added callback for when the weight 
1318         variable of a dictionary changes.
1319
1320 Mon Jan  1 10:36:26 WST 2007 John Darrington <john@darrington.wattle.id.au>
1321
1322         * dictionary.c dictionary.h : Added replace_source and replace_dict
1323         callbacks, and functions to deal with them.
1324
1325 Fri Dec 22 13:56:08 2006  Ben Pfaff  <blp@gnu.org>
1326
1327         Simplify missing value handling.
1328
1329         * missing-values.h (enum mv_class): New type.
1330         (enum mv_type): Moved definition into missing-values.c and renamed
1331         each MV_* to MVT_*, to distinguish them from the exposed mv_class
1332         enums.  Updated all uses.
1333         (struct missing_values): Changed type of `type' from `enum
1334         mv_type' to `int' because the definition is no longer exposed.
1335         
1336         * missing-values.c (mv_is_value_missing): Add new enum mv_class
1337         parameter.  Update all callers.
1338         (mv_is_num_missing): Ditto.
1339         (mv_is_str_missing): Ditto.
1340         (mv_is_value_user_missing): Removed.  Changed callers to use
1341         mv_is_value_missing.
1342         (mv_is_num_user_missing): Removed.  Changed callers to use
1343         mv_is_num_missing.
1344         (mv_is_str_user_missing): Removed.  Changed callers to use
1345         mv_is_str_missing.
1346         (mv_is_value_system_missing): Removed.  Changed callers to use
1347         mv_is_value_missing.
1348         (mv_set_type): Removed.  Changed callers to use mv_clear.
1349         (mv_clear): New function.
1350         
1351         * variable.c (var_is_value_missing): Add new enum mv_class
1352         parameter.  Update all callers.
1353         (var_is_num_missing): Ditto.
1354         (var_is_str_missing): Ditto.
1355         (var_is_value_user_missing): Removed.  Changed callers to use
1356         var_is_value_missing.
1357         (var_is_num_user_missing): Removed.  Changed callers to use
1358         var_is_num_missing.
1359         (var_is_str_user_missing): Removed.  Changed callers to use
1360         var_is_str_missing.
1361         (var_is_value_system_missing): Removed.  Changed callers to use
1362         var_is_value_missing.
1363         
1364         * casefilter.c (struct casefilter): Use enum mv_class in place of
1365         bool.
1366         (casefilter_variable_missing): Adapt to new member.
1367         (casefilter_create): Change signature to take enum mv_class,
1368         update callers.
1369
1370 Fri Dec 22 20:08:38 WST 2006 John Darrington <john@darrington.wattle.id.au>
1371
1372         * casefile-factory.h fastfile-factory.c fastfile-factory.h: New files.
1373
1374         * case-sink.c case-sink.h procedure.c procedure.h 
1375           storage-stream.c: Now uses the factory.
1376         
1377 Sat Dec 16 22:05:18 2006  Ben Pfaff  <blp@gnu.org>
1378
1379         Make it possible to pull cases from the active file with a
1380         function call, instead of requiring indirection through a callback
1381         function.
1382
1383         * case-source.h (struct case_source_class): Change ->read function
1384         to return a single case, instead of calling a callback function
1385         for each case.  Change ->destroy function to return an error
1386         status.
1387
1388         * case-source.c (free_case_source): Pass along the value returned
1389         by the case_source ->destroy function.
1390
1391         * procedure.c (struct write_case_data): Removed.
1392         (struct dataset): Added some members to track procedure state.
1393         (procedure): Optimize the trivial case at this level.
1394         (internal_procedure): Re-implement in terms of proc_open,
1395         proc_read, proc_close.
1396         (proc_open) New function.
1397         (proc_read) New function.
1398         (proc_close) New function.
1399         (write_case) Moved into proc_read.
1400         (close_active_file) Moved closing of data source into proc_close.
1401
1402         * storage-source.c: Rewrote to conform with modified
1403         case_source_class interface.
1404
1405         * transformations.c (trns_chain_execute): Added argument to allow
1406         starting execution from an arbitrary transformation.  Updated
1407         callers.
1408
1409         * transformations.h (enum TRNS_NEXT_CASE) Renamed TRNS_END_CASE.
1410
1411 Sat Dec 16 14:09:25 2006  Ben Pfaff  <blp@gnu.org>
1412
1413         * sys-file-reader.c (read_display_parameters): Don't assume that
1414         MEASURE_* and ALIGN_* have the same values found in system files.
1415
1416         * sys-file-writer.c (write_variable_display_parameters): Ditto.
1417
1418         * variable.h: Change MEASURE_NOMINAL, MEASURE_ORDINAL,
1419         MEASURE_SCALE to be 0-based instead of 1-based.  This also fixes
1420         the value of n_MEASURES, which was off by 1 (at least from my
1421         point of view).
1422
1423 Sat Dec 16 12:17:34 WST 2006 John Darrington <john@darrington.wattle.id.au>
1424
1425         * dictionary.c dictionary.h vardict.h variable.c: Added optional
1426                 callbacks which are invoked when the dictionary or its 
1427                 variables are changed.  
1428         
1429         * missing-values.c missing-values.h value-labels.c: Tidied up
1430                 consistency checks, and made some of them return false 
1431                 instead of assert-failing. 
1432
1433 Wed Dec 13 19:30:11 2006  Ben Pfaff  <blp@gnu.org>
1434
1435         * calendar.c (calendar_days_in_month): New function.
1436
1437 Mon Dec 11 07:53:39 2006  Ben Pfaff  <blp@gnu.org>
1438
1439         * value-labels.c (hash_int_val_lab): Only hash as many bytes as
1440         the value label's width.
1441
1442 Sun Dec 10 14:21:29 2006  Ben Pfaff  <blp@gnu.org>
1443
1444         * sfm-private.h: Move contents into sys-file-writer.c, which is
1445         the only remaining user.  Removed Borland C++-specific directives.
1446         
1447         * sys-file-reader.c: Clean up and rewrite entire file.  The
1448         rewritten version is simpler and better abstracted, and should be
1449         easier to maintain and extend.  It avoids using structures to read
1450         file data, which is prone to padding variations among compilers.
1451         It should also handle non-IEEE 754 system files, although I
1452         haven't been able to find any.  It has been tested against many
1453         .sav files obtained from the Web and found to produce the same
1454         results as the earlier version of the code, or in some cases
1455         improved results.  It is more tolerant of format variations found
1456         in the wild.
1457
1458         * sys-file-reader.h (struct sfm_read_info): Removed `big_endian'
1459         member, putting an enum integer_format in its place.  New member
1460         `float_format'.  Changed `compressed' member to type bool.
1461
1462 Sun Dec 10 13:48:53 2006  Ben Pfaff  <blp@gnu.org>
1463
1464         * dictionary.c (dict_delete_consecutive_vars): New function.
1465
1466 Sat Dec  9 20:08:25 2006  Ben Pfaff  <blp@gnu.org>
1467
1468         * file-name.c (fn_search_path): Remove prefix arg that was unused
1469         by any caller.  Updated all callers.
1470
1471 Sat Dec  9 20:04:22 2006  Ben Pfaff  <blp@gnu.org>
1472
1473         * format.c (fmt_dollar_template): Use user's decimal point
1474         character.  Add assertion.
1475
1476 Sat Dec  9 20:02:25 2006  Ben Pfaff  <blp@gnu.org>
1477
1478         * format.c (fmt_dollar_template): New function, based on
1479         dollar_format_template from var-type-dialog.c.
1480
1481 Sat Dec  9 18:05:59 2006  Ben Pfaff  <blp@gnu.org>
1482
1483         * data-out.c (output_scientific): Fix bad assumption that "buf" is
1484         null-terminated.
1485         
1486 Sat Dec  9 17:23:23 2006  Ben Pfaff  <blp@gnu.org>
1487
1488         Finish converting struct variable to an opaque type.  In this
1489         phase, we add remaining setter and getter functions, convert the
1490         remaining PSPP code to use them, and do a bunch of cleanup.  The
1491         resulting changes are pervasive but mostly trivial, and only the
1492         notable changes are logged.
1493         
1494         * automake.mk (src_data_libdata_a_SOURCES): Add the new source
1495         files.
1496         
1497         * case.c (case_data): Renamed case_data_idx.
1498         (case_num): Renamed case_num_idx.
1499         (case_str): Renamed case_str_idx.
1500         (case_data_rw): Renamed case_data_rw_idx.
1501
1502         * case.h (case_data): New function with old name and an interface
1503         that takes a variable instead of an index, which is easier to
1504         use.  Updated all callers to use the new interface, or to use the
1505         new *_idx function (see above).
1506         (case_num): Ditto.
1507         (case_str): Ditto.
1508         (case_data_rw): Ditto.
1509         
1510         * category.c (cat_stored_values_destroy): Changed interface to
1511         take a struct cat_vals * instead of a struct variable *.
1512
1513         * dictionary.c (dict_clone): Use new vector_clone function.     
1514         (dict_clear) Use new var_destroy function.
1515         (add_var) New function.
1516         (dict_create_var) Rewrite in terms of dict_create_var_assert.
1517         (dict_create_var_assert) Rewrite in terms of add_var.
1518         (dict_clone_var) Rewrite in terms of dict_clone_var_assert.
1519         (dict_clone_var_assert) Rewrite in terms of var_clone, add_var.
1520         (dict_lookup_var) Use new var_create, var_destroy functions.
1521         (dict_contains_var) Rewrite in terms of new vardict functionality.
1522         (set_var_dict_index) New function.
1523         (set_var_case_index) New function.
1524         (reindex_vars) New function.
1525         (dict_delete_var) Rewrite in terms of new vardict functionality.
1526         (dict_reorder_var) Ditto.
1527         (dict_reorder_vars) Ditto.
1528         (rename_var) New function.
1529         (dict_rename_var) Use rename_var.
1530         (dict_rename_vars) Use pool to simplify code.  Use rename_var.
1531         (dict_get_compacted_idx_to_fv) Rename
1532         dict_get_compacted_dict_index_to_case_index, update callers.
1533         (dict_create_vector) Use new vector_create function.
1534         (dict_clear_vectors) Use new vector_destroy function.
1535         (set_var_short_name_suffix) Move here from variable.c, renamed
1536         from var_set_short_name_suffix, make static, update caller.
1537
1538         * sys-file-private.c: New file.  
1539         (sfm_width_to_bytes) Moved here from variable.c, renamed from
1540         width_to_bytes, update callers.
1541
1542         * sys-file-private.h: New file.  Later it will supplant
1543         sfm-private.h; for now it supplements it.
1544         (macro MIN_VERY_LONG_STRING) New macro.
1545         (macro EFFECTIVE_LONG_STRING_LENGTH) New macro, from value.h.
1546
1547         * sys-file-reader.c: Use MIN_VERY_LONG_STRING - 1 where
1548         MAX_LONG_STRING was used before.
1549
1550         * sys-file-writer.c: Ditto.
1551
1552         * value-labels.c: Change the paradigm here to be that a null
1553         pointer is OK for a struct val_labs * in most cases; it just
1554         represents an empty set of value labels.
1555         (val_labs_copy) A copy of a null set is a null set.
1556         (val_labs_count) A null set has 0 labels.
1557         (val_labs_replace) Change return type to void.  Rewrite for
1558         simplicity.
1559         (val_labs_find) A null set does not contain the value.
1560         (value_to_string) Moved to variable.c, renamed var_get_value_name,
1561         transposed argument order, updated all callers.
1562
1563         * value.c: New file.
1564         (value_dup) Moved here from variable.c.
1565         (compare_values) Ditto.
1566         (hash_value) Ditto.
1567
1568         * value.h: (macro MAX_SHORT_STRING) Rewrote for simplicity.
1569         (macro MAX_LONG_STRING) Removed, because it was only interesting
1570         for system files, not for general code.
1571         (macro MAX_VERY_LONG_STRING) Ditto.
1572         (macro EFFECTIVE_LONG_STRING_LENGTH) Moved to sys-file-private.h.
1573         (macro MAX_ELEMS_PER_VALUE) Removed, as it was unused.
1574
1575         * vardict.h: New file, for an interface between variables and
1576         their dictionaries.
1577
1578         * variable.c: A lot of functions were moved around, for better
1579         organization.
1580         (struct variable) Move definition here, from variable.h.
1581         (var_type_adj) Removed--makes i18n hard.
1582         (var_type_noun) Ditto.
1583         (var_create) New function.
1584         (var_clone) New function.
1585         (var_destroy) New function.
1586         (var_set_name) Assert that variable is not in a dictionary.
1587         (compare_var_names) Rename compare_vars_by_name and fix a couple
1588         of callers who thought the args were strings.
1589         (hash_var_name) Rename hash_var_by_name.
1590         (compare_var_ptr_names) Rename compare_var_ptrs_by_name.
1591         (hash_var_ptr_name) Rename hash_var_ptr_by_name.
1592         (var_is_very_long_string) Removed, because it was only interesting
1593         to system file code.
1594         (var_set_missing_values) Allow the argument to be the wrong width,
1595         as long as we can resize it.  Simplify callers who were doing the
1596         resizing themselves.
1597         (var_get_value_labels) New function.
1598         (var_has_value_labels) New function.
1599         (var_set_value_labels) New function.
1600         (alloc_value_labels) New function.
1601         (var_add_value_label) New function.
1602         (var_replace_value_label) New function.
1603         (var_clear_value_labels) New function.
1604         (var_lookup_value_label) New function.
1605         (var_get_value_name) Moved here from variable.c, renamed from
1606         var_get_value_name, transposed argument order, updated all
1607         callers.
1608         (var_to_string) Moved here, from variable-label.c.
1609         (var_set_leave) New function.
1610         (var_get_leave) New function.
1611         (var_must_leave) New function.
1612         (var_set_short_name_suffix) Moved to dictionary.c, renamed
1613         set_var_short_name_suffix.
1614         (var_get_dict_index) New function.
1615         (var_get_case_index) New function.
1616         (var_get_obs_vals) New function.
1617         (var_set_obs_vals) New function.
1618         (var_has_obs_vals) New function.
1619         (var_get_vardict) New function.
1620         (var_set_vardict) New function.
1621         (var_has_vardict) New function.
1622         (var_clear_vardict) New function.
1623         (value_dup) Moved to value.c.
1624         (compare_values) Ditto.
1625         (hash_value) Ditto.
1626
1627         * variable.h: (enum NUMERIC) Rename VAR_NUMERIC, update all users.
1628         (enum ALPHA) Rename VAR_STRING, update all users.
1629
1630         * vector.c: New file.
1631         (struct vector) Moved here, from variable.h.
1632         (check_widths) New function.
1633         (vector_create) New function.
1634         (vector_clone) New function.
1635         (vector_destroy) New function.
1636         (vector_get_name) New function.
1637         (vector_get_var) New function.
1638         (vector_get_var_cnt) New function.
1639         (compare_vector_ptrs_by_name) New function.
1640
1641         * vector.h: New file.
1642
1643 Sun Dec 10 11:32:56 WST 2006 John Darrington <john@darrington.wattle.id.au>
1644
1645         * casefilter.c (casefilter_variable_missing): Avoided comparision of
1646         string variables to SYSMIS.  Thanks to Ben Pfaff for reporting this
1647         problem.
1648
1649 Sat Dec  9 07:18:03 WST 2006 John Darrington <john@darrington.wattle.id.au>
1650
1651         * value-labels.c (destroy_atoms): New function.
1652         * value-labels.c (atom_create): Call destroy_atoms in atexit handler.
1653
1654 Thu Dec  7 17:38:26 2006  Ben Pfaff  <blp@gnu.org>
1655
1656         Thanks to Jason Stover for pointing out this problem.
1657         
1658         * data-out.c (output_number): Use gsl_finite from GSL, which is
1659         portable, instead of isfinite, which is not.
1660         (power256) Ditto.
1661
1662 Thu Dec  7 15:22:38 WST 2006 John Darrington <john@darrington.wattle.id.au>
1663
1664         * variable.c variable.h (value_dup): New function.
1665
1666 Mon Dec  4 22:20:17 2006  Ben Pfaff  <blp@gnu.org>
1667
1668         Start converting struct variable to an opaque type.  In this
1669         phase, we add a bunch of setter and getter functions and convert
1670         most of the PSPP code to use them.  The resulting changes are
1671         pervasive but mostly trivial, and only the notable changes are
1672         logged.
1673         
1674         * format.c (fmt_equal): New function.
1675         
1676         * variable.c (var_type_is_valid): New function.
1677         (measure_is_valid) Moved here, from format.c.
1678         (alignment_is_valid) Moved here, from format.c.
1679         (var_get_name) New function.
1680         (var_set_name) New function.
1681         (width_to_type) New function.
1682         (var_get_type) New function.
1683         (var_get_width) New function.
1684         (var_set_width) New function.
1685         (var_is_numeric) New function.
1686         (var_is_alpha) New function.
1687         (var_is_short_string) New function.
1688         (var_is_long_string) New function.
1689         (var_is_very_long_string) New function.
1690         (var_get_missing_values) New function.
1691         (var_set_missing_values) New function.
1692         (var_clear_missing_values) New function.
1693         (var_has_missing_values) New function.
1694         (var_is_value_missing) New function.
1695         (var_is_num_missing) New function.
1696         (var_is_str_missing) New function.
1697         (var_is_value_user_missing) New function.
1698         (var_is_num_user_missing) New function.
1699         (var_is_str_user_missing) New function.
1700         (var_is_value_system_missing) New function.
1701         (var_get_print_format) New function.
1702         (var_set_print_format) New function.
1703         (var_get_write_format) New function.
1704         (var_set_write_format) New function.
1705         (var_set_both_formats) New function.
1706         (var_get_label) New function.
1707         (var_set_label) New function.
1708         (var_clear_label) New function.
1709         (var_has_label) New function.
1710         (var_get_measure) New function.
1711         (var_set_measure) New function.
1712         (var_get_display_width) New function.
1713         (var_set_display_width) New function.
1714         (var_get_alignment) New function.
1715         (var_set_alignment) New function.
1716         (var_get_value_cnt) New function.
1717         (var_get_leave) New function.
1718         (var_get_short_name) New function.
1719
1720         * variable.h: (struct variable) Removed "type" and "nv" members;
1721         they are now computed from "width" where needed.
1722
1723 Mon Dec  4 21:38:40 2006  Ben Pfaff  <blp@gnu.org>
1724
1725         * missing-values.c (mv_resize): Don't write beyond end of the
1726         allocated buffer when resizing a long string.
1727
1728 Sat Dec  2 16:28:32 2006  Ben Pfaff  <blp@gnu.org>
1729
1730         Clean up identifier code: don't require identifier enumerations to
1731         be in a particular order; make better use of string library;
1732         expose less of the internals.
1733                 
1734         * identifier.c: (lex_skip_identifier) Rename lex_id_get_length,
1735         change interface.  Updated all callers.
1736         (lex_id_match) Change interface to use struct substring, update
1737         all callers.
1738         (lex_id_match_len) Removed.  Update callers to use lex_id_match.
1739         (global array keywords[]) Make static, change form.  Update all
1740         users to use lex_id_name instead.
1741         (lex_is_keyword) New function.
1742         (lex_id_to_token) Change interface to use struct substring, update
1743         all callers.
1744         (lex_id_name) New function.
1745
1746         * identifier.h: (T_FIRST_KEYWORD) Removed.  Changed users to call
1747         lex_is_keyword instead.
1748         (T_LAST_KEYWORD) Removed.
1749         (T_N_KEYWORDS) Removed.
1750         
1751 Sat Nov 18 20:46:35 2006  Ben Pfaff  <blp@gnu.org>
1752
1753         * format.c: (fmt_date_template) Distinguish characters for which a
1754         space is output and any date delimiter is allowed on input, from
1755         those for which a space is output and only a space is allowed on
1756         input.  The former is represented by X, the latter by a space.
1757         Also, drop distinction between h and H, changing the former to the
1758         latter.
1759
1760         * data-in.c: Completely rewrite internals to conform to SPSS input
1761         formats as closely as possible.
1762         (data_in) Changed external interface by replacing the structure
1763         that was used as a single argument by a set of arguments.  Updated
1764         all callers.
1765         (data_in_finite_line) Removed.  Converted all callers to use plain
1766         data_in.
1767         (data_in_get_integer_format) New function.
1768         (data_in_set_integer_format) New function.
1769         (data_in_get_float_format) New function.
1770         (data_in_set_float_format) New function.
1771
1772         * data-in.h: (enums DI_IGNORE_ERROR, DI_IMPLIED_DECIMALS) Removed.
1773         (struct data_in) Removed.
1774
1775         * data-out.c: (output_date) Drop each component from the input as
1776         it is output, to allow us to drop the distinction between h (a
1777         count of hours) and H (the hour of day) template characters.
1778         Also, handle new X template character.
1779         (output_scientific) Follow more rational rule on when to drop
1780         fraction introduced between SPSS 13 and 15.  Updated test case to
1781         match new behavior.
1782
1783 Sat Nov 11 11:41:26 2006  Ben Pfaff  <blp@gnu.org>
1784
1785         Fix buffer overflow reported by John Darrington.
1786
1787         * data-out.c (output_bcd_integer): In case of SYSMIS, etc.,
1788         realize that DIGITS is a count of nibbles, not of bytes.
1789
1790 Sat Nov  4 15:59:56 2006  Ben Pfaff  <blp@gnu.org>
1791
1792         * calendar.c (calendar_offset_to_gregorian) Also return the
1793         year-of-day.  Change callers to new interface.
1794
1795         * data-out.c: Completely rewrite internals to conform to SPSS
1796         output formats as completely as possible.
1797         (data_out) Change interface to put input parameters before output
1798         parameters, for consistency with the style I now prefer.  Update
1799         all callers.
1800         (data_out_get_integer_format) New public function.
1801         (data_out_set_integer_format) New public function.
1802         (data_out_get_float_format) New public function.
1803         (data_out_set_float_format) New public function.
1804
1805         * data-out.h: New file.  Move prototype for data_out here, from
1806         format.h.
1807
1808         * format.c: (fmt_step_width) Use equality comparison instead of
1809         bitwise and, for clarity.
1810         (fmt_is_string) Ditto.
1811         (fmt_input_to_output) Fix categories that are translated to F
1812         format.
1813
1814 Sun Nov  5 08:29:34 WST 2006 John Darrington <john@darrington.wattle.id.au>
1815
1816         * casefilter.c casefilter.h (new files), casefile.c casefile.h 
1817         casefile-private.h: Added casefilter to assist commands with missing 
1818         values.
1819
1820 Sat Nov  4 11:47:09 2006  Ben Pfaff  <blp@gnu.org>
1821
1822         Implement SET ERRORS, SHOW ERRORS.  Fixes bug #17609.
1823         
1824         * settings.c: (route_errors_to_terminal) New variable.
1825         (route_errors_to_listing) New variable. 
1826         (get_error_routing_to_terminal) New function.
1827         (set_error_routing_to_terminal) New function.
1828         (get_error_routing_to_listing) New function.
1829         (set_error_routing_to_listing) New function.
1830
1831         * settings.h: (SET_ROUTE_* enums) Removed, because unused.
1832
1833 Tue Oct 31 19:58:27 2006  Ben Pfaff  <blp@gnu.org>
1834
1835         * format.c: Completely rewrite, to achieve better abstraction.
1836         Rewrite all references to formats in other files.
1837         
1838         * format.def: Rewrite and reorganize.
1839
1840         * settings.c: Move everything related to custom currency formats
1841         into format.[ch], changing them in form, so as to group related
1842         code and definitions better.  Changed all references to use the
1843         new functions.
1844         (static var decimal) Removed.
1845         (static var grouping) Removed.
1846         (static var cc) Removed.
1847         (get_decimal) Removed.
1848         (set_decimal) Removed.
1849         (get_grouping) Removed.
1850         (set_grouping) Removed.
1851         (get_cc) Removed.
1852         (set_cc) Removed.
1853
1854         * settings.h: (macro CC_CNT) Removed.
1855         (macro CC_WIDTH) Removed.
1856         (struct custom_currency) Removed.
1857
1858 Tue Oct 31 19:56:19 2006  Ben Pfaff  <blp@gnu.org>
1859
1860         * data-in.c (data_in): Use switch statement instead of table, to
1861         avoid dependence on the order of the FMT_* enums.
1862
1863 Tue Oct 31 19:35:36 2006  Ben Pfaff  <blp@gnu.org>
1864
1865         * data-out.c: (num_to_string) Removed, because it was dead code.
1866
1867 Tue Oct 31 18:09:24 2006  Ben Pfaff  <blp@gnu.org>
1868
1869         * data-in.c (parse_trailer): Fix error message.
1870
1871 Sat Oct 28 11:56:50 2006  Ben Pfaff  <blp@gnu.org>
1872
1873         * format.c (fmt_is_binary): New function.
1874
1875 Thu Oct 19 22:59:56 WST 2006 John Darrington <john@darrington.wattle.id.au>
1876
1877         * procedure.c procedure.h: Encapsulated the static data into a single
1878         struct.  
1879
1880 Sat Oct 14 16:56:44 2006  Ben Pfaff  <blp@gnu.org>
1881
1882         * casefile.c (casereader_read_xfer): Always initialize the case,
1883         even on an error condition.
1884
1885 Wed Sep 27 09:37:49 WST 2006 John Darrington <john@darrington.wattle.id.au>
1886
1887         * procedure.c (case_limit_trns_proc): Fixed buglet which rendered the 
1888         entire function useless.
1889
1890 Mon Sep 25 17:11:46 WST 2006 John Darrington <john@darrington.wattle.id.au>
1891
1892         * casefile-private.h casefile.c casefile.h fastfile.c: Created new
1893         casereader method casereader_clone.   
1894         
1895         * procedure.c pransformations.h: Introduced new type casenum_t
1896
1897 Thu Sep 21 07:00:30 2006  Ben Pfaff  <blp@gnu.org>
1898
1899         * variable.c: (width_to_bytes) Rephrase code for clarify.
1900
1901 Sun Jul 16 19:52:03 2006  Ben Pfaff  <blp@gnu.org>
1902
1903         * format.c: (fmt_type_from_string) New function.
1904         (fmt_to_string) Include decimals in output if the format has
1905         decimals, even if the format type does not.  This way, we can
1906         accurately reproduce incorrect formats in user output.
1907         (check_common_specifier) Make the check for a bad format type an
1908         assertion, so we get bug reports if they show up.  Fix message.
1909         Check for decimal places with a format type that doesn't allow
1910         them.
1911         (check_input_specifier) Remove check for FMT_X, which has been
1912         deleted.
1913         (check_output_specifier) Ditto. 
1914
1915         * format.def: Remove FMT_T, FMT_X, FMT_DESCEND, FMT_NEWREC.
1916
1917         * format.h: (macro FMT_TYPE_LEN_MAX) New macro.
1918         (struct fmt_desc) Use FMT_TYPE_LEN_MAX in definition.
1919         (enum fmt_parse_flags) Removed.
1920
1921 Mon Jul 17 18:26:21 WST 2006 John Darrington <john@darrington.wattle.id.au>
1922
1923         * casefile.c casefile.h: Converted to  an abstract base class.
1924         * casefile-private.h fastfile.c fastfile.h: New files.
1925         * automake.mk procedure.c scratch-writer.c storage-stream.c
1926
1927 Wed Jul 12 21:02:26 2006  Ben Pfaff  <blp@gnu.org>
1928
1929         * procedure.c (internal_procedure): Create sink_case with only as
1930         many values as the compacted dictionary.
1931
1932 Wed Jul 12 21:01:00 2006  Ben Pfaff  <blp@gnu.org>
1933
1934         Remove "debugging" code that caused plenty of false positives and
1935         no true positives.
1936         
1937         * case.h (struct ccase): [DEBUGGING] Remove `this' member.
1938
1939         * case.c: Remove all references to `this' member.
1940
1941 Thu Jul  6 19:09:53 2006  Ben Pfaff  <blp@gnu.org>
1942
1943         Fix link error noted by Jason Stover.
1944         
1945         * storage-stream.c: Include <assert.h>.
1946
1947 Tue Jul  4 08:47:35 2006  Ben Pfaff  <blp@gnu.org>
1948
1949         Fix bug #15766 (/KEEP subcommand on SAVE doesn't fully support
1950         ALL) and additional underlying system file issues.
1951
1952         Thanks to John Darrington for review.
1953
1954         First problem: var_hash points to variables not owned by the
1955         sys-file-reader, which the caller may free or modify.  Use an
1956         array of sfm_vars instead, as done earlier (e.g. CVS version
1957         1.12).
1958         
1959         * sys-file-reader.c (struct sfm_reader): Remove var_hash, svars
1960         members and remove all code that references it.  Add vars, var_cnt
1961         members.  Remove fix_specials member, which was unused.
1962         (struct sfm_var) Remove name member, which was unused.
1963         (sfm_close_reader) Free vars member instead of var_hash.
1964         (compare_var_shortnames) Removed.
1965         (hash_var_shortname) Removed.
1966         (sfm_open_reader) Fill out vars array.
1967         (compare_var_index) Removed.
1968         (sfm_read_case) Use vars instead of var_hash.
1969         
1970         Second problem: we're confused about when we actually have very
1971         long strings, causing us to choose incorrectly between slow path
1972         and fast path in sfm_read_case.
1973
1974         * sys-file-reader.c: (sfm_open_reader) Only mark has_vls if we
1975         have very long strings, not when we have long variable names,
1976         which is an unrelated feature.
1977
1978 Tue Jun 27 12:06:49 2006  Ben Pfaff  <blp@gnu.org>
1979
1980         * variable.h: Move var_set and variable parsing declarations to
1981         new header, src/language/lexer/variable-parser.h.  Modified lots
1982         of files to include the new header.
1983
1984 Sun Jun 25 22:39:32 2006  Ben Pfaff  <blp@gnu.org>
1985
1986         * value-labels.c (value_to_string): When there's no value label,
1987         format the variable according to its print format, instead of
1988         always effectively using A or F format.
1989
1990 Mon Jun 19 18:05:42 WST 2006 John Darrington <john@darrington.wattle.id.au>
1991
1992         * casefile.c (casefile_get_random_reader): Nasty hack to get around 
1993         the mode assertion.
1994
1995         * format.c: Removed tortological assertion.
1996
1997 Fri Jun  9 12:20:09 2006  Ben Pfaff  <blp@gnu.org>
1998
1999         Reform string library.
2000         
2001         * file-name.c (fn_interp_vars): Change interface to take a
2002         substring as input.  Updated all users.
2003         
2004 Fri Jun  9 12:11:24 2006  Ben Pfaff  <blp@gnu.org>
2005
2006         * format.c (measure_is_valid): Really return false when m >=
2007         n_MEASURES.
2008
2009 Tue Jun  6 18:46:26 2006  Ben Pfaff  <blp@gnu.org>
2010
2011         Implement random access to casefiles, for use in GUI.
2012         
2013         * casefile.c: (struct casereader) Add `random', `file_ofs',
2014         `buffer_ofs' members.
2015         (casefile_get_random_reader) New function.
2016         (read_open_file) Break part into new function
2017         seek_and_fill_buffer().
2018         (fill_buffer) Update buffer_ofs, file_ofs.
2019         (casereader_seek) New function.
2020
2021 Tue May 30 19:52:33 WST 2006 John Darrington <john@darrington.wattle.id.au>
2022
2023         * settings.c: Added call to i18n{done, init}.
2024
2025 Tue May  9 21:09:17 2006  Ben Pfaff  <blp@gnu.org>
2026
2027         * procedure.h: Add WARN_UNUSED_RESULT to procedure function
2028         prototypes.
2029
2030 Tue May  9 21:08:05 2006  Ben Pfaff  <blp@gnu.org>
2031
2032         * casefile.c: Convert many uses of `int' to `bool'.
2033
2034 Sat May  6 22:49:43 2006  Ben Pfaff  <blp@gnu.org>
2035
2036         * transformations.c (trns_chain_destroy): Destroy chain's trns
2037         member, to fix memory leak.
2038
2039 Sat May  6 22:48:30 2006  Ben Pfaff  <blp@gnu.org>
2040
2041         * storage-stream.c (storage_source_decapsulate): Destroy case
2042         source to fix memory leak.
2043
2044 Sat May  6 22:46:47 2006  Ben Pfaff  <blp@gnu.org>
2045
2046         * scratch-reader.c (scratch_reader_read_case): Copy into existing
2047         case passed as argument instead of initializing the argument as a
2048         case.  Fixes memory leak that showed up in
2049         tests/command/aggregate.sh with scratch files.
2050
2051 Sat May  6 22:45:55 2006  Ben Pfaff  <blp@gnu.org>
2052
2053         * procedure.c (proc_done): Destroy default_dict, to fix memory
2054         leak.
2055
2056 Sat May  6 22:44:44 2006  Ben Pfaff  <blp@gnu.org>
2057
2058         Simplify procedure_with_splits().
2059         
2060         * procedure.c (struct split_aux_data): Removed case_count member.
2061         (procedure_with_splits) Don't initialize case_count.
2062         (split_procedure_case_func) Check whether prev_case is null
2063         instead of case_count.
2064         (split_procedure_end_func) Ditto.
2065
2066 Sat May  6 22:42:23 2006  Ben Pfaff  <blp@gnu.org>
2067
2068         * case.c (case_move): Do nothing if dst and src are the same
2069         object.
2070         (case_try_create) Merge two similar cases.
2071         (case_copy) Unshare only if data must be actually copied.
2072
2073 Sun May  7 10:04:06 WST 2006 John Darrington <john@darrington.wattle.id.au>
2074
2075         * data-in.c data-out.c dictionary.c sys-file-reader.c
2076         sys-file-writer.c variable.c variable.h:  Reworked very long string
2077         support for better encapsulation.
2078
2079 Sat May  6 19:02:00 2006  Ben Pfaff  <blp@gnu.org>
2080
2081         * value-labels.c (val_labs_can_set_width): New function.
2082         (val_labs_set_width) Clear labels if increasing width to long
2083         string.
2084         (val_labs_destroy) Remove unneeded test for null.
2085         
2086 Sat May  6 16:14:08 2006  Ben Pfaff  <blp@gnu.org>
2087
2088         * value-labels.h: Remove unneeded dependency on variable.h.
2089
2090 Sat May  6 15:58:36 2006  Ben Pfaff  <blp@gnu.org>
2091
2092         Get rid of `char *c' member in union value, for cleanliness.
2093         
2094         * value.h: (union value) Remove `c' member.
2095
2096 Sat May  6 15:36:59 2006  Ben Pfaff  <blp@gnu.org>
2097
2098         Make dictionary compacting functions a little more general.
2099         
2100         * sys-file-writer.c (sfm_open_writer): Use
2101         dict_compacting_would_change().
2102         (does_dict_need_translation) Removed.
2103
2104 Sat May  6 15:35:42 2006  Ben Pfaff  <blp@gnu.org>
2105
2106         Make dictionary compacting functions a little more general.
2107         
2108         * dictionary.c (dict_needs_compaction): Rename
2109         dict_compacting_would_shrink().  Update all callers.
2110         (dict_compacting_would_change) New function.
2111         
2112 Sat May  6 14:25:49 2006  Ben Pfaff  <blp@gnu.org>
2113
2114         * sys-file-writer.c: (does_dict_need_translation) Fix bug:
2115         inverted return value (!).
2116
2117 Sat May  6 13:37:52 2006  Ben Pfaff  <blp@gnu.org>
2118
2119         Continue reforming procedure execution.  
2120
2121         * procedure.c: Search and replace "vfm" by "proc".  Notably:
2122         (static var vfm_source) Rename proc_source.  Update all
2123         references.
2124         (static var vfm_sink) Rename proc_sink.  Update all references.
2125         
2126 Sat May  6 12:38:55 2006  Ben Pfaff  <blp@gnu.org>
2127
2128         Continue reforming procedure execution.  In this phase, remove
2129         PROCESS IF, which was deprecated anyway and can be easily
2130         simulated with TEMPORARY followed by SELECT IF.
2131
2132         * procedure.c: (open_active_file) Don't call
2133         add_process_if_trns().
2134         (discard_variables) Get rid of redundant call to
2135         proc_cancel_all_transformations().
2136         (add_process_if_trns) Removed.
2137         (process_if_trns_proc) Removed.
2138         (process_if_trns_free) Removed.
2139
2140 Sat May  6 10:58:05 2006  Ben Pfaff  <blp@gnu.org>
2141
2142         Continue reforming procedure execution.  In this phase, add
2143         `const' to the case passed to procedure()'s callback.
2144
2145         Updated all users of procedure() as well.
2146         
2147         * procedure.c: (struct write_case_data) Add "const" to ccase
2148         parameter for case_func member.
2149         (procedure) Add "const" to ccase parameter for proc_func
2150         parameter.
2151         (multipass_case_func) Make ccase parameter const.
2152         (internal_procedure) Add "const" to ccase parameter for case_func
2153         parameter.
2154         (split_procedure_case_func) Make ccase parameter const.
2155         (multipass_split_case_func) Make ccase parameter const.
2156         
2157 Sat May  6 10:30:33 2006  Ben Pfaff  <blp@gnu.org>
2158
2159         Continue reforming procedure execution.  In this phase, get rid of
2160         the output code for SPLIT FILE groups in procedure.c, which really
2161         shouldn't be doing any output.  Move it into the individual
2162         procedures instead.  This also adds some flexibility.
2163
2164         Updated many users of procedure_with_splits() and
2165         multipass_procedure_with_splits() to call
2166         output_split_file_values() and to deal with increased use of
2167         const.
2168
2169         * procedure.c: (struct split_aux_data) Add "const struct ccase *"
2170         parameter to begin_func member.
2171         (procedure_with_splits) Add "const struct ccase *" parameter to
2172         begin_func parameter.  Make ccase parameter const in proc_func
2173         parameter.
2174         (split_procedure_case_func) Don't dump split file group.  Pass
2175         case to begin_func.
2176         (dump_splits) Moved to language/dictionary/split-file.c as
2177         output_split_file_values().
2178         (struct multipass_split_aux_data) Add "const struct ccase *"
2179         parameter to split_func member.
2180         (multipass_procedure_with_splits) Add "const struct ccase *"
2181         parameter to split_func parameter.
2182         (multipass_split_case_func) Save new SPLIT FILE case before
2183         outputting case.
2184         (multipass_split_output) Pass saved SPLIT FILE case to split_func.
2185         
2186 Fri May  5 22:48:50 2006  Ben Pfaff  <blp@gnu.org>
2187
2188         Continue reforming procedure execution.  Change
2189         internal_procedure() so that it calls open_active_file() and
2190         close_active_file(), which isolates most of the actual procedure
2191         functionality.
2192
2193         * procedure.c: (struct write_case_data) Rename `proc_func' member
2194         to `case_func' and update all references.
2195         (procedure) Rewrite as one-line wrapper around
2196         internal_procedure().
2197         (struct multipass_aux_data) New.
2198         (multipass_callback) Renamed multipass_case_func().  Use struct
2199         multipass_aux_data as auxiliary data.
2200         (multipass_end_func) New function.
2201         (multipass_procedure) Rewrite as wrapper for internal_procedure()
2202         that uses multipass_case_func, multipass_end_func.
2203         (internal_procedure) Add `end_func' argument.  Move optimization
2204         of trivial case in here.  Move call to open_active_file() and
2205         close_active_file() in here.  Now assert that vfm_source is
2206         non-null.
2207         (procedure_with_splits_callback) Rename
2208         split_procedure_case_func().
2209         (split_procedure_end_func) New function.
2210         (multipass_split_callback) Rename multipass_split_case_func.
2211         (multipass_split_end_func) New function.
2212         (discard_variables) No need to test for nonnull vfm_source.
2213
2214 Fri May  5 21:34:02 2006  Ben Pfaff  <blp@gnu.org>
2215
2216         Continue reforming procedure execution.  Get rid of unused member.
2217
2218         * procedure.c: (struct write_case_data) Remove `cases_analyzed'
2219         member.
2220         (write_case) Don't increment cases_analyzed.
2221
2222 Thu May  4 21:50:11 2006  Ben Pfaff  <blp@gnu.org>
2223
2224         Continue reforming procedure execution.  In this phase, move
2225         procedure.c and procedure.h from src to src/data.  Update
2226         makefiles and #includes accordingly.
2227
2228         * procedure.c: Moved here from src/.
2229
2230         * procedure.h: Moved here from src/.
2231
2232 Wed May  3 22:42:12 2006  Ben Pfaff  <blp@gnu.org>
2233
2234         Continue reforming procedure execution.  In this phase, get rid of
2235         many global variables, consolidating procedure execution in
2236         procedure.c.  Encapsulate transformations in new "struct
2237         trns_chain".  Also, change implementation of N OF CASES, FILTER,
2238         and PROCESS IF from special cases to transformations.
2239          
2240         * automake.mk: (src_data_libdata_a_SOURCES) Add transformations.c,
2241         transformations.h.
2242
2243         * dictionary.c: (global variable default_dict) Move to
2244         src/procedure.c.
2245
2246         * variable.h: (TRNS_*) Move to transformations.h.
2247         (struct transformation) Move to transformations.c.
2248
2249 Thu May  4 13:47:06 WST 2006 John Darrington <john@darrington.wattle.id.au>
2250
2251         * sys-file-reader.c: Fixed invalid read problems.
2252
2253 Tue May  2 15:57:10 2006  Ben Pfaff  <blp@gnu.org>
2254
2255         * storage-stream.c: Add missing function comments.
2256
2257 Tue May  2 15:50:21 2006  Ben Pfaff  <blp@gnu.org>
2258
2259         Continue reforming procedure execution.  In this phase, add some
2260         new, needed functionality to storage-stream.
2261
2262         * storage-stream.c: (storage_source_decapsulate) New function.
2263
2264 Tue May  2 15:43:36 2006  Ben Pfaff  <blp@gnu.org>
2265
2266         * variable.c (width_to_bytes): Declarations must precede
2267         statements for C90 compliance.
2268
2269 Tue May  2 10:42:05 WST 2006 John Darrington <john@darrington.wattle.id.au>
2270
2271         * data-out.c, data-in.c, variable.c, variable.h: New functions 
2272         copy_mangle and copy_demangle for reading/writing cases; emulates the 
2273         way SPSS deals with strings > 255 bytes.
2274
2275         * sys-file-reader.c sys-file-writer.c: Added support for Record 7, 
2276         subtype 14 needed for strings longer than 255 bytes.
2277
2278         * dictionary.c, format.def, value.c : Updated to use MAX_STRING 
2279         instead of literal values. Also fixed some constness issues.
2280
2281         * format.h: Constness
2282
2283         * sfm-private.h: Renamed the case_size identifier, since I discovered 
2284         that SPSS's respect for this variable is very nominal.
2285
2286 Mon May  1 15:45:42 2006  Ben Pfaff  <blp@gnu.org>
2287
2288         Change case limit type from int to size_t.
2289
2290         * dictionary.c: (struct dictionary) Change type of case_limit
2291         member.
2292         (dict_get_case_limit) Change return type.
2293         (dict_set_case_limit) Change parameter type.
2294
2295 Wed Apr 26 20:01:19 2006  Ben Pfaff  <blp@gnu.org>
2296
2297         * variable.h: (struct variable) Rename `reinit' member as `leave'
2298         and invert sense.  Fix up all references.
2299
2300 Wed Apr 26 19:39:28 2006  Ben Pfaff  <blp@gnu.org>
2301
2302         Continue reforming procedure execution.  In this phase, break
2303         procedure.c into multiple files.
2304         
2305         * automake.mk: (src_data_libdata_a_SOURCES) Add all the new files.
2306
2307         * case-sink.c: New file.
2308
2309         * case-sink.h: New file.
2310         
2311         * case-source.c: New file.
2312
2313         * case-source.h: New file.
2314         
2315         * storage-stream.c: New file.
2316
2317         * storage-stream.h: New file.
2318
2319 Wed Apr 26 14:55:19 2006  Ben Pfaff  <blp@gnu.org>
2320
2321         * variable.h: (struct variable) Remove `init' member and all
2322         references to it from other files.  It was initialized in several
2323         places, but nothing really ever used it for anything worthwhile.
2324         Thanks to Jason Stover for pointing out how confusing this
2325         member is.
2326
2327 Sun Apr 23 22:04:45 2006  Ben Pfaff  <blp@gnu.org>
2328
2329         Continue reforming error message support.  In this phase, get rid
2330         of message "titles" and put the message text in `struct error'.
2331         Now `struct error' encapsulates a message more properly.
2332         
2333         * casefile.c: (io_error) Use err_msg() instead of err_vmsg().
2334         Format message ourselves.
2335
2336         * data-in.c: (vdls_error) Ditto.
2337
2338         * por-file-reader.c: (error) Ditto.
2339
2340         * sys-file-reader.c: (corrupt_msg) Ditto.
2341
2342 Sun Apr 16 18:49:51 2006  Ben Pfaff  <blp@gnu.org>
2343
2344         GNU standards require "file name" instead of "filename" in
2345         documentation.  It's nice for our code to follow the convention
2346         too.
2347         
2348         * casefile.c: (struct casefile) Rename `filename' member to
2349         `file_name'.  Updated all references.
2350
2351         * file-name.c: [!unix] (struct file_identity) Rename
2352         normalized_filename member to normalized_file_name.  Updated all
2353         references.
2354
2355 Sun Apr 16 18:35:33 2006  Ben Pfaff  <blp@gnu.org>
2356
2357         We don't really support anything but Unix-like environments well,
2358         so we might as well de-obfuscate by writing directory and path
2359         separators explicitly.
2360
2361         * file-name.h: (macro DIR_SEPARATOR) Removed.  Changed all usages
2362         to just '/'.
2363         (macro PATH_SEPARATOR) Removed.  Changed all usages to just ':'.
2364         (macro DIR_SEPARATOR_STRING) Removed.  Changed all usages to just
2365         "/".
2366         (macro PATH_SEPARATOR_STRING) Removed.  Changed all usages to just
2367         ":"
2368
2369 Sun Apr 16 18:28:35 2006  Ben Pfaff  <blp@gnu.org>
2370
2371         GNU standards require "file name" instead of "filename" in
2372         documentation.  It's nice for our code to follow the convention
2373         too.
2374         
2375         * filename.c: Rename to file-name.c.
2376
2377         * filename.h: Rename to file-name.h.  Update all inclusions.
2378         Update header guards.
2379
2380         * automake.mk: Update file names.
2381
2382 Sun Apr 16 16:42:47 2006  Ben Pfaff  <blp@gnu.org>
2383
2384         * filename.c: (fn_dirname) Renamed fn_dir_name(), all references
2385         updated.
2386         (fn_basename) Removed (dead code).
2387         (fn_absolute_p) Renamed fn_is_absolute(), all references updated.
2388         (fn_special_p) Renamed fn_is_special(), all references updated.
2389         (fn_exists_p) Renamed fn_exists(), all references updated.
2390
2391 Sun Apr 16 16:33:58 2006  Ben Pfaff  <blp@gnu.org>
2392
2393         * filename.c: (fn_tilde_expand) Rewrite for cleaner code.  
2394         Also, now it only tilde-expands file names, not paths.
2395         (fn_search_path) Tilde-expand one directory at a time.
2396
2397 Sun Apr 16 16:28:06 2006  Ben Pfaff  <blp@gnu.org>
2398
2399         * filename.c: (fn_search_path) rewrite for cleaner code.  Also,
2400         get rid of non-Unixlike version of the code, which has probably
2401         never been tested.
2402         (fn_prepend_dir) Removed (dead code).
2403
2404         * filename.h: (macro DIR_SEPARATOR_STRING) New.
2405         (macro PATH_SEPARATOR_STRING) New.
2406 Sun Apr 16 16:05:28 2006  Ben Pfaff  <blp@gnu.org>
2407
2408         Continue reforming error message support.  In this phase, we get
2409         rid of VM() and the other msg() support for "verbosity", replacing
2410         it by a new function verbose_msg().
2411
2412         * filename.c: (fn_search_path) Use verbose_msg() instead of
2413         msg(VM(), ...).  
2414
2415 Sat Apr 15 19:53:19 2006  Ben Pfaff  <blp@gnu.org>
2416
2417         * sfm-private.h: Get rid of #defines after #error, which makes no
2418         sense.
2419
2420 Sat Apr 15 19:48:57 2006  Ben Pfaff  <blp@gnu.org>
2421
2422         Get rid of our own int32 type in favor of the standard int32_t
2423         type.
2424         
2425         * sfm-private.h: (int32 macro) Don't define this anymore.  Do
2426         include <stdint.h>.
2427
2428         * sys-file-reader.c: Use int32_t instead of int32 throughout.
2429         
2430         * sys-file-writer.c: Use int32_t instead of int32 throughout.
2431
2432 Sat Apr 15 19:36:47 2006  Ben Pfaff  <blp@gnu.org>
2433
2434         Remove ill-considered file routines that are no longer used.
2435         
2436         * filename.c: (fn_open_ext) Removed.
2437         (fn_close_ext) Removed.
2438
2439         * filename.h: (struct file_ext) Removed.
2440
2441 Mon Apr  3 13:22:39 2006  Ben Pfaff  <blp@gnu.org>
2442
2443         * variable.c (var_is_valid_name): Move declarations before code
2444         for C90 compliance.
2445
2446 Tue Apr  4 15:28:40 WST 2006 John Darrington <john@darrington.wattle.id.au>
2447
2448         * filename.ch (fn_interp_vars): Fixed small buglet.
2449
2450 Tue Mar 28 13:47:16 WST 2006 John Darrington <john@darrington.wattle.id.au>
2451         
2452         * filename.[ch] (fn_interp_vars): Changed the signature and semantics
2453         so as to modify the string inline.   Thus makeing it easier to
2454         destroy the results when no longer needed.
2455         
2456 2006-03-25  Jason Stover  <jhs@math.gcsu.edu>
2457
2458         * category.c (cat_stored_values_destroy): Fixed memory leak.
2459
2460 Fri Mar 24 18:15:41 2006  Ben Pfaff  <blp@gnu.org>
2461
2462         Add some missing frees.  Thanks to John Darrington for reporting
2463         these.
2464
2465         * any-writer.c (any_writer_close): Free writer.
2466
2467         * any-reader.c (any_reader_close): Free reader.
2468
2469 Mon Mar 20 16:33:53 2006  Ben Pfaff  <blp@gnu.org>
2470
2471         * por-file-reader.c: (error) Mark as NO_RETURN.
2472
2473 Sat Mar 11 15:06:07 WST 2006 John Darrington <john@darrington.wattle.id.au>
2474
2475         * settings.c: Changed default value of scompress to true.
2476
2477 Sat Mar  4 13:22:51 2006  Ben Pfaff  <blp@gnu.org>
2478
2479         * sfm-private.h: Include variable.h, to get SHORT_NAME_LEN.
2480
2481         * value.h: Remove check on MAX_SHORT_STRING, which I don't think
2482         really applies.
2483
2484         * variable.h: Move definition of SHORT_NAME_LEN, LONG_NAME_LEN
2485         here from pref.h.orig.
2486
2487 Sat Mar  4 12:50:48 WST 2006 John Darrington <john@darrington.wattle.id.au>
2488
2489         * sys-file-reader.c: Fixed bug reading compressed files.
2490
2491 Thu Mar  2 08:40:33 WST 2006 John Darrington <john@darrington.wattle.id.au>
2492
2493         * Numerous renames.  See src/ChangeLog for details.
2494         
2495         * Moved files from src directory