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