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