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