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