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