* python/_dbus.py, _util.py, decorators.py, extract.py, matchrules.py.
[platform/upstream/dbus.git] / ChangeLog
1 2005-07-20  John (J5) Palmieir  <johnp@redhat.com>
2
3         * python/_dbus.py, _util.py, decorators.py, extract.py, matchrules.py.
4         proxies.py, service.py: Cleanup of code after running it through the
5         pyflakes code checker mostly dealing with undefined names.  
6         (Bug #3828, Patch from Anthony Baxter <anthony@interlink.com.au>)
7
8 2005-07-17  John (J5) Palmieri  <johnp@redhat.com>
9
10         * NEWS: Update to 0.35.2
11
12 2005-07-17  John (J5) Palmieri  <johnp@redhat.com>
13
14         * python/_dbus.py: Remove import of the dbus.services
15         module as it no longer exists (patch from Dimitur Kirov)
16
17         * python/service.py (Object::__init__): Fixed typo
18         s/name/bus_name (patch from Dimitur Kirov)
19
20         * python/examples/example-signal-emitter.py: import dbus.glib
21         to get the main loop and use glib mainloop instead of gtk so
22         X doesn't have to be running.
23
24         * python/examples/example-signal-recipient.py: import dbus.glib
25         to get the main loop and use glib mainloop instead of gtk so
26         X doesn't have to be running. Import the decorators module
27         directly.
28
29         * test/glib/Makefile.am:  Added DIST_EXTRA files that distcheck
30         didn't pick up on but are needed to build
31
32         * configure.in: upped version to 0.35.2
33
34         * bus/driver.c, bus/selinux.c, bus/selinux.h, dbus/dbus-protocol.h:
35         added Colin Walters' SELinux API rename patch from head 
36         s/unix sercurity context/selinux security context/
37
38 2005-07-16  John (J5) Palmieri  <johnp@redhat.com>
39
40         * python/Makefile.am: dbus_binding.pxd.in should be included 
41         in EXTRA_DIST not dbus_binding.pxd
42         fix up $(srcdir) hopefully for the last time
43
44         * NEWS: Update to 0.35.1
45
46 2005-07-16  Colin Walters  <walters@verbum.org>
47
48         * bus/driver.c (bus_driver_handle_get_connection_selinux_security_context): Renamed
49         from bus_driver_handle_get_connection_unix_security_context.  Update for
50         error usage.
51         (message_handlers): Update for renames.
52
53         * bus/selinux.c (bus_selinux_allows_send): Handle OOM on
54         _dbus_string_init failure correctly.
55         (bus_selinux_append_context): Convert SID to context.  Append it
56         as a byte array.
57         (bus_selinux_shutdown): Handle the case where bus_selinux_full_init
58         hasn't been called.
59
60         * bus/selinux.h: Update prototype.
61
62         * dbus/dbus-protocol.h (DBUS_ERROR_SELINUX_SECURITY_CONTEXT_UNKNOWN): Renamed
63         from DBUS_ERROR_UNIX_SECURITY_CONTEXT_UNKNOWN.
64
65 2005-07-15  Colin Walters  <walters@verbum.org>
66
67         * doc/TODO: Add note about convenience wrappers.
68
69 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
70
71         * NEWS: Update to 0.35
72
73 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
74
75         * glib/Makefile.am: Add make-dbus-glib-error-switch.sh to EXTRA_DIST
76         so distcheck doesn't fail
77
78         * glib/examples/Makefile.am: Add example-service.xml and 
79         example-signal-emitter.xml to EXTRA_DIST so distcheck doesn't fail
80
81         * glib/examples/statemachine/Makefile.am: Add statemachine.xml and
82         statemachine-server.xml to EXTRA_DIST so distcheck doesn't fail
83
84         * python/Makefile.am: Preprend $(srcdir)/ to source files so the
85         compiler looks in the right places during distcheck
86
87 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
88
89         * glib/example/Makefile.am: Fix a typo which cause make distcheck
90         to fail
91
92 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
93
94         * python/examples/example-service.py,
95         python/examples/example-signal-emitter.py: Fixed up examples
96         for API changes
97
98 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
99
100         * python/__init__.py: Upped to version (0,42,0) because of
101         the API change
102
103 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
104
105         * ChangeLog: fix date in last entry
106
107         * configure.in, bus/system.conf.in: add the ability to configure 
108         the system bus user at compiletime with the --with-dbus-user flag
109         (patch from Kristof Vansant)
110
111 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
112
113         * bus/dispatch.c, test/test-service.c: Add testcase
114         for sending messages to oneself (TODO item).
115
116         * python/service.py (class Object): Swap ordering of bus_name 
117         and object_path parameters to better support inheritance.
118
119         * doc/dbus-tutorial.xml: change Python docs to reflect change
120         in parameter ordering and fix the inheritance section.
121
122         * doc/TODO: remove sending message to oneself TODO item
123
124 2005-07-15  Ross Burton  <ross@openedhand.com>
125
126         * glib/dbus-gproxy.c:
127         Fix a leak when calling methods via the proxy.
128
129 2005-07-15  Colin Walters  <walters@verbum.org>
130
131         * bus/selinux.c (bus_selinux_append_context): Wrap in
132         HAVE_SELINUX.
133
134 2005-07-14  John (J5) Palmieri  <johnp@redhat.com>
135
136         * python/_dbus.py (Bus::remove_signal_receiver):
137         don't add a callback to the match if none has been passed in
138         
139         * python/matchrules.py (SignalMatchTree::remove): if the rule
140         being matched does not have a callback treat it as a wildcard
141         fix matching logic
142
143         * doc/dbus-tutorial.xml: Add Python tutorial
144
145 2005-07-14  Colin Walters  <walters@verbum.org>
146
147         * bus/driver.c
148         (bus_driver_handle_get_connection_unix_security_context): New function.
149         (message_handlers): Add.
150
151         * bus/selinux.c (bus_selinux_append_context): New function; appends
152         security context to message.
153
154         * bus/selinux.h: Prototype.
155
156         * dbus/dbus-protocol.h (DBUS_ERROR_UNIX_SECURITY_CONTEXT_UNKNOWN): New.
157
158 2005-07-14  John (J5) Palmieri  <johnp@redhat.com>
159
160         * bus/activation.c: clean up all tabs to be 8 spaces 
161         (bus_activation_activate_service): make sure we clean up
162         if activation fails
163
164         * bus/dispatch.c: clean up all tabs to be 8 spaces 
165         (check_shell_fail_service_auto_start): New function
166         tests to make sure we get fail properly when trying to auto start a service
167         with a faulty command line
168         (check_shell_service_success_auto_start): New function tests to make sure
169         auto started services get the arguments on the command line
170
171         * test/test-shell-service.c: Added service for testing auto-starting with 
172         command line arguments
173
174         * test/data/valid-service-files/debug-shell-echo-fail.service.in, 
175         test/data/valid-service-files/debug-shell-echo-success.service.in:
176         Added service files for testing auto-starting with command line arguments
177
178         * */.cvsignore: added a bunch of generated files to various .cvsignore files
179
180 2005-07-14  Rodrigo Moya  <rodrigo@novell.com>
181
182         * dbus/dbus-shell.[ch]: copy/pasted code from GLib.
183         
184         * dbus/Makefile.am: added new files to build.
185
186         * bus/activation.c (bus_activation_activate_service): support
187         activation commands with parameters.
188
189         * test/shell-test.c: added test program for the shell parsing
190         code.
191
192 2005-07-13  David Zeuthen  <davidz@redhat.com>
193
194         * tools/dbus-send.c (append_arg, type_from_name): Also support 16 and
195         64 bit signed and unsigned parameters
196
197 2005-07-13  John (J5) Palmieri  <johnp@redhat.com>
198
199         * python/.cvsignore: remove dbus_bindings.pyx, add dbus_bindings.pxd
200
201         * python/service.py (class Name): renamed BusName to make it clearer
202         what the object is for (a name on the bus)
203
204         * python/examples/example-service.py,
205         python/examples/example-signal-emitter.py: change the Name object to
206         BusName
207
208 2005-07-12  Colin Walters  <walters@verbum.org>
209
210         Patch from Jim Gettys <Jim.Gettys@hp.com>.
211
212         * tools/dbus-launch.c: Include sys/select.h.
213
214 2005-07-12  John (J5) Palmieri  <johnp@redhat.com>
215         * python/dbus_bindings.pyx.in: removed
216
217         * python/dbus_bindings.pyx: Added.
218         - Fixed some memleaks (patch from 
219         Sean Meiners <sean.meiners@linspireinc.com>)
220         - Broke out the #include "dbus_h_wrapper.h" and put it in its
221         own pxd file (Pyrex definition)
222         - Broke out glib dependancies into its own pyx module
223         
224         * python/dbus_bindings.pdx: Added.
225         - Defines C class Connection for exporting to other modules
226
227         * python/dbus_glib_bindings.pyx: Added.
228         - New module to handle lowlevel dbus-glib mainloop integration
229
230         * python/glib.py: Added.
231         - Registers the glib mainloop when you import this module
232
233         * python/services.py: Removed (renamed to service.py)
234         
235         * python/service.py: Added.
236         - (class Server): renamed Name
237
238         * python/__init__.py: Bump ro version (0,41,0)
239         -don't import the decorators or service module
240         by default.  These now reside in the dbus.service namespace
241
242         * python/_dbus.py (Bus::__init__): Add code run the main loop 
243         setup function on creation 
244
245         * python/examples/example-service.py,
246         python/examples/example-signal-emitter.py: update examples
247
248         * python/examples/gconf-proxy-service.py,
249         python/examples/gconf-proxy-service2.py: TODO fix these up
250
251         * doc/TODO: Addition
252         - Added a Python Bindings 1.0 section
253         - added "Add match on args or match on details to match rules"
254
255
256 2005-07-12  Colin Walters  <walters@verbum.org>
257
258         * glib/examples/statemachine/Makefile.am (statemachine-server-glue.h) 
259         (statemachine-glue.h): 
260         * glib/examples/Makefile.am (example-service-glue.h) 
261         (example-signal-emitter-glue.h): 
262         * glib/Makefile.am (dbus-glib-error-switch.h): 
263         Add libtool --mode=execute so we use the built library instead
264         of any installed one.
265
266 2005-07-11  Colin Walters  <walters@verbum.org>
267
268         * glib/dbus-gvalue.c (struct _DBusGValue): Delete.
269         (dbus_g_value_types_init): Remove assertion.
270         (dbus_g_value_get_g_type, dbus_g_value_open)
271         (dbus_g_value_iterator_get_values, dbus_g_value_get_signature)
272         (dbus_g_value_copy, dbus_g_value_free): Delete unimplemented
273         functions related to DBusGValue.  Now we marshal/demarshal
274         structures as GValueArray.
275         (dbus_gtype_from_signature_iter): Return G_TYPE_VALUE_ARRAY for
276         structures.
277         (signature_iter_to_g_type_array): Don't call
278         signature_iter_to_g_type_struct.
279         (signature_iter_to_g_type_struct): Delete.
280         (dbus_gvalue_to_signature): Delete.
281         (dbus_gvalue_to_signature): New function with same name as other
282         one; we can convert structures to signatures.
283         (demarshal_valuearray): New function.
284         (get_type_demarshaller): Use it.
285         (demarshal_recurse): Delete.
286         (marshal_proxy): New function.
287         (marshal_map): Warn if we can't determine signature from type.
288         (marshal_collection_ptrarray): Ditto.
289         (marshal_collection_array): Ditto.
290         (get_type_marshaller): Use marshal_valuearray.
291         (marshal_recurse): Delete.
292         (_dbus_gvalue_test): Add some tests.
293
294         * dbus/dbus-glib.h (struct _DBusGValueIterator): 
295         (dbus_g_value_get_g_type, DBUS_TYPE_G_VALUE)
296         (dbus_g_value_open, dbus_g_value_iterator_get_value)
297         (dbus_g_value_iterator_get_values, dbus_g_value_iterator_recurse)
298         (dbus_g_value_free): Remove prototypes.
299
300         * glib/dbus-binding-tool-glib.c (dbus_g_type_get_lookup_function): Handle
301         G_TYPE_VALUE_ARRAY.
302
303         * glib/examples/example-service.c:
304         * glib/examples/example-client.c: Implement GetTuple.
305
306         * test/glib/test-dbus-glib.c:
307         * test/glib/test-service-glib.c:
308         * test/glib/test-service-glib.xml: Add structure tests.
309
310 2005-07-10  Colin Walters  <walters@verbum.org>
311
312         * doc/TODO: Knock off some GLib items with this patch.
313
314         * glib/dbus-gvalue-utils.c (_dbus_gtype_can_signal_error) 
315         (_dbus_gvalue_signals_error): New functions.
316
317         * glib/dbus-gvalue-utils.h: Prototype them.
318
319         * glib/dbus-gobject.c (arg_iterate): Update to handle return vals
320         and change to not output const/retval flags for input args.  All
321         callers updated.
322         (invoke_object_method): Refactor to handle return values.  Add
323         some more comments in various places.  Remove debug g_print.
324
325         * glib/dbus-binding-tool-glib.h (DBUS_GLIB_ANNOTATION_RETURNVAL): New.
326
327         * glib/dbus-binding-tool-glib.c (dbus_g_type_get_marshal_name):
328         Handle G_TYPE_NONE.
329         (compute_gsignature): New function; refactored from code from
330         compute_marshaller and compute_marshaller_name.  Enhance to
331         handle return values and async ops more cleanly.  Update for
332         async ops returning NONE instead of BOOLEAN.
333         (compute_marshaller, compute_marshaller_name): Call compute_gsignature
334         and output appropriate string.
335         (generate_glue): Handle return value annotation.  Also don't dump
336         constness flag for input arguments.
337
338         * glib/Makefile.am (DBUS_GLIB_INTERNALS): New variable; contains
339         files shared between installed library and utilities.
340         (libdbus_glib_1_la_SOURCES): Move some stuf into DBUS_GLIB_INTERNALS.
341         (libdbus_gtool_la_SOURCES): Suck in DBUS_GLIB_INTERNALS so the
342         binding tool can access gtype utility functions.
343
344         * test/glib/test-service-glib.c: 
345         * test/glib/test-service-glib.xml: 
346         * test/glib/test-dbus-glib.c: Add some tests for return values.
347
348 2005-07-09  Colin Walters  <walters@verbum.org>
349
350         * glib/dbus-gparser.c (parse_annotation): Add annotations to
351         argument if available, not method.
352
353         * glib/dbus-gobject.c (arg_iterate): More verbose warnings.
354         (invoke_object_method): First, remove some redundant
355         GValues (object_value, error_value) in favor of working on
356         array directly.  Second, rework constness to be less buggy.
357         Now we iterate directly over the argument metadata instead
358         of parallel iterating over output signature and metadata.
359
360         * glib/dbus-glib-tool.h: Add INVALID_ANNOTATION error.
361
362         * glib/dbus-binding-tool-glib.c (generate_glue): Barf on const
363         annotation on input args.
364         
365 2005-07-09  Colin Walters  <walters@verbum.org>
366
367         * glib/dbus-binding-tool-glib.h (DBUS_GLIB_ANNOTATION_CONST):
368         Define.
369
370         * glib/dbus-binding-tool-glib.c (generate_glue): Handle Const
371         annotation.
372
373         * glib/dbus-gobject.c (arg_iterate): Update to parse constval too.
374         (method_dir_signature_from_object_info): Handle arg_iterate change.
375         (write_interface): Ditto.
376         (lookup_object_info): Don't barf if format_version is > 0.
377         (invoke_object_method): Handle arg constness.
378
379         * glib/dbus-gidl.c (struct ArgInfo): Add annotations.
380         (arg_info_new): Create.
381         (arg_info_unref): Destroy.
382         (arg_info_get_annotations, arg_info_get_annotation) 
383         (arg_info_add_annotation): New functions.
384
385         * glib/dbus-gidl.h: Prototype them.
386
387         * glib/dbus-gparser.c (parse_annotation): Allow annotations in
388         args, disallow them in properties.
389         (parse_annotation): Handle arg annotations.
390
391         * test/glib/test-service-glib.xml: 
392         * test/glib/test-service-glib.c: Update to make some methods
393         const.
394
395 2005-07-08  Colin Walters  <walters@verbum.org>
396
397         * test/glib/test-service-glib.xml: 
398         * test/glib/test-service-glib.c:
399         * test/glib/test-dbus-glib.c: Test a{sv}.
400
401         * glib/examples/statemachine/statemachine.c:
402         * glib/examples/statemachine/statemachine-server.c:
403         * glib/examples/statemachine/statemachine-client.c: Fix some bugs,
404         add progress bar, etc.
405
406         * glib/dbus-gvalue.c (register_array, register_dict): Delete; not
407         needed anymore due to generic array/map marshalling.
408         (dbus_g_value_types_init): Don't register basic arrays or the
409         string/string hash.
410         (dbus_gtype_from_signature_iter): Don't try to recurse into
411         variants.
412         (dbus_gtype_to_signature): Check collection/map before type
413         metadata.
414         (demarshal_garray_basic): Renamed to demarshal_collection_array.
415         (demarshal_ghashtable): Renamed to demarshal_map; fix to use new
416         generic map creation/append functions instead of hash table
417         specifically.
418         (get_type_demarshaller): Handle maps.
419         (demarshal_collection): Dispatch on collection type to either
420         demarshal_collection_ptrarray or demarshal_collection_array.
421         (get_type_marshaller): Handle maps.
422         (marshal_collection): Dispatch collection type to either
423         marshal_collection_ptrarray or marshal_collection_array.
424         (_dbus_gvalue_test): New test.
425
426         * glib/dbus-gvalue-utils.c (unset_and_free_g_value): New function.
427         (hash_free_from_gtype): Use it to free GValues.
428         (hashtable_append): New function.
429         (ptrarray_append): Fix prototype.
430         (slist_append): Ditto.
431         (_dbus_gvalue_utils_test): Extend tests.
432
433         * glib/dbus-gtype-specialized.c
434         (dbus_g_type_specialized_init_append): Renamed from
435         dbus_g_type_specialized_collection_init_append.  Remove const from
436         value, since we steal it.
437         (dbus_g_type_specialized_map_append): New function.
438
439         * glib/dbus-gtype-specialized.h: Update prototypes.
440         Add DBusGTypeSpecializedMapAppendFunc.
441
442         * glib/dbus-gtest.c (dbus_glib_internal_do_not_use_run_tests): Run
443         _dbus_gvalue_test.
444         
445         * glib/dbus-gtest.h: Prototype it.
446
447 2005-07-08  Ross Burton  <ross@openedhand.com>
448
449         * dbus/dbus-glib.h:
450         Add DBysGAsyncData for the async bindings.
451
452         * glib/dbus-binding-tool-glib.c:
453         Re-enable the async bindings.
454
455         * test/glib/test-dbus-glib.c:
456         Add a test for the generated async bindings.
457
458 2005-07-08  Colin Walters  <walters@verbum.org>
459
460         * doc/TODO: Update GLib todo bits, also add a post-1.0 TODO for a
461         connection concept.
462         
463 2005-07-08  Colin Walters  <walters@verbum.org>
464         
465         * tools/Makefile.am: Kill of print-introspect in favor of using
466         dbus-send --print-reply=literal.
467
468         * test/glib/test-service-glib.xml: 
469         * test/glib/test-service-glib.c (my_object_get_objs): New test
470         for "ao".
471
472         * test/glib/test-dbus-glib.c (echo_received_cb): Free echo data.
473         (main): Test GetObjs.
474
475         * glib/examples/statemachine/Makefile.am:
476         * glib/examples/statemachine/sm-marshal.list:
477         * glib/examples/statemachine/statemachine-client.c:
478         * glib/examples/statemachine/statemachine-server.c:
479         * glib/examples/statemachine/statemachine-server.xml:
480         * glib/examples/statemachine/statemachine.c:
481         * glib/examples/statemachine/statemachine.h:
482         * glib/examples/statemachine/statemachine.xml:
483
484         New example.
485
486         * glib/examples/example-service.c (main): Move invocation
487         of dbus_g_object_type_install_info earlier, to emphasize it
488         should only be done once.
489
490         * glib/examples/example-signal-emitter.c (main): Ditto.
491
492         * glib/examples/Makefile.am (SUBDIRS): Include statemachine.
493
494         * glib/dbus-gvalue.h (dbus_gtype_to_signature)
495         (dbus_gvalue_marshal): Update prototypes.
496
497         * glib/dbus-gvalue.c: Update all marshalling functions to take
498         const GValue instead of GValue.
499         (signature_iter_to_g_type_array): Return a GPtrArray for nonfixed
500         types.
501         (dbus_gvalue_to_signature): Update for dbus_gtype_to_signature
502         change.
503         (dbus_gtype_to_signature): Handle generic collecitons and maps.
504         Return a newly-allocated string.
505         (demarshal_proxy, demarshal_object_path, demarshal_object)
506         (demarshal_strv, demarshal_ghashtable): Set error, don't assert if
507         we get the wrong types from message.
508         (get_type_demarshaller): New function, extracted from
509         dbus_gvalue_demarshal.
510         (demarshal_collection): New function, demarshals generic
511         collection.
512         (dbus_gvalue_demarshal): Just invoke result of
513         get_type_demarshaller.  Throw error if we don't have one.
514         (marshal_garray_basic): Abort on OOM.
515         (get_type_marshaller): New function, extracted from
516         dbus_gvalue_marshal.
517         (collection_marshal_iterator, marshal_collection): New functions;
518         implements generic marshalling for an iteratable specialized
519         collection.
520         (dbus_gvalue_marshal): Just invoke result of get_type_marshaller.
521
522         * glib/dbus-gvalue-utils.c (gvalue_from_ptrarray_value): Handle
523         G_TYPE_STRING.
524         (ptrarray_value_from_gvalue): Ditto.
525         (ptrarray_append, ptrarray_free): New functions.
526         (slist_constructor, slist_iterator, slist_copy_elt, slist_copy) 
527         (slist_append, slist_end_append, slist_free): New functions.
528         (dbus_g_type_specialized_builtins_init): Add append fuctions
529         for GPtrArray and GSList.  Register GSList.
530         (test_specialized_hash, _dbus_gvalue_utils_test): New functions.
531
532         * glib/dbus-gtype-specialized.h (DBusGTypeSpecializedAppendContext):
533         New.
534         (dbus_g_type_specialized_collection_init_append)
535         (dbus_g_type_specialized_collection_append)
536         (dbus_g_type_specialized_collection_end_append): Prototype.
537         (DBusGTypeSpecializedCollectionVtable): Add append_func and
538         end_append_func.
539
540         * glib/dbus-gtype-specialized.c (dbus_g_type_specialized_collection_init_append) 
541         (dbus_g_type_specialized_collection_append) 
542         (dbus_g_type_specialized_collection_end_append): New functions.
543         (dbus_g_type_map_value_iterate): Take const GValue.
544         (dbus_g_type_collection_value_iterate): Ditto.
545
546         * glib/dbus-gtest.c (dbus_glib_internal_do_not_use_run_tests): Run
547         _dbus_gvalue_utils_test.
548         
549         * glib/dbus-gtest.h: Prototype it.
550
551         * glib/dbus-gproxy.c (dbus_g_proxy_manager_filter): Avoid
552         using uninitialized owner_list.
553         (dbus_g_proxy_begin_call_internal): Move return_if_fail to
554         public API.
555         (dbus_g_proxy_end_call_internal): Update to use error set
556         from dbus_gvalue_demarshal instead of setting it here.
557         (dbus_g_proxy_begin_call): Move return_if_fail here.
558
559         * glib/dbus-gobject.c (write_interface): Update for
560         dbus_gtype_to_signature returning new string.
561
562         * configure.in: Add glib/examples/statemachine.
563
564 2005-07-08  Joe Shaw  <joeshaw@novell.com>
565
566         * configure.in: Add a configure option, --with-console-auth-dir
567         
568         * dbus/dbus-sysdeps-util.c (_dbus_user_at_console): Use the
569         new setting.  Patch from Kay Sievers.
570
571 2005-07-06  Colin Walters  <walters@verbum.org>
572
573         * dbus/dbus-glib.h (DBusGPendingCall, DBusGPendingCallNotify)
574         (DBUS_TYPE_G_PENDING_CALL, dbus_g_pending_call_get_g_type)
575         (dbus_g_pending_call_ref, dbus_g_pending_call_unref): Delete.
576         (dbus_g_pending_call_set_notify, dbus_g_pending_call_cancel):
577         Delete in favor of dbus_g_proxy_begin_call and
578         dbus_g_proxy_cancel_call.
579         (DBusGProxyCall, DBusGProxyCallNotify): New.
580         (dbus_g_proxy_begin_call): Change prototype to take callback, user
581         data, and destroy function.  This replaces
582         dbus_g_pending_call_set_notify.
583         (dbus_g_proxy_cancel_call): Prototype.
584         (DBusGAsyncData): Delete, shouldn't be needed anymore.
585
586         * glib/dbus-gproxy.c (struct _DBusGProxy): Add call_id_counter and
587         pending_calls map.
588         (struct _DBusGProxyManager): Add bus_proxy member, which is an
589         internal proxy for calls to the bus. Remove
590         pending_nameowner_calls, now the internal proxy keeps track.
591         (dbus_g_proxy_manager_unref): Unref bus proxy, remove reference to
592         pending_nameowner_calls.
593         (got_name_owner_cb): Update prototype, and use
594         dbus_g_proxy_end_call.
595         (got_name_owner_cb): Remove reference to pending_nameowner_calls.
596         (dbus_g_proxy_manager_register): Delete directly libdbus code in
597         favor of using internal proxy.
598         (dbus_g_proxy_manager_unregister): Update to use
599         dbus_g_proxy_cancel_call for any pending GetNameOwner call.
600         (dbus_g_proxy_init): Initialize pending calls map.
601         (dbus_g_proxy_constructor): New.
602         (dbus_g_proxy_class_init): Add get/set property functions,
603         constructor, and add NAME, PATH, and INTERFACE properties.
604         (cancel_pending_call): New function.
605         (dbus_g_proxy_dispose): Iterate over any outstanding calls and
606         cancel them.
607         (dbus_g_proxy_set_property, dbus_g_proxy_get_property): New.
608         (GPendingNotifyClosure): New structure.
609         (d_pending_call_notify, d_pending_call_free): Moved here from
610         dbus-glib.c.
611         (DBUS_G_VALUE_ARRAY_COLLECT_ALL): Moved around to satisfy function
612         ordering.
613         (manager_begin_bus_call): New internal function for talking to
614         internal bus proxy.
615         (dbus_g_proxy_new): Construct object using GObjet properties.
616         (dbus_g_proxy_begin_call_internal): Update to take user data, etc.
617         Create closure of same, and insert call into map of pending calls.
618         (dbus_g_proxy_end_call_internal): Take call id instead of pending
619         call.  Look up pending call in current set.  Remove it when we've
620         completed.
621         (dbus_g_pending_call_end, dbus_g_proxy_end_call_internal): Delete.
622         (dbus_g_proxy_begin_call): Change API to take callback, user data,
623         and destroy function directly.
624         (dbus_g_proxy_end_call): Update to take DBusGProxyCall.
625         (dbus_g_proxy_call): Invoke with NULL callback.
626         (dbus_g_proxy_cancel_call): New function, replaces
627         dbus_g_pending_call_cancel.
628
629         * glib/dbus-gparser.c (validate_signature): Fix call to
630         dbus_set_g_error.
631
632         * glib/dbus-gobject.c (dbus_g_object_type_dbus_metadata_quark):
633         New quark for attaching metadata to GType.
634         (info_hash): Delete.
635         (lookup_object_info): Look up using quark.
636         (dbus_g_object_type_install_info): Check that a type is classed,
637         not that it's an object.  Also just install type data using quark
638         instead of using global hash.
639
640         * glib/dbus-glib.c (dbus_g_pending_call_ref) 
641         (dbus_g_pending_call_unref, dbus_pending_call_get_g_type)
642         (GPendingNotifyClosure): Delete.
643         (d_pending_call_notify, d_pending_call_free): Move to dbus-gproxy.c.
644         (dbus_g_pending_call_set_notify, dbus_g_pending_call_cancel): Delete.
645
646         * glib/dbus-binding-tool-glib.c (generate_client_glue): Disable async
647         client method generation until we can fix it...
648         
649         * tools/dbus-viewer.c (load_child_nodes): Use dbus_g_proxy_call.
650         (load_from_service_thread_func): Ditto.
651
652         * tools/dbus-names-model.c (struct NamesModel): Hold
653         DBusGProxyCall.
654         (have_names_notify): Update prototype, use
655         dbus_g_proxy_cancel_call.
656         (names_model_reload): Update for new dbus_g_proxy_begin_call API.
657
658         * tools/dbus-monitor.c (filter_func): Update for print_message
659         API change.
660
661         * test/glib/test-dbus-glib.c: Add more tests for async
662         invocations.  Update many begin_call/end_call pairs to just use
663         dbus_g_proxy_call.
664
665         * tools/dbus-send.c (main): Add --print-reply=literal mode.  This
666         allows us to dump print-introspect.c.
667
668         * tools/dbus-print-message.h (print_message): Add literal argument
669         to print_message which is intended to allow printing arguments without
670         metadata like "string=".
671
672         * tools/dbus-print-message.c (print_iter): Add literal argument.
673         (print_message): Allow printing string messages literally.
674
675 2005-07-05  Colin Walters  <walters@verbum.org>
676
677         * glib/dbus-gproxy.c (marshal_dbus_message_to_g_marshaller):
678         Remove value refcount leak, original patch from Jorn Baayen
679         <jorn@openedhand.com>.  Also remove useless extra value in favor
680         of prepending to value array directly.
681
682 2005-07-02  Colin Walters  <walters@verbum.org>
683
684         * glib/dbus-gmain.c (_dbus_gmain_test): Fix test.
685
686 2005-07-01  Colin Walters  <walters@verbum.org>
687
688         Patch from Jonathan Matthew <jonathan@kaolin.hn.org>
689         
690         * glib/dbus-gvalue.c (basic_typecode_to_gtype): Fix return type.
691         (dbus_g_value_types_init): Marshal G_TYPE_CHAR as DBUS_TYPE_BYTE,
692         G_TYPE_LONG as DBUS_TYPE_INT32, G_TYPE_ULONG as DBUS_TYPE_UINT32,
693         and G_TYPE_FLOAT as DBUS_TYPE_DOUBLE.
694
695 2005-06-30  Colin Walters  <walters@verbum.org>
696
697         * test/glib/test-dbus-glib.c:
698         * test/glib/test-service-glib.c:
699         * test/glib/test-service-glib.xml: Update tests for new error
700         setting bits, also add async tests (patch from Ross Burton).
701
702         * test/glib/Makefile.am (test_service_glib_LDADD): Add
703         DBUS_GLIB_THREADS_LIBS.
704
705         * glib/dbus-gproxy.c (get_name_owner)
706         (dbus_g_pending_call_end_valist): Ditto.
707
708         * glib/dbus-gobject.c (error_metadata): New mapping from GError
709         domain (GQuark) to DBusGErrorInfo.  
710         (gerror_domaincode_to_dbus_error_name): Attempt to look up error
711         quark in error_metadata.  Take message interface as default
712         error message interface.
713         (gerror_to_dbus_error_message): Pass message interface.
714         (dbus_set_g_error): Resurrected.
715         (dbus_g_error_info_free): New function.
716         (dbus_g_object_type_install_info): Use g_type_class_ref instead
717         of _peek to actually create the object class if it hasn't been
718         created yet.
719         (dbus_g_error_domain_register): New function.
720
721         * glib/dbus-gmain.c (dbus_g_bus_get): Switch to dbus_set_g_error.
722
723         * glib/dbus-gparser.c (validate_signature): Ditto.
724
725         * dbus/dbus-glib.h (dbus_g_error_set): Delete.
726         (dbus_g_error_domain_register): Prototype.
727
728         * glib/dbus-glib.c (dbus_g_error_set): Delete.
729         Update tests.
730
731 2005-06-29  Colin Walters  <walters@verbum.org>
732
733         * dbus/dbus-glib.h: Delete DBUS_TYPE_G_PROXY_ARRAY.  Add
734         DBUS_TYPE_G_OBJECT_PATH.
735
736         * glib/dbus-gvalue.c (dbus_g_value_types_init): Remove marshallers
737         for G_TYPE_OBJECT and DBUS_TYPE_G_PROXY_ARRAY (the latter should
738         be handled more generically).  Add DBUS_TYPE_G_OBJECT_PATH.
739         (dbus_g_object_path_get_g_type): New function.
740         (dbus_gtype_from_signature_iter): Map DBUS_TYPE_OBJECT_PATH
741         to DBUS_TYPE_G_OBJECT_PATH by default.
742         (demarshal_proxy): Remove unused name variable.
743         (demarshal_object_path, marshal_object_path): New functions.
744         (demarshal_proxy_array, marshal_proxy_array): Delete.
745         
746         * glib/dbus-binding-tool-glib.c (dbus_g_type_get_c_name): Map
747         DBUS_TYPE_G_OBJECT_PATH to char *.
748         (dbus_g_type_get_lookup_function): Map builtin
749         DBUS_TYPE_G_OBJECT_PATH.
750
751         * test/glib/test-dbus-glib.c
752         * test/glib/test-service-glib.c (my_object_objpath): 
753         Adapt tests to new object path marshalling.
754
755 2005-06-29  John (J5) Palmieri  <johnp@redhat.com>
756
757         * configure.in: force check for Python >= 2.4
758
759 2005-06-29  Colin Walters  <walters@verbum.org>
760         
761         Patch from Ross Burton <ross@openedhand.com>
762         
763         * glib/dbus-gobject.c (invoke_object_method): Unset object
764         value in all cases, not only in async case.
765
766 2005-06-29  Colin Walters  <walters@verbum.org>
767
768         * glib/dbus-gproxy.c (struct _DBusGProxy): Add new member
769         name_call for keeping track of any outgoing GetNameOwner call.
770         Also add for_owner and associated.
771         (struct _DBusGProxyManager): Add owner_names, which is hash table
772         that maps a base name to a list of names it owns (that we're
773         interested in).  Add pending_nameowner_calls which is a list of
774         all outstanding GetNameOwner; avoids us having to iterate over
775         every proxy.  Add unassociated_proxies which keeps track of name
776         proxies with no associated name owner.
777         (dbus_g_proxy_manager_unref): Destroy owner_names.
778         (struct DBusGProxyNameOwnerInfo): New struct for keeping track of
779         name refcounts.
780         (find_name_in_info, name_owner_foreach)
781         (dbus_g_proxy_manager_lookup_name_owner, insert_nameinfo)
782         (dbus_g_proxy_manager_monitor_name_owner)
783         (dbus_g_proxy_manager_unmonitor_name_owner)
784         (unassociate_proxies, dbus_g_proxy_manager_replace_name_owner):
785         New functions; they manipulate the owner_names mapping.
786         (got_name_owner_cb): New function.
787         (get_name_owner): New function, extracted from
788         dbus_g_proxy_new_for_name_owner.
789         (dbus_g_proxy_manager_register): For now we need to keep track of
790         all NameOwnerChanged.  Also if the proxy is for a name, if we
791         don't already know the name owner, queue a new GetNameOwner
792         request and add it to our list of unassociated proxies.  Otherwise
793         inc the refcount.
794         (dbus_g_proxy_manager_unregister): If this proxy is for a name,
795         cancel any pending GetNameOwner call, etc.
796         (dbus_g_proxy_manager_filter): Handle NameOwnerChanged.  Also use
797         the owner_names mapping to look up the current names for the
798         signal source, and dispatch to any proxies for that name.
799         (dbus_g_proxy_new): Initialize new members.
800         (dbus_g_proxy_new_for_name): Delete unused proxy variable.
801         (dbus_g_proxy_new_for_name_owner): Use get_name_owner.
802         (dbus_g_pending_call_end_valist): New function, extracted from
803         dbus_g_proxy_end_call_internal.  Useful when we don't have a proxy
804         but want to use the GLib infrastructure.  Also note how many
805         arguments in reply were over.
806         (dbus_g_pending_call_end): New function, just call
807         dbus_g_pending_call_end_valist.
808         (dbus_g_proxy_end_call_internal): Just call
809         dbus_g_pending_call_end_valist.
810
811         * glib/dbus-gobject.c (_dbus_gobject_lookup_marshaller): Fix lookup
812         of builtin marshaller for STRING_STRING_STRING.
813
814         * test/glib/test-dbus-glib.c: 
815         * test/glib/test-service-glib.c:
816         * test/glib/test-service-glib.xml:
817         Extend tests to cover name proxies, destruction of owner proxies,
818         etc.
819         
820         * glib/examples/example-signal-recipient.c
821         (dbus_g_proxy_new_for_name_owner): Create a name proxy.
822         
823         * tools/dbus-send.c (main): Print D-BUS error name in addition
824         to message.
825
826 2005-06-28  John (J5) Palmieri  <johnp@redhat.com>
827
828         * python/dbus_bindings.pyx.in (cunregister_function_handler,
829         cmessage_function_handler): Patch from 
830         Anthony Baxter <anthony@interlink.com.au> fixes threading problems
831         by using the Py_GILState_Ensure/Release to synchronize with the
832         python runtime.
833         
834 2005-06-28  Ray Strode  <rstrode@redhat.com>
835
836         *  dbus/dbus-spawn.c (_dbus_babysitter_unref): kill
837         babysitter helper process on last unref, bug #2813.
838
839 2005-06-27  Colin Walters  <walters@verbum.org>
840
841         * test/glib/test-dbus-glib.c: 
842         * test/glib/test-service-glib.c:
843         * test/glib/test-service-glib.xml:
844         Test hash table signal emitting.
845
846         * glib/dbus-gobject.c (_dbus_gobject_lookup_marshaller): Convert
847         types to their fundamental basis types, since this is what
848         marshallers operate on.  Also add an entry for VOID__BOXED.
849         (dbus_g_object_register_marshaller_array): Convert to fundamental.
850
851 2005-06-26  Havoc Pennington  <hp@redhat.com>
852
853         * doc/dbus-tutorial.xml: fix names of interface/service/path, fix
854         from Don Park
855
856 2005-06-26  Colin Walters  <walters@verbum.org>
857
858         * glib/dbus-glib.c (dbus_set_g_error): Delete.
859         (dbus_g_error_set): New public function from its ashes; used by
860         both service-side method implementation and GLib bindings
861         internals.
862         (dbus_g_error_has_name, dbus_g_error_get_name): New function.
863         (_dbus_glib_test): Add some tests.
864
865         * test/glib/test-dbus-glib.c (main): Test dbus_g_error_has_name.
866
867         * test/glib/test-service-glib.c (my_object_throw_error): Use
868         dbus_g_error_set.
869
870         * glib/dbus-gobject.c (gerror_to_dbus_error_message): Handle
871         errors thrown by dbus_g_error_set.
872
873         * glib/dbus-gmain.c (dbus_g_bus_get): Change to dbus_g_error_set.
874
875         * glib/dbus-gparser.c (validate_signature): Ditto.
876
877         * glib/dbus-gproxy.c (dbus_g_proxy_new_for_name_owner) 
878         (dbus_g_proxy_end_call_internal): Ditto.
879
880         * glib/Makefile.am: Generate dbus-glib-error-switch.h, which
881         converts DBUS_ERROR_x to DBUS_GERROR_x.
882         (libdbus_glib_1_la_SOURCES, BUILT_SOURCES, CLEANFILES): Add it.
883
884         * doc/TODO: Remove error TODO.
885
886         * doc/dbus-tutorial.xml: Update with documentation about error
887         handling.
888
889         * dbus/make-dbus-glib-error-enum.sh: Tighten up regexp to make
890         sure we only change DBUS_ERROR to DBUS_GERROR, not all ERROR to
891         GERROR.  Also add DBUS_GERROR_REMOTE_EXCEPTION.
892
893 2005-06-22  Colin Walters  <walters@verbum.org>
894         
895         Patch from Ross Burton <ross@openedhand.com>
896
897         * glib/dbus-gobject.c (dbus_g_method_return): Free out_sig.
898
899 2005-06-20  Colin Walters  <walters@verbum.org>
900
901         * configure.in: Add glib/examples.
902
903         * glib/Makefile.am: Add examples/
904
905         * glib/examples/.cvsignore
906         * glib/examples/Makefile.am
907         * glib/examples/example-client.c
908         * glib/examples/example-service.c
909         * glib/examples/example-service.xml
910         * glib/examples/example-signal-emitter.c
911         * glib/examples/example-signal-emitter.xml
912         * glib/examples/example-signal-recipient.c:
913         New files; GLib binding examples, ported from
914         python/examples.
915
916 2005-06-20  Colin Walters  <walters@verbum.org>
917
918         * dbus/dbus-glib.h: 
919         * glib/dbus-gproxy.c: Rename dbus_g_proxy_invoke to
920         dbus_g_proxy_call.
921
922         * glib/dbus-binding-tool-glib.c: 
923         * doc/dbus-tutorial.xml: 
924         * test/glib/test-dbus-glib.c: Update for rename.
925         
926 2005-06-20  Colin Walters  <walters@verbum.org>
927
928         Patch suggested by Ross Burton <ross@openedhand.com>
929
930         * glib/dbus-gobject.c (export_signals): Free signal name.
931         (g_value_init): Use G_VALUE_NOCOPY_CONTENTS to plug
932         memory leak.  Add a bit of documentation.
933         (dbus_g_method_return_error): Free context, and note we do
934         so.
935
936 2005-06-18  Murray Cumming  <murrayc@murrayc.com>
937
938         * dbus/dbus-glib.h:
939         * glib/dbus-gobject.c:
940         * glib/dbus-gproxy.c:
941         * glib/dbus-gvalue.c: Predeclare structs as 
942         typedef struct _Something Something instead of 
943         typedef struct Something Something, so we can 
944         redeclare the prototypes. Other GNOME libraries 
945         do this already.
946
947 2005-06-17  Colin Walters  <walters@verbum.org>
948
949         * tools/dbus-names-model.c (have_names_notify): Fix call
950         to dbus_g_proxy_end_call.
951         
952 2005-06-17  Colin Walters  <walters@verbum.org>
953
954         * glib/dbus-gproxy.c (dbus_g_proxy_emit_remote_signal): Don't
955         spew warnings if we get malformed remote signals.
956
957         * glib/dbus-gobject.c (propsig_iterate): New function.
958         (lookup_object_info): New function, extracted from
959         lookup_object_and_method.
960         (introspect_properties, introspect_signals): Delete; these
961         are merged into write_interface.
962         (write_interface): Write out signals and properties here;
963         dump the org.gtk.object stuff and use the interface given
964         in the introspection data blob.  Also fix up property XML.
965         (lookup_values): New function.
966         (introspect_interfaces): Gather a mapping from interface to a
967         list of its methods, signals, and properties, then write out
968         each interface.
969         (lookup_object_and_method): Use lookup_object_info.
970         (struct DBusGSignalClosure): Add interface.
971         (dbus_g_signal_closure_new): Add interface. Don't dup signame;
972         we can just use the constant data.
973         (dbus_g_signal_closure_finalize): Don't free signal name.
974         (signal_emitter_marshaller): Use interface from signal closure.
975         (export_signals): Only export signals mentioned in introspection
976         blob.
977         (dbus_g_connection_register_g_object): Warn if we have no
978         introspection data for an object.
979         (funcsig_equal): Remove unused variable.
980         (dbus_g_object_register_marshaller): Take varargs instead of
981         list.
982         (dbus_g_object_register_marshaller_array): New function,
983         extracted from old dbus_g_object_register_marshaller.
984
985         * glib/dbus-binding-tool-glib.c (struct DBusBindingToolCData): Add
986         signals and property data.
987         (write_quoted_string): New function, extracted from generate_glue.
988         (generate_glue): Write signals and properties to introspection
989         blob.
990
991         * dbus/dbus-glib.h (struct DBusGObjectInfo): Include
992         exported_signals and exported_properties.
993         (dbus_g_object_register_marshaller): Update prototype.
994         (dbus_g_object_register_marshaller_array): Prototype.
995         
996         * test/glib/test-dbus-glib.c: Extend testing to cover new signals.
997
998         * test/glib/test-service-glib.c: Add new test signals and method
999         to emit them.
1000
1001         * test/glib/test-service-glib.xml: Add some test signals.
1002
1003         * test/glib/Makefile.am (BUILT_SOURCES): Add my-object-marshal.c
1004         and my-object-marshal.h
1005         (test_service_glib_SOURCES, test_dbus_glib_SOURCES): Add
1006         my-object-marshal.c.
1007         (my-object-marshal.c, my-object-marshal.h): Implement.
1008
1009         * test/glib/.cvsignore: Update.
1010
1011         * doc/TODO: Remove two GLib TODO items fixed by this
1012         patch.
1013
1014 2005-06-16  Colin Walters  <walters@verbum.org>
1015
1016         * doc/TODO: Update for GLib bindings.
1017         
1018 2005-06-16  Colin Walters  <walters@verbum.org>
1019
1020         * glib/dbus-binding-tool-glib.c:
1021         * glib/dbus-gobject.c:
1022         * glib/dbus-gproxy.c:  Add Nokia copyright; Patch
1023         from Ross Burton, for his GLib bindings work.
1024
1025 2005-06-16  Colin Walters  <walters@verbum.org>
1026
1027         * glib/dbus-gobject.c (funcsig_hash, funcsig_equal): Use n_params
1028         to iterate instead of walking to G_TYPE_INVALID.
1029
1030         Patch based on a patch from Ryan Gammon.
1031
1032 2005-06-16  Colin Walters  <walters@verbum.org>
1033
1034         * bus/bus.c (bus_context_new): Set parser to NULL
1035         after we unref it (Patch from Chris Boscolo, #2174).
1036         
1037 2005-06-16  Colin Walters  <walters@verbum.org>
1038
1039         * python/dbus_bindings.pyx.in: Import size_t,
1040         __int64_t, __uint64_t, and __signed.
1041
1042         * dbus/dbus-sysdeps.c <HAVE_CMSGCRED> (write_credentials_byte):
1043         Define cmsg struct, output it.
1044         (_dbus_read_credentials_unix_socket):
1045         Use cmsg struct.
1046         
1047         Patch from Joe Markus Clarke for FreeBSD support.
1048         
1049 2005-06-16  Colin Walters  <walters@verbum.org>
1050
1051         * tools/dbus-send.c (append_array): Use strtok.
1052         (append_dict): New function.
1053         (type_from_name): New function, extracted from main.
1054         (main): Handle sending dicts.
1055
1056         * tools/dbus-print-message.c (print_iter): Print dict
1057         entries.
1058         
1059 2005-06-16  Colin Walters  <walters@verbum.org>
1060
1061         * glib/dbus-gvalue.c (marshal_basic): Marshal NULL string
1062         values as the empty string (#2948).
1063         
1064 2005-06-16  Colin Walters  <walters@verbum.org>
1065
1066         * dbus/Makefile.am:
1067         * mono/doc/Makefile.am:
1068         * test/glib/Makefile.am:
1069
1070         Fix srcdir != builddir issues (Patch from Chris Wilson, #3477)
1071
1072 2005-06-16  Colin Walters  <walters@verbum.org>
1073
1074         * dbus/dbus-marshal-header.c (_dbus_header_load): Set
1075         header byte order from expected byte order (Patch from Chris Wilson, #3475).
1076
1077         * dbus/dbus-marshal-byteswap.c (byteswap_body_helper): 
1078         Increment pointer after swapping fixed array.  Add assertion
1079         for array length.
1080                 
1081 2005-06-15  Colin Walters  <walters@verbum.org>
1082
1083         * dbus/dbus-sysdeps.c <HAVE_CMSGCRED> (_dbus_read_credentials_unix_socket):
1084         Fix call to dbus_set_error.  (Patch from Michael Banck, #3461)
1085         
1086 2005-06-15  John (J5) Palmieri  <johnp@redhat.com>
1087
1088         * NEWS: Update to 0.34
1089
1090 2005-06-15  David Zeuthen  <davidz@redhat.com>
1091
1092         * configure.in (LT_CURRENT): Revert back to 1 as the library
1093         hasn't changed and we've certainly not committed to protocol
1094         stability yet.  All this does is to break ABI. See commit note
1095         from hp@redhat.com 2005-05-05 for details.
1096         
1097 2005-06-15  John (J5) Palmieri  <johnp@redhat.com>
1098
1099         * dbus/dbus-connection.c (_dbus_connection_peer_filter): New method 
1100         (_dbus_connection_run_builtin_filters): New method
1101         (dbus_connection_dispatch): Run the builtin filters which in turn
1102         runs the peer filter which handles Ping messages.
1103
1104         * doc/TODO: 
1105          - Ping isn't handled: This patch fixes it
1106          
1107          - Add a test case for the Ping message: added TODO item
1108
1109 2005-06-15  John (J5) Palmieri  <johnp@redhat.com>
1110
1111         * dbus/dbus-message.c:
1112         (dbus_message_has_path): New method
1113         (dbus_message_has_interface): New method
1114         (dbus_message_has_member): New method
1115
1116         * dbus/dbus/dbus-sysdeps.c (_dbus_check_dir_is_private_to_user):
1117         New method
1118
1119         * dbus/dbus-keyring.c (_dbus_keyring_reload): Check to see that 
1120         the keyring directory is private to the user
1121
1122         * doc/TODO:
1123          - The convenience functions in dbus-bus.h should perhaps have
1124          the signatures that they would have if they were autogenerated
1125          stubs. e.g. the acquire service function. We should also evaluate
1126          which of these functions to include, in light of the fact that
1127          GLib/Qt native stubs will probably also exist.: Punted
1128
1129          - add dbus_message_has_path(), maybe has_member/interface:
1130          fixed in this patch
1131
1132          - in dbus-keyring.c, enforce that the keyring dir is not
1133          world readable/writable: Fixed in this patch
1134
1135 2005-06-15  John (J5) Palmieri  <johnp@redhat.com>
1136
1137         * dbus/dbus-marshal-validate.h: Added a new validation
1138         error code DBUS_VALIDITY_UNKNOWN_OOM_ERROR = -4 for 
1139         out of memory errors when validating signitures
1140
1141         * dbus/dbus-marshal-header.c: use DBUS_VALIDITY_UNKNOWN_OOM_ERROR
1142         in places where we previously used DBUS_VALID and a FALSE return 
1143         value to indicate OOM
1144         
1145         * dbus/dbus-marshal-validate.c (_dbus_validate_signature_with_reason):
1146         Use a stack to track the number of elements inside containers.  The 
1147         stack values are then used to validate that dict entries have only two
1148         elements within them.
1149         (validate_body_helper): check the reason for failure when validating
1150         varients
1151         
1152         * dbus/dbus-message.c (load_message): use 
1153         DBUS_VALIDITY_UNKNOWN_OOM_ERROR in places where we previously used 
1154         DBUS_VALID and a FALSE return value to indicate OOM
1155
1156         * doc/TODO: remove "- validate dict entry number of fields" as this
1157         patch fixes it
1158
1159 2005-06-14  David Zeuthen  <davidz@redhat.com>
1160
1161         * bus/bus.c (process_config_every_time): Drop existing conf-dir
1162         watches (if applicable) and add new watches
1163
1164         * bus/main.c (signal_handler): Handle SIGIO if using D_NOTIFY
1165         (main): Setup SIGIO signal handler if using D_NOTIFY
1166
1167         * bus/config-parser.h: Add prototype bus_config_parser_get_conf_dirs
1168
1169         * bus/config-parser.c (struct BusConfigParser): Add conf_dirs list
1170         (merge_included): Also merge conf_dirs list
1171         (bus_config_parser_unref): Clear conf_dirs list
1172         (include_dir): Add directory to conf_dirs list
1173         (bus_config_parser_get_conf_dirs): New function
1174
1175         * bus/dir-watch.[ch]: New files
1176
1177         * bus/Makefile.am (BUS_SOURCES): Add dir-watch.[ch]
1178
1179         * configure.in: Add checks for D_NOTIFY on Linux
1180
1181 2005-06-14  Colin Walters  <walters@verbum.org>
1182
1183         * glib/dbus-binding-tool-glib.c:
1184         * glib/dbus-gobject.c:
1185         * glib/dbus-gvalue.c: Fix indentation and brace style.
1186         
1187 2005-06-14  Ross Burton <ross@openedhand.com>.
1188
1189         * glib/dbus-glib.h: Make DBusGMethodInvocation
1190         a private structure.  Rearrange prototypes a bit.
1191         
1192         * glib/dbus-gproxy.c (dbus_g_proxy_invoke): Add
1193         documentation for first_arg_type.
1194         
1195         * glib/dbus-gobject.c: Move DBusGMethodInvocation
1196         here, add documentation.  Move dbus_g_method_return
1197         and dbus_g_method_return_error into public API
1198         section.
1199
1200 2005-06-14  Colin Walters  <walters@verbum.org>
1201
1202         * glib/dbus-gobject.c (_dbus_gobject_lookup_marshaller):
1203         Add missing return statements, noticed by Ross Burton.
1204         
1205 2005-06-13  Ross Burton <ross@openedhand.com>.
1206
1207         * glib/dbus-gobject.c: Handle errors on message
1208         demarshalling by sending error message back.
1209         * glib/dbus-gvalue.c: Initialize return variables.
1210
1211 2005-06-13  Colin Walters  <walters@verbum.org>
1212
1213         * glib/Makefile.am: Fix thinko in last patch.
1214
1215 2005-06-13  Colin Walters  <walters@verbum.org>
1216
1217         * glib/Makefile.am: Move dbus-gtype-specialized.c
1218         and dbus-gtype-specialized.h into a _HEADERS variable,
1219         install them.
1220
1221 2005-06-12  Colin Walters  <walters@verbum.org>
1222
1223         Async signals and various bugfixes and testing by
1224         Ross Burton <ross@openedhand.com>.
1225
1226         * glib/dbus-gvalue.h: (struct DBusBasicGValue): Delete.
1227         (dbus_gvalue_genmarshal_name_from_type)
1228         (dbus_gvalue_ctype_from_type): Moved to dbus-binding-tool-glib.c.
1229         (dbus_gtype_to_dbus_type): Renamed to dbus_gtype_from_signature.
1230         (dbus_g_value_types_init, dbus_gtype_from_signature)
1231         (dbus_gtype_from_signature_iter, dbus_gtype_to_signature)
1232         (dbus_gtypes_from_arg_signature): New function prototypes.
1233         (dbus_gvalue_demarshal): Take context and error arguments.
1234         (dbus_gvalue_demarshal_variant): New function.
1235         (dbus_gvalue_demarshal_message): New function.
1236         (dbus_gvalue_store): Delete.
1237
1238         * glib/dbus-gvalue.c:
1239
1240         File has been almost entirely rewritten; now we special-case
1241         more types such as DBUS_TYPE_SIGNATURE, handle arrays and
1242         hash tables correctly, etc.  Full support for recursive values
1243         is not yet complete.
1244
1245         * glib/dbus-gproxy.c (dbus_g_proxy_class_init): Change last
1246         argument of signal to G_TYPE_POINTER since we now pass a
1247         structure.
1248         (lookup_g_marshaller): Delete in favor of
1249         _dbus_gobject_lookup_marshaller.
1250         (marshal_dbus_message_to_g_marshaller): Use
1251         _dbus_gobject_lookup_marshaller and dbus_gvalue_demarshal_message
1252         to handle remote signal callbacks.
1253         (dbus_g_proxy_new_from_proxy): New function; creates a new
1254         DBusGProxy by copying an existing one.
1255         (dbus_g_proxy_get_interface, dbus_g_proxy_set_interface)
1256         (dbus_g_proxy_get_path): New functions.
1257         (dbus_g_proxy_marshal_args_to_message): New function;
1258         factored out of existing code.
1259         (DBUS_G_VALUE_ARRAY_COLLECT_ALL): Collect all arguments
1260         from a varargs array.
1261         (dbus_g_proxy_begin_call_internal): New function.
1262         (dbus_g_proxy_end_call_internal): New function.
1263         (dbus_g_proxy_begin_call): Take GTypes instead of DBus types
1264         as arguments; simply invoke dbus_g_proxy_begin_call_internal
1265         after collecting args into value array.
1266         (dbus_g_proxy_end_call): Take GTypes instead of DBus types;
1267         invoke dbus_g_proxy_end_call_internal.
1268         (dbus_g_proxy_invoke): Simply invoke begin_call_interanl and
1269         end_call_internal.
1270         (dbus_g_proxy_call_no_reply): Take GTypes instead of DBus
1271         types.
1272         (array_free_all): New function.
1273         (dbus_g_proxy_add_signal): Take GTypes.
1274
1275         * glib/dbus-gobject.h:
1276         (_dbus_glib_marshal_dbus_message_to_gvalue_array): Delete.
1277         (_dbus_gobject_get_path, _dbus_gobject_lookup_marshaller):
1278         Prototype.
1279
1280         * glib/dbus-gobject.c: Add a global marshal_table hash which
1281         stores mappings from type signatures to marshallers.  Change lots
1282         of invocations of dbus_gtype_to_dbus_type to
1283         dbus_gtype_to_signature.
1284         (_dbus_glib_marshal_dbus_message_to_gvalue_array): Delete.
1285         (introspect_signals): Fix test for query.return_type.
1286         (set_object_property): Update invocation of dbus_gvalue_demarshal.
1287         (invoke_object_method): Many changes.  Handle asynchronous
1288         invocations.  Convert arguments with
1289         dbus_gvalue_demarshal_message.  Handle errors.  Use
1290         DBusSignatureIter instead of strlen on args. Handle all arguments
1291         generically.  Special-case variants.
1292         (dbus_g_method_return, dbus_g_method_return_error): New function.
1293         (DBusGSignalClosure): New structure, closes over signal
1294         information.
1295         (dbus_g_signal_closure_new): New function.
1296         (dbus_g_signal_closure_finalize): New function.
1297         (signal_emitter_marshaller): New function; is special marshaller
1298         which emits signals on bus.
1299         (export_signals): New function; introspects object signals and
1300         connects to them.
1301         (dbus_g_object_type_install_info): Take GType instead of
1302         GObjectClass.
1303         (dbus_g_connection_register_g_object): Invoke export_signals.
1304         (dbus_g_connection_lookup_g_object): New function.
1305         (DBusGFuncSignature) New structure; used for mapping type
1306         signatures to marshallers.
1307         (funcsig_hash): New function; hashes DBusGFuncSignature.
1308         (funcsig_equal): New function; compares DBusGFuncSignature.
1309         (_dbus_gobject_lookup_marshaller): New function.
1310         (dbus_g_object_register_marshaller): New function; used to
1311         register a marshaller at runtime for a particular signature.
1312
1313         * glib/dbus-gmain.c (_dbus_gmain_test): Add various tests.
1314
1315         * glib/dbus-binding-tool-glib.h: Add DBUS_GLIB_ANNOTATION_ASYNC
1316         which notes a server method implementation should be
1317         asynchronous.
1318
1319         * glib/dbus-binding-tool-glib.c
1320         (dbus_binding_tool_output_glib_server): Call
1321         dbus_g_value_types_init.
1322         (write_formal_parameters): Use dbus_gtype_from_signature.  Handle
1323         variants specially.
1324         (dbus_g_type_get_lookup_function): Turn GType into an invocation
1325         of a lookup function.
1326         (write_args_for_direction): Use dbus_g_type_get_lookup_function.
1327         (write_untyped_out_args): New method; write output arguments.
1328         (write_formal_declarations_for_direction): Function for
1329         writing prototypes.
1330         (write_formal_parameters_for_direction): Function for
1331         writing implementations.
1332         (write_typed_args_for_direction): Function for writing
1333         arguments prefixed with GTypes.
1334         (write_async_method_client): Write out async version
1335         of method.
1336
1337         * glib/dbus-binding-tool-glib.c: Include dbus-gvalue-utils.h.
1338         (dbus_g_type_get_marshal_name): Move mapping from GType
1339         to marshal name into here.
1340         (dbus_g_type_get_c_name): Move into here.
1341         (compute_marshaller): Convert signature to type with
1342         dbus_gtype_from_signature, use dbus_g_type_get_marshal_name.
1343         (compute_marshaller_name): Ditto.
1344         (compute_marshaller): Handle async signal annotations.
1345         (gather_marshallers): Return if we don't have a known
1346         prefix.
1347         (generate_glue): Collect introspection blob here, and
1348         write all of the blob at the end.  This allows an object
1349         with multiple interfaces to work.
1350         Mark async methods in introspection blob.
1351
1352         * glib/Makefile.am (libdbus_glib_1_la_SOURCES): Add
1353         dbus-gtype-specialized.c, dbus-gtype-specialized.h,
1354         dbus-gvalue-utils.h, dbus-gvalue-utils.c.
1355
1356         * dbus/dbus-glib.h: Don't include dbus-protocol.h; this
1357         avoids people accidentally using DBUS_TYPE_* which should
1358         not be necessary anymore.
1359         Do include dbus-gtype-specialized.h, which are utilities
1360         for GLib container types.
1361         Add various #defines for types such as
1362         DBUS_TYPE_G_BOOLEAN_ARRAY.
1363         (DBusGValueIterator, DBusGValue): Define, not fully used
1364         yet.
1365         (dbus_g_value_get_g_type): Type for recursive value.
1366         (dbus_g_value_open, dbus_g_value_iterator_get_value)
1367         (dbus_g_value_iterator_get_values, dbus_g_value_iterator_recurse)
1368         (dbus_g_value_free): Prototypes.
1369         (dbus_g_object_register_marshaller, dbus_g_proxy_new_from_proxy): Prototype.
1370         (dbus_g_proxy_set_interface): Prototype.
1371         (dbus_g_proxy_begin_call, dbus_g_proxy_end_call)
1372         (dbus_g_proxy_call_no_reply): Take GLib types instead of DBus
1373         types.
1374         (dbus_g_proxy_get_path, dbus_g_proxy_get_interface):
1375         Accessors.
1376         (DBusGAsyncData, DBusGMethodInvocation): Structures for
1377         doing async invocations.
1378         (dbus_g_method_return, dbus_g_method_return_error):
1379         Prototypes.
1380         * doc/dbus-tutorial.xml: Update GLib section.
1381         
1382         * tools/dbus-viewer.c (load_child_nodes): Update
1383         for new invocation type of dbus_g_proxy_end_call.
1384         (load_from_service_thread_func): Ditto.
1385
1386         * tools/print-introspect.c (main): Ditto.
1387
1388         * tools/dbus-names-model.c (have_names_notify)
1389         (names_model_reload, names_model_set_connection)
1390         Use GTypes.
1391
1392         * python/Makefile.am (INCLUDES): Define DBUS_COMPILATION,
1393         needed since Python bindings use GLib bindings.
1394
1395         * test/glib/Makefile.am (INCLUDES): Define DBUS_COMPILATION.
1396         Add --prefix argument.
1397
1398         * tools/Makefile.am: Define DBUS_COMPILATION.  Remove
1399         unneeded --ignore-unsupported arg.
1400         
1401         * test/glib/test-service-glib.c: 
1402         * test/glib/test-service-glib.xml:
1403         * test/glib/test-dbus-glib.c: Add many more tests.
1404
1405 2005-06-06  David Zeuthen  <davidz@redhat.com>
1406
1407         * doc/TODO: Add item about need to remove deprecated functions.
1408
1409         * dbus/dbus-connection.h: Add prototype for dbus_connection_disconnect
1410
1411         * dbus/dbus-connection.c (dbus_connection_disconnect): New function
1412         to repair the ABI which was broken with the last commit.
1413
1414 2005-06-02  John (J5) Palmieri <johnp@redhat.com>
1415
1416         *  dbus/dbus-connection.c, dbus/dbus-connection.h 
1417         (dbus_connection_disconnect): renamed to dbus_connection_close 
1418         for API symmetry with dbus_connection_open
1419         (_dbus_connection_open_internal): 
1420         s/dbus_connection_disconnect/dbus_connection_close
1421
1422         * dbus/dbus-bus.c (dbus_bus_get):
1423         s/dbus_connection_disconnect/dbus_connection_close
1424
1425         * bus/connection.c (bus_connections_unref, 
1426         bus_connections_setup_connection, bus_connections_expire_incomplete):
1427         s/dbus_connection_disconnect/dbus_connection_close
1428
1429         * bus/dispatch.c (bus_dispatch, kill_client_connection, 
1430         kill_client_connection_unchecked, check_hello_connection):
1431         s/dbus_connection_disconnect/dbus_connection_close
1432
1433         * bus/bus.c (new_connection_callback):
1434         s/dbus_connection_disconnect/dbus_connection_close
1435
1436         * tools/dbus-send.c (main):
1437         s/dbus_connection_disconnect/dbus_connection_close
1438
1439         * test/glib/test-profile.c (no_bus_thread_func, with_bus_thread_func):
1440         s/dbus_connection_disconnect/dbus_connection_close
1441         
1442         * test/test-service.c (path_message_func, filter_func):
1443         s/dbus_connection_disconnect/dbus_connection_close
1444         
1445         * doc/TODO: remove connection_open/connection_disconnect lacks symmetry         item that was just fixed
1446         
1447 2005-05-25  Colin Walters  <walters@verbum.org>
1448
1449         * dbus/dbus-protocol.h: Move various bus service #defines such
1450           as DBUS_SERVICE_DBUS and DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT to
1451           dbus/dbus-shared.h.
1452         * dbus/dbus-shared.h: Various defines moved here.
1453         * dbus/dbus-marshal-header.c: Include dbus-shared.h.
1454
1455 2005-05-25  John (J5) Palmieri  <johnp@redhat.com>
1456
1457         * python/__init__.py: Python bindings deserve a minor version
1458         update.  Upped to (0, 40, 2)
1459
1460 2005-05-24  John (J5) Palmieri  <johnp@redhat.com>
1461
1462         * python/decorators.py: add explicitly_pass_message decorator
1463         for passing in the dbus message as keyword for edge case signal
1464         handling
1465
1466         * python/matchrules.py (SignalMatchRule.__repr__): fix output
1467         to conform with what dbus expects for match rules
1468         (SignalMatchRule.execute): add the dbus message as a keyword
1469         if the signal handler has requested it
1470
1471         * python/examples/example/signal-recipient.py: added some more
1472         examples on how to hook up to signals
1473
1474 2005-05-23  John (J5) Palmieri  <johnp@redhat.com>
1475
1476         * python/decorators.py: import dbus_bindings
1477
1478         * python/matchrules.py (SignalMatchRule, SignalMatchTree, 
1479         SignalMatchNode): new classes that implement wildcard signal
1480         callback matching using a tree lookup. Heavily modified from a
1481         patch sent by Celso Pinto (fd.o bug #3241)
1482
1483         * _dbus.py (add_signal_receiver, remove_signal_receiver, _signal_func):
1484         use new match classes to handle signals.
1485
1486 2005-05-19  John (J5) Palmieri  <johnp@redhat.com>
1487         
1488         * python/dbus_bindings.pyx.in: s/TYPE_PATH/TYPE_OBJECT_PATH
1489
1490 2005-05-18  Havoc Pennington  <hp@redhat.com>
1491
1492         * configure.in: use GLIB_GNU_GETTEXT to get INTLLIBS and require
1493         gettext. Not really worth requiring yet perhaps, but any
1494         production quality 1.0 would require it so we should go ahead and
1495         get things set up. We do have a couple token calls to
1496         bindtextdomain in the code already.
1497
1498 2005-05-16  John (J5) Palmieri  <johnp@redhat.com>
1499
1500         * glib/dbus-gmain.c (io_handler_dispatch): fix deadlock
1501         when using recursive g_main_loops
1502
1503         * python/_dbus.py (class Bus): add the ProxyObjectClass
1504         alias for ProxyObject to make it easier for the Twisted 
1505         networking framework to integrate dbus.
1506
1507         * python/proxies.py (class ProxyObject): add the ProxyMethodClass
1508         alias for ProxyMethod to make it easier for the Twisted 
1509         networking framework to integrate dbus. 
1510
1511 2005-05-11  Ross Burton  <ross@openedhand.com>
1512
1513         * glib/dbus-glib-tool.c: Add --prefix argument.
1514         * glib/dbus-binding-tool-glib.h: Add prefix argument.
1515         * glib/dbus-binding-tool-glib.c (compute_marshaller_name):
1516         Add prefix argument.
1517         (generate_glue): Pass prefix argument down.
1518         (dbus_binding_tool_output_glib_server): Pass prefix to
1519         glib-genmarshal.
1520         
1521 2005-05-11  Colin Walters  <walters@verbum.org>
1522
1523         * tools/dbus-send.c (append_array): New function.
1524         (append_arg): Broken out from main.
1525         (main): Add cheesy hack to send arrays and variants.
1526         (usage): Update.
1527         * tools/dbus-print-message.c (print_iter): Broken out
1528         from main.
1529
1530 2005-05-11  Colin Walters  <walters@verbum.org>
1531
1532         * dbus/dbus-signature.c (dbus_signature_iter_get_signature):
1533         New function, returns signature string for signature iter.
1534         * dbus/dbus-signature.h: Prototype it.
1535         * dbus/dbus-message.c (dbus_message_iter_get_signature):
1536         New function, returns signature string for message iter.
1537         (dbus_message_iter_get_array_len): New function, returns
1538         length of array.
1539         (dbus_message_iter_get_fixed_array): Fix assertion; this
1540         function should be used when the iter is pointing to the
1541         contents of an array
1542         * dbus/dbus-message.h: Prototypes.
1543         * dbus/dbus-marshal-recursive.c (_dbus_type_reader_get_array_length):
1544         New function; returns length of an array.
1545         * dbus/dbus-marshal-recursive.h: Prototype it.
1546         
1547 2005-05-11  Colin Walters  <walters@verbum.org>
1548
1549         * dbus/dbus-sysdeps-util.c <!HAVE_POSIX_GETPWNAM_R>: Fix
1550         compilation error.
1551         
1552 2005-05-08  Havoc Pennington  <hp@redhat.com>
1553
1554         * dbus/dbus-sysdeps-util.c (_dbus_become_daemon): write the
1555         daemon's pid, not the parent's pid, to the file descriptor.
1556         Reported by Taj Morton.
1557
1558 2005-05-05  Havoc Pennington  <hp@redhat.com>
1559
1560         * configure.in (LT_*): add notes on how the libtool versioning
1561         works to save thinking. Increment soname to indicate protocol
1562         breakage (though really the library interface hasn't changed I
1563         guess)
1564
1565         * dbus/dbus-transport.c (_dbus_transport_get_is_authenticated):
1566         verify the GUID received from server matches what we were
1567         expecting, if we had an expectation
1568
1569         * dbus/dbus-auth.c (send_ok): send GUID along with the OK command
1570         (_dbus_auth_get_guid_from_server): new function
1571         (send_begin): parse the OK args
1572
1573         * doc/dbus-specification.xml: add GUID to the auth protocol
1574
1575 2005-05-05  John (J5) Palmieri  <johnp@redhat.com>
1576
1577         * Fix my name in previous changelog ;)
1578
1579         * python/proxies.py (ProxyObject.__getattr__): add further patch
1580         from Anthony Baxter to throw an AttributeError when python 
1581         __special__ functions are called instead of marshling them over 
1582         the bus (Bug#1685 comment 3).
1583
1584 2005-05-04  John (J5) Palmieri  <johnp@redhat.com>
1585
1586         * python/Makefile.am: changed to use pyexecdir for the binding
1587         shared libraries (Bug#2494)
1588
1589         * python/exceptions.py: bring exceptions over from the bindings
1590         so they can be used in applications (Bug#2036)
1591         Make all exceptions derive from DBusException
1592
1593         * python/_dbus.py, python/proxies.py: implement __repr__ in a couple
1594         of classes so that print obj doesn't throw an exception (Bug #1685)
1595
1596 2005-05-03  Ross Burton  <ross@openedhand.com>
1597
1598         * glib/dbus-gobject.c (dbus_g_connection_register_g_object):
1599         Return if we get an error during registration.  Set up a
1600         weak reference on object to unregister if object is destroyed.
1601         (unregister_gobject): New function.
1602         
1603 2005-05-01  John (J5) Palmieri  <johnp@redhat.com>
1604
1605         * python/dbus_bindings.pyx.in: 
1606         - added new type classes for hinting to the marashaler what type 
1607         to send over the wire
1608         - added int16 and uint16 marshalers
1609         - Fixed a bug in the type constants that caused int32 to go out
1610         as uint16 over the wire
1611         * python/dbus.py: split up into different files and renamed _dbus.py
1612         * python/__init__.py, python/_util.py, python/decorators.py, 
1613         python/exceptions.py, python/proxies.py, python/services.py,
1614         python/types.py: new files split off from dbus.py
1615         * python/Makefile.am: Add new files, remove dbus.py and 
1616         install all python files to <python module dir>/dbus
1617         * python/examples/*: Added #!/usr/bin/env python to the top of
1618         every example.  Patch provided by Tatavarty Kalyan
1619
1620 2005-04-25  John (J5) Palmieri  <johnp@redhat.com>
1621
1622         * NEWS: Update to 0.33
1623
1624 2005-04-25  John (J5) Palmieri  <johnp@redhat.com>
1625
1626         * python/dbus_bindings.pyx.in (send_with_reply_handlers): New send
1627         method for doing async calls
1628         (_pending_call_notification): New C function for handling pendning call
1629         callbacks
1630         (set_notify): New method for setting pending call notification
1631         
1632         * python/dbus.py: new version tuple "version" is set at (0, 40, 0)
1633         Async capabilities added to remote method calls
1634         (Sender): class removed
1635         (RemoteService): class removed
1636         (ObjectTree): class removed for now
1637         (RemoteObject): Renamed to ProxyObject
1638         (RemoteMethod): Renamed to ProxyMethod
1639         (method): Decorator added for decorating python methods as dbus methods
1640         (signal): Decorator added for decorating python methods as signal emitters
1641         (ObjectType): Metaclass added for generating introspection data and the
1642         method callback vtable
1643         (Interface): Wrapper class added to wrap objects in a dbus interface
1644         (Object): Uses ObjectType as its metaclass and exports Introspect
1645         of the org.freedesktop.DBus.Introspectable interface
1646         (ValidationException, UnknownMethodException): new exceptions
1647
1648         * python/examples/*: Modified to fit with the new bindings
1649
1650 2005-04-23  Havoc Pennington  <hp@redhat.com>
1651
1652         * dbus/dbus-message.c (dbus_message_append_args): fix doc comment,
1653         reported by Tony Houghton
1654
1655         * test/test-service.c (main): test
1656         dbus_connection_get_object_path_data()
1657
1658         * dbus/dbus-object-tree.c (find_handler): be sure we always init
1659         the exact_match
1660         (_dbus_object_tree_get_user_data_unlocked): new function used by
1661         dbus_connection_get_object_path_data()
1662         (do_register): add assertion test for get_user_data_unlocked
1663         (object_tree_test_iteration): more tests
1664
1665         * dbus/dbus-connection.c (dbus_connection_get_object_path_data):
1666         new function from Dan Reed to let you get the user data from 
1667         dbus_connection_register_object_path()
1668
1669 2005-04-23  John (J5) Palmieri  <johnp@redhat.com>
1670
1671         * dbus/dbus-marshal-recursive-util.c: Fixed buffer overflow
1672         in numerous places that did not account for the NULL terminator
1673         (signature_from_seed): changed the manual string copy loop to 
1674         just use strcpy instead
1675         make check should now pass
1676
1677 2005-04-19  John (J5) Palmieri  <johnp@redhat.com>
1678
1679         * dbus/dbus-marshal-header.c (_dbus_header_create): Fix assert
1680         so that it allows messages that are not signals to pass in 
1681         NULL as the interface.
1682
1683 2005-04-18  David Zeuthen  <davidz@redhat.com>
1684
1685         * glib/dbus-gmain.c (io_handler_destroy_source): 
1686         (timeout_handler_destroy_source, connection_setup_free): 
1687         Also unref the source to avoid memory leaks.
1688
1689 2005-04-13  David Zeuthen  <davidz@redhat.com>
1690
1691         * bus/config-parser.c (bus_config_parser_new): Bump this to a
1692         more reasonable, yet still totally arbitrary, value :-). 
1693
1694 2005-04-13  David Zeuthen  <davidz@redhat.com>
1695
1696         * doc/TODO: Added an "important for 1.0" item about selinux
1697         allow/deny messages
1698
1699 2005-04-13  David Zeuthen  <davidz@redhat.com>
1700
1701         * bus/selinux.c: Add c-file-style to top of file
1702         (log_audit_callback): Don't free the data here anymore
1703         (bus_selinux_check): Don't take spid and tpid since appending
1704         that to auxdata may OOM.
1705         (bus_selinux_allows_acquire_service): Handle OOM and signal back
1706         to the caller if we are OOM by taking an error object.
1707         (bus_selinux_allows_send): -do-
1708
1709         * bus/selinux.h: Fix prototypes for bus_selinux_allows_acquire_service
1710         and bus_selinux_allows_send
1711
1712         * bus/bus.c (bus_context_check_security_policy): Pass error and
1713         pass on OOM thrown by bus_selinux_allows_send()
1714
1715         * bus/services.c (bus_registry_acquire_service): Pass error and
1716         pass on OOM thrown by bus_selinux_allows_acquire_service()
1717
1718 2005-04-13  Havoc Pennington  <hp@redhat.com>
1719
1720         * glib/dbus-gmain.c (message_queue_dispatch): only dispatch one
1721         message at a time to avoid monopolizing the main loop, bug 
1722         #2953 from Benjamin Otte
1723
1724 2005-04-09  Havoc Pennington  <hp@redhat.com>
1725
1726         * dbus/dbus-string.c (copy): change a memcpy to memmove due to
1727         possible overlap, fix from Daniel Reed
1728         (fixup_alignment): fix signedness warnings
1729         (_dbus_string_append_unichar): ditto
1730
1731 2005-04-09  Havoc Pennington  <hp@redhat.com>
1732
1733         * dbus/dbus-message-util.c (_dbus_message_test): fix signedness warning
1734
1735         * glib/dbus-glib-tool.c (main): fix warning
1736
1737         * glib/dbus-binding-tool-glib.c (generate_glue): fix warning
1738
1739         * dbus/dbus-connection.c (dbus_connection_read_write_dispatch):
1740         add a new function that can be used in simple applications that
1741         don't have a main loop and are willing to block
1742
1743 2005-04-05  David Zeuthen  <davidz@redhat.com>
1744
1745         Fix https://bugs.freedesktop.org/show_bug.cgi?id=2889
1746
1747         * glib/dbus-gmain.c:
1748         (io_handler_destroy_source): Remove from list of IO handlers
1749         of the ConnectionSetup object
1750         (timeout_handler_destroy_source): -do- for timeout handlers
1751         (io_handler_source_finalized): Don't remove from list since
1752         we now do that in io_handler_destroy_source(). Renamed from
1753         io_handler_source_destroyed
1754         (timeout_handler_source_destroyed): -do- for timeout handlers
1755         (connection_setup_free): It is now safe to iterate over all
1756         IO and timeout handlers as the _destroy_source removes them
1757         from the list synchronously
1758
1759 2005-03-30  Havoc Pennington  <hp@redhat.com>
1760
1761         * configure.in: change check to gtk 2.4
1762
1763         * tools/dbus-viewer.c (name_combo_changed_callback): remove
1764         gtk_combo_box_get_active_text() usage to decrement GTK requirement
1765         to 2.4
1766
1767 2005-03-29  John (J5) Palmieri  <johnp@redhat.com>
1768
1769         * News: Update 0.32
1770
1771         * HACKING: Fixed realease instructions.  configure.in should be updated to
1772           the next release by the person who made the last release.
1773
1774 2005-03-29  John (J5) Palmieri  <johnp@redhat.com>
1775
1776         * python/lvalue_cast_post_process.py - removed.  Patch has been
1777           submitted to Pyrex maintainers that fixes gcc4.0 errors
1778
1779         * python/Makefile.am: removed refrences to lvalue_cast_post_process.py
1780
1781 2005-03-24  Daniel Reed  <n@ml.org>
1782
1783         * tools/Makefile.am: Make print-introspect and
1784         dbus-bus-introspect.xml building conditional on HAVE_GLIB.
1785
1786 2005-03-22  John (J5) Palmieri  <johnp@redhat.com>
1787
1788         * tools/Makefile.am: Patch by Colin Walters that fixes distcheck
1789
1790         * dbus/dbus-userdb.c, dbus/dbus-userdb-util.c: Add patch we have 
1791           had in Red Hat packages for a while but for some reason never 
1792           got merged upstream
1793           (_dbus_is_a_number): New checks if a string
1794           can be converted to a number and does the conversion if it can
1795           (_dbus_user_database_lookup): Add check to see if the given username
1796           is a udi.  This allows udi's to be used instead of usernames in the
1797           config file.
1798           (_dbus_user_database_lookup_group): Add check to see if the given groupname
1799           is a gdi.  This allows gdi's to be used instead of groupnames in the
1800           config file.
1801
1802 2005-03-21  John (J5) Palmieri  <johnp@redhat.com>
1803
1804         * python/lvalue_cast_post_process.py - added post processor to fix Pyrex
1805           code so that it compiles with gcc4.0
1806
1807         * python/Makefile.am: Added lvalue_cast_post_process.py to EXTRA_DIST
1808           run dbus_bindings.c through lvalue_cast_post_process.py and copy the
1809           results back to dbus_binding.c
1810
1811 2005-03-20  Colin Walters  <walters@verbum.org>
1812
1813         Patch suggested by Inguva Rajasekhar <ringuva@novell.com>.
1814
1815         * configure.in: Require GTK+ 2.6.
1816         
1817 2005-03-20  Colin Walters  <walters@verbum.org>
1818
1819         * Makefile.am (SUBDIRS, DIST_SUBDIRS): Build tools before test.
1820
1821 2005-03-17  Tom Parker  <palfrey@tevp.net>
1822
1823         * dbus/dbus-userdb.c (_dbus_user_database_lookup): Don't
1824         print DBUS_UID_UNSET; instead print passed username.  Also
1825         be sure to actually use gid looked up in cache.
1826         
1827         * dbus/dbus-userdb-util.c (_dbus_user_database_lookup_group): Ditto
1828         for DBUS_GID_UNSET and groupname.
1829
1830 2005-03-17  Colin Walters  <walters@verbum.org>
1831
1832         * bus/print-introspect.c: Move to tools/.
1833         * bus/run-with-tmp-session-bus.sh: Ditto.
1834         
1835         * glib/Makefile.am (dbus-glib-bindings.h): Move
1836         generation to tools/Makefile.am.
1837
1838         * test/glib/run-test.sh: Update to handle move
1839         of run-with-tmp-session-bus.sh.
1840
1841         * test/glib/test-service-glib.c: Update to handle
1842         move of dbus-glib-bindings.h.
1843
1844         * tools/print-introspect.c: Moved here
1845         from bus/, and ported to GLib bindings.
1846
1847         * tools/run-with-tmp-session-bus.sh: Moved here
1848         from bus/.
1849
1850         * tools/Makefile.am: Generate dbus-glib-bindings.h
1851         and dbus-bus-introspect.xml here.
1852
1853         * tools/.cvsignore, glib/.cvsignore, bus/.cvsignore:
1854         Update.
1855
1856 2005-03-17  Colin Walters  <walters@verbum.org>
1857
1858         * bus/driver.c (write_args_for_direction): Use
1859         _dbus_string_get_const_data to retrieve string;
1860         _dbus_string_get_const_data_len doesn't actually return
1861         a NULL-terminated substring.
1862
1863         * test/glib/test-service-glib.c: Include dbus-glib-bindings.h.
1864         (main): Change to use org_freedesktop_DBus_request_name
1865         instead of using g_proxy_begin_call/end_call.
1866
1867 2005-03-15  Joe Shaw  <joeshaw@novell.com>
1868
1869         * mono/ProxyBuilder.cs (BuildFinalizer): Fix some invalid IL when
1870         generating the finalizer.  Fixes from Ben Maurer.
1871
1872 2005-03-12  Joe Shaw  <joeshaw@novell.com>
1873
1874         * mono/BusDriver.cs: Update method names: ListServices
1875         becomes ListNames; GetOwner becomes GetNameOwner.
1876
1877         * mono/ProxyBuilder.cs (BuildFinalizer): Need to load arg 0
1878         onto the eval stack when removing the delegate.
1879
1880 2005-03-12  Joe Shaw  <joeshaw@novell.com>
1881
1882         * mono/dbus-sharp.dll.config.in: Don't hardcode 0 for
1883         LT_CURRENT.  Set it to the autoconf variable.
1884                                                                                 
1885         * mono/ProxyBuilder.cs: Add a finalizer to the generated proxy
1886         classes that disconnects the signal handler delegate from the
1887         service object.  Fixes a big leak of proxy objects on the
1888         client side of things.  Patch from Ben Maurer
1889         <bmaurer@ximian.com>
1890
1891 2005-03-12  Colin Walters  <walters@verbum.org>
1892
1893         * bus/driver.c (write_args_for_direction): New function,
1894         parses a type signature into arguments and outputs to
1895         XML.
1896         (bus_driver_handle_introspect): Use it instead of
1897         hardcoding XML for certain signatures.
1898         
1899         * bus/Makefile.am (dbus-bus-introspect.xml): Add
1900         dependency on dbus-daemon.
1901
1902         * glib/dbus-glib-tool.c (main): Parse ignore_unsupported
1903         argument, pass it to dbus_binding_tool_output_glib_client.
1904
1905         * glib/dbus-binding-tool-glib.c
1906         (generate_client_glue): Protect against multiple inclusion.
1907         (dbus_binding_tool_output_glib_client): Add
1908         G_BEGIN_DECLS/G_END_DECLS.
1909
1910         * glib/dbus-binding-tool-glib.c (compute_client_method_name):
1911         Change to just take iface prefix directly.
1912         (write_formal_parameters): Clarify error message.
1913         (check_supported_parameters): New function; checks to see type
1914         signatures of method parameters are supported.
1915         (generate_client_glue): Handle ignore_unsupported flag.
1916         (dbus_binding_tool_output_glib_client): Handle ignore_unsupported
1917         parameter.
1918
1919         * glib/Makefile.am (dbus-glib-bindings.h): Pass
1920         --ignore-unsupported by default until glib bindings
1921         support arrays.
1922
1923 2005-03-11  Colin Walters  <walters@verbum.org>
1924
1925         * glib/Makefile.am: Generate dbus-glib-bindings.h and
1926         install it.
1927
1928         * bus/print-introspect.c: New file; prints introspection
1929         data for a given name and object path.
1930
1931         * bus/run-with-tmp-session-bus.sh: New file, refactored
1932         from test/glib/run-test.sh.  Creates a temporary session
1933         bus and runs another program.
1934
1935         * test/glib/run-test.sh: Refactor to invoke
1936         run-with-tmp-session-bus.sh.
1937
1938         * bus/driver.c (bus_driver_handle_introspect): Fix to print new
1939         introspection format.  Also change to use DBUS_TYPE_x_AS_STRING
1940         macros instead of hardcoding.
1941
1942         * glib/.cvsignore, bus/.cvsignore, test/glib/.cvsignore: Update.
1943
1944 2005-03-11  Joe Shaw  <joeshaw@novell.com>
1945
1946         * dbus/dbus-connection.c (dbus_connection_send_with_reply): Remove
1947         this unref; it doesn't match up evenly in some codepaths.
1948         (_dbus_connection_block_pending_call): Unref at every exitpoint;
1949         this evenly matches with the ref near the top of this function.
1950
1951 2005-03-09  Joe Shaw  <joeshaw@novell.com>
1952
1953         * dbus/dbus-object-tree.c
1954         (_dbus_object_tree_unregister_and_unlock): If checks are enabled
1955         and we try to unregister a path that's not registered, still go
1956         through the process of unlocking and don't just return.
1957
1958 2005-03-09  Colin Walters  <walters@verbum.org>
1959
1960         * glib/dbus-gproxy.c (dbus_g_proxy_invoke): New method; calls
1961         to this are generated for client-side wrappers.  Invokes a
1962         D-BUS method and returns reply values.  
1963
1964         * glib/dbus-binding-tool-glib.c (write_args_sig_for_direction): New
1965         function; writes signature string for argument direction.
1966         (write_args_for_direction): Change to pass input values directly
1967         instead of via address, and fix indentation.
1968         (generate_client_glue): Change to invoke dbus_g_proxy_invoke.  Also
1969         make generated wrappers inlineable.
1970
1971         * dbus/dbus-message.c (dbus_message_iter_get_fixed_array): Add
1972         note about using dbus_type_is_fixed.
1973
1974         * dbus/dbus-marshal-basic.c (_dbus_type_is_fixed): Moved to
1975         dbus/dbus-signature.c as dbus_type_is_fixed.
1976
1977         All callers updated.
1978
1979         * dbus/dbus-signature.c (dbus_type_is_fixed): Moved here
1980         from dbus/dbus-marshal-basic.c:_dbus_type_is_fixed.
1981
1982         * dbus/dbus-signature.h: Prototype.
1983
1984         * glib/dbus-binding-tool-glib.c (compute_marshaller_name): Fix
1985         error printf code.
1986
1987         * test/glib/test-dbus-glib.c (main): Be sure to clear error as
1988         appropriate instead of just freeing it.
1989         (main): Free returned strings using g_free.
1990
1991         * test/glib/Makefile.am (test-service-glib-glue.h)
1992         (test-service-glib-bindings.h): Add dependency on dbus-binding-tool.
1993
1994         * glib/dbus-gvalue.c (MAP_BASIC): Refactored from MAP_BASIC_INIT;
1995         simply maps a simple D-BUS type to GType.
1996         (dbus_dbus_type_to_gtype): Function which maps D-BUS type to
1997         GType.
1998         (dbus_gvalue_init): Just invoke dbus_dbus_type_to_gtype and
1999         initialize the value with it.
2000         (dbus_gvalue_binding_type_from_type): Unused, delete.
2001         (dbus_gvalue_demarshal): Switch to hardcoding demarshalling for
2002         various types instead of unmarshalling to value data directly.
2003         Remove can_convert boolean.
2004         (dbus_gvalue_marshal): Remove duplicate initialization; switch to
2005         returning directly instead of using can_convert boolean.
2006         (dbus_gvalue_store): New function; not related to D-BUS per-se.
2007         Stores a GValue in a pointer to a value of its corresponding C
2008         type.
2009
2010         * glib/dbus-gvalue.h: Remove dbus_gvalue_binding_type_from_type,
2011         add dbus_gvalue_store.
2012
2013 2005-03-08  Joe Shaw  <joeshaw@novell.com>
2014
2015         Fix a bunch of lifecycle and memory management problems
2016         in the mono bindings.
2017
2018         * mono/Arguments.cs (Arguments): Implement IDisposable
2019
2020         * mono/Bus.cs (Bus): Don't allow public instantiation.  This is
2021         strictly a static class.
2022
2023         * mono/Connection.cs: Move the DBusObjectPathVTable and associated
2024         delegates into this file.
2025         (Connection): Implement IDisposable.
2026         (Dispose): Disconnect the connection and set the raw connection
2027         pointer to IntPtr.Zero.
2028         (~Connection): Call Dispose().
2029         (RegisterObjectPath): Added.  Manages the registration of object
2030         paths so we can cleanly disconnect them at dispose/finalize time.
2031         (UnregisterObjectPath): Ditto.
2032         (set_RawConnection): Unregister all of the object paths when
2033         changing the underlying DBusConnection.  Add them back onto the
2034         new connection, if any.
2035
2036         * mono/Handler.cs: Don't implement IDisposable; it doesn't use any
2037         more unmanaged resources anymore, so it's not necessary.  Move all
2038         the DBusObjectPathVTable stuff out of here.
2039         (Handler): Save references to our delegates so that they don't get
2040         finalized.  Call Connection.RegisterObjectPath() instead of
2041         dbus_connection_register_object_path() directly.
2042         (Message_Called): Dispose the message after we're finished with
2043         it.
2044
2045         * mono/Message.cs (Message): Implement IDisposable.
2046         (Dispose): Dispose the Arguments, and set the RawMessage to
2047         IntPtr.Zero.
2048         (SendWithReplyAndBlock): We own the ref to the reply that comes
2049         back from dbus_connection_send_with_reply_and_block() so add a
2050         comment about that and unref it after we've constructed a managed
2051         MethodReturn class around it.  Fixes a big, big leak.
2052
2053         * mono/ProxyBuilder.cs: Reflect into Message to get the Dispose
2054         method.
2055         (BuildSignalHandler): After we've sent the Signal message, dispose
2056         of it.
2057         (BuildMethod): Dispose of the method call and reply messages after
2058         we've sent the message and extracted the data we want from the
2059         reply.
2060
2061         * mono/Service.cs (UnregisterObject): Don't call handler.Dispose()
2062         anymore.
2063         (Service_FilterCalled): Dispose of the message after we're
2064         finished with it.
2065
2066 2005-03-08  Joe Shaw  <joeshaw@novell.com>
2067
2068         * dbus/dbus-connection.c (dbus_connection_send_with_reply):
2069         After we attach our pending call to the connection, unref
2070         it.  Fixes a leak.
2071  
2072         * mono/Connection.cs (set_RawConnection): Disconnect our
2073         filter and match callbacks from the old connection and
2074         reconnect them to the new connection, if any.
2075
2076         * mono/DBusType/Array.cs: "Code" is a static member, so
2077         don't use "this" to refer to it.  Fix for stricter checking
2078         in Mono 1.1.4.
2079  
2080         * mono/DBusType/ObjectPath.cs (Append): Don't leak the
2081         object path that we pass into unmanaged code.
2082  
2083         * mono/DBusType/String.cs (Append): Don't leak the string
2084         that we pass into unmanged code.
2085
2086 2005-03-07  John (J5) Palmieri  <johnp@redhat.com>
2087         * NEWS: Update for 0.31
2088
2089         * configure.in: Release 0.31
2090         add LT_CURRENT, LT_REVISION, LT_AGE for easy soname bumping
2091
2092         * qt/Makefile.am: fixed build
2093
2094         * dbus/Makefile.am: soname bump for libdbus
2095
2096         * glib/Makefile.am: soname bump for libdbus-glib
2097
2098 2005-03-05  Havoc Pennington  <hp@redhat.com>
2099
2100         * dbus/dbus-sysdeps.c:
2101         (pseudorandom_generate_random_bytes_buffer): fix to have no return
2102         value
2103         (_dbus_generate_random_bytes_buffer): fix return value
2104
2105         * dbus/dbus-sysdeps-util.c: s/GETPWNAME/GETPWNAM/ so configure
2106         checks actually work, from Tom Parker <fdo@tevp.net>
2107
2108 2005-03-01  Colin Walters  <walters@verbum.org>
2109
2110         * test/glib/test-dbus-glib.c (lose, lose_gerror): Utility
2111         functions copied from dbus-glib-tool.c.
2112         (main): Convert lots of error code to use them.
2113         Also add some testing for introspection bits.
2114
2115 2005-03-01  Colin Walters  <walters@verbum.org>
2116         
2117         * doc/TODO: Remove introspection signature TODO.
2118
2119 2005-02-27  Colin Walters  <walters@verbum.org>
2120
2121         * glib/dbus-gidl.c (property_info_get_type, arg_info_get_type):
2122         Change return value to const char * instead of int so we can do
2123         full signatures.
2124         (struct PropertyInfo, struct ArgInfo): Store char *.
2125         (property_info_new, arg_info_new): Update parameters, strdup.
2126         (property_info_unref, arg_info_unref): Free.
2127
2128         * glib/dbus-gidl.h: Update prototypes.
2129
2130         * glib/dbus-gparser.c (basic_type_from_string): Delete.
2131         (validate_signature): New function, just validates signature and
2132         sets GError.
2133         (parse_property, parse_arg): Invoke validate_signature.  Store
2134         signature instead of just type code.
2135
2136         * glib/dbus-gvalue.c (base_type_from_signature): New utility
2137         function to return a primary type for a signature, dropping
2138         information about types in container types.
2139         (dbus_gvalue_genmarshal_name_from_type)
2140         (dbus_gvalue_binding_type_from_type)
2141         (dbus_gvalue_ctype_from_type): Update to take full signature
2142          instead of type code.
2143         (dbus_gtype_to_dbus_type): Moved here from glib/dbus-gobject.c.
2144
2145         * glib/dbus-gvalue.h: Update prototypes for above.
2146
2147         * glib/dbus-gobject.c (gtype_to_dbus_type): Moved to
2148         glib/dbus-gvalue.c as dbus_gtype_to_dbus_type.
2149         (introspect_properties, introspect_signals, write_interface):
2150         Update to handle signatures, and remove usage of
2151         _dbus_gutils_type_to_string.
2152         (handle_introspect): Print out type codes instead of e.g. "string"
2153         in hardcoded introspection XML; also use x_AS_STRING constants
2154         instead of hardcoding in string.
2155
2156         * glib/dbus-glib-tool.c (pretty_print): Handle signature change
2157         to string.  Remove usage of _dbus_gutils_type_to_string.
2158
2159         * glib/dbus-gutils.c (_dbus_gutils_type_to_string): Delete.
2160
2161         * glib/dbus-gutils.h (_dbus_gutils_type_to_string): Update for
2162         deletion.
2163         
2164         * glib/dbus-binding-tool-glib.c (compute_marshaller)
2165         (compute_marshaller_name, generate_glue): Handle signature change
2166         to string.
2167         (write_formal_parameters, write_args_for_direction): Ditto, and
2168         remove FIXME.
2169
2170         * tools/dbus-tree-view.c (type_to_string): Delete.
2171         (info_set_func_text): Update to print full signatures.
2172
2173         * test/glib/test-service-glib.xml: Change types to new
2174         introspection format.
2175
2176 2005-02-26  Havoc Pennington  <hp@redhat.com>
2177
2178         * doc/TODO: remove the "guid" item
2179
2180         * test/glib/test-profile.c (no_bus_thread_func): use open_private
2181         (with_bus_thread_func): use open_private
2182
2183         * dbus/dbus-connection.c (dbus_connection_open_private): new
2184         function that works like the old dbus_connection_open()
2185         (dbus_connection_open): now returns an existing connection if
2186         possible
2187
2188         * dbus/dbus-server-unix.c (handle_new_client_fd_and_unlock): pass
2189         through the GUID to the transport
2190
2191         * dbus/dbus-server.c (_dbus_server_init_base): keep around the
2192         GUID in hex-encoded form.
2193
2194         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
2195         pass GUID argument in to the transport
2196
2197         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd): add
2198         guid argument
2199
2200         * dbus/dbus-transport.c (_dbus_transport_init_base): add guid argument
2201
2202         * dbus/dbus-auth.c (_dbus_auth_server_new): add guid argument
2203
2204 2005-02-25  Havoc Pennington  <hp@redhat.com>
2205
2206         * doc/dbus-specification.xml: document the GUID thing
2207
2208         * dbus/dbus-server.c (_dbus_server_init_base): initialize a
2209         globally unique ID for the server, and put a "guid=hexencoded"
2210         field in the address
2211
2212         * dbus/dbus-bus.c: fix missing #include of dbus-threads-internal.h
2213
2214         * dbus/dbus-message.c: ditto
2215
2216         * dbus/dbus-dataslot.c: ditto
2217
2218         * dbus/dbus-list.c: ditto
2219
2220         * dbus/dbus-internals.h: wait, just include
2221         dbus-threads-internal.h here
2222         
2223         * dbus/dbus-string.c (_dbus_string_copy_to_buffer): move back for
2224         use in main library
2225
2226         * dbus/dbus-sysdeps.c (_dbus_generate_random_bytes_buffer): new function
2227
2228 2005-02-24  Colin Walters  <walters@verbum.org>
2229
2230         * test/glib/Makefile.am (EXTRA_DIST): Add test-service-glib.xml
2231
2232 2005-02-24  John (J5) Palmieir  <johnp@redhat.com>
2233
2234         * glib/Makefile.am: added dbus-gobject.h to sources list
2235         so distcheck doesn't fail
2236         
2237 2005-02-24  Havoc Pennington  <hp@redhat.com>
2238
2239         * dbus/dbus-server.c, dbus/dbus-server-unix.c: change semantics so
2240         you must disconnect before unref, since locking and other things
2241         are screwed up otherwise. Fix assorted other locking stuff.
2242
2243         * dbus/dbus-signature.c (dbus_signature_iter_get_element_type):
2244         fix compilation
2245
2246         * dbus/dbus-threads-internal.h: move the mutex/condvar wrappers
2247         into a private header and don't export from the library
2248
2249         * throughout - call _dbus_thread_stuff vs. dbus_thread_stuff
2250
2251 2005-02-24  Colin Walters  <walters@verbum.org>
2252         
2253         * dbus/dbus-signature.c: New file; implements various functions
2254         related to type signatures.  Includes an interator for parsing,
2255         validation functions.
2256         (dbus_type_is_basic): Moved here from
2257         dbus-marshal-basic.c:_dbus_type_is_basic.
2258         (dbus_type_is_container): Moved here from
2259         dbus-marshal-basic.c:_dbus_type_is_container.
2260
2261         All callers of _dbus_type_is_container and _dbus_type_is_basic
2262         updated, and include dbus-signature.h.
2263
2264         * dbus/dbus-signature.h: New file; prototypes for the above.
2265
2266         * dbus/Makefile.am (DBUS_LIB_SOURCES): Add dbus-signature.c,
2267         dbus-signature.h.
2268
2269         * dbus/dbus-marshal-basic.c (map_type_char_to_type): New utility
2270         function factored out of _dbus_first_type_in_signature.
2271         (_dbus_first_type_in_signature_c_str): New function; returns first
2272         type code for a type signature character.
2273
2274         * dbus/dbus-marshal-basic.h: Prototype _dbus_first_type_in_signature_c_str,
2275         handle function moves.
2276
2277         * dbus/dbus-marshal-recursive.h: Export _dbus_type_signature_next.
2278
2279         * dbus/dbus-marshal-recursive.c (_dbus_type_signature_next): New
2280         function; skips to next complete type in type signature.
2281         Implemented using previous skip_one_complete_type.  Now
2282         skip_one_complete_type just delegates to
2283         _dbus_type_signature_next.
2284
2285         * dbus/dbus-marshal-basic.c (_dbus_type_is_basic): Moved
2286         to dbus-signature.c
2287         (_dbus_type_is_container): Ditto.
2288
2289         * doc/dbus-specification.xml: Update introspection sample to
2290         use real type signatures.
2291
2292         * dbus/dbus-test.h: Prototype signature test.
2293
2294         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): Run
2295         signature tests.
2296
2297         * dbus/dbus-protocol.h (DBUS_ERROR_INVALID_SIGNATURE): New error.
2298
2299 2005-02-23  John (J5) Palmieri  <johnp@redhat.com>
2300
2301         * python/dbus_bindings.pyx.in (PendingCall::get_reply):
2302         s/dbus_pending_call_get_reply/dbus_pending_call_steal_reply
2303
2304 2005-02-21  Colin Walters  <walters@verbum.org>
2305
2306         * dbus/dbus-test-main.c (main): Take optional specific test
2307         argument.
2308
2309         * dbus/dbus-test.c (run_test): New function, runs a test function
2310         with no data directory.
2311         (run_data_test): Like above, but takes data directory.
2312         (dbus_internal_do_not_use_run_tests): Take
2313         specific test argument.  Replace lots of cut n' paste code
2314         with run_test and run_data_test.
2315
2316         * dbus/dbus-test.h: Update prototype for
2317         dbus_internal_do_not_use_run_tests.
2318
2319 2005-02-20  Havoc Pennington  <hp@redhat.com>
2320
2321         Fix bugs reported by Daniel P. Berrange
2322         
2323         * dbus/dbus-server.c (_dbus_server_unref_unlocked): new function
2324         (protected_change_watch): new function
2325         (_dbus_server_toggle_watch, _dbus_server_remove_watch)
2326         (_dbus_server_add_watch): change to work like the
2327         dbus-connection.c equivalents; like those, probably kind of
2328         busted, but should at least mostly work for now
2329         (dbus_server_disconnect): drop the lock if we were already
2330         disconnected, patch from Daniel P. Berrange
2331
2332         * dbus/dbus-server.c (_dbus_server_toggle_timeout) 
2333         (_dbus_server_remove_timeout, _dbus_server_add_timeout): all the
2334         same stuff
2335
2336         * doc/TODO: todo about unscrewing this mess
2337
2338 2005-02-19  Colin Walters  <walters@verbum.org>
2339
2340         * glib/dbus-binding-tool-glib.c
2341         (dbus_binding_tool_output_glib_server): Fix iochannel refcounting.
2342
2343         * glib/dbus-glib-tool.c: Include dbus-glib-tool.h, as well
2344         as errno.h and sys/stat.h.
2345         (lose): New function, prints error with
2346         newline and exits.
2347         (lose_gerror): Similar, but takes GError for message.
2348         (main): Add --output argument to specify output file to write to,
2349         instead of always printing to stdout.  In this mode, determine
2350         timestamps on source files to see whether any are newer than the
2351         target file.  If not, exit.  Also convert a number of error
2352         messages to use lose (since it's shorter), and switch to using
2353         g_io_channel_shutdown.
2354
2355 2005-02-19  Havoc Pennington  <hp@redhat.com>
2356
2357         * glib/dbus-gobject.c
2358         (_dbus_glib_marshal_dbus_message_to_gvalue_array): add docs
2359
2360         * glib/dbus-glib.c: fix doxygen warnings
2361
2362         * glib/dbus-gparser.c (parse_annotation): error if an annotation
2363         is found on an <arg>
2364
2365 2005-02-17  Colin Walters  <walters@verbum.org>
2366
2367         * glib/dbus-gobject.h: Don't export
2368         _dbus_glib_marshal_dbus_message_to_gvalue_array.
2369         
2370         * glib/dbus-gobject.c (_dbus_glib_marshal_dbus_message_to_gvalue_array): Do rename.
2371         (invoke_object_method): Handle it.
2372
2373         * glib/dbus-gproxy.c (marshal_dbus_message_to_g_marshaller):
2374         Handle rename.
2375         
2376 2005-02-17  Colin Walters  <walters@verbum.org>
2377
2378         * bus/.cvsignore, doc/.cvsignore
2379         * test/data/valid-service-files/.cvsignore, test/glib/.cvsignore:
2380         Update.
2381
2382 2005-02-17  Colin Walters  <walters@verbum.org>
2383         
2384         * dbus/dbus-protocol.h (DBUS_SERVICE_ORG_FREEDESKTOP_DBUS):
2385         Rename to DBUS_SERVICE_DBUS.
2386         (DBUS_PATH_ORG_FREEDESKTOP_DBUS): Rename to DBUS_PATH_DBUS.
2387         (DBUS_PATH_ORG_FREEDESKTOP_LOCAL): Rename to DBUS_PATH_LOCAL.
2388         Change the value from "org.freedesktop.Local"
2389         to "org.freedesktop.DBus.Local".
2390         (DBUS_INTERFACE_ORG_FREEDESKTOP_DBUS): Rename to DBUS_INTERFACE_DBUS.
2391         (DBUS_INTERFACE_ORG_FREEDESKTOP_INTROSPECTABLE): Rename to
2392         DBUS_INTERFACE_INTROSPECTABLE.
2393         Change the value from "org.freedesktop.Introspectable"
2394         to "org.freedesktop.DBus.Introspectable".
2395         (DBUS_INTERFACE_ORG_FREEDESKTOP_PROPERTIES): Rename to
2396         DBUS_INTERFACE_PROPERTIES.
2397         Change the value from "org.freedesktop.Properties"
2398         to "org.freedesktop.DBus.Properties".
2399         (DBUS_INTERFACE_ORG_FREEDESKTOP_PEER): Rename to
2400         DBUS_INTERFACE_PEER.
2401         Change the value from "org.freedesktop.Peer"
2402         to "org.freedesktop.DBus.Peer".
2403         (DBUS_INTERFACE_ORG_FREEDESKTOP_LOCAL): 
2404         DBUS_INTERFACE_LOCAL.
2405         Change the value from "org.freedesktop.Local"
2406         to "org.freedesktop.DBus.Local".
2407
2408         All other users of those constants have been changed.
2409
2410         * bus/driver.c (bus_driver_handle_introspect): Use constants.
2411
2412         * glib/dbus-gobject.c (handle_introspect): Use constants.
2413
2414         * doc/dbus-faq.xml, doc/dbus-specification.xml: Update for rename.
2415
2416 2005-02-17  Colin Walters  <walters@verbum.org>
2417
2418         * glib/dbus-gparser.c (struct Parser): Add in_annotation boolean.
2419         (parse_node, parse_interface, parse_method, parse_signal)
2420         (parse_property, parse_annotation): Lose if we're currently in an
2421         annotation.
2422         (parse_annotation): New function.
2423         (parser_start_element, parser_end_element): Handle annotation.
2424         (parse_method, parse_interface): Remove support for c_name attribute,
2425         switch to annotations.
2426
2427         * glib/dbus-gidl.h (interface_info_get_binding_names)
2428         (method_info_get_binding_names)
2429         (interface_info_get_binding_name, method_info_get_binding_name)
2430         (interface_info_set_binding_name, method_info_set_binding_name):
2431         Remove.
2432         (interface_info_get_annotations, method_info_get_annotations)
2433         (interface_info_get_annotation, method_info_get_annotation)
2434         (interface_info_add_annotation, method_info_add_annotation):
2435         Prototype.
2436
2437         * glib/dbus-gidl.c (struct InterfaceInfo): Substitute "annotations"
2438         for "bindings".
2439         (struct MethodInfo): Ditto.
2440         Straightfoward conversion of binding methods into annotation methods
2441         as prototyped.
2442
2443         * glib/dbus-glib-tool.c (pretty_print): Print annotations.
2444
2445         * glib/dbus-binding-tool-glib.h (DBUS_GLIB_ANNOTATION_C_SYMBOL): Define.
2446
2447         * glib/dbus-binding-tool-glib.c (gather_marshallers, generate_glue):
2448         Use new annotation API.
2449
2450         * doc/introspect.dtd: Fix a number of DTD syntax errors.  Add
2451         annotation element.
2452         
2453         * doc/dbus-specification.xml: Discuss introspection annotations,
2454         include list of well-known annotations.
2455
2456         * test/glib/test-service-glib.xml: Make validate against new DTD.
2457
2458 2005-02-17  Colin Walters  <walters@verbum.org>
2459
2460         This patch is based on initial work from
2461         Paul Kuliniewicz <kuliniew@purdue.edu>.
2462
2463         * glib/dbus-gvalue.c (dbus_gvalue_init): New function; move
2464         initialization of GValue from dbus type to here.
2465         (dbus_gvalue_genmarshal_name_from_type): New function; generates a string
2466         for the "glib-genmarshal" program from a DBus type.
2467         (dbus_gvalue_binding_type_from_type): New function; turns a DBus type
2468         into the C name for it we use in the glib bindings.
2469         (dbus_gvalue_ctype_from_type): New function; maps a DBus type into a
2470         glib C type (not GValue).
2471         (dbus_gvalue_demarshal): invoke dbus_gvalue_init.
2472
2473         * glib/dbus-gutils.c (_dbus_gutils_wincaps_to_uscore): Moved here
2474         from dbus-gobject.c.
2475
2476         * glib/dbus-gutils.h: Prototype it.
2477
2478         * glib/dbus-gproxy.c: Include new dbus-gobject.h.
2479         (marshal_dbus_message_to_g_marshaller): Use new shared function
2480         dbus_glib_marshal_dbus_message_to_gvalue_array.
2481
2482         * glib/dbus-gparser.c (parse_interface, parse_method): Handle c_name attribute.
2483         Will be changed once we have annotations.
2484
2485         * glib/dbus-gobject.c: Change info_hash_mutex from GStaticMutex to
2486         GStaticRWLock.  Callers updated.
2487         (wincaps_to_uscore): Move to dbus-gutils.c.  Callers updated.
2488         (string_table_next): New function for iterating over zero-terminated
2489         string value array.
2490         (string_table_lookup): New function; retrieves specific entry in
2491         array.
2492         (get_method_data): New function; look up method data in object data chunk.
2493         (object_error_domain_prefix_from_object_info)
2494         (object_error_code_from_object_info): New functions, but not implemented yet.
2495         (method_interface_from_object_info): New function; retrieve interface name.
2496         (method_name_from_object_info): New function; retrieve method name.
2497         (method_arg_info_from_object_info): New function; retrieve argument data.
2498         (arg_iterate): New function; iterates over serialized argument data.
2499         (method_dir_signature_from_object_info): New function; returns a
2500         GString holding type signature for arguments for just one
2501         direction (input or output).
2502         (method_input_signature_from_object_info)
2503         (method_output_signature_from_object_info): New functions.
2504         (dbus_glib_marshal_dbus_message_to_gvalue_array): New shared function;
2505         converts dbus message arguments into a GValue array.  Used for both
2506         signal handling and method invocation.
2507         (struct DBusGlibWriteIterfaceData): New utility structure.
2508         (write_interface): New function; generate introspection XML for
2509         an interface.
2510         (introspect_interfaces): New function; gathers all interface->methods,
2511         generates introspection XML for them.
2512         (handle_introspect): Invoke introspect_interfaces.
2513         (get_object_property): Be sure to zero-initalize stack-allocated GValue.
2514         (lookup_object_and_method): New function; examines an incoming message
2515         and attempts to match it up (via interface, method name, and argument
2516         signature) with a known object and method.
2517         (gerror_domaincode_to_dbus_error_name): New function; converts a
2518         GError domain and code into a DBus error name.  Needs GError data
2519         added to object introspection to work well.
2520         (gerror_to_dbus_error_message): Creates a DBusMessage error return from
2521         GError.
2522         (invoke_object_method): New function to invoke an object method
2523         looked up via lookup_object_and_method.  Parses the incoming
2524         message, turns it into a GValue array, then invokes the marshaller
2525         specified in the DBusGMethodInfo.  Creates a new message with
2526         either return values or error message as appropriate.
2527         (gobject_message_function): Invoke lookup_object_and_method and
2528         invoke_object_method.
2529
2530         * glib/dbus-glib-tool.c: Include dbus-binding-tool-glib.h.
2531         (enum DBusBindingOutputMode): New enum for binding output modes.
2532         (pretty_print): Print binding names.
2533         (dbus_binding_tool_error_quark): GError bits.
2534         (version): Fix typo.
2535         (main): Create GIOChannel for output.  Parse new --mode argument,
2536         possible values are "pretty-print", "glib-server", "glib-client".
2537         Use mode to invoke appropriate function.
2538         
2539         * glib/dbus-gobject.h: Prototype dbus_glib_marshal_dbus_message_to_gvalue_array.
2540
2541         * glib/dbus-glib-tool.h: New header, just includes GError bits
2542         for now.
2543
2544         * glib/dbus-gidl.c (struct InterfaceInfo): Add bindings hashtable;
2545         maps binding style to name.
2546         (struct MethodInfo): Ditto.
2547         (get_hash_keys, get_hash_key): Utility function, returns keys for
2548         a GHashTable.
2549         (interface_info_new, method_info_new): Initialize bindings.
2550         (interface_info_unref, method_info_unref): Destroy bindings.
2551         (method_info_get_binding_names, method_info_get_binding_name)
2552         (interface_info_get_binding_names, interface_info_get_binding_name):
2553         Functions for retrieving binding names.
2554         (method_info_set_binding_name, interface_info_set_binding_name):
2555         Functions for setting binding names.
2556
2557         * glib/dbus-binding-tool-glib.h: New file, has prototypes
2558         for glib binding generation.
2559
2560         * glib/dbus-binding-tool-glib.c: New file, implements server-side
2561         and client-side glib glue generation.
2562
2563         * glib/Makefile.am (dbus_binding_tool_SOURCES): Add
2564         dbus-binding-tool-glib.c, dbus-binding-tool-glib.h,
2565         dbus-glib-tool.h.
2566
2567         * dbus/dbus-glib.h (struct DBusGMethodMarshaller): Remove in favor
2568         of using GClosureMarshal directly.
2569         (struct DBusGObjectInfo): Add n_infos member.
2570
2571         * test/glib/test-service-glib.xml: New file; contains introspection data
2572         for MyTestObject used in test-service-glib.c.
2573
2574         * test/glib/test-service-glib.c (enum MyObjectError): New GError enum.
2575         (my_object_do_nothing, my_object_increment, my_object_throw_error)
2576         (my_object_uppercase, my_object_many_args): New test methods.
2577         (main): Use dbus_g_object_class_install_info to include generated object
2578         info.
2579
2580         * test/glib/Makefile.am: Generate server-side glue for test-service-glib.c,
2581         as well as client-side bindings.
2582
2583         * test/glib/test-dbus-glib.c: Include test-service-glib-bindings.h.
2584         (main): Activate TestSuiteGLibService; test invoke a bunch of its methods
2585         using both the dbus_gproxy stuff directly as well as the generated bindings.
2586
2587 2005-02-15  Havoc Pennington  <hp@redhat.com>
2588
2589         * dbus/dbus-connection.c (dbus_connection_dispatch): always
2590         complete a pending call, don't run filters first.
2591
2592         * glib/dbus-gproxy.c (dbus_g_proxy_end_call): change to use
2593         dbus_pending_call_steal_reply
2594
2595         * dbus/dbus-pending-call.c (dbus_pending_call_block): just call
2596         _dbus_connection_block_pending_call
2597         (dbus_pending_call_get_reply): change to steal_reply and return a
2598         ref
2599
2600         * dbus/dbus-connection.c
2601         (dbus_connection_send_with_reply_and_block): port to work in terms
2602         of DBusPendingCall
2603         (_dbus_connection_block_pending_call): replace block_for_reply
2604         with this
2605
2606 2005-02-14  Havoc Pennington  <hp@redhat.com>
2607
2608         * dbus/dbus-userdb-util.c (_dbus_user_database_lookup_group):
2609         properly handle looking up group information by name; fix 
2610         from j@bootlab.org
2611
2612 2005-02-13  Havoc Pennington  <hp@redhat.com>
2613
2614         * dbus/dbus-connection.c (dbus_connection_return_message) 
2615         (dbus_connection_borrow_message): hold dispatch lock while message
2616         is outstanding
2617         (_dbus_connection_block_for_reply): hold dispatch lock while we
2618         block for the reply, so nobody steals our reply
2619         (dbus_connection_pop_message): hold the dispatch lock while we
2620         pluck the message
2621
2622 2005-02-13  Havoc Pennington  <hp@redhat.com>
2623
2624         * dbus/dbus-connection.c (_dbus_connection_acquire_dispatch)
2625         (_dbus_connection_release_dispatch)
2626         (_dbus_connection_acquire_io_path)
2627         (_dbus_connection_release_io_path): make the mutex and condvar
2628         control access to the "acquired" flag. Drop the connection lock
2629         while waiting on the condvar. Hopefully these are baby steps in
2630         roughly the right direction.
2631
2632 2005-02-13  Havoc Pennington  <hp@redhat.com>
2633
2634         * dbus/dbus-connection.c: use separate mutexes for the condition
2635         variables; this is some kind of baseline for sanity, but the
2636         condition variables still aren't used correctly afaict
2637
2638 2005-02-13  Havoc Pennington  <hp@redhat.com>
2639
2640         * dbus/dbus-object-tree.c (handle_default_introspect_and_unlock):
2641         fix a double-unlock
2642
2643         * dbus/dbus-connection.c
2644         (_dbus_connection_detach_pending_call_unlocked): add this
2645
2646         Initial semi-correct pass through to fix thread locking; there are
2647         still some issues with the condition variable paths I'm pretty
2648         sure
2649         
2650         * dbus/dbus-server.c: add a mutex on DBusServer and appropriate
2651         lock/unlock calls
2652
2653         * dbus/dbus-connection.c (_dbus_connection_do_iteration_unlocked):
2654         rename to add _unlocked
2655         (struct DBusConnection): move "dispatch_acquired" and
2656         "io_path_acquired" to use only one bit each.
2657         (CONNECTION_LOCK, CONNECTION_UNLOCK): add checks with !DBUS_DISABLE_CHECKS
2658         (dbus_connection_set_watch_functions): hacky fix to reentrancy
2659         (_dbus_connection_add_watch, _dbus_connection_remove_watch) 
2660         (_dbus_connection_toggle_watch, _dbus_connection_add_timeout) 
2661         (_dbus_connection_remove_timeout) 
2662         (_dbus_connection_toggle_timeout): drop lock when calling out to
2663         user functions; done in a hacky/bad way.
2664         (_dbus_connection_send_and_unlock): add a missing unlock
2665         (_dbus_connection_block_for_reply): add a missing unlock
2666
2667         * dbus/dbus-transport.c (_dbus_transport_get_is_authenticated):
2668         drop lock in a hacky probably unsafe way to call out to user
2669         function
2670
2671 2005-02-12  Havoc Pennington  <hp@redhat.com>
2672
2673         * tools/dbus-tree-view.c (info_set_func_text): display more
2674         details on args
2675
2676         * bus/driver.c (bus_driver_handle_list_services): list the bus
2677         driver
2678
2679         * glib/dbus-gparser.c (parse_arg): generate an arg name if none is supplied
2680
2681         * glib/dbus-gidl.c (signal_info_get_n_args): new function
2682         (method_info_get_n_args): new function
2683
2684 2005-02-12  Havoc Pennington  <hp@redhat.com>
2685
2686         * bus/driver.c (bus_driver_handle_introspect): add introspection
2687         for bus driver
2688
2689 2005-02-12  Havoc Pennington  <hp@redhat.com>
2690
2691         * bus/driver.c: put the signature of each bus driver method in the
2692         table of handlers and check it on incoming calls; this isn't
2693         really useful, but going to add introspect support in a minute.
2694
2695 2005-02-11  Joe Shaw  <joeshaw@novell.com>
2696
2697         * mono/Connection.cs: The unpredictability of finalizers in mono
2698         prevents us from deterministically disconnecting the filters from
2699         the Service class's finalizer, so move tracking of filters and
2700         matches here.  Add API for that.
2701
2702         * mono/Service.cs: Remove the code, add code which calls the
2703         methods now on the Connection class.
2704
2705 2005-02-11  John (J5) Palmieri  <johnp@redhat.com>
2706
2707         * python/dbus.py (class Sender): added to support dbus signals better
2708         (Bus::add_signal_receiver): added expand_args parameter which defaults
2709         to True.  When expand args is True the signal handler will pass the 
2710         message arguments as parameters to the signal handler.  If False
2711         revert to previous behavior where the signal handler must get the
2712         argument list from the message.  This is to help port applications
2713         like HAL that have a tendancy to send variable length argument lists.
2714         self._match_rule_to_receivers is now a dict of dicts.
2715         (Bus::remove_signal_receiver): pop handler off the dict intead of 
2716         removing it from a list
2717         (Bus::_signal_func): change signal handlers so that interface,
2718         signal_name, service, path and message are packed into a Sender
2719         object and that is passed to the handler.  If expand_args is True
2720         extract the args list from the message and append it to the parameter
2721         list
2722         
2723         * python/dbus_bindings.pyx.in (class Signature): added to support 
2724         signiature types
2725         (MessageIter::__init__): changed iteration limit to match D-BUS
2726         (MessageIter::get*): added INT16, UINT16, SIGNATURE, DICT_ENTRY, 
2727         STRUCT and VARIENT type support
2728         (MessageIter::python_value_to_dbus_sig): made recursive to support
2729         recursive types
2730         (MessageIter::append*): added Signature, dict, tuple 
2731         support
2732
2733         * python/examples/example-client.py: added examples of getting tuples
2734         and dicts
2735
2736         * python/examples/example-service.py: added examples of sending tuples
2737         and dicts
2738
2739         * python/examples/example-signal-recipient.py: Fixed to handle new
2740         signal callback format
2741
2742 2005-02-10  Havoc Pennington  <hp@redhat.com>
2743
2744         * test/glib/test-dbus-glib.c (main): fix so this test doesn't fail
2745         (call dbus_g_proxy_add_signal)
2746
2747         * dbus/dbus-server-unix.c (_dbus_server_new_for_tcp_socket):
2748         escape the hostname
2749         (_dbus_server_new_for_domain_socket): escape the path
2750
2751         * dbus/dbus-address.c (dbus_address_escape_value): new
2752         (dbus_address_unescape_value): new
2753         (dbus_parse_address): unescape values
2754
2755         * dbus/dbus-string.c (_dbus_string_append_byte_as_hex): new function
2756
2757         * doc/dbus-specification.xml: explain how to escape values in
2758         addresses
2759
2760 2005-02-10  Havoc Pennington  <hp@redhat.com>
2761
2762         * dbus/dbus-message-factory.c (generate_special): modify test to
2763         avoid using a non-basic dict key
2764
2765         * dbus/dbus-marshal-validate-util.c: add test for the below
2766
2767         * doc/dbus-specification.xml: require that dict keys are a basic
2768         type
2769
2770         * dbus/dbus-marshal-validate.c
2771         (_dbus_validate_signature_with_reason): require that dict key is a
2772         basic type
2773
2774 2005-02-10  Havoc Pennington  <hp@redhat.com>
2775
2776         * dbus/dbus-object-tree.c (handle_default_introspect_and_unlock):
2777         change to be _and_unlock instead of _unlocked
2778
2779         * dbus/dbus-connection.c
2780         (_dbus_connection_send_preallocated_unlocked_no_update): rename to
2781         have no_update so we can find this bug quickly in future
2782
2783 2005-02-10  Havoc Pennington  <hp@redhat.com>
2784
2785         * dbus/dbus-message-util.c (verify_test_message): tests for string
2786         array
2787
2788         * dbus/dbus-message.c (dbus_message_append_args_valist): add
2789         support for arrays of string/signature/path
2790
2791 2005-02-10  Joe Shaw  <joeshaw@novell.com>
2792
2793         * dbus/dbus-connection.c
2794         (_dbus_connection_queue_received_message_link,
2795         _dbus_connection_message_sent): Add the path to
2796         the verbose output.
2797         (_dbus_connection_send_preallocated_and_unlock): Added.  Calls
2798         _dbus_connection_send_preallocated_unlocked(), updated the
2799         dispatch status, and unlocks.  Fixes a bug where certain
2800         situations (like a broken pipe) could cause a Disconnect message
2801         to not be sent, tricking the bus into thinking a service was still
2802         there when the process had quit.
2803         (_dbus_connection_send_preallocated): Call
2804         _dbus_connection_send_preallocated_and_unlock().
2805         (_dbus_connection_send_and_unlock): Added.  Calls
2806         _dbus_connection_send_preallocated_and_unlock().
2807         (dbus_connection_send): Call _dbus_connection_send_and_unlock().
2808         (dbus_connection_send_with_reply): Update the dispatch status and
2809         unlock.
2810
2811         * mono/Service.cs (~Service): Added.  Removes the filter so that
2812         we don't get unmanaged code calling back into a GCed delegate.
2813         (RemoveFilter); Added.
2814
2815 2005-02-09  John (J5) Palmieri  <johnp@redhat.com>
2816
2817         * dbus/dbus-message.c (dbus_message_iter_open_container):
2818         - Removed check for iterator type being an array because
2819         get_arg_type does not work with writer iterators
2820         - Pass NULL to _dbus_type_writer_recurse if signiture is NULL
2821
2822 2005-02-07  Havoc Pennington  <hp@redhat.com>
2823
2824         * doc/dbus-specification.xml: some more language cleanups; add
2825         stuff about how to deal with invalid protocol and extension
2826         points; add _ to allowed chars in auth commands; add EXTENSION_
2827         auth command prefix
2828
2829 2005-02-06  Havoc Pennington  <hp@redhat.com>
2830
2831         * s/expected/required/ in a couple places for clarity
2832
2833 2005-02-07  Colin Walters  <walters@verbum.org>
2834
2835         * bus/selinux.c (bus_selinux_allows_send): Handle NULL for
2836         sender or proposed_recipient.
2837
2838 2005-02-06  Havoc Pennington  <hp@redhat.com>
2839
2840         * dbus/dbus-message-factory.c (generate_special): more tests
2841
2842         * dbus/dbus-marshal-validate.c (validate_body_helper): detect
2843         array length that exceeds the maximum
2844
2845 2005-02-05  Havoc Pennington  <hp@redhat.com>
2846
2847         * dbus/dbus-message-factory.c (generate_special): more test cases,
2848         increasing coverage
2849
2850         * dbus/dbus-marshal-validate.c (validate_body_helper): return the
2851         reason why a signature was invalid
2852
2853         * dbus/dbus-marshal-header.c (load_and_validate_field): fix to
2854         skip the length of the string before we look at it in validation
2855
2856         * dbus/dbus-string-util.c (_dbus_string_test): add tests for
2857         equal_substring
2858
2859         * dbus/dbus-message.c (_dbus_message_loader_new): default
2860         max_message_length to DBUS_MAXIMUM_MESSAGE_LENGTH
2861
2862 2005-02-05  Havoc Pennington  <hp@redhat.com>
2863
2864         * dbus/dbus-marshal-validate.c (validate_body_helper): fix crash
2865         if the signature of a variant was empty
2866         (_dbus_validate_signature_with_reason): catch "(a)" (array inside
2867         struct with no element type)
2868
2869         * dbus/dbus-message-factory.c (generate_uint32_changed): add more
2870         mangled messages to break things
2871
2872 2005-02-04  Havoc Pennington  <hp@redhat.com>
2873
2874         * glib/dbus-gproxy.c (dbus_g_proxy_disconnect_signal): use
2875         g_quark_try_string() so it actually can return 0
2876         (dbus_g_proxy_connect_signal): ditto
2877
2878 2005-02-04  Havoc Pennington  <hp@redhat.com>
2879
2880         * glib/dbus-gproxy.c (dbus_g_proxy_emit_remote_signal): fix a
2881         bogus warning
2882         (tristring_from_message): assert cleanly on null path/interface
2883         (should not be possible though I decided later)
2884         (dbus_g_proxy_dispose): move proxy manager unregistration here
2885         (DBUS_G_PROXY_DESTROYED): add this macro, and use it in a bunch of
2886         g_return_if_fail() checks
2887
2888 2005-02-04  Havoc Pennington  <hp@redhat.com>
2889
2890         * doc/Makefile.am (EXTRA_DIST): add DTDs to makefile
2891
2892         * doc/introspect.dtd: add introspect.dtd from David A. Wheeler
2893         (with some minor changes)
2894
2895         * doc/dbus-specification.xml: add deprecated attribute to
2896         introspection format
2897
2898 2005-01-31  Havoc Pennington  <hp@redhat.com>
2899
2900         * glib/dbus-gproxy.c: rewrite how signals work again, this time I
2901         think it's sort of right
2902
2903 2005-01-30  Havoc Pennington  <hp@redhat.com>
2904
2905         * tools/dbus-viewer.c: kind of half-ass hook up the option menu.
2906
2907 2005-01-30  Havoc Pennington  <hp@redhat.com>
2908
2909         * tools/dbus-names-model.c: dynamically watch NameOwnerChanged
2910
2911         * autogen.sh: change to autotools 1.9
2912
2913         * glib/dbus-gproxy.c: completely change how signals work
2914         (dbus_g_proxy_add_signal): new function to specify signature of a
2915         signal
2916         (dbus_g_proxy_emit_received): marshal the dbus message to GValues,
2917         and g_warning if the incoming message has the wrong signature.
2918
2919 2005-01-30  Havoc Pennington  <hp@redhat.com>
2920
2921         * tools/dbus-names-model.c (have_names_notify): fix this
2922
2923         * dbus/dbus-message.c (_dbus_message_iter_get_args_valist): clean
2924         up the string array handling a bit 
2925
2926 2005-01-30  Havoc Pennington  <hp@redhat.com>
2927
2928         * glib/dbus-glib.c (dbus_g_pending_call_set_notify): new function
2929         (dbus_g_pending_call_cancel): new function
2930
2931         * dbus/dbus-glib.h: move GType decls for connection/message here;
2932         * dbus/dbus-glib.c: move all the g_type and ref/unref stuff in
2933         here, just kind of rationalizing how we handle all that
2934
2935         * tools/dbus-names-model.c: new file for a tree model listing the
2936         services on a bus
2937
2938         * tools/dbus-tree-view.c (model_new): use proper typing on the
2939         model rows
2940
2941 2005-01-30  Havoc Pennington  <hp@redhat.com>
2942
2943         * glib/dbus-gmain.c: add a custom GSource back that just checks
2944         whether the message queue has anything in it; otherwise, there are 
2945         cases where we won't see messages in the queue since there was no 
2946         IO visible to the glib main loop
2947
2948         * dbus/dbus-connection-internal.h (_DBUS_DEFAULT_TIMEOUT_VALUE):
2949         increase default message timeout to 25 seconds
2950
2951 2005-01-30  Havoc Pennington  <hp@redhat.com>
2952
2953         * test/glib/test-profile.c (no_bus_stop_server): remove the
2954         warning about the g_warning that I just fixed
2955
2956         * glib/dbus-gmain.c: rewrite the main loop stuff to avoid the
2957         custom source, seems to be a lot easier to understand and work
2958         better.
2959
2960 2005-01-30  Havoc Pennington  <hp@redhat.com>
2961
2962         I think this main loop thing is conceptually broken, but here are 
2963         some band aids. I'll maybe rewrite it in a minute.
2964         
2965         * glib/dbus-gmain.c (add_timeout): timeout stuff doesn't use the
2966         custom GSource, so don't pass it in; confusing
2967         (gsource_server_finalize, gsource_connection_finalize): add
2968         finalize handlers that remove all the watches.  
2969
2970 2005-01-30  Havoc Pennington  <hp@redhat.com>
2971
2972         * glib/dbus-gobject.c (introspect_properties): fix the XML
2973         generated
2974
2975         * dbus/dbus-message.c (dbus_message_unref): add an in_cache flag
2976         which effectively detects the use of freed messages
2977
2978         * glib/dbus-gobject.c (handle_introspect): modify and return the
2979         reply message instead of the incoming message
2980
2981         * dbus/dbus-object-tree.c (handle_default_introspect_unlocked):
2982         gee, maybe it should SEND THE XML instead of just making a string
2983         and freeing it again ;-)
2984
2985         * tools/dbus-print-message.c (print_message): improve printing of
2986         messages
2987
2988         * configure.in: add debug-glib.service to the output
2989
2990 2005-01-30  Havoc Pennington  <hp@redhat.com>
2991
2992         dbus-viewer introspected and displayed the bus driver
2993         
2994         * dbus/dbus-object-tree.c 
2995         (object_tree_test_iteration): add tests for a handler registered on "/"
2996
2997         * dbus/dbus-object-tree.c
2998         (_dbus_decompose_path): fix to handle path "/" properly
2999         (run_decompose_tests): add tests for path decomposition
3000         
3001         * glib/dbus-gutils.c (_dbus_gutils_split_path): fix to handle "/"
3002         properly
3003
3004         * glib/dbus-gobject.c (handle_introspect): fix quotes
3005
3006         * test/glib/run-test.sh: support launching the bus, then running
3007         dbus-viewer
3008
3009         * test/glib/test-service-glib.c (main): put in a trivial gobject
3010         subclass and register it on the connection
3011
3012         * bus/driver.c (bus_driver_handle_introspect): implement
3013         introspection of the bus driver service
3014
3015         * dbus/dbus-protocol.h: add #defines for the XML namespace,
3016         identifiers, doctype decl
3017
3018         * bus/driver.c (bus_driver_handle_get_service_owner): handle
3019         attempts to get owner of DBUS_SERVICE_ORG_FREEDESKTOP_DBUS by 
3020         returning the service unchanged.
3021         (bus_driver_handle_message): remove old check for reply_serial in
3022         method calls, now the message type deals with that
3023         (bus_driver_handle_message): handle NULL interface
3024
3025         * glib/dbus-gproxy.c (dbus_g_proxy_get_bus_name): new function
3026
3027         * glib/dbus-gloader-expat.c (description_load_from_string): allow
3028         -1 for len
3029
3030         * tools/dbus-viewer.c: add support for introspecting a service on
3031         a bus
3032
3033         * glib/dbus-gproxy.c (dbus_g_pending_call_ref): add
3034         (dbus_g_pending_call_unref): add
3035
3036 2005-01-29  Havoc Pennington  <hp@redhat.com>
3037
3038         * tools/dbus-tree-view.c: add support for displaying properties.
3039         (run dbus-viewer with an introspect xml file as arg, then resize
3040         the window so the tree elements show up, not sure what that is)
3041
3042         * glib/dbus-gobject.c (handle_introspect): return
3043         org.freedesktop.Properties and org.freedesktop.Introspectable
3044         interfaces when we are introspected.
3045
3046         * doc/dbus-specification.xml: allow empty interface name when 
3047         Get/Set a property
3048
3049 2005-01-29  Havoc Pennington  <hp@redhat.com>
3050
3051         * glib/Makefile.am: rename dbus-glib-tool to dbus-binding-tool;
3052         though it uses glib, it could be extended for any binding in
3053         principle
3054
3055         * glib/dbus-gobject.c (gobject_message_function): change to the
3056         new way properties work
3057
3058         * dbus/dbus-protocol.h: add the new interfaces
3059
3060         * doc/dbus-specification.xml: document the introspection format,
3061         Introspectable interface, and add an org.freedesktop.Properties
3062         interface.
3063
3064         * glib/dbus-gparser.c: add support for a <property> element
3065
3066         * glib/dbus-gidl.c: add PropertyInfo
3067
3068         * glib/dbus-gobject.c (handle_introspect): put the outermost
3069         <node> outside the signal and property descriptions.
3070         (introspect_properties): export properties as <property> rather
3071         than as method calls
3072
3073 2005-01-28  Havoc Pennington  <hp@redhat.com>
3074
3075         * doc/TODO, doc/dbus-specification.xml: spec and TODO tweaks
3076         related to authentication protocol
3077
3078 2005-01-28  John (J5) Palmieri  <johnp@redhat.com>
3079
3080         * python/dbus_bindings.pyx.in: Updated to handle new D-BUS type system
3081                 - BUS_ACTIVATION -> BUS_STARTER
3082                 - DBUS_BUS_ACTIVATION -> DBUS_BUS_STARTER
3083                 - class MessageIter (__init__): Added recursion checking 
3084                 so we throw a nice error instead of just disconnecting from the
3085                 bus.
3086                 (get): Added arg_type parameter for recursion.
3087                 Removed the nil type
3088                 Added signiture type placeholder (not implemented)
3089                 Added struct type placeholder (not implemented)
3090                 Added varient type placeholder (not implemented)
3091                 Commented out dict type for now     
3092                 (get_element_type): renamed from get_array_type
3093                 (get_*): changed to use the dbus_message_iter_get_basic API
3094                 (get_*_array): removed in favor of recursive get_array method
3095                 (get_array): new recursive method which calls get to marshal
3096                 the elements of the array
3097                 (value_to_dbus_sig): New method returns the corrasponding
3098                 dbus signiture to a python value
3099                 (append): Comment out dict handling for now
3100                 Handle lists with the new recursive API
3101                 Comment out None handling for now
3102                 (append_nil): removed
3103                 (append_*): changed to use dbus_message_iter_append_basic API
3104                 (append_*_array): removed in favor of recursive append_array 
3105                 method
3106                 (__str__): Make it easier to print out recursive iterators
3107                 for debugging
3108                 - class Message (__str__): moved type inspection to the
3109                 MessageIter class' __str__ method
3110                 (get_iter): Added an append parameter wich defaults to False
3111                 If True use the new API's to create an append iterator
3112
3113         * python/dbus.py: Update to use new bindings API
3114                 - TYPE_ACTIVATION -> TYPE_STARTER
3115                 - class Bus (_get_match_rule): GetServiceOwner -> GetNameOwner
3116                 - class ActivationBus -> class StarterBus
3117                 - class RemoteObject (__call__): get an append iterator
3118                 - (_dispatch_dbus_method_call): get an append iterator
3119                 - class Object (emit_signal): get an append iterator
3120
3121         * python/examples/: Fixed up the examples to work with the new API
3122                 
3123 2005-01-28  Joe Shaw  <joeshaw@novell.com>
3124
3125         * configure.in: Bump version up to 0.30.
3126
3127         * HACKING: Add a release item to bump the version number up after 
3128         a release.
3129
3130 2005-01-28  Havoc Pennington  <hp@redhat.com>
3131
3132         * doc/dbus-specification.xml: update to describe 16-bit types and
3133         dict entries
3134
3135         * dbus/dbus-marshal-basic.c (_dbus_unpack_uint16): fix broken
3136         assertion
3137
3138         * dbus/dbus-protocol.h (DBUS_TYPE_DICT_ENTRY): add DICT_ENTRY as a
3139         type
3140
3141         * dbus/dbus-marshal-recursive.c: implement
3142
3143 2005-01-27  Havoc Pennington  <hp@redhat.com>
3144
3145         * dbus/dbus-arch-deps.h.in: add 16/32-bit types
3146
3147         * configure.in: find the right type for 16 and 32 bit ints as well
3148         as 64
3149
3150         * dbus/dbus-protocol.h (DBUS_TYPE_INT16, DBUS_TYPE_UINT16): add
3151         the 16-bit types so people don't have to stuff them in 32-bit or
3152         byte arrays.
3153
3154 2005-01-27  Havoc Pennington  <hp@redhat.com>
3155
3156         * dbus/dbus-message.c: byteswap the message if you init an
3157         iterator to read/write from it
3158         
3159         * dbus/dbus-marshal-byteswap.c: new file implementing 
3160         _dbus_marshal_byteswap()
3161
3162         * dbus/dbus-marshal-basic.c: add _dbus_swap_array()
3163
3164 2005-01-26  Havoc Pennington  <hp@redhat.com>
3165         
3166         * dbus/dbus-marshal-validate-util.c: break this out (and fix
3167         build, apparently - nobody noticed?)
3168         
3169 2005-01-26  Havoc Pennington  <hp@redhat.com>
3170
3171         * dbus/dbus-marshal-recursive.h: remove todo comment
3172
3173 2005-01-25  Joe Shaw  <joeshaw@novell.com>
3174
3175         * Land the mono binding changes to conform to the new APIs.
3176
3177         * mono/Makefile.am: Remove Custom.cs, DBusType/Custom.cs,
3178         DBusType/Dict.cs, and DBusType/Nil.cs from the build.
3179
3180         * mono/Arguments.cs (GetCodeAsString): Added.  Returns the dbus
3181         type code as a string.
3182         (InitAppending): Rename dbus_message_append_iter_init() to
3183         dbus_message_iter_init_append().
3184
3185         * mono/BusDriver.cs: Rename ServiceEventHandler to
3186         NameOwnerChangedHandler.  Rename GetServiceOwner to GetOwner.
3187         Rename ServiceOwnerChanged to NameOwnerChanged.
3188
3189         * mono/Connection.cs: Rename BaseService to UniqueName, and the
3190         underlying C call.
3191
3192         * mono/Custom.cs: Removed.  The CUSTOM type has been removed.
3193
3194         * mono/Service.cs: Rename Exists to HasOwner, internally rename
3195         dbus_bus_acquire_service() to dbus_bus_request_name().
3196
3197         * mono/DBusType/Array.cs (ctor): Use Type.GetElementType() instead
3198         of Type.UnderlyingSystemType to get the correct element type for
3199         the array.
3200         (ctor): Update code for new APIs: use dbus_message_iter_recurse(),
3201         dbus_message_get_{element|arg}_type() instead of
3202         dbus_message_iter_init_array_iterator().
3203         (Append): Replace dbus_message_iter_append_array() with
3204         dbus_message_iter_open_container() and
3205         dbus_message_iter_close_container().
3206
3207         * mono/DBusType/Custom.cs, mono/DBusType/Nil.cs: Removed.  These
3208         types have been removed.
3209         
3210         * mono/DBusType/*.cs: Replace calls of
3211         dbus_message_iter_get_[type]() to dbus_message_iter_get_basic(),
3212         but specify the type in the DllImport extern declaration.  Ditto
3213         for dbus_message_iter_append_[type]() ->
3214         dbus_message_iter_append_basic().
3215
3216         * mono/example/BusListener.cs: Update for ServiceEventHandler ->
3217         NameOwnerChangedHandler.
3218
3219 2005-01-25  John (J5) Palmieri  <johnp@redhat.com>
3220
3221         * python/dbus_bindings.pyx.in: Rename of methods and bindings
3222                 - get_base_service -> get_unique_name
3223                 - bus_get_base_service -> bus_get_unique_name
3224                 - dbus_bus_get_base_service -> dbus_bus_get_unique_name
3225                 - ACTIVATION_REPLY_ACTIVATED -> DBUS_START_REPLY_SUCCESS 
3226                 - ACTIVATION_REPLY_ALREADY_ACTIVE -> DBUS_START_REPLY_ALREADY_RUNNING
3227                 - bus_activate_service -> bus_start_service_by_name
3228                 - dbus_bus_activate_service -> dbus_bus_start_service_by_name
3229                 - bus_acquire_service -> bus_request_name
3230                 - dbus_bus_acquire_service -> dbus_bus_request_name
3231                 - bus_service_exists -> bus_name_has_owner
3232                 - dbus_bus_service_exists -> dbus_bus_name_has_owner
3233
3234         * python/dbus.py: Rename of methods
3235                 - activate_service -> start_service_by_name
3236                 - bus_acquire_service -> bus_request_name
3237                 - ACTIVATION_REPLY_ACTIVATED -> START_REPLY_SUCCESS 
3238                 - ACTIVATION_REPLY_ALREADY_ACTIVE -> START_REPLY_ALREADY_RUNNING
3239
3240         
3241 2005-01-24  Joe Shaw  <joeshaw@novell.com>
3242
3243         * dbus/dbus-connection.c (dbus_connection_dispatch): Print out the
3244         signature for the method that can't be found.
3245
3246         * dbus/dbus-message.c (dbus_message_iter_init): To check to see if
3247         the message has any arguments, we need to call
3248         _dbus_type_reader_get_current_type(), not
3249         _dbus_type_reader_has_next().
3250
3251 2005-01-24  Havoc Pennington  <hp@redhat.com>
3252
3253         * dbus/dbus-message-factory.c: more testing of message validation
3254
3255         * dbus/dbus-protocol.h (DBUS_MINIMUM_HEADER_SIZE): move to this
3256         header
3257
3258 2005-01-23  Havoc Pennington  <hp@redhat.com>
3259
3260         * dbus/dbus-message-factory.c, dbus/dbus-message-util.c: 
3261         get this all working, not many tests in the framework yet though
3262
3263 2005-01-22  Havoc Pennington  <hp@redhat.com>
3264
3265         * doc/dbus-faq.xml, doc/dbus-tutorial: add a FAQ and update
3266         tutorial, based on work from David Wheeler.
3267
3268 2005-01-21  Havoc Pennington  <hp@redhat.com>
3269
3270         * dbus/dbus-bus.c: add more return_if_fail checks
3271
3272         * dbus/dbus-message.c (load_message): have the "no validation"
3273         mode (have to edit the code to toggle the mode for now though)
3274
3275         * dbus/dbus-marshal-header.c (_dbus_header_load): have a mode that
3276         skips all validation; I want to use this at least for benchmark
3277         baseline, I'm not sure if it should be a publicly-available switch.
3278
3279 2005-01-21  Havoc Pennington  <hp@redhat.com>
3280
3281         * glib/dbus-gmain.c: don't put the GLib bindings in the same
3282         toplevel doxygen group as the low-level API stuff
3283
3284         * dbus/dbus.h: note that libdbus is the low-level API
3285
3286 2005-01-20  Havoc Pennington  <hp@redhat.com>
3287
3288         * update-dbus-docs.sh: script to update docs on the web site, only
3289         works for me though. neener.
3290
3291 2005-01-20  Havoc Pennington  <hp@redhat.com>
3292
3293         * dbus/dbus-sysdeps.c (_dbus_poll): amazingly, trying to compile
3294         code can reveal bugs in it
3295
3296 2005-01-20  Havoc Pennington  <hp@redhat.com>
3297
3298         * dbus/dbus-sysdeps.c (_dbus_poll): fix several bugs in the
3299         select() version, patches from Tor Lillqvist
3300
3301 2005-01-20  Havoc Pennington  <hp@redhat.com>
3302
3303         * doc/dbus-tutorial.xml: replace > with &gt;
3304
3305         * bus/services.c (bus_registry_acquire_service): validate the name
3306         and return a better error if it's no good.
3307
3308         * doc/dbus-specification.xml: note NO_AUTO_START change
3309
3310         * dbus/dbus-protocol.h (DBUS_HEADER_FLAG_NO_AUTO_START): change
3311         from AUTO_START, we're toggling the default
3312
3313         * bus/dispatch.c: adapt the tests to change of auto-start default
3314
3315 2005-01-18  Havoc Pennington  <hp@redhat.com>
3316
3317         * rename dbus-daemon-1 to dbus-daemon throughout
3318
3319 2005-01-18  Havoc Pennington  <hp@redhat.com>
3320
3321         * Throughout, grand renaming to strip out the use of "service",
3322         just say "name" instead (or "bus name" when ambiguous).  Did not
3323         change the internal code of the message bus itself, only the
3324         programmer-facing API and messages.
3325         
3326         * doc/dbus-specification.xml: further update the message bus section
3327         
3328         * bus/config-parser.c (all_are_equiv): fix bug using freed string
3329         in error case
3330
3331 2005-01-17  Havoc Pennington  <hp@redhat.com>
3332
3333         * dbus/dbus-types.h: remove 16-bit types since we don't use them
3334         ever
3335
3336         * dbus/dbus-marshal-validate.c (_dbus_validate_path): disallow any
3337         "invalid name character" not only non-ASCII
3338
3339         * doc/dbus-specification.xml: further update spec, message bus 
3340         parts are still out-of-date but the marshaling etc. stuff is now
3341         accurate-ish
3342
3343 2005-01-17  Havoc Pennington  <hp@redhat.com>
3344
3345         * doc/dbus-specification.xml: partially update spec
3346
3347 2005-01-17  Havoc Pennington  <hp@redhat.com>
3348
3349         * Throughout, align variant bodies according to the contained
3350         type, rather than always to 8. Should save a fair bit of space in
3351         message headers.
3352         
3353         * dbus/dbus-marshal-validate.c (_dbus_validate_body_with_reason):
3354         fix handling of case where p == end
3355
3356         * doc/TODO: remove the dbus_bool_t item and variant alignment items
3357
3358 2005-01-17  Havoc Pennington  <hp@redhat.com>
3359
3360         * dbus/dbus-types.h: hardcode dbus_bool_t to 32 bits
3361
3362         * Throughout: modify DBUS_TYPE_BOOLEAN to be a 32-bit type instead
3363         of an 8-bit type. Now dbus_bool_t is the type to use whenever you 
3364         are marshaling/unmarshaling a boolean.
3365
3366 2005-01-16  Havoc Pennington  <hp@redhat.com>
3367
3368         This is about it on what can be disabled/deleted from libdbus
3369         easily, back below 150K anyhow. Deeper cuts are more work than 
3370         just turning the code off as I've done here.
3371         
3372         * dbus/dbus-marshal-basic.c (_dbus_pack_int32): we don't need the
3373         signed int convenience funcs
3374
3375         * dbus/dbus-internals.c (_dbus_verbose_real): omit when not in
3376         verbose mode
3377
3378         * dbus/dbus-string-util.c, dbus/dbus-string.c: more breaking
3379         things out of libdbus
3380
3381         * dbus/dbus-sysdeps.c, dbus/dbus-sysdeps-util.c: same
3382         
3383         * dbus/dbus-hash.c: purge the TWO_STRINGS crap (well, make it
3384         tests-enabled-only, though it should probably be deleted)
3385
3386         * dbus/dbus-message-util.c: same stuff
3387
3388         * dbus/dbus-auth-util.c: same stuff
3389
3390 2005-01-16  Havoc Pennington  <hp@redhat.com>
3391
3392         * dbus/dbus-userdb-util.c: split out part of dbus-userdb.c
3393
3394         * dbus/dbus-sysdeps.c (_dbus_uid_from_string): move here to pave
3395         way for stripping down dbus-userdb.c stuff included in libdbus.
3396         Rename _dbus_parse_uid for consistency.
3397
3398 2005-01-16  Havoc Pennington  <hp@redhat.com>
3399
3400         * dbus/dbus-internals.c (_dbus_real_assert): print the function
3401         name the assertion failed in
3402
3403         * dbus/dbus-internals.h (_dbus_return_if_fail) 
3404         (_dbus_return_val_if_fail): assert that the name of the function
3405         containing the check doesn't start with '_', since we only want to 
3406         use checks on public functions
3407         
3408         * dbus/dbus-connection.c (_dbus_connection_ref_unlocked): change
3409         checks to assertions
3410
3411         * dbus/dbus-marshal-header.c (_dbus_header_set_field_basic):
3412         change checks to asserts for private function
3413
3414         * dbus/dbus-message.c (_dbus_message_set_serial): checks
3415         to asserts for private function
3416
3417         * dbus/dbus-marshal-recursive.c (skip_one_complete_type): remove
3418         broken assertion that was breaking make check
3419         (_dbus_type_reader_array_is_empty): remove this rather than fix
3420         it, was only used in assertions
3421
3422 2005-01-16  Havoc Pennington  <hp@redhat.com>
3423
3424         * test/unused-code-gc.py: hacky script to find code that's used
3425         only by the bus (not libdbus) or used only by tests or not used at
3426         all. It has some false alarms, but looks like we can clean up a
3427         lot of size from libdbus.
3428
3429         * dbus/dbus-sysdeps.c, dbus/dbus-sysdeps-utils.c,
3430         dbus/Makefile.am: initially move 10K of binary size out of libdbus
3431         
3432 2005-01-16  Havoc Pennington  <hp@redhat.com>
3433
3434         * Add and fix docs according to Doxygen warnings throughout
3435         source.
3436         
3437         * dbus/dbus-marshal-recursive.c
3438         (_dbus_type_reader_array_is_empty): change this to just call
3439         array_reader_get_array_len() and make it static
3440
3441         * dbus/dbus-message.c (dbus_message_iter_get_element_type): rename
3442         from get_array_type
3443         (dbus_message_iter_init_append): rename from append_iter_init
3444
3445         * dbus/dbus-marshal-recursive.c
3446         (_dbus_type_reader_get_element_type): rename from
3447         _dbus_type_reader_get_array_type
3448
3449 2005-01-15  Havoc Pennington  <hp@redhat.com>
3450
3451         * test/glib/test-profile.c (with_bus_server_filter): fix crash
3452
3453         * dbus/dbus-marshal-basic.c (_dbus_unpack_uint32): inline as macro
3454         when DBUS_DISABLE_ASSERT
3455         (_dbus_marshal_set_basic): be sure we align for the string length
3456
3457         * dbus/dbus-marshal-recursive.c (skip_one_complete_type): make
3458         this look faster
3459
3460         * dbus/dbus-string.c (_dbus_string_get_const_data_len): add an
3461         inline macro version
3462         (_dbus_string_set_byte): provide inline macro version
3463
3464 2005-01-15  Havoc Pennington  <hp@redhat.com>
3465
3466         * Land the new message args API and type system.
3467
3468         This patch is huge, but the public API change is not 
3469         really large. The set of D-BUS types has changed somewhat, 
3470         and the arg "getters" are more geared toward language bindings;
3471         they don't make a copy, etc.
3472
3473         There are also some known issues. See these emails for details
3474         on this huge patch:
3475         http://lists.freedesktop.org/archives/dbus/2004-December/001836.html
3476         http://lists.freedesktop.org/archives/dbus/2005-January/001922.html
3477         
3478         * dbus/dbus-marshal-*: all the new stuff
3479
3480         * dbus/dbus-message.c: basically rewritten
3481
3482         * dbus/dbus-memory.c (check_guards): with "guards" enabled, init
3483         freed blocks to be all non-nul bytes so using freed memory is less
3484         likely to work right
3485
3486         * dbus/dbus-internals.c (_dbus_test_oom_handling): add
3487         DBUS_FAIL_MALLOC=N environment variable, so you can do
3488         DBUS_FAIL_MALLOC=0 to skip the out-of-memory checking, or
3489         DBUS_FAIL_MALLOC=10 to make it really, really, really slow and
3490         thorough.
3491
3492         * qt/message.cpp: port to the new message args API
3493         (operator<<): use str.utf8() rather than str.unicode()
3494         (pretty sure this is right from the Qt docs?)
3495
3496         * glib/dbus-gvalue.c: port to the new message args API
3497
3498         * bus/dispatch.c, bus/driver.c: port to the new message args API
3499
3500         * dbus/dbus-string.c (_dbus_string_init_const_len): initialize the
3501         "locked" flag to TRUE and align_offset to 0; I guess we never
3502         looked at these anyhow, but seems cleaner.
3503
3504         * dbus/dbus-string.h (_DBUS_STRING_ALLOCATION_PADDING):
3505         move allocation padding macro to this header; use it to implement
3506         (_DBUS_STRING_STATIC): ability to declare a static string.
3507
3508         * dbus/dbus-message.c (_dbus_message_has_type_interface_member):
3509         change to return TRUE if the interface is not set.
3510
3511         * dbus/dbus-string.[hc]: move the D-BUS specific validation stuff
3512         to dbus-marshal-validate.[hc]
3513
3514         * dbus/dbus-marshal-basic.c (_dbus_type_to_string): move here from
3515         dbus-internals.c
3516
3517         * dbus/Makefile.am: cut over from dbus-marshal.[hc]
3518         to dbus-marshal-*.[hc]
3519
3520         * dbus/dbus-object-tree.c (_dbus_decompose_path): move this
3521         function here from dbus-marshal.c
3522
3523 2005-01-12  Joe Shaw  <joeshaw@novell.com>
3524
3525         * NEWS: Update for 0.23.
3526
3527         * configure.in: Release 0.23.
3528
3529 2005-01-12  Joe Shaw  <joeshaw@novell.com>
3530
3531         * mono/Makefile.am, mono/example/Makefile.am: Always build the 
3532         dbus DLL with --debug.  Clean up after the .mdb files this leaves
3533         behind.
3534
3535         * mono/doc/Makefile.am: Need to uninstall the docs on "make
3536         uninstall"
3537
3538         * mono/Arguments.cs (GetDBusTypeConstructor): If the type
3539         is an enum, get the enum's underlying type.  Another mono
3540         1.1.3 fix.
3541
3542 2005-01-11  Joe Shaw  <joeshaw@novell.com>
3543
3544         Patch from Sjoerd Simons <sjoerd@luon.net>
3545
3546         * mono/Makefile.am, mono/example/Makefile.am: Don't redefine
3547         DESTDIR.  It breaks stuff.
3548
3549 2005-01-11  Joe Shaw  <joeshaw@novell.com>
3550
3551         Patch from Tambet Ingo <tambet@ximian.com>
3552
3553         * mono/DBusType/Array.cs (Get): Get the underlying element type by
3554         calling type.GetElementType().  The code previously depended on
3555         broken Mono behavior, which was fixed in Mono 1.1.3.
3556
3557         * mono/DBusType/Dict.cs (constructor): Fix the parameters for
3558         Activator.CreateInstance() so that the class's constructor is
3559         called with the right parameters.
3560
3561 2005-01-11  Joe Shaw  <joeshaw@novell.com>
3562
3563         Patch from Timo Teräs <ext-timo.teras@nokia.com>
3564
3565         * dbus/dbus-connection.c
3566         (_dbus_connection_queue_received_message_link): Call
3567         _dbus_connection_remove_timeout() instead of the _locked()
3568         variant, since it's always called from
3569         _dbus_connection_handle_watch(), which handles the locking.
3570         Removed the _locked() variant since it's no longer used.
3571
3572 2005-01-03  Havoc Pennington  <hp@redhat.com>
3573
3574         * dbus/dbus-internals.h: I'm an idiot, _dbus_assert certainly can
3575         return
3576         
3577 2004-12-26  Havoc Pennington  <hp@redhat.com>
3578
3579         * dbus/dbus-internals.h: add _DBUS_GNUC_NORETURN to _dbus_assert
3580
3581 2005-01-03  Havoc Pennington  <hp@redhat.com>
3582
3583         * dbus/dbus-sysdeps.c (_dbus_sysdeps_test): fix using == on
3584         floating point
3585
3586         * dbus/dbus-string.c (_dbus_string_insert_alignment): new function
3587
3588 2005-01-02  Havoc Pennington  <hp@redhat.com>
3589
3590         * dbus/dbus-internals.h (_DBUS_ALIGN_OFFSET): new macro
3591
3592 2005-01-01  Havoc Pennington  <hp@redhat.com>
3593
3594         * configure.in: add -Wfloat-equal
3595
3596 2005-01-01  Havoc Pennington  <hp@redhat.com>
3597
3598         * dbus/dbus-sysdeps.h: add _DBUS_DOUBLES_BITWISE_EQUAL macro, 
3599         for a variety of reasons '==' doesn't do this.
3600
3601 2004-12-31  Havoc Pennington  <hp@redhat.com>
3602
3603         * dbus/dbus-string.c (_dbus_string_equal_substrings): new function
3604         I keep wishing I had
3605
3606 2004-12-30  John (J5) Palmieri  <johnp@redhat.com>
3607
3608         * python/dbus.py: s/ACTIVATION_REPLY_ACTIVE/ACTIVATION_REPLY_ACTIVATED
3609
3610 2004-12-30  John (J5) Palmieri  <johnp@redhat.com>
3611
3612         * python/dbus_bindings.pyx.in: Change DBUS_ACTIVATION_REPLY_ACTIVATED
3613         and DBUS_ACTIVATION_REPLY_ALREADY_ACTIVE to match the values in
3614         dbus-protocol.h.  Because they are defines and not enums they are not
3615         autogenerated.
3616
3617 2004-12-26  John (J5) Palmieri  <johnp@redhat.com>
3618
3619         * python/dbus_bindings.pyx.in (bus_activate_service): Bind
3620         dbus_bus_activate_service
3621
3622         * python/dbus.py (Bus.activate_service): activate a service on the
3623         bus.
3624
3625 2004-12-24  Havoc Pennington  <hp@redhat.com>
3626
3627         * test/decode-gcov.c: change to use .gcno and .gcda files, but the
3628         file format has also changed and I haven't adapted to that yet
3629         
3630         * Makefile.am: load .gcno files from latest gcc
3631
3632 2004-12-23  John (J5) Palmieri  <johnp@redhat.com>
3633         * Patch from Rob Taylor <robtaylor@fastmail.fm>
3634
3635         * python/dbus_bindings.pyx.in (bus_get_unix_user): New
3636         lowlevel binding
3637
3638         * python/dbus.py (get_unix_user): Added binding to 
3639         call dbus_bindings.bus_get_unix_user
3640
3641         * python/extract.py: Modified the proto_pat regex to
3642         handle unsigned long
3643
3644 2004-12-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
3645
3646         * dbus/make-dbus-glib-error-enum.sh: omit the function keyword for
3647         better POSIX compliance.
3648
3649 2004-12-19  Havoc Pennington  <hp@redhat.com>
3650
3651         * dbus/dbus-string.c (_dbus_string_insert_4_aligned) 
3652         (_dbus_string_insert_8_aligned): new functions
3653
3654         * dbus/dbus-string.c (_dbus_string_alloc_space): new function
3655
3656 2004-12-18  Havoc Pennington  <hp@redhat.com>
3657
3658         * dbus/dbus-string.c (_dbus_string_validate_ascii): use ISASCII
3659         macro
3660
3661         * dbus/dbus-message.c: fix a comment, and add a still-unused
3662         not-implemented function
3663
3664         * dbus/dbus-marshal.h: fix comment
3665
3666         * dbus/dbus-internals.h (_DBUS_ISASCII): new macro
3667
3668 2004-12-17  Joe Shaw  <joeshaw@novell.com>
3669
3670         * mono/DBusType/Byte.cs, mono/DBusType/Int32.cs,
3671         mono/DBusType/Int64.cs, mono/DBusType/UInt32.cs,
3672         mono/DBusType/UInt64.cs: Use Enum.GetUnderlyingType() instead of
3673         Type.UnderlyingSystemType to get the actual system type
3674         underneath.  This code previously depended on the broken Mono
3675         behavior, which was fixed in 1.1.3.
3676
3677 2004-11-27  Havoc Pennington  <hp@redhat.com>
3678
3679         * dbus/dbus-string.h (_dbus_string_get_byte): inline when asserts
3680         are disabled
3681         (_dbus_string_get_const_data): inline when asserts are disabled
3682
3683         * dbus/dbus-message.c: record the _dbus_current_generation of
3684         creation so we can complain if dbus_shutdown() is used improperly.
3685         Do this only if checks are enabled.
3686
3687         * dbus/dbus-connection.c: ditto
3688         
3689 2004-11-26  Havoc Pennington  <hp@redhat.com>
3690
3691         * test/glib/test-profile.c: add with_bus mode to profile echoes
3692         that go through the bus.
3693
3694         * test/glib/run-test.sh: add ability to run test-profile
3695
3696         * bus/dbus-daemon-1.1.in: fix to say that SIGHUP causes partial
3697         config file reload.
3698
3699 2004-11-26  Havoc Pennington  <hp@redhat.com>
3700
3701         * test/glib/test-profile.c: clean up how the fake_malloc_overhead
3702         thing was implemented
3703
3704 2004-11-26  Havoc Pennington  <hp@redhat.com>
3705
3706         * test/glib/test-profile.c: tweak a bit, add support for some
3707         made-up minimal malloc overhead with plain sockets, since in 
3708         real life some sort of buffers are unavoidable thus we could 
3709         count them in the theoretical best case
3710
3711 2004-11-26  Havoc Pennington  <hp@redhat.com>
3712
3713         * dbus/dbus-message.c (dbus_message_cache_or_finalize): fix bug
3714         where I was trying to cache one too many messages
3715
3716 2004-11-26  Havoc Pennington  <hp@redhat.com>
3717
3718         * dbus/dbus-message.c: reimplement message cache as an array which 
3719         makes the cache about twice as fast and saves maybe 1.5% overall
3720
3721 2004-11-26  Havoc Pennington  <hp@redhat.com>
3722
3723         * dbus/dbus-threads.c (init_global_locks): forgot to put the
3724         message cache lock here
3725
3726 2004-11-26  Havoc Pennington  <hp@redhat.com>
3727
3728         * dbus/dbus-message.c (struct DBusMessage): put the locked bit and
3729         the "char byte_order" next to each other to save 4 bytes
3730         (dbus_message_new_empty_header): reduce preallocation, since the
3731         message cache should achieve a similar effect
3732         (dbus_message_cache_or_finalize, dbus_message_get_cached): add a
3733         message cache that keeps a few DBusMessage around in a pool,
3734         another 8% speedup or so.
3735
3736         * dbus/dbus-dataslot.c (_dbus_data_slot_list_clear): new function
3737
3738 2004-11-25  Havoc Pennington  <hp@redhat.com>
3739
3740         * dbus/dbus-transport-unix.c (unix_do_iteration): if we're going
3741         to write, without reading or blocking, try it before the poll()
3742         and skip the poll() if nothing remains to write. This is about a
3743         3% speedup in the echo client/server
3744
3745 2004-11-25  Havoc Pennington  <hp@redhat.com>
3746
3747         The primary change here is to always write() once before adding
3748         the write watch, which gives us about a 10% performance increase.
3749         
3750         * dbus/dbus-transport-unix.c: a number of modifications to cope
3751         with removing messages_pending
3752         (check_write_watch): properly handle
3753         DBUS_AUTH_STATE_WAITING_FOR_MEMORY; adapt to removal of
3754         messages_pending stuff
3755         (check_read_watch): properly handle WAITING_FOR_MEMORY and
3756         AUTHENTICATED cases
3757         (unix_handle_watch): after writing, see if the write watch can be
3758         removed
3759         (unix_do_iteration): assert that write_watch/read_watch are
3760         non-NULL rather than testing that they aren't, since they 
3761         aren't allowed to be NULL. check_write_watch() at the end so 
3762         we add the watch if we did not finish writing (e.g. got EAGAIN)
3763
3764         * dbus/dbus-transport-protected.h: remove messages_pending call,
3765         since it resulted in too much inefficient watch adding/removing; 
3766         instead we now require that the transport user does an iteration 
3767         after queueing outgoing messages, and after trying the first
3768         write() we add a write watch if we got EAGAIN or exceeded our 
3769         max bytes to write per iteration setting
3770
3771         * dbus/dbus-string.c (_dbus_string_validate_signature): add this
3772         function
3773
3774         * dbus/dbus-server-unix.c (unix_finalize): the socket name was
3775         freed and then accessed, valgrind flagged this bug, fix it
3776
3777         * dbus/dbus-message.c: fix several bugs where HEADER_FIELD_LAST was taken
3778         as the last valid field plus 1, where really it is equal to the
3779         last valid field. Corrects some message corruption issues.
3780
3781         * dbus/dbus-mainloop.c: verbosity changes
3782
3783         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): handle OOM
3784         instead of aborting in one of the test codepaths
3785
3786         * dbus/dbus-internals.c (_dbus_verbose_real): fix a bug that
3787         caused not printing the pid ever again if a verbose was missing
3788         the newline at the end
3789         (_dbus_header_field_to_string): add HEADER_FIELD_SIGNATURE
3790
3791         * dbus/dbus-connection.c: verbosity changes; 
3792         (dbus_connection_has_messages_to_send): new function
3793         (_dbus_connection_message_sent): no longer call transport->messages_pending
3794         (_dbus_connection_send_preallocated_unlocked): do one iteration to
3795         try to write() immediately, so we can avoid the write watch. This
3796         is the core purpose of this patchset
3797         (_dbus_connection_get_dispatch_status_unlocked): if disconnected,
3798         dump the outgoing message queue, so nobody will get confused
3799         trying to send them or thinking stuff is pending to be sent
3800
3801         * bus/test.c: verbosity changes
3802
3803         * bus/driver.c: verbosity/assertion changes
3804
3805         * bus/dispatch.c: a bunch of little tweaks to get it working again
3806         because this patchset changes when/where you need to block.
3807
3808 2004-11-23  Havoc Pennington  <hp@redhat.com>
3809
3810         * test/glib/test-profile.c: modify to accept a plain_sockets
3811         argument in which case it will bench plain sockets instead of
3812         libdbus, for comparison purposes.
3813
3814 2004-11-22  Havoc Pennington  <hp@redhat.com>
3815
3816         * test/glib/test-profile.c (N_CLIENT_THREADS): run multiple
3817         threads for more time, so sysprof can get a grip on it.
3818
3819         * dbus/dbus-string.c (_dbus_string_validate_utf8): remove
3820         pointless variable
3821
3822 2004-11-13  Havoc Pennington  <hp@redhat.com>
3823
3824         * test/glib/test-profile.c: fix this thing up a bit
3825
3826         * dbus/dbus-message.c (dbus_message_new_empty_header): increase
3827         preallocation sizes by a fair bit; not sure if this will be an
3828         overall performance win or not, but it does reduce reallocs.
3829
3830         * dbus/dbus-string.c (set_length, reallocate_for_length): ignore
3831         the test hack that forced constant realloc if asserts are
3832         disabled, so we can profile sanely. Sprinkle in some
3833         _DBUS_UNLIKELY() which are probably pointless, but before I
3834         noticed the real performance problem I put them in.
3835         (_dbus_string_validate_utf8): micro-optimize this thing a little
3836         bit, though callgrind says it didn't help; then special-case
3837         ascii, which did help a lot; then be sure we detect nul bytes as
3838         invalid, which is a bugfix.
3839         (align_length_then_lengthen): add some more _DBUS_UNLIKELY
3840         superstition; use memset to nul the padding instead of a manual
3841         loop.
3842         (_dbus_string_get_length): inline this as a
3843         macro; it showed up in the profile because it's used for loop
3844         tests and so forth
3845
3846 2004-11-10  Colin Walters  <walters@verbum.org>
3847
3848         * dbus/dbus-spawn.c (check_babysit_events): Handle EINTR,
3849         for extra paranoia.
3850
3851 2004-11-09  Colin Walters  <walters@verbum.org>
3852
3853         * dbus/dbus-string.c (_dbus_string_get_length): New
3854         function, writes DBusString to C buffer.
3855
3856         * dbus/dbus-string.h: Prototype it.
3857
3858         * dbus/dbus-message.c (dbus_message_type_to_string): New
3859         function, converts message type into C string.
3860
3861         * dbus/dbus-message.h: Prototype it.
3862
3863         * bus/selinux.c (bus_selinux_check): Take source pid,
3864         target pid, and audit data.  Pass audit data to
3865         avc_has_perm.
3866         (log_audit_callback): New function, appends extra
3867         audit information.
3868         (bus_selinux_allows_acquire_service): Also take
3869         service name, add it to audit data.
3870         (bus_selinux_allows_send): Also take message
3871         type, interface, method member, error name,
3872         and destination, and add them to audit data.
3873         (log_cb): Initialize func_audit.
3874         
3875         * bus/selinux.h (bus_selinux_allows_acquire_service)
3876         (bus_selinux_allows_send): Update prototypes 
3877
3878         * bus/services.c (bus_registry_acquire_service): Pass
3879         service name to bus_selinux_allows_acquire_service.
3880
3881         * bus/bus.c (bus_context_check_security_policy): Pass
3882         additional audit data.  Move assignment of dest
3883         to its own line.
3884
3885 2004-11-07  Colin Walters  <walters@verbum.org>
3886
3887         * dbus/dbus-transport-unix.c (do_authentication): Always
3888         initialize auth_completed.
3889         
3890 2004-11-07  Colin Walters  <walters@verbum.org>
3891
3892         * bus/bus.c (load_config): Break into three
3893         separate functions: process_config_first_time_only,
3894         process_config_every_time, and process_config_postinit.
3895         (process_config_every_time): Move call of
3896         bus_registry_set_service_context_table into
3897         process_config_postinit.
3898         (process_config_postinit): New function, does
3899         any processing that needs to happen late
3900         in initialization (and also on reload).
3901         (bus_context_new): Instead of calling load_config,
3902         open config parser here and call process_config_first_time_only
3903         and process_config_every_time directly.  Later, after
3904         we have forked but before changing UID,
3905         invoke bus_selinux_full_init, and then call
3906         process_config_postinit.
3907         (bus_context_reload_config): As in bus_context_new,
3908         load parse file inside here, and call process_config_every_time
3909         and process_config_postinit.
3910
3911         * bus/services.h, bus/services.c
3912         (bus_registry_set_service_context_table): Rename
3913         from bus_registry_set_sid_table.  Take string hash from config
3914         parser, and convert them here into SIDs.
3915
3916         * bus/config-parser.c (struct BusConfigParser): Have
3917         config parser only store a mapping of service->context
3918         string.
3919         (merge_service_context_hash): New function.
3920         (merge_included): Merge context string hashes instead
3921         of using bus_selinux_id_table_union.
3922         (bus_config_parser_new): Don't use bus_selinux_id_table_new;
3923         simply create a new string hash.
3924         (bus_config_parser_unref): Unref it.
3925         (start_selinux_child): Simply insert strings into hash,
3926         don't call bus_selinux_id_table_copy_over.
3927
3928         * bus/selinux.h, bus/selinux.c (bus_selinux_id_table_union)
3929         (bus_selinux_id_table_copy_over): Delete.
3930
3931 2004-11-03  Colin Walters  <walters@verbum.org>
3932
3933         * bus/selinux.c (bus_selinux_pre_init): Kill some unused
3934         variables.
3935         
3936 2004-11-03  Colin Walters  <walters@verbum.org>
3937
3938         * bus/test-main.c (test_pre_hook): Fix test logic,
3939         thanks Joerg Barfurth <Joerg.Barfurth@Sun.COM>.
3940
3941 2004-11-02  Colin Walters  <walters@redhat.com>
3942
3943         * bus/selinux.c (bus_selinux_init): Split into two functions,
3944         bus_selinux_pre_init and bus_selinux_post_init.
3945         (bus_selinux_pre_init): Just determine whether SELinux is
3946         enabled.
3947         (bus_selinux_post_init): Do everything else.
3948
3949         * bus/main.c (main): Call bus_selinux_pre_init before parsing
3950         config file, and bus_selinux_post_init after.  This ensures that
3951         we don't lose the policyreload notification thread that
3952         bus_selinux_init created before forking previously.
3953         
3954         * bus/test-main.c (test_pre_hook): Update for split.
3955
3956 2004-10-31  Owen Fraser-Green  <owen@discobabe.net>
3957
3958         Patch from Johan Fischer <linux@fischaz.com>
3959         
3960         * mono/doc/Makefile.am (install-data-local): Added directory
3961         install for DESTDIR
3962
3963 2004-10-29  Colin Walters  <walters@redhat.com>
3964
3965         * dbus/dbus-sysdeps.h (_dbus_become_daemon): Also take
3966         parameter for fd to write pid to.       
3967
3968         * dbus/dbus-sysdeps.c (_dbus_become_daemon): Implement it.
3969         
3970         * bus/bus.c (bus_context_new): Pass print_pid_fd
3971         to _dbus_become_daemon (bug #1720)
3972
3973 2004-10-29  Colin Walters  <walters@redhat.com>
3974
3975         Patch from Ed Catmur <ed@catmur.co.uk>
3976
3977         * mono/doc/Makefile.am (install-data-local): Handle
3978         DESTDIR.
3979
3980 2004-10-29  Colin Walters  <walters@redhat.com>
3981
3982         * bus/.cvsignore, qt/.cvsignore: Update.
3983
3984 2004-10-29  Colin Walters  <walters@redhat.com>
3985
3986         Patch from Kristof Vansant <de_lupus@pandora.be>
3987
3988         * configure.in: Detect Slackware.
3989         * bus/Makefile.am (SCRIPT_IN_FILES): Add rc.messagebus.in.
3990         * bus/rc.messagebus.in: New file.
3991
3992 2004-10-29  Colin Walters  <walters@redhat.com>
3993
3994         * tools/dbus-monitor.c (filter_func): Return
3995         DBUS_HANDLER_RESULT_HANDLED in filter function
3996         for now.  See:
3997         http://freedesktop.org/pipermail/dbus/2004-August/001433.html
3998
3999 2004-10-29  Colin Walters  <walters@redhat.com>
4000
4001         Patch from Matthew Rickard <mjricka@epoch.ncsc.mil>
4002
4003         * bus/services.c (bus_registry_acquire_service): 
4004         Correctly retrieve service name from DBusString
4005         for printing.
4006
4007 2004-10-29  Colin Walters  <walters@redhat.com>
4008
4009         * dbus/dbus-glib.h: Update documentation to not
4010         refer to internal APIs.
4011
4012 2004-10-27  Joe Shaw  <joeshaw@novell.com>
4013
4014         * mono/Arguments.cs (GetDBusTypeConstructor):
4015         type.UnderlyingSystemType will return "System.Byte" if you do it
4016         on "byte[]", which is not what we want.  So check the type.IsArray
4017         property and use System.Array instead.
4018
4019 2004-10-25  John (J5) Palmieri  <johnp@redhat.com>
4020
4021         * dbus/dbus-sysdeps.c (fill_user_info): On errors do not free
4022         the DBusUserInfo structure since this is passed into the function.
4023         This would cause a double free when the function that allocated
4024         the structure would try to free it when an error occured.
4025
4026         * (bus/session.conf.in, bus/Makefile.am, dbus/configure.in):
4027         use /usr/share/dbus-1/services instead of /usr/lib/dbus-1.0/services
4028         for service activation to avoid 32bit/64bit parallel install issues
4029
4030 2004-10-21  Colin Walters  <walters@verbum.org>
4031
4032         * AUTHORS: Fix my email address, the @gnu.org one
4033         has been bouncing for some time.  Also add J5.
4034         
4035 2004-10-21  Colin Walters  <walters@verbum.org>
4036
4037         * dbus/dbus-transport-unix.c (do_authentication): Return
4038         authentication status to callers.
4039         (unix_handle_watch): If we completed authentication this round,
4040         don't do another read.  Instead wait until the next iteration,
4041         after we've read any pending data in the auth buffer.
4042         (unix_do_iteration): Ditto.
4043         (unix_handle_watch): Updated for new do_authentication prototype.
4044
4045 2004-10-18  Colin Walters  <walters@verbum.org>
4046
4047         * bus/selinux.c (bus_selinux_enabled): Handle
4048         --disable-selinux case.
4049         
4050 2004-10-18  Colin Walters  <walters@verbum.org>
4051
4052         * bus/selinux.h: Add bus_selinux_enabled.
4053         
4054         * bus/selinux.c (bus_selinux_enabled): Implement it.
4055         
4056         * bus/config-parser.c (struct include): Add
4057         if_selinux_enabled member.
4058         (start_busconfig_child): Parse if_selinux_enabled
4059         attribute for include.
4060         (bus_config_parser_content): Handle it.
4061
4062         * bus/session.conf.in, bus/system.conf.in: Add
4063         inclusion of context mapping to default config files;
4064         conditional on SELinux being enabled.
4065         
4066         * doc/busconfig.dtd: Add to if_selinux_enabled to default DTD.
4067         
4068         * test/data/invalid-config-files/badselinux-1.conf, 
4069         test/data/invalid-config-files/badselinux-2.conf:
4070         Test files for bad syntax.
4071         
4072 2004-10-17  Colin Walters  <walters@verbum.org>
4073
4074         * dbus/dbus-memory.c (_dbus_initialize_malloc_debug, check_guards)
4075         (dbus_malloc, dbus_malloc0, dbus_realloc): Fix up printf
4076         format specifier mismatches.
4077
4078 2004-10-07  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4079
4080         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): fix an incorrect
4081         format string.
4082
4083         * glib/dbus-dbus-gmain.c (dbus_g_bus_get): do not mangle NULL
4084         pointer (bug #1540, Leonardo Boiko).
4085
4086 2004-09-28  Jon Trowbridge  <trow@ximian.com>
4087
4088         * mono/BusDriver.cs: Changed BusDriver struct to remove
4089         the ServiceCreated and ServiceDeleted events and replace them
4090         with the new ServiceOwnerChanged event.
4091
4092         * mono/example/BusListener.cs: Added a new example program,
4093         which listens for and reports any ServiceOwnerChanged events
4094         on the bus driver.
4095
4096         * mono/example/Makefile.am (DESTDIR): Build changes for the
4097         new BusListener.cs example.
4098
4099 2004-09-27  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4100
4101         * bus/signals.c (bus_match_rule_parse): validate the components of
4102         match rules (bug #1439).
4103
4104         * dbus/dbus-bus.c (dbus_bus_add_match): add a missing OOM test.
4105
4106 2004-09-24  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4107
4108         * doc/dbus-specification.xml: document ServiceOwnerChanged
4109         signal.
4110         
4111         * bus/driver.c, bus/driver.h, bus/services.c: Use
4112         ServiceOwnerChanged signal instead of ServiceCreated and
4113         ServiceDeleted.
4114         
4115         * bus/dispatch.c: update testcase for the new signal.
4116
4117 2004-09-20  Jon Trowbridge  <trow@ximian.com>
4118
4119         Patch from Nat Friedman <nat@novell.com>
4120
4121         * mono/Makefile.am: A number of small build fixes to allow "make
4122         distcheck" to succeed.
4123
4124         * mono/example/Makefile.am: "make distcheck" fixes.
4125
4126         * mono/AssemblyInfo.cs.in: When signing the assembly, look for the
4127         key in @srcdir@.
4128
4129         * test/Makefile.am: "make distcheck" fixes.
4130
4131 2004-09-17  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4132
4133         * dbus/dbus-sysdeps.c (_dbus_user_at_console): fix memleak in OOM.
4134
4135         * doc/busconfig.dtd: update the DTD for the at_console attribute.
4136
4137         * bus/driver.c (bus_driver_handle_hello): correctly handle Hello
4138         messages after the first one (bug #1389).
4139         
4140         * bus/dispatch.c (check_double_hello_message): add a test case for
4141         the double hello message bug.
4142         (check_existent_service_activation): fix check of spawning error.
4143         
4144 2004-09-16  David Zeuthen  <david@fubar.dk>
4145
4146         * python/dbus_bindings.pyx.in: Add support for int64 and uint64
4147
4148 2004-09-12  David Zeuthen  <david@fubar.dk>
4149
4150         Patch from Kay Sievers <kay.sievers@vrfy.org>
4151
4152         * bus/bus.c (bus_context_new):
4153         * bus/bus.h:
4154         * bus/main.c (usage)
4155         (main):
4156         Add commandline option --nofork to override configuration file
4157         setting.
4158
4159 2004-09-09  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4160
4161         * dbus/dbus-*.h: remove the ; after DBUS_(BEGIN|END)_DECLS. Some C
4162         compilers don't like it (bug #974).
4163
4164 2004-09-04  Harald Fernengel  <harry@kdevelop.org>
4165
4166         * qt/connection.*: Applied patch by Jérôme Lodewyck
4167         <lodewyck@clipper.ens.fr> to integrate an existing
4168         connection into the Qt eventloop
4169
4170 2004-08-30  Jon Trowbridge  <trow@ximian.com>
4171
4172         * mono/BusDriver.cs: Added.  This is a class for interacting with
4173         the org.freedesktop.DBus service.
4174
4175         * mono/Message.cs: Added a mechanism to expose the message that is
4176         currently being dispatched via the static Message.Current
4177         property.  Added Message.Sender and Message.Destination
4178         properties.
4179
4180         * mono/Handler.cs: Expose the dispatched message via
4181         Message.Current when handling method calls.
4182
4183         * mono/Service.cs: Expose the dispatched message via
4184         Message.Current when handling signal emissions.
4185         
4186         * mono/Connection.cs: Bind dbus_bus_get_base_service via the
4187         Connection.BaseService property.
4188
4189 2004-08-28  Havoc Pennington  <hp@redhat.com>
4190
4191         * dbus/dbus-userdb.c (_dbus_is_console_user): remove unused variable
4192
4193         More fixes from Steve Grubb
4194         
4195         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): fix fd leak
4196         (_dbus_listen_tcp_socket): fix fd leak
4197
4198         * dbus/dbus-spawn.c (read_pid, read_ints): move the "again:" for
4199         EINTR to a bit lower in the code
4200
4201 2004-08-26  Jon Trowbridge  <trow@ximian.com>
4202
4203         * bus/driver.c (bus_driver_handle_service_exists): Respond with
4204         TRUE if we are inquiring about the existence of the built-in
4205         org.freedesktop.DBus service.
4206
4207 2004-08-25  John Palmieri  <johnp@redhat.com>
4208         * bus/config-parser.c:
4209         (struct PolicyType): Add POLICY_CONSOLE
4210         (struct Element.d.policy): s/gid_or_uid/gid_uid_or_at_console
4211         (start_busconfig_child): Sets up console element when
4212         <policy at_console=""> is encountered in a policy file
4213         (append_rule_from_element): Convert console elements to console
4214         rules.
4215
4216         * bus/policy.c: 
4217         (bus_policy_create_client_policy): Add console rules to the client
4218         policy based on if the client is at the console
4219         (bus_policy_append_console_rule): New function for adding a
4220         console rule to a policy
4221         (bus_policy_merge): Handle console rule merging
4222
4223         * dbus/dbus-sysdeps.h: Added the DBUS_CONSOLE_DIR constant
4224         where we check for console user files
4225         
4226         * dbus/dbus-sysdeps.c:
4227         (_dbus_file_exists): New function which checks if the given
4228         file exists
4229         (_dbus_user_at_console): New function which does the system
4230         specific process of checking if the user is at the console
4231
4232         * dbus/dbus-userdb.c:
4233         (_dbus_is_console_user): New function converts a UID to user name
4234         and then calls the system specific _dbus_user_at_console to 
4235         see if the user is at the console and therefor a console user
4236
4237 2004-08-25  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4238
4239         * bus/config-parser.c (set_limit):
4240         * bus/dbus-daemon-1.1.in:
4241         * test/data/valid-config-files/many-rules.conf: set the
4242         max_match_rules_per_connection limt from the config file. 
4243
4244         * doc/busconfig.dtd: update the DTD.
4245
4246         * bus/driver.c: remove some unused variables.
4247
4248 2004-08-24  Mikael Hallendal  <micke@imendio.com>
4249
4250         * dbus/dbus-glib-lowlevel.h: Removed dbus_bus_get_with_g_main since 
4251         it's been replaced by dbus_g_bus_get
4252
4253 2004-08-23  Colin Walters  <walters@redhat.com>
4254
4255         Updated SELinux support from Matthew Rickard <mjricka@epoch.ncsc.mil>
4256
4257         * bus/selinux.h: Prototype bus_selinux_get_policy_root.
4258
4259         * bus/selinux.c: Create a thread for policy reload notification.
4260         (bus_selinux_get_policy_root): Implement.
4261
4262         * bus/config-parser.c (start_busconfig_child)
4263         (bus_config_parser_content): Support SELinux-root relative
4264         inclusion.
4265
4266         * configure.in <HAVE_SELINUX>: Add -lpthread.
4267         
4268         * bus/test-main.c (test_pre_hook, test_post_hook): New.
4269         (test_post_hook): Move memory checking into here.
4270         (test_pre_hook, test_post_hook): Move SELinux checks in
4271         here, but conditional on a DBUS_TEST_SELINUX environment
4272         variable.  Unfortunately we can't run the SELinux checks
4273         as a normal user, since they won't have any permissions
4274         for /selinux.  So this will have to be tested manually
4275         for now, until we have virtualization for most of
4276         libselinux.
4277         
4278 2004-08-23  Havoc Pennington  <hp@redhat.com>
4279
4280         * dbus/dbus-sysdeps.c (_dbus_change_identity): add setgroups() to
4281         drop supplementary groups, suggested by Steve Grubb
4282
4283 2004-08-20  Colin Walters  <walters@redhat.com>
4284
4285         * bus/config-parser.c (start_busconfig_child): Remove some unused
4286         variables.
4287         
4288         * bus/selinux.c (bus_selinux_id_table_insert): Avoid compiler
4289         warning.
4290
4291 2004-08-17  Joe Shaw  <joeshaw@novell.com>
4292
4293         * configure.in: If --enable-mono is passed in, if we can't find
4294         mono error out.
4295
4296         * mono/Makefile.am: Use /gacutil to install assemblies into the
4297         GAC and not /root.
4298
4299 2004-08-12  Havoc Pennington  <hp@redhat.com>
4300
4301         * NEWS: update for 0.22
4302
4303         * configure.in: release 0.22
4304
4305 2004-08-11  Colin Walters  <walters@redhat.com>
4306
4307         * tools/dbus-send.c (main, usage): Add --reply-timeout
4308         argument.
4309
4310 2004-08-10  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4311
4312         * bus/bus.c (process_config_first_time_only): get rid of an unused
4313         DBusError that was causing a memoy leak (bug #989).
4314
4315         * dbus/dbus-keyring.c, dbus/dbus-message.c:
4316         fix compilation on Solaris/Forte C (bug #974)
4317
4318         * bus/main.c (main): plug two minuscule memleaks.
4319
4320 2004-08-10  Havoc Pennington  <hp@redhat.com>
4321
4322         * doc/dbus-tutorial.xml: add some more info on GLib bindings
4323
4324 2004-08-09  Havoc Pennington  <hp@redhat.com>
4325
4326         * COPYING: switch to Academic Free License version 2.1 instead of
4327         2.0, to resolve complaints about patent termination clause.
4328
4329 2004-07-31  John (J5) Palmieri  <johnp@redhat.com>
4330
4331         * README: added documentation for the --enable-python 
4332         configure switch.
4333
4334 2004-07-31  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4335
4336         * bus/config-parser.c (bus_config_parser_new): fix an invalid
4337         _unref in the SELinux support.
4338
4339         * doc/busconfig.dtd: update DTD for SELinux support.
4340
4341         * bus/config-loader-libxml.c: fix error handler and parser
4342         initialisation/cleanup. OOM test now works with libxml2 HEAD.
4343
4344         * configure.in: remove the warning about libxml2.
4345
4346         * dbus/dbus-bus.c: silence doxygen warning.
4347
4348 2004-07-31  Colin Walters  <walters@redhat.com>
4349
4350         * configure.in: Move #error in SELinux check to its own line.
4351
4352 2004-07-31  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4353
4354         * dbus/dbus-internals.h (_DBUS_SET_OOM):
4355         * bus/utils.h (BUS_SET_OOM): use dbus_error_set_const instead of
4356         dbus_error_set.
4357
4358         * bus/dispatch.c (check_send_exit_to_service): fix the test case,
4359         broken by the change in the _SET_OOM macros.
4360
4361 2004-07-31  Colin Walters  <walters@redhat.com>
4362
4363         * bus/selinux.c <HAVE_SELINUX>: Include utils.h to get
4364         BUS_SET_OOM.
4365
4366 2004-07-31  Colin Walters  <walters@redhat.com>
4367
4368         * configure.in: Use AC_TRY_COMPILE instead of AC_EGREP_HEADER
4369         to correctly detect DBUS__ACQUIRE_SVC.  Also add an
4370         AC_MSG_CHECKING.
4371
4372 2004-07-24  Havoc Pennington  <hp@redhat.com>
4373
4374         SELinux support from Matthew Rickard <mjricka@epoch.ncsc.mil>
4375
4376         * bus/selinux.c, bus/selinux.h: new file encapsulating selinux
4377         functionality
4378
4379         * configure.in: add --enable-selinux
4380         
4381         * bus/policy.c (bus_policy_merge): add FIXME to a comment
4382
4383         * bus/main.c (main): initialize and shut down selinux
4384
4385         * bus/connection.c: store SELinux ID on each connection, to avoid 
4386         repeated getting of the string context and converting it into 
4387         an ID
4388
4389         * bus/bus.c (bus_context_get_policy): new accessor, though it
4390         isn't used
4391         (bus_context_check_security_policy): check whether the security
4392         context of sender connection can send to the security context of
4393         recipient connection
4394
4395         * bus/config-parser.c: add parsing for <selinux> and <associate>
4396         
4397         * dbus/dbus-transport.c (_dbus_transport_get_unix_fd): to
4398         implement dbus_connection_get_unix_fd()
4399
4400         * dbus/dbus-connection.c (dbus_connection_get_unix_fd): new
4401         function, used by the selinux stuff
4402         
4403 2004-07-29  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4404
4405         * bus/config-loader-libxml.c: complete the implementation of
4406         libxml backend for config file loader. Doesn't work with full OOM
4407         test yet. 
4408         
4409         * configure.in: change error when selecting libxml into a warning.
4410         
4411         * test/data/invalid-config-files: add two non-well-formed XML
4412         files. 
4413         
4414         * glib/Makefile.am: libdbus_gtool always uses expat, not libxml.
4415         
4416         * dbus/dbus-transport-unix.c (unix_handle_watch): do not
4417         disconnect in case of DBUS_WATCH_HANGUP, several do_reading() may
4418         be necessary to read all the buffer. (bug #894)
4419
4420         * bus/activation.c (bus_activation_activate_service): fix a
4421         potential assertion failure (bug #896). Small optimization in the
4422         case of auto-activation messages.
4423
4424         * dbus/dbus-message.c (verify_test_message, _dbus_message_test):
4425         add test case for byte-through-vararg bug (#901). patch by Kimmo
4426         Hämäläinen. 
4427
4428 2004-07-28  Anders Carlsson  <andersca@gnome.org>
4429
4430         * python/dbus.py:
4431         * python/dbus_bindings.pyx.in:
4432         Add dbus.init_gthreads (), allow emit_signal to pass
4433         arguments to the signal.
4434         
4435 2004-07-24  Havoc Pennington  <hp@redhat.com>
4436
4437         * AUTHORS: add some people, not really comprehensively, let me
4438         know if I missed you
4439
4440 2004-07-24  Havoc Pennington  <hp@redhat.com>
4441
4442         * Makefile.am (DIST_SUBDIRS): add DIST_SUBDIRS, problem solved by
4443         Owen
4444
4445         * test/Makefile.am (DIST_SUBDIRS): here also
4446
4447 2004-07-22  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4448
4449         * dbus/dbus-sysdeps.c (fill_user_info): fix inexistent label name,
4450         breaking build on Solaris, reported by Farhad Saberi on the ML.
4451
4452         * dbus/dbus-message.c (dbus_message_append_args_valist): fix the
4453         va_arg invocation to account for integer promotion in the case of
4454         DBUS_TYPE_BYTE (unsigned char is promoted to int). (bug #901)
4455
4456         * bus/services.c (bus_service_remove_owner): fix bug #902, use
4457         _dbus_list_get_first_link, not _dbus_list_get_first.
4458
4459         * dbus/dbus-bus.c (dbus_bus_service_exists): plug a memory leak.
4460
4461         * dbus/dbus-object-tree.c (free_subtree_recurse): always null
4462         handler functions so that the asserts in _dbus_object_subtree_unref
4463         do not fail.
4464
4465         * dbus/dbus-transport-unix.c (do_reading):
4466         _dbus_transport_queue_messages return value is of type
4467         dbus_bool_t, not DBusDispatchStatus.
4468         
4469 2004-07-19  David Zeuthen  <david@fubar.dk>
4470
4471         * dbus/dbus-protocol.h: Add DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN
4472
4473         * bus/dispatch.c:
4474         (check_get_connection_unix_user): Debug says GetProperty; but the
4475         method is called GetConnectionUnixUser
4476         (check_get_connection_unix_process_id): New function
4477         (bus_dispatch_test): Actually call check_get_connection_unix_user();
4478         also call check_get_connection_unix_process_id()
4479         
4480         * bus/driver.c:
4481         (bus_driver_handle_get_connection_unix_process_id): New function,
4482         handles GetConnectionUnixProcessID on the org.freedesktop.DBus
4483         interface
4484         
4485         * dbus/dbus-auth.c:
4486         (handle_server_data_external_mech): Set pid from the credentials
4487         obtained from the socket
4488         
4489         * dbus/dbus-connection.c:
4490         (dbus_connection_get_unix_process_id): New function
4491         
4492         * dbus/dbus-connection.h: 
4493         Add prototype for dbus_connection_get_unix_process_id
4494         
4495         * dbus/dbus-transport.c:
4496         (_dbus_transport_get_unix_process_id): New function
4497         
4498         * dbus/dbus-transport.h:
4499         Add prototype for _dbus_transport_get_unix_process_id
4500         
4501 2004-07-19  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4502
4503         * dbus/dbus-message.c: Message counter fix, patch by Christian
4504         Hammond <chipx86@gnupdate.org>
4505
4506 2004-07-18  Seth Nickell  <seth@gnome.org>
4507
4508         * python/dbus.py:
4509         * python/dbus_bindings.pyx.in:
4510         * python/tests/test-client.py:
4511
4512         Add dbus.ByteArray and dbus_bindings.ByteArray
4513         types so that byte streams can be passed back.
4514
4515         Give jdahlin the heaps of credit that are so
4516         rightfully his.
4517         
4518 2004-07-12  Seth Nickell  <seth@gnome.org>
4519
4520         * python/dbus.py:
4521
4522         Add message argument to the default object_method_handler
4523         function.
4524         
4525         * python/dbus_bindings.pyx.in:
4526
4527         Automatically return NIL when passed an empty list
4528         (we can't pass back a list since lists are typed
4529         and we don't have any idea what type the the client
4530         intended the list to be... :-( )
4531         
4532 2004-07-10  Seth Nickell  <seth@gnome.org>
4533
4534         * python/examples/Makefile.am:
4535
4536         Fix distcheck breakage caused by new examples.
4537
4538 2004-07-10  Seth Nickell  <seth@gnome.org>
4539
4540         * python/dbus.py:
4541
4542         Add "message" argument to service-side dbus.Object
4543         methods. This will break existing services written
4544         using the python bindings, but will allow extraction
4545         of all the message information (e.g. who its from).
4546
4547         Add improved "object oriented" signal handling/emission.
4548         
4549         * python/examples/example-service.py:
4550
4551         Nix this example.
4552         
4553         * python/examples/example-signal-emitter.py:
4554         * python/examples/example-signal-recipient.py:
4555
4556         Two new examples that show how to emit and receive
4557         signals using the new APIs.
4558         
4559         * python/examples/example-signals.py:
4560         * python/examples/gconf-proxy-service.py:
4561         * python/examples/gconf-proxy-service2.py:
4562
4563         Add "message" argument to service methods.
4564
4565 2004-06-28  Kay Sievers <kay.sievers@vrfy.org>
4566
4567         * bus/driver.c (bus_driver_handle_get_connection_unix_user)
4568         * dbus/bus.c (dbus_bus_get_unix_user)
4569         * doc/dbus-specification.xml: implement GetConnectionUnixUser
4570         method of org.freedesktop.DBus interface.
4571
4572         * bus/dispatch.c: test case
4573
4574 2004-06-23  John (J5) Palmieri  <johnp@redhat.com>
4575
4576         * python/Makefile.am: switched include directory from glib/ to dbus/
4577         since dbus-glib.h moved
4578  
4579 2004-06-22  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4580
4581         * configure.in: prevent building the gcj stuff and libxml loader
4582         since they are broken.
4583
4584 2004-06-20  Havoc Pennington  <hp@redhat.com>
4585
4586         * dbus/dbus-glib-error-enum.h: autogenerate the GError enum 
4587         codes from the dbus error names
4588         
4589         * glib/dbus-glib.h: move to subdir dbus/ since it's included 
4590         as dbus/dbus-glib.h and that breakage is now visible due to 
4591         including dbus/dbus-glib.h in dbus-glib-lowlevel.h
4592         
4593         * glib/dbus-glib.h: s/gproxy/g_proxy/
4594
4595         * dbus/dbus-shared.h: new header to hold stuff shared with
4596         binding APIs
4597         
4598         * dbus/dbus-protocol.h (DBUS_ERROR_*): move errors here rather
4599         than dbus-errors.h
4600
4601         * glib/dbus-glib.h (dbus_set_g_error): move to
4602         dbus-glib-lowlevel.h
4603
4604         * glib/dbus-glib.h: remove dbus/dbus.h from here; change a bunch
4605         of stuff to enable this
4606
4607         * dbus/dbus-glib-lowlevel.h: put dbus/dbus.h here
4608
4609         * a bunch of other changes with the same basic "separate glib 
4610         bindings from dbus.h" theme
4611         
4612 2004-06-10  Owen Fraser-Green  <owen@discobabe.net>
4613
4614         * dbus-sharp.pc.in: Removed glib-sharp inclusion in Libs.
4615
4616         * python/examples/Makefile.am: Fixed typo in EXTRA_DIST.
4617
4618 2004-06-09  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4619
4620         * bus/driver.c, dbus/dbus-bus.c: use BOOLEAN instead of UINT32 for
4621         the reply value of the ServiceExists message.
4622
4623 2004-06-07  John (J5) Palmieri  <johnp@redhat.com>
4624
4625         * python/dbus_bindings.pyx.in: No longer need to parse path
4626         elements and pass them as arrays of strings.  The C API now
4627         accepts plain path strings.
4628         (_build_parsed_path): removed 
4629
4630 2004-06-07  Havoc Pennington  <hp@redhat.com>
4631
4632         * doc/TODO: remove auto-activation item since it's done; sort
4633         items by importance/milestone
4634
4635 2004-06-07  Havoc Pennington  <hp@redhat.com>
4636
4637         * dbus/dbus-message-builder.c (_dbus_message_data_load): append
4638         random signature when using REQUIRED_FIELDS (this hack won't work
4639         in the long term)
4640
4641         * dbus/dbus-message.c: change the signature to be a header field,
4642         instead of message->signature special-case string. Incremental
4643         step forward. Then we can fix up code to send the signature in the
4644         message, then fix up code to validate said signature, then fix up
4645         code to not put the typecodes inline, etc.
4646         (load_one_message): don't make up the signature after the fact
4647         (decode_header_data): require signature field for the known
4648         message types
4649
4650         * dbus/dbus-marshal.c (_dbus_marshal_string_len): new
4651
4652         * dbus/dbus-protocol.h: add DBUS_HEADER_FIELD_SIGNATURE
4653
4654 2004-06-07  Owen Fraser-Green  <owen@discobabe.net>
4655
4656         * mono/DBusType/ObjectPath.cs: Renamed PathName argument to Path
4657
4658         * mono/Handler.cs: Updated to follow new path argument for
4659         (un-)registering objects.
4660
4661         * mono/example/Makefile.am:
4662         * mono/Makefile.am:
4663         * configure.in: Bumped required version for mono and use new -pkg
4664         syntax for deps
4665
4666 2004-06-05  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4667
4668         * dbus/dbus-connection.h, dbus/dbus-connection.c: have object path
4669         registration functions take the path argument as char* instead of
4670         char**.
4671
4672         * dbus/dbus-marshal.h, dbus/dbus-marshal.c (_dbus_decompose_path):
4673         split off the path decompostion part of
4674         _dbus_demarshal_object_path. Some misc. fixes to silence compiler
4675         warnings. 
4676
4677         * glib/dbus-gobject.c, test/test-service.c: update accordingly.
4678         
4679 2004-06-02  Kristian Høgsberg  <krh@redhat.com>
4680  
4681         * dbus/dbus-auth.c: Rewrite auth protocol handling to use a state
4682         machine approach.  A state is implemented as a function that
4683         handles incoming events as specified for that state.
4684         
4685         * doc/dbus-specification.xml: Update auth protocol state machine
4686         specification to match implementation.  Remove some leftover
4687         base64 examples.
4688
4689 2004-06-02  Kristian Høgsberg  <krh@redhat.com>
4690
4691         * glib/dbus-gproxy.c, glib/dbus-gmain.c, dbus/dbus-string.c,
4692         dbus/dbus-object-tree.c, dbus/dbus-message.c: add comments to
4693         quiet doxygen.
4694
4695         * Doxyfile.in: remove deprecated options.
4696
4697         * dbus/dbus-message-handler.c, dbus/dbus-message-handler.h,
4698         glib/test-thread.h, glib/test-thread-client.c,
4699         glib/test-thread-server.c, glib/test-profile.c,
4700         glib/test-dbus-glib.c: remove these unused files.
4701
4702 2004-06-01  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4703
4704         * dbus/dbus-object-tree.c
4705         (_dbus_object_tree_dispatch_and_unlock): fix dispatch for
4706         non-fallback handlers (bug #684).
4707         (_dbus_object_subtree_new): initialize invoke_as_fallback field.
4708         (find_subtree_recurse): report wether the returned subtree is an
4709         exact match or a "fallback" match higher up in the tree.
4710         (object_tree_test_iteration): update test case.
4711
4712 2004-06-01  Seth Nickell  <seth@gnome.org>
4713
4714         * python/dbus_bindings.pyx.in:
4715         * python/tests/test-client.py:
4716
4717         Round off basic type support. Add dicts (yay!), and 
4718         remaining array types.
4719
4720         Make MessageIter more general so it works for dicts too.
4721
4722         Mark all loop variables as C integers.
4723         
4724 2004-05-31  Havoc Pennington  <hp@redhat.com>
4725
4726         * glib/dbus-gidl.c (method_info_add_arg): keep args sorted with
4727         "in" before "out"
4728
4729         * glib/dbus-gobject.c (dbus_type_to_string): move to dbus-gutils.c
4730
4731         * glib/dbus-glib-tool.c (main): set up to have a --self-test
4732         option that runs the tests, and start filling in some code
4733         including for starters just dumping the interfaces to stdout
4734
4735         * glib/Makefile.am (INCLUDES): define DBUS_LOCALEDIR
4736
4737         * test/data/valid-introspection-files/lots-of-types.xml: test of
4738         an example introspection file
4739
4740         * glib/dbus-gparser.c (parser_check_doctype): doctype should be
4741         "node" (I think...)
4742
4743 2004-05-31  Seth Nickell  <seth@gnome.org>
4744
4745         * python/dbus_bindings.pyx.in:
4746         * python/tests/test-client.py:
4747
4748         Test Suite: 1
4749         Python Bindings: 0
4750
4751         Fix string array memory trashing bug... oops...
4752
4753 2004-05-30  Seth Nickell  <seth@gnome.org>
4754
4755         * python/dbus.py:
4756
4757         Add a nicer-but-less-flexible alternate API for handling 
4758         calls to virtual objects in dbus.ObjectTree.
4759
4760         Screw up the argument order to the dbus.Object constructor
4761         for consistency with dbus.ObjectTree (and to make dbus_methods
4762         optional for future extension)
4763         
4764         * python/examples/Makefile.am:
4765         * python/examples/gconf-proxy-service.py:
4766         * python/examples/gconf-proxy-service2.py:
4767
4768         Alternate implementation of gconf-proxy-service using the
4769         nicer dbus.ObjectTree API.
4770         
4771         * python/examples/example-service.py:
4772         * python/tests/test-server.py
4773
4774         Reverse the argument order to deal with dbus.Object constructor
4775         changes.
4776         
4777 2004-05-30  Seth Nickell  <seth@gnome.org>
4778
4779         * python/examples/example-client.py:
4780         * python/examples/example-service.py:
4781
4782         Take it back. Lists seem to work but they're broken
4783         in the test suite. Make the base examples use
4784         lists (works fine).
4785
4786 2004-05-30  Seth Nickell  <seth@gnome.org>
4787
4788         * python/dbus_bindings.pyx.in:
4789         * python/tests/test-client.py:
4790
4791         Add some more tests and fix errors that crop up.
4792         Unfortunately, currently it seems like marshalling
4793         and unmarshalling of lists is completely broken :-(
4794
4795 2004-05-30  Seth Nickell  <seth@gnome.org>
4796
4797         * python/dbus_bindings.pyx.in:
4798
4799         Add support for ObjectPath type.
4800
4801         * python/dbus.py:
4802
4803         Refactor message handling code to a common function.
4804         
4805         * python/tests/test-client.py:
4806         * python/tests/test-server.py:
4807
4808         Add tests that check to make sure values of all types
4809         can be echoed from a service w/o mangling.
4810         
4811 2004-05-29  Seth Nickell  <seth@gnome.org>
4812
4813         * python/dbus.py:
4814
4815         Add ObjectTree class which allows implementation
4816         of trees of "virtual" objects. Basically the python
4817         wrapper for "register_fallback".
4818         
4819         * python/examples/Makefile.am
4820         * python/examples/gconf-proxy-client.py:
4821         * python/examples/gconf-proxy-service.py:
4822
4823         Implement a simple GConf proxy service that supports
4824         get/set on string and int GConf keys using the ObjectTree.
4825         
4826 2004-05-29  Seth Nickell  <seth@gnome.org>
4827
4828         * python/dbus.py:
4829         * python/examples/example-client.py:
4830         * python/examples/example-service.py:
4831         * python/examples/list-system-services.py:
4832
4833         Add SessionBus, SystemBus and ActivationBus classes
4834         so you don't need to know the special little BUS_TYPE
4835         flag.
4836         
4837 2004-05-29  Havoc Pennington  <hp@redhat.com>
4838
4839         * bus/config-parser.c (process_test_valid_subdir): temporarily
4840         stop testing config parser OOM handling, since expat has issues
4841         http://freedesktop.org/pipermail/dbus/2004-May/001153.html
4842
4843         * bus/dbus-daemon-1.1.in: change requested_reply to
4844         send_requested_reply/receive_requested_reply so we can send the
4845         replies, not just receive them.
4846
4847         * bus/config-parser.c: parse the new
4848         send_requested_reply/receive_requested_reply
4849
4850         * bus/policy.c (bus_client_policy_check_can_send): add
4851         requested_reply argument and use it
4852
4853         * bus/bus.c (bus_context_check_security_policy): pass through
4854         requested_reply status to message send check
4855
4856         * bus/system.conf.in: adapt to requested_reply change
4857         
4858 2004-05-28  Havoc Pennington  <hp@redhat.com>
4859
4860         * test/glib/test-service-glib.c (main): remove unused variable
4861
4862         * glib/dbus-gidl.c (base_info_ref): fix a silly compiler warning
4863
4864         * dbus/dbus-auth.h (enum): remove AUTHENTICATED_WITH_UNUSED_BYTES
4865         from the enum, no longer in use.
4866
4867         * dbus/dbus-sysdeps.h: include config.h so DBUS_VA_COPY actually
4868         works right.
4869
4870         * dbus/dbus-message.c: add various _dbus_return_val_if_fail for
4871         whether error_name passed in is a valid error name.
4872
4873 2004-05-28  John (J5) Palmieri  <johnp@redhat.com>
4874
4875         * dbus/dbus-message.c (dbus_message_get_args): Added support for
4876         OBJECT_PATH and OBJECT_PATH_ARRAY
4877
4878 2004-05-28  Seth Nickell  <seth@gnome.org>
4879
4880         * python/examples/Makefile.am:
4881
4882         Forget to add Makefile.am. Do not pass go.
4883
4884 2004-05-28  Michael Meeks  <michael@ximian.com>
4885
4886         * glib/dbus-gvalue.c (dbus_gvalue_marshal, dbus_gvalue_demarshal): 
4887         fix no int64 case.
4888
4889         * dbus/dbus-string.c (_dbus_string_parse_basic_type): impl.
4890
4891         * dbus/dbus-message.c (_dbus_message_iter_get_basic_type),
4892         (_dbus_message_iter_get_basic_type_array): impl.
4893         drastically simplify ~all relevant _get methods to use these.
4894         (_dbus_message_iter_append_basic_array),
4895         (dbus_message_iter_append_basic): impl
4896         drastically simplify ~all relevant _append methods to use these.
4897
4898         * dbus/dbus-message-builder.c (parse_basic_type) 
4899         (parse_basic_array, lookup_basic_type): impl.
4900         (_dbus_message_data_load): prune scads of duplicate /
4901         cut & paste coding.
4902
4903         * dbus/dbus-marshal.c (_dbus_demarshal_basic_type_array) 
4904         (_dbus_demarshal_basic_type): implement,
4905         (demarshal_and_validate_len/arg): beef up debug.
4906         (_dbus_marshal_basic_type, _dbus_marshal_basic_type_array): impl.
4907
4908 2004-05-27  Seth Nickell  <seth@gnome.org>
4909
4910         * configure.in:
4911         * python/Makefile.am:
4912
4913         Include the example python apps in the tarball.
4914         
4915         * python/examples/list-system-services.py
4916
4917         Add a python new example that fetches the list of services
4918         from the system bus.
4919         
4920 2004-05-27  Seth Nickell  <seth@gnome.org>
4921
4922         * python/dbus.py:
4923         * python/dbus_bindings.pyx.in:
4924
4925         Fix failure to notify that a signal was not handled,
4926         resulted in hung functions.
4927         
4928 2004-05-25  Colin Walters  <walters@redhat.com>
4929
4930         * tools/dbus-monitor.c (main): Monitor all types of messages.
4931
4932 2004-05-23  Owen Fraser-Green  <owen@discobabe.net>
4933
4934         * mono/Handler.cs, mono/Service.cs: Added UnregisterObject method
4935         which unregisters the object path and disposes the handler.
4936
4937 2004-05-23  Kristian Høgsberg  <krh@redhat.com>
4938  
4939         Patch from Timo Teräs <ext-timo.teras@nokia.com> (#614):
4940          
4941         * dbus/dbus-message.c (dbus_message_iter_get_args_valist): Swap
4942         operands to && so we call dbus_message_iter_next () for the last
4943         argument also.
4944
4945 2004-05-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4946
4947         * dbus/dbus-object-tree.c
4948         (_dbus_object_tree_list_registered_unlock, lookup_subtree): return
4949         children even if the requested path isn't registered.
4950         (object_tree_test_iteration): test object_tree_list_registered.
4951
4952         * configure.in: undefine HAVE_ABSTRACT_SOCKETS instead of defining
4953         it to 0.
4954         
4955 2004-05-20  Kristian Høgsberg  <krh@redhat.com>
4956
4957         * doc/TODO: Remove resolved items.
4958
4959         * bus/expirelist.h (struct BusExpireList): remove unused n_items
4960         field.
4961         
4962         * bus/connection.c (bus_connections_expect_reply): Enforce the
4963         per-connection limit on pending replies.
4964         
4965         Patch from Jon Trowbridge <trow@ximian.com>:
4966  
4967         * bus/main.c (setup_reload_pipe): Added.  Creates a pipe and sets
4968         up a watch that triggers a config reload when one end of the pipe
4969         becomes readable.
4970         (signal_handler): Instead of doing the config reload in our SIGHUP
4971         handler, just write to the reload pipe and let the associated
4972         watch handle the reload when control returns to the main loop.
4973  
4974         * bus/driver.c (bus_driver_handle_reload_config): Added.
4975         Implements a ReloadConfig method for requesting a configuration
4976         file reload via the bus driver.
4977  
4978 2004-05-19  Owen Fraser-Green  <owen@discobabe.net>
4979
4980         * HACKING: Updated release instructions concerning the wiki page.
4981
4982 2004-05-18  Kristian Høgsberg  <krh@redhat.com>
4983
4984         * dbus/dbus-auth.c (client_try_next_mechanism): Remove logic to
4985         filter against auth->allowed_mechs; we only add allowed mechs in
4986         record_mechanisms().
4987  
4988         * dbus/dbus-auth-script.c (_dbus_auth_script_run): Add an
4989         ALLOWED_MECHS to auth-script format so we can set the list of
4990         allowed mechanisms.
4991  
4992         * data/auth/client-out-of-mechanisms.auth-script: New test to
4993         check client disconnects when it is out of mechanisms to try.
4994  
4995         * dbus/dbus-auth.c (process_command): Remove check for lines
4996         longer that 1 MB; we only buffer up maximum 16 kB.
4997  
4998         * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
4999         dbus/dbus-auth-script.c, dbus/dbus-auth.c, dbus/dbus-auth.h:
5000         Remove auth state AUTHENTICATED_WITH_UNUSED_BYTES, instead always
5001         assume there might be unused bytes.
5002  
5003         * dbus/dbus-auth.c (_dbus_auth_do_work): Remove check for
5004         client-out-of-mechs, it is handled in process_reject(). Move check
5005         for max failures to send_rejected(), as it's a server-only thing.
5006
5007         * dbus/dbus-auth.c: Factor out protocol reply code into functions
5008         send_auth(), send_data(), send_rejected(), send_error(),
5009         send_ok(), send_begin() and send_cancel().
5010
5011 2004-05-17  Kristian Høgsberg  <krh@redhat.com>
5012
5013         Remove base64 encoding, replace with hex encoding. Original patch
5014         from trow@ximian.com, added error handling.
5015
5016         * dbus/dbus-string.c (_dbus_string_base64_encode)
5017         (_dbus_string_base64_decode): Remove.
5018         (_dbus_string_hex_decode): Add end_return argument so we can
5019         distinguish between OOM and invalid hex encoding.
5020         (_dbus_string_test): Remove base64 tests and add test case for
5021         invalid hex.
5022
5023         * dbus/dbus-keyring.c, dbus/dbus-auth-script.c, dbus/dbus-auth.c:
5024         Replace base64 with hex.
5025
5026         * test/data/auth/invalid-hex-encoding.auth-script: New test case
5027         for invalid hex encoded data in auth protocol.
5028
5029 2004-05-17  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5030
5031         * dbus/dbus-connection.c (check_for_reply_unlocked): plug a memory
5032         leak.
5033
5034 2004-05-15  Owen Fraser-Green  <owen@discobabe.net>
5035
5036         * mono/dbus-sharp.dll.config.in: Added for GAC
5037         * mono/dbus-sharp.snk: Added for GAC
5038         * mono/Assembly.cs.in: Added for GAC
5039         * mono/Makefile.am: Changes for GAC installation        
5040         * configure.in: Added refs for dbus-sharp.dll.config.in and
5041         Assembly.cs.in. More fixes for mono testing
5042         * mono/example/Makefile.am: Changed var to CSC
5043         * Makefile.am: Changed flag name to DBUS_USE_CSC
5044
5045 2004-05-15  Owen Fraser-Green  <owen@discobabe.net>
5046
5047         * mono/Makefile.am: Added SUBDIRS for docs. Changed SUBDIRS order
5048         * mono/doc/*: Added documentation framework
5049         * configure.in: Added monodoc check
5050         * README: Added description of mono configure flags
5051
5052 2004-05-11  John (J5) Palmieri  <johnp@redhat.com>:
5053
5054         * doc/dbus-specification.xml: Added a "Required" column to the 
5055         header fields table and changed the "zero or more" verbage in
5056         the above paragraph to read "The header must contain the required 
5057         named header fields and zero or more of the optional named header 
5058         fields".
5059         * test/data/invalid-messages/*.message: Added the required PATH 
5060         named header field to the tests so that they don't fail on 
5061         'Missing path field'
5062
5063 2004-05-07  John (J5) Palmieri  <johnp@redhat.com>
5064
5065         * python/dbus-bindings.pyx.in: Stopped the bindings from trashing
5066         the stack by implicitly defining variable and parameter types and
5067         removing the hack of defining C pointers as python objects and later
5068         casting them.
5069
5070 2004-05-02  Owen Fraser-Green  <owen@discobabe.net>
5071
5072         * mono/Makefile.am: Removed test-dbus-sharp.exe from all target
5073
5074 2004-05-01  Owen Fraser-Green  <owen@discobabe.net>
5075
5076         * mono/DBusType/Dict.cs: Handle empty dicts
5077         * mono/DBusType/Array.cs: Handle empty arrays
5078         * mono/Arguments.cs: Handle empty arguments
5079
5080 2004-04-30  Owen Fraser-Green  <owen@discobabe.net>
5081
5082         * dbus-sharp.pc.in: Modified to include include Libs and Requires
5083         field
5084
5085 2004-04-25  Kristian Høgsberg  <krh@redhat.com>
5086
5087         * test/data/valid-messages/standard-*.message: Update message
5088         test scripts to new header field names.
5089
5090 2004-04-22  John (J5) Palmieri  <johnp@redhat.com>
5091
5092         * test/break-loader.c (randomly_do_n_things): tracked down buffer
5093         overflow to times_we_did_each_thing array which would chop off the
5094         first character of the failure_dir string. Increased the size of
5095         the array to 7 to reflect the number of random mutation functions
5096         we have.
5097
5098 2004-04-21  Kristian Høgsberg  <krh@redhat.com>
5099
5100         * dbus/dbus-server-unix.c (unix_finalize): Don't unref
5101         unix_server->watch here, it is unreffed in disconnect.
5102         (_dbus_server_new_for_tcp_socket): convert NULL host to
5103         "localhost" here so we don't append NULL to address.
5104         
5105         * dbus/dbus-server.c (_dbus_server_test): Add test case for
5106         various addresses, including tcp with no explicit host.
5107
5108 2004-04-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5109
5110         * dbus/dbus-message.c (decode_header_data, decode_string_field):
5111         fix incorrect setting of .name_offset in the HeaderField (it was
5112         off by two bytes, positioned right after the name and typecode)
5113
5114         * bus/bus.c (bus_context_new, bus_context_unref): test before
5115         calling dbus_server_free_data_slot and _dbus_user_database_unref
5116         in case of an error.
5117
5118         * tools/Makefile.am: add $(DBUS_GLIB_TOOL_LIBS), xml libs needed
5119         by libdbus-gtool.
5120
5121 2004-04-19  Kristian Høgsberg  <krh@redhat.com>
5122
5123         * dbus/dbus-transport-unix.c (unix_do_iteration): Rewrite to use
5124         _dbus_poll() instead of select().
5125
5126 2004-04-15  Jon Trowbridge  <trow@ximian.com>
5127
5128         * bus/main.c (signal_handler): Reload the configuration files
5129         on SIGHUP.
5130         (main): Set up our SIGHUP handler.
5131
5132         * bus/bus.c (struct BusContext): Store the config file, user and
5133         fork flag in the BusContext.
5134         (process_config_first_time_only): Added.  Contains the code
5135         (previously in bus_context_new) for setting up the BusContext from
5136         the BusConfigParser that should only be run the first time the
5137         config files are read.
5138         (process_config_every_time): Added.  Contains the code (previously
5139         in bus_context_new) for setting up the BusContext from the
5140         BusConfigParser that should be run every time the config files are
5141         read.
5142         (load_config): Added.  Builds a BusConfigParser from the config
5143         files and passes the resulting structure off to
5144         process_config_first_time_only (assuming this is the first time)
5145         and process_config_every_time.
5146         (bus_context_new): All of the config-related code has been moved
5147         to process_config_first_time_only and process_config_every_time.
5148         Now this function just does the non-config-related initializations
5149         and calls load_config.
5150         (bus_context_reload_config): Added.
5151
5152 2004-04-15  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5153
5154         * bus/driver.c (bus_driver_handle_get_service_owner):
5155         implement a GetServiceOwner method.
5156         * doc/dbus-specification.xml: document it.
5157         * dbus/dbus-errors.h: add a 'ServiceHasNoOwner' error.
5158         
5159         * glib/dbus-gproxy.c (dbus_gproxy_new_for_service_owner):
5160         implement, using the bus GetServiceOwner method.
5161
5162         * test/glib/test-dbus-glib.c:
5163         use dbus_gproxy_new_for_service_owner so that we can receive the
5164         signal. 
5165
5166 2004-04-15  John (J5) Palmieri  <johnp@redhat.com>
5167
5168         * dbus/dbus-internals.c, dbus/dbus-message-builder.c,
5169         dbus/dbus-message.c, dbus/dbus-protocol.h
5170         (DBUS_HEADER_FIELD_SERVICE): renamed DBUS_HEADER_FIELD_DESTINATION
5171
5172         * dbus/dbus-internals.c, dbus/dbus-message-builder.c,
5173         dbus/dbus-message.c, dbus/dbus-protocol.h
5174         (DBUS_HEADER_FIELD_SENDER_SERVICE): renamed DBUS_HEADER_FIELD_SENDER
5175
5176         * dbus/dbus-internals.c (_dbus_header_field_to_string):
5177         DBUS_HEADER_FIELD_DESTINATION resolves to "destination"
5178         DBUS_HEADER_FIELD_SENDER resolves to "sender"
5179
5180         * doc/dbus-specification.xml (Header Fields Table):
5181         s/SERVICE/DESTINATION
5182         s/SENDER_SERVICE/SENDER
5183
5184
5185 2004-04-14  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5186
5187         * test/glib/test-dbus-glib.c (timed_exit): fail the test after
5188         a few seconds.
5189
5190 2004-04-13  Michael Meeks  <michael@ximian.com>
5191
5192         * glib/dbus-gobject.c (handle_introspect): split out
5193         (introspect_properties): this.
5194         (handle_introspect): implement this.
5195
5196         * test/glib/Makefile.am: use the absolute path so the bus
5197         daemon's chdir ("/") doesn't kill us dead.
5198
5199         * configure.in: subst ABSOLUTE_TOP_BUILDDIR
5200
5201 2004-04-12  Jon Trowbridge  <trow@ximian.com>
5202
5203         * bus/config-parser.c (struct BusConfigParser): Added
5204         included_files field.
5205         (seen_include): Added.  Checks whether or not a file has already
5206         been included by any parent BusConfigParser.
5207         (bus_config_parser_new): Copy the parent's included_files.
5208         (include_file): Track which files have been included, and fail on
5209         circular inclusions.
5210         (process_test_valid_subdir): Changed printf to report if we are
5211         testing valid or invalid conf files.
5212         (all_are_equiv): Changed printf to be a bit clearer about
5213         what we are actually doing.
5214         (bus_config_parser_test): Test invalid configuration files.
5215
5216 2004-04-09  Jon Trowbridge  <trow@ximian.com>
5217
5218         * bus/config-parser.c (bus_config_parser_new): Added a 'parent'
5219         argument.  If non-null, the newly-constructed BusConfigParser will
5220         be initialized with the parent's BusLimits instead of the default
5221         values.
5222         (include_file): When including a config file, pass in
5223         the current parser as the parent and then copy the BusLimits
5224         from the included BusConfigParser pack to the current parser.
5225         (process_test_valid_subdir): Renamed from process_test_subdir.
5226         (process_test_equiv_subdir): Added.  Walks through a directory,
5227         descending into each subdirectory and loading the config files
5228         it finds there.  If any subdirectory contains two config files
5229         that don't produce identical BusConfigParser structs, fail.
5230         For now, the BusConfigParser's BusPolicies are not compared.
5231         (bus_config_parser_test): Call both process_test_valid_subdir and
5232         process_test_equiv_subdir.
5233
5234         * bus/config-loader-libxml.c (bus_config_load): Take a parent
5235         argument and pass it along to the call to bus_config_parser_new.
5236         Also made a few small changes to allow this code to compile.
5237
5238         * bus/config-loader-expat.c (bus_config_load): Take a parent
5239         argument and pass it along to the call to bus_config_parser_new.
5240
5241         * bus/bus.c (bus_context_new): Load the config file
5242         with a NULL parent argument.
5243
5244 2004-03-29  Michael Meeks  <michael@ximian.com>
5245
5246         * glib/dbus-gobject.c (introspect_properties): split
5247         out, fix mangled 'while' flow control.
5248         (introspect_signals): implement.
5249         (handle_introspect): update.
5250
5251 2004-03-29  Michael Meeks  <michael@ximian.com>
5252
5253         * glib/dbus-gobject.c (set_object_property): split out / 
5254         re-work, use the property type, and not the message type(!)
5255         (get_object_property): ditto.
5256
5257         * glib/dbus-gvalue.c (dbus_gvalue_demarshal),
5258         (dbus_gvalue_marshal): make this code re-usable, needed
5259         for signals too, also on both proxy and server side.
5260         Re-write for more efficiency / readability.
5261
5262 2004-03-29  Michael Meeks  <michael@ximian.com>
5263
5264         * dbus/dbus-message.c
5265         (dbus_message_new_error_printf): impl.
5266
5267         * dbus/dbus-connection.c
5268         (dbus_connection_unregister_object_path): fix warning.
5269
5270         * configure.in: fix no-mono-installed situation.
5271
5272 2004-03-27  Havoc Pennington  <hp@redhat.com>
5273
5274         Patch from Timo Teräs:
5275         
5276         * tools/dbus-send.c (main): if --print-reply, assume type is
5277         method call; support boolean type args
5278         
5279         * dbus/dbus-connection.c (dbus_connection_send_with_reply): fix a
5280         bunch of memleak and logic bugs
5281         
5282 2004-03-23  Owen Fraser-Green  <owen@discobabe.net>
5283
5284         * mono/Arguments.cs:
5285         * mono/Introspector.cs:
5286         * mono/Handler.cs:
5287         * mono/InterfaceProxy.cs:
5288         * mono/Message.cs
5289         * mono/ProxyBuilder.cs:
5290         * mono/Service.cs:
5291         Added InterfaceProxy class to avoid building proxies for every
5292         object.
5293
5294         * dbus-message.h:
5295         * dbus-message.c (dbus_message_append_args_valist)
5296         (dbus_message_iter_get_object_path)
5297         (dbus_message_iter_get_object_path_array)
5298         (dbus_message_iter_append_object_path)
5299         (dbus_message_iter_append_object_path_array):
5300         Added object_path iter functions to handle OBJECT_PATH arguments
5301         
5302 2004-03-23  Owen Fraser-Green  <owen@discobabe.net>
5303
5304         First checkin of mono bindings.
5305         * configure.in:
5306         * Makefile.am:
5307         Build stuff for the bindings
5308         * dbus-sharp.pc.in: Added for pkgconfig
5309         
5310 2004-03-21  Havoc Pennington  <hp@redhat.com>
5311
5312         * test/test-service.c (main): remove debug spew
5313
5314 2004-03-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5315
5316         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): accept empty
5317         arrays
5318
5319         * dbus/dbus-message.h, bus/dbus-message.c (dbus_message_iter_init)
5320         (dbus_message_iter_init_array_iterator)
5321         (dbus_message_iter_init_dict_iterator): return a dbus_bool_t to
5322         indicate whether the iterator is empty
5323
5324         * dbus/dbus-pending-call.c, dbus/dbus-server.c: silence compiler
5325         warnings
5326
5327 2004-03-19  Havoc Pennington  <hp@redhat.com>
5328
5329         * NEWS: 0.21 updates
5330
5331         * configure.in: 0.21
5332
5333         * doc/Makefile.am: add all XMLTO usage to DBUS_XML_DOCS_ENABLED
5334         
5335         * python/Makefile.am: change to avoid dist of dbus_bindings.c so
5336         you don't need pyrex to make dist
5337
5338         * qt/Makefile.am (libdbus_qt_1_la_SOURCES): add integrator.h to
5339         sources; run moc
5340         
5341 2004-03-18  Richard Hult  <richard@imendio.com>
5342
5343         * dbus/dbus-message.c (dbus_message_get_auto_activation) 
5344         (dbus_message_set_auto_activation): Add doxygen docs.
5345
5346 2004-03-16  Richard Hult  <richard@imendio.com>
5347
5348         * bus/activation.c: (bus_activation_service_created),
5349         (bus_activation_send_pending_auto_activation_messages),
5350         (bus_activation_activate_service):
5351         * bus/activation.h:
5352         * bus/dispatch.c: (bus_dispatch),
5353         (check_nonexistent_service_auto_activation),
5354         (check_service_auto_activated),
5355         (check_segfault_service_auto_activation),
5356         (check_existent_service_auto_activation), (bus_dispatch_test):
5357         * bus/driver.c: (bus_driver_handle_activate_service):
5358         * bus/services.c: (bus_registry_acquire_service):
5359         * dbus/dbus-message.c: (dbus_message_set_auto_activation),
5360         (dbus_message_get_auto_activation):
5361         * dbus/dbus-message.h:
5362         * dbus/dbus-protocol.h: Implement auto-activation.
5363         
5364         * doc/dbus-specification.xml: Add auto-activation to the spec.
5365
5366 2004-03-12  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5367
5368         * dbus/dbus-marshal.c (_dbus_marshal_get_arg_end_pos):
5369         fix a bug with CUSTOM types.
5370
5371         * dbus/dbus-message.c (message_iter_test, _dbus_message_test): add
5372         a unit test for this bug (used to fail).
5373
5374 2004-03-12  Mikael Hallendal  <micke@imendio.com>
5375
5376         * bus/activation.c:
5377         (babysitter_watch_callback): notify all pending activations waiting for
5378           the same exec that the activation failed.
5379         (bus_activation_activate_service): shortcut the activation if we 
5380           already waiting for the same executable to start up.
5381
5382 2004-03-12  Mikael Hallendal  <micke@imendio.com>
5383
5384         * bus/activation.c: 
5385         - Added service file reloading. 
5386           Each service files directory is kept in an hash table in 
5387           BusActivation and each BusActivationEntry knows what .service-file it
5388           was read from. So when you try to activate a service the bus will 
5389           check if it's been updated, removed or if new .service-files has 
5390           been installed.
5391         - Test code at the bottom for the service file reloading.
5392         * bus/test-main.c: (main):
5393         * bus/test.h:
5394         - added service reloading test.
5395         * dbus/dbus-sysdeps.c: 
5396         * dbus/dbus-sysdeps.h: (_dbus_delete_directory): Added.
5397
5398 2004-03-08  Michael Meeks  <michael@ximian.com>
5399
5400         * dbus/dbus-connection.c (_dbus_connection_block_for_reply): 
5401         bail immediately if disconnected, to avoid busy loop.
5402
5403         * dbus/dbus-message.c (dbus_message_iter_get_args_valist):
5404         cleanup cut/paste/inefficiency.
5405
5406 2004-03-01  David Zeuthen  <david@fubar.dk>
5407
5408         * dbus/dbus-string.c (_dbus_string_append_printf_valist): Fix a
5409         bug where args were used twice. This bug resulted in a segfault
5410         on a Debian/PPC system when starting the messagebus daemon. Include
5411         dbus-sysdeps.h for DBUS_VA_COPY
5412
5413         * dbus/dbus-sysdeps.h: Define DBUS_VA_COPY if neccessary. From GLib
5414
5415         * configure.in: Check for va_copy; define DBUS_VA_COPY to the
5416         appropriate va_copy implementation. From GLib
5417         
5418 2004-02-24  Joe Shaw  <joe@ximian.com>
5419
5420         * bus/services.c (bus_registry_acquire_service): We need to pass
5421         in the service name to dbus_set_error() to prevent a crash.
5422
5423 2003-12-26  Anders Carlsson  <andersca@gnome.org>
5424
5425         * AUTHORS: Reveal my True identity.
5426
5427 2003-12-17  Mikael Hallendal  <micke@imendio.com>
5428
5429         * dbus/dbus-message.c: (dbus_message_append_args_valist): 
5430         - Added case for DBUS_TYPE_BYTE, patch from Johan Hedberg.
5431
5432 2003-12-13  Mikael Hallendal  <micke@imendio.com>
5433
5434         * doc/TODO: Added not about better error check of configuration files.
5435
5436 2003-12-02  Richard Hult  <richard@imendio.com>
5437
5438         * Update AFL version to 2.0 throughout the source files to reflect
5439         the update that was done a while ago.
5440
5441 2003-12-02  Richard Hult  <richard@imendio.com>
5442
5443         * dbus/dbus-message.c (dbus_message_iter_append_dict): Set
5444         wrote_dict_key to FALSE on the iter that the dict is appended to,
5445         just like when appending other types. Fixes a bug where a dict
5446         couldn't be put inside a dict.
5447         (dbus_message_iter_append_dict_key): Fix typo in warning message.
5448         (message_iter_test, _dbus_message_test): Add test case for dict
5449         inside dict.
5450
5451 2003-12-01  David Zeuthen  <david@fubar.dk>
5452
5453         * python/dbus.py: Add the actual message when calling the reciever
5454         of a signal such that parameters can be inspected. Add the method
5455         remove_signal_receiver
5456         
5457 2003-11-26  Mikael Hallendal  <micke@imendio.com>
5458
5459         * bus/*.[ch]:
5460         * dbus/*.[ch]:
5461         * glib/*.[ch]: Made ref functions return the pointer
5462
5463 2003-11-25  Zack Rusin  <zack@kde.org>
5464
5465         * qt/integrator.h, qt/integrator.cpp: Adding handling of DBusServer,
5466
5467         * qt/server.h, qt/server.cpp, qt/Makefile.am: Adding DBusServer 
5468         wrappers,
5469
5470         * qt/connection.h, qt/connection.cpp: Adjusting to changes in 
5471         the Integrator and to better fit with the server,
5472
5473 2003-11-24  Zack Rusin  <zack@kde.org>
5474
5475         * qt/connection.h, qt/connection.cpp: removing initDbus method since
5476         the integrator handles it now
5477
5478         * qt/integrator.h, qt/integrator.cpp: reworking handling of timeouts,
5479         since QTimer wasn't really meant to be used the way DBusTimeout is
5480
5481 2003-11-24  Zack Rusin  <zack@kde.org>
5482
5483         * qt/integrator.h, qt/integrator.cpp, Makefile.am: Adding 
5484         Integrator class which integrates D-BUS with the Qt event loop,
5485
5486         * qt/connection.h, qt/connection.cpp: Move all the code which
5487         was dealing with D-BUS integration to the Integrator class,
5488         and start using Integrator,
5489
5490 2003-11-23  Zack Rusin  <zack@kde.org>
5491
5492         * qt/connection.h, qt/connection.cpp: Adding the DBusConnection 
5493         wrapper
5494
5495         * qt/message.h, qt/message.cpp: updating to the current D-BUS api,
5496         switching namespaces to DBusQt, reworking the class,
5497
5498         * Makefile.cvs: switching dependencies so that it matches KDE 
5499         schematics,
5500         
5501         * qt/Makefile.am: adding connection.{h,cpp} and message.{h,cpp} to 
5502         the library
5503
5504 2003-11-19  Havoc Pennington  <hp@redhat.com>
5505
5506         * NEWS: update
5507
5508         * configure.in: bump version to 0.20
5509
5510         * configure.in (have_qt): add yet another place to look for qt
5511         (someone hand trolltech a .pc file...)
5512
5513 2003-11-01  Havoc Pennington  <hp@redhat.com>
5514
5515         * doc/dbus-specification.xml: add state machine docs on the auth
5516         protocol; just a first draft, I'm sure it's wrong.      
5517
5518 2003-10-28  David Zeuthen  <david@fubar.dk>
5519
5520         * python/dbus_bindings.pyx.in: add get_dict to handle dictionaries
5521         return types. Fixup TYPE_* to reflect changes in dbus/dbus-protocol.h
5522         
5523 2003-10-28  Havoc Pennington  <hp@redhat.com>
5524
5525         * dbus/dbus-message.c (get_next_field): delete unused function
5526
5527 2003-10-28  Havoc Pennington  <hp@redhat.com>
5528
5529         * bus/expirelist.c (do_expiration_with_current_time): detect
5530         failure of the expire_func due to OOM
5531
5532         * bus/connection.c (bus_pending_reply_expired): return FALSE on OOM
5533
5534         * bus/dispatch.c (check_send_exit_to_service): fix to handle the
5535         NoReply error that's now created by the bus when the service exits
5536
5537 2003-10-28  Havoc Pennington  <hp@redhat.com>
5538
5539         * dbus/dbus-message.c (_dbus_message_test): enable and fix the
5540         tests for set_path, set_interface, set_member, etc.
5541
5542         * dbus/dbus-string.c (_dbus_string_insert_bytes): allow 0 bytes
5543
5544         * dbus/dbus-message.c (set_string_field): always just delete and
5545         re-append the field; accept NULL for deletion
5546         (re_align_fields_recurse): reimplement
5547         
5548 2003-10-26  Havoc Pennington  <hp@redhat.com>
5549
5550         * dbus/dbus-connection.c: fix docs to properly describe the
5551         disconnected message
5552         (_dbus_connection_notify_disconnected): remove this function; 
5553         we can't synchronously add the disconnected message, we have to 
5554         do it after we've queued any remaining real messages
5555         (_dbus_connection_get_dispatch_status_unlocked): queue the
5556         disconnect message only if the transport has finished queueing all
5557         its real messages and is disconnected.
5558         (dbus_connection_disconnect): update the dispatch status here
5559
5560 2003-10-22  Havoc Pennington  <hp@redhat.com>
5561
5562         * bus/bus.c (bus_context_check_security_policy): fix up assertion
5563
5564         * bus/connection.c (bus_transaction_send_from_driver): set the
5565         destination to the connection's base service
5566
5567 2003-10-20  Havoc Pennington  <hp@redhat.com>
5568
5569         hmm, make check is currently not passing.
5570         
5571         * doc/dbus-specification.xml: add requirement that custom type
5572         names follow the same rules as interface names.
5573
5574         * dbus/dbus-protocol.h: change some of the byte codes, to avoid
5575         duplication and allow 'c' to be 'custom'; dict is now 'm' for
5576         'map'
5577
5578         * doc/dbus-specification.xml: update type codes to match
5579         dbus-protocol.h, using the ASCII byte values. Rename type NAMED to
5580         CUSTOM. Add type OBJECT_PATH to the spec.
5581
5582 2003-10-17  Havoc Pennington  <hp@redhat.com>
5583
5584         * bus/driver.c (create_unique_client_name): use "." as separator
5585         in base service names instead of '-'
5586
5587         * dbus/dbus-string.c (_dbus_string_get_byte): allow getting nul
5588         byte at the end of the string
5589
5590         * dbus/dbus-internals.h (_DBUS_LIKELY, _DBUS_UNLIKELY): add
5591         optimization macros since string validation seems to be a slow
5592         point.
5593         
5594         * doc/dbus-specification.xml: restrict valid
5595         service/interface/member/error names. Add test suite code for the
5596         name validation.
5597
5598         * dbus/dbus-string.c: limit service/interface/member/error names 
5599         to [0-9][A-Z][a-z]_
5600
5601         * dbus/dbus-connection.c (dbus_connection_dispatch): add missing
5602         format arg to verbose spew
5603
5604         * glib/dbus-gproxy.c (dbus_gproxy_call_no_reply): if not out of
5605         memory, return instead of g_error
5606
5607         * test/test-service.c (path_message_func): support emitting a
5608         signal on request
5609
5610         * dbus/dbus-bus.c (init_connections_unlocked): only fill in
5611         activation bus type if DBUS_BUS_ACTIVATION was set; default to
5612         assuming the activation bus was the session bus so that services
5613         started manually will still register.
5614         (init_connections_unlocked): fix so that in OOM situation we get
5615         the same semantics when retrying the function
5616         
5617         * test/test-service.c (main): change to use path registration, to
5618         test those codepaths; register with DBUS_BUS_ACTIVATION rather
5619         than DBUS_BUS_SESSION
5620
5621 2003-10-16  Havoc Pennington  <hp@redhat.com>
5622
5623         * glib/dbus-gtest-main.c: bracket with #ifdef DBUS_BUILD_TESTS
5624
5625         * Makefile.am (GCOV_DIRS): remove "test", we don't care about test
5626         coverage of the tests
5627         (coverage-report.txt): don't move the .da and .bbg files around
5628
5629 2003-10-16  Havoc Pennington  <hp@redhat.com>
5630
5631         * bus/bus.c (struct BusContext): remove struct field I didn't mean
5632         to put there
5633
5634 2003-10-16  Havoc Pennington  <hp@redhat.com>
5635
5636         * bus/connection.c (bus_pending_reply_expired): either cancel or
5637         execute, not both
5638         (bus_connections_check_reply): use unlink, not remove_link, as we
5639         don't want to free the link; fixes double free mess
5640
5641         * dbus/dbus-pending-call.c (dbus_pending_call_block): fix in case
5642         where no reply was received
5643
5644         * dbus/dbus-connection.c (_dbus_pending_call_complete_and_unlock):
5645         fix a refcount leak
5646
5647         * bus/signals.c (match_rule_matches): add special cases for the
5648         bus driver, so you can match on sender/destination for it.
5649
5650         * dbus/dbus-sysdeps.c (_dbus_abort): print backtrace if
5651         DBUS_PRINT_BACKTRACE is set
5652
5653         * dbus/dbus-internals.c: add pid to assertion failure messages
5654
5655         * dbus/dbus-connection.c: add message type code to the debug spew
5656
5657         * glib/dbus-gproxy.c (gproxy_get_match_rule): match rules want
5658         sender=foo not service=foo
5659
5660         * dbus/dbus-bus.c (dbus_bus_get): if the activation bus is the
5661         session bus but DBUS_SESSION_BUS_ADDRESS isn't set, use 
5662         DBUS_ACTIVATION_ADDRESS instead
5663
5664         * bus/activation.c: set DBUS_SESSION_BUS_ADDRESS,
5665         DBUS_SYSTEM_BUS_ADDRESS if appropriate
5666
5667         * bus/bus.c (bus_context_new): handle OOM copying bus type into
5668         context struct
5669
5670         * dbus/dbus-message.c (dbus_message_iter_get_object_path): new function
5671         (dbus_message_iter_get_object_path_array): new function (half
5672         finished, disabled for the moment)
5673         
5674         * glib/dbus-gproxy.c (dbus_gproxy_end_call): properly handle
5675         DBUS_MESSAGE_TYPE_ERROR
5676
5677         * tools/dbus-launch.c (babysit): support DBUS_DEBUG_OUTPUT to
5678         avoid redirecting stderr to /dev/null
5679         (babysit): close stdin if not doing the "exit_with_session" thing
5680
5681         * dbus/dbus-sysdeps.c (_dbus_become_daemon): delete some leftover
5682         debug code; change DBUS_DEBUG_OUTPUT to only enable stderr, not
5683         stdout/stdin, so things don't get confused
5684         
5685         * bus/system.conf.in: fix to allow replies, I modified .conf
5686         instead of .conf.in again.
5687
5688 2003-10-14  David Zeuthen  <david@fubar.dk>
5689
5690         * python/dbus_bindings.pyx.in (MessageIter.get): fixed typo in
5691         argtype to arg_type when raising unknown arg type exception.
5692         Changed type list to reflect the changes in dbus-protocol.h so 
5693         the bindings actually work.
5694
5695 2003-10-14  Havoc Pennington  <hp@redhat.com>
5696
5697         * test/decode-gcov.c: support gcc 3.3 also, though gcc 3.3 seems
5698         to have a bug keeping it from outputting the .da files sometimes
5699         (string_get_string): don't append garbage nul bytes to the string.
5700
5701 2003-10-15  Seth Nickell  <seth@gnome.org>
5702
5703         * python/Makefile.am:
5704
5705         Include dbus_h_wrapper.h in the dist tarball.
5706
5707 2003-10-14  Havoc Pennington  <hp@redhat.com>
5708
5709         * bus/bus.c (bus_context_check_security_policy): revamp this to
5710         work more sanely with new policy-based requested reply setup
5711
5712         * bus/connection.c (bus_transaction_send_from_driver): set bus
5713         driver messages as no reply
5714
5715         * bus/policy.c (bus_client_policy_check_can_receive): handle a
5716         requested_reply attribute on allow/deny rules
5717
5718         * bus/system.conf: add <allow requested_reply="true"/>
5719
5720         * bus/driver.c (bus_driver_handle_message): fix check for replies
5721         sent to the bus driver, which was backward. How did this ever work
5722         at all though? I think I'm missing something.
5723
5724         * dbus/dbus-message.c (decode_header_data): require error and
5725         method return messages to have a reply serial field to be valid
5726         (_dbus_message_loader_queue_messages): break up this function;
5727         validate that reply serial and plain serial are nonzero; 
5728         clean up the OOM/error handling.
5729         (get_uint_field): don't return -1 from this
5730         (dbus_message_create_header): fix signed/unsigned bug
5731
5732         * bus/connection.c (bus_connections_expect_reply): save serial of
5733         the incoming message, not reply serial
5734
5735 2003-10-14  Havoc Pennington  <hp@redhat.com>
5736
5737         * bus/connection.c: implement pending reply tracking using
5738         BusExpireList
5739
5740         * bus/bus.c (bus_context_check_security_policy): verify that a
5741         reply is pending in order to allow a reply to be sent. Deny 
5742         messages of unknown type.
5743
5744         * bus/dbus-daemon-1.1.in: update to mention new resource limits
5745
5746         * bus/bus.c (bus_context_get_max_replies_per_connection): new
5747         (bus_context_get_reply_timeout): new
5748
5749 2003-10-13  Seth Nickell  <seth@gnome.org>
5750
5751         * python/Makefile.am:
5752
5753         Pass "make distcheck": remove a couple files from DIST_FILES
5754         that weren't included in the final version.
5755
5756 2003-10-12  Havoc Pennington  <hp@pobox.com>
5757
5758         Added test code that 1) starts an actual bus daemon and 2) uses
5759         DBusGProxy; fixed bugs that were revealed by the test. Lots 
5760         more testing possible, but this is the basic framework.
5761         
5762         * glib/dbus-gproxy.c (dbus_gproxy_manager_unregister): remove
5763         empty proxy lists from the proxy list hash
5764
5765         * dbus/dbus-message.c (dbus_message_iter_get_args_valist): add a
5766         couple of return_if_fail checks
5767
5768         * dbus/dbus-pending-call.c (_dbus_pending_call_new): use dbus_new0
5769         to allocate, so everything is cleared to NULL as it should be.
5770
5771         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): pass
5772         source as data to dbus_connection_set_timeout_functions() as the 
5773         timeout functions expected
5774
5775         * test/glib/run-test.sh: add a little script to start up a message
5776         bus and run tests using it
5777
5778         * tools/dbus-launch.1: updates
5779
5780         * tools/dbus-launch.c (main): add --config-file option
5781
5782         * tools/dbus-launch.c (main): remove confusing else if (runprog)
5783         that could never be reached.
5784
5785         * dbus/dbus-message.c (dbus_message_new_method_return) 
5786         (dbus_message_new_error, dbus_message_new_signal): set the
5787         no-reply-expected flag on all these. Redundant, but may
5788         as well be consistent.
5789
5790 2003-10-11  Havoc Pennington  <hp@pobox.com>
5791
5792         * test/decode-gcov.c (function_solve_graph): make broken block
5793         graph a nonfatal error since it seems to be broken. Need to debug
5794         this.
5795
5796         * dbus/dbus-marshal.c (_dbus_type_is_valid): new function since we
5797         can't just check type > INVALID < LAST anymore
5798
5799         * dbus/dbus-message.c (dbus_message_get_signature): new function
5800         (dbus_message_has_signature): new function
5801         (struct DBusMessage): add signature field (right now it isn't sent
5802         over the wire, just generated on the fly)
5803         (dbus_message_copy): copy the signature, and init strings to
5804         proper length to avoid some reallocs
5805         (dbus_message_iter_init_array_iterator): return void, since it
5806         can't fail
5807         (dbus_message_iter_init_dict_iterator): return void since it can't fail
5808         (_dbus_message_loader_queue_messages): add silly temporary hack to
5809         fill in message->signature on load
5810
5811         * dbus/dbus-protocol.h: change DBUS_TYPE_* values to be ASCII
5812         characters, so they are relatively human-readable.
5813
5814 2003-10-11  Havoc Pennington  <hp@pobox.com>
5815
5816         * dbus/dbus-message.c (_dbus_message_test): add more test
5817         coverage, but #if 0 for now since they uncover a bug 
5818         not fixed yet; I think in re_align_field_recurse()
5819         (re_align_field_recurse): add FIXME about broken assertion
5820
5821         * dbus/dbus-sysdeps.c (_dbus_sysdeps_test): add more test coverage
5822
5823         * bus/connection.c: share a couple code bits with expirelist.c
5824
5825         * bus/expirelist.h, bus/expirelist.c: implement a generic
5826         expire-items-after-N-seconds facility, was going to share between
5827         expiring connections and replies, decided not to use for expiring
5828         connections for now.
5829
5830         * COPYING: include AFL 2.0 (still need to change all the file headers)
5831
5832 2003-10-09  Havoc Pennington  <hp@redhat.com>
5833
5834         * configure.in: define DBUS_HAVE_GCC33_GCOV if we have
5835         gcc 3.3. Not that we do anything about it yet.
5836
5837         * bus/signals.c (bus_match_rule_parse): impose max length on the
5838         match rule text
5839
5840         * dbus/dbus-protocol.h: add DBUS_MAXIMUM_MATCH_RULE_LENGTH
5841
5842 2003-10-09  Havoc Pennington  <hp@redhat.com>
5843
5844         Make matching rules theoretically work (add parser).
5845         
5846         * bus/bus.c (bus_context_check_security_policy): fix up to handle
5847         the case where destination is explicitly specified as bus driver
5848         and someone else is eavesdropping.
5849         
5850         * bus/policy.c (bus_client_policy_check_can_receive): fix up
5851         definition of eavesdropping and assertion
5852
5853         * tools/dbus-send.c (main): use dbus_message_type_from_string
5854
5855         * bus/signals.c (bus_match_rule_parse): implement
5856
5857         * dbus/dbus-message.c (dbus_message_type_from_string): new
5858
5859         * dbus/dbus-errors.h (DBUS_ERROR_MATCH_RULE_INVALID): add
5860
5861 2003-10-02  Havoc Pennington  <hp@pobox.com>
5862
5863         * glib/dbus-gproxy.c (dbus_gproxy_call_no_reply): rename from
5864         dbus_gproxy_oneway_call
5865
5866         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main) 
5867         (dbus_server_setup_with_g_main): fix to allow calling them more
5868         than once on the same args
5869         (dbus_bus_get_with_g_main): new function
5870
5871 2003-10-02  Havoc Pennington  <hp@redhat.com>
5872
5873         * doc/dbus-tutorial.xml: write some stuff
5874
5875 2003-09-29  Havoc Pennington  <hp@pobox.com>
5876
5877         * configure.in: split checks for Doxygen from XML docs, check for
5878         xmlto
5879
5880         * doc/Makefile.am: XML-ify all the docs, and add a blank
5881         dbus-tutorial.xml
5882
5883 2003-09-29  Havoc Pennington  <hp@pobox.com>
5884
5885         * Merge dbus-object-names branch. To see the entire patch 
5886         do cvs diff -r DBUS_OBJECT_NAMES_BRANCHPOINT -r dbus-object-names,
5887         it's huuuuge though.
5888         To revert, I tagged DBUS_BEFORE_OBJECT_NAMES_MERGE.
5889         
5890 2003-09-28  Havoc Pennington  <hp@pobox.com>
5891
5892         * HACKING: update to reflect new server
5893
5894 2003-09-26  Seth Nickell  <seth@gnome.org>
5895
5896         * python/dbus.py:
5897         * python/examples/example-signals.py:
5898
5899         Start implementing some notions of signals. The API
5900         is really terrible, but they sort of work (with the
5901         exception of being able to filter by service, and to
5902         transmit signals *as* a particular service). Need to
5903         figure out how to make messages come from the service
5904         we registered :-(
5905         
5906         * python/dbus_bindings.pyx.in:
5907
5908         Removed duplicate message_handler callbacks.
5909         
5910 2003-09-25  Havoc Pennington  <hp@redhat.com>
5911
5912         * bus/session.conf.in: fix my mess
5913
5914 2003-09-25  Havoc Pennington  <hp@pobox.com>
5915
5916         * bus/session.conf.in: fix security policy, reported by Seth Nickell
5917
5918 2003-09-25  Seth Nickell  <seth@gnome.org>
5919
5920         * python/examples/example-service.py:
5921
5922         Johan notices complete wrong code in example-service, but
5923         completely wrong in a way that works exactly the same (!).
5924         Johan is confused, how could this possibly work? Example
5925         code fails to serve purpose of making things clear.
5926         Seth fixes.
5927
5928 2003-09-25  Mark McLoughlin  <mark@skynet.ie>
5929
5930         * doc/dbus-specification.sgml: don't require header fields
5931         to be 4-byte aligned and specify that fields should be
5932         distinguished from padding by the fact that zero is not
5933         a valid field name.
5934         
5935         * doc/TODO: remove re-alignment item and add item to doc
5936         the OBJECT_PATH type.
5937         
5938         * dbus/dbus-message.c:
5939         (HeaderField): rename the original member to value_offset
5940         and introduce a name_offset member to keep track of where
5941         the field actually begins.
5942         (adjust_field_offsets): remove.
5943         (append_int_field), (append_uint_field),
5944         (append_string_field): don't align the start of the header
5945         field to a 4-byte boundary.
5946         (get_next_field): impl finding the next marhsalled field
5947         after a given field.
5948         (re_align_field_recurse): impl re-aligning a number of
5949         already marshalled fields.
5950         (delete_field): impl deleting a field of any type and
5951         re-aligning any following fields.
5952         (delete_int_or_uint_field), (delete_string_field): remove.
5953         (set_int_field), (set_uint_field): no need to re-check
5954         that we have the correct type for the field.
5955         (set_string_field): ditto and impl re-aligning any
5956         following fields.
5957         (decode_header_data): update to take into account that
5958         the fields aren't 4-byte aligned any more and the new
5959         way to distinguish padding from header fields. Also,
5960         don't exit when there is too much header padding.
5961         (process_test_subdir): print the directory.
5962         (_dbus_message_test): add test to make sure a following
5963         field is re-aligned correctly after field deletion.
5964         
5965         * dbus/dbus-string.[ch]:
5966         (_dbus_string_insert_bytes): rename from insert_byte and
5967         allow the insert of multiple bytes.
5968         (_dbus_string_test): test inserting multiple bytes.
5969
5970         * dbus/dbus-marshal.c: (_dbus_marshal_set_string): add
5971         warning note to docs about having to re-align any
5972         marshalled values following the string.
5973         
5974         * dbus/dbus-message-builder.c:
5975         (append_string_field), (_dbus_message_data_load):
5976         don't align the header field.
5977         
5978         * dbus/dbus-auth.c: (process_test_subdir): print the
5979         directory.
5980         
5981         * test/break-loader.c: (randomly_add_one_byte): upd. for
5982         insert_byte change.
5983         
5984         * test/data/invalid-messages/bad-header-field-alignment.message:
5985         new test case.
5986         
5987         * test/data/valid-messages/unknown-header-field.message: shove
5988         a dict in the unknown field.
5989
5990 2003-09-25  Seth Nickell  <seth@gnome.org>
5991
5992         * python/dbus.py:
5993         * python/dbus_bindings.pyx.in:
5994
5995         Handle return values.
5996         
5997         * python/examples/example-client.py:
5998         * python/examples/example-service.py:
5999
6000         Pass back return values from the service to the client.
6001         
6002 2003-09-24  Seth Nickell  <seth@gnome.org>
6003
6004         * python/dbus.py:
6005
6006         Connect Object methods (when you are sharing an object) up... pass
6007         in a list of methods to be shared. Sharing all the methods just
6008         worked out too weird. You can now create nice Services over the
6009         DBus in Python. :-)
6010         
6011         * python/dbus_bindings.pyx.in:
6012
6013         Keep references to user_data tuples passed into C functions so 
6014         Python doesn't garbage collect on us.
6015
6016         Implement MethodReturn and Error subclasses of Message for creating
6017         DBusMessage's of those types.
6018         
6019         * python/examples/example-client.py:
6020         * python/examples/example-service.py:
6021
6022         Simple example code showing both how create DBus services and objects,
6023         and how to use them.
6024
6025 2003-09-23  Havoc Pennington  <hp@pobox.com>
6026
6027         * glib/dbus-gproxy.c (dbus_gproxy_manager_filter): implement
6028
6029 2003-09-23  Havoc Pennington  <hp@redhat.com>
6030
6031         * glib/dbus-gproxy.c (dbus_gproxy_connect_signal): implement
6032         (dbus_gproxy_disconnect_signal): implement
6033         (dbus_gproxy_manager_remove_signal_match): implement
6034         (dbus_gproxy_manager_add_signal_match): implement
6035         (dbus_gproxy_oneway_call): implement
6036
6037 2003-09-23  Havoc Pennington  <hp@pobox.com>
6038
6039         * glib/dbus-gproxy.c (struct DBusGProxy): convert to a GObject
6040         subclass. This means dropping the transparent thread safety of the
6041         proxy; you now need a separate proxy per-thread, or your own
6042         locking on the proxy. Probably right anyway.
6043         (dbus_gproxy_ref, dbus_gproxy_unref): nuke, just use g_object_ref
6044
6045 2003-09-22  Havoc Pennington  <hp@redhat.com>
6046
6047         * glib/dbus-gproxy.c (dbus_gproxy_manager_get): implement
6048
6049 2003-09-21  Seth Nickell  <seth@gnome.org>
6050
6051         First checkin of the Python bindings.
6052         
6053         * python/.cvsignore:
6054         * python/Makefile.am:
6055         * python/dbus_bindings.pyx.in:
6056         * python/dbus_h_wrapper.h:
6057
6058         Pieces for Pyrex to operate on, building a dbus_bindings.so
6059         python module for low-level access to the DBus APIs.
6060         
6061         * python/dbus.py:
6062
6063         High-level Python module for accessing DBus objects.
6064
6065         * configure.in:
6066         * Makefile.am:
6067
6068         Build stuff for the python bindings.
6069
6070         * acinclude.m4:
6071
6072         Extra macro needed for finding the Python C header files.
6073
6074 2003-09-21  Havoc Pennington  <hp@pobox.com>
6075
6076         * glib/dbus-gproxy.c (dbus_gproxy_manager_new): start
6077         implementing the proxy manager, didn't get very far.
6078
6079         * dbus/dbus-bus.c (dbus_bus_add_match): new
6080         (dbus_bus_remove_match): new
6081
6082         * glib/dbus-gproxy.c (dbus_gproxy_new_for_service): add a
6083         path_name argument; adjust the other not-yet-implemented 
6084         gproxy constructors to be what I think they should be.
6085
6086 2003-09-21  Havoc Pennington  <hp@pobox.com>
6087
6088         * dbus/dbus-bus.c (dbus_bus_get): set exit_on_disconnect to TRUE
6089         by default for message bus connections.
6090
6091         * dbus/dbus-connection.c (dbus_connection_dispatch): exit if
6092         exit_on_disconnect flag is set and we process the disconnected
6093         signal.
6094         (dbus_connection_set_exit_on_disconnect): new function
6095
6096 2003-09-21  Havoc Pennington  <hp@pobox.com>
6097
6098         Get matching rules mostly working in the bus; only actually
6099         parsing the rule text remains. However, the client side of
6100         "signal connections" hasn't been started, this patch is only the
6101         bus side.
6102         
6103         * dbus/dispatch.c: fix for the matching rules changes
6104         
6105         * bus/driver.c (bus_driver_handle_remove_match)
6106         (bus_driver_handle_add_match): send an ack reply from these
6107         method calls
6108
6109         * glib/dbus-gproxy.c (dbus_gproxy_begin_call): fix order of
6110         arguments, reported by Seth Nickell
6111
6112         * bus/config-parser.c (append_rule_from_element): support
6113         eavesdrop=true|false attribute on policies so match rules 
6114         can be prevented from snooping on the system bus.
6115
6116         * bus/dbus-daemon-1.1.in: consistently use terminology "sender"
6117         and "destination" in attribute names; fix some docs bugs; 
6118         add eavesdrop=true|false attribute
6119
6120         * bus/driver.c (bus_driver_handle_add_match)
6121         (bus_driver_handle_remove_match): handle AddMatch, RemoveMatch
6122         messages
6123
6124         * dbus/dbus-protocol.h (DBUS_SERVICE_ORG_FREEDESKTOP_BROADCAST): get
6125         rid of broadcast service concept, signals are just always broadcast
6126
6127         * bus/signals.c, bus/dispatch.c, bus/connection.c, bus/bus.c:
6128         mostly implement matching rules stuff (currently only exposed as signal
6129         connections)
6130
6131 2003-09-21  Mark McLoughlin  <mark@skynet.ie>
6132
6133         * doc/dbus-specification.sgml: Change the header field name
6134         to be an enum and update the rest of the spec to reference
6135         the fields using the conventinal name.
6136
6137         * dbus/dbus-protocol.h: update to reflect the spec.
6138
6139         * doc/TODO: add item to remove the 4 byte alignment requirement.
6140         
6141         * dbus/dbus-message.c: Remove the code to generalise the
6142         header/body length and serial number header fields as named
6143         header fields so we can reference field names using the 
6144         protocol values.
6145         (append_int_field), (append_uint_field), (append_string_field):
6146         Append the field name as a byte rather than four chars.
6147         (delete_int_or_uint_field), (delete_string_field): reflect the
6148         fact that the field name and typecode now occupy 4 bytes instead
6149         of 8.
6150         (decode_string_field), (decode_header_data): update to reflect
6151         protocol changes and move the field specific encoding from
6152         decode_string_field() back into decode_header_data().
6153         
6154         * dbus/dbus-internals.[ch]: (_dbus_header_field_to_string):
6155         Add utility to aid debugging.
6156         
6157         * dbus/dbus-message-builder.c:
6158         (append_string_field), (_dbus_message_data_load): Update to
6159         reflect protocol changes; Change the FIELD_NAME directive
6160         to HEADER_FIELD and allow it to take the field's conventional
6161         name rather than the actual value.
6162         
6163         * test/data/*/*.message: Update to use HEADER_FIELD instead
6164         of FIELD_NAME; Always align the header on an 8 byte boundary
6165         *before* updating the header length.
6166
6167 2003-09-15  Havoc Pennington  <hp@pobox.com>
6168
6169         * dbus/dbus-pending-call.c: add the get/set object data
6170         boilerplate as for DBusConnection, etc. Use generic object data
6171         for the notify callback.
6172
6173         * glib/dbus-gparser.c (parse_node): parse child nodes
6174
6175         * tools/dbus-viewer.c: more hacking on the dbus-viewer
6176         
6177         * glib/dbus-gutils.c (_dbus_gutils_split_path): add a file to
6178         contain functions shared between the convenience lib and the
6179         installed lib
6180
6181         * glib/Makefile.am (libdbus_glib_1_la_LDFLAGS): add
6182         -export-symbols-regex to the GLib library
6183
6184         * dbus/dbus-object-tree.c (_dbus_object_tree_dispatch_and_unlock):
6185         fix the locking in here, and add a default handler for
6186         Introspect() that just returns sub-nodes.
6187
6188 2003-09-14  Havoc Pennington  <hp@pobox.com>
6189
6190         * glib/dbus-gthread.c (dbus_g_thread_init): rename to make g_foo
6191         rather than gfoo consistent
6192
6193         * glib/dbus-gproxy.h: delete for now, move contents to
6194         dbus-glib.h, because the include files don't work right since we
6195         aren't in the dbus/ subdir.
6196         
6197         * glib/dbus-gproxy.c (dbus_gproxy_send): finish implementing
6198         (dbus_gproxy_end_call): finish
6199         (dbus_gproxy_begin_call): finish
6200
6201         * glib/dbus-gmain.c (dbus_set_g_error): new
6202
6203         * glib/dbus-gobject.c (handle_introspect): include information
6204         about child nodes in the introspection
6205
6206         * dbus/dbus-connection.c (dbus_connection_list_registered): new
6207         function to help in implementation of introspection
6208
6209         * dbus/dbus-object-tree.c
6210         (_dbus_object_tree_list_registered_and_unlock): new function
6211
6212 2003-09-12  Havoc Pennington  <hp@pobox.com>
6213
6214         * glib/dbus-gidl.h: add common base class for all the foo_info
6215         types
6216
6217         * tools/dbus-viewer.c: add GTK-based introspection UI thingy
6218         similar to kdcop
6219
6220         * test/Makefile.am: try test srcdir -ef . in addition to test
6221         srcdir = ., one of them should work (yeah lame)
6222         
6223         * glib/Makefile.am: build the "idl" parser stuff as a convenience
6224         library
6225         
6226         * glib/dbus-gparser.h: make description_load routines return
6227         NodeInfo* not Parser*
6228
6229         * Makefile.am (SUBDIRS): build test dir after all library dirs
6230
6231         * configure.in: add GTK+ detection
6232
6233 2003-09-07  Havoc Pennington  <hp@pobox.com>
6234
6235         * Make Doxygen contented.
6236
6237 2003-09-07  Havoc Pennington  <hp@pobox.com>
6238
6239         * doc/dbus-specification.sgml: more updates
6240
6241 2003-09-06  Havoc Pennington  <hp@pobox.com>
6242
6243         * doc/dbus-specification.sgml: partial updates
6244
6245         * bus/dbus-daemon-1.1.in: fix the config file docs for the
6246         zillionth time; hopefully I edited the right file this time.
6247
6248         * bus/config-parser.c (append_rule_from_element): support
6249         send_type, send_path, receive_type, receive_path
6250
6251         * bus/policy.c: add message type and path to the list of things
6252         that can be "firewalled"
6253
6254 2003-09-06  Havoc Pennington  <hp@pobox.com>
6255
6256         * dbus/dbus-connection.c (dbus_connection_register_fallback): add this
6257         (dbus_connection_register_object_path): make this not handle
6258         messages to paths below the given path
6259
6260 2003-09-03  Havoc Pennington  <hp@pobox.com>
6261
6262         * test/glib/Makefile.am: add this with random glib-linked test
6263         programs
6264
6265         * glib/Makefile.am: remove the random test programs from here,
6266         leave only the unit tests
6267
6268         * glib/dbus-gobject.c (_dbus_gobject_test): add test for 
6269         uscore/javacaps conversion, and fix     
6270         (get_object_property, set_object_property): change to .NET
6271         convention for mapping props to methods, set_FooBar/get_FooBar, 
6272         since one language has such a convention we may as well copy it. 
6273         Plus real methods in either getFooBar or get_foo_bar style won't 
6274         collide with this convention.
6275
6276 2003-09-01  Havoc Pennington  <hp@pobox.com>
6277
6278         * glib/dbus-gparser.c: implement
6279
6280         * glib/dbus-gobject.c: start implementing skeletons support
6281
6282         * configure.in: when disabling checks/assert, also define
6283         G_DISABLE_ASSERT and G_DISABLE_CHECKS
6284
6285 2003-09-01  Havoc Pennington  <hp@pobox.com>
6286
6287         * glib/Makefile.am: rearrange a bunch of files and get "make
6288         check" framework set up
6289
6290 2003-08-31  Havoc Pennington  <hp@pobox.com>
6291
6292         * fix build with --disable-tests
6293
6294 2003-08-30  Havoc Pennington  <hp@pobox.com>
6295
6296         * dbus/dbus-connection.c: purge DBusMessageHandler
6297
6298         * dbus/dbus-message-handler.c: remove DBusMessageHandler, just 
6299         use callbacks everywhere
6300
6301 2003-08-30  Havoc Pennington  <hp@pobox.com>
6302
6303         * test/data/valid-config-files/system.d/test.conf: change to 
6304         root for the user so warnings don't get printed
6305
6306         * dbus/dbus-message.c: add dbus_message_get_path,
6307         dbus_message_set_path
6308         
6309         * dbus/dbus-object-tree.c (do_test_dispatch): add test of
6310         dispatching to a path
6311
6312         * dbus/dbus-string.c (_dbus_string_validate_path): add
6313
6314         * dbus/dbus-marshal.c (_dbus_demarshal_object_path): implement
6315         (_dbus_marshal_object_path): implement
6316
6317         * dbus/dbus-protocol.h (DBUS_HEADER_FIELD_PATH): new header field 
6318         to contain the path to the target object
6319         (DBUS_HEADER_FIELD_SENDER_SERVICE): rename
6320         DBUS_HEADER_FIELD_SENDER to explicitly say it's the sender service
6321
6322 2003-08-30  Havoc Pennington  <hp@pobox.com>
6323
6324         * dbus/dbus-object-tree.c: write tests and fix the discovered bugs
6325
6326 2003-08-29  Havoc Pennington  <hp@pobox.com>
6327
6328         * dbus/dbus-object-tree.c: modify to allow overlapping paths to be
6329         registered
6330         (struct DBusObjectSubtree): shrink this
6331         a lot, since we may have a lot of them
6332         (_dbus_object_tree_free_all_unlocked): implement
6333         (_dbus_object_tree_dispatch_and_unlock): implement
6334
6335 2003-08-29  Havoc Pennington  <hp@pobox.com>
6336
6337         * dbus/dbus-internals.h: fix _DBUS_N_GLOBAL_LOCKS
6338
6339 2003-08-28  Havoc Pennington  <hp@pobox.com>
6340
6341         purge DBusObjectID
6342         
6343         * dbus/dbus-connection.c: port to no ObjectID, create a
6344         DBusObjectTree, rename ObjectTree to ObjectPath in public API
6345
6346         * dbus/dbus-connection.h (struct DBusObjectTreeVTable): delete 
6347         everything except UnregisterFunction and MessageFunction
6348         
6349         * dbus/dbus-marshal.c: port away from DBusObjectID, 
6350         add DBUS_TYPE_OBJECT_PATH
6351         
6352         * dbus/dbus-object-registry.[hc], dbus/dbus-object.[hc], 
6353         dbus/dbus-objectid.[hc]: remove these, we are moving to 
6354         path-based object IDs
6355
6356 2003-08-25  Havoc Pennington  <hp@pobox.com>
6357
6358         Just noticed that dbus_message_test is hosed, I wonder when I
6359         broke that. I thought make check was passing earlier...
6360         
6361         * dbus/dbus-object-tree.c: add new "object tree" to match DCOP 
6362         container tree, will replace most of dbus-object-registry
6363
6364         * dbus/dbus-string.c (_dbus_string_append_printf_valist): fix C99
6365         screwup
6366
6367 2003-08-19  Havoc Pennington  <hp@pobox.com>
6368
6369         * dbus/dbus-message.c (decode_string_field): support FIELD_SENDER
6370         (dbus_message_is_error): fix this function
6371
6372         * bus/dbus-daemon-1.1: clarify logic on when <deny>/<allow> rules
6373         match
6374
6375         * bus/policy.c (bus_client_policy_check_can_receive): fix code to
6376         reflect clarified man page
6377         (bus_client_policy_check_can_send): ditto
6378         
6379         * bus/session.conf.in: fixup
6380
6381         * bus/system.conf.in: fixup
6382
6383 2003-08-18  Havoc Pennington  <hp@redhat.com>
6384
6385         * dbus/dbus-hash.c (_dbus_hash_table_insert_two_strings): fix
6386
6387         * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
6388         dumb bug created earlier (wrong order of args to
6389         decode_header_data())
6390         
6391         * tools/dbus-send.c: port
6392
6393         * tools/dbus-print-message.c (print_message): port
6394
6395         * test/data/*messages: port all messages over
6396         
6397         * dbus/dbus-message-builder.c: support including 
6398         message type
6399         
6400         * bus/driver.c: port over
6401         
6402         * bus/dispatch.c: port over to new stuff
6403
6404         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
6405         rename disconnect signal to "Disconnected"
6406
6407 2003-08-17  Havoc Pennington  <hp@pobox.com>
6408
6409         This doesn't compile yet, but syncing up so I can hack on it from
6410         work. What are branches for if not broken code? ;-)
6411         
6412         * dbus/dbus-protocol.h: remove DBUS_HEADER_FIELD_NAME, add
6413         DBUS_HEADER_FIELD_INTERFACE, DBUS_HEADER_FIELD_MEMBER,
6414         DBUS_HEADER_FIELD_ERROR_NAME
6415         
6416         * dbus/dbus-hash.c: Introduce DBUS_HASH_TWO_STRINGS as hack to use
6417         for the interface+member pairs
6418         (string_hash): change to use g_str_hash algorithm
6419         (find_direct_function, find_string_function): refactor these to
6420         share most code.
6421         
6422         * dbus/dbus-message.c: port all of this over to support 
6423         interface/member fields instead of name field
6424
6425         * dbus/dbus-object-registry.c: port over
6426         
6427         * dbus/dbus-string.c (_dbus_string_validate_interface): rename
6428         from _dbus_string_validate_name
6429
6430         * bus/dbus-daemon-1.1: change file format for the 
6431         <deny>/<allow> stuff to match new message naming scheme
6432
6433         * bus/policy.c: port over
6434
6435         * bus/config-parser.c: parse new format
6436         
6437 2003-08-16  Havoc Pennington  <hp@pobox.com>
6438
6439         * dbus/dbus-object-registry.c (add_and_remove_objects): remove
6440         broken assertion
6441
6442         * glib/dbus-gproxy.c: some hacking
6443
6444 2003-08-15  Havoc Pennington  <hp@redhat.com>
6445
6446         * dbus/dbus-pending-call.c (dbus_pending_call_block): implement
6447
6448         * dbus/dbus-connection.c
6449         (dbus_connection_send_with_reply_and_block): factor out internals;
6450         change to convert any error replies to DBusError instead of 
6451         returning them as a message
6452
6453 2003-08-15  Havoc Pennington  <hp@pobox.com>
6454
6455         * dbus/dbus-connection.c, 
6456         dbus/dbus-pending-call.c: Finish the pending call stuff
6457
6458 2003-08-14  Havoc Pennington  <hp@redhat.com>
6459
6460         * dbus/dbus-pending-call.c: start on new object that will replace
6461         DBusMessageHandler and ReplyHandlerData for tracking outstanding
6462         replies
6463
6464         * dbus/dbus-gproxy.c: start on proxy object used to communicate
6465         with remote interfaces
6466
6467         * dbus/dbus-gidl.c: do the boring boilerplate in here
6468         
6469 2003-08-12  Havoc Pennington  <hp@pobox.com>
6470
6471         * bus/dispatch.c (bus_dispatch): make this return proper 
6472         DBusHandlerResult to avoid DBUS_ERROR_UNKNOWN_METHOD
6473
6474         * dbus/dbus-errors.c (dbus_set_error): use
6475         _dbus_string_append_printf_valist
6476
6477         * dbus/dbus-string.c (_dbus_string_append_printf_valist)
6478         (_dbus_string_append_printf): new
6479
6480         * dbus/dbus-errors.h (DBUS_ERROR_UNKNOWN_MESSAGE): change to
6481         UNKNOWN_METHOD
6482
6483         * dbus/dbus-connection.c (dbus_connection_dispatch): handle
6484         DBUS_HANDLER_RESULT_NEED_MEMORY; send default error reply if a
6485         message is unhandled.
6486
6487 2003-08-11  Havoc Pennington  <hp@pobox.com>
6488
6489         * bus/test.c (client_disconnect_handler): change to return
6490         HANDLED (would have been REMOVE_MESSAGE)
6491
6492         * dbus/dbus-object.h (enum DBusHandlerResult): rename to
6493         HANDLED/NOT_YET_HANDLED instead of
6494         REMOVE_MESSAGE/ALLOW_MORE_HANDLERS to make it clearer how it 
6495         should be used.
6496
6497 2003-08-10  Havoc Pennington  <hp@pobox.com>
6498
6499         * tools/dbus-send.c (main): add --type argument, for now
6500         supporting only method_call and signal types.
6501
6502         * tools/dbus-print-message.c: print message type
6503
6504         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
6505         init connection->objects
6506
6507         * doc/dbus-specification.sgml: fix sgml
6508
6509         * bus/*.c: port over to object-instance API changes
6510
6511         * test/test-service.c: ditto
6512         
6513         * dbus/dbus-message.c (dbus_message_create_header): allow #NULL
6514         name, we will have to fix up the rest of the code to also handle
6515         this
6516         (dbus_message_new): generic message-creation call
6517         (set_string_field): allow appending name field
6518
6519 2003-08-06  Havoc Pennington  <hp@pobox.com>
6520
6521         * dbus/dbus-object-registry.c: implement signal connection 
6522         and dispatch
6523
6524         * dbus/dbus-connection.c (_dbus_connection_unref_unlocked): new
6525
6526         * dbus/dbus-internals.c (_dbus_memdup): new function
6527
6528 2003-08-02  Havoc Pennington  <hp@pobox.com>
6529
6530         * dbus/dbus-message.c (dbus_message_get_no_reply)
6531         (dbus_message_set_no_reply): add these and remove
6532         set_is_error/get_is_error
6533
6534         * dbus/dbus-protocol.h, doc/dbus-specification.sgml: 
6535         remove the ERROR flag, since there's now an ERROR type
6536
6537 2003-08-01  Havoc Pennington  <hp@pobox.com>
6538
6539         * dbus/dbus-object-registry.c (_dbus_object_registry_handle_and_unlock):
6540         implement
6541
6542         * dbus/dbus-message.c (dbus_message_get_type): new function
6543
6544         * doc/dbus-specification.sgml: add "type" byte to messages
6545
6546 2003-08-01  Havoc Pennington  <hp@pobox.com>
6547
6548         * dbus/dbus-protocol.h (DBUS_MESSAGE_TYPE_*): introduce
6549         a message type enum to distinguish kinds of message
6550         (DBUS_HEADER_FLAG_NO_REPLY_EXPECTED): flag for a message 
6551         that need not be replied to
6552
6553 2003-08-01  Havoc Pennington  <hp@pobox.com>
6554
6555         * dbus/dbus-marshal.c: adapt to DBusObjectID changes
6556         (unpack_8_octets): fix no-64-bit-int bug
6557
6558         * dbus/dbus-object-registry.c (validate_id): validate the 
6559         connection ID bits, not just the instance ID.
6560
6561         * dbus/dbus-connection.c (_dbus_connection_init_id): initialize
6562         the connection-global 33 bits of the object ID
6563
6564         * dbus/dbus-object-registry.c (info_from_entry): fill in 
6565         object ID in the new way
6566
6567         * dbus/dbus-objectid.h: rather than high/low bits, specifically 
6568         define server/client/instance bits.
6569
6570 2003-07-30  Havoc Pennington  <hp@pobox.com>
6571
6572         * dbus/dbus-connection.c (dbus_connection_register_object): fix
6573         build
6574
6575 2003-07-13  Havoc Pennington  <hp@pobox.com>
6576
6577         * dbus/dbus-object.h (struct DBusObjectVTable): add padding
6578         fields to DBusObjectVTable and DBusObjectInfo
6579
6580 2003-07-12  Havoc Pennington  <hp@pobox.com>
6581
6582         * dbus/dbus-object-registry.c: implement unit test,
6583         fix bugs discovered in process
6584
6585         * dbus/dbus-connection.c: remove handler_table and
6586         register_handler(), add DBusObjectRegistry usage
6587
6588         * dbus/dbus-objectid.c (dbus_object_id_is_null)
6589         (dbus_object_id_set_null): new functions
6590
6591 2003-07-08  Havoc Pennington  <hp@pobox.com>
6592
6593         * dbus/dbus-object.c: implement some of this
6594
6595         * dbus/dbus-object-registry.c
6596         (_dbus_object_registry_add_and_unlock): fill in the object_id out
6597         param
6598         (_dbus_object_registry_new): handle OOM
6599
6600 2003-07-08  Havoc Pennington  <hp@pobox.com>
6601
6602         * dbus/dbus-object.h: sketch out an API for registering objects
6603         with a connection, that allows us to use as little as 24 bytes
6604         per object and lets application code represent an object in 
6605         any conceivable way.
6606
6607         * dbus/dbus-object-registry.c: implement the hard bits of the
6608         DBusConnection aspect of object API. Not yet wired up.
6609         
6610 2003-07-06  Havoc Pennington  <hp@pobox.com>
6611
6612         * dbus/dbus-marshal.c (_dbus_marshal_set_object_id): new function
6613         (_dbus_marshal_object_id): new
6614         (_dbus_demarshal_object_id): new
6615         (_dbus_marshal_get_arg_end_pos): support object ID type, and
6616         consolidate identical switch cases. Don't conditionalize handling
6617         of DBUS_TYPE_UINT64, need to handle the type always.
6618         (_dbus_marshal_validate_arg): consolidate identical cases, and
6619         handle DBUS_TYPE_OBJECT_ID
6620
6621         * dbus/dbus-objectid.c: new file with DBusObjectID data type.
6622
6623         * dbus/dbus-protocol.h: add DBUS_TYPE_OBJECT_ID
6624
6625 2003-09-28  Havoc Pennington  <hp@pobox.com>
6626
6627         * real 0.13 release
6628
6629 2003-09-28  Havoc Pennington  <hp@pobox.com>
6630
6631         * doc/Makefile.am (dbus-specification.html): testing a funky hack
6632         to work with Debian db2html
6633
6634 2003-09-28  Havoc Pennington  <hp@pobox.com>
6635
6636         * configure.in: 0.13
6637
6638         * doc/Makefile.am (dbus-test-plan.html): accept nonexistence of
6639         stylesheet-images for benefit of Debian
6640         
6641         Change back to using filesystem-linked sockets for the system
6642         bus, so only root can create the default system bus address.
6643         
6644         * bus/system.conf.in: change to use
6645         DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
6646
6647         * dbus/Makefile.am (INCLUDES): remove DBUS_SYSTEM_BUS_PATH define
6648         from here.
6649
6650         * configure.in: define DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
6651         here, and AC_DEFINE DBUS_SYSTEM_PATH
6652
6653 2003-08-09  Anders Carlsson  <andersca@codefactory.se>
6654
6655         * doc/TODO:
6656         * doc/busconfig.dtd:
6657         Add busconfig DTD.
6658         
6659 2003-08-09  Anders Carlsson  <andersca@codefactory.se>
6660
6661         * doc/dbus-specification.sgml:
6662         Add activation reply values.
6663         
6664 2003-08-05  Havoc Pennington  <hp@redhat.com>
6665
6666         * configure.in: 0.12
6667
6668 2003-08-05  Anders Carlsson  <andersca@codefactory.se>
6669
6670         * glib/dbus-gmain.c: (watch_fd_new), (watch_fd_ref),
6671         (watch_fd_unref), (dbus_gsource_check), (dbus_gsource_dispatch),
6672         (add_watch), (remove_watch), (create_source):
6673         Refcount fds, fixes some reentrancy issues.
6674         
6675 2003-07-30  Havoc Pennington  <hp@redhat.com>
6676
6677         * dbus/dbus-bus.c (init_connections_unlocked): fix default system
6678         bus address to be abstract if we have abstract sockets
6679
6680         * NEWS: update
6681
6682 2003-07-28  Havoc Pennington  <hp@redhat.com>
6683
6684         * bus/messagebus.in: fix to avoid processname/servicename 
6685         confusion, from Michael Kearey
6686         https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=100965
6687         
6688 2003-07-23  Havoc Pennington  <hp@pobox.com>
6689
6690         * dbus/dbus-message.c (dbus_message_iter_get_named): 
6691         fix from Andy Hanton to remove broken "+1"
6692
6693 2003-07-16  Havoc Pennington  <hp@pobox.com>
6694
6695         * tools/dbus-launch.c (babysit): close stdout/stderr in the
6696         babysitter process, as suggested by Thomas Leonard, so 
6697         an "eval `dbus-launch --exit-with-session`" will actually 
6698         return
6699
6700 2003-07-16  Havoc Pennington  <hp@pobox.com>
6701
6702         * configure.in: print out EXPANDED_* variables in the summary at
6703         the end; clean up the code that computes EXPANDED_ variables and
6704         get the ones using exec_prefix right. Should make things work
6705         when you build without --prefix
6706
6707 2003-06-29  Havoc Pennington  <hp@pobox.com>
6708
6709         * mono/Test.cs (class Test): fire up a main loop and run it
6710
6711         * mono/DBus.cs (DBus): don't g_thread_init since it can only be
6712         done once, the app has to do it
6713
6714 2003-06-26  Havoc Pennington  <hp@pobox.com>
6715
6716         * mono/Connection.cs: set up connection with the glib main loop
6717
6718 2003-07-01  Havoc Pennington  <hp@redhat.com>
6719
6720         * doc/dbus-specification.sgml: clarify the format of a type code,
6721         change suggested by Jim Blandy
6722
6723 2003-06-29  Miloslav Trmac  <mitr@volny.cz>
6724
6725         * doc/Makefile.am:
6726         * tools/Makefile.am: Don't assume srcdir == builddir.
6727
6728         * dbus/dbus-memory.c (dbus_realloc): Don't check guards after shrinking
6729         the allocated block.
6730         (_dbus_memory_test): New function.
6731         * dbus/dbus-test.h: Add _dbus_memory_test ().
6732         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): Call it.
6733
6734         * dbus/dbus-message.c (decode_header_data): Use %.4s instead
6735         of %c%c%c%c.
6736         (dbus_message_new): Remove obsolete @todo.
6737
6738         * dbus/dbus-marshal.c (_dbus_marshal_set_int64)
6739         (_dbus_marshal_set_uint64): Fix comment.
6740
6741         * dbus/dbus-message.c (append_int_field, append_uint_field): Don't
6742         hardcode FIELD_REPLY_SERIAL.
6743
6744         * dbus/dbus-mainloop.c (_dbus_loop_remove_watch)
6745         (_dbus_loop_remove_timeout): Cast function pointers to (void *) for %p
6746
6747         * configure.in: Add -D_POSIX_C_SOURCE=199309L -DBSD_SOURCE to CFLAGS
6748         and disable DBUS_USE_ATOMIC_INT_486 when --enable-ansi is used
6749
6750 2003-06-24  Havoc Pennington  <hp@pobox.com>
6751
6752         * mono/*.cs: Use IntPtr.Zero instead of ((IntPtr) 0)
6753
6754 2003-06-23  Anders Carlsson  <andersca@codefactory.se>
6755
6756         * configure.in:
6757         * gcj/.cvsignore:
6758         * gcj/Hello.java:
6759         * gcj/Makefile.am:
6760         * gcj/TestMessage.java: (TestMessage), (TestMessage.main):
6761         * gcj/org/.cvsignore:
6762         * gcj/org/Makefile.am:
6763         * gcj/org/freedesktop/.cvsignore:
6764         * gcj/org/freedesktop/Makefile.am:
6765         * gcj/org/freedesktop/dbus/.cvsignore:
6766         * gcj/org/freedesktop/dbus/Makefile.am:
6767         * gcj/org/freedesktop/dbus/Message.java: (Message),
6768         (Message.Message):
6769         * gcj/org/freedesktop/dbus/natMessage.cc:
6770         Fix the build system.
6771
6772 2003-06-22  Havoc Pennington  <hp@pobox.com>
6773
6774         * mono/Connection.cs: add more bindings
6775
6776         * dbus/dbus-threads.c (dbus_threads_init): allow calling this
6777         more than once.
6778
6779 2003-06-22  Havoc Pennington  <hp@pobox.com>
6780
6781         * mono/Connection.cs, mono/DBus.cs, mono/Error.cs:
6782         Start wrapping more stuff.
6783
6784 2003-06-22  Havoc Pennington  <hp@pobox.com>
6785
6786         * mono/Message.cs: implement Message.Wrap() that ensures we only
6787         have a single C# wrapper per DBusMessage, assuming it works which
6788         it probably doesn't.
6789
6790         * dbus/dbus-message.c (dbus_message_allocate_data_slot): new
6791         (dbus_message_free_data_slot): new
6792         (dbus_message_set_data): new
6793         (dbus_message_get_data): new
6794
6795 2003-06-22  Havoc Pennington  <hp@pobox.com>
6796
6797         * dbus/dbus-dataslot.c (_dbus_data_slot_allocator_unref)
6798         (_dbus_data_slot_allocator_alloc): rework these to keep a
6799         reference count on each slot and automatically manage a global
6800         slot ID variable passed in by address
6801
6802         * bus/bus.c: convert to new dataslot API
6803
6804         * dbus/dbus-bus.c: convert to new dataslot API
6805
6806         * dbus/dbus-connection.c: convert to new dataslot API
6807
6808         * dbus/dbus-server.c: convert to new dataslot API
6809
6810         * glib/dbus-gmain.c: ditto
6811
6812         * bus/test.c: ditto
6813
6814         * bus/connection.c: ditto
6815
6816 2003-06-22  Anders Carlsson  <andersca@codefactory.se>
6817
6818         * configure.in: Add AM_PROG_GCJ and move AM_PROG_LIBTOOL
6819         after the gcj checks so that the correct configuration tags
6820         will be added to libtool.
6821
6822         * dbus-glib-1.pc.in: No need to specify any includes since
6823         dbus-1.pc.in has those.
6824
6825 2003-06-22  Havoc Pennington  <hp@pobox.com>
6826
6827         * mono/*, gcj/*, configure.in, Makefile.am:
6828         Check in makefiles and subdirs for mono and gcj bindings.
6829         Neither binding actually exists, just trying to get through
6830         all the build and other boring bits.
6831
6832 2003-06-21  Philip Blundell  <philb@gnu.org>
6833
6834         * tools/dbus-monitor.1: Updated.
6835
6836         * tools/dbus-send.1: Likewise.
6837
6838 2003-06-20  Anders Carlsson  <andersca@codefactory.se>
6839
6840         * dbus/dbus-transport-unix.c (unix_handle_watch): Check
6841         for hangup and error after checking read so we won't discard
6842         pending data if both hangup and read are set.
6843
6844 2003-06-19  Philip Blundell  <philb@gnu.org>
6845
6846         * tools/dbus-print-message.c (print_message): Handle BOOLEAN.
6847
6848         * tools/dbus-send.c: Accept both --system and --session.
6849
6850         * tools/dbus-monitor.c: Same here.
6851
6852 2003-06-19  Anders Carlsson  <andersca@codefactory.se>
6853
6854         * glib/dbus-glib.h: Fix so that dbus-glib.h can be used
6855         from C++ (Patch by Miloslav Trmac).
6856
6857 2003-06-15  Joe Shaw  <joe@assbarn.com>
6858
6859         * configure.in: Check for socklen_t.
6860
6861         * dbus/dbus-sysdeps.c: Define socklen_t if it's not defined.
6862
6863         * test/test-segfault.c: Add #include <sys/time.h>
6864
6865         * tools/Makefile.am: Add DBUS_X_CFLAGS to the INCLUDES since
6866         dbus-launch needs it.
6867
6868 2003-06-09  Havoc Pennington  <hp@redhat.com>
6869
6870         * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): don't use
6871         SUN_LEN, it breaks abstract socket usage
6872
6873         * dbus/dbus-internals.c (_dbus_verbose_real): only print PID at
6874         starts of lines.
6875
6876 2003-06-04  Havoc Pennington  <hp@pobox.com>
6877
6878         * dbus/dbus-server.c (dbus_server_listen): allow abstract sockets
6879         using unix:abstract=/foo, and when listening in a tmpdir
6880         i.e. unix:tmpdir=/tmp, always use abstract sockets if we can.
6881
6882         * dbus/dbus-transport.c (_dbus_transport_open): support
6883         unix:abstract=/foo
6884
6885         * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
6886         support abstract sockets
6887
6888         * dbus/dbus-transport-unix.c
6889         (_dbus_transport_new_for_domain_socket): support abstract sockets
6890
6891         * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket): add "abstract"
6892         toggle as an argument, implement abstract namespace support
6893         (_dbus_listen_unix_socket): ditto
6894
6895         * configure.in: add --enable-abstract-sockets and implement
6896         a configure check for autodetection of the right value.
6897
6898 2003-06-01  Havoc Pennington  <hp@pobox.com>
6899
6900         * tools/dbus-cleanup-sockets.c: add utility to clean up sockets
6901         in /tmp (though on Linux this will end up being useless,
6902         when we add abstract namespace support)
6903
6904         * configure.in: define DBUS_SESSION_SOCKET_DIR in addition to
6905         subst'ing it
6906
6907 2003-05-28  Colin Walters  <walters@verbum.org>
6908
6909         * tools/dbus-monitor.c (main): Fix silly typo (s/--session/--system/).
6910
6911 2003-05-18  Anders Carlsson  <andersca@codefactory.se>
6912
6913         * dbus/dbus-message.c (dbus_message_new): Remove @todo.
6914
6915 2003-05-17  Colin Walters  <walters@gnu.org>
6916
6917         * tools/dbus-send.c: Don't exit with an error code if --help was
6918         passed.  Default to using the session bus instead of the system
6919         one.
6920
6921         * tools/dbus-launch.c: Ditto.
6922
6923         * tools/dbus-monitor.c: Ditto.
6924
6925         * tools/dbus-send.1: Update with new arguments.
6926
6927         * tools/dbus-launch.c: Emit code to export variables.  New
6928         arguments -s and -c to specify shell syntax, and a bit of code to
6929         autodetect syntax.  Also, allow specifying a program to run.
6930
6931         * tools/dbus-launch.1: Update with new arguments.
6932
6933         * tools/dbus-send.1: Ditto.
6934
6935         * tools/dbus-monitor.1: Ditto.
6936
6937 2003-05-17  Havoc Pennington  <hp@pobox.com>
6938
6939         * bus/config-parser.c (merge_included): merge in policies from
6940         child configuration file.
6941
6942         * bus/policy.c (bus_policy_merge): function to merge two policies
6943         together
6944
6945 2003-05-16  Havoc Pennington  <hp@redhat.com>
6946
6947         * dbus/dbus-connection.c: disable verbose lock spew
6948
6949         * tools/dbus-send.c: add --print-reply command line option
6950
6951         * tools/dbus-print-message.h (print_message): new util function
6952         shared by dbus-send and dbus-monitor
6953
6954         * tools/dbus-monitor.c (handler_func): exit on disconnect
6955
6956         * dbus/dbus-transport-unix.c (do_reading): if the transport is
6957         disconnected, don't try to use the read_watch
6958
6959         * dbus/dbus-watch.c (dbus_watch_get_enabled): assert watch != NULL
6960         so we can find this bug more easily
6961
6962 2003-05-16  Havoc Pennington  <hp@redhat.com>
6963
6964         * bus/policy.c (free_rule_list_func): avoid a crash when passed
6965         NULL as DBusHashTable is annoyingly likely to do.
6966
6967 2003-05-16  Colin Walters  <walters@verbum.org>
6968
6969         * tools/dbus-monitor.c: Add --session argument and usage()
6970         function.
6971
6972         * tools/dbus-monitor.1: Update with new --session arg.
6973
6974         * bus/Makefile.am (install-data-hook): Create
6975         $(libdir)/dbus-1.0/services so that the session bus is happy.
6976
6977 2003-05-15  Havoc Pennington  <hp@redhat.com>
6978
6979         * dbus/dbus-sysdeps.c (_dbus_atomic_dec, _dbus_atomic_inc): work
6980         on non-x86. ifdef's are evil.
6981
6982 2003-05-15  Havoc Pennington  <hp@redhat.com>
6983
6984         * configure.in: 0.11
6985
6986         * NEWS: update
6987
6988         * bus/Makefile.am (initddir): apparently we are supposed to put
6989         init scripts in /etc/rc.d/init.d not /etc/init.d
6990
6991         * bus/Makefile.am: remove the "you must --enable-tests to make
6992         check" as it broke distcheck
6993
6994         * bus/Makefile.am (install-data-hook): create /etc/dbus-1/system.d
6995
6996 2003-05-13  James Willcox  <jwillcox@gnome.org>
6997
6998         * configure.in:
6999         * bus/activation.c: (bus_activation_service_created),
7000         (bus_activation_activate_service):
7001         * bus/driver.c: (bus_driver_send_service_deleted),
7002         (bus_driver_send_service_created), (bus_driver_send_service_lost),
7003         (bus_driver_send_service_acquired),
7004         (bus_driver_send_welcome_message),
7005         (bus_driver_handle_list_services):
7006         * bus/session.conf.in:
7007         * dbus/dbus-bus.c: (dbus_bus_acquire_service),
7008         (dbus_bus_service_exists), (dbus_bus_activate_service):
7009         * dbus/dbus-bus.h:
7010
7011         Add some convenience API which lets you activate a service, and did a
7012         bunch of s/0/DBUS_TYPE_INVALID/ in calls to dbus_message_append_args()
7013         and dbus_message_get_args()
7014
7015 2003-05-11  Havoc Pennington  <hp@pobox.com>
7016
7017         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix to avoid
7018         calling _dbus_marshal_validate_arg() for every byte in a byte
7019         array, etc.
7020
7021         * dbus/dbus-message-handler.c: use atomic reference counting to
7022         reduce number of locks slightly; the global lock in here sucks
7023
7024         * dbus/dbus-connection.c
7025         (_dbus_connection_update_dispatch_status_and_unlock): variant of
7026         update_dispatch_status that can be called with lock held; then use
7027         in a couple places to reduce locking/unlocking
7028         (dbus_connection_send): hold the lock over the whole function
7029         instead of acquiring it twice.
7030
7031         * dbus/dbus-timeout.c (_dbus_timeout_new): handle OOM
7032
7033         * bus/connection.c (bus_connections_setup_connection): fix access
7034         to already-freed memory.
7035
7036         * dbus/dbus-connection.c: keep a little cache of linked list
7037         nodes, to avoid using the global linked list alloc lock in the
7038         normal send-message case. Instead we just use the connection lock
7039         that we already have to take.
7040
7041         * dbus/dbus-list.c (_dbus_list_find_last): new function
7042
7043         * dbus/dbus-sysdeps.c (_dbus_atomic_inc, _dbus_atomic_dec):
7044         change to use a struct for the atomic type; fix docs,
7045         they return value before increment, not after increment.
7046
7047         * dbus/dbus-string.c (_dbus_string_append_4_aligned)
7048         (_dbus_string_append_8_aligned): new functions to try to
7049         microoptimize this operation.
7050         (reallocate_for_length): break this out of set_length(), to
7051         improve profile info, and also so we can consider inlining the
7052         set_length() part.
7053
7054         * dbus/dbus-message.c (dbus_message_new_empty_header): init data
7055         strings with some preallocation, cuts down on our calls to realloc
7056         a fair bit. Though if we can get the "move entire string to empty
7057         string" optimization below to kick in here, it would be better.
7058
7059         * dbus/dbus-string.c (_dbus_string_move): just call
7060         _dbus_string_move_len
7061         (_dbus_string_move_len): add a special case for moving
7062         an entire string into an empty string; we can just
7063         swap the string data instead of doing any reallocs.
7064         (_dbus_string_init_preallocated): new function
7065
7066 2003-05-11  Havoc Pennington  <hp@pobox.com>
7067
7068         Write a "test-profile" that does echo client-server with threads;
7069         profile reveals lock contention, memcpy/realloc of buffers, and
7070         UTF-8 validation as hot spots. 20% of lock contention eliminated
7071         with dbus_atomic_inc/dec implementation on x86.  Much remaining
7072         contention is global mempool locks for GList and DBusList.
7073
7074         * dbus/dbus-sysdeps.c (_dbus_atomic_inc, _dbus_atomic_dec): add
7075         x86 implementation
7076
7077         * dbus/dbus-connection.c (struct DBusConnection): use
7078         dbus_atomic_t for the reference count
7079
7080         * dbus/dbus-message.c (struct DBusMessage): declare
7081         dbus_atomic_t values as volatile
7082
7083         * configure.in: code to detect ability to use atomic integer
7084         operations in assembly, from GLib patch
7085
7086         * dbus/dbus-internals.c (_dbus_verbose_real): call getpid every
7087         time, tired of it being wrong in threads and forked processes
7088
7089         * glib/test-profile.c: a little program to bounce messages back
7090         and forth between threads and eat CPU
7091
7092         * dbus/dbus-connection.c: add debug spew macros for debugging
7093         thread locks; include config.h at top; fix deadlock in
7094         dbus_connection_flush()
7095
7096 2003-05-08  Havoc Pennington  <hp@pobox.com>
7097
7098         * dbus/dbus-spawn.c: s/_exit/exit/ because it was keeping gcov
7099         data from getting written, and there wasn't a good reason to
7100         use _exit really.
7101
7102         * test/decode-gcov.c (mark_inside_dbus_build_tests): don't count
7103         dbus_verbose lines in test coverage
7104         (main): add list of functions sorted by # of untested blocks
7105         to the coverage report
7106
7107         * dbus/dbus-mempool.c: put some test-only code in DBUS_BUILD_TESTS
7108
7109         * dbus/dbus-marshal.c (_dbus_marshal_test): extend test coverage
7110
7111         * dbus/dbus-message-handler.c (_dbus_message_handler_test):
7112         extend test coverage
7113
7114         * test/data/auth/cancel.auth-script: test canceling an
7115         authentication
7116
7117         * dbus/Makefile.am: remove dbus-server-debug.[hc] for now, as they
7118         aren't used. in CVS history if we end up needing them.
7119
7120 2003-05-04  Havoc Pennington  <hp@pobox.com>
7121
7122         * dbus/dbus-message-handler.c (_dbus_message_handler_test): add
7123         unit test
7124
7125         * dbus/dbus-marshal.c (_dbus_demarshal_string_array): fix this
7126         function, which assumed length was in # of strings, not bytes
7127
7128         * dbus/dbus-message.c (_dbus_message_test): add tests for some
7129         missing coverage
7130
7131         * dbus/dbus-connection.c
7132         (_dbus_connection_queue_received_message): disable function for
7133         now, we are only using it in test mode
7134
7135         * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
7136         remove a mistaken FIXME
7137
7138 2003-05-04  Havoc Pennington  <hp@pobox.com>
7139
7140         * dbus/dbus-connection.c (dbus_connection_preallocate_send):
7141         unlock mutex on successful return, patch from Anders Gustafsson
7142
7143 2003-05-04  Havoc Pennington  <hp@pobox.com>
7144
7145         * dbus-glib-1.pc.in (Requires): fix dependencies, from
7146         Anders Gustafsson
7147
7148 2003-05-04  Havoc Pennington  <hp@pobox.com>
7149
7150         * tools/dbus-launch.c: implement
7151
7152         * bus/main.c (main), bus/bus.c (bus_context_new):
7153         implement --print-pid and --fork
7154
7155 2003-05-03  Havoc Pennington  <hp@redhat.com>
7156
7157         * dbus/dbus-address.c (dbus_parse_address): fix bug when a key in
7158         the address had no value, and add to test suite. Fix and
7159         regression test from Miloslav Trmac
7160
7161 2003-05-03  Havoc Pennington  <hp@pobox.com>
7162
7163         * dbus/dbus-watch.c (dbus_watch_handle): warn and return if a
7164         watch is invalid when handled
7165
7166         * tools/Makefile.am, tools/dbus-launch.c, tools/dbus-launch.1: add
7167         dbus-launch utility to launch the bus from a shell script.  Didn't
7168         actually implement dbus-launch yet, it's just a placeholder still.
7169
7170 2003-05-03  Havoc Pennington  <hp@pobox.com>
7171
7172         * bus/Makefile.am, bus/dbus-daemon-1.1.in: man page for the
7173         daemon; also documents daemon config file, so replaces
7174         doc/config-file.txt. Corrected some stuff from config-file.txt in
7175         the process of moving it.
7176
7177 2003-05-03  Havoc Pennington  <hp@pobox.com>
7178
7179         * tools/Makefile.am, tools/dbus-send.1, tools/dbus-monitor.1:
7180         add some man pages
7181
7182 2003-05-03  Colin Walters  <walters@verbum.org>
7183
7184         * dbus/dbus-sysdeps.c (fill_user_info): Test against
7185         DBUS_UID_UNSET to determine whether to do a uid lookup or not.
7186
7187         * Makefile.am: Update to use new .pc versioning scheme.
7188
7189 2003-05-02  Havoc Pennington  <hp@redhat.com>
7190
7191         * bus/system.conf.in: allow send/receive to/from message bus
7192         service
7193
7194 2003-04-30  Havoc Pennington  <hp@redhat.com>
7195
7196         * configure.in: print a note when building with unit tests and
7197         without assertions
7198
7199 2003-04-30  Havoc Pennington  <hp@redhat.com>
7200
7201         * Makefile.am: add a check-local that complains if you didn't
7202         configure with --enable-tests
7203
7204 2003-04-29  Havoc Pennington  <hp@redhat.com>
7205
7206         * glib/dbus-gmain.c: docs cleanups
7207
7208         * dbus/dbus-types.h: add docs on int64 types
7209
7210         * dbus/dbus-memory.c: fix docs to avoid putting private API in
7211         public API docs section
7212
7213 2003-04-29  Havoc Pennington  <hp@redhat.com>
7214
7215         * dbus-1.pc.in, dbus-glib-1.pc.in: rename these from
7216         dbus-1.0.pc.in, dbus-glib-1.0.pc.in. As these change with the
7217         parallel install API version, not with the D-BUS package version.
7218
7219         * HACKING: move some of README over here
7220
7221         * README: updates, and document API/ABI policy
7222
7223         * configure.in: reindentation
7224
7225 2003-04-29  Havoc Pennington  <hp@redhat.com>
7226
7227         * dbus/dbus.h: add "you have to define DBUS_API_SUBJECT_TO_CHANGE
7228         to use this library" to be sure people have the right
7229         expectations.
7230
7231 2003-04-28  Havoc Pennington  <hp@redhat.com>
7232
7233         * configure.in: add --enable-docs which by default is auto yes if
7234         doxygen and db2html found, no otherwise; but can be forced on/off
7235
7236         * doc/Makefile.am: conditionalize whether to build docs on
7237         --enable-docs
7238
7239 2003-04-28  Havoc Pennington  <hp@redhat.com>
7240
7241         * configure.in: 0.10
7242
7243         * NEWS: update
7244
7245         * bus/system.conf.in: add <includedir>system.d</includedir>
7246
7247         * dbus/dbus-userdb.c (_dbus_user_database_lookup): fix bug when
7248         username was provided but not uid
7249
7250         * bus/config-parser.c (struct BusConfigParser): keep track of
7251         whether the parser is toplevel or was included; change some
7252         of the error handling if it's included.
7253
7254 2003-04-27  Havoc Pennington  <hp@pobox.com>
7255
7256         Unbreak my code...
7257
7258         * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
7259         report correct status if we finish processing authentication
7260         inside this function.
7261
7262         * bus/activation.c (try_send_activation_failure): use
7263         bus_transaction_send_error_reply
7264
7265         * bus/connection.c (bus_connection_get_groups): return an error
7266         explaining the problem
7267
7268         * bus/bus.c (bus_context_check_security_policy): implement
7269         restriction here that inactive connections can only send the
7270         hello message. Also, allow bus driver to send anything to
7271         any recipient.
7272
7273         * bus/connection.c (bus_connection_complete): create the
7274         BusClientPolicy here instead of on-demand.
7275         (bus_connection_get_policy): don't return an error
7276
7277         * dbus/dbus-message.c (dbus_message_new_error_reply): allow NULL
7278         sender field in message being replied to
7279
7280         * bus/bus.c (bus_context_check_security_policy): fix silly typo
7281         causing it to return FALSE always
7282
7283         * bus/policy.c (bus_client_policy_check_can_send): fix bug where
7284         we checked sender rather than destination
7285
7286 2003-04-25  Havoc Pennington  <hp@redhat.com>
7287
7288         test suite is slightly hosed at the moment, will fix soon
7289
7290         * bus/connection.c (bus_connections_expire_incomplete): fix to
7291         properly disable the timeout when required
7292         (bus_connection_set_name): check whether we can remove incomplete
7293         connections timeout after we complete each connection.
7294
7295         * dbus/dbus-mainloop.c (check_timeout): fix this up a bit,
7296         probably still broken.
7297
7298         * bus/services.c (bus_registry_acquire_service): implement max
7299         number of services owned, and honor allow/deny rules on which
7300         services a connection can own.
7301
7302         * bus/connection.c (bus_connection_get_policy): report errors here
7303
7304         * bus/activation.c: implement limit on number of pending
7305         activations
7306
7307 2003-04-25  Havoc Pennington  <hp@redhat.com>
7308
7309         * dbus/dbus-transport.c (_dbus_transport_get_unix_user): fix bug
7310         where we used >= 0 instead of != DBUS_UID_UNSET.
7311
7312 2003-04-25  Havoc Pennington  <hp@redhat.com>
7313
7314         * glib/dbus-gmain.c (remove_watch): fix for a crash when watches
7315         were toggled without add/remove, fix from Anders Gustafsson
7316
7317 2003-04-24  Havoc Pennington  <hp@redhat.com>
7318
7319         * test/data/valid-config-files/basic.conf: add <limit> tags to
7320         this test
7321
7322         * bus/config-parser.h, bus/config-parser.c, bus/bus.c: Implement
7323         <limit> tag in configuration file.
7324
7325 2003-04-24  Havoc Pennington  <hp@redhat.com>
7326
7327         * bus/dispatch.c: somehow missed some name_is
7328
7329         * dbus/dbus-timeout.c (_dbus_timeout_set_enabled)
7330         (_dbus_timeout_set_interval): new
7331
7332         * bus/connection.c (bus_connections_setup_connection): record time
7333         when each connection is first set up, and expire them after the
7334         auth timeout passes.
7335
7336 2003-04-24  Havoc Pennington  <hp@redhat.com>
7337
7338         * dbus/dbus-message.c (dbus_message_name_is): rename
7339         (dbus_message_service_is): rename
7340         (dbus_message_sender_is): rename
7341         (dbus_message_get_service): rename
7342
7343 2003-04-24  Havoc Pennington  <hp@redhat.com>
7344
7345         * configure.in: add --enable-checks
7346
7347         * dbus/dbus-message.c (dbus_message_new): reverse name/service arguments
7348
7349         * dbus/dbus-connection.c (dbus_connection_preallocate_send): fix
7350         to use thread locks.
7351         (_dbus_connection_handler_destroyed_locked): move some private
7352         functions into proper docs group
7353
7354         * dbus/dbus-internals.h: add _dbus_return_if_fail,
7355         _dbus_return_val_if_fail
7356
7357         Throughout: use dbus_return_if_fail
7358
7359 2003-04-23  James Willcox  <jwillcox@gnome.org>
7360
7361         * glib/dbus-glib.h:
7362         * glib/dbus-gmain.c: (add_timeout), (wakeup_main), (create_source),
7363         (dbus_connection_setup_with_g_main),
7364         (dbus_server_setup_with_g_main):
7365         * glib/test-dbus-glib.c: (main):
7366         * glib/test-thread-client.c: (main):
7367         * glib/test-thread-server.c: (new_connection_callback), (main):
7368         * tools/dbus-monitor.c: (main):
7369
7370         Added a GMainContext argument to dbus_connection_setup_with_g_main()
7371         and dbus_server_setup_with_g_main().
7372
7373 2003-04-20  Havoc Pennington  <hp@pobox.com>
7374
7375         * doc/dbus-specification.sgml: document the restrictions on
7376         message and service names
7377
7378 2003-04-22  Havoc Pennington  <hp@redhat.com>
7379
7380         * dbus/dbus-message.c, dbus/dbus-marshal.c: add 64-bit integer
7381         support, and do some code cleanups to share more code and
7382         speed up array marshal/demarshal.
7383
7384         * dbus-1.0.pc.in (Cflags): put libdir include file in cflags
7385
7386         * configure.in: generate dbus-arch-deps.h
7387
7388         * dbus/dbus-protocol.h (DBUS_TYPE_INT64, DBUS_TYPE_UINT64): add
7389         64-bit typecodes
7390
7391 2003-04-22  Havoc Pennington  <hp@redhat.com>
7392
7393         * test/data/valid-messages/opposite-endian.message: fix test
7394         to use proper type for rply field
7395
7396         * test/data/invalid-messages: add tests for below validation
7397
7398         * dbus/dbus-message.c (decode_header_data): validate field types,
7399         and validate that named fields are valid names
7400         (decode_name_field): consider messages in the
7401         org.freedesktop.Local. namespace to be invalid.
7402
7403         * dbus/dbus-string.c (_dbus_string_validate_name): new
7404
7405 2003-04-19  Havoc Pennington  <hp@pobox.com>
7406
7407         * bus/driver.c (bus_driver_handle_hello): check limits and
7408         return an error if they are exceeded.
7409
7410         * bus/connection.c: maintain separate lists of active and inactive
7411         connections, and a count of each. Maintain count of completed
7412         connections per user. Implement code to check connection limits.
7413
7414         * dbus/dbus-list.c (_dbus_list_unlink): export
7415
7416         * bus/bus.c (bus_context_check_security_policy): enforce a maximum
7417         number of bytes in the message queue for a connection
7418
7419 2003-04-18  Havoc Pennington  <hp@pobox.com>
7420
7421         * dbus/dbus-auth.c (record_mechanisms): memleak fixes
7422
7423         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): fix some
7424         memleaks
7425
7426         * dbus/dbus-keyring.c (add_new_key): fix a memleak, and
7427         on realloc be sure to update the pointer in the keyring
7428
7429         * dbus/dbus-string.c (_dbus_string_zero): compensate for align
7430         offset to avoid writing to unallocated memory
7431
7432         * dbus/dbus-auth.c (process_rejected): return FALSE if we fail to
7433         try the next mechanism, so we properly handle OOM
7434
7435         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): fix double-free
7436         on OOM.
7437         (_dbus_keyring_new): fix OOM bug
7438         (_dbus_keyring_new_homedir): always set error; impose a maximum
7439         number of keys we'll load from the file, mostly to speed up the
7440         test suite and make its OOM checks more useful, but also for
7441         general sanity.
7442
7443         * dbus/dbus-auth.c (process_error_server): reject authentication
7444         if we get an error from the client
7445         (process_cancel): on cancel, send REJECTED, per the spec
7446         (process_error_client): send CANCEL if we get an error from the
7447         server.
7448
7449 2003-04-18  Havoc Pennington  <hp@pobox.com>
7450
7451         * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix UMR in verbose
7452         debug spew
7453
7454         * dbus/dbus-auth.c (handle_client_data_cookie_sha1_mech): fix OOM
7455         handling problem
7456
7457         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): only whine
7458         about DBUS_TEST_HOMEDIR once
7459
7460         * bus/Makefile.am (TESTS_ENVIRONMENT): put DBUS_TEST_HOMEDIR in
7461         the environment
7462
7463         * bus/dispatch.c (bus_dispatch_sha1_test): actually load sha1
7464         config file so we test the right thing
7465
7466         Throughout: assorted docs improvements
7467
7468 2003-04-18  Havoc Pennington  <hp@pobox.com>
7469
7470         * glib/dbus-gmain.c: adapt to watch changes
7471
7472         * bus/bus.c, bus/activation.c, etc.: adjust to watch changes
7473
7474         * dbus/dbus-server.h: remove dbus_server_handle_watch
7475
7476         * dbus/dbus-connection.h: remove dbus_connection_handle_watch
7477
7478         * dbus/dbus-watch.c (dbus_watch_handle): change DBusWatch to work
7479         like DBusTimeout, so we don't need dbus_connection_handle_watch
7480         etc.
7481
7482 2003-04-17  Havoc Pennington  <hp@redhat.com>
7483
7484         * dbus/dbus-userdb.c, dbus/dbus-sysdeps.c: redo all the passwd
7485         database usage so it all goes via the DBusUserDatabase cache.
7486
7487 2003-04-17  Havoc Pennington  <hp@redhat.com>
7488
7489         * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix logic so that if
7490         there was an OOM watch we skipped, we always return TRUE so we
7491         iterate again to have a look at it again. Fixes test suite hang.
7492         Code rearrangement also lets us lose some memset and only iterate
7493         over callbacks once.
7494
7495         * bus/driver.c (bus_driver_handle_message): sense of test for
7496         reply was backward
7497
7498 2003-04-16  Havoc Pennington  <hp@pobox.com>
7499
7500         * doc/dbus-specification.sgml: make spec say serials are unsigned
7501
7502         * dbus/dbus-message.h: change message serials to unsigned
7503
7504         * dbus/dbus-connection.c: adapt to message serials being unsigned
7505
7506 2003-04-15  Havoc Pennington  <hp@pobox.com>
7507
7508         * bus/bus.c: create and keep around a shared DBusUserDatabase
7509         object.
7510
7511         * bus/connection.c (bus_connection_get_groups): don't cache
7512         groups for user in the connection object, since user database
7513         object now does that.
7514
7515 2003-04-16  Havoc Pennington  <hp@redhat.com>
7516
7517         * dbus/dbus-message.c (_dbus_message_add_size_counter): keep a
7518         list of size counters
7519         (_dbus_message_loader_putback_message_link): put back a popped link
7520
7521         * dbus/dbus-connection.c
7522         (dbus_connection_set_max_live_messages_size): rename
7523         max_received_size
7524         (dbus_connection_get_outgoing_size): get size of outgoing
7525         queue
7526         (_dbus_connection_set_connection_counter): remove this cruft
7527
7528 2003-04-14  Havoc Pennington  <hp@redhat.com>
7529
7530         * dbus/dbus-userdb.c: user database abstraction, mostly to get
7531         caching, but at some point we might want to be able to use a
7532         different database.
7533
7534         * bus/dispatch.c (bus_dispatch_sha1_test): add a test that uses
7535         SHA1 conf file to test the sha1 auth mechanism, since the regular
7536         test always uses EXTERNAL when available.
7537
7538         * configure.in,
7539         test/data/valid-config-files/debug-allow-all-sha1.conf.in:
7540         add conf file that requires use of sha1 auth
7541
7542 2003-04-13  Havoc Pennington  <hp@pobox.com>
7543
7544         * tools/dbus-send.c, tools/dbus-monitor.c: two utility programs
7545         from Philip Blundell to send messages and monitor them.
7546
7547 2003-04-13  Havoc Pennington  <hp@pobox.com>
7548
7549         * dbus/dbus-mainloop.c: fix some reentrancy issues by refcounting
7550         callbacks
7551
7552         * test/data/valid-config-files/debug-allow-all.conf.in: allow all
7553         users
7554
7555         * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
7556         fix to only recover unused bytes if we're already authenticated
7557         (_dbus_transport_get_is_authenticated): fix to still mark us
7558         authenticated if there are unused bytes.
7559
7560         * bus/dispatch.c: implement security policy checking
7561
7562         * bus/connection.c (bus_transaction_send_from_driver): new
7563
7564         * bus/bus.c (bus_context_check_security_policy): new
7565
7566         * bus/dispatch.c (send_service_nonexistent_error): delete this,
7567         now we just set the DBusError and it gets converted to an error
7568         reply.
7569
7570         * bus/connection.c (allow_user_function): enable code using actual
7571         data from the config file
7572
7573         * bus/policy.c (list_allows_user): handle wildcard rules for
7574         user/group connection perms
7575
7576 2003-04-13  Havoc Pennington  <hp@pobox.com>
7577
7578         * bus/config-parser.c: Load up the BusPolicy and BusPolicyRules
7579
7580         * dbus/dbus-sysdeps.c (_dbus_get_user_id): new function
7581
7582         * bus/policy.c (bus_policy_append_mandatory_rule)
7583         (bus_policy_append_default_rule, bus_policy_append_user_rule)
7584         (bus_policy_append_group_rule): new functions
7585
7586 2003-04-12  Havoc Pennington  <hp@pobox.com>
7587
7588         * bus/config-parser.c (bus_config_parser_new): fix a memleak
7589
7590         * dbus/dbus-sysdeps.c: change DBusCredentials to use longs for
7591         the pid/gid/uid, just for paranoia.
7592
7593         * test/break-loader.c (randomly_do_n_things): find a byte
7594         containing a type code, and randomly change it to a different
7595         type code.
7596
7597 2003-04-12  Havoc Pennington  <hp@pobox.com>
7598
7599         * bus/policy.h: change BusPolicy to be the thing from the config
7600         file, and rename old BusPolicy to BusClientPolicy
7601
7602         * bus/bus.c, bus/connection.c, bus/config-parser.c: change to
7603         match change in how policy works
7604
7605         * dbus/dbus-internals.h: mark assert_not_reached as
7606         __attribute((noreturn))__
7607
7608 2003-04-11  Havoc Pennington  <hp@redhat.com>
7609
7610         * doc/dbus-specification.sgml: fix a spot with the wrong name for
7611         the broadcast service. Use boolean return for ServiceExists.
7612
7613 2003-04-11  Havoc Pennington  <hp@redhat.com>
7614
7615         * configure.in: add another directory to look for qt in.
7616
7617 2003-04-11  Havoc Pennington  <hp@redhat.com>
7618
7619         * AUTHORS: add Colin Walters
7620
7621 2003-04-11  Havoc Pennington  <hp@redhat.com>
7622
7623         * NEWS: update
7624
7625         * configure.in: 0.9
7626
7627 2003-04-11  Havoc Pennington  <hp@redhat.com>
7628
7629         * bus/messagebus.in: remove pid file when stopping the
7630         message bus, since the bus won't have privileges to remove it
7631         itself.
7632
7633 2003-04-11  Havoc Pennington  <hp@redhat.com>
7634
7635         * bus/bus.c (bus_context_new): move credentials change after
7636         creating pidfile
7637
7638 2003-04-11  Havoc Pennington  <hp@pobox.com>
7639
7640         * test/decode-gcov.c: add "below average functions" to the
7641         coverage report, and change how some of the code works.
7642
7643         * bus/test-main.c: bracket some stuff in DBUS_BUILD_TESTS so it's
7644         not in the coverage stats.
7645
7646         * test/test-service.c (main): use _dbus_verbose not fprintf in a
7647         couple places so running the test suite doesn't result in megaspam.
7648
7649 2003-04-11  Havoc Pennington  <hp@pobox.com>
7650
7651         * bus/dispatch.c (check_existent_service_activation): accept a no
7652         memory error in a place we didn't before
7653
7654         * bus/test.c (bus_test_run_everything): remove hacky "do it twice
7655         in case the first one failed," since the test suite is less
7656         broken now.
7657
7658 2003-04-10  Havoc Pennington  <hp@pobox.com>
7659
7660         * bus/dispatch.c (check_segfault_service_activation): add test
7661         for launching an executable that just crashes.
7662
7663         * test/test-segfault.c (main): try setting coredumpsize to 0 so we
7664         don't leave a million cores. We'll see how portable this is.
7665
7666 2003-04-10  Havoc Pennington  <hp@pobox.com>
7667
7668         * dbus/dbus-spawn.c (_dbus_spawn_async_with_babysitter): move all
7669         the possible parent failures before we fork, so that we don't
7670         fail to create a babysitter after creating the child.
7671
7672         * bus/activation.c (bus_activation_activate_service): kill child
7673         if we don't successfully complete the activation.
7674
7675 2003-04-10  Havoc Pennington  <hp@redhat.com>
7676
7677         * dbus/dbus-connection.c (dbus_connection_flush): don't spin on
7678         the connection if it's disconnected
7679
7680         * bus/activation.c (bus_activation_service_created): use new
7681         transaction features to roll back removal of pending activation if
7682         we don't successfully create the service after all. Don't remove
7683         pending activation if the function fails.
7684
7685         * dbus/dbus-list.c (_dbus_list_insert_before_link)
7686         (_dbus_list_insert_after_link): new code to facilitate
7687         services.c fixes
7688
7689         * dbus/dbus-hash.c (_dbus_hash_table_insert_string_preallocated):
7690         new functionality, so we can preallocate the ability to insert
7691         into a hash table.
7692
7693         * bus/connection.c (bus_transaction_add_cancel_hook): new function
7694         allowing us to put custom hooks in a transaction to be used for
7695         cancelling said transaction
7696
7697         * doc/dbus-specification.sgml: add some discussion of secondary
7698         service owners, and disallow zero-length service names
7699
7700         * bus/services.c (bus_registry_acquire_service): new function,
7701         splits out part of bus_driver_handle_acquire_service() and fixes
7702         a bug where we didn't remove the service doing the acquiring
7703         from the secondary queue if we failed to remove the current owner
7704         from the front of the queue.
7705
7706 2003-04-10  Alexander Larsson  <alexl@redhat.com>
7707
7708         * doc/dbus-specification.sgml:
7709         s/org.freedesktop.Broadcast/org.freedesktop.DBus.Broadcast/
7710
7711 2003-04-10  Alexander Larsson  <alexl@redhat.com>
7712
7713         * bus/.cvsignore:
7714         * glib/.cvsignore:
7715         * test/.cvsignore:
7716         Added files to cvsignore
7717
7718         * dbus/dbus-message.h:
7719         * dbus/dbus-message.c: (dbus_message_iter_get_named):
7720         Make get_named() take two out argument and return a boolean.
7721         (dbus_message_iter_get_args_valist):
7722         Update usage of get_named().
7723         (dbus_message_iter_append_byte):
7724         Fix typo
7725         (dbus_message_iter_append_named)
7726         Fix typo
7727         (message_iter_test), (check_message_handling_type), (_dbus_message_test):
7728         More tests.
7729
7730 2003-04-10  Alexander Larsson  <alexl@redhat.com>
7731
7732         * dbus/dbus-marshal.[ch]:
7733         Add array_type_pos argument to _dbus_marshal_validate_arg.
7734         Let you pass a NULL end_pos to _dbus_marshal_validate_type.
7735
7736         * dbus/dbus-message.[ch]:
7737         Multi-dimensional arrays have full type specification in the
7738         outermost array. Iter code re-arranged to handle this.
7739         Added some more iter tests.
7740
7741         * doc/dbus-specification.sgml:
7742         Add me to authors.
7743         Remove old FIXME.
7744         Update new array encoding description.
7745         Correct DBUS_SERVICE_FLAGS_REPLACE_EXISTING description.
7746
7747         * test/data/invalid-messages/array-with-mixed-types.message:
7748         * test/data/valid-messages/array-of-array-of-uint32.message:
7749         Change to the new array format.
7750
7751         * test/data/invalid-messages/too-short-dict.message:
7752         Fix bug in test.
7753
7754         * test/data/valid-messages/recursive-types.message:
7755         Fix up and extend test.
7756
7757 2003-04-10  Havoc Pennington  <hp@pobox.com>
7758
7759         * bus/dispatch.c: lots of fixes
7760
7761         * dbus/dbus-mainloop.c (_dbus_loop_dispatch): export
7762         (_dbus_loop_iterate): remove old "quit if no callbacks" code,
7763         that was crack, broke the test service.
7764
7765         * dbus/dbus-transport.c (_dbus_transport_open): fix error
7766         handling to avoid piling up errors if we get a failure on the
7767         first address.
7768
7769         * dbus/dbus-internals.c (_dbus_real_assert_not_reached): include
7770         pid in assertion failures.
7771
7772         * dbus/dbus-mainloop.c (_dbus_loop_iterate): use static arrays up
7773         to some fixed size of file descriptor array. Don't return TRUE
7774         anytime a timeout exists, that led to lots of busy loop silliness
7775         in the tests.
7776
7777 2003-04-09  Havoc Pennington  <hp@redhat.com>
7778
7779         * dbus/dbus-mainloop.c (check_timeout): fix timeouts, I thought
7780         I'd checked this in earlier but hadn't.
7781
7782 2003-04-09  Havoc Pennington  <hp@redhat.com>
7783
7784         * bus/dispatch.c (bus_dispatch_test): get a bit further through
7785         the activation test (man this is getting old!)
7786
7787 2003-04-09  Havoc Pennington  <hp@redhat.com>
7788
7789         * test/test-utils.c: use dispatch status function to fix this up
7790
7791         * bus/connection.c (connection_watch_callback): don't dispatch
7792         from here
7793         (connection_timeout_callback): don't dispatch from here
7794         (bus_connections_setup_connection): set the dispatch status function
7795         (bus_connection_disconnected): unset it
7796
7797         * dbus/dbus-mainloop.c (_dbus_loop_queue_dispatch): new function
7798         used to add a connection to be dispatched
7799         (_dbus_loop_iterate): do the dispatching at the end of each
7800         iteration
7801
7802         * dbus/dbus-connection.c
7803         (dbus_connection_set_dispatch_status_function): new function
7804         allowing us to fix up main loop usage
7805         (_dbus_connection_last_unref): free all the various function
7806         user data
7807         (dbus_connection_dispatch): call the DispatchStatusFunction
7808         whenever this function returns
7809         (dbus_connection_handle_watch): call DispatchStatusFunction
7810         (dbus_connection_send_with_reply_and_block): call DispatchStatusFunction
7811         (reply_handler_timeout): call DispatchStatusFunction
7812         (dbus_connection_flush): call DispatchStatusFunction
7813
7814 2003-04-09  Havoc Pennington  <hp@redhat.com>
7815
7816         * dbus/dbus-bus.c (dbus_bus_register): fix up error handling and
7817         a memory leak
7818
7819         * bus/dispatch.c (check_service_activated): fix bug in test
7820
7821         * dbus/dbus-mainloop.c (check_timeout): fix this up
7822
7823         * dbus/dbus-internals.c (_dbus_verbose_real): include PID in
7824         verbose output so we can sort out output from different processes,
7825         e.g. in the activation case.
7826
7827 2003-04-08  Colin Walters  <walters@gnu.org>
7828
7829         * bus/bus.c (struct BusContext) [pidfile]: New member, to store
7830         the pid file.
7831         (bus_context_new): Set it.
7832         (bus_context_unref): Use it to delete the pid file.
7833
7834 2003-04-08  Havoc Pennington  <hp@redhat.com>
7835
7836         * test/data/invalid-messages/array-with-mixed-types.message:
7837         regression test that fails for the moment
7838
7839         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): reorder
7840         tests for convenience
7841
7842         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): don't allow
7843         array of nil, it broke things.
7844
7845         * test/data/invalid-messages/array-of-nil.message: regression test
7846
7847         * test/data/valid-messages/array-of-array-of-uint32.message:
7848         happened to write this so added it to suite
7849
7850 2003-04-08  Havoc Pennington  <hp@redhat.com>
7851
7852         * bus/driver.c (bus_driver_handle_acquire_service): init
7853         retval/reply before checking name
7854
7855         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add a
7856         recursion depth argument
7857
7858         * dbus/dbus-message.h (struct DBusMessageIter): put some padding
7859         in the public struct for future extension
7860
7861         * dbus/dbus-message-builder.c (_dbus_message_data_load): fix
7862         typo
7863
7864         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix a verbose
7865         message
7866
7867         * doc/dbus-specification.sgml: fix typo
7868
7869 2003-04-08  Alexander Larsson  <alexl@redhat.com>
7870
7871         Implemented recursive types, named types and new-style iters
7872
7873         * bus/driver.c:
7874         * glib/test-thread-client.c: (thread_func):
7875         * glib/test-thread-server.c: (handle_test_message):
7876         * test/test-service.c: (handle_echo):
7877         Update to new api
7878
7879         * dbus/Makefile.am:
7880         * dbus/dbus-dict.c:
7881         * dbus/dbus-dict.h:
7882         * dbus/dbus.h
7883         Remove DBusDict
7884
7885         * dbus/dbus-internals.c: (_dbus_type_to_string):
7886         Update for new types.
7887
7888         * dbus/dbus-marshal.[ch]:
7889         Implement recursive types and the new marshalling format.
7890         Remove hardcoded dict marshalling.
7891         Marshal named types.
7892
7893         * dbus/dbus-message-builder.c:
7894         Add BYTE_ARRAY.
7895         Remove references to old types
7896
7897         * dbus/dbus-message.[ch]:
7898         New non-refcounted iter API that supports recursive iters.
7899         Use iters for appending, including support for recursive
7900         iters.
7901         Add byte and named type support.
7902         Update everything to new marshalling formats.
7903         Add tests for new API.
7904
7905         * dbus/dbus-protocol.h:
7906         Remove old array types.
7907         Add types: BYTE, ARRAY, DICT, NAMED
7908
7909         * dbus/dbus-string.c:
7910         * dbus/dbus-sysdeps.c:
7911         Make parse_double locale safe.
7912
7913         * dbus/dbus-test-main.c:
7914         Call setlocale.
7915
7916         * dbus/dbus-test.c:
7917         Kill dict test
7918
7919         * doc/dbus-specification.sgml:
7920         Update spec
7921
7922         * test/data/incomplete-messages/missing-body.message:
7923         * test/data/invalid-messages/bad-boolean.message:
7924         * test/data/invalid-messages/bad-boolean-array.message:
7925         * test/data/invalid-messages/boolean-array-length-too-long.message-raw:
7926         * test/data/invalid-messages/boolean-has-no-value.message-raw:
7927         * test/data/invalid-messages/too-short-dict.message:
7928         * test/data/valid-messages/dict-simple.message:
7929         * test/data/valid-messages/dict.message:
7930         * test/data/valid-messages/emptiness.message:
7931         * test/data/valid-messages/lots-of-arguments.message:
7932         * test/data/valid-messages/no-padding.message:
7933         * test/data/valid-messages/recursive-types.message:
7934         Add missing NAME fields
7935         Fix up dicts & arrays
7936
7937         * test/data/invalid-messages/dict-with-nil-value.message:
7938         Removed, this is not invalid anymore.
7939
7940         * test/data/valid-messages/recursive-types.message:
7941         Add new test for deeply recursive types.
7942
7943 2003-04-07  Havoc Pennington  <hp@pobox.com>
7944
7945         * bus/driver.c (bus_driver_handle_acquire_service): return an
7946         error if you try to acquire a service that starts with ':'
7947
7948 2003-04-07  Havoc Pennington  <hp@redhat.com>
7949
7950         * doc/dbus-specification.sgml: require that base service names
7951         start with ':' and that the base service is created/deleted
7952         as first and last things a connection does on the bus
7953
7954         * bus/dispatch.c (check_existent_service_activation): lots more
7955         work on the activation test; it doesn't fully pass yet...
7956
7957         * test/test-service.c (main): fix so we don't memleak the
7958         connection to the message bus
7959         (filter_func): accept a message asking us to exit
7960
7961 2003-04-06  Havoc Pennington  <hp@pobox.com>
7962
7963         * qt/Makefile.am (dbusinclude_HEADERS): install dbus-qt.h,
7964         from Colin Walters
7965
7966         * configure.in: fixes to Qt detection from Colin Walters
7967
7968         * doc/Makefile.am: Only remove generated docbook dirs if they
7969         exist, from Colin Walters
7970
7971         * dbus/dbus-bus.c: change how we set well-known connections to
7972         NULL, so that it works if a single connection is stored in
7973         two well-known array slots.
7974
7975         * test/Makefile.am: remove a lot of stuff that isn't immediately
7976         useful, it's in CVS history if we want it.
7977
7978         * test/test-service.c: use dbus-mainloop instead of that
7979         watch.[hc] crack
7980
7981 2003-04-06  Havoc Pennington  <hp@pobox.com>
7982
7983         * dbus/Makefile.am: split lists of sources into stuff that goes in
7984         the library, util functions that go in the lib and are also used
7985         elsewhere, and util functions that are used in tests/daemon but
7986         don't go in the lib.
7987
7988         * dbus/dbus-mainloop.h, dbus/dbus-mainloop.c: move bus/loop.[hc]
7989         here so it can be used in test binaries also
7990
7991 2003-04-06  Havoc Pennington  <hp@pobox.com>
7992
7993         * dbus/dbus-sysdeps.c (_dbus_become_daemon): write the pidfile
7994         here in the parent process, so we can return an error if it
7995         fails. Also, move some of the code into the child so the parent
7996         is less hosed if we fail midway through.
7997
7998         * bus/bus.c (bus_context_new): move pidfile detection further up
7999         in the function, before we start overwriting sockets and such.
8000
8001         * bus/messagebus.in: adjust this a bit, not sure if it will work.
8002
8003         * configure.in: add --with-system-pid-file and --with-system-socket
8004
8005 2003-04-06  Colin Walters  <walters@verbum.org>
8006
8007         * configure.in (DBUS_SYSTEM_PID_FILE): New variable.
8008
8009         * bus/system.conf.in: Declare a pidfile.
8010
8011         * bus/bus.c (bus_context_new): Test for an existing pid file, and
8012         create one (if appropriate).
8013
8014         * bus/config-parser.c (enum ElementType) [ELEMENT_PIDFILE]: New.
8015         (struct BusConfigParser) [pidfile]: New.
8016         (element_type_to_name, merge_included, start_busconfig_child)
8017         (bus_config_parser_end_element, bus_config_parser_content): Handle it.
8018         (bus_config_parser_unref): Free it.
8019         (bus_config_parser_get_pidfile): New function.
8020
8021         * bus/config-parser.h (_dbus_write_pid_file): Prototype.
8022
8023         * dbus/dbus-errors.h (DBUS_ERROR_PIDFILE_EXISTS): New error.
8024
8025         * dbus/dbus-sysdeps.c (_dbus_write_pid_file): New function.
8026
8027         * dbus/dbus-sysdeps.h: Prototype it.
8028
8029 2003-04-06  Havoc Pennington  <hp@pobox.com>
8030
8031         * bus/bus.c (bus_context_new): print the address in here, rather
8032         than in main(), because we need to do it before forking the daemon
8033
8034         * bus/dispatch.c (send_service_nonexistent_error): set the sender
8035         on the service nonexistent error
8036
8037         * bus/driver.c (bus_driver_handle_acquire_service): set the
8038         sender on the AcquireService reply
8039
8040         * test/data/valid-config-files/debug-allow-all.conf.in: Make test
8041         server also listen on a UNIX socket so services can connect to it.
8042
8043 2003-04-06  Havoc Pennington  <hp@pobox.com>
8044
8045         * dbus/dbus-threads.c: Redo how the fake debug mutexes are done
8046         so it detects deadlocks and also we actually init threads when
8047         debugging.
8048
8049 2003-04-06  Havoc Pennington  <hp@pobox.com>
8050
8051         * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
8052         save the domain socket name, and unlink it when we disconnect the
8053         server. Means that at least when we exit normally, we won't leave
8054         a bunch of junk in /tmp
8055
8056         * dbus/dbus-transport-unix.c
8057         (_dbus_transport_new_for_domain_socket): code cleanup (nicer
8058         memory management). (I was making a real change here but then
8059         didn't)
8060
8061 2003-04-06  Havoc Pennington  <hp@pobox.com>
8062
8063         * bus/bus.c (bus_context_new): fix wrong handling of
8064         server_data_slot_unref() in the error case.
8065
8066         * dbus/dbus-internals.h (_dbus_assert): change so it passes
8067         "(condition) != 0" to _dbus_real_assert so that
8068         "_dbus_assert (pointer)" doesn't cause a warning
8069
8070         * bus/main.c (main): accept --print-address option to print out
8071         the message bus address
8072
8073         * dbus/dbus-sysdeps.c (_dbus_generate_random_ascii): export this
8074
8075         * dbus/dbus-transport.c (_dbus_transport_open): special error for
8076         "tmpdir" option to unix: address on client side
8077
8078         * dbus/dbus-server.c (dbus_server_listen): handle "tmpdir" option
8079         to unix: address
8080
8081         * configure.in (TEST_SOCKET_DIR): locate a temporary directory
8082         we can use to create sockets in the test suite.
8083
8084         * bus/main.c (signal_handler): on SIGTERM, exit the daemon
8085         cleanly. To be used for testing.
8086
8087         * dbus/dbus-spawn.c (babysit): use _dbus_set_signal_handler()
8088
8089         * dbus/dbus-sysdeps.c (_dbus_set_signal_handler): new
8090
8091         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
8092         handle trying to call this when there's no servers active
8093
8094 2003-04-05  Havoc Pennington  <hp@pobox.com>
8095
8096         * NEWS: update
8097
8098         * configure.in: 0.8
8099
8100 2003-04-05  Havoc Pennington  <hp@pobox.com>
8101
8102         * bus/bus.c (setup_server): fix this so dbus-daemon-1 doesn't
8103         crash on startup. Need to get "try starting the daemon"
8104         in the test suite I guess. ;-)
8105
8106         * dbus/dbus-server.h, dbus/dbus-server.c: remove the stuff that
8107         tracked the number of open connections; it's better done in
8108         application-specific code as you want it to span all servers etc.
8109
8110 2003-04-05  Havoc Pennington  <hp@pobox.com>
8111
8112         * bus/Makefile.am (install-data-hook): add missing DESTDIR,
8113         patch from Colin Walters
8114
8115 2003-04-05  Havoc Pennington  <hp@pobox.com>
8116
8117         * doc/config-file.txt (Elements): fix docs of <auth> to reflect
8118         reality; in fact multiple mechanisms are allowed.
8119
8120         * dbus/dbus-internals.c (_dbus_real_assert)
8121         (_dbus_real_assert_not_reached): move guts of _dbus_assert() and
8122         _dbus_assert_not_reached() into functions, so that they don't show
8123         up in basic block counts for test coverage, and don't use up as
8124         much disk space. Does mean slower execution speed though, so
8125         assumes --disable-asserts is the normal production case.
8126
8127 2003-04-05  Havoc Pennington  <hp@pobox.com>
8128
8129         * test/Makefile.am (dist-hook): also dist *.in files
8130
8131         * NEWS: update
8132
8133         * configure.in: 0.7
8134
8135 2003-04-05  Havoc Pennington  <hp@pobox.com>
8136
8137         * dbus/dbus-string.c: docs warning
8138
8139         * dbus/dbus-spawn.c: missing docs
8140
8141         * dbus/dbus-memory.c (struct ShutdownClosure): missing docs
8142
8143 2003-04-05  Havoc Pennington  <hp@pobox.com>
8144
8145         * bus/loop.c (bus_loop_iterate): fix the timeout code, using
8146         magic from GLib
8147
8148         * dbus/dbus-spawn.c (_dbus_babysitter_unref): set sitter_pid
8149         to -1 once we've reaped the babysitter
8150         (_dbus_babysitter_handle_watch): do as much work as we can, not
8151         just one go of it
8152
8153         * bus/activation.c: add code using DBusBabysitter so that we
8154         handle it when a service fails to start up properly.
8155         (bus_activation_service_created): don't remove the activation
8156         entries as we go, just let them get removed when we free the pending
8157         activation. Unref reply messages after sending them.
8158
8159 2003-04-05  Havoc Pennington  <hp@pobox.com>
8160
8161         * test/decode-gcov.c (main): print per-directory stats in the report
8162
8163         * Makefile.am (coverage-report.txt): don't include test/* in gcov stats
8164
8165 2003-04-05  Havoc Pennington  <hp@pobox.com>
8166
8167         * Makefile.am (coverage-report.txt): add target "coverage-report.txt"
8168
8169         * test/decode-gcov.c: hack up a little program to suck data
8170         out of gcov files. Yes this is sort of silly.
8171
8172         * configure.in: define something in config.h and do an
8173         AM_CONDITIONAL when gcov is enabled
8174
8175 2003-04-04  Havoc Pennington  <hp@redhat.com>
8176
8177         * dbus/dbus-spawn.c, dbus/dbus-spawn.h: Change dbus_spawn to
8178         return a "babysitter" object that is used to monitor the status of
8179         the spawned process and reap it when required.
8180
8181         * test/test-segfault.c, test/test-exit.c,
8182         test/test-sleep-forever.c: binaries that do various lame things,
8183         used in the test suite.
8184
8185         * dbus/dbus-sysdeps.c: kill _dbus_errno_to_string()
8186
8187 2003-04-03  Havoc Pennington  <hp@pobox.com>
8188
8189         * dbus/dbus-spawn.c: Move dbus-spawn into a separate file
8190         in preparation for modifying it, dbus-sysdeps is getting
8191         a bit unmanageable.
8192
8193 2003-04-03  Havoc Pennington  <hp@redhat.com>
8194
8195         * bus/loop.h, bus/loop.c: make the mainloop an object so we can
8196         have multiple ones
8197
8198         * bus/*.[hc]: adapt to mainloop change
8199
8200 2003-04-03  Havoc Pennington  <hp@redhat.com>
8201
8202         * bus/activation.c (load_directory): fix up memleaks
8203         (bus_activation_entry_free): free the entry
8204
8205         * dbus/dbus-bus.c (dbus_bus_acquire_service): return an error if
8206         we get one from the message bus; fix memleaks.
8207
8208         * dbus/dbus-message.c (dbus_set_error_from_message): new function
8209
8210 2003-04-03  Havoc Pennington  <hp@pobox.com>
8211
8212         * bus/config-parser.c (bus_config_parser_unref): free
8213         list of mechanisms, bug discovered by test suite enhancements
8214         (putting system.conf and session.conf into suite)
8215
8216         * test/Makefile.am, test/test-service.c: add placeholder for a
8217         test service that we'll activate as part of test suite. Doesn't
8218         do anything yet.
8219
8220         * dbus/dbus-sysdeps.c (_dbus_setenv): support unsetenv by
8221         setting NULL value, and use system malloc not dbus_malloc()
8222         when we have unavoidable memleakage.
8223
8224         * dbus/dbus-bus.c (dbus_bus_get): fix bug where bus type of 0
8225         didn't work, and support DBUS_BUS_ACTIVATION.
8226
8227         * bus/activation.c (child_setup): pass our well-known bus type to
8228         the child
8229
8230         * bus/config-parser.c: support <type> to specify well-known type
8231
8232         * doc/dbus-specification.sgml: document the env variables to
8233         locate well-known buses and find service activator
8234
8235 2003-04-02  Havoc Pennington  <hp@redhat.com>
8236
8237         * test/Makefile.am (all-local): add a rule to copy tests to
8238         builddir, so we can have generated tests. Use this to remove the
8239         silly hack for testing system.conf and session.conf. Will use this
8240         shortly to generate .service files pointing to test binaries.
8241
8242 2003-04-02  Havoc Pennington  <hp@redhat.com>
8243
8244         * dbus/dbus-string.c (set_length): fix a bug - we allocated max of
8245         current alloc and needed new length, not max of the doubled
8246         allocation and needed new length. Also, when building tests,
8247         don't do the double-allocation stuff, just realloc every time.
8248
8249 2003-04-02  Havoc Pennington  <hp@redhat.com>
8250
8251         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): include filenames
8252         in error messages
8253         (_dbus_string_get_dirname): new
8254         (_dbus_sysdeps_test): new
8255         (_dbus_directory_open): include dirnames in error messages
8256
8257         * bus/config-parser.c: interpret <include> and <includedir> and
8258         <servicedir> relative to config file location if the given
8259         filename is not absolute.
8260
8261         * dbus/dbus-string.c (_dbus_string_find_byte_backward): new
8262
8263 2003-04-02  Havoc Pennington  <hp@redhat.com>
8264
8265         * bus/connection.c (bus_transaction_send_error_reply): set sender
8266         service for the error, and unref the reply on success
8267
8268         * bus/activation.c: convert to use BusTransaction so OOM can be
8269         handled correctly
8270         (bus_activation_service_created): set sender of the message
8271
8272 2003-04-01  Havoc Pennington  <hp@redhat.com>
8273
8274         * bus/config-parser.c, bus/bus.c: implement <servicedir> and
8275         <includedir> (at least mostly)
8276
8277         * dbus/dbus-sysdeps.c (_dbus_change_identity): set the group ID
8278         first, then the user ID
8279
8280 2003-04-01  Havoc Pennington  <hp@pobox.com>
8281
8282         * dbus/dbus-server.c (dbus_server_set_auth_mechanisms): new
8283         function
8284
8285         * dbus/dbus-auth.c (_dbus_auth_set_mechanisms): new
8286
8287         * dbus/dbus-internals.c (_dbus_dup_string_array): new function
8288
8289         * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): chmod the
8290         socket 0777, and unlink any existing socket.
8291
8292         * bus/bus.c (bus_context_new): change our UID/GID and fork if
8293         the configuration file so specifies; set up auth mechanism
8294         restrictions
8295
8296         * bus/config-parser.c (bus_config_parser_content): add support
8297         for <fork> option and fill in code for <auth>
8298
8299         * bus/system.conf.in: add <fork/> to default configuration,
8300         and limit auth mechanisms to EXTERNAL
8301
8302         * doc/config-file.txt (Elements): add <fork>
8303
8304         * dbus/dbus-sysdeps.c (_dbus_become_daemon): new function
8305         (_dbus_change_identity): new function
8306
8307 2003-03-31  Havoc Pennington  <hp@redhat.com>
8308
8309         * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket)
8310         (_dbus_listen_unix_socket): fix off-by-one error in null
8311         termination spotted by Nalin
8312
8313 2003-03-31  Havoc Pennington  <hp@redhat.com>
8314
8315         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): allow setting
8316         DBUS_TEST_HOMEDIR when tests are enabled, so we can test without
8317         having a real home directory available.
8318
8319 2003-03-31  Havoc Pennington  <hp@redhat.com>
8320
8321         * bus/Makefile.am (install-data-hook): create /var/run/dbus
8322
8323         * bus/messagebus.in: add init script for Red Hat /etc/init.d
8324
8325         * configure.in: add support for specifying a style of init script
8326         to install
8327
8328 2003-03-31  Havoc Pennington  <hp@redhat.com>
8329
8330         Fix some annoying DBusString API and fix all affected code.
8331
8332         * dbus/dbus-string.c (_dbus_string_init): get rid of annoying
8333         max_length argument
8334         (_dbus_string_get_data): change to return string instead of using
8335         an out param
8336         (_dbus_string_get_const_data): ditto
8337         (_dbus_string_get_data_len): ditto
8338         (_dbus_string_get_const_data_len): ditto
8339
8340 2003-03-31  Havoc Pennington  <hp@redhat.com>
8341
8342         * bus/main.c (main): fix up the command line arguments to be nicer
8343
8344 2003-03-31  Havoc Pennington  <hp@redhat.com>
8345
8346         * dbus/Makefile.am (INCLUDES): use EXPANDED_LOCALSTATEDIR to
8347         define DBUS_SYSTEM_BUS_PATH as we want to compile in the same
8348         final location that lands in the config file
8349
8350         * bus/config-loader-expat.c (bus_config_load): fix type of
8351         XML_Parser variable
8352
8353         * doc/TODO: remove TODO item for dbus_bus_get()
8354
8355         * dbus/dbus-bus.c (bus_data_free): add missing lock/unlock
8356
8357 2003-03-31  Havoc Pennington  <hp@pobox.com>
8358
8359         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_domain_socket)
8360         (_dbus_transport_new_for_tcp_socket): these didn't need the "server"
8361         argument since they are always client side
8362
8363         * dbus/dbus-server.c (dbus_server_get_address): new function
8364
8365         * bus/main.c (main): take the configuration file as an argument.
8366
8367         * test/data/valid-config-files/debug-allow-all.conf: new file to
8368         use with dispatch.c tests for example
8369
8370         * bus/test-main.c (main): require test data dir
8371
8372         * bus/bus.c (bus_context_new): change this to take a
8373         configuration file name as argument
8374
8375         * doc/config-file.txt (Elements): add <servicedir>
8376
8377         * bus/system.conf, bus/session.conf: new files
8378
8379         * dbus/dbus-bus.c (dbus_bus_get): look for system bus on
8380         well-known socket if none set
8381
8382         * configure.in: create system.conf and session.conf
8383
8384 2003-03-30  Havoc Pennington  <hp@pobox.com>
8385
8386         * bus/config-parser.c: hacking
8387
8388         * dbus/dbus-memory.c: don't use DBusList for the list of stuff
8389         to shut down, since it could cause weirdness with the DBusList
8390         lock
8391
8392         * dbus/dbus-list.c (_dbus_list_test): add tests for the
8393         link-oriented stack routines
8394         (alloc_link): free the mempool if the first alloc from it fails
8395
8396         * dbus/dbus-mempool.c (struct DBusMemBlock): fix alignment issue
8397
8398         * dbus/dbus-string.c (UNICODE_VALID): sync new version of this
8399         from GLib
8400         (_dbus_string_skip_white): new
8401
8402         * doc/config-file.txt (Elements): add <includedir>
8403
8404 2003-03-28  Havoc Pennington  <hp@pobox.com>
8405
8406         * dbus/dbus-string.c (_dbus_string_copy_data_len)
8407         (_dbus_string_copy_data): new functions
8408
8409 2003-03-28  Anders Carlsson  <andersca@codefactory.se>
8410
8411         * dbus/dbus-bus.c: (bus_data_free), (dbus_bus_get):
8412         * dbus/dbus-bus.h:
8413         Add dbus_bus_get.
8414
8415         * dbus/dbus-memory.c:
8416         Fix a doc comment.
8417
8418 2003-03-28  Havoc Pennington  <hp@pobox.com>
8419
8420         * bus/test.c (bus_test_flush_bus): remove the sleep from here,
8421         I think it may have just been superstition. Not sure.
8422
8423         * dbus/dbus-string.c (_dbus_string_base64_decode): catch some OOM
8424         failures that were not being handled.
8425
8426         * dbus/dbus-auth.c (process_auth): fix a memleak in OOM handling
8427
8428         * dbus/dbus-memory.c: add ability to set number of mallocs in a
8429         row that will fail on out-of-memory.
8430
8431         * dbus/dbus-internals.c (_dbus_test_oom_handling): convenience
8432         function for testing out-of-memory handling.
8433
8434         * bus/config-loader-expat.c (memsuite): don't wrap the dbus
8435         allocation functions, they do map exactly to the expat ones.
8436
8437 2003-03-27  Havoc Pennington  <hp@redhat.com>
8438
8439         * bus/config-loader-libxml.c (bus_config_load): add another error
8440         check
8441
8442 2003-03-26  Anders Carlsson  <andersca@codefactory.se>
8443
8444         * doc/TODO:
8445         Add note about automatic service activation.
8446
8447         * doc/dbus-specification.sgml:
8448         Rename the specification and clarify a few things.
8449
8450 2003-03-26  Anders Carlsson  <andersca@codefactory.se>
8451
8452         * Doxyfile.in:
8453         * dbus/dbus-address.c:
8454         * dbus/dbus-dict.c:
8455         * dbus/dbus-marshal.c:
8456         * dbus/dbus-server-debug-pipe.c:
8457         * dbus/dbus-transport-unix.c:
8458         Fix documentation warnings.
8459
8460 2003-03-26  Havoc Pennington  <hp@pobox.com>
8461
8462         * bus/test-main.c, dbus/dbus-test.c (main): check memleaks
8463         after every test so it's quick and easy to see which leaked, and
8464         so we test multiple dbus_shutdown() calls
8465
8466         * configure.in: change configure.in XML stuff to also support
8467         expat
8468
8469         * config-loader-libxml.c: some hacking
8470
8471         * config-loader-expat.c: some hacking
8472
8473         * config-parser.c: some hacking, plus tests
8474
8475 2003-03-25  Havoc Pennington  <hp@redhat.com>
8476
8477         * throughout - add more _DBUS_ASSERT_ERROR_IS_CLEAR
8478
8479         * configure.in: add --with-xml option to specify XML library,
8480         right now only libxml is supported.
8481
8482         * bus/config-loader-libxml.c, config-parser.c: sync some minor
8483         nonworking code between home and work, still just stubs
8484
8485 2003-03-24  Havoc Pennington  <hp@redhat.com>
8486
8487         * dbus/dbus-sysdeps.c (_dbus_set_fd_nonblocking): move to this
8488         file
8489
8490         * dbus/dbus-errors.c (dbus_set_error, dbus_set_error_const): allow
8491         NULL argument for "message" if the error is a well-known one,
8492         fill in a generic message in this case.
8493
8494         * dbus/dbus-errors.h (DBusResultCode): Kill DBusResultCode in
8495         favor of DBusError
8496
8497         * bus/test.c (bus_test_flush_bus): add
8498
8499         * bus/policy.c (bus_policy_test): test code stub
8500
8501 2003-03-24  Havoc Pennington  <hp@pobox.com>
8502
8503         * bus/connection.c (bus_connections_setup_connection): set up
8504         the "can this user connect" function, but it always returns
8505         TRUE until we have a config file parser so we can have a config
8506         file that allows connections.
8507
8508 2003-03-23  Havoc Pennington  <hp@pobox.com>
8509
8510         * dbus/dbus-threads.c (dbus_mutex_new, dbus_condvar_new): with
8511         DBUS_BUILD_TESTS, actually alloc/free a block of memory for
8512         the mutex, so we can check for proper memory management
8513         and OOM handling.
8514
8515         * dbus/dbus-dataslot.c: remove the mutex from
8516         DBusDataSlotAllocator and lock it manually when using it,
8517         to simplify fitting it into the global slots framework.
8518
8519         * dbus/dbus-threads.c (init_static_locks): rework how we're
8520         handling global locks so they are easily shut down.
8521
8522         * bus/policy.c (bus_policy_append_rule): fix
8523
8524         * bus/test-main.c (main): check for memleaks
8525
8526         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): make
8527         test suite check for memleaks
8528
8529         * dbus/dbus-memory.c: add support in test mode for tracking
8530         number of outstanding blocks
8531
8532 2003-03-23  Havoc Pennington  <hp@pobox.com>
8533
8534         * bus/policy.c, bus/bus.c, bus/connection.c: implement allow/deny
8535         policies code
8536
8537         * dbus/dbus-hash.h: add ULONG hash keys
8538
8539         * dbus/dbus-sysdeps.c (_dbus_get_groups): new
8540         (_dbus_get_group_id): new function
8541
8542 2003-03-20  Havoc Pennington  <hp@redhat.com>
8543
8544         * dbus/dbus-connection.c (dbus_connection_set_unix_user_function):
8545         new function
8546         (dbus_connection_get_unix_user): new function
8547
8548 2003-03-20  Havoc Pennington  <hp@pobox.com>
8549
8550         * bus/connection.c (bus_connection_send_oom_error): assert that
8551         message has a sender
8552         (connection_execute_transaction): ditto
8553         (bus_connection_preallocate_oom_error): fix to set the sender, and
8554         set recipient to the destination service, not the bus driver
8555
8556         * bus/policy.c: hacking
8557
8558         * dbus/dbus-message.c (dbus_message_service_is): new function
8559         (dbus_message_sender_is): new
8560
8561 2003-03-19  Havoc Pennington  <hp@redhat.com>
8562
8563         * bus/policy.c: start sketching code for policy restrictions on
8564         what connections can do.
8565
8566 2003-03-18  Havoc Pennington  <hp@redhat.com>
8567
8568         * doc/TODO: some notes on high-level todo items. Little nitpick
8569         stuff is all in @todo, so no need to add it here.
8570
8571         * doc/config-file.txt: some notes on how config file might look
8572
8573 2003-03-18  Anders Carlsson  <andersca@codefactory.se>
8574
8575         * configure.in: 0.6
8576
8577         * NEWS: Update.
8578
8579 2003-03-17  Havoc Pennington  <hp@redhat.com>
8580
8581         * dbus/dbus-internals.h: add gcc attributes so that
8582         our printf-style functions warn on bad arguments to
8583         format
8584
8585         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): fix printf
8586         format bug
8587
8588         * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
8589         printf format bug
8590
8591 2003-03-17  Havoc Pennington  <hp@redhat.com>
8592
8593         * bus/test-main.c (main): make it print something as it runs
8594         so make check doesn't look stuck
8595
8596         * doc/negotiation.txt, doc/dbus-sasl-profile.txt: remove
8597         from CVS, now obsolete
8598
8599 2003-03-17  Anders Carlsson  <andersca@codefactory.se>
8600
8601         * bus/dispatch.c: (bus_dispatch):
8602         Refetch the service name since it may have been reallocated
8603         when dbus_message_set_sender was called.
8604
8605         * dbus/dbus-sysdeps.c: (_dbus_accept):
8606         Add address and address length variables and use them to stop
8607         valgrind from complaining.
8608
8609 2003-03-17  Havoc Pennington  <hp@pobox.com>
8610
8611         All tests pass, no memleaks, no valgrind complaints.
8612
8613         * bus/test.c: refcount handler_slot
8614
8615         * bus/connection.c (bus_connections_new): refcount
8616         connection_data_slot
8617
8618         * dbus/dbus-auth-script.c (_dbus_auth_script_run): delete unused
8619         bytes so that auth scripts pass.
8620
8621         * bus/dispatch.c: init message_handler_slot so it gets allocated
8622         properly
8623
8624         * bus/dispatch.c (message_handler_slot_ref): fix memleak
8625
8626         * dbus/dbus-server-debug-pipe.c (_dbus_server_debug_pipe_new):
8627         dealloc server_pipe_hash when no longer used for benefit of
8628         leak checking
8629
8630         * dbus/dbus-auth.c (process_command): memleak fix
8631
8632         * bus/dispatch.c (check_hello_message): memleak fix
8633
8634 2003-03-16  Havoc Pennington  <hp@pobox.com>
8635
8636         * dbus/dbus-bus.c (ensure_bus_data): fix double-unref of the data slot
8637
8638 2003-03-17  Anders Carlsson  <andersca@codefactory.se>
8639
8640         * bus/activation.c (bus_activation_activate_service): Append
8641         the pending activation entry to the list of pending activations.
8642
8643 2003-03-16  Havoc Pennington  <hp@pobox.com>
8644
8645         * bus/dispatch.c (bus_dispatch_test): remove double-unrefs of
8646         connections
8647
8648         * dbus/dbus-address.c (create_entry): fix OOM handling when
8649         failing to alloc entry->method
8650
8651 2003-03-16  Havoc Pennington  <hp@pobox.com>
8652
8653         * dbus/dbus-watch.c (_dbus_watch_new): handle failure to malloc
8654         the watch
8655
8656         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
8657         add some missing dbus_set_result
8658
8659         * bus/dispatch.c (bus_dispatch_add_connection): handle failure to
8660         alloc the DBusMessageHandler
8661
8662         * dbus/dbus-transport.c (_dbus_transport_disconnect): don't ref
8663         the transport here, since we call this from the finalizer; it
8664         resulted in a double-finalize.
8665
8666         * dbus/dbus-transport.c (_dbus_transport_disconnect): fix a bug
8667         where we tried to use transport->connection that was NULL,
8668         happened when transport was disconnected early on due to OOM
8669
8670         * bus/*.c: adapt to handle OOM for watches/timeouts
8671
8672         * dbus/dbus-transport-unix.c: port to handle OOM during
8673         watch handling
8674
8675         * dbus/dbus-auth.c (_dbus_auth_get_unused_bytes): return a
8676         reference to unused bytes instead of a copy
8677
8678         * dbus/dbus-server.c (dbus_server_handle_watch): return FALSE for
8679         out of memory
8680
8681         * dbus/dbus-connection.c (dbus_connection_handle_watch): return
8682         FALSE on OOM
8683
8684         * dbus/dbus-timeout.c (dbus_timeout_handle): return FALSE for out
8685         of memory
8686
8687 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
8688
8689         * doc/dbus-specification.sgml:
8690         Document reply message for ActivateService.
8691
8692 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
8693
8694         * bus/activation.c: (bus_pending_activation_entry_free),
8695         (bus_pending_activation_free), (bus_activation_new),
8696         (bus_activation_unref), (bus_activation_service_created),
8697         (bus_activation_activate_service):
8698         * bus/activation.h:
8699         * bus/bus.c: (bus_context_new):
8700         * bus/desktop-file.c: (new_section):
8701         * bus/driver.c: (bus_driver_send_service_deleted),
8702         (bus_driver_handle_activate_service):
8703         * bus/services.c: (bus_registry_new), (bus_registry_ensure):
8704         * bus/services.h:
8705         * dbus/dbus-connection.c:
8706         (dbus_connection_send_with_reply_and_block):
8707         * dbus/dbus-message.c: (dbus_message_append_args_valist):
8708         * dbus/dbus-protocol.h:
8709         Make activation work better. Now pending activations will be queued
8710         and the daemon won't try to activate services that are already registered.
8711
8712 2003-03-16  Havoc Pennington  <hp@pobox.com>
8713
8714         * dbus/dbus-bus.c (ensure_bus_data): handle failure to set
8715         connection data
8716
8717         * dbus/dbus-memory.c (_dbus_initialize_malloc_debug): support
8718         DBUS_MALLOC_BACKTRACES to print trace when failing an alloc
8719
8720 2003-03-16  Havoc Pennington  <hp@pobox.com>
8721
8722         * dbus/dbus-string.c (_dbus_string_validate_utf8): oops, unbreak
8723         this. always run the test suite before commit...
8724
8725         * bus/*: adapt to DBusConnection API changes
8726
8727         * glib/dbus-gmain.c: adapt to DBusConnection API changes,
8728         requires renaming stuff to avoid dbus_connection_dispatch name
8729         conflict.
8730
8731         * dbus/dbus-transport.c (_dbus_transport_queue_messages): new
8732         function
8733
8734         * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
8735         separate from _dbus_message_loader_return_buffer()
8736
8737         * dbus/dbus-connection.c (dbus_connection_get_n_messages): remove
8738         this, because it's now always broken to use; the number of
8739         messages in queue vs. the number still buffered by the message
8740         loader is undefined/meaningless. Should use
8741         dbus_connection_get_dispatch_state().
8742         (dbus_connection_dispatch): rename from
8743         dbus_connection_dispatch_message
8744
8745 2003-03-16  Havoc Pennington  <hp@pobox.com>
8746
8747         * dbus/dbus-string.c (_dbus_string_validate_utf8): copy in a real
8748         implementation
8749
8750 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
8751
8752         * dbus/dbus-connection.c:
8753         (dbus_connection_send_with_reply_and_block):
8754         Decrease connection->n_incoming when removing an entry
8755         from the list.
8756         * dbus/dbus-dict.c: (dbus_dict_entry_free),
8757         (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
8758         (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
8759         (dbus_dict_set_byte_array), (dbus_dict_set_string_array),
8760         (dbus_dict_get_boolean_array), (dbus_dict_get_double_array),
8761         (dbus_dict_get_byte_array):
8762         Handle NULL arrays and strings. Also add support for byte arrays.
8763
8764         * dbus/dbus-marshal.c: (_dbus_marshal_byte_array),
8765         (_dbus_marshal_dict), (_dbus_demarshal_byte_array),
8766         (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
8767         (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
8768         (_dbus_demarshal_dict), (demarshal_and_validate_len),
8769         (_dbus_marshal_validate_arg), (_dbus_marshal_test):
8770         * dbus/dbus-marshal.h:
8771         Add support for marshalling and demarshalling empty arrays and strings.
8772
8773         * dbus/dbus-message.c: (dbus_message_append_args_valist),
8774         (dbus_message_append_string_array),
8775         (dbus_message_iter_get_boolean),
8776         (dbus_message_iter_get_boolean_array),
8777         (dbus_message_iter_get_int32_array),
8778         (dbus_message_iter_get_uint32_array),
8779         (dbus_message_iter_get_double_array),
8780         (dbus_message_iter_get_byte_array),
8781         (dbus_message_iter_get_string_array), (dbus_message_iter_get_dict),
8782         (check_message_handling):
8783         Add support for getting empty arrays and dicts.
8784
8785         * dbus/dbus-string.c: (_dbus_string_validate_utf8):
8786         Don't do any validation at all for now, that's better than just checking
8787         for ASCII.
8788
8789         * test/data/valid-messages/emptiness.message:
8790         New test message with lots of empty arrays.
8791
8792 2003-03-16  Havoc Pennington  <hp@pobox.com>
8793
8794         * dbus/dbus-connection.c
8795         (_dbus_connection_queue_received_message_link): new function that
8796         can't fail due to OOM
8797
8798         * dbus/dbus-message.c (_dbus_message_loader_pop_message_link):
8799         new function pops a message together with a list link
8800         containing it.
8801
8802         * dbus/dbus-transport-unix.c (queue_messages): use new link-based
8803         message queuing functions to avoid needing to alloc memory
8804
8805 2003-03-16  Havoc Pennington  <hp@pobox.com>
8806
8807         Oops - test code was only testing failure of around 30 of the
8808         mallocs in the test path, but it turns out there are 500+
8809         mallocs. I believe this was due to misguided linking setup such
8810         that there was one copy of dbus_malloc etc. in the daemon and one
8811         in the shared lib, and only daemon mallocs were tested. In any
8812         case, the test case now tests all 500+ mallocs, and doesn't pass
8813         yet, though there are lots of fixes in this patch.
8814
8815         * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
8816         this so that it doesn't need to allocate memory, since it
8817         has no way of indicating failure due to OOM (and would be
8818         annoying if it did).
8819
8820         * dbus/dbus-list.c (_dbus_list_pop_first_link): new function
8821
8822         * bus/Makefile.am: rearrange to create two self-contained
8823         libraries, to avoid having libraries with overlapping symbols.
8824         that was resulting in weirdness, e.g. I'm pretty sure there
8825         were two copies of global static variables.
8826
8827         * dbus/dbus-internals.c: move the malloc debug stuff to
8828         dbus-memory.c
8829
8830         * dbus/dbus-list.c (free_link): free list mempool if it becomes
8831         empty.
8832
8833         * dbus/dbus-memory.c (_dbus_disable_mem_pools): new function
8834
8835         * dbus/dbus-address.c (dbus_parse_address): free list nodes
8836         on failure.
8837
8838         * bus/dispatch.c (bus_dispatch_add_connection): free
8839         message_handler_slot when no longer using it, so
8840         memory leak checkers are happy for the test suite.
8841
8842         * dbus/dbus-server-debug-pipe.c (debug_finalize): free server name
8843
8844         * bus/bus.c (new_connection_callback): disconnect in here if
8845         bus_connections_setup_connection fails.
8846
8847         * bus/connection.c (bus_connections_unref): fix to free the
8848         connections
8849         (bus_connections_setup_connection): if this fails, don't
8850         disconnect the connection, just be sure there are no side
8851         effects.
8852
8853         * dbus/dbus-string.c (undo_alignment): unbreak this
8854
8855         * dbus/dbus-auth.c (_dbus_auth_unref): free some stuff we were
8856         leaking
8857         (_dbus_auth_new): fix the order in which we free strings
8858         on OOM failure
8859
8860         * bus/connection.c (bus_connection_disconnected): fix to
8861         not send ServiceDeleted multiple times in case of memory
8862         allocation failure
8863
8864         * dbus/dbus-bus.c (dbus_bus_get_base_service): new function to
8865         get the base service name
8866         (dbus_bus_register_client): don't return base service name,
8867         instead store it on the DBusConnection and have an accessor
8868         function for it.
8869         (dbus_bus_register_client): rename dbus_bus_register()
8870
8871         * bus/dispatch.c (check_hello_message): verify that other
8872         connections on the bus also got the correct results, not
8873         just the one sending hello
8874
8875 2003-03-15  Havoc Pennington  <hp@pobox.com>
8876
8877         Make it pass the Hello handling test including all OOM codepaths.
8878         Now to do other messages...
8879
8880         * bus/services.c (bus_service_remove_owner): fix crash when
8881         removing owner from an empty list of owners
8882         (bus_registry_ensure): don't leave service in the list of
8883         a connection's owned services if we fail to put the service
8884         in the hash table.
8885
8886         * bus/connection.c (bus_connection_preallocate_oom_error): set
8887         error flag on the OOM error.
8888
8889         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
8890         handle _dbus_transport_set_connection failure
8891
8892         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd): modify
8893         to create watches up front and simply enable/disable them as
8894         needed.
8895         (unix_connection_set): this can now fail on OOM
8896
8897         * dbus/dbus-timeout.c, dbus/dbus-watch.c: add concept
8898         of enabling/disabling a watch or timeout.
8899
8900         * bus/loop.c (bus_loop_iterate): don't touch disabled
8901         watches/timeouts
8902
8903         * glib/dbus-gmain.c: adapt to enable/disable watches and timeouts
8904
8905 2003-03-15  Havoc Pennington  <hp@pobox.com>
8906
8907         * bus/dispatch.c (bus_dispatch_test): OK, now finally actually
8908         write useful test code, after all that futzing around ;-)
8909
8910         Test does not yet pass because we can't handle OOM in
8911         _dbus_transport_messages_pending (basically,
8912         dbus_connection_preallocate_send() does not prealloc the write
8913         watch). To fix this, I think we need to add new stuff to
8914         set_watch_functions, namely a SetEnabled function so we can alloc
8915         the watch earlier, then enable it later.
8916
8917         * dbus/Makefile.am (libdbus_convenience_la_SOURCES): move
8918         dbus-memory.c to the convenience lib
8919
8920         * bus/test.c: rename some static functions to keep them clearly
8921         distinct from stuff in connection.c. Handle client disconnection.
8922
8923 2003-03-14  Havoc Pennington  <hp@pobox.com>
8924
8925         * bus/dispatch.c (bus_dispatch_test): do test using debug-pipe
8926         transport, tests more of the real codepath. Set up clients
8927         with bus_setup_debug_client.
8928
8929         * bus/test.c (bus_setup_debug_client): function to set up debug
8930         "clients" on the main loop
8931
8932         * dbus/dbus-transport.c (_dbus_transport_open): add debug-pipe
8933         support
8934
8935         * dbus/dbus-server.c (dbus_server_listen): add debug-pipe
8936         server type
8937
8938         * dbus/dbus-server-debug.c: support a debug server based on pipes
8939
8940         * dbus/dbus-sysdeps.c (_dbus_full_duplex_pipe): new function
8941         (_dbus_close): new function
8942
8943         * configure.in: check for socketpair
8944
8945 2003-03-14  Havoc Pennington  <hp@redhat.com>
8946
8947         * dbus/dbus-memory.c: add a "detect buffer overwrites on free"
8948         cheesy hack
8949
8950         * dbus/dbus-transport-debug.c: rework this a good bit to be
8951         less complicated. hopefully still works.
8952
8953         * dbus/dbus-server-debug.c (handle_new_client): remove timeout
8954         manually
8955
8956         * glib/dbus-gmain.c (timeout_handler): don't remove timeout
8957         after running it
8958
8959         * dbus/dbus-message.c (dbus_message_copy): rename from
8960         dbus_message_new_from_message, fix it up to copy
8961         all the message fields, add test case
8962
8963         * bus/dispatch.c (bus_dispatch_test): add some more test code,
8964         not quite passing yet
8965
8966 2003-03-14  Havoc Pennington  <hp@pobox.com>
8967
8968         * bus/loop.c (bus_loop_iterate): add this so we can "run loop
8969         until no work remains" in test code. (the large diff here
8970         is just code movement, no actual changes)
8971
8972         * dbus/dbus-server-debug.c (DEFAULT_INTERVAL): change interval to
8973         1, no point waiting around for test code.
8974         (_dbus_server_debug_accept_transport): unref the timeout
8975         after adding it (right?)
8976
8977         * dbus/dbus-transport-debug.c (DEFAULT_INTERVAL): ditto
8978
8979 2003-03-13  Havoc Pennington  <hp@redhat.com>
8980
8981         * dbus/dbus-timeout.c (_dbus_timeout_list_set_functions): handle
8982         out of memory
8983
8984         * dbus/dbus-watch.c (_dbus_watch_list_set_functions): handle out
8985         of memory
8986
8987         * dbus/dbus-connection.h: Make AddWatchFunction and
8988         AddTimeoutFunction return a bool so they can fail on out-of-memory
8989
8990         * bus/bus.c (bus_context_new): set up timeout handlers
8991
8992         * bus/connection.c (bus_connections_setup_connection): set up
8993         timeout handlers
8994
8995         * glib/dbus-gmain.c: adapt to the fact that set_functions stuff
8996         can fail
8997
8998         * bus/bus.c (bus_context_new): adapt to changes
8999
9000         * bus/connection.c: adapt to changes
9001
9002         * test/watch.c: adapt to DBusWatch changes
9003
9004         * bus/dispatch.c (bus_dispatch_test): started adding this but
9005         didn't finish
9006
9007 2003-03-14  Anders Carlsson  <andersca@codefactory.se>
9008
9009         * bus/dispatch.c (send_service_nonexistent_error): Fix typo.
9010
9011 2003-03-13  Havoc Pennington  <hp@pobox.com>
9012
9013         * bus/test.c, bus/test.h, bus/Makefile.am, bus/test-main.c:
9014         set up a test framework as for the library
9015
9016 2003-03-12  Havoc Pennington  <hp@pobox.com>
9017
9018         Throughout: purge global variables, introduce BusActivation,
9019         BusConnections, BusRegistry, etc. objects instead.
9020
9021         * bus/bus.h, bus/bus.c: introduce BusContext as a global
9022         message bus object
9023
9024         * test/Makefile.am (TEST_BINARIES): disable bus-test for now,
9025         going to redo this a bit differently I think
9026
9027 2003-03-12  Havoc Pennington  <hp@redhat.com>
9028
9029         Mega-patch that gets the message bus daemon initially handling
9030         out-of-memory. Work still needed. Also lots of random
9031         moving stuff to DBusError instead of ResultCode.
9032
9033         * dbus/dbus-list.c (_dbus_list_length_is_one): new function
9034
9035         * dbus/dbus-connection.c
9036         (dbus_connection_send_with_reply_and_block): use DBusError
9037
9038         * dbus/dbus-bus.c: adapt to API changes, make it use DBusError not
9039         DBusResultCode
9040
9041         * dbus/dbus-connection.c (dbus_connection_send): drop the result
9042         code here, as the only failure possible is OOM.
9043
9044         * bus/connection.c (bus_connection_disconnect):
9045         rename bus_connection_disconnected as it's a notification only
9046
9047         * bus/driver.c (bus_driver_handle_acquire_service): don't free
9048         "name" on get_args failure, should be done by get_args;
9049         don't disconnect client for bad args, just return an error.
9050         (bus_driver_handle_service_exists): ditto
9051
9052         * bus/services.c (bus_services_list): NULL-terminate returned array
9053
9054         * bus/driver.c (bus_driver_send_service_lost)
9055         (bus_driver_send_service_acquired): send messages from driver to a
9056         specific client to the client's unique name, not to the broadcast
9057         service.
9058
9059         * dbus/dbus-message.c (decode_header_data): reject messages that
9060         contain no name field
9061         (_dbus_message_get_client_serial): rename to
9062         dbus_message_get_serial and make public
9063         (_dbus_message_set_serial): rename from set_client_serial
9064         (_dbus_message_set_reply_serial): make public
9065         (_dbus_message_get_reply_serial): make public
9066
9067         * bus/connection.c (bus_connection_foreach): allow stopping
9068         iteration by returning FALSE from foreach function.
9069
9070         * dbus/dbus-connection.c (dbus_connection_send_preallocated)
9071         (dbus_connection_free_preallocated_send)
9072         (dbus_connection_preallocate_send): new API for sending a message
9073         without possibility of malloc failure.
9074         (dbus_connection_send_message): rename to just
9075         dbus_connection_send (and same for whole function family)
9076
9077         * dbus/dbus-errors.c (dbus_error_free): make this reinit the error
9078
9079         * dbus/dbus-sysdeps.c (_dbus_exit): new function
9080
9081         * bus/activation.c: handle/return errors
9082
9083         * dbus/dbus-errors.h: add more DBUS_ERROR #define
9084
9085         * dbus/dbus-sysdeps.c (_dbus_directory_open) (_dbus_file_get_contents)
9086         (_dbus_directory_get_next_file): use DBusError instead of DBusResultCode
9087         (_dbus_result_from_errno): move to this file
9088
9089 2003-03-10  Anders Carlsson  <andersca@codefactory.se>
9090
9091         * dbus/dbus-marshal.c:
9092         (_dbus_marshal_set_string):
9093         Take a length argument so we can marshal the correct string
9094         length.
9095
9096         (_dbus_marshal_dict), (_dbus_demarshal_dict),
9097         (_dbus_marshal_get_arg_end_pos), (_dbus_marshal_validate_arg),
9098         (_dbus_marshal_test):
9099         * dbus/dbus-marshal.h:
9100         Add support for marshalling and demarshalling dicts.
9101
9102         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
9103         Add support for TYPE DICT.
9104
9105         * dbus/dbus-message.c: (set_string_field):
9106         Adjust header padding.
9107
9108         (dbus_message_append_args_valist), (dbus_message_append_dict),
9109         (dbus_message_get_args_valist), (dbus_message_iter_get_arg_type),
9110         (dbus_message_iter_get_dict), (_dbus_message_loader_return_buffer),
9111         (check_message_handling), (check_have_valid_message):
9112         * dbus/dbus-message.h:
9113         Add functions for setting and getting dicts.
9114
9115         * dbus/dbus-protocol.h:
9116         Add DBUS_TYPE_DICT.
9117
9118         * dbus/dbus.h:
9119         Add dbus-dict.h
9120
9121         * doc/dbus-specification.sgml:
9122         Add information about how dicts are marshalled.
9123
9124         * test/data/invalid-messages/dict-with-nil-value.message:
9125         * test/data/invalid-messages/too-short-dict.message:
9126         * test/data/valid-messages/dict-simple.message:
9127         * test/data/valid-messages/dict.message:
9128         Add sample messages containing dicts.
9129
9130 2003-03-08  Anders Carlsson  <andersca@codefactory.se>
9131
9132         * dbus/dbus-dict.h: Add DBUS_END_DECLS.
9133
9134 2003-03-07  Anders Carlsson  <andersca@codefactory.se>
9135
9136         * dbus/Makefile.am:
9137         * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
9138         (dbus_dict_get_keys), (insert_entry), (dbus_dict_set_boolean),
9139         (dbus_dict_set_int32), (dbus_dict_set_uint32),
9140         (dbus_dict_set_double), (dbus_dict_set_string),
9141         (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
9142         (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
9143         (dbus_dict_set_string_array), (_dbus_dict_test):
9144         * dbus/dbus-dict.h:
9145         Fix according to comments from Havoc.
9146
9147 2003-03-06  Michael Meeks  <michael@server.home>
9148
9149         * configure.in: if we don't have kde-config, disable have_qt.
9150
9151 2003-03-07  Anders Carlsson  <andersca@codefactory.se>
9152
9153         * dbus/Makefile.am:
9154         Add dbus-dict.[ch]
9155
9156         * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
9157         (dbus_dict_ref), (dbus_dict_unref), (dbus_dict_contains),
9158         (dbus_dict_remove), (dbus_dict_get_value_type),
9159         (dbus_dict_get_keys), (dbus_dict_put_boolean),
9160         (dbus_dict_put_int32), (dbus_dict_put_uint32),
9161         (dbus_dict_put_double), (dbus_dict_put_string),
9162         (dbus_dict_put_boolean_array), (dbus_dict_put_int32_array),
9163         (dbus_dict_put_uint32_array), (dbus_dict_put_double_array),
9164         (dbus_dict_put_string_array), (dbus_dict_get_boolean),
9165         (dbus_dict_get_int32), (dbus_dict_get_uint32),
9166         (dbus_dict_get_double), (dbus_dict_get_string),
9167         (dbus_dict_get_boolean_array), (dbus_dict_get_int32_array),
9168         (dbus_dict_get_uint32_array), (dbus_dict_get_double_array),
9169         (dbus_dict_get_string_array), (_dbus_dict_test):
9170         * dbus/dbus-dict.h:
9171         Add DBusDict implementation
9172
9173         * dbus/dbus-test.c: (dbus_internal_do_not_use_run_tests):
9174         * dbus/dbus-test.h:
9175         Add _dbus_dict_test
9176
9177 2003-03-04  Havoc Pennington  <hp@pobox.com>
9178
9179         * test/data/auth/*: adapt to changes
9180
9181         * dbus/dbus-auth-script.c (_dbus_auth_script_run): add
9182         USERID_BASE64 and change USERNAME_BASE64 to put in username not
9183         userid
9184
9185         * dbus/dbus-keyring.c (_dbus_keyring_validate_context): prevent
9186         more stuff from being in a context name, to make the protocol
9187         simpler to deal with
9188
9189         * dbus/dbus-errors.c (dbus_error_has_name): new function
9190         (dbus_error_is_set): new function
9191
9192         * dbus/dbus-auth.c: replace DBUS_STUPID_TEST_MECH auth
9193         with DBUS_COOKIE_SHA1, implement DBUS_COOKIE_SHA1
9194
9195         * dbus/dbus-connection.c (dbus_connection_flush): also read
9196         messages during a flush operation
9197
9198         * dbus/Makefile.am: remove dbus-md5 since it isn't currently used.
9199
9200 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
9201
9202         * configure.in: Check for gethostbyname on Solaris.
9203
9204         * dbus/dbus-transport.c: (_dbus_transport_open):
9205         Remove duplicate "tcp" entry.
9206
9207         * doc/dbus-specification.sgml:
9208         Clarify some things.
9209
9210 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
9211
9212         * dbus/dbus-auth.c: (send_rejected), (process_test_subdir):
9213         * dbus/dbus-keyring.c: (_dbus_keyring_new_homedir),
9214         (_dbus_keyring_test):
9215         * dbus/dbus-md5.c: (_dbus_md5_compute):
9216         * dbus/dbus-sha.c: (_dbus_sha_compute):
9217         Plug memory leaks.
9218
9219 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
9220
9221         * README: Add some things.
9222
9223 2003-03-04  Anders Carlsson  <andersca@codefactory.se>
9224
9225         * dbus/dbus-message.c (dbus_message_append_args_valist): Add a break;
9226         after case DBUS_TYPE_BOOELAN.
9227
9228 2003-03-02  Havoc Pennington  <hp@pobox.com>
9229
9230         * test/break-loader.c (randomly_set_extreme_ints): add test that
9231         sets really huge and small integers
9232
9233         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add check
9234         that length of boolean array fits in the string, and that
9235         string has room for boolean value in single-bool case.
9236
9237         * dbus/dbus-message-builder.c (_dbus_message_data_load): add
9238         optional value to "ALIGN" command which is what to fill the
9239         alignment with.
9240
9241         * test/data/valid-messages/no-padding.message: add regression
9242         test for the message padding problem
9243
9244 2003-03-02  Havoc Pennington  <hp@pobox.com>
9245
9246         * dbus/dbus-message.c (decode_header_data): fix to always init
9247         message_padding, from Benjamin Dauvergne
9248
9249 2003-03-02  Havoc Pennington  <hp@pobox.com>
9250
9251         * configure.in: 0.5
9252
9253         * NEWS: Update.
9254
9255 2003-03-01  Joe Shaw  <joe@assbarn.com>
9256
9257         * configure.in: Check for "struct cmsgcred" and try to access its
9258         members for BSD-like unices.
9259
9260         * dbus/dbus-sysdeps.c (read_credentials_byte): Fold this back into
9261         _dbus_read_credentials_unix_socket().
9262         (_dbus_read_credentials_unix_socket): Use recvmsg() instead of
9263         read() for reading the credential byte off the unix socket.  Use
9264         struct cmsgcred on systems that support it.
9265
9266 2003-02-27  Alexander Larsson  <alexl@redhat.com>
9267
9268         * glib/Makefile.am:
9269         * configure.in:
9270         Make gthreads-2.0 dependency optional. Don't build thread test if
9271         its not found.
9272
9273 2003-02-27  Havoc Pennington  <hp@pobox.com>
9274
9275         * dbus/dbus-connection.c
9276         (dbus_connection_send_message_with_reply_and_block): fix doh!
9277         doh! doh! bug that resulted in never removing a reply from the
9278         queue, no wonder we called get_reply_serial so much ;-)
9279
9280         * dbus/dbus-message.c (struct DBusMessage): cache reply serial
9281         and client serial instead of demarshaling them every time
9282
9283 2003-02-27  Havoc Pennington  <hp@pobox.com>
9284
9285         * dbus/dbus-marshal.c (_dbus_demarshal_int32): rewrite to be much
9286         more inlined, using dbus-string-private.h, speeds things up
9287         substantially
9288
9289         * dbus/dbus-string.c (_dbus_string_free): apply align offset
9290         when freeing the string
9291         (_dbus_string_steal_data): fix for align offset
9292         (undo_alignment): new function
9293
9294 2003-02-26  Havoc Pennington  <hp@redhat.com>
9295
9296         All kinds of audit fixes from Owen, plus initial attempt to
9297         handle unaligned memory returned from malloc.
9298
9299         * dbus/dbus-string.c (_dbus_string_init): clamp max length to
9300         leave room for align_offset and nul byte
9301         (fixup_alignment): function to track an align_offset and
9302         ensure real->str is aligned
9303         (DBUS_GENERIC_STRING_PREAMBLE): len must be less than allocated,
9304         to allow a nul byte plus align offset
9305         (_dbus_string_lock): fix overflow issue
9306         (_dbus_string_init_const_len): add assertions on sanity of len,
9307         assign allocated to be ALLOCATION_PADDING larger than len
9308         (set_length): fixup the overflow handling
9309         (_dbus_string_get_data_len): fix overflow in assertion
9310         (open_gap): detect overflow in size of gap to be opened
9311         (_dbus_string_lengthen): add overflow check
9312         (_dbus_string_align_length): fix overflow with _DBUS_ALIGN_VALUE
9313         (_dbus_string_append): add overflow check
9314         (_dbus_string_append_unichar): overflow
9315         (_dbus_string_delete): fix overflow in assertion
9316         (_dbus_string_copy_len): overflow in assertion
9317         (_dbus_string_replace_len): overflows in assertions
9318         (_dbus_string_find): change to implement in terms of
9319         _dbus_string_find_to
9320         (_dbus_string_find_to): assorted fixage
9321         (_dbus_string_equal_c_str): assert c_str != NULL,
9322         fix logic so the function works
9323         (_dbus_string_ends_with_c_str): fix overflow thingy
9324         (_dbus_string_base64_encode): overflow fix
9325         (_dbus_string_validate_ascii): overflow
9326         (_dbus_string_validate_nul): overflow
9327
9328 2003-02-26  Havoc Pennington  <hp@redhat.com>
9329
9330         * dbus/dbus-marshal.c (_dbus_marshal_test): fix to work with DISABLE_ASSERTS
9331
9332 2003-02-26  Alexander Larsson  <alexl@redhat.com>
9333
9334         * configure.in:
9335         Set DBUS_GLIB_THREADS_LIBS for apps using gthread-2.0
9336
9337         * dbus/dbus-connection.c:
9338         * dbus/dbus-connection.h:
9339         Fix _dbus_connection_acquire_io_path and _dbus_connection_acquire_dispatch.
9340         Add dbus_connection_set_wakeup_main_function and use it when queueing
9341         incoming and outgoing messages.
9342
9343
9344         * dbus/dbus-dataslot.c:
9345         Threadsafe usage of DBusDataSlotAllocator
9346
9347         * dbus/dbus-message.c: (dbus_message_get_args_iter):
9348         dbus_new can fail.
9349
9350         * dbus/dbus-server-unix.c:
9351         Add todo comment
9352
9353         * glib/dbus-gmain.c:
9354         Implement the new wakeup functions for glib.
9355
9356         * glib/Makefile.am:
9357         * glib/test-thread-client.c:
9358         * glib/test-thread-server.c:
9359         * glib/test-thread.h:
9360         Initial cut at some thread test code. Not really done yet.
9361
9362 2003-02-26  Havoc Pennington  <hp@pobox.com>
9363
9364         * dbus/dbus-connection.c
9365         (dbus_connection_send_message_with_reply_and_block): fix crash
9366         where we ref'd the outgoing message instead of the returned reply
9367
9368         * dbus/dbus-transport-unix.c (do_authentication): check read watch
9369         at the end of this function, so if we didn't need to read for
9370         authentication, we reinstall it for receiving messages
9371
9372         * dbus/dbus-message.c (dbus_message_new_reply): allow replies to
9373         a NULL sender for peer-to-peer case
9374
9375         * dbus/dbus-transport-unix.c (check_read_watch): handle
9376         !authenticated case correctly
9377
9378         * glib/dbus-gmain.c: add support for DBusServer
9379
9380         * dbus/dbus-server.c: add data slot support
9381
9382         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): check
9383         return values and handle errors
9384
9385         * dbus/dbus-dataslot.c: factor out the data slot stuff from
9386         DBusConnection
9387
9388         * Doxyfile.in (INPUT): add glib subdir
9389
9390         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): rename
9391         setup_with_g_main instead of hookup_with_g_main; write docs
9392
9393 2003-02-24  Anders Carlsson  <andersca@codefactory.se>
9394
9395         * dbus/dbus-marshal.c: (_dbus_marshal_validate_arg):
9396         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
9397         * dbus/dbus-message.c: (dbus_message_append_boolean),
9398         (dbus_message_append_boolean_array),
9399         (dbus_message_get_args_valist), (_dbus_message_test):
9400         * dbus/dbus-message.h:
9401         * doc/dbus-specification.sgml:
9402         Various fixes as pointed out by Havoc.
9403
9404         * test/data/invalid-messages/bad-boolean-array.message:
9405         * test/data/invalid-messages/bad-boolean.message:
9406         Add invalid boolean value test cases.
9407
9408 2003-02-24  Anders Carlsson  <andersca@codefactory.se>
9409
9410         * dbus/dbus-internals.c: (_dbus_type_to_string):
9411         * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
9412         (_dbus_marshal_validate_arg):
9413         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
9414         * dbus/dbus-message.c: (dbus_message_append_args_valist),
9415         (dbus_message_append_boolean), (dbus_message_append_boolean_array),
9416         (dbus_message_get_args_valist), (dbus_message_iter_get_boolean),
9417         (dbus_message_iter_get_int32), (dbus_message_iter_get_uint32),
9418         (dbus_message_iter_get_double),
9419         (dbus_message_iter_get_boolean_array), (message_iter_test):
9420         * dbus/dbus-message.h:
9421         * dbus/dbus-protocol.h:
9422         * doc/dbus-specification.sgml:
9423         * test/data/valid-messages/lots-of-arguments.message:
9424         Add support for boolean and boolean array types.
9425
9426 2003-02-23  Havoc Pennington  <hp@pobox.com>
9427
9428         * dbus/dbus-keyring.c: finish most of this implementation and
9429         simple unit test
9430
9431         * dbus/dbus-errors.c (dbus_set_error_const, dbus_set_error): make
9432         these barf if the error isn't cleared to NULL
9433
9434         * dbus/dbus-sysdeps.c (_dbus_delete_file): set error on failure
9435         (_dbus_create_directory): new function
9436
9437         * dbus/dbus-errors.c (dbus_set_error): fix warning
9438
9439         * dbus/dbus-string.c (_dbus_string_hex_encode): new function
9440         (_dbus_string_hex_decode): new function
9441         (test_hex_roundtrip): test code
9442
9443         * dbus/dbus-sha.c (_dbus_sha_compute): use dbus_string_hex_encode
9444
9445         * dbus/dbus-md5.c (_dbus_md5_compute): use dbus_string_hex_encode
9446
9447         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): make this use
9448         the save-to-temp/rename trick to atomically write the new file
9449         (_dbus_string_parse_uint): new function
9450
9451 2003-02-22  Havoc Pennington  <hp@pobox.com>
9452
9453         * test/Makefile.am (dist-hook): fix dist for test/data/sha-1
9454
9455 2003-02-22  Havoc Pennington  <hp@pobox.com>
9456
9457         * dbus/dbus-message.c (dbus_message_iter_get_string_array):
9458         (dbus_message_iter_get_byte_array): Fix up doxygen warnings
9459
9460         * dbus/dbus-sha.c: add implementation of SHA-1 algorithm
9461
9462         * dbus/test/data/sha-1: add US government test suite for SHA-1
9463
9464 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
9465
9466         * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
9467         Make string arrays NULL-terminated.
9468
9469         * dbus/dbus-memory.c: (dbus_free_string_array):
9470         * dbus/dbus-memory.h:
9471         New function for freeing NULL-terminated string arrays.
9472
9473         * dbus/dbus-message-builder.c: (append_quoted_string),
9474         (_dbus_message_data_load):
9475         Add support for array types.
9476
9477         * dbus/dbus-message.c: (check_message_handling):
9478         Add more types as test cases.
9479
9480         * dbus/dbus-sysdeps.c: (_dbus_string_parse_int),
9481         (_dbus_string_parse_double):
9482         Add the start offset to the end offset.
9483
9484         * test/data/valid-messages/lots-of-arguments.message:
9485         New test message with lots of arguments.
9486
9487 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
9488
9489         * dbus/dbus-message.c: (dbus_message_append_nil),
9490         (dbus_message_append_int32), (dbus_message_append_uint32),
9491         (dbus_message_append_double), (dbus_message_append_string),
9492         (dbus_message_append_int32_array),
9493         (dbus_message_append_uint32_array),
9494         (dbus_message_append_double_array),
9495         (dbus_message_append_byte_array),
9496         (dbus_message_append_string_array):
9497         Fix all out-of-memory handling in these functions.
9498
9499 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
9500
9501         * dbus/dbus-message.c: (dbus_message_append_nil):
9502         Fix a silly.
9503
9504 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
9505
9506         * dbus/dbus-message.c: (dbus_message_append_args_valist),
9507         (dbus_message_append_nil), (dbus_message_append_int32_array),
9508         (dbus_message_append_uint32_array),
9509         (dbus_message_append_double_array),
9510         (dbus_message_append_byte_array),
9511         (dbus_message_append_string_array), (dbus_message_get_args_valist),
9512         (dbus_message_iter_get_int32_array),
9513         (dbus_message_iter_get_uint32_array),
9514         (dbus_message_iter_get_double_array),
9515         (dbus_message_iter_get_byte_array),
9516         (dbus_message_iter_get_string_array):
9517
9518         * dbus/dbus-message.h:
9519         Add functions for appending and getting arrays.
9520
9521 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
9522
9523         * dbus/dbus-mempool.c (_dbus_mem_pool_new): Make the
9524         element size at least 8 bytes, fixes mempool tests on
9525         64-bit machines.
9526
9527 2003-02-20  Alexander Larsson  <alexl@redhat.com>
9528
9529         * dbus/dbus-transport-unix.c (unix_do_iteration):
9530         Unlock the connection mutex during a blocking select call.
9531         Add todo about how we need a way to wake up the select.
9532
9533         * dbus/dbus-connection-internal.h:
9534         * dbus/dbus-connection.c:
9535         Add _dbus_connection_lock and _dbus_connection_unlock.
9536
9537 2003-02-19  Havoc Pennington  <hp@pobox.com>
9538
9539         * Doxyfile.in (PREDEFINED): put DOXYGEN_SHOULD_SKIP_THIS in
9540         Doxyfile.in, not Doxyfile
9541
9542         * dbus/dbus-keyring.c: do some hacking on this
9543
9544         * dbus/dbus-sysdeps.c (_dbus_delete_file): new
9545
9546         * dbus/dbus-errors.c (dbus_set_error_const): do not call
9547         dbus_error_init
9548         (dbus_set_error): remove dbus_error_init, check for message ==
9549         NULL *before* we sprintf into it, and add @todo about including
9550         system headers in this file
9551
9552         * dbus/dbus-sysdeps.c (_dbus_create_file_exclusively): new
9553
9554         * dbus/dbus-errors.h (DBUS_ERROR_FAILED): add
9555
9556         * dbus/dbus-sysdeps.c (get_user_info): break this function out to
9557         get various bits of user information based on either username
9558         or user ID
9559         (_dbus_homedir_from_username): new function
9560
9561 2003-02-19  Anders Carlsson  <andersca@codefactory.se>
9562
9563         * configure.in:
9564         Add check for nonposix getpwnam_r
9565
9566         * dbus/dbus-mempool.c: (_dbus_mem_pool_new):
9567         Align the pool element size to a sizeof (void *) boundary.
9568
9569         * dbus/dbus-sysdeps.c: (_dbus_setenv), (_dbus_connect_unix_socket),
9570         (_dbus_listen_unix_socket), (_dbus_credentials_from_username):
9571         General Solaris fixes.
9572
9573         * test/data/valid-messages/simplest-manual.message:
9574         Explicitly state that we want little-endian packing.
9575
9576 2003-02-19  Mikael Hallendal  <micke@codefactory.se>
9577
9578         * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
9579
9580         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_tcp_socket):
9581         Added to create a transport connecting using a tcp/ip socket.
9582
9583         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): Added to connect
9584         to a tcp socket at given host and port.
9585         (_dbus_listen_tcp_socket): added to listen on tcp socket for given
9586         hostname and port.
9587
9588         * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
9589
9590         * dbus/dbus-server-unix.c (_dbus_server_new_for_tcp_socket):
9591         Added to create a server listening on a TCP/IP socket.
9592
9593 2003-02-19  Havoc Pennington  <hp@pobox.com>
9594
9595         Throughout: mop up all the Doxygen warnings and undocumented
9596         stuff.
9597
9598         * dbus/dbus-sysdeps.c (do_exec): do not use execvp, we don't want
9599         to search any paths.
9600
9601         * dbus/dbus-threads.c: move global mutex initializers to
9602         dbus-internals.h, multiple prototypes was confusing doxygen
9603         besides being kind of ugly
9604
9605         * Doxyfile (PREDEFINED): have Doxygen define
9606         DOXYGEN_SHOULD_SKIP_THIS so we can exclude things from
9607         docs with #ifndef DOXYGEN_SHOULD_SKIP_THIS
9608         (do not abuse the feature! it's for stuff like the autogenerated
9609         macros in dbus-md5.c, not just for things you don't feel like
9610         documenting...)
9611
9612 2003-02-18  Havoc Pennington  <hp@pobox.com>
9613
9614         * dbus/dbus-string.c (_dbus_string_zero): new function
9615
9616         * dbus/dbus-md5.c: include MD5 implementation by L. Peter Deutsch,
9617         wrap it in some dbus-friendly API
9618
9619         * dbus/dbus-types.h: add 16-bit types
9620
9621 2003-02-18  Joe Shaw  <joe@assbarn.com>
9622
9623         * dbus/dbus-auth.c (handle_server_data_stupid_test_mech): Just get
9624         credentials from our currently running process.
9625         (get_word): Fix a buglet where we were copying the entire length
9626         instead of relative to our position.
9627
9628         * dbus/dbus-hash.c (_dbus_hash_test): Don't try to allocate the
9629         keys on the stack... it's 640k of data.
9630
9631         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): Always
9632         read the credentials byte off the socket, even if we don't have
9633         SO_PEERCRED.
9634         (_dbus_poll): Implement poll() using select() for systems which
9635         don't have it.
9636
9637         * glib/test-dbus-glib.c (main): Print out an error if no
9638         parameters are given.
9639
9640         * test/data/auth/fallback.auth-script: Added.  Tests that a client
9641         can fallback to a secondary auth mechanism if the first fails.
9642
9643 2003-02-18  Havoc Pennington  <hp@pobox.com>
9644
9645         * AUTHORS: add Alex
9646
9647 2003-02-17  Havoc Pennington  <hp@pobox.com>
9648
9649         * doc/dbus-specification.sgml: lots of cosmetic
9650         cleanups/rearrangement, add assorted FIXME, change DBUS_ADDRESS
9651         env variable to DBUS_BUS_ADDRESS, s/client/application/,
9652         s/server/bus/ (except in authentication section). Add a section
9653         "Message Bus Message Routing"
9654
9655 2003-02-17  Anders Carlsson  <andersca@codefactory.se.>
9656
9657         Release 0.4
9658
9659         * NEWS: Update
9660
9661 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
9662
9663         * doc/dbus-specification.sgml:
9664         Specification updates.
9665
9666 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
9667
9668         * bus/activation.c: (bus_activation_init), (child_setup),
9669         (bus_activation_activate_service):
9670         * bus/activation.h:
9671         * bus/main.c: (main):
9672         Set DBUS_ADDRESS environment variable.
9673
9674         * dbus/dbus-errors.c: (dbus_set_error):
9675         Don't use va_copy since that's a C99 feature.
9676
9677         * dbus/dbus-sysdeps.c: (_dbus_setenv), (do_exec),
9678         (_dbus_spawn_async):
9679         * dbus/dbus-sysdeps.h:
9680         Add child_setup_func to _dbus_spawn_async.
9681
9682         * doc/dbus-specification.sgml:
9683         Update specification.
9684
9685         * test/spawn-test.c: (setup_func), (main):
9686         Fix test.
9687
9688 2003-02-17  Alexander Larsson  <alexl@redhat.com>
9689
9690         * dbus/dbus-connection.c (_dbus_connection_handler_destroyed_locked):
9691         Added todo.
9692
9693 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
9694
9695         * doc/.cvsignore:
9696         * doc/Makefile.am:
9697         * doc/dbus-test-plan.sgml:
9698         Add test plan document.
9699
9700         * test/Makefile.am:
9701         Fix distcheck.
9702
9703 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
9704
9705         * dbus/dbus-message.c: (decode_header_data),
9706         (_dbus_message_loader_return_buffer):
9707         Set the header padding amount when loading a message.
9708
9709 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
9710
9711         * bus/dispatch.c: (send_one_message):
9712         Only send broadcast messages to registered connections.
9713
9714         * dbus/dbus-message.c: (dbus_message_name_is):
9715         * dbus/dbus-message.h:
9716         New convenience function.
9717
9718         * dbus/dbus-transport-debug.c: (do_reading):
9719         Only dispatch one message per run.
9720
9721         * test/Makefile.am:
9722         * test/bus-test.c: (new_connection_callback), (die),
9723         (test_hello_client1_handler), (test_hello_client2_handler),
9724         (test_hello_replies), (main):
9725
9726         * test/bus-test-loop.[ch]:
9727         Add these.
9728
9729 2003-02-16  Havoc Pennington  <hp@pobox.com>
9730
9731         * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
9732         backward conditional
9733
9734 2003-02-16  Alexander Larsson  <alexl@redhat.com>
9735
9736         * dbus/dbus-connection.c:
9737         Implement sent_message_with_reply. (with_reply_and block is still
9738         busted).
9739         Made dispatch_message not lose message if OOM.
9740
9741         * dbus/dbus-errors.h:
9742         Add NoReply error (for reply timeouts).
9743
9744 2003-02-16  Alexander Larsson  <alexl@redhat.com>
9745
9746         * dbus/dbus-hash.c (_dbus_hash_table_unref):
9747         Actually free keys and values when destroying hashtable.
9748
9749 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
9750
9751         * dbus/dbus-auth.c: (client_try_next_mechanism):
9752         Plug a leak.
9753
9754         * dbus/dbus-threads.c: (dbus_condvar_wait_timeout):
9755         Return TRUE if there's no thread implementation around.
9756
9757         * glib/dbus-gmain.c: (free_source),
9758         (dbus_connection_hookup_with_g_main):
9759         Make sure to remove the GSource when the connection is finalized.
9760
9761 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
9762
9763         * bus/dispatch.c: (bus_dispatch_message_handler):
9764         * dbus/dbus-errors.h:
9765         Return an error if someone tries to send a message to a service
9766         that doesn't exist.
9767
9768 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
9769
9770         * bus/activation.c: (load_directory), (bus_activation_init),
9771         (bus_activation_activate_service):
9772         * bus/activation.h:
9773         * bus/driver.c:
9774         (bus_driver_handle_activate_service), (bus_driver_handle_message):
9775         More work on the activation handling.
9776
9777         * dbus/dbus-errors.h:
9778         Add some error messages
9779
9780         * dbus/dbus-message.c: (dbus_message_new_error_reply):
9781         * dbus/dbus-message.h:
9782         New function that creates an error message.
9783
9784         * dbus/dbus-protocol.h:
9785         Add ACTIVATE_SERVER message.
9786
9787         * dbus/dbus-server-unix.c: (unix_handle_watch),
9788         (_dbus_server_new_for_domain_socket):
9789         Call _dbus_fd_set_close_on_exec.
9790
9791         * dbus/dbus-sysdeps.c: (make_pipe), (do_exec),
9792         (_dbus_spawn_async), (_dbus_disable_sigpipe),
9793         (_dbus_fd_set_close_on_exec):
9794         * dbus/dbus-sysdeps.h:
9795         Add _dbus_fd_set_close_on exec function. Also add function that checks
9796         that all open fds are set to close-on-exec and warns otherwise.
9797
9798         * dbus/dbus-transport-unix.c:
9799         (_dbus_transport_new_for_domain_socket):
9800         Call _dbus_fd_set_close_on_exec.
9801
9802 2003-02-16  Havoc Pennington  <hp@pobox.com>
9803
9804         * dbus/dbus-connection.c (dbus_connection_set_change_sigpipe):
9805         allow people to avoid setting SIGPIPE to SIG_IGN
9806         (_dbus_connection_new_for_transport): disable SIGPIPE unless
9807         we've been asked not to
9808
9809 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
9810
9811         * dbus/dbus-list.c: (_dbus_list_append_link),
9812         (_dbus_list_prepend_link):
9813         * dbus/dbus-memory.c: (dbus_malloc), (dbus_malloc0),
9814         (dbus_realloc):
9815         Warning fixes.
9816
9817 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
9818
9819         * bus/Makefile.am:
9820         * bus/activation.c: (bus_activation_entry_free),
9821         (add_desktop_file_entry), (load_directory), (bus_activation_init):
9822         * bus/activation.h:
9823         * bus/main.c: (main):
9824         Add simple activation support, doesn't work yet though.
9825
9826 2003-02-15   Zack Rusin  <zack@kde.org>
9827
9828         * qt/dbus-qthread.cpp:  small casting fix
9829
9830 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
9831
9832         * dbus/dbus-errors.c: (dbus_set_error):
9833         * dbus/dbus-errors.h:
9834         Add a few errors and make dbus_set_error void.
9835
9836         * dbus/dbus-sysdeps.c:
9837         (_dbus_errno_to_string), (close_and_invalidate), (make_pipe),
9838         (write_err_and_exit), (read_ints), (do_exec), (_dbus_spawn_async):
9839         * dbus/dbus-sysdeps.h:
9840         Add _dbus_spawn_async.
9841
9842         * test/spawn-test.c: (main):
9843         Test for _dbus_spawn_async.
9844
9845 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
9846
9847         * dbus/dbus-internals.h:
9848         Fix build without tests.
9849
9850         * dbus/dbus-list.c: (alloc_link):
9851         Fix a segfault when a malloc fails.
9852
9853         * dbus/dbus-memory.c: (initialize_malloc_debug), (dbus_malloc),
9854         (dbus_malloc0), (dbus_realloc):
9855         Add support for malloc debugging.
9856
9857 2003-02-15  Alexander Larsson  <alexl@redhat.com>
9858
9859         * dbus/dbus-threads.c:
9860         * dbus/dbus-threads.h:
9861         Add condvars. Remove static mutext from API.
9862         Implement static mutexes by initializing them from threads_init.
9863
9864         * glib/dbus-gthread.c:
9865         * qt/dbus-qthread.cpp:
9866         Update with the thread api changes.
9867
9868
9869         * dbus/dbus-list.c:
9870         * dbus/dbus-list.h:
9871         Turn StaticMutex into normal mutex + init function.
9872         Export new functions _dbus_list_alloc_link, _dbus_list_free_link,
9873         _dbus_list_append_link, _dbus_list_prepend_link
9874
9875
9876         * dbus/dbus-sysdeps.c:
9877         * dbus/dbus-sysdeps.h:
9878         New type dbus_atomic_t, and new functions _dbus_atomic_inc,
9879         _dbus_atomic_dec. Only slow fallback implementation at the moment.
9880
9881         * dbus/dbus-protocol.h:
9882         Add DBUS_MESSAGE_LOCAL_DISCONNECT define
9883
9884         * dbus/dbus-message.c:
9885         Make ref/unref atomic.
9886         Fix some docs.
9887
9888         * dbus/dbus-connection-internal.h:
9889         * dbus/dbus-connection.c:
9890         * dbus/dbus-connection.h:
9891         Make threadsafe.
9892         Change _peek to _borrow,_return & _steal_borrowed.
9893         Change disconnect callback to event.
9894         Make dbus_connection_dispatch_messages reentrant.
9895
9896         * dbus/dbus-transport.c:
9897         Don't ref the connection on calls to the transport
9898         implementation.
9899
9900         * dbus/dbus-message-handler.c:
9901         Make threadsafe.
9902
9903         * glib/dbus-gmain.c:
9904         Don't use peek_message anymore
9905
9906         * test/Makefile.am:
9907         * test/debug-thread.c:
9908         * test/debug-thread.h:
9909         Simple thread implementation that asserts() on deadlocks in
9910         single-threaded code.
9911
9912         * test/bus-test.c:
9913         (main) Call debug_threads_init.
9914
9915         * test/watch.c:
9916         Use disconnect message instead of disconnect callback.
9917
9918         * bus/connection.c:
9919         * bus/connection.h:
9920         Don't call dbus_connection_set_disconnect_function. Instead export
9921         bus_connection_disconnect.
9922
9923         * bus/dispatch.c:
9924         Call bus_connection_disconnect when we get a disconnected message.
9925
9926 2003-02-15  Havoc Pennington  <hp@pobox.com>
9927
9928         * dbus/dbus-message.c (dbus_message_new): fool around with the
9929         docs
9930
9931 2003-02-14  Havoc Pennington  <hp@pobox.com>
9932
9933         * dbus/dbus-mempool.c: fail if the debug functions so indicate
9934
9935         * dbus/dbus-memory.c: fail if the debug functions indicate we
9936         should
9937
9938         * dbus/dbus-internals.c (_dbus_set_fail_alloc_counter)
9939         (_dbus_decrement_fail_alloc_counter): debug functions to
9940         simulate memory allocation failures
9941
9942 2003-02-14  Havoc Pennington  <hp@pobox.com>
9943
9944         * dbus/dbus-errors.h (struct DBusError): add a word of padding
9945         to DBusError
9946
9947 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
9948
9949         * bus/driver.c: (bus_driver_handle_hello):
9950         * bus/driver.h:
9951         * bus/services.c: (bus_service_lookup):
9952         Reorder message sending so we get a more sane order.
9953
9954         * test/bus-test.c: (message_handler):
9955         Fix tyop.
9956
9957 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
9958
9959         * bus/driver.c: (bus_driver_send_service_deleted),
9960         (bus_driver_send_service_created), (bus_driver_send_service_lost),
9961         (bus_driver_send_service_acquired), (bus_driver_handle_hello),
9962         (bus_driver_send_welcome_message),
9963         (bus_driver_handle_list_services),
9964         (bus_driver_handle_acquire_service),
9965         (bus_driver_handle_service_exists):
9966         * dbus/dbus-bus.c: (dbus_bus_register_client),
9967         (dbus_bus_acquire_service), (dbus_bus_service_exists):
9968         * dbus/dbus-errors.c: (dbus_result_to_string):
9969         * dbus/dbus-errors.h:
9970         * dbus/dbus-message.c: (dbus_message_append_args),
9971         (dbus_message_append_args_valist), (dbus_message_get_args),
9972         (dbus_message_get_args_valist), (dbus_message_get_args_iter),
9973         (dbus_message_iter_get_arg_type), (dbus_message_iter_get_string),
9974         (dbus_message_iter_get_byte_array),
9975         (dbus_message_iter_get_string_array), (message_iter_test),
9976         (check_message_handling), (_dbus_message_test):
9977         * dbus/dbus-message.h:
9978         * test/bus-test.c: (main):
9979         Change fields to arguments in messages, so that they won't be
9980         confused with header fields.
9981
9982         * glib/test-dbus-glib.c: (main):
9983         Remove append_fields from hello message.
9984
9985 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
9986
9987         * dbus/dbus-errors.c:
9988         * dbus/dbus-message.c:
9989         * dbus/dbus-string.c:
9990         Documentation fixes.
9991
9992 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
9993
9994         * glib/dbus-gmain.c: (timeout_handler), (add_timeout),
9995         (remove_timeout):
9996         Implement support for timeouts in dbus-glib.
9997
9998 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
9999
10000         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
10001         * dbus/dbus-message.c: (process_test_subdir):
10002         * test/break-loader.c: (find_breaks_based_on):
10003         Plug some memory leaks.
10004
10005 2003-02-13  Richard Hult  <rhult@codefactory.se>
10006
10007         * bus/main.c: Fix build.
10008
10009         * dbus/dbus-errors.h:
10010         * dbus/dbus-errors.c: Fix copyright for Anders.
10011
10012 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10013
10014         * bus/Makefile.am:
10015         Add utils.[ch]
10016
10017         * bus/connection.c: (bus_connection_foreach):
10018         Fix a warning.
10019
10020         * bus/desktop-file.c: (grow_lines_in_section), (grow_sections),
10021         (unescape_string), (new_section), (parse_section_start),
10022         (parse_key_value), (report_error), (bus_desktop_file_load),
10023         (bus_desktop_file_get_string):
10024         * bus/desktop-file.h:
10025         Use DBusError for error reporting.
10026
10027         * bus/dispatch.c: (send_one_message),
10028         (bus_dispatch_message_handler):
10029         * bus/driver.c: (bus_driver_send_service_deleted),
10030         (bus_driver_send_service_created), (bus_driver_send_service_lost),
10031         (bus_driver_send_service_acquired), (bus_driver_handle_hello),
10032         (bus_driver_send_welcome_message),
10033         (bus_driver_handle_list_services),
10034         (bus_driver_handle_acquire_service),
10035         (bus_driver_handle_service_exists):
10036         * bus/loop.c: (bus_loop_run):
10037         * bus/main.c:
10038         Use BUS_HANDLE_OOM instead of _DBUS_HANDLE_OOM.
10039
10040         * bus/utils.c: (bus_wait_for_memory):
10041         * bus/utils.h:
10042         New files with general utility functions.
10043
10044         * dbus/dbus-internals.h:
10045         Remove _DBUS_HANDLE_OOM.
10046
10047 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10048
10049         * dbus/dbus-errors.c: (dbus_result_to_string), (dbus_error_init),
10050         (dbus_error_free), (dbus_set_error_const), (dbus_set_error):
10051         * dbus/dbus-errors.h:
10052         Add DBusError structure.
10053
10054 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10055
10056         * test/data/valid-messages/standard-acquire-service.message:
10057         * test/data/valid-messages/standard-hello.message:
10058         * test/data/valid-messages/standard-list-services.message:
10059         * test/data/valid-messages/standard-service-exists.message:
10060         Add some standard messages.
10061
10062 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10063
10064         * bus/driver.c: (bus_driver_send_welcome_message),
10065         (bus_driver_handle_list_services),
10066         (bus_driver_handle_acquire_service),
10067         (bus_driver_handle_service_exists), (bus_driver_handle_message):
10068         Update for API changes in libdbus.
10069
10070         * dbus/dbus-message.c: (dbus_message_new_reply):
10071         * dbus/dbus-message.h:
10072         Remove the name argument. The spec states that replies shouldn't
10073         have a name.
10074
10075 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10076
10077         * bus/desktop-file.c: (parse_section_start), (parse_key_value),
10078         (report_error), (bus_desktop_file_load), (lookup_section),
10079         (lookup_line), (bus_desktop_file_get_raw),
10080         (bus_desktop_file_get_string):
10081         * bus/desktop-file.h:
10082         Some fixes, and new functions for getting a key value from a section.
10083
10084 2003-02-13  Havoc Pennington  <hp@pobox.com>
10085
10086         * test/data/auth/fail-after-n-attempts.auth-script: new test
10087
10088         * dbus/dbus-auth.c (send_rejected): shutdown_mech() when we
10089         reject the client.
10090
10091 2003-02-13  Havoc Pennington  <hp@pobox.com>
10092
10093         * dbus/dbus-auth.c (handle_server_data_external_mech): args to
10094         dbus_credentials_match were backward
10095
10096         * dbus/dbus-auth-script.c (_dbus_auth_script_run): support
10097         NO_CREDENTIALS and ROOT_CREDENTIALS
10098
10099         * dbus/dbus-auth.c (_dbus_auth_do_work): move get_state() routine
10100         into here. Never process more commands after we've reached an
10101         end state; store further data as unused bytes.
10102
10103         * test/data/auth/*: add more auth tests
10104
10105         * dbus/dbus-auth-script.c (_dbus_auth_script_run): support EXPECT
10106         command to match exact string and EXPECT_UNUSED to match unused
10107         bytes
10108
10109         * test/Makefile.am (dist-hook): fix to dist all the test stuff
10110
10111 2003-02-12  Havoc Pennington  <hp@pobox.com>
10112
10113         * dbus/dbus-string.c (_dbus_string_pop_line): fix to also strip
10114         \r off of popped lines
10115
10116         * dbus/dbus-auth.c (_dbus_auth_test): write code to run auth
10117         scripts
10118
10119         * dbus/dbus-auth-script.c (_dbus_auth_script_run): when doing a
10120         SEND, append \r\n
10121
10122 2003-02-12  Havoc Pennington  <hp@pobox.com>
10123
10124         * dbus/Makefile.am: remove break-loader from the build, since it
10125         moved.
10126
10127         * configure.in: add --enable-gcov to turn on coverage profiling
10128         flags and disable optimization
10129
10130 2003-02-10  Havoc Pennington  <hp@pobox.com>
10131
10132         * dbus/dbus-auth-script.c, dbus/dbus-auth-script.h: sync
10133         initial cut at test framework for DBusAuth from laptop.
10134         Doesn't quite work yet but it compiles and I need to get
10135         it off the 266mhz laptop. ;-)
10136
10137         * dbus/dbus-server-debug.c (_dbus_server_debug_accept_transport):
10138         fix a memleak in error case
10139
10140 2003-02-12  Anders Carlsson  <andersca@codefactory.se>
10141
10142         * bus/Makefile.am:
10143         * bus/desktop-file.c:
10144         * bus/desktop-file.h:
10145         Add a desktop file parser.
10146
10147 2003-02-11  Zack Rusin  <zack@kde.org>
10148
10149         * qt/message.[h|cpp]: sample implementation
10150         of the KDE wrapper for DBusMessage
10151
10152 2003-02-09  Zack Rusin  <zack@kde.org>
10153
10154         * test/bus-test.c: make_it_compile
10155         * doc/dbus-specification.sgml: minimal semantic fix
10156
10157 2003-02-06  Anders Carlsson  <andersca@codefactory.se>
10158
10159         Release 0.3
10160
10161         * NEWS: Update
10162
10163 2003-02-06  Anders Carlsson  <andersca@codefactory.se>
10164
10165         * dbus/Makefile.am:
10166         * dbus/dbus-break-loader.c:
10167         * test/Makefile.am:
10168         * test/break-loader.c:
10169         Move dbus-break-loader to test/ and rename it to break-loader.
10170
10171 2003-02-02  Havoc Pennington  <hp@pobox.com>
10172
10173         * dbus/dbus-keyring.c, dbus/dbus-keyring.h: template files
10174         for code to manage cookies in your home directory
10175
10176         * dbus/dbus-sysdeps.c (_dbus_generate_random_bytes): new function
10177
10178         * dbus/dbus-auth.c (get_state): impose a maximum number of tries
10179         to authenticate, then disconnect the client.
10180
10181 2003-02-03  Alexander Larsson  <alexl@redhat.com>
10182
10183         * dbus/dbus-message.c (dbus_message_append_fields):
10184         Correct docs.
10185
10186 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10187
10188         * doc/dbus-specification.sgml:
10189         Update address format section.
10190
10191 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10192
10193         * test/Makefile.am:
10194         * test/bus-test.c: (get_time), (add_timeout), (remove_timeout),
10195         (message_handler), (new_connection_callback), (loop_quit),
10196         (loop_run), (main):
10197         Add bus test.
10198
10199 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10200
10201         * bus/driver.c: (bus_driver_handle_service_exists):
10202         Simplify the code a bit.
10203
10204         * dbus/dbus-bus.c: (dbus_bus_service_exists):
10205         Fix a silly.
10206
10207 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10208
10209         * bus/Makefile.am:
10210         Add libdbus-daemon.la and link to it.
10211
10212 2003-02-01  James Willcox  <jwillcox@gnome.org>
10213
10214         * bus/driver.c: (bus_driver_handle_own_service):
10215         Actually include the service reply code in the message.
10216
10217 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10218
10219         * bus/driver.c: (bus_driver_handle_service_exists):
10220         Don't unref the incoming message.
10221
10222 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10223
10224         * dbus/dbus.h: Add dbus-address.h and dbus-bus.h
10225
10226 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10227
10228         * dbus/dbus-server.c: (dbus_server_listen):
10229         * dbus/dbus-transport.c: (_dbus_transport_open):
10230         ifdef out the calls to the debug transport and server.
10231
10232 2003-02-02  Alexander Larsson  <alexl@redhat.com>
10233
10234         * dbus/dbus-watch.c (dbus_watch_get_flags):
10235         Add note in the docs that ERROR or HANGUP won't be returned
10236         and are assumed always on.
10237
10238         * glib/dbus-gmain.c (add_watch):
10239         Always add IO_ERR | IO_HUP
10240
10241         * dbus/dbus-message.h:
10242         Add semicolon after dbus_message_iter_get_string_array().
10243         Makes qt code build again
10244
10245 2003-02-01  Anders Carlsson  <andersca@codefactory.se>
10246
10247         * bus/driver.c: (create_unique_client_name),
10248         (bus_driver_handle_hello):
10249         Don't take a name, just use a numeric id to identify
10250         each client.
10251
10252         * dbus/Makefile.am:
10253         * dbus/dbus-bus.c: (dbus_bus_register_client),
10254         (dbus_bus_acquire_service), (dbus_bus_service_exists):
10255         * dbus/dbus-bus.h:
10256         Add new convenience functions for communicating with the bus.
10257
10258         * dbus/dbus-message.h:
10259
10260         * dbus/dbus-protocol.h:
10261         Fix a typo.
10262
10263 2003-02-01  Alexander Larsson  <alexl@redhat.com>
10264
10265         * dbus/dbus-message.c (dbus_message_append_fields):
10266         Add some more doc comments.
10267
10268 2003-02-01  Havoc Pennington  <hp@pobox.com>
10269
10270         * dbus/dbus-break-loader.c (randomly_modify_length): change
10271         a 4-byte value in the message as if it were a length
10272
10273         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): don't set
10274         execute bit on saved files
10275
10276 2003-02-01  Havoc Pennington  <hp@pobox.com>
10277
10278         * dbus/dbus-break-loader.c (main): new program to find messages
10279         that break the loader.
10280
10281         * dbus/dbus-sysdeps.c (_dbus_string_append_uint): new function
10282         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): new function
10283
10284         * dbus/dbus-string.c (_dbus_string_set_byte): new
10285
10286 2003-01-31  Havoc Pennington  <hp@pobox.com>
10287
10288         * dbus/dbus-message.c: refactor the test code to be more general,
10289         in preparation for writing a "randomly permute test cases to
10290         try to break the loader" program.
10291
10292 2003-01-31  Havoc Pennington  <hp@pobox.com>
10293
10294         * doc/dbus-specification.sgml: work on the specification
10295
10296         * dbus/dbus-message.c (_dbus_message_loader_return_buffer): check
10297         the protocol version of the message.
10298
10299         * dbus/dbus-protocol.h: drop special _REPLY names, the spec
10300         no longer specifies that.
10301         (DBUS_SERVICE_REPLY_SERVICE_EXISTS): fix flags (1/2/4/8 not
10302         1/2/3/4)
10303
10304         * dbus/dbus-marshal.c (_dbus_marshal_get_arg_end_pos): add missing
10305         "break" for DBUS_TYPE_NIL, remove @todo
10306
10307 2003-01-31  Havoc Pennington  <hp@pobox.com>
10308
10309         * dbus/dbus-message.c (dbus_message_set_is_error_reply): rename
10310         just set_is_error/get_is_error as this is a commonly-used
10311         function, and write docs.
10312
10313 2003-01-31  Anders Carlsson  <andersca@codefactory.se>
10314
10315         * dbus/dbus-address.c: (dbus_address_entry_free):
10316         Free key and value lists.
10317
10318         * dbus/dbus-internals.c: (_dbus_type_to_string):
10319         Add the types we didn't have.
10320
10321         * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
10322         (_dbus_marshal_validate_arg):
10323         Add NIL types.
10324
10325         * dbus/dbus-message.c: (dbus_message_set_sender):
10326         Remove todo about being able to set sender to NULL.
10327
10328         (dbus_message_set_is_error_reply),
10329         (dbus_message_get_is_error_reply):
10330         * dbus/dbus-message.h:
10331         New functions.
10332
10333         * dbus/dbus-protocol.h:
10334         Add error reply flag.
10335
10336         * test/data/valid-messages/opposite-endian.message:
10337         Add NIL type to test.
10338
10339 2003-01-31  Havoc Pennington  <hp@pobox.com>
10340
10341         * doc/dbus-specification.sgml: fully specify the header.  Add
10342         flags and major protocol version, and change header/body len to
10343         unsigned.
10344
10345         * dbus/dbus-message-builder.c (append_saved_length): append length
10346         as uint32
10347
10348         * dbus/dbus-message.c (dbus_message_create_header): change header
10349         length and body length to unsigned. Add the new fields from the
10350         spec
10351         (_dbus_message_loader_return_buffer): unsigned header/body len
10352
10353 2003-01-30  Havoc Pennington  <hp@pobox.com>
10354
10355         * dbus/dbus-auth.c: rework to use only REJECTED, no
10356         MECHANISMS
10357
10358         * doc/dbus-sasl-profile.txt: drop MECHANISMS and just
10359         use REJECTED, suggested by Mark McLoughlin
10360
10361 2003-01-30  Havoc Pennington  <hp@pobox.com>
10362
10363         * dbus/dbus-server.c (dbus_server_listen): @todo about how we need
10364         a better way to report errors here. e.g.  "unix address lacks
10365         path" or something. also "no such file" when the path doesn't
10366         exist, etc.
10367
10368         * dbus/dbus-address.c (dbus_address_entries_free): add @todo about
10369         leaking list nodes
10370         (dbus_parse_address): add @todo about documenting address format,
10371         and allowing , and ; to be escaped
10372
10373 2003-01-30  Anders Carlsson  <andersca@codefactory.se>
10374
10375         * dbus/Makefile.am:
10376         Add dbus-address.[ch]
10377
10378         * dbus/dbus-address.c: (dbus_address_entry_free),
10379         (dbus_address_entries_free), (create_entry),
10380         (dbus_address_entry_get_method), (dbus_address_entry_get_value),
10381         (dbus_parse_address), (_dbus_address_test):
10382         * dbus/dbus-address.h:
10383         New files for dealing with address parsing.
10384
10385         * dbus/dbus-connection.c:
10386         Document timeout functions.
10387
10388         * dbus/dbus-message.c:
10389         Document dbus_message_new_from_message.
10390
10391         * dbus/dbus-server-debug.c:
10392         Document.
10393
10394         * dbus/dbus-server.c: (dbus_server_listen):
10395         Parse address and use correct server implementation.
10396
10397         * dbus/dbus-string.c: (_dbus_string_find_to), (_dbus_string_test):
10398         * dbus/dbus-string.h:
10399         New function with test.
10400
10401         * dbus/dbus-test.c: (dbus_internal_symbol_do_not_use_run_tests):
10402         * dbus/dbus-test.h:
10403         Add address tests.
10404
10405         * dbus/dbus-transport-debug.c:
10406         Document.
10407
10408         * dbus/dbus-transport.c: (_dbus_transport_open):
10409         Parse address and use correct transport implementation.
10410
10411 2003-01-30  Havoc Pennington  <hp@pobox.com>
10412
10413         * dbus/dbus-message.c: use message->byte_order instead of
10414         DBUS_COMPILER_BYTE_ORDER throughout.
10415         (dbus_message_create_header): pad header to align the
10416         start of the body of the message to 8-byte boundary
10417
10418         * dbus/dbus-marshal.h: make all the demarshalers take const
10419         DBusString arguments.
10420
10421         * dbus/dbus-message.c (_dbus_message_loader_return_buffer):
10422         validate message args here, so we don't have to do slow validation
10423         later, and so we catch bad messages as they are incoming. Also add
10424         better checks on header_len and body_len. Also fill in
10425         message->byte_order
10426
10427         * dbus/dbus-string.c (_dbus_string_validate_utf8): new (not
10428         implemented properly)
10429         (_dbus_string_validate_nul): new function to check all-nul
10430
10431         * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): rename
10432         get_arg_end_pos and remove all validation
10433         (_dbus_marshal_validate_arg): actually do validation here.
10434
10435 2003-01-29  Havoc Pennington  <hp@pobox.com>
10436
10437         * dbus/dbus-message.c (check_message_handling): fix assertion
10438         failure on set_client_serial
10439
10440 2003-01-28  Havoc Pennington  <hp@pobox.com>
10441
10442         * dbus/dbus-server-debug.c: Add doc section comments
10443
10444         * dbus/dbus-transport-debug.c: add doc section comments
10445
10446 2003-01-28  Havoc Pennington  <hp@redhat.com>
10447
10448         * dbus/dbus-string.c (_dbus_string_base64_decode): append bytes in
10449         the reverse order from how I had it
10450         (_dbus_string_base64_encode): reverse encoding order. I was
10451         basically byteswapping everything during encoding.
10452
10453 2003-01-28  Anders Carlsson  <andersca@codefactory.se>
10454
10455         * dbus/dbus-connection-internal.h:
10456         * dbus/dbus-connection.c: (_dbus_connection_add_timeout),
10457         (_dbus_connection_remove_timeout):
10458         Add functions for adding and removing timeouts.
10459
10460         * dbus/dbus-message.c: (dbus_message_new_from_message):
10461         Add new function that takes a message and creates an exact
10462         copy of it, but with the refcount set to 1.
10463         (check_message_handling):
10464         Fix build error.
10465
10466         * dbus/dbus-server-protected.h:
10467         * dbus/dbus-server.c: (_dbus_server_init_base),
10468         (_dbus_server_finalize_base), (_dbus_server_add_timeout),
10469         (dbus_server_set_timeout_functions):
10470         (_dbus_server_remove_timeout):
10471         New functions so that a server can add and remove timeouts.
10472
10473         (dbus_server_listen):
10474         Add commented out call to dbus_server_debug_new.
10475
10476         * dbus/dbus-timeout.c: (_dbus_timeout_new):
10477         Actually set the handler, doh.
10478
10479         * dbus/dbus-transport.c: (_dbus_transport_open):
10480         Add commented out call to dbus_transport_debug_client_new.
10481
10482         * dbus/Makefile.am:
10483         Add dbus-transport-debug.[ch] and dbus-server-debug.[ch]
10484
10485 2003-01-28  Havoc Pennington  <hp@pobox.com>
10486
10487         * dbus/dbus-message.c (check_message_handling): function to check
10488         on the loaded message, iterates over it etc.
10489
10490 2003-01-28  Havoc Pennington  <hp@pobox.com>
10491
10492         * test/Makefile.am (dist-hook): fix make distdir
10493
10494         * dbus/Makefile.am (TESTS_ENVIRONMENT): fix make check
10495
10496 2003-01-27  Havoc Pennington  <hp@pobox.com>
10497
10498         * dbus/dbus-mempool.c (time_for_size): replace printf with
10499         _dbus_verbose
10500
10501         * dbus/dbus-message-builder.c (_dbus_message_data_load): allow
10502         empty lines; fix the SAVE_LENGTH stuff to be
10503         START_LENGTH/END_LENGTH so it actually works; couple other
10504         bugfixes
10505
10506         * test/Makefile.am (dist-hook): add dist-hook for .message files
10507
10508         * dbus/dbus-string.c (DBUS_STRING_COPY_PREAMBLE): source of a copy
10509         can be constant or locked.
10510         (_dbus_string_free): allow freeing a const string as
10511         documented/intended
10512
10513         * dbus/dbus-sysdeps.c (_dbus_concat_dir_and_file): utility
10514
10515         * dbus/dbus-test-main.c (main): take an argument which is the
10516         directory containing test data
10517
10518         * dbus/dbus-message.c (_dbus_message_test): pass a test_data_dir
10519         argument to this and load all the messages in test/data/
10520         checking that they can be loaded or not loaded as appropriate.
10521
10522 2003-01-27  Anders Carlsson  <andersca@codefactory.se>
10523
10524         * bus/dispatch.c: (bus_dispatch_message_handler):
10525         Dispatch messages sent to services.
10526
10527         * bus/driver.c: (bus_driver_send_service_deleted),
10528         (bus_driver_send_service_created), (bus_driver_send_service_lost),
10529         (bus_driver_send_service_acquired):
10530         Add helper functions for sending service related messages.
10531
10532         (bus_driver_send_welcome_message):
10533         Send HELLO_REPLY instead of WELCOME.
10534
10535         (bus_driver_handle_list_services):
10536         Send LIST_SERVICES_REPLY instead of SERVICES.
10537
10538         (bus_driver_handle_own_service),
10539         (bus_driver_handle_service_exists):
10540         New message handlers.
10541
10542         (bus_driver_handle_message):
10543         Invoke new message handlers.
10544
10545         (bus_driver_remove_connection):
10546         Don't remove any services here since that's done automatically
10547         by bus_service_remove_owner now.
10548
10549         * bus/driver.h:
10550         New function signatures.
10551
10552         * bus/services.c: (bus_service_add_owner):
10553         Send ServiceAcquired message if we're the only primary owner.
10554
10555         (bus_service_remove_owner):
10556         Send ServiceAcquired/ServiceLost messages.
10557
10558         (bus_service_set_prohibit_replacement),
10559         (bus_service_get_prohibit_replacement):
10560         Functions for setting prohibit replacement.
10561
10562         (bus_service_has_owner):
10563         New function that checks if a connection is in the owner queue of
10564         a certain service.
10565
10566         * bus/services.h:
10567         Add new function signatures.
10568
10569         * dbus/dbus-list.c: (_dbus_list_test):
10570         Add tests for _dbus_list_remove_last and traversing the list backwards.
10571
10572         * dbus/dbus-list.h:
10573         Fix a typo in _dbus_list_get_prev_link, if we're at the first element we can't
10574         go any further, so return NULL then.
10575
10576         * dbus/dbus-protocol.h:
10577         Add new messages, service flags and service replies.
10578
10579 2003-01-26  Havoc Pennington  <hp@pobox.com>
10580
10581         * dbus/dbus-message-builder.c: implement, completely untested.
10582
10583         * test/data/*: add data to be used in testing.
10584         ".message" files are our simple loadable text format.
10585         ".message-raw" will be binary dumps of messages.
10586
10587         * dbus/dbus-string.c (_dbus_string_starts_with_c_str): new
10588
10589 2003-01-26  Havoc Pennington  <hp@pobox.com>
10590
10591         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): new function
10592
10593         * dbus/dbus-errors.c (dbus_result_to_string): add
10594         file errors
10595
10596         * dbus/dbus-message-builder.c: new file, will contain code to load
10597         up messages from files. Not implemented yet.
10598
10599 2003-01-26  Havoc Pennington  <hp@pobox.com>
10600
10601         * dbus/dbus-message.c (dbus_message_set_sender): support deleting
10602         the sender by setting to NULL
10603
10604 2003-01-26  Havoc Pennington  <hp@pobox.com>
10605
10606         The unit tests pass, but otherwise untested.  If it breaks, the
10607         tests should have been better. ;-)
10608
10609         * bus/driver.c (bus_driver_handle_hello): return if we disconnect
10610         the connection.
10611
10612         * dbus/dbus-message.c: redo everything so we maintain
10613         message->header as the only copy of the various fields.
10614         This avoids the possibility of out-of-memory in some cases,
10615         for example dbus_message_lock() can't run out of memory anymore,
10616         and avoids extra copying. Figured I may as well go ahead and do
10617         this since it was busted for dbus_message_lock to not return
10618         failure on OOM, and dbus_message_write_header was totally
10619         unchecked for OOM. Also fixed some random other bugs.
10620
10621         * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): verify
10622         that strings are nul-terminated. Also, end_pos can be equal
10623         to string length just not greater than, I think.
10624         (_dbus_marshal_set_int32): new function
10625         (_dbus_marshal_set_uint32): new function
10626         (_dbus_marshal_set_string): new function
10627
10628         * dbus/dbus-connection.c (_dbus_connection_new_for_transport): fix
10629         a warning, init timeout_list to NULL
10630         (dbus_connection_send_message): don't use uninitialized variable
10631         "serial"
10632
10633         * dbus/dbus-string.c (_dbus_string_replace_len): new function
10634
10635 2003-01-26  Anders Carlsson  <andersca@codefactory.se>
10636
10637         * bus/driver.c: (bus_driver_handle_hello),
10638         (bus_driver_send_welcome_message):
10639         Plug leaks
10640
10641 2003-01-26  Anders Carlsson  <andersca@codefactory.se>
10642
10643         * dbus/dbus-auth.c: (process_auth), (_dbus_auth_unref):
10644         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
10645         (dbus_connection_unref):
10646         * dbus/dbus-marshal.c: (_dbus_marshal_test):
10647         * dbus/dbus-message.c: (dbus_message_unref),
10648         Plug memory leaks.
10649
10650         (dbus_message_get_fields):
10651         Remove debugging printout.
10652
10653         (_dbus_message_loader_return_buffer):
10654         Don't store the header string.
10655
10656         (_dbus_message_test):
10657         Plug leaks.
10658
10659 2003-01-26  Richard Hult  <rhult@codefactory.se>
10660
10661         * glib/dbus-gmain.c (dbus_connection_dispatch): Traverse a copy of
10662         the file descriptor list, since it can change under us.
10663
10664 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10665
10666         * glib/dbus-gmain.c: (dbus_connection_prepare),
10667         (dbus_connection_check), (dbus_connection_dispatch), (add_watch),
10668         (remove_watch), (dbus_connection_hookup_with_g_main):
10669         Rewrite the glib handling to use its own GSource instead of a
10670         GIOChannel so we can catch messages put in the queue while waiting
10671         for a reply.
10672
10673 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10674
10675         * bus/Makefile.am:
10676         * bus/connection.c: (connection_disconnect_handler),
10677         (connection_watch_callback), (bus_connection_setup):
10678         * bus/dispatch.c: (send_one_message),
10679         (bus_dispatch_broadcast_message), (bus_dispatch_message_handler),
10680         (bus_dispatch_add_connection), (bus_dispatch_remove_connection):
10681         * bus/dispatch.h:
10682         * bus/driver.c: (bus_driver_send_service_deleted),
10683         (bus_driver_send_service_created), (bus_driver_handle_hello),
10684         (bus_driver_send_welcome_message),
10685         (bus_driver_handle_list_services), (bus_driver_remove_connection),
10686         (bus_driver_handle_message):
10687         * bus/driver.h:
10688         Refactor code, put the message dispatching in its own file. Use
10689         _DBUS_HANDLE_OOM. Also send ServiceDeleted messages when a client
10690         is disconnected.
10691
10692 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10693
10694         * dbus/dbus-internals.h:
10695         Add _DBUS_HANDLE_OOM macro, it doesn't do anything currently.
10696
10697         * dbus/dbus-message.c: (dbus_message_get_sender):
10698         * dbus/dbus-message.h:
10699         Implement dbus_message_get_sender.
10700
10701         * dbus/dbus-protocol.h:
10702         Add message and service defines.
10703
10704 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10705
10706         * dbus/dbus-connection.c: (dbus_connection_send_message):
10707         * dbus/dbus-message-internal.h:
10708         * dbus/dbus-message.c: (_dbus_message_get_client_serial),
10709         (dbus_message_write_header):
10710         Remove _dbus_messag_unlock and don't set the client serial on a
10711         message if one already exists.
10712
10713 2003-01-24  Havoc Pennington  <hp@pobox.com>
10714
10715         * dbus/dbus-list.c (alloc_link): put a thread lock on the global
10716         list_pool
10717
10718         * bus/driver.c (bus_driver_handle_list_services): fix a leak
10719         on OOM
10720
10721 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10722
10723         * dbus/dbus-list.c: (alloc_link), (free_link):
10724         Use a memory pool for the links.
10725
10726 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10727
10728         * bus/connection.c: (bus_connection_foreach):
10729         * bus/connection.h:
10730         Add new bus_connection_foreach function.
10731
10732         * bus/driver.c: (send_one_message), (bus_driver_broadcast_message):
10733         Add function that broadcasts a message to all clients.
10734
10735         (bus_driver_send_service_created), (bus_driver_handle_hello),
10736         (bus_driver_send_welcome_message),
10737         (bus_driver_handle_list_services), (bus_driver_message_handler):
10738         Implement functions that take care of listing services, and notifying
10739         clients when new services are created.
10740
10741         * bus/services.c: (bus_services_list):
10742         * bus/services.h:
10743         Add new function that returns an array of strings with the currently
10744         registered services.
10745
10746         * glib/dbus-glib.h:
10747         * glib/dbus-gmain.c:
10748         Update copyright year.
10749
10750 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10751
10752         * dbus/dbus-connection.c: (dbus_connection_send_message):
10753         Unlock the message in case it was sent earlier.
10754
10755         (dbus_connection_send_message_with_reply_and_block):
10756         Remove the reply message from the list.
10757
10758         * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
10759         Set array_len and new_pos correctly.
10760
10761         (_dbus_marshal_test):
10762         Remove debug output.
10763
10764         * dbus/dbus-message-internal.h:
10765         * dbus/dbus-message.c: (_dbus_message_get_reply_serial):
10766         New function that returns the reply serial.
10767
10768         (_dbus_message_unlock):
10769         New function that unlocks a message and resets its header.
10770
10771         (dbus_message_append_string_array),
10772         (dbus_message_get_fields_valist),
10773         (dbus_message_iter_get_field_type),
10774         (dbus_message_iter_get_string_array),
10775         (dbus_message_get_fields),
10776         (dbus_message_append_fields_valist):
10777         Handle string arrays.
10778
10779         (dbus_message_set_sender):
10780         Make this function public since the bus daemon needs it.
10781
10782         (decode_header_data):
10783         Set the reply serial to -1 initially.
10784
10785         * dbus/dbus-message.h:
10786         Add dbus_message_set_sender.
10787
10788 2003-01-24  Havoc Pennington  <hp@pobox.com>
10789
10790         * doc/dbus-specification.sgml: add some stuff
10791
10792 2003-01-22  Havoc Pennington  <hp@pobox.com>
10793
10794         * doc/dbus-specification.sgml: Start to document the protocol.
10795
10796 2003-01-22  Havoc Pennington  <hp@pobox.com>
10797
10798         * dbus/dbus-connection.c
10799         (dbus_connection_send_message_with_reply_and_block): add some @todo
10800
10801         * bus/driver.c (bus_driver_add_connection): add a FIXME about memleak
10802
10803 2003-01-21  Havoc Pennington  <hp@pobox.com>
10804
10805         (patch untested because can't compile)
10806
10807         * bus/driver.c (create_unique_client_name): make this function
10808         never recycle client names. Also, caller should initialize
10809         the DBusString.
10810
10811         * dbus/dbus-sysdeps.c (_dbus_get_current_time): new function
10812
10813 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
10814
10815         * dbus/dbus-marshal.c: (_dbus_marshal_double),
10816         (_dbus_marshal_int32), (_dbus_marshal_uint32),
10817         (_dbus_marshal_int32_array), (_dbus_marshal_uint32_array),
10818         (_dbus_marshal_double_array), (_dbus_marshal_string_array),
10819         (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
10820         (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
10821         (_dbus_marshal_get_field_end_pos), (_dbus_marshal_test):
10822         * dbus/dbus-marshal.h:
10823         * dbus/dbus-protocol.h:
10824         Add support for marshalling and demarshalling integer, double
10825         and string arrays.
10826
10827 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
10828
10829         * bus/Makefile.am:
10830         Add driver.[ch]
10831
10832         * bus/connection.c: (connection_disconnect_handler):
10833         Remove the connection from the bus driver's list.
10834
10835         (connection_watch_callback): Dispatch messages.
10836
10837         (free_connection_data): Free connection name.
10838
10839         (bus_connection_setup): Add connection to the bus driver's list.
10840         (bus_connection_remove_owned_service):
10841         (bus_connection_set_name), (bus_connection_get_name):
10842         Add functions for setting and getting the connection's name.
10843
10844         * bus/connection.h:
10845         Add function headers.
10846
10847         * bus/driver.c: (create_unique_client_name),
10848         (bus_driver_handle_hello_message),
10849         (bus_driver_send_welcome_message), (bus_driver_message_handler),
10850         (bus_driver_add_connection), (bus_driver_remove_connection):
10851         * bus/driver.h:
10852         * bus/main.c:
10853         * bus/services.c: (bus_service_free):
10854         * bus/services.h:
10855         New file that handles communication and registreation with the bus
10856         itself.
10857
10858 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
10859
10860         * dbus/dbus-connection.c: (dbus_connection_send_message):
10861         Add a new client_serial parameter.
10862
10863         (dbus_connection_send_message_with_reply):
10864         Remove a @todo since we've implemented the blocking function.
10865
10866         (dbus_connection_send_message_with_reply_and_block):
10867         New function that sends a message and waits for a reply and
10868         then returns the reply.
10869
10870         * dbus/dbus-connection.h:
10871         Add new functions.
10872
10873         * dbus/dbus-errors.c: (dbus_result_to_string):
10874         * dbus/dbus-errors.h:
10875         Add new DBUS_RESULT.
10876
10877         * dbus/dbus-message-internal.h:
10878         * dbus/dbus-message.c: (_dbus_message_get_reply_serial),
10879         (_dbus_message_set_sender), (dbus_message_write_header),
10880         (dbus_message_new_reply), (decode_header_data),
10881         (_dbus_message_loader_return_buffer), (_dbus_message_test):
10882         * dbus/dbus-message.h:
10883         Add new functions that set the reply serial and sender.
10884         Also marshal and demarshal them correctly and add test.
10885
10886         * dbus/dbus-protocol.h:
10887         Add new DBUS_MESSAGE_TYPE_SENDER.
10888
10889         * glib/dbus-glib.h:
10890         * glib/dbus-gmain.c: (watch_callback), (free_callback_data),
10891         (add_watch), (remove_watch), (add_timeout), (remove_timeout),
10892         (dbus_connection_hookup_with_g_main):
10893         * glib/test-dbus-glib.c: (main):
10894         Rewrite to use GIOChannel and remove the GSource crack.
10895
10896         * test/echo-client.c: (main):
10897         * test/watch.c: (check_messages):
10898         Update for changed APIs
10899
10900 2003-01-19  Anders Carlsson  <andersca@codefactory.se>
10901
10902         * dbus/Makefile.am: Add dbus-timeout.[cħ]
10903
10904         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport):
10905         Create a DBusTimeoutList.
10906         (dbus_connection_set_timeout_functions): Add new function to
10907         set timeout callbacks
10908
10909         * dbus/dbus-connection.h: Add public DBusTimeout API.
10910
10911         * dbus/dbus-message.c: (dbus_message_get_service):
10912         * dbus/dbus-message.h:  New function.
10913
10914         * dbus/dbus-server.c: Fix small doc typo.
10915
10916         * dbus/dbus-timeout.[ch]: New files for mainloop timeouts.
10917
10918 2003-01-19  Anders Carlsson  <andersca@codefactory.se>
10919
10920         * dbus/dbus-string.c (_dbus_string_move_len): Don't delete all
10921         of the string, just as long as specified.
10922
10923 2003-01-19  Havoc Pennington  <hp@pobox.com>
10924
10925         * dbus/dbus-connection.c (dbus_connection_get_is_authenticated):
10926         new function
10927
10928         * dbus/dbus-server.c (dbus_server_set_max_connections)
10929         (dbus_server_get_max_connections, dbus_server_get_n_connections):
10930         keep track of current number of connections, and add API for
10931         setting a max (but haven't implemented enforcing the max yet)
10932
10933 2003-01-18  Havoc Pennington  <hp@pobox.com>
10934
10935         * dbus/dbus-transport-unix.c (unix_do_iteration): only do the
10936         reading/writing if read_watch != NULL or write_watch != NULL.
10937
10938         * dbus/dbus-message.c (_dbus_message_loader_return_buffer): fix
10939         the message loader code to actually load message->header and
10940         message->body into the newly-created message.
10941
10942         * dbus/dbus-transport-unix.c (check_write_watch): fix a mem leak
10943         in OOM case
10944
10945         * dbus/dbus-connection.c (dbus_connection_set_max_message_size)
10946         (dbus_connection_get_max_message_size)
10947         (dbus_connection_set_max_live_messages_size)
10948         (dbus_connection_get_max_live_messages_size): implement some
10949         resource limitation functions
10950
10951         * dbus/dbus-resources.c: new file implementing some of the
10952         resource limits stuff
10953
10954         * dbus/dbus-message.c (dbus_message_iter_get_byte_array): add
10955         missing docs, add @todo to handle OOM etc.
10956
10957         * dbus/dbus-marshal.c (_dbus_demarshal_byte_array): add missing
10958         docs
10959
10960 2003-01-18  Havoc Pennington  <hp@pobox.com>
10961
10962         * dbus/dbus-connection.c (dbus_connection_unref): disconnect the
10963         connection if it hasn't been already.
10964
10965         * dbus/dbus-connection.h: kill off the idea of an ErrorFunction,
10966         replace with DisconnectFunction.
10967
10968 2003-01-18  Havoc Pennington  <hp@pobox.com>
10969
10970         Building --disable-verbose-mode --disable-asserts --disable-tests
10971         cuts the library from 112K to 45K or so
10972
10973         * configure.in: check for varargs macro support,
10974         add --enable-verbose-mode, --enable-asserts.
10975
10976         * dbus/dbus-internals.h (_dbus_assert): support
10977         DBUS_DISABLE_ASSERT
10978         (_dbus_verbose): support DBUS_ENABLE_VERBOSE_MODE
10979
10980 2003-01-18  Havoc Pennington  <hp@pobox.com>
10981
10982         * dbus/dbus-test.c: include config.h so that tests actually run
10983
10984         * dbus/dbus-string.c: add assertions that stuff is 8-byte aligned,
10985         so the failure mode when that assumption fails will be plenty
10986         obvious.
10987
10988 2003-01-18  Havoc Pennington  <hp@pobox.com>
10989
10990         * configure.in: default --enable-tests to $USE_MAINTAINER_MODE
10991
10992         * dbus/Makefile.am: fix it up so dubs-test-main.c is included in
10993         the distribution
10994
10995         * test/Makefile.am: don't use special variable "TESTS" for echo-*
10996         since we don't want to use those in make check
10997
10998 2003-01-15  Havoc Pennington  <hp@redhat.com>
10999
11000         Release 0.2
11001
11002         * NEWS: update
11003
11004 2003-01-15  Havoc Pennington  <hp@redhat.com>
11005
11006         * test/Makefile.am: fix so that test source code ends up in the
11007         distribution on make distcheck
11008
11009 2003-01-15  Havoc Pennington  <hp@redhat.com>
11010
11011         Release 0.1.
11012
11013         * NEWS: update
11014
11015 2003-01-15  Havoc Pennington  <hp@redhat.com>
11016
11017         * dbus/dbus-test.c (dbus_internal_symbol_do_not_use_run_tests):
11018         fix build when --disable-tests
11019
11020         * Makefile.am (EXTRA_DIST): put HACKING in here
11021
11022         * HACKING: document procedure for making a tarball release.
11023
11024 2003-01-14  Anders Carlsson  <andersca@codefactory.se>
11025
11026         * bus/connection.c: (connection_error_handler),
11027         (bus_connection_setup):
11028         * bus/main.c: (main):
11029         Make sure that the DBusConnectionData struct is NULLed
11030         out to prevent a segfault.
11031
11032         * dbus/dbus-errors.c: (dbus_result_to_string):
11033         * dbus/dbus-errors.h:
11034         * dbus/dbus-message.c: (dbus_message_get_fields),
11035         (dbus_message_get_fields_valist), (_dbus_message_test):
11036         * dbus/dbus-message.h:
11037         Make dbus_message_get_fields return a result code so we can
11038         track invalid fields as well as oom.
11039
11040 2003-01-11  Havoc Pennington  <hp@pobox.com>
11041
11042         * configure.in: change --enable-test/--enable-ansi action-if-given
11043         to enable_foo=$enableval instead of enable_foo=yes
11044
11045 2003-01-08  Havoc Pennington  <hp@pobox.com>
11046
11047         * dbus/dbus-string.c (_dbus_string_align_length): new function
11048
11049         * dbus/dbus-test-main.c: move main() for test app here
11050         * dbus/dbus-test.c
11051         (dbus_internal_symbol_do_not_use_run_tests): we have to export a
11052         symbol to run tests, because dbus-test isn't in the main
11053         library
11054
11055         Code review nitpicks.
11056
11057         * dbus/dbus-message.c (dbus_message_write_header): add newlines
11058         for people with narrow emacs ;-). Assert client_serial was filled
11059         in. Assert message->name != NULL.
11060         (dbus_message_append_fields): have "first_field_type" arg separate
11061         from va list, needed for C++ binding that also uses varargs IIRC
11062         and helps with type safety
11063         (dbus_message_new): add @todo about using DBusString to store
11064         service/name internally
11065         (dbus_message_new): don't leak ->service and ->name on OOM later
11066         in the function
11067         (dbus_message_unref): free the service name
11068         (dbus_message_get_fields): same change to varargs
11069         i.e. first_field_type
11070         (_dbus_message_loader_return_buffer): assert that the message data
11071         is aligned (if not it's a bug in our code). Put in verbose griping
11072         about why we set corrupted = TRUE.
11073         (decode_header_data): add FIXME that char* is evil.  Was going to
11074         add FIXME about evil locale-specific string.h strncmp, but just
11075         switched to wacky string-as-uint32 optimization. Move check for
11076         "no room for field name" above get_const_data_len() to avoid
11077         assertion failure in get_const_data_len if we have trailing 2
11078         bytes or the like. Check for service and name fields being
11079         provided twice. Don't leak service/name on error. Require field
11080         names to be aligned to 4 bytes.
11081
11082         * dbus/dbus-marshal.c: move byte swap stuff to header
11083         (_dbus_pack_int32): uscore-prefix
11084         (_dbus_unpack_int32): uscore-prefix
11085         (_dbus_unpack_uint32): export
11086         (_dbus_demarshal_string): add @todo complaining about use of
11087         memcpy()
11088         (_dbus_marshal_get_field_end_pos): add @todo about bad error
11089         handling allowing corrupt data to go unchecked
11090
11091 2003-01-08  Havoc Pennington  <hp@redhat.com>
11092
11093         * dbus/dbus-transport-unix.c (unix_do_iteration): add read/write
11094         to the select() as needed for authentication. (should be using
11095         _dbus_poll() not select, but for another day)
11096
11097         * dbus/dbus.h: include dbus/dbus-protocol.h
11098
11099 2003-01-08  Anders Carlsson  <andersca@codefactory.se>
11100
11101         * dbus/Makefile.am (dbusinclude_HEADERS): Install
11102         dbus-connection.h
11103
11104 2003-01-08  Anders Carlsson  <andersca@codefactory.se>
11105
11106         * dbus/dbus-internals.c: (_dbus_type_to_string):
11107         New function that returns a string describing a type.
11108
11109         * dbus/dbus-marshal.c: (_dbus_demarshal_byte_array):
11110         * dbus/dbus-marshal.h:
11111         * dbus/dbus-message.c: (dbus_message_get_fields_valist),
11112         (dbus_message_iter_get_field_type), (dbus_message_iter_get_double),
11113         (dbus_message_iter_get_byte_array):
11114         * dbus/dbus-message.h:
11115         Add new convenience functions for appending and getting message fields.
11116         Also add demarshalling routines for byte arrays.
11117
11118 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
11119
11120         * dbus/dbus-connection-internal.h:
11121         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
11122         (_dbus_connection_get_next_client_serial),
11123         (dbus_connection_send_message):
11124         * dbus/dbus-internals.h:
11125         * dbus/dbus-marshal.c: (unpack_uint32), (dbus_unpack_int32),
11126         (dbus_pack_int32), (_dbus_marshal_double), (_dbus_marshal_int32),
11127         (_dbus_marshal_uint32), (_dbus_demarshal_double),
11128         (_dbus_demarshal_int32), (_dbus_demarshal_uint32),
11129         (_dbus_demarshal_string), (_dbus_marshal_get_field_end_pos),
11130         (_dbus_verbose_bytes), (_dbus_marshal_test):
11131         * dbus/dbus-marshal.h:
11132         * dbus/dbus-message-internal.h:
11133         * dbus/dbus-message.c: (_dbus_message_set_client_serial),
11134         (dbus_message_write_header), (_dbus_message_lock),
11135         (dbus_message_new), (dbus_message_ref), (dbus_message_unref),
11136         (dbus_message_get_name), (dbus_message_append_int32),
11137         (dbus_message_append_uint32), (dbus_message_append_double),
11138         (dbus_message_append_string), (dbus_message_append_byte_array),
11139         (dbus_message_get_fields_iter), (dbus_message_iter_ref),
11140         (dbus_message_iter_unref), (dbus_message_iter_has_next),
11141         (dbus_message_iter_next), (dbus_message_iter_get_field_type),
11142         (dbus_message_iter_get_string), (dbus_message_iter_get_int32),
11143         (dbus_message_iter_get_uint32), (dbus_message_iter_get_double),
11144         (decode_header_data), (_dbus_message_loader_return_buffer),
11145         (message_iter_test), (_dbus_message_test):
11146         * dbus/dbus-message.h:
11147         * dbus/dbus-protocol.h:
11148         * dbus/dbus-test.c: (main):
11149         * dbus/dbus-test.h:
11150         * glib/test-dbus-glib.c: (message_handler), (main):
11151         * test/echo-client.c: (main):
11152         * test/watch.c: (check_messages):
11153         Make messages sendable and receivable for real.
11154
11155 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
11156
11157         * dbus/dbus-marshal.c: (_dbus_marshal_double),
11158         (_dbus_marshal_string), (_dbus_marshal_byte_array):
11159         * dbus/dbus-message.c: (dbus_message_append_int32),
11160         (dbus_message_append_uint32), (dbus_message_append_double),
11161         (dbus_message_append_string), (dbus_message_append_byte_array):
11162         Handle OOM restoration.
11163
11164 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
11165
11166         * dbus/dbus-marshal.c: (_dbus_marshal_string),
11167         (_dbus_demarshal_string), (_dbus_marshal_test):
11168         * dbus/dbus-marshal.h:
11169         * dbus/dbus-message.c: (dbus_message_get_name),
11170         Document these functions.
11171
11172         (dbus_message_append_int32), (dbus_message_append_uint32),
11173         (dbus_message_append_double), (dbus_message_append_string),
11174         (dbus_message_append_byte_array):
11175         * dbus/dbus-message.h:
11176         Add functions for adding message fields of different types.
11177
11178         * dbus/dbus-protocol.h:
11179         Add the different types.
11180
11181 2003-01-05  Havoc Pennington  <hp@pobox.com>
11182
11183         * bus/connection.c: implement routines for handling connections,
11184         first thing is keeping a list of owned services on each connection
11185         and setting up watches etc.
11186
11187         * bus/services.c: implement a mapping from service names to lists
11188         of connections
11189
11190         * dbus/dbus-hash.c: add DBUS_HASH_POINTER
11191
11192         * dbus/dbus-threads.c (dbus_static_mutex_lock): add functions
11193         to use static mutexes for global data
11194
11195         * dbus/dbus-connection.c (dbus_connection_set_data): add new
11196         collection of functions to set/get application-specific data
11197         on the DBusConnection.
11198
11199 2003-01-04  Havoc Pennington  <hp@pobox.com>
11200
11201         * dbus/dbus-sysdeps.c (_dbus_sleep_milliseconds): new function
11202         (_dbus_poll): new function
11203
11204         * dbus/dbus-internals.h (_DBUS_STRUCT_OFFSET): new macro
11205         copied from GLib
11206
11207         * bus/loop.c: initial code for the daemon main loop
11208
11209 2003-01-04  Havoc Pennington  <hp@pobox.com>
11210
11211         * test/watch.c (error_handler): make it safe if the error handler
11212         is called multiple times (if we s/error handler/disconnect
11213         handler/ we should just guarantee it's called only once)
11214
11215         * dbus/dbus-transport.c (_dbus_transport_disconnect): call the
11216         error handler on disconnect (it's quite possible we should
11217         just change the error handler to a "disconnect handler," I'm
11218         not sure we have any other meaningful errors)
11219
11220         * configure.in: check for getpwnam_r
11221
11222         * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
11223         dbus/dbus-auth.c: add credentials support, add EXTERNAL auth
11224         mechanism as in SASL spec, using socket credentials
11225
11226         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): new function
11227         (_dbus_send_credentials_unix_socket): new function
11228
11229         * dbus/dbus-sysdeps.c (_dbus_accept_unix_socket): rename just
11230         dbus_accept()
11231         (_dbus_write): only check errno if <0 returned
11232         (_dbus_write_two): ditto
11233
11234 2003-01-02  Anders Carlsson  <andersca@codefactory.se>
11235
11236         * dbus/dbus-marshal.c: (_dbus_marshal_utf8_string),
11237         (_dbus_marshal_byte_array), (_dbus_demarshal_utf8_string),
11238         (_dbus_marshal_test):
11239         * dbus/dbus-marshal.h:
11240         Add _dbus_marshal_byte_array and rename _dbus_marshal_string
11241         to _dbus_marshal_utf8_string. Also fix some tests.
11242
11243 2002-12-28  Harri Porten  <porten@kde.org>
11244
11245         * configure.in: added check for C++ compiler and a very cheesy
11246         check for the Qt integration
11247
11248         * Makefile.am (SUBDIRS): compile qt subdir if support is enabled
11249
11250         * qt/Makefile.am: added
11251
11252         * qt/.cvsignore: added
11253
11254         * qt/dbus-qthread.cc, qt/dbus-qthread.cpp: renamed former to
11255         latter, added #ifdef QT_THREAD_SUPPORT guard.
11256
11257         * dbus/Makefile.am: added missing headers for make dist
11258
11259 2002-12-28  Kristian Rietveld  <kris@gtk.org>
11260
11261         * dbus/Makefile.am: fixup export-symbols-regex.
11262
11263 2002-12-27  Anders Carlsson  <andersca@codefactory.se>
11264
11265         * acinclude.m4: Add this file and put the
11266         PKG_CHECK_MODULE macro in it.
11267
11268 2002-12-27  Anders Carlsson  <andersca@codefactory.se>
11269
11270         * dbus/dbus-marshal.c: (_dbus_marshal_string),
11271         (_dbus_demarshal_double), (_dbus_demarshal_int32),
11272         (_dbus_demarshal_uint32), (_dbus_demarshal_string),
11273         (_dbus_marshal_test):
11274         Make the demarshalling routines align the pos argument.
11275         Add string marshalling tests and fix the obvious bugs
11276         discovered.
11277
11278 2002-12-26  Havoc Pennington  <hp@pobox.com>
11279
11280         * dbus/dbus-auth.c: fixes fixes fixes
11281
11282         * dbus/dbus-transport-unix.c: wire up support for
11283         encoding/decoding data on the wire
11284
11285         * dbus/dbus-auth.c (_dbus_auth_encode_data)
11286         (_dbus_auth_decode_data): append to target string
11287         instead of nuking it.
11288
11289 2002-12-26  Havoc Pennington  <hp@pobox.com>
11290
11291         * dbus/dbus-marshal.h (DBUS_COMPILER_BYTE_ORDER): #ifdef
11292         WORDS_BIGENDIAN then compiler byte order is DBUS_BIG_ENDIAN,
11293         doh
11294
11295         * dbus/dbus-marshal.c: Add macros to do int swapping in-place and
11296         avoid swap_bytes() overhead (ignoring possible assembly stuff for
11297         now). Main point is because I wanted unpack_uint32 to implement
11298         _dbus_verbose_bytes
11299         (_dbus_verbose_bytes): new function
11300
11301         * dbus/dbus-string.c (_dbus_string_validate_ascii): new function
11302
11303         * dbus/dbus-message.c (_dbus_message_loader_get_is_corrupted): add
11304         mechanism to handle a corrupt message stream
11305         (_dbus_message_loader_new): fix preallocation to only prealloc,
11306         not prelengthen
11307
11308         * dbus/dbus-string.c (_dbus_string_skip_blank): fix this function
11309         (_dbus_string_test): enhance tests for copy/move and fix the
11310         functions
11311
11312         * dbus/dbus-transport-unix.c: Hold references in more places to
11313         avoid reentrancy problems
11314
11315         * dbus/dbus-transport.c: ditto
11316
11317         * dbus/dbus-connection.c (dbus_connection_dispatch_message): don't
11318         leak reference count in no-message case
11319
11320         * test/watch.c (do_mainloop): handle adding/removing watches
11321         during iteration over the watches. Also, ref the connection/server
11322         stored on a watch, so we don't try to mangle a destroyed one.
11323
11324         * dbus/dbus-transport-unix.c (do_authentication): perform
11325         authentication
11326
11327         * dbus/dbus-auth.c (get_state): add a state
11328         AUTHENTICATED_WITH_UNUSED_BYTES and return it if required
11329         (_dbus_auth_get_unused_bytes): append the unused bytes
11330         to the passed in string, rather than prepend
11331
11332         * dbus/dbus-transport.c (_dbus_transport_init_base): create
11333         the auth conversation DBusAuth
11334
11335         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd)
11336         (_dbus_transport_new_for_domain_socket): when creating a
11337         transport, pass in whether it's a client-side or server-side
11338         transport so we know which DBusAuth to create
11339
11340 2002-12-03  Havoc Pennington  <hp@pobox.com>
11341
11342         * dbus/dbus-transport-unix.c (unix_finalize): finalize base
11343         _after_ finalizing the derived members
11344         (unix_connection_set): unref watch if we fail to add it
11345
11346         * dbus/dbus-connection.c (dbus_connection_unref): delete the
11347         transport first, so that the connection owned by the
11348         transport will be valid as the transport finalizes.
11349
11350         * dbus/dbus-transport-unix.c (unix_finalize): free the write_watch
11351         if necessary, and remove watches from the connection.
11352
11353         * dbus/dbus-watch.c (_dbus_watch_list_free): improve a comment
11354
11355 2002-12-26  Anders Carlsson  <andersca@codefactory.se>
11356
11357         * dbus/dbus-marshal.c: (_dbus_marshal_string),
11358         (_dbus_demarshal_double), (_dbus_demarshal_int32),
11359         (_dbus_demarshal_uint32), (_dbus_demarshal_string),
11360         (_dbus_marshal_test):
11361         * dbus/dbus-marshal.h:
11362         Add string marshal functions and have the demarshal functions
11363         return the new position.
11364
11365 2002-12-25  Havoc Pennington  <hp@pobox.com>
11366
11367         * doc/dbus-sasl-profile.txt: docs on the authentication protocol,
11368         it is a simple protocol that just maps directly to SASL.
11369
11370         * dbus/dbus-auth.h, dbus/dbus-auth.c: authentication protocol
11371         initial implementation, not actually used yet.
11372
11373         * dbus/dbus-string.c (_dbus_string_find): new function
11374         (_dbus_string_equal): new function
11375         (_dbus_string_base64_encode): new function
11376         (_dbus_string_base64_decode): new function
11377
11378 2002-12-25  Anders Carlsson  <andersca@codefactory.se>
11379
11380         * dbus/Makefile.am:
11381         * dbus/dbus-marshal.c: (swap_bytes), (_dbus_marshal_double),
11382         (_dbus_marshal_int32), (_dbus_marshal_uint32),
11383         (_dbus_demarshal_double), (_dbus_demarshal_int32),
11384         (_dbus_demarshal_uint32), (_dbus_marshal_test):
11385         * dbus/dbus-marshal.h:
11386         * dbus/dbus-protocol.h:
11387         * dbus/dbus-test.c: (main):
11388         * dbus/dbus-test.h:
11389         Add un-optimized marshalling/demarshalling routines.
11390
11391 2002-12-25  Harri Porten  <porten@kde.org>
11392
11393         * qt/dbus-qt.h: adjusted ctor and getter to KDE/Qt conventions
11394
11395 2002-12-24  Zack Rusin  <zack@kde.org>
11396
11397         * qt/dbus-qthread.cc: adding - integrates QMutex into Dbus
11398         * qt/dbus-qt.h: skeleton with two sample implemenatation of the
11399         main loop stuff
11400
11401 2002-12-24  Havoc Pennington  <hp@pobox.com>
11402
11403         * glib/dbus-gthread.c: fix include
11404
11405         * glib/dbus-glib.h: rename DBusMessageHandler for now.
11406         I think glib API needs to change, though, as you don't
11407         want to use DBusMessageFunction, you want to use the
11408         DBusMessageHandler object. Probably
11409         dbus_connection_open_with_g_main_loop()
11410         and dbus_connection_setup_g_main_loop() or something like that
11411         (but think of better names...) that just create a connection
11412         that has watch/timeout functions etc. already set up.
11413
11414         * dbus/dbus-connection.c
11415         (dbus_connection_send_message_with_reply): new function just to
11416         show how the message handler helps us deal with replies.
11417
11418         * dbus/dbus-list.c (_dbus_list_remove_last): new function
11419
11420         * dbus/dbus-string.c (_dbus_string_test): free a string that
11421         wasn't
11422
11423         * dbus/dbus-hash.c: use memory pools for the hash entries
11424         (rebuild_table): be more paranoid about overflow, and
11425         shrink table when we can
11426         (_dbus_hash_test): reduce number of sprintfs and write
11427         valid C89. Add tests for case where we grow and then
11428         shrink the hash table.
11429
11430         * dbus/dbus-mempool.h, dbus/dbus-mempool.c: memory pools
11431
11432         * dbus/dbus-connection.c (dbus_connection_register_handler)
11433         (dbus_connection_unregister_handler): new functions
11434
11435         * dbus/dbus-message.c (dbus_message_get_name): new
11436
11437         * dbus/dbus-list.c: fix docs typo
11438
11439         * dbus/dbus-message-handler.h, dbus/dbus-message-handler.c:
11440         an object representing a handler for messages.
11441
11442 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
11443
11444         * glib/dbus-glib.h:
11445         * glib/dbus-gthread.c: (dbus_gthread_init):
11446         Don't use the gdbus prefix for public functions.
11447
11448 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
11449
11450         * Makefile.am:
11451         * configure.in:
11452         Add GLib checks and fixup .pc files
11453
11454         * glib/Makefile.am:
11455         * glib/dbus-glib.h:
11456         * glib/dbus-gmain.c: (gdbus_connection_prepare),
11457         (gdbus_connection_check), (gdbus_connection_dispatch),
11458         (gdbus_add_connection_watch), (gdbus_remove_connection_watch),
11459         (dbus_connection_gsource_new):
11460         * glib/dbus-gthread.c: (dbus_gmutex_new), (dbus_gmutex_free),
11461         (dbus_gmutex_lock), (dbus_gmutex_unlock), (dbus_gthread_init):
11462         * glib/test-dbus-glib.c: (message_handler), (main):
11463         Add GLib support.
11464
11465 2002-12-15  Harri Porten  <porten@kde.org>
11466
11467         * autogen.sh: check for libtoolize before attempting to use it
11468
11469         * dbus/dbus-transport-unix.c: include <sys/time.h> for timeval
11470         struct.
11471
11472         * .cvsignore: ignore more stamp files
11473
11474         * dbus/dbus-watch.c (_dbus_watch_list_new): fixed doc error
11475
11476         * test/Makefile.am: added -I$(top_srcdir) to be able to compile
11477         without make install.
11478
11479 2002-12-15  Havoc Pennington  <hp@pobox.com>
11480
11481         * dbus/dbus-threads.c: add thread stubs that a higher library
11482         layer can fill in. e.g. the GLib wrapper might fill them in with
11483         GThread stuff. We still need to use this thread API to
11484         thread-safe-ize the library.
11485
11486 2002-12-12  Havoc Pennington  <hp@pobox.com>
11487
11488         * dbus/dbus-transport-unix.c, dbus/dbus-server-unix.c: use the
11489         below new interfaces and include fewer system headers.
11490
11491         * dbus/dbus-sysdeps.c (_dbus_read): new function
11492         (_dbus_write): new function
11493         (_dbus_write_two): new function
11494         (_dbus_connect_unix_socket): new function
11495         (_dbus_listen_unix_socket): new function
11496
11497         * dbus/dbus-message-internal.h: change interfaces to use
11498         DBusString
11499
11500 2002-12-11  Havoc Pennington  <hp@pobox.com>
11501
11502         * dbus/dbus-types.h: add dbus_unichar
11503
11504         * dbus/dbus-internals.c (_dbus_verbose): use _dbus_getenv
11505
11506         * dbus/dbus-connection.c (dbus_connection_send_message): return
11507         TRUE on success
11508
11509         * dbus/dbus-transport.c: include dbus-watch.h
11510
11511         * dbus/dbus-connection.c: include dbus-message-internal.h
11512
11513         * HACKING: add file with coding guidelines stuff.
11514
11515         * dbus/dbus-string.h, dbus/dbus-string.c: Encapsulate all string
11516         handling here, for security purposes (as in vsftpd). Not actually
11517         using this class yet.
11518
11519         * dbus/dbus-sysdeps.h, dbus/dbus-sysdeps.c: Encapsulate all
11520         system/libc usage here, as in vsftpd, for ease of auditing (and
11521         should also simplify portability). Haven't actually moved all the
11522         system/libc usage into here yet.
11523
11524 2002-11-25  Havoc Pennington  <hp@pobox.com>
11525
11526         * dbus/dbus-internals.c (_dbus_verbose): fix to not
11527         always print the first verbose message.
11528
11529 2002-11-24  Havoc Pennington  <hp@pobox.com>
11530
11531         * test/echo-client.c, test/echo-server.c: cheesy test
11532         clients.
11533
11534         * configure.in (AC_CHECK_FUNCS): check for writev
11535
11536         * dbus/dbus-message.c (_dbus_message_get_network_data): new
11537         function
11538
11539         * dbus/dbus-list.c (_dbus_list_foreach): new function
11540
11541         * dbus/dbus-internals.c (_dbus_verbose): new function
11542
11543         * dbus/dbus-server.c, dbus/dbus-server.h: public object
11544         representing a server that listens for connections.
11545
11546         * dbus/.cvsignore: create
11547
11548         * dbus/dbus-errors.h, dbus/dbus-errors.c:
11549         public API for reporting errors
11550
11551         * dbus/dbus-connection.h, dbus/dbus-connection.c:
11552         public object representing a connection that
11553         sends/receives messages. (Same object used for
11554         both client and server.)
11555
11556         * dbus/dbus-transport.h, dbus/dbus-transport.c:
11557         Basic abstraction for different kinds of stream
11558         that we might read/write messages from.
11559
11560 2002-11-23  Havoc Pennington  <hp@pobox.com>
11561
11562         * dbus/dbus-internals.h (_DBUS_INT_MAX): add _DBUS_INT_MIN
11563         _DBUS_INT_MAX
11564
11565         * dbus/dbus-test.c (main): add list test, and include
11566         dbus-test.h as intended
11567
11568         * dbus/dbus-hash.c (_dbus_hash_table_remove_string)
11569         (_dbus_hash_table_remove_int): return value indicates
11570         whether the entry existed to remove
11571
11572         * dbus/dbus-list.c: add linked list utility class,
11573         with docs and tests
11574
11575         * dbus/dbus-hash.c: add TODO item about shrinking the hash bucket
11576         array sometimes.
11577
11578 2002-11-23  Havoc Pennington  <hp@pobox.com>
11579
11580         * Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/
11581         DBUS_END_DECLS to nothing, that should fix this once and for all
11582
11583         * Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES
11584
11585         * dbus/dbus-message.c, dbus/dbus-hash.c:
11586         add some missing @brief
11587
11588 2002-11-23  Havoc Pennington  <hp@pobox.com>
11589
11590         * dbus/dbus-message.h: put semicolons after DEBUG_BEGIN_DECLS
11591         to avoid confusing Doxygen
11592
11593         * dbus/dbus-hash.c: @} not }@
11594
11595         * dbus/dbus-message.c (struct DBusMessage): split out
11596         internals docs
11597
11598 2002-11-23  Havoc Pennington  <hp@pobox.com>
11599
11600         * configure.in: pile on more warning flags if using gcc
11601
11602         * Doxyfile.in (EXTRACT_STATIC): set to NO, so we don't have
11603         to document static functions
11604
11605         * configure.in: add summary to end of configure so it
11606         looks nice and attractive
11607
11608         * dbus/dbus-hash.c: finish implementation and write unit
11609         tests and docs
11610
11611         * configure.in: add --enable-tests to enable unit tests
11612
11613         * dbus/dbus-test.c: test program to run unit tests
11614         for all files in dbus/*, initially runs a test for
11615         dbus-hash.c
11616
11617         * dbus/dbus-internals.h: file to hold some internal utility stuff
11618
11619 2002-11-22  Havoc Pennington  <hp@redhat.com>
11620
11621         * dbus/dbus-hash.c: copy in Tcl hash table, not yet
11622         "ported" away from Tcl
11623
11624         * dbus/dbus-types.h: header for types such as dbus_bool_t
11625
11626 2002-11-22  Havoc Pennington  <hp@redhat.com>
11627
11628         * dbus/dbus.h: fixups for doc warnings
11629
11630         * Doxyfile.in (FILE_PATTERNS): we need to scan .h to pick up
11631         macros
11632         (QUIET): make it quiet so we can see warnings
11633
11634         * dbus/dbus-memory.c: teach D-BUS to allocate and free memory
11635
11636 2002-11-22  Havoc Pennington  <hp@redhat.com>
11637
11638         * Makefile.am: include "Doxyfile" target in all-local
11639
11640         * configure.in: generate the Doxyfile
11641
11642         * Doxyfile.in: move Doxyfile here, so we can use
11643         configure to generate a Doxyfile with the right
11644         version number etc.
11645
11646 2002-11-22  Havoc Pennington  <hp@redhat.com>
11647
11648         * dbus/dbus-message.c: move inline docs into .c file
11649
11650         * Doxyfile (OUTPUT_DIRECTORY): move output to doc/api
11651         so all docs are under doc/
11652         (MAN_EXTENSION): generate man pages. Use extension
11653         ".3dbus" which matches ".3qt" on my system,
11654         I guess this is OK, I don't know really.
11655         (FILE_PATTERNS): look for .c files not .h, makes sense
11656         for plain C I think
11657
11658 2002-11-22  Havoc Pennington  <hp@pobox.com>
11659
11660         * Makefile.am (SUBDIRS): rename subdir "server" to "bus"
11661         because any app can be a server, and any app can be a client,
11662         the bus is a special kind of server.
11663
11664 Thu Nov 21 23:35:31 2002  Zack Rusin  <zack@kde.org>
11665
11666         * Doxyfile : adding. Still needs Makefile rules to be generated
11667         automatically (just run "doxygen" in the toplevel dir for now to
11668         generate docs)
11669
11670         * dbus/dbus-message.h : Adding sample docs (javadoc since
11671         resembles gtk-doc a little more)
11672
11673         * dbus/dbus.h : Adding sample docs
11674
11675 2002-11-21  Havoc Pennington  <hp@redhat.com>
11676
11677         * dbus/Makefile.am (INCLUDES): define DBUS_COMPILATION
11678         so we can allow ourselves to include files directly,
11679         instead of having to use dbus.h
11680
11681         * dbus/dbus.h: fill in
11682
11683         * dbus/dbus-message.h: sketch out a sample header file.
11684         Include griping if you include it directly instead of
11685         via dbus.h
11686
11687         * dbus/dbus-macros.h: new file with macros for extern "C",
11688         TRUE/FALSE, NULL, etc.
11689
11690         * doc/file-boilerplate.c: put include guards in here
11691
11692 2002-11-21  Havoc Pennington  <hp@redhat.com>
11693
11694         * doc/file-boilerplate.c: include both AFL and GPL boilerplate.
11695
11696         * COPYING: include the GPL as well, and license code
11697         under both AFL and GPL.
11698
11699 2002-11-21  Havoc Pennington  <hp@redhat.com>
11700
11701         * acconfig.h: get rid of this
11702
11703         * autogen.sh (run_configure): add --no-configure option
11704
11705         * configure.in: remove AC_ARG_PROGRAM to make
11706         autoconf complain less. add AC_PREREQ.
11707         add AC_DEFINE third arg.
11708
11709 2002-11-21  Anders Carlsson  <andersca@codefactory.se>
11710
11711         * doc/Makefile.am:
11712         Fix references so we can distcheck.
11713
11714 2002-11-21  Havoc Pennington  <hp@redhat.com>
11715
11716         * Initial module creation
11717