f363ec980d0f5e4fe21b85532a9fee1e3fd794c7
[pspp-builds.git] / src / libpspp / ChangeLog
1 Mon Mar  5 20:55:49 CET 2007 John Darrington <john@darrington.wattle.id.au>
2
3         * i18n.c: Cast second argument of iconv using ICONV_CONST
4
5 2007-02-22  Ben Pfaff  <blp@gnu.org>
6
7         * string.h: Don't include vsnprintf.h any more, because gnulib has
8         now absorbed it into string.h.
9
10 Thu Feb 22 12:25:52 CET 2007 John Darrington <john@darrington.wattle.id.au>
11
12         * syntax-gen.h syntax-gen.c: New files.
13
14 Sun Feb 18 11:21:41 2007  Ben Pfaff  <blp@gnu.org>
15
16         * alloc.h: Remove useless parentheses in #if "defined" operator.
17
18         * misc.h: Ditto.
19
20 Tue Feb  6 20:00:13 2007  Ben Pfaff  <blp@gnu.org>
21
22         * misc.h [!HAVE_ISINF] (isinf): Define only if isinf is not
23         defined as a macro, because mingw seems to have the macro without
24         the function.
25         [!HAVE_ISNAN] (isnan): Ditto, for symmetry only.
26         [!AHVE_FINITE] (finite): Ditto, for symmetry only.
27
28 Tue Feb  6 19:58:46 2007  Ben Pfaff  <blp@gnu.org>
29
30         * compiler.h (PRINTF_FORMAT): Use __printf__ instead of printf to
31         avoid problem with "#define printf libintl_printf" that libintl is
32         fond of doing.
33         (SCANF_FORMAT): Ditto, for symmetry only.
34
35 Tue Feb  6 19:47:10 2007  Ben Pfaff  <blp@gnu.org>
36
37         * float-format.h: [FPREP_IEEE754] [WORDS_BIGENDIAN] Add missing
38         comma.
39
40 Wed Jan 24 21:13:32 2007  Ben Pfaff  <blp@gnu.org>
41
42         * abt.c: New file.
43
44         * abt.h: New file.
45
46         * automake.mk: Add abt.c, abt.h to sources.
47
48 Sun Jan 14 21:44:18 2007  Ben Pfaff  <blp@gnu.org>
49
50         * automake.mk: Add deque.h to sources.
51         
52         * deque.h: New file.
53
54 Wed Jan 10 06:49:38 2007  Ben Pfaff  <blp@gnu.org>
55
56         * automake.mk: Add heap.c, heap.h to sources.
57
58         * heap.c: New file.
59
60         * heap.h: New file.
61
62 Sun Dec 10 13:54:03 2006  Ben Pfaff  <blp@gnu.org>
63
64         * str.c (ss_tokenize): Skip the first delimiter character
65         following the token.  Otherwise, changing delimiters from token to
66         token can't have a sensible effect, because we'll get the previous
67         delimiter as part of the next token.
68         (ss_match_string): New function.
69
70 Sat Dec  9 18:48:55 2006  Ben Pfaff  <blp@gnu.org>
71
72         * misc.h (macro range): Removed, as it was unused.
73
74 Sat Dec  9 07:19:01 WST 2006 John Darrington <john@darrington.wattle.id.au>
75
76         * array.c: Removed gratuitous #include
77
78 Thu Dec  7 20:33:23 WST 2006 John Darrington <john@darrington.wattle.id.au>
79
80         * getl.c getl.h : Changed signature of create function to take a 
81         string indicating the initial include path.
82
83 Sun Dec  3 11:36:10 2006  Ben Pfaff  <blp@gnu.org>
84
85         * str.h (SS_LITERAL_INITIALIZER): Cast the string literal to "char
86         *".  This normally does nothing but when GCC's -Wwrite-strings is
87         used it fixes a warning that otherwise can't be avoided.
88
89 Sun Dec  3 11:35:35 2006  Ben Pfaff  <blp@gnu.org>
90
91         * str.c (ss_alloc_substring_pool): New function.
92         (ss_alloc_uninit_pool) New function.
93
94 Sun Dec  3 11:28:06 2006  Ben Pfaff  <blp@gnu.org>
95
96         * getl.h: (enum getl_syntax) New enumeration to distinguish
97         between "batch" and "interactive" in a clearer way than a bool.
98         (struct getl_interface) Add an arg to "read" to return the
99         intended syntax mode.  Add an arg to "filter" to specify the
100         syntax mode of the line to filter.
101
102         * getl.c (do_read_line): Instead of returning the syntax type of
103         the line read based on whether the source itself is interactive,
104         return it based on whether the line itself should be treated as
105         having batch or interactive syntax.  Also, adapt interface to the
106         new interfaces of lex_init() and getl_interface.
107
108 Wed Nov 29 19:35:44 WST 2006 John Darrington <john@darrington.wattle.id.au>
109
110         * getl.c getl.h: New files. Created interface from base of 
111         language/line-buffer.[ch]
112
113         * msg-locator.c msg-locator.h: New files. Moved from
114         language/line-buffer.[ch]
115
116 Fri Nov 24 17:27:00 2006  Ben Pfaff  <blp@gnu.org>
117
118         * misc.h: (min) Removed.  All references updated to use MIN, from
119         minmax.h provided by gnulib.
120         (max) Ditto (for MAX).
121
122 Sun Nov 19 09:22:26 2006  Ben Pfaff  <blp@gnu.org>
123
124         * str.c (ss_get_long): New function.
125         (ss_compare_case) Ditto.
126         (ss_equals) Ditto.
127         (ss_equals_case) Ditto.
128
129 Tue Oct 31 19:28:19 2006  Ben Pfaff  <blp@gnu.org>
130
131         * str.h: [!HAVE_STRCHR] Drop compatibility code, because now we
132         assume a C89 compliant library.  (Gnulib makes this assumption so
133         we might as well too.)
134         [!HAVE_STRRCHR] Ditto.
135
136 Thu Oct 26 20:19:50 2006  Ben Pfaff  <blp@gnu.org>
137
138         * automake.mk: Add the new files.
139
140         * legacy-encoding.c: New file.
141
142         * legacy-encoding.h: New file.
143
144         * float-format.c: New file.
145
146         * float-format.h: New file.
147
148         * integer-format.c: New file.
149
150         * integer-format.h: New file.
151
152 Sun Oct 15 09:49:50 WST 2006 John Darrington <john@darrington.wattle.id.au>
153
154         * hash.c hash.h: Added hsh_create_pool, a hash which uses a pool
155         for its memory allocation.
156
157 Mon Jul 31 15:49:46 2006  Ben Pfaff  <blp@gnu.org>
158
159         * compiler.h: (macro CONST_FUNCTION) New macro.
160         (macro PURE_FUNCTION) New macro.
161
162 Sun Jul 16 21:07:35 2006  Ben Pfaff  <blp@gnu.org>
163
164         * message.c: (static int messages_disabled) New variable.
165         (msg_emit) Don't emit the message if messages are disabled.
166         (msg_disable) New function.
167         (msg_enable) New function.
168
169         * str.c: (free_string) New function.
170         (ds_register_pool) New function.
171         (ds_unregister_pool) New function.
172         (ds_set_length) New function.
173
174 Mon Jul 10 17:26:58 WST 2006 John Darrington <john@darrington.wattle.id.au>
175
176         * llx.c: #included compiler.h and removed explicit preprocessor cruft.
177
178 Fri Jul  7 20:01:26 2006  Ben Pfaff  <blp@gnu.org>
179
180         * automake.mk: (src_libpspp_libpspp_a_SOURCES) Add assertion.h.
181         
182         * assertion.h: New file.  Replaced usage of assert(0) and abort()
183         with NOT_REACHED() from this file throughout the source tree.
184
185         * message.c: (request_bug_report_and_abort) Revise message printed
186         to include request to include lines above the message, which
187         should include an assertion failure message in many cases.
188         (msg_assert_fail) Removed.
189
190         * message.h: (assert) Removed.
191         (request_bug_report_and_abort) Mark NO_RETURN.
192
193 Mon Jul  3 09:36:42 WST 2006 John Darrington <john@darrington.wattle.id.au>
194
195         * i18n.c: Made character conversion tolerant of failure to create the 
196         necessary iconv structs.
197
198 Sat Jul  1 15:32:54 2006  Ben Pfaff  <blp@gnu.org>
199
200         * automake.mk: (src_libpspp_libpspp_a_SOURCES) Add new files.
201
202         * ll.c: New file.
203
204         * ll.h: New file.
205
206         * llx.c: New file.
207
208         * llx.h: New file.
209
210 Sun Jun 25 22:35:28 2006  Ben Pfaff  <blp@gnu.org>
211
212         Optimize rehashing: we know that none of the entries in the hash
213         table are equal, so we need not compare them to each other during
214         rehashing.
215         
216         * hash.c: (locate_empty_entry) New function.
217         (rehash) Use locate_empty_entry() instead of
218         locate_matching_entry().
219
220 Fri Jun  9 14:03:29 2006  Ben Pfaff  <blp@gnu.org>
221
222         Reform string library.
223         
224         * str.c (ss_empty): New function.  Replaces some uses of ls_init()
225         or ls_null().
226         (ss_cstr) New function.  Replaces some uses of ls_init().
227         (ss_buffer) New function.  Replaces some uses of ls_init().
228         (ss_substr) New function.
229         (ss_head) New function.
230         (ss_tail) New function.
231         (ss_alloc_substring) New function.  Replaces use of ls_create().
232         (ss_alloc_uninit) New function.
233         (ss_dealloc) New function.  Replaces use of ls_destroy().
234         (ss_truncate) New function.
235         (ss_rtrim) New function.
236         (ss_ltrim) New function.
237         (ss_trim) New function.
238         (ss_chomp) New function.
239         (ss_separate) New function.
240         (ss_tokenize) New function.
241         (ss_advance) New function.
242         (ds_create) Renamed ds_init_cstr().  Updated all callers.
243         (ss_match_char) New function.
244         (ss_get_char) New function.
245         (ss_get_until) New function.
246         (ss_get_chars) New function.
247         (ss_is_empty) New function.
248         (ss_length) New function.  Replaces ls_length().
249         (ss_data) New function.  Replaces many uses of ls_c_str().
250         (ss_end) New function.  Replaces ls_end().
251         (ss_at) New function.
252         (ss_first) New function.
253         (ss_last) New function.
254         (ss_span) New function.
255         (ss_cspan) New function.
256         (ss_compare) New function.
257         (ss_pointer_to_position) New function.
258         (ss_xstrdup) New function.
259         (ds_init) Renamed ds_init_empty().  All callers updated.
260         (ds_init_string) New function.
261         (ds_init_substring) Changed interface to take a struct substring.
262         Updated all callers.
263         (ds_init_cstr) New function.  Replaces ds_create().  All callers
264         updated.
265         (ds_assign_substring) Changed interface to take a struct
266         substring.  Updated all callers.
267         (ds_assign_buffer) Removed.  Changed all callers to use
268         ds_assign_substring().
269         (ds_assign_c_str) Renamed ds_assign_cstr().  All callers updated.
270         (ds_ss) New function.
271         (ds_substr) New function.
272         (ds_head) New function.
273         (ds_tail) New function.
274         (ds_rtrim) New function.  Replaces ds_rtrim_spaces().  All callers
275         updated.
276         (ds_ltrim) New function.  Replaces ds_ltrim_spaces().  All callers
277         updated.
278         (ds_trim) New function.  Replaces ds_trim_spaces().  All callers
279         updated.
280         (ds_rtrim_spaces) Removed.
281         (ds_ltrim_spaces) Removed.
282         (ds_trim_spaces) Removed.
283         (ds_separate) Changed interface to use substrings.  All callers
284         updated.
285         (ds_tokenize) Changed interface to use substrings.  All callers
286         updated.
287         (ds_c_str) Renamed ds_cstr().  All callers updated.
288         (ds_span) Changed interface to use substring for SKIP_SET and
289         dropped OFS.  All callers updated.
290         (ds_cspan) Changed interface to use substring for STOP_SET and
291         dropped OFS.  All callers updated.
292         (ds_find_char) New function.
293         (ds_compare) New function.
294         (ds_pointer_to_position) New function.
295         (ds_xstrdup) New function.  Replaced all users of
296         xstrdup(ds_c_str(s)) by a call to this function.
297         (ds_gets) Renamed ds_read_line().  All callers updated.
298         (ds_get_config_line) Renamed ds_read_config_line().  All callers
299         updated.
300         (ds_puts) Renamed ds_put_cstr().  All callers updated.
301         (ds_put_substring) New function.  Replaces ds_concat().  All
302         callers updated.
303         (ds_concat) Removed.
304         (ds_append_uninit) Renamed ds_put_uninit().  All callers updated.
305         (ds_printf) Renamed ds_put_format().  All callers updated.
306         (ds_vprintf) Renamed ds_put_vformat().  All callers updated.
307         (ds_putc) Renamed ds_put_char().  All callers updated.
308         (ds_putc_multiple) Renamed ds_put_char_multiple().  All callers
309         updated.
310         (ls_create) Removed.  Replaced by ss_alloc_substring().
311         (ls_create_buffer) Removed.  Replaced by ss_alloc_substring().
312         (ls_init) Removed.  Replaced by ss_buffer().
313         (ls_shallow_copy) Removed.  Just use assignment.
314         (ls_destroy) Removed.  Replaced by ss_dealloc().
315         (ls_null) Removed.
316         (ls_null_p) Removed.
317         (ls_empty_p) Removed.  Replaced by ss_is_empty().
318         (ls_c_str) Removed.
319         (ls_end) Removed.  Replaced by ss_end().
320
321         * str.h (struct fixed_string): Renamed struct substring, updated
322         all users.
323         (CC_SPACES) New macro.
324         (CC_DIGITS) Ditto.
325         (CC_XDIGITS) Ditto.
326         (CC_LETTERS) Ditto.
327         (CC_ALNUM) Ditto.
328         (SS_EMPTY_INITIALIZER) Ditto.
329         (SS_LITERAL_INITIALIZER) Ditto.
330         (struct string) Removed string, length members.  Add substring
331         member.
332         (DS_INITIALIZER) Rename DS_EMPTY_INITIALIZER.
333
334 Tue May 30 19:45:12 WST 2006 John Darrington <john@darrington.wattle.id.au>
335
336         * i18n.c i18n.h: New files.
337
338 Tue May 16 06:50:35 2006  Ben Pfaff  <blp@gnu.org>
339
340         * automake.mk (src/libpspp/version.c): Removed groff_font_path,
341         which is no longer used.
342
343         * message.c (request_bug_report_and_abort): Don't print
344         groff_font_path, which no longer exists.
345
346         * version.h (locale_dir): Removed groff_font_path.
347
348 Sun May 14 22:06:53 2006  Ben Pfaff  <blp@gnu.org>
349
350         * str.c (spprintf): Moved definition of spprintf() here, from
351         str.h.
352
353         * str.h: (nsprintf) Removed.  Changed all users to use sprintf()
354         instead.
355         (nvsprintf) Removed.  Changed all users to use vsprintf() instead.
356
357 Sun May 14 20:52:20 2006  Ben Pfaff  <blp@gnu.org>
358
359         * str.c (ds_init): Remove `capacity' argument and just initialize
360         the string to a capacity of zero.  Updated all callers.
361
362 Tue May  9 09:56:57 2006  Ben Pfaff  <blp@gnu.org>
363
364         * va_copy.h: Removed.  Now use va_copy() provided by gnulib
365         instead.
366
367         * automake.mk: (src_libpspp_libpspp_a_SOURCES) Removed va_copy.h.
368
369 Sun May  7 18:17:32 2006  Ben Pfaff  <blp@gnu.org>
370
371         * pool.c (pool_vasprintf): New function.
372         (pool_asprintf) New function.
373
374 Sun May  7 17:09:54 2006  Ben Pfaff  <blp@gnu.org>
375
376         * compiler.h: (macro WARN_UNUSED_RESULT) New macro.
377
378 Sun May  7 14:32:25 2006  Ben Pfaff  <blp@gnu.org>
379
380         * va_copy.h: New header.
381
382         * str.c: Use header instead of inlining va_copy() macro
383         implementation.
384
385 Sun May  7 10:06:29 WST 2006 John Darrington <john@darrington.wattle.id.au>
386
387         * array.c array.h: Constness of sort.
388
389 Thu May  4 18:01:37 WST 2006 John Darrington <john@darrington.wattle.id.au>
390
391         * message.c message.h: Added functions to create and copy a msg.
392
393 Tue May  2 15:41:50 2006  Ben Pfaff  <blp@gnu.org>
394
395         * str.c (ds_append_uninit): No need to add 1 to arg passed to
396         ds_extend(), because the argument does not include space for a
397         null terminator.  Also, fix warning.
398
399 Tue Apr 25 11:07:19 2006  Ben Pfaff  <blp@gnu.org>
400
401         Finish reforming error message support.  In this phase, move
402         message.c into libpspp.
403         
404         * message.c: Move here from src/.  Also remove a few unneeded
405         headers.
406
407         * automake.mk (src_libpspp_libpspp_a_SOURCES): Add message.c. 
408
409 Tue Apr 25 10:54:44 2006  Ben Pfaff  <blp@gnu.org>
410
411         Continue reforming error message support.  In this phase, drop
412         actual message printing from core code, substituting a callback,
413         and add the callback to each UI.  Also, move verbose_msg() into
414         its own module.
415
416         * automake.mk (src_libpspp_libpspp_a_SOURCES): Added
417         verbose-msg.c, verbose-msg.h.
418
419         * verbose-msg.c: New file.
420
421         * verbose-msg.h: New file.
422
423 Mon Apr 24 17:26:47 2006  Ben Pfaff  <blp@gnu.org>
424
425         Continue reforming error message support.  In this phase, rename
426         all the message functions and types to start with "msg", except
427         for the ones that will be moving to other modules anyway.
428
429         All references to the identifiers below were updated likewise.
430         
431         * message.h: (enum file_locator) Renamed `enum msg_locator'.
432         (struct error) Renamed `struct msg'.
433         (err_assert_fail) Renamed msg_assert_fail().
434
435 Sun Apr 23 22:07:06 2006  Ben Pfaff  <blp@gnu.org>
436
437         Continue reforming error message support.  In this phase, get rid
438         of message "titles" and put the message text in `struct error'.
439         Now `struct error' encapsulates a message more properly.
440         
441         * message.h: (struct error) Remove `title' member.  Add `text'
442         member.
443         
444 Sun Apr 16 20:43:35 2006  Ben Pfaff  <blp@gnu.org>
445
446         Continue reforming error message support.  In this phase, we
447         divide the classification of messages along "category" and
448         "severity" axes.
449
450         * message.h: (enum msg_class) Named this set of enumerations.
451         (enum msg_category) New enum: MSG_GENERAL, MSG_SYNTAX, MSG_DATA.
452         (enum msg_severity) New enum: MSG_ERROR, MSG_WARNING, MSG_NOTE.
453         (msg_class_to_category) New inline function.
454         (msg_class_to_severity) New inline function.
455         (msg_class_from_category_and_severity) New inline function.
456         (struct error) Removed `class' member, added `category',
457         `severity'.  Updated all users of this struct to use the new
458         members.
459
460 Sun Apr 16 20:33:19 2006  Ben Pfaff  <blp@gnu.org>
461
462         * str.c (ds_vprintf): Don't try to write into the string if it is
463         null.
464
465 Sun Apr 16 18:52:41 2006  Ben Pfaff  <blp@gnu.org>
466
467         GNU standards require "file name" instead of "filename" in
468         documentation.  It's nice for our code to follow the convention
469         too.
470         
471         * message.h: (struct file_locator) Rename filename member to
472         file_name.  Updated all references.
473
474 Sun Apr 16 16:05:43 2006  Ben Pfaff  <blp@gnu.org>
475
476         Continue reforming error message support.  In this phase, we get
477         rid of VM() and the other msg() support for "verbosity", replacing
478         it by a new function verbose_msg().
479
480         * message.h: (enum ERR_CLASS_COUNT) Renamed ERR_CLASS_CNT.
481         (enum ERR_CLASS_MASK) Removed.
482         (enum ERR_VERBOSITY_SHIFT) Removed.
483         (enum ERR_VERBOSITY_MASK) Removed.
484         (macro VM) Removed.
485
486 Sun Apr 16 11:48:07 2006  Ben Pfaff  <blp@gnu.org>
487
488         Start reforming error message support.  In this phase, we get rid
489         of "installation errors" and change all uses of msg() in the
490         output drivers to uses of error() or error_at_line().
491
492         * message.h: Remove IE, IS enums.
493
494 Mon Apr  3 11:10:21 2006  Ben Pfaff  <blp@gnu.org>
495
496         * str.c: (ds_separate) Change interface for cleanliness and
497         consistency with ds_tokenize(), and rewrite to shorten and
498         simplify.  Updated all callers.
499         (ds_tokenize) New function.
500
501 Fri Mar 31 10:38:46 2006  Ben Pfaff  <blp@gnu.org>
502
503         Add freaderror() analogous to fwriteerror() in gnulib.
504
505         * freaderror.c: New file.
506
507         * freaderror.h: New file.
508
509 Thu Mar 30 16:15:37 2006  Ben Pfaff  <blp@gnu.org>
510
511         * str.c: (ds_create) Adjust capacity selection.
512         (ds_init) Use MAX macro for clarity.
513         (ds_create_substr) Rewrote.
514         (ds_replace) Renamed ds_assign_c_str(), reimplemented.  Changed
515         all callers to use a ds_assign_*() function.
516         (ds_init_substring) New function.
517         (ds_assign_string) New function.
518         (ds_assign_substring) New function.
519         (ds_assign_buffer) New function.
520         (ds_assign_c_str) New function.
521         (ds_truncate) Rewrote for clarity.
522         (ds_rpad) Reimplement in terms of ds_putc_multiple().
523         (ds_ltrim_spaces) Reimplement.
524         (ds_trim_spaces) New function.
525         (ds_separate) New function.
526         (ds_c_str) Make tolerant of null pointer, allowing static
527         initialization of strings.
528         (ds_find) Rename ds_span(), change interface.
529         (ds_n_find) Rename ds_cspan(), change interface.
530         (ds_at) New function.
531         (ds_first) Reimplement in terms of ds_at().
532         (remove_comment) New function.
533         (ds_get_config_line) Reimplement in terms of other functions.
534         Change type of LINE_NUMBER parameter.  Updated all callers.
535         (ds_vprintf) Modify for clarity.
536         (ds_putc) Better to be safe than sorry.
537         (ds_putc_multiple) New function.
538
539         * str.h: (struct string) Reorder members.
540         (macro DS_INITIALIZER) New macro that can be used to initialize a
541         string (as empty).
542         (ds_c_str) Remove inline version.
543
544 Tue Mar 28 13:49:11 WST 2006 John Darrington <john@darrington.wattle.id.au>
545
546         * str.[ch]: New functions ds_create_substr, ds_find, ds_n_find, 
547         ds_ltrim_spaces
548
549 Sat Mar  4 12:59:01 2006  Ben Pfaff  <blp@gnu.org>
550
551         * compiler.h: New file.
552
553 Sat Mar  4 11:55:16 2006  Ben Pfaff  <blp@gnu.org>
554
555         * str.h: Now assume that sprintf() returns the correct value.
556         Always implement spprintf as a static inline function.  Change
557         nsprintf, nvsprintf to simple macros that call sprintf, vsprintf.
558
559         * str.c: Remove spprintf, nsprintf, nvsprintf conditional
560         definitions.
561
562 Thu Mar  2 08:40:33 WST 2006 John Darrington <john@darrington.wattle.id.au>
563         
564         * Moved files from src directory