c34816a21f01cc3f9d9e188f926a7c379b939a5b
[pspp-builds.git] / src / data / ChangeLog
1 Sat May  6 19:02:00 2006  Ben Pfaff  <blp@gnu.org>
2
3         * value-labels.c (val_labs_can_set_width): New function.
4         (val_labs_set_width) Clear labels if increasing width to long
5         string.
6         (val_labs_destroy) Remove unneeded test for null.
7         
8 Sat May  6 16:14:08 2006  Ben Pfaff  <blp@gnu.org>
9
10         * value-labels.h: Remove unneeded dependency on variable.h.
11
12 Sat May  6 15:58:36 2006  Ben Pfaff  <blp@gnu.org>
13
14         Get rid of `char *c' member in union value, for cleanliness.
15         
16         * value.h: (union value) Remove `c' member.
17
18 Sat May  6 15:36:59 2006  Ben Pfaff  <blp@gnu.org>
19
20         Make dictionary compacting functions a little more general.
21         
22         * sys-file-writer.c (sfm_open_writer): Use
23         dict_compacting_would_change().
24         (does_dict_need_translation) Removed.
25
26 Sat May  6 15:35:42 2006  Ben Pfaff  <blp@gnu.org>
27
28         Make dictionary compacting functions a little more general.
29         
30         * dictionary.c (dict_needs_compaction): Rename
31         dict_compacting_would_shrink().  Update all callers.
32         (dict_compacting_would_change) New function.
33         
34 Sat May  6 14:25:49 2006  Ben Pfaff  <blp@gnu.org>
35
36         * sys-file-writer.c: (does_dict_need_translation) Fix bug:
37         inverted return value (!).
38
39 Sat May  6 13:37:52 2006  Ben Pfaff  <blp@gnu.org>
40
41         Continue reforming procedure execution.  
42
43         * procedure.c: Search and replace "vfm" by "proc".  Notably:
44         (static var vfm_source) Rename proc_source.  Update all
45         references.
46         (static var vfm_sink) Rename proc_sink.  Update all references.
47         
48 Sat May  6 12:38:55 2006  Ben Pfaff  <blp@gnu.org>
49
50         Continue reforming procedure execution.  In this phase, remove
51         PROCESS IF, which was deprecated anyway and can be easily
52         simulated with TEMPORARY followed by SELECT IF.
53
54         * procedure.c: (open_active_file) Don't call
55         add_process_if_trns().
56         (discard_variables) Get rid of redundant call to
57         proc_cancel_all_transformations().
58         (add_process_if_trns) Removed.
59         (process_if_trns_proc) Removed.
60         (process_if_trns_free) Removed.
61
62 Sat May  6 10:58:05 2006  Ben Pfaff  <blp@gnu.org>
63
64         Continue reforming procedure execution.  In this phase, add
65         `const' to the case passed to procedure()'s callback.
66
67         Updated all users of procedure() as well.
68         
69         * procedure.c: (struct write_case_data) Add "const" to ccase
70         parameter for case_func member.
71         (procedure) Add "const" to ccase parameter for proc_func
72         parameter.
73         (multipass_case_func) Make ccase parameter const.
74         (internal_procedure) Add "const" to ccase parameter for case_func
75         parameter.
76         (split_procedure_case_func) Make ccase parameter const.
77         (multipass_split_case_func) Make ccase parameter const.
78         
79 Sat May  6 10:30:33 2006  Ben Pfaff  <blp@gnu.org>
80
81         Continue reforming procedure execution.  In this phase, get rid of
82         the output code for SPLIT FILE groups in procedure.c, which really
83         shouldn't be doing any output.  Move it into the individual
84         procedures instead.  This also adds some flexibility.
85
86         Updated many users of procedure_with_splits() and
87         multipass_procedure_with_splits() to call
88         output_split_file_values() and to deal with increased use of
89         const.
90
91         * procedure.c: (struct split_aux_data) Add "const struct ccase *"
92         parameter to begin_func member.
93         (procedure_with_splits) Add "const struct ccase *" parameter to
94         begin_func parameter.  Make ccase parameter const in proc_func
95         parameter.
96         (split_procedure_case_func) Don't dump split file group.  Pass
97         case to begin_func.
98         (dump_splits) Moved to language/dictionary/split-file.c as
99         output_split_file_values().
100         (struct multipass_split_aux_data) Add "const struct ccase *"
101         parameter to split_func member.
102         (multipass_procedure_with_splits) Add "const struct ccase *"
103         parameter to split_func parameter.
104         (multipass_split_case_func) Save new SPLIT FILE case before
105         outputting case.
106         (multipass_split_output) Pass saved SPLIT FILE case to split_func.
107         
108 Fri May  5 22:48:50 2006  Ben Pfaff  <blp@gnu.org>
109
110         Continue reforming procedure execution.  Change
111         internal_procedure() so that it calls open_active_file() and
112         close_active_file(), which isolates most of the actual procedure
113         functionality.
114
115         * procedure.c: (struct write_case_data) Rename `proc_func' member
116         to `case_func' and update all references.
117         (procedure) Rewrite as one-line wrapper around
118         internal_procedure().
119         (struct multipass_aux_data) New.
120         (multipass_callback) Renamed multipass_case_func().  Use struct
121         multipass_aux_data as auxiliary data.
122         (multipass_end_func) New function.
123         (multipass_procedure) Rewrite as wrapper for internal_procedure()
124         that uses multipass_case_func, multipass_end_func.
125         (internal_procedure) Add `end_func' argument.  Move optimization
126         of trivial case in here.  Move call to open_active_file() and
127         close_active_file() in here.  Now assert that vfm_source is
128         non-null.
129         (procedure_with_splits_callback) Rename
130         split_procedure_case_func().
131         (split_procedure_end_func) New function.
132         (multipass_split_callback) Rename multipass_split_case_func.
133         (multipass_split_end_func) New function.
134         (discard_variables) No need to test for nonnull vfm_source.
135
136 Fri May  5 21:34:02 2006  Ben Pfaff  <blp@gnu.org>
137
138         Continue reforming procedure execution.  Get rid of unused member.
139
140         * procedure.c: (struct write_case_data) Remove `cases_analyzed'
141         member.
142         (write_case) Don't increment cases_analyzed.
143
144 Thu May  4 21:50:11 2006  Ben Pfaff  <blp@gnu.org>
145
146         Continue reforming procedure execution.  In this phase, move
147         procedure.c and procedure.h from src to src/data.  Update
148         makefiles and #includes accordingly.
149
150         * procedure.c: Moved here from src/.
151
152         * procedure.h: Moved here from src/.
153
154 Wed May  3 22:42:12 2006  Ben Pfaff  <blp@gnu.org>
155
156         Continue reforming procedure execution.  In this phase, get rid of
157         many global variables, consolidating procedure execution in
158         procedure.c.  Encapsulate transformations in new "struct
159         trns_chain".  Also, change implementation of N OF CASES, FILTER,
160         and PROCESS IF from special cases to transformations.
161          
162         * automake.mk: (src_data_libdata_a_SOURCES) Add transformations.c,
163         transformations.h.
164
165         * dictionary.c: (global variable default_dict) Move to
166         src/procedure.c.
167
168         * variable.h: (TRNS_*) Move to transformations.h.
169         (struct transformation) Move to transformations.c.
170
171 Thu May  4 13:47:06 WST 2006 John Darrington <john@darrington.wattle.id.au>
172
173         * sys-file-reader.c: Fixed invalid read problems.
174
175 Tue May  2 15:57:10 2006  Ben Pfaff  <blp@gnu.org>
176
177         * storage-stream.c: Add missing function comments.
178
179 Tue May  2 15:50:21 2006  Ben Pfaff  <blp@gnu.org>
180
181         Continue reforming procedure execution.  In this phase, add some
182         new, needed functionality to storage-stream.
183
184         * storage-stream.c: (storage_source_decapsulate) New function.
185
186 Tue May  2 15:43:36 2006  Ben Pfaff  <blp@gnu.org>
187
188         * variable.c (width_to_bytes): Declarations must precede
189         statements for C90 compliance.
190
191 Tue May  2 10:42:05 WST 2006 John Darrington <john@darrington.wattle.id.au>
192
193         * data-out.c, data-in.c, variable.c, variable.h: New functions 
194         copy_mangle and copy_demangle for reading/writing cases; emulates the 
195         way SPSS deals with strings > 255 bytes.
196
197         * sys-file-reader.c sys-file-writer.c: Added support for Record 7, 
198         subtype 14 needed for strings longer than 255 bytes.
199
200         * dictionary.c, format.def, value.c : Updated to use MAX_STRING 
201         instead of literal values. Also fixed some constness issues.
202
203         * format.h: Constness
204
205         * sfm-private.h: Renamed the case_size identifier, since I discovered 
206         that SPSS's respect for this variable is very nominal.
207
208 Mon May  1 15:45:42 2006  Ben Pfaff  <blp@gnu.org>
209
210         Change case limit type from int to size_t.
211
212         * dictionary.c: (struct dictionary) Change type of case_limit
213         member.
214         (dict_get_case_limit) Change return type.
215         (dict_set_case_limit) Change parameter type.
216
217 Wed Apr 26 20:01:19 2006  Ben Pfaff  <blp@gnu.org>
218
219         * variable.h: (struct variable) Rename `reinit' member as `leave'
220         and invert sense.  Fix up all references.
221
222 Wed Apr 26 19:39:28 2006  Ben Pfaff  <blp@gnu.org>
223
224         Continue reforming procedure execution.  In this phase, break
225         procedure.c into multiple files.
226         
227         * automake.mk: (src_data_libdata_a_SOURCES) Add all the new files.
228
229         * case-sink.c: New file.
230
231         * case-sink.h: New file.
232         
233         * case-source.c: New file.
234
235         * case-source.h: New file.
236         
237         * storage-stream.c: New file.
238
239         * storage-stream.h: New file.
240
241 Wed Apr 26 14:55:19 2006  Ben Pfaff  <blp@gnu.org>
242
243         * variable.h: (struct variable) Remove `init' member and all
244         references to it from other files.  It was initialized in several
245         places, but nothing really ever used it for anything worthwhile.
246         Thanks to Jason Stover for pointing out how confusing this
247         member is.
248
249 Sun Apr 23 22:04:45 2006  Ben Pfaff  <blp@gnu.org>
250
251         Continue reforming error message support.  In this phase, get rid
252         of message "titles" and put the message text in `struct error'.
253         Now `struct error' encapsulates a message more properly.
254         
255         * casefile.c: (io_error) Use err_msg() instead of err_vmsg().
256         Format message ourselves.
257
258         * data-in.c: (vdls_error) Ditto.
259
260         * por-file-reader.c: (error) Ditto.
261
262         * sys-file-reader.c: (corrupt_msg) Ditto.
263
264 Sun Apr 16 18:49:51 2006  Ben Pfaff  <blp@gnu.org>
265
266         GNU standards require "file name" instead of "filename" in
267         documentation.  It's nice for our code to follow the convention
268         too.
269         
270         * casefile.c: (struct casefile) Rename `filename' member to
271         `file_name'.  Updated all references.
272
273         * file-name.c: [!unix] (struct file_identity) Rename
274         normalized_filename member to normalized_file_name.  Updated all
275         references.
276
277 Sun Apr 16 18:35:33 2006  Ben Pfaff  <blp@gnu.org>
278
279         We don't really support anything but Unix-like environments well,
280         so we might as well de-obfuscate by writing directory and path
281         separators explicitly.
282
283         * file-name.h: (macro DIR_SEPARATOR) Removed.  Changed all usages
284         to just '/'.
285         (macro PATH_SEPARATOR) Removed.  Changed all usages to just ':'.
286         (macro DIR_SEPARATOR_STRING) Removed.  Changed all usages to just
287         "/".
288         (macro PATH_SEPARATOR_STRING) Removed.  Changed all usages to just
289         ":"
290
291 Sun Apr 16 18:28:35 2006  Ben Pfaff  <blp@gnu.org>
292
293         GNU standards require "file name" instead of "filename" in
294         documentation.  It's nice for our code to follow the convention
295         too.
296         
297         * filename.c: Rename to file-name.c.
298
299         * filename.h: Rename to file-name.h.  Update all inclusions.
300         Update header guards.
301
302         * automake.mk: Update file names.
303
304 Sun Apr 16 16:42:47 2006  Ben Pfaff  <blp@gnu.org>
305
306         * filename.c: (fn_dirname) Renamed fn_dir_name(), all references
307         updated.
308         (fn_basename) Removed (dead code).
309         (fn_absolute_p) Renamed fn_is_absolute(), all references updated.
310         (fn_special_p) Renamed fn_is_special(), all references updated.
311         (fn_exists_p) Renamed fn_exists(), all references updated.
312
313 Sun Apr 16 16:33:58 2006  Ben Pfaff  <blp@gnu.org>
314
315         * filename.c: (fn_tilde_expand) Rewrite for cleaner code.  
316         Also, now it only tilde-expands file names, not paths.
317         (fn_search_path) Tilde-expand one directory at a time.
318
319 Sun Apr 16 16:28:06 2006  Ben Pfaff  <blp@gnu.org>
320
321         * filename.c: (fn_search_path) rewrite for cleaner code.  Also,
322         get rid of non-Unixlike version of the code, which has probably
323         never been tested.
324         (fn_prepend_dir) Removed (dead code).
325
326         * filename.h: (macro DIR_SEPARATOR_STRING) New.
327         (macro PATH_SEPARATOR_STRING) New.
328 Sun Apr 16 16:05:28 2006  Ben Pfaff  <blp@gnu.org>
329
330         Continue reforming error message support.  In this phase, we get
331         rid of VM() and the other msg() support for "verbosity", replacing
332         it by a new function verbose_msg().
333
334         * filename.c: (fn_search_path) Use verbose_msg() instead of
335         msg(VM(), ...).  
336
337 Sat Apr 15 19:53:19 2006  Ben Pfaff  <blp@gnu.org>
338
339         * sfm-private.h: Get rid of #defines after #error, which makes no
340         sense.
341
342 Sat Apr 15 19:48:57 2006  Ben Pfaff  <blp@gnu.org>
343
344         Get rid of our own int32 type in favor of the standard int32_t
345         type.
346         
347         * sfm-private.h: (int32 macro) Don't define this anymore.  Do
348         include <stdint.h>.
349
350         * sys-file-reader.c: Use int32_t instead of int32 throughout.
351         
352         * sys-file-writer.c: Use int32_t instead of int32 throughout.
353
354 Sat Apr 15 19:36:47 2006  Ben Pfaff  <blp@gnu.org>
355
356         Remove ill-considered file routines that are no longer used.
357         
358         * filename.c: (fn_open_ext) Removed.
359         (fn_close_ext) Removed.
360
361         * filename.h: (struct file_ext) Removed.
362
363 Mon Apr  3 13:22:39 2006  Ben Pfaff  <blp@gnu.org>
364
365         * variable.c (var_is_valid_name): Move declarations before code
366         for C90 compliance.
367
368 Tue Apr  4 15:28:40 WST 2006 John Darrington <john@darrington.wattle.id.au>
369
370         * filename.ch (fn_interp_vars): Fixed small buglet.
371
372 Tue Mar 28 13:47:16 WST 2006 John Darrington <john@darrington.wattle.id.au>
373         
374         * filename.[ch] (fn_interp_vars): Changed the signature and semantics
375         so as to modify the string inline.   Thus makeing it easier to
376         destroy the results when no longer needed.
377         
378 2006-03-25  Jason Stover  <jhs@math.gcsu.edu>
379
380         * category.c (cat_stored_values_destroy): Fixed memory leak.
381
382 Fri Mar 24 18:15:41 2006  Ben Pfaff  <blp@gnu.org>
383
384         Add some missing frees.  Thanks to John Darrington for reporting
385         these.
386
387         * any-writer.c (any_writer_close): Free writer.
388
389         * any-reader.c (any_reader_close): Free reader.
390
391 Mon Mar 20 16:33:53 2006  Ben Pfaff  <blp@gnu.org>
392
393         * por-file-reader.c: (error) Mark as NO_RETURN.
394
395 Sat Mar 11 15:06:07 WST 2006 John Darrington <john@darrington.wattle.id.au>
396
397         * settings.c: Changed default value of scompress to true.
398
399 Sat Mar  4 13:22:51 2006  Ben Pfaff  <blp@gnu.org>
400
401         * sfm-private.h: Include variable.h, to get SHORT_NAME_LEN.
402
403         * value.h: Remove check on MAX_SHORT_STRING, which I don't think
404         really applies.
405
406         * variable.h: Move definition of SHORT_NAME_LEN, LONG_NAME_LEN
407         here from pref.h.orig.
408
409 Sat Mar  4 12:50:48 WST 2006 John Darrington <john@darrington.wattle.id.au>
410
411         * sys-file-reader.c: Fixed bug reading compressed files.
412
413 Thu Mar  2 08:40:33 WST 2006 John Darrington <john@darrington.wattle.id.au>
414
415         * Numerous renames.  See src/ChangeLog for details.
416         
417         * Moved files from src directory