Unref message and protect against NULL
[platform/upstream/dbus.git] / ChangeLog
1 2005-08-17  Ross Burton  <ross@burtonini.com>
2
3         * glib/dbus-gproxy.c:
4         (dbus_g_proxy_call_no_reply): unref the message once sent.
5         (dbus_g_proxy_call): protect against NULL proxy.
6
7 2005-08-16  John (J5) Palmieri  <johnp@redhat.com>
8
9         * python/__init__.py: Version updated (0, 43, 0)
10         
11         * python/dbus_bindings.pyx: 
12         - Fixed type objects to have self passed into __init__
13         - Added the Variant type
14         - Add the ability to specify types or signatures for Array, Variant and Dictionary
15         - (Connection::send_with_reply_handlers): return a PendingCall object
16         - (_pending_call_notification): handle the case when an error is returned 
17         without an error message in the body
18         - (MessageIter::get_boolean): return True or False instead of an integer
19         - (MessageIter::python_value_to_dbus_sig): add direct checking of types and
20         add checks for objects with embeded signatures or types (Array, Variant and 
21         Dictionary)
22         - (MessageIter::append_byte): handle case when the value is a dbus.Byte
23         - (MessageIter::append_dict): handle embeded types or signatures
24         - (MessageIter::append_array): handle embeded types or signatures
25         - (MessageIter::append_variant): new method
26         
27         * python/proxies.py:
28         - (DeferedMethod): New. Dummy executable object used when queuing calls blocking on
29         introspection data
30         - (ProxyMethod::__call__): add the timeout keyword for specifying longer or
31         shorter timeouts for method calls
32         - (ProxyObject): Add first pass at an introspection state machine
33         - (ProxyObject::__init__): Add introspect keyword for turing off an on 
34         introspection. 
35         - (ProxyObject::_Introspect): Internal Introspect call that bypasses the usual
36         mechanisms for sending messages.  This is to avoid a deadlock where the Intospect
37         call would be queued waiting for the Introspect call to finish ;-)
38         - (ProxyObject::_introspect_reply_handler): New.  This method is called when
39         introspection returns with no error
40         - (ProxyObject::_introspect_error_handler): New.  This method is called when
41         introspection encounters an error
42         - (ProxyObject::__getattr__): Code to handle different introspection states.
43         Queue async calls or block blocking calls if we are introspecting.  Pass through
44         as normal if we are not or are done with introspecting.
45         
46         * python/service.py: Import signal and method from decorators.py
47
48         * python/types.py: Add Variant type
49
50 2005-08-16  Colin Walters  <walters@verbum.org>
51
52         * glib/dbus-gobject.c (dbus_set_g_error): Don't lose if the
53         DBusError message is NULL.
54
55 2005-08-09  Havoc Pennington  <hp@redhat.com>
56
57         * dbus/dbus-errors.c: apply patch from Timo Teras to make a
58         malloc'd copy of the name parameter
59
60 2005-08-09  Havoc Pennington  <hp@redhat.com>
61
62         * dbus/dbus-message.c (dbus_message_set_reply_serial): print
63         warning if the reply serial is set to 0
64
65 2005-08-04  Colin Walters  <walters@verbum.org>
66
67         * glib/dbus-gvalue-utils.h (_dbus_g_type_specialized_builtins_init)
68         (dbus_g_type_is_fixed, dbus_g_type_fixed_get_size)
69         (dbus_gvalue_set_from_pointer, dbus_g_hash_table_value_foreach)
70         (dbus_g_hash_table_insert_values, dbus_g_hash_table_insert_steal_values)
71         (dbus_gtype_is_valid_hash_key, dbus_gtype_is_valid_hash_value)
72         (dbus_g_hash_func_from_gtype, dbus_g_hash_free_from_gtype)
73         (dbus_g_hash_equal_from_gtype, dbus_gvalue_stor, dbus_gvalue_take):
74         * glib/dbus-gvalue.h (dbus_g_value_types_init)
75         (dbus_gvalue_demarshal, dbus_gvalue_demarshal_variant)
76         (dbus_gvalue_demarshal_message, dbus_gvalue_marshal):
77         
78         Prefix name with _ to ensure they're not exported.  All callers
79         updated.
80
81         * glib/dbus-gvalue.c (typecode_to_gtype)
82         (dbus_typecode_maps_to_basic, basic_typecode_to_gtype)
83         (signature_iter_to_g_type_dict)
84         (signature_iter_to_g_type_array)
85         (dbus_gtype_from_signature_iter, dbus_gtype_from_signature)
86         (dbus_gtypes_from_arg_signature):
87         Move to dbus-gsignature.c.
88
89         * glib/dbus-binding-tool-glib.c (dbus_binding_tool_output_glib_server): Call
90         dbus_g_type_specialized_builtins_init instead of dbus_g_value_types_init.
91         (dbus_binding_tool_output_glib_client): Ditto.
92
93         * glib/Makefile.am (DBUS_GLIB_INTERNALS): Add dbus-gsignature.c
94         and dbus-gsignature.h
95
96         * test/glib/test-service-glib.c (my_object_rec_arrays): Delete
97         unused variable.
98
99 2005-08-03  Colin Walters  <walters@verbum.org>
100
101         * glib/dbus-gobject.c: Add tests on hardcoded object info; this should
102         catch any incompatible changes accidentally made.
103
104 2005-08-03  Havoc Pennington  <hp@redhat.com>
105
106         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): fix
107         typo, from Julien Puydt
108
109         * bus/connection.c (bus_connection_disconnected): we were always
110         doing a wait_for_memory due to a buggy loop, found by Timo Hoenig
111
112 2005-08-01  Colin Walters  <walters@verbum.org>
113
114         Patch from Joe Markus Clarke:   
115         
116         * glib/dbus-gidl.c (property_info_unref, arg_info_unref): Fix
117         use-after-free.
118
119 2005-08-01  Colin Walters  <walters@verbum.org>
120         
121         Patch from Joe Markus Clarke:   
122         
123         * tools/dbus-send.c (main): 
124         
125         Don't use C99 style initializers (bug #3933).
126         
127 2005-08-01  Colin Walters  <walters@verbum.org>
128
129         Patch from Joe Markus Clarke:   
130
131         * glib/dbus-gvalue.c (dbus_g_value_types_init): 
132         * glib/dbus-gvalue-utils.c (dbus_g_type_specialized_builtins_init) 
133         * glib/dbus-gobject.c (write_interface):
134
135         Don't use C99 style initializers (bug #3933).
136
137 2005-07-31  Havoc Pennington  <hp@redhat.com>
138
139         * tools/dbus-viewer.c (load_child_nodes): fix invocation of
140         dbus_g_proxy_call, fix from Piotr Zielinski bug #3920
141
142 2005-07-30  Havoc Pennington  <hp@redhat.com>
143
144         * fix a bunch of Doxygen warnings and mistakes
145
146 2005-07-30  Havoc Pennington  <hp@redhat.com>
147
148         * dbus/dbus-sysdeps.c (_dbus_string_parse_uint): remove #ifdef
149         DBUS_BUILD_TESTS since it's now used in production code
150
151 2005-07-29  Havoc Pennington  <hp@redhat.com>
152
153         * test/glib/test-profile.c (write_junk): initialize the junk
154         buffer so valgrind doesn't have a breakdown
155
156 2005-07-29  Havoc Pennington  <hp@redhat.com>
157
158         * bus/signals.c (bus_signals_test): add match_rule_equal() tests
159         (match_rule_matches): remove unused arg
160         (test_matching): add tests for match_rule_matches()
161
162         * bus/signals.c (bus_match_rule_parse_arg_match): add ability to
163         do arg0='foo' arg5='bar' in the match rules
164         (match_rule_matches): don't match if the arg0='foo' doesn't match.
165
166         * dbus/dbus-protocol.h (DBUS_MAXIMUM_MATCH_RULE_ARG_NUMBER): add this
167
168 2005-07-29  Ross Burton  <ross@openedhand.com>
169
170         * dbus/dbus-connection.c:
171         Don't create a DBusCondVar which is never used.
172
173 2005-07-27  Ross Burton  <ross@openedhand.com>
174
175         * dbus/dbus-message.c:
176         Reduce the size of the maximum cached message to 10K.
177
178 2005-07-25  Ross Burton  <ross@openedhand.com>
179
180         * glib/dbus-gproxy.c:
181         Remove matches when all proxies are unregistered.
182
183 2005-07-24  Colin Walters  <walters@verbum.org>
184
185         * glib/dbus-gvalue.c (signature_iter_to_g_type_array): Don't require
186         typedata; recursive arrays won't have it.
187
188         * test/glib/test-dbus-glib.c:
189         * test/glib/test-service-glib.c:
190         * test/glib/test-service-glib.xml: Add recursive arrays tests.
191         
192 2005-07-20  John (J5) Palmieir  <johnp@redhat.com>
193
194         * python/_dbus.py, _util.py, decorators.py, extract.py, matchrules.py.
195         proxies.py, service.py: Cleanup of code after running it through the
196         pyflakes code checker mostly dealing with undefined names.  
197         (Bug #3828, Patch from Anthony Baxter <anthony@interlink.com.au>)
198
199 2005-07-17  John (J5) Palmieri  <johnp@redhat.com>
200
201         * NEWS: Update to 0.35.2
202
203 2005-07-17  John (J5) Palmieri  <johnp@redhat.com>
204
205         * python/_dbus.py: Remove import of the dbus.services
206         module as it no longer exists (patch from Dimitur Kirov)
207
208         * python/service.py (Object::__init__): Fixed typo
209         s/name/bus_name (patch from Dimitur Kirov)
210
211         * python/examples/example-signal-emitter.py: import dbus.glib
212         to get the main loop and use glib mainloop instead of gtk so
213         X doesn't have to be running.
214
215         * python/examples/example-signal-recipient.py: import dbus.glib
216         to get the main loop and use glib mainloop instead of gtk so
217         X doesn't have to be running. Import the decorators module
218         directly.
219
220         * test/glib/Makefile.am:  Added DIST_EXTRA files that distcheck
221         didn't pick up on but are needed to build
222
223         * configure.in: upped version to 0.35.2
224
225         * bus/driver.c, bus/selinux.c, bus/selinux.h, dbus/dbus-protocol.h:
226         added Colin Walters' SELinux API rename patch from head 
227         s/unix sercurity context/selinux security context/
228
229 2005-07-16  John (J5) Palmieri  <johnp@redhat.com>
230
231         * python/Makefile.am: dbus_binding.pxd.in should be included 
232         in EXTRA_DIST not dbus_binding.pxd
233         fix up $(srcdir) hopefully for the last time
234
235         * NEWS: Update to 0.35.1
236
237 2005-07-16  Colin Walters  <walters@verbum.org>
238
239         * bus/driver.c (bus_driver_handle_get_connection_selinux_security_context): Renamed
240         from bus_driver_handle_get_connection_unix_security_context.  Update for
241         error usage.
242         (message_handlers): Update for renames.
243
244         * bus/selinux.c (bus_selinux_allows_send): Handle OOM on
245         _dbus_string_init failure correctly.
246         (bus_selinux_append_context): Convert SID to context.  Append it
247         as a byte array.
248         (bus_selinux_shutdown): Handle the case where bus_selinux_full_init
249         hasn't been called.
250
251         * bus/selinux.h: Update prototype.
252
253         * dbus/dbus-protocol.h (DBUS_ERROR_SELINUX_SECURITY_CONTEXT_UNKNOWN): Renamed
254         from DBUS_ERROR_UNIX_SECURITY_CONTEXT_UNKNOWN.
255
256 2005-07-15  Colin Walters  <walters@verbum.org>
257
258         * doc/TODO: Add note about convenience wrappers.
259
260 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
261
262         * NEWS: Update to 0.35
263
264 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
265
266         * glib/Makefile.am: Add make-dbus-glib-error-switch.sh to EXTRA_DIST
267         so distcheck doesn't fail
268
269         * glib/examples/Makefile.am: Add example-service.xml and 
270         example-signal-emitter.xml to EXTRA_DIST so distcheck doesn't fail
271
272         * glib/examples/statemachine/Makefile.am: Add statemachine.xml and
273         statemachine-server.xml to EXTRA_DIST so distcheck doesn't fail
274
275         * python/Makefile.am: Preprend $(srcdir)/ to source files so the
276         compiler looks in the right places during distcheck
277
278 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
279
280         * glib/example/Makefile.am: Fix a typo which cause make distcheck
281         to fail
282
283 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
284
285         * python/examples/example-service.py,
286         python/examples/example-signal-emitter.py: Fixed up examples
287         for API changes
288
289 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
290
291         * python/__init__.py: Upped to version (0,42,0) because of
292         the API change
293
294 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
295
296         * ChangeLog: fix date in last entry
297
298         * configure.in, bus/system.conf.in: add the ability to configure 
299         the system bus user at compiletime with the --with-dbus-user flag
300         (patch from Kristof Vansant)
301
302 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
303
304         * bus/dispatch.c, test/test-service.c: Add testcase
305         for sending messages to oneself (TODO item).
306
307         * python/service.py (class Object): Swap ordering of bus_name 
308         and object_path parameters to better support inheritance.
309
310         * doc/dbus-tutorial.xml: change Python docs to reflect change
311         in parameter ordering and fix the inheritance section.
312
313         * doc/TODO: remove sending message to oneself TODO item
314
315 2005-07-15  Ross Burton  <ross@openedhand.com>
316
317         * glib/dbus-gproxy.c:
318         Fix a leak when calling methods via the proxy.
319
320 2005-07-15  Colin Walters  <walters@verbum.org>
321
322         * bus/selinux.c (bus_selinux_append_context): Wrap in
323         HAVE_SELINUX.
324
325 2005-07-14  John (J5) Palmieri  <johnp@redhat.com>
326
327         * python/_dbus.py (Bus::remove_signal_receiver):
328         don't add a callback to the match if none has been passed in
329         
330         * python/matchrules.py (SignalMatchTree::remove): if the rule
331         being matched does not have a callback treat it as a wildcard
332         fix matching logic
333
334         * doc/dbus-tutorial.xml: Add Python tutorial
335
336 2005-07-14  Colin Walters  <walters@verbum.org>
337
338         * bus/driver.c
339         (bus_driver_handle_get_connection_unix_security_context): New function.
340         (message_handlers): Add.
341
342         * bus/selinux.c (bus_selinux_append_context): New function; appends
343         security context to message.
344
345         * bus/selinux.h: Prototype.
346
347         * dbus/dbus-protocol.h (DBUS_ERROR_UNIX_SECURITY_CONTEXT_UNKNOWN): New.
348
349 2005-07-14  John (J5) Palmieri  <johnp@redhat.com>
350
351         * bus/activation.c: clean up all tabs to be 8 spaces 
352         (bus_activation_activate_service): make sure we clean up
353         if activation fails
354
355         * bus/dispatch.c: clean up all tabs to be 8 spaces 
356         (check_shell_fail_service_auto_start): New function
357         tests to make sure we get fail properly when trying to auto start a service
358         with a faulty command line
359         (check_shell_service_success_auto_start): New function tests to make sure
360         auto started services get the arguments on the command line
361
362         * test/test-shell-service.c: Added service for testing auto-starting with 
363         command line arguments
364
365         * test/data/valid-service-files/debug-shell-echo-fail.service.in, 
366         test/data/valid-service-files/debug-shell-echo-success.service.in:
367         Added service files for testing auto-starting with command line arguments
368
369         * */.cvsignore: added a bunch of generated files to various .cvsignore files
370
371 2005-07-14  Rodrigo Moya  <rodrigo@novell.com>
372
373         * dbus/dbus-shell.[ch]: copy/pasted code from GLib.
374         
375         * dbus/Makefile.am: added new files to build.
376
377         * bus/activation.c (bus_activation_activate_service): support
378         activation commands with parameters.
379
380         * test/shell-test.c: added test program for the shell parsing
381         code.
382
383 2005-07-13  David Zeuthen  <davidz@redhat.com>
384
385         * tools/dbus-send.c (append_arg, type_from_name): Also support 16 and
386         64 bit signed and unsigned parameters
387
388 2005-07-13  John (J5) Palmieri  <johnp@redhat.com>
389
390         * python/.cvsignore: remove dbus_bindings.pyx, add dbus_bindings.pxd
391
392         * python/service.py (class Name): renamed BusName to make it clearer
393         what the object is for (a name on the bus)
394
395         * python/examples/example-service.py,
396         python/examples/example-signal-emitter.py: change the Name object to
397         BusName
398
399 2005-07-12  Colin Walters  <walters@verbum.org>
400
401         Patch from Jim Gettys <Jim.Gettys@hp.com>.
402
403         * tools/dbus-launch.c: Include sys/select.h.
404
405 2005-07-12  John (J5) Palmieri  <johnp@redhat.com>
406         * python/dbus_bindings.pyx.in: removed
407
408         * python/dbus_bindings.pyx: Added.
409         - Fixed some memleaks (patch from 
410         Sean Meiners <sean.meiners@linspireinc.com>)
411         - Broke out the #include "dbus_h_wrapper.h" and put it in its
412         own pxd file (Pyrex definition)
413         - Broke out glib dependancies into its own pyx module
414         
415         * python/dbus_bindings.pdx: Added.
416         - Defines C class Connection for exporting to other modules
417
418         * python/dbus_glib_bindings.pyx: Added.
419         - New module to handle lowlevel dbus-glib mainloop integration
420
421         * python/glib.py: Added.
422         - Registers the glib mainloop when you import this module
423
424         * python/services.py: Removed (renamed to service.py)
425         
426         * python/service.py: Added.
427         - (class Server): renamed Name
428
429         * python/__init__.py: Bump ro version (0,41,0)
430         -don't import the decorators or service module
431         by default.  These now reside in the dbus.service namespace
432
433         * python/_dbus.py (Bus::__init__): Add code run the main loop 
434         setup function on creation 
435
436         * python/examples/example-service.py,
437         python/examples/example-signal-emitter.py: update examples
438
439         * python/examples/gconf-proxy-service.py,
440         python/examples/gconf-proxy-service2.py: TODO fix these up
441
442         * doc/TODO: Addition
443         - Added a Python Bindings 1.0 section
444         - added "Add match on args or match on details to match rules"
445
446
447 2005-07-12  Colin Walters  <walters@verbum.org>
448
449         * glib/examples/statemachine/Makefile.am (statemachine-server-glue.h) 
450         (statemachine-glue.h): 
451         * glib/examples/Makefile.am (example-service-glue.h) 
452         (example-signal-emitter-glue.h): 
453         * glib/Makefile.am (dbus-glib-error-switch.h): 
454         Add libtool --mode=execute so we use the built library instead
455         of any installed one.
456
457 2005-07-11  Colin Walters  <walters@verbum.org>
458
459         * glib/dbus-gvalue.c (struct _DBusGValue): Delete.
460         (dbus_g_value_types_init): Remove assertion.
461         (dbus_g_value_get_g_type, dbus_g_value_open)
462         (dbus_g_value_iterator_get_values, dbus_g_value_get_signature)
463         (dbus_g_value_copy, dbus_g_value_free): Delete unimplemented
464         functions related to DBusGValue.  Now we marshal/demarshal
465         structures as GValueArray.
466         (dbus_gtype_from_signature_iter): Return G_TYPE_VALUE_ARRAY for
467         structures.
468         (signature_iter_to_g_type_array): Don't call
469         signature_iter_to_g_type_struct.
470         (signature_iter_to_g_type_struct): Delete.
471         (dbus_gvalue_to_signature): Delete.
472         (dbus_gvalue_to_signature): New function with same name as other
473         one; we can convert structures to signatures.
474         (demarshal_valuearray): New function.
475         (get_type_demarshaller): Use it.
476         (demarshal_recurse): Delete.
477         (marshal_proxy): New function.
478         (marshal_map): Warn if we can't determine signature from type.
479         (marshal_collection_ptrarray): Ditto.
480         (marshal_collection_array): Ditto.
481         (get_type_marshaller): Use marshal_valuearray.
482         (marshal_recurse): Delete.
483         (_dbus_gvalue_test): Add some tests.
484
485         * dbus/dbus-glib.h (struct _DBusGValueIterator): 
486         (dbus_g_value_get_g_type, DBUS_TYPE_G_VALUE)
487         (dbus_g_value_open, dbus_g_value_iterator_get_value)
488         (dbus_g_value_iterator_get_values, dbus_g_value_iterator_recurse)
489         (dbus_g_value_free): Remove prototypes.
490
491         * glib/dbus-binding-tool-glib.c (dbus_g_type_get_lookup_function): Handle
492         G_TYPE_VALUE_ARRAY.
493
494         * glib/examples/example-service.c:
495         * glib/examples/example-client.c: Implement GetTuple.
496
497         * test/glib/test-dbus-glib.c:
498         * test/glib/test-service-glib.c:
499         * test/glib/test-service-glib.xml: Add structure tests.
500
501 2005-07-10  Colin Walters  <walters@verbum.org>
502
503         * doc/TODO: Knock off some GLib items with this patch.
504
505         * glib/dbus-gvalue-utils.c (_dbus_gtype_can_signal_error) 
506         (_dbus_gvalue_signals_error): New functions.
507
508         * glib/dbus-gvalue-utils.h: Prototype them.
509
510         * glib/dbus-gobject.c (arg_iterate): Update to handle return vals
511         and change to not output const/retval flags for input args.  All
512         callers updated.
513         (invoke_object_method): Refactor to handle return values.  Add
514         some more comments in various places.  Remove debug g_print.
515
516         * glib/dbus-binding-tool-glib.h (DBUS_GLIB_ANNOTATION_RETURNVAL): New.
517
518         * glib/dbus-binding-tool-glib.c (dbus_g_type_get_marshal_name):
519         Handle G_TYPE_NONE.
520         (compute_gsignature): New function; refactored from code from
521         compute_marshaller and compute_marshaller_name.  Enhance to
522         handle return values and async ops more cleanly.  Update for
523         async ops returning NONE instead of BOOLEAN.
524         (compute_marshaller, compute_marshaller_name): Call compute_gsignature
525         and output appropriate string.
526         (generate_glue): Handle return value annotation.  Also don't dump
527         constness flag for input arguments.
528
529         * glib/Makefile.am (DBUS_GLIB_INTERNALS): New variable; contains
530         files shared between installed library and utilities.
531         (libdbus_glib_1_la_SOURCES): Move some stuf into DBUS_GLIB_INTERNALS.
532         (libdbus_gtool_la_SOURCES): Suck in DBUS_GLIB_INTERNALS so the
533         binding tool can access gtype utility functions.
534
535         * test/glib/test-service-glib.c: 
536         * test/glib/test-service-glib.xml: 
537         * test/glib/test-dbus-glib.c: Add some tests for return values.
538
539 2005-07-09  Colin Walters  <walters@verbum.org>
540
541         * glib/dbus-gparser.c (parse_annotation): Add annotations to
542         argument if available, not method.
543
544         * glib/dbus-gobject.c (arg_iterate): More verbose warnings.
545         (invoke_object_method): First, remove some redundant
546         GValues (object_value, error_value) in favor of working on
547         array directly.  Second, rework constness to be less buggy.
548         Now we iterate directly over the argument metadata instead
549         of parallel iterating over output signature and metadata.
550
551         * glib/dbus-glib-tool.h: Add INVALID_ANNOTATION error.
552
553         * glib/dbus-binding-tool-glib.c (generate_glue): Barf on const
554         annotation on input args.
555         
556 2005-07-09  Colin Walters  <walters@verbum.org>
557
558         * glib/dbus-binding-tool-glib.h (DBUS_GLIB_ANNOTATION_CONST):
559         Define.
560
561         * glib/dbus-binding-tool-glib.c (generate_glue): Handle Const
562         annotation.
563
564         * glib/dbus-gobject.c (arg_iterate): Update to parse constval too.
565         (method_dir_signature_from_object_info): Handle arg_iterate change.
566         (write_interface): Ditto.
567         (lookup_object_info): Don't barf if format_version is > 0.
568         (invoke_object_method): Handle arg constness.
569
570         * glib/dbus-gidl.c (struct ArgInfo): Add annotations.
571         (arg_info_new): Create.
572         (arg_info_unref): Destroy.
573         (arg_info_get_annotations, arg_info_get_annotation) 
574         (arg_info_add_annotation): New functions.
575
576         * glib/dbus-gidl.h: Prototype them.
577
578         * glib/dbus-gparser.c (parse_annotation): Allow annotations in
579         args, disallow them in properties.
580         (parse_annotation): Handle arg annotations.
581
582         * test/glib/test-service-glib.xml: 
583         * test/glib/test-service-glib.c: Update to make some methods
584         const.
585
586 2005-07-08  Colin Walters  <walters@verbum.org>
587
588         * test/glib/test-service-glib.xml: 
589         * test/glib/test-service-glib.c:
590         * test/glib/test-dbus-glib.c: Test a{sv}.
591
592         * glib/examples/statemachine/statemachine.c:
593         * glib/examples/statemachine/statemachine-server.c:
594         * glib/examples/statemachine/statemachine-client.c: Fix some bugs,
595         add progress bar, etc.
596
597         * glib/dbus-gvalue.c (register_array, register_dict): Delete; not
598         needed anymore due to generic array/map marshalling.
599         (dbus_g_value_types_init): Don't register basic arrays or the
600         string/string hash.
601         (dbus_gtype_from_signature_iter): Don't try to recurse into
602         variants.
603         (dbus_gtype_to_signature): Check collection/map before type
604         metadata.
605         (demarshal_garray_basic): Renamed to demarshal_collection_array.
606         (demarshal_ghashtable): Renamed to demarshal_map; fix to use new
607         generic map creation/append functions instead of hash table
608         specifically.
609         (get_type_demarshaller): Handle maps.
610         (demarshal_collection): Dispatch on collection type to either
611         demarshal_collection_ptrarray or demarshal_collection_array.
612         (get_type_marshaller): Handle maps.
613         (marshal_collection): Dispatch collection type to either
614         marshal_collection_ptrarray or marshal_collection_array.
615         (_dbus_gvalue_test): New test.
616
617         * glib/dbus-gvalue-utils.c (unset_and_free_g_value): New function.
618         (hash_free_from_gtype): Use it to free GValues.
619         (hashtable_append): New function.
620         (ptrarray_append): Fix prototype.
621         (slist_append): Ditto.
622         (_dbus_gvalue_utils_test): Extend tests.
623
624         * glib/dbus-gtype-specialized.c
625         (dbus_g_type_specialized_init_append): Renamed from
626         dbus_g_type_specialized_collection_init_append.  Remove const from
627         value, since we steal it.
628         (dbus_g_type_specialized_map_append): New function.
629
630         * glib/dbus-gtype-specialized.h: Update prototypes.
631         Add DBusGTypeSpecializedMapAppendFunc.
632
633         * glib/dbus-gtest.c (dbus_glib_internal_do_not_use_run_tests): Run
634         _dbus_gvalue_test.
635         
636         * glib/dbus-gtest.h: Prototype it.
637
638 2005-07-08  Ross Burton  <ross@openedhand.com>
639
640         * dbus/dbus-glib.h:
641         Add DBysGAsyncData for the async bindings.
642
643         * glib/dbus-binding-tool-glib.c:
644         Re-enable the async bindings.
645
646         * test/glib/test-dbus-glib.c:
647         Add a test for the generated async bindings.
648
649 2005-07-08  Colin Walters  <walters@verbum.org>
650
651         * doc/TODO: Update GLib todo bits, also add a post-1.0 TODO for a
652         connection concept.
653         
654 2005-07-08  Colin Walters  <walters@verbum.org>
655         
656         * tools/Makefile.am: Kill of print-introspect in favor of using
657         dbus-send --print-reply=literal.
658
659         * test/glib/test-service-glib.xml: 
660         * test/glib/test-service-glib.c (my_object_get_objs): New test
661         for "ao".
662
663         * test/glib/test-dbus-glib.c (echo_received_cb): Free echo data.
664         (main): Test GetObjs.
665
666         * glib/examples/statemachine/Makefile.am:
667         * glib/examples/statemachine/sm-marshal.list:
668         * glib/examples/statemachine/statemachine-client.c:
669         * glib/examples/statemachine/statemachine-server.c:
670         * glib/examples/statemachine/statemachine-server.xml:
671         * glib/examples/statemachine/statemachine.c:
672         * glib/examples/statemachine/statemachine.h:
673         * glib/examples/statemachine/statemachine.xml:
674
675         New example.
676
677         * glib/examples/example-service.c (main): Move invocation
678         of dbus_g_object_type_install_info earlier, to emphasize it
679         should only be done once.
680
681         * glib/examples/example-signal-emitter.c (main): Ditto.
682
683         * glib/examples/Makefile.am (SUBDIRS): Include statemachine.
684
685         * glib/dbus-gvalue.h (dbus_gtype_to_signature)
686         (dbus_gvalue_marshal): Update prototypes.
687
688         * glib/dbus-gvalue.c: Update all marshalling functions to take
689         const GValue instead of GValue.
690         (signature_iter_to_g_type_array): Return a GPtrArray for nonfixed
691         types.
692         (dbus_gvalue_to_signature): Update for dbus_gtype_to_signature
693         change.
694         (dbus_gtype_to_signature): Handle generic collecitons and maps.
695         Return a newly-allocated string.
696         (demarshal_proxy, demarshal_object_path, demarshal_object)
697         (demarshal_strv, demarshal_ghashtable): Set error, don't assert if
698         we get the wrong types from message.
699         (get_type_demarshaller): New function, extracted from
700         dbus_gvalue_demarshal.
701         (demarshal_collection): New function, demarshals generic
702         collection.
703         (dbus_gvalue_demarshal): Just invoke result of
704         get_type_demarshaller.  Throw error if we don't have one.
705         (marshal_garray_basic): Abort on OOM.
706         (get_type_marshaller): New function, extracted from
707         dbus_gvalue_marshal.
708         (collection_marshal_iterator, marshal_collection): New functions;
709         implements generic marshalling for an iteratable specialized
710         collection.
711         (dbus_gvalue_marshal): Just invoke result of get_type_marshaller.
712
713         * glib/dbus-gvalue-utils.c (gvalue_from_ptrarray_value): Handle
714         G_TYPE_STRING.
715         (ptrarray_value_from_gvalue): Ditto.
716         (ptrarray_append, ptrarray_free): New functions.
717         (slist_constructor, slist_iterator, slist_copy_elt, slist_copy) 
718         (slist_append, slist_end_append, slist_free): New functions.
719         (dbus_g_type_specialized_builtins_init): Add append fuctions
720         for GPtrArray and GSList.  Register GSList.
721         (test_specialized_hash, _dbus_gvalue_utils_test): New functions.
722
723         * glib/dbus-gtype-specialized.h (DBusGTypeSpecializedAppendContext):
724         New.
725         (dbus_g_type_specialized_collection_init_append)
726         (dbus_g_type_specialized_collection_append)
727         (dbus_g_type_specialized_collection_end_append): Prototype.
728         (DBusGTypeSpecializedCollectionVtable): Add append_func and
729         end_append_func.
730
731         * glib/dbus-gtype-specialized.c (dbus_g_type_specialized_collection_init_append) 
732         (dbus_g_type_specialized_collection_append) 
733         (dbus_g_type_specialized_collection_end_append): New functions.
734         (dbus_g_type_map_value_iterate): Take const GValue.
735         (dbus_g_type_collection_value_iterate): Ditto.
736
737         * glib/dbus-gtest.c (dbus_glib_internal_do_not_use_run_tests): Run
738         _dbus_gvalue_utils_test.
739         
740         * glib/dbus-gtest.h: Prototype it.
741
742         * glib/dbus-gproxy.c (dbus_g_proxy_manager_filter): Avoid
743         using uninitialized owner_list.
744         (dbus_g_proxy_begin_call_internal): Move return_if_fail to
745         public API.
746         (dbus_g_proxy_end_call_internal): Update to use error set
747         from dbus_gvalue_demarshal instead of setting it here.
748         (dbus_g_proxy_begin_call): Move return_if_fail here.
749
750         * glib/dbus-gobject.c (write_interface): Update for
751         dbus_gtype_to_signature returning new string.
752
753         * configure.in: Add glib/examples/statemachine.
754
755 2005-07-08  Joe Shaw  <joeshaw@novell.com>
756
757         * configure.in: Add a configure option, --with-console-auth-dir
758         
759         * dbus/dbus-sysdeps-util.c (_dbus_user_at_console): Use the
760         new setting.  Patch from Kay Sievers.
761
762 2005-07-06  Colin Walters  <walters@verbum.org>
763
764         * dbus/dbus-glib.h (DBusGPendingCall, DBusGPendingCallNotify)
765         (DBUS_TYPE_G_PENDING_CALL, dbus_g_pending_call_get_g_type)
766         (dbus_g_pending_call_ref, dbus_g_pending_call_unref): Delete.
767         (dbus_g_pending_call_set_notify, dbus_g_pending_call_cancel):
768         Delete in favor of dbus_g_proxy_begin_call and
769         dbus_g_proxy_cancel_call.
770         (DBusGProxyCall, DBusGProxyCallNotify): New.
771         (dbus_g_proxy_begin_call): Change prototype to take callback, user
772         data, and destroy function.  This replaces
773         dbus_g_pending_call_set_notify.
774         (dbus_g_proxy_cancel_call): Prototype.
775         (DBusGAsyncData): Delete, shouldn't be needed anymore.
776
777         * glib/dbus-gproxy.c (struct _DBusGProxy): Add call_id_counter and
778         pending_calls map.
779         (struct _DBusGProxyManager): Add bus_proxy member, which is an
780         internal proxy for calls to the bus. Remove
781         pending_nameowner_calls, now the internal proxy keeps track.
782         (dbus_g_proxy_manager_unref): Unref bus proxy, remove reference to
783         pending_nameowner_calls.
784         (got_name_owner_cb): Update prototype, and use
785         dbus_g_proxy_end_call.
786         (got_name_owner_cb): Remove reference to pending_nameowner_calls.
787         (dbus_g_proxy_manager_register): Delete directly libdbus code in
788         favor of using internal proxy.
789         (dbus_g_proxy_manager_unregister): Update to use
790         dbus_g_proxy_cancel_call for any pending GetNameOwner call.
791         (dbus_g_proxy_init): Initialize pending calls map.
792         (dbus_g_proxy_constructor): New.
793         (dbus_g_proxy_class_init): Add get/set property functions,
794         constructor, and add NAME, PATH, and INTERFACE properties.
795         (cancel_pending_call): New function.
796         (dbus_g_proxy_dispose): Iterate over any outstanding calls and
797         cancel them.
798         (dbus_g_proxy_set_property, dbus_g_proxy_get_property): New.
799         (GPendingNotifyClosure): New structure.
800         (d_pending_call_notify, d_pending_call_free): Moved here from
801         dbus-glib.c.
802         (DBUS_G_VALUE_ARRAY_COLLECT_ALL): Moved around to satisfy function
803         ordering.
804         (manager_begin_bus_call): New internal function for talking to
805         internal bus proxy.
806         (dbus_g_proxy_new): Construct object using GObjet properties.
807         (dbus_g_proxy_begin_call_internal): Update to take user data, etc.
808         Create closure of same, and insert call into map of pending calls.
809         (dbus_g_proxy_end_call_internal): Take call id instead of pending
810         call.  Look up pending call in current set.  Remove it when we've
811         completed.
812         (dbus_g_pending_call_end, dbus_g_proxy_end_call_internal): Delete.
813         (dbus_g_proxy_begin_call): Change API to take callback, user data,
814         and destroy function directly.
815         (dbus_g_proxy_end_call): Update to take DBusGProxyCall.
816         (dbus_g_proxy_call): Invoke with NULL callback.
817         (dbus_g_proxy_cancel_call): New function, replaces
818         dbus_g_pending_call_cancel.
819
820         * glib/dbus-gparser.c (validate_signature): Fix call to
821         dbus_set_g_error.
822
823         * glib/dbus-gobject.c (dbus_g_object_type_dbus_metadata_quark):
824         New quark for attaching metadata to GType.
825         (info_hash): Delete.
826         (lookup_object_info): Look up using quark.
827         (dbus_g_object_type_install_info): Check that a type is classed,
828         not that it's an object.  Also just install type data using quark
829         instead of using global hash.
830
831         * glib/dbus-glib.c (dbus_g_pending_call_ref) 
832         (dbus_g_pending_call_unref, dbus_pending_call_get_g_type)
833         (GPendingNotifyClosure): Delete.
834         (d_pending_call_notify, d_pending_call_free): Move to dbus-gproxy.c.
835         (dbus_g_pending_call_set_notify, dbus_g_pending_call_cancel): Delete.
836
837         * glib/dbus-binding-tool-glib.c (generate_client_glue): Disable async
838         client method generation until we can fix it...
839         
840         * tools/dbus-viewer.c (load_child_nodes): Use dbus_g_proxy_call.
841         (load_from_service_thread_func): Ditto.
842
843         * tools/dbus-names-model.c (struct NamesModel): Hold
844         DBusGProxyCall.
845         (have_names_notify): Update prototype, use
846         dbus_g_proxy_cancel_call.
847         (names_model_reload): Update for new dbus_g_proxy_begin_call API.
848
849         * tools/dbus-monitor.c (filter_func): Update for print_message
850         API change.
851
852         * test/glib/test-dbus-glib.c: Add more tests for async
853         invocations.  Update many begin_call/end_call pairs to just use
854         dbus_g_proxy_call.
855
856         * tools/dbus-send.c (main): Add --print-reply=literal mode.  This
857         allows us to dump print-introspect.c.
858
859         * tools/dbus-print-message.h (print_message): Add literal argument
860         to print_message which is intended to allow printing arguments without
861         metadata like "string=".
862
863         * tools/dbus-print-message.c (print_iter): Add literal argument.
864         (print_message): Allow printing string messages literally.
865
866 2005-07-05  Colin Walters  <walters@verbum.org>
867
868         * glib/dbus-gproxy.c (marshal_dbus_message_to_g_marshaller):
869         Remove value refcount leak, original patch from Jorn Baayen
870         <jorn@openedhand.com>.  Also remove useless extra value in favor
871         of prepending to value array directly.
872
873 2005-07-02  Colin Walters  <walters@verbum.org>
874
875         * glib/dbus-gmain.c (_dbus_gmain_test): Fix test.
876
877 2005-07-01  Colin Walters  <walters@verbum.org>
878
879         Patch from Jonathan Matthew <jonathan@kaolin.hn.org>
880         
881         * glib/dbus-gvalue.c (basic_typecode_to_gtype): Fix return type.
882         (dbus_g_value_types_init): Marshal G_TYPE_CHAR as DBUS_TYPE_BYTE,
883         G_TYPE_LONG as DBUS_TYPE_INT32, G_TYPE_ULONG as DBUS_TYPE_UINT32,
884         and G_TYPE_FLOAT as DBUS_TYPE_DOUBLE.
885
886 2005-06-30  Colin Walters  <walters@verbum.org>
887
888         * test/glib/test-dbus-glib.c:
889         * test/glib/test-service-glib.c:
890         * test/glib/test-service-glib.xml: Update tests for new error
891         setting bits, also add async tests (patch from Ross Burton).
892
893         * test/glib/Makefile.am (test_service_glib_LDADD): Add
894         DBUS_GLIB_THREADS_LIBS.
895
896         * glib/dbus-gproxy.c (get_name_owner)
897         (dbus_g_pending_call_end_valist): Ditto.
898
899         * glib/dbus-gobject.c (error_metadata): New mapping from GError
900         domain (GQuark) to DBusGErrorInfo.  
901         (gerror_domaincode_to_dbus_error_name): Attempt to look up error
902         quark in error_metadata.  Take message interface as default
903         error message interface.
904         (gerror_to_dbus_error_message): Pass message interface.
905         (dbus_set_g_error): Resurrected.
906         (dbus_g_error_info_free): New function.
907         (dbus_g_object_type_install_info): Use g_type_class_ref instead
908         of _peek to actually create the object class if it hasn't been
909         created yet.
910         (dbus_g_error_domain_register): New function.
911
912         * glib/dbus-gmain.c (dbus_g_bus_get): Switch to dbus_set_g_error.
913
914         * glib/dbus-gparser.c (validate_signature): Ditto.
915
916         * dbus/dbus-glib.h (dbus_g_error_set): Delete.
917         (dbus_g_error_domain_register): Prototype.
918
919         * glib/dbus-glib.c (dbus_g_error_set): Delete.
920         Update tests.
921
922 2005-06-29  Colin Walters  <walters@verbum.org>
923
924         * dbus/dbus-glib.h: Delete DBUS_TYPE_G_PROXY_ARRAY.  Add
925         DBUS_TYPE_G_OBJECT_PATH.
926
927         * glib/dbus-gvalue.c (dbus_g_value_types_init): Remove marshallers
928         for G_TYPE_OBJECT and DBUS_TYPE_G_PROXY_ARRAY (the latter should
929         be handled more generically).  Add DBUS_TYPE_G_OBJECT_PATH.
930         (dbus_g_object_path_get_g_type): New function.
931         (dbus_gtype_from_signature_iter): Map DBUS_TYPE_OBJECT_PATH
932         to DBUS_TYPE_G_OBJECT_PATH by default.
933         (demarshal_proxy): Remove unused name variable.
934         (demarshal_object_path, marshal_object_path): New functions.
935         (demarshal_proxy_array, marshal_proxy_array): Delete.
936         
937         * glib/dbus-binding-tool-glib.c (dbus_g_type_get_c_name): Map
938         DBUS_TYPE_G_OBJECT_PATH to char *.
939         (dbus_g_type_get_lookup_function): Map builtin
940         DBUS_TYPE_G_OBJECT_PATH.
941
942         * test/glib/test-dbus-glib.c
943         * test/glib/test-service-glib.c (my_object_objpath): 
944         Adapt tests to new object path marshalling.
945
946 2005-06-29  John (J5) Palmieri  <johnp@redhat.com>
947
948         * configure.in: force check for Python >= 2.4
949
950 2005-06-29  Colin Walters  <walters@verbum.org>
951         
952         Patch from Ross Burton <ross@openedhand.com>
953         
954         * glib/dbus-gobject.c (invoke_object_method): Unset object
955         value in all cases, not only in async case.
956
957 2005-06-29  Colin Walters  <walters@verbum.org>
958
959         * glib/dbus-gproxy.c (struct _DBusGProxy): Add new member
960         name_call for keeping track of any outgoing GetNameOwner call.
961         Also add for_owner and associated.
962         (struct _DBusGProxyManager): Add owner_names, which is hash table
963         that maps a base name to a list of names it owns (that we're
964         interested in).  Add pending_nameowner_calls which is a list of
965         all outstanding GetNameOwner; avoids us having to iterate over
966         every proxy.  Add unassociated_proxies which keeps track of name
967         proxies with no associated name owner.
968         (dbus_g_proxy_manager_unref): Destroy owner_names.
969         (struct DBusGProxyNameOwnerInfo): New struct for keeping track of
970         name refcounts.
971         (find_name_in_info, name_owner_foreach)
972         (dbus_g_proxy_manager_lookup_name_owner, insert_nameinfo)
973         (dbus_g_proxy_manager_monitor_name_owner)
974         (dbus_g_proxy_manager_unmonitor_name_owner)
975         (unassociate_proxies, dbus_g_proxy_manager_replace_name_owner):
976         New functions; they manipulate the owner_names mapping.
977         (got_name_owner_cb): New function.
978         (get_name_owner): New function, extracted from
979         dbus_g_proxy_new_for_name_owner.
980         (dbus_g_proxy_manager_register): For now we need to keep track of
981         all NameOwnerChanged.  Also if the proxy is for a name, if we
982         don't already know the name owner, queue a new GetNameOwner
983         request and add it to our list of unassociated proxies.  Otherwise
984         inc the refcount.
985         (dbus_g_proxy_manager_unregister): If this proxy is for a name,
986         cancel any pending GetNameOwner call, etc.
987         (dbus_g_proxy_manager_filter): Handle NameOwnerChanged.  Also use
988         the owner_names mapping to look up the current names for the
989         signal source, and dispatch to any proxies for that name.
990         (dbus_g_proxy_new): Initialize new members.
991         (dbus_g_proxy_new_for_name): Delete unused proxy variable.
992         (dbus_g_proxy_new_for_name_owner): Use get_name_owner.
993         (dbus_g_pending_call_end_valist): New function, extracted from
994         dbus_g_proxy_end_call_internal.  Useful when we don't have a proxy
995         but want to use the GLib infrastructure.  Also note how many
996         arguments in reply were over.
997         (dbus_g_pending_call_end): New function, just call
998         dbus_g_pending_call_end_valist.
999         (dbus_g_proxy_end_call_internal): Just call
1000         dbus_g_pending_call_end_valist.
1001
1002         * glib/dbus-gobject.c (_dbus_gobject_lookup_marshaller): Fix lookup
1003         of builtin marshaller for STRING_STRING_STRING.
1004
1005         * test/glib/test-dbus-glib.c: 
1006         * test/glib/test-service-glib.c:
1007         * test/glib/test-service-glib.xml:
1008         Extend tests to cover name proxies, destruction of owner proxies,
1009         etc.
1010         
1011         * glib/examples/example-signal-recipient.c
1012         (dbus_g_proxy_new_for_name_owner): Create a name proxy.
1013         
1014         * tools/dbus-send.c (main): Print D-BUS error name in addition
1015         to message.
1016
1017 2005-06-28  John (J5) Palmieri  <johnp@redhat.com>
1018
1019         * python/dbus_bindings.pyx.in (cunregister_function_handler,
1020         cmessage_function_handler): Patch from 
1021         Anthony Baxter <anthony@interlink.com.au> fixes threading problems
1022         by using the Py_GILState_Ensure/Release to synchronize with the
1023         python runtime.
1024         
1025 2005-06-28  Ray Strode  <rstrode@redhat.com>
1026
1027         *  dbus/dbus-spawn.c (_dbus_babysitter_unref): kill
1028         babysitter helper process on last unref, bug #2813.
1029
1030 2005-06-27  Colin Walters  <walters@verbum.org>
1031
1032         * test/glib/test-dbus-glib.c: 
1033         * test/glib/test-service-glib.c:
1034         * test/glib/test-service-glib.xml:
1035         Test hash table signal emitting.
1036
1037         * glib/dbus-gobject.c (_dbus_gobject_lookup_marshaller): Convert
1038         types to their fundamental basis types, since this is what
1039         marshallers operate on.  Also add an entry for VOID__BOXED.
1040         (dbus_g_object_register_marshaller_array): Convert to fundamental.
1041
1042 2005-06-26  Havoc Pennington  <hp@redhat.com>
1043
1044         * doc/dbus-tutorial.xml: fix names of interface/service/path, fix
1045         from Don Park
1046
1047 2005-06-26  Colin Walters  <walters@verbum.org>
1048
1049         * glib/dbus-glib.c (dbus_set_g_error): Delete.
1050         (dbus_g_error_set): New public function from its ashes; used by
1051         both service-side method implementation and GLib bindings
1052         internals.
1053         (dbus_g_error_has_name, dbus_g_error_get_name): New function.
1054         (_dbus_glib_test): Add some tests.
1055
1056         * test/glib/test-dbus-glib.c (main): Test dbus_g_error_has_name.
1057
1058         * test/glib/test-service-glib.c (my_object_throw_error): Use
1059         dbus_g_error_set.
1060
1061         * glib/dbus-gobject.c (gerror_to_dbus_error_message): Handle
1062         errors thrown by dbus_g_error_set.
1063
1064         * glib/dbus-gmain.c (dbus_g_bus_get): Change to dbus_g_error_set.
1065
1066         * glib/dbus-gparser.c (validate_signature): Ditto.
1067
1068         * glib/dbus-gproxy.c (dbus_g_proxy_new_for_name_owner) 
1069         (dbus_g_proxy_end_call_internal): Ditto.
1070
1071         * glib/Makefile.am: Generate dbus-glib-error-switch.h, which
1072         converts DBUS_ERROR_x to DBUS_GERROR_x.
1073         (libdbus_glib_1_la_SOURCES, BUILT_SOURCES, CLEANFILES): Add it.
1074
1075         * doc/TODO: Remove error TODO.
1076
1077         * doc/dbus-tutorial.xml: Update with documentation about error
1078         handling.
1079
1080         * dbus/make-dbus-glib-error-enum.sh: Tighten up regexp to make
1081         sure we only change DBUS_ERROR to DBUS_GERROR, not all ERROR to
1082         GERROR.  Also add DBUS_GERROR_REMOTE_EXCEPTION.
1083
1084 2005-06-22  Colin Walters  <walters@verbum.org>
1085         
1086         Patch from Ross Burton <ross@openedhand.com>
1087
1088         * glib/dbus-gobject.c (dbus_g_method_return): Free out_sig.
1089
1090 2005-06-20  Colin Walters  <walters@verbum.org>
1091
1092         * configure.in: Add glib/examples.
1093
1094         * glib/Makefile.am: Add examples/
1095
1096         * glib/examples/.cvsignore
1097         * glib/examples/Makefile.am
1098         * glib/examples/example-client.c
1099         * glib/examples/example-service.c
1100         * glib/examples/example-service.xml
1101         * glib/examples/example-signal-emitter.c
1102         * glib/examples/example-signal-emitter.xml
1103         * glib/examples/example-signal-recipient.c:
1104         New files; GLib binding examples, ported from
1105         python/examples.
1106
1107 2005-06-20  Colin Walters  <walters@verbum.org>
1108
1109         * dbus/dbus-glib.h: 
1110         * glib/dbus-gproxy.c: Rename dbus_g_proxy_invoke to
1111         dbus_g_proxy_call.
1112
1113         * glib/dbus-binding-tool-glib.c: 
1114         * doc/dbus-tutorial.xml: 
1115         * test/glib/test-dbus-glib.c: Update for rename.
1116         
1117 2005-06-20  Colin Walters  <walters@verbum.org>
1118
1119         Patch suggested by Ross Burton <ross@openedhand.com>
1120
1121         * glib/dbus-gobject.c (export_signals): Free signal name.
1122         (g_value_init): Use G_VALUE_NOCOPY_CONTENTS to plug
1123         memory leak.  Add a bit of documentation.
1124         (dbus_g_method_return_error): Free context, and note we do
1125         so.
1126
1127 2005-06-18  Murray Cumming  <murrayc@murrayc.com>
1128
1129         * dbus/dbus-glib.h:
1130         * glib/dbus-gobject.c:
1131         * glib/dbus-gproxy.c:
1132         * glib/dbus-gvalue.c: Predeclare structs as 
1133         typedef struct _Something Something instead of 
1134         typedef struct Something Something, so we can 
1135         redeclare the prototypes. Other GNOME libraries 
1136         do this already.
1137
1138 2005-06-17  Colin Walters  <walters@verbum.org>
1139
1140         * tools/dbus-names-model.c (have_names_notify): Fix call
1141         to dbus_g_proxy_end_call.
1142         
1143 2005-06-17  Colin Walters  <walters@verbum.org>
1144
1145         * glib/dbus-gproxy.c (dbus_g_proxy_emit_remote_signal): Don't
1146         spew warnings if we get malformed remote signals.
1147
1148         * glib/dbus-gobject.c (propsig_iterate): New function.
1149         (lookup_object_info): New function, extracted from
1150         lookup_object_and_method.
1151         (introspect_properties, introspect_signals): Delete; these
1152         are merged into write_interface.
1153         (write_interface): Write out signals and properties here;
1154         dump the org.gtk.object stuff and use the interface given
1155         in the introspection data blob.  Also fix up property XML.
1156         (lookup_values): New function.
1157         (introspect_interfaces): Gather a mapping from interface to a
1158         list of its methods, signals, and properties, then write out
1159         each interface.
1160         (lookup_object_and_method): Use lookup_object_info.
1161         (struct DBusGSignalClosure): Add interface.
1162         (dbus_g_signal_closure_new): Add interface. Don't dup signame;
1163         we can just use the constant data.
1164         (dbus_g_signal_closure_finalize): Don't free signal name.
1165         (signal_emitter_marshaller): Use interface from signal closure.
1166         (export_signals): Only export signals mentioned in introspection
1167         blob.
1168         (dbus_g_connection_register_g_object): Warn if we have no
1169         introspection data for an object.
1170         (funcsig_equal): Remove unused variable.
1171         (dbus_g_object_register_marshaller): Take varargs instead of
1172         list.
1173         (dbus_g_object_register_marshaller_array): New function,
1174         extracted from old dbus_g_object_register_marshaller.
1175
1176         * glib/dbus-binding-tool-glib.c (struct DBusBindingToolCData): Add
1177         signals and property data.
1178         (write_quoted_string): New function, extracted from generate_glue.
1179         (generate_glue): Write signals and properties to introspection
1180         blob.
1181
1182         * dbus/dbus-glib.h (struct DBusGObjectInfo): Include
1183         exported_signals and exported_properties.
1184         (dbus_g_object_register_marshaller): Update prototype.
1185         (dbus_g_object_register_marshaller_array): Prototype.
1186         
1187         * test/glib/test-dbus-glib.c: Extend testing to cover new signals.
1188
1189         * test/glib/test-service-glib.c: Add new test signals and method
1190         to emit them.
1191
1192         * test/glib/test-service-glib.xml: Add some test signals.
1193
1194         * test/glib/Makefile.am (BUILT_SOURCES): Add my-object-marshal.c
1195         and my-object-marshal.h
1196         (test_service_glib_SOURCES, test_dbus_glib_SOURCES): Add
1197         my-object-marshal.c.
1198         (my-object-marshal.c, my-object-marshal.h): Implement.
1199
1200         * test/glib/.cvsignore: Update.
1201
1202         * doc/TODO: Remove two GLib TODO items fixed by this
1203         patch.
1204
1205 2005-06-16  Colin Walters  <walters@verbum.org>
1206
1207         * doc/TODO: Update for GLib bindings.
1208         
1209 2005-06-16  Colin Walters  <walters@verbum.org>
1210
1211         * glib/dbus-binding-tool-glib.c:
1212         * glib/dbus-gobject.c:
1213         * glib/dbus-gproxy.c:  Add Nokia copyright; Patch
1214         from Ross Burton, for his GLib bindings work.
1215
1216 2005-06-16  Colin Walters  <walters@verbum.org>
1217
1218         * glib/dbus-gobject.c (funcsig_hash, funcsig_equal): Use n_params
1219         to iterate instead of walking to G_TYPE_INVALID.
1220
1221         Patch based on a patch from Ryan Gammon.
1222
1223 2005-06-16  Colin Walters  <walters@verbum.org>
1224
1225         * bus/bus.c (bus_context_new): Set parser to NULL
1226         after we unref it (Patch from Chris Boscolo, #2174).
1227         
1228 2005-06-16  Colin Walters  <walters@verbum.org>
1229
1230         * python/dbus_bindings.pyx.in: Import size_t,
1231         __int64_t, __uint64_t, and __signed.
1232
1233         * dbus/dbus-sysdeps.c <HAVE_CMSGCRED> (write_credentials_byte):
1234         Define cmsg struct, output it.
1235         (_dbus_read_credentials_unix_socket):
1236         Use cmsg struct.
1237         
1238         Patch from Joe Markus Clarke for FreeBSD support.
1239         
1240 2005-06-16  Colin Walters  <walters@verbum.org>
1241
1242         * tools/dbus-send.c (append_array): Use strtok.
1243         (append_dict): New function.
1244         (type_from_name): New function, extracted from main.
1245         (main): Handle sending dicts.
1246
1247         * tools/dbus-print-message.c (print_iter): Print dict
1248         entries.
1249         
1250 2005-06-16  Colin Walters  <walters@verbum.org>
1251
1252         * glib/dbus-gvalue.c (marshal_basic): Marshal NULL string
1253         values as the empty string (#2948).
1254         
1255 2005-06-16  Colin Walters  <walters@verbum.org>
1256
1257         * dbus/Makefile.am:
1258         * mono/doc/Makefile.am:
1259         * test/glib/Makefile.am:
1260
1261         Fix srcdir != builddir issues (Patch from Chris Wilson, #3477)
1262
1263 2005-06-16  Colin Walters  <walters@verbum.org>
1264
1265         * dbus/dbus-marshal-header.c (_dbus_header_load): Set
1266         header byte order from expected byte order (Patch from Chris Wilson, #3475).
1267
1268         * dbus/dbus-marshal-byteswap.c (byteswap_body_helper): 
1269         Increment pointer after swapping fixed array.  Add assertion
1270         for array length.
1271                 
1272 2005-06-15  Colin Walters  <walters@verbum.org>
1273
1274         * dbus/dbus-sysdeps.c <HAVE_CMSGCRED> (_dbus_read_credentials_unix_socket):
1275         Fix call to dbus_set_error.  (Patch from Michael Banck, #3461)
1276         
1277 2005-06-15  John (J5) Palmieri  <johnp@redhat.com>
1278
1279         * NEWS: Update to 0.34
1280
1281 2005-06-15  David Zeuthen  <davidz@redhat.com>
1282
1283         * configure.in (LT_CURRENT): Revert back to 1 as the library
1284         hasn't changed and we've certainly not committed to protocol
1285         stability yet.  All this does is to break ABI. See commit note
1286         from hp@redhat.com 2005-05-05 for details.
1287         
1288 2005-06-15  John (J5) Palmieri  <johnp@redhat.com>
1289
1290         * dbus/dbus-connection.c (_dbus_connection_peer_filter): New method 
1291         (_dbus_connection_run_builtin_filters): New method
1292         (dbus_connection_dispatch): Run the builtin filters which in turn
1293         runs the peer filter which handles Ping messages.
1294
1295         * doc/TODO: 
1296          - Ping isn't handled: This patch fixes it
1297          
1298          - Add a test case for the Ping message: added TODO item
1299
1300 2005-06-15  John (J5) Palmieri  <johnp@redhat.com>
1301
1302         * dbus/dbus-message.c:
1303         (dbus_message_has_path): New method
1304         (dbus_message_has_interface): New method
1305         (dbus_message_has_member): New method
1306
1307         * dbus/dbus/dbus-sysdeps.c (_dbus_check_dir_is_private_to_user):
1308         New method
1309
1310         * dbus/dbus-keyring.c (_dbus_keyring_reload): Check to see that 
1311         the keyring directory is private to the user
1312
1313         * doc/TODO:
1314          - The convenience functions in dbus-bus.h should perhaps have
1315          the signatures that they would have if they were autogenerated
1316          stubs. e.g. the acquire service function. We should also evaluate
1317          which of these functions to include, in light of the fact that
1318          GLib/Qt native stubs will probably also exist.: Punted
1319
1320          - add dbus_message_has_path(), maybe has_member/interface:
1321          fixed in this patch
1322
1323          - in dbus-keyring.c, enforce that the keyring dir is not
1324          world readable/writable: Fixed in this patch
1325
1326 2005-06-15  John (J5) Palmieri  <johnp@redhat.com>
1327
1328         * dbus/dbus-marshal-validate.h: Added a new validation
1329         error code DBUS_VALIDITY_UNKNOWN_OOM_ERROR = -4 for 
1330         out of memory errors when validating signitures
1331
1332         * dbus/dbus-marshal-header.c: use DBUS_VALIDITY_UNKNOWN_OOM_ERROR
1333         in places where we previously used DBUS_VALID and a FALSE return 
1334         value to indicate OOM
1335         
1336         * dbus/dbus-marshal-validate.c (_dbus_validate_signature_with_reason):
1337         Use a stack to track the number of elements inside containers.  The 
1338         stack values are then used to validate that dict entries have only two
1339         elements within them.
1340         (validate_body_helper): check the reason for failure when validating
1341         varients
1342         
1343         * dbus/dbus-message.c (load_message): use 
1344         DBUS_VALIDITY_UNKNOWN_OOM_ERROR in places where we previously used 
1345         DBUS_VALID and a FALSE return value to indicate OOM
1346
1347         * doc/TODO: remove "- validate dict entry number of fields" as this
1348         patch fixes it
1349
1350 2005-06-14  David Zeuthen  <davidz@redhat.com>
1351
1352         * bus/bus.c (process_config_every_time): Drop existing conf-dir
1353         watches (if applicable) and add new watches
1354
1355         * bus/main.c (signal_handler): Handle SIGIO if using D_NOTIFY
1356         (main): Setup SIGIO signal handler if using D_NOTIFY
1357
1358         * bus/config-parser.h: Add prototype bus_config_parser_get_conf_dirs
1359
1360         * bus/config-parser.c (struct BusConfigParser): Add conf_dirs list
1361         (merge_included): Also merge conf_dirs list
1362         (bus_config_parser_unref): Clear conf_dirs list
1363         (include_dir): Add directory to conf_dirs list
1364         (bus_config_parser_get_conf_dirs): New function
1365
1366         * bus/dir-watch.[ch]: New files
1367
1368         * bus/Makefile.am (BUS_SOURCES): Add dir-watch.[ch]
1369
1370         * configure.in: Add checks for D_NOTIFY on Linux
1371
1372 2005-06-14  Colin Walters  <walters@verbum.org>
1373
1374         * glib/dbus-binding-tool-glib.c:
1375         * glib/dbus-gobject.c:
1376         * glib/dbus-gvalue.c: Fix indentation and brace style.
1377         
1378 2005-06-14  Ross Burton <ross@openedhand.com>.
1379
1380         * glib/dbus-glib.h: Make DBusGMethodInvocation
1381         a private structure.  Rearrange prototypes a bit.
1382         
1383         * glib/dbus-gproxy.c (dbus_g_proxy_invoke): Add
1384         documentation for first_arg_type.
1385         
1386         * glib/dbus-gobject.c: Move DBusGMethodInvocation
1387         here, add documentation.  Move dbus_g_method_return
1388         and dbus_g_method_return_error into public API
1389         section.
1390
1391 2005-06-14  Colin Walters  <walters@verbum.org>
1392
1393         * glib/dbus-gobject.c (_dbus_gobject_lookup_marshaller):
1394         Add missing return statements, noticed by Ross Burton.
1395         
1396 2005-06-13  Ross Burton <ross@openedhand.com>.
1397
1398         * glib/dbus-gobject.c: Handle errors on message
1399         demarshalling by sending error message back.
1400         * glib/dbus-gvalue.c: Initialize return variables.
1401
1402 2005-06-13  Colin Walters  <walters@verbum.org>
1403
1404         * glib/Makefile.am: Fix thinko in last patch.
1405
1406 2005-06-13  Colin Walters  <walters@verbum.org>
1407
1408         * glib/Makefile.am: Move dbus-gtype-specialized.c
1409         and dbus-gtype-specialized.h into a _HEADERS variable,
1410         install them.
1411
1412 2005-06-12  Colin Walters  <walters@verbum.org>
1413
1414         Async signals and various bugfixes and testing by
1415         Ross Burton <ross@openedhand.com>.
1416
1417         * glib/dbus-gvalue.h: (struct DBusBasicGValue): Delete.
1418         (dbus_gvalue_genmarshal_name_from_type)
1419         (dbus_gvalue_ctype_from_type): Moved to dbus-binding-tool-glib.c.
1420         (dbus_gtype_to_dbus_type): Renamed to dbus_gtype_from_signature.
1421         (dbus_g_value_types_init, dbus_gtype_from_signature)
1422         (dbus_gtype_from_signature_iter, dbus_gtype_to_signature)
1423         (dbus_gtypes_from_arg_signature): New function prototypes.
1424         (dbus_gvalue_demarshal): Take context and error arguments.
1425         (dbus_gvalue_demarshal_variant): New function.
1426         (dbus_gvalue_demarshal_message): New function.
1427         (dbus_gvalue_store): Delete.
1428
1429         * glib/dbus-gvalue.c:
1430
1431         File has been almost entirely rewritten; now we special-case
1432         more types such as DBUS_TYPE_SIGNATURE, handle arrays and
1433         hash tables correctly, etc.  Full support for recursive values
1434         is not yet complete.
1435
1436         * glib/dbus-gproxy.c (dbus_g_proxy_class_init): Change last
1437         argument of signal to G_TYPE_POINTER since we now pass a
1438         structure.
1439         (lookup_g_marshaller): Delete in favor of
1440         _dbus_gobject_lookup_marshaller.
1441         (marshal_dbus_message_to_g_marshaller): Use
1442         _dbus_gobject_lookup_marshaller and dbus_gvalue_demarshal_message
1443         to handle remote signal callbacks.
1444         (dbus_g_proxy_new_from_proxy): New function; creates a new
1445         DBusGProxy by copying an existing one.
1446         (dbus_g_proxy_get_interface, dbus_g_proxy_set_interface)
1447         (dbus_g_proxy_get_path): New functions.
1448         (dbus_g_proxy_marshal_args_to_message): New function;
1449         factored out of existing code.
1450         (DBUS_G_VALUE_ARRAY_COLLECT_ALL): Collect all arguments
1451         from a varargs array.
1452         (dbus_g_proxy_begin_call_internal): New function.
1453         (dbus_g_proxy_end_call_internal): New function.
1454         (dbus_g_proxy_begin_call): Take GTypes instead of DBus types
1455         as arguments; simply invoke dbus_g_proxy_begin_call_internal
1456         after collecting args into value array.
1457         (dbus_g_proxy_end_call): Take GTypes instead of DBus types;
1458         invoke dbus_g_proxy_end_call_internal.
1459         (dbus_g_proxy_invoke): Simply invoke begin_call_interanl and
1460         end_call_internal.
1461         (dbus_g_proxy_call_no_reply): Take GTypes instead of DBus
1462         types.
1463         (array_free_all): New function.
1464         (dbus_g_proxy_add_signal): Take GTypes.
1465
1466         * glib/dbus-gobject.h:
1467         (_dbus_glib_marshal_dbus_message_to_gvalue_array): Delete.
1468         (_dbus_gobject_get_path, _dbus_gobject_lookup_marshaller):
1469         Prototype.
1470
1471         * glib/dbus-gobject.c: Add a global marshal_table hash which
1472         stores mappings from type signatures to marshallers.  Change lots
1473         of invocations of dbus_gtype_to_dbus_type to
1474         dbus_gtype_to_signature.
1475         (_dbus_glib_marshal_dbus_message_to_gvalue_array): Delete.
1476         (introspect_signals): Fix test for query.return_type.
1477         (set_object_property): Update invocation of dbus_gvalue_demarshal.
1478         (invoke_object_method): Many changes.  Handle asynchronous
1479         invocations.  Convert arguments with
1480         dbus_gvalue_demarshal_message.  Handle errors.  Use
1481         DBusSignatureIter instead of strlen on args. Handle all arguments
1482         generically.  Special-case variants.
1483         (dbus_g_method_return, dbus_g_method_return_error): New function.
1484         (DBusGSignalClosure): New structure, closes over signal
1485         information.
1486         (dbus_g_signal_closure_new): New function.
1487         (dbus_g_signal_closure_finalize): New function.
1488         (signal_emitter_marshaller): New function; is special marshaller
1489         which emits signals on bus.
1490         (export_signals): New function; introspects object signals and
1491         connects to them.
1492         (dbus_g_object_type_install_info): Take GType instead of
1493         GObjectClass.
1494         (dbus_g_connection_register_g_object): Invoke export_signals.
1495         (dbus_g_connection_lookup_g_object): New function.
1496         (DBusGFuncSignature) New structure; used for mapping type
1497         signatures to marshallers.
1498         (funcsig_hash): New function; hashes DBusGFuncSignature.
1499         (funcsig_equal): New function; compares DBusGFuncSignature.
1500         (_dbus_gobject_lookup_marshaller): New function.
1501         (dbus_g_object_register_marshaller): New function; used to
1502         register a marshaller at runtime for a particular signature.
1503
1504         * glib/dbus-gmain.c (_dbus_gmain_test): Add various tests.
1505
1506         * glib/dbus-binding-tool-glib.h: Add DBUS_GLIB_ANNOTATION_ASYNC
1507         which notes a server method implementation should be
1508         asynchronous.
1509
1510         * glib/dbus-binding-tool-glib.c
1511         (dbus_binding_tool_output_glib_server): Call
1512         dbus_g_value_types_init.
1513         (write_formal_parameters): Use dbus_gtype_from_signature.  Handle
1514         variants specially.
1515         (dbus_g_type_get_lookup_function): Turn GType into an invocation
1516         of a lookup function.
1517         (write_args_for_direction): Use dbus_g_type_get_lookup_function.
1518         (write_untyped_out_args): New method; write output arguments.
1519         (write_formal_declarations_for_direction): Function for
1520         writing prototypes.
1521         (write_formal_parameters_for_direction): Function for
1522         writing implementations.
1523         (write_typed_args_for_direction): Function for writing
1524         arguments prefixed with GTypes.
1525         (write_async_method_client): Write out async version
1526         of method.
1527
1528         * glib/dbus-binding-tool-glib.c: Include dbus-gvalue-utils.h.
1529         (dbus_g_type_get_marshal_name): Move mapping from GType
1530         to marshal name into here.
1531         (dbus_g_type_get_c_name): Move into here.
1532         (compute_marshaller): Convert signature to type with
1533         dbus_gtype_from_signature, use dbus_g_type_get_marshal_name.
1534         (compute_marshaller_name): Ditto.
1535         (compute_marshaller): Handle async signal annotations.
1536         (gather_marshallers): Return if we don't have a known
1537         prefix.
1538         (generate_glue): Collect introspection blob here, and
1539         write all of the blob at the end.  This allows an object
1540         with multiple interfaces to work.
1541         Mark async methods in introspection blob.
1542
1543         * glib/Makefile.am (libdbus_glib_1_la_SOURCES): Add
1544         dbus-gtype-specialized.c, dbus-gtype-specialized.h,
1545         dbus-gvalue-utils.h, dbus-gvalue-utils.c.
1546
1547         * dbus/dbus-glib.h: Don't include dbus-protocol.h; this
1548         avoids people accidentally using DBUS_TYPE_* which should
1549         not be necessary anymore.
1550         Do include dbus-gtype-specialized.h, which are utilities
1551         for GLib container types.
1552         Add various #defines for types such as
1553         DBUS_TYPE_G_BOOLEAN_ARRAY.
1554         (DBusGValueIterator, DBusGValue): Define, not fully used
1555         yet.
1556         (dbus_g_value_get_g_type): Type for recursive value.
1557         (dbus_g_value_open, dbus_g_value_iterator_get_value)
1558         (dbus_g_value_iterator_get_values, dbus_g_value_iterator_recurse)
1559         (dbus_g_value_free): Prototypes.
1560         (dbus_g_object_register_marshaller, dbus_g_proxy_new_from_proxy): Prototype.
1561         (dbus_g_proxy_set_interface): Prototype.
1562         (dbus_g_proxy_begin_call, dbus_g_proxy_end_call)
1563         (dbus_g_proxy_call_no_reply): Take GLib types instead of DBus
1564         types.
1565         (dbus_g_proxy_get_path, dbus_g_proxy_get_interface):
1566         Accessors.
1567         (DBusGAsyncData, DBusGMethodInvocation): Structures for
1568         doing async invocations.
1569         (dbus_g_method_return, dbus_g_method_return_error):
1570         Prototypes.
1571         * doc/dbus-tutorial.xml: Update GLib section.
1572         
1573         * tools/dbus-viewer.c (load_child_nodes): Update
1574         for new invocation type of dbus_g_proxy_end_call.
1575         (load_from_service_thread_func): Ditto.
1576
1577         * tools/print-introspect.c (main): Ditto.
1578
1579         * tools/dbus-names-model.c (have_names_notify)
1580         (names_model_reload, names_model_set_connection)
1581         Use GTypes.
1582
1583         * python/Makefile.am (INCLUDES): Define DBUS_COMPILATION,
1584         needed since Python bindings use GLib bindings.
1585
1586         * test/glib/Makefile.am (INCLUDES): Define DBUS_COMPILATION.
1587         Add --prefix argument.
1588
1589         * tools/Makefile.am: Define DBUS_COMPILATION.  Remove
1590         unneeded --ignore-unsupported arg.
1591         
1592         * test/glib/test-service-glib.c: 
1593         * test/glib/test-service-glib.xml:
1594         * test/glib/test-dbus-glib.c: Add many more tests.
1595
1596 2005-06-06  David Zeuthen  <davidz@redhat.com>
1597
1598         * doc/TODO: Add item about need to remove deprecated functions.
1599
1600         * dbus/dbus-connection.h: Add prototype for dbus_connection_disconnect
1601
1602         * dbus/dbus-connection.c (dbus_connection_disconnect): New function
1603         to repair the ABI which was broken with the last commit.
1604
1605 2005-06-02  John (J5) Palmieri <johnp@redhat.com>
1606
1607         *  dbus/dbus-connection.c, dbus/dbus-connection.h 
1608         (dbus_connection_disconnect): renamed to dbus_connection_close 
1609         for API symmetry with dbus_connection_open
1610         (_dbus_connection_open_internal): 
1611         s/dbus_connection_disconnect/dbus_connection_close
1612
1613         * dbus/dbus-bus.c (dbus_bus_get):
1614         s/dbus_connection_disconnect/dbus_connection_close
1615
1616         * bus/connection.c (bus_connections_unref, 
1617         bus_connections_setup_connection, bus_connections_expire_incomplete):
1618         s/dbus_connection_disconnect/dbus_connection_close
1619
1620         * bus/dispatch.c (bus_dispatch, kill_client_connection, 
1621         kill_client_connection_unchecked, check_hello_connection):
1622         s/dbus_connection_disconnect/dbus_connection_close
1623
1624         * bus/bus.c (new_connection_callback):
1625         s/dbus_connection_disconnect/dbus_connection_close
1626
1627         * tools/dbus-send.c (main):
1628         s/dbus_connection_disconnect/dbus_connection_close
1629
1630         * test/glib/test-profile.c (no_bus_thread_func, with_bus_thread_func):
1631         s/dbus_connection_disconnect/dbus_connection_close
1632         
1633         * test/test-service.c (path_message_func, filter_func):
1634         s/dbus_connection_disconnect/dbus_connection_close
1635         
1636         * doc/TODO: remove connection_open/connection_disconnect lacks symmetry         item that was just fixed
1637         
1638 2005-05-25  Colin Walters  <walters@verbum.org>
1639
1640         * dbus/dbus-protocol.h: Move various bus service #defines such
1641           as DBUS_SERVICE_DBUS and DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT to
1642           dbus/dbus-shared.h.
1643         * dbus/dbus-shared.h: Various defines moved here.
1644         * dbus/dbus-marshal-header.c: Include dbus-shared.h.
1645
1646 2005-05-25  John (J5) Palmieri  <johnp@redhat.com>
1647
1648         * python/__init__.py: Python bindings deserve a minor version
1649         update.  Upped to (0, 40, 2)
1650
1651 2005-05-24  John (J5) Palmieri  <johnp@redhat.com>
1652
1653         * python/decorators.py: add explicitly_pass_message decorator
1654         for passing in the dbus message as keyword for edge case signal
1655         handling
1656
1657         * python/matchrules.py (SignalMatchRule.__repr__): fix output
1658         to conform with what dbus expects for match rules
1659         (SignalMatchRule.execute): add the dbus message as a keyword
1660         if the signal handler has requested it
1661
1662         * python/examples/example/signal-recipient.py: added some more
1663         examples on how to hook up to signals
1664
1665 2005-05-23  John (J5) Palmieri  <johnp@redhat.com>
1666
1667         * python/decorators.py: import dbus_bindings
1668
1669         * python/matchrules.py (SignalMatchRule, SignalMatchTree, 
1670         SignalMatchNode): new classes that implement wildcard signal
1671         callback matching using a tree lookup. Heavily modified from a
1672         patch sent by Celso Pinto (fd.o bug #3241)
1673
1674         * _dbus.py (add_signal_receiver, remove_signal_receiver, _signal_func):
1675         use new match classes to handle signals.
1676
1677 2005-05-19  John (J5) Palmieri  <johnp@redhat.com>
1678         
1679         * python/dbus_bindings.pyx.in: s/TYPE_PATH/TYPE_OBJECT_PATH
1680
1681 2005-05-18  Havoc Pennington  <hp@redhat.com>
1682
1683         * configure.in: use GLIB_GNU_GETTEXT to get INTLLIBS and require
1684         gettext. Not really worth requiring yet perhaps, but any
1685         production quality 1.0 would require it so we should go ahead and
1686         get things set up. We do have a couple token calls to
1687         bindtextdomain in the code already.
1688
1689 2005-05-16  John (J5) Palmieri  <johnp@redhat.com>
1690
1691         * glib/dbus-gmain.c (io_handler_dispatch): fix deadlock
1692         when using recursive g_main_loops
1693
1694         * python/_dbus.py (class Bus): add the ProxyObjectClass
1695         alias for ProxyObject to make it easier for the Twisted 
1696         networking framework to integrate dbus.
1697
1698         * python/proxies.py (class ProxyObject): add the ProxyMethodClass
1699         alias for ProxyMethod to make it easier for the Twisted 
1700         networking framework to integrate dbus. 
1701
1702 2005-05-11  Ross Burton  <ross@openedhand.com>
1703
1704         * glib/dbus-glib-tool.c: Add --prefix argument.
1705         * glib/dbus-binding-tool-glib.h: Add prefix argument.
1706         * glib/dbus-binding-tool-glib.c (compute_marshaller_name):
1707         Add prefix argument.
1708         (generate_glue): Pass prefix argument down.
1709         (dbus_binding_tool_output_glib_server): Pass prefix to
1710         glib-genmarshal.
1711         
1712 2005-05-11  Colin Walters  <walters@verbum.org>
1713
1714         * tools/dbus-send.c (append_array): New function.
1715         (append_arg): Broken out from main.
1716         (main): Add cheesy hack to send arrays and variants.
1717         (usage): Update.
1718         * tools/dbus-print-message.c (print_iter): Broken out
1719         from main.
1720
1721 2005-05-11  Colin Walters  <walters@verbum.org>
1722
1723         * dbus/dbus-signature.c (dbus_signature_iter_get_signature):
1724         New function, returns signature string for signature iter.
1725         * dbus/dbus-signature.h: Prototype it.
1726         * dbus/dbus-message.c (dbus_message_iter_get_signature):
1727         New function, returns signature string for message iter.
1728         (dbus_message_iter_get_array_len): New function, returns
1729         length of array.
1730         (dbus_message_iter_get_fixed_array): Fix assertion; this
1731         function should be used when the iter is pointing to the
1732         contents of an array
1733         * dbus/dbus-message.h: Prototypes.
1734         * dbus/dbus-marshal-recursive.c (_dbus_type_reader_get_array_length):
1735         New function; returns length of an array.
1736         * dbus/dbus-marshal-recursive.h: Prototype it.
1737         
1738 2005-05-11  Colin Walters  <walters@verbum.org>
1739
1740         * dbus/dbus-sysdeps-util.c <!HAVE_POSIX_GETPWNAM_R>: Fix
1741         compilation error.
1742         
1743 2005-05-08  Havoc Pennington  <hp@redhat.com>
1744
1745         * dbus/dbus-sysdeps-util.c (_dbus_become_daemon): write the
1746         daemon's pid, not the parent's pid, to the file descriptor.
1747         Reported by Taj Morton.
1748
1749 2005-05-05  Havoc Pennington  <hp@redhat.com>
1750
1751         * configure.in (LT_*): add notes on how the libtool versioning
1752         works to save thinking. Increment soname to indicate protocol
1753         breakage (though really the library interface hasn't changed I
1754         guess)
1755
1756         * dbus/dbus-transport.c (_dbus_transport_get_is_authenticated):
1757         verify the GUID received from server matches what we were
1758         expecting, if we had an expectation
1759
1760         * dbus/dbus-auth.c (send_ok): send GUID along with the OK command
1761         (_dbus_auth_get_guid_from_server): new function
1762         (send_begin): parse the OK args
1763
1764         * doc/dbus-specification.xml: add GUID to the auth protocol
1765
1766 2005-05-05  John (J5) Palmieri  <johnp@redhat.com>
1767
1768         * Fix my name in previous changelog ;)
1769
1770         * python/proxies.py (ProxyObject.__getattr__): add further patch
1771         from Anthony Baxter to throw an AttributeError when python 
1772         __special__ functions are called instead of marshling them over 
1773         the bus (Bug#1685 comment 3).
1774
1775 2005-05-04  John (J5) Palmieri  <johnp@redhat.com>
1776
1777         * python/Makefile.am: changed to use pyexecdir for the binding
1778         shared libraries (Bug#2494)
1779
1780         * python/exceptions.py: bring exceptions over from the bindings
1781         so they can be used in applications (Bug#2036)
1782         Make all exceptions derive from DBusException
1783
1784         * python/_dbus.py, python/proxies.py: implement __repr__ in a couple
1785         of classes so that print obj doesn't throw an exception (Bug #1685)
1786
1787 2005-05-03  Ross Burton  <ross@openedhand.com>
1788
1789         * glib/dbus-gobject.c (dbus_g_connection_register_g_object):
1790         Return if we get an error during registration.  Set up a
1791         weak reference on object to unregister if object is destroyed.
1792         (unregister_gobject): New function.
1793         
1794 2005-05-01  John (J5) Palmieri  <johnp@redhat.com>
1795
1796         * python/dbus_bindings.pyx.in: 
1797         - added new type classes for hinting to the marashaler what type 
1798         to send over the wire
1799         - added int16 and uint16 marshalers
1800         - Fixed a bug in the type constants that caused int32 to go out
1801         as uint16 over the wire
1802         * python/dbus.py: split up into different files and renamed _dbus.py
1803         * python/__init__.py, python/_util.py, python/decorators.py, 
1804         python/exceptions.py, python/proxies.py, python/services.py,
1805         python/types.py: new files split off from dbus.py
1806         * python/Makefile.am: Add new files, remove dbus.py and 
1807         install all python files to <python module dir>/dbus
1808         * python/examples/*: Added #!/usr/bin/env python to the top of
1809         every example.  Patch provided by Tatavarty Kalyan
1810
1811 2005-04-25  John (J5) Palmieri  <johnp@redhat.com>
1812
1813         * NEWS: Update to 0.33
1814
1815 2005-04-25  John (J5) Palmieri  <johnp@redhat.com>
1816
1817         * python/dbus_bindings.pyx.in (send_with_reply_handlers): New send
1818         method for doing async calls
1819         (_pending_call_notification): New C function for handling pendning call
1820         callbacks
1821         (set_notify): New method for setting pending call notification
1822         
1823         * python/dbus.py: new version tuple "version" is set at (0, 40, 0)
1824         Async capabilities added to remote method calls
1825         (Sender): class removed
1826         (RemoteService): class removed
1827         (ObjectTree): class removed for now
1828         (RemoteObject): Renamed to ProxyObject
1829         (RemoteMethod): Renamed to ProxyMethod
1830         (method): Decorator added for decorating python methods as dbus methods
1831         (signal): Decorator added for decorating python methods as signal emitters
1832         (ObjectType): Metaclass added for generating introspection data and the
1833         method callback vtable
1834         (Interface): Wrapper class added to wrap objects in a dbus interface
1835         (Object): Uses ObjectType as its metaclass and exports Introspect
1836         of the org.freedesktop.DBus.Introspectable interface
1837         (ValidationException, UnknownMethodException): new exceptions
1838
1839         * python/examples/*: Modified to fit with the new bindings
1840
1841 2005-04-23  Havoc Pennington  <hp@redhat.com>
1842
1843         * dbus/dbus-message.c (dbus_message_append_args): fix doc comment,
1844         reported by Tony Houghton
1845
1846         * test/test-service.c (main): test
1847         dbus_connection_get_object_path_data()
1848
1849         * dbus/dbus-object-tree.c (find_handler): be sure we always init
1850         the exact_match
1851         (_dbus_object_tree_get_user_data_unlocked): new function used by
1852         dbus_connection_get_object_path_data()
1853         (do_register): add assertion test for get_user_data_unlocked
1854         (object_tree_test_iteration): more tests
1855
1856         * dbus/dbus-connection.c (dbus_connection_get_object_path_data):
1857         new function from Dan Reed to let you get the user data from 
1858         dbus_connection_register_object_path()
1859
1860 2005-04-23  John (J5) Palmieri  <johnp@redhat.com>
1861
1862         * dbus/dbus-marshal-recursive-util.c: Fixed buffer overflow
1863         in numerous places that did not account for the NULL terminator
1864         (signature_from_seed): changed the manual string copy loop to 
1865         just use strcpy instead
1866         make check should now pass
1867
1868 2005-04-19  John (J5) Palmieri  <johnp@redhat.com>
1869
1870         * dbus/dbus-marshal-header.c (_dbus_header_create): Fix assert
1871         so that it allows messages that are not signals to pass in 
1872         NULL as the interface.
1873
1874 2005-04-18  David Zeuthen  <davidz@redhat.com>
1875
1876         * glib/dbus-gmain.c (io_handler_destroy_source): 
1877         (timeout_handler_destroy_source, connection_setup_free): 
1878         Also unref the source to avoid memory leaks.
1879
1880 2005-04-13  David Zeuthen  <davidz@redhat.com>
1881
1882         * bus/config-parser.c (bus_config_parser_new): Bump this to a
1883         more reasonable, yet still totally arbitrary, value :-). 
1884
1885 2005-04-13  David Zeuthen  <davidz@redhat.com>
1886
1887         * doc/TODO: Added an "important for 1.0" item about selinux
1888         allow/deny messages
1889
1890 2005-04-13  David Zeuthen  <davidz@redhat.com>
1891
1892         * bus/selinux.c: Add c-file-style to top of file
1893         (log_audit_callback): Don't free the data here anymore
1894         (bus_selinux_check): Don't take spid and tpid since appending
1895         that to auxdata may OOM.
1896         (bus_selinux_allows_acquire_service): Handle OOM and signal back
1897         to the caller if we are OOM by taking an error object.
1898         (bus_selinux_allows_send): -do-
1899
1900         * bus/selinux.h: Fix prototypes for bus_selinux_allows_acquire_service
1901         and bus_selinux_allows_send
1902
1903         * bus/bus.c (bus_context_check_security_policy): Pass error and
1904         pass on OOM thrown by bus_selinux_allows_send()
1905
1906         * bus/services.c (bus_registry_acquire_service): Pass error and
1907         pass on OOM thrown by bus_selinux_allows_acquire_service()
1908
1909 2005-04-13  Havoc Pennington  <hp@redhat.com>
1910
1911         * glib/dbus-gmain.c (message_queue_dispatch): only dispatch one
1912         message at a time to avoid monopolizing the main loop, bug 
1913         #2953 from Benjamin Otte
1914
1915 2005-04-09  Havoc Pennington  <hp@redhat.com>
1916
1917         * dbus/dbus-string.c (copy): change a memcpy to memmove due to
1918         possible overlap, fix from Daniel Reed
1919         (fixup_alignment): fix signedness warnings
1920         (_dbus_string_append_unichar): ditto
1921
1922 2005-04-09  Havoc Pennington  <hp@redhat.com>
1923
1924         * dbus/dbus-message-util.c (_dbus_message_test): fix signedness warning
1925
1926         * glib/dbus-glib-tool.c (main): fix warning
1927
1928         * glib/dbus-binding-tool-glib.c (generate_glue): fix warning
1929
1930         * dbus/dbus-connection.c (dbus_connection_read_write_dispatch):
1931         add a new function that can be used in simple applications that
1932         don't have a main loop and are willing to block
1933
1934 2005-04-05  David Zeuthen  <davidz@redhat.com>
1935
1936         Fix https://bugs.freedesktop.org/show_bug.cgi?id=2889
1937
1938         * glib/dbus-gmain.c:
1939         (io_handler_destroy_source): Remove from list of IO handlers
1940         of the ConnectionSetup object
1941         (timeout_handler_destroy_source): -do- for timeout handlers
1942         (io_handler_source_finalized): Don't remove from list since
1943         we now do that in io_handler_destroy_source(). Renamed from
1944         io_handler_source_destroyed
1945         (timeout_handler_source_destroyed): -do- for timeout handlers
1946         (connection_setup_free): It is now safe to iterate over all
1947         IO and timeout handlers as the _destroy_source removes them
1948         from the list synchronously
1949
1950 2005-03-30  Havoc Pennington  <hp@redhat.com>
1951
1952         * configure.in: change check to gtk 2.4
1953
1954         * tools/dbus-viewer.c (name_combo_changed_callback): remove
1955         gtk_combo_box_get_active_text() usage to decrement GTK requirement
1956         to 2.4
1957
1958 2005-03-29  John (J5) Palmieri  <johnp@redhat.com>
1959
1960         * News: Update 0.32
1961
1962         * HACKING: Fixed realease instructions.  configure.in should be updated to
1963           the next release by the person who made the last release.
1964
1965 2005-03-29  John (J5) Palmieri  <johnp@redhat.com>
1966
1967         * python/lvalue_cast_post_process.py - removed.  Patch has been
1968           submitted to Pyrex maintainers that fixes gcc4.0 errors
1969
1970         * python/Makefile.am: removed refrences to lvalue_cast_post_process.py
1971
1972 2005-03-24  Daniel Reed  <n@ml.org>
1973
1974         * tools/Makefile.am: Make print-introspect and
1975         dbus-bus-introspect.xml building conditional on HAVE_GLIB.
1976
1977 2005-03-22  John (J5) Palmieri  <johnp@redhat.com>
1978
1979         * tools/Makefile.am: Patch by Colin Walters that fixes distcheck
1980
1981         * dbus/dbus-userdb.c, dbus/dbus-userdb-util.c: Add patch we have 
1982           had in Red Hat packages for a while but for some reason never 
1983           got merged upstream
1984           (_dbus_is_a_number): New checks if a string
1985           can be converted to a number and does the conversion if it can
1986           (_dbus_user_database_lookup): Add check to see if the given username
1987           is a udi.  This allows udi's to be used instead of usernames in the
1988           config file.
1989           (_dbus_user_database_lookup_group): Add check to see if the given groupname
1990           is a gdi.  This allows gdi's to be used instead of groupnames in the
1991           config file.
1992
1993 2005-03-21  John (J5) Palmieri  <johnp@redhat.com>
1994
1995         * python/lvalue_cast_post_process.py - added post processor to fix Pyrex
1996           code so that it compiles with gcc4.0
1997
1998         * python/Makefile.am: Added lvalue_cast_post_process.py to EXTRA_DIST
1999           run dbus_bindings.c through lvalue_cast_post_process.py and copy the
2000           results back to dbus_binding.c
2001
2002 2005-03-20  Colin Walters  <walters@verbum.org>
2003
2004         Patch suggested by Inguva Rajasekhar <ringuva@novell.com>.
2005
2006         * configure.in: Require GTK+ 2.6.
2007         
2008 2005-03-20  Colin Walters  <walters@verbum.org>
2009
2010         * Makefile.am (SUBDIRS, DIST_SUBDIRS): Build tools before test.
2011
2012 2005-03-17  Tom Parker  <palfrey@tevp.net>
2013
2014         * dbus/dbus-userdb.c (_dbus_user_database_lookup): Don't
2015         print DBUS_UID_UNSET; instead print passed username.  Also
2016         be sure to actually use gid looked up in cache.
2017         
2018         * dbus/dbus-userdb-util.c (_dbus_user_database_lookup_group): Ditto
2019         for DBUS_GID_UNSET and groupname.
2020
2021 2005-03-17  Colin Walters  <walters@verbum.org>
2022
2023         * bus/print-introspect.c: Move to tools/.
2024         * bus/run-with-tmp-session-bus.sh: Ditto.
2025         
2026         * glib/Makefile.am (dbus-glib-bindings.h): Move
2027         generation to tools/Makefile.am.
2028
2029         * test/glib/run-test.sh: Update to handle move
2030         of run-with-tmp-session-bus.sh.
2031
2032         * test/glib/test-service-glib.c: Update to handle
2033         move of dbus-glib-bindings.h.
2034
2035         * tools/print-introspect.c: Moved here
2036         from bus/, and ported to GLib bindings.
2037
2038         * tools/run-with-tmp-session-bus.sh: Moved here
2039         from bus/.
2040
2041         * tools/Makefile.am: Generate dbus-glib-bindings.h
2042         and dbus-bus-introspect.xml here.
2043
2044         * tools/.cvsignore, glib/.cvsignore, bus/.cvsignore:
2045         Update.
2046
2047 2005-03-17  Colin Walters  <walters@verbum.org>
2048
2049         * bus/driver.c (write_args_for_direction): Use
2050         _dbus_string_get_const_data to retrieve string;
2051         _dbus_string_get_const_data_len doesn't actually return
2052         a NULL-terminated substring.
2053
2054         * test/glib/test-service-glib.c: Include dbus-glib-bindings.h.
2055         (main): Change to use org_freedesktop_DBus_request_name
2056         instead of using g_proxy_begin_call/end_call.
2057
2058 2005-03-15  Joe Shaw  <joeshaw@novell.com>
2059
2060         * mono/ProxyBuilder.cs (BuildFinalizer): Fix some invalid IL when
2061         generating the finalizer.  Fixes from Ben Maurer.
2062
2063 2005-03-12  Joe Shaw  <joeshaw@novell.com>
2064
2065         * mono/BusDriver.cs: Update method names: ListServices
2066         becomes ListNames; GetOwner becomes GetNameOwner.
2067
2068         * mono/ProxyBuilder.cs (BuildFinalizer): Need to load arg 0
2069         onto the eval stack when removing the delegate.
2070
2071 2005-03-12  Joe Shaw  <joeshaw@novell.com>
2072
2073         * mono/dbus-sharp.dll.config.in: Don't hardcode 0 for
2074         LT_CURRENT.  Set it to the autoconf variable.
2075                                                                                 
2076         * mono/ProxyBuilder.cs: Add a finalizer to the generated proxy
2077         classes that disconnects the signal handler delegate from the
2078         service object.  Fixes a big leak of proxy objects on the
2079         client side of things.  Patch from Ben Maurer
2080         <bmaurer@ximian.com>
2081
2082 2005-03-12  Colin Walters  <walters@verbum.org>
2083
2084         * bus/driver.c (write_args_for_direction): New function,
2085         parses a type signature into arguments and outputs to
2086         XML.
2087         (bus_driver_handle_introspect): Use it instead of
2088         hardcoding XML for certain signatures.
2089         
2090         * bus/Makefile.am (dbus-bus-introspect.xml): Add
2091         dependency on dbus-daemon.
2092
2093         * glib/dbus-glib-tool.c (main): Parse ignore_unsupported
2094         argument, pass it to dbus_binding_tool_output_glib_client.
2095
2096         * glib/dbus-binding-tool-glib.c
2097         (generate_client_glue): Protect against multiple inclusion.
2098         (dbus_binding_tool_output_glib_client): Add
2099         G_BEGIN_DECLS/G_END_DECLS.
2100
2101         * glib/dbus-binding-tool-glib.c (compute_client_method_name):
2102         Change to just take iface prefix directly.
2103         (write_formal_parameters): Clarify error message.
2104         (check_supported_parameters): New function; checks to see type
2105         signatures of method parameters are supported.
2106         (generate_client_glue): Handle ignore_unsupported flag.
2107         (dbus_binding_tool_output_glib_client): Handle ignore_unsupported
2108         parameter.
2109
2110         * glib/Makefile.am (dbus-glib-bindings.h): Pass
2111         --ignore-unsupported by default until glib bindings
2112         support arrays.
2113
2114 2005-03-11  Colin Walters  <walters@verbum.org>
2115
2116         * glib/Makefile.am: Generate dbus-glib-bindings.h and
2117         install it.
2118
2119         * bus/print-introspect.c: New file; prints introspection
2120         data for a given name and object path.
2121
2122         * bus/run-with-tmp-session-bus.sh: New file, refactored
2123         from test/glib/run-test.sh.  Creates a temporary session
2124         bus and runs another program.
2125
2126         * test/glib/run-test.sh: Refactor to invoke
2127         run-with-tmp-session-bus.sh.
2128
2129         * bus/driver.c (bus_driver_handle_introspect): Fix to print new
2130         introspection format.  Also change to use DBUS_TYPE_x_AS_STRING
2131         macros instead of hardcoding.
2132
2133         * glib/.cvsignore, bus/.cvsignore, test/glib/.cvsignore: Update.
2134
2135 2005-03-11  Joe Shaw  <joeshaw@novell.com>
2136
2137         * dbus/dbus-connection.c (dbus_connection_send_with_reply): Remove
2138         this unref; it doesn't match up evenly in some codepaths.
2139         (_dbus_connection_block_pending_call): Unref at every exitpoint;
2140         this evenly matches with the ref near the top of this function.
2141
2142 2005-03-09  Joe Shaw  <joeshaw@novell.com>
2143
2144         * dbus/dbus-object-tree.c
2145         (_dbus_object_tree_unregister_and_unlock): If checks are enabled
2146         and we try to unregister a path that's not registered, still go
2147         through the process of unlocking and don't just return.
2148
2149 2005-03-09  Colin Walters  <walters@verbum.org>
2150
2151         * glib/dbus-gproxy.c (dbus_g_proxy_invoke): New method; calls
2152         to this are generated for client-side wrappers.  Invokes a
2153         D-BUS method and returns reply values.  
2154
2155         * glib/dbus-binding-tool-glib.c (write_args_sig_for_direction): New
2156         function; writes signature string for argument direction.
2157         (write_args_for_direction): Change to pass input values directly
2158         instead of via address, and fix indentation.
2159         (generate_client_glue): Change to invoke dbus_g_proxy_invoke.  Also
2160         make generated wrappers inlineable.
2161
2162         * dbus/dbus-message.c (dbus_message_iter_get_fixed_array): Add
2163         note about using dbus_type_is_fixed.
2164
2165         * dbus/dbus-marshal-basic.c (_dbus_type_is_fixed): Moved to
2166         dbus/dbus-signature.c as dbus_type_is_fixed.
2167
2168         All callers updated.
2169
2170         * dbus/dbus-signature.c (dbus_type_is_fixed): Moved here
2171         from dbus/dbus-marshal-basic.c:_dbus_type_is_fixed.
2172
2173         * dbus/dbus-signature.h: Prototype.
2174
2175         * glib/dbus-binding-tool-glib.c (compute_marshaller_name): Fix
2176         error printf code.
2177
2178         * test/glib/test-dbus-glib.c (main): Be sure to clear error as
2179         appropriate instead of just freeing it.
2180         (main): Free returned strings using g_free.
2181
2182         * test/glib/Makefile.am (test-service-glib-glue.h)
2183         (test-service-glib-bindings.h): Add dependency on dbus-binding-tool.
2184
2185         * glib/dbus-gvalue.c (MAP_BASIC): Refactored from MAP_BASIC_INIT;
2186         simply maps a simple D-BUS type to GType.
2187         (dbus_dbus_type_to_gtype): Function which maps D-BUS type to
2188         GType.
2189         (dbus_gvalue_init): Just invoke dbus_dbus_type_to_gtype and
2190         initialize the value with it.
2191         (dbus_gvalue_binding_type_from_type): Unused, delete.
2192         (dbus_gvalue_demarshal): Switch to hardcoding demarshalling for
2193         various types instead of unmarshalling to value data directly.
2194         Remove can_convert boolean.
2195         (dbus_gvalue_marshal): Remove duplicate initialization; switch to
2196         returning directly instead of using can_convert boolean.
2197         (dbus_gvalue_store): New function; not related to D-BUS per-se.
2198         Stores a GValue in a pointer to a value of its corresponding C
2199         type.
2200
2201         * glib/dbus-gvalue.h: Remove dbus_gvalue_binding_type_from_type,
2202         add dbus_gvalue_store.
2203
2204 2005-03-08  Joe Shaw  <joeshaw@novell.com>
2205
2206         Fix a bunch of lifecycle and memory management problems
2207         in the mono bindings.
2208
2209         * mono/Arguments.cs (Arguments): Implement IDisposable
2210
2211         * mono/Bus.cs (Bus): Don't allow public instantiation.  This is
2212         strictly a static class.
2213
2214         * mono/Connection.cs: Move the DBusObjectPathVTable and associated
2215         delegates into this file.
2216         (Connection): Implement IDisposable.
2217         (Dispose): Disconnect the connection and set the raw connection
2218         pointer to IntPtr.Zero.
2219         (~Connection): Call Dispose().
2220         (RegisterObjectPath): Added.  Manages the registration of object
2221         paths so we can cleanly disconnect them at dispose/finalize time.
2222         (UnregisterObjectPath): Ditto.
2223         (set_RawConnection): Unregister all of the object paths when
2224         changing the underlying DBusConnection.  Add them back onto the
2225         new connection, if any.
2226
2227         * mono/Handler.cs: Don't implement IDisposable; it doesn't use any
2228         more unmanaged resources anymore, so it's not necessary.  Move all
2229         the DBusObjectPathVTable stuff out of here.
2230         (Handler): Save references to our delegates so that they don't get
2231         finalized.  Call Connection.RegisterObjectPath() instead of
2232         dbus_connection_register_object_path() directly.
2233         (Message_Called): Dispose the message after we're finished with
2234         it.
2235
2236         * mono/Message.cs (Message): Implement IDisposable.
2237         (Dispose): Dispose the Arguments, and set the RawMessage to
2238         IntPtr.Zero.
2239         (SendWithReplyAndBlock): We own the ref to the reply that comes
2240         back from dbus_connection_send_with_reply_and_block() so add a
2241         comment about that and unref it after we've constructed a managed
2242         MethodReturn class around it.  Fixes a big, big leak.
2243
2244         * mono/ProxyBuilder.cs: Reflect into Message to get the Dispose
2245         method.
2246         (BuildSignalHandler): After we've sent the Signal message, dispose
2247         of it.
2248         (BuildMethod): Dispose of the method call and reply messages after
2249         we've sent the message and extracted the data we want from the
2250         reply.
2251
2252         * mono/Service.cs (UnregisterObject): Don't call handler.Dispose()
2253         anymore.
2254         (Service_FilterCalled): Dispose of the message after we're
2255         finished with it.
2256
2257 2005-03-08  Joe Shaw  <joeshaw@novell.com>
2258
2259         * dbus/dbus-connection.c (dbus_connection_send_with_reply):
2260         After we attach our pending call to the connection, unref
2261         it.  Fixes a leak.
2262  
2263         * mono/Connection.cs (set_RawConnection): Disconnect our
2264         filter and match callbacks from the old connection and
2265         reconnect them to the new connection, if any.
2266
2267         * mono/DBusType/Array.cs: "Code" is a static member, so
2268         don't use "this" to refer to it.  Fix for stricter checking
2269         in Mono 1.1.4.
2270  
2271         * mono/DBusType/ObjectPath.cs (Append): Don't leak the
2272         object path that we pass into unmanaged code.
2273  
2274         * mono/DBusType/String.cs (Append): Don't leak the string
2275         that we pass into unmanged code.
2276
2277 2005-03-07  John (J5) Palmieri  <johnp@redhat.com>
2278         * NEWS: Update for 0.31
2279
2280         * configure.in: Release 0.31
2281         add LT_CURRENT, LT_REVISION, LT_AGE for easy soname bumping
2282
2283         * qt/Makefile.am: fixed build
2284
2285         * dbus/Makefile.am: soname bump for libdbus
2286
2287         * glib/Makefile.am: soname bump for libdbus-glib
2288
2289 2005-03-05  Havoc Pennington  <hp@redhat.com>
2290
2291         * dbus/dbus-sysdeps.c:
2292         (pseudorandom_generate_random_bytes_buffer): fix to have no return
2293         value
2294         (_dbus_generate_random_bytes_buffer): fix return value
2295
2296         * dbus/dbus-sysdeps-util.c: s/GETPWNAME/GETPWNAM/ so configure
2297         checks actually work, from Tom Parker <fdo@tevp.net>
2298
2299 2005-03-01  Colin Walters  <walters@verbum.org>
2300
2301         * test/glib/test-dbus-glib.c (lose, lose_gerror): Utility
2302         functions copied from dbus-glib-tool.c.
2303         (main): Convert lots of error code to use them.
2304         Also add some testing for introspection bits.
2305
2306 2005-03-01  Colin Walters  <walters@verbum.org>
2307         
2308         * doc/TODO: Remove introspection signature TODO.
2309
2310 2005-02-27  Colin Walters  <walters@verbum.org>
2311
2312         * glib/dbus-gidl.c (property_info_get_type, arg_info_get_type):
2313         Change return value to const char * instead of int so we can do
2314         full signatures.
2315         (struct PropertyInfo, struct ArgInfo): Store char *.
2316         (property_info_new, arg_info_new): Update parameters, strdup.
2317         (property_info_unref, arg_info_unref): Free.
2318
2319         * glib/dbus-gidl.h: Update prototypes.
2320
2321         * glib/dbus-gparser.c (basic_type_from_string): Delete.
2322         (validate_signature): New function, just validates signature and
2323         sets GError.
2324         (parse_property, parse_arg): Invoke validate_signature.  Store
2325         signature instead of just type code.
2326
2327         * glib/dbus-gvalue.c (base_type_from_signature): New utility
2328         function to return a primary type for a signature, dropping
2329         information about types in container types.
2330         (dbus_gvalue_genmarshal_name_from_type)
2331         (dbus_gvalue_binding_type_from_type)
2332         (dbus_gvalue_ctype_from_type): Update to take full signature
2333          instead of type code.
2334         (dbus_gtype_to_dbus_type): Moved here from glib/dbus-gobject.c.
2335
2336         * glib/dbus-gvalue.h: Update prototypes for above.
2337
2338         * glib/dbus-gobject.c (gtype_to_dbus_type): Moved to
2339         glib/dbus-gvalue.c as dbus_gtype_to_dbus_type.
2340         (introspect_properties, introspect_signals, write_interface):
2341         Update to handle signatures, and remove usage of
2342         _dbus_gutils_type_to_string.
2343         (handle_introspect): Print out type codes instead of e.g. "string"
2344         in hardcoded introspection XML; also use x_AS_STRING constants
2345         instead of hardcoding in string.
2346
2347         * glib/dbus-glib-tool.c (pretty_print): Handle signature change
2348         to string.  Remove usage of _dbus_gutils_type_to_string.
2349
2350         * glib/dbus-gutils.c (_dbus_gutils_type_to_string): Delete.
2351
2352         * glib/dbus-gutils.h (_dbus_gutils_type_to_string): Update for
2353         deletion.
2354         
2355         * glib/dbus-binding-tool-glib.c (compute_marshaller)
2356         (compute_marshaller_name, generate_glue): Handle signature change
2357         to string.
2358         (write_formal_parameters, write_args_for_direction): Ditto, and
2359         remove FIXME.
2360
2361         * tools/dbus-tree-view.c (type_to_string): Delete.
2362         (info_set_func_text): Update to print full signatures.
2363
2364         * test/glib/test-service-glib.xml: Change types to new
2365         introspection format.
2366
2367 2005-02-26  Havoc Pennington  <hp@redhat.com>
2368
2369         * doc/TODO: remove the "guid" item
2370
2371         * test/glib/test-profile.c (no_bus_thread_func): use open_private
2372         (with_bus_thread_func): use open_private
2373
2374         * dbus/dbus-connection.c (dbus_connection_open_private): new
2375         function that works like the old dbus_connection_open()
2376         (dbus_connection_open): now returns an existing connection if
2377         possible
2378
2379         * dbus/dbus-server-unix.c (handle_new_client_fd_and_unlock): pass
2380         through the GUID to the transport
2381
2382         * dbus/dbus-server.c (_dbus_server_init_base): keep around the
2383         GUID in hex-encoded form.
2384
2385         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
2386         pass GUID argument in to the transport
2387
2388         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd): add
2389         guid argument
2390
2391         * dbus/dbus-transport.c (_dbus_transport_init_base): add guid argument
2392
2393         * dbus/dbus-auth.c (_dbus_auth_server_new): add guid argument
2394
2395 2005-02-25  Havoc Pennington  <hp@redhat.com>
2396
2397         * doc/dbus-specification.xml: document the GUID thing
2398
2399         * dbus/dbus-server.c (_dbus_server_init_base): initialize a
2400         globally unique ID for the server, and put a "guid=hexencoded"
2401         field in the address
2402
2403         * dbus/dbus-bus.c: fix missing #include of dbus-threads-internal.h
2404
2405         * dbus/dbus-message.c: ditto
2406
2407         * dbus/dbus-dataslot.c: ditto
2408
2409         * dbus/dbus-list.c: ditto
2410
2411         * dbus/dbus-internals.h: wait, just include
2412         dbus-threads-internal.h here
2413         
2414         * dbus/dbus-string.c (_dbus_string_copy_to_buffer): move back for
2415         use in main library
2416
2417         * dbus/dbus-sysdeps.c (_dbus_generate_random_bytes_buffer): new function
2418
2419 2005-02-24  Colin Walters  <walters@verbum.org>
2420
2421         * test/glib/Makefile.am (EXTRA_DIST): Add test-service-glib.xml
2422
2423 2005-02-24  John (J5) Palmieir  <johnp@redhat.com>
2424
2425         * glib/Makefile.am: added dbus-gobject.h to sources list
2426         so distcheck doesn't fail
2427         
2428 2005-02-24  Havoc Pennington  <hp@redhat.com>
2429
2430         * dbus/dbus-server.c, dbus/dbus-server-unix.c: change semantics so
2431         you must disconnect before unref, since locking and other things
2432         are screwed up otherwise. Fix assorted other locking stuff.
2433
2434         * dbus/dbus-signature.c (dbus_signature_iter_get_element_type):
2435         fix compilation
2436
2437         * dbus/dbus-threads-internal.h: move the mutex/condvar wrappers
2438         into a private header and don't export from the library
2439
2440         * throughout - call _dbus_thread_stuff vs. dbus_thread_stuff
2441
2442 2005-02-24  Colin Walters  <walters@verbum.org>
2443         
2444         * dbus/dbus-signature.c: New file; implements various functions
2445         related to type signatures.  Includes an interator for parsing,
2446         validation functions.
2447         (dbus_type_is_basic): Moved here from
2448         dbus-marshal-basic.c:_dbus_type_is_basic.
2449         (dbus_type_is_container): Moved here from
2450         dbus-marshal-basic.c:_dbus_type_is_container.
2451
2452         All callers of _dbus_type_is_container and _dbus_type_is_basic
2453         updated, and include dbus-signature.h.
2454
2455         * dbus/dbus-signature.h: New file; prototypes for the above.
2456
2457         * dbus/Makefile.am (DBUS_LIB_SOURCES): Add dbus-signature.c,
2458         dbus-signature.h.
2459
2460         * dbus/dbus-marshal-basic.c (map_type_char_to_type): New utility
2461         function factored out of _dbus_first_type_in_signature.
2462         (_dbus_first_type_in_signature_c_str): New function; returns first
2463         type code for a type signature character.
2464
2465         * dbus/dbus-marshal-basic.h: Prototype _dbus_first_type_in_signature_c_str,
2466         handle function moves.
2467
2468         * dbus/dbus-marshal-recursive.h: Export _dbus_type_signature_next.
2469
2470         * dbus/dbus-marshal-recursive.c (_dbus_type_signature_next): New
2471         function; skips to next complete type in type signature.
2472         Implemented using previous skip_one_complete_type.  Now
2473         skip_one_complete_type just delegates to
2474         _dbus_type_signature_next.
2475
2476         * dbus/dbus-marshal-basic.c (_dbus_type_is_basic): Moved
2477         to dbus-signature.c
2478         (_dbus_type_is_container): Ditto.
2479
2480         * doc/dbus-specification.xml: Update introspection sample to
2481         use real type signatures.
2482
2483         * dbus/dbus-test.h: Prototype signature test.
2484
2485         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): Run
2486         signature tests.
2487
2488         * dbus/dbus-protocol.h (DBUS_ERROR_INVALID_SIGNATURE): New error.
2489
2490 2005-02-23  John (J5) Palmieri  <johnp@redhat.com>
2491
2492         * python/dbus_bindings.pyx.in (PendingCall::get_reply):
2493         s/dbus_pending_call_get_reply/dbus_pending_call_steal_reply
2494
2495 2005-02-21  Colin Walters  <walters@verbum.org>
2496
2497         * dbus/dbus-test-main.c (main): Take optional specific test
2498         argument.
2499
2500         * dbus/dbus-test.c (run_test): New function, runs a test function
2501         with no data directory.
2502         (run_data_test): Like above, but takes data directory.
2503         (dbus_internal_do_not_use_run_tests): Take
2504         specific test argument.  Replace lots of cut n' paste code
2505         with run_test and run_data_test.
2506
2507         * dbus/dbus-test.h: Update prototype for
2508         dbus_internal_do_not_use_run_tests.
2509
2510 2005-02-20  Havoc Pennington  <hp@redhat.com>
2511
2512         Fix bugs reported by Daniel P. Berrange
2513         
2514         * dbus/dbus-server.c (_dbus_server_unref_unlocked): new function
2515         (protected_change_watch): new function
2516         (_dbus_server_toggle_watch, _dbus_server_remove_watch)
2517         (_dbus_server_add_watch): change to work like the
2518         dbus-connection.c equivalents; like those, probably kind of
2519         busted, but should at least mostly work for now
2520         (dbus_server_disconnect): drop the lock if we were already
2521         disconnected, patch from Daniel P. Berrange
2522
2523         * dbus/dbus-server.c (_dbus_server_toggle_timeout) 
2524         (_dbus_server_remove_timeout, _dbus_server_add_timeout): all the
2525         same stuff
2526
2527         * doc/TODO: todo about unscrewing this mess
2528
2529 2005-02-19  Colin Walters  <walters@verbum.org>
2530
2531         * glib/dbus-binding-tool-glib.c
2532         (dbus_binding_tool_output_glib_server): Fix iochannel refcounting.
2533
2534         * glib/dbus-glib-tool.c: Include dbus-glib-tool.h, as well
2535         as errno.h and sys/stat.h.
2536         (lose): New function, prints error with
2537         newline and exits.
2538         (lose_gerror): Similar, but takes GError for message.
2539         (main): Add --output argument to specify output file to write to,
2540         instead of always printing to stdout.  In this mode, determine
2541         timestamps on source files to see whether any are newer than the
2542         target file.  If not, exit.  Also convert a number of error
2543         messages to use lose (since it's shorter), and switch to using
2544         g_io_channel_shutdown.
2545
2546 2005-02-19  Havoc Pennington  <hp@redhat.com>
2547
2548         * glib/dbus-gobject.c
2549         (_dbus_glib_marshal_dbus_message_to_gvalue_array): add docs
2550
2551         * glib/dbus-glib.c: fix doxygen warnings
2552
2553         * glib/dbus-gparser.c (parse_annotation): error if an annotation
2554         is found on an <arg>
2555
2556 2005-02-17  Colin Walters  <walters@verbum.org>
2557
2558         * glib/dbus-gobject.h: Don't export
2559         _dbus_glib_marshal_dbus_message_to_gvalue_array.
2560         
2561         * glib/dbus-gobject.c (_dbus_glib_marshal_dbus_message_to_gvalue_array): Do rename.
2562         (invoke_object_method): Handle it.
2563
2564         * glib/dbus-gproxy.c (marshal_dbus_message_to_g_marshaller):
2565         Handle rename.
2566         
2567 2005-02-17  Colin Walters  <walters@verbum.org>
2568
2569         * bus/.cvsignore, doc/.cvsignore
2570         * test/data/valid-service-files/.cvsignore, test/glib/.cvsignore:
2571         Update.
2572
2573 2005-02-17  Colin Walters  <walters@verbum.org>
2574         
2575         * dbus/dbus-protocol.h (DBUS_SERVICE_ORG_FREEDESKTOP_DBUS):
2576         Rename to DBUS_SERVICE_DBUS.
2577         (DBUS_PATH_ORG_FREEDESKTOP_DBUS): Rename to DBUS_PATH_DBUS.
2578         (DBUS_PATH_ORG_FREEDESKTOP_LOCAL): Rename to DBUS_PATH_LOCAL.
2579         Change the value from "org.freedesktop.Local"
2580         to "org.freedesktop.DBus.Local".
2581         (DBUS_INTERFACE_ORG_FREEDESKTOP_DBUS): Rename to DBUS_INTERFACE_DBUS.
2582         (DBUS_INTERFACE_ORG_FREEDESKTOP_INTROSPECTABLE): Rename to
2583         DBUS_INTERFACE_INTROSPECTABLE.
2584         Change the value from "org.freedesktop.Introspectable"
2585         to "org.freedesktop.DBus.Introspectable".
2586         (DBUS_INTERFACE_ORG_FREEDESKTOP_PROPERTIES): Rename to
2587         DBUS_INTERFACE_PROPERTIES.
2588         Change the value from "org.freedesktop.Properties"
2589         to "org.freedesktop.DBus.Properties".
2590         (DBUS_INTERFACE_ORG_FREEDESKTOP_PEER): Rename to
2591         DBUS_INTERFACE_PEER.
2592         Change the value from "org.freedesktop.Peer"
2593         to "org.freedesktop.DBus.Peer".
2594         (DBUS_INTERFACE_ORG_FREEDESKTOP_LOCAL): 
2595         DBUS_INTERFACE_LOCAL.
2596         Change the value from "org.freedesktop.Local"
2597         to "org.freedesktop.DBus.Local".
2598
2599         All other users of those constants have been changed.
2600
2601         * bus/driver.c (bus_driver_handle_introspect): Use constants.
2602
2603         * glib/dbus-gobject.c (handle_introspect): Use constants.
2604
2605         * doc/dbus-faq.xml, doc/dbus-specification.xml: Update for rename.
2606
2607 2005-02-17  Colin Walters  <walters@verbum.org>
2608
2609         * glib/dbus-gparser.c (struct Parser): Add in_annotation boolean.
2610         (parse_node, parse_interface, parse_method, parse_signal)
2611         (parse_property, parse_annotation): Lose if we're currently in an
2612         annotation.
2613         (parse_annotation): New function.
2614         (parser_start_element, parser_end_element): Handle annotation.
2615         (parse_method, parse_interface): Remove support for c_name attribute,
2616         switch to annotations.
2617
2618         * glib/dbus-gidl.h (interface_info_get_binding_names)
2619         (method_info_get_binding_names)
2620         (interface_info_get_binding_name, method_info_get_binding_name)
2621         (interface_info_set_binding_name, method_info_set_binding_name):
2622         Remove.
2623         (interface_info_get_annotations, method_info_get_annotations)
2624         (interface_info_get_annotation, method_info_get_annotation)
2625         (interface_info_add_annotation, method_info_add_annotation):
2626         Prototype.
2627
2628         * glib/dbus-gidl.c (struct InterfaceInfo): Substitute "annotations"
2629         for "bindings".
2630         (struct MethodInfo): Ditto.
2631         Straightfoward conversion of binding methods into annotation methods
2632         as prototyped.
2633
2634         * glib/dbus-glib-tool.c (pretty_print): Print annotations.
2635
2636         * glib/dbus-binding-tool-glib.h (DBUS_GLIB_ANNOTATION_C_SYMBOL): Define.
2637
2638         * glib/dbus-binding-tool-glib.c (gather_marshallers, generate_glue):
2639         Use new annotation API.
2640
2641         * doc/introspect.dtd: Fix a number of DTD syntax errors.  Add
2642         annotation element.
2643         
2644         * doc/dbus-specification.xml: Discuss introspection annotations,
2645         include list of well-known annotations.
2646
2647         * test/glib/test-service-glib.xml: Make validate against new DTD.
2648
2649 2005-02-17  Colin Walters  <walters@verbum.org>
2650
2651         This patch is based on initial work from
2652         Paul Kuliniewicz <kuliniew@purdue.edu>.
2653
2654         * glib/dbus-gvalue.c (dbus_gvalue_init): New function; move
2655         initialization of GValue from dbus type to here.
2656         (dbus_gvalue_genmarshal_name_from_type): New function; generates a string
2657         for the "glib-genmarshal" program from a DBus type.
2658         (dbus_gvalue_binding_type_from_type): New function; turns a DBus type
2659         into the C name for it we use in the glib bindings.
2660         (dbus_gvalue_ctype_from_type): New function; maps a DBus type into a
2661         glib C type (not GValue).
2662         (dbus_gvalue_demarshal): invoke dbus_gvalue_init.
2663
2664         * glib/dbus-gutils.c (_dbus_gutils_wincaps_to_uscore): Moved here
2665         from dbus-gobject.c.
2666
2667         * glib/dbus-gutils.h: Prototype it.
2668
2669         * glib/dbus-gproxy.c: Include new dbus-gobject.h.
2670         (marshal_dbus_message_to_g_marshaller): Use new shared function
2671         dbus_glib_marshal_dbus_message_to_gvalue_array.
2672
2673         * glib/dbus-gparser.c (parse_interface, parse_method): Handle c_name attribute.
2674         Will be changed once we have annotations.
2675
2676         * glib/dbus-gobject.c: Change info_hash_mutex from GStaticMutex to
2677         GStaticRWLock.  Callers updated.
2678         (wincaps_to_uscore): Move to dbus-gutils.c.  Callers updated.
2679         (string_table_next): New function for iterating over zero-terminated
2680         string value array.
2681         (string_table_lookup): New function; retrieves specific entry in
2682         array.
2683         (get_method_data): New function; look up method data in object data chunk.
2684         (object_error_domain_prefix_from_object_info)
2685         (object_error_code_from_object_info): New functions, but not implemented yet.
2686         (method_interface_from_object_info): New function; retrieve interface name.
2687         (method_name_from_object_info): New function; retrieve method name.
2688         (method_arg_info_from_object_info): New function; retrieve argument data.
2689         (arg_iterate): New function; iterates over serialized argument data.
2690         (method_dir_signature_from_object_info): New function; returns a
2691         GString holding type signature for arguments for just one
2692         direction (input or output).
2693         (method_input_signature_from_object_info)
2694         (method_output_signature_from_object_info): New functions.
2695         (dbus_glib_marshal_dbus_message_to_gvalue_array): New shared function;
2696         converts dbus message arguments into a GValue array.  Used for both
2697         signal handling and method invocation.
2698         (struct DBusGlibWriteIterfaceData): New utility structure.
2699         (write_interface): New function; generate introspection XML for
2700         an interface.
2701         (introspect_interfaces): New function; gathers all interface->methods,
2702         generates introspection XML for them.
2703         (handle_introspect): Invoke introspect_interfaces.
2704         (get_object_property): Be sure to zero-initalize stack-allocated GValue.
2705         (lookup_object_and_method): New function; examines an incoming message
2706         and attempts to match it up (via interface, method name, and argument
2707         signature) with a known object and method.
2708         (gerror_domaincode_to_dbus_error_name): New function; converts a
2709         GError domain and code into a DBus error name.  Needs GError data
2710         added to object introspection to work well.
2711         (gerror_to_dbus_error_message): Creates a DBusMessage error return from
2712         GError.
2713         (invoke_object_method): New function to invoke an object method
2714         looked up via lookup_object_and_method.  Parses the incoming
2715         message, turns it into a GValue array, then invokes the marshaller
2716         specified in the DBusGMethodInfo.  Creates a new message with
2717         either return values or error message as appropriate.
2718         (gobject_message_function): Invoke lookup_object_and_method and
2719         invoke_object_method.
2720
2721         * glib/dbus-glib-tool.c: Include dbus-binding-tool-glib.h.
2722         (enum DBusBindingOutputMode): New enum for binding output modes.
2723         (pretty_print): Print binding names.
2724         (dbus_binding_tool_error_quark): GError bits.
2725         (version): Fix typo.
2726         (main): Create GIOChannel for output.  Parse new --mode argument,
2727         possible values are "pretty-print", "glib-server", "glib-client".
2728         Use mode to invoke appropriate function.
2729         
2730         * glib/dbus-gobject.h: Prototype dbus_glib_marshal_dbus_message_to_gvalue_array.
2731
2732         * glib/dbus-glib-tool.h: New header, just includes GError bits
2733         for now.
2734
2735         * glib/dbus-gidl.c (struct InterfaceInfo): Add bindings hashtable;
2736         maps binding style to name.
2737         (struct MethodInfo): Ditto.
2738         (get_hash_keys, get_hash_key): Utility function, returns keys for
2739         a GHashTable.
2740         (interface_info_new, method_info_new): Initialize bindings.
2741         (interface_info_unref, method_info_unref): Destroy bindings.
2742         (method_info_get_binding_names, method_info_get_binding_name)
2743         (interface_info_get_binding_names, interface_info_get_binding_name):
2744         Functions for retrieving binding names.
2745         (method_info_set_binding_name, interface_info_set_binding_name):
2746         Functions for setting binding names.
2747
2748         * glib/dbus-binding-tool-glib.h: New file, has prototypes
2749         for glib binding generation.
2750
2751         * glib/dbus-binding-tool-glib.c: New file, implements server-side
2752         and client-side glib glue generation.
2753
2754         * glib/Makefile.am (dbus_binding_tool_SOURCES): Add
2755         dbus-binding-tool-glib.c, dbus-binding-tool-glib.h,
2756         dbus-glib-tool.h.
2757
2758         * dbus/dbus-glib.h (struct DBusGMethodMarshaller): Remove in favor
2759         of using GClosureMarshal directly.
2760         (struct DBusGObjectInfo): Add n_infos member.
2761
2762         * test/glib/test-service-glib.xml: New file; contains introspection data
2763         for MyTestObject used in test-service-glib.c.
2764
2765         * test/glib/test-service-glib.c (enum MyObjectError): New GError enum.
2766         (my_object_do_nothing, my_object_increment, my_object_throw_error)
2767         (my_object_uppercase, my_object_many_args): New test methods.
2768         (main): Use dbus_g_object_class_install_info to include generated object
2769         info.
2770
2771         * test/glib/Makefile.am: Generate server-side glue for test-service-glib.c,
2772         as well as client-side bindings.
2773
2774         * test/glib/test-dbus-glib.c: Include test-service-glib-bindings.h.
2775         (main): Activate TestSuiteGLibService; test invoke a bunch of its methods
2776         using both the dbus_gproxy stuff directly as well as the generated bindings.
2777
2778 2005-02-15  Havoc Pennington  <hp@redhat.com>
2779
2780         * dbus/dbus-connection.c (dbus_connection_dispatch): always
2781         complete a pending call, don't run filters first.
2782
2783         * glib/dbus-gproxy.c (dbus_g_proxy_end_call): change to use
2784         dbus_pending_call_steal_reply
2785
2786         * dbus/dbus-pending-call.c (dbus_pending_call_block): just call
2787         _dbus_connection_block_pending_call
2788         (dbus_pending_call_get_reply): change to steal_reply and return a
2789         ref
2790
2791         * dbus/dbus-connection.c
2792         (dbus_connection_send_with_reply_and_block): port to work in terms
2793         of DBusPendingCall
2794         (_dbus_connection_block_pending_call): replace block_for_reply
2795         with this
2796
2797 2005-02-14  Havoc Pennington  <hp@redhat.com>
2798
2799         * dbus/dbus-userdb-util.c (_dbus_user_database_lookup_group):
2800         properly handle looking up group information by name; fix 
2801         from j@bootlab.org
2802
2803 2005-02-13  Havoc Pennington  <hp@redhat.com>
2804
2805         * dbus/dbus-connection.c (dbus_connection_return_message) 
2806         (dbus_connection_borrow_message): hold dispatch lock while message
2807         is outstanding
2808         (_dbus_connection_block_for_reply): hold dispatch lock while we
2809         block for the reply, so nobody steals our reply
2810         (dbus_connection_pop_message): hold the dispatch lock while we
2811         pluck the message
2812
2813 2005-02-13  Havoc Pennington  <hp@redhat.com>
2814
2815         * dbus/dbus-connection.c (_dbus_connection_acquire_dispatch)
2816         (_dbus_connection_release_dispatch)
2817         (_dbus_connection_acquire_io_path)
2818         (_dbus_connection_release_io_path): make the mutex and condvar
2819         control access to the "acquired" flag. Drop the connection lock
2820         while waiting on the condvar. Hopefully these are baby steps in
2821         roughly the right direction.
2822
2823 2005-02-13  Havoc Pennington  <hp@redhat.com>
2824
2825         * dbus/dbus-connection.c: use separate mutexes for the condition
2826         variables; this is some kind of baseline for sanity, but the
2827         condition variables still aren't used correctly afaict
2828
2829 2005-02-13  Havoc Pennington  <hp@redhat.com>
2830
2831         * dbus/dbus-object-tree.c (handle_default_introspect_and_unlock):
2832         fix a double-unlock
2833
2834         * dbus/dbus-connection.c
2835         (_dbus_connection_detach_pending_call_unlocked): add this
2836
2837         Initial semi-correct pass through to fix thread locking; there are
2838         still some issues with the condition variable paths I'm pretty
2839         sure
2840         
2841         * dbus/dbus-server.c: add a mutex on DBusServer and appropriate
2842         lock/unlock calls
2843
2844         * dbus/dbus-connection.c (_dbus_connection_do_iteration_unlocked):
2845         rename to add _unlocked
2846         (struct DBusConnection): move "dispatch_acquired" and
2847         "io_path_acquired" to use only one bit each.
2848         (CONNECTION_LOCK, CONNECTION_UNLOCK): add checks with !DBUS_DISABLE_CHECKS
2849         (dbus_connection_set_watch_functions): hacky fix to reentrancy
2850         (_dbus_connection_add_watch, _dbus_connection_remove_watch) 
2851         (_dbus_connection_toggle_watch, _dbus_connection_add_timeout) 
2852         (_dbus_connection_remove_timeout) 
2853         (_dbus_connection_toggle_timeout): drop lock when calling out to
2854         user functions; done in a hacky/bad way.
2855         (_dbus_connection_send_and_unlock): add a missing unlock
2856         (_dbus_connection_block_for_reply): add a missing unlock
2857
2858         * dbus/dbus-transport.c (_dbus_transport_get_is_authenticated):
2859         drop lock in a hacky probably unsafe way to call out to user
2860         function
2861
2862 2005-02-12  Havoc Pennington  <hp@redhat.com>
2863
2864         * tools/dbus-tree-view.c (info_set_func_text): display more
2865         details on args
2866
2867         * bus/driver.c (bus_driver_handle_list_services): list the bus
2868         driver
2869
2870         * glib/dbus-gparser.c (parse_arg): generate an arg name if none is supplied
2871
2872         * glib/dbus-gidl.c (signal_info_get_n_args): new function
2873         (method_info_get_n_args): new function
2874
2875 2005-02-12  Havoc Pennington  <hp@redhat.com>
2876
2877         * bus/driver.c (bus_driver_handle_introspect): add introspection
2878         for bus driver
2879
2880 2005-02-12  Havoc Pennington  <hp@redhat.com>
2881
2882         * bus/driver.c: put the signature of each bus driver method in the
2883         table of handlers and check it on incoming calls; this isn't
2884         really useful, but going to add introspect support in a minute.
2885
2886 2005-02-11  Joe Shaw  <joeshaw@novell.com>
2887
2888         * mono/Connection.cs: The unpredictability of finalizers in mono
2889         prevents us from deterministically disconnecting the filters from
2890         the Service class's finalizer, so move tracking of filters and
2891         matches here.  Add API for that.
2892
2893         * mono/Service.cs: Remove the code, add code which calls the
2894         methods now on the Connection class.
2895
2896 2005-02-11  John (J5) Palmieri  <johnp@redhat.com>
2897
2898         * python/dbus.py (class Sender): added to support dbus signals better
2899         (Bus::add_signal_receiver): added expand_args parameter which defaults
2900         to True.  When expand args is True the signal handler will pass the 
2901         message arguments as parameters to the signal handler.  If False
2902         revert to previous behavior where the signal handler must get the
2903         argument list from the message.  This is to help port applications
2904         like HAL that have a tendancy to send variable length argument lists.
2905         self._match_rule_to_receivers is now a dict of dicts.
2906         (Bus::remove_signal_receiver): pop handler off the dict intead of 
2907         removing it from a list
2908         (Bus::_signal_func): change signal handlers so that interface,
2909         signal_name, service, path and message are packed into a Sender
2910         object and that is passed to the handler.  If expand_args is True
2911         extract the args list from the message and append it to the parameter
2912         list
2913         
2914         * python/dbus_bindings.pyx.in (class Signature): added to support 
2915         signiature types
2916         (MessageIter::__init__): changed iteration limit to match D-BUS
2917         (MessageIter::get*): added INT16, UINT16, SIGNATURE, DICT_ENTRY, 
2918         STRUCT and VARIENT type support
2919         (MessageIter::python_value_to_dbus_sig): made recursive to support
2920         recursive types
2921         (MessageIter::append*): added Signature, dict, tuple 
2922         support
2923
2924         * python/examples/example-client.py: added examples of getting tuples
2925         and dicts
2926
2927         * python/examples/example-service.py: added examples of sending tuples
2928         and dicts
2929
2930         * python/examples/example-signal-recipient.py: Fixed to handle new
2931         signal callback format
2932
2933 2005-02-10  Havoc Pennington  <hp@redhat.com>
2934
2935         * test/glib/test-dbus-glib.c (main): fix so this test doesn't fail
2936         (call dbus_g_proxy_add_signal)
2937
2938         * dbus/dbus-server-unix.c (_dbus_server_new_for_tcp_socket):
2939         escape the hostname
2940         (_dbus_server_new_for_domain_socket): escape the path
2941
2942         * dbus/dbus-address.c (dbus_address_escape_value): new
2943         (dbus_address_unescape_value): new
2944         (dbus_parse_address): unescape values
2945
2946         * dbus/dbus-string.c (_dbus_string_append_byte_as_hex): new function
2947
2948         * doc/dbus-specification.xml: explain how to escape values in
2949         addresses
2950
2951 2005-02-10  Havoc Pennington  <hp@redhat.com>
2952
2953         * dbus/dbus-message-factory.c (generate_special): modify test to
2954         avoid using a non-basic dict key
2955
2956         * dbus/dbus-marshal-validate-util.c: add test for the below
2957
2958         * doc/dbus-specification.xml: require that dict keys are a basic
2959         type
2960
2961         * dbus/dbus-marshal-validate.c
2962         (_dbus_validate_signature_with_reason): require that dict key is a
2963         basic type
2964
2965 2005-02-10  Havoc Pennington  <hp@redhat.com>
2966
2967         * dbus/dbus-object-tree.c (handle_default_introspect_and_unlock):
2968         change to be _and_unlock instead of _unlocked
2969
2970         * dbus/dbus-connection.c
2971         (_dbus_connection_send_preallocated_unlocked_no_update): rename to
2972         have no_update so we can find this bug quickly in future
2973
2974 2005-02-10  Havoc Pennington  <hp@redhat.com>
2975
2976         * dbus/dbus-message-util.c (verify_test_message): tests for string
2977         array
2978
2979         * dbus/dbus-message.c (dbus_message_append_args_valist): add
2980         support for arrays of string/signature/path
2981
2982 2005-02-10  Joe Shaw  <joeshaw@novell.com>
2983
2984         * dbus/dbus-connection.c
2985         (_dbus_connection_queue_received_message_link,
2986         _dbus_connection_message_sent): Add the path to
2987         the verbose output.
2988         (_dbus_connection_send_preallocated_and_unlock): Added.  Calls
2989         _dbus_connection_send_preallocated_unlocked(), updated the
2990         dispatch status, and unlocks.  Fixes a bug where certain
2991         situations (like a broken pipe) could cause a Disconnect message
2992         to not be sent, tricking the bus into thinking a service was still
2993         there when the process had quit.
2994         (_dbus_connection_send_preallocated): Call
2995         _dbus_connection_send_preallocated_and_unlock().
2996         (_dbus_connection_send_and_unlock): Added.  Calls
2997         _dbus_connection_send_preallocated_and_unlock().
2998         (dbus_connection_send): Call _dbus_connection_send_and_unlock().
2999         (dbus_connection_send_with_reply): Update the dispatch status and
3000         unlock.
3001
3002         * mono/Service.cs (~Service): Added.  Removes the filter so that
3003         we don't get unmanaged code calling back into a GCed delegate.
3004         (RemoveFilter); Added.
3005
3006 2005-02-09  John (J5) Palmieri  <johnp@redhat.com>
3007
3008         * dbus/dbus-message.c (dbus_message_iter_open_container):
3009         - Removed check for iterator type being an array because
3010         get_arg_type does not work with writer iterators
3011         - Pass NULL to _dbus_type_writer_recurse if signiture is NULL
3012
3013 2005-02-07  Havoc Pennington  <hp@redhat.com>
3014
3015         * doc/dbus-specification.xml: some more language cleanups; add
3016         stuff about how to deal with invalid protocol and extension
3017         points; add _ to allowed chars in auth commands; add EXTENSION_
3018         auth command prefix
3019
3020 2005-02-06  Havoc Pennington  <hp@redhat.com>
3021
3022         * s/expected/required/ in a couple places for clarity
3023
3024 2005-02-07  Colin Walters  <walters@verbum.org>
3025
3026         * bus/selinux.c (bus_selinux_allows_send): Handle NULL for
3027         sender or proposed_recipient.
3028
3029 2005-02-06  Havoc Pennington  <hp@redhat.com>
3030
3031         * dbus/dbus-message-factory.c (generate_special): more tests
3032
3033         * dbus/dbus-marshal-validate.c (validate_body_helper): detect
3034         array length that exceeds the maximum
3035
3036 2005-02-05  Havoc Pennington  <hp@redhat.com>
3037
3038         * dbus/dbus-message-factory.c (generate_special): more test cases,
3039         increasing coverage
3040
3041         * dbus/dbus-marshal-validate.c (validate_body_helper): return the
3042         reason why a signature was invalid
3043
3044         * dbus/dbus-marshal-header.c (load_and_validate_field): fix to
3045         skip the length of the string before we look at it in validation
3046
3047         * dbus/dbus-string-util.c (_dbus_string_test): add tests for
3048         equal_substring
3049
3050         * dbus/dbus-message.c (_dbus_message_loader_new): default
3051         max_message_length to DBUS_MAXIMUM_MESSAGE_LENGTH
3052
3053 2005-02-05  Havoc Pennington  <hp@redhat.com>
3054
3055         * dbus/dbus-marshal-validate.c (validate_body_helper): fix crash
3056         if the signature of a variant was empty
3057         (_dbus_validate_signature_with_reason): catch "(a)" (array inside
3058         struct with no element type)
3059
3060         * dbus/dbus-message-factory.c (generate_uint32_changed): add more
3061         mangled messages to break things
3062
3063 2005-02-04  Havoc Pennington  <hp@redhat.com>
3064
3065         * glib/dbus-gproxy.c (dbus_g_proxy_disconnect_signal): use
3066         g_quark_try_string() so it actually can return 0
3067         (dbus_g_proxy_connect_signal): ditto
3068
3069 2005-02-04  Havoc Pennington  <hp@redhat.com>
3070
3071         * glib/dbus-gproxy.c (dbus_g_proxy_emit_remote_signal): fix a
3072         bogus warning
3073         (tristring_from_message): assert cleanly on null path/interface
3074         (should not be possible though I decided later)
3075         (dbus_g_proxy_dispose): move proxy manager unregistration here
3076         (DBUS_G_PROXY_DESTROYED): add this macro, and use it in a bunch of
3077         g_return_if_fail() checks
3078
3079 2005-02-04  Havoc Pennington  <hp@redhat.com>
3080
3081         * doc/Makefile.am (EXTRA_DIST): add DTDs to makefile
3082
3083         * doc/introspect.dtd: add introspect.dtd from David A. Wheeler
3084         (with some minor changes)
3085
3086         * doc/dbus-specification.xml: add deprecated attribute to
3087         introspection format
3088
3089 2005-01-31  Havoc Pennington  <hp@redhat.com>
3090
3091         * glib/dbus-gproxy.c: rewrite how signals work again, this time I
3092         think it's sort of right
3093
3094 2005-01-30  Havoc Pennington  <hp@redhat.com>
3095
3096         * tools/dbus-viewer.c: kind of half-ass hook up the option menu.
3097
3098 2005-01-30  Havoc Pennington  <hp@redhat.com>
3099
3100         * tools/dbus-names-model.c: dynamically watch NameOwnerChanged
3101
3102         * autogen.sh: change to autotools 1.9
3103
3104         * glib/dbus-gproxy.c: completely change how signals work
3105         (dbus_g_proxy_add_signal): new function to specify signature of a
3106         signal
3107         (dbus_g_proxy_emit_received): marshal the dbus message to GValues,
3108         and g_warning if the incoming message has the wrong signature.
3109
3110 2005-01-30  Havoc Pennington  <hp@redhat.com>
3111
3112         * tools/dbus-names-model.c (have_names_notify): fix this
3113
3114         * dbus/dbus-message.c (_dbus_message_iter_get_args_valist): clean
3115         up the string array handling a bit 
3116
3117 2005-01-30  Havoc Pennington  <hp@redhat.com>
3118
3119         * glib/dbus-glib.c (dbus_g_pending_call_set_notify): new function
3120         (dbus_g_pending_call_cancel): new function
3121
3122         * dbus/dbus-glib.h: move GType decls for connection/message here;
3123         * dbus/dbus-glib.c: move all the g_type and ref/unref stuff in
3124         here, just kind of rationalizing how we handle all that
3125
3126         * tools/dbus-names-model.c: new file for a tree model listing the
3127         services on a bus
3128
3129         * tools/dbus-tree-view.c (model_new): use proper typing on the
3130         model rows
3131
3132 2005-01-30  Havoc Pennington  <hp@redhat.com>
3133
3134         * glib/dbus-gmain.c: add a custom GSource back that just checks
3135         whether the message queue has anything in it; otherwise, there are 
3136         cases where we won't see messages in the queue since there was no 
3137         IO visible to the glib main loop
3138
3139         * dbus/dbus-connection-internal.h (_DBUS_DEFAULT_TIMEOUT_VALUE):
3140         increase default message timeout to 25 seconds
3141
3142 2005-01-30  Havoc Pennington  <hp@redhat.com>
3143
3144         * test/glib/test-profile.c (no_bus_stop_server): remove the
3145         warning about the g_warning that I just fixed
3146
3147         * glib/dbus-gmain.c: rewrite the main loop stuff to avoid the
3148         custom source, seems to be a lot easier to understand and work
3149         better.
3150
3151 2005-01-30  Havoc Pennington  <hp@redhat.com>
3152
3153         I think this main loop thing is conceptually broken, but here are 
3154         some band aids. I'll maybe rewrite it in a minute.
3155         
3156         * glib/dbus-gmain.c (add_timeout): timeout stuff doesn't use the
3157         custom GSource, so don't pass it in; confusing
3158         (gsource_server_finalize, gsource_connection_finalize): add
3159         finalize handlers that remove all the watches.  
3160
3161 2005-01-30  Havoc Pennington  <hp@redhat.com>
3162
3163         * glib/dbus-gobject.c (introspect_properties): fix the XML
3164         generated
3165
3166         * dbus/dbus-message.c (dbus_message_unref): add an in_cache flag
3167         which effectively detects the use of freed messages
3168
3169         * glib/dbus-gobject.c (handle_introspect): modify and return the
3170         reply message instead of the incoming message
3171
3172         * dbus/dbus-object-tree.c (handle_default_introspect_unlocked):
3173         gee, maybe it should SEND THE XML instead of just making a string
3174         and freeing it again ;-)
3175
3176         * tools/dbus-print-message.c (print_message): improve printing of
3177         messages
3178
3179         * configure.in: add debug-glib.service to the output
3180
3181 2005-01-30  Havoc Pennington  <hp@redhat.com>
3182
3183         dbus-viewer introspected and displayed the bus driver
3184         
3185         * dbus/dbus-object-tree.c 
3186         (object_tree_test_iteration): add tests for a handler registered on "/"
3187
3188         * dbus/dbus-object-tree.c
3189         (_dbus_decompose_path): fix to handle path "/" properly
3190         (run_decompose_tests): add tests for path decomposition
3191         
3192         * glib/dbus-gutils.c (_dbus_gutils_split_path): fix to handle "/"
3193         properly
3194
3195         * glib/dbus-gobject.c (handle_introspect): fix quotes
3196
3197         * test/glib/run-test.sh: support launching the bus, then running
3198         dbus-viewer
3199
3200         * test/glib/test-service-glib.c (main): put in a trivial gobject
3201         subclass and register it on the connection
3202
3203         * bus/driver.c (bus_driver_handle_introspect): implement
3204         introspection of the bus driver service
3205
3206         * dbus/dbus-protocol.h: add #defines for the XML namespace,
3207         identifiers, doctype decl
3208
3209         * bus/driver.c (bus_driver_handle_get_service_owner): handle
3210         attempts to get owner of DBUS_SERVICE_ORG_FREEDESKTOP_DBUS by 
3211         returning the service unchanged.
3212         (bus_driver_handle_message): remove old check for reply_serial in
3213         method calls, now the message type deals with that
3214         (bus_driver_handle_message): handle NULL interface
3215
3216         * glib/dbus-gproxy.c (dbus_g_proxy_get_bus_name): new function
3217
3218         * glib/dbus-gloader-expat.c (description_load_from_string): allow
3219         -1 for len
3220
3221         * tools/dbus-viewer.c: add support for introspecting a service on
3222         a bus
3223
3224         * glib/dbus-gproxy.c (dbus_g_pending_call_ref): add
3225         (dbus_g_pending_call_unref): add
3226
3227 2005-01-29  Havoc Pennington  <hp@redhat.com>
3228
3229         * tools/dbus-tree-view.c: add support for displaying properties.
3230         (run dbus-viewer with an introspect xml file as arg, then resize
3231         the window so the tree elements show up, not sure what that is)
3232
3233         * glib/dbus-gobject.c (handle_introspect): return
3234         org.freedesktop.Properties and org.freedesktop.Introspectable
3235         interfaces when we are introspected.
3236
3237         * doc/dbus-specification.xml: allow empty interface name when 
3238         Get/Set a property
3239
3240 2005-01-29  Havoc Pennington  <hp@redhat.com>
3241
3242         * glib/Makefile.am: rename dbus-glib-tool to dbus-binding-tool;
3243         though it uses glib, it could be extended for any binding in
3244         principle
3245
3246         * glib/dbus-gobject.c (gobject_message_function): change to the
3247         new way properties work
3248
3249         * dbus/dbus-protocol.h: add the new interfaces
3250
3251         * doc/dbus-specification.xml: document the introspection format,
3252         Introspectable interface, and add an org.freedesktop.Properties
3253         interface.
3254
3255         * glib/dbus-gparser.c: add support for a <property> element
3256
3257         * glib/dbus-gidl.c: add PropertyInfo
3258
3259         * glib/dbus-gobject.c (handle_introspect): put the outermost
3260         <node> outside the signal and property descriptions.
3261         (introspect_properties): export properties as <property> rather
3262         than as method calls
3263
3264 2005-01-28  Havoc Pennington  <hp@redhat.com>
3265
3266         * doc/TODO, doc/dbus-specification.xml: spec and TODO tweaks
3267         related to authentication protocol
3268
3269 2005-01-28  John (J5) Palmieri  <johnp@redhat.com>
3270
3271         * python/dbus_bindings.pyx.in: Updated to handle new D-BUS type system
3272                 - BUS_ACTIVATION -> BUS_STARTER
3273                 - DBUS_BUS_ACTIVATION -> DBUS_BUS_STARTER
3274                 - class MessageIter (__init__): Added recursion checking 
3275                 so we throw a nice error instead of just disconnecting from the
3276                 bus.
3277                 (get): Added arg_type parameter for recursion.
3278                 Removed the nil type
3279                 Added signiture type placeholder (not implemented)
3280                 Added struct type placeholder (not implemented)
3281                 Added varient type placeholder (not implemented)
3282                 Commented out dict type for now     
3283                 (get_element_type): renamed from get_array_type
3284                 (get_*): changed to use the dbus_message_iter_get_basic API
3285                 (get_*_array): removed in favor of recursive get_array method
3286                 (get_array): new recursive method which calls get to marshal
3287                 the elements of the array
3288                 (value_to_dbus_sig): New method returns the corrasponding
3289                 dbus signiture to a python value
3290                 (append): Comment out dict handling for now
3291                 Handle lists with the new recursive API
3292                 Comment out None handling for now
3293                 (append_nil): removed
3294                 (append_*): changed to use dbus_message_iter_append_basic API
3295                 (append_*_array): removed in favor of recursive append_array 
3296                 method
3297                 (__str__): Make it easier to print out recursive iterators
3298                 for debugging
3299                 - class Message (__str__): moved type inspection to the
3300                 MessageIter class' __str__ method
3301                 (get_iter): Added an append parameter wich defaults to False
3302                 If True use the new API's to create an append iterator
3303
3304         * python/dbus.py: Update to use new bindings API
3305                 - TYPE_ACTIVATION -> TYPE_STARTER
3306                 - class Bus (_get_match_rule): GetServiceOwner -> GetNameOwner
3307                 - class ActivationBus -> class StarterBus
3308                 - class RemoteObject (__call__): get an append iterator
3309                 - (_dispatch_dbus_method_call): get an append iterator
3310                 - class Object (emit_signal): get an append iterator
3311
3312         * python/examples/: Fixed up the examples to work with the new API
3313                 
3314 2005-01-28  Joe Shaw  <joeshaw@novell.com>
3315
3316         * configure.in: Bump version up to 0.30.
3317
3318         * HACKING: Add a release item to bump the version number up after 
3319         a release.
3320
3321 2005-01-28  Havoc Pennington  <hp@redhat.com>
3322
3323         * doc/dbus-specification.xml: update to describe 16-bit types and
3324         dict entries
3325
3326         * dbus/dbus-marshal-basic.c (_dbus_unpack_uint16): fix broken
3327         assertion
3328
3329         * dbus/dbus-protocol.h (DBUS_TYPE_DICT_ENTRY): add DICT_ENTRY as a
3330         type
3331
3332         * dbus/dbus-marshal-recursive.c: implement
3333
3334 2005-01-27  Havoc Pennington  <hp@redhat.com>
3335
3336         * dbus/dbus-arch-deps.h.in: add 16/32-bit types
3337
3338         * configure.in: find the right type for 16 and 32 bit ints as well
3339         as 64
3340
3341         * dbus/dbus-protocol.h (DBUS_TYPE_INT16, DBUS_TYPE_UINT16): add
3342         the 16-bit types so people don't have to stuff them in 32-bit or
3343         byte arrays.
3344
3345 2005-01-27  Havoc Pennington  <hp@redhat.com>
3346
3347         * dbus/dbus-message.c: byteswap the message if you init an
3348         iterator to read/write from it
3349         
3350         * dbus/dbus-marshal-byteswap.c: new file implementing 
3351         _dbus_marshal_byteswap()
3352
3353         * dbus/dbus-marshal-basic.c: add _dbus_swap_array()
3354
3355 2005-01-26  Havoc Pennington  <hp@redhat.com>
3356         
3357         * dbus/dbus-marshal-validate-util.c: break this out (and fix
3358         build, apparently - nobody noticed?)
3359         
3360 2005-01-26  Havoc Pennington  <hp@redhat.com>
3361
3362         * dbus/dbus-marshal-recursive.h: remove todo comment
3363
3364 2005-01-25  Joe Shaw  <joeshaw@novell.com>
3365
3366         * Land the mono binding changes to conform to the new APIs.
3367
3368         * mono/Makefile.am: Remove Custom.cs, DBusType/Custom.cs,
3369         DBusType/Dict.cs, and DBusType/Nil.cs from the build.
3370
3371         * mono/Arguments.cs (GetCodeAsString): Added.  Returns the dbus
3372         type code as a string.
3373         (InitAppending): Rename dbus_message_append_iter_init() to
3374         dbus_message_iter_init_append().
3375
3376         * mono/BusDriver.cs: Rename ServiceEventHandler to
3377         NameOwnerChangedHandler.  Rename GetServiceOwner to GetOwner.
3378         Rename ServiceOwnerChanged to NameOwnerChanged.
3379
3380         * mono/Connection.cs: Rename BaseService to UniqueName, and the
3381         underlying C call.
3382
3383         * mono/Custom.cs: Removed.  The CUSTOM type has been removed.
3384
3385         * mono/Service.cs: Rename Exists to HasOwner, internally rename
3386         dbus_bus_acquire_service() to dbus_bus_request_name().
3387
3388         * mono/DBusType/Array.cs (ctor): Use Type.GetElementType() instead
3389         of Type.UnderlyingSystemType to get the correct element type for
3390         the array.
3391         (ctor): Update code for new APIs: use dbus_message_iter_recurse(),
3392         dbus_message_get_{element|arg}_type() instead of
3393         dbus_message_iter_init_array_iterator().
3394         (Append): Replace dbus_message_iter_append_array() with
3395         dbus_message_iter_open_container() and
3396         dbus_message_iter_close_container().
3397
3398         * mono/DBusType/Custom.cs, mono/DBusType/Nil.cs: Removed.  These
3399         types have been removed.
3400         
3401         * mono/DBusType/*.cs: Replace calls of
3402         dbus_message_iter_get_[type]() to dbus_message_iter_get_basic(),
3403         but specify the type in the DllImport extern declaration.  Ditto
3404         for dbus_message_iter_append_[type]() ->
3405         dbus_message_iter_append_basic().
3406
3407         * mono/example/BusListener.cs: Update for ServiceEventHandler ->
3408         NameOwnerChangedHandler.
3409
3410 2005-01-25  John (J5) Palmieri  <johnp@redhat.com>
3411
3412         * python/dbus_bindings.pyx.in: Rename of methods and bindings
3413                 - get_base_service -> get_unique_name
3414                 - bus_get_base_service -> bus_get_unique_name
3415                 - dbus_bus_get_base_service -> dbus_bus_get_unique_name
3416                 - ACTIVATION_REPLY_ACTIVATED -> DBUS_START_REPLY_SUCCESS 
3417                 - ACTIVATION_REPLY_ALREADY_ACTIVE -> DBUS_START_REPLY_ALREADY_RUNNING
3418                 - bus_activate_service -> bus_start_service_by_name
3419                 - dbus_bus_activate_service -> dbus_bus_start_service_by_name
3420                 - bus_acquire_service -> bus_request_name
3421                 - dbus_bus_acquire_service -> dbus_bus_request_name
3422                 - bus_service_exists -> bus_name_has_owner
3423                 - dbus_bus_service_exists -> dbus_bus_name_has_owner
3424
3425         * python/dbus.py: Rename of methods
3426                 - activate_service -> start_service_by_name
3427                 - bus_acquire_service -> bus_request_name
3428                 - ACTIVATION_REPLY_ACTIVATED -> START_REPLY_SUCCESS 
3429                 - ACTIVATION_REPLY_ALREADY_ACTIVE -> START_REPLY_ALREADY_RUNNING
3430
3431         
3432 2005-01-24  Joe Shaw  <joeshaw@novell.com>
3433
3434         * dbus/dbus-connection.c (dbus_connection_dispatch): Print out the
3435         signature for the method that can't be found.
3436
3437         * dbus/dbus-message.c (dbus_message_iter_init): To check to see if
3438         the message has any arguments, we need to call
3439         _dbus_type_reader_get_current_type(), not
3440         _dbus_type_reader_has_next().
3441
3442 2005-01-24  Havoc Pennington  <hp@redhat.com>
3443
3444         * dbus/dbus-message-factory.c: more testing of message validation
3445
3446         * dbus/dbus-protocol.h (DBUS_MINIMUM_HEADER_SIZE): move to this
3447         header
3448
3449 2005-01-23  Havoc Pennington  <hp@redhat.com>
3450
3451         * dbus/dbus-message-factory.c, dbus/dbus-message-util.c: 
3452         get this all working, not many tests in the framework yet though
3453
3454 2005-01-22  Havoc Pennington  <hp@redhat.com>
3455
3456         * doc/dbus-faq.xml, doc/dbus-tutorial: add a FAQ and update
3457         tutorial, based on work from David Wheeler.
3458
3459 2005-01-21  Havoc Pennington  <hp@redhat.com>
3460
3461         * dbus/dbus-bus.c: add more return_if_fail checks
3462
3463         * dbus/dbus-message.c (load_message): have the "no validation"
3464         mode (have to edit the code to toggle the mode for now though)
3465
3466         * dbus/dbus-marshal-header.c (_dbus_header_load): have a mode that
3467         skips all validation; I want to use this at least for benchmark
3468         baseline, I'm not sure if it should be a publicly-available switch.
3469
3470 2005-01-21  Havoc Pennington  <hp@redhat.com>
3471
3472         * glib/dbus-gmain.c: don't put the GLib bindings in the same
3473         toplevel doxygen group as the low-level API stuff
3474
3475         * dbus/dbus.h: note that libdbus is the low-level API
3476
3477 2005-01-20  Havoc Pennington  <hp@redhat.com>
3478
3479         * update-dbus-docs.sh: script to update docs on the web site, only
3480         works for me though. neener.
3481
3482 2005-01-20  Havoc Pennington  <hp@redhat.com>
3483
3484         * dbus/dbus-sysdeps.c (_dbus_poll): amazingly, trying to compile
3485         code can reveal bugs in it
3486
3487 2005-01-20  Havoc Pennington  <hp@redhat.com>
3488
3489         * dbus/dbus-sysdeps.c (_dbus_poll): fix several bugs in the
3490         select() version, patches from Tor Lillqvist
3491
3492 2005-01-20  Havoc Pennington  <hp@redhat.com>
3493
3494         * doc/dbus-tutorial.xml: replace > with &gt;
3495
3496         * bus/services.c (bus_registry_acquire_service): validate the name
3497         and return a better error if it's no good.
3498
3499         * doc/dbus-specification.xml: note NO_AUTO_START change
3500
3501         * dbus/dbus-protocol.h (DBUS_HEADER_FLAG_NO_AUTO_START): change
3502         from AUTO_START, we're toggling the default
3503
3504         * bus/dispatch.c: adapt the tests to change of auto-start default
3505
3506 2005-01-18  Havoc Pennington  <hp@redhat.com>
3507
3508         * rename dbus-daemon-1 to dbus-daemon throughout
3509
3510 2005-01-18  Havoc Pennington  <hp@redhat.com>
3511
3512         * Throughout, grand renaming to strip out the use of "service",
3513         just say "name" instead (or "bus name" when ambiguous).  Did not
3514         change the internal code of the message bus itself, only the
3515         programmer-facing API and messages.
3516         
3517         * doc/dbus-specification.xml: further update the message bus section
3518         
3519         * bus/config-parser.c (all_are_equiv): fix bug using freed string
3520         in error case
3521
3522 2005-01-17  Havoc Pennington  <hp@redhat.com>
3523
3524         * dbus/dbus-types.h: remove 16-bit types since we don't use them
3525         ever
3526
3527         * dbus/dbus-marshal-validate.c (_dbus_validate_path): disallow any
3528         "invalid name character" not only non-ASCII
3529
3530         * doc/dbus-specification.xml: further update spec, message bus 
3531         parts are still out-of-date but the marshaling etc. stuff is now
3532         accurate-ish
3533
3534 2005-01-17  Havoc Pennington  <hp@redhat.com>
3535
3536         * doc/dbus-specification.xml: partially update spec
3537
3538 2005-01-17  Havoc Pennington  <hp@redhat.com>
3539
3540         * Throughout, align variant bodies according to the contained
3541         type, rather than always to 8. Should save a fair bit of space in
3542         message headers.
3543         
3544         * dbus/dbus-marshal-validate.c (_dbus_validate_body_with_reason):
3545         fix handling of case where p == end
3546
3547         * doc/TODO: remove the dbus_bool_t item and variant alignment items
3548
3549 2005-01-17  Havoc Pennington  <hp@redhat.com>
3550
3551         * dbus/dbus-types.h: hardcode dbus_bool_t to 32 bits
3552
3553         * Throughout: modify DBUS_TYPE_BOOLEAN to be a 32-bit type instead
3554         of an 8-bit type. Now dbus_bool_t is the type to use whenever you 
3555         are marshaling/unmarshaling a boolean.
3556
3557 2005-01-16  Havoc Pennington  <hp@redhat.com>
3558
3559         This is about it on what can be disabled/deleted from libdbus
3560         easily, back below 150K anyhow. Deeper cuts are more work than 
3561         just turning the code off as I've done here.
3562         
3563         * dbus/dbus-marshal-basic.c (_dbus_pack_int32): we don't need the
3564         signed int convenience funcs
3565
3566         * dbus/dbus-internals.c (_dbus_verbose_real): omit when not in
3567         verbose mode
3568
3569         * dbus/dbus-string-util.c, dbus/dbus-string.c: more breaking
3570         things out of libdbus
3571
3572         * dbus/dbus-sysdeps.c, dbus/dbus-sysdeps-util.c: same
3573         
3574         * dbus/dbus-hash.c: purge the TWO_STRINGS crap (well, make it
3575         tests-enabled-only, though it should probably be deleted)
3576
3577         * dbus/dbus-message-util.c: same stuff
3578
3579         * dbus/dbus-auth-util.c: same stuff
3580
3581 2005-01-16  Havoc Pennington  <hp@redhat.com>
3582
3583         * dbus/dbus-userdb-util.c: split out part of dbus-userdb.c
3584
3585         * dbus/dbus-sysdeps.c (_dbus_uid_from_string): move here to pave
3586         way for stripping down dbus-userdb.c stuff included in libdbus.
3587         Rename _dbus_parse_uid for consistency.
3588
3589 2005-01-16  Havoc Pennington  <hp@redhat.com>
3590
3591         * dbus/dbus-internals.c (_dbus_real_assert): print the function
3592         name the assertion failed in
3593
3594         * dbus/dbus-internals.h (_dbus_return_if_fail) 
3595         (_dbus_return_val_if_fail): assert that the name of the function
3596         containing the check doesn't start with '_', since we only want to 
3597         use checks on public functions
3598         
3599         * dbus/dbus-connection.c (_dbus_connection_ref_unlocked): change
3600         checks to assertions
3601
3602         * dbus/dbus-marshal-header.c (_dbus_header_set_field_basic):
3603         change checks to asserts for private function
3604
3605         * dbus/dbus-message.c (_dbus_message_set_serial): checks
3606         to asserts for private function
3607
3608         * dbus/dbus-marshal-recursive.c (skip_one_complete_type): remove
3609         broken assertion that was breaking make check
3610         (_dbus_type_reader_array_is_empty): remove this rather than fix
3611         it, was only used in assertions
3612
3613 2005-01-16  Havoc Pennington  <hp@redhat.com>
3614
3615         * test/unused-code-gc.py: hacky script to find code that's used
3616         only by the bus (not libdbus) or used only by tests or not used at
3617         all. It has some false alarms, but looks like we can clean up a
3618         lot of size from libdbus.
3619
3620         * dbus/dbus-sysdeps.c, dbus/dbus-sysdeps-utils.c,
3621         dbus/Makefile.am: initially move 10K of binary size out of libdbus
3622         
3623 2005-01-16  Havoc Pennington  <hp@redhat.com>
3624
3625         * Add and fix docs according to Doxygen warnings throughout
3626         source.
3627         
3628         * dbus/dbus-marshal-recursive.c
3629         (_dbus_type_reader_array_is_empty): change this to just call
3630         array_reader_get_array_len() and make it static
3631
3632         * dbus/dbus-message.c (dbus_message_iter_get_element_type): rename
3633         from get_array_type
3634         (dbus_message_iter_init_append): rename from append_iter_init
3635
3636         * dbus/dbus-marshal-recursive.c
3637         (_dbus_type_reader_get_element_type): rename from
3638         _dbus_type_reader_get_array_type
3639
3640 2005-01-15  Havoc Pennington  <hp@redhat.com>
3641
3642         * test/glib/test-profile.c (with_bus_server_filter): fix crash
3643
3644         * dbus/dbus-marshal-basic.c (_dbus_unpack_uint32): inline as macro
3645         when DBUS_DISABLE_ASSERT
3646         (_dbus_marshal_set_basic): be sure we align for the string length
3647
3648         * dbus/dbus-marshal-recursive.c (skip_one_complete_type): make
3649         this look faster
3650
3651         * dbus/dbus-string.c (_dbus_string_get_const_data_len): add an
3652         inline macro version
3653         (_dbus_string_set_byte): provide inline macro version
3654
3655 2005-01-15  Havoc Pennington  <hp@redhat.com>
3656
3657         * Land the new message args API and type system.
3658
3659         This patch is huge, but the public API change is not 
3660         really large. The set of D-BUS types has changed somewhat, 
3661         and the arg "getters" are more geared toward language bindings;
3662         they don't make a copy, etc.
3663
3664         There are also some known issues. See these emails for details
3665         on this huge patch:
3666         http://lists.freedesktop.org/archives/dbus/2004-December/001836.html
3667         http://lists.freedesktop.org/archives/dbus/2005-January/001922.html
3668         
3669         * dbus/dbus-marshal-*: all the new stuff
3670
3671         * dbus/dbus-message.c: basically rewritten
3672
3673         * dbus/dbus-memory.c (check_guards): with "guards" enabled, init
3674         freed blocks to be all non-nul bytes so using freed memory is less
3675         likely to work right
3676
3677         * dbus/dbus-internals.c (_dbus_test_oom_handling): add
3678         DBUS_FAIL_MALLOC=N environment variable, so you can do
3679         DBUS_FAIL_MALLOC=0 to skip the out-of-memory checking, or
3680         DBUS_FAIL_MALLOC=10 to make it really, really, really slow and
3681         thorough.
3682
3683         * qt/message.cpp: port to the new message args API
3684         (operator<<): use str.utf8() rather than str.unicode()
3685         (pretty sure this is right from the Qt docs?)
3686
3687         * glib/dbus-gvalue.c: port to the new message args API
3688
3689         * bus/dispatch.c, bus/driver.c: port to the new message args API
3690
3691         * dbus/dbus-string.c (_dbus_string_init_const_len): initialize the
3692         "locked" flag to TRUE and align_offset to 0; I guess we never
3693         looked at these anyhow, but seems cleaner.
3694
3695         * dbus/dbus-string.h (_DBUS_STRING_ALLOCATION_PADDING):
3696         move allocation padding macro to this header; use it to implement
3697         (_DBUS_STRING_STATIC): ability to declare a static string.
3698
3699         * dbus/dbus-message.c (_dbus_message_has_type_interface_member):
3700         change to return TRUE if the interface is not set.
3701
3702         * dbus/dbus-string.[hc]: move the D-BUS specific validation stuff
3703         to dbus-marshal-validate.[hc]
3704
3705         * dbus/dbus-marshal-basic.c (_dbus_type_to_string): move here from
3706         dbus-internals.c
3707
3708         * dbus/Makefile.am: cut over from dbus-marshal.[hc]
3709         to dbus-marshal-*.[hc]
3710
3711         * dbus/dbus-object-tree.c (_dbus_decompose_path): move this
3712         function here from dbus-marshal.c
3713
3714 2005-01-12  Joe Shaw  <joeshaw@novell.com>
3715
3716         * NEWS: Update for 0.23.
3717
3718         * configure.in: Release 0.23.
3719
3720 2005-01-12  Joe Shaw  <joeshaw@novell.com>
3721
3722         * mono/Makefile.am, mono/example/Makefile.am: Always build the 
3723         dbus DLL with --debug.  Clean up after the .mdb files this leaves
3724         behind.
3725
3726         * mono/doc/Makefile.am: Need to uninstall the docs on "make
3727         uninstall"
3728
3729         * mono/Arguments.cs (GetDBusTypeConstructor): If the type
3730         is an enum, get the enum's underlying type.  Another mono
3731         1.1.3 fix.
3732
3733 2005-01-11  Joe Shaw  <joeshaw@novell.com>
3734
3735         Patch from Sjoerd Simons <sjoerd@luon.net>
3736
3737         * mono/Makefile.am, mono/example/Makefile.am: Don't redefine
3738         DESTDIR.  It breaks stuff.
3739
3740 2005-01-11  Joe Shaw  <joeshaw@novell.com>
3741
3742         Patch from Tambet Ingo <tambet@ximian.com>
3743
3744         * mono/DBusType/Array.cs (Get): Get the underlying element type by
3745         calling type.GetElementType().  The code previously depended on
3746         broken Mono behavior, which was fixed in Mono 1.1.3.
3747
3748         * mono/DBusType/Dict.cs (constructor): Fix the parameters for
3749         Activator.CreateInstance() so that the class's constructor is
3750         called with the right parameters.
3751
3752 2005-01-11  Joe Shaw  <joeshaw@novell.com>
3753
3754         Patch from Timo Teräs <ext-timo.teras@nokia.com>
3755
3756         * dbus/dbus-connection.c
3757         (_dbus_connection_queue_received_message_link): Call
3758         _dbus_connection_remove_timeout() instead of the _locked()
3759         variant, since it's always called from
3760         _dbus_connection_handle_watch(), which handles the locking.
3761         Removed the _locked() variant since it's no longer used.
3762
3763 2005-01-03  Havoc Pennington  <hp@redhat.com>
3764
3765         * dbus/dbus-internals.h: I'm an idiot, _dbus_assert certainly can
3766         return
3767         
3768 2004-12-26  Havoc Pennington  <hp@redhat.com>
3769
3770         * dbus/dbus-internals.h: add _DBUS_GNUC_NORETURN to _dbus_assert
3771
3772 2005-01-03  Havoc Pennington  <hp@redhat.com>
3773
3774         * dbus/dbus-sysdeps.c (_dbus_sysdeps_test): fix using == on
3775         floating point
3776
3777         * dbus/dbus-string.c (_dbus_string_insert_alignment): new function
3778
3779 2005-01-02  Havoc Pennington  <hp@redhat.com>
3780
3781         * dbus/dbus-internals.h (_DBUS_ALIGN_OFFSET): new macro
3782
3783 2005-01-01  Havoc Pennington  <hp@redhat.com>
3784
3785         * configure.in: add -Wfloat-equal
3786
3787 2005-01-01  Havoc Pennington  <hp@redhat.com>
3788
3789         * dbus/dbus-sysdeps.h: add _DBUS_DOUBLES_BITWISE_EQUAL macro, 
3790         for a variety of reasons '==' doesn't do this.
3791
3792 2004-12-31  Havoc Pennington  <hp@redhat.com>
3793
3794         * dbus/dbus-string.c (_dbus_string_equal_substrings): new function
3795         I keep wishing I had
3796
3797 2004-12-30  John (J5) Palmieri  <johnp@redhat.com>
3798
3799         * python/dbus.py: s/ACTIVATION_REPLY_ACTIVE/ACTIVATION_REPLY_ACTIVATED
3800
3801 2004-12-30  John (J5) Palmieri  <johnp@redhat.com>
3802
3803         * python/dbus_bindings.pyx.in: Change DBUS_ACTIVATION_REPLY_ACTIVATED
3804         and DBUS_ACTIVATION_REPLY_ALREADY_ACTIVE to match the values in
3805         dbus-protocol.h.  Because they are defines and not enums they are not
3806         autogenerated.
3807
3808 2004-12-26  John (J5) Palmieri  <johnp@redhat.com>
3809
3810         * python/dbus_bindings.pyx.in (bus_activate_service): Bind
3811         dbus_bus_activate_service
3812
3813         * python/dbus.py (Bus.activate_service): activate a service on the
3814         bus.
3815
3816 2004-12-24  Havoc Pennington  <hp@redhat.com>
3817
3818         * test/decode-gcov.c: change to use .gcno and .gcda files, but the
3819         file format has also changed and I haven't adapted to that yet
3820         
3821         * Makefile.am: load .gcno files from latest gcc
3822
3823 2004-12-23  John (J5) Palmieri  <johnp@redhat.com>
3824         * Patch from Rob Taylor <robtaylor@fastmail.fm>
3825
3826         * python/dbus_bindings.pyx.in (bus_get_unix_user): New
3827         lowlevel binding
3828
3829         * python/dbus.py (get_unix_user): Added binding to 
3830         call dbus_bindings.bus_get_unix_user
3831
3832         * python/extract.py: Modified the proto_pat regex to
3833         handle unsigned long
3834
3835 2004-12-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
3836
3837         * dbus/make-dbus-glib-error-enum.sh: omit the function keyword for
3838         better POSIX compliance.
3839
3840 2004-12-19  Havoc Pennington  <hp@redhat.com>
3841
3842         * dbus/dbus-string.c (_dbus_string_insert_4_aligned) 
3843         (_dbus_string_insert_8_aligned): new functions
3844
3845         * dbus/dbus-string.c (_dbus_string_alloc_space): new function
3846
3847 2004-12-18  Havoc Pennington  <hp@redhat.com>
3848
3849         * dbus/dbus-string.c (_dbus_string_validate_ascii): use ISASCII
3850         macro
3851
3852         * dbus/dbus-message.c: fix a comment, and add a still-unused
3853         not-implemented function
3854
3855         * dbus/dbus-marshal.h: fix comment
3856
3857         * dbus/dbus-internals.h (_DBUS_ISASCII): new macro
3858
3859 2004-12-17  Joe Shaw  <joeshaw@novell.com>
3860
3861         * mono/DBusType/Byte.cs, mono/DBusType/Int32.cs,
3862         mono/DBusType/Int64.cs, mono/DBusType/UInt32.cs,
3863         mono/DBusType/UInt64.cs: Use Enum.GetUnderlyingType() instead of
3864         Type.UnderlyingSystemType to get the actual system type
3865         underneath.  This code previously depended on the broken Mono
3866         behavior, which was fixed in 1.1.3.
3867
3868 2004-11-27  Havoc Pennington  <hp@redhat.com>
3869
3870         * dbus/dbus-string.h (_dbus_string_get_byte): inline when asserts
3871         are disabled
3872         (_dbus_string_get_const_data): inline when asserts are disabled
3873
3874         * dbus/dbus-message.c: record the _dbus_current_generation of
3875         creation so we can complain if dbus_shutdown() is used improperly.
3876         Do this only if checks are enabled.
3877
3878         * dbus/dbus-connection.c: ditto
3879         
3880 2004-11-26  Havoc Pennington  <hp@redhat.com>
3881
3882         * test/glib/test-profile.c: add with_bus mode to profile echoes
3883         that go through the bus.
3884
3885         * test/glib/run-test.sh: add ability to run test-profile
3886
3887         * bus/dbus-daemon-1.1.in: fix to say that SIGHUP causes partial
3888         config file reload.
3889
3890 2004-11-26  Havoc Pennington  <hp@redhat.com>
3891
3892         * test/glib/test-profile.c: clean up how the fake_malloc_overhead
3893         thing was implemented
3894
3895 2004-11-26  Havoc Pennington  <hp@redhat.com>
3896
3897         * test/glib/test-profile.c: tweak a bit, add support for some
3898         made-up minimal malloc overhead with plain sockets, since in 
3899         real life some sort of buffers are unavoidable thus we could 
3900         count them in the theoretical best case
3901
3902 2004-11-26  Havoc Pennington  <hp@redhat.com>
3903
3904         * dbus/dbus-message.c (dbus_message_cache_or_finalize): fix bug
3905         where I was trying to cache one too many messages
3906
3907 2004-11-26  Havoc Pennington  <hp@redhat.com>
3908
3909         * dbus/dbus-message.c: reimplement message cache as an array which 
3910         makes the cache about twice as fast and saves maybe 1.5% overall
3911
3912 2004-11-26  Havoc Pennington  <hp@redhat.com>
3913
3914         * dbus/dbus-threads.c (init_global_locks): forgot to put the
3915         message cache lock here
3916
3917 2004-11-26  Havoc Pennington  <hp@redhat.com>
3918
3919         * dbus/dbus-message.c (struct DBusMessage): put the locked bit and
3920         the "char byte_order" next to each other to save 4 bytes
3921         (dbus_message_new_empty_header): reduce preallocation, since the
3922         message cache should achieve a similar effect
3923         (dbus_message_cache_or_finalize, dbus_message_get_cached): add a
3924         message cache that keeps a few DBusMessage around in a pool,
3925         another 8% speedup or so.
3926
3927         * dbus/dbus-dataslot.c (_dbus_data_slot_list_clear): new function
3928
3929 2004-11-25  Havoc Pennington  <hp@redhat.com>
3930
3931         * dbus/dbus-transport-unix.c (unix_do_iteration): if we're going
3932         to write, without reading or blocking, try it before the poll()
3933         and skip the poll() if nothing remains to write. This is about a
3934         3% speedup in the echo client/server
3935
3936 2004-11-25  Havoc Pennington  <hp@redhat.com>
3937
3938         The primary change here is to always write() once before adding
3939         the write watch, which gives us about a 10% performance increase.
3940         
3941         * dbus/dbus-transport-unix.c: a number of modifications to cope
3942         with removing messages_pending
3943         (check_write_watch): properly handle
3944         DBUS_AUTH_STATE_WAITING_FOR_MEMORY; adapt to removal of
3945         messages_pending stuff
3946         (check_read_watch): properly handle WAITING_FOR_MEMORY and
3947         AUTHENTICATED cases
3948         (unix_handle_watch): after writing, see if the write watch can be
3949         removed
3950         (unix_do_iteration): assert that write_watch/read_watch are
3951         non-NULL rather than testing that they aren't, since they 
3952         aren't allowed to be NULL. check_write_watch() at the end so 
3953         we add the watch if we did not finish writing (e.g. got EAGAIN)
3954
3955         * dbus/dbus-transport-protected.h: remove messages_pending call,
3956         since it resulted in too much inefficient watch adding/removing; 
3957         instead we now require that the transport user does an iteration 
3958         after queueing outgoing messages, and after trying the first
3959         write() we add a write watch if we got EAGAIN or exceeded our 
3960         max bytes to write per iteration setting
3961
3962         * dbus/dbus-string.c (_dbus_string_validate_signature): add this
3963         function
3964
3965         * dbus/dbus-server-unix.c (unix_finalize): the socket name was
3966         freed and then accessed, valgrind flagged this bug, fix it
3967
3968         * dbus/dbus-message.c: fix several bugs where HEADER_FIELD_LAST was taken
3969         as the last valid field plus 1, where really it is equal to the
3970         last valid field. Corrects some message corruption issues.
3971
3972         * dbus/dbus-mainloop.c: verbosity changes
3973
3974         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): handle OOM
3975         instead of aborting in one of the test codepaths
3976
3977         * dbus/dbus-internals.c (_dbus_verbose_real): fix a bug that
3978         caused not printing the pid ever again if a verbose was missing
3979         the newline at the end
3980         (_dbus_header_field_to_string): add HEADER_FIELD_SIGNATURE
3981
3982         * dbus/dbus-connection.c: verbosity changes; 
3983         (dbus_connection_has_messages_to_send): new function
3984         (_dbus_connection_message_sent): no longer call transport->messages_pending
3985         (_dbus_connection_send_preallocated_unlocked): do one iteration to
3986         try to write() immediately, so we can avoid the write watch. This
3987         is the core purpose of this patchset
3988         (_dbus_connection_get_dispatch_status_unlocked): if disconnected,
3989         dump the outgoing message queue, so nobody will get confused
3990         trying to send them or thinking stuff is pending to be sent
3991
3992         * bus/test.c: verbosity changes
3993
3994         * bus/driver.c: verbosity/assertion changes
3995
3996         * bus/dispatch.c: a bunch of little tweaks to get it working again
3997         because this patchset changes when/where you need to block.
3998
3999 2004-11-23  Havoc Pennington  <hp@redhat.com>
4000
4001         * test/glib/test-profile.c: modify to accept a plain_sockets
4002         argument in which case it will bench plain sockets instead of
4003         libdbus, for comparison purposes.
4004
4005 2004-11-22  Havoc Pennington  <hp@redhat.com>
4006
4007         * test/glib/test-profile.c (N_CLIENT_THREADS): run multiple
4008         threads for more time, so sysprof can get a grip on it.
4009
4010         * dbus/dbus-string.c (_dbus_string_validate_utf8): remove
4011         pointless variable
4012
4013 2004-11-13  Havoc Pennington  <hp@redhat.com>
4014
4015         * test/glib/test-profile.c: fix this thing up a bit
4016
4017         * dbus/dbus-message.c (dbus_message_new_empty_header): increase
4018         preallocation sizes by a fair bit; not sure if this will be an
4019         overall performance win or not, but it does reduce reallocs.
4020
4021         * dbus/dbus-string.c (set_length, reallocate_for_length): ignore
4022         the test hack that forced constant realloc if asserts are
4023         disabled, so we can profile sanely. Sprinkle in some
4024         _DBUS_UNLIKELY() which are probably pointless, but before I
4025         noticed the real performance problem I put them in.
4026         (_dbus_string_validate_utf8): micro-optimize this thing a little
4027         bit, though callgrind says it didn't help; then special-case
4028         ascii, which did help a lot; then be sure we detect nul bytes as
4029         invalid, which is a bugfix.
4030         (align_length_then_lengthen): add some more _DBUS_UNLIKELY
4031         superstition; use memset to nul the padding instead of a manual
4032         loop.
4033         (_dbus_string_get_length): inline this as a
4034         macro; it showed up in the profile because it's used for loop
4035         tests and so forth
4036
4037 2004-11-10  Colin Walters  <walters@verbum.org>
4038
4039         * dbus/dbus-spawn.c (check_babysit_events): Handle EINTR,
4040         for extra paranoia.
4041
4042 2004-11-09  Colin Walters  <walters@verbum.org>
4043
4044         * dbus/dbus-string.c (_dbus_string_get_length): New
4045         function, writes DBusString to C buffer.
4046
4047         * dbus/dbus-string.h: Prototype it.
4048
4049         * dbus/dbus-message.c (dbus_message_type_to_string): New
4050         function, converts message type into C string.
4051
4052         * dbus/dbus-message.h: Prototype it.
4053
4054         * bus/selinux.c (bus_selinux_check): Take source pid,
4055         target pid, and audit data.  Pass audit data to
4056         avc_has_perm.
4057         (log_audit_callback): New function, appends extra
4058         audit information.
4059         (bus_selinux_allows_acquire_service): Also take
4060         service name, add it to audit data.
4061         (bus_selinux_allows_send): Also take message
4062         type, interface, method member, error name,
4063         and destination, and add them to audit data.
4064         (log_cb): Initialize func_audit.
4065         
4066         * bus/selinux.h (bus_selinux_allows_acquire_service)
4067         (bus_selinux_allows_send): Update prototypes 
4068
4069         * bus/services.c (bus_registry_acquire_service): Pass
4070         service name to bus_selinux_allows_acquire_service.
4071
4072         * bus/bus.c (bus_context_check_security_policy): Pass
4073         additional audit data.  Move assignment of dest
4074         to its own line.
4075
4076 2004-11-07  Colin Walters  <walters@verbum.org>
4077
4078         * dbus/dbus-transport-unix.c (do_authentication): Always
4079         initialize auth_completed.
4080         
4081 2004-11-07  Colin Walters  <walters@verbum.org>
4082
4083         * bus/bus.c (load_config): Break into three
4084         separate functions: process_config_first_time_only,
4085         process_config_every_time, and process_config_postinit.
4086         (process_config_every_time): Move call of
4087         bus_registry_set_service_context_table into
4088         process_config_postinit.
4089         (process_config_postinit): New function, does
4090         any processing that needs to happen late
4091         in initialization (and also on reload).
4092         (bus_context_new): Instead of calling load_config,
4093         open config parser here and call process_config_first_time_only
4094         and process_config_every_time directly.  Later, after
4095         we have forked but before changing UID,
4096         invoke bus_selinux_full_init, and then call
4097         process_config_postinit.
4098         (bus_context_reload_config): As in bus_context_new,
4099         load parse file inside here, and call process_config_every_time
4100         and process_config_postinit.
4101
4102         * bus/services.h, bus/services.c
4103         (bus_registry_set_service_context_table): Rename
4104         from bus_registry_set_sid_table.  Take string hash from config
4105         parser, and convert them here into SIDs.
4106
4107         * bus/config-parser.c (struct BusConfigParser): Have
4108         config parser only store a mapping of service->context
4109         string.
4110         (merge_service_context_hash): New function.
4111         (merge_included): Merge context string hashes instead
4112         of using bus_selinux_id_table_union.
4113         (bus_config_parser_new): Don't use bus_selinux_id_table_new;
4114         simply create a new string hash.
4115         (bus_config_parser_unref): Unref it.
4116         (start_selinux_child): Simply insert strings into hash,
4117         don't call bus_selinux_id_table_copy_over.
4118
4119         * bus/selinux.h, bus/selinux.c (bus_selinux_id_table_union)
4120         (bus_selinux_id_table_copy_over): Delete.
4121
4122 2004-11-03  Colin Walters  <walters@verbum.org>
4123
4124         * bus/selinux.c (bus_selinux_pre_init): Kill some unused
4125         variables.
4126         
4127 2004-11-03  Colin Walters  <walters@verbum.org>
4128
4129         * bus/test-main.c (test_pre_hook): Fix test logic,
4130         thanks Joerg Barfurth <Joerg.Barfurth@Sun.COM>.
4131
4132 2004-11-02  Colin Walters  <walters@redhat.com>
4133
4134         * bus/selinux.c (bus_selinux_init): Split into two functions,
4135         bus_selinux_pre_init and bus_selinux_post_init.
4136         (bus_selinux_pre_init): Just determine whether SELinux is
4137         enabled.
4138         (bus_selinux_post_init): Do everything else.
4139
4140         * bus/main.c (main): Call bus_selinux_pre_init before parsing
4141         config file, and bus_selinux_post_init after.  This ensures that
4142         we don't lose the policyreload notification thread that
4143         bus_selinux_init created before forking previously.
4144         
4145         * bus/test-main.c (test_pre_hook): Update for split.
4146
4147 2004-10-31  Owen Fraser-Green  <owen@discobabe.net>
4148
4149         Patch from Johan Fischer <linux@fischaz.com>
4150         
4151         * mono/doc/Makefile.am (install-data-local): Added directory
4152         install for DESTDIR
4153
4154 2004-10-29  Colin Walters  <walters@redhat.com>
4155
4156         * dbus/dbus-sysdeps.h (_dbus_become_daemon): Also take
4157         parameter for fd to write pid to.       
4158
4159         * dbus/dbus-sysdeps.c (_dbus_become_daemon): Implement it.
4160         
4161         * bus/bus.c (bus_context_new): Pass print_pid_fd
4162         to _dbus_become_daemon (bug #1720)
4163
4164 2004-10-29  Colin Walters  <walters@redhat.com>
4165
4166         Patch from Ed Catmur <ed@catmur.co.uk>
4167
4168         * mono/doc/Makefile.am (install-data-local): Handle
4169         DESTDIR.
4170
4171 2004-10-29  Colin Walters  <walters@redhat.com>
4172
4173         * bus/.cvsignore, qt/.cvsignore: Update.
4174
4175 2004-10-29  Colin Walters  <walters@redhat.com>
4176
4177         Patch from Kristof Vansant <de_lupus@pandora.be>
4178
4179         * configure.in: Detect Slackware.
4180         * bus/Makefile.am (SCRIPT_IN_FILES): Add rc.messagebus.in.
4181         * bus/rc.messagebus.in: New file.
4182
4183 2004-10-29  Colin Walters  <walters@redhat.com>
4184
4185         * tools/dbus-monitor.c (filter_func): Return
4186         DBUS_HANDLER_RESULT_HANDLED in filter function
4187         for now.  See:
4188         http://freedesktop.org/pipermail/dbus/2004-August/001433.html
4189
4190 2004-10-29  Colin Walters  <walters@redhat.com>
4191
4192         Patch from Matthew Rickard <mjricka@epoch.ncsc.mil>
4193
4194         * bus/services.c (bus_registry_acquire_service): 
4195         Correctly retrieve service name from DBusString
4196         for printing.
4197
4198 2004-10-29  Colin Walters  <walters@redhat.com>
4199
4200         * dbus/dbus-glib.h: Update documentation to not
4201         refer to internal APIs.
4202
4203 2004-10-27  Joe Shaw  <joeshaw@novell.com>
4204
4205         * mono/Arguments.cs (GetDBusTypeConstructor):
4206         type.UnderlyingSystemType will return "System.Byte" if you do it
4207         on "byte[]", which is not what we want.  So check the type.IsArray
4208         property and use System.Array instead.
4209
4210 2004-10-25  John (J5) Palmieri  <johnp@redhat.com>
4211
4212         * dbus/dbus-sysdeps.c (fill_user_info): On errors do not free
4213         the DBusUserInfo structure since this is passed into the function.
4214         This would cause a double free when the function that allocated
4215         the structure would try to free it when an error occured.
4216
4217         * (bus/session.conf.in, bus/Makefile.am, dbus/configure.in):
4218         use /usr/share/dbus-1/services instead of /usr/lib/dbus-1.0/services
4219         for service activation to avoid 32bit/64bit parallel install issues
4220
4221 2004-10-21  Colin Walters  <walters@verbum.org>
4222
4223         * AUTHORS: Fix my email address, the @gnu.org one
4224         has been bouncing for some time.  Also add J5.
4225         
4226 2004-10-21  Colin Walters  <walters@verbum.org>
4227
4228         * dbus/dbus-transport-unix.c (do_authentication): Return
4229         authentication status to callers.
4230         (unix_handle_watch): If we completed authentication this round,
4231         don't do another read.  Instead wait until the next iteration,
4232         after we've read any pending data in the auth buffer.
4233         (unix_do_iteration): Ditto.
4234         (unix_handle_watch): Updated for new do_authentication prototype.
4235
4236 2004-10-18  Colin Walters  <walters@verbum.org>
4237
4238         * bus/selinux.c (bus_selinux_enabled): Handle
4239         --disable-selinux case.
4240         
4241 2004-10-18  Colin Walters  <walters@verbum.org>
4242
4243         * bus/selinux.h: Add bus_selinux_enabled.
4244         
4245         * bus/selinux.c (bus_selinux_enabled): Implement it.
4246         
4247         * bus/config-parser.c (struct include): Add
4248         if_selinux_enabled member.
4249         (start_busconfig_child): Parse if_selinux_enabled
4250         attribute for include.
4251         (bus_config_parser_content): Handle it.
4252
4253         * bus/session.conf.in, bus/system.conf.in: Add
4254         inclusion of context mapping to default config files;
4255         conditional on SELinux being enabled.
4256         
4257         * doc/busconfig.dtd: Add to if_selinux_enabled to default DTD.
4258         
4259         * test/data/invalid-config-files/badselinux-1.conf, 
4260         test/data/invalid-config-files/badselinux-2.conf:
4261         Test files for bad syntax.
4262         
4263 2004-10-17  Colin Walters  <walters@verbum.org>
4264
4265         * dbus/dbus-memory.c (_dbus_initialize_malloc_debug, check_guards)
4266         (dbus_malloc, dbus_malloc0, dbus_realloc): Fix up printf
4267         format specifier mismatches.
4268
4269 2004-10-07  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4270
4271         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): fix an incorrect
4272         format string.
4273
4274         * glib/dbus-dbus-gmain.c (dbus_g_bus_get): do not mangle NULL
4275         pointer (bug #1540, Leonardo Boiko).
4276
4277 2004-09-28  Jon Trowbridge  <trow@ximian.com>
4278
4279         * mono/BusDriver.cs: Changed BusDriver struct to remove
4280         the ServiceCreated and ServiceDeleted events and replace them
4281         with the new ServiceOwnerChanged event.
4282
4283         * mono/example/BusListener.cs: Added a new example program,
4284         which listens for and reports any ServiceOwnerChanged events
4285         on the bus driver.
4286
4287         * mono/example/Makefile.am (DESTDIR): Build changes for the
4288         new BusListener.cs example.
4289
4290 2004-09-27  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4291
4292         * bus/signals.c (bus_match_rule_parse): validate the components of
4293         match rules (bug #1439).
4294
4295         * dbus/dbus-bus.c (dbus_bus_add_match): add a missing OOM test.
4296
4297 2004-09-24  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4298
4299         * doc/dbus-specification.xml: document ServiceOwnerChanged
4300         signal.
4301         
4302         * bus/driver.c, bus/driver.h, bus/services.c: Use
4303         ServiceOwnerChanged signal instead of ServiceCreated and
4304         ServiceDeleted.
4305         
4306         * bus/dispatch.c: update testcase for the new signal.
4307
4308 2004-09-20  Jon Trowbridge  <trow@ximian.com>
4309
4310         Patch from Nat Friedman <nat@novell.com>
4311
4312         * mono/Makefile.am: A number of small build fixes to allow "make
4313         distcheck" to succeed.
4314
4315         * mono/example/Makefile.am: "make distcheck" fixes.
4316
4317         * mono/AssemblyInfo.cs.in: When signing the assembly, look for the
4318         key in @srcdir@.
4319
4320         * test/Makefile.am: "make distcheck" fixes.
4321
4322 2004-09-17  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4323
4324         * dbus/dbus-sysdeps.c (_dbus_user_at_console): fix memleak in OOM.
4325
4326         * doc/busconfig.dtd: update the DTD for the at_console attribute.
4327
4328         * bus/driver.c (bus_driver_handle_hello): correctly handle Hello
4329         messages after the first one (bug #1389).
4330         
4331         * bus/dispatch.c (check_double_hello_message): add a test case for
4332         the double hello message bug.
4333         (check_existent_service_activation): fix check of spawning error.
4334         
4335 2004-09-16  David Zeuthen  <david@fubar.dk>
4336
4337         * python/dbus_bindings.pyx.in: Add support for int64 and uint64
4338
4339 2004-09-12  David Zeuthen  <david@fubar.dk>
4340
4341         Patch from Kay Sievers <kay.sievers@vrfy.org>
4342
4343         * bus/bus.c (bus_context_new):
4344         * bus/bus.h:
4345         * bus/main.c (usage)
4346         (main):
4347         Add commandline option --nofork to override configuration file
4348         setting.
4349
4350 2004-09-09  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4351
4352         * dbus/dbus-*.h: remove the ; after DBUS_(BEGIN|END)_DECLS. Some C
4353         compilers don't like it (bug #974).
4354
4355 2004-09-04  Harald Fernengel  <harry@kdevelop.org>
4356
4357         * qt/connection.*: Applied patch by Jérôme Lodewyck
4358         <lodewyck@clipper.ens.fr> to integrate an existing
4359         connection into the Qt eventloop
4360
4361 2004-08-30  Jon Trowbridge  <trow@ximian.com>
4362
4363         * mono/BusDriver.cs: Added.  This is a class for interacting with
4364         the org.freedesktop.DBus service.
4365
4366         * mono/Message.cs: Added a mechanism to expose the message that is
4367         currently being dispatched via the static Message.Current
4368         property.  Added Message.Sender and Message.Destination
4369         properties.
4370
4371         * mono/Handler.cs: Expose the dispatched message via
4372         Message.Current when handling method calls.
4373
4374         * mono/Service.cs: Expose the dispatched message via
4375         Message.Current when handling signal emissions.
4376         
4377         * mono/Connection.cs: Bind dbus_bus_get_base_service via the
4378         Connection.BaseService property.
4379
4380 2004-08-28  Havoc Pennington  <hp@redhat.com>
4381
4382         * dbus/dbus-userdb.c (_dbus_is_console_user): remove unused variable
4383
4384         More fixes from Steve Grubb
4385         
4386         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): fix fd leak
4387         (_dbus_listen_tcp_socket): fix fd leak
4388
4389         * dbus/dbus-spawn.c (read_pid, read_ints): move the "again:" for
4390         EINTR to a bit lower in the code
4391
4392 2004-08-26  Jon Trowbridge  <trow@ximian.com>
4393
4394         * bus/driver.c (bus_driver_handle_service_exists): Respond with
4395         TRUE if we are inquiring about the existence of the built-in
4396         org.freedesktop.DBus service.
4397
4398 2004-08-25  John Palmieri  <johnp@redhat.com>
4399         * bus/config-parser.c:
4400         (struct PolicyType): Add POLICY_CONSOLE
4401         (struct Element.d.policy): s/gid_or_uid/gid_uid_or_at_console
4402         (start_busconfig_child): Sets up console element when
4403         <policy at_console=""> is encountered in a policy file
4404         (append_rule_from_element): Convert console elements to console
4405         rules.
4406
4407         * bus/policy.c: 
4408         (bus_policy_create_client_policy): Add console rules to the client
4409         policy based on if the client is at the console
4410         (bus_policy_append_console_rule): New function for adding a
4411         console rule to a policy
4412         (bus_policy_merge): Handle console rule merging
4413
4414         * dbus/dbus-sysdeps.h: Added the DBUS_CONSOLE_DIR constant
4415         where we check for console user files
4416         
4417         * dbus/dbus-sysdeps.c:
4418         (_dbus_file_exists): New function which checks if the given
4419         file exists
4420         (_dbus_user_at_console): New function which does the system
4421         specific process of checking if the user is at the console
4422
4423         * dbus/dbus-userdb.c:
4424         (_dbus_is_console_user): New function converts a UID to user name
4425         and then calls the system specific _dbus_user_at_console to 
4426         see if the user is at the console and therefor a console user
4427
4428 2004-08-25  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4429
4430         * bus/config-parser.c (set_limit):
4431         * bus/dbus-daemon-1.1.in:
4432         * test/data/valid-config-files/many-rules.conf: set the
4433         max_match_rules_per_connection limt from the config file. 
4434
4435         * doc/busconfig.dtd: update the DTD.
4436
4437         * bus/driver.c: remove some unused variables.
4438
4439 2004-08-24  Mikael Hallendal  <micke@imendio.com>
4440
4441         * dbus/dbus-glib-lowlevel.h: Removed dbus_bus_get_with_g_main since 
4442         it's been replaced by dbus_g_bus_get
4443
4444 2004-08-23  Colin Walters  <walters@redhat.com>
4445
4446         Updated SELinux support from Matthew Rickard <mjricka@epoch.ncsc.mil>
4447
4448         * bus/selinux.h: Prototype bus_selinux_get_policy_root.
4449
4450         * bus/selinux.c: Create a thread for policy reload notification.
4451         (bus_selinux_get_policy_root): Implement.
4452
4453         * bus/config-parser.c (start_busconfig_child)
4454         (bus_config_parser_content): Support SELinux-root relative
4455         inclusion.
4456
4457         * configure.in <HAVE_SELINUX>: Add -lpthread.
4458         
4459         * bus/test-main.c (test_pre_hook, test_post_hook): New.
4460         (test_post_hook): Move memory checking into here.
4461         (test_pre_hook, test_post_hook): Move SELinux checks in
4462         here, but conditional on a DBUS_TEST_SELINUX environment
4463         variable.  Unfortunately we can't run the SELinux checks
4464         as a normal user, since they won't have any permissions
4465         for /selinux.  So this will have to be tested manually
4466         for now, until we have virtualization for most of
4467         libselinux.
4468         
4469 2004-08-23  Havoc Pennington  <hp@redhat.com>
4470
4471         * dbus/dbus-sysdeps.c (_dbus_change_identity): add setgroups() to
4472         drop supplementary groups, suggested by Steve Grubb
4473
4474 2004-08-20  Colin Walters  <walters@redhat.com>
4475
4476         * bus/config-parser.c (start_busconfig_child): Remove some unused
4477         variables.
4478         
4479         * bus/selinux.c (bus_selinux_id_table_insert): Avoid compiler
4480         warning.
4481
4482 2004-08-17  Joe Shaw  <joeshaw@novell.com>
4483
4484         * configure.in: If --enable-mono is passed in, if we can't find
4485         mono error out.
4486
4487         * mono/Makefile.am: Use /gacutil to install assemblies into the
4488         GAC and not /root.
4489
4490 2004-08-12  Havoc Pennington  <hp@redhat.com>
4491
4492         * NEWS: update for 0.22
4493
4494         * configure.in: release 0.22
4495
4496 2004-08-11  Colin Walters  <walters@redhat.com>
4497
4498         * tools/dbus-send.c (main, usage): Add --reply-timeout
4499         argument.
4500
4501 2004-08-10  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4502
4503         * bus/bus.c (process_config_first_time_only): get rid of an unused
4504         DBusError that was causing a memoy leak (bug #989).
4505
4506         * dbus/dbus-keyring.c, dbus/dbus-message.c:
4507         fix compilation on Solaris/Forte C (bug #974)
4508
4509         * bus/main.c (main): plug two minuscule memleaks.
4510
4511 2004-08-10  Havoc Pennington  <hp@redhat.com>
4512
4513         * doc/dbus-tutorial.xml: add some more info on GLib bindings
4514
4515 2004-08-09  Havoc Pennington  <hp@redhat.com>
4516
4517         * COPYING: switch to Academic Free License version 2.1 instead of
4518         2.0, to resolve complaints about patent termination clause.
4519
4520 2004-07-31  John (J5) Palmieri  <johnp@redhat.com>
4521
4522         * README: added documentation for the --enable-python 
4523         configure switch.
4524
4525 2004-07-31  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4526
4527         * bus/config-parser.c (bus_config_parser_new): fix an invalid
4528         _unref in the SELinux support.
4529
4530         * doc/busconfig.dtd: update DTD for SELinux support.
4531
4532         * bus/config-loader-libxml.c: fix error handler and parser
4533         initialisation/cleanup. OOM test now works with libxml2 HEAD.
4534
4535         * configure.in: remove the warning about libxml2.
4536
4537         * dbus/dbus-bus.c: silence doxygen warning.
4538
4539 2004-07-31  Colin Walters  <walters@redhat.com>
4540
4541         * configure.in: Move #error in SELinux check to its own line.
4542
4543 2004-07-31  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4544
4545         * dbus/dbus-internals.h (_DBUS_SET_OOM):
4546         * bus/utils.h (BUS_SET_OOM): use dbus_error_set_const instead of
4547         dbus_error_set.
4548
4549         * bus/dispatch.c (check_send_exit_to_service): fix the test case,
4550         broken by the change in the _SET_OOM macros.
4551
4552 2004-07-31  Colin Walters  <walters@redhat.com>
4553
4554         * bus/selinux.c <HAVE_SELINUX>: Include utils.h to get
4555         BUS_SET_OOM.
4556
4557 2004-07-31  Colin Walters  <walters@redhat.com>
4558
4559         * configure.in: Use AC_TRY_COMPILE instead of AC_EGREP_HEADER
4560         to correctly detect DBUS__ACQUIRE_SVC.  Also add an
4561         AC_MSG_CHECKING.
4562
4563 2004-07-24  Havoc Pennington  <hp@redhat.com>
4564
4565         SELinux support from Matthew Rickard <mjricka@epoch.ncsc.mil>
4566
4567         * bus/selinux.c, bus/selinux.h: new file encapsulating selinux
4568         functionality
4569
4570         * configure.in: add --enable-selinux
4571         
4572         * bus/policy.c (bus_policy_merge): add FIXME to a comment
4573
4574         * bus/main.c (main): initialize and shut down selinux
4575
4576         * bus/connection.c: store SELinux ID on each connection, to avoid 
4577         repeated getting of the string context and converting it into 
4578         an ID
4579
4580         * bus/bus.c (bus_context_get_policy): new accessor, though it
4581         isn't used
4582         (bus_context_check_security_policy): check whether the security
4583         context of sender connection can send to the security context of
4584         recipient connection
4585
4586         * bus/config-parser.c: add parsing for <selinux> and <associate>
4587         
4588         * dbus/dbus-transport.c (_dbus_transport_get_unix_fd): to
4589         implement dbus_connection_get_unix_fd()
4590
4591         * dbus/dbus-connection.c (dbus_connection_get_unix_fd): new
4592         function, used by the selinux stuff
4593         
4594 2004-07-29  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4595
4596         * bus/config-loader-libxml.c: complete the implementation of
4597         libxml backend for config file loader. Doesn't work with full OOM
4598         test yet. 
4599         
4600         * configure.in: change error when selecting libxml into a warning.
4601         
4602         * test/data/invalid-config-files: add two non-well-formed XML
4603         files. 
4604         
4605         * glib/Makefile.am: libdbus_gtool always uses expat, not libxml.
4606         
4607         * dbus/dbus-transport-unix.c (unix_handle_watch): do not
4608         disconnect in case of DBUS_WATCH_HANGUP, several do_reading() may
4609         be necessary to read all the buffer. (bug #894)
4610
4611         * bus/activation.c (bus_activation_activate_service): fix a
4612         potential assertion failure (bug #896). Small optimization in the
4613         case of auto-activation messages.
4614
4615         * dbus/dbus-message.c (verify_test_message, _dbus_message_test):
4616         add test case for byte-through-vararg bug (#901). patch by Kimmo
4617         Hämäläinen. 
4618
4619 2004-07-28  Anders Carlsson  <andersca@gnome.org>
4620
4621         * python/dbus.py:
4622         * python/dbus_bindings.pyx.in:
4623         Add dbus.init_gthreads (), allow emit_signal to pass
4624         arguments to the signal.
4625         
4626 2004-07-24  Havoc Pennington  <hp@redhat.com>
4627
4628         * AUTHORS: add some people, not really comprehensively, let me
4629         know if I missed you
4630
4631 2004-07-24  Havoc Pennington  <hp@redhat.com>
4632
4633         * Makefile.am (DIST_SUBDIRS): add DIST_SUBDIRS, problem solved by
4634         Owen
4635
4636         * test/Makefile.am (DIST_SUBDIRS): here also
4637
4638 2004-07-22  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4639
4640         * dbus/dbus-sysdeps.c (fill_user_info): fix inexistent label name,
4641         breaking build on Solaris, reported by Farhad Saberi on the ML.
4642
4643         * dbus/dbus-message.c (dbus_message_append_args_valist): fix the
4644         va_arg invocation to account for integer promotion in the case of
4645         DBUS_TYPE_BYTE (unsigned char is promoted to int). (bug #901)
4646
4647         * bus/services.c (bus_service_remove_owner): fix bug #902, use
4648         _dbus_list_get_first_link, not _dbus_list_get_first.
4649
4650         * dbus/dbus-bus.c (dbus_bus_service_exists): plug a memory leak.
4651
4652         * dbus/dbus-object-tree.c (free_subtree_recurse): always null
4653         handler functions so that the asserts in _dbus_object_subtree_unref
4654         do not fail.
4655
4656         * dbus/dbus-transport-unix.c (do_reading):
4657         _dbus_transport_queue_messages return value is of type
4658         dbus_bool_t, not DBusDispatchStatus.
4659         
4660 2004-07-19  David Zeuthen  <david@fubar.dk>
4661
4662         * dbus/dbus-protocol.h: Add DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN
4663
4664         * bus/dispatch.c:
4665         (check_get_connection_unix_user): Debug says GetProperty; but the
4666         method is called GetConnectionUnixUser
4667         (check_get_connection_unix_process_id): New function
4668         (bus_dispatch_test): Actually call check_get_connection_unix_user();
4669         also call check_get_connection_unix_process_id()
4670         
4671         * bus/driver.c:
4672         (bus_driver_handle_get_connection_unix_process_id): New function,
4673         handles GetConnectionUnixProcessID on the org.freedesktop.DBus
4674         interface
4675         
4676         * dbus/dbus-auth.c:
4677         (handle_server_data_external_mech): Set pid from the credentials
4678         obtained from the socket
4679         
4680         * dbus/dbus-connection.c:
4681         (dbus_connection_get_unix_process_id): New function
4682         
4683         * dbus/dbus-connection.h: 
4684         Add prototype for dbus_connection_get_unix_process_id
4685         
4686         * dbus/dbus-transport.c:
4687         (_dbus_transport_get_unix_process_id): New function
4688         
4689         * dbus/dbus-transport.h:
4690         Add prototype for _dbus_transport_get_unix_process_id
4691         
4692 2004-07-19  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4693
4694         * dbus/dbus-message.c: Message counter fix, patch by Christian
4695         Hammond <chipx86@gnupdate.org>
4696
4697 2004-07-18  Seth Nickell  <seth@gnome.org>
4698
4699         * python/dbus.py:
4700         * python/dbus_bindings.pyx.in:
4701         * python/tests/test-client.py:
4702
4703         Add dbus.ByteArray and dbus_bindings.ByteArray
4704         types so that byte streams can be passed back.
4705
4706         Give jdahlin the heaps of credit that are so
4707         rightfully his.
4708         
4709 2004-07-12  Seth Nickell  <seth@gnome.org>
4710
4711         * python/dbus.py:
4712
4713         Add message argument to the default object_method_handler
4714         function.
4715         
4716         * python/dbus_bindings.pyx.in:
4717
4718         Automatically return NIL when passed an empty list
4719         (we can't pass back a list since lists are typed
4720         and we don't have any idea what type the the client
4721         intended the list to be... :-( )
4722         
4723 2004-07-10  Seth Nickell  <seth@gnome.org>
4724
4725         * python/examples/Makefile.am:
4726
4727         Fix distcheck breakage caused by new examples.
4728
4729 2004-07-10  Seth Nickell  <seth@gnome.org>
4730
4731         * python/dbus.py:
4732
4733         Add "message" argument to service-side dbus.Object
4734         methods. This will break existing services written
4735         using the python bindings, but will allow extraction
4736         of all the message information (e.g. who its from).
4737
4738         Add improved "object oriented" signal handling/emission.
4739         
4740         * python/examples/example-service.py:
4741
4742         Nix this example.
4743         
4744         * python/examples/example-signal-emitter.py:
4745         * python/examples/example-signal-recipient.py:
4746
4747         Two new examples that show how to emit and receive
4748         signals using the new APIs.
4749         
4750         * python/examples/example-signals.py:
4751         * python/examples/gconf-proxy-service.py:
4752         * python/examples/gconf-proxy-service2.py:
4753
4754         Add "message" argument to service methods.
4755
4756 2004-06-28  Kay Sievers <kay.sievers@vrfy.org>
4757
4758         * bus/driver.c (bus_driver_handle_get_connection_unix_user)
4759         * dbus/bus.c (dbus_bus_get_unix_user)
4760         * doc/dbus-specification.xml: implement GetConnectionUnixUser
4761         method of org.freedesktop.DBus interface.
4762
4763         * bus/dispatch.c: test case
4764
4765 2004-06-23  John (J5) Palmieri  <johnp@redhat.com>
4766
4767         * python/Makefile.am: switched include directory from glib/ to dbus/
4768         since dbus-glib.h moved
4769  
4770 2004-06-22  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4771
4772         * configure.in: prevent building the gcj stuff and libxml loader
4773         since they are broken.
4774
4775 2004-06-20  Havoc Pennington  <hp@redhat.com>
4776
4777         * dbus/dbus-glib-error-enum.h: autogenerate the GError enum 
4778         codes from the dbus error names
4779         
4780         * glib/dbus-glib.h: move to subdir dbus/ since it's included 
4781         as dbus/dbus-glib.h and that breakage is now visible due to 
4782         including dbus/dbus-glib.h in dbus-glib-lowlevel.h
4783         
4784         * glib/dbus-glib.h: s/gproxy/g_proxy/
4785
4786         * dbus/dbus-shared.h: new header to hold stuff shared with
4787         binding APIs
4788         
4789         * dbus/dbus-protocol.h (DBUS_ERROR_*): move errors here rather
4790         than dbus-errors.h
4791
4792         * glib/dbus-glib.h (dbus_set_g_error): move to
4793         dbus-glib-lowlevel.h
4794
4795         * glib/dbus-glib.h: remove dbus/dbus.h from here; change a bunch
4796         of stuff to enable this
4797
4798         * dbus/dbus-glib-lowlevel.h: put dbus/dbus.h here
4799
4800         * a bunch of other changes with the same basic "separate glib 
4801         bindings from dbus.h" theme
4802         
4803 2004-06-10  Owen Fraser-Green  <owen@discobabe.net>
4804
4805         * dbus-sharp.pc.in: Removed glib-sharp inclusion in Libs.
4806
4807         * python/examples/Makefile.am: Fixed typo in EXTRA_DIST.
4808
4809 2004-06-09  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4810
4811         * bus/driver.c, dbus/dbus-bus.c: use BOOLEAN instead of UINT32 for
4812         the reply value of the ServiceExists message.
4813
4814 2004-06-07  John (J5) Palmieri  <johnp@redhat.com>
4815
4816         * python/dbus_bindings.pyx.in: No longer need to parse path
4817         elements and pass them as arrays of strings.  The C API now
4818         accepts plain path strings.
4819         (_build_parsed_path): removed 
4820
4821 2004-06-07  Havoc Pennington  <hp@redhat.com>
4822
4823         * doc/TODO: remove auto-activation item since it's done; sort
4824         items by importance/milestone
4825
4826 2004-06-07  Havoc Pennington  <hp@redhat.com>
4827
4828         * dbus/dbus-message-builder.c (_dbus_message_data_load): append
4829         random signature when using REQUIRED_FIELDS (this hack won't work
4830         in the long term)
4831
4832         * dbus/dbus-message.c: change the signature to be a header field,
4833         instead of message->signature special-case string. Incremental
4834         step forward. Then we can fix up code to send the signature in the
4835         message, then fix up code to validate said signature, then fix up
4836         code to not put the typecodes inline, etc.
4837         (load_one_message): don't make up the signature after the fact
4838         (decode_header_data): require signature field for the known
4839         message types
4840
4841         * dbus/dbus-marshal.c (_dbus_marshal_string_len): new
4842
4843         * dbus/dbus-protocol.h: add DBUS_HEADER_FIELD_SIGNATURE
4844
4845 2004-06-07  Owen Fraser-Green  <owen@discobabe.net>
4846
4847         * mono/DBusType/ObjectPath.cs: Renamed PathName argument to Path
4848
4849         * mono/Handler.cs: Updated to follow new path argument for
4850         (un-)registering objects.
4851
4852         * mono/example/Makefile.am:
4853         * mono/Makefile.am:
4854         * configure.in: Bumped required version for mono and use new -pkg
4855         syntax for deps
4856
4857 2004-06-05  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4858
4859         * dbus/dbus-connection.h, dbus/dbus-connection.c: have object path
4860         registration functions take the path argument as char* instead of
4861         char**.
4862
4863         * dbus/dbus-marshal.h, dbus/dbus-marshal.c (_dbus_decompose_path):
4864         split off the path decompostion part of
4865         _dbus_demarshal_object_path. Some misc. fixes to silence compiler
4866         warnings. 
4867
4868         * glib/dbus-gobject.c, test/test-service.c: update accordingly.
4869         
4870 2004-06-02  Kristian Høgsberg  <krh@redhat.com>
4871  
4872         * dbus/dbus-auth.c: Rewrite auth protocol handling to use a state
4873         machine approach.  A state is implemented as a function that
4874         handles incoming events as specified for that state.
4875         
4876         * doc/dbus-specification.xml: Update auth protocol state machine
4877         specification to match implementation.  Remove some leftover
4878         base64 examples.
4879
4880 2004-06-02  Kristian Høgsberg  <krh@redhat.com>
4881
4882         * glib/dbus-gproxy.c, glib/dbus-gmain.c, dbus/dbus-string.c,
4883         dbus/dbus-object-tree.c, dbus/dbus-message.c: add comments to
4884         quiet doxygen.
4885
4886         * Doxyfile.in: remove deprecated options.
4887
4888         * dbus/dbus-message-handler.c, dbus/dbus-message-handler.h,
4889         glib/test-thread.h, glib/test-thread-client.c,
4890         glib/test-thread-server.c, glib/test-profile.c,
4891         glib/test-dbus-glib.c: remove these unused files.
4892
4893 2004-06-01  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4894
4895         * dbus/dbus-object-tree.c
4896         (_dbus_object_tree_dispatch_and_unlock): fix dispatch for
4897         non-fallback handlers (bug #684).
4898         (_dbus_object_subtree_new): initialize invoke_as_fallback field.
4899         (find_subtree_recurse): report wether the returned subtree is an
4900         exact match or a "fallback" match higher up in the tree.
4901         (object_tree_test_iteration): update test case.
4902
4903 2004-06-01  Seth Nickell  <seth@gnome.org>
4904
4905         * python/dbus_bindings.pyx.in:
4906         * python/tests/test-client.py:
4907
4908         Round off basic type support. Add dicts (yay!), and 
4909         remaining array types.
4910
4911         Make MessageIter more general so it works for dicts too.
4912
4913         Mark all loop variables as C integers.
4914         
4915 2004-05-31  Havoc Pennington  <hp@redhat.com>
4916
4917         * glib/dbus-gidl.c (method_info_add_arg): keep args sorted with
4918         "in" before "out"
4919
4920         * glib/dbus-gobject.c (dbus_type_to_string): move to dbus-gutils.c
4921
4922         * glib/dbus-glib-tool.c (main): set up to have a --self-test
4923         option that runs the tests, and start filling in some code
4924         including for starters just dumping the interfaces to stdout
4925
4926         * glib/Makefile.am (INCLUDES): define DBUS_LOCALEDIR
4927
4928         * test/data/valid-introspection-files/lots-of-types.xml: test of
4929         an example introspection file
4930
4931         * glib/dbus-gparser.c (parser_check_doctype): doctype should be
4932         "node" (I think...)
4933
4934 2004-05-31  Seth Nickell  <seth@gnome.org>
4935
4936         * python/dbus_bindings.pyx.in:
4937         * python/tests/test-client.py:
4938
4939         Test Suite: 1
4940         Python Bindings: 0
4941
4942         Fix string array memory trashing bug... oops...
4943
4944 2004-05-30  Seth Nickell  <seth@gnome.org>
4945
4946         * python/dbus.py:
4947
4948         Add a nicer-but-less-flexible alternate API for handling 
4949         calls to virtual objects in dbus.ObjectTree.
4950
4951         Screw up the argument order to the dbus.Object constructor
4952         for consistency with dbus.ObjectTree (and to make dbus_methods
4953         optional for future extension)
4954         
4955         * python/examples/Makefile.am:
4956         * python/examples/gconf-proxy-service.py:
4957         * python/examples/gconf-proxy-service2.py:
4958
4959         Alternate implementation of gconf-proxy-service using the
4960         nicer dbus.ObjectTree API.
4961         
4962         * python/examples/example-service.py:
4963         * python/tests/test-server.py
4964
4965         Reverse the argument order to deal with dbus.Object constructor
4966         changes.
4967         
4968 2004-05-30  Seth Nickell  <seth@gnome.org>
4969
4970         * python/examples/example-client.py:
4971         * python/examples/example-service.py:
4972
4973         Take it back. Lists seem to work but they're broken
4974         in the test suite. Make the base examples use
4975         lists (works fine).
4976
4977 2004-05-30  Seth Nickell  <seth@gnome.org>
4978
4979         * python/dbus_bindings.pyx.in:
4980         * python/tests/test-client.py:
4981
4982         Add some more tests and fix errors that crop up.
4983         Unfortunately, currently it seems like marshalling
4984         and unmarshalling of lists is completely broken :-(
4985
4986 2004-05-30  Seth Nickell  <seth@gnome.org>
4987
4988         * python/dbus_bindings.pyx.in:
4989
4990         Add support for ObjectPath type.
4991
4992         * python/dbus.py:
4993
4994         Refactor message handling code to a common function.
4995         
4996         * python/tests/test-client.py:
4997         * python/tests/test-server.py:
4998
4999         Add tests that check to make sure values of all types
5000         can be echoed from a service w/o mangling.
5001         
5002 2004-05-29  Seth Nickell  <seth@gnome.org>
5003
5004         * python/dbus.py:
5005
5006         Add ObjectTree class which allows implementation
5007         of trees of "virtual" objects. Basically the python
5008         wrapper for "register_fallback".
5009         
5010         * python/examples/Makefile.am
5011         * python/examples/gconf-proxy-client.py:
5012         * python/examples/gconf-proxy-service.py:
5013
5014         Implement a simple GConf proxy service that supports
5015         get/set on string and int GConf keys using the ObjectTree.
5016         
5017 2004-05-29  Seth Nickell  <seth@gnome.org>
5018
5019         * python/dbus.py:
5020         * python/examples/example-client.py:
5021         * python/examples/example-service.py:
5022         * python/examples/list-system-services.py:
5023
5024         Add SessionBus, SystemBus and ActivationBus classes
5025         so you don't need to know the special little BUS_TYPE
5026         flag.
5027         
5028 2004-05-29  Havoc Pennington  <hp@redhat.com>
5029
5030         * bus/config-parser.c (process_test_valid_subdir): temporarily
5031         stop testing config parser OOM handling, since expat has issues
5032         http://freedesktop.org/pipermail/dbus/2004-May/001153.html
5033
5034         * bus/dbus-daemon-1.1.in: change requested_reply to
5035         send_requested_reply/receive_requested_reply so we can send the
5036         replies, not just receive them.
5037
5038         * bus/config-parser.c: parse the new
5039         send_requested_reply/receive_requested_reply
5040
5041         * bus/policy.c (bus_client_policy_check_can_send): add
5042         requested_reply argument and use it
5043
5044         * bus/bus.c (bus_context_check_security_policy): pass through
5045         requested_reply status to message send check
5046
5047         * bus/system.conf.in: adapt to requested_reply change
5048         
5049 2004-05-28  Havoc Pennington  <hp@redhat.com>
5050
5051         * test/glib/test-service-glib.c (main): remove unused variable
5052
5053         * glib/dbus-gidl.c (base_info_ref): fix a silly compiler warning
5054
5055         * dbus/dbus-auth.h (enum): remove AUTHENTICATED_WITH_UNUSED_BYTES
5056         from the enum, no longer in use.
5057
5058         * dbus/dbus-sysdeps.h: include config.h so DBUS_VA_COPY actually
5059         works right.
5060
5061         * dbus/dbus-message.c: add various _dbus_return_val_if_fail for
5062         whether error_name passed in is a valid error name.
5063
5064 2004-05-28  John (J5) Palmieri  <johnp@redhat.com>
5065
5066         * dbus/dbus-message.c (dbus_message_get_args): Added support for
5067         OBJECT_PATH and OBJECT_PATH_ARRAY
5068
5069 2004-05-28  Seth Nickell  <seth@gnome.org>
5070
5071         * python/examples/Makefile.am:
5072
5073         Forget to add Makefile.am. Do not pass go.
5074
5075 2004-05-28  Michael Meeks  <michael@ximian.com>
5076
5077         * glib/dbus-gvalue.c (dbus_gvalue_marshal, dbus_gvalue_demarshal): 
5078         fix no int64 case.
5079
5080         * dbus/dbus-string.c (_dbus_string_parse_basic_type): impl.
5081
5082         * dbus/dbus-message.c (_dbus_message_iter_get_basic_type),
5083         (_dbus_message_iter_get_basic_type_array): impl.
5084         drastically simplify ~all relevant _get methods to use these.
5085         (_dbus_message_iter_append_basic_array),
5086         (dbus_message_iter_append_basic): impl
5087         drastically simplify ~all relevant _append methods to use these.
5088
5089         * dbus/dbus-message-builder.c (parse_basic_type) 
5090         (parse_basic_array, lookup_basic_type): impl.
5091         (_dbus_message_data_load): prune scads of duplicate /
5092         cut & paste coding.
5093
5094         * dbus/dbus-marshal.c (_dbus_demarshal_basic_type_array) 
5095         (_dbus_demarshal_basic_type): implement,
5096         (demarshal_and_validate_len/arg): beef up debug.
5097         (_dbus_marshal_basic_type, _dbus_marshal_basic_type_array): impl.
5098
5099 2004-05-27  Seth Nickell  <seth@gnome.org>
5100
5101         * configure.in:
5102         * python/Makefile.am:
5103
5104         Include the example python apps in the tarball.
5105         
5106         * python/examples/list-system-services.py
5107
5108         Add a python new example that fetches the list of services
5109         from the system bus.
5110         
5111 2004-05-27  Seth Nickell  <seth@gnome.org>
5112
5113         * python/dbus.py:
5114         * python/dbus_bindings.pyx.in:
5115
5116         Fix failure to notify that a signal was not handled,
5117         resulted in hung functions.
5118         
5119 2004-05-25  Colin Walters  <walters@redhat.com>
5120
5121         * tools/dbus-monitor.c (main): Monitor all types of messages.
5122
5123 2004-05-23  Owen Fraser-Green  <owen@discobabe.net>
5124
5125         * mono/Handler.cs, mono/Service.cs: Added UnregisterObject method
5126         which unregisters the object path and disposes the handler.
5127
5128 2004-05-23  Kristian Høgsberg  <krh@redhat.com>
5129  
5130         Patch from Timo Teräs <ext-timo.teras@nokia.com> (#614):
5131          
5132         * dbus/dbus-message.c (dbus_message_iter_get_args_valist): Swap
5133         operands to && so we call dbus_message_iter_next () for the last
5134         argument also.
5135
5136 2004-05-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5137
5138         * dbus/dbus-object-tree.c
5139         (_dbus_object_tree_list_registered_unlock, lookup_subtree): return
5140         children even if the requested path isn't registered.
5141         (object_tree_test_iteration): test object_tree_list_registered.
5142
5143         * configure.in: undefine HAVE_ABSTRACT_SOCKETS instead of defining
5144         it to 0.
5145         
5146 2004-05-20  Kristian Høgsberg  <krh@redhat.com>
5147
5148         * doc/TODO: Remove resolved items.
5149
5150         * bus/expirelist.h (struct BusExpireList): remove unused n_items
5151         field.
5152         
5153         * bus/connection.c (bus_connections_expect_reply): Enforce the
5154         per-connection limit on pending replies.
5155         
5156         Patch from Jon Trowbridge <trow@ximian.com>:
5157  
5158         * bus/main.c (setup_reload_pipe): Added.  Creates a pipe and sets
5159         up a watch that triggers a config reload when one end of the pipe
5160         becomes readable.
5161         (signal_handler): Instead of doing the config reload in our SIGHUP
5162         handler, just write to the reload pipe and let the associated
5163         watch handle the reload when control returns to the main loop.
5164  
5165         * bus/driver.c (bus_driver_handle_reload_config): Added.
5166         Implements a ReloadConfig method for requesting a configuration
5167         file reload via the bus driver.
5168  
5169 2004-05-19  Owen Fraser-Green  <owen@discobabe.net>
5170
5171         * HACKING: Updated release instructions concerning the wiki page.
5172
5173 2004-05-18  Kristian Høgsberg  <krh@redhat.com>
5174
5175         * dbus/dbus-auth.c (client_try_next_mechanism): Remove logic to
5176         filter against auth->allowed_mechs; we only add allowed mechs in
5177         record_mechanisms().
5178  
5179         * dbus/dbus-auth-script.c (_dbus_auth_script_run): Add an
5180         ALLOWED_MECHS to auth-script format so we can set the list of
5181         allowed mechanisms.
5182  
5183         * data/auth/client-out-of-mechanisms.auth-script: New test to
5184         check client disconnects when it is out of mechanisms to try.
5185  
5186         * dbus/dbus-auth.c (process_command): Remove check for lines
5187         longer that 1 MB; we only buffer up maximum 16 kB.
5188  
5189         * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
5190         dbus/dbus-auth-script.c, dbus/dbus-auth.c, dbus/dbus-auth.h:
5191         Remove auth state AUTHENTICATED_WITH_UNUSED_BYTES, instead always
5192         assume there might be unused bytes.
5193  
5194         * dbus/dbus-auth.c (_dbus_auth_do_work): Remove check for
5195         client-out-of-mechs, it is handled in process_reject(). Move check
5196         for max failures to send_rejected(), as it's a server-only thing.
5197
5198         * dbus/dbus-auth.c: Factor out protocol reply code into functions
5199         send_auth(), send_data(), send_rejected(), send_error(),
5200         send_ok(), send_begin() and send_cancel().
5201
5202 2004-05-17  Kristian Høgsberg  <krh@redhat.com>
5203
5204         Remove base64 encoding, replace with hex encoding. Original patch
5205         from trow@ximian.com, added error handling.
5206
5207         * dbus/dbus-string.c (_dbus_string_base64_encode)
5208         (_dbus_string_base64_decode): Remove.
5209         (_dbus_string_hex_decode): Add end_return argument so we can
5210         distinguish between OOM and invalid hex encoding.
5211         (_dbus_string_test): Remove base64 tests and add test case for
5212         invalid hex.
5213
5214         * dbus/dbus-keyring.c, dbus/dbus-auth-script.c, dbus/dbus-auth.c:
5215         Replace base64 with hex.
5216
5217         * test/data/auth/invalid-hex-encoding.auth-script: New test case
5218         for invalid hex encoded data in auth protocol.
5219
5220 2004-05-17  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5221
5222         * dbus/dbus-connection.c (check_for_reply_unlocked): plug a memory
5223         leak.
5224
5225 2004-05-15  Owen Fraser-Green  <owen@discobabe.net>
5226
5227         * mono/dbus-sharp.dll.config.in: Added for GAC
5228         * mono/dbus-sharp.snk: Added for GAC
5229         * mono/Assembly.cs.in: Added for GAC
5230         * mono/Makefile.am: Changes for GAC installation        
5231         * configure.in: Added refs for dbus-sharp.dll.config.in and
5232         Assembly.cs.in. More fixes for mono testing
5233         * mono/example/Makefile.am: Changed var to CSC
5234         * Makefile.am: Changed flag name to DBUS_USE_CSC
5235
5236 2004-05-15  Owen Fraser-Green  <owen@discobabe.net>
5237
5238         * mono/Makefile.am: Added SUBDIRS for docs. Changed SUBDIRS order
5239         * mono/doc/*: Added documentation framework
5240         * configure.in: Added monodoc check
5241         * README: Added description of mono configure flags
5242
5243 2004-05-11  John (J5) Palmieri  <johnp@redhat.com>:
5244
5245         * doc/dbus-specification.xml: Added a "Required" column to the 
5246         header fields table and changed the "zero or more" verbage in
5247         the above paragraph to read "The header must contain the required 
5248         named header fields and zero or more of the optional named header 
5249         fields".
5250         * test/data/invalid-messages/*.message: Added the required PATH 
5251         named header field to the tests so that they don't fail on 
5252         'Missing path field'
5253
5254 2004-05-07  John (J5) Palmieri  <johnp@redhat.com>
5255
5256         * python/dbus-bindings.pyx.in: Stopped the bindings from trashing
5257         the stack by implicitly defining variable and parameter types and
5258         removing the hack of defining C pointers as python objects and later
5259         casting them.
5260
5261 2004-05-02  Owen Fraser-Green  <owen@discobabe.net>
5262
5263         * mono/Makefile.am: Removed test-dbus-sharp.exe from all target
5264
5265 2004-05-01  Owen Fraser-Green  <owen@discobabe.net>
5266
5267         * mono/DBusType/Dict.cs: Handle empty dicts
5268         * mono/DBusType/Array.cs: Handle empty arrays
5269         * mono/Arguments.cs: Handle empty arguments
5270
5271 2004-04-30  Owen Fraser-Green  <owen@discobabe.net>
5272
5273         * dbus-sharp.pc.in: Modified to include include Libs and Requires
5274         field
5275
5276 2004-04-25  Kristian Høgsberg  <krh@redhat.com>
5277
5278         * test/data/valid-messages/standard-*.message: Update message
5279         test scripts to new header field names.
5280
5281 2004-04-22  John (J5) Palmieri  <johnp@redhat.com>
5282
5283         * test/break-loader.c (randomly_do_n_things): tracked down buffer
5284         overflow to times_we_did_each_thing array which would chop off the
5285         first character of the failure_dir string. Increased the size of
5286         the array to 7 to reflect the number of random mutation functions
5287         we have.
5288
5289 2004-04-21  Kristian Høgsberg  <krh@redhat.com>
5290
5291         * dbus/dbus-server-unix.c (unix_finalize): Don't unref
5292         unix_server->watch here, it is unreffed in disconnect.
5293         (_dbus_server_new_for_tcp_socket): convert NULL host to
5294         "localhost" here so we don't append NULL to address.
5295         
5296         * dbus/dbus-server.c (_dbus_server_test): Add test case for
5297         various addresses, including tcp with no explicit host.
5298
5299 2004-04-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5300
5301         * dbus/dbus-message.c (decode_header_data, decode_string_field):
5302         fix incorrect setting of .name_offset in the HeaderField (it was
5303         off by two bytes, positioned right after the name and typecode)
5304
5305         * bus/bus.c (bus_context_new, bus_context_unref): test before
5306         calling dbus_server_free_data_slot and _dbus_user_database_unref
5307         in case of an error.
5308
5309         * tools/Makefile.am: add $(DBUS_GLIB_TOOL_LIBS), xml libs needed
5310         by libdbus-gtool.
5311
5312 2004-04-19  Kristian Høgsberg  <krh@redhat.com>
5313
5314         * dbus/dbus-transport-unix.c (unix_do_iteration): Rewrite to use
5315         _dbus_poll() instead of select().
5316
5317 2004-04-15  Jon Trowbridge  <trow@ximian.com>
5318
5319         * bus/main.c (signal_handler): Reload the configuration files
5320         on SIGHUP.
5321         (main): Set up our SIGHUP handler.
5322
5323         * bus/bus.c (struct BusContext): Store the config file, user and
5324         fork flag in the BusContext.
5325         (process_config_first_time_only): Added.  Contains the code
5326         (previously in bus_context_new) for setting up the BusContext from
5327         the BusConfigParser that should only be run the first time the
5328         config files are read.
5329         (process_config_every_time): Added.  Contains the code (previously
5330         in bus_context_new) for setting up the BusContext from the
5331         BusConfigParser that should be run every time the config files are
5332         read.
5333         (load_config): Added.  Builds a BusConfigParser from the config
5334         files and passes the resulting structure off to
5335         process_config_first_time_only (assuming this is the first time)
5336         and process_config_every_time.
5337         (bus_context_new): All of the config-related code has been moved
5338         to process_config_first_time_only and process_config_every_time.
5339         Now this function just does the non-config-related initializations
5340         and calls load_config.
5341         (bus_context_reload_config): Added.
5342
5343 2004-04-15  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5344
5345         * bus/driver.c (bus_driver_handle_get_service_owner):
5346         implement a GetServiceOwner method.
5347         * doc/dbus-specification.xml: document it.
5348         * dbus/dbus-errors.h: add a 'ServiceHasNoOwner' error.
5349         
5350         * glib/dbus-gproxy.c (dbus_gproxy_new_for_service_owner):
5351         implement, using the bus GetServiceOwner method.
5352
5353         * test/glib/test-dbus-glib.c:
5354         use dbus_gproxy_new_for_service_owner so that we can receive the
5355         signal. 
5356
5357 2004-04-15  John (J5) Palmieri  <johnp@redhat.com>
5358
5359         * dbus/dbus-internals.c, dbus/dbus-message-builder.c,
5360         dbus/dbus-message.c, dbus/dbus-protocol.h
5361         (DBUS_HEADER_FIELD_SERVICE): renamed DBUS_HEADER_FIELD_DESTINATION
5362
5363         * dbus/dbus-internals.c, dbus/dbus-message-builder.c,
5364         dbus/dbus-message.c, dbus/dbus-protocol.h
5365         (DBUS_HEADER_FIELD_SENDER_SERVICE): renamed DBUS_HEADER_FIELD_SENDER
5366
5367         * dbus/dbus-internals.c (_dbus_header_field_to_string):
5368         DBUS_HEADER_FIELD_DESTINATION resolves to "destination"
5369         DBUS_HEADER_FIELD_SENDER resolves to "sender"
5370
5371         * doc/dbus-specification.xml (Header Fields Table):
5372         s/SERVICE/DESTINATION
5373         s/SENDER_SERVICE/SENDER
5374
5375
5376 2004-04-14  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5377
5378         * test/glib/test-dbus-glib.c (timed_exit): fail the test after
5379         a few seconds.
5380
5381 2004-04-13  Michael Meeks  <michael@ximian.com>
5382
5383         * glib/dbus-gobject.c (handle_introspect): split out
5384         (introspect_properties): this.
5385         (handle_introspect): implement this.
5386
5387         * test/glib/Makefile.am: use the absolute path so the bus
5388         daemon's chdir ("/") doesn't kill us dead.
5389
5390         * configure.in: subst ABSOLUTE_TOP_BUILDDIR
5391
5392 2004-04-12  Jon Trowbridge  <trow@ximian.com>
5393
5394         * bus/config-parser.c (struct BusConfigParser): Added
5395         included_files field.
5396         (seen_include): Added.  Checks whether or not a file has already
5397         been included by any parent BusConfigParser.
5398         (bus_config_parser_new): Copy the parent's included_files.
5399         (include_file): Track which files have been included, and fail on
5400         circular inclusions.
5401         (process_test_valid_subdir): Changed printf to report if we are
5402         testing valid or invalid conf files.
5403         (all_are_equiv): Changed printf to be a bit clearer about
5404         what we are actually doing.
5405         (bus_config_parser_test): Test invalid configuration files.
5406
5407 2004-04-09  Jon Trowbridge  <trow@ximian.com>
5408
5409         * bus/config-parser.c (bus_config_parser_new): Added a 'parent'
5410         argument.  If non-null, the newly-constructed BusConfigParser will
5411         be initialized with the parent's BusLimits instead of the default
5412         values.
5413         (include_file): When including a config file, pass in
5414         the current parser as the parent and then copy the BusLimits
5415         from the included BusConfigParser pack to the current parser.
5416         (process_test_valid_subdir): Renamed from process_test_subdir.
5417         (process_test_equiv_subdir): Added.  Walks through a directory,
5418         descending into each subdirectory and loading the config files
5419         it finds there.  If any subdirectory contains two config files
5420         that don't produce identical BusConfigParser structs, fail.
5421         For now, the BusConfigParser's BusPolicies are not compared.
5422         (bus_config_parser_test): Call both process_test_valid_subdir and
5423         process_test_equiv_subdir.
5424
5425         * bus/config-loader-libxml.c (bus_config_load): Take a parent
5426         argument and pass it along to the call to bus_config_parser_new.
5427         Also made a few small changes to allow this code to compile.
5428
5429         * bus/config-loader-expat.c (bus_config_load): Take a parent
5430         argument and pass it along to the call to bus_config_parser_new.
5431
5432         * bus/bus.c (bus_context_new): Load the config file
5433         with a NULL parent argument.
5434
5435 2004-03-29  Michael Meeks  <michael@ximian.com>
5436
5437         * glib/dbus-gobject.c (introspect_properties): split
5438         out, fix mangled 'while' flow control.
5439         (introspect_signals): implement.
5440         (handle_introspect): update.
5441
5442 2004-03-29  Michael Meeks  <michael@ximian.com>
5443
5444         * glib/dbus-gobject.c (set_object_property): split out / 
5445         re-work, use the property type, and not the message type(!)
5446         (get_object_property): ditto.
5447
5448         * glib/dbus-gvalue.c (dbus_gvalue_demarshal),
5449         (dbus_gvalue_marshal): make this code re-usable, needed
5450         for signals too, also on both proxy and server side.
5451         Re-write for more efficiency / readability.
5452
5453 2004-03-29  Michael Meeks  <michael@ximian.com>
5454
5455         * dbus/dbus-message.c
5456         (dbus_message_new_error_printf): impl.
5457
5458         * dbus/dbus-connection.c
5459         (dbus_connection_unregister_object_path): fix warning.
5460
5461         * configure.in: fix no-mono-installed situation.
5462
5463 2004-03-27  Havoc Pennington  <hp@redhat.com>
5464
5465         Patch from Timo Teräs:
5466         
5467         * tools/dbus-send.c (main): if --print-reply, assume type is
5468         method call; support boolean type args
5469         
5470         * dbus/dbus-connection.c (dbus_connection_send_with_reply): fix a
5471         bunch of memleak and logic bugs
5472         
5473 2004-03-23  Owen Fraser-Green  <owen@discobabe.net>
5474
5475         * mono/Arguments.cs:
5476         * mono/Introspector.cs:
5477         * mono/Handler.cs:
5478         * mono/InterfaceProxy.cs:
5479         * mono/Message.cs
5480         * mono/ProxyBuilder.cs:
5481         * mono/Service.cs:
5482         Added InterfaceProxy class to avoid building proxies for every
5483         object.
5484
5485         * dbus-message.h:
5486         * dbus-message.c (dbus_message_append_args_valist)
5487         (dbus_message_iter_get_object_path)
5488         (dbus_message_iter_get_object_path_array)
5489         (dbus_message_iter_append_object_path)
5490         (dbus_message_iter_append_object_path_array):
5491         Added object_path iter functions to handle OBJECT_PATH arguments
5492         
5493 2004-03-23  Owen Fraser-Green  <owen@discobabe.net>
5494
5495         First checkin of mono bindings.
5496         * configure.in:
5497         * Makefile.am:
5498         Build stuff for the bindings
5499         * dbus-sharp.pc.in: Added for pkgconfig
5500         
5501 2004-03-21  Havoc Pennington  <hp@redhat.com>
5502
5503         * test/test-service.c (main): remove debug spew
5504
5505 2004-03-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5506
5507         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): accept empty
5508         arrays
5509
5510         * dbus/dbus-message.h, bus/dbus-message.c (dbus_message_iter_init)
5511         (dbus_message_iter_init_array_iterator)
5512         (dbus_message_iter_init_dict_iterator): return a dbus_bool_t to
5513         indicate whether the iterator is empty
5514
5515         * dbus/dbus-pending-call.c, dbus/dbus-server.c: silence compiler
5516         warnings
5517
5518 2004-03-19  Havoc Pennington  <hp@redhat.com>
5519
5520         * NEWS: 0.21 updates
5521
5522         * configure.in: 0.21
5523
5524         * doc/Makefile.am: add all XMLTO usage to DBUS_XML_DOCS_ENABLED
5525         
5526         * python/Makefile.am: change to avoid dist of dbus_bindings.c so
5527         you don't need pyrex to make dist
5528
5529         * qt/Makefile.am (libdbus_qt_1_la_SOURCES): add integrator.h to
5530         sources; run moc
5531         
5532 2004-03-18  Richard Hult  <richard@imendio.com>
5533
5534         * dbus/dbus-message.c (dbus_message_get_auto_activation) 
5535         (dbus_message_set_auto_activation): Add doxygen docs.
5536
5537 2004-03-16  Richard Hult  <richard@imendio.com>
5538
5539         * bus/activation.c: (bus_activation_service_created),
5540         (bus_activation_send_pending_auto_activation_messages),
5541         (bus_activation_activate_service):
5542         * bus/activation.h:
5543         * bus/dispatch.c: (bus_dispatch),
5544         (check_nonexistent_service_auto_activation),
5545         (check_service_auto_activated),
5546         (check_segfault_service_auto_activation),
5547         (check_existent_service_auto_activation), (bus_dispatch_test):
5548         * bus/driver.c: (bus_driver_handle_activate_service):
5549         * bus/services.c: (bus_registry_acquire_service):
5550         * dbus/dbus-message.c: (dbus_message_set_auto_activation),
5551         (dbus_message_get_auto_activation):
5552         * dbus/dbus-message.h:
5553         * dbus/dbus-protocol.h: Implement auto-activation.
5554         
5555         * doc/dbus-specification.xml: Add auto-activation to the spec.
5556
5557 2004-03-12  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5558
5559         * dbus/dbus-marshal.c (_dbus_marshal_get_arg_end_pos):
5560         fix a bug with CUSTOM types.
5561
5562         * dbus/dbus-message.c (message_iter_test, _dbus_message_test): add
5563         a unit test for this bug (used to fail).
5564
5565 2004-03-12  Mikael Hallendal  <micke@imendio.com>
5566
5567         * bus/activation.c:
5568         (babysitter_watch_callback): notify all pending activations waiting for
5569           the same exec that the activation failed.
5570         (bus_activation_activate_service): shortcut the activation if we 
5571           already waiting for the same executable to start up.
5572
5573 2004-03-12  Mikael Hallendal  <micke@imendio.com>
5574
5575         * bus/activation.c: 
5576         - Added service file reloading. 
5577           Each service files directory is kept in an hash table in 
5578           BusActivation and each BusActivationEntry knows what .service-file it
5579           was read from. So when you try to activate a service the bus will 
5580           check if it's been updated, removed or if new .service-files has 
5581           been installed.
5582         - Test code at the bottom for the service file reloading.
5583         * bus/test-main.c: (main):
5584         * bus/test.h:
5585         - added service reloading test.
5586         * dbus/dbus-sysdeps.c: 
5587         * dbus/dbus-sysdeps.h: (_dbus_delete_directory): Added.
5588
5589 2004-03-08  Michael Meeks  <michael@ximian.com>
5590
5591         * dbus/dbus-connection.c (_dbus_connection_block_for_reply): 
5592         bail immediately if disconnected, to avoid busy loop.
5593
5594         * dbus/dbus-message.c (dbus_message_iter_get_args_valist):
5595         cleanup cut/paste/inefficiency.
5596
5597 2004-03-01  David Zeuthen  <david@fubar.dk>
5598
5599         * dbus/dbus-string.c (_dbus_string_append_printf_valist): Fix a
5600         bug where args were used twice. This bug resulted in a segfault
5601         on a Debian/PPC system when starting the messagebus daemon. Include
5602         dbus-sysdeps.h for DBUS_VA_COPY
5603
5604         * dbus/dbus-sysdeps.h: Define DBUS_VA_COPY if neccessary. From GLib
5605
5606         * configure.in: Check for va_copy; define DBUS_VA_COPY to the
5607         appropriate va_copy implementation. From GLib
5608         
5609 2004-02-24  Joe Shaw  <joe@ximian.com>
5610
5611         * bus/services.c (bus_registry_acquire_service): We need to pass
5612         in the service name to dbus_set_error() to prevent a crash.
5613
5614 2003-12-26  Anders Carlsson  <andersca@gnome.org>
5615
5616         * AUTHORS: Reveal my True identity.
5617
5618 2003-12-17  Mikael Hallendal  <micke@imendio.com>
5619
5620         * dbus/dbus-message.c: (dbus_message_append_args_valist): 
5621         - Added case for DBUS_TYPE_BYTE, patch from Johan Hedberg.
5622
5623 2003-12-13  Mikael Hallendal  <micke@imendio.com>
5624
5625         * doc/TODO: Added not about better error check of configuration files.
5626
5627 2003-12-02  Richard Hult  <richard@imendio.com>
5628
5629         * Update AFL version to 2.0 throughout the source files to reflect
5630         the update that was done a while ago.
5631
5632 2003-12-02  Richard Hult  <richard@imendio.com>
5633
5634         * dbus/dbus-message.c (dbus_message_iter_append_dict): Set
5635         wrote_dict_key to FALSE on the iter that the dict is appended to,
5636         just like when appending other types. Fixes a bug where a dict
5637         couldn't be put inside a dict.
5638         (dbus_message_iter_append_dict_key): Fix typo in warning message.
5639         (message_iter_test, _dbus_message_test): Add test case for dict
5640         inside dict.
5641
5642 2003-12-01  David Zeuthen  <david@fubar.dk>
5643
5644         * python/dbus.py: Add the actual message when calling the reciever
5645         of a signal such that parameters can be inspected. Add the method
5646         remove_signal_receiver
5647         
5648 2003-11-26  Mikael Hallendal  <micke@imendio.com>
5649
5650         * bus/*.[ch]:
5651         * dbus/*.[ch]:
5652         * glib/*.[ch]: Made ref functions return the pointer
5653
5654 2003-11-25  Zack Rusin  <zack@kde.org>
5655
5656         * qt/integrator.h, qt/integrator.cpp: Adding handling of DBusServer,
5657
5658         * qt/server.h, qt/server.cpp, qt/Makefile.am: Adding DBusServer 
5659         wrappers,
5660
5661         * qt/connection.h, qt/connection.cpp: Adjusting to changes in 
5662         the Integrator and to better fit with the server,
5663
5664 2003-11-24  Zack Rusin  <zack@kde.org>
5665
5666         * qt/connection.h, qt/connection.cpp: removing initDbus method since
5667         the integrator handles it now
5668
5669         * qt/integrator.h, qt/integrator.cpp: reworking handling of timeouts,
5670         since QTimer wasn't really meant to be used the way DBusTimeout is
5671
5672 2003-11-24  Zack Rusin  <zack@kde.org>
5673
5674         * qt/integrator.h, qt/integrator.cpp, Makefile.am: Adding 
5675         Integrator class which integrates D-BUS with the Qt event loop,
5676
5677         * qt/connection.h, qt/connection.cpp: Move all the code which
5678         was dealing with D-BUS integration to the Integrator class,
5679         and start using Integrator,
5680
5681 2003-11-23  Zack Rusin  <zack@kde.org>
5682
5683         * qt/connection.h, qt/connection.cpp: Adding the DBusConnection 
5684         wrapper
5685
5686         * qt/message.h, qt/message.cpp: updating to the current D-BUS api,
5687         switching namespaces to DBusQt, reworking the class,
5688
5689         * Makefile.cvs: switching dependencies so that it matches KDE 
5690         schematics,
5691         
5692         * qt/Makefile.am: adding connection.{h,cpp} and message.{h,cpp} to 
5693         the library
5694
5695 2003-11-19  Havoc Pennington  <hp@redhat.com>
5696
5697         * NEWS: update
5698
5699         * configure.in: bump version to 0.20
5700
5701         * configure.in (have_qt): add yet another place to look for qt
5702         (someone hand trolltech a .pc file...)
5703
5704 2003-11-01  Havoc Pennington  <hp@redhat.com>
5705
5706         * doc/dbus-specification.xml: add state machine docs on the auth
5707         protocol; just a first draft, I'm sure it's wrong.      
5708
5709 2003-10-28  David Zeuthen  <david@fubar.dk>
5710
5711         * python/dbus_bindings.pyx.in: add get_dict to handle dictionaries
5712         return types. Fixup TYPE_* to reflect changes in dbus/dbus-protocol.h
5713         
5714 2003-10-28  Havoc Pennington  <hp@redhat.com>
5715
5716         * dbus/dbus-message.c (get_next_field): delete unused function
5717
5718 2003-10-28  Havoc Pennington  <hp@redhat.com>
5719
5720         * bus/expirelist.c (do_expiration_with_current_time): detect
5721         failure of the expire_func due to OOM
5722
5723         * bus/connection.c (bus_pending_reply_expired): return FALSE on OOM
5724
5725         * bus/dispatch.c (check_send_exit_to_service): fix to handle the
5726         NoReply error that's now created by the bus when the service exits
5727
5728 2003-10-28  Havoc Pennington  <hp@redhat.com>
5729
5730         * dbus/dbus-message.c (_dbus_message_test): enable and fix the
5731         tests for set_path, set_interface, set_member, etc.
5732
5733         * dbus/dbus-string.c (_dbus_string_insert_bytes): allow 0 bytes
5734
5735         * dbus/dbus-message.c (set_string_field): always just delete and
5736         re-append the field; accept NULL for deletion
5737         (re_align_fields_recurse): reimplement
5738         
5739 2003-10-26  Havoc Pennington  <hp@redhat.com>
5740
5741         * dbus/dbus-connection.c: fix docs to properly describe the
5742         disconnected message
5743         (_dbus_connection_notify_disconnected): remove this function; 
5744         we can't synchronously add the disconnected message, we have to 
5745         do it after we've queued any remaining real messages
5746         (_dbus_connection_get_dispatch_status_unlocked): queue the
5747         disconnect message only if the transport has finished queueing all
5748         its real messages and is disconnected.
5749         (dbus_connection_disconnect): update the dispatch status here
5750
5751 2003-10-22  Havoc Pennington  <hp@redhat.com>
5752
5753         * bus/bus.c (bus_context_check_security_policy): fix up assertion
5754
5755         * bus/connection.c (bus_transaction_send_from_driver): set the
5756         destination to the connection's base service
5757
5758 2003-10-20  Havoc Pennington  <hp@redhat.com>
5759
5760         hmm, make check is currently not passing.
5761         
5762         * doc/dbus-specification.xml: add requirement that custom type
5763         names follow the same rules as interface names.
5764
5765         * dbus/dbus-protocol.h: change some of the byte codes, to avoid
5766         duplication and allow 'c' to be 'custom'; dict is now 'm' for
5767         'map'
5768
5769         * doc/dbus-specification.xml: update type codes to match
5770         dbus-protocol.h, using the ASCII byte values. Rename type NAMED to
5771         CUSTOM. Add type OBJECT_PATH to the spec.
5772
5773 2003-10-17  Havoc Pennington  <hp@redhat.com>
5774
5775         * bus/driver.c (create_unique_client_name): use "." as separator
5776         in base service names instead of '-'
5777
5778         * dbus/dbus-string.c (_dbus_string_get_byte): allow getting nul
5779         byte at the end of the string
5780
5781         * dbus/dbus-internals.h (_DBUS_LIKELY, _DBUS_UNLIKELY): add
5782         optimization macros since string validation seems to be a slow
5783         point.
5784         
5785         * doc/dbus-specification.xml: restrict valid
5786         service/interface/member/error names. Add test suite code for the
5787         name validation.
5788
5789         * dbus/dbus-string.c: limit service/interface/member/error names 
5790         to [0-9][A-Z][a-z]_
5791
5792         * dbus/dbus-connection.c (dbus_connection_dispatch): add missing
5793         format arg to verbose spew
5794
5795         * glib/dbus-gproxy.c (dbus_gproxy_call_no_reply): if not out of
5796         memory, return instead of g_error
5797
5798         * test/test-service.c (path_message_func): support emitting a
5799         signal on request
5800
5801         * dbus/dbus-bus.c (init_connections_unlocked): only fill in
5802         activation bus type if DBUS_BUS_ACTIVATION was set; default to
5803         assuming the activation bus was the session bus so that services
5804         started manually will still register.
5805         (init_connections_unlocked): fix so that in OOM situation we get
5806         the same semantics when retrying the function
5807         
5808         * test/test-service.c (main): change to use path registration, to
5809         test those codepaths; register with DBUS_BUS_ACTIVATION rather
5810         than DBUS_BUS_SESSION
5811
5812 2003-10-16  Havoc Pennington  <hp@redhat.com>
5813
5814         * glib/dbus-gtest-main.c: bracket with #ifdef DBUS_BUILD_TESTS
5815
5816         * Makefile.am (GCOV_DIRS): remove "test", we don't care about test
5817         coverage of the tests
5818         (coverage-report.txt): don't move the .da and .bbg files around
5819
5820 2003-10-16  Havoc Pennington  <hp@redhat.com>
5821
5822         * bus/bus.c (struct BusContext): remove struct field I didn't mean
5823         to put there
5824
5825 2003-10-16  Havoc Pennington  <hp@redhat.com>
5826
5827         * bus/connection.c (bus_pending_reply_expired): either cancel or
5828         execute, not both
5829         (bus_connections_check_reply): use unlink, not remove_link, as we
5830         don't want to free the link; fixes double free mess
5831
5832         * dbus/dbus-pending-call.c (dbus_pending_call_block): fix in case
5833         where no reply was received
5834
5835         * dbus/dbus-connection.c (_dbus_pending_call_complete_and_unlock):
5836         fix a refcount leak
5837
5838         * bus/signals.c (match_rule_matches): add special cases for the
5839         bus driver, so you can match on sender/destination for it.
5840
5841         * dbus/dbus-sysdeps.c (_dbus_abort): print backtrace if
5842         DBUS_PRINT_BACKTRACE is set
5843
5844         * dbus/dbus-internals.c: add pid to assertion failure messages
5845
5846         * dbus/dbus-connection.c: add message type code to the debug spew
5847
5848         * glib/dbus-gproxy.c (gproxy_get_match_rule): match rules want
5849         sender=foo not service=foo
5850
5851         * dbus/dbus-bus.c (dbus_bus_get): if the activation bus is the
5852         session bus but DBUS_SESSION_BUS_ADDRESS isn't set, use 
5853         DBUS_ACTIVATION_ADDRESS instead
5854
5855         * bus/activation.c: set DBUS_SESSION_BUS_ADDRESS,
5856         DBUS_SYSTEM_BUS_ADDRESS if appropriate
5857
5858         * bus/bus.c (bus_context_new): handle OOM copying bus type into
5859         context struct
5860
5861         * dbus/dbus-message.c (dbus_message_iter_get_object_path): new function
5862         (dbus_message_iter_get_object_path_array): new function (half
5863         finished, disabled for the moment)
5864         
5865         * glib/dbus-gproxy.c (dbus_gproxy_end_call): properly handle
5866         DBUS_MESSAGE_TYPE_ERROR
5867
5868         * tools/dbus-launch.c (babysit): support DBUS_DEBUG_OUTPUT to
5869         avoid redirecting stderr to /dev/null
5870         (babysit): close stdin if not doing the "exit_with_session" thing
5871
5872         * dbus/dbus-sysdeps.c (_dbus_become_daemon): delete some leftover
5873         debug code; change DBUS_DEBUG_OUTPUT to only enable stderr, not
5874         stdout/stdin, so things don't get confused
5875         
5876         * bus/system.conf.in: fix to allow replies, I modified .conf
5877         instead of .conf.in again.
5878
5879 2003-10-14  David Zeuthen  <david@fubar.dk>
5880
5881         * python/dbus_bindings.pyx.in (MessageIter.get): fixed typo in
5882         argtype to arg_type when raising unknown arg type exception.
5883         Changed type list to reflect the changes in dbus-protocol.h so 
5884         the bindings actually work.
5885
5886 2003-10-14  Havoc Pennington  <hp@redhat.com>
5887
5888         * test/decode-gcov.c: support gcc 3.3 also, though gcc 3.3 seems
5889         to have a bug keeping it from outputting the .da files sometimes
5890         (string_get_string): don't append garbage nul bytes to the string.
5891
5892 2003-10-15  Seth Nickell  <seth@gnome.org>
5893
5894         * python/Makefile.am:
5895
5896         Include dbus_h_wrapper.h in the dist tarball.
5897
5898 2003-10-14  Havoc Pennington  <hp@redhat.com>
5899
5900         * bus/bus.c (bus_context_check_security_policy): revamp this to
5901         work more sanely with new policy-based requested reply setup
5902
5903         * bus/connection.c (bus_transaction_send_from_driver): set bus
5904         driver messages as no reply
5905
5906         * bus/policy.c (bus_client_policy_check_can_receive): handle a
5907         requested_reply attribute on allow/deny rules
5908
5909         * bus/system.conf: add <allow requested_reply="true"/>
5910
5911         * bus/driver.c (bus_driver_handle_message): fix check for replies
5912         sent to the bus driver, which was backward. How did this ever work
5913         at all though? I think I'm missing something.
5914
5915         * dbus/dbus-message.c (decode_header_data): require error and
5916         method return messages to have a reply serial field to be valid
5917         (_dbus_message_loader_queue_messages): break up this function;
5918         validate that reply serial and plain serial are nonzero; 
5919         clean up the OOM/error handling.
5920         (get_uint_field): don't return -1 from this
5921         (dbus_message_create_header): fix signed/unsigned bug
5922
5923         * bus/connection.c (bus_connections_expect_reply): save serial of
5924         the incoming message, not reply serial
5925
5926 2003-10-14  Havoc Pennington  <hp@redhat.com>
5927
5928         * bus/connection.c: implement pending reply tracking using
5929         BusExpireList
5930
5931         * bus/bus.c (bus_context_check_security_policy): verify that a
5932         reply is pending in order to allow a reply to be sent. Deny 
5933         messages of unknown type.
5934
5935         * bus/dbus-daemon-1.1.in: update to mention new resource limits
5936
5937         * bus/bus.c (bus_context_get_max_replies_per_connection): new
5938         (bus_context_get_reply_timeout): new
5939
5940 2003-10-13  Seth Nickell  <seth@gnome.org>
5941
5942         * python/Makefile.am:
5943
5944         Pass "make distcheck": remove a couple files from DIST_FILES
5945         that weren't included in the final version.
5946
5947 2003-10-12  Havoc Pennington  <hp@pobox.com>
5948
5949         Added test code that 1) starts an actual bus daemon and 2) uses
5950         DBusGProxy; fixed bugs that were revealed by the test. Lots 
5951         more testing possible, but this is the basic framework.
5952         
5953         * glib/dbus-gproxy.c (dbus_gproxy_manager_unregister): remove
5954         empty proxy lists from the proxy list hash
5955
5956         * dbus/dbus-message.c (dbus_message_iter_get_args_valist): add a
5957         couple of return_if_fail checks
5958
5959         * dbus/dbus-pending-call.c (_dbus_pending_call_new): use dbus_new0
5960         to allocate, so everything is cleared to NULL as it should be.
5961
5962         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): pass
5963         source as data to dbus_connection_set_timeout_functions() as the 
5964         timeout functions expected
5965
5966         * test/glib/run-test.sh: add a little script to start up a message
5967         bus and run tests using it
5968
5969         * tools/dbus-launch.1: updates
5970
5971         * tools/dbus-launch.c (main): add --config-file option
5972
5973         * tools/dbus-launch.c (main): remove confusing else if (runprog)
5974         that could never be reached.
5975
5976         * dbus/dbus-message.c (dbus_message_new_method_return) 
5977         (dbus_message_new_error, dbus_message_new_signal): set the
5978         no-reply-expected flag on all these. Redundant, but may
5979         as well be consistent.
5980
5981 2003-10-11  Havoc Pennington  <hp@pobox.com>
5982
5983         * test/decode-gcov.c (function_solve_graph): make broken block
5984         graph a nonfatal error since it seems to be broken. Need to debug
5985         this.
5986
5987         * dbus/dbus-marshal.c (_dbus_type_is_valid): new function since we
5988         can't just check type > INVALID < LAST anymore
5989
5990         * dbus/dbus-message.c (dbus_message_get_signature): new function
5991         (dbus_message_has_signature): new function
5992         (struct DBusMessage): add signature field (right now it isn't sent
5993         over the wire, just generated on the fly)
5994         (dbus_message_copy): copy the signature, and init strings to
5995         proper length to avoid some reallocs
5996         (dbus_message_iter_init_array_iterator): return void, since it
5997         can't fail
5998         (dbus_message_iter_init_dict_iterator): return void since it can't fail
5999         (_dbus_message_loader_queue_messages): add silly temporary hack to
6000         fill in message->signature on load
6001
6002         * dbus/dbus-protocol.h: change DBUS_TYPE_* values to be ASCII
6003         characters, so they are relatively human-readable.
6004
6005 2003-10-11  Havoc Pennington  <hp@pobox.com>
6006
6007         * dbus/dbus-message.c (_dbus_message_test): add more test
6008         coverage, but #if 0 for now since they uncover a bug 
6009         not fixed yet; I think in re_align_field_recurse()
6010         (re_align_field_recurse): add FIXME about broken assertion
6011
6012         * dbus/dbus-sysdeps.c (_dbus_sysdeps_test): add more test coverage
6013
6014         * bus/connection.c: share a couple code bits with expirelist.c
6015
6016         * bus/expirelist.h, bus/expirelist.c: implement a generic
6017         expire-items-after-N-seconds facility, was going to share between
6018         expiring connections and replies, decided not to use for expiring
6019         connections for now.
6020
6021         * COPYING: include AFL 2.0 (still need to change all the file headers)
6022
6023 2003-10-09  Havoc Pennington  <hp@redhat.com>
6024
6025         * configure.in: define DBUS_HAVE_GCC33_GCOV if we have
6026         gcc 3.3. Not that we do anything about it yet.
6027
6028         * bus/signals.c (bus_match_rule_parse): impose max length on the
6029         match rule text
6030
6031         * dbus/dbus-protocol.h: add DBUS_MAXIMUM_MATCH_RULE_LENGTH
6032
6033 2003-10-09  Havoc Pennington  <hp@redhat.com>
6034
6035         Make matching rules theoretically work (add parser).
6036         
6037         * bus/bus.c (bus_context_check_security_policy): fix up to handle
6038         the case where destination is explicitly specified as bus driver
6039         and someone else is eavesdropping.
6040         
6041         * bus/policy.c (bus_client_policy_check_can_receive): fix up
6042         definition of eavesdropping and assertion
6043
6044         * tools/dbus-send.c (main): use dbus_message_type_from_string
6045
6046         * bus/signals.c (bus_match_rule_parse): implement
6047
6048         * dbus/dbus-message.c (dbus_message_type_from_string): new
6049
6050         * dbus/dbus-errors.h (DBUS_ERROR_MATCH_RULE_INVALID): add
6051
6052 2003-10-02  Havoc Pennington  <hp@pobox.com>
6053
6054         * glib/dbus-gproxy.c (dbus_gproxy_call_no_reply): rename from
6055         dbus_gproxy_oneway_call
6056
6057         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main) 
6058         (dbus_server_setup_with_g_main): fix to allow calling them more
6059         than once on the same args
6060         (dbus_bus_get_with_g_main): new function
6061
6062 2003-10-02  Havoc Pennington  <hp@redhat.com>
6063
6064         * doc/dbus-tutorial.xml: write some stuff
6065
6066 2003-09-29  Havoc Pennington  <hp@pobox.com>
6067
6068         * configure.in: split checks for Doxygen from XML docs, check for
6069         xmlto
6070
6071         * doc/Makefile.am: XML-ify all the docs, and add a blank
6072         dbus-tutorial.xml
6073
6074 2003-09-29  Havoc Pennington  <hp@pobox.com>
6075
6076         * Merge dbus-object-names branch. To see the entire patch 
6077         do cvs diff -r DBUS_OBJECT_NAMES_BRANCHPOINT -r dbus-object-names,
6078         it's huuuuge though.
6079         To revert, I tagged DBUS_BEFORE_OBJECT_NAMES_MERGE.
6080         
6081 2003-09-28  Havoc Pennington  <hp@pobox.com>
6082
6083         * HACKING: update to reflect new server
6084
6085 2003-09-26  Seth Nickell  <seth@gnome.org>
6086
6087         * python/dbus.py:
6088         * python/examples/example-signals.py:
6089
6090         Start implementing some notions of signals. The API
6091         is really terrible, but they sort of work (with the
6092         exception of being able to filter by service, and to
6093         transmit signals *as* a particular service). Need to
6094         figure out how to make messages come from the service
6095         we registered :-(
6096         
6097         * python/dbus_bindings.pyx.in:
6098
6099         Removed duplicate message_handler callbacks.
6100         
6101 2003-09-25  Havoc Pennington  <hp@redhat.com>
6102
6103         * bus/session.conf.in: fix my mess
6104
6105 2003-09-25  Havoc Pennington  <hp@pobox.com>
6106
6107         * bus/session.conf.in: fix security policy, reported by Seth Nickell
6108
6109 2003-09-25  Seth Nickell  <seth@gnome.org>
6110
6111         * python/examples/example-service.py:
6112
6113         Johan notices complete wrong code in example-service, but
6114         completely wrong in a way that works exactly the same (!).
6115         Johan is confused, how could this possibly work? Example
6116         code fails to serve purpose of making things clear.
6117         Seth fixes.
6118
6119 2003-09-25  Mark McLoughlin  <mark@skynet.ie>
6120
6121         * doc/dbus-specification.sgml: don't require header fields
6122         to be 4-byte aligned and specify that fields should be
6123         distinguished from padding by the fact that zero is not
6124         a valid field name.
6125         
6126         * doc/TODO: remove re-alignment item and add item to doc
6127         the OBJECT_PATH type.
6128         
6129         * dbus/dbus-message.c:
6130         (HeaderField): rename the original member to value_offset
6131         and introduce a name_offset member to keep track of where
6132         the field actually begins.
6133         (adjust_field_offsets): remove.
6134         (append_int_field), (append_uint_field),
6135         (append_string_field): don't align the start of the header
6136         field to a 4-byte boundary.
6137         (get_next_field): impl finding the next marhsalled field
6138         after a given field.
6139         (re_align_field_recurse): impl re-aligning a number of
6140         already marshalled fields.
6141         (delete_field): impl deleting a field of any type and
6142         re-aligning any following fields.
6143         (delete_int_or_uint_field), (delete_string_field): remove.
6144         (set_int_field), (set_uint_field): no need to re-check
6145         that we have the correct type for the field.
6146         (set_string_field): ditto and impl re-aligning any
6147         following fields.
6148         (decode_header_data): update to take into account that
6149         the fields aren't 4-byte aligned any more and the new
6150         way to distinguish padding from header fields. Also,
6151         don't exit when there is too much header padding.
6152         (process_test_subdir): print the directory.
6153         (_dbus_message_test): add test to make sure a following
6154         field is re-aligned correctly after field deletion.
6155         
6156         * dbus/dbus-string.[ch]:
6157         (_dbus_string_insert_bytes): rename from insert_byte and
6158         allow the insert of multiple bytes.
6159         (_dbus_string_test): test inserting multiple bytes.
6160
6161         * dbus/dbus-marshal.c: (_dbus_marshal_set_string): add
6162         warning note to docs about having to re-align any
6163         marshalled values following the string.
6164         
6165         * dbus/dbus-message-builder.c:
6166         (append_string_field), (_dbus_message_data_load):
6167         don't align the header field.
6168         
6169         * dbus/dbus-auth.c: (process_test_subdir): print the
6170         directory.
6171         
6172         * test/break-loader.c: (randomly_add_one_byte): upd. for
6173         insert_byte change.
6174         
6175         * test/data/invalid-messages/bad-header-field-alignment.message:
6176         new test case.
6177         
6178         * test/data/valid-messages/unknown-header-field.message: shove
6179         a dict in the unknown field.
6180
6181 2003-09-25  Seth Nickell  <seth@gnome.org>
6182
6183         * python/dbus.py:
6184         * python/dbus_bindings.pyx.in:
6185
6186         Handle return values.
6187         
6188         * python/examples/example-client.py:
6189         * python/examples/example-service.py:
6190
6191         Pass back return values from the service to the client.
6192         
6193 2003-09-24  Seth Nickell  <seth@gnome.org>
6194
6195         * python/dbus.py:
6196
6197         Connect Object methods (when you are sharing an object) up... pass
6198         in a list of methods to be shared. Sharing all the methods just
6199         worked out too weird. You can now create nice Services over the
6200         DBus in Python. :-)
6201         
6202         * python/dbus_bindings.pyx.in:
6203
6204         Keep references to user_data tuples passed into C functions so 
6205         Python doesn't garbage collect on us.
6206
6207         Implement MethodReturn and Error subclasses of Message for creating
6208         DBusMessage's of those types.
6209         
6210         * python/examples/example-client.py:
6211         * python/examples/example-service.py:
6212
6213         Simple example code showing both how create DBus services and objects,
6214         and how to use them.
6215
6216 2003-09-23  Havoc Pennington  <hp@pobox.com>
6217
6218         * glib/dbus-gproxy.c (dbus_gproxy_manager_filter): implement
6219
6220 2003-09-23  Havoc Pennington  <hp@redhat.com>
6221
6222         * glib/dbus-gproxy.c (dbus_gproxy_connect_signal): implement
6223         (dbus_gproxy_disconnect_signal): implement
6224         (dbus_gproxy_manager_remove_signal_match): implement
6225         (dbus_gproxy_manager_add_signal_match): implement
6226         (dbus_gproxy_oneway_call): implement
6227
6228 2003-09-23  Havoc Pennington  <hp@pobox.com>
6229
6230         * glib/dbus-gproxy.c (struct DBusGProxy): convert to a GObject
6231         subclass. This means dropping the transparent thread safety of the
6232         proxy; you now need a separate proxy per-thread, or your own
6233         locking on the proxy. Probably right anyway.
6234         (dbus_gproxy_ref, dbus_gproxy_unref): nuke, just use g_object_ref
6235
6236 2003-09-22  Havoc Pennington  <hp@redhat.com>
6237
6238         * glib/dbus-gproxy.c (dbus_gproxy_manager_get): implement
6239
6240 2003-09-21  Seth Nickell  <seth@gnome.org>
6241
6242         First checkin of the Python bindings.
6243         
6244         * python/.cvsignore:
6245         * python/Makefile.am:
6246         * python/dbus_bindings.pyx.in:
6247         * python/dbus_h_wrapper.h:
6248
6249         Pieces for Pyrex to operate on, building a dbus_bindings.so
6250         python module for low-level access to the DBus APIs.
6251         
6252         * python/dbus.py:
6253
6254         High-level Python module for accessing DBus objects.
6255
6256         * configure.in:
6257         * Makefile.am:
6258
6259         Build stuff for the python bindings.
6260
6261         * acinclude.m4:
6262
6263         Extra macro needed for finding the Python C header files.
6264
6265 2003-09-21  Havoc Pennington  <hp@pobox.com>
6266
6267         * glib/dbus-gproxy.c (dbus_gproxy_manager_new): start
6268         implementing the proxy manager, didn't get very far.
6269
6270         * dbus/dbus-bus.c (dbus_bus_add_match): new
6271         (dbus_bus_remove_match): new
6272
6273         * glib/dbus-gproxy.c (dbus_gproxy_new_for_service): add a
6274         path_name argument; adjust the other not-yet-implemented 
6275         gproxy constructors to be what I think they should be.
6276
6277 2003-09-21  Havoc Pennington  <hp@pobox.com>
6278
6279         * dbus/dbus-bus.c (dbus_bus_get): set exit_on_disconnect to TRUE
6280         by default for message bus connections.
6281
6282         * dbus/dbus-connection.c (dbus_connection_dispatch): exit if
6283         exit_on_disconnect flag is set and we process the disconnected
6284         signal.
6285         (dbus_connection_set_exit_on_disconnect): new function
6286
6287 2003-09-21  Havoc Pennington  <hp@pobox.com>
6288
6289         Get matching rules mostly working in the bus; only actually
6290         parsing the rule text remains. However, the client side of
6291         "signal connections" hasn't been started, this patch is only the
6292         bus side.
6293         
6294         * dbus/dispatch.c: fix for the matching rules changes
6295         
6296         * bus/driver.c (bus_driver_handle_remove_match)
6297         (bus_driver_handle_add_match): send an ack reply from these
6298         method calls
6299
6300         * glib/dbus-gproxy.c (dbus_gproxy_begin_call): fix order of
6301         arguments, reported by Seth Nickell
6302
6303         * bus/config-parser.c (append_rule_from_element): support
6304         eavesdrop=true|false attribute on policies so match rules 
6305         can be prevented from snooping on the system bus.
6306
6307         * bus/dbus-daemon-1.1.in: consistently use terminology "sender"
6308         and "destination" in attribute names; fix some docs bugs; 
6309         add eavesdrop=true|false attribute
6310
6311         * bus/driver.c (bus_driver_handle_add_match)
6312         (bus_driver_handle_remove_match): handle AddMatch, RemoveMatch
6313         messages
6314
6315         * dbus/dbus-protocol.h (DBUS_SERVICE_ORG_FREEDESKTOP_BROADCAST): get
6316         rid of broadcast service concept, signals are just always broadcast
6317
6318         * bus/signals.c, bus/dispatch.c, bus/connection.c, bus/bus.c:
6319         mostly implement matching rules stuff (currently only exposed as signal
6320         connections)
6321
6322 2003-09-21  Mark McLoughlin  <mark@skynet.ie>
6323
6324         * doc/dbus-specification.sgml: Change the header field name
6325         to be an enum and update the rest of the spec to reference
6326         the fields using the conventinal name.
6327
6328         * dbus/dbus-protocol.h: update to reflect the spec.
6329
6330         * doc/TODO: add item to remove the 4 byte alignment requirement.
6331         
6332         * dbus/dbus-message.c: Remove the code to generalise the
6333         header/body length and serial number header fields as named
6334         header fields so we can reference field names using the 
6335         protocol values.
6336         (append_int_field), (append_uint_field), (append_string_field):
6337         Append the field name as a byte rather than four chars.
6338         (delete_int_or_uint_field), (delete_string_field): reflect the
6339         fact that the field name and typecode now occupy 4 bytes instead
6340         of 8.
6341         (decode_string_field), (decode_header_data): update to reflect
6342         protocol changes and move the field specific encoding from
6343         decode_string_field() back into decode_header_data().
6344         
6345         * dbus/dbus-internals.[ch]: (_dbus_header_field_to_string):
6346         Add utility to aid debugging.
6347         
6348         * dbus/dbus-message-builder.c:
6349         (append_string_field), (_dbus_message_data_load): Update to
6350         reflect protocol changes; Change the FIELD_NAME directive
6351         to HEADER_FIELD and allow it to take the field's conventional
6352         name rather than the actual value.
6353         
6354         * test/data/*/*.message: Update to use HEADER_FIELD instead
6355         of FIELD_NAME; Always align the header on an 8 byte boundary
6356         *before* updating the header length.
6357
6358 2003-09-15  Havoc Pennington  <hp@pobox.com>
6359
6360         * dbus/dbus-pending-call.c: add the get/set object data
6361         boilerplate as for DBusConnection, etc. Use generic object data
6362         for the notify callback.
6363
6364         * glib/dbus-gparser.c (parse_node): parse child nodes
6365
6366         * tools/dbus-viewer.c: more hacking on the dbus-viewer
6367         
6368         * glib/dbus-gutils.c (_dbus_gutils_split_path): add a file to
6369         contain functions shared between the convenience lib and the
6370         installed lib
6371
6372         * glib/Makefile.am (libdbus_glib_1_la_LDFLAGS): add
6373         -export-symbols-regex to the GLib library
6374
6375         * dbus/dbus-object-tree.c (_dbus_object_tree_dispatch_and_unlock):
6376         fix the locking in here, and add a default handler for
6377         Introspect() that just returns sub-nodes.
6378
6379 2003-09-14  Havoc Pennington  <hp@pobox.com>
6380
6381         * glib/dbus-gthread.c (dbus_g_thread_init): rename to make g_foo
6382         rather than gfoo consistent
6383
6384         * glib/dbus-gproxy.h: delete for now, move contents to
6385         dbus-glib.h, because the include files don't work right since we
6386         aren't in the dbus/ subdir.
6387         
6388         * glib/dbus-gproxy.c (dbus_gproxy_send): finish implementing
6389         (dbus_gproxy_end_call): finish
6390         (dbus_gproxy_begin_call): finish
6391
6392         * glib/dbus-gmain.c (dbus_set_g_error): new
6393
6394         * glib/dbus-gobject.c (handle_introspect): include information
6395         about child nodes in the introspection
6396
6397         * dbus/dbus-connection.c (dbus_connection_list_registered): new
6398         function to help in implementation of introspection
6399
6400         * dbus/dbus-object-tree.c
6401         (_dbus_object_tree_list_registered_and_unlock): new function
6402
6403 2003-09-12  Havoc Pennington  <hp@pobox.com>
6404
6405         * glib/dbus-gidl.h: add common base class for all the foo_info
6406         types
6407
6408         * tools/dbus-viewer.c: add GTK-based introspection UI thingy
6409         similar to kdcop
6410
6411         * test/Makefile.am: try test srcdir -ef . in addition to test
6412         srcdir = ., one of them should work (yeah lame)
6413         
6414         * glib/Makefile.am: build the "idl" parser stuff as a convenience
6415         library
6416         
6417         * glib/dbus-gparser.h: make description_load routines return
6418         NodeInfo* not Parser*
6419
6420         * Makefile.am (SUBDIRS): build test dir after all library dirs
6421
6422         * configure.in: add GTK+ detection
6423
6424 2003-09-07  Havoc Pennington  <hp@pobox.com>
6425
6426         * Make Doxygen contented.
6427
6428 2003-09-07  Havoc Pennington  <hp@pobox.com>
6429
6430         * doc/dbus-specification.sgml: more updates
6431
6432 2003-09-06  Havoc Pennington  <hp@pobox.com>
6433
6434         * doc/dbus-specification.sgml: partial updates
6435
6436         * bus/dbus-daemon-1.1.in: fix the config file docs for the
6437         zillionth time; hopefully I edited the right file this time.
6438
6439         * bus/config-parser.c (append_rule_from_element): support
6440         send_type, send_path, receive_type, receive_path
6441
6442         * bus/policy.c: add message type and path to the list of things
6443         that can be "firewalled"
6444
6445 2003-09-06  Havoc Pennington  <hp@pobox.com>
6446
6447         * dbus/dbus-connection.c (dbus_connection_register_fallback): add this
6448         (dbus_connection_register_object_path): make this not handle
6449         messages to paths below the given path
6450
6451 2003-09-03  Havoc Pennington  <hp@pobox.com>
6452
6453         * test/glib/Makefile.am: add this with random glib-linked test
6454         programs
6455
6456         * glib/Makefile.am: remove the random test programs from here,
6457         leave only the unit tests
6458
6459         * glib/dbus-gobject.c (_dbus_gobject_test): add test for 
6460         uscore/javacaps conversion, and fix     
6461         (get_object_property, set_object_property): change to .NET
6462         convention for mapping props to methods, set_FooBar/get_FooBar, 
6463         since one language has such a convention we may as well copy it. 
6464         Plus real methods in either getFooBar or get_foo_bar style won't 
6465         collide with this convention.
6466
6467 2003-09-01  Havoc Pennington  <hp@pobox.com>
6468
6469         * glib/dbus-gparser.c: implement
6470
6471         * glib/dbus-gobject.c: start implementing skeletons support
6472
6473         * configure.in: when disabling checks/assert, also define
6474         G_DISABLE_ASSERT and G_DISABLE_CHECKS
6475
6476 2003-09-01  Havoc Pennington  <hp@pobox.com>
6477
6478         * glib/Makefile.am: rearrange a bunch of files and get "make
6479         check" framework set up
6480
6481 2003-08-31  Havoc Pennington  <hp@pobox.com>
6482
6483         * fix build with --disable-tests
6484
6485 2003-08-30  Havoc Pennington  <hp@pobox.com>
6486
6487         * dbus/dbus-connection.c: purge DBusMessageHandler
6488
6489         * dbus/dbus-message-handler.c: remove DBusMessageHandler, just 
6490         use callbacks everywhere
6491
6492 2003-08-30  Havoc Pennington  <hp@pobox.com>
6493
6494         * test/data/valid-config-files/system.d/test.conf: change to 
6495         root for the user so warnings don't get printed
6496
6497         * dbus/dbus-message.c: add dbus_message_get_path,
6498         dbus_message_set_path
6499         
6500         * dbus/dbus-object-tree.c (do_test_dispatch): add test of
6501         dispatching to a path
6502
6503         * dbus/dbus-string.c (_dbus_string_validate_path): add
6504
6505         * dbus/dbus-marshal.c (_dbus_demarshal_object_path): implement
6506         (_dbus_marshal_object_path): implement
6507
6508         * dbus/dbus-protocol.h (DBUS_HEADER_FIELD_PATH): new header field 
6509         to contain the path to the target object
6510         (DBUS_HEADER_FIELD_SENDER_SERVICE): rename
6511         DBUS_HEADER_FIELD_SENDER to explicitly say it's the sender service
6512
6513 2003-08-30  Havoc Pennington  <hp@pobox.com>
6514
6515         * dbus/dbus-object-tree.c: write tests and fix the discovered bugs
6516
6517 2003-08-29  Havoc Pennington  <hp@pobox.com>
6518
6519         * dbus/dbus-object-tree.c: modify to allow overlapping paths to be
6520         registered
6521         (struct DBusObjectSubtree): shrink this
6522         a lot, since we may have a lot of them
6523         (_dbus_object_tree_free_all_unlocked): implement
6524         (_dbus_object_tree_dispatch_and_unlock): implement
6525
6526 2003-08-29  Havoc Pennington  <hp@pobox.com>
6527
6528         * dbus/dbus-internals.h: fix _DBUS_N_GLOBAL_LOCKS
6529
6530 2003-08-28  Havoc Pennington  <hp@pobox.com>
6531
6532         purge DBusObjectID
6533         
6534         * dbus/dbus-connection.c: port to no ObjectID, create a
6535         DBusObjectTree, rename ObjectTree to ObjectPath in public API
6536
6537         * dbus/dbus-connection.h (struct DBusObjectTreeVTable): delete 
6538         everything except UnregisterFunction and MessageFunction
6539         
6540         * dbus/dbus-marshal.c: port away from DBusObjectID, 
6541         add DBUS_TYPE_OBJECT_PATH
6542         
6543         * dbus/dbus-object-registry.[hc], dbus/dbus-object.[hc], 
6544         dbus/dbus-objectid.[hc]: remove these, we are moving to 
6545         path-based object IDs
6546
6547 2003-08-25  Havoc Pennington  <hp@pobox.com>
6548
6549         Just noticed that dbus_message_test is hosed, I wonder when I
6550         broke that. I thought make check was passing earlier...
6551         
6552         * dbus/dbus-object-tree.c: add new "object tree" to match DCOP 
6553         container tree, will replace most of dbus-object-registry
6554
6555         * dbus/dbus-string.c (_dbus_string_append_printf_valist): fix C99
6556         screwup
6557
6558 2003-08-19  Havoc Pennington  <hp@pobox.com>
6559
6560         * dbus/dbus-message.c (decode_string_field): support FIELD_SENDER
6561         (dbus_message_is_error): fix this function
6562
6563         * bus/dbus-daemon-1.1: clarify logic on when <deny>/<allow> rules
6564         match
6565
6566         * bus/policy.c (bus_client_policy_check_can_receive): fix code to
6567         reflect clarified man page
6568         (bus_client_policy_check_can_send): ditto
6569         
6570         * bus/session.conf.in: fixup
6571
6572         * bus/system.conf.in: fixup
6573
6574 2003-08-18  Havoc Pennington  <hp@redhat.com>
6575
6576         * dbus/dbus-hash.c (_dbus_hash_table_insert_two_strings): fix
6577
6578         * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
6579         dumb bug created earlier (wrong order of args to
6580         decode_header_data())
6581         
6582         * tools/dbus-send.c: port
6583
6584         * tools/dbus-print-message.c (print_message): port
6585
6586         * test/data/*messages: port all messages over
6587         
6588         * dbus/dbus-message-builder.c: support including 
6589         message type
6590         
6591         * bus/driver.c: port over
6592         
6593         * bus/dispatch.c: port over to new stuff
6594
6595         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
6596         rename disconnect signal to "Disconnected"
6597
6598 2003-08-17  Havoc Pennington  <hp@pobox.com>
6599
6600         This doesn't compile yet, but syncing up so I can hack on it from
6601         work. What are branches for if not broken code? ;-)
6602         
6603         * dbus/dbus-protocol.h: remove DBUS_HEADER_FIELD_NAME, add
6604         DBUS_HEADER_FIELD_INTERFACE, DBUS_HEADER_FIELD_MEMBER,
6605         DBUS_HEADER_FIELD_ERROR_NAME
6606         
6607         * dbus/dbus-hash.c: Introduce DBUS_HASH_TWO_STRINGS as hack to use
6608         for the interface+member pairs
6609         (string_hash): change to use g_str_hash algorithm
6610         (find_direct_function, find_string_function): refactor these to
6611         share most code.
6612         
6613         * dbus/dbus-message.c: port all of this over to support 
6614         interface/member fields instead of name field
6615
6616         * dbus/dbus-object-registry.c: port over
6617         
6618         * dbus/dbus-string.c (_dbus_string_validate_interface): rename
6619         from _dbus_string_validate_name
6620
6621         * bus/dbus-daemon-1.1: change file format for the 
6622         <deny>/<allow> stuff to match new message naming scheme
6623
6624         * bus/policy.c: port over
6625
6626         * bus/config-parser.c: parse new format
6627         
6628 2003-08-16  Havoc Pennington  <hp@pobox.com>
6629
6630         * dbus/dbus-object-registry.c (add_and_remove_objects): remove
6631         broken assertion
6632
6633         * glib/dbus-gproxy.c: some hacking
6634
6635 2003-08-15  Havoc Pennington  <hp@redhat.com>
6636
6637         * dbus/dbus-pending-call.c (dbus_pending_call_block): implement
6638
6639         * dbus/dbus-connection.c
6640         (dbus_connection_send_with_reply_and_block): factor out internals;
6641         change to convert any error replies to DBusError instead of 
6642         returning them as a message
6643
6644 2003-08-15  Havoc Pennington  <hp@pobox.com>
6645
6646         * dbus/dbus-connection.c, 
6647         dbus/dbus-pending-call.c: Finish the pending call stuff
6648
6649 2003-08-14  Havoc Pennington  <hp@redhat.com>
6650
6651         * dbus/dbus-pending-call.c: start on new object that will replace
6652         DBusMessageHandler and ReplyHandlerData for tracking outstanding
6653         replies
6654
6655         * dbus/dbus-gproxy.c: start on proxy object used to communicate
6656         with remote interfaces
6657
6658         * dbus/dbus-gidl.c: do the boring boilerplate in here
6659         
6660 2003-08-12  Havoc Pennington  <hp@pobox.com>
6661
6662         * bus/dispatch.c (bus_dispatch): make this return proper 
6663         DBusHandlerResult to avoid DBUS_ERROR_UNKNOWN_METHOD
6664
6665         * dbus/dbus-errors.c (dbus_set_error): use
6666         _dbus_string_append_printf_valist
6667
6668         * dbus/dbus-string.c (_dbus_string_append_printf_valist)
6669         (_dbus_string_append_printf): new
6670
6671         * dbus/dbus-errors.h (DBUS_ERROR_UNKNOWN_MESSAGE): change to
6672         UNKNOWN_METHOD
6673
6674         * dbus/dbus-connection.c (dbus_connection_dispatch): handle
6675         DBUS_HANDLER_RESULT_NEED_MEMORY; send default error reply if a
6676         message is unhandled.
6677
6678 2003-08-11  Havoc Pennington  <hp@pobox.com>
6679
6680         * bus/test.c (client_disconnect_handler): change to return
6681         HANDLED (would have been REMOVE_MESSAGE)
6682
6683         * dbus/dbus-object.h (enum DBusHandlerResult): rename to
6684         HANDLED/NOT_YET_HANDLED instead of
6685         REMOVE_MESSAGE/ALLOW_MORE_HANDLERS to make it clearer how it 
6686         should be used.
6687
6688 2003-08-10  Havoc Pennington  <hp@pobox.com>
6689
6690         * tools/dbus-send.c (main): add --type argument, for now
6691         supporting only method_call and signal types.
6692
6693         * tools/dbus-print-message.c: print message type
6694
6695         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
6696         init connection->objects
6697
6698         * doc/dbus-specification.sgml: fix sgml
6699
6700         * bus/*.c: port over to object-instance API changes
6701
6702         * test/test-service.c: ditto
6703         
6704         * dbus/dbus-message.c (dbus_message_create_header): allow #NULL
6705         name, we will have to fix up the rest of the code to also handle
6706         this
6707         (dbus_message_new): generic message-creation call
6708         (set_string_field): allow appending name field
6709
6710 2003-08-06  Havoc Pennington  <hp@pobox.com>
6711
6712         * dbus/dbus-object-registry.c: implement signal connection 
6713         and dispatch
6714
6715         * dbus/dbus-connection.c (_dbus_connection_unref_unlocked): new
6716
6717         * dbus/dbus-internals.c (_dbus_memdup): new function
6718
6719 2003-08-02  Havoc Pennington  <hp@pobox.com>
6720
6721         * dbus/dbus-message.c (dbus_message_get_no_reply)
6722         (dbus_message_set_no_reply): add these and remove
6723         set_is_error/get_is_error
6724
6725         * dbus/dbus-protocol.h, doc/dbus-specification.sgml: 
6726         remove the ERROR flag, since there's now an ERROR type
6727
6728 2003-08-01  Havoc Pennington  <hp@pobox.com>
6729
6730         * dbus/dbus-object-registry.c (_dbus_object_registry_handle_and_unlock):
6731         implement
6732
6733         * dbus/dbus-message.c (dbus_message_get_type): new function
6734
6735         * doc/dbus-specification.sgml: add "type" byte to messages
6736
6737 2003-08-01  Havoc Pennington  <hp@pobox.com>
6738
6739         * dbus/dbus-protocol.h (DBUS_MESSAGE_TYPE_*): introduce
6740         a message type enum to distinguish kinds of message
6741         (DBUS_HEADER_FLAG_NO_REPLY_EXPECTED): flag for a message 
6742         that need not be replied to
6743
6744 2003-08-01  Havoc Pennington  <hp@pobox.com>
6745
6746         * dbus/dbus-marshal.c: adapt to DBusObjectID changes
6747         (unpack_8_octets): fix no-64-bit-int bug
6748
6749         * dbus/dbus-object-registry.c (validate_id): validate the 
6750         connection ID bits, not just the instance ID.
6751
6752         * dbus/dbus-connection.c (_dbus_connection_init_id): initialize
6753         the connection-global 33 bits of the object ID
6754
6755         * dbus/dbus-object-registry.c (info_from_entry): fill in 
6756         object ID in the new way
6757
6758         * dbus/dbus-objectid.h: rather than high/low bits, specifically 
6759         define server/client/instance bits.
6760
6761 2003-07-30  Havoc Pennington  <hp@pobox.com>
6762
6763         * dbus/dbus-connection.c (dbus_connection_register_object): fix
6764         build
6765
6766 2003-07-13  Havoc Pennington  <hp@pobox.com>
6767
6768         * dbus/dbus-object.h (struct DBusObjectVTable): add padding
6769         fields to DBusObjectVTable and DBusObjectInfo
6770
6771 2003-07-12  Havoc Pennington  <hp@pobox.com>
6772
6773         * dbus/dbus-object-registry.c: implement unit test,
6774         fix bugs discovered in process
6775
6776         * dbus/dbus-connection.c: remove handler_table and
6777         register_handler(), add DBusObjectRegistry usage
6778
6779         * dbus/dbus-objectid.c (dbus_object_id_is_null)
6780         (dbus_object_id_set_null): new functions
6781
6782 2003-07-08  Havoc Pennington  <hp@pobox.com>
6783
6784         * dbus/dbus-object.c: implement some of this
6785
6786         * dbus/dbus-object-registry.c
6787         (_dbus_object_registry_add_and_unlock): fill in the object_id out
6788         param
6789         (_dbus_object_registry_new): handle OOM
6790
6791 2003-07-08  Havoc Pennington  <hp@pobox.com>
6792
6793         * dbus/dbus-object.h: sketch out an API for registering objects
6794         with a connection, that allows us to use as little as 24 bytes
6795         per object and lets application code represent an object in 
6796         any conceivable way.
6797
6798         * dbus/dbus-object-registry.c: implement the hard bits of the
6799         DBusConnection aspect of object API. Not yet wired up.
6800         
6801 2003-07-06  Havoc Pennington  <hp@pobox.com>
6802
6803         * dbus/dbus-marshal.c (_dbus_marshal_set_object_id): new function
6804         (_dbus_marshal_object_id): new
6805         (_dbus_demarshal_object_id): new
6806         (_dbus_marshal_get_arg_end_pos): support object ID type, and
6807         consolidate identical switch cases. Don't conditionalize handling
6808         of DBUS_TYPE_UINT64, need to handle the type always.
6809         (_dbus_marshal_validate_arg): consolidate identical cases, and
6810         handle DBUS_TYPE_OBJECT_ID
6811
6812         * dbus/dbus-objectid.c: new file with DBusObjectID data type.
6813
6814         * dbus/dbus-protocol.h: add DBUS_TYPE_OBJECT_ID
6815
6816 2003-09-28  Havoc Pennington  <hp@pobox.com>
6817
6818         * real 0.13 release
6819
6820 2003-09-28  Havoc Pennington  <hp@pobox.com>
6821
6822         * doc/Makefile.am (dbus-specification.html): testing a funky hack
6823         to work with Debian db2html
6824
6825 2003-09-28  Havoc Pennington  <hp@pobox.com>
6826
6827         * configure.in: 0.13
6828
6829         * doc/Makefile.am (dbus-test-plan.html): accept nonexistence of
6830         stylesheet-images for benefit of Debian
6831         
6832         Change back to using filesystem-linked sockets for the system
6833         bus, so only root can create the default system bus address.
6834         
6835         * bus/system.conf.in: change to use
6836         DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
6837
6838         * dbus/Makefile.am (INCLUDES): remove DBUS_SYSTEM_BUS_PATH define
6839         from here.
6840
6841         * configure.in: define DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
6842         here, and AC_DEFINE DBUS_SYSTEM_PATH
6843
6844 2003-08-09  Anders Carlsson  <andersca@codefactory.se>
6845
6846         * doc/TODO:
6847         * doc/busconfig.dtd:
6848         Add busconfig DTD.
6849         
6850 2003-08-09  Anders Carlsson  <andersca@codefactory.se>
6851
6852         * doc/dbus-specification.sgml:
6853         Add activation reply values.
6854         
6855 2003-08-05  Havoc Pennington  <hp@redhat.com>
6856
6857         * configure.in: 0.12
6858
6859 2003-08-05  Anders Carlsson  <andersca@codefactory.se>
6860
6861         * glib/dbus-gmain.c: (watch_fd_new), (watch_fd_ref),
6862         (watch_fd_unref), (dbus_gsource_check), (dbus_gsource_dispatch),
6863         (add_watch), (remove_watch), (create_source):
6864         Refcount fds, fixes some reentrancy issues.
6865         
6866 2003-07-30  Havoc Pennington  <hp@redhat.com>
6867
6868         * dbus/dbus-bus.c (init_connections_unlocked): fix default system
6869         bus address to be abstract if we have abstract sockets
6870
6871         * NEWS: update
6872
6873 2003-07-28  Havoc Pennington  <hp@redhat.com>
6874
6875         * bus/messagebus.in: fix to avoid processname/servicename 
6876         confusion, from Michael Kearey
6877         https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=100965
6878         
6879 2003-07-23  Havoc Pennington  <hp@pobox.com>
6880
6881         * dbus/dbus-message.c (dbus_message_iter_get_named): 
6882         fix from Andy Hanton to remove broken "+1"
6883
6884 2003-07-16  Havoc Pennington  <hp@pobox.com>
6885
6886         * tools/dbus-launch.c (babysit): close stdout/stderr in the
6887         babysitter process, as suggested by Thomas Leonard, so 
6888         an "eval `dbus-launch --exit-with-session`" will actually 
6889         return
6890
6891 2003-07-16  Havoc Pennington  <hp@pobox.com>
6892
6893         * configure.in: print out EXPANDED_* variables in the summary at
6894         the end; clean up the code that computes EXPANDED_ variables and
6895         get the ones using exec_prefix right. Should make things work
6896         when you build without --prefix
6897
6898 2003-06-29  Havoc Pennington  <hp@pobox.com>
6899
6900         * mono/Test.cs (class Test): fire up a main loop and run it
6901
6902         * mono/DBus.cs (DBus): don't g_thread_init since it can only be
6903         done once, the app has to do it
6904
6905 2003-06-26  Havoc Pennington  <hp@pobox.com>
6906
6907         * mono/Connection.cs: set up connection with the glib main loop
6908
6909 2003-07-01  Havoc Pennington  <hp@redhat.com>
6910
6911         * doc/dbus-specification.sgml: clarify the format of a type code,
6912         change suggested by Jim Blandy
6913
6914 2003-06-29  Miloslav Trmac  <mitr@volny.cz>
6915
6916         * doc/Makefile.am:
6917         * tools/Makefile.am: Don't assume srcdir == builddir.
6918
6919         * dbus/dbus-memory.c (dbus_realloc): Don't check guards after shrinking
6920         the allocated block.
6921         (_dbus_memory_test): New function.
6922         * dbus/dbus-test.h: Add _dbus_memory_test ().
6923         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): Call it.
6924
6925         * dbus/dbus-message.c (decode_header_data): Use %.4s instead
6926         of %c%c%c%c.
6927         (dbus_message_new): Remove obsolete @todo.
6928
6929         * dbus/dbus-marshal.c (_dbus_marshal_set_int64)
6930         (_dbus_marshal_set_uint64): Fix comment.
6931
6932         * dbus/dbus-message.c (append_int_field, append_uint_field): Don't
6933         hardcode FIELD_REPLY_SERIAL.
6934
6935         * dbus/dbus-mainloop.c (_dbus_loop_remove_watch)
6936         (_dbus_loop_remove_timeout): Cast function pointers to (void *) for %p
6937
6938         * configure.in: Add -D_POSIX_C_SOURCE=199309L -DBSD_SOURCE to CFLAGS
6939         and disable DBUS_USE_ATOMIC_INT_486 when --enable-ansi is used
6940
6941 2003-06-24  Havoc Pennington  <hp@pobox.com>
6942
6943         * mono/*.cs: Use IntPtr.Zero instead of ((IntPtr) 0)
6944
6945 2003-06-23  Anders Carlsson  <andersca@codefactory.se>
6946
6947         * configure.in:
6948         * gcj/.cvsignore:
6949         * gcj/Hello.java:
6950         * gcj/Makefile.am:
6951         * gcj/TestMessage.java: (TestMessage), (TestMessage.main):
6952         * gcj/org/.cvsignore:
6953         * gcj/org/Makefile.am:
6954         * gcj/org/freedesktop/.cvsignore:
6955         * gcj/org/freedesktop/Makefile.am:
6956         * gcj/org/freedesktop/dbus/.cvsignore:
6957         * gcj/org/freedesktop/dbus/Makefile.am:
6958         * gcj/org/freedesktop/dbus/Message.java: (Message),
6959         (Message.Message):
6960         * gcj/org/freedesktop/dbus/natMessage.cc:
6961         Fix the build system.
6962
6963 2003-06-22  Havoc Pennington  <hp@pobox.com>
6964
6965         * mono/Connection.cs: add more bindings
6966
6967         * dbus/dbus-threads.c (dbus_threads_init): allow calling this
6968         more than once.
6969
6970 2003-06-22  Havoc Pennington  <hp@pobox.com>
6971
6972         * mono/Connection.cs, mono/DBus.cs, mono/Error.cs:
6973         Start wrapping more stuff.
6974
6975 2003-06-22  Havoc Pennington  <hp@pobox.com>
6976
6977         * mono/Message.cs: implement Message.Wrap() that ensures we only
6978         have a single C# wrapper per DBusMessage, assuming it works which
6979         it probably doesn't.
6980
6981         * dbus/dbus-message.c (dbus_message_allocate_data_slot): new
6982         (dbus_message_free_data_slot): new
6983         (dbus_message_set_data): new
6984         (dbus_message_get_data): new
6985
6986 2003-06-22  Havoc Pennington  <hp@pobox.com>
6987
6988         * dbus/dbus-dataslot.c (_dbus_data_slot_allocator_unref)
6989         (_dbus_data_slot_allocator_alloc): rework these to keep a
6990         reference count on each slot and automatically manage a global
6991         slot ID variable passed in by address
6992
6993         * bus/bus.c: convert to new dataslot API
6994
6995         * dbus/dbus-bus.c: convert to new dataslot API
6996
6997         * dbus/dbus-connection.c: convert to new dataslot API
6998
6999         * dbus/dbus-server.c: convert to new dataslot API
7000
7001         * glib/dbus-gmain.c: ditto
7002
7003         * bus/test.c: ditto
7004
7005         * bus/connection.c: ditto
7006
7007 2003-06-22  Anders Carlsson  <andersca@codefactory.se>
7008
7009         * configure.in: Add AM_PROG_GCJ and move AM_PROG_LIBTOOL
7010         after the gcj checks so that the correct configuration tags
7011         will be added to libtool.
7012
7013         * dbus-glib-1.pc.in: No need to specify any includes since
7014         dbus-1.pc.in has those.
7015
7016 2003-06-22  Havoc Pennington  <hp@pobox.com>
7017
7018         * mono/*, gcj/*, configure.in, Makefile.am:
7019         Check in makefiles and subdirs for mono and gcj bindings.
7020         Neither binding actually exists, just trying to get through
7021         all the build and other boring bits.
7022
7023 2003-06-21  Philip Blundell  <philb@gnu.org>
7024
7025         * tools/dbus-monitor.1: Updated.
7026
7027         * tools/dbus-send.1: Likewise.
7028
7029 2003-06-20  Anders Carlsson  <andersca@codefactory.se>
7030
7031         * dbus/dbus-transport-unix.c (unix_handle_watch): Check
7032         for hangup and error after checking read so we won't discard
7033         pending data if both hangup and read are set.
7034
7035 2003-06-19  Philip Blundell  <philb@gnu.org>
7036
7037         * tools/dbus-print-message.c (print_message): Handle BOOLEAN.
7038
7039         * tools/dbus-send.c: Accept both --system and --session.
7040
7041         * tools/dbus-monitor.c: Same here.
7042
7043 2003-06-19  Anders Carlsson  <andersca@codefactory.se>
7044
7045         * glib/dbus-glib.h: Fix so that dbus-glib.h can be used
7046         from C++ (Patch by Miloslav Trmac).
7047
7048 2003-06-15  Joe Shaw  <joe@assbarn.com>
7049
7050         * configure.in: Check for socklen_t.
7051
7052         * dbus/dbus-sysdeps.c: Define socklen_t if it's not defined.
7053
7054         * test/test-segfault.c: Add #include <sys/time.h>
7055
7056         * tools/Makefile.am: Add DBUS_X_CFLAGS to the INCLUDES since
7057         dbus-launch needs it.
7058
7059 2003-06-09  Havoc Pennington  <hp@redhat.com>
7060
7061         * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): don't use
7062         SUN_LEN, it breaks abstract socket usage
7063
7064         * dbus/dbus-internals.c (_dbus_verbose_real): only print PID at
7065         starts of lines.
7066
7067 2003-06-04  Havoc Pennington  <hp@pobox.com>
7068
7069         * dbus/dbus-server.c (dbus_server_listen): allow abstract sockets
7070         using unix:abstract=/foo, and when listening in a tmpdir
7071         i.e. unix:tmpdir=/tmp, always use abstract sockets if we can.
7072
7073         * dbus/dbus-transport.c (_dbus_transport_open): support
7074         unix:abstract=/foo
7075
7076         * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
7077         support abstract sockets
7078
7079         * dbus/dbus-transport-unix.c
7080         (_dbus_transport_new_for_domain_socket): support abstract sockets
7081
7082         * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket): add "abstract"
7083         toggle as an argument, implement abstract namespace support
7084         (_dbus_listen_unix_socket): ditto
7085
7086         * configure.in: add --enable-abstract-sockets and implement
7087         a configure check for autodetection of the right value.
7088
7089 2003-06-01  Havoc Pennington  <hp@pobox.com>
7090
7091         * tools/dbus-cleanup-sockets.c: add utility to clean up sockets
7092         in /tmp (though on Linux this will end up being useless,
7093         when we add abstract namespace support)
7094
7095         * configure.in: define DBUS_SESSION_SOCKET_DIR in addition to
7096         subst'ing it
7097
7098 2003-05-28  Colin Walters  <walters@verbum.org>
7099
7100         * tools/dbus-monitor.c (main): Fix silly typo (s/--session/--system/).
7101
7102 2003-05-18  Anders Carlsson  <andersca@codefactory.se>
7103
7104         * dbus/dbus-message.c (dbus_message_new): Remove @todo.
7105
7106 2003-05-17  Colin Walters  <walters@gnu.org>
7107
7108         * tools/dbus-send.c: Don't exit with an error code if --help was
7109         passed.  Default to using the session bus instead of the system
7110         one.
7111
7112         * tools/dbus-launch.c: Ditto.
7113
7114         * tools/dbus-monitor.c: Ditto.
7115
7116         * tools/dbus-send.1: Update with new arguments.
7117
7118         * tools/dbus-launch.c: Emit code to export variables.  New
7119         arguments -s and -c to specify shell syntax, and a bit of code to
7120         autodetect syntax.  Also, allow specifying a program to run.
7121
7122         * tools/dbus-launch.1: Update with new arguments.
7123
7124         * tools/dbus-send.1: Ditto.
7125
7126         * tools/dbus-monitor.1: Ditto.
7127
7128 2003-05-17  Havoc Pennington  <hp@pobox.com>
7129
7130         * bus/config-parser.c (merge_included): merge in policies from
7131         child configuration file.
7132
7133         * bus/policy.c (bus_policy_merge): function to merge two policies
7134         together
7135
7136 2003-05-16  Havoc Pennington  <hp@redhat.com>
7137
7138         * dbus/dbus-connection.c: disable verbose lock spew
7139
7140         * tools/dbus-send.c: add --print-reply command line option
7141
7142         * tools/dbus-print-message.h (print_message): new util function
7143         shared by dbus-send and dbus-monitor
7144
7145         * tools/dbus-monitor.c (handler_func): exit on disconnect
7146
7147         * dbus/dbus-transport-unix.c (do_reading): if the transport is
7148         disconnected, don't try to use the read_watch
7149
7150         * dbus/dbus-watch.c (dbus_watch_get_enabled): assert watch != NULL
7151         so we can find this bug more easily
7152
7153 2003-05-16  Havoc Pennington  <hp@redhat.com>
7154
7155         * bus/policy.c (free_rule_list_func): avoid a crash when passed
7156         NULL as DBusHashTable is annoyingly likely to do.
7157
7158 2003-05-16  Colin Walters  <walters@verbum.org>
7159
7160         * tools/dbus-monitor.c: Add --session argument and usage()
7161         function.
7162
7163         * tools/dbus-monitor.1: Update with new --session arg.
7164
7165         * bus/Makefile.am (install-data-hook): Create
7166         $(libdir)/dbus-1.0/services so that the session bus is happy.
7167
7168 2003-05-15  Havoc Pennington  <hp@redhat.com>
7169
7170         * dbus/dbus-sysdeps.c (_dbus_atomic_dec, _dbus_atomic_inc): work
7171         on non-x86. ifdef's are evil.
7172
7173 2003-05-15  Havoc Pennington  <hp@redhat.com>
7174
7175         * configure.in: 0.11
7176
7177         * NEWS: update
7178
7179         * bus/Makefile.am (initddir): apparently we are supposed to put
7180         init scripts in /etc/rc.d/init.d not /etc/init.d
7181
7182         * bus/Makefile.am: remove the "you must --enable-tests to make
7183         check" as it broke distcheck
7184
7185         * bus/Makefile.am (install-data-hook): create /etc/dbus-1/system.d
7186
7187 2003-05-13  James Willcox  <jwillcox@gnome.org>
7188
7189         * configure.in:
7190         * bus/activation.c: (bus_activation_service_created),
7191         (bus_activation_activate_service):
7192         * bus/driver.c: (bus_driver_send_service_deleted),
7193         (bus_driver_send_service_created), (bus_driver_send_service_lost),
7194         (bus_driver_send_service_acquired),
7195         (bus_driver_send_welcome_message),
7196         (bus_driver_handle_list_services):
7197         * bus/session.conf.in:
7198         * dbus/dbus-bus.c: (dbus_bus_acquire_service),
7199         (dbus_bus_service_exists), (dbus_bus_activate_service):
7200         * dbus/dbus-bus.h:
7201
7202         Add some convenience API which lets you activate a service, and did a
7203         bunch of s/0/DBUS_TYPE_INVALID/ in calls to dbus_message_append_args()
7204         and dbus_message_get_args()
7205
7206 2003-05-11  Havoc Pennington  <hp@pobox.com>
7207
7208         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix to avoid
7209         calling _dbus_marshal_validate_arg() for every byte in a byte
7210         array, etc.
7211
7212         * dbus/dbus-message-handler.c: use atomic reference counting to
7213         reduce number of locks slightly; the global lock in here sucks
7214
7215         * dbus/dbus-connection.c
7216         (_dbus_connection_update_dispatch_status_and_unlock): variant of
7217         update_dispatch_status that can be called with lock held; then use
7218         in a couple places to reduce locking/unlocking
7219         (dbus_connection_send): hold the lock over the whole function
7220         instead of acquiring it twice.
7221
7222         * dbus/dbus-timeout.c (_dbus_timeout_new): handle OOM
7223
7224         * bus/connection.c (bus_connections_setup_connection): fix access
7225         to already-freed memory.
7226
7227         * dbus/dbus-connection.c: keep a little cache of linked list
7228         nodes, to avoid using the global linked list alloc lock in the
7229         normal send-message case. Instead we just use the connection lock
7230         that we already have to take.
7231
7232         * dbus/dbus-list.c (_dbus_list_find_last): new function
7233
7234         * dbus/dbus-sysdeps.c (_dbus_atomic_inc, _dbus_atomic_dec):
7235         change to use a struct for the atomic type; fix docs,
7236         they return value before increment, not after increment.
7237
7238         * dbus/dbus-string.c (_dbus_string_append_4_aligned)
7239         (_dbus_string_append_8_aligned): new functions to try to
7240         microoptimize this operation.
7241         (reallocate_for_length): break this out of set_length(), to
7242         improve profile info, and also so we can consider inlining the
7243         set_length() part.
7244
7245         * dbus/dbus-message.c (dbus_message_new_empty_header): init data
7246         strings with some preallocation, cuts down on our calls to realloc
7247         a fair bit. Though if we can get the "move entire string to empty
7248         string" optimization below to kick in here, it would be better.
7249
7250         * dbus/dbus-string.c (_dbus_string_move): just call
7251         _dbus_string_move_len
7252         (_dbus_string_move_len): add a special case for moving
7253         an entire string into an empty string; we can just
7254         swap the string data instead of doing any reallocs.
7255         (_dbus_string_init_preallocated): new function
7256
7257 2003-05-11  Havoc Pennington  <hp@pobox.com>
7258
7259         Write a "test-profile" that does echo client-server with threads;
7260         profile reveals lock contention, memcpy/realloc of buffers, and
7261         UTF-8 validation as hot spots. 20% of lock contention eliminated
7262         with dbus_atomic_inc/dec implementation on x86.  Much remaining
7263         contention is global mempool locks for GList and DBusList.
7264
7265         * dbus/dbus-sysdeps.c (_dbus_atomic_inc, _dbus_atomic_dec): add
7266         x86 implementation
7267
7268         * dbus/dbus-connection.c (struct DBusConnection): use
7269         dbus_atomic_t for the reference count
7270
7271         * dbus/dbus-message.c (struct DBusMessage): declare
7272         dbus_atomic_t values as volatile
7273
7274         * configure.in: code to detect ability to use atomic integer
7275         operations in assembly, from GLib patch
7276
7277         * dbus/dbus-internals.c (_dbus_verbose_real): call getpid every
7278         time, tired of it being wrong in threads and forked processes
7279
7280         * glib/test-profile.c: a little program to bounce messages back
7281         and forth between threads and eat CPU
7282
7283         * dbus/dbus-connection.c: add debug spew macros for debugging
7284         thread locks; include config.h at top; fix deadlock in
7285         dbus_connection_flush()
7286
7287 2003-05-08  Havoc Pennington  <hp@pobox.com>
7288
7289         * dbus/dbus-spawn.c: s/_exit/exit/ because it was keeping gcov
7290         data from getting written, and there wasn't a good reason to
7291         use _exit really.
7292
7293         * test/decode-gcov.c (mark_inside_dbus_build_tests): don't count
7294         dbus_verbose lines in test coverage
7295         (main): add list of functions sorted by # of untested blocks
7296         to the coverage report
7297
7298         * dbus/dbus-mempool.c: put some test-only code in DBUS_BUILD_TESTS
7299
7300         * dbus/dbus-marshal.c (_dbus_marshal_test): extend test coverage
7301
7302         * dbus/dbus-message-handler.c (_dbus_message_handler_test):
7303         extend test coverage
7304
7305         * test/data/auth/cancel.auth-script: test canceling an
7306         authentication
7307
7308         * dbus/Makefile.am: remove dbus-server-debug.[hc] for now, as they
7309         aren't used. in CVS history if we end up needing them.
7310
7311 2003-05-04  Havoc Pennington  <hp@pobox.com>
7312
7313         * dbus/dbus-message-handler.c (_dbus_message_handler_test): add
7314         unit test
7315
7316         * dbus/dbus-marshal.c (_dbus_demarshal_string_array): fix this
7317         function, which assumed length was in # of strings, not bytes
7318
7319         * dbus/dbus-message.c (_dbus_message_test): add tests for some
7320         missing coverage
7321
7322         * dbus/dbus-connection.c
7323         (_dbus_connection_queue_received_message): disable function for
7324         now, we are only using it in test mode
7325
7326         * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
7327         remove a mistaken FIXME
7328
7329 2003-05-04  Havoc Pennington  <hp@pobox.com>
7330
7331         * dbus/dbus-connection.c (dbus_connection_preallocate_send):
7332         unlock mutex on successful return, patch from Anders Gustafsson
7333
7334 2003-05-04  Havoc Pennington  <hp@pobox.com>
7335
7336         * dbus-glib-1.pc.in (Requires): fix dependencies, from
7337         Anders Gustafsson
7338
7339 2003-05-04  Havoc Pennington  <hp@pobox.com>
7340
7341         * tools/dbus-launch.c: implement
7342
7343         * bus/main.c (main), bus/bus.c (bus_context_new):
7344         implement --print-pid and --fork
7345
7346 2003-05-03  Havoc Pennington  <hp@redhat.com>
7347
7348         * dbus/dbus-address.c (dbus_parse_address): fix bug when a key in
7349         the address had no value, and add to test suite. Fix and
7350         regression test from Miloslav Trmac
7351
7352 2003-05-03  Havoc Pennington  <hp@pobox.com>
7353
7354         * dbus/dbus-watch.c (dbus_watch_handle): warn and return if a
7355         watch is invalid when handled
7356
7357         * tools/Makefile.am, tools/dbus-launch.c, tools/dbus-launch.1: add
7358         dbus-launch utility to launch the bus from a shell script.  Didn't
7359         actually implement dbus-launch yet, it's just a placeholder still.
7360
7361 2003-05-03  Havoc Pennington  <hp@pobox.com>
7362
7363         * bus/Makefile.am, bus/dbus-daemon-1.1.in: man page for the
7364         daemon; also documents daemon config file, so replaces
7365         doc/config-file.txt. Corrected some stuff from config-file.txt in
7366         the process of moving it.
7367
7368 2003-05-03  Havoc Pennington  <hp@pobox.com>
7369
7370         * tools/Makefile.am, tools/dbus-send.1, tools/dbus-monitor.1:
7371         add some man pages
7372
7373 2003-05-03  Colin Walters  <walters@verbum.org>
7374
7375         * dbus/dbus-sysdeps.c (fill_user_info): Test against
7376         DBUS_UID_UNSET to determine whether to do a uid lookup or not.
7377
7378         * Makefile.am: Update to use new .pc versioning scheme.
7379
7380 2003-05-02  Havoc Pennington  <hp@redhat.com>
7381
7382         * bus/system.conf.in: allow send/receive to/from message bus
7383         service
7384
7385 2003-04-30  Havoc Pennington  <hp@redhat.com>
7386
7387         * configure.in: print a note when building with unit tests and
7388         without assertions
7389
7390 2003-04-30  Havoc Pennington  <hp@redhat.com>
7391
7392         * Makefile.am: add a check-local that complains if you didn't
7393         configure with --enable-tests
7394
7395 2003-04-29  Havoc Pennington  <hp@redhat.com>
7396
7397         * glib/dbus-gmain.c: docs cleanups
7398
7399         * dbus/dbus-types.h: add docs on int64 types
7400
7401         * dbus/dbus-memory.c: fix docs to avoid putting private API in
7402         public API docs section
7403
7404 2003-04-29  Havoc Pennington  <hp@redhat.com>
7405
7406         * dbus-1.pc.in, dbus-glib-1.pc.in: rename these from
7407         dbus-1.0.pc.in, dbus-glib-1.0.pc.in. As these change with the
7408         parallel install API version, not with the D-BUS package version.
7409
7410         * HACKING: move some of README over here
7411
7412         * README: updates, and document API/ABI policy
7413
7414         * configure.in: reindentation
7415
7416 2003-04-29  Havoc Pennington  <hp@redhat.com>
7417
7418         * dbus/dbus.h: add "you have to define DBUS_API_SUBJECT_TO_CHANGE
7419         to use this library" to be sure people have the right
7420         expectations.
7421
7422 2003-04-28  Havoc Pennington  <hp@redhat.com>
7423
7424         * configure.in: add --enable-docs which by default is auto yes if
7425         doxygen and db2html found, no otherwise; but can be forced on/off
7426
7427         * doc/Makefile.am: conditionalize whether to build docs on
7428         --enable-docs
7429
7430 2003-04-28  Havoc Pennington  <hp@redhat.com>
7431
7432         * configure.in: 0.10
7433
7434         * NEWS: update
7435
7436         * bus/system.conf.in: add <includedir>system.d</includedir>
7437
7438         * dbus/dbus-userdb.c (_dbus_user_database_lookup): fix bug when
7439         username was provided but not uid
7440
7441         * bus/config-parser.c (struct BusConfigParser): keep track of
7442         whether the parser is toplevel or was included; change some
7443         of the error handling if it's included.
7444
7445 2003-04-27  Havoc Pennington  <hp@pobox.com>
7446
7447         Unbreak my code...
7448
7449         * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
7450         report correct status if we finish processing authentication
7451         inside this function.
7452
7453         * bus/activation.c (try_send_activation_failure): use
7454         bus_transaction_send_error_reply
7455
7456         * bus/connection.c (bus_connection_get_groups): return an error
7457         explaining the problem
7458
7459         * bus/bus.c (bus_context_check_security_policy): implement
7460         restriction here that inactive connections can only send the
7461         hello message. Also, allow bus driver to send anything to
7462         any recipient.
7463
7464         * bus/connection.c (bus_connection_complete): create the
7465         BusClientPolicy here instead of on-demand.
7466         (bus_connection_get_policy): don't return an error
7467
7468         * dbus/dbus-message.c (dbus_message_new_error_reply): allow NULL
7469         sender field in message being replied to
7470
7471         * bus/bus.c (bus_context_check_security_policy): fix silly typo
7472         causing it to return FALSE always
7473
7474         * bus/policy.c (bus_client_policy_check_can_send): fix bug where
7475         we checked sender rather than destination
7476
7477 2003-04-25  Havoc Pennington  <hp@redhat.com>
7478
7479         test suite is slightly hosed at the moment, will fix soon
7480
7481         * bus/connection.c (bus_connections_expire_incomplete): fix to
7482         properly disable the timeout when required
7483         (bus_connection_set_name): check whether we can remove incomplete
7484         connections timeout after we complete each connection.
7485
7486         * dbus/dbus-mainloop.c (check_timeout): fix this up a bit,
7487         probably still broken.
7488
7489         * bus/services.c (bus_registry_acquire_service): implement max
7490         number of services owned, and honor allow/deny rules on which
7491         services a connection can own.
7492
7493         * bus/connection.c (bus_connection_get_policy): report errors here
7494
7495         * bus/activation.c: implement limit on number of pending
7496         activations
7497
7498 2003-04-25  Havoc Pennington  <hp@redhat.com>
7499
7500         * dbus/dbus-transport.c (_dbus_transport_get_unix_user): fix bug
7501         where we used >= 0 instead of != DBUS_UID_UNSET.
7502
7503 2003-04-25  Havoc Pennington  <hp@redhat.com>
7504
7505         * glib/dbus-gmain.c (remove_watch): fix for a crash when watches
7506         were toggled without add/remove, fix from Anders Gustafsson
7507
7508 2003-04-24  Havoc Pennington  <hp@redhat.com>
7509
7510         * test/data/valid-config-files/basic.conf: add <limit> tags to
7511         this test
7512
7513         * bus/config-parser.h, bus/config-parser.c, bus/bus.c: Implement
7514         <limit> tag in configuration file.
7515
7516 2003-04-24  Havoc Pennington  <hp@redhat.com>
7517
7518         * bus/dispatch.c: somehow missed some name_is
7519
7520         * dbus/dbus-timeout.c (_dbus_timeout_set_enabled)
7521         (_dbus_timeout_set_interval): new
7522
7523         * bus/connection.c (bus_connections_setup_connection): record time
7524         when each connection is first set up, and expire them after the
7525         auth timeout passes.
7526
7527 2003-04-24  Havoc Pennington  <hp@redhat.com>
7528
7529         * dbus/dbus-message.c (dbus_message_name_is): rename
7530         (dbus_message_service_is): rename
7531         (dbus_message_sender_is): rename
7532         (dbus_message_get_service): rename
7533
7534 2003-04-24  Havoc Pennington  <hp@redhat.com>
7535
7536         * configure.in: add --enable-checks
7537
7538         * dbus/dbus-message.c (dbus_message_new): reverse name/service arguments
7539
7540         * dbus/dbus-connection.c (dbus_connection_preallocate_send): fix
7541         to use thread locks.
7542         (_dbus_connection_handler_destroyed_locked): move some private
7543         functions into proper docs group
7544
7545         * dbus/dbus-internals.h: add _dbus_return_if_fail,
7546         _dbus_return_val_if_fail
7547
7548         Throughout: use dbus_return_if_fail
7549
7550 2003-04-23  James Willcox  <jwillcox@gnome.org>
7551
7552         * glib/dbus-glib.h:
7553         * glib/dbus-gmain.c: (add_timeout), (wakeup_main), (create_source),
7554         (dbus_connection_setup_with_g_main),
7555         (dbus_server_setup_with_g_main):
7556         * glib/test-dbus-glib.c: (main):
7557         * glib/test-thread-client.c: (main):
7558         * glib/test-thread-server.c: (new_connection_callback), (main):
7559         * tools/dbus-monitor.c: (main):
7560
7561         Added a GMainContext argument to dbus_connection_setup_with_g_main()
7562         and dbus_server_setup_with_g_main().
7563
7564 2003-04-20  Havoc Pennington  <hp@pobox.com>
7565
7566         * doc/dbus-specification.sgml: document the restrictions on
7567         message and service names
7568
7569 2003-04-22  Havoc Pennington  <hp@redhat.com>
7570
7571         * dbus/dbus-message.c, dbus/dbus-marshal.c: add 64-bit integer
7572         support, and do some code cleanups to share more code and
7573         speed up array marshal/demarshal.
7574
7575         * dbus-1.0.pc.in (Cflags): put libdir include file in cflags
7576
7577         * configure.in: generate dbus-arch-deps.h
7578
7579         * dbus/dbus-protocol.h (DBUS_TYPE_INT64, DBUS_TYPE_UINT64): add
7580         64-bit typecodes
7581
7582 2003-04-22  Havoc Pennington  <hp@redhat.com>
7583
7584         * test/data/valid-messages/opposite-endian.message: fix test
7585         to use proper type for rply field
7586
7587         * test/data/invalid-messages: add tests for below validation
7588
7589         * dbus/dbus-message.c (decode_header_data): validate field types,
7590         and validate that named fields are valid names
7591         (decode_name_field): consider messages in the
7592         org.freedesktop.Local. namespace to be invalid.
7593
7594         * dbus/dbus-string.c (_dbus_string_validate_name): new
7595
7596 2003-04-19  Havoc Pennington  <hp@pobox.com>
7597
7598         * bus/driver.c (bus_driver_handle_hello): check limits and
7599         return an error if they are exceeded.
7600
7601         * bus/connection.c: maintain separate lists of active and inactive
7602         connections, and a count of each. Maintain count of completed
7603         connections per user. Implement code to check connection limits.
7604
7605         * dbus/dbus-list.c (_dbus_list_unlink): export
7606
7607         * bus/bus.c (bus_context_check_security_policy): enforce a maximum
7608         number of bytes in the message queue for a connection
7609
7610 2003-04-18  Havoc Pennington  <hp@pobox.com>
7611
7612         * dbus/dbus-auth.c (record_mechanisms): memleak fixes
7613
7614         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): fix some
7615         memleaks
7616
7617         * dbus/dbus-keyring.c (add_new_key): fix a memleak, and
7618         on realloc be sure to update the pointer in the keyring
7619
7620         * dbus/dbus-string.c (_dbus_string_zero): compensate for align
7621         offset to avoid writing to unallocated memory
7622
7623         * dbus/dbus-auth.c (process_rejected): return FALSE if we fail to
7624         try the next mechanism, so we properly handle OOM
7625
7626         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): fix double-free
7627         on OOM.
7628         (_dbus_keyring_new): fix OOM bug
7629         (_dbus_keyring_new_homedir): always set error; impose a maximum
7630         number of keys we'll load from the file, mostly to speed up the
7631         test suite and make its OOM checks more useful, but also for
7632         general sanity.
7633
7634         * dbus/dbus-auth.c (process_error_server): reject authentication
7635         if we get an error from the client
7636         (process_cancel): on cancel, send REJECTED, per the spec
7637         (process_error_client): send CANCEL if we get an error from the
7638         server.
7639
7640 2003-04-18  Havoc Pennington  <hp@pobox.com>
7641
7642         * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix UMR in verbose
7643         debug spew
7644
7645         * dbus/dbus-auth.c (handle_client_data_cookie_sha1_mech): fix OOM
7646         handling problem
7647
7648         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): only whine
7649         about DBUS_TEST_HOMEDIR once
7650
7651         * bus/Makefile.am (TESTS_ENVIRONMENT): put DBUS_TEST_HOMEDIR in
7652         the environment
7653
7654         * bus/dispatch.c (bus_dispatch_sha1_test): actually load sha1
7655         config file so we test the right thing
7656
7657         Throughout: assorted docs improvements
7658
7659 2003-04-18  Havoc Pennington  <hp@pobox.com>
7660
7661         * glib/dbus-gmain.c: adapt to watch changes
7662
7663         * bus/bus.c, bus/activation.c, etc.: adjust to watch changes
7664
7665         * dbus/dbus-server.h: remove dbus_server_handle_watch
7666
7667         * dbus/dbus-connection.h: remove dbus_connection_handle_watch
7668
7669         * dbus/dbus-watch.c (dbus_watch_handle): change DBusWatch to work
7670         like DBusTimeout, so we don't need dbus_connection_handle_watch
7671         etc.
7672
7673 2003-04-17  Havoc Pennington  <hp@redhat.com>
7674
7675         * dbus/dbus-userdb.c, dbus/dbus-sysdeps.c: redo all the passwd
7676         database usage so it all goes via the DBusUserDatabase cache.
7677
7678 2003-04-17  Havoc Pennington  <hp@redhat.com>
7679
7680         * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix logic so that if
7681         there was an OOM watch we skipped, we always return TRUE so we
7682         iterate again to have a look at it again. Fixes test suite hang.
7683         Code rearrangement also lets us lose some memset and only iterate
7684         over callbacks once.
7685
7686         * bus/driver.c (bus_driver_handle_message): sense of test for
7687         reply was backward
7688
7689 2003-04-16  Havoc Pennington  <hp@pobox.com>
7690
7691         * doc/dbus-specification.sgml: make spec say serials are unsigned
7692
7693         * dbus/dbus-message.h: change message serials to unsigned
7694
7695         * dbus/dbus-connection.c: adapt to message serials being unsigned
7696
7697 2003-04-15  Havoc Pennington  <hp@pobox.com>
7698
7699         * bus/bus.c: create and keep around a shared DBusUserDatabase
7700         object.
7701
7702         * bus/connection.c (bus_connection_get_groups): don't cache
7703         groups for user in the connection object, since user database
7704         object now does that.
7705
7706 2003-04-16  Havoc Pennington  <hp@redhat.com>
7707
7708         * dbus/dbus-message.c (_dbus_message_add_size_counter): keep a
7709         list of size counters
7710         (_dbus_message_loader_putback_message_link): put back a popped link
7711
7712         * dbus/dbus-connection.c
7713         (dbus_connection_set_max_live_messages_size): rename
7714         max_received_size
7715         (dbus_connection_get_outgoing_size): get size of outgoing
7716         queue
7717         (_dbus_connection_set_connection_counter): remove this cruft
7718
7719 2003-04-14  Havoc Pennington  <hp@redhat.com>
7720
7721         * dbus/dbus-userdb.c: user database abstraction, mostly to get
7722         caching, but at some point we might want to be able to use a
7723         different database.
7724
7725         * bus/dispatch.c (bus_dispatch_sha1_test): add a test that uses
7726         SHA1 conf file to test the sha1 auth mechanism, since the regular
7727         test always uses EXTERNAL when available.
7728
7729         * configure.in,
7730         test/data/valid-config-files/debug-allow-all-sha1.conf.in:
7731         add conf file that requires use of sha1 auth
7732
7733 2003-04-13  Havoc Pennington  <hp@pobox.com>
7734
7735         * tools/dbus-send.c, tools/dbus-monitor.c: two utility programs
7736         from Philip Blundell to send messages and monitor them.
7737
7738 2003-04-13  Havoc Pennington  <hp@pobox.com>
7739
7740         * dbus/dbus-mainloop.c: fix some reentrancy issues by refcounting
7741         callbacks
7742
7743         * test/data/valid-config-files/debug-allow-all.conf.in: allow all
7744         users
7745
7746         * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
7747         fix to only recover unused bytes if we're already authenticated
7748         (_dbus_transport_get_is_authenticated): fix to still mark us
7749         authenticated if there are unused bytes.
7750
7751         * bus/dispatch.c: implement security policy checking
7752
7753         * bus/connection.c (bus_transaction_send_from_driver): new
7754
7755         * bus/bus.c (bus_context_check_security_policy): new
7756
7757         * bus/dispatch.c (send_service_nonexistent_error): delete this,
7758         now we just set the DBusError and it gets converted to an error
7759         reply.
7760
7761         * bus/connection.c (allow_user_function): enable code using actual
7762         data from the config file
7763
7764         * bus/policy.c (list_allows_user): handle wildcard rules for
7765         user/group connection perms
7766
7767 2003-04-13  Havoc Pennington  <hp@pobox.com>
7768
7769         * bus/config-parser.c: Load up the BusPolicy and BusPolicyRules
7770
7771         * dbus/dbus-sysdeps.c (_dbus_get_user_id): new function
7772
7773         * bus/policy.c (bus_policy_append_mandatory_rule)
7774         (bus_policy_append_default_rule, bus_policy_append_user_rule)
7775         (bus_policy_append_group_rule): new functions
7776
7777 2003-04-12  Havoc Pennington  <hp@pobox.com>
7778
7779         * bus/config-parser.c (bus_config_parser_new): fix a memleak
7780
7781         * dbus/dbus-sysdeps.c: change DBusCredentials to use longs for
7782         the pid/gid/uid, just for paranoia.
7783
7784         * test/break-loader.c (randomly_do_n_things): find a byte
7785         containing a type code, and randomly change it to a different
7786         type code.
7787
7788 2003-04-12  Havoc Pennington  <hp@pobox.com>
7789
7790         * bus/policy.h: change BusPolicy to be the thing from the config
7791         file, and rename old BusPolicy to BusClientPolicy
7792
7793         * bus/bus.c, bus/connection.c, bus/config-parser.c: change to
7794         match change in how policy works
7795
7796         * dbus/dbus-internals.h: mark assert_not_reached as
7797         __attribute((noreturn))__
7798
7799 2003-04-11  Havoc Pennington  <hp@redhat.com>
7800
7801         * doc/dbus-specification.sgml: fix a spot with the wrong name for
7802         the broadcast service. Use boolean return for ServiceExists.
7803
7804 2003-04-11  Havoc Pennington  <hp@redhat.com>
7805
7806         * configure.in: add another directory to look for qt in.
7807
7808 2003-04-11  Havoc Pennington  <hp@redhat.com>
7809
7810         * AUTHORS: add Colin Walters
7811
7812 2003-04-11  Havoc Pennington  <hp@redhat.com>
7813
7814         * NEWS: update
7815
7816         * configure.in: 0.9
7817
7818 2003-04-11  Havoc Pennington  <hp@redhat.com>
7819
7820         * bus/messagebus.in: remove pid file when stopping the
7821         message bus, since the bus won't have privileges to remove it
7822         itself.
7823
7824 2003-04-11  Havoc Pennington  <hp@redhat.com>
7825
7826         * bus/bus.c (bus_context_new): move credentials change after
7827         creating pidfile
7828
7829 2003-04-11  Havoc Pennington  <hp@pobox.com>
7830
7831         * test/decode-gcov.c: add "below average functions" to the
7832         coverage report, and change how some of the code works.
7833
7834         * bus/test-main.c: bracket some stuff in DBUS_BUILD_TESTS so it's
7835         not in the coverage stats.
7836
7837         * test/test-service.c (main): use _dbus_verbose not fprintf in a
7838         couple places so running the test suite doesn't result in megaspam.
7839
7840 2003-04-11  Havoc Pennington  <hp@pobox.com>
7841
7842         * bus/dispatch.c (check_existent_service_activation): accept a no
7843         memory error in a place we didn't before
7844
7845         * bus/test.c (bus_test_run_everything): remove hacky "do it twice
7846         in case the first one failed," since the test suite is less
7847         broken now.
7848
7849 2003-04-10  Havoc Pennington  <hp@pobox.com>
7850
7851         * bus/dispatch.c (check_segfault_service_activation): add test
7852         for launching an executable that just crashes.
7853
7854         * test/test-segfault.c (main): try setting coredumpsize to 0 so we
7855         don't leave a million cores. We'll see how portable this is.
7856
7857 2003-04-10  Havoc Pennington  <hp@pobox.com>
7858
7859         * dbus/dbus-spawn.c (_dbus_spawn_async_with_babysitter): move all
7860         the possible parent failures before we fork, so that we don't
7861         fail to create a babysitter after creating the child.
7862
7863         * bus/activation.c (bus_activation_activate_service): kill child
7864         if we don't successfully complete the activation.
7865
7866 2003-04-10  Havoc Pennington  <hp@redhat.com>
7867
7868         * dbus/dbus-connection.c (dbus_connection_flush): don't spin on
7869         the connection if it's disconnected
7870
7871         * bus/activation.c (bus_activation_service_created): use new
7872         transaction features to roll back removal of pending activation if
7873         we don't successfully create the service after all. Don't remove
7874         pending activation if the function fails.
7875
7876         * dbus/dbus-list.c (_dbus_list_insert_before_link)
7877         (_dbus_list_insert_after_link): new code to facilitate
7878         services.c fixes
7879
7880         * dbus/dbus-hash.c (_dbus_hash_table_insert_string_preallocated):
7881         new functionality, so we can preallocate the ability to insert
7882         into a hash table.
7883
7884         * bus/connection.c (bus_transaction_add_cancel_hook): new function
7885         allowing us to put custom hooks in a transaction to be used for
7886         cancelling said transaction
7887
7888         * doc/dbus-specification.sgml: add some discussion of secondary
7889         service owners, and disallow zero-length service names
7890
7891         * bus/services.c (bus_registry_acquire_service): new function,
7892         splits out part of bus_driver_handle_acquire_service() and fixes
7893         a bug where we didn't remove the service doing the acquiring
7894         from the secondary queue if we failed to remove the current owner
7895         from the front of the queue.
7896
7897 2003-04-10  Alexander Larsson  <alexl@redhat.com>
7898
7899         * doc/dbus-specification.sgml:
7900         s/org.freedesktop.Broadcast/org.freedesktop.DBus.Broadcast/
7901
7902 2003-04-10  Alexander Larsson  <alexl@redhat.com>
7903
7904         * bus/.cvsignore:
7905         * glib/.cvsignore:
7906         * test/.cvsignore:
7907         Added files to cvsignore
7908
7909         * dbus/dbus-message.h:
7910         * dbus/dbus-message.c: (dbus_message_iter_get_named):
7911         Make get_named() take two out argument and return a boolean.
7912         (dbus_message_iter_get_args_valist):
7913         Update usage of get_named().
7914         (dbus_message_iter_append_byte):
7915         Fix typo
7916         (dbus_message_iter_append_named)
7917         Fix typo
7918         (message_iter_test), (check_message_handling_type), (_dbus_message_test):
7919         More tests.
7920
7921 2003-04-10  Alexander Larsson  <alexl@redhat.com>
7922
7923         * dbus/dbus-marshal.[ch]:
7924         Add array_type_pos argument to _dbus_marshal_validate_arg.
7925         Let you pass a NULL end_pos to _dbus_marshal_validate_type.
7926
7927         * dbus/dbus-message.[ch]:
7928         Multi-dimensional arrays have full type specification in the
7929         outermost array. Iter code re-arranged to handle this.
7930         Added some more iter tests.
7931
7932         * doc/dbus-specification.sgml:
7933         Add me to authors.
7934         Remove old FIXME.
7935         Update new array encoding description.
7936         Correct DBUS_SERVICE_FLAGS_REPLACE_EXISTING description.
7937
7938         * test/data/invalid-messages/array-with-mixed-types.message:
7939         * test/data/valid-messages/array-of-array-of-uint32.message:
7940         Change to the new array format.
7941
7942         * test/data/invalid-messages/too-short-dict.message:
7943         Fix bug in test.
7944
7945         * test/data/valid-messages/recursive-types.message:
7946         Fix up and extend test.
7947
7948 2003-04-10  Havoc Pennington  <hp@pobox.com>
7949
7950         * bus/dispatch.c: lots of fixes
7951
7952         * dbus/dbus-mainloop.c (_dbus_loop_dispatch): export
7953         (_dbus_loop_iterate): remove old "quit if no callbacks" code,
7954         that was crack, broke the test service.
7955
7956         * dbus/dbus-transport.c (_dbus_transport_open): fix error
7957         handling to avoid piling up errors if we get a failure on the
7958         first address.
7959
7960         * dbus/dbus-internals.c (_dbus_real_assert_not_reached): include
7961         pid in assertion failures.
7962
7963         * dbus/dbus-mainloop.c (_dbus_loop_iterate): use static arrays up
7964         to some fixed size of file descriptor array. Don't return TRUE
7965         anytime a timeout exists, that led to lots of busy loop silliness
7966         in the tests.
7967
7968 2003-04-09  Havoc Pennington  <hp@redhat.com>
7969
7970         * dbus/dbus-mainloop.c (check_timeout): fix timeouts, I thought
7971         I'd checked this in earlier but hadn't.
7972
7973 2003-04-09  Havoc Pennington  <hp@redhat.com>
7974
7975         * bus/dispatch.c (bus_dispatch_test): get a bit further through
7976         the activation test (man this is getting old!)
7977
7978 2003-04-09  Havoc Pennington  <hp@redhat.com>
7979
7980         * test/test-utils.c: use dispatch status function to fix this up
7981
7982         * bus/connection.c (connection_watch_callback): don't dispatch
7983         from here
7984         (connection_timeout_callback): don't dispatch from here
7985         (bus_connections_setup_connection): set the dispatch status function
7986         (bus_connection_disconnected): unset it
7987
7988         * dbus/dbus-mainloop.c (_dbus_loop_queue_dispatch): new function
7989         used to add a connection to be dispatched
7990         (_dbus_loop_iterate): do the dispatching at the end of each
7991         iteration
7992
7993         * dbus/dbus-connection.c
7994         (dbus_connection_set_dispatch_status_function): new function
7995         allowing us to fix up main loop usage
7996         (_dbus_connection_last_unref): free all the various function
7997         user data
7998         (dbus_connection_dispatch): call the DispatchStatusFunction
7999         whenever this function returns
8000         (dbus_connection_handle_watch): call DispatchStatusFunction
8001         (dbus_connection_send_with_reply_and_block): call DispatchStatusFunction
8002         (reply_handler_timeout): call DispatchStatusFunction
8003         (dbus_connection_flush): call DispatchStatusFunction
8004
8005 2003-04-09  Havoc Pennington  <hp@redhat.com>
8006
8007         * dbus/dbus-bus.c (dbus_bus_register): fix up error handling and
8008         a memory leak
8009
8010         * bus/dispatch.c (check_service_activated): fix bug in test
8011
8012         * dbus/dbus-mainloop.c (check_timeout): fix this up
8013
8014         * dbus/dbus-internals.c (_dbus_verbose_real): include PID in
8015         verbose output so we can sort out output from different processes,
8016         e.g. in the activation case.
8017
8018 2003-04-08  Colin Walters  <walters@gnu.org>
8019
8020         * bus/bus.c (struct BusContext) [pidfile]: New member, to store
8021         the pid file.
8022         (bus_context_new): Set it.
8023         (bus_context_unref): Use it to delete the pid file.
8024
8025 2003-04-08  Havoc Pennington  <hp@redhat.com>
8026
8027         * test/data/invalid-messages/array-with-mixed-types.message:
8028         regression test that fails for the moment
8029
8030         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): reorder
8031         tests for convenience
8032
8033         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): don't allow
8034         array of nil, it broke things.
8035
8036         * test/data/invalid-messages/array-of-nil.message: regression test
8037
8038         * test/data/valid-messages/array-of-array-of-uint32.message:
8039         happened to write this so added it to suite
8040
8041 2003-04-08  Havoc Pennington  <hp@redhat.com>
8042
8043         * bus/driver.c (bus_driver_handle_acquire_service): init
8044         retval/reply before checking name
8045
8046         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add a
8047         recursion depth argument
8048
8049         * dbus/dbus-message.h (struct DBusMessageIter): put some padding
8050         in the public struct for future extension
8051
8052         * dbus/dbus-message-builder.c (_dbus_message_data_load): fix
8053         typo
8054
8055         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix a verbose
8056         message
8057
8058         * doc/dbus-specification.sgml: fix typo
8059
8060 2003-04-08  Alexander Larsson  <alexl@redhat.com>
8061
8062         Implemented recursive types, named types and new-style iters
8063
8064         * bus/driver.c:
8065         * glib/test-thread-client.c: (thread_func):
8066         * glib/test-thread-server.c: (handle_test_message):
8067         * test/test-service.c: (handle_echo):
8068         Update to new api
8069
8070         * dbus/Makefile.am:
8071         * dbus/dbus-dict.c:
8072         * dbus/dbus-dict.h:
8073         * dbus/dbus.h
8074         Remove DBusDict
8075
8076         * dbus/dbus-internals.c: (_dbus_type_to_string):
8077         Update for new types.
8078
8079         * dbus/dbus-marshal.[ch]:
8080         Implement recursive types and the new marshalling format.
8081         Remove hardcoded dict marshalling.
8082         Marshal named types.
8083
8084         * dbus/dbus-message-builder.c:
8085         Add BYTE_ARRAY.
8086         Remove references to old types
8087
8088         * dbus/dbus-message.[ch]:
8089         New non-refcounted iter API that supports recursive iters.
8090         Use iters for appending, including support for recursive
8091         iters.
8092         Add byte and named type support.
8093         Update everything to new marshalling formats.
8094         Add tests for new API.
8095
8096         * dbus/dbus-protocol.h:
8097         Remove old array types.
8098         Add types: BYTE, ARRAY, DICT, NAMED
8099
8100         * dbus/dbus-string.c:
8101         * dbus/dbus-sysdeps.c:
8102         Make parse_double locale safe.
8103
8104         * dbus/dbus-test-main.c:
8105         Call setlocale.
8106
8107         * dbus/dbus-test.c:
8108         Kill dict test
8109
8110         * doc/dbus-specification.sgml:
8111         Update spec
8112
8113         * test/data/incomplete-messages/missing-body.message:
8114         * test/data/invalid-messages/bad-boolean.message:
8115         * test/data/invalid-messages/bad-boolean-array.message:
8116         * test/data/invalid-messages/boolean-array-length-too-long.message-raw:
8117         * test/data/invalid-messages/boolean-has-no-value.message-raw:
8118         * test/data/invalid-messages/too-short-dict.message:
8119         * test/data/valid-messages/dict-simple.message:
8120         * test/data/valid-messages/dict.message:
8121         * test/data/valid-messages/emptiness.message:
8122         * test/data/valid-messages/lots-of-arguments.message:
8123         * test/data/valid-messages/no-padding.message:
8124         * test/data/valid-messages/recursive-types.message:
8125         Add missing NAME fields
8126         Fix up dicts & arrays
8127
8128         * test/data/invalid-messages/dict-with-nil-value.message:
8129         Removed, this is not invalid anymore.
8130
8131         * test/data/valid-messages/recursive-types.message:
8132         Add new test for deeply recursive types.
8133
8134 2003-04-07  Havoc Pennington  <hp@pobox.com>
8135
8136         * bus/driver.c (bus_driver_handle_acquire_service): return an
8137         error if you try to acquire a service that starts with ':'
8138
8139 2003-04-07  Havoc Pennington  <hp@redhat.com>
8140
8141         * doc/dbus-specification.sgml: require that base service names
8142         start with ':' and that the base service is created/deleted
8143         as first and last things a connection does on the bus
8144
8145         * bus/dispatch.c (check_existent_service_activation): lots more
8146         work on the activation test; it doesn't fully pass yet...
8147
8148         * test/test-service.c (main): fix so we don't memleak the
8149         connection to the message bus
8150         (filter_func): accept a message asking us to exit
8151
8152 2003-04-06  Havoc Pennington  <hp@pobox.com>
8153
8154         * qt/Makefile.am (dbusinclude_HEADERS): install dbus-qt.h,
8155         from Colin Walters
8156
8157         * configure.in: fixes to Qt detection from Colin Walters
8158
8159         * doc/Makefile.am: Only remove generated docbook dirs if they
8160         exist, from Colin Walters
8161
8162         * dbus/dbus-bus.c: change how we set well-known connections to
8163         NULL, so that it works if a single connection is stored in
8164         two well-known array slots.
8165
8166         * test/Makefile.am: remove a lot of stuff that isn't immediately
8167         useful, it's in CVS history if we want it.
8168
8169         * test/test-service.c: use dbus-mainloop instead of that
8170         watch.[hc] crack
8171
8172 2003-04-06  Havoc Pennington  <hp@pobox.com>
8173
8174         * dbus/Makefile.am: split lists of sources into stuff that goes in
8175         the library, util functions that go in the lib and are also used
8176         elsewhere, and util functions that are used in tests/daemon but
8177         don't go in the lib.
8178
8179         * dbus/dbus-mainloop.h, dbus/dbus-mainloop.c: move bus/loop.[hc]
8180         here so it can be used in test binaries also
8181
8182 2003-04-06  Havoc Pennington  <hp@pobox.com>
8183
8184         * dbus/dbus-sysdeps.c (_dbus_become_daemon): write the pidfile
8185         here in the parent process, so we can return an error if it
8186         fails. Also, move some of the code into the child so the parent
8187         is less hosed if we fail midway through.
8188
8189         * bus/bus.c (bus_context_new): move pidfile detection further up
8190         in the function, before we start overwriting sockets and such.
8191
8192         * bus/messagebus.in: adjust this a bit, not sure if it will work.
8193
8194         * configure.in: add --with-system-pid-file and --with-system-socket
8195
8196 2003-04-06  Colin Walters  <walters@verbum.org>
8197
8198         * configure.in (DBUS_SYSTEM_PID_FILE): New variable.
8199
8200         * bus/system.conf.in: Declare a pidfile.
8201
8202         * bus/bus.c (bus_context_new): Test for an existing pid file, and
8203         create one (if appropriate).
8204
8205         * bus/config-parser.c (enum ElementType) [ELEMENT_PIDFILE]: New.
8206         (struct BusConfigParser) [pidfile]: New.
8207         (element_type_to_name, merge_included, start_busconfig_child)
8208         (bus_config_parser_end_element, bus_config_parser_content): Handle it.
8209         (bus_config_parser_unref): Free it.
8210         (bus_config_parser_get_pidfile): New function.
8211
8212         * bus/config-parser.h (_dbus_write_pid_file): Prototype.
8213
8214         * dbus/dbus-errors.h (DBUS_ERROR_PIDFILE_EXISTS): New error.
8215
8216         * dbus/dbus-sysdeps.c (_dbus_write_pid_file): New function.
8217
8218         * dbus/dbus-sysdeps.h: Prototype it.
8219
8220 2003-04-06  Havoc Pennington  <hp@pobox.com>
8221
8222         * bus/bus.c (bus_context_new): print the address in here, rather
8223         than in main(), because we need to do it before forking the daemon
8224
8225         * bus/dispatch.c (send_service_nonexistent_error): set the sender
8226         on the service nonexistent error
8227
8228         * bus/driver.c (bus_driver_handle_acquire_service): set the
8229         sender on the AcquireService reply
8230
8231         * test/data/valid-config-files/debug-allow-all.conf.in: Make test
8232         server also listen on a UNIX socket so services can connect to it.
8233
8234 2003-04-06  Havoc Pennington  <hp@pobox.com>
8235
8236         * dbus/dbus-threads.c: Redo how the fake debug mutexes are done
8237         so it detects deadlocks and also we actually init threads when
8238         debugging.
8239
8240 2003-04-06  Havoc Pennington  <hp@pobox.com>
8241
8242         * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
8243         save the domain socket name, and unlink it when we disconnect the
8244         server. Means that at least when we exit normally, we won't leave
8245         a bunch of junk in /tmp
8246
8247         * dbus/dbus-transport-unix.c
8248         (_dbus_transport_new_for_domain_socket): code cleanup (nicer
8249         memory management). (I was making a real change here but then
8250         didn't)
8251
8252 2003-04-06  Havoc Pennington  <hp@pobox.com>
8253
8254         * bus/bus.c (bus_context_new): fix wrong handling of
8255         server_data_slot_unref() in the error case.
8256
8257         * dbus/dbus-internals.h (_dbus_assert): change so it passes
8258         "(condition) != 0" to _dbus_real_assert so that
8259         "_dbus_assert (pointer)" doesn't cause a warning
8260
8261         * bus/main.c (main): accept --print-address option to print out
8262         the message bus address
8263
8264         * dbus/dbus-sysdeps.c (_dbus_generate_random_ascii): export this
8265
8266         * dbus/dbus-transport.c (_dbus_transport_open): special error for
8267         "tmpdir" option to unix: address on client side
8268
8269         * dbus/dbus-server.c (dbus_server_listen): handle "tmpdir" option
8270         to unix: address
8271
8272         * configure.in (TEST_SOCKET_DIR): locate a temporary directory
8273         we can use to create sockets in the test suite.
8274
8275         * bus/main.c (signal_handler): on SIGTERM, exit the daemon
8276         cleanly. To be used for testing.
8277
8278         * dbus/dbus-spawn.c (babysit): use _dbus_set_signal_handler()
8279
8280         * dbus/dbus-sysdeps.c (_dbus_set_signal_handler): new
8281
8282         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
8283         handle trying to call this when there's no servers active
8284
8285 2003-04-05  Havoc Pennington  <hp@pobox.com>
8286
8287         * NEWS: update
8288
8289         * configure.in: 0.8
8290
8291 2003-04-05  Havoc Pennington  <hp@pobox.com>
8292
8293         * bus/bus.c (setup_server): fix this so dbus-daemon-1 doesn't
8294         crash on startup. Need to get "try starting the daemon"
8295         in the test suite I guess. ;-)
8296
8297         * dbus/dbus-server.h, dbus/dbus-server.c: remove the stuff that
8298         tracked the number of open connections; it's better done in
8299         application-specific code as you want it to span all servers etc.
8300
8301 2003-04-05  Havoc Pennington  <hp@pobox.com>
8302
8303         * bus/Makefile.am (install-data-hook): add missing DESTDIR,
8304         patch from Colin Walters
8305
8306 2003-04-05  Havoc Pennington  <hp@pobox.com>
8307
8308         * doc/config-file.txt (Elements): fix docs of <auth> to reflect
8309         reality; in fact multiple mechanisms are allowed.
8310
8311         * dbus/dbus-internals.c (_dbus_real_assert)
8312         (_dbus_real_assert_not_reached): move guts of _dbus_assert() and
8313         _dbus_assert_not_reached() into functions, so that they don't show
8314         up in basic block counts for test coverage, and don't use up as
8315         much disk space. Does mean slower execution speed though, so
8316         assumes --disable-asserts is the normal production case.
8317
8318 2003-04-05  Havoc Pennington  <hp@pobox.com>
8319
8320         * test/Makefile.am (dist-hook): also dist *.in files
8321
8322         * NEWS: update
8323
8324         * configure.in: 0.7
8325
8326 2003-04-05  Havoc Pennington  <hp@pobox.com>
8327
8328         * dbus/dbus-string.c: docs warning
8329
8330         * dbus/dbus-spawn.c: missing docs
8331
8332         * dbus/dbus-memory.c (struct ShutdownClosure): missing docs
8333
8334 2003-04-05  Havoc Pennington  <hp@pobox.com>
8335
8336         * bus/loop.c (bus_loop_iterate): fix the timeout code, using
8337         magic from GLib
8338
8339         * dbus/dbus-spawn.c (_dbus_babysitter_unref): set sitter_pid
8340         to -1 once we've reaped the babysitter
8341         (_dbus_babysitter_handle_watch): do as much work as we can, not
8342         just one go of it
8343
8344         * bus/activation.c: add code using DBusBabysitter so that we
8345         handle it when a service fails to start up properly.
8346         (bus_activation_service_created): don't remove the activation
8347         entries as we go, just let them get removed when we free the pending
8348         activation. Unref reply messages after sending them.
8349
8350 2003-04-05  Havoc Pennington  <hp@pobox.com>
8351
8352         * test/decode-gcov.c (main): print per-directory stats in the report
8353
8354         * Makefile.am (coverage-report.txt): don't include test/* in gcov stats
8355
8356 2003-04-05  Havoc Pennington  <hp@pobox.com>
8357
8358         * Makefile.am (coverage-report.txt): add target "coverage-report.txt"
8359
8360         * test/decode-gcov.c: hack up a little program to suck data
8361         out of gcov files. Yes this is sort of silly.
8362
8363         * configure.in: define something in config.h and do an
8364         AM_CONDITIONAL when gcov is enabled
8365
8366 2003-04-04  Havoc Pennington  <hp@redhat.com>
8367
8368         * dbus/dbus-spawn.c, dbus/dbus-spawn.h: Change dbus_spawn to
8369         return a "babysitter" object that is used to monitor the status of
8370         the spawned process and reap it when required.
8371
8372         * test/test-segfault.c, test/test-exit.c,
8373         test/test-sleep-forever.c: binaries that do various lame things,
8374         used in the test suite.
8375
8376         * dbus/dbus-sysdeps.c: kill _dbus_errno_to_string()
8377
8378 2003-04-03  Havoc Pennington  <hp@pobox.com>
8379
8380         * dbus/dbus-spawn.c: Move dbus-spawn into a separate file
8381         in preparation for modifying it, dbus-sysdeps is getting
8382         a bit unmanageable.
8383
8384 2003-04-03  Havoc Pennington  <hp@redhat.com>
8385
8386         * bus/loop.h, bus/loop.c: make the mainloop an object so we can
8387         have multiple ones
8388
8389         * bus/*.[hc]: adapt to mainloop change
8390
8391 2003-04-03  Havoc Pennington  <hp@redhat.com>
8392
8393         * bus/activation.c (load_directory): fix up memleaks
8394         (bus_activation_entry_free): free the entry
8395
8396         * dbus/dbus-bus.c (dbus_bus_acquire_service): return an error if
8397         we get one from the message bus; fix memleaks.
8398
8399         * dbus/dbus-message.c (dbus_set_error_from_message): new function
8400
8401 2003-04-03  Havoc Pennington  <hp@pobox.com>
8402
8403         * bus/config-parser.c (bus_config_parser_unref): free
8404         list of mechanisms, bug discovered by test suite enhancements
8405         (putting system.conf and session.conf into suite)
8406
8407         * test/Makefile.am, test/test-service.c: add placeholder for a
8408         test service that we'll activate as part of test suite. Doesn't
8409         do anything yet.
8410
8411         * dbus/dbus-sysdeps.c (_dbus_setenv): support unsetenv by
8412         setting NULL value, and use system malloc not dbus_malloc()
8413         when we have unavoidable memleakage.
8414
8415         * dbus/dbus-bus.c (dbus_bus_get): fix bug where bus type of 0
8416         didn't work, and support DBUS_BUS_ACTIVATION.
8417
8418         * bus/activation.c (child_setup): pass our well-known bus type to
8419         the child
8420
8421         * bus/config-parser.c: support <type> to specify well-known type
8422
8423         * doc/dbus-specification.sgml: document the env variables to
8424         locate well-known buses and find service activator
8425
8426 2003-04-02  Havoc Pennington  <hp@redhat.com>
8427
8428         * test/Makefile.am (all-local): add a rule to copy tests to
8429         builddir, so we can have generated tests. Use this to remove the
8430         silly hack for testing system.conf and session.conf. Will use this
8431         shortly to generate .service files pointing to test binaries.
8432
8433 2003-04-02  Havoc Pennington  <hp@redhat.com>
8434
8435         * dbus/dbus-string.c (set_length): fix a bug - we allocated max of
8436         current alloc and needed new length, not max of the doubled
8437         allocation and needed new length. Also, when building tests,
8438         don't do the double-allocation stuff, just realloc every time.
8439
8440 2003-04-02  Havoc Pennington  <hp@redhat.com>
8441
8442         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): include filenames
8443         in error messages
8444         (_dbus_string_get_dirname): new
8445         (_dbus_sysdeps_test): new
8446         (_dbus_directory_open): include dirnames in error messages
8447
8448         * bus/config-parser.c: interpret <include> and <includedir> and
8449         <servicedir> relative to config file location if the given
8450         filename is not absolute.
8451
8452         * dbus/dbus-string.c (_dbus_string_find_byte_backward): new
8453
8454 2003-04-02  Havoc Pennington  <hp@redhat.com>
8455
8456         * bus/connection.c (bus_transaction_send_error_reply): set sender
8457         service for the error, and unref the reply on success
8458
8459         * bus/activation.c: convert to use BusTransaction so OOM can be
8460         handled correctly
8461         (bus_activation_service_created): set sender of the message
8462
8463 2003-04-01  Havoc Pennington  <hp@redhat.com>
8464
8465         * bus/config-parser.c, bus/bus.c: implement <servicedir> and
8466         <includedir> (at least mostly)
8467
8468         * dbus/dbus-sysdeps.c (_dbus_change_identity): set the group ID
8469         first, then the user ID
8470
8471 2003-04-01  Havoc Pennington  <hp@pobox.com>
8472
8473         * dbus/dbus-server.c (dbus_server_set_auth_mechanisms): new
8474         function
8475
8476         * dbus/dbus-auth.c (_dbus_auth_set_mechanisms): new
8477
8478         * dbus/dbus-internals.c (_dbus_dup_string_array): new function
8479
8480         * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): chmod the
8481         socket 0777, and unlink any existing socket.
8482
8483         * bus/bus.c (bus_context_new): change our UID/GID and fork if
8484         the configuration file so specifies; set up auth mechanism
8485         restrictions
8486
8487         * bus/config-parser.c (bus_config_parser_content): add support
8488         for <fork> option and fill in code for <auth>
8489
8490         * bus/system.conf.in: add <fork/> to default configuration,
8491         and limit auth mechanisms to EXTERNAL
8492
8493         * doc/config-file.txt (Elements): add <fork>
8494
8495         * dbus/dbus-sysdeps.c (_dbus_become_daemon): new function
8496         (_dbus_change_identity): new function
8497
8498 2003-03-31  Havoc Pennington  <hp@redhat.com>
8499
8500         * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket)
8501         (_dbus_listen_unix_socket): fix off-by-one error in null
8502         termination spotted by Nalin
8503
8504 2003-03-31  Havoc Pennington  <hp@redhat.com>
8505
8506         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): allow setting
8507         DBUS_TEST_HOMEDIR when tests are enabled, so we can test without
8508         having a real home directory available.
8509
8510 2003-03-31  Havoc Pennington  <hp@redhat.com>
8511
8512         * bus/Makefile.am (install-data-hook): create /var/run/dbus
8513
8514         * bus/messagebus.in: add init script for Red Hat /etc/init.d
8515
8516         * configure.in: add support for specifying a style of init script
8517         to install
8518
8519 2003-03-31  Havoc Pennington  <hp@redhat.com>
8520
8521         Fix some annoying DBusString API and fix all affected code.
8522
8523         * dbus/dbus-string.c (_dbus_string_init): get rid of annoying
8524         max_length argument
8525         (_dbus_string_get_data): change to return string instead of using
8526         an out param
8527         (_dbus_string_get_const_data): ditto
8528         (_dbus_string_get_data_len): ditto
8529         (_dbus_string_get_const_data_len): ditto
8530
8531 2003-03-31  Havoc Pennington  <hp@redhat.com>
8532
8533         * bus/main.c (main): fix up the command line arguments to be nicer
8534
8535 2003-03-31  Havoc Pennington  <hp@redhat.com>
8536
8537         * dbus/Makefile.am (INCLUDES): use EXPANDED_LOCALSTATEDIR to
8538         define DBUS_SYSTEM_BUS_PATH as we want to compile in the same
8539         final location that lands in the config file
8540
8541         * bus/config-loader-expat.c (bus_config_load): fix type of
8542         XML_Parser variable
8543
8544         * doc/TODO: remove TODO item for dbus_bus_get()
8545
8546         * dbus/dbus-bus.c (bus_data_free): add missing lock/unlock
8547
8548 2003-03-31  Havoc Pennington  <hp@pobox.com>
8549
8550         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_domain_socket)
8551         (_dbus_transport_new_for_tcp_socket): these didn't need the "server"
8552         argument since they are always client side
8553
8554         * dbus/dbus-server.c (dbus_server_get_address): new function
8555
8556         * bus/main.c (main): take the configuration file as an argument.
8557
8558         * test/data/valid-config-files/debug-allow-all.conf: new file to
8559         use with dispatch.c tests for example
8560
8561         * bus/test-main.c (main): require test data dir
8562
8563         * bus/bus.c (bus_context_new): change this to take a
8564         configuration file name as argument
8565
8566         * doc/config-file.txt (Elements): add <servicedir>
8567
8568         * bus/system.conf, bus/session.conf: new files
8569
8570         * dbus/dbus-bus.c (dbus_bus_get): look for system bus on
8571         well-known socket if none set
8572
8573         * configure.in: create system.conf and session.conf
8574
8575 2003-03-30  Havoc Pennington  <hp@pobox.com>
8576
8577         * bus/config-parser.c: hacking
8578
8579         * dbus/dbus-memory.c: don't use DBusList for the list of stuff
8580         to shut down, since it could cause weirdness with the DBusList
8581         lock
8582
8583         * dbus/dbus-list.c (_dbus_list_test): add tests for the
8584         link-oriented stack routines
8585         (alloc_link): free the mempool if the first alloc from it fails
8586
8587         * dbus/dbus-mempool.c (struct DBusMemBlock): fix alignment issue
8588
8589         * dbus/dbus-string.c (UNICODE_VALID): sync new version of this
8590         from GLib
8591         (_dbus_string_skip_white): new
8592
8593         * doc/config-file.txt (Elements): add <includedir>
8594
8595 2003-03-28  Havoc Pennington  <hp@pobox.com>
8596
8597         * dbus/dbus-string.c (_dbus_string_copy_data_len)
8598         (_dbus_string_copy_data): new functions
8599
8600 2003-03-28  Anders Carlsson  <andersca@codefactory.se>
8601
8602         * dbus/dbus-bus.c: (bus_data_free), (dbus_bus_get):
8603         * dbus/dbus-bus.h:
8604         Add dbus_bus_get.
8605
8606         * dbus/dbus-memory.c:
8607         Fix a doc comment.
8608
8609 2003-03-28  Havoc Pennington  <hp@pobox.com>
8610
8611         * bus/test.c (bus_test_flush_bus): remove the sleep from here,
8612         I think it may have just been superstition. Not sure.
8613
8614         * dbus/dbus-string.c (_dbus_string_base64_decode): catch some OOM
8615         failures that were not being handled.
8616
8617         * dbus/dbus-auth.c (process_auth): fix a memleak in OOM handling
8618
8619         * dbus/dbus-memory.c: add ability to set number of mallocs in a
8620         row that will fail on out-of-memory.
8621
8622         * dbus/dbus-internals.c (_dbus_test_oom_handling): convenience
8623         function for testing out-of-memory handling.
8624
8625         * bus/config-loader-expat.c (memsuite): don't wrap the dbus
8626         allocation functions, they do map exactly to the expat ones.
8627
8628 2003-03-27  Havoc Pennington  <hp@redhat.com>
8629
8630         * bus/config-loader-libxml.c (bus_config_load): add another error
8631         check
8632
8633 2003-03-26  Anders Carlsson  <andersca@codefactory.se>
8634
8635         * doc/TODO:
8636         Add note about automatic service activation.
8637
8638         * doc/dbus-specification.sgml:
8639         Rename the specification and clarify a few things.
8640
8641 2003-03-26  Anders Carlsson  <andersca@codefactory.se>
8642
8643         * Doxyfile.in:
8644         * dbus/dbus-address.c:
8645         * dbus/dbus-dict.c:
8646         * dbus/dbus-marshal.c:
8647         * dbus/dbus-server-debug-pipe.c:
8648         * dbus/dbus-transport-unix.c:
8649         Fix documentation warnings.
8650
8651 2003-03-26  Havoc Pennington  <hp@pobox.com>
8652
8653         * bus/test-main.c, dbus/dbus-test.c (main): check memleaks
8654         after every test so it's quick and easy to see which leaked, and
8655         so we test multiple dbus_shutdown() calls
8656
8657         * configure.in: change configure.in XML stuff to also support
8658         expat
8659
8660         * config-loader-libxml.c: some hacking
8661
8662         * config-loader-expat.c: some hacking
8663
8664         * config-parser.c: some hacking, plus tests
8665
8666 2003-03-25  Havoc Pennington  <hp@redhat.com>
8667
8668         * throughout - add more _DBUS_ASSERT_ERROR_IS_CLEAR
8669
8670         * configure.in: add --with-xml option to specify XML library,
8671         right now only libxml is supported.
8672
8673         * bus/config-loader-libxml.c, config-parser.c: sync some minor
8674         nonworking code between home and work, still just stubs
8675
8676 2003-03-24  Havoc Pennington  <hp@redhat.com>
8677
8678         * dbus/dbus-sysdeps.c (_dbus_set_fd_nonblocking): move to this
8679         file
8680
8681         * dbus/dbus-errors.c (dbus_set_error, dbus_set_error_const): allow
8682         NULL argument for "message" if the error is a well-known one,
8683         fill in a generic message in this case.
8684
8685         * dbus/dbus-errors.h (DBusResultCode): Kill DBusResultCode in
8686         favor of DBusError
8687
8688         * bus/test.c (bus_test_flush_bus): add
8689
8690         * bus/policy.c (bus_policy_test): test code stub
8691
8692 2003-03-24  Havoc Pennington  <hp@pobox.com>
8693
8694         * bus/connection.c (bus_connections_setup_connection): set up
8695         the "can this user connect" function, but it always returns
8696         TRUE until we have a config file parser so we can have a config
8697         file that allows connections.
8698
8699 2003-03-23  Havoc Pennington  <hp@pobox.com>
8700
8701         * dbus/dbus-threads.c (dbus_mutex_new, dbus_condvar_new): with
8702         DBUS_BUILD_TESTS, actually alloc/free a block of memory for
8703         the mutex, so we can check for proper memory management
8704         and OOM handling.
8705
8706         * dbus/dbus-dataslot.c: remove the mutex from
8707         DBusDataSlotAllocator and lock it manually when using it,
8708         to simplify fitting it into the global slots framework.
8709
8710         * dbus/dbus-threads.c (init_static_locks): rework how we're
8711         handling global locks so they are easily shut down.
8712
8713         * bus/policy.c (bus_policy_append_rule): fix
8714
8715         * bus/test-main.c (main): check for memleaks
8716
8717         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): make
8718         test suite check for memleaks
8719
8720         * dbus/dbus-memory.c: add support in test mode for tracking
8721         number of outstanding blocks
8722
8723 2003-03-23  Havoc Pennington  <hp@pobox.com>
8724
8725         * bus/policy.c, bus/bus.c, bus/connection.c: implement allow/deny
8726         policies code
8727
8728         * dbus/dbus-hash.h: add ULONG hash keys
8729
8730         * dbus/dbus-sysdeps.c (_dbus_get_groups): new
8731         (_dbus_get_group_id): new function
8732
8733 2003-03-20  Havoc Pennington  <hp@redhat.com>
8734
8735         * dbus/dbus-connection.c (dbus_connection_set_unix_user_function):
8736         new function
8737         (dbus_connection_get_unix_user): new function
8738
8739 2003-03-20  Havoc Pennington  <hp@pobox.com>
8740
8741         * bus/connection.c (bus_connection_send_oom_error): assert that
8742         message has a sender
8743         (connection_execute_transaction): ditto
8744         (bus_connection_preallocate_oom_error): fix to set the sender, and
8745         set recipient to the destination service, not the bus driver
8746
8747         * bus/policy.c: hacking
8748
8749         * dbus/dbus-message.c (dbus_message_service_is): new function
8750         (dbus_message_sender_is): new
8751
8752 2003-03-19  Havoc Pennington  <hp@redhat.com>
8753
8754         * bus/policy.c: start sketching code for policy restrictions on
8755         what connections can do.
8756
8757 2003-03-18  Havoc Pennington  <hp@redhat.com>
8758
8759         * doc/TODO: some notes on high-level todo items. Little nitpick
8760         stuff is all in @todo, so no need to add it here.
8761
8762         * doc/config-file.txt: some notes on how config file might look
8763
8764 2003-03-18  Anders Carlsson  <andersca@codefactory.se>
8765
8766         * configure.in: 0.6
8767
8768         * NEWS: Update.
8769
8770 2003-03-17  Havoc Pennington  <hp@redhat.com>
8771
8772         * dbus/dbus-internals.h: add gcc attributes so that
8773         our printf-style functions warn on bad arguments to
8774         format
8775
8776         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): fix printf
8777         format bug
8778
8779         * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
8780         printf format bug
8781
8782 2003-03-17  Havoc Pennington  <hp@redhat.com>
8783
8784         * bus/test-main.c (main): make it print something as it runs
8785         so make check doesn't look stuck
8786
8787         * doc/negotiation.txt, doc/dbus-sasl-profile.txt: remove
8788         from CVS, now obsolete
8789
8790 2003-03-17  Anders Carlsson  <andersca@codefactory.se>
8791
8792         * bus/dispatch.c: (bus_dispatch):
8793         Refetch the service name since it may have been reallocated
8794         when dbus_message_set_sender was called.
8795
8796         * dbus/dbus-sysdeps.c: (_dbus_accept):
8797         Add address and address length variables and use them to stop
8798         valgrind from complaining.
8799
8800 2003-03-17  Havoc Pennington  <hp@pobox.com>
8801
8802         All tests pass, no memleaks, no valgrind complaints.
8803
8804         * bus/test.c: refcount handler_slot
8805
8806         * bus/connection.c (bus_connections_new): refcount
8807         connection_data_slot
8808
8809         * dbus/dbus-auth-script.c (_dbus_auth_script_run): delete unused
8810         bytes so that auth scripts pass.
8811
8812         * bus/dispatch.c: init message_handler_slot so it gets allocated
8813         properly
8814
8815         * bus/dispatch.c (message_handler_slot_ref): fix memleak
8816
8817         * dbus/dbus-server-debug-pipe.c (_dbus_server_debug_pipe_new):
8818         dealloc server_pipe_hash when no longer used for benefit of
8819         leak checking
8820
8821         * dbus/dbus-auth.c (process_command): memleak fix
8822
8823         * bus/dispatch.c (check_hello_message): memleak fix
8824
8825 2003-03-16  Havoc Pennington  <hp@pobox.com>
8826
8827         * dbus/dbus-bus.c (ensure_bus_data): fix double-unref of the data slot
8828
8829 2003-03-17  Anders Carlsson  <andersca@codefactory.se>
8830
8831         * bus/activation.c (bus_activation_activate_service): Append
8832         the pending activation entry to the list of pending activations.
8833
8834 2003-03-16  Havoc Pennington  <hp@pobox.com>
8835
8836         * bus/dispatch.c (bus_dispatch_test): remove double-unrefs of
8837         connections
8838
8839         * dbus/dbus-address.c (create_entry): fix OOM handling when
8840         failing to alloc entry->method
8841
8842 2003-03-16  Havoc Pennington  <hp@pobox.com>
8843
8844         * dbus/dbus-watch.c (_dbus_watch_new): handle failure to malloc
8845         the watch
8846
8847         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
8848         add some missing dbus_set_result
8849
8850         * bus/dispatch.c (bus_dispatch_add_connection): handle failure to
8851         alloc the DBusMessageHandler
8852
8853         * dbus/dbus-transport.c (_dbus_transport_disconnect): don't ref
8854         the transport here, since we call this from the finalizer; it
8855         resulted in a double-finalize.
8856
8857         * dbus/dbus-transport.c (_dbus_transport_disconnect): fix a bug
8858         where we tried to use transport->connection that was NULL,
8859         happened when transport was disconnected early on due to OOM
8860
8861         * bus/*.c: adapt to handle OOM for watches/timeouts
8862
8863         * dbus/dbus-transport-unix.c: port to handle OOM during
8864         watch handling
8865
8866         * dbus/dbus-auth.c (_dbus_auth_get_unused_bytes): return a
8867         reference to unused bytes instead of a copy
8868
8869         * dbus/dbus-server.c (dbus_server_handle_watch): return FALSE for
8870         out of memory
8871
8872         * dbus/dbus-connection.c (dbus_connection_handle_watch): return
8873         FALSE on OOM
8874
8875         * dbus/dbus-timeout.c (dbus_timeout_handle): return FALSE for out
8876         of memory
8877
8878 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
8879
8880         * doc/dbus-specification.sgml:
8881         Document reply message for ActivateService.
8882
8883 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
8884
8885         * bus/activation.c: (bus_pending_activation_entry_free),
8886         (bus_pending_activation_free), (bus_activation_new),
8887         (bus_activation_unref), (bus_activation_service_created),
8888         (bus_activation_activate_service):
8889         * bus/activation.h:
8890         * bus/bus.c: (bus_context_new):
8891         * bus/desktop-file.c: (new_section):
8892         * bus/driver.c: (bus_driver_send_service_deleted),
8893         (bus_driver_handle_activate_service):
8894         * bus/services.c: (bus_registry_new), (bus_registry_ensure):
8895         * bus/services.h:
8896         * dbus/dbus-connection.c:
8897         (dbus_connection_send_with_reply_and_block):
8898         * dbus/dbus-message.c: (dbus_message_append_args_valist):
8899         * dbus/dbus-protocol.h:
8900         Make activation work better. Now pending activations will be queued
8901         and the daemon won't try to activate services that are already registered.
8902
8903 2003-03-16  Havoc Pennington  <hp@pobox.com>
8904
8905         * dbus/dbus-bus.c (ensure_bus_data): handle failure to set
8906         connection data
8907
8908         * dbus/dbus-memory.c (_dbus_initialize_malloc_debug): support
8909         DBUS_MALLOC_BACKTRACES to print trace when failing an alloc
8910
8911 2003-03-16  Havoc Pennington  <hp@pobox.com>
8912
8913         * dbus/dbus-string.c (_dbus_string_validate_utf8): oops, unbreak
8914         this. always run the test suite before commit...
8915
8916         * bus/*: adapt to DBusConnection API changes
8917
8918         * glib/dbus-gmain.c: adapt to DBusConnection API changes,
8919         requires renaming stuff to avoid dbus_connection_dispatch name
8920         conflict.
8921
8922         * dbus/dbus-transport.c (_dbus_transport_queue_messages): new
8923         function
8924
8925         * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
8926         separate from _dbus_message_loader_return_buffer()
8927
8928         * dbus/dbus-connection.c (dbus_connection_get_n_messages): remove
8929         this, because it's now always broken to use; the number of
8930         messages in queue vs. the number still buffered by the message
8931         loader is undefined/meaningless. Should use
8932         dbus_connection_get_dispatch_state().
8933         (dbus_connection_dispatch): rename from
8934         dbus_connection_dispatch_message
8935
8936 2003-03-16  Havoc Pennington  <hp@pobox.com>
8937
8938         * dbus/dbus-string.c (_dbus_string_validate_utf8): copy in a real
8939         implementation
8940
8941 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
8942
8943         * dbus/dbus-connection.c:
8944         (dbus_connection_send_with_reply_and_block):
8945         Decrease connection->n_incoming when removing an entry
8946         from the list.
8947         * dbus/dbus-dict.c: (dbus_dict_entry_free),
8948         (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
8949         (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
8950         (dbus_dict_set_byte_array), (dbus_dict_set_string_array),
8951         (dbus_dict_get_boolean_array), (dbus_dict_get_double_array),
8952         (dbus_dict_get_byte_array):
8953         Handle NULL arrays and strings. Also add support for byte arrays.
8954
8955         * dbus/dbus-marshal.c: (_dbus_marshal_byte_array),
8956         (_dbus_marshal_dict), (_dbus_demarshal_byte_array),
8957         (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
8958         (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
8959         (_dbus_demarshal_dict), (demarshal_and_validate_len),
8960         (_dbus_marshal_validate_arg), (_dbus_marshal_test):
8961         * dbus/dbus-marshal.h:
8962         Add support for marshalling and demarshalling empty arrays and strings.
8963
8964         * dbus/dbus-message.c: (dbus_message_append_args_valist),
8965         (dbus_message_append_string_array),
8966         (dbus_message_iter_get_boolean),
8967         (dbus_message_iter_get_boolean_array),
8968         (dbus_message_iter_get_int32_array),
8969         (dbus_message_iter_get_uint32_array),
8970         (dbus_message_iter_get_double_array),
8971         (dbus_message_iter_get_byte_array),
8972         (dbus_message_iter_get_string_array), (dbus_message_iter_get_dict),
8973         (check_message_handling):
8974         Add support for getting empty arrays and dicts.
8975
8976         * dbus/dbus-string.c: (_dbus_string_validate_utf8):
8977         Don't do any validation at all for now, that's better than just checking
8978         for ASCII.
8979
8980         * test/data/valid-messages/emptiness.message:
8981         New test message with lots of empty arrays.
8982
8983 2003-03-16  Havoc Pennington  <hp@pobox.com>
8984
8985         * dbus/dbus-connection.c
8986         (_dbus_connection_queue_received_message_link): new function that
8987         can't fail due to OOM
8988
8989         * dbus/dbus-message.c (_dbus_message_loader_pop_message_link):
8990         new function pops a message together with a list link
8991         containing it.
8992
8993         * dbus/dbus-transport-unix.c (queue_messages): use new link-based
8994         message queuing functions to avoid needing to alloc memory
8995
8996 2003-03-16  Havoc Pennington  <hp@pobox.com>
8997
8998         Oops - test code was only testing failure of around 30 of the
8999         mallocs in the test path, but it turns out there are 500+
9000         mallocs. I believe this was due to misguided linking setup such
9001         that there was one copy of dbus_malloc etc. in the daemon and one
9002         in the shared lib, and only daemon mallocs were tested. In any
9003         case, the test case now tests all 500+ mallocs, and doesn't pass
9004         yet, though there are lots of fixes in this patch.
9005
9006         * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
9007         this so that it doesn't need to allocate memory, since it
9008         has no way of indicating failure due to OOM (and would be
9009         annoying if it did).
9010
9011         * dbus/dbus-list.c (_dbus_list_pop_first_link): new function
9012
9013         * bus/Makefile.am: rearrange to create two self-contained
9014         libraries, to avoid having libraries with overlapping symbols.
9015         that was resulting in weirdness, e.g. I'm pretty sure there
9016         were two copies of global static variables.
9017
9018         * dbus/dbus-internals.c: move the malloc debug stuff to
9019         dbus-memory.c
9020
9021         * dbus/dbus-list.c (free_link): free list mempool if it becomes
9022         empty.
9023
9024         * dbus/dbus-memory.c (_dbus_disable_mem_pools): new function
9025
9026         * dbus/dbus-address.c (dbus_parse_address): free list nodes
9027         on failure.
9028
9029         * bus/dispatch.c (bus_dispatch_add_connection): free
9030         message_handler_slot when no longer using it, so
9031         memory leak checkers are happy for the test suite.
9032
9033         * dbus/dbus-server-debug-pipe.c (debug_finalize): free server name
9034
9035         * bus/bus.c (new_connection_callback): disconnect in here if
9036         bus_connections_setup_connection fails.
9037
9038         * bus/connection.c (bus_connections_unref): fix to free the
9039         connections
9040         (bus_connections_setup_connection): if this fails, don't
9041         disconnect the connection, just be sure there are no side
9042         effects.
9043
9044         * dbus/dbus-string.c (undo_alignment): unbreak this
9045
9046         * dbus/dbus-auth.c (_dbus_auth_unref): free some stuff we were
9047         leaking
9048         (_dbus_auth_new): fix the order in which we free strings
9049         on OOM failure
9050
9051         * bus/connection.c (bus_connection_disconnected): fix to
9052         not send ServiceDeleted multiple times in case of memory
9053         allocation failure
9054
9055         * dbus/dbus-bus.c (dbus_bus_get_base_service): new function to
9056         get the base service name
9057         (dbus_bus_register_client): don't return base service name,
9058         instead store it on the DBusConnection and have an accessor
9059         function for it.
9060         (dbus_bus_register_client): rename dbus_bus_register()
9061
9062         * bus/dispatch.c (check_hello_message): verify that other
9063         connections on the bus also got the correct results, not
9064         just the one sending hello
9065
9066 2003-03-15  Havoc Pennington  <hp@pobox.com>
9067
9068         Make it pass the Hello handling test including all OOM codepaths.
9069         Now to do other messages...
9070
9071         * bus/services.c (bus_service_remove_owner): fix crash when
9072         removing owner from an empty list of owners
9073         (bus_registry_ensure): don't leave service in the list of
9074         a connection's owned services if we fail to put the service
9075         in the hash table.
9076
9077         * bus/connection.c (bus_connection_preallocate_oom_error): set
9078         error flag on the OOM error.
9079
9080         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
9081         handle _dbus_transport_set_connection failure
9082
9083         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd): modify
9084         to create watches up front and simply enable/disable them as
9085         needed.
9086         (unix_connection_set): this can now fail on OOM
9087
9088         * dbus/dbus-timeout.c, dbus/dbus-watch.c: add concept
9089         of enabling/disabling a watch or timeout.
9090
9091         * bus/loop.c (bus_loop_iterate): don't touch disabled
9092         watches/timeouts
9093
9094         * glib/dbus-gmain.c: adapt to enable/disable watches and timeouts
9095
9096 2003-03-15  Havoc Pennington  <hp@pobox.com>
9097
9098         * bus/dispatch.c (bus_dispatch_test): OK, now finally actually
9099         write useful test code, after all that futzing around ;-)
9100
9101         Test does not yet pass because we can't handle OOM in
9102         _dbus_transport_messages_pending (basically,
9103         dbus_connection_preallocate_send() does not prealloc the write
9104         watch). To fix this, I think we need to add new stuff to
9105         set_watch_functions, namely a SetEnabled function so we can alloc
9106         the watch earlier, then enable it later.
9107
9108         * dbus/Makefile.am (libdbus_convenience_la_SOURCES): move
9109         dbus-memory.c to the convenience lib
9110
9111         * bus/test.c: rename some static functions to keep them clearly
9112         distinct from stuff in connection.c. Handle client disconnection.
9113
9114 2003-03-14  Havoc Pennington  <hp@pobox.com>
9115
9116         * bus/dispatch.c (bus_dispatch_test): do test using debug-pipe
9117         transport, tests more of the real codepath. Set up clients
9118         with bus_setup_debug_client.
9119
9120         * bus/test.c (bus_setup_debug_client): function to set up debug
9121         "clients" on the main loop
9122
9123         * dbus/dbus-transport.c (_dbus_transport_open): add debug-pipe
9124         support
9125
9126         * dbus/dbus-server.c (dbus_server_listen): add debug-pipe
9127         server type
9128
9129         * dbus/dbus-server-debug.c: support a debug server based on pipes
9130
9131         * dbus/dbus-sysdeps.c (_dbus_full_duplex_pipe): new function
9132         (_dbus_close): new function
9133
9134         * configure.in: check for socketpair
9135
9136 2003-03-14  Havoc Pennington  <hp@redhat.com>
9137
9138         * dbus/dbus-memory.c: add a "detect buffer overwrites on free"
9139         cheesy hack
9140
9141         * dbus/dbus-transport-debug.c: rework this a good bit to be
9142         less complicated. hopefully still works.
9143
9144         * dbus/dbus-server-debug.c (handle_new_client): remove timeout
9145         manually
9146
9147         * glib/dbus-gmain.c (timeout_handler): don't remove timeout
9148         after running it
9149
9150         * dbus/dbus-message.c (dbus_message_copy): rename from
9151         dbus_message_new_from_message, fix it up to copy
9152         all the message fields, add test case
9153
9154         * bus/dispatch.c (bus_dispatch_test): add some more test code,
9155         not quite passing yet
9156
9157 2003-03-14  Havoc Pennington  <hp@pobox.com>
9158
9159         * bus/loop.c (bus_loop_iterate): add this so we can "run loop
9160         until no work remains" in test code. (the large diff here
9161         is just code movement, no actual changes)
9162
9163         * dbus/dbus-server-debug.c (DEFAULT_INTERVAL): change interval to
9164         1, no point waiting around for test code.
9165         (_dbus_server_debug_accept_transport): unref the timeout
9166         after adding it (right?)
9167
9168         * dbus/dbus-transport-debug.c (DEFAULT_INTERVAL): ditto
9169
9170 2003-03-13  Havoc Pennington  <hp@redhat.com>
9171
9172         * dbus/dbus-timeout.c (_dbus_timeout_list_set_functions): handle
9173         out of memory
9174
9175         * dbus/dbus-watch.c (_dbus_watch_list_set_functions): handle out
9176         of memory
9177
9178         * dbus/dbus-connection.h: Make AddWatchFunction and
9179         AddTimeoutFunction return a bool so they can fail on out-of-memory
9180
9181         * bus/bus.c (bus_context_new): set up timeout handlers
9182
9183         * bus/connection.c (bus_connections_setup_connection): set up
9184         timeout handlers
9185
9186         * glib/dbus-gmain.c: adapt to the fact that set_functions stuff
9187         can fail
9188
9189         * bus/bus.c (bus_context_new): adapt to changes
9190
9191         * bus/connection.c: adapt to changes
9192
9193         * test/watch.c: adapt to DBusWatch changes
9194
9195         * bus/dispatch.c (bus_dispatch_test): started adding this but
9196         didn't finish
9197
9198 2003-03-14  Anders Carlsson  <andersca@codefactory.se>
9199
9200         * bus/dispatch.c (send_service_nonexistent_error): Fix typo.
9201
9202 2003-03-13  Havoc Pennington  <hp@pobox.com>
9203
9204         * bus/test.c, bus/test.h, bus/Makefile.am, bus/test-main.c:
9205         set up a test framework as for the library
9206
9207 2003-03-12  Havoc Pennington  <hp@pobox.com>
9208
9209         Throughout: purge global variables, introduce BusActivation,
9210         BusConnections, BusRegistry, etc. objects instead.
9211
9212         * bus/bus.h, bus/bus.c: introduce BusContext as a global
9213         message bus object
9214
9215         * test/Makefile.am (TEST_BINARIES): disable bus-test for now,
9216         going to redo this a bit differently I think
9217
9218 2003-03-12  Havoc Pennington  <hp@redhat.com>
9219
9220         Mega-patch that gets the message bus daemon initially handling
9221         out-of-memory. Work still needed. Also lots of random
9222         moving stuff to DBusError instead of ResultCode.
9223
9224         * dbus/dbus-list.c (_dbus_list_length_is_one): new function
9225
9226         * dbus/dbus-connection.c
9227         (dbus_connection_send_with_reply_and_block): use DBusError
9228
9229         * dbus/dbus-bus.c: adapt to API changes, make it use DBusError not
9230         DBusResultCode
9231
9232         * dbus/dbus-connection.c (dbus_connection_send): drop the result
9233         code here, as the only failure possible is OOM.
9234
9235         * bus/connection.c (bus_connection_disconnect):
9236         rename bus_connection_disconnected as it's a notification only
9237
9238         * bus/driver.c (bus_driver_handle_acquire_service): don't free
9239         "name" on get_args failure, should be done by get_args;
9240         don't disconnect client for bad args, just return an error.
9241         (bus_driver_handle_service_exists): ditto
9242
9243         * bus/services.c (bus_services_list): NULL-terminate returned array
9244
9245         * bus/driver.c (bus_driver_send_service_lost)
9246         (bus_driver_send_service_acquired): send messages from driver to a
9247         specific client to the client's unique name, not to the broadcast
9248         service.
9249
9250         * dbus/dbus-message.c (decode_header_data): reject messages that
9251         contain no name field
9252         (_dbus_message_get_client_serial): rename to
9253         dbus_message_get_serial and make public
9254         (_dbus_message_set_serial): rename from set_client_serial
9255         (_dbus_message_set_reply_serial): make public
9256         (_dbus_message_get_reply_serial): make public
9257
9258         * bus/connection.c (bus_connection_foreach): allow stopping
9259         iteration by returning FALSE from foreach function.
9260
9261         * dbus/dbus-connection.c (dbus_connection_send_preallocated)
9262         (dbus_connection_free_preallocated_send)
9263         (dbus_connection_preallocate_send): new API for sending a message
9264         without possibility of malloc failure.
9265         (dbus_connection_send_message): rename to just
9266         dbus_connection_send (and same for whole function family)
9267
9268         * dbus/dbus-errors.c (dbus_error_free): make this reinit the error
9269
9270         * dbus/dbus-sysdeps.c (_dbus_exit): new function
9271
9272         * bus/activation.c: handle/return errors
9273
9274         * dbus/dbus-errors.h: add more DBUS_ERROR #define
9275
9276         * dbus/dbus-sysdeps.c (_dbus_directory_open) (_dbus_file_get_contents)
9277         (_dbus_directory_get_next_file): use DBusError instead of DBusResultCode
9278         (_dbus_result_from_errno): move to this file
9279
9280 2003-03-10  Anders Carlsson  <andersca@codefactory.se>
9281
9282         * dbus/dbus-marshal.c:
9283         (_dbus_marshal_set_string):
9284         Take a length argument so we can marshal the correct string
9285         length.
9286
9287         (_dbus_marshal_dict), (_dbus_demarshal_dict),
9288         (_dbus_marshal_get_arg_end_pos), (_dbus_marshal_validate_arg),
9289         (_dbus_marshal_test):
9290         * dbus/dbus-marshal.h:
9291         Add support for marshalling and demarshalling dicts.
9292
9293         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
9294         Add support for TYPE DICT.
9295
9296         * dbus/dbus-message.c: (set_string_field):
9297         Adjust header padding.
9298
9299         (dbus_message_append_args_valist), (dbus_message_append_dict),
9300         (dbus_message_get_args_valist), (dbus_message_iter_get_arg_type),
9301         (dbus_message_iter_get_dict), (_dbus_message_loader_return_buffer),
9302         (check_message_handling), (check_have_valid_message):
9303         * dbus/dbus-message.h:
9304         Add functions for setting and getting dicts.
9305
9306         * dbus/dbus-protocol.h:
9307         Add DBUS_TYPE_DICT.
9308
9309         * dbus/dbus.h:
9310         Add dbus-dict.h
9311
9312         * doc/dbus-specification.sgml:
9313         Add information about how dicts are marshalled.
9314
9315         * test/data/invalid-messages/dict-with-nil-value.message:
9316         * test/data/invalid-messages/too-short-dict.message:
9317         * test/data/valid-messages/dict-simple.message:
9318         * test/data/valid-messages/dict.message:
9319         Add sample messages containing dicts.
9320
9321 2003-03-08  Anders Carlsson  <andersca@codefactory.se>
9322
9323         * dbus/dbus-dict.h: Add DBUS_END_DECLS.
9324
9325 2003-03-07  Anders Carlsson  <andersca@codefactory.se>
9326
9327         * dbus/Makefile.am:
9328         * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
9329         (dbus_dict_get_keys), (insert_entry), (dbus_dict_set_boolean),
9330         (dbus_dict_set_int32), (dbus_dict_set_uint32),
9331         (dbus_dict_set_double), (dbus_dict_set_string),
9332         (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
9333         (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
9334         (dbus_dict_set_string_array), (_dbus_dict_test):
9335         * dbus/dbus-dict.h:
9336         Fix according to comments from Havoc.
9337
9338 2003-03-06  Michael Meeks  <michael@server.home>
9339
9340         * configure.in: if we don't have kde-config, disable have_qt.
9341
9342 2003-03-07  Anders Carlsson  <andersca@codefactory.se>
9343
9344         * dbus/Makefile.am:
9345         Add dbus-dict.[ch]
9346
9347         * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
9348         (dbus_dict_ref), (dbus_dict_unref), (dbus_dict_contains),
9349         (dbus_dict_remove), (dbus_dict_get_value_type),
9350         (dbus_dict_get_keys), (dbus_dict_put_boolean),
9351         (dbus_dict_put_int32), (dbus_dict_put_uint32),
9352         (dbus_dict_put_double), (dbus_dict_put_string),
9353         (dbus_dict_put_boolean_array), (dbus_dict_put_int32_array),
9354         (dbus_dict_put_uint32_array), (dbus_dict_put_double_array),
9355         (dbus_dict_put_string_array), (dbus_dict_get_boolean),
9356         (dbus_dict_get_int32), (dbus_dict_get_uint32),
9357         (dbus_dict_get_double), (dbus_dict_get_string),
9358         (dbus_dict_get_boolean_array), (dbus_dict_get_int32_array),
9359         (dbus_dict_get_uint32_array), (dbus_dict_get_double_array),
9360         (dbus_dict_get_string_array), (_dbus_dict_test):
9361         * dbus/dbus-dict.h:
9362         Add DBusDict implementation
9363
9364         * dbus/dbus-test.c: (dbus_internal_do_not_use_run_tests):
9365         * dbus/dbus-test.h:
9366         Add _dbus_dict_test
9367
9368 2003-03-04  Havoc Pennington  <hp@pobox.com>
9369
9370         * test/data/auth/*: adapt to changes
9371
9372         * dbus/dbus-auth-script.c (_dbus_auth_script_run): add
9373         USERID_BASE64 and change USERNAME_BASE64 to put in username not
9374         userid
9375
9376         * dbus/dbus-keyring.c (_dbus_keyring_validate_context): prevent
9377         more stuff from being in a context name, to make the protocol
9378         simpler to deal with
9379
9380         * dbus/dbus-errors.c (dbus_error_has_name): new function
9381         (dbus_error_is_set): new function
9382
9383         * dbus/dbus-auth.c: replace DBUS_STUPID_TEST_MECH auth
9384         with DBUS_COOKIE_SHA1, implement DBUS_COOKIE_SHA1
9385
9386         * dbus/dbus-connection.c (dbus_connection_flush): also read
9387         messages during a flush operation
9388
9389         * dbus/Makefile.am: remove dbus-md5 since it isn't currently used.
9390
9391 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
9392
9393         * configure.in: Check for gethostbyname on Solaris.
9394
9395         * dbus/dbus-transport.c: (_dbus_transport_open):
9396         Remove duplicate "tcp" entry.
9397
9398         * doc/dbus-specification.sgml:
9399         Clarify some things.
9400
9401 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
9402
9403         * dbus/dbus-auth.c: (send_rejected), (process_test_subdir):
9404         * dbus/dbus-keyring.c: (_dbus_keyring_new_homedir),
9405         (_dbus_keyring_test):
9406         * dbus/dbus-md5.c: (_dbus_md5_compute):
9407         * dbus/dbus-sha.c: (_dbus_sha_compute):
9408         Plug memory leaks.
9409
9410 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
9411
9412         * README: Add some things.
9413
9414 2003-03-04  Anders Carlsson  <andersca@codefactory.se>
9415
9416         * dbus/dbus-message.c (dbus_message_append_args_valist): Add a break;
9417         after case DBUS_TYPE_BOOELAN.
9418
9419 2003-03-02  Havoc Pennington  <hp@pobox.com>
9420
9421         * test/break-loader.c (randomly_set_extreme_ints): add test that
9422         sets really huge and small integers
9423
9424         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add check
9425         that length of boolean array fits in the string, and that
9426         string has room for boolean value in single-bool case.
9427
9428         * dbus/dbus-message-builder.c (_dbus_message_data_load): add
9429         optional value to "ALIGN" command which is what to fill the
9430         alignment with.
9431
9432         * test/data/valid-messages/no-padding.message: add regression
9433         test for the message padding problem
9434
9435 2003-03-02  Havoc Pennington  <hp@pobox.com>
9436
9437         * dbus/dbus-message.c (decode_header_data): fix to always init
9438         message_padding, from Benjamin Dauvergne
9439
9440 2003-03-02  Havoc Pennington  <hp@pobox.com>
9441
9442         * configure.in: 0.5
9443
9444         * NEWS: Update.
9445
9446 2003-03-01  Joe Shaw  <joe@assbarn.com>
9447
9448         * configure.in: Check for "struct cmsgcred" and try to access its
9449         members for BSD-like unices.
9450
9451         * dbus/dbus-sysdeps.c (read_credentials_byte): Fold this back into
9452         _dbus_read_credentials_unix_socket().
9453         (_dbus_read_credentials_unix_socket): Use recvmsg() instead of
9454         read() for reading the credential byte off the unix socket.  Use
9455         struct cmsgcred on systems that support it.
9456
9457 2003-02-27  Alexander Larsson  <alexl@redhat.com>
9458
9459         * glib/Makefile.am:
9460         * configure.in:
9461         Make gthreads-2.0 dependency optional. Don't build thread test if
9462         its not found.
9463
9464 2003-02-27  Havoc Pennington  <hp@pobox.com>
9465
9466         * dbus/dbus-connection.c
9467         (dbus_connection_send_message_with_reply_and_block): fix doh!
9468         doh! doh! bug that resulted in never removing a reply from the
9469         queue, no wonder we called get_reply_serial so much ;-)
9470
9471         * dbus/dbus-message.c (struct DBusMessage): cache reply serial
9472         and client serial instead of demarshaling them every time
9473
9474 2003-02-27  Havoc Pennington  <hp@pobox.com>
9475
9476         * dbus/dbus-marshal.c (_dbus_demarshal_int32): rewrite to be much
9477         more inlined, using dbus-string-private.h, speeds things up
9478         substantially
9479
9480         * dbus/dbus-string.c (_dbus_string_free): apply align offset
9481         when freeing the string
9482         (_dbus_string_steal_data): fix for align offset
9483         (undo_alignment): new function
9484
9485 2003-02-26  Havoc Pennington  <hp@redhat.com>
9486
9487         All kinds of audit fixes from Owen, plus initial attempt to
9488         handle unaligned memory returned from malloc.
9489
9490         * dbus/dbus-string.c (_dbus_string_init): clamp max length to
9491         leave room for align_offset and nul byte
9492         (fixup_alignment): function to track an align_offset and
9493         ensure real->str is aligned
9494         (DBUS_GENERIC_STRING_PREAMBLE): len must be less than allocated,
9495         to allow a nul byte plus align offset
9496         (_dbus_string_lock): fix overflow issue
9497         (_dbus_string_init_const_len): add assertions on sanity of len,
9498         assign allocated to be ALLOCATION_PADDING larger than len
9499         (set_length): fixup the overflow handling
9500         (_dbus_string_get_data_len): fix overflow in assertion
9501         (open_gap): detect overflow in size of gap to be opened
9502         (_dbus_string_lengthen): add overflow check
9503         (_dbus_string_align_length): fix overflow with _DBUS_ALIGN_VALUE
9504         (_dbus_string_append): add overflow check
9505         (_dbus_string_append_unichar): overflow
9506         (_dbus_string_delete): fix overflow in assertion
9507         (_dbus_string_copy_len): overflow in assertion
9508         (_dbus_string_replace_len): overflows in assertions
9509         (_dbus_string_find): change to implement in terms of
9510         _dbus_string_find_to
9511         (_dbus_string_find_to): assorted fixage
9512         (_dbus_string_equal_c_str): assert c_str != NULL,
9513         fix logic so the function works
9514         (_dbus_string_ends_with_c_str): fix overflow thingy
9515         (_dbus_string_base64_encode): overflow fix
9516         (_dbus_string_validate_ascii): overflow
9517         (_dbus_string_validate_nul): overflow
9518
9519 2003-02-26  Havoc Pennington  <hp@redhat.com>
9520
9521         * dbus/dbus-marshal.c (_dbus_marshal_test): fix to work with DISABLE_ASSERTS
9522
9523 2003-02-26  Alexander Larsson  <alexl@redhat.com>
9524
9525         * configure.in:
9526         Set DBUS_GLIB_THREADS_LIBS for apps using gthread-2.0
9527
9528         * dbus/dbus-connection.c:
9529         * dbus/dbus-connection.h:
9530         Fix _dbus_connection_acquire_io_path and _dbus_connection_acquire_dispatch.
9531         Add dbus_connection_set_wakeup_main_function and use it when queueing
9532         incoming and outgoing messages.
9533
9534
9535         * dbus/dbus-dataslot.c:
9536         Threadsafe usage of DBusDataSlotAllocator
9537
9538         * dbus/dbus-message.c: (dbus_message_get_args_iter):
9539         dbus_new can fail.
9540
9541         * dbus/dbus-server-unix.c:
9542         Add todo comment
9543
9544         * glib/dbus-gmain.c:
9545         Implement the new wakeup functions for glib.
9546
9547         * glib/Makefile.am:
9548         * glib/test-thread-client.c:
9549         * glib/test-thread-server.c:
9550         * glib/test-thread.h:
9551         Initial cut at some thread test code. Not really done yet.
9552
9553 2003-02-26  Havoc Pennington  <hp@pobox.com>
9554
9555         * dbus/dbus-connection.c
9556         (dbus_connection_send_message_with_reply_and_block): fix crash
9557         where we ref'd the outgoing message instead of the returned reply
9558
9559         * dbus/dbus-transport-unix.c (do_authentication): check read watch
9560         at the end of this function, so if we didn't need to read for
9561         authentication, we reinstall it for receiving messages
9562
9563         * dbus/dbus-message.c (dbus_message_new_reply): allow replies to
9564         a NULL sender for peer-to-peer case
9565
9566         * dbus/dbus-transport-unix.c (check_read_watch): handle
9567         !authenticated case correctly
9568
9569         * glib/dbus-gmain.c: add support for DBusServer
9570
9571         * dbus/dbus-server.c: add data slot support
9572
9573         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): check
9574         return values and handle errors
9575
9576         * dbus/dbus-dataslot.c: factor out the data slot stuff from
9577         DBusConnection
9578
9579         * Doxyfile.in (INPUT): add glib subdir
9580
9581         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): rename
9582         setup_with_g_main instead of hookup_with_g_main; write docs
9583
9584 2003-02-24  Anders Carlsson  <andersca@codefactory.se>
9585
9586         * dbus/dbus-marshal.c: (_dbus_marshal_validate_arg):
9587         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
9588         * dbus/dbus-message.c: (dbus_message_append_boolean),
9589         (dbus_message_append_boolean_array),
9590         (dbus_message_get_args_valist), (_dbus_message_test):
9591         * dbus/dbus-message.h:
9592         * doc/dbus-specification.sgml:
9593         Various fixes as pointed out by Havoc.
9594
9595         * test/data/invalid-messages/bad-boolean-array.message:
9596         * test/data/invalid-messages/bad-boolean.message:
9597         Add invalid boolean value test cases.
9598
9599 2003-02-24  Anders Carlsson  <andersca@codefactory.se>
9600
9601         * dbus/dbus-internals.c: (_dbus_type_to_string):
9602         * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
9603         (_dbus_marshal_validate_arg):
9604         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
9605         * dbus/dbus-message.c: (dbus_message_append_args_valist),
9606         (dbus_message_append_boolean), (dbus_message_append_boolean_array),
9607         (dbus_message_get_args_valist), (dbus_message_iter_get_boolean),
9608         (dbus_message_iter_get_int32), (dbus_message_iter_get_uint32),
9609         (dbus_message_iter_get_double),
9610         (dbus_message_iter_get_boolean_array), (message_iter_test):
9611         * dbus/dbus-message.h:
9612         * dbus/dbus-protocol.h:
9613         * doc/dbus-specification.sgml:
9614         * test/data/valid-messages/lots-of-arguments.message:
9615         Add support for boolean and boolean array types.
9616
9617 2003-02-23  Havoc Pennington  <hp@pobox.com>
9618
9619         * dbus/dbus-keyring.c: finish most of this implementation and
9620         simple unit test
9621
9622         * dbus/dbus-errors.c (dbus_set_error_const, dbus_set_error): make
9623         these barf if the error isn't cleared to NULL
9624
9625         * dbus/dbus-sysdeps.c (_dbus_delete_file): set error on failure
9626         (_dbus_create_directory): new function
9627
9628         * dbus/dbus-errors.c (dbus_set_error): fix warning
9629
9630         * dbus/dbus-string.c (_dbus_string_hex_encode): new function
9631         (_dbus_string_hex_decode): new function
9632         (test_hex_roundtrip): test code
9633
9634         * dbus/dbus-sha.c (_dbus_sha_compute): use dbus_string_hex_encode
9635
9636         * dbus/dbus-md5.c (_dbus_md5_compute): use dbus_string_hex_encode
9637
9638         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): make this use
9639         the save-to-temp/rename trick to atomically write the new file
9640         (_dbus_string_parse_uint): new function
9641
9642 2003-02-22  Havoc Pennington  <hp@pobox.com>
9643
9644         * test/Makefile.am (dist-hook): fix dist for test/data/sha-1
9645
9646 2003-02-22  Havoc Pennington  <hp@pobox.com>
9647
9648         * dbus/dbus-message.c (dbus_message_iter_get_string_array):
9649         (dbus_message_iter_get_byte_array): Fix up doxygen warnings
9650
9651         * dbus/dbus-sha.c: add implementation of SHA-1 algorithm
9652
9653         * dbus/test/data/sha-1: add US government test suite for SHA-1
9654
9655 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
9656
9657         * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
9658         Make string arrays NULL-terminated.
9659
9660         * dbus/dbus-memory.c: (dbus_free_string_array):
9661         * dbus/dbus-memory.h:
9662         New function for freeing NULL-terminated string arrays.
9663
9664         * dbus/dbus-message-builder.c: (append_quoted_string),
9665         (_dbus_message_data_load):
9666         Add support for array types.
9667
9668         * dbus/dbus-message.c: (check_message_handling):
9669         Add more types as test cases.
9670
9671         * dbus/dbus-sysdeps.c: (_dbus_string_parse_int),
9672         (_dbus_string_parse_double):
9673         Add the start offset to the end offset.
9674
9675         * test/data/valid-messages/lots-of-arguments.message:
9676         New test message with lots of arguments.
9677
9678 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
9679
9680         * dbus/dbus-message.c: (dbus_message_append_nil),
9681         (dbus_message_append_int32), (dbus_message_append_uint32),
9682         (dbus_message_append_double), (dbus_message_append_string),
9683         (dbus_message_append_int32_array),
9684         (dbus_message_append_uint32_array),
9685         (dbus_message_append_double_array),
9686         (dbus_message_append_byte_array),
9687         (dbus_message_append_string_array):
9688         Fix all out-of-memory handling in these functions.
9689
9690 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
9691
9692         * dbus/dbus-message.c: (dbus_message_append_nil):
9693         Fix a silly.
9694
9695 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
9696
9697         * dbus/dbus-message.c: (dbus_message_append_args_valist),
9698         (dbus_message_append_nil), (dbus_message_append_int32_array),
9699         (dbus_message_append_uint32_array),
9700         (dbus_message_append_double_array),
9701         (dbus_message_append_byte_array),
9702         (dbus_message_append_string_array), (dbus_message_get_args_valist),
9703         (dbus_message_iter_get_int32_array),
9704         (dbus_message_iter_get_uint32_array),
9705         (dbus_message_iter_get_double_array),
9706         (dbus_message_iter_get_byte_array),
9707         (dbus_message_iter_get_string_array):
9708
9709         * dbus/dbus-message.h:
9710         Add functions for appending and getting arrays.
9711
9712 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
9713
9714         * dbus/dbus-mempool.c (_dbus_mem_pool_new): Make the
9715         element size at least 8 bytes, fixes mempool tests on
9716         64-bit machines.
9717
9718 2003-02-20  Alexander Larsson  <alexl@redhat.com>
9719
9720         * dbus/dbus-transport-unix.c (unix_do_iteration):
9721         Unlock the connection mutex during a blocking select call.
9722         Add todo about how we need a way to wake up the select.
9723
9724         * dbus/dbus-connection-internal.h:
9725         * dbus/dbus-connection.c:
9726         Add _dbus_connection_lock and _dbus_connection_unlock.
9727
9728 2003-02-19  Havoc Pennington  <hp@pobox.com>
9729
9730         * Doxyfile.in (PREDEFINED): put DOXYGEN_SHOULD_SKIP_THIS in
9731         Doxyfile.in, not Doxyfile
9732
9733         * dbus/dbus-keyring.c: do some hacking on this
9734
9735         * dbus/dbus-sysdeps.c (_dbus_delete_file): new
9736
9737         * dbus/dbus-errors.c (dbus_set_error_const): do not call
9738         dbus_error_init
9739         (dbus_set_error): remove dbus_error_init, check for message ==
9740         NULL *before* we sprintf into it, and add @todo about including
9741         system headers in this file
9742
9743         * dbus/dbus-sysdeps.c (_dbus_create_file_exclusively): new
9744
9745         * dbus/dbus-errors.h (DBUS_ERROR_FAILED): add
9746
9747         * dbus/dbus-sysdeps.c (get_user_info): break this function out to
9748         get various bits of user information based on either username
9749         or user ID
9750         (_dbus_homedir_from_username): new function
9751
9752 2003-02-19  Anders Carlsson  <andersca@codefactory.se>
9753
9754         * configure.in:
9755         Add check for nonposix getpwnam_r
9756
9757         * dbus/dbus-mempool.c: (_dbus_mem_pool_new):
9758         Align the pool element size to a sizeof (void *) boundary.
9759
9760         * dbus/dbus-sysdeps.c: (_dbus_setenv), (_dbus_connect_unix_socket),
9761         (_dbus_listen_unix_socket), (_dbus_credentials_from_username):
9762         General Solaris fixes.
9763
9764         * test/data/valid-messages/simplest-manual.message:
9765         Explicitly state that we want little-endian packing.
9766
9767 2003-02-19  Mikael Hallendal  <micke@codefactory.se>
9768
9769         * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
9770
9771         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_tcp_socket):
9772         Added to create a transport connecting using a tcp/ip socket.
9773
9774         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): Added to connect
9775         to a tcp socket at given host and port.
9776         (_dbus_listen_tcp_socket): added to listen on tcp socket for given
9777         hostname and port.
9778
9779         * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
9780
9781         * dbus/dbus-server-unix.c (_dbus_server_new_for_tcp_socket):
9782         Added to create a server listening on a TCP/IP socket.
9783
9784 2003-02-19  Havoc Pennington  <hp@pobox.com>
9785
9786         Throughout: mop up all the Doxygen warnings and undocumented
9787         stuff.
9788
9789         * dbus/dbus-sysdeps.c (do_exec): do not use execvp, we don't want
9790         to search any paths.
9791
9792         * dbus/dbus-threads.c: move global mutex initializers to
9793         dbus-internals.h, multiple prototypes was confusing doxygen
9794         besides being kind of ugly
9795
9796         * Doxyfile (PREDEFINED): have Doxygen define
9797         DOXYGEN_SHOULD_SKIP_THIS so we can exclude things from
9798         docs with #ifndef DOXYGEN_SHOULD_SKIP_THIS
9799         (do not abuse the feature! it's for stuff like the autogenerated
9800         macros in dbus-md5.c, not just for things you don't feel like
9801         documenting...)
9802
9803 2003-02-18  Havoc Pennington  <hp@pobox.com>
9804
9805         * dbus/dbus-string.c (_dbus_string_zero): new function
9806
9807         * dbus/dbus-md5.c: include MD5 implementation by L. Peter Deutsch,
9808         wrap it in some dbus-friendly API
9809
9810         * dbus/dbus-types.h: add 16-bit types
9811
9812 2003-02-18  Joe Shaw  <joe@assbarn.com>
9813
9814         * dbus/dbus-auth.c (handle_server_data_stupid_test_mech): Just get
9815         credentials from our currently running process.
9816         (get_word): Fix a buglet where we were copying the entire length
9817         instead of relative to our position.
9818
9819         * dbus/dbus-hash.c (_dbus_hash_test): Don't try to allocate the
9820         keys on the stack... it's 640k of data.
9821
9822         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): Always
9823         read the credentials byte off the socket, even if we don't have
9824         SO_PEERCRED.
9825         (_dbus_poll): Implement poll() using select() for systems which
9826         don't have it.
9827
9828         * glib/test-dbus-glib.c (main): Print out an error if no
9829         parameters are given.
9830
9831         * test/data/auth/fallback.auth-script: Added.  Tests that a client
9832         can fallback to a secondary auth mechanism if the first fails.
9833
9834 2003-02-18  Havoc Pennington  <hp@pobox.com>
9835
9836         * AUTHORS: add Alex
9837
9838 2003-02-17  Havoc Pennington  <hp@pobox.com>
9839
9840         * doc/dbus-specification.sgml: lots of cosmetic
9841         cleanups/rearrangement, add assorted FIXME, change DBUS_ADDRESS
9842         env variable to DBUS_BUS_ADDRESS, s/client/application/,
9843         s/server/bus/ (except in authentication section). Add a section
9844         "Message Bus Message Routing"
9845
9846 2003-02-17  Anders Carlsson  <andersca@codefactory.se.>
9847
9848         Release 0.4
9849
9850         * NEWS: Update
9851
9852 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
9853
9854         * doc/dbus-specification.sgml:
9855         Specification updates.
9856
9857 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
9858
9859         * bus/activation.c: (bus_activation_init), (child_setup),
9860         (bus_activation_activate_service):
9861         * bus/activation.h:
9862         * bus/main.c: (main):
9863         Set DBUS_ADDRESS environment variable.
9864
9865         * dbus/dbus-errors.c: (dbus_set_error):
9866         Don't use va_copy since that's a C99 feature.
9867
9868         * dbus/dbus-sysdeps.c: (_dbus_setenv), (do_exec),
9869         (_dbus_spawn_async):
9870         * dbus/dbus-sysdeps.h:
9871         Add child_setup_func to _dbus_spawn_async.
9872
9873         * doc/dbus-specification.sgml:
9874         Update specification.
9875
9876         * test/spawn-test.c: (setup_func), (main):
9877         Fix test.
9878
9879 2003-02-17  Alexander Larsson  <alexl@redhat.com>
9880
9881         * dbus/dbus-connection.c (_dbus_connection_handler_destroyed_locked):
9882         Added todo.
9883
9884 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
9885
9886         * doc/.cvsignore:
9887         * doc/Makefile.am:
9888         * doc/dbus-test-plan.sgml:
9889         Add test plan document.
9890
9891         * test/Makefile.am:
9892         Fix distcheck.
9893
9894 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
9895
9896         * dbus/dbus-message.c: (decode_header_data),
9897         (_dbus_message_loader_return_buffer):
9898         Set the header padding amount when loading a message.
9899
9900 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
9901
9902         * bus/dispatch.c: (send_one_message):
9903         Only send broadcast messages to registered connections.
9904
9905         * dbus/dbus-message.c: (dbus_message_name_is):
9906         * dbus/dbus-message.h:
9907         New convenience function.
9908
9909         * dbus/dbus-transport-debug.c: (do_reading):
9910         Only dispatch one message per run.
9911
9912         * test/Makefile.am:
9913         * test/bus-test.c: (new_connection_callback), (die),
9914         (test_hello_client1_handler), (test_hello_client2_handler),
9915         (test_hello_replies), (main):
9916
9917         * test/bus-test-loop.[ch]:
9918         Add these.
9919
9920 2003-02-16  Havoc Pennington  <hp@pobox.com>
9921
9922         * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
9923         backward conditional
9924
9925 2003-02-16  Alexander Larsson  <alexl@redhat.com>
9926
9927         * dbus/dbus-connection.c:
9928         Implement sent_message_with_reply. (with_reply_and block is still
9929         busted).
9930         Made dispatch_message not lose message if OOM.
9931
9932         * dbus/dbus-errors.h:
9933         Add NoReply error (for reply timeouts).
9934
9935 2003-02-16  Alexander Larsson  <alexl@redhat.com>
9936
9937         * dbus/dbus-hash.c (_dbus_hash_table_unref):
9938         Actually free keys and values when destroying hashtable.
9939
9940 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
9941
9942         * dbus/dbus-auth.c: (client_try_next_mechanism):
9943         Plug a leak.
9944
9945         * dbus/dbus-threads.c: (dbus_condvar_wait_timeout):
9946         Return TRUE if there's no thread implementation around.
9947
9948         * glib/dbus-gmain.c: (free_source),
9949         (dbus_connection_hookup_with_g_main):
9950         Make sure to remove the GSource when the connection is finalized.
9951
9952 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
9953
9954         * bus/dispatch.c: (bus_dispatch_message_handler):
9955         * dbus/dbus-errors.h:
9956         Return an error if someone tries to send a message to a service
9957         that doesn't exist.
9958
9959 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
9960
9961         * bus/activation.c: (load_directory), (bus_activation_init),
9962         (bus_activation_activate_service):
9963         * bus/activation.h:
9964         * bus/driver.c:
9965         (bus_driver_handle_activate_service), (bus_driver_handle_message):
9966         More work on the activation handling.
9967
9968         * dbus/dbus-errors.h:
9969         Add some error messages
9970
9971         * dbus/dbus-message.c: (dbus_message_new_error_reply):
9972         * dbus/dbus-message.h:
9973         New function that creates an error message.
9974
9975         * dbus/dbus-protocol.h:
9976         Add ACTIVATE_SERVER message.
9977
9978         * dbus/dbus-server-unix.c: (unix_handle_watch),
9979         (_dbus_server_new_for_domain_socket):
9980         Call _dbus_fd_set_close_on_exec.
9981
9982         * dbus/dbus-sysdeps.c: (make_pipe), (do_exec),
9983         (_dbus_spawn_async), (_dbus_disable_sigpipe),
9984         (_dbus_fd_set_close_on_exec):
9985         * dbus/dbus-sysdeps.h:
9986         Add _dbus_fd_set_close_on exec function. Also add function that checks
9987         that all open fds are set to close-on-exec and warns otherwise.
9988
9989         * dbus/dbus-transport-unix.c:
9990         (_dbus_transport_new_for_domain_socket):
9991         Call _dbus_fd_set_close_on_exec.
9992
9993 2003-02-16  Havoc Pennington  <hp@pobox.com>
9994
9995         * dbus/dbus-connection.c (dbus_connection_set_change_sigpipe):
9996         allow people to avoid setting SIGPIPE to SIG_IGN
9997         (_dbus_connection_new_for_transport): disable SIGPIPE unless
9998         we've been asked not to
9999
10000 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
10001
10002         * dbus/dbus-list.c: (_dbus_list_append_link),
10003         (_dbus_list_prepend_link):
10004         * dbus/dbus-memory.c: (dbus_malloc), (dbus_malloc0),
10005         (dbus_realloc):
10006         Warning fixes.
10007
10008 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
10009
10010         * bus/Makefile.am:
10011         * bus/activation.c: (bus_activation_entry_free),
10012         (add_desktop_file_entry), (load_directory), (bus_activation_init):
10013         * bus/activation.h:
10014         * bus/main.c: (main):
10015         Add simple activation support, doesn't work yet though.
10016
10017 2003-02-15   Zack Rusin  <zack@kde.org>
10018
10019         * qt/dbus-qthread.cpp:  small casting fix
10020
10021 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
10022
10023         * dbus/dbus-errors.c: (dbus_set_error):
10024         * dbus/dbus-errors.h:
10025         Add a few errors and make dbus_set_error void.
10026
10027         * dbus/dbus-sysdeps.c:
10028         (_dbus_errno_to_string), (close_and_invalidate), (make_pipe),
10029         (write_err_and_exit), (read_ints), (do_exec), (_dbus_spawn_async):
10030         * dbus/dbus-sysdeps.h:
10031         Add _dbus_spawn_async.
10032
10033         * test/spawn-test.c: (main):
10034         Test for _dbus_spawn_async.
10035
10036 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
10037
10038         * dbus/dbus-internals.h:
10039         Fix build without tests.
10040
10041         * dbus/dbus-list.c: (alloc_link):
10042         Fix a segfault when a malloc fails.
10043
10044         * dbus/dbus-memory.c: (initialize_malloc_debug), (dbus_malloc),
10045         (dbus_malloc0), (dbus_realloc):
10046         Add support for malloc debugging.
10047
10048 2003-02-15  Alexander Larsson  <alexl@redhat.com>
10049
10050         * dbus/dbus-threads.c:
10051         * dbus/dbus-threads.h:
10052         Add condvars. Remove static mutext from API.
10053         Implement static mutexes by initializing them from threads_init.
10054
10055         * glib/dbus-gthread.c:
10056         * qt/dbus-qthread.cpp:
10057         Update with the thread api changes.
10058
10059
10060         * dbus/dbus-list.c:
10061         * dbus/dbus-list.h:
10062         Turn StaticMutex into normal mutex + init function.
10063         Export new functions _dbus_list_alloc_link, _dbus_list_free_link,
10064         _dbus_list_append_link, _dbus_list_prepend_link
10065
10066
10067         * dbus/dbus-sysdeps.c:
10068         * dbus/dbus-sysdeps.h:
10069         New type dbus_atomic_t, and new functions _dbus_atomic_inc,
10070         _dbus_atomic_dec. Only slow fallback implementation at the moment.
10071
10072         * dbus/dbus-protocol.h:
10073         Add DBUS_MESSAGE_LOCAL_DISCONNECT define
10074
10075         * dbus/dbus-message.c:
10076         Make ref/unref atomic.
10077         Fix some docs.
10078
10079         * dbus/dbus-connection-internal.h:
10080         * dbus/dbus-connection.c:
10081         * dbus/dbus-connection.h:
10082         Make threadsafe.
10083         Change _peek to _borrow,_return & _steal_borrowed.
10084         Change disconnect callback to event.
10085         Make dbus_connection_dispatch_messages reentrant.
10086
10087         * dbus/dbus-transport.c:
10088         Don't ref the connection on calls to the transport
10089         implementation.
10090
10091         * dbus/dbus-message-handler.c:
10092         Make threadsafe.
10093
10094         * glib/dbus-gmain.c:
10095         Don't use peek_message anymore
10096
10097         * test/Makefile.am:
10098         * test/debug-thread.c:
10099         * test/debug-thread.h:
10100         Simple thread implementation that asserts() on deadlocks in
10101         single-threaded code.
10102
10103         * test/bus-test.c:
10104         (main) Call debug_threads_init.
10105
10106         * test/watch.c:
10107         Use disconnect message instead of disconnect callback.
10108
10109         * bus/connection.c:
10110         * bus/connection.h:
10111         Don't call dbus_connection_set_disconnect_function. Instead export
10112         bus_connection_disconnect.
10113
10114         * bus/dispatch.c:
10115         Call bus_connection_disconnect when we get a disconnected message.
10116
10117 2003-02-15  Havoc Pennington  <hp@pobox.com>
10118
10119         * dbus/dbus-message.c (dbus_message_new): fool around with the
10120         docs
10121
10122 2003-02-14  Havoc Pennington  <hp@pobox.com>
10123
10124         * dbus/dbus-mempool.c: fail if the debug functions so indicate
10125
10126         * dbus/dbus-memory.c: fail if the debug functions indicate we
10127         should
10128
10129         * dbus/dbus-internals.c (_dbus_set_fail_alloc_counter)
10130         (_dbus_decrement_fail_alloc_counter): debug functions to
10131         simulate memory allocation failures
10132
10133 2003-02-14  Havoc Pennington  <hp@pobox.com>
10134
10135         * dbus/dbus-errors.h (struct DBusError): add a word of padding
10136         to DBusError
10137
10138 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10139
10140         * bus/driver.c: (bus_driver_handle_hello):
10141         * bus/driver.h:
10142         * bus/services.c: (bus_service_lookup):
10143         Reorder message sending so we get a more sane order.
10144
10145         * test/bus-test.c: (message_handler):
10146         Fix tyop.
10147
10148 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10149
10150         * bus/driver.c: (bus_driver_send_service_deleted),
10151         (bus_driver_send_service_created), (bus_driver_send_service_lost),
10152         (bus_driver_send_service_acquired), (bus_driver_handle_hello),
10153         (bus_driver_send_welcome_message),
10154         (bus_driver_handle_list_services),
10155         (bus_driver_handle_acquire_service),
10156         (bus_driver_handle_service_exists):
10157         * dbus/dbus-bus.c: (dbus_bus_register_client),
10158         (dbus_bus_acquire_service), (dbus_bus_service_exists):
10159         * dbus/dbus-errors.c: (dbus_result_to_string):
10160         * dbus/dbus-errors.h:
10161         * dbus/dbus-message.c: (dbus_message_append_args),
10162         (dbus_message_append_args_valist), (dbus_message_get_args),
10163         (dbus_message_get_args_valist), (dbus_message_get_args_iter),
10164         (dbus_message_iter_get_arg_type), (dbus_message_iter_get_string),
10165         (dbus_message_iter_get_byte_array),
10166         (dbus_message_iter_get_string_array), (message_iter_test),
10167         (check_message_handling), (_dbus_message_test):
10168         * dbus/dbus-message.h:
10169         * test/bus-test.c: (main):
10170         Change fields to arguments in messages, so that they won't be
10171         confused with header fields.
10172
10173         * glib/test-dbus-glib.c: (main):
10174         Remove append_fields from hello message.
10175
10176 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10177
10178         * dbus/dbus-errors.c:
10179         * dbus/dbus-message.c:
10180         * dbus/dbus-string.c:
10181         Documentation fixes.
10182
10183 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10184
10185         * glib/dbus-gmain.c: (timeout_handler), (add_timeout),
10186         (remove_timeout):
10187         Implement support for timeouts in dbus-glib.
10188
10189 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10190
10191         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
10192         * dbus/dbus-message.c: (process_test_subdir):
10193         * test/break-loader.c: (find_breaks_based_on):
10194         Plug some memory leaks.
10195
10196 2003-02-13  Richard Hult  <rhult@codefactory.se>
10197
10198         * bus/main.c: Fix build.
10199
10200         * dbus/dbus-errors.h:
10201         * dbus/dbus-errors.c: Fix copyright for Anders.
10202
10203 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10204
10205         * bus/Makefile.am:
10206         Add utils.[ch]
10207
10208         * bus/connection.c: (bus_connection_foreach):
10209         Fix a warning.
10210
10211         * bus/desktop-file.c: (grow_lines_in_section), (grow_sections),
10212         (unescape_string), (new_section), (parse_section_start),
10213         (parse_key_value), (report_error), (bus_desktop_file_load),
10214         (bus_desktop_file_get_string):
10215         * bus/desktop-file.h:
10216         Use DBusError for error reporting.
10217
10218         * bus/dispatch.c: (send_one_message),
10219         (bus_dispatch_message_handler):
10220         * bus/driver.c: (bus_driver_send_service_deleted),
10221         (bus_driver_send_service_created), (bus_driver_send_service_lost),
10222         (bus_driver_send_service_acquired), (bus_driver_handle_hello),
10223         (bus_driver_send_welcome_message),
10224         (bus_driver_handle_list_services),
10225         (bus_driver_handle_acquire_service),
10226         (bus_driver_handle_service_exists):
10227         * bus/loop.c: (bus_loop_run):
10228         * bus/main.c:
10229         Use BUS_HANDLE_OOM instead of _DBUS_HANDLE_OOM.
10230
10231         * bus/utils.c: (bus_wait_for_memory):
10232         * bus/utils.h:
10233         New files with general utility functions.
10234
10235         * dbus/dbus-internals.h:
10236         Remove _DBUS_HANDLE_OOM.
10237
10238 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10239
10240         * dbus/dbus-errors.c: (dbus_result_to_string), (dbus_error_init),
10241         (dbus_error_free), (dbus_set_error_const), (dbus_set_error):
10242         * dbus/dbus-errors.h:
10243         Add DBusError structure.
10244
10245 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10246
10247         * test/data/valid-messages/standard-acquire-service.message:
10248         * test/data/valid-messages/standard-hello.message:
10249         * test/data/valid-messages/standard-list-services.message:
10250         * test/data/valid-messages/standard-service-exists.message:
10251         Add some standard messages.
10252
10253 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10254
10255         * bus/driver.c: (bus_driver_send_welcome_message),
10256         (bus_driver_handle_list_services),
10257         (bus_driver_handle_acquire_service),
10258         (bus_driver_handle_service_exists), (bus_driver_handle_message):
10259         Update for API changes in libdbus.
10260
10261         * dbus/dbus-message.c: (dbus_message_new_reply):
10262         * dbus/dbus-message.h:
10263         Remove the name argument. The spec states that replies shouldn't
10264         have a name.
10265
10266 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10267
10268         * bus/desktop-file.c: (parse_section_start), (parse_key_value),
10269         (report_error), (bus_desktop_file_load), (lookup_section),
10270         (lookup_line), (bus_desktop_file_get_raw),
10271         (bus_desktop_file_get_string):
10272         * bus/desktop-file.h:
10273         Some fixes, and new functions for getting a key value from a section.
10274
10275 2003-02-13  Havoc Pennington  <hp@pobox.com>
10276
10277         * test/data/auth/fail-after-n-attempts.auth-script: new test
10278
10279         * dbus/dbus-auth.c (send_rejected): shutdown_mech() when we
10280         reject the client.
10281
10282 2003-02-13  Havoc Pennington  <hp@pobox.com>
10283
10284         * dbus/dbus-auth.c (handle_server_data_external_mech): args to
10285         dbus_credentials_match were backward
10286
10287         * dbus/dbus-auth-script.c (_dbus_auth_script_run): support
10288         NO_CREDENTIALS and ROOT_CREDENTIALS
10289
10290         * dbus/dbus-auth.c (_dbus_auth_do_work): move get_state() routine
10291         into here. Never process more commands after we've reached an
10292         end state; store further data as unused bytes.
10293
10294         * test/data/auth/*: add more auth tests
10295
10296         * dbus/dbus-auth-script.c (_dbus_auth_script_run): support EXPECT
10297         command to match exact string and EXPECT_UNUSED to match unused
10298         bytes
10299
10300         * test/Makefile.am (dist-hook): fix to dist all the test stuff
10301
10302 2003-02-12  Havoc Pennington  <hp@pobox.com>
10303
10304         * dbus/dbus-string.c (_dbus_string_pop_line): fix to also strip
10305         \r off of popped lines
10306
10307         * dbus/dbus-auth.c (_dbus_auth_test): write code to run auth
10308         scripts
10309
10310         * dbus/dbus-auth-script.c (_dbus_auth_script_run): when doing a
10311         SEND, append \r\n
10312
10313 2003-02-12  Havoc Pennington  <hp@pobox.com>
10314
10315         * dbus/Makefile.am: remove break-loader from the build, since it
10316         moved.
10317
10318         * configure.in: add --enable-gcov to turn on coverage profiling
10319         flags and disable optimization
10320
10321 2003-02-10  Havoc Pennington  <hp@pobox.com>
10322
10323         * dbus/dbus-auth-script.c, dbus/dbus-auth-script.h: sync
10324         initial cut at test framework for DBusAuth from laptop.
10325         Doesn't quite work yet but it compiles and I need to get
10326         it off the 266mhz laptop. ;-)
10327
10328         * dbus/dbus-server-debug.c (_dbus_server_debug_accept_transport):
10329         fix a memleak in error case
10330
10331 2003-02-12  Anders Carlsson  <andersca@codefactory.se>
10332
10333         * bus/Makefile.am:
10334         * bus/desktop-file.c:
10335         * bus/desktop-file.h:
10336         Add a desktop file parser.
10337
10338 2003-02-11  Zack Rusin  <zack@kde.org>
10339
10340         * qt/message.[h|cpp]: sample implementation
10341         of the KDE wrapper for DBusMessage
10342
10343 2003-02-09  Zack Rusin  <zack@kde.org>
10344
10345         * test/bus-test.c: make_it_compile
10346         * doc/dbus-specification.sgml: minimal semantic fix
10347
10348 2003-02-06  Anders Carlsson  <andersca@codefactory.se>
10349
10350         Release 0.3
10351
10352         * NEWS: Update
10353
10354 2003-02-06  Anders Carlsson  <andersca@codefactory.se>
10355
10356         * dbus/Makefile.am:
10357         * dbus/dbus-break-loader.c:
10358         * test/Makefile.am:
10359         * test/break-loader.c:
10360         Move dbus-break-loader to test/ and rename it to break-loader.
10361
10362 2003-02-02  Havoc Pennington  <hp@pobox.com>
10363
10364         * dbus/dbus-keyring.c, dbus/dbus-keyring.h: template files
10365         for code to manage cookies in your home directory
10366
10367         * dbus/dbus-sysdeps.c (_dbus_generate_random_bytes): new function
10368
10369         * dbus/dbus-auth.c (get_state): impose a maximum number of tries
10370         to authenticate, then disconnect the client.
10371
10372 2003-02-03  Alexander Larsson  <alexl@redhat.com>
10373
10374         * dbus/dbus-message.c (dbus_message_append_fields):
10375         Correct docs.
10376
10377 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10378
10379         * doc/dbus-specification.sgml:
10380         Update address format section.
10381
10382 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10383
10384         * test/Makefile.am:
10385         * test/bus-test.c: (get_time), (add_timeout), (remove_timeout),
10386         (message_handler), (new_connection_callback), (loop_quit),
10387         (loop_run), (main):
10388         Add bus test.
10389
10390 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10391
10392         * bus/driver.c: (bus_driver_handle_service_exists):
10393         Simplify the code a bit.
10394
10395         * dbus/dbus-bus.c: (dbus_bus_service_exists):
10396         Fix a silly.
10397
10398 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10399
10400         * bus/Makefile.am:
10401         Add libdbus-daemon.la and link to it.
10402
10403 2003-02-01  James Willcox  <jwillcox@gnome.org>
10404
10405         * bus/driver.c: (bus_driver_handle_own_service):
10406         Actually include the service reply code in the message.
10407
10408 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10409
10410         * bus/driver.c: (bus_driver_handle_service_exists):
10411         Don't unref the incoming message.
10412
10413 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10414
10415         * dbus/dbus.h: Add dbus-address.h and dbus-bus.h
10416
10417 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10418
10419         * dbus/dbus-server.c: (dbus_server_listen):
10420         * dbus/dbus-transport.c: (_dbus_transport_open):
10421         ifdef out the calls to the debug transport and server.
10422
10423 2003-02-02  Alexander Larsson  <alexl@redhat.com>
10424
10425         * dbus/dbus-watch.c (dbus_watch_get_flags):
10426         Add note in the docs that ERROR or HANGUP won't be returned
10427         and are assumed always on.
10428
10429         * glib/dbus-gmain.c (add_watch):
10430         Always add IO_ERR | IO_HUP
10431
10432         * dbus/dbus-message.h:
10433         Add semicolon after dbus_message_iter_get_string_array().
10434         Makes qt code build again
10435
10436 2003-02-01  Anders Carlsson  <andersca@codefactory.se>
10437
10438         * bus/driver.c: (create_unique_client_name),
10439         (bus_driver_handle_hello):
10440         Don't take a name, just use a numeric id to identify
10441         each client.
10442
10443         * dbus/Makefile.am:
10444         * dbus/dbus-bus.c: (dbus_bus_register_client),
10445         (dbus_bus_acquire_service), (dbus_bus_service_exists):
10446         * dbus/dbus-bus.h:
10447         Add new convenience functions for communicating with the bus.
10448
10449         * dbus/dbus-message.h:
10450
10451         * dbus/dbus-protocol.h:
10452         Fix a typo.
10453
10454 2003-02-01  Alexander Larsson  <alexl@redhat.com>
10455
10456         * dbus/dbus-message.c (dbus_message_append_fields):
10457         Add some more doc comments.
10458
10459 2003-02-01  Havoc Pennington  <hp@pobox.com>
10460
10461         * dbus/dbus-break-loader.c (randomly_modify_length): change
10462         a 4-byte value in the message as if it were a length
10463
10464         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): don't set
10465         execute bit on saved files
10466
10467 2003-02-01  Havoc Pennington  <hp@pobox.com>
10468
10469         * dbus/dbus-break-loader.c (main): new program to find messages
10470         that break the loader.
10471
10472         * dbus/dbus-sysdeps.c (_dbus_string_append_uint): new function
10473         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): new function
10474
10475         * dbus/dbus-string.c (_dbus_string_set_byte): new
10476
10477 2003-01-31  Havoc Pennington  <hp@pobox.com>
10478
10479         * dbus/dbus-message.c: refactor the test code to be more general,
10480         in preparation for writing a "randomly permute test cases to
10481         try to break the loader" program.
10482
10483 2003-01-31  Havoc Pennington  <hp@pobox.com>
10484
10485         * doc/dbus-specification.sgml: work on the specification
10486
10487         * dbus/dbus-message.c (_dbus_message_loader_return_buffer): check
10488         the protocol version of the message.
10489
10490         * dbus/dbus-protocol.h: drop special _REPLY names, the spec
10491         no longer specifies that.
10492         (DBUS_SERVICE_REPLY_SERVICE_EXISTS): fix flags (1/2/4/8 not
10493         1/2/3/4)
10494
10495         * dbus/dbus-marshal.c (_dbus_marshal_get_arg_end_pos): add missing
10496         "break" for DBUS_TYPE_NIL, remove @todo
10497
10498 2003-01-31  Havoc Pennington  <hp@pobox.com>
10499
10500         * dbus/dbus-message.c (dbus_message_set_is_error_reply): rename
10501         just set_is_error/get_is_error as this is a commonly-used
10502         function, and write docs.
10503
10504 2003-01-31  Anders Carlsson  <andersca@codefactory.se>
10505
10506         * dbus/dbus-address.c: (dbus_address_entry_free):
10507         Free key and value lists.
10508
10509         * dbus/dbus-internals.c: (_dbus_type_to_string):
10510         Add the types we didn't have.
10511
10512         * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
10513         (_dbus_marshal_validate_arg):
10514         Add NIL types.
10515
10516         * dbus/dbus-message.c: (dbus_message_set_sender):
10517         Remove todo about being able to set sender to NULL.
10518
10519         (dbus_message_set_is_error_reply),
10520         (dbus_message_get_is_error_reply):
10521         * dbus/dbus-message.h:
10522         New functions.
10523
10524         * dbus/dbus-protocol.h:
10525         Add error reply flag.
10526
10527         * test/data/valid-messages/opposite-endian.message:
10528         Add NIL type to test.
10529
10530 2003-01-31  Havoc Pennington  <hp@pobox.com>
10531
10532         * doc/dbus-specification.sgml: fully specify the header.  Add
10533         flags and major protocol version, and change header/body len to
10534         unsigned.
10535
10536         * dbus/dbus-message-builder.c (append_saved_length): append length
10537         as uint32
10538
10539         * dbus/dbus-message.c (dbus_message_create_header): change header
10540         length and body length to unsigned. Add the new fields from the
10541         spec
10542         (_dbus_message_loader_return_buffer): unsigned header/body len
10543
10544 2003-01-30  Havoc Pennington  <hp@pobox.com>
10545
10546         * dbus/dbus-auth.c: rework to use only REJECTED, no
10547         MECHANISMS
10548
10549         * doc/dbus-sasl-profile.txt: drop MECHANISMS and just
10550         use REJECTED, suggested by Mark McLoughlin
10551
10552 2003-01-30  Havoc Pennington  <hp@pobox.com>
10553
10554         * dbus/dbus-server.c (dbus_server_listen): @todo about how we need
10555         a better way to report errors here. e.g.  "unix address lacks
10556         path" or something. also "no such file" when the path doesn't
10557         exist, etc.
10558
10559         * dbus/dbus-address.c (dbus_address_entries_free): add @todo about
10560         leaking list nodes
10561         (dbus_parse_address): add @todo about documenting address format,
10562         and allowing , and ; to be escaped
10563
10564 2003-01-30  Anders Carlsson  <andersca@codefactory.se>
10565
10566         * dbus/Makefile.am:
10567         Add dbus-address.[ch]
10568
10569         * dbus/dbus-address.c: (dbus_address_entry_free),
10570         (dbus_address_entries_free), (create_entry),
10571         (dbus_address_entry_get_method), (dbus_address_entry_get_value),
10572         (dbus_parse_address), (_dbus_address_test):
10573         * dbus/dbus-address.h:
10574         New files for dealing with address parsing.
10575
10576         * dbus/dbus-connection.c:
10577         Document timeout functions.
10578
10579         * dbus/dbus-message.c:
10580         Document dbus_message_new_from_message.
10581
10582         * dbus/dbus-server-debug.c:
10583         Document.
10584
10585         * dbus/dbus-server.c: (dbus_server_listen):
10586         Parse address and use correct server implementation.
10587
10588         * dbus/dbus-string.c: (_dbus_string_find_to), (_dbus_string_test):
10589         * dbus/dbus-string.h:
10590         New function with test.
10591
10592         * dbus/dbus-test.c: (dbus_internal_symbol_do_not_use_run_tests):
10593         * dbus/dbus-test.h:
10594         Add address tests.
10595
10596         * dbus/dbus-transport-debug.c:
10597         Document.
10598
10599         * dbus/dbus-transport.c: (_dbus_transport_open):
10600         Parse address and use correct transport implementation.
10601
10602 2003-01-30  Havoc Pennington  <hp@pobox.com>
10603
10604         * dbus/dbus-message.c: use message->byte_order instead of
10605         DBUS_COMPILER_BYTE_ORDER throughout.
10606         (dbus_message_create_header): pad header to align the
10607         start of the body of the message to 8-byte boundary
10608
10609         * dbus/dbus-marshal.h: make all the demarshalers take const
10610         DBusString arguments.
10611
10612         * dbus/dbus-message.c (_dbus_message_loader_return_buffer):
10613         validate message args here, so we don't have to do slow validation
10614         later, and so we catch bad messages as they are incoming. Also add
10615         better checks on header_len and body_len. Also fill in
10616         message->byte_order
10617
10618         * dbus/dbus-string.c (_dbus_string_validate_utf8): new (not
10619         implemented properly)
10620         (_dbus_string_validate_nul): new function to check all-nul
10621
10622         * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): rename
10623         get_arg_end_pos and remove all validation
10624         (_dbus_marshal_validate_arg): actually do validation here.
10625
10626 2003-01-29  Havoc Pennington  <hp@pobox.com>
10627
10628         * dbus/dbus-message.c (check_message_handling): fix assertion
10629         failure on set_client_serial
10630
10631 2003-01-28  Havoc Pennington  <hp@pobox.com>
10632
10633         * dbus/dbus-server-debug.c: Add doc section comments
10634
10635         * dbus/dbus-transport-debug.c: add doc section comments
10636
10637 2003-01-28  Havoc Pennington  <hp@redhat.com>
10638
10639         * dbus/dbus-string.c (_dbus_string_base64_decode): append bytes in
10640         the reverse order from how I had it
10641         (_dbus_string_base64_encode): reverse encoding order. I was
10642         basically byteswapping everything during encoding.
10643
10644 2003-01-28  Anders Carlsson  <andersca@codefactory.se>
10645
10646         * dbus/dbus-connection-internal.h:
10647         * dbus/dbus-connection.c: (_dbus_connection_add_timeout),
10648         (_dbus_connection_remove_timeout):
10649         Add functions for adding and removing timeouts.
10650
10651         * dbus/dbus-message.c: (dbus_message_new_from_message):
10652         Add new function that takes a message and creates an exact
10653         copy of it, but with the refcount set to 1.
10654         (check_message_handling):
10655         Fix build error.
10656
10657         * dbus/dbus-server-protected.h:
10658         * dbus/dbus-server.c: (_dbus_server_init_base),
10659         (_dbus_server_finalize_base), (_dbus_server_add_timeout),
10660         (dbus_server_set_timeout_functions):
10661         (_dbus_server_remove_timeout):
10662         New functions so that a server can add and remove timeouts.
10663
10664         (dbus_server_listen):
10665         Add commented out call to dbus_server_debug_new.
10666
10667         * dbus/dbus-timeout.c: (_dbus_timeout_new):
10668         Actually set the handler, doh.
10669
10670         * dbus/dbus-transport.c: (_dbus_transport_open):
10671         Add commented out call to dbus_transport_debug_client_new.
10672
10673         * dbus/Makefile.am:
10674         Add dbus-transport-debug.[ch] and dbus-server-debug.[ch]
10675
10676 2003-01-28  Havoc Pennington  <hp@pobox.com>
10677
10678         * dbus/dbus-message.c (check_message_handling): function to check
10679         on the loaded message, iterates over it etc.
10680
10681 2003-01-28  Havoc Pennington  <hp@pobox.com>
10682
10683         * test/Makefile.am (dist-hook): fix make distdir
10684
10685         * dbus/Makefile.am (TESTS_ENVIRONMENT): fix make check
10686
10687 2003-01-27  Havoc Pennington  <hp@pobox.com>
10688
10689         * dbus/dbus-mempool.c (time_for_size): replace printf with
10690         _dbus_verbose
10691
10692         * dbus/dbus-message-builder.c (_dbus_message_data_load): allow
10693         empty lines; fix the SAVE_LENGTH stuff to be
10694         START_LENGTH/END_LENGTH so it actually works; couple other
10695         bugfixes
10696
10697         * test/Makefile.am (dist-hook): add dist-hook for .message files
10698
10699         * dbus/dbus-string.c (DBUS_STRING_COPY_PREAMBLE): source of a copy
10700         can be constant or locked.
10701         (_dbus_string_free): allow freeing a const string as
10702         documented/intended
10703
10704         * dbus/dbus-sysdeps.c (_dbus_concat_dir_and_file): utility
10705
10706         * dbus/dbus-test-main.c (main): take an argument which is the
10707         directory containing test data
10708
10709         * dbus/dbus-message.c (_dbus_message_test): pass a test_data_dir
10710         argument to this and load all the messages in test/data/
10711         checking that they can be loaded or not loaded as appropriate.
10712
10713 2003-01-27  Anders Carlsson  <andersca@codefactory.se>
10714
10715         * bus/dispatch.c: (bus_dispatch_message_handler):
10716         Dispatch messages sent to services.
10717
10718         * bus/driver.c: (bus_driver_send_service_deleted),
10719         (bus_driver_send_service_created), (bus_driver_send_service_lost),
10720         (bus_driver_send_service_acquired):
10721         Add helper functions for sending service related messages.
10722
10723         (bus_driver_send_welcome_message):
10724         Send HELLO_REPLY instead of WELCOME.
10725
10726         (bus_driver_handle_list_services):
10727         Send LIST_SERVICES_REPLY instead of SERVICES.
10728
10729         (bus_driver_handle_own_service),
10730         (bus_driver_handle_service_exists):
10731         New message handlers.
10732
10733         (bus_driver_handle_message):
10734         Invoke new message handlers.
10735
10736         (bus_driver_remove_connection):
10737         Don't remove any services here since that's done automatically
10738         by bus_service_remove_owner now.
10739
10740         * bus/driver.h:
10741         New function signatures.
10742
10743         * bus/services.c: (bus_service_add_owner):
10744         Send ServiceAcquired message if we're the only primary owner.
10745
10746         (bus_service_remove_owner):
10747         Send ServiceAcquired/ServiceLost messages.
10748
10749         (bus_service_set_prohibit_replacement),
10750         (bus_service_get_prohibit_replacement):
10751         Functions for setting prohibit replacement.
10752
10753         (bus_service_has_owner):
10754         New function that checks if a connection is in the owner queue of
10755         a certain service.
10756
10757         * bus/services.h:
10758         Add new function signatures.
10759
10760         * dbus/dbus-list.c: (_dbus_list_test):
10761         Add tests for _dbus_list_remove_last and traversing the list backwards.
10762
10763         * dbus/dbus-list.h:
10764         Fix a typo in _dbus_list_get_prev_link, if we're at the first element we can't
10765         go any further, so return NULL then.
10766
10767         * dbus/dbus-protocol.h:
10768         Add new messages, service flags and service replies.
10769
10770 2003-01-26  Havoc Pennington  <hp@pobox.com>
10771
10772         * dbus/dbus-message-builder.c: implement, completely untested.
10773
10774         * test/data/*: add data to be used in testing.
10775         ".message" files are our simple loadable text format.
10776         ".message-raw" will be binary dumps of messages.
10777
10778         * dbus/dbus-string.c (_dbus_string_starts_with_c_str): new
10779
10780 2003-01-26  Havoc Pennington  <hp@pobox.com>
10781
10782         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): new function
10783
10784         * dbus/dbus-errors.c (dbus_result_to_string): add
10785         file errors
10786
10787         * dbus/dbus-message-builder.c: new file, will contain code to load
10788         up messages from files. Not implemented yet.
10789
10790 2003-01-26  Havoc Pennington  <hp@pobox.com>
10791
10792         * dbus/dbus-message.c (dbus_message_set_sender): support deleting
10793         the sender by setting to NULL
10794
10795 2003-01-26  Havoc Pennington  <hp@pobox.com>
10796
10797         The unit tests pass, but otherwise untested.  If it breaks, the
10798         tests should have been better. ;-)
10799
10800         * bus/driver.c (bus_driver_handle_hello): return if we disconnect
10801         the connection.
10802
10803         * dbus/dbus-message.c: redo everything so we maintain
10804         message->header as the only copy of the various fields.
10805         This avoids the possibility of out-of-memory in some cases,
10806         for example dbus_message_lock() can't run out of memory anymore,
10807         and avoids extra copying. Figured I may as well go ahead and do
10808         this since it was busted for dbus_message_lock to not return
10809         failure on OOM, and dbus_message_write_header was totally
10810         unchecked for OOM. Also fixed some random other bugs.
10811
10812         * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): verify
10813         that strings are nul-terminated. Also, end_pos can be equal
10814         to string length just not greater than, I think.
10815         (_dbus_marshal_set_int32): new function
10816         (_dbus_marshal_set_uint32): new function
10817         (_dbus_marshal_set_string): new function
10818
10819         * dbus/dbus-connection.c (_dbus_connection_new_for_transport): fix
10820         a warning, init timeout_list to NULL
10821         (dbus_connection_send_message): don't use uninitialized variable
10822         "serial"
10823
10824         * dbus/dbus-string.c (_dbus_string_replace_len): new function
10825
10826 2003-01-26  Anders Carlsson  <andersca@codefactory.se>
10827
10828         * bus/driver.c: (bus_driver_handle_hello),
10829         (bus_driver_send_welcome_message):
10830         Plug leaks
10831
10832 2003-01-26  Anders Carlsson  <andersca@codefactory.se>
10833
10834         * dbus/dbus-auth.c: (process_auth), (_dbus_auth_unref):
10835         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
10836         (dbus_connection_unref):
10837         * dbus/dbus-marshal.c: (_dbus_marshal_test):
10838         * dbus/dbus-message.c: (dbus_message_unref),
10839         Plug memory leaks.
10840
10841         (dbus_message_get_fields):
10842         Remove debugging printout.
10843
10844         (_dbus_message_loader_return_buffer):
10845         Don't store the header string.
10846
10847         (_dbus_message_test):
10848         Plug leaks.
10849
10850 2003-01-26  Richard Hult  <rhult@codefactory.se>
10851
10852         * glib/dbus-gmain.c (dbus_connection_dispatch): Traverse a copy of
10853         the file descriptor list, since it can change under us.
10854
10855 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10856
10857         * glib/dbus-gmain.c: (dbus_connection_prepare),
10858         (dbus_connection_check), (dbus_connection_dispatch), (add_watch),
10859         (remove_watch), (dbus_connection_hookup_with_g_main):
10860         Rewrite the glib handling to use its own GSource instead of a
10861         GIOChannel so we can catch messages put in the queue while waiting
10862         for a reply.
10863
10864 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10865
10866         * bus/Makefile.am:
10867         * bus/connection.c: (connection_disconnect_handler),
10868         (connection_watch_callback), (bus_connection_setup):
10869         * bus/dispatch.c: (send_one_message),
10870         (bus_dispatch_broadcast_message), (bus_dispatch_message_handler),
10871         (bus_dispatch_add_connection), (bus_dispatch_remove_connection):
10872         * bus/dispatch.h:
10873         * bus/driver.c: (bus_driver_send_service_deleted),
10874         (bus_driver_send_service_created), (bus_driver_handle_hello),
10875         (bus_driver_send_welcome_message),
10876         (bus_driver_handle_list_services), (bus_driver_remove_connection),
10877         (bus_driver_handle_message):
10878         * bus/driver.h:
10879         Refactor code, put the message dispatching in its own file. Use
10880         _DBUS_HANDLE_OOM. Also send ServiceDeleted messages when a client
10881         is disconnected.
10882
10883 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10884
10885         * dbus/dbus-internals.h:
10886         Add _DBUS_HANDLE_OOM macro, it doesn't do anything currently.
10887
10888         * dbus/dbus-message.c: (dbus_message_get_sender):
10889         * dbus/dbus-message.h:
10890         Implement dbus_message_get_sender.
10891
10892         * dbus/dbus-protocol.h:
10893         Add message and service defines.
10894
10895 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10896
10897         * dbus/dbus-connection.c: (dbus_connection_send_message):
10898         * dbus/dbus-message-internal.h:
10899         * dbus/dbus-message.c: (_dbus_message_get_client_serial),
10900         (dbus_message_write_header):
10901         Remove _dbus_messag_unlock and don't set the client serial on a
10902         message if one already exists.
10903
10904 2003-01-24  Havoc Pennington  <hp@pobox.com>
10905
10906         * dbus/dbus-list.c (alloc_link): put a thread lock on the global
10907         list_pool
10908
10909         * bus/driver.c (bus_driver_handle_list_services): fix a leak
10910         on OOM
10911
10912 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10913
10914         * dbus/dbus-list.c: (alloc_link), (free_link):
10915         Use a memory pool for the links.
10916
10917 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10918
10919         * bus/connection.c: (bus_connection_foreach):
10920         * bus/connection.h:
10921         Add new bus_connection_foreach function.
10922
10923         * bus/driver.c: (send_one_message), (bus_driver_broadcast_message):
10924         Add function that broadcasts a message to all clients.
10925
10926         (bus_driver_send_service_created), (bus_driver_handle_hello),
10927         (bus_driver_send_welcome_message),
10928         (bus_driver_handle_list_services), (bus_driver_message_handler):
10929         Implement functions that take care of listing services, and notifying
10930         clients when new services are created.
10931
10932         * bus/services.c: (bus_services_list):
10933         * bus/services.h:
10934         Add new function that returns an array of strings with the currently
10935         registered services.
10936
10937         * glib/dbus-glib.h:
10938         * glib/dbus-gmain.c:
10939         Update copyright year.
10940
10941 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10942
10943         * dbus/dbus-connection.c: (dbus_connection_send_message):
10944         Unlock the message in case it was sent earlier.
10945
10946         (dbus_connection_send_message_with_reply_and_block):
10947         Remove the reply message from the list.
10948
10949         * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
10950         Set array_len and new_pos correctly.
10951
10952         (_dbus_marshal_test):
10953         Remove debug output.
10954
10955         * dbus/dbus-message-internal.h:
10956         * dbus/dbus-message.c: (_dbus_message_get_reply_serial):
10957         New function that returns the reply serial.
10958
10959         (_dbus_message_unlock):
10960         New function that unlocks a message and resets its header.
10961
10962         (dbus_message_append_string_array),
10963         (dbus_message_get_fields_valist),
10964         (dbus_message_iter_get_field_type),
10965         (dbus_message_iter_get_string_array),
10966         (dbus_message_get_fields),
10967         (dbus_message_append_fields_valist):
10968         Handle string arrays.
10969
10970         (dbus_message_set_sender):
10971         Make this function public since the bus daemon needs it.
10972
10973         (decode_header_data):
10974         Set the reply serial to -1 initially.
10975
10976         * dbus/dbus-message.h:
10977         Add dbus_message_set_sender.
10978
10979 2003-01-24  Havoc Pennington  <hp@pobox.com>
10980
10981         * doc/dbus-specification.sgml: add some stuff
10982
10983 2003-01-22  Havoc Pennington  <hp@pobox.com>
10984
10985         * doc/dbus-specification.sgml: Start to document the protocol.
10986
10987 2003-01-22  Havoc Pennington  <hp@pobox.com>
10988
10989         * dbus/dbus-connection.c
10990         (dbus_connection_send_message_with_reply_and_block): add some @todo
10991
10992         * bus/driver.c (bus_driver_add_connection): add a FIXME about memleak
10993
10994 2003-01-21  Havoc Pennington  <hp@pobox.com>
10995
10996         (patch untested because can't compile)
10997
10998         * bus/driver.c (create_unique_client_name): make this function
10999         never recycle client names. Also, caller should initialize
11000         the DBusString.
11001
11002         * dbus/dbus-sysdeps.c (_dbus_get_current_time): new function
11003
11004 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
11005
11006         * dbus/dbus-marshal.c: (_dbus_marshal_double),
11007         (_dbus_marshal_int32), (_dbus_marshal_uint32),
11008         (_dbus_marshal_int32_array), (_dbus_marshal_uint32_array),
11009         (_dbus_marshal_double_array), (_dbus_marshal_string_array),
11010         (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
11011         (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
11012         (_dbus_marshal_get_field_end_pos), (_dbus_marshal_test):
11013         * dbus/dbus-marshal.h:
11014         * dbus/dbus-protocol.h:
11015         Add support for marshalling and demarshalling integer, double
11016         and string arrays.
11017
11018 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
11019
11020         * bus/Makefile.am:
11021         Add driver.[ch]
11022
11023         * bus/connection.c: (connection_disconnect_handler):
11024         Remove the connection from the bus driver's list.
11025
11026         (connection_watch_callback): Dispatch messages.
11027
11028         (free_connection_data): Free connection name.
11029
11030         (bus_connection_setup): Add connection to the bus driver's list.
11031         (bus_connection_remove_owned_service):
11032         (bus_connection_set_name), (bus_connection_get_name):
11033         Add functions for setting and getting the connection's name.
11034
11035         * bus/connection.h:
11036         Add function headers.
11037
11038         * bus/driver.c: (create_unique_client_name),
11039         (bus_driver_handle_hello_message),
11040         (bus_driver_send_welcome_message), (bus_driver_message_handler),
11041         (bus_driver_add_connection), (bus_driver_remove_connection):
11042         * bus/driver.h:
11043         * bus/main.c:
11044         * bus/services.c: (bus_service_free):
11045         * bus/services.h:
11046         New file that handles communication and registreation with the bus
11047         itself.
11048
11049 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
11050
11051         * dbus/dbus-connection.c: (dbus_connection_send_message):
11052         Add a new client_serial parameter.
11053
11054         (dbus_connection_send_message_with_reply):
11055         Remove a @todo since we've implemented the blocking function.
11056
11057         (dbus_connection_send_message_with_reply_and_block):
11058         New function that sends a message and waits for a reply and
11059         then returns the reply.
11060
11061         * dbus/dbus-connection.h:
11062         Add new functions.
11063
11064         * dbus/dbus-errors.c: (dbus_result_to_string):
11065         * dbus/dbus-errors.h:
11066         Add new DBUS_RESULT.
11067
11068         * dbus/dbus-message-internal.h:
11069         * dbus/dbus-message.c: (_dbus_message_get_reply_serial),
11070         (_dbus_message_set_sender), (dbus_message_write_header),
11071         (dbus_message_new_reply), (decode_header_data),
11072         (_dbus_message_loader_return_buffer), (_dbus_message_test):
11073         * dbus/dbus-message.h:
11074         Add new functions that set the reply serial and sender.
11075         Also marshal and demarshal them correctly and add test.
11076
11077         * dbus/dbus-protocol.h:
11078         Add new DBUS_MESSAGE_TYPE_SENDER.
11079
11080         * glib/dbus-glib.h:
11081         * glib/dbus-gmain.c: (watch_callback), (free_callback_data),
11082         (add_watch), (remove_watch), (add_timeout), (remove_timeout),
11083         (dbus_connection_hookup_with_g_main):
11084         * glib/test-dbus-glib.c: (main):
11085         Rewrite to use GIOChannel and remove the GSource crack.
11086
11087         * test/echo-client.c: (main):
11088         * test/watch.c: (check_messages):
11089         Update for changed APIs
11090
11091 2003-01-19  Anders Carlsson  <andersca@codefactory.se>
11092
11093         * dbus/Makefile.am: Add dbus-timeout.[cħ]
11094
11095         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport):
11096         Create a DBusTimeoutList.
11097         (dbus_connection_set_timeout_functions): Add new function to
11098         set timeout callbacks
11099
11100         * dbus/dbus-connection.h: Add public DBusTimeout API.
11101
11102         * dbus/dbus-message.c: (dbus_message_get_service):
11103         * dbus/dbus-message.h:  New function.
11104
11105         * dbus/dbus-server.c: Fix small doc typo.
11106
11107         * dbus/dbus-timeout.[ch]: New files for mainloop timeouts.
11108
11109 2003-01-19  Anders Carlsson  <andersca@codefactory.se>
11110
11111         * dbus/dbus-string.c (_dbus_string_move_len): Don't delete all
11112         of the string, just as long as specified.
11113
11114 2003-01-19  Havoc Pennington  <hp@pobox.com>
11115
11116         * dbus/dbus-connection.c (dbus_connection_get_is_authenticated):
11117         new function
11118
11119         * dbus/dbus-server.c (dbus_server_set_max_connections)
11120         (dbus_server_get_max_connections, dbus_server_get_n_connections):
11121         keep track of current number of connections, and add API for
11122         setting a max (but haven't implemented enforcing the max yet)
11123
11124 2003-01-18  Havoc Pennington  <hp@pobox.com>
11125
11126         * dbus/dbus-transport-unix.c (unix_do_iteration): only do the
11127         reading/writing if read_watch != NULL or write_watch != NULL.
11128
11129         * dbus/dbus-message.c (_dbus_message_loader_return_buffer): fix
11130         the message loader code to actually load message->header and
11131         message->body into the newly-created message.
11132
11133         * dbus/dbus-transport-unix.c (check_write_watch): fix a mem leak
11134         in OOM case
11135
11136         * dbus/dbus-connection.c (dbus_connection_set_max_message_size)
11137         (dbus_connection_get_max_message_size)
11138         (dbus_connection_set_max_live_messages_size)
11139         (dbus_connection_get_max_live_messages_size): implement some
11140         resource limitation functions
11141
11142         * dbus/dbus-resources.c: new file implementing some of the
11143         resource limits stuff
11144
11145         * dbus/dbus-message.c (dbus_message_iter_get_byte_array): add
11146         missing docs, add @todo to handle OOM etc.
11147
11148         * dbus/dbus-marshal.c (_dbus_demarshal_byte_array): add missing
11149         docs
11150
11151 2003-01-18  Havoc Pennington  <hp@pobox.com>
11152
11153         * dbus/dbus-connection.c (dbus_connection_unref): disconnect the
11154         connection if it hasn't been already.
11155
11156         * dbus/dbus-connection.h: kill off the idea of an ErrorFunction,
11157         replace with DisconnectFunction.
11158
11159 2003-01-18  Havoc Pennington  <hp@pobox.com>
11160
11161         Building --disable-verbose-mode --disable-asserts --disable-tests
11162         cuts the library from 112K to 45K or so
11163
11164         * configure.in: check for varargs macro support,
11165         add --enable-verbose-mode, --enable-asserts.
11166
11167         * dbus/dbus-internals.h (_dbus_assert): support
11168         DBUS_DISABLE_ASSERT
11169         (_dbus_verbose): support DBUS_ENABLE_VERBOSE_MODE
11170
11171 2003-01-18  Havoc Pennington  <hp@pobox.com>
11172
11173         * dbus/dbus-test.c: include config.h so that tests actually run
11174
11175         * dbus/dbus-string.c: add assertions that stuff is 8-byte aligned,
11176         so the failure mode when that assumption fails will be plenty
11177         obvious.
11178
11179 2003-01-18  Havoc Pennington  <hp@pobox.com>
11180
11181         * configure.in: default --enable-tests to $USE_MAINTAINER_MODE
11182
11183         * dbus/Makefile.am: fix it up so dubs-test-main.c is included in
11184         the distribution
11185
11186         * test/Makefile.am: don't use special variable "TESTS" for echo-*
11187         since we don't want to use those in make check
11188
11189 2003-01-15  Havoc Pennington  <hp@redhat.com>
11190
11191         Release 0.2
11192
11193         * NEWS: update
11194
11195 2003-01-15  Havoc Pennington  <hp@redhat.com>
11196
11197         * test/Makefile.am: fix so that test source code ends up in the
11198         distribution on make distcheck
11199
11200 2003-01-15  Havoc Pennington  <hp@redhat.com>
11201
11202         Release 0.1.
11203
11204         * NEWS: update
11205
11206 2003-01-15  Havoc Pennington  <hp@redhat.com>
11207
11208         * dbus/dbus-test.c (dbus_internal_symbol_do_not_use_run_tests):
11209         fix build when --disable-tests
11210
11211         * Makefile.am (EXTRA_DIST): put HACKING in here
11212
11213         * HACKING: document procedure for making a tarball release.
11214
11215 2003-01-14  Anders Carlsson  <andersca@codefactory.se>
11216
11217         * bus/connection.c: (connection_error_handler),
11218         (bus_connection_setup):
11219         * bus/main.c: (main):
11220         Make sure that the DBusConnectionData struct is NULLed
11221         out to prevent a segfault.
11222
11223         * dbus/dbus-errors.c: (dbus_result_to_string):
11224         * dbus/dbus-errors.h:
11225         * dbus/dbus-message.c: (dbus_message_get_fields),
11226         (dbus_message_get_fields_valist), (_dbus_message_test):
11227         * dbus/dbus-message.h:
11228         Make dbus_message_get_fields return a result code so we can
11229         track invalid fields as well as oom.
11230
11231 2003-01-11  Havoc Pennington  <hp@pobox.com>
11232
11233         * configure.in: change --enable-test/--enable-ansi action-if-given
11234         to enable_foo=$enableval instead of enable_foo=yes
11235
11236 2003-01-08  Havoc Pennington  <hp@pobox.com>
11237
11238         * dbus/dbus-string.c (_dbus_string_align_length): new function
11239
11240         * dbus/dbus-test-main.c: move main() for test app here
11241         * dbus/dbus-test.c
11242         (dbus_internal_symbol_do_not_use_run_tests): we have to export a
11243         symbol to run tests, because dbus-test isn't in the main
11244         library
11245
11246         Code review nitpicks.
11247
11248         * dbus/dbus-message.c (dbus_message_write_header): add newlines
11249         for people with narrow emacs ;-). Assert client_serial was filled
11250         in. Assert message->name != NULL.
11251         (dbus_message_append_fields): have "first_field_type" arg separate
11252         from va list, needed for C++ binding that also uses varargs IIRC
11253         and helps with type safety
11254         (dbus_message_new): add @todo about using DBusString to store
11255         service/name internally
11256         (dbus_message_new): don't leak ->service and ->name on OOM later
11257         in the function
11258         (dbus_message_unref): free the service name
11259         (dbus_message_get_fields): same change to varargs
11260         i.e. first_field_type
11261         (_dbus_message_loader_return_buffer): assert that the message data
11262         is aligned (if not it's a bug in our code). Put in verbose griping
11263         about why we set corrupted = TRUE.
11264         (decode_header_data): add FIXME that char* is evil.  Was going to
11265         add FIXME about evil locale-specific string.h strncmp, but just
11266         switched to wacky string-as-uint32 optimization. Move check for
11267         "no room for field name" above get_const_data_len() to avoid
11268         assertion failure in get_const_data_len if we have trailing 2
11269         bytes or the like. Check for service and name fields being
11270         provided twice. Don't leak service/name on error. Require field
11271         names to be aligned to 4 bytes.
11272
11273         * dbus/dbus-marshal.c: move byte swap stuff to header
11274         (_dbus_pack_int32): uscore-prefix
11275         (_dbus_unpack_int32): uscore-prefix
11276         (_dbus_unpack_uint32): export
11277         (_dbus_demarshal_string): add @todo complaining about use of
11278         memcpy()
11279         (_dbus_marshal_get_field_end_pos): add @todo about bad error
11280         handling allowing corrupt data to go unchecked
11281
11282 2003-01-08  Havoc Pennington  <hp@redhat.com>
11283
11284         * dbus/dbus-transport-unix.c (unix_do_iteration): add read/write
11285         to the select() as needed for authentication. (should be using
11286         _dbus_poll() not select, but for another day)
11287
11288         * dbus/dbus.h: include dbus/dbus-protocol.h
11289
11290 2003-01-08  Anders Carlsson  <andersca@codefactory.se>
11291
11292         * dbus/Makefile.am (dbusinclude_HEADERS): Install
11293         dbus-connection.h
11294
11295 2003-01-08  Anders Carlsson  <andersca@codefactory.se>
11296
11297         * dbus/dbus-internals.c: (_dbus_type_to_string):
11298         New function that returns a string describing a type.
11299
11300         * dbus/dbus-marshal.c: (_dbus_demarshal_byte_array):
11301         * dbus/dbus-marshal.h:
11302         * dbus/dbus-message.c: (dbus_message_get_fields_valist),
11303         (dbus_message_iter_get_field_type), (dbus_message_iter_get_double),
11304         (dbus_message_iter_get_byte_array):
11305         * dbus/dbus-message.h:
11306         Add new convenience functions for appending and getting message fields.
11307         Also add demarshalling routines for byte arrays.
11308
11309 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
11310
11311         * dbus/dbus-connection-internal.h:
11312         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
11313         (_dbus_connection_get_next_client_serial),
11314         (dbus_connection_send_message):
11315         * dbus/dbus-internals.h:
11316         * dbus/dbus-marshal.c: (unpack_uint32), (dbus_unpack_int32),
11317         (dbus_pack_int32), (_dbus_marshal_double), (_dbus_marshal_int32),
11318         (_dbus_marshal_uint32), (_dbus_demarshal_double),
11319         (_dbus_demarshal_int32), (_dbus_demarshal_uint32),
11320         (_dbus_demarshal_string), (_dbus_marshal_get_field_end_pos),
11321         (_dbus_verbose_bytes), (_dbus_marshal_test):
11322         * dbus/dbus-marshal.h:
11323         * dbus/dbus-message-internal.h:
11324         * dbus/dbus-message.c: (_dbus_message_set_client_serial),
11325         (dbus_message_write_header), (_dbus_message_lock),
11326         (dbus_message_new), (dbus_message_ref), (dbus_message_unref),
11327         (dbus_message_get_name), (dbus_message_append_int32),
11328         (dbus_message_append_uint32), (dbus_message_append_double),
11329         (dbus_message_append_string), (dbus_message_append_byte_array),
11330         (dbus_message_get_fields_iter), (dbus_message_iter_ref),
11331         (dbus_message_iter_unref), (dbus_message_iter_has_next),
11332         (dbus_message_iter_next), (dbus_message_iter_get_field_type),
11333         (dbus_message_iter_get_string), (dbus_message_iter_get_int32),
11334         (dbus_message_iter_get_uint32), (dbus_message_iter_get_double),
11335         (decode_header_data), (_dbus_message_loader_return_buffer),
11336         (message_iter_test), (_dbus_message_test):
11337         * dbus/dbus-message.h:
11338         * dbus/dbus-protocol.h:
11339         * dbus/dbus-test.c: (main):
11340         * dbus/dbus-test.h:
11341         * glib/test-dbus-glib.c: (message_handler), (main):
11342         * test/echo-client.c: (main):
11343         * test/watch.c: (check_messages):
11344         Make messages sendable and receivable for real.
11345
11346 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
11347
11348         * dbus/dbus-marshal.c: (_dbus_marshal_double),
11349         (_dbus_marshal_string), (_dbus_marshal_byte_array):
11350         * dbus/dbus-message.c: (dbus_message_append_int32),
11351         (dbus_message_append_uint32), (dbus_message_append_double),
11352         (dbus_message_append_string), (dbus_message_append_byte_array):
11353         Handle OOM restoration.
11354
11355 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
11356
11357         * dbus/dbus-marshal.c: (_dbus_marshal_string),
11358         (_dbus_demarshal_string), (_dbus_marshal_test):
11359         * dbus/dbus-marshal.h:
11360         * dbus/dbus-message.c: (dbus_message_get_name),
11361         Document these functions.
11362
11363         (dbus_message_append_int32), (dbus_message_append_uint32),
11364         (dbus_message_append_double), (dbus_message_append_string),
11365         (dbus_message_append_byte_array):
11366         * dbus/dbus-message.h:
11367         Add functions for adding message fields of different types.
11368
11369         * dbus/dbus-protocol.h:
11370         Add the different types.
11371
11372 2003-01-05  Havoc Pennington  <hp@pobox.com>
11373
11374         * bus/connection.c: implement routines for handling connections,
11375         first thing is keeping a list of owned services on each connection
11376         and setting up watches etc.
11377
11378         * bus/services.c: implement a mapping from service names to lists
11379         of connections
11380
11381         * dbus/dbus-hash.c: add DBUS_HASH_POINTER
11382
11383         * dbus/dbus-threads.c (dbus_static_mutex_lock): add functions
11384         to use static mutexes for global data
11385
11386         * dbus/dbus-connection.c (dbus_connection_set_data): add new
11387         collection of functions to set/get application-specific data
11388         on the DBusConnection.
11389
11390 2003-01-04  Havoc Pennington  <hp@pobox.com>
11391
11392         * dbus/dbus-sysdeps.c (_dbus_sleep_milliseconds): new function
11393         (_dbus_poll): new function
11394
11395         * dbus/dbus-internals.h (_DBUS_STRUCT_OFFSET): new macro
11396         copied from GLib
11397
11398         * bus/loop.c: initial code for the daemon main loop
11399
11400 2003-01-04  Havoc Pennington  <hp@pobox.com>
11401
11402         * test/watch.c (error_handler): make it safe if the error handler
11403         is called multiple times (if we s/error handler/disconnect
11404         handler/ we should just guarantee it's called only once)
11405
11406         * dbus/dbus-transport.c (_dbus_transport_disconnect): call the
11407         error handler on disconnect (it's quite possible we should
11408         just change the error handler to a "disconnect handler," I'm
11409         not sure we have any other meaningful errors)
11410
11411         * configure.in: check for getpwnam_r
11412
11413         * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
11414         dbus/dbus-auth.c: add credentials support, add EXTERNAL auth
11415         mechanism as in SASL spec, using socket credentials
11416
11417         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): new function
11418         (_dbus_send_credentials_unix_socket): new function
11419
11420         * dbus/dbus-sysdeps.c (_dbus_accept_unix_socket): rename just
11421         dbus_accept()
11422         (_dbus_write): only check errno if <0 returned
11423         (_dbus_write_two): ditto
11424
11425 2003-01-02  Anders Carlsson  <andersca@codefactory.se>
11426
11427         * dbus/dbus-marshal.c: (_dbus_marshal_utf8_string),
11428         (_dbus_marshal_byte_array), (_dbus_demarshal_utf8_string),
11429         (_dbus_marshal_test):
11430         * dbus/dbus-marshal.h:
11431         Add _dbus_marshal_byte_array and rename _dbus_marshal_string
11432         to _dbus_marshal_utf8_string. Also fix some tests.
11433
11434 2002-12-28  Harri Porten  <porten@kde.org>
11435
11436         * configure.in: added check for C++ compiler and a very cheesy
11437         check for the Qt integration
11438
11439         * Makefile.am (SUBDIRS): compile qt subdir if support is enabled
11440
11441         * qt/Makefile.am: added
11442
11443         * qt/.cvsignore: added
11444
11445         * qt/dbus-qthread.cc, qt/dbus-qthread.cpp: renamed former to
11446         latter, added #ifdef QT_THREAD_SUPPORT guard.
11447
11448         * dbus/Makefile.am: added missing headers for make dist
11449
11450 2002-12-28  Kristian Rietveld  <kris@gtk.org>
11451
11452         * dbus/Makefile.am: fixup export-symbols-regex.
11453
11454 2002-12-27  Anders Carlsson  <andersca@codefactory.se>
11455
11456         * acinclude.m4: Add this file and put the
11457         PKG_CHECK_MODULE macro in it.
11458
11459 2002-12-27  Anders Carlsson  <andersca@codefactory.se>
11460
11461         * dbus/dbus-marshal.c: (_dbus_marshal_string),
11462         (_dbus_demarshal_double), (_dbus_demarshal_int32),
11463         (_dbus_demarshal_uint32), (_dbus_demarshal_string),
11464         (_dbus_marshal_test):
11465         Make the demarshalling routines align the pos argument.
11466         Add string marshalling tests and fix the obvious bugs
11467         discovered.
11468
11469 2002-12-26  Havoc Pennington  <hp@pobox.com>
11470
11471         * dbus/dbus-auth.c: fixes fixes fixes
11472
11473         * dbus/dbus-transport-unix.c: wire up support for
11474         encoding/decoding data on the wire
11475
11476         * dbus/dbus-auth.c (_dbus_auth_encode_data)
11477         (_dbus_auth_decode_data): append to target string
11478         instead of nuking it.
11479
11480 2002-12-26  Havoc Pennington  <hp@pobox.com>
11481
11482         * dbus/dbus-marshal.h (DBUS_COMPILER_BYTE_ORDER): #ifdef
11483         WORDS_BIGENDIAN then compiler byte order is DBUS_BIG_ENDIAN,
11484         doh
11485
11486         * dbus/dbus-marshal.c: Add macros to do int swapping in-place and
11487         avoid swap_bytes() overhead (ignoring possible assembly stuff for
11488         now). Main point is because I wanted unpack_uint32 to implement
11489         _dbus_verbose_bytes
11490         (_dbus_verbose_bytes): new function
11491
11492         * dbus/dbus-string.c (_dbus_string_validate_ascii): new function
11493
11494         * dbus/dbus-message.c (_dbus_message_loader_get_is_corrupted): add
11495         mechanism to handle a corrupt message stream
11496         (_dbus_message_loader_new): fix preallocation to only prealloc,
11497         not prelengthen
11498
11499         * dbus/dbus-string.c (_dbus_string_skip_blank): fix this function
11500         (_dbus_string_test): enhance tests for copy/move and fix the
11501         functions
11502
11503         * dbus/dbus-transport-unix.c: Hold references in more places to
11504         avoid reentrancy problems
11505
11506         * dbus/dbus-transport.c: ditto
11507
11508         * dbus/dbus-connection.c (dbus_connection_dispatch_message): don't
11509         leak reference count in no-message case
11510
11511         * test/watch.c (do_mainloop): handle adding/removing watches
11512         during iteration over the watches. Also, ref the connection/server
11513         stored on a watch, so we don't try to mangle a destroyed one.
11514
11515         * dbus/dbus-transport-unix.c (do_authentication): perform
11516         authentication
11517
11518         * dbus/dbus-auth.c (get_state): add a state
11519         AUTHENTICATED_WITH_UNUSED_BYTES and return it if required
11520         (_dbus_auth_get_unused_bytes): append the unused bytes
11521         to the passed in string, rather than prepend
11522
11523         * dbus/dbus-transport.c (_dbus_transport_init_base): create
11524         the auth conversation DBusAuth
11525
11526         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd)
11527         (_dbus_transport_new_for_domain_socket): when creating a
11528         transport, pass in whether it's a client-side or server-side
11529         transport so we know which DBusAuth to create
11530
11531 2002-12-03  Havoc Pennington  <hp@pobox.com>
11532
11533         * dbus/dbus-transport-unix.c (unix_finalize): finalize base
11534         _after_ finalizing the derived members
11535         (unix_connection_set): unref watch if we fail to add it
11536
11537         * dbus/dbus-connection.c (dbus_connection_unref): delete the
11538         transport first, so that the connection owned by the
11539         transport will be valid as the transport finalizes.
11540
11541         * dbus/dbus-transport-unix.c (unix_finalize): free the write_watch
11542         if necessary, and remove watches from the connection.
11543
11544         * dbus/dbus-watch.c (_dbus_watch_list_free): improve a comment
11545
11546 2002-12-26  Anders Carlsson  <andersca@codefactory.se>
11547
11548         * dbus/dbus-marshal.c: (_dbus_marshal_string),
11549         (_dbus_demarshal_double), (_dbus_demarshal_int32),
11550         (_dbus_demarshal_uint32), (_dbus_demarshal_string),
11551         (_dbus_marshal_test):
11552         * dbus/dbus-marshal.h:
11553         Add string marshal functions and have the demarshal functions
11554         return the new position.
11555
11556 2002-12-25  Havoc Pennington  <hp@pobox.com>
11557
11558         * doc/dbus-sasl-profile.txt: docs on the authentication protocol,
11559         it is a simple protocol that just maps directly to SASL.
11560
11561         * dbus/dbus-auth.h, dbus/dbus-auth.c: authentication protocol
11562         initial implementation, not actually used yet.
11563
11564         * dbus/dbus-string.c (_dbus_string_find): new function
11565         (_dbus_string_equal): new function
11566         (_dbus_string_base64_encode): new function
11567         (_dbus_string_base64_decode): new function
11568
11569 2002-12-25  Anders Carlsson  <andersca@codefactory.se>
11570
11571         * dbus/Makefile.am:
11572         * dbus/dbus-marshal.c: (swap_bytes), (_dbus_marshal_double),
11573         (_dbus_marshal_int32), (_dbus_marshal_uint32),
11574         (_dbus_demarshal_double), (_dbus_demarshal_int32),
11575         (_dbus_demarshal_uint32), (_dbus_marshal_test):
11576         * dbus/dbus-marshal.h:
11577         * dbus/dbus-protocol.h:
11578         * dbus/dbus-test.c: (main):
11579         * dbus/dbus-test.h:
11580         Add un-optimized marshalling/demarshalling routines.
11581
11582 2002-12-25  Harri Porten  <porten@kde.org>
11583
11584         * qt/dbus-qt.h: adjusted ctor and getter to KDE/Qt conventions
11585
11586 2002-12-24  Zack Rusin  <zack@kde.org>
11587
11588         * qt/dbus-qthread.cc: adding - integrates QMutex into Dbus
11589         * qt/dbus-qt.h: skeleton with two sample implemenatation of the
11590         main loop stuff
11591
11592 2002-12-24  Havoc Pennington  <hp@pobox.com>
11593
11594         * glib/dbus-gthread.c: fix include
11595
11596         * glib/dbus-glib.h: rename DBusMessageHandler for now.
11597         I think glib API needs to change, though, as you don't
11598         want to use DBusMessageFunction, you want to use the
11599         DBusMessageHandler object. Probably
11600         dbus_connection_open_with_g_main_loop()
11601         and dbus_connection_setup_g_main_loop() or something like that
11602         (but think of better names...) that just create a connection
11603         that has watch/timeout functions etc. already set up.
11604
11605         * dbus/dbus-connection.c
11606         (dbus_connection_send_message_with_reply): new function just to
11607         show how the message handler helps us deal with replies.
11608
11609         * dbus/dbus-list.c (_dbus_list_remove_last): new function
11610
11611         * dbus/dbus-string.c (_dbus_string_test): free a string that
11612         wasn't
11613
11614         * dbus/dbus-hash.c: use memory pools for the hash entries
11615         (rebuild_table): be more paranoid about overflow, and
11616         shrink table when we can
11617         (_dbus_hash_test): reduce number of sprintfs and write
11618         valid C89. Add tests for case where we grow and then
11619         shrink the hash table.
11620
11621         * dbus/dbus-mempool.h, dbus/dbus-mempool.c: memory pools
11622
11623         * dbus/dbus-connection.c (dbus_connection_register_handler)
11624         (dbus_connection_unregister_handler): new functions
11625
11626         * dbus/dbus-message.c (dbus_message_get_name): new
11627
11628         * dbus/dbus-list.c: fix docs typo
11629
11630         * dbus/dbus-message-handler.h, dbus/dbus-message-handler.c:
11631         an object representing a handler for messages.
11632
11633 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
11634
11635         * glib/dbus-glib.h:
11636         * glib/dbus-gthread.c: (dbus_gthread_init):
11637         Don't use the gdbus prefix for public functions.
11638
11639 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
11640
11641         * Makefile.am:
11642         * configure.in:
11643         Add GLib checks and fixup .pc files
11644
11645         * glib/Makefile.am:
11646         * glib/dbus-glib.h:
11647         * glib/dbus-gmain.c: (gdbus_connection_prepare),
11648         (gdbus_connection_check), (gdbus_connection_dispatch),
11649         (gdbus_add_connection_watch), (gdbus_remove_connection_watch),
11650         (dbus_connection_gsource_new):
11651         * glib/dbus-gthread.c: (dbus_gmutex_new), (dbus_gmutex_free),
11652         (dbus_gmutex_lock), (dbus_gmutex_unlock), (dbus_gthread_init):
11653         * glib/test-dbus-glib.c: (message_handler), (main):
11654         Add GLib support.
11655
11656 2002-12-15  Harri Porten  <porten@kde.org>
11657
11658         * autogen.sh: check for libtoolize before attempting to use it
11659
11660         * dbus/dbus-transport-unix.c: include <sys/time.h> for timeval
11661         struct.
11662
11663         * .cvsignore: ignore more stamp files
11664
11665         * dbus/dbus-watch.c (_dbus_watch_list_new): fixed doc error
11666
11667         * test/Makefile.am: added -I$(top_srcdir) to be able to compile
11668         without make install.
11669
11670 2002-12-15  Havoc Pennington  <hp@pobox.com>
11671
11672         * dbus/dbus-threads.c: add thread stubs that a higher library
11673         layer can fill in. e.g. the GLib wrapper might fill them in with
11674         GThread stuff. We still need to use this thread API to
11675         thread-safe-ize the library.
11676
11677 2002-12-12  Havoc Pennington  <hp@pobox.com>
11678
11679         * dbus/dbus-transport-unix.c, dbus/dbus-server-unix.c: use the
11680         below new interfaces and include fewer system headers.
11681
11682         * dbus/dbus-sysdeps.c (_dbus_read): new function
11683         (_dbus_write): new function
11684         (_dbus_write_two): new function
11685         (_dbus_connect_unix_socket): new function
11686         (_dbus_listen_unix_socket): new function
11687
11688         * dbus/dbus-message-internal.h: change interfaces to use
11689         DBusString
11690
11691 2002-12-11  Havoc Pennington  <hp@pobox.com>
11692
11693         * dbus/dbus-types.h: add dbus_unichar
11694
11695         * dbus/dbus-internals.c (_dbus_verbose): use _dbus_getenv
11696
11697         * dbus/dbus-connection.c (dbus_connection_send_message): return
11698         TRUE on success
11699
11700         * dbus/dbus-transport.c: include dbus-watch.h
11701
11702         * dbus/dbus-connection.c: include dbus-message-internal.h
11703
11704         * HACKING: add file with coding guidelines stuff.
11705
11706         * dbus/dbus-string.h, dbus/dbus-string.c: Encapsulate all string
11707         handling here, for security purposes (as in vsftpd). Not actually
11708         using this class yet.
11709
11710         * dbus/dbus-sysdeps.h, dbus/dbus-sysdeps.c: Encapsulate all
11711         system/libc usage here, as in vsftpd, for ease of auditing (and
11712         should also simplify portability). Haven't actually moved all the
11713         system/libc usage into here yet.
11714
11715 2002-11-25  Havoc Pennington  <hp@pobox.com>
11716
11717         * dbus/dbus-internals.c (_dbus_verbose): fix to not
11718         always print the first verbose message.
11719
11720 2002-11-24  Havoc Pennington  <hp@pobox.com>
11721
11722         * test/echo-client.c, test/echo-server.c: cheesy test
11723         clients.
11724
11725         * configure.in (AC_CHECK_FUNCS): check for writev
11726
11727         * dbus/dbus-message.c (_dbus_message_get_network_data): new
11728         function
11729
11730         * dbus/dbus-list.c (_dbus_list_foreach): new function
11731
11732         * dbus/dbus-internals.c (_dbus_verbose): new function
11733
11734         * dbus/dbus-server.c, dbus/dbus-server.h: public object
11735         representing a server that listens for connections.
11736
11737         * dbus/.cvsignore: create
11738
11739         * dbus/dbus-errors.h, dbus/dbus-errors.c:
11740         public API for reporting errors
11741
11742         * dbus/dbus-connection.h, dbus/dbus-connection.c:
11743         public object representing a connection that
11744         sends/receives messages. (Same object used for
11745         both client and server.)
11746
11747         * dbus/dbus-transport.h, dbus/dbus-transport.c:
11748         Basic abstraction for different kinds of stream
11749         that we might read/write messages from.
11750
11751 2002-11-23  Havoc Pennington  <hp@pobox.com>
11752
11753         * dbus/dbus-internals.h (_DBUS_INT_MAX): add _DBUS_INT_MIN
11754         _DBUS_INT_MAX
11755
11756         * dbus/dbus-test.c (main): add list test, and include
11757         dbus-test.h as intended
11758
11759         * dbus/dbus-hash.c (_dbus_hash_table_remove_string)
11760         (_dbus_hash_table_remove_int): return value indicates
11761         whether the entry existed to remove
11762
11763         * dbus/dbus-list.c: add linked list utility class,
11764         with docs and tests
11765
11766         * dbus/dbus-hash.c: add TODO item about shrinking the hash bucket
11767         array sometimes.
11768
11769 2002-11-23  Havoc Pennington  <hp@pobox.com>
11770
11771         * Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/
11772         DBUS_END_DECLS to nothing, that should fix this once and for all
11773
11774         * Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES
11775
11776         * dbus/dbus-message.c, dbus/dbus-hash.c:
11777         add some missing @brief
11778
11779 2002-11-23  Havoc Pennington  <hp@pobox.com>
11780
11781         * dbus/dbus-message.h: put semicolons after DEBUG_BEGIN_DECLS
11782         to avoid confusing Doxygen
11783
11784         * dbus/dbus-hash.c: @} not }@
11785
11786         * dbus/dbus-message.c (struct DBusMessage): split out
11787         internals docs
11788
11789 2002-11-23  Havoc Pennington  <hp@pobox.com>
11790
11791         * configure.in: pile on more warning flags if using gcc
11792
11793         * Doxyfile.in (EXTRACT_STATIC): set to NO, so we don't have
11794         to document static functions
11795
11796         * configure.in: add summary to end of configure so it
11797         looks nice and attractive
11798
11799         * dbus/dbus-hash.c: finish implementation and write unit
11800         tests and docs
11801
11802         * configure.in: add --enable-tests to enable unit tests
11803
11804         * dbus/dbus-test.c: test program to run unit tests
11805         for all files in dbus/*, initially runs a test for
11806         dbus-hash.c
11807
11808         * dbus/dbus-internals.h: file to hold some internal utility stuff
11809
11810 2002-11-22  Havoc Pennington  <hp@redhat.com>
11811
11812         * dbus/dbus-hash.c: copy in Tcl hash table, not yet
11813         "ported" away from Tcl
11814
11815         * dbus/dbus-types.h: header for types such as dbus_bool_t
11816
11817 2002-11-22  Havoc Pennington  <hp@redhat.com>
11818
11819         * dbus/dbus.h: fixups for doc warnings
11820
11821         * Doxyfile.in (FILE_PATTERNS): we need to scan .h to pick up
11822         macros
11823         (QUIET): make it quiet so we can see warnings
11824
11825         * dbus/dbus-memory.c: teach D-BUS to allocate and free memory
11826
11827 2002-11-22  Havoc Pennington  <hp@redhat.com>
11828
11829         * Makefile.am: include "Doxyfile" target in all-local
11830
11831         * configure.in: generate the Doxyfile
11832
11833         * Doxyfile.in: move Doxyfile here, so we can use
11834         configure to generate a Doxyfile with the right
11835         version number etc.
11836
11837 2002-11-22  Havoc Pennington  <hp@redhat.com>
11838
11839         * dbus/dbus-message.c: move inline docs into .c file
11840
11841         * Doxyfile (OUTPUT_DIRECTORY): move output to doc/api
11842         so all docs are under doc/
11843         (MAN_EXTENSION): generate man pages. Use extension
11844         ".3dbus" which matches ".3qt" on my system,
11845         I guess this is OK, I don't know really.
11846         (FILE_PATTERNS): look for .c files not .h, makes sense
11847         for plain C I think
11848
11849 2002-11-22  Havoc Pennington  <hp@pobox.com>
11850
11851         * Makefile.am (SUBDIRS): rename subdir "server" to "bus"
11852         because any app can be a server, and any app can be a client,
11853         the bus is a special kind of server.
11854
11855 Thu Nov 21 23:35:31 2002  Zack Rusin  <zack@kde.org>
11856
11857         * Doxyfile : adding. Still needs Makefile rules to be generated
11858         automatically (just run "doxygen" in the toplevel dir for now to
11859         generate docs)
11860
11861         * dbus/dbus-message.h : Adding sample docs (javadoc since
11862         resembles gtk-doc a little more)
11863
11864         * dbus/dbus.h : Adding sample docs
11865
11866 2002-11-21  Havoc Pennington  <hp@redhat.com>
11867
11868         * dbus/Makefile.am (INCLUDES): define DBUS_COMPILATION
11869         so we can allow ourselves to include files directly,
11870         instead of having to use dbus.h
11871
11872         * dbus/dbus.h: fill in
11873
11874         * dbus/dbus-message.h: sketch out a sample header file.
11875         Include griping if you include it directly instead of
11876         via dbus.h
11877
11878         * dbus/dbus-macros.h: new file with macros for extern "C",
11879         TRUE/FALSE, NULL, etc.
11880
11881         * doc/file-boilerplate.c: put include guards in here
11882
11883 2002-11-21  Havoc Pennington  <hp@redhat.com>
11884
11885         * doc/file-boilerplate.c: include both AFL and GPL boilerplate.
11886
11887         * COPYING: include the GPL as well, and license code
11888         under both AFL and GPL.
11889
11890 2002-11-21  Havoc Pennington  <hp@redhat.com>
11891
11892         * acconfig.h: get rid of this
11893
11894         * autogen.sh (run_configure): add --no-configure option
11895
11896         * configure.in: remove AC_ARG_PROGRAM to make
11897         autoconf complain less. add AC_PREREQ.
11898         add AC_DEFINE third arg.
11899
11900 2002-11-21  Anders Carlsson  <andersca@codefactory.se>
11901
11902         * doc/Makefile.am:
11903         Fix references so we can distcheck.
11904
11905 2002-11-21  Havoc Pennington  <hp@redhat.com>
11906
11907         * Initial module creation
11908