Fix regression in command name completion reported by John Darrington.
[pspp-builds.git] / src / language / data-io / ChangeLog
1 Tue Jun 27 22:44:28 2006  Ben Pfaff  <blp@gnu.org>
2
3         Fix regression in command name completion reported by John
4         Darrington.  Now completion is again state-dependent and occurs
5         only on the first line of a command.
6         
7         * inpt-pgm.c: (cmd_input_program) Reading of first token in
8         command moved into cmd_parse.
9
10 Fri Jun  9 13:56:00 2006  Ben Pfaff  <blp@gnu.org>
11
12         Reform string library.
13         
14         * matrix-data.c (context): Use dynamic string.
15         (another_token) Deal with changed dfm_get_record() interface.
16         (mget_token) Ditto.
17         (force_eol) Ditto.
18
19         * data-list.c (struct data_list_pgm) Delete delims, delim_cnt
20         members, replacing them by struct string delims.  Update all
21         references to use struct string functions.
22         (cut_field) Change interface to avoid needing "end_blank", by
23         getting the data-reader to remember that state for us.  Change
24         internals to use substring.  Update both callers.
25
26         * data-reader.c (read_file_record): Use ds_read_stream().
27         (dfm_get_record) Change interface to return substring.  Updated
28         all callers.
29         (dfm_expand_tabs) Use ds_find_char().  Now maintain position
30         relative to end-of-line.  Use ds_swap().
31         (dfm_reread_record) Don't limit position by line length.
32         (dfm_column_start) Make parameter const.
33         (dfm_columns_past_end) New function.
34         (dfm_get_column) New function.
35
36 Thu May 25 18:26:26 WST 2006 John Darrington <john@darrington.wattle.id.au>
37
38         * print.c (print_trns_free): Made the code agree with the comment, by
39         not freeing PRT.  Has the side effect that the command no longer
40         crashes on invalid syntax.
41
42 Tue May  9 20:55:46 2006  Ben Pfaff  <blp@gnu.org>
43
44         * get.c (cmd_match_files): Fix memory leak replacing default_dict.
45
46 Sat May  6 22:25:09 2006  Ben Pfaff  <blp@gnu.org>
47
48         Fix segfault.
49         
50         * list.q (write_fallback_headers): (write_fallback_headers)
51         Properly record width of leader and pass it to write_varname().
52
53 Sat May  6 19:03:13 2006  Ben Pfaff  <blp@gnu.org>
54
55         * get.c: (mtf_merge_dictionary) Fix value label memory leak.
56
57 Sat May  6 13:51:16 2006  Ben Pfaff  <blp@gnu.org>
58
59         Use a casefile, instead of a case sink, for MATCH FILES output.
60         It's more straightforward, although it has the same effect.
61         
62         * get.c: (struct mtf_proc) Replace `sink' case sink member by
63         `output' casefile member.
64         (cmd_match_files) Work with casefile instead of sink.
65         (mtf_processing) Add case to casefile instead of sink.
66
67 Sat May  6 10:43:07 2006  Ben Pfaff  <blp@gnu.org>
68
69         Continue reforming procedure execution.  In this phase, get rid of
70         the output code for SPLIT FILE groups in procedure.c, which really
71         shouldn't be doing any output.  Move it into the individual
72         procedures instead.  This also adds some flexibility.
73
74         * list.q (write_all_headers): Call output_split_file_values().
75
76 Wed May  3 23:00:17 2006  Ben Pfaff  <blp@gnu.org>
77
78         Continue reforming procedure execution.  In this phase, get rid of
79         many global variables, consolidating procedure execution in
80         procedure.c.  Encapsulate transformations in new "struct
81         trns_chain".  Also, change implementation of N OF CASES, FILTER,
82         and PROCESS IF from special cases to transformations.
83          
84         * data-list.c: (data_list_trns_proc) Return TRNS_END_FILE at end
85         of file.  (Why didn't we do this before?)
86         (cmd_match_files) Direct procedure output to null sink.
87         Use discard_variables() instead of indirect version.
88
89         * inpt-pgm.c: Use transformation chain.
90         (struct input_program_pgm) Add trns_chain member.
91         (cmd_input_program) Initialize trns_chain member and capture
92         transformations with proc_capture_transformations().
93         (input_program_source_read) Use trns_chain_execute().
94         (destroy_input_program) Destroy input chain.
95
96 Tue May  2 10:39:56 WST 2006 John Darrington <john@darrington.wattle.id.au>
97
98         * list.q Changed from using fixed length char buffers to struct 
99         string so that any length variables can be used.
100
101 Mon May  1 18:21:19 2006  Ben Pfaff  <blp@gnu.org>
102
103         Further clean up the CMD_* command result codes.
104         
105         * (enum cmd_result_extensions) New.  Add CMD_END_INPUT_PROGRAM and
106         CMD_END_CASE result codes.
107         (struct input_program_pgm) Added case_nr, write_case, wc_data
108         members for use by END CASE transformation.
109         (emit_END_CASE) New function.
110         (cmd_input_program) Interpret CMD_END_CASE by outputting an END
111         CASE transformation.  If none is output by the input program
112         itself, add one automatically at the end.  Change lack of
113         variables from warning to error.
114         (cmd_end_input_program) Return CMD_END_INPUT_PROGRAM instead of
115         CMD_END_SUBLOOP.
116         (input_program_source_read) No longer any need to special-case END
117         CASE.  Handle TRNS_DROP_CASE properly.  Initialize new members in
118         inp for use by END CASE transformation.
119         (destroy_input_program) New function.
120         (input_program_source_destroy) Just call destroy_input_program().
121         (cmd_end_case) Just return CMD_END_CASE.
122         (end_case_trns_proc) No longer a stub handled by
123         input_program_source_read().  Actually output the case and
124         increment the case number.
125
126 Mon May  1 16:06:30 2006  Ben Pfaff  <blp@gnu.org>
127
128         Remove vestiges of REPEATING DATA support.
129         
130         * data-list.c: (struct rpd_num_or_var) Removed.
131         (struct repeating_data_trns) Removed.
132         (cmd_repeating_data) Removed.
133         (find_variable_input_spec) Removed.
134         (parse_num_or_var) Removed.
135         (parse_repeating_data) Removed.
136         (realize_value) Removed.
137         (struct rpd_parse_info) Removed.
138         (rpd_parse_record) Removed.
139         (repeating_data_trns_proc) Removed.
140         (repeating_data_trns_free) Removed.
141         (repeating_data_set_write_case) Removed.
142         (rpd_msg) Removed.
143
144         * inpt-pgm.c: (input_program_source_read) Don't deal with
145         REPEATING DATA.
146
147         * data-list.h: Removed.
148
149         * automake.mk (src_language_data_io_libdata_io_a_SOURCES): Removed
150         data-list.h.
151
152 Mon May  1 15:58:28 2006  Ben Pfaff  <blp@gnu.org>
153
154         Remove vestiges of FILE TYPE support. 
155         
156         * data-list.c: (cmd_data_list) Don't check for FILE TYPE.
157         (cmd_repeating_data) Ditto.
158         
159         * automake.mk (src_language_data_io_libdata_io_a_SOURCES): Remove
160         file-type.c, file-type.h.
161
162         * file-type.c: Removed.
163         
164         * file-type.h: Removed.
165
166 Wed Apr 26 13:16:28 2006  Ben Pfaff  <blp@gnu.org>
167
168         Improve the way we handle the various parsing "states".  Until now
169         we've hard-coded the state transitions in the command definition
170         file, but that's error-prone and, worse, it's redundant--we can
171         figure out what state we're in anyhow.  We can cleanly handle
172         INPUT PROGRAM and FILE TYPE with a nested command-processing loop.
173         
174         * data-list.c: (cmd_data_list) Use in_file_type() or
175         in_input_program() in place of case_source_is_class() or
176         case_source_is_complex().
177
178         * file-type.c: NB: Not really fixed except minimally to compile,
179         because it doesn't work anyway.
180         (in_file_type) New function.
181         (cmd_record_type) No need to check that we're in FILE TYPE.
182         (cmd_end_file_type) Ditto.
183         (var file_type_source_class) Make static.
184
185         * get.c: (cmd_match_files) Check vfm_source instead of pgm_state.
186
187         * inpt-pgm.c: (in_input_program) New function.
188         (cmd_input_program) Rewrite to include nested command processing
189         loop.
190         (cmd_end_input_program) Just return CMD_END_SUBLOOP.
191         (var input_program_source_class) Make static.
192         (cmd_end_case) No need to check that we're in INPUT PROGRAM.
193         (cmd_end_file) Ditto.
194         
195         * automake.mk (src_language_data_io_libdata_io_a_SOURCES): Add
196         file-type.h, inpt-pgm.h.
197
198         * file-type.h: New file.
199
200         * inpt-pgm.h: New file.
201
202 Tue Apr 25 13:11:55 2006  Ben Pfaff  <blp@gnu.org>
203
204         * print.c: Don't special-case MS-DOS line terminators.
205         (macro LINE_END_WIDTH) Removed.
206         (alloc_line) Line ends are 1 byte.
207         (print_trns_proc) Just output \n for line end.
208
209 Sun Apr 23 22:05:58 2006  Ben Pfaff  <blp@gnu.org>
210
211         Continue reforming error message support.  In this phase, get rid
212         of message "titles" and put the message text in `struct error'.
213         Now `struct error' encapsulates a message more properly.
214         
215         * data-list.c: (macro RPD_ERR) Removed.
216         (rpd_msg) New function.  Updated all references to tmsg() to call
217         this function instead.
218
219 Sat Apr 15 19:38:13 2006  Ben Pfaff  <blp@gnu.org>
220
221         Remove last users of struct file_ext so we can get rid of it
222         entirely.
223         
224         * data-reader.c: (struct dfm_reader) Change file member from
225         struct file_ext to FILE *.  Updated all references.
226         (dfm_close_reader) Close file with fn_close() instead of
227         fn_close_ext().  Also, make a copy of the file name from the file
228         handle before closing it, because we can't extract it after we
229         close the file.
230         (dfm_open_reader) Open file with fn_open() instead of
231         fn_open_ext().
232
233         * data-writer.c: (struct dfm_writer) Change file member 
234         struct file_ext to FILE *.  Updated all references.
235         (dfm_close_writer) Close file with fn_close() instead of
236         fn_close_ext().  Also, make a copy of the file name from the file
237         handle before closing it, because we can't extract it after we
238         close the file.
239         (dfm_open_writer) Open file with fn_open() instead of
240         fn_open_ext().
241
242 Sat Apr 15 18:00:32 2006  Ben Pfaff  <blp@gnu.org>
243
244         * data-list.c: Add prototype to suppress warning for
245         cmd_repeating_data().
246         
247 Thu Mar  2 08:40:33 WST 2006 John Darrington <john@darrington.wattle.id.au>
248         
249         * Moved files from src directory