c237dfb79415d0dc8232ed80a3510d2b37e7cd7e
[pspp-builds.git] / src / libpspp / ChangeLog
1 Thu Oct 26 20:19:50 2006  Ben Pfaff  <blp@gnu.org>
2
3         * automake.mk: Add the new files.
4
5         * legacy-encoding.c: New file.
6
7         * legacy-encoding.h: New file.
8
9         * float-format.c: New file.
10
11         * float-format.h: New file.
12
13         * integer-format.c: New file.
14
15         * integer-format.h: New file.
16
17 Sun Oct 15 09:49:50 WST 2006 John Darrington <john@darrington.wattle.id.au>
18
19         * hash.c hash.h: Added hsh_create_pool, a hash which uses a pool
20         for its memory allocation.
21
22 Mon Jul 31 15:49:46 2006  Ben Pfaff  <blp@gnu.org>
23
24         * compiler.h: (macro CONST_FUNCTION) New macro.
25         (macro PURE_FUNCTION) New macro.
26
27 Sun Jul 16 21:07:35 2006  Ben Pfaff  <blp@gnu.org>
28
29         * message.c: (static int messages_disabled) New variable.
30         (msg_emit) Don't emit the message if messages are disabled.
31         (msg_disable) New function.
32         (msg_enable) New function.
33
34         * str.c: (free_string) New function.
35         (ds_register_pool) New function.
36         (ds_unregister_pool) New function.
37         (ds_set_length) New function.
38
39 Mon Jul 10 17:26:58 WST 2006 John Darrington <john@darrington.wattle.id.au>
40
41         * llx.c: #included compiler.h and removed explicit preprocessor cruft.
42
43 Fri Jul  7 20:01:26 2006  Ben Pfaff  <blp@gnu.org>
44
45         * automake.mk: (src_libpspp_libpspp_a_SOURCES) Add assertion.h.
46         
47         * assertion.h: New file.  Replaced usage of assert(0) and abort()
48         with NOT_REACHED() from this file throughout the source tree.
49
50         * message.c: (request_bug_report_and_abort) Revise message printed
51         to include request to include lines above the message, which
52         should include an assertion failure message in many cases.
53         (msg_assert_fail) Removed.
54
55         * message.h: (assert) Removed.
56         (request_bug_report_and_abort) Mark NO_RETURN.
57
58 Mon Jul  3 09:36:42 WST 2006 John Darrington <john@darrington.wattle.id.au>
59
60         * i18n.c: Made character conversion tolerant of failure to create the 
61         necessary iconv structs.
62
63 Sat Jul  1 15:32:54 2006  Ben Pfaff  <blp@gnu.org>
64
65         * automake.mk: (src_libpspp_libpspp_a_SOURCES) Add new files.
66
67         * ll.c: New file.
68
69         * ll.h: New file.
70
71         * llx.c: New file.
72
73         * llx.h: New file.
74
75 Sun Jun 25 22:35:28 2006  Ben Pfaff  <blp@gnu.org>
76
77         Optimize rehashing: we know that none of the entries in the hash
78         table are equal, so we need not compare them to each other during
79         rehashing.
80         
81         * hash.c: (locate_empty_entry) New function.
82         (rehash) Use locate_empty_entry() instead of
83         locate_matching_entry().
84
85 Fri Jun  9 14:03:29 2006  Ben Pfaff  <blp@gnu.org>
86
87         Reform string library.
88         
89         * str.c (ss_empty): New function.  Replaces some uses of ls_init()
90         or ls_null().
91         (ss_cstr) New function.  Replaces some uses of ls_init().
92         (ss_buffer) New function.  Replaces some uses of ls_init().
93         (ss_substr) New function.
94         (ss_head) New function.
95         (ss_tail) New function.
96         (ss_alloc_substring) New function.  Replaces use of ls_create().
97         (ss_alloc_uninit) New function.
98         (ss_dealloc) New function.  Replaces use of ls_destroy().
99         (ss_truncate) New function.
100         (ss_rtrim) New function.
101         (ss_ltrim) New function.
102         (ss_trim) New function.
103         (ss_chomp) New function.
104         (ss_separate) New function.
105         (ss_tokenize) New function.
106         (ss_advance) New function.
107         (ds_create) Renamed ds_init_cstr().  Updated all callers.
108         (ss_match_char) New function.
109         (ss_get_char) New function.
110         (ss_get_until) New function.
111         (ss_get_chars) New function.
112         (ss_is_empty) New function.
113         (ss_length) New function.  Replaces ls_length().
114         (ss_data) New function.  Replaces many uses of ls_c_str().
115         (ss_end) New function.  Replaces ls_end().
116         (ss_at) New function.
117         (ss_first) New function.
118         (ss_last) New function.
119         (ss_span) New function.
120         (ss_cspan) New function.
121         (ss_compare) New function.
122         (ss_pointer_to_position) New function.
123         (ss_xstrdup) New function.
124         (ds_init) Renamed ds_init_empty().  All callers updated.
125         (ds_init_string) New function.
126         (ds_init_substring) Changed interface to take a struct substring.
127         Updated all callers.
128         (ds_init_cstr) New function.  Replaces ds_create().  All callers
129         updated.
130         (ds_assign_substring) Changed interface to take a struct
131         substring.  Updated all callers.
132         (ds_assign_buffer) Removed.  Changed all callers to use
133         ds_assign_substring().
134         (ds_assign_c_str) Renamed ds_assign_cstr().  All callers updated.
135         (ds_ss) New function.
136         (ds_substr) New function.
137         (ds_head) New function.
138         (ds_tail) New function.
139         (ds_rtrim) New function.  Replaces ds_rtrim_spaces().  All callers
140         updated.
141         (ds_ltrim) New function.  Replaces ds_ltrim_spaces().  All callers
142         updated.
143         (ds_trim) New function.  Replaces ds_trim_spaces().  All callers
144         updated.
145         (ds_rtrim_spaces) Removed.
146         (ds_ltrim_spaces) Removed.
147         (ds_trim_spaces) Removed.
148         (ds_separate) Changed interface to use substrings.  All callers
149         updated.
150         (ds_tokenize) Changed interface to use substrings.  All callers
151         updated.
152         (ds_c_str) Renamed ds_cstr().  All callers updated.
153         (ds_span) Changed interface to use substring for SKIP_SET and
154         dropped OFS.  All callers updated.
155         (ds_cspan) Changed interface to use substring for STOP_SET and
156         dropped OFS.  All callers updated.
157         (ds_find_char) New function.
158         (ds_compare) New function.
159         (ds_pointer_to_position) New function.
160         (ds_xstrdup) New function.  Replaced all users of
161         xstrdup(ds_c_str(s)) by a call to this function.
162         (ds_gets) Renamed ds_read_line().  All callers updated.
163         (ds_get_config_line) Renamed ds_read_config_line().  All callers
164         updated.
165         (ds_puts) Renamed ds_put_cstr().  All callers updated.
166         (ds_put_substring) New function.  Replaces ds_concat().  All
167         callers updated.
168         (ds_concat) Removed.
169         (ds_append_uninit) Renamed ds_put_uninit().  All callers updated.
170         (ds_printf) Renamed ds_put_format().  All callers updated.
171         (ds_vprintf) Renamed ds_put_vformat().  All callers updated.
172         (ds_putc) Renamed ds_put_char().  All callers updated.
173         (ds_putc_multiple) Renamed ds_put_char_multiple().  All callers
174         updated.
175         (ls_create) Removed.  Replaced by ss_alloc_substring().
176         (ls_create_buffer) Removed.  Replaced by ss_alloc_substring().
177         (ls_init) Removed.  Replaced by ss_buffer().
178         (ls_shallow_copy) Removed.  Just use assignment.
179         (ls_destroy) Removed.  Replaced by ss_dealloc().
180         (ls_null) Removed.
181         (ls_null_p) Removed.
182         (ls_empty_p) Removed.  Replaced by ss_is_empty().
183         (ls_c_str) Removed.
184         (ls_end) Removed.  Replaced by ss_end().
185
186         * str.h (struct fixed_string): Renamed struct substring, updated
187         all users.
188         (CC_SPACES) New macro.
189         (CC_DIGITS) Ditto.
190         (CC_XDIGITS) Ditto.
191         (CC_LETTERS) Ditto.
192         (CC_ALNUM) Ditto.
193         (SS_EMPTY_INITIALIZER) Ditto.
194         (SS_LITERAL_INITIALIZER) Ditto.
195         (struct string) Removed string, length members.  Add substring
196         member.
197         (DS_INITIALIZER) Rename DS_EMPTY_INITIALIZER.
198
199 Tue May 30 19:45:12 WST 2006 John Darrington <john@darrington.wattle.id.au>
200
201         * i18n.c i18n.h: New files.
202
203 Tue May 16 06:50:35 2006  Ben Pfaff  <blp@gnu.org>
204
205         * automake.mk (src/libpspp/version.c): Removed groff_font_path,
206         which is no longer used.
207
208         * message.c (request_bug_report_and_abort): Don't print
209         groff_font_path, which no longer exists.
210
211         * version.h (locale_dir): Removed groff_font_path.
212
213 Sun May 14 22:06:53 2006  Ben Pfaff  <blp@gnu.org>
214
215         * str.c (spprintf): Moved definition of spprintf() here, from
216         str.h.
217
218         * str.h: (nsprintf) Removed.  Changed all users to use sprintf()
219         instead.
220         (nvsprintf) Removed.  Changed all users to use vsprintf() instead.
221
222 Sun May 14 20:52:20 2006  Ben Pfaff  <blp@gnu.org>
223
224         * str.c (ds_init): Remove `capacity' argument and just initialize
225         the string to a capacity of zero.  Updated all callers.
226
227 Tue May  9 09:56:57 2006  Ben Pfaff  <blp@gnu.org>
228
229         * va_copy.h: Removed.  Now use va_copy() provided by gnulib
230         instead.
231
232         * automake.mk: (src_libpspp_libpspp_a_SOURCES) Removed va_copy.h.
233
234 Sun May  7 18:17:32 2006  Ben Pfaff  <blp@gnu.org>
235
236         * pool.c (pool_vasprintf): New function.
237         (pool_asprintf) New function.
238
239 Sun May  7 17:09:54 2006  Ben Pfaff  <blp@gnu.org>
240
241         * compiler.h: (macro WARN_UNUSED_RESULT) New macro.
242
243 Sun May  7 14:32:25 2006  Ben Pfaff  <blp@gnu.org>
244
245         * va_copy.h: New header.
246
247         * str.c: Use header instead of inlining va_copy() macro
248         implementation.
249
250 Sun May  7 10:06:29 WST 2006 John Darrington <john@darrington.wattle.id.au>
251
252         * array.c array.h: Constness of sort.
253
254 Thu May  4 18:01:37 WST 2006 John Darrington <john@darrington.wattle.id.au>
255
256         * message.c message.h: Added functions to create and copy a msg.
257
258 Tue May  2 15:41:50 2006  Ben Pfaff  <blp@gnu.org>
259
260         * str.c (ds_append_uninit): No need to add 1 to arg passed to
261         ds_extend(), because the argument does not include space for a
262         null terminator.  Also, fix warning.
263
264 Tue Apr 25 11:07:19 2006  Ben Pfaff  <blp@gnu.org>
265
266         Finish reforming error message support.  In this phase, move
267         message.c into libpspp.
268         
269         * message.c: Move here from src/.  Also remove a few unneeded
270         headers.
271
272         * automake.mk (src_libpspp_libpspp_a_SOURCES): Add message.c. 
273
274 Tue Apr 25 10:54:44 2006  Ben Pfaff  <blp@gnu.org>
275
276         Continue reforming error message support.  In this phase, drop
277         actual message printing from core code, substituting a callback,
278         and add the callback to each UI.  Also, move verbose_msg() into
279         its own module.
280
281         * automake.mk (src_libpspp_libpspp_a_SOURCES): Added
282         verbose-msg.c, verbose-msg.h.
283
284         * verbose-msg.c: New file.
285
286         * verbose-msg.h: New file.
287
288 Mon Apr 24 17:26:47 2006  Ben Pfaff  <blp@gnu.org>
289
290         Continue reforming error message support.  In this phase, rename
291         all the message functions and types to start with "msg", except
292         for the ones that will be moving to other modules anyway.
293
294         All references to the identifiers below were updated likewise.
295         
296         * message.h: (enum file_locator) Renamed `enum msg_locator'.
297         (struct error) Renamed `struct msg'.
298         (err_assert_fail) Renamed msg_assert_fail().
299
300 Sun Apr 23 22:07:06 2006  Ben Pfaff  <blp@gnu.org>
301
302         Continue reforming error message support.  In this phase, get rid
303         of message "titles" and put the message text in `struct error'.
304         Now `struct error' encapsulates a message more properly.
305         
306         * message.h: (struct error) Remove `title' member.  Add `text'
307         member.
308         
309 Sun Apr 16 20:43:35 2006  Ben Pfaff  <blp@gnu.org>
310
311         Continue reforming error message support.  In this phase, we
312         divide the classification of messages along "category" and
313         "severity" axes.
314
315         * message.h: (enum msg_class) Named this set of enumerations.
316         (enum msg_category) New enum: MSG_GENERAL, MSG_SYNTAX, MSG_DATA.
317         (enum msg_severity) New enum: MSG_ERROR, MSG_WARNING, MSG_NOTE.
318         (msg_class_to_category) New inline function.
319         (msg_class_to_severity) New inline function.
320         (msg_class_from_category_and_severity) New inline function.
321         (struct error) Removed `class' member, added `category',
322         `severity'.  Updated all users of this struct to use the new
323         members.
324
325 Sun Apr 16 20:33:19 2006  Ben Pfaff  <blp@gnu.org>
326
327         * str.c (ds_vprintf): Don't try to write into the string if it is
328         null.
329
330 Sun Apr 16 18:52:41 2006  Ben Pfaff  <blp@gnu.org>
331
332         GNU standards require "file name" instead of "filename" in
333         documentation.  It's nice for our code to follow the convention
334         too.
335         
336         * message.h: (struct file_locator) Rename filename member to
337         file_name.  Updated all references.
338
339 Sun Apr 16 16:05:43 2006  Ben Pfaff  <blp@gnu.org>
340
341         Continue reforming error message support.  In this phase, we get
342         rid of VM() and the other msg() support for "verbosity", replacing
343         it by a new function verbose_msg().
344
345         * message.h: (enum ERR_CLASS_COUNT) Renamed ERR_CLASS_CNT.
346         (enum ERR_CLASS_MASK) Removed.
347         (enum ERR_VERBOSITY_SHIFT) Removed.
348         (enum ERR_VERBOSITY_MASK) Removed.
349         (macro VM) Removed.
350
351 Sun Apr 16 11:48:07 2006  Ben Pfaff  <blp@gnu.org>
352
353         Start reforming error message support.  In this phase, we get rid
354         of "installation errors" and change all uses of msg() in the
355         output drivers to uses of error() or error_at_line().
356
357         * message.h: Remove IE, IS enums.
358
359 Mon Apr  3 11:10:21 2006  Ben Pfaff  <blp@gnu.org>
360
361         * str.c: (ds_separate) Change interface for cleanliness and
362         consistency with ds_tokenize(), and rewrite to shorten and
363         simplify.  Updated all callers.
364         (ds_tokenize) New function.
365
366 Fri Mar 31 10:38:46 2006  Ben Pfaff  <blp@gnu.org>
367
368         Add freaderror() analogous to fwriteerror() in gnulib.
369
370         * freaderror.c: New file.
371
372         * freaderror.h: New file.
373
374 Thu Mar 30 16:15:37 2006  Ben Pfaff  <blp@gnu.org>
375
376         * str.c: (ds_create) Adjust capacity selection.
377         (ds_init) Use MAX macro for clarity.
378         (ds_create_substr) Rewrote.
379         (ds_replace) Renamed ds_assign_c_str(), reimplemented.  Changed
380         all callers to use a ds_assign_*() function.
381         (ds_init_substring) New function.
382         (ds_assign_string) New function.
383         (ds_assign_substring) New function.
384         (ds_assign_buffer) New function.
385         (ds_assign_c_str) New function.
386         (ds_truncate) Rewrote for clarity.
387         (ds_rpad) Reimplement in terms of ds_putc_multiple().
388         (ds_ltrim_spaces) Reimplement.
389         (ds_trim_spaces) New function.
390         (ds_separate) New function.
391         (ds_c_str) Make tolerant of null pointer, allowing static
392         initialization of strings.
393         (ds_find) Rename ds_span(), change interface.
394         (ds_n_find) Rename ds_cspan(), change interface.
395         (ds_at) New function.
396         (ds_first) Reimplement in terms of ds_at().
397         (remove_comment) New function.
398         (ds_get_config_line) Reimplement in terms of other functions.
399         Change type of LINE_NUMBER parameter.  Updated all callers.
400         (ds_vprintf) Modify for clarity.
401         (ds_putc) Better to be safe than sorry.
402         (ds_putc_multiple) New function.
403
404         * str.h: (struct string) Reorder members.
405         (macro DS_INITIALIZER) New macro that can be used to initialize a
406         string (as empty).
407         (ds_c_str) Remove inline version.
408
409 Tue Mar 28 13:49:11 WST 2006 John Darrington <john@darrington.wattle.id.au>
410
411         * str.[ch]: New functions ds_create_substr, ds_find, ds_n_find, 
412         ds_ltrim_spaces
413
414 Sat Mar  4 12:59:01 2006  Ben Pfaff  <blp@gnu.org>
415
416         * compiler.h: New file.
417
418 Sat Mar  4 11:55:16 2006  Ben Pfaff  <blp@gnu.org>
419
420         * str.h: Now assume that sprintf() returns the correct value.
421         Always implement spprintf as a static inline function.  Change
422         nsprintf, nvsprintf to simple macros that call sprintf, vsprintf.
423
424         * str.c: Remove spprintf, nsprintf, nvsprintf conditional
425         definitions.
426
427 Thu Mar  2 08:40:33 WST 2006 John Darrington <john@darrington.wattle.id.au>
428         
429         * Moved files from src directory