cb0116e8239d3a0577c4f48bbdb01df3b85b5b96
[pspp-builds.git] / src / data / ChangeLog
1 2007-07-24  Ben Pfaff  <blp@gnu.org>
2
3         Fix bug #20427.
4         * por-file-writer.c (write_variables): Write weight variable.
5         Reviewed by John Darrington.
6
7 2007-07-23  Ben Pfaff  <blp@gnu.org>
8
9         Improvements to system file reader and writer.
10         
11         First, move all detailed knowledge of very long strings into
12         sys-file-private.[ch], so that this nasty stuff can be isolated.
13
14         * sys-file-private.c (REAL_VLS_CHUNK): New macro.
15         (EFFECTIVE_VLS_CHUNK): New macro.
16         (min_int): New function.
17         (max_int): New function.
18         (sfm_width_to_bytes): Rewrite.
19         (sfm_width_to_octs): New function.
20         (sfm_segment_alloc_width): New function.
21         (sfm_segment_alloc_bytes): New function.
22         (sfm_segment_used_bytes): New function.
23         (sfm_segment_offset): New function.
24         (sfm_segment_effective_offset): New function.
25         (sfm_dictionary_to_sfm_vars): New function.
26
27         * sys-file-private.h (MIN_VERY_LONG_STRING): Removed.
28         (EFFECTIVE_LONG_STRING_LENGTH): Removed.
29         (struct sfm_var): New structure.
30
31         Next, improvements to the system file reader.
32
33         * sys-file-reader.h (struct sfm_read_info): Changed `case_cnt' to
34         type casenumber.  Added `version_major', `version_minor',
35         `version_revision'.
36
37         * sys-file-reader.c (struct sfm_reader): Replaced `flt64_cnt' by
38         `oct_cnt'.  Rename `vars', `var_cnt' to `sfm_vars', `sfm_var_cnt'.
39         Change `case_cnt' to type casenumber.  Removed `has_vls'.
40         (struct sfm_var): Removed.
41         (sfm_open_reader): Don't warn on wrong case size if the file was
42         written by SPSS 13, which tends to get it wrong.  Use
43         sfm_dictionary_to_sfm_vars.
44         (read_header): Always output system file info.
45         (read_variable_record): Simplify code for reading missing values.
46         (read_machine_int32_info): Save version numbers from system file
47         into info struct passed as new argument.
48         (read_long_string_map): Restructured to use new sys-file-private
49         functions.
50         (read_value_labels): Use size_overflow_p.
51         (sys_file_casereader_read): Get rid of distinction between fast
52         and slow paths.  Use information provided by sys-file-primate's
53         struct sfm_var to simplify code.
54         (skip_whole_strings): New function.
55         (read_int32): Renamed read_int.  Changed return value to int.
56         Updated all callers.
57         (read_flt64): Renamed read_float.  Changed return value to
58         double.  Updated all callers.
59         (int32_to_native): Removed.  Changed callers to use
60         integer_convert.
61         (flt64_to_double): Removed.  Changed callers to use float_convert.
62         
63         Finally, get rid of int32, flt64 terminology and types in system
64         file writer.  The former wasn't very useful since a POSIX "int"
65         can hold the whole range of int32 and we generally didn't have a
66         need for it to be exactly-32-bits, just at-least-32-bits.  The
67         latter was inconvenient because we had to assume that it could be
68         different from double and thereby convert special values SYSMIS,
69         HIGHEST, LOWEST to and from it in multiple places.  Instead, now
70         we just use "int" and "double" in most places, and do conversions,
71         if necessary, very close to where we do I/O.  This change meant
72         that the writer code couldn't represent records in the file as C
73         structs any longer, but that's no great loss.  The code actually
74         seems to be more readable without them.
75
76         Simplify the compression buffering code: only buffer as much as
77         necessary, which is no more than eight 8-byte units at any given
78         time.
79
80         * sys-file-writer.c (typedef flt64): Removed.
81         (macro second_lowest_flt64): Removed.
82         (struct sysfile_header): Removed.
83         (struct sysfile_variable): Removed.
84         (struct sfm_writer): Removed `needs_translation', `has_vls',
85         `flt64_cnt'.  Changed `compress' to type bool and `case_cnt' to
86         type casenumber.  Renamed `vars' to `sfm_vars', `var_cnt' to
87         `sfm_var_cnt'.  Replaced `buf', `end', `ptr', `x', `y' for
88         compression buffering by `opcodes', `opcode_cnt', `data',
89         `data_cnt'.  Renamed `var_cnt_vls' as `segment_cnt'.
90         (sfm_open_writer): Use sfm_dictionary_to_sfm_vars.  Use simple
91         data writer functions instead of structures.
92         (calc_oct_idx): New function.
93         (write_header): Use simple data writer functions instead of
94         structures.
95         (write_format_spec): Renamed write_format.  New argument.
96         (write_variable_continuation_records): New function.
97         (write_variable): Use simple data writer functions instead of
98         structures.  Use write_variable_continuation_records.  Write
99         entire very long string instead of requiring caller to understand
100         them.
101         (write_value_labels): Use simple data writer functions instead of
102         structures.
103         (write_documents): Ditto.
104         (write_variable_display_parameters): Use sys-file-private
105         functions to simplify.  Use simple data writer functions instead
106         of structures.
107         (write_vls_length_table): Use simple data writer functions instead
108         of structures.
109         (write_longvar_table): Ditto.
110         (write_rec_7_34): Break into new functions
111         write_integer_info_record, write_float_info_record.  Use simple
112         data writer functions instead of structures.
113         (buf_write): Removed.
114         (append_string_max): Removed.
115         (ensure_buf_space): Removed.
116         (sys_file_casewriter_write): Get rid of the distinction between
117         fast and slow paths, which didn't seem to be too useful.  Use new
118         functions write_case_uncompressed, write_case_compressed.
119         (put_instruction): Removed.
120         (put_element): Removed.
121         (write_compressed_data): Removed.
122         (close_writer): Use flush_compressed.  Only write case count to
123         system file if it will fit in the field.
124         (write_case_compressed): New function.
125         (write_case_uncompressed): New function.
126         (flush_compressed): New function.
127         (put_cmp_opcode): New function.
128         (put_cmp_number): New function.
129         (write_int): New function.
130         (convert_double_to_output_format): New function.
131         (write_float): New function.
132         (write_value): New function.
133         (write_string): New function.
134         (write_bytes): New function.
135         (write_zeros): New function.
136         (write_spaces): New function.
137
138         Reviewed by John Darrington.
139
140 2007-07-22  Ben Pfaff  <blp@gnu.org>
141
142         Don't try to write very long strings to portable files.  The
143         format does not support it.
144
145         * por-file-writer.c (MAX_POR_WIDTH): New macro.
146         (pfm_open_writer): Limit output width to MAX_POR_WIDTH.
147         (write_format): Add arg to take width to resize format to.
148         (write_value): Limit width of value written to MAX_POR_WIDTH.
149         (write_variables): Limit width of variable and its output formats
150         to MAX_POR_WIDTH.
151         Reviewed by John Darrington.
152
153 2007-07-22  Ben Pfaff  <blp@gnu.org>
154
155         * sys-file-reader.c (read_variable_to_value_map): Use max_warnings
156         local variable instead of literal 5.
157         Reviewed by John Darrington.
158         
159 2007-07-22  Ben Pfaff  <blp@gnu.org>
160
161         Fix problems with uniqueness of short names in system files with
162         very long string variables.  Now a variable may have multiple
163         short names.
164         
165         * automake.mk (src_data_libdata_a_SOURCES): Add new files
166         short-names.c, short-names.h.
167
168         * dictionary.c (dict_clone): Clone all the short names.
169         (compare_strings): Move into short-names.c.
170         (hash_strings): Ditto.
171         (set_var_short_name_suffix): Ditto.
172         (dict_assign_short_names): Ditto, rename short_names_assign,
173         change to assign all short names.
174         
175         * por-file-writer.c (write_variables): Use short_names_assign
176         instead of dict_assign_short_names.
177
178         * short-names.c: New file.
179
180         * short-names.h: New file.
181
182         * sys-file-private.c (sfm_width_to_segments): New function.
183
184         * sys-file-reader.c (read_long_var_name_map): Save and restore all
185         the short names, not just the first one.
186         
187         * sys-file-writer.c (cont_var_name): Removed.
188         (sfm_open_writer): Use short_names_assign instead of
189         dict_assign_short_names.  Use unique short names assigned by
190         short_names_assign instead of those generated by cont_var_name.
191
192         * variable.c (struct variable): Remove `short_name' member,
193         replace by `short_names' and `short_name_cnt'.
194         (var_create) Initialize new members.
195         (var_get_short_name_cnt): New function.
196         (var_get_short_name): Now takes an index argument.  Changed most
197         callers to pass 0.
198         (var_set_short_name): Ditto.
199         (var_clear_short_name): Renamed var_clear_short_names, changed to
200         clear all short names.
201         
202         Reviewed by John Darrington.
203
204 2007-07-22  Ben Pfaff  <blp@gnu.org>
205
206         * variable.c (var_set_width): Use new var_set_width function.
207
208         * missing-values.c (mv_n_values): Drop assertion, which was not
209         needed.
210
211         * format.c (fmt_default_for_width): New function.
212         (fmt_resize): New function.
213
214         Reviewed by John Darrington.
215
216 2007-07-18 John Darrington <john@darrington.wattle.id.au>
217
218         * datasheet.c (datasheet_delete_columns): Added assertion to check
219         we're not deleting outside the range of the sheet.  
220
221         
222         * dictionary.c dictionary.h variable.c: Added the ability for string
223         variables to be resized.
224         
225         * vardict.h: Added some prototypes (moved from dictionary.h) as
226         these should only be called by variable.c
227
228
229 2007-07-14 John Darrington <john@darrington.wattle.id.au>
230
231         * sfm-reader.c: Respect case_cnt field in file header.
232
233 2007-07-01 John Darrington <john@darrington.wattle.id.au>
234
235         * transformation.c transformation.h (trns_chain_execute): Changed the 
236         signature (Patch #6057)
237
238 2007-06-10  Ben Pfaff  <blp@gnu.org>
239
240         * casereader-filter.c (casereader_filter_destroy): Make sure to
241         write all the remaining excluded cases to the casewriter, if any.
242
243         * caseinit.c (init_list_destroy): Rewrite.
244         (init_list_clear): Ditto.
245
246         * casegrouper.c (casegrouper_get_next_group): Always set *reader
247         to null when returning false.
248
249 2007-06-06  Ben Pfaff  <blp@gnu.org>
250
251         Actually implement the new procedure code and adapt all of its
252         clients to match.  Also adapt all of the other case sources and
253         sinks in the tree and their clients to use the
254         casereader/casewriter infrastructure.
255
256         * automake.mk: Add and remove files.
257
258         * any-reader.c: Change into a casereader.
259         * por-file-reader.c: Ditto.
260         * scratch-reader.c: Ditto.
261         * sys-file-reader.c: Ditto.
262
263         * any-writer.c: Change into a casewriter.
264         * por-file-writer.c: Ditto.
265         * scratch-writer.c: Ditto.
266         * sys-file-writer.c: Ditto.
267
268         * procedure.c: Change to use casereader, casewriter, caseinit, and
269         other new infrastructure.
270
271         * scratch-handle.c: Adapt to new infrastructure.
272
273         * case-sink.c: Removed, now dead code.
274         * case-sink.h: Ditto.
275         * case-source.c: Ditto.
276         * case-source.h: Ditto.
277         * casefile-factory.c: Ditto.
278         * casefile-private.h: Ditto.
279         * casefile.c: Ditto.
280         * casefile.h: Ditto.
281         * casefilter.c: Ditto.
282         * casefilter.h: Ditto.
283         * fastfile.c: Ditto.
284         * fastfile.h: Ditto.
285         * fastfile-factory.c: Ditto.
286         * fastfile-factory.h: Ditto.
287         * storage-stream.c: Ditto.
288         * storage-stream.h: Ditto.
289
290 2007-06-06  Ben Pfaff  <blp@gnu.org>
291
292         Add datasheet code.
293
294         * automake.mk: Add new files.
295
296         * datasheet.c: New file.
297
298         * datasheet.h: New file.
299
300 2007-06-06  Ben Pfaff  <blp@gnu.org>
301
302         Until now, the procedure code has provided a case to the
303         case_source, which has filled in the data values that come from
304         the active file.  "Left" data values that don't come from the
305         active file naturally stay the same from case to case, because the
306         procedure code keeps using that same case.
307
308         One of the compromises that comes with the new procedure code is
309         that the active file allocates and provides its own case, which
310         the procedure code then has to resize to provide room for any
311         other variables that should go in the case and then fill in the
312         values of "left" variables.  Then, when we're done with that case,
313         we have to save the values of "left" variables to copy into the
314         next case read from the active file.
315
316         The caseinit code helps with this.
317
318         * automake.mk: Add new files.
319
320         * caseinit.c: New file. 
321
322         * caseinit.h: New file. 
323
324 2007-06-06  Ben Pfaff  <blp@gnu.org>
325
326         * value.h (value_cnt_from_width): New function.
327
328         * variable.c (var_get_value_cnt): Use new function.
329
330 2007-06-06  Ben Pfaff  <blp@gnu.org>
331
332         Add casegrouper, to allow cases read from a given casereader to be
333         broken into groups, each of which has its own casereader.
334         Generally cases are grouped based on having equal values for some
335         set of variables.
336
337         * automake.mk: Add new files.
338
339         * casegrouper.c: New file.
340
341         * casegrouper.h: New file.
342
343 2007-06-06  Ben Pfaff  <blp@gnu.org>
344
345         Add interface to lexicographical ordering of cases.
346
347         * automake.mk: Add new files.
348
349         * case-ordering.c: New file.
350
351         * case-ordering.h: New file.
352
353 2007-06-06  Ben Pfaff  <blp@gnu.org>
354
355         Add casereaders and casewriters, the basis of the new data processing
356         implementation.  A casereader is a uniform interface to reading cases
357         from a data source; a casewriter is a uniform interface to writing
358         cases to a data sink.
359
360         * automake.mk: Add new files.
361         
362         * casereader-filter.c: New file.
363         
364         * casereader-provider.h: New file.
365
366         * casereader-translator.c: New file.
367         
368         * casereader.c: New file.
369         
370         * casereader.h: New file.
371         
372         * casewriter-provider.h: New file.
373         
374         * casewriter-translator.c: New file.
375         
376         * casewriter.c: New file.
377         
378         * casewriter.h: New file.
379
380 2007-06-06  Ben Pfaff  <blp@gnu.org>
381
382         "casewindow" data structure that extends the deque (from libpspp)
383         of cases with the ability to dump cases to disk if we get too many
384         of them in memory.
385
386         * automake.mk: Add new files.
387
388         * casewindow.c: New file.
389
390         * casewindow.h: New file.
391
392 2007-06-06  Ben Pfaff  <blp@gnu.org>
393
394         sparse_cases data structure that augments a sparse_array of cases
395         with the ability to dump cases to disk if we get too many cases in
396         memory.
397
398         * automake.mk: Add new files.
399
400         * sparse-cases.c: New file.
401
402         * sparse-cases.h: New file.
403
404 2007-06-06  Ben Pfaff  <blp@gnu.org>
405
406         Adds a low-level on-disk case array data structure.
407         
408         * automake.mk: Add new files.
409
410         * case-tmpfile.c: New file.
411
412         * case-tmpfile.h: New file.
413
414 2007-06-06  Ben Pfaff  <blp@gnu.org>
415
416         In a couple of places we calculate the maximum number of cases to
417         keep in memory based on the user-defined workspace.  Enable
418         centralizing the calculation through a new function.
419         
420         * settings.c (get_workspace_cases): New function.
421
422 2007-06-06  Ben Pfaff  <blp@gnu.org>
423
424         The casenumber type is defined in transformations.h, but case.h is
425         a more sensible place.  Move it.
426
427         * case.h (CASENUMBER_MAX): New macro.
428         (typedef casenumber): Move here, from transformations.h.
429
430 2007-06-03  Ben Pfaff  <blp@gnu.org>
431
432         Slightly generalize case_to_values and case_from_values functions.
433
434         * case.c (case_to_values): Rename case_copy_out, change interface.
435         (case_from_values): Rename case_copy_in, change interface.
436
437         * fastfile.c (fastfilereader_get_next_case): Update caller.
438         (write_case_to_disk): Ditto.
439
440 2007-06-02  Ben Pfaff  <blp@gnu.org>
441
442         Clean up after a forgotten part of patch #5829.
443         
444         * casedeque.h: Remove unused file.
445
446         * automake.mk: Remove casedeque.h from sources.
447
448 2007-05-10  Jason Stover  <jhs@math.gcsu.edu>
449
450         * category.c: Removed redundant #include
451
452 2007-05-06  Ben Pfaff  <blp@gnu.org>
453
454         Abstract the documents within a dictionary a little better.
455         Thanks to John Darrington for suggestion, initial version, and
456         review.  Patch #5917.
457
458         * dictionary.c (struct dictionary): Change `documents' member from
459         char * to struct string.
460         (dict_clear): Destroy struct string.
461         (dict_get_documents): Convert struct string to char *.
462         (dict_set_documents): Set struct string.  Pad to 80-character
463         multiple.
464         (dict_clear_documents): New function.
465         (dict_add_document_line): New function.
466         (dict_get_document_line_cnt): New function.
467         (dict_get_document_line): New function.
468
469         * dictionary.h (macro DOC_LINE_LENGTH): New macro.
470
471         * sys-file-reader.c (read_documents): Use new document functions.
472
473 2007-04-19 John Darrington <john@darrington.wattle.id.au>
474
475         * sys-file-reader.c: When reading a system file which has no 
476         long name table, automatically create one where the long names 
477         are the lower case versions of the short names.
478         
479 2007-04-22  Ben Pfaff  <blp@gnu.org>
480
481         * dictionary.c (dict_set_split_vars): dict_destroy expects that
482         dict_clear will free most data related to the dictionary.
483         dict_clear does a decent job, except that dict_set_split_vars on
484         some systems won't actually free the dict's "split" member.
485         Instead, it'll allocate a 1-byte region.  Fix this.
486
487         * value.c (value_copy): New function.
488         (value_set_missing): Ditto.
489
490 2007-04-22 John Darrington <john@darrington.wattle.id.au>
491
492         * Deleted existing category.h and moved cat-routines.h into 
493         category.h  Encapsulated struct cat_vals better.
494
495 2007-04-19 John Darrington <john@darrington.wattle.id.au>
496
497         * sys-file-reader.c: When reading a system file which has no 
498         long name table, automatically create one where the long names 
499         are the lower case versions of the short names.
500         
501 2007-04-16 John Darrington <john@darrington.wattle.id.au>
502
503         * sys-file-reader.c: Some versions of Other Software seem to 
504         produce system files with string  variables' measure set to 
505         zero.  We'll assume these are supposed to be nominal variables.
506
507 2007-03-30  Ben Pfaff  <blp@gnu.org>
508
509         * procedure.c: Adapt to new deque data structure.
510
511 Mon Feb 19 10:53:21 2007  John McCabe-Dansted <gmatht@gmail.com>
512                           Ben Pfaff <blp@gnu.org>
513
514         * file-name.c: Mingw compatibility fixes.
515         (fn_search_path): Use ISSLASH instead of comparing against '/'
516         directly.
517         (fn_dir_name): Use dir_name from gnulib.
518         (fn_is_absolute): Use IS_ABSOLUTE_FILE_NAME from gnulib.
519         (fn_get_identity): Use GetFullPathName instead of canonicalize
520         from gnulib, because the latter does not fully support
521         Windows-style path names.  Use this implementation based on the
522         detected presence of Windows instead of the absence of Unix, since
523         the new implementation is Windows-specific.
524         (fn_compare_file_identities): In Windows implementation, compare
525         names case-insensitively.
526
527 Sun Feb 18 13:28:02 2007  Ben Pfaff  <blp@gnu.org>
528
529         * make-file.c: Don't include mkstemp.h, because gnulib now causes
530         <stdlib.h> to have the same effect.
531
532 Sun Feb 18 11:20:24 2007  Ben Pfaff  <blp@gnu.org>
533
534         * por-file-reader.c: Add missing _() around messages.
535
536 Sun Feb 11 20:44:13 2007  Ben Pfaff  <blp@gnu.org>
537
538         * make-file.c: Include "mkstemp.h", without which linking on
539         mingw32 fails.
540
541 Thu Feb  8 14:59:05 2007  Ben Pfaff  <blp@gnu.org>
542  
543         Reduce platform dependence.
544  
545         * file-name.c (fn_tilde_expand): Removed, and removed calls to it.
546         Everywhere we using this, we really should have just depended on
547         the shell to expand tildes.
548         (fn_search_path): Simplify, given that we don't do tilde expansion
549         any longer.
550         (fn_normalize): Removed.  Caller changed to use the canonicalize
551         module from gnulib.
552         (fn_get_cwd): Removed.  Only user was fn_normalize.
553         (fn_is_absolute): Really only test for absolute names.
554         (fn_is_special): Use pipe files if HAVE_POPEN, not if we're in
555         unix.
556         (fn_readlink): Removed, as it was only used fn_normalize.
557         (fn_exists): Assume the stat function is available; gnulib does.
558         (fn_open): Use pipe files if HAVE_POPEN, not if we're in unix.
559  
560 Sat Feb  3 21:52:17 2007  Ben Pfaff  <blp@gnu.org>
561
562         * dictionary.c (dict_create_vector_assert): New function.
563
564 Wed Feb  7 21:25:15 2007  Ben Pfaff  <blp@gnu.org>
565
566         * file-name.c (fn_normalize): Correct name of function
567         fn_is_special.  Thanks to John McCabe-Dansted <gmatht@gmail.com>
568         for pointing this out.
569
570 Thu Feb  1 16:53:37 2007  Ben Pfaff  <blp@gnu.org>
571
572         We are using a single member in struct file_handle, the "name"
573         field, for more than one purpose.  When it begins with '"', it's a
574         file name; otherwise, it's a token that can be used to identify
575         it.  When that assertion fires, it's because we searched for the
576         name case-sensitively as a file name (so that there was no match),
577         and then we try to insert it case-insensitively as a token, which
578         fails because duplicates aren't allowed.
579
580         Solution: break the two purposes into two separate fields.  This
581         fixes the problem and likely makes the code easier to read too.
582
583         Fixes bug #18922.  Thanks to John Darrington for bug report and
584         review.
585
586         * file-handle-def.c (struct file_handle): New `id' member.
587         (fh_from_name): Rename fh_from_id.  Update all callers.
588         (create_handle): New `id' parameter.  Update all callers.
589         (fh_create_file): Ditto.
590         (fh_get_id): New function.
591
592 Mon Jan 15 16:18:10 2007  Ben Pfaff  <blp@gnu.org>
593
594         * case.c (case_is_null): Change return type to bool.
595
596 Mon Jan 15 10:57:28 2007  Ben Pfaff  <blp@gnu.org>
597
598         Add debugging code.
599         
600         * case.c (case_clone) [DEBUGGING]: When debugging, don't use
601         reference counting to share data.  This makes it easy for
602         valgrind, etc. to find accesses to cases that have been destroyed
603         but have been kept around by another user's ref-count.  This often
604         happens when the data set is small enough to find in memory; if a
605         bigger data set that would overflow to disk were used, then data
606         corruption would occur.
607
608 Mon Jan 15 10:55:18 2007  Ben Pfaff  <blp@gnu.org>
609
610         Simplify code.
611
612         * case.c (case_unshare): Make it check internally whether the
613         ref_cnt is greater than 1, so that the callers don't have to.
614         Update callers not to check.
615
616 Mon Jan 15 10:53:01 2007  Ben Pfaff  <blp@gnu.org>
617
618         Before, I was thinking that I might want to get rid of reference
619         counting at some point.  Now, I'm pretty sure that it's here to
620         stay.  Thus, because we have to store the value_cnt anyway for
621         reference-counted cases, we might as well expose it to users.
622
623         * case.c (case_get_value_cnt): New function.
624         (case_resize): Drop OLD_CNT argument.  Update all callers.  Only
625         resize case if its size actually changed.
626
627         * casefile.c (casefile_append_xfer): Use case_get_value_cnt
628         instead of peeking inside struct case directly.
629         (casefile_append): Ditto.
630
631 Mon Jan 15 10:50:22 2007  Ben Pfaff  <blp@gnu.org>
632
633         Get rid of the inlines for the case functions, which made the
634         header file hard to read.  (Also, in testing with "-O2 -DNDEBUG",
635         the inlines didn't speed up "make check" at all, which is not a
636         perfect benchmark but seems indicative.)
637         
638         * case.c: Remove #ifdef DEBUGGING...#endif around many function
639         definitions.  Remove some assertions on nonnull pointers that were
640         redundant with a pointer dereference soon after in the function.
641         Also:
642         (struct case_data): Move definition here from case.h.
643         (case_data): Ditto.
644         (case_num): Ditto.
645         (case_str): Ditto.
646         (case_data_wr): Ditto.
647         
648 Sun Jan 14 21:41:12 2007  Ben Pfaff  <blp@gnu.org>
649
650         * automake.mk: Add casedeque.h to sources.
651         
652         * casedeque.h: New file.
653
654         * procedure.c: (struct dataset) Change lag_count, lag_head,
655         lag_queue member into single struct casedeque member.  Update all
656         users to use the casedeque instead.
657         (lag_case) Removed.
658
659 Sun Jan 14 21:43:12 2007  Ben Pfaff  <blp@gnu.org>
660
661         * procedure.c: Simplify lagged cases interface.  Updated all
662         clients--well, the only client--to use the simplified interface.
663         (dataset_n_lag) Removed.
664         (dataset_set_n_lag) Removed.
665         (dataset_need_lag) New function.
666
667 Tue Jan  9 07:20:05 WST 2007 John Darrington <john@darrington.wattle.id.au>
668
669         * dictionary.c procedure.c: More changes to ensure that callbacks occur
670         whenever appropriate, but only when the dataset/dictionary is in a 
671         consistent state.
672
673 Sun Jan  7 08:33:04 WST 2007 John Darrington <john@darrington.wattle.id.au>
674
675         * dictionary.c dictionary.h : Added callbacks for change of filter and 
676         split variables.  Refactored some code to ensure that callbacks get
677         invoked when appropriate.
678
679         * procedure.c (proc_cancel_temporary_transformations): Make sure that 
680         replace_dict callback occurs when permanent_dict replaces the current
681         dictionary.
682
683 Wed Jan  3 11:02:11 WST 2007 John Darrington <john@darrington.wattle.id.au>
684
685         * dictionary.c dictionary.h : Added callback for when the weight 
686         variable of a dictionary changes.
687
688 Mon Jan  1 10:36:26 WST 2007 John Darrington <john@darrington.wattle.id.au>
689
690         * dictionary.c dictionary.h : Added replace_source and replace_dict
691         callbacks, and functions to deal with them.
692
693 Fri Dec 22 13:56:08 2006  Ben Pfaff  <blp@gnu.org>
694
695         Simplify missing value handling.
696
697         * missing-values.h (enum mv_class): New type.
698         (enum mv_type): Moved definition into missing-values.c and renamed
699         each MV_* to MVT_*, to distinguish them from the exposed mv_class
700         enums.  Updated all uses.
701         (struct missing_values): Changed type of `type' from `enum
702         mv_type' to `int' because the definition is no longer exposed.
703         
704         * missing-values.c (mv_is_value_missing): Add new enum mv_class
705         parameter.  Update all callers.
706         (mv_is_num_missing): Ditto.
707         (mv_is_str_missing): Ditto.
708         (mv_is_value_user_missing): Removed.  Changed callers to use
709         mv_is_value_missing.
710         (mv_is_num_user_missing): Removed.  Changed callers to use
711         mv_is_num_missing.
712         (mv_is_str_user_missing): Removed.  Changed callers to use
713         mv_is_str_missing.
714         (mv_is_value_system_missing): Removed.  Changed callers to use
715         mv_is_value_missing.
716         (mv_set_type): Removed.  Changed callers to use mv_clear.
717         (mv_clear): New function.
718         
719         * variable.c (var_is_value_missing): Add new enum mv_class
720         parameter.  Update all callers.
721         (var_is_num_missing): Ditto.
722         (var_is_str_missing): Ditto.
723         (var_is_value_user_missing): Removed.  Changed callers to use
724         var_is_value_missing.
725         (var_is_num_user_missing): Removed.  Changed callers to use
726         var_is_num_missing.
727         (var_is_str_user_missing): Removed.  Changed callers to use
728         var_is_str_missing.
729         (var_is_value_system_missing): Removed.  Changed callers to use
730         var_is_value_missing.
731         
732         * casefilter.c (struct casefilter): Use enum mv_class in place of
733         bool.
734         (casefilter_variable_missing): Adapt to new member.
735         (casefilter_create): Change signature to take enum mv_class,
736         update callers.
737
738 Fri Dec 22 20:08:38 WST 2006 John Darrington <john@darrington.wattle.id.au>
739
740         * casefile-factory.h fastfile-factory.c fastfile-factory.h: New files.
741
742         * case-sink.c case-sink.h procedure.c procedure.h 
743           storage-stream.c: Now uses the factory.
744         
745 Sat Dec 16 22:05:18 2006  Ben Pfaff  <blp@gnu.org>
746
747         Make it possible to pull cases from the active file with a
748         function call, instead of requiring indirection through a callback
749         function.
750
751         * case-source.h (struct case_source_class): Change ->read function
752         to return a single case, instead of calling a callback function
753         for each case.  Change ->destroy function to return an error
754         status.
755
756         * case-source.c (free_case_source): Pass along the value returned
757         by the case_source ->destroy function.
758
759         * procedure.c (struct write_case_data): Removed.
760         (struct dataset): Added some members to track procedure state.
761         (procedure): Optimize the trivial case at this level.
762         (internal_procedure): Re-implement in terms of proc_open,
763         proc_read, proc_close.
764         (proc_open) New function.
765         (proc_read) New function.
766         (proc_close) New function.
767         (write_case) Moved into proc_read.
768         (close_active_file) Moved closing of data source into proc_close.
769
770         * storage-source.c: Rewrote to conform with modified
771         case_source_class interface.
772
773         * transformations.c (trns_chain_execute): Added argument to allow
774         starting execution from an arbitrary transformation.  Updated
775         callers.
776
777         * transformations.h (enum TRNS_NEXT_CASE) Renamed TRNS_END_CASE.
778
779 Sat Dec 16 14:09:25 2006  Ben Pfaff  <blp@gnu.org>
780
781         * sys-file-reader.c (read_display_parameters): Don't assume that
782         MEASURE_* and ALIGN_* have the same values found in system files.
783
784         * sys-file-writer.c (write_variable_display_parameters): Ditto.
785
786         * variable.h: Change MEASURE_NOMINAL, MEASURE_ORDINAL,
787         MEASURE_SCALE to be 0-based instead of 1-based.  This also fixes
788         the value of n_MEASURES, which was off by 1 (at least from my
789         point of view).
790
791 Sat Dec 16 12:17:34 WST 2006 John Darrington <john@darrington.wattle.id.au>
792
793         * dictionary.c dictionary.h vardict.h variable.c: Added optional
794                 callbacks which are invoked when the dictionary or its 
795                 variables are changed.  
796         
797         * missing-values.c missing-values.h value-labels.c: Tidied up
798                 consistency checks, and made some of them return false 
799                 instead of assert-failing. 
800
801 Wed Dec 13 19:30:11 2006  Ben Pfaff  <blp@gnu.org>
802
803         * calendar.c (calendar_days_in_month): New function.
804
805 Mon Dec 11 07:53:39 2006  Ben Pfaff  <blp@gnu.org>
806
807         * value-labels.c (hash_int_val_lab): Only hash as many bytes as
808         the value label's width.
809
810 Sun Dec 10 14:21:29 2006  Ben Pfaff  <blp@gnu.org>
811
812         * sfm-private.h: Move contents into sys-file-writer.c, which is
813         the only remaining user.  Removed Borland C++-specific directives.
814         
815         * sys-file-reader.c: Clean up and rewrite entire file.  The
816         rewritten version is simpler and better abstracted, and should be
817         easier to maintain and extend.  It avoids using structures to read
818         file data, which is prone to padding variations among compilers.
819         It should also handle non-IEEE 754 system files, although I
820         haven't been able to find any.  It has been tested against many
821         .sav files obtained from the Web and found to produce the same
822         results as the earlier version of the code, or in some cases
823         improved results.  It is more tolerant of format variations found
824         in the wild.
825
826         * sys-file-reader.h (struct sfm_read_info): Removed `big_endian'
827         member, putting an enum integer_format in its place.  New member
828         `float_format'.  Changed `compressed' member to type bool.
829
830 Sun Dec 10 13:48:53 2006  Ben Pfaff  <blp@gnu.org>
831
832         * dictionary.c (dict_delete_consecutive_vars): New function.
833
834 Sat Dec  9 20:08:25 2006  Ben Pfaff  <blp@gnu.org>
835
836         * file-name.c (fn_search_path): Remove prefix arg that was unused
837         by any caller.  Updated all callers.
838
839 Sat Dec  9 20:04:22 2006  Ben Pfaff  <blp@gnu.org>
840
841         * format.c (fmt_dollar_template): Use user's decimal point
842         character.  Add assertion.
843
844 Sat Dec  9 20:02:25 2006  Ben Pfaff  <blp@gnu.org>
845
846         * format.c (fmt_dollar_template): New function, based on
847         dollar_format_template from var-type-dialog.c.
848
849 Sat Dec  9 18:05:59 2006  Ben Pfaff  <blp@gnu.org>
850
851         * data-out.c (output_scientific): Fix bad assumption that "buf" is
852         null-terminated.
853         
854 Sat Dec  9 17:23:23 2006  Ben Pfaff  <blp@gnu.org>
855
856         Finish converting struct variable to an opaque type.  In this
857         phase, we add remaining setter and getter functions, convert the
858         remaining PSPP code to use them, and do a bunch of cleanup.  The
859         resulting changes are pervasive but mostly trivial, and only the
860         notable changes are logged.
861         
862         * automake.mk (src_data_libdata_a_SOURCES): Add the new source
863         files.
864         
865         * case.c (case_data): Renamed case_data_idx.
866         (case_num): Renamed case_num_idx.
867         (case_str): Renamed case_str_idx.
868         (case_data_rw): Renamed case_data_rw_idx.
869
870         * case.h (case_data): New function with old name and an interface
871         that takes a variable instead of an index, which is easier to
872         use.  Updated all callers to use the new interface, or to use the
873         new *_idx function (see above).
874         (case_num): Ditto.
875         (case_str): Ditto.
876         (case_data_rw): Ditto.
877         
878         * category.c (cat_stored_values_destroy): Changed interface to
879         take a struct cat_vals * instead of a struct variable *.
880
881         * dictionary.c (dict_clone): Use new vector_clone function.     
882         (dict_clear) Use new var_destroy function.
883         (add_var) New function.
884         (dict_create_var) Rewrite in terms of dict_create_var_assert.
885         (dict_create_var_assert) Rewrite in terms of add_var.
886         (dict_clone_var) Rewrite in terms of dict_clone_var_assert.
887         (dict_clone_var_assert) Rewrite in terms of var_clone, add_var.
888         (dict_lookup_var) Use new var_create, var_destroy functions.
889         (dict_contains_var) Rewrite in terms of new vardict functionality.
890         (set_var_dict_index) New function.
891         (set_var_case_index) New function.
892         (reindex_vars) New function.
893         (dict_delete_var) Rewrite in terms of new vardict functionality.
894         (dict_reorder_var) Ditto.
895         (dict_reorder_vars) Ditto.
896         (rename_var) New function.
897         (dict_rename_var) Use rename_var.
898         (dict_rename_vars) Use pool to simplify code.  Use rename_var.
899         (dict_get_compacted_idx_to_fv) Rename
900         dict_get_compacted_dict_index_to_case_index, update callers.
901         (dict_create_vector) Use new vector_create function.
902         (dict_clear_vectors) Use new vector_destroy function.
903         (set_var_short_name_suffix) Move here from variable.c, renamed
904         from var_set_short_name_suffix, make static, update caller.
905
906         * sys-file-private.c: New file.  
907         (sfm_width_to_bytes) Moved here from variable.c, renamed from
908         width_to_bytes, update callers.
909
910         * sys-file-private.h: New file.  Later it will supplant
911         sfm-private.h; for now it supplements it.
912         (macro MIN_VERY_LONG_STRING) New macro.
913         (macro EFFECTIVE_LONG_STRING_LENGTH) New macro, from value.h.
914
915         * sys-file-reader.c: Use MIN_VERY_LONG_STRING - 1 where
916         MAX_LONG_STRING was used before.
917
918         * sys-file-writer.c: Ditto.
919
920         * value-labels.c: Change the paradigm here to be that a null
921         pointer is OK for a struct val_labs * in most cases; it just
922         represents an empty set of value labels.
923         (val_labs_copy) A copy of a null set is a null set.
924         (val_labs_count) A null set has 0 labels.
925         (val_labs_replace) Change return type to void.  Rewrite for
926         simplicity.
927         (val_labs_find) A null set does not contain the value.
928         (value_to_string) Moved to variable.c, renamed var_get_value_name,
929         transposed argument order, updated all callers.
930
931         * value.c: New file.
932         (value_dup) Moved here from variable.c.
933         (compare_values) Ditto.
934         (hash_value) Ditto.
935
936         * value.h: (macro MAX_SHORT_STRING) Rewrote for simplicity.
937         (macro MAX_LONG_STRING) Removed, because it was only interesting
938         for system files, not for general code.
939         (macro MAX_VERY_LONG_STRING) Ditto.
940         (macro EFFECTIVE_LONG_STRING_LENGTH) Moved to sys-file-private.h.
941         (macro MAX_ELEMS_PER_VALUE) Removed, as it was unused.
942
943         * vardict.h: New file, for an interface between variables and
944         their dictionaries.
945
946         * variable.c: A lot of functions were moved around, for better
947         organization.
948         (struct variable) Move definition here, from variable.h.
949         (var_type_adj) Removed--makes i18n hard.
950         (var_type_noun) Ditto.
951         (var_create) New function.
952         (var_clone) New function.
953         (var_destroy) New function.
954         (var_set_name) Assert that variable is not in a dictionary.
955         (compare_var_names) Rename compare_vars_by_name and fix a couple
956         of callers who thought the args were strings.
957         (hash_var_name) Rename hash_var_by_name.
958         (compare_var_ptr_names) Rename compare_var_ptrs_by_name.
959         (hash_var_ptr_name) Rename hash_var_ptr_by_name.
960         (var_is_very_long_string) Removed, because it was only interesting
961         to system file code.
962         (var_set_missing_values) Allow the argument to be the wrong width,
963         as long as we can resize it.  Simplify callers who were doing the
964         resizing themselves.
965         (var_get_value_labels) New function.
966         (var_has_value_labels) New function.
967         (var_set_value_labels) New function.
968         (alloc_value_labels) New function.
969         (var_add_value_label) New function.
970         (var_replace_value_label) New function.
971         (var_clear_value_labels) New function.
972         (var_lookup_value_label) New function.
973         (var_get_value_name) Moved here from variable.c, renamed from
974         var_get_value_name, transposed argument order, updated all
975         callers.
976         (var_to_string) Moved here, from variable-label.c.
977         (var_set_leave) New function.
978         (var_get_leave) New function.
979         (var_must_leave) New function.
980         (var_set_short_name_suffix) Moved to dictionary.c, renamed
981         set_var_short_name_suffix.
982         (var_get_dict_index) New function.
983         (var_get_case_index) New function.
984         (var_get_obs_vals) New function.
985         (var_set_obs_vals) New function.
986         (var_has_obs_vals) New function.
987         (var_get_vardict) New function.
988         (var_set_vardict) New function.
989         (var_has_vardict) New function.
990         (var_clear_vardict) New function.
991         (value_dup) Moved to value.c.
992         (compare_values) Ditto.
993         (hash_value) Ditto.
994
995         * variable.h: (enum NUMERIC) Rename VAR_NUMERIC, update all users.
996         (enum ALPHA) Rename VAR_STRING, update all users.
997
998         * vector.c: New file.
999         (struct vector) Moved here, from variable.h.
1000         (check_widths) New function.
1001         (vector_create) New function.
1002         (vector_clone) New function.
1003         (vector_destroy) New function.
1004         (vector_get_name) New function.
1005         (vector_get_var) New function.
1006         (vector_get_var_cnt) New function.
1007         (compare_vector_ptrs_by_name) New function.
1008
1009         * vector.h: New file.
1010
1011 Sun Dec 10 11:32:56 WST 2006 John Darrington <john@darrington.wattle.id.au>
1012
1013         * casefilter.c (casefilter_variable_missing): Avoided comparision of
1014         string variables to SYSMIS.  Thanks to Ben Pfaff for reporting this
1015         problem.
1016
1017 Sat Dec  9 07:18:03 WST 2006 John Darrington <john@darrington.wattle.id.au>
1018
1019         * value-labels.c (destroy_atoms): New function.
1020         * value-labels.c (atom_create): Call destroy_atoms in atexit handler.
1021
1022 Thu Dec  7 17:38:26 2006  Ben Pfaff  <blp@gnu.org>
1023
1024         Thanks to Jason Stover for pointing out this problem.
1025         
1026         * data-out.c (output_number): Use gsl_finite from GSL, which is
1027         portable, instead of isfinite, which is not.
1028         (power256) Ditto.
1029
1030 Thu Dec  7 15:22:38 WST 2006 John Darrington <john@darrington.wattle.id.au>
1031
1032         * variable.c variable.h (value_dup): New function.
1033
1034 Mon Dec  4 22:20:17 2006  Ben Pfaff  <blp@gnu.org>
1035
1036         Start converting struct variable to an opaque type.  In this
1037         phase, we add a bunch of setter and getter functions and convert
1038         most of the PSPP code to use them.  The resulting changes are
1039         pervasive but mostly trivial, and only the notable changes are
1040         logged.
1041         
1042         * format.c (fmt_equal): New function.
1043         
1044         * variable.c (var_type_is_valid): New function.
1045         (measure_is_valid) Moved here, from format.c.
1046         (alignment_is_valid) Moved here, from format.c.
1047         (var_get_name) New function.
1048         (var_set_name) New function.
1049         (width_to_type) New function.
1050         (var_get_type) New function.
1051         (var_get_width) New function.
1052         (var_set_width) New function.
1053         (var_is_numeric) New function.
1054         (var_is_alpha) New function.
1055         (var_is_short_string) New function.
1056         (var_is_long_string) New function.
1057         (var_is_very_long_string) New function.
1058         (var_get_missing_values) New function.
1059         (var_set_missing_values) New function.
1060         (var_clear_missing_values) New function.
1061         (var_has_missing_values) New function.
1062         (var_is_value_missing) New function.
1063         (var_is_num_missing) New function.
1064         (var_is_str_missing) New function.
1065         (var_is_value_user_missing) New function.
1066         (var_is_num_user_missing) New function.
1067         (var_is_str_user_missing) New function.
1068         (var_is_value_system_missing) New function.
1069         (var_get_print_format) New function.
1070         (var_set_print_format) New function.
1071         (var_get_write_format) New function.
1072         (var_set_write_format) New function.
1073         (var_set_both_formats) New function.
1074         (var_get_label) New function.
1075         (var_set_label) New function.
1076         (var_clear_label) New function.
1077         (var_has_label) New function.
1078         (var_get_measure) New function.
1079         (var_set_measure) New function.
1080         (var_get_display_width) New function.
1081         (var_set_display_width) New function.
1082         (var_get_alignment) New function.
1083         (var_set_alignment) New function.
1084         (var_get_value_cnt) New function.
1085         (var_get_leave) New function.
1086         (var_get_short_name) New function.
1087
1088         * variable.h: (struct variable) Removed "type" and "nv" members;
1089         they are now computed from "width" where needed.
1090
1091 Mon Dec  4 21:38:40 2006  Ben Pfaff  <blp@gnu.org>
1092
1093         * missing-values.c (mv_resize): Don't write beyond end of the
1094         allocated buffer when resizing a long string.
1095
1096 Sat Dec  2 16:28:32 2006  Ben Pfaff  <blp@gnu.org>
1097
1098         Clean up identifier code: don't require identifier enumerations to
1099         be in a particular order; make better use of string library;
1100         expose less of the internals.
1101                 
1102         * identifier.c: (lex_skip_identifier) Rename lex_id_get_length,
1103         change interface.  Updated all callers.
1104         (lex_id_match) Change interface to use struct substring, update
1105         all callers.
1106         (lex_id_match_len) Removed.  Update callers to use lex_id_match.
1107         (global array keywords[]) Make static, change form.  Update all
1108         users to use lex_id_name instead.
1109         (lex_is_keyword) New function.
1110         (lex_id_to_token) Change interface to use struct substring, update
1111         all callers.
1112         (lex_id_name) New function.
1113
1114         * identifier.h: (T_FIRST_KEYWORD) Removed.  Changed users to call
1115         lex_is_keyword instead.
1116         (T_LAST_KEYWORD) Removed.
1117         (T_N_KEYWORDS) Removed.
1118         
1119 Sat Nov 18 20:46:35 2006  Ben Pfaff  <blp@gnu.org>
1120
1121         * format.c: (fmt_date_template) Distinguish characters for which a
1122         space is output and any date delimiter is allowed on input, from
1123         those for which a space is output and only a space is allowed on
1124         input.  The former is represented by X, the latter by a space.
1125         Also, drop distinction between h and H, changing the former to the
1126         latter.
1127
1128         * data-in.c: Completely rewrite internals to conform to SPSS input
1129         formats as closely as possible.
1130         (data_in) Changed external interface by replacing the structure
1131         that was used as a single argument by a set of arguments.  Updated
1132         all callers.
1133         (data_in_finite_line) Removed.  Converted all callers to use plain
1134         data_in.
1135         (data_in_get_integer_format) New function.
1136         (data_in_set_integer_format) New function.
1137         (data_in_get_float_format) New function.
1138         (data_in_set_float_format) New function.
1139
1140         * data-in.h: (enums DI_IGNORE_ERROR, DI_IMPLIED_DECIMALS) Removed.
1141         (struct data_in) Removed.
1142
1143         * data-out.c: (output_date) Drop each component from the input as
1144         it is output, to allow us to drop the distinction between h (a
1145         count of hours) and H (the hour of day) template characters.
1146         Also, handle new X template character.
1147         (output_scientific) Follow more rational rule on when to drop
1148         fraction introduced between SPSS 13 and 15.  Updated test case to
1149         match new behavior.
1150
1151 Sat Nov 11 11:41:26 2006  Ben Pfaff  <blp@gnu.org>
1152
1153         Fix buffer overflow reported by John Darrington.
1154
1155         * data-out.c (output_bcd_integer): In case of SYSMIS, etc.,
1156         realize that DIGITS is a count of nibbles, not of bytes.
1157
1158 Sat Nov  4 15:59:56 2006  Ben Pfaff  <blp@gnu.org>
1159
1160         * calendar.c (calendar_offset_to_gregorian) Also return the
1161         year-of-day.  Change callers to new interface.
1162
1163         * data-out.c: Completely rewrite internals to conform to SPSS
1164         output formats as completely as possible.
1165         (data_out) Change interface to put input parameters before output
1166         parameters, for consistency with the style I now prefer.  Update
1167         all callers.
1168         (data_out_get_integer_format) New public function.
1169         (data_out_set_integer_format) New public function.
1170         (data_out_get_float_format) New public function.
1171         (data_out_set_float_format) New public function.
1172
1173         * data-out.h: New file.  Move prototype for data_out here, from
1174         format.h.
1175
1176         * format.c: (fmt_step_width) Use equality comparison instead of
1177         bitwise and, for clarity.
1178         (fmt_is_string) Ditto.
1179         (fmt_input_to_output) Fix categories that are translated to F
1180         format.
1181
1182 Sun Nov  5 08:29:34 WST 2006 John Darrington <john@darrington.wattle.id.au>
1183
1184         * casefilter.c casefilter.h (new files), casefile.c casefile.h 
1185         casefile-private.h: Added casefilter to assist commands with missing 
1186         values.
1187
1188 Sat Nov  4 11:47:09 2006  Ben Pfaff  <blp@gnu.org>
1189
1190         Implement SET ERRORS, SHOW ERRORS.  Fixes bug #17609.
1191         
1192         * settings.c: (route_errors_to_terminal) New variable.
1193         (route_errors_to_listing) New variable. 
1194         (get_error_routing_to_terminal) New function.
1195         (set_error_routing_to_terminal) New function.
1196         (get_error_routing_to_listing) New function.
1197         (set_error_routing_to_listing) New function.
1198
1199         * settings.h: (SET_ROUTE_* enums) Removed, because unused.
1200
1201 Tue Oct 31 19:58:27 2006  Ben Pfaff  <blp@gnu.org>
1202
1203         * format.c: Completely rewrite, to achieve better abstraction.
1204         Rewrite all references to formats in other files.
1205         
1206         * format.def: Rewrite and reorganize.
1207
1208         * settings.c: Move everything related to custom currency formats
1209         into format.[ch], changing them in form, so as to group related
1210         code and definitions better.  Changed all references to use the
1211         new functions.
1212         (static var decimal) Removed.
1213         (static var grouping) Removed.
1214         (static var cc) Removed.
1215         (get_decimal) Removed.
1216         (set_decimal) Removed.
1217         (get_grouping) Removed.
1218         (set_grouping) Removed.
1219         (get_cc) Removed.
1220         (set_cc) Removed.
1221
1222         * settings.h: (macro CC_CNT) Removed.
1223         (macro CC_WIDTH) Removed.
1224         (struct custom_currency) Removed.
1225
1226 Tue Oct 31 19:56:19 2006  Ben Pfaff  <blp@gnu.org>
1227
1228         * data-in.c (data_in): Use switch statement instead of table, to
1229         avoid dependence on the order of the FMT_* enums.
1230
1231 Tue Oct 31 19:35:36 2006  Ben Pfaff  <blp@gnu.org>
1232
1233         * data-out.c: (num_to_string) Removed, because it was dead code.
1234
1235 Tue Oct 31 18:09:24 2006  Ben Pfaff  <blp@gnu.org>
1236
1237         * data-in.c (parse_trailer): Fix error message.
1238
1239 Sat Oct 28 11:56:50 2006  Ben Pfaff  <blp@gnu.org>
1240
1241         * format.c (fmt_is_binary): New function.
1242
1243 Thu Oct 19 22:59:56 WST 2006 John Darrington <john@darrington.wattle.id.au>
1244
1245         * procedure.c procedure.h: Encapsulated the static data into a single
1246         struct.  
1247
1248 Sat Oct 14 16:56:44 2006  Ben Pfaff  <blp@gnu.org>
1249
1250         * casefile.c (casereader_read_xfer): Always initialize the case,
1251         even on an error condition.
1252
1253 Wed Sep 27 09:37:49 WST 2006 John Darrington <john@darrington.wattle.id.au>
1254
1255         * procedure.c (case_limit_trns_proc): Fixed buglet which rendered the 
1256         entire function useless.
1257
1258 Mon Sep 25 17:11:46 WST 2006 John Darrington <john@darrington.wattle.id.au>
1259
1260         * casefile-private.h casefile.c casefile.h fastfile.c: Created new
1261         casereader method casereader_clone.   
1262         
1263         * procedure.c pransformations.h: Introduced new type casenum_t
1264
1265 Thu Sep 21 07:00:30 2006  Ben Pfaff  <blp@gnu.org>
1266
1267         * variable.c: (width_to_bytes) Rephrase code for clarify.
1268
1269 Sun Jul 16 19:52:03 2006  Ben Pfaff  <blp@gnu.org>
1270
1271         * format.c: (fmt_type_from_string) New function.
1272         (fmt_to_string) Include decimals in output if the format has
1273         decimals, even if the format type does not.  This way, we can
1274         accurately reproduce incorrect formats in user output.
1275         (check_common_specifier) Make the check for a bad format type an
1276         assertion, so we get bug reports if they show up.  Fix message.
1277         Check for decimal places with a format type that doesn't allow
1278         them.
1279         (check_input_specifier) Remove check for FMT_X, which has been
1280         deleted.
1281         (check_output_specifier) Ditto. 
1282
1283         * format.def: Remove FMT_T, FMT_X, FMT_DESCEND, FMT_NEWREC.
1284
1285         * format.h: (macro FMT_TYPE_LEN_MAX) New macro.
1286         (struct fmt_desc) Use FMT_TYPE_LEN_MAX in definition.
1287         (enum fmt_parse_flags) Removed.
1288
1289 Mon Jul 17 18:26:21 WST 2006 John Darrington <john@darrington.wattle.id.au>
1290
1291         * casefile.c casefile.h: Converted to  an abstract base class.
1292         * casefile-private.h fastfile.c fastfile.h: New files.
1293         * automake.mk procedure.c scratch-writer.c storage-stream.c
1294
1295 Wed Jul 12 21:02:26 2006  Ben Pfaff  <blp@gnu.org>
1296
1297         * procedure.c (internal_procedure): Create sink_case with only as
1298         many values as the compacted dictionary.
1299
1300 Wed Jul 12 21:01:00 2006  Ben Pfaff  <blp@gnu.org>
1301
1302         Remove "debugging" code that caused plenty of false positives and
1303         no true positives.
1304         
1305         * case.h (struct ccase): [DEBUGGING] Remove `this' member.
1306
1307         * case.c: Remove all references to `this' member.
1308
1309 Thu Jul  6 19:09:53 2006  Ben Pfaff  <blp@gnu.org>
1310
1311         Fix link error noted by Jason Stover.
1312         
1313         * storage-stream.c: Include <assert.h>.
1314
1315 Tue Jul  4 08:47:35 2006  Ben Pfaff  <blp@gnu.org>
1316
1317         Fix bug #15766 (/KEEP subcommand on SAVE doesn't fully support
1318         ALL) and additional underlying system file issues.
1319
1320         Thanks to John Darrington for review.
1321
1322         First problem: var_hash points to variables not owned by the
1323         sys-file-reader, which the caller may free or modify.  Use an
1324         array of sfm_vars instead, as done earlier (e.g. CVS version
1325         1.12).
1326         
1327         * sys-file-reader.c (struct sfm_reader): Remove var_hash, svars
1328         members and remove all code that references it.  Add vars, var_cnt
1329         members.  Remove fix_specials member, which was unused.
1330         (struct sfm_var) Remove name member, which was unused.
1331         (sfm_close_reader) Free vars member instead of var_hash.
1332         (compare_var_shortnames) Removed.
1333         (hash_var_shortname) Removed.
1334         (sfm_open_reader) Fill out vars array.
1335         (compare_var_index) Removed.
1336         (sfm_read_case) Use vars instead of var_hash.
1337         
1338         Second problem: we're confused about when we actually have very
1339         long strings, causing us to choose incorrectly between slow path
1340         and fast path in sfm_read_case.
1341
1342         * sys-file-reader.c: (sfm_open_reader) Only mark has_vls if we
1343         have very long strings, not when we have long variable names,
1344         which is an unrelated feature.
1345
1346 Tue Jun 27 12:06:49 2006  Ben Pfaff  <blp@gnu.org>
1347
1348         * variable.h: Move var_set and variable parsing declarations to
1349         new header, src/language/lexer/variable-parser.h.  Modified lots
1350         of files to include the new header.
1351
1352 Sun Jun 25 22:39:32 2006  Ben Pfaff  <blp@gnu.org>
1353
1354         * value-labels.c (value_to_string): When there's no value label,
1355         format the variable according to its print format, instead of
1356         always effectively using A or F format.
1357
1358 Mon Jun 19 18:05:42 WST 2006 John Darrington <john@darrington.wattle.id.au>
1359
1360         * casefile.c (casefile_get_random_reader): Nasty hack to get around 
1361         the mode assertion.
1362
1363         * format.c: Removed tortological assertion.
1364
1365 Fri Jun  9 12:20:09 2006  Ben Pfaff  <blp@gnu.org>
1366
1367         Reform string library.
1368         
1369         * file-name.c (fn_interp_vars): Change interface to take a
1370         substring as input.  Updated all users.
1371         
1372 Fri Jun  9 12:11:24 2006  Ben Pfaff  <blp@gnu.org>
1373
1374         * format.c (measure_is_valid): Really return false when m >=
1375         n_MEASURES.
1376
1377 Tue Jun  6 18:46:26 2006  Ben Pfaff  <blp@gnu.org>
1378
1379         Implement random access to casefiles, for use in GUI.
1380         
1381         * casefile.c: (struct casereader) Add `random', `file_ofs',
1382         `buffer_ofs' members.
1383         (casefile_get_random_reader) New function.
1384         (read_open_file) Break part into new function
1385         seek_and_fill_buffer().
1386         (fill_buffer) Update buffer_ofs, file_ofs.
1387         (casereader_seek) New function.
1388
1389 Tue May 30 19:52:33 WST 2006 John Darrington <john@darrington.wattle.id.au>
1390
1391         * settings.c: Added call to i18n{done, init}.
1392
1393 Tue May  9 21:09:17 2006  Ben Pfaff  <blp@gnu.org>
1394
1395         * procedure.h: Add WARN_UNUSED_RESULT to procedure function
1396         prototypes.
1397
1398 Tue May  9 21:08:05 2006  Ben Pfaff  <blp@gnu.org>
1399
1400         * casefile.c: Convert many uses of `int' to `bool'.
1401
1402 Sat May  6 22:49:43 2006  Ben Pfaff  <blp@gnu.org>
1403
1404         * transformations.c (trns_chain_destroy): Destroy chain's trns
1405         member, to fix memory leak.
1406
1407 Sat May  6 22:48:30 2006  Ben Pfaff  <blp@gnu.org>
1408
1409         * storage-stream.c (storage_source_decapsulate): Destroy case
1410         source to fix memory leak.
1411
1412 Sat May  6 22:46:47 2006  Ben Pfaff  <blp@gnu.org>
1413
1414         * scratch-reader.c (scratch_reader_read_case): Copy into existing
1415         case passed as argument instead of initializing the argument as a
1416         case.  Fixes memory leak that showed up in
1417         tests/command/aggregate.sh with scratch files.
1418
1419 Sat May  6 22:45:55 2006  Ben Pfaff  <blp@gnu.org>
1420
1421         * procedure.c (proc_done): Destroy default_dict, to fix memory
1422         leak.
1423
1424 Sat May  6 22:44:44 2006  Ben Pfaff  <blp@gnu.org>
1425
1426         Simplify procedure_with_splits().
1427         
1428         * procedure.c (struct split_aux_data): Removed case_count member.
1429         (procedure_with_splits) Don't initialize case_count.
1430         (split_procedure_case_func) Check whether prev_case is null
1431         instead of case_count.
1432         (split_procedure_end_func) Ditto.
1433
1434 Sat May  6 22:42:23 2006  Ben Pfaff  <blp@gnu.org>
1435
1436         * case.c (case_move): Do nothing if dst and src are the same
1437         object.
1438         (case_try_create) Merge two similar cases.
1439         (case_copy) Unshare only if data must be actually copied.
1440
1441 Sun May  7 10:04:06 WST 2006 John Darrington <john@darrington.wattle.id.au>
1442
1443         * data-in.c data-out.c dictionary.c sys-file-reader.c
1444         sys-file-writer.c variable.c variable.h:  Reworked very long string
1445         support for better encapsulation.
1446
1447 Sat May  6 19:02:00 2006  Ben Pfaff  <blp@gnu.org>
1448
1449         * value-labels.c (val_labs_can_set_width): New function.
1450         (val_labs_set_width) Clear labels if increasing width to long
1451         string.
1452         (val_labs_destroy) Remove unneeded test for null.
1453         
1454 Sat May  6 16:14:08 2006  Ben Pfaff  <blp@gnu.org>
1455
1456         * value-labels.h: Remove unneeded dependency on variable.h.
1457
1458 Sat May  6 15:58:36 2006  Ben Pfaff  <blp@gnu.org>
1459
1460         Get rid of `char *c' member in union value, for cleanliness.
1461         
1462         * value.h: (union value) Remove `c' member.
1463
1464 Sat May  6 15:36:59 2006  Ben Pfaff  <blp@gnu.org>
1465
1466         Make dictionary compacting functions a little more general.
1467         
1468         * sys-file-writer.c (sfm_open_writer): Use
1469         dict_compacting_would_change().
1470         (does_dict_need_translation) Removed.
1471
1472 Sat May  6 15:35:42 2006  Ben Pfaff  <blp@gnu.org>
1473
1474         Make dictionary compacting functions a little more general.
1475         
1476         * dictionary.c (dict_needs_compaction): Rename
1477         dict_compacting_would_shrink().  Update all callers.
1478         (dict_compacting_would_change) New function.
1479         
1480 Sat May  6 14:25:49 2006  Ben Pfaff  <blp@gnu.org>
1481
1482         * sys-file-writer.c: (does_dict_need_translation) Fix bug:
1483         inverted return value (!).
1484
1485 Sat May  6 13:37:52 2006  Ben Pfaff  <blp@gnu.org>
1486
1487         Continue reforming procedure execution.  
1488
1489         * procedure.c: Search and replace "vfm" by "proc".  Notably:
1490         (static var vfm_source) Rename proc_source.  Update all
1491         references.
1492         (static var vfm_sink) Rename proc_sink.  Update all references.
1493         
1494 Sat May  6 12:38:55 2006  Ben Pfaff  <blp@gnu.org>
1495
1496         Continue reforming procedure execution.  In this phase, remove
1497         PROCESS IF, which was deprecated anyway and can be easily
1498         simulated with TEMPORARY followed by SELECT IF.
1499
1500         * procedure.c: (open_active_file) Don't call
1501         add_process_if_trns().
1502         (discard_variables) Get rid of redundant call to
1503         proc_cancel_all_transformations().
1504         (add_process_if_trns) Removed.
1505         (process_if_trns_proc) Removed.
1506         (process_if_trns_free) Removed.
1507
1508 Sat May  6 10:58:05 2006  Ben Pfaff  <blp@gnu.org>
1509
1510         Continue reforming procedure execution.  In this phase, add
1511         `const' to the case passed to procedure()'s callback.
1512
1513         Updated all users of procedure() as well.
1514         
1515         * procedure.c: (struct write_case_data) Add "const" to ccase
1516         parameter for case_func member.
1517         (procedure) Add "const" to ccase parameter for proc_func
1518         parameter.
1519         (multipass_case_func) Make ccase parameter const.
1520         (internal_procedure) Add "const" to ccase parameter for case_func
1521         parameter.
1522         (split_procedure_case_func) Make ccase parameter const.
1523         (multipass_split_case_func) Make ccase parameter const.
1524         
1525 Sat May  6 10:30:33 2006  Ben Pfaff  <blp@gnu.org>
1526
1527         Continue reforming procedure execution.  In this phase, get rid of
1528         the output code for SPLIT FILE groups in procedure.c, which really
1529         shouldn't be doing any output.  Move it into the individual
1530         procedures instead.  This also adds some flexibility.
1531
1532         Updated many users of procedure_with_splits() and
1533         multipass_procedure_with_splits() to call
1534         output_split_file_values() and to deal with increased use of
1535         const.
1536
1537         * procedure.c: (struct split_aux_data) Add "const struct ccase *"
1538         parameter to begin_func member.
1539         (procedure_with_splits) Add "const struct ccase *" parameter to
1540         begin_func parameter.  Make ccase parameter const in proc_func
1541         parameter.
1542         (split_procedure_case_func) Don't dump split file group.  Pass
1543         case to begin_func.
1544         (dump_splits) Moved to language/dictionary/split-file.c as
1545         output_split_file_values().
1546         (struct multipass_split_aux_data) Add "const struct ccase *"
1547         parameter to split_func member.
1548         (multipass_procedure_with_splits) Add "const struct ccase *"
1549         parameter to split_func parameter.
1550         (multipass_split_case_func) Save new SPLIT FILE case before
1551         outputting case.
1552         (multipass_split_output) Pass saved SPLIT FILE case to split_func.
1553         
1554 Fri May  5 22:48:50 2006  Ben Pfaff  <blp@gnu.org>
1555
1556         Continue reforming procedure execution.  Change
1557         internal_procedure() so that it calls open_active_file() and
1558         close_active_file(), which isolates most of the actual procedure
1559         functionality.
1560
1561         * procedure.c: (struct write_case_data) Rename `proc_func' member
1562         to `case_func' and update all references.
1563         (procedure) Rewrite as one-line wrapper around
1564         internal_procedure().
1565         (struct multipass_aux_data) New.
1566         (multipass_callback) Renamed multipass_case_func().  Use struct
1567         multipass_aux_data as auxiliary data.
1568         (multipass_end_func) New function.
1569         (multipass_procedure) Rewrite as wrapper for internal_procedure()
1570         that uses multipass_case_func, multipass_end_func.
1571         (internal_procedure) Add `end_func' argument.  Move optimization
1572         of trivial case in here.  Move call to open_active_file() and
1573         close_active_file() in here.  Now assert that vfm_source is
1574         non-null.
1575         (procedure_with_splits_callback) Rename
1576         split_procedure_case_func().
1577         (split_procedure_end_func) New function.
1578         (multipass_split_callback) Rename multipass_split_case_func.
1579         (multipass_split_end_func) New function.
1580         (discard_variables) No need to test for nonnull vfm_source.
1581
1582 Fri May  5 21:34:02 2006  Ben Pfaff  <blp@gnu.org>
1583
1584         Continue reforming procedure execution.  Get rid of unused member.
1585
1586         * procedure.c: (struct write_case_data) Remove `cases_analyzed'
1587         member.
1588         (write_case) Don't increment cases_analyzed.
1589
1590 Thu May  4 21:50:11 2006  Ben Pfaff  <blp@gnu.org>
1591
1592         Continue reforming procedure execution.  In this phase, move
1593         procedure.c and procedure.h from src to src/data.  Update
1594         makefiles and #includes accordingly.
1595
1596         * procedure.c: Moved here from src/.
1597
1598         * procedure.h: Moved here from src/.
1599
1600 Wed May  3 22:42:12 2006  Ben Pfaff  <blp@gnu.org>
1601
1602         Continue reforming procedure execution.  In this phase, get rid of
1603         many global variables, consolidating procedure execution in
1604         procedure.c.  Encapsulate transformations in new "struct
1605         trns_chain".  Also, change implementation of N OF CASES, FILTER,
1606         and PROCESS IF from special cases to transformations.
1607          
1608         * automake.mk: (src_data_libdata_a_SOURCES) Add transformations.c,
1609         transformations.h.
1610
1611         * dictionary.c: (global variable default_dict) Move to
1612         src/procedure.c.
1613
1614         * variable.h: (TRNS_*) Move to transformations.h.
1615         (struct transformation) Move to transformations.c.
1616
1617 Thu May  4 13:47:06 WST 2006 John Darrington <john@darrington.wattle.id.au>
1618
1619         * sys-file-reader.c: Fixed invalid read problems.
1620
1621 Tue May  2 15:57:10 2006  Ben Pfaff  <blp@gnu.org>
1622
1623         * storage-stream.c: Add missing function comments.
1624
1625 Tue May  2 15:50:21 2006  Ben Pfaff  <blp@gnu.org>
1626
1627         Continue reforming procedure execution.  In this phase, add some
1628         new, needed functionality to storage-stream.
1629
1630         * storage-stream.c: (storage_source_decapsulate) New function.
1631
1632 Tue May  2 15:43:36 2006  Ben Pfaff  <blp@gnu.org>
1633
1634         * variable.c (width_to_bytes): Declarations must precede
1635         statements for C90 compliance.
1636
1637 Tue May  2 10:42:05 WST 2006 John Darrington <john@darrington.wattle.id.au>
1638
1639         * data-out.c, data-in.c, variable.c, variable.h: New functions 
1640         copy_mangle and copy_demangle for reading/writing cases; emulates the 
1641         way SPSS deals with strings > 255 bytes.
1642
1643         * sys-file-reader.c sys-file-writer.c: Added support for Record 7, 
1644         subtype 14 needed for strings longer than 255 bytes.
1645
1646         * dictionary.c, format.def, value.c : Updated to use MAX_STRING 
1647         instead of literal values. Also fixed some constness issues.
1648
1649         * format.h: Constness
1650
1651         * sfm-private.h: Renamed the case_size identifier, since I discovered 
1652         that SPSS's respect for this variable is very nominal.
1653
1654 Mon May  1 15:45:42 2006  Ben Pfaff  <blp@gnu.org>
1655
1656         Change case limit type from int to size_t.
1657
1658         * dictionary.c: (struct dictionary) Change type of case_limit
1659         member.
1660         (dict_get_case_limit) Change return type.
1661         (dict_set_case_limit) Change parameter type.
1662
1663 Wed Apr 26 20:01:19 2006  Ben Pfaff  <blp@gnu.org>
1664
1665         * variable.h: (struct variable) Rename `reinit' member as `leave'
1666         and invert sense.  Fix up all references.
1667
1668 Wed Apr 26 19:39:28 2006  Ben Pfaff  <blp@gnu.org>
1669
1670         Continue reforming procedure execution.  In this phase, break
1671         procedure.c into multiple files.
1672         
1673         * automake.mk: (src_data_libdata_a_SOURCES) Add all the new files.
1674
1675         * case-sink.c: New file.
1676
1677         * case-sink.h: New file.
1678         
1679         * case-source.c: New file.
1680
1681         * case-source.h: New file.
1682         
1683         * storage-stream.c: New file.
1684
1685         * storage-stream.h: New file.
1686
1687 Wed Apr 26 14:55:19 2006  Ben Pfaff  <blp@gnu.org>
1688
1689         * variable.h: (struct variable) Remove `init' member and all
1690         references to it from other files.  It was initialized in several
1691         places, but nothing really ever used it for anything worthwhile.
1692         Thanks to Jason Stover for pointing out how confusing this
1693         member is.
1694
1695 Sun Apr 23 22:04:45 2006  Ben Pfaff  <blp@gnu.org>
1696
1697         Continue reforming error message support.  In this phase, get rid
1698         of message "titles" and put the message text in `struct error'.
1699         Now `struct error' encapsulates a message more properly.
1700         
1701         * casefile.c: (io_error) Use err_msg() instead of err_vmsg().
1702         Format message ourselves.
1703
1704         * data-in.c: (vdls_error) Ditto.
1705
1706         * por-file-reader.c: (error) Ditto.
1707
1708         * sys-file-reader.c: (corrupt_msg) Ditto.
1709
1710 Sun Apr 16 18:49:51 2006  Ben Pfaff  <blp@gnu.org>
1711
1712         GNU standards require "file name" instead of "filename" in
1713         documentation.  It's nice for our code to follow the convention
1714         too.
1715         
1716         * casefile.c: (struct casefile) Rename `filename' member to
1717         `file_name'.  Updated all references.
1718
1719         * file-name.c: [!unix] (struct file_identity) Rename
1720         normalized_filename member to normalized_file_name.  Updated all
1721         references.
1722
1723 Sun Apr 16 18:35:33 2006  Ben Pfaff  <blp@gnu.org>
1724
1725         We don't really support anything but Unix-like environments well,
1726         so we might as well de-obfuscate by writing directory and path
1727         separators explicitly.
1728
1729         * file-name.h: (macro DIR_SEPARATOR) Removed.  Changed all usages
1730         to just '/'.
1731         (macro PATH_SEPARATOR) Removed.  Changed all usages to just ':'.
1732         (macro DIR_SEPARATOR_STRING) Removed.  Changed all usages to just
1733         "/".
1734         (macro PATH_SEPARATOR_STRING) Removed.  Changed all usages to just
1735         ":"
1736
1737 Sun Apr 16 18:28:35 2006  Ben Pfaff  <blp@gnu.org>
1738
1739         GNU standards require "file name" instead of "filename" in
1740         documentation.  It's nice for our code to follow the convention
1741         too.
1742         
1743         * filename.c: Rename to file-name.c.
1744
1745         * filename.h: Rename to file-name.h.  Update all inclusions.
1746         Update header guards.
1747
1748         * automake.mk: Update file names.
1749
1750 Sun Apr 16 16:42:47 2006  Ben Pfaff  <blp@gnu.org>
1751
1752         * filename.c: (fn_dirname) Renamed fn_dir_name(), all references
1753         updated.
1754         (fn_basename) Removed (dead code).
1755         (fn_absolute_p) Renamed fn_is_absolute(), all references updated.
1756         (fn_special_p) Renamed fn_is_special(), all references updated.
1757         (fn_exists_p) Renamed fn_exists(), all references updated.
1758
1759 Sun Apr 16 16:33:58 2006  Ben Pfaff  <blp@gnu.org>
1760
1761         * filename.c: (fn_tilde_expand) Rewrite for cleaner code.  
1762         Also, now it only tilde-expands file names, not paths.
1763         (fn_search_path) Tilde-expand one directory at a time.
1764
1765 Sun Apr 16 16:28:06 2006  Ben Pfaff  <blp@gnu.org>
1766
1767         * filename.c: (fn_search_path) rewrite for cleaner code.  Also,
1768         get rid of non-Unixlike version of the code, which has probably
1769         never been tested.
1770         (fn_prepend_dir) Removed (dead code).
1771
1772         * filename.h: (macro DIR_SEPARATOR_STRING) New.
1773         (macro PATH_SEPARATOR_STRING) New.
1774 Sun Apr 16 16:05:28 2006  Ben Pfaff  <blp@gnu.org>
1775
1776         Continue reforming error message support.  In this phase, we get
1777         rid of VM() and the other msg() support for "verbosity", replacing
1778         it by a new function verbose_msg().
1779
1780         * filename.c: (fn_search_path) Use verbose_msg() instead of
1781         msg(VM(), ...).  
1782
1783 Sat Apr 15 19:53:19 2006  Ben Pfaff  <blp@gnu.org>
1784
1785         * sfm-private.h: Get rid of #defines after #error, which makes no
1786         sense.
1787
1788 Sat Apr 15 19:48:57 2006  Ben Pfaff  <blp@gnu.org>
1789
1790         Get rid of our own int32 type in favor of the standard int32_t
1791         type.
1792         
1793         * sfm-private.h: (int32 macro) Don't define this anymore.  Do
1794         include <stdint.h>.
1795
1796         * sys-file-reader.c: Use int32_t instead of int32 throughout.
1797         
1798         * sys-file-writer.c: Use int32_t instead of int32 throughout.
1799
1800 Sat Apr 15 19:36:47 2006  Ben Pfaff  <blp@gnu.org>
1801
1802         Remove ill-considered file routines that are no longer used.
1803         
1804         * filename.c: (fn_open_ext) Removed.
1805         (fn_close_ext) Removed.
1806
1807         * filename.h: (struct file_ext) Removed.
1808
1809 Mon Apr  3 13:22:39 2006  Ben Pfaff  <blp@gnu.org>
1810
1811         * variable.c (var_is_valid_name): Move declarations before code
1812         for C90 compliance.
1813
1814 Tue Apr  4 15:28:40 WST 2006 John Darrington <john@darrington.wattle.id.au>
1815
1816         * filename.ch (fn_interp_vars): Fixed small buglet.
1817
1818 Tue Mar 28 13:47:16 WST 2006 John Darrington <john@darrington.wattle.id.au>
1819         
1820         * filename.[ch] (fn_interp_vars): Changed the signature and semantics
1821         so as to modify the string inline.   Thus makeing it easier to
1822         destroy the results when no longer needed.
1823         
1824 2006-03-25  Jason Stover  <jhs@math.gcsu.edu>
1825
1826         * category.c (cat_stored_values_destroy): Fixed memory leak.
1827
1828 Fri Mar 24 18:15:41 2006  Ben Pfaff  <blp@gnu.org>
1829
1830         Add some missing frees.  Thanks to John Darrington for reporting
1831         these.
1832
1833         * any-writer.c (any_writer_close): Free writer.
1834
1835         * any-reader.c (any_reader_close): Free reader.
1836
1837 Mon Mar 20 16:33:53 2006  Ben Pfaff  <blp@gnu.org>
1838
1839         * por-file-reader.c: (error) Mark as NO_RETURN.
1840
1841 Sat Mar 11 15:06:07 WST 2006 John Darrington <john@darrington.wattle.id.au>
1842
1843         * settings.c: Changed default value of scompress to true.
1844
1845 Sat Mar  4 13:22:51 2006  Ben Pfaff  <blp@gnu.org>
1846
1847         * sfm-private.h: Include variable.h, to get SHORT_NAME_LEN.
1848
1849         * value.h: Remove check on MAX_SHORT_STRING, which I don't think
1850         really applies.
1851
1852         * variable.h: Move definition of SHORT_NAME_LEN, LONG_NAME_LEN
1853         here from pref.h.orig.
1854
1855 Sat Mar  4 12:50:48 WST 2006 John Darrington <john@darrington.wattle.id.au>
1856
1857         * sys-file-reader.c: Fixed bug reading compressed files.
1858
1859 Thu Mar  2 08:40:33 WST 2006 John Darrington <john@darrington.wattle.id.au>
1860
1861         * Numerous renames.  See src/ChangeLog for details.
1862         
1863         * Moved files from src directory