1 Sun Dec 10 13:54:03 2006 Ben Pfaff <blp@gnu.org>
3 * str.c (ss_tokenize): Skip the first delimiter character
4 following the token. Otherwise, changing delimiters from token to
5 token can't have a sensible effect, because we'll get the previous
6 delimiter as part of the next token.
7 (ss_match_string): New function.
9 Sat Dec 9 18:48:55 2006 Ben Pfaff <blp@gnu.org>
11 * misc.h (macro range): Removed, as it was unused.
13 Sat Dec 9 07:19:01 WST 2006 John Darrington <john@darrington.wattle.id.au>
15 * array.c: Removed gratuitous #include
17 Thu Dec 7 20:33:23 WST 2006 John Darrington <john@darrington.wattle.id.au>
19 * getl.c getl.h : Changed signature of create function to take a
20 string indicating the initial include path.
22 Sun Dec 3 11:36:10 2006 Ben Pfaff <blp@gnu.org>
24 * str.h (SS_LITERAL_INITIALIZER): Cast the string literal to "char
25 *". This normally does nothing but when GCC's -Wwrite-strings is
26 used it fixes a warning that otherwise can't be avoided.
28 Sun Dec 3 11:35:35 2006 Ben Pfaff <blp@gnu.org>
30 * str.c (ss_alloc_substring_pool): New function.
31 (ss_alloc_uninit_pool) New function.
33 Sun Dec 3 11:28:06 2006 Ben Pfaff <blp@gnu.org>
35 * getl.h: (enum getl_syntax) New enumeration to distinguish
36 between "batch" and "interactive" in a clearer way than a bool.
37 (struct getl_interface) Add an arg to "read" to return the
38 intended syntax mode. Add an arg to "filter" to specify the
39 syntax mode of the line to filter.
41 * getl.c (do_read_line): Instead of returning the syntax type of
42 the line read based on whether the source itself is interactive,
43 return it based on whether the line itself should be treated as
44 having batch or interactive syntax. Also, adapt interface to the
45 new interfaces of lex_init() and getl_interface.
47 Wed Nov 29 19:35:44 WST 2006 John Darrington <john@darrington.wattle.id.au>
49 * getl.c getl.h: New files. Created interface from base of
50 language/line-buffer.[ch]
52 * msg-locator.c msg-locator.h: New files. Moved from
53 language/line-buffer.[ch]
55 Fri Nov 24 17:27:00 2006 Ben Pfaff <blp@gnu.org>
57 * misc.h: (min) Removed. All references updated to use MIN, from
58 minmax.h provided by gnulib.
59 (max) Ditto (for MAX).
61 Sun Nov 19 09:22:26 2006 Ben Pfaff <blp@gnu.org>
63 * str.c (ss_get_long): New function.
64 (ss_compare_case) Ditto.
66 (ss_equals_case) Ditto.
68 Tue Oct 31 19:28:19 2006 Ben Pfaff <blp@gnu.org>
70 * str.h: [!HAVE_STRCHR] Drop compatibility code, because now we
71 assume a C89 compliant library. (Gnulib makes this assumption so
72 we might as well too.)
73 [!HAVE_STRRCHR] Ditto.
75 Thu Oct 26 20:19:50 2006 Ben Pfaff <blp@gnu.org>
77 * automake.mk: Add the new files.
79 * legacy-encoding.c: New file.
81 * legacy-encoding.h: New file.
83 * float-format.c: New file.
85 * float-format.h: New file.
87 * integer-format.c: New file.
89 * integer-format.h: New file.
91 Sun Oct 15 09:49:50 WST 2006 John Darrington <john@darrington.wattle.id.au>
93 * hash.c hash.h: Added hsh_create_pool, a hash which uses a pool
94 for its memory allocation.
96 Mon Jul 31 15:49:46 2006 Ben Pfaff <blp@gnu.org>
98 * compiler.h: (macro CONST_FUNCTION) New macro.
99 (macro PURE_FUNCTION) New macro.
101 Sun Jul 16 21:07:35 2006 Ben Pfaff <blp@gnu.org>
103 * message.c: (static int messages_disabled) New variable.
104 (msg_emit) Don't emit the message if messages are disabled.
105 (msg_disable) New function.
106 (msg_enable) New function.
108 * str.c: (free_string) New function.
109 (ds_register_pool) New function.
110 (ds_unregister_pool) New function.
111 (ds_set_length) New function.
113 Mon Jul 10 17:26:58 WST 2006 John Darrington <john@darrington.wattle.id.au>
115 * llx.c: #included compiler.h and removed explicit preprocessor cruft.
117 Fri Jul 7 20:01:26 2006 Ben Pfaff <blp@gnu.org>
119 * automake.mk: (src_libpspp_libpspp_a_SOURCES) Add assertion.h.
121 * assertion.h: New file. Replaced usage of assert(0) and abort()
122 with NOT_REACHED() from this file throughout the source tree.
124 * message.c: (request_bug_report_and_abort) Revise message printed
125 to include request to include lines above the message, which
126 should include an assertion failure message in many cases.
127 (msg_assert_fail) Removed.
129 * message.h: (assert) Removed.
130 (request_bug_report_and_abort) Mark NO_RETURN.
132 Mon Jul 3 09:36:42 WST 2006 John Darrington <john@darrington.wattle.id.au>
134 * i18n.c: Made character conversion tolerant of failure to create the
135 necessary iconv structs.
137 Sat Jul 1 15:32:54 2006 Ben Pfaff <blp@gnu.org>
139 * automake.mk: (src_libpspp_libpspp_a_SOURCES) Add new files.
149 Sun Jun 25 22:35:28 2006 Ben Pfaff <blp@gnu.org>
151 Optimize rehashing: we know that none of the entries in the hash
152 table are equal, so we need not compare them to each other during
155 * hash.c: (locate_empty_entry) New function.
156 (rehash) Use locate_empty_entry() instead of
157 locate_matching_entry().
159 Fri Jun 9 14:03:29 2006 Ben Pfaff <blp@gnu.org>
161 Reform string library.
163 * str.c (ss_empty): New function. Replaces some uses of ls_init()
165 (ss_cstr) New function. Replaces some uses of ls_init().
166 (ss_buffer) New function. Replaces some uses of ls_init().
167 (ss_substr) New function.
168 (ss_head) New function.
169 (ss_tail) New function.
170 (ss_alloc_substring) New function. Replaces use of ls_create().
171 (ss_alloc_uninit) New function.
172 (ss_dealloc) New function. Replaces use of ls_destroy().
173 (ss_truncate) New function.
174 (ss_rtrim) New function.
175 (ss_ltrim) New function.
176 (ss_trim) New function.
177 (ss_chomp) New function.
178 (ss_separate) New function.
179 (ss_tokenize) New function.
180 (ss_advance) New function.
181 (ds_create) Renamed ds_init_cstr(). Updated all callers.
182 (ss_match_char) New function.
183 (ss_get_char) New function.
184 (ss_get_until) New function.
185 (ss_get_chars) New function.
186 (ss_is_empty) New function.
187 (ss_length) New function. Replaces ls_length().
188 (ss_data) New function. Replaces many uses of ls_c_str().
189 (ss_end) New function. Replaces ls_end().
190 (ss_at) New function.
191 (ss_first) New function.
192 (ss_last) New function.
193 (ss_span) New function.
194 (ss_cspan) New function.
195 (ss_compare) New function.
196 (ss_pointer_to_position) New function.
197 (ss_xstrdup) New function.
198 (ds_init) Renamed ds_init_empty(). All callers updated.
199 (ds_init_string) New function.
200 (ds_init_substring) Changed interface to take a struct substring.
202 (ds_init_cstr) New function. Replaces ds_create(). All callers
204 (ds_assign_substring) Changed interface to take a struct
205 substring. Updated all callers.
206 (ds_assign_buffer) Removed. Changed all callers to use
207 ds_assign_substring().
208 (ds_assign_c_str) Renamed ds_assign_cstr(). All callers updated.
209 (ds_ss) New function.
210 (ds_substr) New function.
211 (ds_head) New function.
212 (ds_tail) New function.
213 (ds_rtrim) New function. Replaces ds_rtrim_spaces(). All callers
215 (ds_ltrim) New function. Replaces ds_ltrim_spaces(). All callers
217 (ds_trim) New function. Replaces ds_trim_spaces(). All callers
219 (ds_rtrim_spaces) Removed.
220 (ds_ltrim_spaces) Removed.
221 (ds_trim_spaces) Removed.
222 (ds_separate) Changed interface to use substrings. All callers
224 (ds_tokenize) Changed interface to use substrings. All callers
226 (ds_c_str) Renamed ds_cstr(). All callers updated.
227 (ds_span) Changed interface to use substring for SKIP_SET and
228 dropped OFS. All callers updated.
229 (ds_cspan) Changed interface to use substring for STOP_SET and
230 dropped OFS. All callers updated.
231 (ds_find_char) New function.
232 (ds_compare) New function.
233 (ds_pointer_to_position) New function.
234 (ds_xstrdup) New function. Replaced all users of
235 xstrdup(ds_c_str(s)) by a call to this function.
236 (ds_gets) Renamed ds_read_line(). All callers updated.
237 (ds_get_config_line) Renamed ds_read_config_line(). All callers
239 (ds_puts) Renamed ds_put_cstr(). All callers updated.
240 (ds_put_substring) New function. Replaces ds_concat(). All
243 (ds_append_uninit) Renamed ds_put_uninit(). All callers updated.
244 (ds_printf) Renamed ds_put_format(). All callers updated.
245 (ds_vprintf) Renamed ds_put_vformat(). All callers updated.
246 (ds_putc) Renamed ds_put_char(). All callers updated.
247 (ds_putc_multiple) Renamed ds_put_char_multiple(). All callers
249 (ls_create) Removed. Replaced by ss_alloc_substring().
250 (ls_create_buffer) Removed. Replaced by ss_alloc_substring().
251 (ls_init) Removed. Replaced by ss_buffer().
252 (ls_shallow_copy) Removed. Just use assignment.
253 (ls_destroy) Removed. Replaced by ss_dealloc().
256 (ls_empty_p) Removed. Replaced by ss_is_empty().
258 (ls_end) Removed. Replaced by ss_end().
260 * str.h (struct fixed_string): Renamed struct substring, updated
262 (CC_SPACES) New macro.
267 (SS_EMPTY_INITIALIZER) Ditto.
268 (SS_LITERAL_INITIALIZER) Ditto.
269 (struct string) Removed string, length members. Add substring
271 (DS_INITIALIZER) Rename DS_EMPTY_INITIALIZER.
273 Tue May 30 19:45:12 WST 2006 John Darrington <john@darrington.wattle.id.au>
275 * i18n.c i18n.h: New files.
277 Tue May 16 06:50:35 2006 Ben Pfaff <blp@gnu.org>
279 * automake.mk (src/libpspp/version.c): Removed groff_font_path,
280 which is no longer used.
282 * message.c (request_bug_report_and_abort): Don't print
283 groff_font_path, which no longer exists.
285 * version.h (locale_dir): Removed groff_font_path.
287 Sun May 14 22:06:53 2006 Ben Pfaff <blp@gnu.org>
289 * str.c (spprintf): Moved definition of spprintf() here, from
292 * str.h: (nsprintf) Removed. Changed all users to use sprintf()
294 (nvsprintf) Removed. Changed all users to use vsprintf() instead.
296 Sun May 14 20:52:20 2006 Ben Pfaff <blp@gnu.org>
298 * str.c (ds_init): Remove `capacity' argument and just initialize
299 the string to a capacity of zero. Updated all callers.
301 Tue May 9 09:56:57 2006 Ben Pfaff <blp@gnu.org>
303 * va_copy.h: Removed. Now use va_copy() provided by gnulib
306 * automake.mk: (src_libpspp_libpspp_a_SOURCES) Removed va_copy.h.
308 Sun May 7 18:17:32 2006 Ben Pfaff <blp@gnu.org>
310 * pool.c (pool_vasprintf): New function.
311 (pool_asprintf) New function.
313 Sun May 7 17:09:54 2006 Ben Pfaff <blp@gnu.org>
315 * compiler.h: (macro WARN_UNUSED_RESULT) New macro.
317 Sun May 7 14:32:25 2006 Ben Pfaff <blp@gnu.org>
319 * va_copy.h: New header.
321 * str.c: Use header instead of inlining va_copy() macro
324 Sun May 7 10:06:29 WST 2006 John Darrington <john@darrington.wattle.id.au>
326 * array.c array.h: Constness of sort.
328 Thu May 4 18:01:37 WST 2006 John Darrington <john@darrington.wattle.id.au>
330 * message.c message.h: Added functions to create and copy a msg.
332 Tue May 2 15:41:50 2006 Ben Pfaff <blp@gnu.org>
334 * str.c (ds_append_uninit): No need to add 1 to arg passed to
335 ds_extend(), because the argument does not include space for a
336 null terminator. Also, fix warning.
338 Tue Apr 25 11:07:19 2006 Ben Pfaff <blp@gnu.org>
340 Finish reforming error message support. In this phase, move
341 message.c into libpspp.
343 * message.c: Move here from src/. Also remove a few unneeded
346 * automake.mk (src_libpspp_libpspp_a_SOURCES): Add message.c.
348 Tue Apr 25 10:54:44 2006 Ben Pfaff <blp@gnu.org>
350 Continue reforming error message support. In this phase, drop
351 actual message printing from core code, substituting a callback,
352 and add the callback to each UI. Also, move verbose_msg() into
355 * automake.mk (src_libpspp_libpspp_a_SOURCES): Added
356 verbose-msg.c, verbose-msg.h.
358 * verbose-msg.c: New file.
360 * verbose-msg.h: New file.
362 Mon Apr 24 17:26:47 2006 Ben Pfaff <blp@gnu.org>
364 Continue reforming error message support. In this phase, rename
365 all the message functions and types to start with "msg", except
366 for the ones that will be moving to other modules anyway.
368 All references to the identifiers below were updated likewise.
370 * message.h: (enum file_locator) Renamed `enum msg_locator'.
371 (struct error) Renamed `struct msg'.
372 (err_assert_fail) Renamed msg_assert_fail().
374 Sun Apr 23 22:07:06 2006 Ben Pfaff <blp@gnu.org>
376 Continue reforming error message support. In this phase, get rid
377 of message "titles" and put the message text in `struct error'.
378 Now `struct error' encapsulates a message more properly.
380 * message.h: (struct error) Remove `title' member. Add `text'
383 Sun Apr 16 20:43:35 2006 Ben Pfaff <blp@gnu.org>
385 Continue reforming error message support. In this phase, we
386 divide the classification of messages along "category" and
389 * message.h: (enum msg_class) Named this set of enumerations.
390 (enum msg_category) New enum: MSG_GENERAL, MSG_SYNTAX, MSG_DATA.
391 (enum msg_severity) New enum: MSG_ERROR, MSG_WARNING, MSG_NOTE.
392 (msg_class_to_category) New inline function.
393 (msg_class_to_severity) New inline function.
394 (msg_class_from_category_and_severity) New inline function.
395 (struct error) Removed `class' member, added `category',
396 `severity'. Updated all users of this struct to use the new
399 Sun Apr 16 20:33:19 2006 Ben Pfaff <blp@gnu.org>
401 * str.c (ds_vprintf): Don't try to write into the string if it is
404 Sun Apr 16 18:52:41 2006 Ben Pfaff <blp@gnu.org>
406 GNU standards require "file name" instead of "filename" in
407 documentation. It's nice for our code to follow the convention
410 * message.h: (struct file_locator) Rename filename member to
411 file_name. Updated all references.
413 Sun Apr 16 16:05:43 2006 Ben Pfaff <blp@gnu.org>
415 Continue reforming error message support. In this phase, we get
416 rid of VM() and the other msg() support for "verbosity", replacing
417 it by a new function verbose_msg().
419 * message.h: (enum ERR_CLASS_COUNT) Renamed ERR_CLASS_CNT.
420 (enum ERR_CLASS_MASK) Removed.
421 (enum ERR_VERBOSITY_SHIFT) Removed.
422 (enum ERR_VERBOSITY_MASK) Removed.
425 Sun Apr 16 11:48:07 2006 Ben Pfaff <blp@gnu.org>
427 Start reforming error message support. In this phase, we get rid
428 of "installation errors" and change all uses of msg() in the
429 output drivers to uses of error() or error_at_line().
431 * message.h: Remove IE, IS enums.
433 Mon Apr 3 11:10:21 2006 Ben Pfaff <blp@gnu.org>
435 * str.c: (ds_separate) Change interface for cleanliness and
436 consistency with ds_tokenize(), and rewrite to shorten and
437 simplify. Updated all callers.
438 (ds_tokenize) New function.
440 Fri Mar 31 10:38:46 2006 Ben Pfaff <blp@gnu.org>
442 Add freaderror() analogous to fwriteerror() in gnulib.
444 * freaderror.c: New file.
446 * freaderror.h: New file.
448 Thu Mar 30 16:15:37 2006 Ben Pfaff <blp@gnu.org>
450 * str.c: (ds_create) Adjust capacity selection.
451 (ds_init) Use MAX macro for clarity.
452 (ds_create_substr) Rewrote.
453 (ds_replace) Renamed ds_assign_c_str(), reimplemented. Changed
454 all callers to use a ds_assign_*() function.
455 (ds_init_substring) New function.
456 (ds_assign_string) New function.
457 (ds_assign_substring) New function.
458 (ds_assign_buffer) New function.
459 (ds_assign_c_str) New function.
460 (ds_truncate) Rewrote for clarity.
461 (ds_rpad) Reimplement in terms of ds_putc_multiple().
462 (ds_ltrim_spaces) Reimplement.
463 (ds_trim_spaces) New function.
464 (ds_separate) New function.
465 (ds_c_str) Make tolerant of null pointer, allowing static
466 initialization of strings.
467 (ds_find) Rename ds_span(), change interface.
468 (ds_n_find) Rename ds_cspan(), change interface.
469 (ds_at) New function.
470 (ds_first) Reimplement in terms of ds_at().
471 (remove_comment) New function.
472 (ds_get_config_line) Reimplement in terms of other functions.
473 Change type of LINE_NUMBER parameter. Updated all callers.
474 (ds_vprintf) Modify for clarity.
475 (ds_putc) Better to be safe than sorry.
476 (ds_putc_multiple) New function.
478 * str.h: (struct string) Reorder members.
479 (macro DS_INITIALIZER) New macro that can be used to initialize a
481 (ds_c_str) Remove inline version.
483 Tue Mar 28 13:49:11 WST 2006 John Darrington <john@darrington.wattle.id.au>
485 * str.[ch]: New functions ds_create_substr, ds_find, ds_n_find,
488 Sat Mar 4 12:59:01 2006 Ben Pfaff <blp@gnu.org>
490 * compiler.h: New file.
492 Sat Mar 4 11:55:16 2006 Ben Pfaff <blp@gnu.org>
494 * str.h: Now assume that sprintf() returns the correct value.
495 Always implement spprintf as a static inline function. Change
496 nsprintf, nvsprintf to simple macros that call sprintf, vsprintf.
498 * str.c: Remove spprintf, nsprintf, nvsprintf conditional
501 Thu Mar 2 08:40:33 WST 2006 John Darrington <john@darrington.wattle.id.au>
503 * Moved files from src directory