2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
[mono/afaerber.git] / eglib / ChangeLog
blobd898416d6ed64476fa282a8b2eec1e80d2b90f15
1 2009-02-05  Miguel de Icaza  <miguel@novell.com>
3         * src/gstr.c: Add g_strnfill
5         * src/glib.h: Add g_list_previous
7 2009-01-19  Bill Holmes  <billholmes54@gmail.com>
9         * gmisc-win32.c (g_path_is_absolute):  Adding support for UNC
10           paths on Windows.
12         Contributed under MIT/X11 license.
14 2009-01-08  Bill Holmes  <billholmes54@gmail.com>
16         * winconfig.h, src/gfile-posix.c :
17           Fixing the MSVC builds.
19         Contributed under MIT/X11 license.
21 2009-01-07  Miguel de Icaza  <miguel@novell.com>
23         * src/gfile-posix.c: Move g_get_current_dir, as it is a
24         POSIX-esque feature, and some other systems do not have current
25         directories. 
27         * src/glib.h (G_LOCK_DEFINE, G_LOCK_DEFINE_STATIC): 
29         Embedded support from Paolo's work on quack.
30         
31         * configure.ac: check for strtok_r, langinfo.h and iconv.h
32         
33         * src/gpath.c (strtok_r): Add a strtok_r implementation if it is
34         not available on the target system.
36 2008-11-05  Bill Holmes  <billholmes54@gmail.com>
38         * src/gutf8.c, src/unicode-data.h, src/gunicode.c :
39           Fixing the MSVC builds.
41         Contributed under MIT/X11 license.
43 2008-11-04  Atsushi Enomoto  <atsushi@ximian.com>
45         * src/gutf8.c, src/gunicode.c, src/glib.h:
46           implemented g_unichar_type(), g_unichar_toupper(),
47           g_unichar_tolower(), g_unichar_totitle(), g_utf8_strup()
48           and g_utf8_strdown(). Fixed some surrogate pair bugs.
49         * TODO : removed implemented things.
50         * test/unicode.c, test/tests.h, test/utf8.c, test/Makefile.am:
51           added new tests.
53 2008-11-04  Atsushi Enomoto  <atsushi@ximian.com>
55         * src/unicode-data.h : new header for some new unicode manipulation
56           functions.
58 2008-10-17  Miguel de Icaza  <miguel@novell.com>
60         * Allow types to be defined on the eglib-config.h file, that could
61         be a platform specific generated type file.
63         * gtimer.c: split functionality in platforms.
65 2008-10-13  Bill Holmes  <billholmes54@gmail.com>
67         * src/gdate-win32.c : Fix compiler errors for MSVC.
69         * src/gpath.c : Fix compiler errors for MSVC.
71         * src/gfile-posix.c : Adding declaration for mkstemp for the win 32
72           implementation in gfile-win32.c.
74         Contributed under MIT/X11 license.
76 2008-10-11  Miguel de Icaza  <miguel@novell.com>
78         * gtimer.c: Same process.
80         * src/glib.h: Move g_strdup here, to consolidate all allocations
81         in this header, will help for merging the allocation work later. 
83         * src/gpattern.c (compile_pattern): From Unity, use -1 in the enum
84         for MatchType.
86         * src/gpath.c: Split this one as well.
88         * src/gmodule-win32.c, src/gmisc-unix.c, src/gmisc-win32.c,
89         src/gmodule-unix.c: split functionality in platforms.
90         
91         * src/goutput.c (g_logv): On some platforms, before we abort we
92         want to flush the stdout/stderr.
94 2008-10-10  Miguel de Icaza  <miguel@novell.com>
96         * Split functionality that is operating system specific into
97         -win32.c, -unix.c and -posix.c 
99         * Use g_malloc everywhere, and g_free, so that these can be easily
100         overwritten consistently.
102 2008-09-16  Bill Holmes  <billholmes54@gmail.com>
104         * src/gunicode.c : Fix a warning.
106         Contributed under MIT/X11 license.
108 2008-08-28  Bill Holmes  <billholmes54@gmail.com>
110         * src/glib.h : Adding a c++ definition for G_BEGIN_DECLS.
112         Contributed under MIT/X11 license.
114 2008-08-27  Bill Holmes  <billholmes54@gmail.com>
116         * glib.h, gunicode.c : Fixing some compiler errors.
118         Contributed under MIT/X11 license.
120 2008-08-20  Mike Voorhees <vernish13@gmail.com>
122         * Patch from Mike Voorhees to fix various problems with
123         g_utf8_validate compared to the glib implementation and unit tests
124         to ensure that there are no regressions.
126         From a mailing list post to mono-devel-list on August 19th, 2008
128         [Mono-dev] utf8 related patches. Please review.
130 2008-08-20  Mike Voorhees  <vernish13@gmail.com>
132         * src/glib.h : Adding declarations for g_utf8_strlen, g_utf8_get_char,
133         and g_utf8_next_char.
135         * src/gunicode.c : Adding implementation for g_utf8_strlen, g_utf8_get_char,
136         and g_utf8_next_char.
138         * src/gunicode.c : Rewrote g_utf8_validate.
140         * test/utf8.c Adding tests for g_utf8_strlen, g_utf8_get_char,
141         g_utf8_next_char, and g_utf8_validate.
143         Contributed under MIT/X11 license.
144         
145 2008-08-05  Andreas Faerber  <andreas.faerber@web.de>
147         * autogen.sh: Suppress arguments warning for NOCONFIGURE.
148         
149         Contributed under MIT/X11 license.
151 2008-08-04  Bill Holmes  <billholmes54@gmail.com>
153         * test/tests.h, test/Makefile.am, test/memory.c : Adding memory tests to test
154           allocation routines return NULL when 0 size is passed in.
156         Contributed under MIT/X11 license.
158 2008-08-04  Bill Holmes  <billholmes54@gmail.com>
160         * src/glib.h : Changing the allocation routines to return null if 0 size is
161           passed in.
163         Contributed under MIT/X11 license.
165 2008-06-16  Zoltan Varga  <vargaz@gmail.com>
167         * src/vasprintf.c (vasprintf): Applied patch from Michail Ushakov 
168         <migelU@gmail.com>. Workaround broken vsnprintf on windows. Fixes
169         #400445.
171 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
173         * src/goutput.c (g_log): Remove unnecessary and incorrect call to 
174         g_strdup_printf (). Fixes #398918.
176 2008-05-01  Bill Holmes  <billholmes54@gmail.com>
178         * src/glib.h : Adding declarations for g_ucs4_to_utf16 and g_utf16_to_ucs4.
180         * src/gutf8.c : Adding implementation for g_ucs4_to_utf16 and g_utf16_to_ucs4.
182         * test/utf8.c Adding tests for g_ucs4_to_utf16 and g_utf16_to_ucs4.
184         Contributed under MIT/X11 license.
186 2008-04-20  Geoff Norton  <gnorton@novell.com>
188         * src/gspan.c: Fix the _NSGetEnviron define to prevent an impropoer
189         pointer dereference.
191 2008-03-19  Bill Holmes  <billholmes54@gmail.com>
193         * src/gpath.c (g_path_is_absolute) : Adding a case for '/'
194           on Windows.
195         
196         * src/gpath.c (g_get_user_name) : On Windows add a check for %USERNAME%
197           when %USER% fails.
199         * src/gstr.c (g_strsplit, g_strsplit_set):  Change to remove truncation
200           errors with MSVC build.
202         * src/gstr.c (g_filename_to_uri, g_filename_from_uri):  Fixes to handle
203           Windows paths.
205         * src/gstr.c (g_ascii_strncasecmp):  Convert each character to lower case
206           before comparing.
208         * src/gunicode.c (g_get_charset):  Implement for Windows.
210         Contributed under MIT/X11 license.
212 2008-03-12  Geoff Norton  <gnorton@novell.com>
214         * src/gutf8.c: Implement g_ucs4_to_utf16 and g_utf16_to_ucs4 as
215         asserts.  They're needed to build mono with eglib.
216         * src/gutil.h: Add a few missing function declarations to the header.
217         * src/gspawn.c: Some darwin implementations don't have crt_externs.h
218         So we'll just define _NSGetEnviron() ourselves.
219         * Makefile.am: Dont build test when cross compiling.
220         * configure.ac: Define CROSS_COMPILING when cross compiling.
221         Undefine _FORTIFY_SOURCE on arm-apple-darwin as the headers it 
222         requires are not available.
224 2008-01-15  Andreas Faerber  <andreas.faerber@web.de>
226         * configure.ac: Add default G_BREAKPOINT implementation.
227         Fix typo in breakpoint CPU output.
229 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
231         * src/glib.h: Include <limits.h>. Fixes #350482.
233 2007-11-21  Dick Porter  <dick@ximian.com>
235         * src/gslist.c (g_slist_find_custom): Implement
237         * src/glist.c (g_list_find_custom): Implement
239         * test/list.c: Test g_list_find_custom()
241         * test/slist.c: Test g_slist_find_custom()
243 2007-11-20  Dick Porter  <dick@ximian.com>
245         * src/gstr.c: Implement g_strsplit_set() and re-implement
246         g_strsplit() so it passes the additional tests. (g_strsplit()
247         should treat multi-char delimiters as just a single token, rather
248         than a set of delimiters.)
250         * src/gslist.c: Implement g_slist_index(), g_slist_nth() and
251         g_slist_nth_data().
253         * test/string-util.c: Test g_strsplit_set() and more tests for
254         g_strsplit().
256         * test/slist.c: Test g_slist_nth() and
257         g_slist_index().
259 2007-11-06  Geoff Norton  <gnorton@novell.com>
261         * configure.ac: Check for libiconv_open as the previous check was failing against 
262         some versions of libiconv.
264 2007-11-06  Andreas Faerber  <andreas.faerber@web.de>
266         * test/Makefile.am: Fix noinst_PROGRAMS for automake 1.6.3
267                             Add support for VPATH
269 2007-11-06  Geoff Norton  <gnorton@novell.com>
271         * configure.ac: Determing if glib-2.0 is installed and set HAVE_GLIB appropriately
272         * test/Makefile.am: Only build test-glib if glib-2.0 is available
274 2007-11-05  Geoff Norton  <gnorton@novell.com>
276         * configure.ac: Check for getpwent_r and wether libiconv is needed to be linked.
277         Also look to see if we can use export-dynamic in the test suite.
278         * test/Makefile.am: Get LDFLAGS from configure instead of setting them.
279         * src/gerror.c: Implement g_clear_error.
280         * src/glib.h: Only use the format, ... convention is HAVE_C99_SUPPORT is available.
281         * src/gpath.c: Only use the getpwent_r codepath if getpwent_r is available.
282         * src/gspawn.c: Define environ to call _NSGetEnviron() on Apple.
283         * src/Makefile.am: Remove -Werror so we dont fail on different function declarations.
284                 Portions of all of the above are from Andreas Faerber & Jonathan Chambers
285         
286 2007-10-31  Jonathan Chambers <joncham@gmail.com>
287         
288         * src/ghashtable.c: Add g_hash_table_foreach_steal.
289         * src/garray.c: Add g_array_remove_index_fast.
290         * src/gpath.c (g_path_is_absolute): Handle windows paths.
291         * src/glib.h: Add g_hash_table_foreach_steal and g_array_remove_index_fast
292         
293         Contribution is licensed as MIT/X11.
295 2007-06-13  Jonathan Chambers <joncham@gmail.com>
296         
297         * src/gunicode.c: Add g_unichar_isxdigit and g_unichar_xdigit_value.
298         * src/gmisc.c: Add g_win32_getlocale stub.
299         * src/glib.h: Add declarations of above functions,
300         GFreeFunc typedef, and CLAMP, GUINT_TO_LE, and threading
301         macros.
302         
303         * test/string-util.c: Fix warning.
304         * test/utf8.c: Add test for g_unichar_xdigit_value.
305         
306         Contribution is licensed as MIT/X11.
308 2007-05-05  Aaron Bockover  <abockover@novell.com>
310         * src/gstr.c:
311         * src/glib.h: Added g_ascii_tolower implementation; make g_ascii_strdown
312         use it to do the transformation
314         * test/string-util.c: Added a test for g_ascii_strdown
316 2007-04-27  Jonathan Chambers <joncham@gmail.com>
317         
318         * src/gstr.c: Fix off by one error in g_strdup allocation.
320 2007-04-27  Jonathan Chambers <joncham@gmail.com>
321         
322         * src/eglib-config.hw: Forgot to add for msvc build.
323         * src/vasprintf: Forgot to add for msvc build.
325 2007-04-27  Jonathan Chambers <joncham@gmail.com>
326         
327         * src/gstr.c: Fix off by one error for NULL terminator.
329 2007-04-27  Jonathan Chambers <joncham@gmail.com>
330         
331         Combined patch from Michael Jerris <mike@jerris.com> and me.
332         * winconfig.h: Config file for msvc builds.
333         * configure.ac: Add AC_CHECK_HEADERS for getopt.h,  sys/time.h,
334         sys/wait.h, and pwd.h.
335         
336         * src/gspawn.c: Include config.h and use HAVE_* macros.
337         * src/eglib-config.h.in: Add inclusion guards.
338         * src/ghashtable.c: Fix warnings.
339         * src/gmisc.c: Windows implementation of g_getenv, g_setenv,
340         and g_unsetenv.
341         * src/gpath.c: Include config.h and use HAVE_* macros.
342         * src/gmarkup.c: Fix warnings.
343         * src/gptrarray.c: Fix warnings.
344         * src/gstr.c: Fix warnings and use HAVE_* macros.
345         * src/glib.h: Move macros to eglib-config.h and include it.
346         * src/gdate.c: Implement g_get_current_time on windows.
347         * src/gpattern.c: Fix warnings.
348         * src/gdir.c: Implement g_dir on windows.
349         * src/gfile.c: Implement mkstemp and g_file_test on windows.
350         * src/gtimer.c: Implement g_timer on windows.
351         * src/gmodule.c: Fix warnings.
352         * src/gunicode.c: Fix warnings.
353         * src/gutf8.c: Fix warnings.
354         
355         * test/ptrarray.c: Fix warnings.
356         * test/string.c: Fix warnings.
357         * test/list.c: Fix warnings.
358         * test/pattern.c: Use HAVE_* macros.
359         * test/dir.c: Use HAVE_* macros.
360         * test/file.c: Use HAVE_* macros and use system specific files for tests.
361         * test/test.c: Fix warnings and use HAVE_* macros.
362         * test/timer.c: Use HAVE_* macros.
363         * test/string-util.c: Fix warnings.
364         * test/test.h: Supress warnings on msvc.
365         * test/module.c: Use HAVE_* macros.
366         * test/utf8.c: Fix warnings.
367         * test/spawn.c: Use HAVE_* macros.
368         * test/driver.c: Fix warnings and use HAVE_* macros.
369         * test/path.c: Use HAVE_* macros and use system specific files for tests.
370         * test/sizes.c: Fix warnings.
372 2007-04-24  Jonathan Chambers <joncham@gmail.com>
373         
374         Patch from Michael Jerris <mike@jerris.com>
375         * src/gspawn.c: Start msvc build.
376         * src/gpath.c: Start msvc build.
377         * src/gmarkup.c: Start msvc build.
378         * src/gshell.c: Start msvc build.
379         * src/gstr.c: Start msvc build.
380         * src/glist.c: Start msvc build.
381         * src/glib.h: Start msvc build.
382         * src/gdate.c: Start msvc build.
383         * src/gpattern.c: Start msvc build.
384         * src/gdir.c: Start msvc build.
385         * src/gfile.c: Start msvc build.
386         * src/gtimer.c: Start msvc build.
387         * src/gmodule.c: Start msvc build.
388         * src/gunicode.c: Start msvc build.
390 2007-01-27  Robert Jordan  <robertj@gmx.net>
392         * test/Makefile.am: Add linker option to be able to
393         load symbols from the main program.
394         * test/module.c: Clean-ups.
396 2007-01-26  Robert Jordan  <robertj@gmx.net>
398         * configure.ac: Add PLATFORM_WIN32 conditional.
399         * src/Makefile.ac: Use PLATFORM_WIN32 conditional for psapi, iconv
400         * test/module.c, test/tests.h, test/Makefile.am: New test for gmodule.
401         * src/gmodule.h: Add G_MODULE_{IMPORT|EXPORT} defines.
402         * src/gmodule.c (g_module_symbol): Implement in-proc symbol lookup
403         for Win32.
404         * src/gmodule.c: Add GModule.main_module, consider it in
405         g_module_close ().
406         * src/gpath.c (g_get_home_dir): Add dummy Win32 implementation to
407         fix the build.
409 2006-11-03  Miguel de Icaza  <miguel@novell.com>
411         * src/gpath.c (g_path_get_dirname): If the pathname starts with a
412         "/", return the "/".
414         * test/string-util.c (test_strlcpy): Add new test.
416         * src/gunicode.c (g_filename_from_utf8): g_strlcpy needs the full
417         size, with the extra zero at the end;  Fixes the stack trace
418         issue. 
420 2006-10-30  Miguel de Icaza  <miguel@novell.com>
422         * test/utf8.c (test_utf8_seq): Add new failing test.
424 2006-10-30  Atsushi Enomoto  <atsushi@ximian.com>
426         * src/gutf8.c : several fixes:
427           - fixed incorrect mb_size clear and mb_remain computation.
428           - initialize items_written to 0 for error case.
429           - in utf8_to_utf16_len differentiate error messages completely.
430           - in g_utf8_to_utf16 use guchar instead of gchar.
431         * test/utf8.c : added test case string in test_utf8_seq() to
432           both test_utf8_to_utf16() and test_utf16_to_utf8().
434 2006-10-21  Miguel de Icaza  <miguel@novell.com>
436         * src/gunicode.c (g_filename_from_utf8): Use g_strlcpy here. 
438         * src/gmarkup.c (g_markup_parse_context_parse): Do not dereference
439         null values here.   This gets things a little bit further in
440         corlib, but not too far.
442         * src/gdir.c (g_dir_read_name): Do not return . or ..
444         * src/gstr.c (g_ascii_xdigit_value): Make this into a function,
445         thanks to Paolo for pointing the problem with the double macro
446         expansion. 
448         * src/gmodule.c (g_module_open): Actually return NULL if we fail
449         to load the module (was hiding the real bug in the pinvoke tests).
451         (g_module_build_path): Do not prepend "lib" if the "lib" is part
452         of the call.
454         * src/gstr.c (g_strsplit): this routine has some non-expected
455         behavior, if the string begins with the delimiter, it will return
456         an empty first string, unlike strtok
458         * src/gpath.c (g_path_get_dirname): Return "." as a dirname for
459         paths that do not contain a directory.
461 2006-10-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
463         * test/array.c: new test for insertion in the middle of other values.
464         * src/garray.c: fixed destination index.
466 2006-10-18  Miguel de Icaza  <miguel@novell.com>
468         * src/gpath.c (g_build_path): Do not append terminator if the next
469         string is empty.
471         * src/gutf8.c (g_utf8_to_utf16): Include trailing zero as
472         documented.
473         (g_utf16_to_utf8): Include trailing zero as documented.
475 2006-10-17  Miguel de Icaza  <miguel@novell.com>
477         * src/gstr.c (g_strdown): Actually move.
479         * src/gmarkup.c (g_markup_parse_context_parse): Accept dots in the
480         sequence, reset the state after a closing element.
482         * src/garray.c (g_array_insert_vals): Shift the elements the
483         correct amount.
485         (g_array_insert_vals): Should actually use the
486         number of elements to insert.
488         * test/array.c: Add new test case, this was happening in the JIT. 
490         * Add _GNU_SOURCE at configure time, remove from sources.
491         
492         * src/gstr.c (g_strsplit): Empty strings return a 0 value vector.
494         * src/glib.h (G_MAXINT64, G_MININT64): Add another set of macros
495         for the support stuff.
496         
497         Move private prototypes elsewhere
499         * src/glib.h (g_thread_init): Adding missing brace
500         (g_list_next): remove ; from the macro definition.
502 2006-10-17  Miguel de Icaza  <miguel@novell.com>
504         * src/gutf8.c: internal methods
506         * src/ghashtable.c: internal methods.
508 2006-10-16  Miguel de Icaza  <miguel@novell.com>
510         * src/gerror.c (g_propagate_error): Implement.
512         * src/gstr.c (g_strjoinv, g_ascii_strncasecmp): implement.
514         * test/string-util.c (test_ascii_strncasecmp): test
516 2006-10-15  Miguel de Icaza  <miguel@novell.com>
518         * configure.in: Fix detection of platforms the [3456] stuff does
519         not work inside autoconf.
521         * src/eglib-config.h.in: Make G_BREAKPOINT into a function-macro
523         * src/glib.h (offsetof): Mono sources depend on this, bring this
524         from the standard definition.  Redefine G_STRUCT_OFFSET in terms
525         of this. 
526         
527         * src/glib.h (G_STRUCT_OFFSET): fix macro definition. 
528         fix typo.
530         * src/sizes.c: Add test.
532         * src/gshell.c: Make it build
533         
534 2006-10-14  Miguel de Icaza  <miguel@novell.com>
536         * src/glib.h: add various _TO_LE and _FROM_LE macros.
538         * test/endian.c: tests for endian conversion macros.
540 2006-10-09  Miguel de Icaza  <miguel@novell.com>
542         * src/gmodule.h: Move definitions of gmodule to gmodule.h because
543         Mono expects it there.
545 Mon Oct 9 12:59:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
547         * src/ghashtable.c: s/to_prime/g_spaced_primes_closest/g
548         and put the array in readonly memory.
549         * src/gstr.c: fixed the build and made array const.
550         * src/gmodule.c: fixed thinko.
552 2006-10-08  Miguel de Icaza  <miguel@novell.com>
554         * src/gstr.c (g_strdup): should allow NULL as an argument.
556 2006-10-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
558         * test/string-util.c:
559         * TODO:
560         * src/gstr.c:
561         * src/glib.h: implemented g_strescape.
563 2006-10-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
565         * test/string-util.c:
566         * configure.ac:
567         * TODO:
568         * src/gstr.c:
569         * src/glib.h: implemented g_strlcpy.
571 2006-10-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
573         * test/string-util.c:
574         * TODO:
575         * src/gstr.c:
576         * src/glib.h: implemented g_strdelimit.
578 2006-10-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
580         * test/spawn.c: add search path flag when running ls.
581         * src/gspawn.c: g_spawn_command_line_sync searches the program in the
582         PATH if it's not an absolute path.
584 2006-10-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
586         * test/string-util.c:
587         * src/glib.h: implement g_ascii_xdigit_value and tests.
589 2006-10-06  Miguel de Icaza  <miguel@novell.com>
591         * src/gstr.c (g_ascii_strdown): Implement.
593         * str/glib.c (g_log_set_handler): empty.
594         (g_printerr): empty.
595         (GMemVTable): define, empty, ignored.
596         (G_USEC_PER_SEC) :-)
598         * src/gunicode.c (g_convert): Add bytes_read, bytes_written
599         support;   Small fixes to avoid valgrind errors. 
600         
601         (g_utf8_validate): Add, based on the libxml code.
603         gstr.c: implement g_strdown. 
605 2006-10-05  Miguel de Icaza  <miguel@novell.com>
607         * src/gunicode.c: Some work in progress to implement g_convert
608         (which is needed by g_locale_to_utf8).    
610 2006-09-18  Miguel de Icaza  <miguel@novell.com>
612         * test/string-util.c (test_filename_from_uri): tests for new
613         methods.
615         * src/gstr.c (g_filename_to_uri, g_filename_from_uri): implement. 
617 2006-09-14  Atsushi Enomoto  <atsushi@ximian.com>
619         * src/gutf8.c, test/utf8.c : EOL fix.
621 2006-09-04  Miguel de Icaza  <miguel@novell.com>
623         * src/gmarkup.c: The leak fixing commit.
624         
625         * src/gmarkup.c (g_markup_parse_context_end_parse): Add missing
626         method. 
627         (g_markup_parse_context_free): Implement. 
628         (parse_attributes): Store the value, not the attribute name
629         twice. 
630         Properly check the /> section.
631         (g_markup_parse_context_parse): When checking for error, use the
632         "error!=NULL && *error != NULL" upon return from callbacks,
633         it is only then that its valid to check for *error for error
634         conditions. 
635         (g_markup_parse_context_parse): Add comment processing.
637         Only release one element of the list.
639         * test/markup.c: Incorporate the kind of code that is used in Mono
640         for domain loading;  Will test the rest later. 
642 2006-09-01  Miguel de Icaza  <miguel@novell.com>
644         * src/gmarkup.c (g_markup_parse_context_parse): Add text parsing
645         support, and end-element support; not tested yet.
647 2006-09-01 Atsushi Enomoto <atsushi@ximian.com>
649         * gutf8.c : bad allocation size. multiply sizeof gchar/gunichar2.
651 2006-09-01 Atsushi Enomoto <atsushi@ximian.com>
653         * gutf8.c : when error is null, utf8_to_utf16_len() and
654           utf16_to_utf8_len() could return -1, so return NULL for those
655           cases in g_utf8_to_utf16() and g_utf16_to_utf8().
657 2006-09-01  Miguel de Icaza  <miguel@novell.com>
659         * src/gmarkup.c: Builds and does minimal parsing.
661         * test/markup.c: Sample test cases I have been using
663 2006-08-31 Atsushi Enomoto <atsushi@ximian.com>
665         * src/gerror.h,
666           src/gerror.c : added g_set_error().
667         * src/gutf8.c :
668           g_utf8_to_utf16() and g_utf16_to_utf8() implementation.
669         * src/glib.h : added all above, and some dependent bits.
670         * src/Makefile.am : added gutf8.c.
671         * TODO: removed above.
672         * test/Makefile.am,
673           test/tests.h : added utf8 tests.
674         * test/utf8.c : test for g_utf8_to_utf16 and g_utf16_to_utf8.
675           It still needs more tests e.g. for multibytes.
677 2006-08-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
679         * src/gspawn.c: small touch-ups and make read/write EINTR-proof.
681 2006-08-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
683         * test/file.c: remove useless test.
685         * test/spawn.c: new g_spawn_async_with_pipes test.
686         * src/glib.h: Modified file.
687         * src/gspawn.c: implemented g_spawn_async_with_pipes. Needs fine tuning.
689 2006-08-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
691         * TODO: Modified file.
692         * test/tests.h:
693         * test/pattern.c:
694         * test/dir.c:
695         * test/Makefile.am:
696         * src/Makefile.am:
697         * src/glib.h:
698         * src/gdir.c:
699         * src/gfile.c: implemented g_dir_*, unix version.
701 2006-08-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
703         * src/glib.h:
704         * test/Makefile.am: Modified file.
705         * test/tests.h:
706         * src/Makefile.am: Modified file.
707         * test/pattern.c:
708         * src/gpattern.c: implemented the 3 pattern matching functions used.
710         * test/ptrarray.c: fix the compare function to work with qsort.
712         * test/file.c:
713         * test/path.c:
714         * src/gspawn.c:
715         * src/gpath.c: made valgrind happy.
717 2006-08-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
719         * test/file.c:
720         * src/glib.h:
721         * src/gfile.c:  implemented g_file_test. Changed the default mask to
722         .XXXXXX. Add tests.
724 2006-08-26  Raja R Harinath  <rharinath@novell.com>
726         * src/sort.frag.h (digit): Declare here based on externally
727         provided typedef 'list_node'.
728         (MAX_DIGITS): Use 'sizeof (list_node)'.
729         * src/gslist.c (list_node): Declare instead of 'digit'.
730         * src/glist.c: Likewise.
732         * test/slist.c (verify_sort): Verify the length of the list too.
733         (test_slist_sort): Free the correct list.
734         * test/list.c: Likewise.
735         * src/sort.frag.h (MAX_DIGITS): Rename from N_DIGITS.
736         (combine_sort): Change 'max_pos' argument to more natural
737         'n_digits'.
738         (increment): Likewise.  Use 'n_digits' to avoid reading at an
739         offset that hasn't been initialized.
740         (do_sort): Remove memset.
742 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
744         * TODO:
745         * test/file.c:
746         * src/glib.h:
747         * src/gfile.c: implement g_file_open_tmp.
749 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
751         * TODO:
752         * src/glib.h:
753         * src/gdate.c: New file.
754         * src/gfile.c: New file.
755         * src/Makefile.am: implemented g_file_get_contents and
756         g_get_current_time.
758         * test/tests.h:
759         * test/file.c: New file.
760         * test/Makefile.am: tests for the above.
762 2006-08-26  Raja R Harinath  <rharinath@novell.com>
764         * src/sort.frag.h: Add copyright notice and some explanation.
765         (increment): Remove null check.
766         (combine_digits): Add 'list' argument to seed the summation.
767         (do_sort): Use the empty or singleton tail as the seed, rather
768         than calling 'increment'.
770 2006-08-25  Raja R Harinath  <rharinath@novell.com>
772         * TODO: Remove 'List' entries.
773         * src/Makefile.am (libeglib_la_SOURCES): Add sort.frag.h.
774         * src/sort.frag.h: New.  Implements a "generic" bottom-up "counting"
775         mergesort that works both on singly- and doubly-linked lists.
776         * src/gslist.c (g_slist_sort): Use it.
777         * src/glist.c (g_list_sort): Likewise.
778         * src/glib.h (g_slist_sort, g_list_sort): Declare.
779         * test/slist.c, test/list.c: Add basic testcases.
781 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
783         * src/gspawn.c: propagate errors from reads.
784         * src/gpath.c: an empty PATH is like a NULL one.
786 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
788         * test/tests.h:
789         * test/timer.c:
790         * test/Makefile.am:
791         * TODO:
792         * src/glib.h:
793         * src/gtimer.c:
794         * src/Makefile.am: implemented GTimer.
796 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
798         * test/tests.h:
799         * test/Makefile.am:
800         * test/spawn.c:
801         * src/gspawn.c:
802         * src/glib.h:
803         * src/Makefile.am: initial implentation of g_spawn_command_line_sync.
804         Still need better error handling, but works for the most part.
806 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
808         * src/garray.c: grow faster so that the 'big' test does not crawl.
810 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
812         * test/shell.c:
813         * src/gqueue.c: plugged leaks.
815 2006-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
817         * test/path.c:
818         * src/gpath.c: when PATH is not defined, the current dir is used.
819         See execvp(3).
821 2006-08-25  Alp Toker  <alp@atoker.com>
823         * src/gstr.c: g_strv_length() should return guint, not gint
824         * src/glib.h: Add g_strv_length() prototype
825         
826 2006-08-24  Miguel de Icaza  <miguel@novell.com>
828         * src/gpath.c (g_get_home_dir, g_get_tmp_dir, g_get_user_name,
829         g_get_prgname, g_set_prgname): implemented.
831         * test/ Fix leaks.
832         
833         * src/gpath.c (g_get_current_dir): Implement.
835         (g_find_program_in_path, g_path_is_absolute): implement.
836         
837         Add g_path_get_dirname, g_path_get_basename
839         * src/gpath.c: Path routines
841 2006-08-23  Miguel de Icaza  <miguel@novell.com>
843         * src/gerror.c: Implement. 
845         * src/glist.c (g_list_sort): Remove routine instead of hoping that
846         it wont crash when we run it.
848 2006-08-23  Raja R Harinath  <rharinath@novell.com>
850         * src/glist.c (g_list_insert_before): Avoid non-head declaration.
852         * test/slist.c (test_slist_insert_before): Add.
853         * src/gslist.c (g_slist_insert_before): Append if 'sibling' is null.
855         * test/list.c (test_list_insert_before): Add test for return value
856         of g_list_insert_before.
857         * test/Makefile.am (test_eglib_LDADD): Refer to the .la file so as
858         to rebuild test if eglib changes.
859         * src/glist.c (new_node, disconnect_node): New helpers that
860         maintain doubly-linked list invariants.
861         (g_list_prepend, g_list_append): Express in terms of new_node.
862         (g_list_insert_before): Likewise.  Fix return value when inserting
863         in the middle of the list.
864         (g_list_concat): Reorganize to make more compact.
865         (g_list_nth): Likewise.
866         (g_list_nth_data): Don't segfault if 'n' is too large.
867         (g_list_remove): Rewrite using _find and disconnect_node.
868         (g_list_remove_link): Don't traverse list: use disconnect_node.
869         (g_list_insert_sorted): Rewrite to make more compact.  Use new_node.
870         (g_list_copy): Likewise.
871         (_prepend, _concat): Remove.
872         * src/gslist.c (insert_after, find_prev, find_prev_link):
873         New helpers.
874         (g_slist_copy): Simplify slightly, using insert_after.
875         (g_slist_concat): Reorganize to make more compact.
876         (g_slist_find): Likewise.
877         (g_slist_insert_sorted): Likewise.
878         (g_slist_remove): Rewrite using find_prev.
879         (g_slist_remove_link): Rewrite using find_prev_link.
880         (g_slist_remove_all, g_slist_insert_before): New.
882 2006-08-21  Duncan Mak  <duncan@a-chinaman.com>
884         * src/gqueue.c: GQueue implementation.
885         * src/glib.h: Add prototypes.
886         * src/Makefile.am (libeglib_la_SOURCES): Include gqueue.c.
888         * test/queue.c:         
889         * test/Makefile.am (SOURCES):
890         * test/tests.h (DEFINE_TEST_GROUP_INIT_H): add tests for GQueue.
892 2006-08-21  Aaron Bockover  <abockover@novell.com>
894         * src/gstr.c: fixed bug/invalid read/write on malloc-only case (no
895         realloc/delimiter token not found); use memcpy instead of strncpy for
896         better performance
898         * test/test.c (run_group): allow running specific tests under a group;
899         added copied g_strsplit/g_strfreev from EGlib source as eg_strsplit
900         and eg_strfreev to avoid performance skews in the driver
901         
902         * test/driver.c: allow user-specified group name to contain specific
903         test to run under the group as 'group_name:test1,test2,...testN'
905         * test/string-util.c: Added more g_strsplit tests
907         * test/slist.c:
908         * test/ptrarray.c:
909         * test/fake.c:
910         * test/string.c:
911         * test/list.c:
912         * test/array.c:
913         * test/hashtable.c: make test names shorter (no need to prefix with
914         the group since it runs under the group)
916 2006-08-21  Miguel de Icaza  <miguel@novell.com>
918         * src/glib.h (g_hash_table_new_full): Add missing prototype.
919         Replace g_free(x) with plain free, so it can be used as a function
920         argument. 
921         Add ABS
923         * src/ghashtable.c: Add rehashing. 
925         * test/hashtable.c: Add a bunch of extra tests.
927         * src/goutput.c: Fix g_log so it actually formats the data. 
929         * src/ghashtable.c (g_hash_table_new): The glib test suite
930         uncovered a bunch of bugs, the g_hash_table_new should actually
931         have parameters.
933         (g_hash_table_remove, g_hash_table_foreach_remove): Fixed bugs
934         uncovered. 
936 2006-08-20  Aaron Bockover  <abockover@novell.com>
938         * src/gmisc.c: added g_setenv, g_getenv, g_unsetenv
940         * src/gstr.c: added g_snprintf, g_sprintf, g_fprintf, g_printf
942         * src/glib.h: added macros for above va_args printf functions
944         * src/Makefile.am: added gmisc.c
946         * test/whats-implemented: script to see what needs to be implemented
948 2006-08-20  Chris Toshok  <toshok@ximian.com>
950         * test/array.c (test_array_big): add a test from the glib
951         documentation.
953 2006-08-20  Chris Toshok  <toshok@ximian.com>
955         * test/tests.h: add array tests to the mix.
957         * test/array.c: a few array tests.
959         * src/glib.h: add array prototypes.
961         * src/garray.c: initial array foo.
963         * test/Makefile.am (SOURCES): add array.c
965         * src/Makefile.am (libeglib_la_SOURCES): add garray.c
967 2006-08-19  Aaron Bockover  <abockover@novell.com>
969         * src/gstring.c: optimize and generalize reallocation by providing
970         a GROW_IF_NECESSARY macro, do not use strcpy/strcat as they are 
971         very, very slow; GString is now much closer to GLib's implementation
972         in terms of performance
974         * test/string.c: added speed-specific tests to beat on reallocation code
976         * test/test-both: run make if the test drivers don't exist
978 2006-08-19  Jonathan Chambers  <jonathan.chambers@gmail.com>
980         * src/gmodule.c: Add gmodule support for windows and fix
981         windows build. Contribution is licensed as MIT/X11.
982         
983 2006-08-19  Aaron Bockover  <abockover@novell.com>
985         * test/driver.c: Added --debug mode that allows for testing all paths
986         of the driver without actually running real tests; runs only the 'fake'
987         test, which does nothing; useful for running the driver through valgrind
989         * test/Makefile.am:
990         * test/tests.h:
991         * test/fake.c: Added fake test for valgrinding the driver
993         * test/ptrarray.c: update sort test
995 2006-08-19  Aaron Bockover  <abockover@novell.com>
997         * test/test-both: added --help
999 2006-08-19  Aaron Bockover  <abockover@novell.com>
1001         * test/driver.c: added -n mode to show only raw global run times,
1002         which is useful for scripts (test-both --speed-compare)
1004         * test/test-both: added --speed-compare mode
1006         * test/README: updated with information on --speed-compare
1008 2006-08-19  Aaron Bockover  <abockover@novell.com>
1010         * test/test.c: do not print times if -t is not passed
1012         * test/driver.c: removed use of GList from the driver to avoid skews due
1013         to performance differences between GLib and EGLib
1014         
1015 2006-08-19  Aaron Bockover  <abockover@novell.com>
1017         * test/test.c: Perform iterations at the test level, only output one
1018         report for all iterations of tests in a group to produce more usable
1019         output; add timing for the tests and group; added get_timestamp for
1020         easy code timing
1022         * test/test.h: Removed run_test as it should only be called from 
1023         run_group, added get_timestamp
1025         * test/Makefile.am: Added -DDRIVER_NAME 
1027         * test/test-both: simple script to run both drivers with the same options
1029         * test/driver.c: Iterations are now run at the test level, show a global
1030         status (OK/FAIL) indicator
1032         * test/README: Updated
1034         * configure.ac: Renamed from configure.in as configure.in naming 
1035         convention is deprecated in favor of configure.ac
1037         * autogen.sh: s/configure.in/configure.ac/
1039 2006-08-19  Miguel de Icaza  <miguel@novell.com>
1041         * Makefile.am: Removed MAINTAINERCLEANFILES that was too
1042         aggresive, it failed make distcheck and the resulting tarball was
1043         not buildable.
1045         * src/glib.h: remove the various GPOINTER_TO_*, G*_TO_POINTER,
1046         GSIZE_FORMAT macros, and move them into src/eglib-config.h
1048         Moved also gssize and gsize to be arch specific.   This should fix
1049         the 32/64 problems that Jon Chambers reported. 
1051         * configure.in: test for pointer size, define the various values
1052         depending on 32 vs 32/64 worlds, might need further porting in the
1053         future. 
1055         Change package name to eglib
1057         * test/slist.c, test/list.c, test/hashtable.c: Update tests to use
1058         FAILURE macro.
1060         * test/string-util.c: fix leak for valgrind tests.
1062         * test/tests.h: New size test, for testing datatypes.
1064         * test/sizes.c: New tests.
1065         
1066 2006-08-19  Aaron Bockover  <abockover@novell.com>
1068         * test/README: Added quick guide on adding new tests/groups to the 
1069         driver and some examples on how to perform various tests with the driver
1071 2006-08-18  Aaron Bockover  <abockover@novell.com>
1073         * test/driver.c: Added getopt support and code timing, among other 
1074         nice features to make testing/profiling easier
1076         * test/test.c: Add support for suppressing output (quiet) and
1077         define RESULT, FAILED, and OK
1079         * src/glib.h:
1080         * src/glist.c: Added g_list_nth_data implementation
1082         * test/slist.c:
1083         * test/string-util.c:
1084         * test/ptrarray.c:
1085         * test/string.c:
1086         * test/hashtable.c:
1087         * test/list.c: Use RESULT, FAILURE, and OK for tests
1089 2006-08-18  Miguel de Icaza  <miguel@novell.com>
1091         * src/gstring.c (g_string_truncate): Implement truncate. 
1092         (g_string_prepend): implement. 
1094         Fix various bugs uncovered by new tests. 
1096         * src/glib.h: introduce gssize type, the signed one.  Important. 
1098         * src/eglib-config.h (G_OS_): Add the G_OS_UNIX and G_OS_WIN32
1099         defines that we can use to check on the host OS.
1101 2006-08-18  Aaron Bockover  <abockover@novell.com>
1103         * test/test.[ch]:
1104         * test/driver.c: Support pass/fail logging on tests to show group report
1106 2006-08-18  Aaron Bockover  <abockover@novell.com>
1108         * test/test.c: 
1109         * test/test.h: Added result() to be used in place of g_strdup_printf(),
1110         it's shorter to write and allows the duped string to be freed safely;
1111         added license header to file
1113         * test/driver.c: Added license header to file
1115         * test/string-util.c:
1116         * test/ptrarray.c:
1117         * test/string.c:
1118         * test/list.c: Use result() in place of g_strdup_printf(), it's nicer
1120 2006-08-18  Aaron Bockover  <abockover@novell.com>
1122         * src/gptrarray.c: Implemented g_ptr_array_sort
1124         * test/ptrarray.c: Added sort test
1125         
1126         * test/driver.c: Added --help; support running N iterations and allow
1127         selecting which test groups to run; uses the test group table in tests.h
1128         
1129         * test/tests.h: Added group table
1130         
1131         * test/test.h:
1132         * test/test.c: Using a Group structure and table, removed run_groups
1133         as we only need run_group now
1135         * test/slist.h: Removed, not needed, tests/groups defined in tests.h
1137 2006-08-18  Miguel de Icaza  <miguel@novell.com>
1139         * src/unicode.c: New file, to host unicode code, it will throw as
1140         this code is no longer used in the Mono runtime anyways.
1141         
1142         * src/glib.h: Use stdint.h types, a lot of the good stuff is
1143         replicated by glib.
1145 2006-08-18  Duncan Mak  <duncan@a-chinaman.com>
1147         * src/glist.c (g_list_remove, g_list_remove_link): Implemented. 
1149         * src/gslist.c (g_slist_remove): Remember to set the next pointer
1150         to NULL when the item to remove is the first item in the list.
1151         
1152 2006-08-18  Duncan Mak  <duncan@a-chinaman.com>
1154         * src/glist.c: Implemented. Missing remove,
1155         remove_link and insert_before.
1157         * test/list.c: Tests for GList.
1159 2006-08-17  Aaron Bockover  <abockover@novell.com>
1161         * src/gptrarray.c: Implemented g_ptr_array_remove and 
1162         g_ptr_array_remove_index
1164         * test/other: Removed, rewritten in Makefile.am
1166         * test/Makefile.am: Build test-eglib against local eglib and 
1167         test-glib against GLib 2.0 (replaces 'other')
1169         * test/ptrarray.c: Added tests for g_ptr_array_remove and
1170         g_ptr_array_remove_index
1172 2006-08-17  Duncan Mak  <duncan@a-chinaman.com>
1174         * src/gslist.c: Added MIT license.
1175         (g_slist_insert_sorted): Forgot the case where the data is
1176         appended to the end of the list.
1178         * test/slist.c (test_slist_insert_sorted): Fix the test.        
1180 2006-08-17  Aaron Bockover  <abockover@novell.com>
1182         * src/gptrarray.c: Added g_ptr_array_set_size implementation
1184         * test/ptrarray.c: Added test for g_ptr_array_set_size
1186 2006-08-17  Miguel de Icaza  <miguel@novell.com>
1188         * src/glib.h: A handful of extra macros
1190         * configure.in, src/eglib-config.h.in: Set some system-specific
1191         settings that are probed at configure time.
1193 2006-08-17  Aaron Bockover  <abockover@novell.com>
1195         * src/gptrarray.c: Added beginnings of GPtrArray (alloc, free, add, iterate)
1197         * src/glib.h: Added GPtrArray signatures
1199         * src/Makefile.am: Added gptrarray.c to build
1201         * test/ptrarray.c:
1202         * test/tests.h:
1203         * test/driver.c:
1204         * test/Makefile.am: Add ptrarray tests for available functionality
1206 2006-08-17  Aaron Bockover  <abockover@novell.com>
1207         
1208         * test/test.h: 
1209         * test/test.c: Added group iterator/test driver functionality
1210         
1211         * test/driver.c: Added groups to run using new test functionality
1212         
1213         * test/slist.h:
1214         * test/hashtable.h:
1215         * test/string-util.h: Test group definitions for string util/hashtable
1217         * test/slist.c:
1218         * test/str.c: 
1219         * test/hash.c: Added test definition table 
1221         * test/Makefile.am: Added -Wall -Werror -D_FORTIFY_SOURCE=2
1223         * src/gstr.c: Added implementation for g_str_has_prefix, g_str_has_suffix
1225         * src/glib.h: Added missing function signatures
1227         * src/Makefile.am: added -D_FORTIFY_SOURCE=2 
1229 2006-08-17  Duncan Mak  <duncan@a-chinaman.com>
1231         * src/gslist.c (g_slist_remove_link): I misread the function
1232         signature. Re-implemented.
1233         (g_slist_delete_link): Implemented.
1234         (g_slist_reverse): Implemented.
1235         (g_slist_insert_sorted): Implemented.
1237 2006-08-17  Duncan Mak  <duncan@a-chinaman.com>
1239         * src/gslist.c (g_slist_find): 
1240         (g_slist_length):
1241         (g_slist_remove):
1242         (g_slist_remove_link): Implemented.
1244         * test/slist.c: Tests for GSList.
1246 2006-08-17  Raja R Harinath  <harinath@gmail.com>
1248         * src/gslist.c (g_slist_free_1): New.  Free a single list node.
1249         (g_slist_free): Use it to free the list nodes.  Don't free the
1250         data, since the list doesn't own it.
1251         (g_slist_append): Convert into a one-liner.
1252         (g_slist_foreach): Remove redundant null check.
1253         (g_slist_last): Actually return the last node.
1254         (g_slist_copy): Simplify.
1255         * src/gslist.h (g_slist_free_1): Add.
1257 2006-08-16  Duncan Mak  <duncan@a-chinaman.com>
1259         * src/gslist.c:
1261         * src/gslist.h: First attempt at implementing GSList, incomplete.
1263         * src/Makefile.am (libeglib_la_SOURCES): add gslist.c
1264         * src/glib.h: Add GFunc definition. #include the new gslist.h.
1266 2006-08-16  Miguel de Icaza  <miguel@novell.com>
1268         * src/Makefile.am: Added -Wall,-Werror, corrected lots of
1269         mistakes.
1271         * src/gstring.c: Gstring implementation.
1273         * test/str.c (test_gstring): string tests.
1275 2006-08-16  Aaron Bockover  <abockover@novell.com>
1277         * src/gstr.c: Added g_strsplit implementation
1279         * test/driver.c: Run the split test
1281         * test/str.c: Added a test for g_strsplit
1283         * Makefile.am:
1284         * src/Makefile.am:
1285         * test/Makefile.am: Added MAINTAINERCLEANFILES
1287 2006-08-16  Miguel de Icaza  <miguel@novell.com>
1289         * src/gouput.c: Implement some output routines, update missing
1290         progress. 
1292         * test: Add test driver, and initial tests. 
1294 2006-08-15  Miguel de Icaza  <miguel@novell.com>
1296         * src/ghashtable.c: Implement most of this, it is completely
1297         untested at this point.