enable test for xml pattern
[mono.git] / eglib / ChangeLog
1 2007-11-20  Dick Porter  <dick@ximian.com>
2
3         * src/gstr.c: Implement g_strsplit_set() and re-implement
4         g_strsplit() so it passes the additional tests. (g_strsplit()
5         should treat multi-char delimiters as just a single token, rather
6         than a set of delimiters.)
7
8         * src/gslist.c: Implement g_slist_index(), g_slist_nth() and
9         g_slist_nth_data().
10
11         * test/string-util.c: Test g_strsplit_set() and more tests for
12         g_strsplit().
13
14         * test/slist.c: Test g_slist_nth() and
15         g_slist_index().
16
17 2007-11-06  Geoff Norton  <gnorton@novell.com>
18
19         * configure.ac: Check for libiconv_open as the previous check was failing against 
20         some versions of libiconv.
21
22 2007-11-06  Andreas Faerber  <andreas.faerber@web.de>
23
24         * test/Makefile.am: Fix noinst_PROGRAMS for automake 1.6.3
25                             Add support for VPATH
26
27 2007-11-06  Geoff Norton  <gnorton@novell.com>
28
29         * configure.ac: Determing if glib-2.0 is installed and set HAVE_GLIB appropriately
30         * test/Makefile.am: Only build test-glib if glib-2.0 is available
31
32 2007-11-05  Geoff Norton  <gnorton@novell.com>
33
34         * configure.ac: Check for getpwent_r and wether libiconv is needed to be linked.
35         Also look to see if we can use export-dynamic in the test suite.
36         * test/Makefile.am: Get LDFLAGS from configure instead of setting them.
37         * src/gerror.c: Implement g_clear_error.
38         * src/glib.h: Only use the format, ... convention is HAVE_C99_SUPPORT is available.
39         * src/gpath.c: Only use the getpwent_r codepath if getpwent_r is available.
40         * src/gspawn.c: Define environ to call _NSGetEnviron() on Apple.
41         * src/Makefile.am: Remove -Werror so we dont fail on different function declarations.
42                 Portions of all of the above are from Andreas Faerber & Jonathan Chambers
43         
44 2007-10-31  Jonathan Chambers <joncham@gmail.com>
45         
46         * src/ghashtable.c: Add g_hash_table_foreach_steal.
47         * src/garray.c: Add g_array_remove_index_fast.
48         * src/gpath.c (g_path_is_absolute): Handle windows paths.
49         * src/glib.h: Add g_hash_table_foreach_steal and g_array_remove_index_fast
50         
51         Contribution is licensed as MIT/X11.
52
53 2007-06-13  Jonathan Chambers <joncham@gmail.com>
54         
55         * src/gunicode.c: Add g_unichar_isxdigit and g_unichar_xdigit_value.
56         * src/gmisc.c: Add g_win32_getlocale stub.
57         * src/glib.h: Add declarations of above functions,
58         GFreeFunc typedef, and CLAMP, GUINT_TO_LE, and threading
59         macros.
60         
61         * test/string-util.c: Fix warning.
62         * test/utf8.c: Add test for g_unichar_xdigit_value.
63         
64         Contribution is licensed as MIT/X11.
65
66 2007-05-05  Aaron Bockover  <abockover@novell.com>
67
68         * src/gstr.c:
69         * src/glib.h: Added g_ascii_tolower implementation; make g_ascii_strdown
70         use it to do the transformation
71
72         * test/string-util.c: Added a test for g_ascii_strdown
73
74 2007-04-27  Jonathan Chambers <joncham@gmail.com>
75         
76         * src/gstr.c: Fix off by one error in g_strdup allocation.
77
78 2007-04-27  Jonathan Chambers <joncham@gmail.com>
79         
80         * src/eglib-config.hw: Forgot to add for msvc build.
81         * src/vasprintf: Forgot to add for msvc build.
82
83 2007-04-27  Jonathan Chambers <joncham@gmail.com>
84         
85         * src/gstr.c: Fix off by one error for NULL terminator.
86
87 2007-04-27  Jonathan Chambers <joncham@gmail.com>
88         
89         Combined patch from Michael Jerris <mike@jerris.com> and me.
90         * winconfig.h: Config file for msvc builds.
91         * configure.ac: Add AC_CHECK_HEADERS for getopt.h,  sys/time.h,
92         sys/wait.h, and pwd.h.
93         
94         * src/gspawn.c: Include config.h and use HAVE_* macros.
95         * src/eglib-config.h.in: Add inclusion guards.
96         * src/ghashtable.c: Fix warnings.
97         * src/gmisc.c: Windows implementation of g_getenv, g_setenv,
98         and g_unsetenv.
99         * src/gpath.c: Include config.h and use HAVE_* macros.
100         * src/gmarkup.c: Fix warnings.
101         * src/gptrarray.c: Fix warnings.
102         * src/gstr.c: Fix warnings and use HAVE_* macros.
103         * src/glib.h: Move macros to eglib-config.h and include it.
104         * src/gdate.c: Implement g_get_current_time on windows.
105         * src/gpattern.c: Fix warnings.
106         * src/gdir.c: Implement g_dir on windows.
107         * src/gfile.c: Implement mkstemp and g_file_test on windows.
108         * src/gtimer.c: Implement g_timer on windows.
109         * src/gmodule.c: Fix warnings.
110         * src/gunicode.c: Fix warnings.
111         * src/gutf8.c: Fix warnings.
112         
113         * test/ptrarray.c: Fix warnings.
114         * test/string.c: Fix warnings.
115         * test/list.c: Fix warnings.
116         * test/pattern.c: Use HAVE_* macros.
117         * test/dir.c: Use HAVE_* macros.
118         * test/file.c: Use HAVE_* macros and use system specific files for tests.
119         * test/test.c: Fix warnings and use HAVE_* macros.
120         * test/timer.c: Use HAVE_* macros.
121         * test/string-util.c: Fix warnings.
122         * test/test.h: Supress warnings on msvc.
123         * test/module.c: Use HAVE_* macros.
124         * test/utf8.c: Fix warnings.
125         * test/spawn.c: Use HAVE_* macros.
126         * test/driver.c: Fix warnings and use HAVE_* macros.
127         * test/path.c: Use HAVE_* macros and use system specific files for tests.
128         * test/sizes.c: Fix warnings.
129
130 2007-04-24  Jonathan Chambers <joncham@gmail.com>
131         
132         Patch from Michael Jerris <mike@jerris.com>
133         * src/gspawn.c: Start msvc build.
134         * src/gpath.c: Start msvc build.
135         * src/gmarkup.c: Start msvc build.
136         * src/gshell.c: Start msvc build.
137         * src/gstr.c: Start msvc build.
138         * src/glist.c: Start msvc build.
139         * src/glib.h: Start msvc build.
140         * src/gdate.c: Start msvc build.
141         * src/gpattern.c: Start msvc build.
142         * src/gdir.c: Start msvc build.
143         * src/gfile.c: Start msvc build.
144         * src/gtimer.c: Start msvc build.
145         * src/gmodule.c: Start msvc build.
146         * src/gunicode.c: Start msvc build.
147
148 2007-01-27  Robert Jordan  <robertj@gmx.net>
149
150         * test/Makefile.am: Add linker option to be able to
151         load symbols from the main program.
152         * test/module.c: Clean-ups.
153
154 2007-01-26  Robert Jordan  <robertj@gmx.net>
155
156         * configure.ac: Add PLATFORM_WIN32 conditional.
157         * src/Makefile.ac: Use PLATFORM_WIN32 conditional for psapi, iconv
158         * test/module.c, test/tests.h, test/Makefile.am: New test for gmodule.
159         * src/gmodule.h: Add G_MODULE_{IMPORT|EXPORT} defines.
160         * src/gmodule.c (g_module_symbol): Implement in-proc symbol lookup
161         for Win32.
162         * src/gmodule.c: Add GModule.main_module, consider it in
163         g_module_close ().
164         * src/gpath.c (g_get_home_dir): Add dummy Win32 implementation to
165         fix the build.
166
167 2006-11-03  Miguel de Icaza  <miguel@novell.com>
168
169         * src/gpath.c (g_path_get_dirname): If the pathname starts with a
170         "/", return the "/".
171
172         * test/string-util.c (test_strlcpy): Add new test.
173
174         * src/gunicode.c (g_filename_from_utf8): g_strlcpy needs the full
175         size, with the extra zero at the end;  Fixes the stack trace
176         issue. 
177
178 2006-10-30  Miguel de Icaza  <miguel@novell.com>
179
180         * test/utf8.c (test_utf8_seq): Add new failing test.
181
182 2006-10-30  Atsushi Enomoto  <atsushi@ximian.com>
183
184         * src/gutf8.c : several fixes:
185           - fixed incorrect mb_size clear and mb_remain computation.
186           - initialize items_written to 0 for error case.
187           - in utf8_to_utf16_len differentiate error messages completely.
188           - in g_utf8_to_utf16 use guchar instead of gchar.
189         * test/utf8.c : added test case string in test_utf8_seq() to
190           both test_utf8_to_utf16() and test_utf16_to_utf8().
191
192 2006-10-21  Miguel de Icaza  <miguel@novell.com>
193
194         * src/gunicode.c (g_filename_from_utf8): Use g_strlcpy here. 
195
196         * src/gmarkup.c (g_markup_parse_context_parse): Do not dereference
197         null values here.   This gets things a little bit further in
198         corlib, but not too far.
199
200         * src/gdir.c (g_dir_read_name): Do not return . or ..
201
202         * src/gstr.c (g_ascii_xdigit_value): Make this into a function,
203         thanks to Paolo for pointing the problem with the double macro
204         expansion. 
205
206         * src/gmodule.c (g_module_open): Actually return NULL if we fail
207         to load the module (was hiding the real bug in the pinvoke tests).
208
209         (g_module_build_path): Do not prepend "lib" if the "lib" is part
210         of the call.
211
212         * src/gstr.c (g_strsplit): this routine has some non-expected
213         behavior, if the string begins with the delimiter, it will return
214         an empty first string, unlike strtok
215
216         * src/gpath.c (g_path_get_dirname): Return "." as a dirname for
217         paths that do not contain a directory.
218
219 2006-10-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
220
221         * test/array.c: new test for insertion in the middle of other values.
222         * src/garray.c: fixed destination index.
223
224 2006-10-18  Miguel de Icaza  <miguel@novell.com>
225
226         * src/gpath.c (g_build_path): Do not append terminator if the next
227         string is empty.
228
229         * src/gutf8.c (g_utf8_to_utf16): Include trailing zero as
230         documented.
231         (g_utf16_to_utf8): Include trailing zero as documented.
232
233 2006-10-17  Miguel de Icaza  <miguel@novell.com>
234
235         * src/gstr.c (g_strdown): Actually move.
236
237         * src/gmarkup.c (g_markup_parse_context_parse): Accept dots in the
238         sequence, reset the state after a closing element.
239
240         * src/garray.c (g_array_insert_vals): Shift the elements the
241         correct amount.
242
243         (g_array_insert_vals): Should actually use the
244         number of elements to insert.
245
246         * test/array.c: Add new test case, this was happening in the JIT. 
247
248         * Add _GNU_SOURCE at configure time, remove from sources.
249         
250         * src/gstr.c (g_strsplit): Empty strings return a 0 value vector.
251
252         * src/glib.h (G_MAXINT64, G_MININT64): Add another set of macros
253         for the support stuff.
254         
255         Move private prototypes elsewhere
256
257         * src/glib.h (g_thread_init): Adding missing brace
258         (g_list_next): remove ; from the macro definition.
259
260 2006-10-17  Miguel de Icaza  <miguel@novell.com>
261
262         * src/gutf8.c: internal methods
263
264         * src/ghashtable.c: internal methods.
265
266 2006-10-16  Miguel de Icaza  <miguel@novell.com>
267
268         * src/gerror.c (g_propagate_error): Implement.
269
270         * src/gstr.c (g_strjoinv, g_ascii_strncasecmp): implement.
271
272         * test/string-util.c (test_ascii_strncasecmp): test
273
274 2006-10-15  Miguel de Icaza  <miguel@novell.com>
275
276         * configure.in: Fix detection of platforms the [3456] stuff does
277         not work inside autoconf.
278
279         * src/eglib-config.h.in: Make G_BREAKPOINT into a function-macro
280
281         * src/glib.h (offsetof): Mono sources depend on this, bring this
282         from the standard definition.  Redefine G_STRUCT_OFFSET in terms
283         of this. 
284         
285         * src/glib.h (G_STRUCT_OFFSET): fix macro definition. 
286         fix typo.
287
288         * src/sizes.c: Add test.
289
290         * src/gshell.c: Make it build
291         
292 2006-10-14  Miguel de Icaza  <miguel@novell.com>
293
294         * src/glib.h: add various _TO_LE and _FROM_LE macros.
295
296         * test/endian.c: tests for endian conversion macros.
297
298 2006-10-09  Miguel de Icaza  <miguel@novell.com>
299
300         * src/gmodule.h: Move definitions of gmodule to gmodule.h because
301         Mono expects it there.
302
303 Mon Oct 9 12:59:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
304
305         * src/ghashtable.c: s/to_prime/g_spaced_primes_closest/g
306         and put the array in readonly memory.
307         * src/gstr.c: fixed the build and made array const.
308         * src/gmodule.c: fixed thinko.
309
310 2006-10-08  Miguel de Icaza  <miguel@novell.com>
311
312         * src/gstr.c (g_strdup): should allow NULL as an argument.
313
314 2006-10-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
315
316         * test/string-util.c:
317         * TODO:
318         * src/gstr.c:
319         * src/glib.h: implemented g_strescape.
320
321 2006-10-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
322
323         * test/string-util.c:
324         * configure.ac:
325         * TODO:
326         * src/gstr.c:
327         * src/glib.h: implemented g_strlcpy.
328
329 2006-10-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
330
331         * test/string-util.c:
332         * TODO:
333         * src/gstr.c:
334         * src/glib.h: implemented g_strdelimit.
335
336 2006-10-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
337
338         * test/spawn.c: add search path flag when running ls.
339         * src/gspawn.c: g_spawn_command_line_sync searches the program in the
340         PATH if it's not an absolute path.
341
342 2006-10-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
343
344         * test/string-util.c:
345         * src/glib.h: implement g_ascii_xdigit_value and tests.
346
347 2006-10-06  Miguel de Icaza  <miguel@novell.com>
348
349         * src/gstr.c (g_ascii_strdown): Implement.
350
351         * str/glib.c (g_log_set_handler): empty.
352         (g_printerr): empty.
353         (GMemVTable): define, empty, ignored.
354         (G_USEC_PER_SEC) :-)
355
356         * src/gunicode.c (g_convert): Add bytes_read, bytes_written
357         support;   Small fixes to avoid valgrind errors. 
358         
359         (g_utf8_validate): Add, based on the libxml code.
360
361         gstr.c: implement g_strdown. 
362
363 2006-10-05  Miguel de Icaza  <miguel@novell.com>
364
365         * src/gunicode.c: Some work in progress to implement g_convert
366         (which is needed by g_locale_to_utf8).    
367
368 2006-09-18  Miguel de Icaza  <miguel@novell.com>
369
370         * test/string-util.c (test_filename_from_uri): tests for new
371         methods.
372
373         * src/gstr.c (g_filename_to_uri, g_filename_from_uri): implement. 
374
375 2006-09-14  Atsushi Enomoto  <atsushi@ximian.com>
376
377         * src/gutf8.c, test/utf8.c : EOL fix.
378
379 2006-09-04  Miguel de Icaza  <miguel@novell.com>
380
381         * src/gmarkup.c: The leak fixing commit.
382         
383         * src/gmarkup.c (g_markup_parse_context_end_parse): Add missing
384         method. 
385         (g_markup_parse_context_free): Implement. 
386         (parse_attributes): Store the value, not the attribute name
387         twice. 
388         Properly check the /> section.
389         (g_markup_parse_context_parse): When checking for error, use the
390         "error!=NULL && *error != NULL" upon return from callbacks,
391         it is only then that its valid to check for *error for error
392         conditions. 
393         (g_markup_parse_context_parse): Add comment processing.
394
395         Only release one element of the list.
396
397         * test/markup.c: Incorporate the kind of code that is used in Mono
398         for domain loading;  Will test the rest later. 
399
400 2006-09-01  Miguel de Icaza  <miguel@novell.com>
401
402         * src/gmarkup.c (g_markup_parse_context_parse): Add text parsing
403         support, and end-element support; not tested yet.
404
405 2006-09-01 Atsushi Enomoto <atsushi@ximian.com>
406
407         * gutf8.c : bad allocation size. multiply sizeof gchar/gunichar2.
408
409 2006-09-01 Atsushi Enomoto <atsushi@ximian.com>
410
411         * gutf8.c : when error is null, utf8_to_utf16_len() and
412           utf16_to_utf8_len() could return -1, so return NULL for those
413           cases in g_utf8_to_utf16() and g_utf16_to_utf8().
414
415 2006-09-01  Miguel de Icaza  <miguel@novell.com>
416
417         * src/gmarkup.c: Builds and does minimal parsing.
418
419         * test/markup.c: Sample test cases I have been using
420
421 2006-08-31 Atsushi Enomoto <atsushi@ximian.com>
422
423         * src/gerror.h,
424           src/gerror.c : added g_set_error().
425         * src/gutf8.c :
426           g_utf8_to_utf16() and g_utf16_to_utf8() implementation.
427         * src/glib.h : added all above, and some dependent bits.
428         * src/Makefile.am : added gutf8.c.
429         * TODO: removed above.
430         * test/Makefile.am,
431           test/tests.h : added utf8 tests.
432         * test/utf8.c : test for g_utf8_to_utf16 and g_utf16_to_utf8.
433           It still needs more tests e.g. for multibytes.
434
435 2006-08-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
436
437         * src/gspawn.c: small touch-ups and make read/write EINTR-proof.
438
439 2006-08-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
440
441         * test/file.c: remove useless test.
442
443         * test/spawn.c: new g_spawn_async_with_pipes test.
444         * src/glib.h: Modified file.
445         * src/gspawn.c: implemented g_spawn_async_with_pipes. Needs fine tuning.
446
447 2006-08-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
448
449         * TODO: Modified file.
450         * test/tests.h:
451         * test/pattern.c:
452         * test/dir.c:
453         * test/Makefile.am:
454         * src/Makefile.am:
455         * src/glib.h:
456         * src/gdir.c:
457         * src/gfile.c: implemented g_dir_*, unix version.
458
459 2006-08-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
460
461         * src/glib.h:
462         * test/Makefile.am: Modified file.
463         * test/tests.h:
464         * src/Makefile.am: Modified file.
465         * test/pattern.c:
466         * src/gpattern.c: implemented the 3 pattern matching functions used.
467
468         * test/ptrarray.c: fix the compare function to work with qsort.
469
470         * test/file.c:
471         * test/path.c:
472         * src/gspawn.c:
473         * src/gpath.c: made valgrind happy.
474
475 2006-08-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
476
477         * test/file.c:
478         * src/glib.h:
479         * src/gfile.c:  implemented g_file_test. Changed the default mask to
480         .XXXXXX. Add tests.
481
482 2006-08-26  Raja R Harinath  <rharinath@novell.com>
483
484         * src/sort.frag.h (digit): Declare here based on externally
485         provided typedef 'list_node'.
486         (MAX_DIGITS): Use 'sizeof (list_node)'.
487         * src/gslist.c (list_node): Declare instead of 'digit'.
488         * src/glist.c: Likewise.
489
490         * test/slist.c (verify_sort): Verify the length of the list too.
491         (test_slist_sort): Free the correct list.
492         * test/list.c: Likewise.
493         * src/sort.frag.h (MAX_DIGITS): Rename from N_DIGITS.
494         (combine_sort): Change 'max_pos' argument to more natural
495         'n_digits'.
496         (increment): Likewise.  Use 'n_digits' to avoid reading at an
497         offset that hasn't been initialized.
498         (do_sort): Remove memset.
499
500 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
501
502         * TODO:
503         * test/file.c:
504         * src/glib.h:
505         * src/gfile.c: implement g_file_open_tmp.
506
507 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
508
509         * TODO:
510         * src/glib.h:
511         * src/gdate.c: New file.
512         * src/gfile.c: New file.
513         * src/Makefile.am: implemented g_file_get_contents and
514         g_get_current_time.
515
516         * test/tests.h:
517         * test/file.c: New file.
518         * test/Makefile.am: tests for the above.
519
520 2006-08-26  Raja R Harinath  <rharinath@novell.com>
521
522         * src/sort.frag.h: Add copyright notice and some explanation.
523         (increment): Remove null check.
524         (combine_digits): Add 'list' argument to seed the summation.
525         (do_sort): Use the empty or singleton tail as the seed, rather
526         than calling 'increment'.
527
528 2006-08-25  Raja R Harinath  <rharinath@novell.com>
529
530         * TODO: Remove 'List' entries.
531         * src/Makefile.am (libeglib_la_SOURCES): Add sort.frag.h.
532         * src/sort.frag.h: New.  Implements a "generic" bottom-up "counting"
533         mergesort that works both on singly- and doubly-linked lists.
534         * src/gslist.c (g_slist_sort): Use it.
535         * src/glist.c (g_list_sort): Likewise.
536         * src/glib.h (g_slist_sort, g_list_sort): Declare.
537         * test/slist.c, test/list.c: Add basic testcases.
538
539 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
540
541         * src/gspawn.c: propagate errors from reads.
542         * src/gpath.c: an empty PATH is like a NULL one.
543
544 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
545
546         * test/tests.h:
547         * test/timer.c:
548         * test/Makefile.am:
549         * TODO:
550         * src/glib.h:
551         * src/gtimer.c:
552         * src/Makefile.am: implemented GTimer.
553
554 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
555
556         * test/tests.h:
557         * test/Makefile.am:
558         * test/spawn.c:
559         * src/gspawn.c:
560         * src/glib.h:
561         * src/Makefile.am: initial implentation of g_spawn_command_line_sync.
562         Still need better error handling, but works for the most part.
563
564 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
565
566         * src/garray.c: grow faster so that the 'big' test does not crawl.
567
568 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
569
570         * test/shell.c:
571         * src/gqueue.c: plugged leaks.
572
573 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
574
575         * test/path.c:
576         * src/gpath.c: when PATH is not defined, the current dir is used.
577         See execvp(3).
578
579 2006-08-25  Alp Toker  <alp@atoker.com>
580
581         * src/gstr.c: g_strv_length() should return guint, not gint
582         * src/glib.h: Add g_strv_length() prototype
583         
584 2006-08-24  Miguel de Icaza  <miguel@novell.com>
585
586         * src/gpath.c (g_get_home_dir, g_get_tmp_dir, g_get_user_name,
587         g_get_prgname, g_set_prgname): implemented.
588
589         * test/ Fix leaks.
590         
591         * src/gpath.c (g_get_current_dir): Implement.
592
593         (g_find_program_in_path, g_path_is_absolute): implement.
594         
595         Add g_path_get_dirname, g_path_get_basename
596
597         * src/gpath.c: Path routines
598
599 2006-08-23  Miguel de Icaza  <miguel@novell.com>
600
601         * src/gerror.c: Implement. 
602
603         * src/glist.c (g_list_sort): Remove routine instead of hoping that
604         it wont crash when we run it.
605
606 2006-08-23  Raja R Harinath  <rharinath@novell.com>
607
608         * src/glist.c (g_list_insert_before): Avoid non-head declaration.
609
610         * test/slist.c (test_slist_insert_before): Add.
611         * src/gslist.c (g_slist_insert_before): Append if 'sibling' is null.
612
613         * test/list.c (test_list_insert_before): Add test for return value
614         of g_list_insert_before.
615         * test/Makefile.am (test_eglib_LDADD): Refer to the .la file so as
616         to rebuild test if eglib changes.
617         * src/glist.c (new_node, disconnect_node): New helpers that
618         maintain doubly-linked list invariants.
619         (g_list_prepend, g_list_append): Express in terms of new_node.
620         (g_list_insert_before): Likewise.  Fix return value when inserting
621         in the middle of the list.
622         (g_list_concat): Reorganize to make more compact.
623         (g_list_nth): Likewise.
624         (g_list_nth_data): Don't segfault if 'n' is too large.
625         (g_list_remove): Rewrite using _find and disconnect_node.
626         (g_list_remove_link): Don't traverse list: use disconnect_node.
627         (g_list_insert_sorted): Rewrite to make more compact.  Use new_node.
628         (g_list_copy): Likewise.
629         (_prepend, _concat): Remove.
630         * src/gslist.c (insert_after, find_prev, find_prev_link):
631         New helpers.
632         (g_slist_copy): Simplify slightly, using insert_after.
633         (g_slist_concat): Reorganize to make more compact.
634         (g_slist_find): Likewise.
635         (g_slist_insert_sorted): Likewise.
636         (g_slist_remove): Rewrite using find_prev.
637         (g_slist_remove_link): Rewrite using find_prev_link.
638         (g_slist_remove_all, g_slist_insert_before): New.
639
640 2006-08-21  Duncan Mak  <duncan@a-chinaman.com>
641
642         * src/gqueue.c: GQueue implementation.
643         * src/glib.h: Add prototypes.
644         * src/Makefile.am (libeglib_la_SOURCES): Include gqueue.c.
645
646         * test/queue.c:         
647         * test/Makefile.am (SOURCES):
648         * test/tests.h (DEFINE_TEST_GROUP_INIT_H): add tests for GQueue.
649
650 2006-08-21  Aaron Bockover  <abockover@novell.com>
651
652         * src/gstr.c: fixed bug/invalid read/write on malloc-only case (no
653         realloc/delimiter token not found); use memcpy instead of strncpy for
654         better performance
655
656         * test/test.c (run_group): allow running specific tests under a group;
657         added copied g_strsplit/g_strfreev from EGlib source as eg_strsplit
658         and eg_strfreev to avoid performance skews in the driver
659         
660         * test/driver.c: allow user-specified group name to contain specific
661         test to run under the group as 'group_name:test1,test2,...testN'
662
663         * test/string-util.c: Added more g_strsplit tests
664
665         * test/slist.c:
666         * test/ptrarray.c:
667         * test/fake.c:
668         * test/string.c:
669         * test/list.c:
670         * test/array.c:
671         * test/hashtable.c: make test names shorter (no need to prefix with
672         the group since it runs under the group)
673
674 2006-08-21  Miguel de Icaza  <miguel@novell.com>
675
676         * src/glib.h (g_hash_table_new_full): Add missing prototype.
677         Replace g_free(x) with plain free, so it can be used as a function
678         argument. 
679         Add ABS
680
681         * src/ghashtable.c: Add rehashing. 
682
683         * test/hashtable.c: Add a bunch of extra tests.
684
685         * src/goutput.c: Fix g_log so it actually formats the data. 
686
687         * src/ghashtable.c (g_hash_table_new): The glib test suite
688         uncovered a bunch of bugs, the g_hash_table_new should actually
689         have parameters.
690
691         (g_hash_table_remove, g_hash_table_foreach_remove): Fixed bugs
692         uncovered. 
693
694 2006-08-20  Aaron Bockover  <abockover@novell.com>
695
696         * src/gmisc.c: added g_setenv, g_getenv, g_unsetenv
697
698         * src/gstr.c: added g_snprintf, g_sprintf, g_fprintf, g_printf
699
700         * src/glib.h: added macros for above va_args printf functions
701
702         * src/Makefile.am: added gmisc.c
703
704         * test/whats-implemented: script to see what needs to be implemented
705
706 2006-08-20  Chris Toshok  <toshok@ximian.com>
707
708         * test/array.c (test_array_big): add a test from the glib
709         documentation.
710
711 2006-08-20  Chris Toshok  <toshok@ximian.com>
712
713         * test/tests.h: add array tests to the mix.
714
715         * test/array.c: a few array tests.
716
717         * src/glib.h: add array prototypes.
718
719         * src/garray.c: initial array foo.
720
721         * test/Makefile.am (SOURCES): add array.c
722
723         * src/Makefile.am (libeglib_la_SOURCES): add garray.c
724
725 2006-08-19  Aaron Bockover  <abockover@novell.com>
726
727         * src/gstring.c: optimize and generalize reallocation by providing
728         a GROW_IF_NECESSARY macro, do not use strcpy/strcat as they are 
729         very, very slow; GString is now much closer to GLib's implementation
730         in terms of performance
731
732         * test/string.c: added speed-specific tests to beat on reallocation code
733
734         * test/test-both: run make if the test drivers don't exist
735
736 2006-08-19  Jonathan Chambers  <jonathan.chambers@gmail.com>
737
738         * src/gmodule.c: Add gmodule support for windows and fix
739         windows build. Contribution is licensed as MIT/X11.
740         
741 2006-08-19  Aaron Bockover  <abockover@novell.com>
742
743         * test/driver.c: Added --debug mode that allows for testing all paths
744         of the driver without actually running real tests; runs only the 'fake'
745         test, which does nothing; useful for running the driver through valgrind
746
747         * test/Makefile.am:
748         * test/tests.h:
749         * test/fake.c: Added fake test for valgrinding the driver
750
751         * test/ptrarray.c: update sort test
752
753 2006-08-19  Aaron Bockover  <abockover@novell.com>
754
755         * test/test-both: added --help
756
757 2006-08-19  Aaron Bockover  <abockover@novell.com>
758
759         * test/driver.c: added -n mode to show only raw global run times,
760         which is useful for scripts (test-both --speed-compare)
761
762         * test/test-both: added --speed-compare mode
763
764         * test/README: updated with information on --speed-compare
765
766 2006-08-19  Aaron Bockover  <abockover@novell.com>
767
768         * test/test.c: do not print times if -t is not passed
769
770         * test/driver.c: removed use of GList from the driver to avoid skews due
771         to performance differences between GLib and EGLib
772         
773 2006-08-19  Aaron Bockover  <abockover@novell.com>
774
775         * test/test.c: Perform iterations at the test level, only output one
776         report for all iterations of tests in a group to produce more usable
777         output; add timing for the tests and group; added get_timestamp for
778         easy code timing
779
780         * test/test.h: Removed run_test as it should only be called from 
781         run_group, added get_timestamp
782
783         * test/Makefile.am: Added -DDRIVER_NAME 
784
785         * test/test-both: simple script to run both drivers with the same options
786
787         * test/driver.c: Iterations are now run at the test level, show a global
788         status (OK/FAIL) indicator
789
790         * test/README: Updated
791
792         * configure.ac: Renamed from configure.in as configure.in naming 
793         convention is deprecated in favor of configure.ac
794
795         * autogen.sh: s/configure.in/configure.ac/
796
797 2006-08-19  Miguel de Icaza  <miguel@novell.com>
798
799         * Makefile.am: Removed MAINTAINERCLEANFILES that was too
800         aggresive, it failed make distcheck and the resulting tarball was
801         not buildable.
802
803         * src/glib.h: remove the various GPOINTER_TO_*, G*_TO_POINTER,
804         GSIZE_FORMAT macros, and move them into src/eglib-config.h
805
806         Moved also gssize and gsize to be arch specific.   This should fix
807         the 32/64 problems that Jon Chambers reported. 
808
809         * configure.in: test for pointer size, define the various values
810         depending on 32 vs 32/64 worlds, might need further porting in the
811         future. 
812
813         Change package name to eglib
814
815         * test/slist.c, test/list.c, test/hashtable.c: Update tests to use
816         FAILURE macro.
817
818         * test/string-util.c: fix leak for valgrind tests.
819
820         * test/tests.h: New size test, for testing datatypes.
821
822         * test/sizes.c: New tests.
823         
824 2006-08-19  Aaron Bockover  <abockover@novell.com>
825
826         * test/README: Added quick guide on adding new tests/groups to the 
827         driver and some examples on how to perform various tests with the driver
828
829 2006-08-18  Aaron Bockover  <abockover@novell.com>
830
831         * test/driver.c: Added getopt support and code timing, among other 
832         nice features to make testing/profiling easier
833
834         * test/test.c: Add support for suppressing output (quiet) and
835         define RESULT, FAILED, and OK
836
837         * src/glib.h:
838         * src/glist.c: Added g_list_nth_data implementation
839
840         * test/slist.c:
841         * test/string-util.c:
842         * test/ptrarray.c:
843         * test/string.c:
844         * test/hashtable.c:
845         * test/list.c: Use RESULT, FAILURE, and OK for tests
846
847 2006-08-18  Miguel de Icaza  <miguel@novell.com>
848
849         * src/gstring.c (g_string_truncate): Implement truncate. 
850         (g_string_prepend): implement. 
851
852         Fix various bugs uncovered by new tests. 
853
854         * src/glib.h: introduce gssize type, the signed one.  Important. 
855
856         * src/eglib-config.h (G_OS_): Add the G_OS_UNIX and G_OS_WIN32
857         defines that we can use to check on the host OS.
858
859 2006-08-18  Aaron Bockover  <abockover@novell.com>
860
861         * test/test.[ch]:
862         * test/driver.c: Support pass/fail logging on tests to show group report
863
864 2006-08-18  Aaron Bockover  <abockover@novell.com>
865
866         * test/test.c: 
867         * test/test.h: Added result() to be used in place of g_strdup_printf(),
868         it's shorter to write and allows the duped string to be freed safely;
869         added license header to file
870
871         * test/driver.c: Added license header to file
872
873         * test/string-util.c:
874         * test/ptrarray.c:
875         * test/string.c:
876         * test/list.c: Use result() in place of g_strdup_printf(), it's nicer
877
878 2006-08-18  Aaron Bockover  <abockover@novell.com>
879
880         * src/gptrarray.c: Implemented g_ptr_array_sort
881
882         * test/ptrarray.c: Added sort test
883         
884         * test/driver.c: Added --help; support running N iterations and allow
885         selecting which test groups to run; uses the test group table in tests.h
886         
887         * test/tests.h: Added group table
888         
889         * test/test.h:
890         * test/test.c: Using a Group structure and table, removed run_groups
891         as we only need run_group now
892
893         * test/slist.h: Removed, not needed, tests/groups defined in tests.h
894
895 2006-08-18  Miguel de Icaza  <miguel@novell.com>
896
897         * src/unicode.c: New file, to host unicode code, it will throw as
898         this code is no longer used in the Mono runtime anyways.
899         
900         * src/glib.h: Use stdint.h types, a lot of the good stuff is
901         replicated by glib.
902
903 2006-08-18  Duncan Mak  <duncan@a-chinaman.com>
904
905         * src/glist.c (g_list_remove, g_list_remove_link): Implemented. 
906
907         * src/gslist.c (g_slist_remove): Remember to set the next pointer
908         to NULL when the item to remove is the first item in the list.
909         
910 2006-08-18  Duncan Mak  <duncan@a-chinaman.com>
911
912         * src/glist.c: Implemented. Missing remove,
913         remove_link and insert_before.
914
915         * test/list.c: Tests for GList.
916
917 2006-08-17  Aaron Bockover  <abockover@novell.com>
918
919         * src/gptrarray.c: Implemented g_ptr_array_remove and 
920         g_ptr_array_remove_index
921
922         * test/other: Removed, rewritten in Makefile.am
923
924         * test/Makefile.am: Build test-eglib against local eglib and 
925         test-glib against GLib 2.0 (replaces 'other')
926
927         * test/ptrarray.c: Added tests for g_ptr_array_remove and
928         g_ptr_array_remove_index
929
930 2006-08-17  Duncan Mak  <duncan@a-chinaman.com>
931
932         * src/gslist.c: Added MIT license.
933         (g_slist_insert_sorted): Forgot the case where the data is
934         appended to the end of the list.
935
936         * test/slist.c (test_slist_insert_sorted): Fix the test.        
937
938 2006-08-17  Aaron Bockover  <abockover@novell.com>
939
940         * src/gptrarray.c: Added g_ptr_array_set_size implementation
941
942         * test/ptrarray.c: Added test for g_ptr_array_set_size
943
944 2006-08-17  Miguel de Icaza  <miguel@novell.com>
945
946         * src/glib.h: A handful of extra macros
947
948         * configure.in, src/eglib-config.h.in: Set some system-specific
949         settings that are probed at configure time.
950
951 2006-08-17  Aaron Bockover  <abockover@novell.com>
952
953         * src/gptrarray.c: Added beginnings of GPtrArray (alloc, free, add, iterate)
954
955         * src/glib.h: Added GPtrArray signatures
956
957         * src/Makefile.am: Added gptrarray.c to build
958
959         * test/ptrarray.c:
960         * test/tests.h:
961         * test/driver.c:
962         * test/Makefile.am: Add ptrarray tests for available functionality
963
964 2006-08-17  Aaron Bockover  <abockover@novell.com>
965         
966         * test/test.h: 
967         * test/test.c: Added group iterator/test driver functionality
968         
969         * test/driver.c: Added groups to run using new test functionality
970         
971         * test/slist.h:
972         * test/hashtable.h:
973         * test/string-util.h: Test group definitions for string util/hashtable
974
975         * test/slist.c:
976         * test/str.c: 
977         * test/hash.c: Added test definition table 
978
979         * test/Makefile.am: Added -Wall -Werror -D_FORTIFY_SOURCE=2
980
981         * src/gstr.c: Added implementation for g_str_has_prefix, g_str_has_suffix
982
983         * src/glib.h: Added missing function signatures
984
985         * src/Makefile.am: added -D_FORTIFY_SOURCE=2 
986
987 2006-08-17  Duncan Mak  <duncan@a-chinaman.com>
988
989         * src/gslist.c (g_slist_remove_link): I misread the function
990         signature. Re-implemented.
991         (g_slist_delete_link): Implemented.
992         (g_slist_reverse): Implemented.
993         (g_slist_insert_sorted): Implemented.
994
995 2006-08-17  Duncan Mak  <duncan@a-chinaman.com>
996
997         * src/gslist.c (g_slist_find): 
998         (g_slist_length):
999         (g_slist_remove):
1000         (g_slist_remove_link): Implemented.
1001
1002         * test/slist.c: Tests for GSList.
1003
1004 2006-08-17  Raja R Harinath  <harinath@gmail.com>
1005
1006         * src/gslist.c (g_slist_free_1): New.  Free a single list node.
1007         (g_slist_free): Use it to free the list nodes.  Don't free the
1008         data, since the list doesn't own it.
1009         (g_slist_append): Convert into a one-liner.
1010         (g_slist_foreach): Remove redundant null check.
1011         (g_slist_last): Actually return the last node.
1012         (g_slist_copy): Simplify.
1013         * src/gslist.h (g_slist_free_1): Add.
1014
1015 2006-08-16  Duncan Mak  <duncan@a-chinaman.com>
1016
1017         * src/gslist.c:
1018
1019         * src/gslist.h: First attempt at implementing GSList, incomplete.
1020
1021         * src/Makefile.am (libeglib_la_SOURCES): add gslist.c
1022         * src/glib.h: Add GFunc definition. #include the new gslist.h.
1023
1024 2006-08-16  Miguel de Icaza  <miguel@novell.com>
1025
1026         * src/Makefile.am: Added -Wall,-Werror, corrected lots of
1027         mistakes.
1028
1029         * src/gstring.c: Gstring implementation.
1030
1031         * test/str.c (test_gstring): string tests.
1032
1033 2006-08-16  Aaron Bockover  <abockover@novell.com>
1034
1035         * src/gstr.c: Added g_strsplit implementation
1036
1037         * test/driver.c: Run the split test
1038
1039         * test/str.c: Added a test for g_strsplit
1040
1041         * Makefile.am:
1042         * src/Makefile.am:
1043         * test/Makefile.am: Added MAINTAINERCLEANFILES
1044
1045 2006-08-16  Miguel de Icaza  <miguel@novell.com>
1046
1047         * src/gouput.c: Implement some output routines, update missing
1048         progress. 
1049
1050         * test: Add test driver, and initial tests. 
1051
1052 2006-08-15  Miguel de Icaza  <miguel@novell.com>
1053
1054         * src/ghashtable.c: Implement most of this, it is completely
1055         untested at this point.
1056