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