a131af27b35a7211103043bdb541b30794a3619b
[platform/upstream/dbus.git] / ChangeLog
1 2005-08-17  John (J5) Palmieri  <johnp@redhat.com>
2         * ChangeLog: clean up my last entry a bit
3
4         * doc/introspect.xsl: New stylesheet for converting introspection data
5         into browser renderable xhtml. Contributed by Lennart Poettering.
6
7         * doc/introspect.dtd: Fixups in the introspect format from Lennart
8         Poettering.
9
10         * doc/dbus-tutorial.xml: 
11         - Add Colin Walter to the Authors section for authoring the GLib
12         section
13         - Add descriptions of the new signature and type functionality
14         in the Python complex type mapping section
15         - Add a sidenote on the new args matching functionality in 
16         the Python bindings
17         - Fixed up some of the examples to use the gobject.MainLoop
18         instead of gtk.main
19         
20         * python/_dbus.py:
21         (Bus::_create_args_dict): New. Converts a hash of arg matches
22         to a more useable format
23         (Bus::add_signal_receiver): add a **keywords parameter for catching
24         arg match parameters
25         (Bus::remove_signal_receiver): add a **keywords parameter for catching
26         arg match parameters
27         
28         * python/matchrules.py:
29         (MatchTree::exec_matches): Check for arg matches
30         (SignalMatchRule::add_args_match): New method
31         (SignalMatchRule::execute): Added args_list parameter as an optimization
32         so we don't have to marshal the args more than once
33         (SignalMatchRule::match_args_from_list): New method that checks to see
34         if the rule's arg matches match an argument list.  Only arguments
35         set in the rule are checked.
36         (SignalMatchRule::match_args_from_rule): New method that checks to see
37         if the rule's arg matches match another rule's.  All args have to match
38         in order for this method to return true.  If either rule has more args
39         then it is not a match.
40         (SignalMatchRule::is_match): Add args match
41         (SignalMatchRule::repr): Add args to the final output if they exist
42
43 2005-08-17  Ross Burton  <ross@burtonini.com>
44
45         * glib/dbus-gproxy.c:
46         (dbus_g_proxy_call_no_reply): unref the message once sent.
47         (dbus_g_proxy_call): protect against NULL proxy.
48
49 2005-08-16  John (J5) Palmieri  <johnp@redhat.com>
50
51         * python/__init__.py: Version updated (0, 43, 0)
52         
53         * python/dbus_bindings.pyx: 
54         - Fixed type objects to have self passed into __init__
55         - Added the Variant type
56         - Add the ability to specify types or signatures for Array, Variant 
57         and Dictionary
58         (Connection::send_with_reply_handlers): return a PendingCall object
59         (_pending_call_notification): handle the case when an error is returned 
60         without an error message in the body
61         (MessageIter::get_boolean): return True or False instead of an integer
62         (MessageIter::python_value_to_dbus_sig): add direct checking of types 
63         and add checks for objects with embeded signatures or types (Array, 
64         Variant and Dictionary)
65         (MessageIter::append_byte): handle case when the value is a dbus.Byte
66         (MessageIter::append_dict): handle embeded types or signatures
67         (MessageIter::append_array): handle embeded types or signatures
68         (MessageIter::append_variant): new method
69         
70         * python/proxies.py:
71         (DeferedMethod): New. Dummy executable object used when queuing calls 
72         blocking on introspection data
73         (ProxyMethod::__call__): add the timeout keyword for specifying longer 
74         or shorter timeouts for method calls
75         (ProxyObject): Add first pass at an introspection state machine
76         (ProxyObject::__init__): Add introspect keyword for turing off an on 
77         introspection. 
78         (ProxyObject::_Introspect): Internal Introspect call that bypasses 
79         the usual mechanisms for sending messages.  This is to avoid a deadlock
80         where the Intospect call would be queued waiting for the Introspect 
81         call to finish ;-)
82         (ProxyObject::_introspect_reply_handler): New.  This method is called 
83         when introspection returns with no error
84         (ProxyObject::_introspect_error_handler): New.  This method is called 
85         when introspection encounters an error
86         (ProxyObject::__getattr__): Code to handle different introspection 
87         states.  Queue async calls or block blocking calls if we are 
88         introspecting.  Pass through as normal if we are not or are done with 
89         introspecting.
90         
91         * python/service.py: Import signal and method from decorators.py
92
93         * python/types.py: Add Variant type
94
95 2005-08-16  Colin Walters  <walters@verbum.org>
96
97         * glib/dbus-gobject.c (dbus_set_g_error): Don't lose if the
98         DBusError message is NULL.
99
100 2005-08-09  Havoc Pennington  <hp@redhat.com>
101
102         * dbus/dbus-errors.c: apply patch from Timo Teras to make a
103         malloc'd copy of the name parameter
104
105 2005-08-09  Havoc Pennington  <hp@redhat.com>
106
107         * dbus/dbus-message.c (dbus_message_set_reply_serial): print
108         warning if the reply serial is set to 0
109
110 2005-08-04  Colin Walters  <walters@verbum.org>
111
112         * glib/dbus-gvalue-utils.h (_dbus_g_type_specialized_builtins_init)
113         (dbus_g_type_is_fixed, dbus_g_type_fixed_get_size)
114         (dbus_gvalue_set_from_pointer, dbus_g_hash_table_value_foreach)
115         (dbus_g_hash_table_insert_values, dbus_g_hash_table_insert_steal_values)
116         (dbus_gtype_is_valid_hash_key, dbus_gtype_is_valid_hash_value)
117         (dbus_g_hash_func_from_gtype, dbus_g_hash_free_from_gtype)
118         (dbus_g_hash_equal_from_gtype, dbus_gvalue_stor, dbus_gvalue_take):
119         * glib/dbus-gvalue.h (dbus_g_value_types_init)
120         (dbus_gvalue_demarshal, dbus_gvalue_demarshal_variant)
121         (dbus_gvalue_demarshal_message, dbus_gvalue_marshal):
122         
123         Prefix name with _ to ensure they're not exported.  All callers
124         updated.
125
126         * glib/dbus-gvalue.c (typecode_to_gtype)
127         (dbus_typecode_maps_to_basic, basic_typecode_to_gtype)
128         (signature_iter_to_g_type_dict)
129         (signature_iter_to_g_type_array)
130         (dbus_gtype_from_signature_iter, dbus_gtype_from_signature)
131         (dbus_gtypes_from_arg_signature):
132         Move to dbus-gsignature.c.
133
134         * glib/dbus-binding-tool-glib.c (dbus_binding_tool_output_glib_server): Call
135         dbus_g_type_specialized_builtins_init instead of dbus_g_value_types_init.
136         (dbus_binding_tool_output_glib_client): Ditto.
137
138         * glib/Makefile.am (DBUS_GLIB_INTERNALS): Add dbus-gsignature.c
139         and dbus-gsignature.h
140
141         * test/glib/test-service-glib.c (my_object_rec_arrays): Delete
142         unused variable.
143
144 2005-08-03  Colin Walters  <walters@verbum.org>
145
146         * glib/dbus-gobject.c: Add tests on hardcoded object info; this should
147         catch any incompatible changes accidentally made.
148
149 2005-08-03  Havoc Pennington  <hp@redhat.com>
150
151         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): fix
152         typo, from Julien Puydt
153
154         * bus/connection.c (bus_connection_disconnected): we were always
155         doing a wait_for_memory due to a buggy loop, found by Timo Hoenig
156
157 2005-08-01  Colin Walters  <walters@verbum.org>
158
159         Patch from Joe Markus Clarke:   
160         
161         * glib/dbus-gidl.c (property_info_unref, arg_info_unref): Fix
162         use-after-free.
163
164 2005-08-01  Colin Walters  <walters@verbum.org>
165         
166         Patch from Joe Markus Clarke:   
167         
168         * tools/dbus-send.c (main): 
169         
170         Don't use C99 style initializers (bug #3933).
171         
172 2005-08-01  Colin Walters  <walters@verbum.org>
173
174         Patch from Joe Markus Clarke:   
175
176         * glib/dbus-gvalue.c (dbus_g_value_types_init): 
177         * glib/dbus-gvalue-utils.c (dbus_g_type_specialized_builtins_init) 
178         * glib/dbus-gobject.c (write_interface):
179
180         Don't use C99 style initializers (bug #3933).
181
182 2005-07-31  Havoc Pennington  <hp@redhat.com>
183
184         * tools/dbus-viewer.c (load_child_nodes): fix invocation of
185         dbus_g_proxy_call, fix from Piotr Zielinski bug #3920
186
187 2005-07-30  Havoc Pennington  <hp@redhat.com>
188
189         * fix a bunch of Doxygen warnings and mistakes
190
191 2005-07-30  Havoc Pennington  <hp@redhat.com>
192
193         * dbus/dbus-sysdeps.c (_dbus_string_parse_uint): remove #ifdef
194         DBUS_BUILD_TESTS since it's now used in production code
195
196 2005-07-29  Havoc Pennington  <hp@redhat.com>
197
198         * test/glib/test-profile.c (write_junk): initialize the junk
199         buffer so valgrind doesn't have a breakdown
200
201 2005-07-29  Havoc Pennington  <hp@redhat.com>
202
203         * bus/signals.c (bus_signals_test): add match_rule_equal() tests
204         (match_rule_matches): remove unused arg
205         (test_matching): add tests for match_rule_matches()
206
207         * bus/signals.c (bus_match_rule_parse_arg_match): add ability to
208         do arg0='foo' arg5='bar' in the match rules
209         (match_rule_matches): don't match if the arg0='foo' doesn't match.
210
211         * dbus/dbus-protocol.h (DBUS_MAXIMUM_MATCH_RULE_ARG_NUMBER): add this
212
213 2005-07-29  Ross Burton  <ross@openedhand.com>
214
215         * dbus/dbus-connection.c:
216         Don't create a DBusCondVar which is never used.
217
218 2005-07-27  Ross Burton  <ross@openedhand.com>
219
220         * dbus/dbus-message.c:
221         Reduce the size of the maximum cached message to 10K.
222
223 2005-07-25  Ross Burton  <ross@openedhand.com>
224
225         * glib/dbus-gproxy.c:
226         Remove matches when all proxies are unregistered.
227
228 2005-07-24  Colin Walters  <walters@verbum.org>
229
230         * glib/dbus-gvalue.c (signature_iter_to_g_type_array): Don't require
231         typedata; recursive arrays won't have it.
232
233         * test/glib/test-dbus-glib.c:
234         * test/glib/test-service-glib.c:
235         * test/glib/test-service-glib.xml: Add recursive arrays tests.
236         
237 2005-07-20  John (J5) Palmieir  <johnp@redhat.com>
238
239         * python/_dbus.py, _util.py, decorators.py, extract.py, matchrules.py.
240         proxies.py, service.py: Cleanup of code after running it through the
241         pyflakes code checker mostly dealing with undefined names.  
242         (Bug #3828, Patch from Anthony Baxter <anthony@interlink.com.au>)
243
244 2005-07-17  John (J5) Palmieri  <johnp@redhat.com>
245
246         * NEWS: Update to 0.35.2
247
248 2005-07-17  John (J5) Palmieri  <johnp@redhat.com>
249
250         * python/_dbus.py: Remove import of the dbus.services
251         module as it no longer exists (patch from Dimitur Kirov)
252
253         * python/service.py (Object::__init__): Fixed typo
254         s/name/bus_name (patch from Dimitur Kirov)
255
256         * python/examples/example-signal-emitter.py: import dbus.glib
257         to get the main loop and use glib mainloop instead of gtk so
258         X doesn't have to be running.
259
260         * python/examples/example-signal-recipient.py: import dbus.glib
261         to get the main loop and use glib mainloop instead of gtk so
262         X doesn't have to be running. Import the decorators module
263         directly.
264
265         * test/glib/Makefile.am:  Added DIST_EXTRA files that distcheck
266         didn't pick up on but are needed to build
267
268         * configure.in: upped version to 0.35.2
269
270         * bus/driver.c, bus/selinux.c, bus/selinux.h, dbus/dbus-protocol.h:
271         added Colin Walters' SELinux API rename patch from head 
272         s/unix sercurity context/selinux security context/
273
274 2005-07-16  John (J5) Palmieri  <johnp@redhat.com>
275
276         * python/Makefile.am: dbus_binding.pxd.in should be included 
277         in EXTRA_DIST not dbus_binding.pxd
278         fix up $(srcdir) hopefully for the last time
279
280         * NEWS: Update to 0.35.1
281
282 2005-07-16  Colin Walters  <walters@verbum.org>
283
284         * bus/driver.c (bus_driver_handle_get_connection_selinux_security_context): Renamed
285         from bus_driver_handle_get_connection_unix_security_context.  Update for
286         error usage.
287         (message_handlers): Update for renames.
288
289         * bus/selinux.c (bus_selinux_allows_send): Handle OOM on
290         _dbus_string_init failure correctly.
291         (bus_selinux_append_context): Convert SID to context.  Append it
292         as a byte array.
293         (bus_selinux_shutdown): Handle the case where bus_selinux_full_init
294         hasn't been called.
295
296         * bus/selinux.h: Update prototype.
297
298         * dbus/dbus-protocol.h (DBUS_ERROR_SELINUX_SECURITY_CONTEXT_UNKNOWN): Renamed
299         from DBUS_ERROR_UNIX_SECURITY_CONTEXT_UNKNOWN.
300
301 2005-07-15  Colin Walters  <walters@verbum.org>
302
303         * doc/TODO: Add note about convenience wrappers.
304
305 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
306
307         * NEWS: Update to 0.35
308
309 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
310
311         * glib/Makefile.am: Add make-dbus-glib-error-switch.sh to EXTRA_DIST
312         so distcheck doesn't fail
313
314         * glib/examples/Makefile.am: Add example-service.xml and 
315         example-signal-emitter.xml to EXTRA_DIST so distcheck doesn't fail
316
317         * glib/examples/statemachine/Makefile.am: Add statemachine.xml and
318         statemachine-server.xml to EXTRA_DIST so distcheck doesn't fail
319
320         * python/Makefile.am: Preprend $(srcdir)/ to source files so the
321         compiler looks in the right places during distcheck
322
323 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
324
325         * glib/example/Makefile.am: Fix a typo which cause make distcheck
326         to fail
327
328 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
329
330         * python/examples/example-service.py,
331         python/examples/example-signal-emitter.py: Fixed up examples
332         for API changes
333
334 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
335
336         * python/__init__.py: Upped to version (0,42,0) because of
337         the API change
338
339 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
340
341         * ChangeLog: fix date in last entry
342
343         * configure.in, bus/system.conf.in: add the ability to configure 
344         the system bus user at compiletime with the --with-dbus-user flag
345         (patch from Kristof Vansant)
346
347 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
348
349         * bus/dispatch.c, test/test-service.c: Add testcase
350         for sending messages to oneself (TODO item).
351
352         * python/service.py (class Object): Swap ordering of bus_name 
353         and object_path parameters to better support inheritance.
354
355         * doc/dbus-tutorial.xml: change Python docs to reflect change
356         in parameter ordering and fix the inheritance section.
357
358         * doc/TODO: remove sending message to oneself TODO item
359
360 2005-07-15  Ross Burton  <ross@openedhand.com>
361
362         * glib/dbus-gproxy.c:
363         Fix a leak when calling methods via the proxy.
364
365 2005-07-15  Colin Walters  <walters@verbum.org>
366
367         * bus/selinux.c (bus_selinux_append_context): Wrap in
368         HAVE_SELINUX.
369
370 2005-07-14  John (J5) Palmieri  <johnp@redhat.com>
371
372         * python/_dbus.py (Bus::remove_signal_receiver):
373         don't add a callback to the match if none has been passed in
374         
375         * python/matchrules.py (SignalMatchTree::remove): if the rule
376         being matched does not have a callback treat it as a wildcard
377         fix matching logic
378
379         * doc/dbus-tutorial.xml: Add Python tutorial
380
381 2005-07-14  Colin Walters  <walters@verbum.org>
382
383         * bus/driver.c
384         (bus_driver_handle_get_connection_unix_security_context): New function.
385         (message_handlers): Add.
386
387         * bus/selinux.c (bus_selinux_append_context): New function; appends
388         security context to message.
389
390         * bus/selinux.h: Prototype.
391
392         * dbus/dbus-protocol.h (DBUS_ERROR_UNIX_SECURITY_CONTEXT_UNKNOWN): New.
393
394 2005-07-14  John (J5) Palmieri  <johnp@redhat.com>
395
396         * bus/activation.c: clean up all tabs to be 8 spaces 
397         (bus_activation_activate_service): make sure we clean up
398         if activation fails
399
400         * bus/dispatch.c: clean up all tabs to be 8 spaces 
401         (check_shell_fail_service_auto_start): New function
402         tests to make sure we get fail properly when trying to auto start a service
403         with a faulty command line
404         (check_shell_service_success_auto_start): New function tests to make sure
405         auto started services get the arguments on the command line
406
407         * test/test-shell-service.c: Added service for testing auto-starting with 
408         command line arguments
409
410         * test/data/valid-service-files/debug-shell-echo-fail.service.in, 
411         test/data/valid-service-files/debug-shell-echo-success.service.in:
412         Added service files for testing auto-starting with command line arguments
413
414         * */.cvsignore: added a bunch of generated files to various .cvsignore files
415
416 2005-07-14  Rodrigo Moya  <rodrigo@novell.com>
417
418         * dbus/dbus-shell.[ch]: copy/pasted code from GLib.
419         
420         * dbus/Makefile.am: added new files to build.
421
422         * bus/activation.c (bus_activation_activate_service): support
423         activation commands with parameters.
424
425         * test/shell-test.c: added test program for the shell parsing
426         code.
427
428 2005-07-13  David Zeuthen  <davidz@redhat.com>
429
430         * tools/dbus-send.c (append_arg, type_from_name): Also support 16 and
431         64 bit signed and unsigned parameters
432
433 2005-07-13  John (J5) Palmieri  <johnp@redhat.com>
434
435         * python/.cvsignore: remove dbus_bindings.pyx, add dbus_bindings.pxd
436
437         * python/service.py (class Name): renamed BusName to make it clearer
438         what the object is for (a name on the bus)
439
440         * python/examples/example-service.py,
441         python/examples/example-signal-emitter.py: change the Name object to
442         BusName
443
444 2005-07-12  Colin Walters  <walters@verbum.org>
445
446         Patch from Jim Gettys <Jim.Gettys@hp.com>.
447
448         * tools/dbus-launch.c: Include sys/select.h.
449
450 2005-07-12  John (J5) Palmieri  <johnp@redhat.com>
451         * python/dbus_bindings.pyx.in: removed
452
453         * python/dbus_bindings.pyx: Added.
454         - Fixed some memleaks (patch from 
455         Sean Meiners <sean.meiners@linspireinc.com>)
456         - Broke out the #include "dbus_h_wrapper.h" and put it in its
457         own pxd file (Pyrex definition)
458         - Broke out glib dependancies into its own pyx module
459         
460         * python/dbus_bindings.pdx: Added.
461         - Defines C class Connection for exporting to other modules
462
463         * python/dbus_glib_bindings.pyx: Added.
464         - New module to handle lowlevel dbus-glib mainloop integration
465
466         * python/glib.py: Added.
467         - Registers the glib mainloop when you import this module
468
469         * python/services.py: Removed (renamed to service.py)
470         
471         * python/service.py: Added.
472         - (class Server): renamed Name
473
474         * python/__init__.py: Bump ro version (0,41,0)
475         -don't import the decorators or service module
476         by default.  These now reside in the dbus.service namespace
477
478         * python/_dbus.py (Bus::__init__): Add code run the main loop 
479         setup function on creation 
480
481         * python/examples/example-service.py,
482         python/examples/example-signal-emitter.py: update examples
483
484         * python/examples/gconf-proxy-service.py,
485         python/examples/gconf-proxy-service2.py: TODO fix these up
486
487         * doc/TODO: Addition
488         - Added a Python Bindings 1.0 section
489         - added "Add match on args or match on details to match rules"
490
491
492 2005-07-12  Colin Walters  <walters@verbum.org>
493
494         * glib/examples/statemachine/Makefile.am (statemachine-server-glue.h) 
495         (statemachine-glue.h): 
496         * glib/examples/Makefile.am (example-service-glue.h) 
497         (example-signal-emitter-glue.h): 
498         * glib/Makefile.am (dbus-glib-error-switch.h): 
499         Add libtool --mode=execute so we use the built library instead
500         of any installed one.
501
502 2005-07-11  Colin Walters  <walters@verbum.org>
503
504         * glib/dbus-gvalue.c (struct _DBusGValue): Delete.
505         (dbus_g_value_types_init): Remove assertion.
506         (dbus_g_value_get_g_type, dbus_g_value_open)
507         (dbus_g_value_iterator_get_values, dbus_g_value_get_signature)
508         (dbus_g_value_copy, dbus_g_value_free): Delete unimplemented
509         functions related to DBusGValue.  Now we marshal/demarshal
510         structures as GValueArray.
511         (dbus_gtype_from_signature_iter): Return G_TYPE_VALUE_ARRAY for
512         structures.
513         (signature_iter_to_g_type_array): Don't call
514         signature_iter_to_g_type_struct.
515         (signature_iter_to_g_type_struct): Delete.
516         (dbus_gvalue_to_signature): Delete.
517         (dbus_gvalue_to_signature): New function with same name as other
518         one; we can convert structures to signatures.
519         (demarshal_valuearray): New function.
520         (get_type_demarshaller): Use it.
521         (demarshal_recurse): Delete.
522         (marshal_proxy): New function.
523         (marshal_map): Warn if we can't determine signature from type.
524         (marshal_collection_ptrarray): Ditto.
525         (marshal_collection_array): Ditto.
526         (get_type_marshaller): Use marshal_valuearray.
527         (marshal_recurse): Delete.
528         (_dbus_gvalue_test): Add some tests.
529
530         * dbus/dbus-glib.h (struct _DBusGValueIterator): 
531         (dbus_g_value_get_g_type, DBUS_TYPE_G_VALUE)
532         (dbus_g_value_open, dbus_g_value_iterator_get_value)
533         (dbus_g_value_iterator_get_values, dbus_g_value_iterator_recurse)
534         (dbus_g_value_free): Remove prototypes.
535
536         * glib/dbus-binding-tool-glib.c (dbus_g_type_get_lookup_function): Handle
537         G_TYPE_VALUE_ARRAY.
538
539         * glib/examples/example-service.c:
540         * glib/examples/example-client.c: Implement GetTuple.
541
542         * test/glib/test-dbus-glib.c:
543         * test/glib/test-service-glib.c:
544         * test/glib/test-service-glib.xml: Add structure tests.
545
546 2005-07-10  Colin Walters  <walters@verbum.org>
547
548         * doc/TODO: Knock off some GLib items with this patch.
549
550         * glib/dbus-gvalue-utils.c (_dbus_gtype_can_signal_error) 
551         (_dbus_gvalue_signals_error): New functions.
552
553         * glib/dbus-gvalue-utils.h: Prototype them.
554
555         * glib/dbus-gobject.c (arg_iterate): Update to handle return vals
556         and change to not output const/retval flags for input args.  All
557         callers updated.
558         (invoke_object_method): Refactor to handle return values.  Add
559         some more comments in various places.  Remove debug g_print.
560
561         * glib/dbus-binding-tool-glib.h (DBUS_GLIB_ANNOTATION_RETURNVAL): New.
562
563         * glib/dbus-binding-tool-glib.c (dbus_g_type_get_marshal_name):
564         Handle G_TYPE_NONE.
565         (compute_gsignature): New function; refactored from code from
566         compute_marshaller and compute_marshaller_name.  Enhance to
567         handle return values and async ops more cleanly.  Update for
568         async ops returning NONE instead of BOOLEAN.
569         (compute_marshaller, compute_marshaller_name): Call compute_gsignature
570         and output appropriate string.
571         (generate_glue): Handle return value annotation.  Also don't dump
572         constness flag for input arguments.
573
574         * glib/Makefile.am (DBUS_GLIB_INTERNALS): New variable; contains
575         files shared between installed library and utilities.
576         (libdbus_glib_1_la_SOURCES): Move some stuf into DBUS_GLIB_INTERNALS.
577         (libdbus_gtool_la_SOURCES): Suck in DBUS_GLIB_INTERNALS so the
578         binding tool can access gtype utility functions.
579
580         * test/glib/test-service-glib.c: 
581         * test/glib/test-service-glib.xml: 
582         * test/glib/test-dbus-glib.c: Add some tests for return values.
583
584 2005-07-09  Colin Walters  <walters@verbum.org>
585
586         * glib/dbus-gparser.c (parse_annotation): Add annotations to
587         argument if available, not method.
588
589         * glib/dbus-gobject.c (arg_iterate): More verbose warnings.
590         (invoke_object_method): First, remove some redundant
591         GValues (object_value, error_value) in favor of working on
592         array directly.  Second, rework constness to be less buggy.
593         Now we iterate directly over the argument metadata instead
594         of parallel iterating over output signature and metadata.
595
596         * glib/dbus-glib-tool.h: Add INVALID_ANNOTATION error.
597
598         * glib/dbus-binding-tool-glib.c (generate_glue): Barf on const
599         annotation on input args.
600         
601 2005-07-09  Colin Walters  <walters@verbum.org>
602
603         * glib/dbus-binding-tool-glib.h (DBUS_GLIB_ANNOTATION_CONST):
604         Define.
605
606         * glib/dbus-binding-tool-glib.c (generate_glue): Handle Const
607         annotation.
608
609         * glib/dbus-gobject.c (arg_iterate): Update to parse constval too.
610         (method_dir_signature_from_object_info): Handle arg_iterate change.
611         (write_interface): Ditto.
612         (lookup_object_info): Don't barf if format_version is > 0.
613         (invoke_object_method): Handle arg constness.
614
615         * glib/dbus-gidl.c (struct ArgInfo): Add annotations.
616         (arg_info_new): Create.
617         (arg_info_unref): Destroy.
618         (arg_info_get_annotations, arg_info_get_annotation) 
619         (arg_info_add_annotation): New functions.
620
621         * glib/dbus-gidl.h: Prototype them.
622
623         * glib/dbus-gparser.c (parse_annotation): Allow annotations in
624         args, disallow them in properties.
625         (parse_annotation): Handle arg annotations.
626
627         * test/glib/test-service-glib.xml: 
628         * test/glib/test-service-glib.c: Update to make some methods
629         const.
630
631 2005-07-08  Colin Walters  <walters@verbum.org>
632
633         * test/glib/test-service-glib.xml: 
634         * test/glib/test-service-glib.c:
635         * test/glib/test-dbus-glib.c: Test a{sv}.
636
637         * glib/examples/statemachine/statemachine.c:
638         * glib/examples/statemachine/statemachine-server.c:
639         * glib/examples/statemachine/statemachine-client.c: Fix some bugs,
640         add progress bar, etc.
641
642         * glib/dbus-gvalue.c (register_array, register_dict): Delete; not
643         needed anymore due to generic array/map marshalling.
644         (dbus_g_value_types_init): Don't register basic arrays or the
645         string/string hash.
646         (dbus_gtype_from_signature_iter): Don't try to recurse into
647         variants.
648         (dbus_gtype_to_signature): Check collection/map before type
649         metadata.
650         (demarshal_garray_basic): Renamed to demarshal_collection_array.
651         (demarshal_ghashtable): Renamed to demarshal_map; fix to use new
652         generic map creation/append functions instead of hash table
653         specifically.
654         (get_type_demarshaller): Handle maps.
655         (demarshal_collection): Dispatch on collection type to either
656         demarshal_collection_ptrarray or demarshal_collection_array.
657         (get_type_marshaller): Handle maps.
658         (marshal_collection): Dispatch collection type to either
659         marshal_collection_ptrarray or marshal_collection_array.
660         (_dbus_gvalue_test): New test.
661
662         * glib/dbus-gvalue-utils.c (unset_and_free_g_value): New function.
663         (hash_free_from_gtype): Use it to free GValues.
664         (hashtable_append): New function.
665         (ptrarray_append): Fix prototype.
666         (slist_append): Ditto.
667         (_dbus_gvalue_utils_test): Extend tests.
668
669         * glib/dbus-gtype-specialized.c
670         (dbus_g_type_specialized_init_append): Renamed from
671         dbus_g_type_specialized_collection_init_append.  Remove const from
672         value, since we steal it.
673         (dbus_g_type_specialized_map_append): New function.
674
675         * glib/dbus-gtype-specialized.h: Update prototypes.
676         Add DBusGTypeSpecializedMapAppendFunc.
677
678         * glib/dbus-gtest.c (dbus_glib_internal_do_not_use_run_tests): Run
679         _dbus_gvalue_test.
680         
681         * glib/dbus-gtest.h: Prototype it.
682
683 2005-07-08  Ross Burton  <ross@openedhand.com>
684
685         * dbus/dbus-glib.h:
686         Add DBysGAsyncData for the async bindings.
687
688         * glib/dbus-binding-tool-glib.c:
689         Re-enable the async bindings.
690
691         * test/glib/test-dbus-glib.c:
692         Add a test for the generated async bindings.
693
694 2005-07-08  Colin Walters  <walters@verbum.org>
695
696         * doc/TODO: Update GLib todo bits, also add a post-1.0 TODO for a
697         connection concept.
698         
699 2005-07-08  Colin Walters  <walters@verbum.org>
700         
701         * tools/Makefile.am: Kill of print-introspect in favor of using
702         dbus-send --print-reply=literal.
703
704         * test/glib/test-service-glib.xml: 
705         * test/glib/test-service-glib.c (my_object_get_objs): New test
706         for "ao".
707
708         * test/glib/test-dbus-glib.c (echo_received_cb): Free echo data.
709         (main): Test GetObjs.
710
711         * glib/examples/statemachine/Makefile.am:
712         * glib/examples/statemachine/sm-marshal.list:
713         * glib/examples/statemachine/statemachine-client.c:
714         * glib/examples/statemachine/statemachine-server.c:
715         * glib/examples/statemachine/statemachine-server.xml:
716         * glib/examples/statemachine/statemachine.c:
717         * glib/examples/statemachine/statemachine.h:
718         * glib/examples/statemachine/statemachine.xml:
719
720         New example.
721
722         * glib/examples/example-service.c (main): Move invocation
723         of dbus_g_object_type_install_info earlier, to emphasize it
724         should only be done once.
725
726         * glib/examples/example-signal-emitter.c (main): Ditto.
727
728         * glib/examples/Makefile.am (SUBDIRS): Include statemachine.
729
730         * glib/dbus-gvalue.h (dbus_gtype_to_signature)
731         (dbus_gvalue_marshal): Update prototypes.
732
733         * glib/dbus-gvalue.c: Update all marshalling functions to take
734         const GValue instead of GValue.
735         (signature_iter_to_g_type_array): Return a GPtrArray for nonfixed
736         types.
737         (dbus_gvalue_to_signature): Update for dbus_gtype_to_signature
738         change.
739         (dbus_gtype_to_signature): Handle generic collecitons and maps.
740         Return a newly-allocated string.
741         (demarshal_proxy, demarshal_object_path, demarshal_object)
742         (demarshal_strv, demarshal_ghashtable): Set error, don't assert if
743         we get the wrong types from message.
744         (get_type_demarshaller): New function, extracted from
745         dbus_gvalue_demarshal.
746         (demarshal_collection): New function, demarshals generic
747         collection.
748         (dbus_gvalue_demarshal): Just invoke result of
749         get_type_demarshaller.  Throw error if we don't have one.
750         (marshal_garray_basic): Abort on OOM.
751         (get_type_marshaller): New function, extracted from
752         dbus_gvalue_marshal.
753         (collection_marshal_iterator, marshal_collection): New functions;
754         implements generic marshalling for an iteratable specialized
755         collection.
756         (dbus_gvalue_marshal): Just invoke result of get_type_marshaller.
757
758         * glib/dbus-gvalue-utils.c (gvalue_from_ptrarray_value): Handle
759         G_TYPE_STRING.
760         (ptrarray_value_from_gvalue): Ditto.
761         (ptrarray_append, ptrarray_free): New functions.
762         (slist_constructor, slist_iterator, slist_copy_elt, slist_copy) 
763         (slist_append, slist_end_append, slist_free): New functions.
764         (dbus_g_type_specialized_builtins_init): Add append fuctions
765         for GPtrArray and GSList.  Register GSList.
766         (test_specialized_hash, _dbus_gvalue_utils_test): New functions.
767
768         * glib/dbus-gtype-specialized.h (DBusGTypeSpecializedAppendContext):
769         New.
770         (dbus_g_type_specialized_collection_init_append)
771         (dbus_g_type_specialized_collection_append)
772         (dbus_g_type_specialized_collection_end_append): Prototype.
773         (DBusGTypeSpecializedCollectionVtable): Add append_func and
774         end_append_func.
775
776         * glib/dbus-gtype-specialized.c (dbus_g_type_specialized_collection_init_append) 
777         (dbus_g_type_specialized_collection_append) 
778         (dbus_g_type_specialized_collection_end_append): New functions.
779         (dbus_g_type_map_value_iterate): Take const GValue.
780         (dbus_g_type_collection_value_iterate): Ditto.
781
782         * glib/dbus-gtest.c (dbus_glib_internal_do_not_use_run_tests): Run
783         _dbus_gvalue_utils_test.
784         
785         * glib/dbus-gtest.h: Prototype it.
786
787         * glib/dbus-gproxy.c (dbus_g_proxy_manager_filter): Avoid
788         using uninitialized owner_list.
789         (dbus_g_proxy_begin_call_internal): Move return_if_fail to
790         public API.
791         (dbus_g_proxy_end_call_internal): Update to use error set
792         from dbus_gvalue_demarshal instead of setting it here.
793         (dbus_g_proxy_begin_call): Move return_if_fail here.
794
795         * glib/dbus-gobject.c (write_interface): Update for
796         dbus_gtype_to_signature returning new string.
797
798         * configure.in: Add glib/examples/statemachine.
799
800 2005-07-08  Joe Shaw  <joeshaw@novell.com>
801
802         * configure.in: Add a configure option, --with-console-auth-dir
803         
804         * dbus/dbus-sysdeps-util.c (_dbus_user_at_console): Use the
805         new setting.  Patch from Kay Sievers.
806
807 2005-07-06  Colin Walters  <walters@verbum.org>
808
809         * dbus/dbus-glib.h (DBusGPendingCall, DBusGPendingCallNotify)
810         (DBUS_TYPE_G_PENDING_CALL, dbus_g_pending_call_get_g_type)
811         (dbus_g_pending_call_ref, dbus_g_pending_call_unref): Delete.
812         (dbus_g_pending_call_set_notify, dbus_g_pending_call_cancel):
813         Delete in favor of dbus_g_proxy_begin_call and
814         dbus_g_proxy_cancel_call.
815         (DBusGProxyCall, DBusGProxyCallNotify): New.
816         (dbus_g_proxy_begin_call): Change prototype to take callback, user
817         data, and destroy function.  This replaces
818         dbus_g_pending_call_set_notify.
819         (dbus_g_proxy_cancel_call): Prototype.
820         (DBusGAsyncData): Delete, shouldn't be needed anymore.
821
822         * glib/dbus-gproxy.c (struct _DBusGProxy): Add call_id_counter and
823         pending_calls map.
824         (struct _DBusGProxyManager): Add bus_proxy member, which is an
825         internal proxy for calls to the bus. Remove
826         pending_nameowner_calls, now the internal proxy keeps track.
827         (dbus_g_proxy_manager_unref): Unref bus proxy, remove reference to
828         pending_nameowner_calls.
829         (got_name_owner_cb): Update prototype, and use
830         dbus_g_proxy_end_call.
831         (got_name_owner_cb): Remove reference to pending_nameowner_calls.
832         (dbus_g_proxy_manager_register): Delete directly libdbus code in
833         favor of using internal proxy.
834         (dbus_g_proxy_manager_unregister): Update to use
835         dbus_g_proxy_cancel_call for any pending GetNameOwner call.
836         (dbus_g_proxy_init): Initialize pending calls map.
837         (dbus_g_proxy_constructor): New.
838         (dbus_g_proxy_class_init): Add get/set property functions,
839         constructor, and add NAME, PATH, and INTERFACE properties.
840         (cancel_pending_call): New function.
841         (dbus_g_proxy_dispose): Iterate over any outstanding calls and
842         cancel them.
843         (dbus_g_proxy_set_property, dbus_g_proxy_get_property): New.
844         (GPendingNotifyClosure): New structure.
845         (d_pending_call_notify, d_pending_call_free): Moved here from
846         dbus-glib.c.
847         (DBUS_G_VALUE_ARRAY_COLLECT_ALL): Moved around to satisfy function
848         ordering.
849         (manager_begin_bus_call): New internal function for talking to
850         internal bus proxy.
851         (dbus_g_proxy_new): Construct object using GObjet properties.
852         (dbus_g_proxy_begin_call_internal): Update to take user data, etc.
853         Create closure of same, and insert call into map of pending calls.
854         (dbus_g_proxy_end_call_internal): Take call id instead of pending
855         call.  Look up pending call in current set.  Remove it when we've
856         completed.
857         (dbus_g_pending_call_end, dbus_g_proxy_end_call_internal): Delete.
858         (dbus_g_proxy_begin_call): Change API to take callback, user data,
859         and destroy function directly.
860         (dbus_g_proxy_end_call): Update to take DBusGProxyCall.
861         (dbus_g_proxy_call): Invoke with NULL callback.
862         (dbus_g_proxy_cancel_call): New function, replaces
863         dbus_g_pending_call_cancel.
864
865         * glib/dbus-gparser.c (validate_signature): Fix call to
866         dbus_set_g_error.
867
868         * glib/dbus-gobject.c (dbus_g_object_type_dbus_metadata_quark):
869         New quark for attaching metadata to GType.
870         (info_hash): Delete.
871         (lookup_object_info): Look up using quark.
872         (dbus_g_object_type_install_info): Check that a type is classed,
873         not that it's an object.  Also just install type data using quark
874         instead of using global hash.
875
876         * glib/dbus-glib.c (dbus_g_pending_call_ref) 
877         (dbus_g_pending_call_unref, dbus_pending_call_get_g_type)
878         (GPendingNotifyClosure): Delete.
879         (d_pending_call_notify, d_pending_call_free): Move to dbus-gproxy.c.
880         (dbus_g_pending_call_set_notify, dbus_g_pending_call_cancel): Delete.
881
882         * glib/dbus-binding-tool-glib.c (generate_client_glue): Disable async
883         client method generation until we can fix it...
884         
885         * tools/dbus-viewer.c (load_child_nodes): Use dbus_g_proxy_call.
886         (load_from_service_thread_func): Ditto.
887
888         * tools/dbus-names-model.c (struct NamesModel): Hold
889         DBusGProxyCall.
890         (have_names_notify): Update prototype, use
891         dbus_g_proxy_cancel_call.
892         (names_model_reload): Update for new dbus_g_proxy_begin_call API.
893
894         * tools/dbus-monitor.c (filter_func): Update for print_message
895         API change.
896
897         * test/glib/test-dbus-glib.c: Add more tests for async
898         invocations.  Update many begin_call/end_call pairs to just use
899         dbus_g_proxy_call.
900
901         * tools/dbus-send.c (main): Add --print-reply=literal mode.  This
902         allows us to dump print-introspect.c.
903
904         * tools/dbus-print-message.h (print_message): Add literal argument
905         to print_message which is intended to allow printing arguments without
906         metadata like "string=".
907
908         * tools/dbus-print-message.c (print_iter): Add literal argument.
909         (print_message): Allow printing string messages literally.
910
911 2005-07-05  Colin Walters  <walters@verbum.org>
912
913         * glib/dbus-gproxy.c (marshal_dbus_message_to_g_marshaller):
914         Remove value refcount leak, original patch from Jorn Baayen
915         <jorn@openedhand.com>.  Also remove useless extra value in favor
916         of prepending to value array directly.
917
918 2005-07-02  Colin Walters  <walters@verbum.org>
919
920         * glib/dbus-gmain.c (_dbus_gmain_test): Fix test.
921
922 2005-07-01  Colin Walters  <walters@verbum.org>
923
924         Patch from Jonathan Matthew <jonathan@kaolin.hn.org>
925         
926         * glib/dbus-gvalue.c (basic_typecode_to_gtype): Fix return type.
927         (dbus_g_value_types_init): Marshal G_TYPE_CHAR as DBUS_TYPE_BYTE,
928         G_TYPE_LONG as DBUS_TYPE_INT32, G_TYPE_ULONG as DBUS_TYPE_UINT32,
929         and G_TYPE_FLOAT as DBUS_TYPE_DOUBLE.
930
931 2005-06-30  Colin Walters  <walters@verbum.org>
932
933         * test/glib/test-dbus-glib.c:
934         * test/glib/test-service-glib.c:
935         * test/glib/test-service-glib.xml: Update tests for new error
936         setting bits, also add async tests (patch from Ross Burton).
937
938         * test/glib/Makefile.am (test_service_glib_LDADD): Add
939         DBUS_GLIB_THREADS_LIBS.
940
941         * glib/dbus-gproxy.c (get_name_owner)
942         (dbus_g_pending_call_end_valist): Ditto.
943
944         * glib/dbus-gobject.c (error_metadata): New mapping from GError
945         domain (GQuark) to DBusGErrorInfo.  
946         (gerror_domaincode_to_dbus_error_name): Attempt to look up error
947         quark in error_metadata.  Take message interface as default
948         error message interface.
949         (gerror_to_dbus_error_message): Pass message interface.
950         (dbus_set_g_error): Resurrected.
951         (dbus_g_error_info_free): New function.
952         (dbus_g_object_type_install_info): Use g_type_class_ref instead
953         of _peek to actually create the object class if it hasn't been
954         created yet.
955         (dbus_g_error_domain_register): New function.
956
957         * glib/dbus-gmain.c (dbus_g_bus_get): Switch to dbus_set_g_error.
958
959         * glib/dbus-gparser.c (validate_signature): Ditto.
960
961         * dbus/dbus-glib.h (dbus_g_error_set): Delete.
962         (dbus_g_error_domain_register): Prototype.
963
964         * glib/dbus-glib.c (dbus_g_error_set): Delete.
965         Update tests.
966
967 2005-06-29  Colin Walters  <walters@verbum.org>
968
969         * dbus/dbus-glib.h: Delete DBUS_TYPE_G_PROXY_ARRAY.  Add
970         DBUS_TYPE_G_OBJECT_PATH.
971
972         * glib/dbus-gvalue.c (dbus_g_value_types_init): Remove marshallers
973         for G_TYPE_OBJECT and DBUS_TYPE_G_PROXY_ARRAY (the latter should
974         be handled more generically).  Add DBUS_TYPE_G_OBJECT_PATH.
975         (dbus_g_object_path_get_g_type): New function.
976         (dbus_gtype_from_signature_iter): Map DBUS_TYPE_OBJECT_PATH
977         to DBUS_TYPE_G_OBJECT_PATH by default.
978         (demarshal_proxy): Remove unused name variable.
979         (demarshal_object_path, marshal_object_path): New functions.
980         (demarshal_proxy_array, marshal_proxy_array): Delete.
981         
982         * glib/dbus-binding-tool-glib.c (dbus_g_type_get_c_name): Map
983         DBUS_TYPE_G_OBJECT_PATH to char *.
984         (dbus_g_type_get_lookup_function): Map builtin
985         DBUS_TYPE_G_OBJECT_PATH.
986
987         * test/glib/test-dbus-glib.c
988         * test/glib/test-service-glib.c (my_object_objpath): 
989         Adapt tests to new object path marshalling.
990
991 2005-06-29  John (J5) Palmieri  <johnp@redhat.com>
992
993         * configure.in: force check for Python >= 2.4
994
995 2005-06-29  Colin Walters  <walters@verbum.org>
996         
997         Patch from Ross Burton <ross@openedhand.com>
998         
999         * glib/dbus-gobject.c (invoke_object_method): Unset object
1000         value in all cases, not only in async case.
1001
1002 2005-06-29  Colin Walters  <walters@verbum.org>
1003
1004         * glib/dbus-gproxy.c (struct _DBusGProxy): Add new member
1005         name_call for keeping track of any outgoing GetNameOwner call.
1006         Also add for_owner and associated.
1007         (struct _DBusGProxyManager): Add owner_names, which is hash table
1008         that maps a base name to a list of names it owns (that we're
1009         interested in).  Add pending_nameowner_calls which is a list of
1010         all outstanding GetNameOwner; avoids us having to iterate over
1011         every proxy.  Add unassociated_proxies which keeps track of name
1012         proxies with no associated name owner.
1013         (dbus_g_proxy_manager_unref): Destroy owner_names.
1014         (struct DBusGProxyNameOwnerInfo): New struct for keeping track of
1015         name refcounts.
1016         (find_name_in_info, name_owner_foreach)
1017         (dbus_g_proxy_manager_lookup_name_owner, insert_nameinfo)
1018         (dbus_g_proxy_manager_monitor_name_owner)
1019         (dbus_g_proxy_manager_unmonitor_name_owner)
1020         (unassociate_proxies, dbus_g_proxy_manager_replace_name_owner):
1021         New functions; they manipulate the owner_names mapping.
1022         (got_name_owner_cb): New function.
1023         (get_name_owner): New function, extracted from
1024         dbus_g_proxy_new_for_name_owner.
1025         (dbus_g_proxy_manager_register): For now we need to keep track of
1026         all NameOwnerChanged.  Also if the proxy is for a name, if we
1027         don't already know the name owner, queue a new GetNameOwner
1028         request and add it to our list of unassociated proxies.  Otherwise
1029         inc the refcount.
1030         (dbus_g_proxy_manager_unregister): If this proxy is for a name,
1031         cancel any pending GetNameOwner call, etc.
1032         (dbus_g_proxy_manager_filter): Handle NameOwnerChanged.  Also use
1033         the owner_names mapping to look up the current names for the
1034         signal source, and dispatch to any proxies for that name.
1035         (dbus_g_proxy_new): Initialize new members.
1036         (dbus_g_proxy_new_for_name): Delete unused proxy variable.
1037         (dbus_g_proxy_new_for_name_owner): Use get_name_owner.
1038         (dbus_g_pending_call_end_valist): New function, extracted from
1039         dbus_g_proxy_end_call_internal.  Useful when we don't have a proxy
1040         but want to use the GLib infrastructure.  Also note how many
1041         arguments in reply were over.
1042         (dbus_g_pending_call_end): New function, just call
1043         dbus_g_pending_call_end_valist.
1044         (dbus_g_proxy_end_call_internal): Just call
1045         dbus_g_pending_call_end_valist.
1046
1047         * glib/dbus-gobject.c (_dbus_gobject_lookup_marshaller): Fix lookup
1048         of builtin marshaller for STRING_STRING_STRING.
1049
1050         * test/glib/test-dbus-glib.c: 
1051         * test/glib/test-service-glib.c:
1052         * test/glib/test-service-glib.xml:
1053         Extend tests to cover name proxies, destruction of owner proxies,
1054         etc.
1055         
1056         * glib/examples/example-signal-recipient.c
1057         (dbus_g_proxy_new_for_name_owner): Create a name proxy.
1058         
1059         * tools/dbus-send.c (main): Print D-BUS error name in addition
1060         to message.
1061
1062 2005-06-28  John (J5) Palmieri  <johnp@redhat.com>
1063
1064         * python/dbus_bindings.pyx.in (cunregister_function_handler,
1065         cmessage_function_handler): Patch from 
1066         Anthony Baxter <anthony@interlink.com.au> fixes threading problems
1067         by using the Py_GILState_Ensure/Release to synchronize with the
1068         python runtime.
1069         
1070 2005-06-28  Ray Strode  <rstrode@redhat.com>
1071
1072         *  dbus/dbus-spawn.c (_dbus_babysitter_unref): kill
1073         babysitter helper process on last unref, bug #2813.
1074
1075 2005-06-27  Colin Walters  <walters@verbum.org>
1076
1077         * test/glib/test-dbus-glib.c: 
1078         * test/glib/test-service-glib.c:
1079         * test/glib/test-service-glib.xml:
1080         Test hash table signal emitting.
1081
1082         * glib/dbus-gobject.c (_dbus_gobject_lookup_marshaller): Convert
1083         types to their fundamental basis types, since this is what
1084         marshallers operate on.  Also add an entry for VOID__BOXED.
1085         (dbus_g_object_register_marshaller_array): Convert to fundamental.
1086
1087 2005-06-26  Havoc Pennington  <hp@redhat.com>
1088
1089         * doc/dbus-tutorial.xml: fix names of interface/service/path, fix
1090         from Don Park
1091
1092 2005-06-26  Colin Walters  <walters@verbum.org>
1093
1094         * glib/dbus-glib.c (dbus_set_g_error): Delete.
1095         (dbus_g_error_set): New public function from its ashes; used by
1096         both service-side method implementation and GLib bindings
1097         internals.
1098         (dbus_g_error_has_name, dbus_g_error_get_name): New function.
1099         (_dbus_glib_test): Add some tests.
1100
1101         * test/glib/test-dbus-glib.c (main): Test dbus_g_error_has_name.
1102
1103         * test/glib/test-service-glib.c (my_object_throw_error): Use
1104         dbus_g_error_set.
1105
1106         * glib/dbus-gobject.c (gerror_to_dbus_error_message): Handle
1107         errors thrown by dbus_g_error_set.
1108
1109         * glib/dbus-gmain.c (dbus_g_bus_get): Change to dbus_g_error_set.
1110
1111         * glib/dbus-gparser.c (validate_signature): Ditto.
1112
1113         * glib/dbus-gproxy.c (dbus_g_proxy_new_for_name_owner) 
1114         (dbus_g_proxy_end_call_internal): Ditto.
1115
1116         * glib/Makefile.am: Generate dbus-glib-error-switch.h, which
1117         converts DBUS_ERROR_x to DBUS_GERROR_x.
1118         (libdbus_glib_1_la_SOURCES, BUILT_SOURCES, CLEANFILES): Add it.
1119
1120         * doc/TODO: Remove error TODO.
1121
1122         * doc/dbus-tutorial.xml: Update with documentation about error
1123         handling.
1124
1125         * dbus/make-dbus-glib-error-enum.sh: Tighten up regexp to make
1126         sure we only change DBUS_ERROR to DBUS_GERROR, not all ERROR to
1127         GERROR.  Also add DBUS_GERROR_REMOTE_EXCEPTION.
1128
1129 2005-06-22  Colin Walters  <walters@verbum.org>
1130         
1131         Patch from Ross Burton <ross@openedhand.com>
1132
1133         * glib/dbus-gobject.c (dbus_g_method_return): Free out_sig.
1134
1135 2005-06-20  Colin Walters  <walters@verbum.org>
1136
1137         * configure.in: Add glib/examples.
1138
1139         * glib/Makefile.am: Add examples/
1140
1141         * glib/examples/.cvsignore
1142         * glib/examples/Makefile.am
1143         * glib/examples/example-client.c
1144         * glib/examples/example-service.c
1145         * glib/examples/example-service.xml
1146         * glib/examples/example-signal-emitter.c
1147         * glib/examples/example-signal-emitter.xml
1148         * glib/examples/example-signal-recipient.c:
1149         New files; GLib binding examples, ported from
1150         python/examples.
1151
1152 2005-06-20  Colin Walters  <walters@verbum.org>
1153
1154         * dbus/dbus-glib.h: 
1155         * glib/dbus-gproxy.c: Rename dbus_g_proxy_invoke to
1156         dbus_g_proxy_call.
1157
1158         * glib/dbus-binding-tool-glib.c: 
1159         * doc/dbus-tutorial.xml: 
1160         * test/glib/test-dbus-glib.c: Update for rename.
1161         
1162 2005-06-20  Colin Walters  <walters@verbum.org>
1163
1164         Patch suggested by Ross Burton <ross@openedhand.com>
1165
1166         * glib/dbus-gobject.c (export_signals): Free signal name.
1167         (g_value_init): Use G_VALUE_NOCOPY_CONTENTS to plug
1168         memory leak.  Add a bit of documentation.
1169         (dbus_g_method_return_error): Free context, and note we do
1170         so.
1171
1172 2005-06-18  Murray Cumming  <murrayc@murrayc.com>
1173
1174         * dbus/dbus-glib.h:
1175         * glib/dbus-gobject.c:
1176         * glib/dbus-gproxy.c:
1177         * glib/dbus-gvalue.c: Predeclare structs as 
1178         typedef struct _Something Something instead of 
1179         typedef struct Something Something, so we can 
1180         redeclare the prototypes. Other GNOME libraries 
1181         do this already.
1182
1183 2005-06-17  Colin Walters  <walters@verbum.org>
1184
1185         * tools/dbus-names-model.c (have_names_notify): Fix call
1186         to dbus_g_proxy_end_call.
1187         
1188 2005-06-17  Colin Walters  <walters@verbum.org>
1189
1190         * glib/dbus-gproxy.c (dbus_g_proxy_emit_remote_signal): Don't
1191         spew warnings if we get malformed remote signals.
1192
1193         * glib/dbus-gobject.c (propsig_iterate): New function.
1194         (lookup_object_info): New function, extracted from
1195         lookup_object_and_method.
1196         (introspect_properties, introspect_signals): Delete; these
1197         are merged into write_interface.
1198         (write_interface): Write out signals and properties here;
1199         dump the org.gtk.object stuff and use the interface given
1200         in the introspection data blob.  Also fix up property XML.
1201         (lookup_values): New function.
1202         (introspect_interfaces): Gather a mapping from interface to a
1203         list of its methods, signals, and properties, then write out
1204         each interface.
1205         (lookup_object_and_method): Use lookup_object_info.
1206         (struct DBusGSignalClosure): Add interface.
1207         (dbus_g_signal_closure_new): Add interface. Don't dup signame;
1208         we can just use the constant data.
1209         (dbus_g_signal_closure_finalize): Don't free signal name.
1210         (signal_emitter_marshaller): Use interface from signal closure.
1211         (export_signals): Only export signals mentioned in introspection
1212         blob.
1213         (dbus_g_connection_register_g_object): Warn if we have no
1214         introspection data for an object.
1215         (funcsig_equal): Remove unused variable.
1216         (dbus_g_object_register_marshaller): Take varargs instead of
1217         list.
1218         (dbus_g_object_register_marshaller_array): New function,
1219         extracted from old dbus_g_object_register_marshaller.
1220
1221         * glib/dbus-binding-tool-glib.c (struct DBusBindingToolCData): Add
1222         signals and property data.
1223         (write_quoted_string): New function, extracted from generate_glue.
1224         (generate_glue): Write signals and properties to introspection
1225         blob.
1226
1227         * dbus/dbus-glib.h (struct DBusGObjectInfo): Include
1228         exported_signals and exported_properties.
1229         (dbus_g_object_register_marshaller): Update prototype.
1230         (dbus_g_object_register_marshaller_array): Prototype.
1231         
1232         * test/glib/test-dbus-glib.c: Extend testing to cover new signals.
1233
1234         * test/glib/test-service-glib.c: Add new test signals and method
1235         to emit them.
1236
1237         * test/glib/test-service-glib.xml: Add some test signals.
1238
1239         * test/glib/Makefile.am (BUILT_SOURCES): Add my-object-marshal.c
1240         and my-object-marshal.h
1241         (test_service_glib_SOURCES, test_dbus_glib_SOURCES): Add
1242         my-object-marshal.c.
1243         (my-object-marshal.c, my-object-marshal.h): Implement.
1244
1245         * test/glib/.cvsignore: Update.
1246
1247         * doc/TODO: Remove two GLib TODO items fixed by this
1248         patch.
1249
1250 2005-06-16  Colin Walters  <walters@verbum.org>
1251
1252         * doc/TODO: Update for GLib bindings.
1253         
1254 2005-06-16  Colin Walters  <walters@verbum.org>
1255
1256         * glib/dbus-binding-tool-glib.c:
1257         * glib/dbus-gobject.c:
1258         * glib/dbus-gproxy.c:  Add Nokia copyright; Patch
1259         from Ross Burton, for his GLib bindings work.
1260
1261 2005-06-16  Colin Walters  <walters@verbum.org>
1262
1263         * glib/dbus-gobject.c (funcsig_hash, funcsig_equal): Use n_params
1264         to iterate instead of walking to G_TYPE_INVALID.
1265
1266         Patch based on a patch from Ryan Gammon.
1267
1268 2005-06-16  Colin Walters  <walters@verbum.org>
1269
1270         * bus/bus.c (bus_context_new): Set parser to NULL
1271         after we unref it (Patch from Chris Boscolo, #2174).
1272         
1273 2005-06-16  Colin Walters  <walters@verbum.org>
1274
1275         * python/dbus_bindings.pyx.in: Import size_t,
1276         __int64_t, __uint64_t, and __signed.
1277
1278         * dbus/dbus-sysdeps.c <HAVE_CMSGCRED> (write_credentials_byte):
1279         Define cmsg struct, output it.
1280         (_dbus_read_credentials_unix_socket):
1281         Use cmsg struct.
1282         
1283         Patch from Joe Markus Clarke for FreeBSD support.
1284         
1285 2005-06-16  Colin Walters  <walters@verbum.org>
1286
1287         * tools/dbus-send.c (append_array): Use strtok.
1288         (append_dict): New function.
1289         (type_from_name): New function, extracted from main.
1290         (main): Handle sending dicts.
1291
1292         * tools/dbus-print-message.c (print_iter): Print dict
1293         entries.
1294         
1295 2005-06-16  Colin Walters  <walters@verbum.org>
1296
1297         * glib/dbus-gvalue.c (marshal_basic): Marshal NULL string
1298         values as the empty string (#2948).
1299         
1300 2005-06-16  Colin Walters  <walters@verbum.org>
1301
1302         * dbus/Makefile.am:
1303         * mono/doc/Makefile.am:
1304         * test/glib/Makefile.am:
1305
1306         Fix srcdir != builddir issues (Patch from Chris Wilson, #3477)
1307
1308 2005-06-16  Colin Walters  <walters@verbum.org>
1309
1310         * dbus/dbus-marshal-header.c (_dbus_header_load): Set
1311         header byte order from expected byte order (Patch from Chris Wilson, #3475).
1312
1313         * dbus/dbus-marshal-byteswap.c (byteswap_body_helper): 
1314         Increment pointer after swapping fixed array.  Add assertion
1315         for array length.
1316                 
1317 2005-06-15  Colin Walters  <walters@verbum.org>
1318
1319         * dbus/dbus-sysdeps.c <HAVE_CMSGCRED> (_dbus_read_credentials_unix_socket):
1320         Fix call to dbus_set_error.  (Patch from Michael Banck, #3461)
1321         
1322 2005-06-15  John (J5) Palmieri  <johnp@redhat.com>
1323
1324         * NEWS: Update to 0.34
1325
1326 2005-06-15  David Zeuthen  <davidz@redhat.com>
1327
1328         * configure.in (LT_CURRENT): Revert back to 1 as the library
1329         hasn't changed and we've certainly not committed to protocol
1330         stability yet.  All this does is to break ABI. See commit note
1331         from hp@redhat.com 2005-05-05 for details.
1332         
1333 2005-06-15  John (J5) Palmieri  <johnp@redhat.com>
1334
1335         * dbus/dbus-connection.c (_dbus_connection_peer_filter): New method 
1336         (_dbus_connection_run_builtin_filters): New method
1337         (dbus_connection_dispatch): Run the builtin filters which in turn
1338         runs the peer filter which handles Ping messages.
1339
1340         * doc/TODO: 
1341          - Ping isn't handled: This patch fixes it
1342          
1343          - Add a test case for the Ping message: added TODO item
1344
1345 2005-06-15  John (J5) Palmieri  <johnp@redhat.com>
1346
1347         * dbus/dbus-message.c:
1348         (dbus_message_has_path): New method
1349         (dbus_message_has_interface): New method
1350         (dbus_message_has_member): New method
1351
1352         * dbus/dbus/dbus-sysdeps.c (_dbus_check_dir_is_private_to_user):
1353         New method
1354
1355         * dbus/dbus-keyring.c (_dbus_keyring_reload): Check to see that 
1356         the keyring directory is private to the user
1357
1358         * doc/TODO:
1359          - The convenience functions in dbus-bus.h should perhaps have
1360          the signatures that they would have if they were autogenerated
1361          stubs. e.g. the acquire service function. We should also evaluate
1362          which of these functions to include, in light of the fact that
1363          GLib/Qt native stubs will probably also exist.: Punted
1364
1365          - add dbus_message_has_path(), maybe has_member/interface:
1366          fixed in this patch
1367
1368          - in dbus-keyring.c, enforce that the keyring dir is not
1369          world readable/writable: Fixed in this patch
1370
1371 2005-06-15  John (J5) Palmieri  <johnp@redhat.com>
1372
1373         * dbus/dbus-marshal-validate.h: Added a new validation
1374         error code DBUS_VALIDITY_UNKNOWN_OOM_ERROR = -4 for 
1375         out of memory errors when validating signitures
1376
1377         * dbus/dbus-marshal-header.c: use DBUS_VALIDITY_UNKNOWN_OOM_ERROR
1378         in places where we previously used DBUS_VALID and a FALSE return 
1379         value to indicate OOM
1380         
1381         * dbus/dbus-marshal-validate.c (_dbus_validate_signature_with_reason):
1382         Use a stack to track the number of elements inside containers.  The 
1383         stack values are then used to validate that dict entries have only two
1384         elements within them.
1385         (validate_body_helper): check the reason for failure when validating
1386         varients
1387         
1388         * dbus/dbus-message.c (load_message): use 
1389         DBUS_VALIDITY_UNKNOWN_OOM_ERROR in places where we previously used 
1390         DBUS_VALID and a FALSE return value to indicate OOM
1391
1392         * doc/TODO: remove "- validate dict entry number of fields" as this
1393         patch fixes it
1394
1395 2005-06-14  David Zeuthen  <davidz@redhat.com>
1396
1397         * bus/bus.c (process_config_every_time): Drop existing conf-dir
1398         watches (if applicable) and add new watches
1399
1400         * bus/main.c (signal_handler): Handle SIGIO if using D_NOTIFY
1401         (main): Setup SIGIO signal handler if using D_NOTIFY
1402
1403         * bus/config-parser.h: Add prototype bus_config_parser_get_conf_dirs
1404
1405         * bus/config-parser.c (struct BusConfigParser): Add conf_dirs list
1406         (merge_included): Also merge conf_dirs list
1407         (bus_config_parser_unref): Clear conf_dirs list
1408         (include_dir): Add directory to conf_dirs list
1409         (bus_config_parser_get_conf_dirs): New function
1410
1411         * bus/dir-watch.[ch]: New files
1412
1413         * bus/Makefile.am (BUS_SOURCES): Add dir-watch.[ch]
1414
1415         * configure.in: Add checks for D_NOTIFY on Linux
1416
1417 2005-06-14  Colin Walters  <walters@verbum.org>
1418
1419         * glib/dbus-binding-tool-glib.c:
1420         * glib/dbus-gobject.c:
1421         * glib/dbus-gvalue.c: Fix indentation and brace style.
1422         
1423 2005-06-14  Ross Burton <ross@openedhand.com>.
1424
1425         * glib/dbus-glib.h: Make DBusGMethodInvocation
1426         a private structure.  Rearrange prototypes a bit.
1427         
1428         * glib/dbus-gproxy.c (dbus_g_proxy_invoke): Add
1429         documentation for first_arg_type.
1430         
1431         * glib/dbus-gobject.c: Move DBusGMethodInvocation
1432         here, add documentation.  Move dbus_g_method_return
1433         and dbus_g_method_return_error into public API
1434         section.
1435
1436 2005-06-14  Colin Walters  <walters@verbum.org>
1437
1438         * glib/dbus-gobject.c (_dbus_gobject_lookup_marshaller):
1439         Add missing return statements, noticed by Ross Burton.
1440         
1441 2005-06-13  Ross Burton <ross@openedhand.com>.
1442
1443         * glib/dbus-gobject.c: Handle errors on message
1444         demarshalling by sending error message back.
1445         * glib/dbus-gvalue.c: Initialize return variables.
1446
1447 2005-06-13  Colin Walters  <walters@verbum.org>
1448
1449         * glib/Makefile.am: Fix thinko in last patch.
1450
1451 2005-06-13  Colin Walters  <walters@verbum.org>
1452
1453         * glib/Makefile.am: Move dbus-gtype-specialized.c
1454         and dbus-gtype-specialized.h into a _HEADERS variable,
1455         install them.
1456
1457 2005-06-12  Colin Walters  <walters@verbum.org>
1458
1459         Async signals and various bugfixes and testing by
1460         Ross Burton <ross@openedhand.com>.
1461
1462         * glib/dbus-gvalue.h: (struct DBusBasicGValue): Delete.
1463         (dbus_gvalue_genmarshal_name_from_type)
1464         (dbus_gvalue_ctype_from_type): Moved to dbus-binding-tool-glib.c.
1465         (dbus_gtype_to_dbus_type): Renamed to dbus_gtype_from_signature.
1466         (dbus_g_value_types_init, dbus_gtype_from_signature)
1467         (dbus_gtype_from_signature_iter, dbus_gtype_to_signature)
1468         (dbus_gtypes_from_arg_signature): New function prototypes.
1469         (dbus_gvalue_demarshal): Take context and error arguments.
1470         (dbus_gvalue_demarshal_variant): New function.
1471         (dbus_gvalue_demarshal_message): New function.
1472         (dbus_gvalue_store): Delete.
1473
1474         * glib/dbus-gvalue.c:
1475
1476         File has been almost entirely rewritten; now we special-case
1477         more types such as DBUS_TYPE_SIGNATURE, handle arrays and
1478         hash tables correctly, etc.  Full support for recursive values
1479         is not yet complete.
1480
1481         * glib/dbus-gproxy.c (dbus_g_proxy_class_init): Change last
1482         argument of signal to G_TYPE_POINTER since we now pass a
1483         structure.
1484         (lookup_g_marshaller): Delete in favor of
1485         _dbus_gobject_lookup_marshaller.
1486         (marshal_dbus_message_to_g_marshaller): Use
1487         _dbus_gobject_lookup_marshaller and dbus_gvalue_demarshal_message
1488         to handle remote signal callbacks.
1489         (dbus_g_proxy_new_from_proxy): New function; creates a new
1490         DBusGProxy by copying an existing one.
1491         (dbus_g_proxy_get_interface, dbus_g_proxy_set_interface)
1492         (dbus_g_proxy_get_path): New functions.
1493         (dbus_g_proxy_marshal_args_to_message): New function;
1494         factored out of existing code.
1495         (DBUS_G_VALUE_ARRAY_COLLECT_ALL): Collect all arguments
1496         from a varargs array.
1497         (dbus_g_proxy_begin_call_internal): New function.
1498         (dbus_g_proxy_end_call_internal): New function.
1499         (dbus_g_proxy_begin_call): Take GTypes instead of DBus types
1500         as arguments; simply invoke dbus_g_proxy_begin_call_internal
1501         after collecting args into value array.
1502         (dbus_g_proxy_end_call): Take GTypes instead of DBus types;
1503         invoke dbus_g_proxy_end_call_internal.
1504         (dbus_g_proxy_invoke): Simply invoke begin_call_interanl and
1505         end_call_internal.
1506         (dbus_g_proxy_call_no_reply): Take GTypes instead of DBus
1507         types.
1508         (array_free_all): New function.
1509         (dbus_g_proxy_add_signal): Take GTypes.
1510
1511         * glib/dbus-gobject.h:
1512         (_dbus_glib_marshal_dbus_message_to_gvalue_array): Delete.
1513         (_dbus_gobject_get_path, _dbus_gobject_lookup_marshaller):
1514         Prototype.
1515
1516         * glib/dbus-gobject.c: Add a global marshal_table hash which
1517         stores mappings from type signatures to marshallers.  Change lots
1518         of invocations of dbus_gtype_to_dbus_type to
1519         dbus_gtype_to_signature.
1520         (_dbus_glib_marshal_dbus_message_to_gvalue_array): Delete.
1521         (introspect_signals): Fix test for query.return_type.
1522         (set_object_property): Update invocation of dbus_gvalue_demarshal.
1523         (invoke_object_method): Many changes.  Handle asynchronous
1524         invocations.  Convert arguments with
1525         dbus_gvalue_demarshal_message.  Handle errors.  Use
1526         DBusSignatureIter instead of strlen on args. Handle all arguments
1527         generically.  Special-case variants.
1528         (dbus_g_method_return, dbus_g_method_return_error): New function.
1529         (DBusGSignalClosure): New structure, closes over signal
1530         information.
1531         (dbus_g_signal_closure_new): New function.
1532         (dbus_g_signal_closure_finalize): New function.
1533         (signal_emitter_marshaller): New function; is special marshaller
1534         which emits signals on bus.
1535         (export_signals): New function; introspects object signals and
1536         connects to them.
1537         (dbus_g_object_type_install_info): Take GType instead of
1538         GObjectClass.
1539         (dbus_g_connection_register_g_object): Invoke export_signals.
1540         (dbus_g_connection_lookup_g_object): New function.
1541         (DBusGFuncSignature) New structure; used for mapping type
1542         signatures to marshallers.
1543         (funcsig_hash): New function; hashes DBusGFuncSignature.
1544         (funcsig_equal): New function; compares DBusGFuncSignature.
1545         (_dbus_gobject_lookup_marshaller): New function.
1546         (dbus_g_object_register_marshaller): New function; used to
1547         register a marshaller at runtime for a particular signature.
1548
1549         * glib/dbus-gmain.c (_dbus_gmain_test): Add various tests.
1550
1551         * glib/dbus-binding-tool-glib.h: Add DBUS_GLIB_ANNOTATION_ASYNC
1552         which notes a server method implementation should be
1553         asynchronous.
1554
1555         * glib/dbus-binding-tool-glib.c
1556         (dbus_binding_tool_output_glib_server): Call
1557         dbus_g_value_types_init.
1558         (write_formal_parameters): Use dbus_gtype_from_signature.  Handle
1559         variants specially.
1560         (dbus_g_type_get_lookup_function): Turn GType into an invocation
1561         of a lookup function.
1562         (write_args_for_direction): Use dbus_g_type_get_lookup_function.
1563         (write_untyped_out_args): New method; write output arguments.
1564         (write_formal_declarations_for_direction): Function for
1565         writing prototypes.
1566         (write_formal_parameters_for_direction): Function for
1567         writing implementations.
1568         (write_typed_args_for_direction): Function for writing
1569         arguments prefixed with GTypes.
1570         (write_async_method_client): Write out async version
1571         of method.
1572
1573         * glib/dbus-binding-tool-glib.c: Include dbus-gvalue-utils.h.
1574         (dbus_g_type_get_marshal_name): Move mapping from GType
1575         to marshal name into here.
1576         (dbus_g_type_get_c_name): Move into here.
1577         (compute_marshaller): Convert signature to type with
1578         dbus_gtype_from_signature, use dbus_g_type_get_marshal_name.
1579         (compute_marshaller_name): Ditto.
1580         (compute_marshaller): Handle async signal annotations.
1581         (gather_marshallers): Return if we don't have a known
1582         prefix.
1583         (generate_glue): Collect introspection blob here, and
1584         write all of the blob at the end.  This allows an object
1585         with multiple interfaces to work.
1586         Mark async methods in introspection blob.
1587
1588         * glib/Makefile.am (libdbus_glib_1_la_SOURCES): Add
1589         dbus-gtype-specialized.c, dbus-gtype-specialized.h,
1590         dbus-gvalue-utils.h, dbus-gvalue-utils.c.
1591
1592         * dbus/dbus-glib.h: Don't include dbus-protocol.h; this
1593         avoids people accidentally using DBUS_TYPE_* which should
1594         not be necessary anymore.
1595         Do include dbus-gtype-specialized.h, which are utilities
1596         for GLib container types.
1597         Add various #defines for types such as
1598         DBUS_TYPE_G_BOOLEAN_ARRAY.
1599         (DBusGValueIterator, DBusGValue): Define, not fully used
1600         yet.
1601         (dbus_g_value_get_g_type): Type for recursive value.
1602         (dbus_g_value_open, dbus_g_value_iterator_get_value)
1603         (dbus_g_value_iterator_get_values, dbus_g_value_iterator_recurse)
1604         (dbus_g_value_free): Prototypes.
1605         (dbus_g_object_register_marshaller, dbus_g_proxy_new_from_proxy): Prototype.
1606         (dbus_g_proxy_set_interface): Prototype.
1607         (dbus_g_proxy_begin_call, dbus_g_proxy_end_call)
1608         (dbus_g_proxy_call_no_reply): Take GLib types instead of DBus
1609         types.
1610         (dbus_g_proxy_get_path, dbus_g_proxy_get_interface):
1611         Accessors.
1612         (DBusGAsyncData, DBusGMethodInvocation): Structures for
1613         doing async invocations.
1614         (dbus_g_method_return, dbus_g_method_return_error):
1615         Prototypes.
1616         * doc/dbus-tutorial.xml: Update GLib section.
1617         
1618         * tools/dbus-viewer.c (load_child_nodes): Update
1619         for new invocation type of dbus_g_proxy_end_call.
1620         (load_from_service_thread_func): Ditto.
1621
1622         * tools/print-introspect.c (main): Ditto.
1623
1624         * tools/dbus-names-model.c (have_names_notify)
1625         (names_model_reload, names_model_set_connection)
1626         Use GTypes.
1627
1628         * python/Makefile.am (INCLUDES): Define DBUS_COMPILATION,
1629         needed since Python bindings use GLib bindings.
1630
1631         * test/glib/Makefile.am (INCLUDES): Define DBUS_COMPILATION.
1632         Add --prefix argument.
1633
1634         * tools/Makefile.am: Define DBUS_COMPILATION.  Remove
1635         unneeded --ignore-unsupported arg.
1636         
1637         * test/glib/test-service-glib.c: 
1638         * test/glib/test-service-glib.xml:
1639         * test/glib/test-dbus-glib.c: Add many more tests.
1640
1641 2005-06-06  David Zeuthen  <davidz@redhat.com>
1642
1643         * doc/TODO: Add item about need to remove deprecated functions.
1644
1645         * dbus/dbus-connection.h: Add prototype for dbus_connection_disconnect
1646
1647         * dbus/dbus-connection.c (dbus_connection_disconnect): New function
1648         to repair the ABI which was broken with the last commit.
1649
1650 2005-06-02  John (J5) Palmieri <johnp@redhat.com>
1651
1652         *  dbus/dbus-connection.c, dbus/dbus-connection.h 
1653         (dbus_connection_disconnect): renamed to dbus_connection_close 
1654         for API symmetry with dbus_connection_open
1655         (_dbus_connection_open_internal): 
1656         s/dbus_connection_disconnect/dbus_connection_close
1657
1658         * dbus/dbus-bus.c (dbus_bus_get):
1659         s/dbus_connection_disconnect/dbus_connection_close
1660
1661         * bus/connection.c (bus_connections_unref, 
1662         bus_connections_setup_connection, bus_connections_expire_incomplete):
1663         s/dbus_connection_disconnect/dbus_connection_close
1664
1665         * bus/dispatch.c (bus_dispatch, kill_client_connection, 
1666         kill_client_connection_unchecked, check_hello_connection):
1667         s/dbus_connection_disconnect/dbus_connection_close
1668
1669         * bus/bus.c (new_connection_callback):
1670         s/dbus_connection_disconnect/dbus_connection_close
1671
1672         * tools/dbus-send.c (main):
1673         s/dbus_connection_disconnect/dbus_connection_close
1674
1675         * test/glib/test-profile.c (no_bus_thread_func, with_bus_thread_func):
1676         s/dbus_connection_disconnect/dbus_connection_close
1677         
1678         * test/test-service.c (path_message_func, filter_func):
1679         s/dbus_connection_disconnect/dbus_connection_close
1680         
1681         * doc/TODO: remove connection_open/connection_disconnect lacks symmetry         item that was just fixed
1682         
1683 2005-05-25  Colin Walters  <walters@verbum.org>
1684
1685         * dbus/dbus-protocol.h: Move various bus service #defines such
1686           as DBUS_SERVICE_DBUS and DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT to
1687           dbus/dbus-shared.h.
1688         * dbus/dbus-shared.h: Various defines moved here.
1689         * dbus/dbus-marshal-header.c: Include dbus-shared.h.
1690
1691 2005-05-25  John (J5) Palmieri  <johnp@redhat.com>
1692
1693         * python/__init__.py: Python bindings deserve a minor version
1694         update.  Upped to (0, 40, 2)
1695
1696 2005-05-24  John (J5) Palmieri  <johnp@redhat.com>
1697
1698         * python/decorators.py: add explicitly_pass_message decorator
1699         for passing in the dbus message as keyword for edge case signal
1700         handling
1701
1702         * python/matchrules.py (SignalMatchRule.__repr__): fix output
1703         to conform with what dbus expects for match rules
1704         (SignalMatchRule.execute): add the dbus message as a keyword
1705         if the signal handler has requested it
1706
1707         * python/examples/example/signal-recipient.py: added some more
1708         examples on how to hook up to signals
1709
1710 2005-05-23  John (J5) Palmieri  <johnp@redhat.com>
1711
1712         * python/decorators.py: import dbus_bindings
1713
1714         * python/matchrules.py (SignalMatchRule, SignalMatchTree, 
1715         SignalMatchNode): new classes that implement wildcard signal
1716         callback matching using a tree lookup. Heavily modified from a
1717         patch sent by Celso Pinto (fd.o bug #3241)
1718
1719         * _dbus.py (add_signal_receiver, remove_signal_receiver, _signal_func):
1720         use new match classes to handle signals.
1721
1722 2005-05-19  John (J5) Palmieri  <johnp@redhat.com>
1723         
1724         * python/dbus_bindings.pyx.in: s/TYPE_PATH/TYPE_OBJECT_PATH
1725
1726 2005-05-18  Havoc Pennington  <hp@redhat.com>
1727
1728         * configure.in: use GLIB_GNU_GETTEXT to get INTLLIBS and require
1729         gettext. Not really worth requiring yet perhaps, but any
1730         production quality 1.0 would require it so we should go ahead and
1731         get things set up. We do have a couple token calls to
1732         bindtextdomain in the code already.
1733
1734 2005-05-16  John (J5) Palmieri  <johnp@redhat.com>
1735
1736         * glib/dbus-gmain.c (io_handler_dispatch): fix deadlock
1737         when using recursive g_main_loops
1738
1739         * python/_dbus.py (class Bus): add the ProxyObjectClass
1740         alias for ProxyObject to make it easier for the Twisted 
1741         networking framework to integrate dbus.
1742
1743         * python/proxies.py (class ProxyObject): add the ProxyMethodClass
1744         alias for ProxyMethod to make it easier for the Twisted 
1745         networking framework to integrate dbus. 
1746
1747 2005-05-11  Ross Burton  <ross@openedhand.com>
1748
1749         * glib/dbus-glib-tool.c: Add --prefix argument.
1750         * glib/dbus-binding-tool-glib.h: Add prefix argument.
1751         * glib/dbus-binding-tool-glib.c (compute_marshaller_name):
1752         Add prefix argument.
1753         (generate_glue): Pass prefix argument down.
1754         (dbus_binding_tool_output_glib_server): Pass prefix to
1755         glib-genmarshal.
1756         
1757 2005-05-11  Colin Walters  <walters@verbum.org>
1758
1759         * tools/dbus-send.c (append_array): New function.
1760         (append_arg): Broken out from main.
1761         (main): Add cheesy hack to send arrays and variants.
1762         (usage): Update.
1763         * tools/dbus-print-message.c (print_iter): Broken out
1764         from main.
1765
1766 2005-05-11  Colin Walters  <walters@verbum.org>
1767
1768         * dbus/dbus-signature.c (dbus_signature_iter_get_signature):
1769         New function, returns signature string for signature iter.
1770         * dbus/dbus-signature.h: Prototype it.
1771         * dbus/dbus-message.c (dbus_message_iter_get_signature):
1772         New function, returns signature string for message iter.
1773         (dbus_message_iter_get_array_len): New function, returns
1774         length of array.
1775         (dbus_message_iter_get_fixed_array): Fix assertion; this
1776         function should be used when the iter is pointing to the
1777         contents of an array
1778         * dbus/dbus-message.h: Prototypes.
1779         * dbus/dbus-marshal-recursive.c (_dbus_type_reader_get_array_length):
1780         New function; returns length of an array.
1781         * dbus/dbus-marshal-recursive.h: Prototype it.
1782         
1783 2005-05-11  Colin Walters  <walters@verbum.org>
1784
1785         * dbus/dbus-sysdeps-util.c <!HAVE_POSIX_GETPWNAM_R>: Fix
1786         compilation error.
1787         
1788 2005-05-08  Havoc Pennington  <hp@redhat.com>
1789
1790         * dbus/dbus-sysdeps-util.c (_dbus_become_daemon): write the
1791         daemon's pid, not the parent's pid, to the file descriptor.
1792         Reported by Taj Morton.
1793
1794 2005-05-05  Havoc Pennington  <hp@redhat.com>
1795
1796         * configure.in (LT_*): add notes on how the libtool versioning
1797         works to save thinking. Increment soname to indicate protocol
1798         breakage (though really the library interface hasn't changed I
1799         guess)
1800
1801         * dbus/dbus-transport.c (_dbus_transport_get_is_authenticated):
1802         verify the GUID received from server matches what we were
1803         expecting, if we had an expectation
1804
1805         * dbus/dbus-auth.c (send_ok): send GUID along with the OK command
1806         (_dbus_auth_get_guid_from_server): new function
1807         (send_begin): parse the OK args
1808
1809         * doc/dbus-specification.xml: add GUID to the auth protocol
1810
1811 2005-05-05  John (J5) Palmieri  <johnp@redhat.com>
1812
1813         * Fix my name in previous changelog ;)
1814
1815         * python/proxies.py (ProxyObject.__getattr__): add further patch
1816         from Anthony Baxter to throw an AttributeError when python 
1817         __special__ functions are called instead of marshling them over 
1818         the bus (Bug#1685 comment 3).
1819
1820 2005-05-04  John (J5) Palmieri  <johnp@redhat.com>
1821
1822         * python/Makefile.am: changed to use pyexecdir for the binding
1823         shared libraries (Bug#2494)
1824
1825         * python/exceptions.py: bring exceptions over from the bindings
1826         so they can be used in applications (Bug#2036)
1827         Make all exceptions derive from DBusException
1828
1829         * python/_dbus.py, python/proxies.py: implement __repr__ in a couple
1830         of classes so that print obj doesn't throw an exception (Bug #1685)
1831
1832 2005-05-03  Ross Burton  <ross@openedhand.com>
1833
1834         * glib/dbus-gobject.c (dbus_g_connection_register_g_object):
1835         Return if we get an error during registration.  Set up a
1836         weak reference on object to unregister if object is destroyed.
1837         (unregister_gobject): New function.
1838         
1839 2005-05-01  John (J5) Palmieri  <johnp@redhat.com>
1840
1841         * python/dbus_bindings.pyx.in: 
1842         - added new type classes for hinting to the marashaler what type 
1843         to send over the wire
1844         - added int16 and uint16 marshalers
1845         - Fixed a bug in the type constants that caused int32 to go out
1846         as uint16 over the wire
1847         * python/dbus.py: split up into different files and renamed _dbus.py
1848         * python/__init__.py, python/_util.py, python/decorators.py, 
1849         python/exceptions.py, python/proxies.py, python/services.py,
1850         python/types.py: new files split off from dbus.py
1851         * python/Makefile.am: Add new files, remove dbus.py and 
1852         install all python files to <python module dir>/dbus
1853         * python/examples/*: Added #!/usr/bin/env python to the top of
1854         every example.  Patch provided by Tatavarty Kalyan
1855
1856 2005-04-25  John (J5) Palmieri  <johnp@redhat.com>
1857
1858         * NEWS: Update to 0.33
1859
1860 2005-04-25  John (J5) Palmieri  <johnp@redhat.com>
1861
1862         * python/dbus_bindings.pyx.in (send_with_reply_handlers): New send
1863         method for doing async calls
1864         (_pending_call_notification): New C function for handling pendning call
1865         callbacks
1866         (set_notify): New method for setting pending call notification
1867         
1868         * python/dbus.py: new version tuple "version" is set at (0, 40, 0)
1869         Async capabilities added to remote method calls
1870         (Sender): class removed
1871         (RemoteService): class removed
1872         (ObjectTree): class removed for now
1873         (RemoteObject): Renamed to ProxyObject
1874         (RemoteMethod): Renamed to ProxyMethod
1875         (method): Decorator added for decorating python methods as dbus methods
1876         (signal): Decorator added for decorating python methods as signal emitters
1877         (ObjectType): Metaclass added for generating introspection data and the
1878         method callback vtable
1879         (Interface): Wrapper class added to wrap objects in a dbus interface
1880         (Object): Uses ObjectType as its metaclass and exports Introspect
1881         of the org.freedesktop.DBus.Introspectable interface
1882         (ValidationException, UnknownMethodException): new exceptions
1883
1884         * python/examples/*: Modified to fit with the new bindings
1885
1886 2005-04-23  Havoc Pennington  <hp@redhat.com>
1887
1888         * dbus/dbus-message.c (dbus_message_append_args): fix doc comment,
1889         reported by Tony Houghton
1890
1891         * test/test-service.c (main): test
1892         dbus_connection_get_object_path_data()
1893
1894         * dbus/dbus-object-tree.c (find_handler): be sure we always init
1895         the exact_match
1896         (_dbus_object_tree_get_user_data_unlocked): new function used by
1897         dbus_connection_get_object_path_data()
1898         (do_register): add assertion test for get_user_data_unlocked
1899         (object_tree_test_iteration): more tests
1900
1901         * dbus/dbus-connection.c (dbus_connection_get_object_path_data):
1902         new function from Dan Reed to let you get the user data from 
1903         dbus_connection_register_object_path()
1904
1905 2005-04-23  John (J5) Palmieri  <johnp@redhat.com>
1906
1907         * dbus/dbus-marshal-recursive-util.c: Fixed buffer overflow
1908         in numerous places that did not account for the NULL terminator
1909         (signature_from_seed): changed the manual string copy loop to 
1910         just use strcpy instead
1911         make check should now pass
1912
1913 2005-04-19  John (J5) Palmieri  <johnp@redhat.com>
1914
1915         * dbus/dbus-marshal-header.c (_dbus_header_create): Fix assert
1916         so that it allows messages that are not signals to pass in 
1917         NULL as the interface.
1918
1919 2005-04-18  David Zeuthen  <davidz@redhat.com>
1920
1921         * glib/dbus-gmain.c (io_handler_destroy_source): 
1922         (timeout_handler_destroy_source, connection_setup_free): 
1923         Also unref the source to avoid memory leaks.
1924
1925 2005-04-13  David Zeuthen  <davidz@redhat.com>
1926
1927         * bus/config-parser.c (bus_config_parser_new): Bump this to a
1928         more reasonable, yet still totally arbitrary, value :-). 
1929
1930 2005-04-13  David Zeuthen  <davidz@redhat.com>
1931
1932         * doc/TODO: Added an "important for 1.0" item about selinux
1933         allow/deny messages
1934
1935 2005-04-13  David Zeuthen  <davidz@redhat.com>
1936
1937         * bus/selinux.c: Add c-file-style to top of file
1938         (log_audit_callback): Don't free the data here anymore
1939         (bus_selinux_check): Don't take spid and tpid since appending
1940         that to auxdata may OOM.
1941         (bus_selinux_allows_acquire_service): Handle OOM and signal back
1942         to the caller if we are OOM by taking an error object.
1943         (bus_selinux_allows_send): -do-
1944
1945         * bus/selinux.h: Fix prototypes for bus_selinux_allows_acquire_service
1946         and bus_selinux_allows_send
1947
1948         * bus/bus.c (bus_context_check_security_policy): Pass error and
1949         pass on OOM thrown by bus_selinux_allows_send()
1950
1951         * bus/services.c (bus_registry_acquire_service): Pass error and
1952         pass on OOM thrown by bus_selinux_allows_acquire_service()
1953
1954 2005-04-13  Havoc Pennington  <hp@redhat.com>
1955
1956         * glib/dbus-gmain.c (message_queue_dispatch): only dispatch one
1957         message at a time to avoid monopolizing the main loop, bug 
1958         #2953 from Benjamin Otte
1959
1960 2005-04-09  Havoc Pennington  <hp@redhat.com>
1961
1962         * dbus/dbus-string.c (copy): change a memcpy to memmove due to
1963         possible overlap, fix from Daniel Reed
1964         (fixup_alignment): fix signedness warnings
1965         (_dbus_string_append_unichar): ditto
1966
1967 2005-04-09  Havoc Pennington  <hp@redhat.com>
1968
1969         * dbus/dbus-message-util.c (_dbus_message_test): fix signedness warning
1970
1971         * glib/dbus-glib-tool.c (main): fix warning
1972
1973         * glib/dbus-binding-tool-glib.c (generate_glue): fix warning
1974
1975         * dbus/dbus-connection.c (dbus_connection_read_write_dispatch):
1976         add a new function that can be used in simple applications that
1977         don't have a main loop and are willing to block
1978
1979 2005-04-05  David Zeuthen  <davidz@redhat.com>
1980
1981         Fix https://bugs.freedesktop.org/show_bug.cgi?id=2889
1982
1983         * glib/dbus-gmain.c:
1984         (io_handler_destroy_source): Remove from list of IO handlers
1985         of the ConnectionSetup object
1986         (timeout_handler_destroy_source): -do- for timeout handlers
1987         (io_handler_source_finalized): Don't remove from list since
1988         we now do that in io_handler_destroy_source(). Renamed from
1989         io_handler_source_destroyed
1990         (timeout_handler_source_destroyed): -do- for timeout handlers
1991         (connection_setup_free): It is now safe to iterate over all
1992         IO and timeout handlers as the _destroy_source removes them
1993         from the list synchronously
1994
1995 2005-03-30  Havoc Pennington  <hp@redhat.com>
1996
1997         * configure.in: change check to gtk 2.4
1998
1999         * tools/dbus-viewer.c (name_combo_changed_callback): remove
2000         gtk_combo_box_get_active_text() usage to decrement GTK requirement
2001         to 2.4
2002
2003 2005-03-29  John (J5) Palmieri  <johnp@redhat.com>
2004
2005         * News: Update 0.32
2006
2007         * HACKING: Fixed realease instructions.  configure.in should be updated to
2008           the next release by the person who made the last release.
2009
2010 2005-03-29  John (J5) Palmieri  <johnp@redhat.com>
2011
2012         * python/lvalue_cast_post_process.py - removed.  Patch has been
2013           submitted to Pyrex maintainers that fixes gcc4.0 errors
2014
2015         * python/Makefile.am: removed refrences to lvalue_cast_post_process.py
2016
2017 2005-03-24  Daniel Reed  <n@ml.org>
2018
2019         * tools/Makefile.am: Make print-introspect and
2020         dbus-bus-introspect.xml building conditional on HAVE_GLIB.
2021
2022 2005-03-22  John (J5) Palmieri  <johnp@redhat.com>
2023
2024         * tools/Makefile.am: Patch by Colin Walters that fixes distcheck
2025
2026         * dbus/dbus-userdb.c, dbus/dbus-userdb-util.c: Add patch we have 
2027           had in Red Hat packages for a while but for some reason never 
2028           got merged upstream
2029           (_dbus_is_a_number): New checks if a string
2030           can be converted to a number and does the conversion if it can
2031           (_dbus_user_database_lookup): Add check to see if the given username
2032           is a udi.  This allows udi's to be used instead of usernames in the
2033           config file.
2034           (_dbus_user_database_lookup_group): Add check to see if the given groupname
2035           is a gdi.  This allows gdi's to be used instead of groupnames in the
2036           config file.
2037
2038 2005-03-21  John (J5) Palmieri  <johnp@redhat.com>
2039
2040         * python/lvalue_cast_post_process.py - added post processor to fix Pyrex
2041           code so that it compiles with gcc4.0
2042
2043         * python/Makefile.am: Added lvalue_cast_post_process.py to EXTRA_DIST
2044           run dbus_bindings.c through lvalue_cast_post_process.py and copy the
2045           results back to dbus_binding.c
2046
2047 2005-03-20  Colin Walters  <walters@verbum.org>
2048
2049         Patch suggested by Inguva Rajasekhar <ringuva@novell.com>.
2050
2051         * configure.in: Require GTK+ 2.6.
2052         
2053 2005-03-20  Colin Walters  <walters@verbum.org>
2054
2055         * Makefile.am (SUBDIRS, DIST_SUBDIRS): Build tools before test.
2056
2057 2005-03-17  Tom Parker  <palfrey@tevp.net>
2058
2059         * dbus/dbus-userdb.c (_dbus_user_database_lookup): Don't
2060         print DBUS_UID_UNSET; instead print passed username.  Also
2061         be sure to actually use gid looked up in cache.
2062         
2063         * dbus/dbus-userdb-util.c (_dbus_user_database_lookup_group): Ditto
2064         for DBUS_GID_UNSET and groupname.
2065
2066 2005-03-17  Colin Walters  <walters@verbum.org>
2067
2068         * bus/print-introspect.c: Move to tools/.
2069         * bus/run-with-tmp-session-bus.sh: Ditto.
2070         
2071         * glib/Makefile.am (dbus-glib-bindings.h): Move
2072         generation to tools/Makefile.am.
2073
2074         * test/glib/run-test.sh: Update to handle move
2075         of run-with-tmp-session-bus.sh.
2076
2077         * test/glib/test-service-glib.c: Update to handle
2078         move of dbus-glib-bindings.h.
2079
2080         * tools/print-introspect.c: Moved here
2081         from bus/, and ported to GLib bindings.
2082
2083         * tools/run-with-tmp-session-bus.sh: Moved here
2084         from bus/.
2085
2086         * tools/Makefile.am: Generate dbus-glib-bindings.h
2087         and dbus-bus-introspect.xml here.
2088
2089         * tools/.cvsignore, glib/.cvsignore, bus/.cvsignore:
2090         Update.
2091
2092 2005-03-17  Colin Walters  <walters@verbum.org>
2093
2094         * bus/driver.c (write_args_for_direction): Use
2095         _dbus_string_get_const_data to retrieve string;
2096         _dbus_string_get_const_data_len doesn't actually return
2097         a NULL-terminated substring.
2098
2099         * test/glib/test-service-glib.c: Include dbus-glib-bindings.h.
2100         (main): Change to use org_freedesktop_DBus_request_name
2101         instead of using g_proxy_begin_call/end_call.
2102
2103 2005-03-15  Joe Shaw  <joeshaw@novell.com>
2104
2105         * mono/ProxyBuilder.cs (BuildFinalizer): Fix some invalid IL when
2106         generating the finalizer.  Fixes from Ben Maurer.
2107
2108 2005-03-12  Joe Shaw  <joeshaw@novell.com>
2109
2110         * mono/BusDriver.cs: Update method names: ListServices
2111         becomes ListNames; GetOwner becomes GetNameOwner.
2112
2113         * mono/ProxyBuilder.cs (BuildFinalizer): Need to load arg 0
2114         onto the eval stack when removing the delegate.
2115
2116 2005-03-12  Joe Shaw  <joeshaw@novell.com>
2117
2118         * mono/dbus-sharp.dll.config.in: Don't hardcode 0 for
2119         LT_CURRENT.  Set it to the autoconf variable.
2120                                                                                 
2121         * mono/ProxyBuilder.cs: Add a finalizer to the generated proxy
2122         classes that disconnects the signal handler delegate from the
2123         service object.  Fixes a big leak of proxy objects on the
2124         client side of things.  Patch from Ben Maurer
2125         <bmaurer@ximian.com>
2126
2127 2005-03-12  Colin Walters  <walters@verbum.org>
2128
2129         * bus/driver.c (write_args_for_direction): New function,
2130         parses a type signature into arguments and outputs to
2131         XML.
2132         (bus_driver_handle_introspect): Use it instead of
2133         hardcoding XML for certain signatures.
2134         
2135         * bus/Makefile.am (dbus-bus-introspect.xml): Add
2136         dependency on dbus-daemon.
2137
2138         * glib/dbus-glib-tool.c (main): Parse ignore_unsupported
2139         argument, pass it to dbus_binding_tool_output_glib_client.
2140
2141         * glib/dbus-binding-tool-glib.c
2142         (generate_client_glue): Protect against multiple inclusion.
2143         (dbus_binding_tool_output_glib_client): Add
2144         G_BEGIN_DECLS/G_END_DECLS.
2145
2146         * glib/dbus-binding-tool-glib.c (compute_client_method_name):
2147         Change to just take iface prefix directly.
2148         (write_formal_parameters): Clarify error message.
2149         (check_supported_parameters): New function; checks to see type
2150         signatures of method parameters are supported.
2151         (generate_client_glue): Handle ignore_unsupported flag.
2152         (dbus_binding_tool_output_glib_client): Handle ignore_unsupported
2153         parameter.
2154
2155         * glib/Makefile.am (dbus-glib-bindings.h): Pass
2156         --ignore-unsupported by default until glib bindings
2157         support arrays.
2158
2159 2005-03-11  Colin Walters  <walters@verbum.org>
2160
2161         * glib/Makefile.am: Generate dbus-glib-bindings.h and
2162         install it.
2163
2164         * bus/print-introspect.c: New file; prints introspection
2165         data for a given name and object path.
2166
2167         * bus/run-with-tmp-session-bus.sh: New file, refactored
2168         from test/glib/run-test.sh.  Creates a temporary session
2169         bus and runs another program.
2170
2171         * test/glib/run-test.sh: Refactor to invoke
2172         run-with-tmp-session-bus.sh.
2173
2174         * bus/driver.c (bus_driver_handle_introspect): Fix to print new
2175         introspection format.  Also change to use DBUS_TYPE_x_AS_STRING
2176         macros instead of hardcoding.
2177
2178         * glib/.cvsignore, bus/.cvsignore, test/glib/.cvsignore: Update.
2179
2180 2005-03-11  Joe Shaw  <joeshaw@novell.com>
2181
2182         * dbus/dbus-connection.c (dbus_connection_send_with_reply): Remove
2183         this unref; it doesn't match up evenly in some codepaths.
2184         (_dbus_connection_block_pending_call): Unref at every exitpoint;
2185         this evenly matches with the ref near the top of this function.
2186
2187 2005-03-09  Joe Shaw  <joeshaw@novell.com>
2188
2189         * dbus/dbus-object-tree.c
2190         (_dbus_object_tree_unregister_and_unlock): If checks are enabled
2191         and we try to unregister a path that's not registered, still go
2192         through the process of unlocking and don't just return.
2193
2194 2005-03-09  Colin Walters  <walters@verbum.org>
2195
2196         * glib/dbus-gproxy.c (dbus_g_proxy_invoke): New method; calls
2197         to this are generated for client-side wrappers.  Invokes a
2198         D-BUS method and returns reply values.  
2199
2200         * glib/dbus-binding-tool-glib.c (write_args_sig_for_direction): New
2201         function; writes signature string for argument direction.
2202         (write_args_for_direction): Change to pass input values directly
2203         instead of via address, and fix indentation.
2204         (generate_client_glue): Change to invoke dbus_g_proxy_invoke.  Also
2205         make generated wrappers inlineable.
2206
2207         * dbus/dbus-message.c (dbus_message_iter_get_fixed_array): Add
2208         note about using dbus_type_is_fixed.
2209
2210         * dbus/dbus-marshal-basic.c (_dbus_type_is_fixed): Moved to
2211         dbus/dbus-signature.c as dbus_type_is_fixed.
2212
2213         All callers updated.
2214
2215         * dbus/dbus-signature.c (dbus_type_is_fixed): Moved here
2216         from dbus/dbus-marshal-basic.c:_dbus_type_is_fixed.
2217
2218         * dbus/dbus-signature.h: Prototype.
2219
2220         * glib/dbus-binding-tool-glib.c (compute_marshaller_name): Fix
2221         error printf code.
2222
2223         * test/glib/test-dbus-glib.c (main): Be sure to clear error as
2224         appropriate instead of just freeing it.
2225         (main): Free returned strings using g_free.
2226
2227         * test/glib/Makefile.am (test-service-glib-glue.h)
2228         (test-service-glib-bindings.h): Add dependency on dbus-binding-tool.
2229
2230         * glib/dbus-gvalue.c (MAP_BASIC): Refactored from MAP_BASIC_INIT;
2231         simply maps a simple D-BUS type to GType.
2232         (dbus_dbus_type_to_gtype): Function which maps D-BUS type to
2233         GType.
2234         (dbus_gvalue_init): Just invoke dbus_dbus_type_to_gtype and
2235         initialize the value with it.
2236         (dbus_gvalue_binding_type_from_type): Unused, delete.
2237         (dbus_gvalue_demarshal): Switch to hardcoding demarshalling for
2238         various types instead of unmarshalling to value data directly.
2239         Remove can_convert boolean.
2240         (dbus_gvalue_marshal): Remove duplicate initialization; switch to
2241         returning directly instead of using can_convert boolean.
2242         (dbus_gvalue_store): New function; not related to D-BUS per-se.
2243         Stores a GValue in a pointer to a value of its corresponding C
2244         type.
2245
2246         * glib/dbus-gvalue.h: Remove dbus_gvalue_binding_type_from_type,
2247         add dbus_gvalue_store.
2248
2249 2005-03-08  Joe Shaw  <joeshaw@novell.com>
2250
2251         Fix a bunch of lifecycle and memory management problems
2252         in the mono bindings.
2253
2254         * mono/Arguments.cs (Arguments): Implement IDisposable
2255
2256         * mono/Bus.cs (Bus): Don't allow public instantiation.  This is
2257         strictly a static class.
2258
2259         * mono/Connection.cs: Move the DBusObjectPathVTable and associated
2260         delegates into this file.
2261         (Connection): Implement IDisposable.
2262         (Dispose): Disconnect the connection and set the raw connection
2263         pointer to IntPtr.Zero.
2264         (~Connection): Call Dispose().
2265         (RegisterObjectPath): Added.  Manages the registration of object
2266         paths so we can cleanly disconnect them at dispose/finalize time.
2267         (UnregisterObjectPath): Ditto.
2268         (set_RawConnection): Unregister all of the object paths when
2269         changing the underlying DBusConnection.  Add them back onto the
2270         new connection, if any.
2271
2272         * mono/Handler.cs: Don't implement IDisposable; it doesn't use any
2273         more unmanaged resources anymore, so it's not necessary.  Move all
2274         the DBusObjectPathVTable stuff out of here.
2275         (Handler): Save references to our delegates so that they don't get
2276         finalized.  Call Connection.RegisterObjectPath() instead of
2277         dbus_connection_register_object_path() directly.
2278         (Message_Called): Dispose the message after we're finished with
2279         it.
2280
2281         * mono/Message.cs (Message): Implement IDisposable.
2282         (Dispose): Dispose the Arguments, and set the RawMessage to
2283         IntPtr.Zero.
2284         (SendWithReplyAndBlock): We own the ref to the reply that comes
2285         back from dbus_connection_send_with_reply_and_block() so add a
2286         comment about that and unref it after we've constructed a managed
2287         MethodReturn class around it.  Fixes a big, big leak.
2288
2289         * mono/ProxyBuilder.cs: Reflect into Message to get the Dispose
2290         method.
2291         (BuildSignalHandler): After we've sent the Signal message, dispose
2292         of it.
2293         (BuildMethod): Dispose of the method call and reply messages after
2294         we've sent the message and extracted the data we want from the
2295         reply.
2296
2297         * mono/Service.cs (UnregisterObject): Don't call handler.Dispose()
2298         anymore.
2299         (Service_FilterCalled): Dispose of the message after we're
2300         finished with it.
2301
2302 2005-03-08  Joe Shaw  <joeshaw@novell.com>
2303
2304         * dbus/dbus-connection.c (dbus_connection_send_with_reply):
2305         After we attach our pending call to the connection, unref
2306         it.  Fixes a leak.
2307  
2308         * mono/Connection.cs (set_RawConnection): Disconnect our
2309         filter and match callbacks from the old connection and
2310         reconnect them to the new connection, if any.
2311
2312         * mono/DBusType/Array.cs: "Code" is a static member, so
2313         don't use "this" to refer to it.  Fix for stricter checking
2314         in Mono 1.1.4.
2315  
2316         * mono/DBusType/ObjectPath.cs (Append): Don't leak the
2317         object path that we pass into unmanaged code.
2318  
2319         * mono/DBusType/String.cs (Append): Don't leak the string
2320         that we pass into unmanged code.
2321
2322 2005-03-07  John (J5) Palmieri  <johnp@redhat.com>
2323         * NEWS: Update for 0.31
2324
2325         * configure.in: Release 0.31
2326         add LT_CURRENT, LT_REVISION, LT_AGE for easy soname bumping
2327
2328         * qt/Makefile.am: fixed build
2329
2330         * dbus/Makefile.am: soname bump for libdbus
2331
2332         * glib/Makefile.am: soname bump for libdbus-glib
2333
2334 2005-03-05  Havoc Pennington  <hp@redhat.com>
2335
2336         * dbus/dbus-sysdeps.c:
2337         (pseudorandom_generate_random_bytes_buffer): fix to have no return
2338         value
2339         (_dbus_generate_random_bytes_buffer): fix return value
2340
2341         * dbus/dbus-sysdeps-util.c: s/GETPWNAME/GETPWNAM/ so configure
2342         checks actually work, from Tom Parker <fdo@tevp.net>
2343
2344 2005-03-01  Colin Walters  <walters@verbum.org>
2345
2346         * test/glib/test-dbus-glib.c (lose, lose_gerror): Utility
2347         functions copied from dbus-glib-tool.c.
2348         (main): Convert lots of error code to use them.
2349         Also add some testing for introspection bits.
2350
2351 2005-03-01  Colin Walters  <walters@verbum.org>
2352         
2353         * doc/TODO: Remove introspection signature TODO.
2354
2355 2005-02-27  Colin Walters  <walters@verbum.org>
2356
2357         * glib/dbus-gidl.c (property_info_get_type, arg_info_get_type):
2358         Change return value to const char * instead of int so we can do
2359         full signatures.
2360         (struct PropertyInfo, struct ArgInfo): Store char *.
2361         (property_info_new, arg_info_new): Update parameters, strdup.
2362         (property_info_unref, arg_info_unref): Free.
2363
2364         * glib/dbus-gidl.h: Update prototypes.
2365
2366         * glib/dbus-gparser.c (basic_type_from_string): Delete.
2367         (validate_signature): New function, just validates signature and
2368         sets GError.
2369         (parse_property, parse_arg): Invoke validate_signature.  Store
2370         signature instead of just type code.
2371
2372         * glib/dbus-gvalue.c (base_type_from_signature): New utility
2373         function to return a primary type for a signature, dropping
2374         information about types in container types.
2375         (dbus_gvalue_genmarshal_name_from_type)
2376         (dbus_gvalue_binding_type_from_type)
2377         (dbus_gvalue_ctype_from_type): Update to take full signature
2378          instead of type code.
2379         (dbus_gtype_to_dbus_type): Moved here from glib/dbus-gobject.c.
2380
2381         * glib/dbus-gvalue.h: Update prototypes for above.
2382
2383         * glib/dbus-gobject.c (gtype_to_dbus_type): Moved to
2384         glib/dbus-gvalue.c as dbus_gtype_to_dbus_type.
2385         (introspect_properties, introspect_signals, write_interface):
2386         Update to handle signatures, and remove usage of
2387         _dbus_gutils_type_to_string.
2388         (handle_introspect): Print out type codes instead of e.g. "string"
2389         in hardcoded introspection XML; also use x_AS_STRING constants
2390         instead of hardcoding in string.
2391
2392         * glib/dbus-glib-tool.c (pretty_print): Handle signature change
2393         to string.  Remove usage of _dbus_gutils_type_to_string.
2394
2395         * glib/dbus-gutils.c (_dbus_gutils_type_to_string): Delete.
2396
2397         * glib/dbus-gutils.h (_dbus_gutils_type_to_string): Update for
2398         deletion.
2399         
2400         * glib/dbus-binding-tool-glib.c (compute_marshaller)
2401         (compute_marshaller_name, generate_glue): Handle signature change
2402         to string.
2403         (write_formal_parameters, write_args_for_direction): Ditto, and
2404         remove FIXME.
2405
2406         * tools/dbus-tree-view.c (type_to_string): Delete.
2407         (info_set_func_text): Update to print full signatures.
2408
2409         * test/glib/test-service-glib.xml: Change types to new
2410         introspection format.
2411
2412 2005-02-26  Havoc Pennington  <hp@redhat.com>
2413
2414         * doc/TODO: remove the "guid" item
2415
2416         * test/glib/test-profile.c (no_bus_thread_func): use open_private
2417         (with_bus_thread_func): use open_private
2418
2419         * dbus/dbus-connection.c (dbus_connection_open_private): new
2420         function that works like the old dbus_connection_open()
2421         (dbus_connection_open): now returns an existing connection if
2422         possible
2423
2424         * dbus/dbus-server-unix.c (handle_new_client_fd_and_unlock): pass
2425         through the GUID to the transport
2426
2427         * dbus/dbus-server.c (_dbus_server_init_base): keep around the
2428         GUID in hex-encoded form.
2429
2430         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
2431         pass GUID argument in to the transport
2432
2433         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd): add
2434         guid argument
2435
2436         * dbus/dbus-transport.c (_dbus_transport_init_base): add guid argument
2437
2438         * dbus/dbus-auth.c (_dbus_auth_server_new): add guid argument
2439
2440 2005-02-25  Havoc Pennington  <hp@redhat.com>
2441
2442         * doc/dbus-specification.xml: document the GUID thing
2443
2444         * dbus/dbus-server.c (_dbus_server_init_base): initialize a
2445         globally unique ID for the server, and put a "guid=hexencoded"
2446         field in the address
2447
2448         * dbus/dbus-bus.c: fix missing #include of dbus-threads-internal.h
2449
2450         * dbus/dbus-message.c: ditto
2451
2452         * dbus/dbus-dataslot.c: ditto
2453
2454         * dbus/dbus-list.c: ditto
2455
2456         * dbus/dbus-internals.h: wait, just include
2457         dbus-threads-internal.h here
2458         
2459         * dbus/dbus-string.c (_dbus_string_copy_to_buffer): move back for
2460         use in main library
2461
2462         * dbus/dbus-sysdeps.c (_dbus_generate_random_bytes_buffer): new function
2463
2464 2005-02-24  Colin Walters  <walters@verbum.org>
2465
2466         * test/glib/Makefile.am (EXTRA_DIST): Add test-service-glib.xml
2467
2468 2005-02-24  John (J5) Palmieir  <johnp@redhat.com>
2469
2470         * glib/Makefile.am: added dbus-gobject.h to sources list
2471         so distcheck doesn't fail
2472         
2473 2005-02-24  Havoc Pennington  <hp@redhat.com>
2474
2475         * dbus/dbus-server.c, dbus/dbus-server-unix.c: change semantics so
2476         you must disconnect before unref, since locking and other things
2477         are screwed up otherwise. Fix assorted other locking stuff.
2478
2479         * dbus/dbus-signature.c (dbus_signature_iter_get_element_type):
2480         fix compilation
2481
2482         * dbus/dbus-threads-internal.h: move the mutex/condvar wrappers
2483         into a private header and don't export from the library
2484
2485         * throughout - call _dbus_thread_stuff vs. dbus_thread_stuff
2486
2487 2005-02-24  Colin Walters  <walters@verbum.org>
2488         
2489         * dbus/dbus-signature.c: New file; implements various functions
2490         related to type signatures.  Includes an interator for parsing,
2491         validation functions.
2492         (dbus_type_is_basic): Moved here from
2493         dbus-marshal-basic.c:_dbus_type_is_basic.
2494         (dbus_type_is_container): Moved here from
2495         dbus-marshal-basic.c:_dbus_type_is_container.
2496
2497         All callers of _dbus_type_is_container and _dbus_type_is_basic
2498         updated, and include dbus-signature.h.
2499
2500         * dbus/dbus-signature.h: New file; prototypes for the above.
2501
2502         * dbus/Makefile.am (DBUS_LIB_SOURCES): Add dbus-signature.c,
2503         dbus-signature.h.
2504
2505         * dbus/dbus-marshal-basic.c (map_type_char_to_type): New utility
2506         function factored out of _dbus_first_type_in_signature.
2507         (_dbus_first_type_in_signature_c_str): New function; returns first
2508         type code for a type signature character.
2509
2510         * dbus/dbus-marshal-basic.h: Prototype _dbus_first_type_in_signature_c_str,
2511         handle function moves.
2512
2513         * dbus/dbus-marshal-recursive.h: Export _dbus_type_signature_next.
2514
2515         * dbus/dbus-marshal-recursive.c (_dbus_type_signature_next): New
2516         function; skips to next complete type in type signature.
2517         Implemented using previous skip_one_complete_type.  Now
2518         skip_one_complete_type just delegates to
2519         _dbus_type_signature_next.
2520
2521         * dbus/dbus-marshal-basic.c (_dbus_type_is_basic): Moved
2522         to dbus-signature.c
2523         (_dbus_type_is_container): Ditto.
2524
2525         * doc/dbus-specification.xml: Update introspection sample to
2526         use real type signatures.
2527
2528         * dbus/dbus-test.h: Prototype signature test.
2529
2530         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): Run
2531         signature tests.
2532
2533         * dbus/dbus-protocol.h (DBUS_ERROR_INVALID_SIGNATURE): New error.
2534
2535 2005-02-23  John (J5) Palmieri  <johnp@redhat.com>
2536
2537         * python/dbus_bindings.pyx.in (PendingCall::get_reply):
2538         s/dbus_pending_call_get_reply/dbus_pending_call_steal_reply
2539
2540 2005-02-21  Colin Walters  <walters@verbum.org>
2541
2542         * dbus/dbus-test-main.c (main): Take optional specific test
2543         argument.
2544
2545         * dbus/dbus-test.c (run_test): New function, runs a test function
2546         with no data directory.
2547         (run_data_test): Like above, but takes data directory.
2548         (dbus_internal_do_not_use_run_tests): Take
2549         specific test argument.  Replace lots of cut n' paste code
2550         with run_test and run_data_test.
2551
2552         * dbus/dbus-test.h: Update prototype for
2553         dbus_internal_do_not_use_run_tests.
2554
2555 2005-02-20  Havoc Pennington  <hp@redhat.com>
2556
2557         Fix bugs reported by Daniel P. Berrange
2558         
2559         * dbus/dbus-server.c (_dbus_server_unref_unlocked): new function
2560         (protected_change_watch): new function
2561         (_dbus_server_toggle_watch, _dbus_server_remove_watch)
2562         (_dbus_server_add_watch): change to work like the
2563         dbus-connection.c equivalents; like those, probably kind of
2564         busted, but should at least mostly work for now
2565         (dbus_server_disconnect): drop the lock if we were already
2566         disconnected, patch from Daniel P. Berrange
2567
2568         * dbus/dbus-server.c (_dbus_server_toggle_timeout) 
2569         (_dbus_server_remove_timeout, _dbus_server_add_timeout): all the
2570         same stuff
2571
2572         * doc/TODO: todo about unscrewing this mess
2573
2574 2005-02-19  Colin Walters  <walters@verbum.org>
2575
2576         * glib/dbus-binding-tool-glib.c
2577         (dbus_binding_tool_output_glib_server): Fix iochannel refcounting.
2578
2579         * glib/dbus-glib-tool.c: Include dbus-glib-tool.h, as well
2580         as errno.h and sys/stat.h.
2581         (lose): New function, prints error with
2582         newline and exits.
2583         (lose_gerror): Similar, but takes GError for message.
2584         (main): Add --output argument to specify output file to write to,
2585         instead of always printing to stdout.  In this mode, determine
2586         timestamps on source files to see whether any are newer than the
2587         target file.  If not, exit.  Also convert a number of error
2588         messages to use lose (since it's shorter), and switch to using
2589         g_io_channel_shutdown.
2590
2591 2005-02-19  Havoc Pennington  <hp@redhat.com>
2592
2593         * glib/dbus-gobject.c
2594         (_dbus_glib_marshal_dbus_message_to_gvalue_array): add docs
2595
2596         * glib/dbus-glib.c: fix doxygen warnings
2597
2598         * glib/dbus-gparser.c (parse_annotation): error if an annotation
2599         is found on an <arg>
2600
2601 2005-02-17  Colin Walters  <walters@verbum.org>
2602
2603         * glib/dbus-gobject.h: Don't export
2604         _dbus_glib_marshal_dbus_message_to_gvalue_array.
2605         
2606         * glib/dbus-gobject.c (_dbus_glib_marshal_dbus_message_to_gvalue_array): Do rename.
2607         (invoke_object_method): Handle it.
2608
2609         * glib/dbus-gproxy.c (marshal_dbus_message_to_g_marshaller):
2610         Handle rename.
2611         
2612 2005-02-17  Colin Walters  <walters@verbum.org>
2613
2614         * bus/.cvsignore, doc/.cvsignore
2615         * test/data/valid-service-files/.cvsignore, test/glib/.cvsignore:
2616         Update.
2617
2618 2005-02-17  Colin Walters  <walters@verbum.org>
2619         
2620         * dbus/dbus-protocol.h (DBUS_SERVICE_ORG_FREEDESKTOP_DBUS):
2621         Rename to DBUS_SERVICE_DBUS.
2622         (DBUS_PATH_ORG_FREEDESKTOP_DBUS): Rename to DBUS_PATH_DBUS.
2623         (DBUS_PATH_ORG_FREEDESKTOP_LOCAL): Rename to DBUS_PATH_LOCAL.
2624         Change the value from "org.freedesktop.Local"
2625         to "org.freedesktop.DBus.Local".
2626         (DBUS_INTERFACE_ORG_FREEDESKTOP_DBUS): Rename to DBUS_INTERFACE_DBUS.
2627         (DBUS_INTERFACE_ORG_FREEDESKTOP_INTROSPECTABLE): Rename to
2628         DBUS_INTERFACE_INTROSPECTABLE.
2629         Change the value from "org.freedesktop.Introspectable"
2630         to "org.freedesktop.DBus.Introspectable".
2631         (DBUS_INTERFACE_ORG_FREEDESKTOP_PROPERTIES): Rename to
2632         DBUS_INTERFACE_PROPERTIES.
2633         Change the value from "org.freedesktop.Properties"
2634         to "org.freedesktop.DBus.Properties".
2635         (DBUS_INTERFACE_ORG_FREEDESKTOP_PEER): Rename to
2636         DBUS_INTERFACE_PEER.
2637         Change the value from "org.freedesktop.Peer"
2638         to "org.freedesktop.DBus.Peer".
2639         (DBUS_INTERFACE_ORG_FREEDESKTOP_LOCAL): 
2640         DBUS_INTERFACE_LOCAL.
2641         Change the value from "org.freedesktop.Local"
2642         to "org.freedesktop.DBus.Local".
2643
2644         All other users of those constants have been changed.
2645
2646         * bus/driver.c (bus_driver_handle_introspect): Use constants.
2647
2648         * glib/dbus-gobject.c (handle_introspect): Use constants.
2649
2650         * doc/dbus-faq.xml, doc/dbus-specification.xml: Update for rename.
2651
2652 2005-02-17  Colin Walters  <walters@verbum.org>
2653
2654         * glib/dbus-gparser.c (struct Parser): Add in_annotation boolean.
2655         (parse_node, parse_interface, parse_method, parse_signal)
2656         (parse_property, parse_annotation): Lose if we're currently in an
2657         annotation.
2658         (parse_annotation): New function.
2659         (parser_start_element, parser_end_element): Handle annotation.
2660         (parse_method, parse_interface): Remove support for c_name attribute,
2661         switch to annotations.
2662
2663         * glib/dbus-gidl.h (interface_info_get_binding_names)
2664         (method_info_get_binding_names)
2665         (interface_info_get_binding_name, method_info_get_binding_name)
2666         (interface_info_set_binding_name, method_info_set_binding_name):
2667         Remove.
2668         (interface_info_get_annotations, method_info_get_annotations)
2669         (interface_info_get_annotation, method_info_get_annotation)
2670         (interface_info_add_annotation, method_info_add_annotation):
2671         Prototype.
2672
2673         * glib/dbus-gidl.c (struct InterfaceInfo): Substitute "annotations"
2674         for "bindings".
2675         (struct MethodInfo): Ditto.
2676         Straightfoward conversion of binding methods into annotation methods
2677         as prototyped.
2678
2679         * glib/dbus-glib-tool.c (pretty_print): Print annotations.
2680
2681         * glib/dbus-binding-tool-glib.h (DBUS_GLIB_ANNOTATION_C_SYMBOL): Define.
2682
2683         * glib/dbus-binding-tool-glib.c (gather_marshallers, generate_glue):
2684         Use new annotation API.
2685
2686         * doc/introspect.dtd: Fix a number of DTD syntax errors.  Add
2687         annotation element.
2688         
2689         * doc/dbus-specification.xml: Discuss introspection annotations,
2690         include list of well-known annotations.
2691
2692         * test/glib/test-service-glib.xml: Make validate against new DTD.
2693
2694 2005-02-17  Colin Walters  <walters@verbum.org>
2695
2696         This patch is based on initial work from
2697         Paul Kuliniewicz <kuliniew@purdue.edu>.
2698
2699         * glib/dbus-gvalue.c (dbus_gvalue_init): New function; move
2700         initialization of GValue from dbus type to here.
2701         (dbus_gvalue_genmarshal_name_from_type): New function; generates a string
2702         for the "glib-genmarshal" program from a DBus type.
2703         (dbus_gvalue_binding_type_from_type): New function; turns a DBus type
2704         into the C name for it we use in the glib bindings.
2705         (dbus_gvalue_ctype_from_type): New function; maps a DBus type into a
2706         glib C type (not GValue).
2707         (dbus_gvalue_demarshal): invoke dbus_gvalue_init.
2708
2709         * glib/dbus-gutils.c (_dbus_gutils_wincaps_to_uscore): Moved here
2710         from dbus-gobject.c.
2711
2712         * glib/dbus-gutils.h: Prototype it.
2713
2714         * glib/dbus-gproxy.c: Include new dbus-gobject.h.
2715         (marshal_dbus_message_to_g_marshaller): Use new shared function
2716         dbus_glib_marshal_dbus_message_to_gvalue_array.
2717
2718         * glib/dbus-gparser.c (parse_interface, parse_method): Handle c_name attribute.
2719         Will be changed once we have annotations.
2720
2721         * glib/dbus-gobject.c: Change info_hash_mutex from GStaticMutex to
2722         GStaticRWLock.  Callers updated.
2723         (wincaps_to_uscore): Move to dbus-gutils.c.  Callers updated.
2724         (string_table_next): New function for iterating over zero-terminated
2725         string value array.
2726         (string_table_lookup): New function; retrieves specific entry in
2727         array.
2728         (get_method_data): New function; look up method data in object data chunk.
2729         (object_error_domain_prefix_from_object_info)
2730         (object_error_code_from_object_info): New functions, but not implemented yet.
2731         (method_interface_from_object_info): New function; retrieve interface name.
2732         (method_name_from_object_info): New function; retrieve method name.
2733         (method_arg_info_from_object_info): New function; retrieve argument data.
2734         (arg_iterate): New function; iterates over serialized argument data.
2735         (method_dir_signature_from_object_info): New function; returns a
2736         GString holding type signature for arguments for just one
2737         direction (input or output).
2738         (method_input_signature_from_object_info)
2739         (method_output_signature_from_object_info): New functions.
2740         (dbus_glib_marshal_dbus_message_to_gvalue_array): New shared function;
2741         converts dbus message arguments into a GValue array.  Used for both
2742         signal handling and method invocation.
2743         (struct DBusGlibWriteIterfaceData): New utility structure.
2744         (write_interface): New function; generate introspection XML for
2745         an interface.
2746         (introspect_interfaces): New function; gathers all interface->methods,
2747         generates introspection XML for them.
2748         (handle_introspect): Invoke introspect_interfaces.
2749         (get_object_property): Be sure to zero-initalize stack-allocated GValue.
2750         (lookup_object_and_method): New function; examines an incoming message
2751         and attempts to match it up (via interface, method name, and argument
2752         signature) with a known object and method.
2753         (gerror_domaincode_to_dbus_error_name): New function; converts a
2754         GError domain and code into a DBus error name.  Needs GError data
2755         added to object introspection to work well.
2756         (gerror_to_dbus_error_message): Creates a DBusMessage error return from
2757         GError.
2758         (invoke_object_method): New function to invoke an object method
2759         looked up via lookup_object_and_method.  Parses the incoming
2760         message, turns it into a GValue array, then invokes the marshaller
2761         specified in the DBusGMethodInfo.  Creates a new message with
2762         either return values or error message as appropriate.
2763         (gobject_message_function): Invoke lookup_object_and_method and
2764         invoke_object_method.
2765
2766         * glib/dbus-glib-tool.c: Include dbus-binding-tool-glib.h.
2767         (enum DBusBindingOutputMode): New enum for binding output modes.
2768         (pretty_print): Print binding names.
2769         (dbus_binding_tool_error_quark): GError bits.
2770         (version): Fix typo.
2771         (main): Create GIOChannel for output.  Parse new --mode argument,
2772         possible values are "pretty-print", "glib-server", "glib-client".
2773         Use mode to invoke appropriate function.
2774         
2775         * glib/dbus-gobject.h: Prototype dbus_glib_marshal_dbus_message_to_gvalue_array.
2776
2777         * glib/dbus-glib-tool.h: New header, just includes GError bits
2778         for now.
2779
2780         * glib/dbus-gidl.c (struct InterfaceInfo): Add bindings hashtable;
2781         maps binding style to name.
2782         (struct MethodInfo): Ditto.
2783         (get_hash_keys, get_hash_key): Utility function, returns keys for
2784         a GHashTable.
2785         (interface_info_new, method_info_new): Initialize bindings.
2786         (interface_info_unref, method_info_unref): Destroy bindings.
2787         (method_info_get_binding_names, method_info_get_binding_name)
2788         (interface_info_get_binding_names, interface_info_get_binding_name):
2789         Functions for retrieving binding names.
2790         (method_info_set_binding_name, interface_info_set_binding_name):
2791         Functions for setting binding names.
2792
2793         * glib/dbus-binding-tool-glib.h: New file, has prototypes
2794         for glib binding generation.
2795
2796         * glib/dbus-binding-tool-glib.c: New file, implements server-side
2797         and client-side glib glue generation.
2798
2799         * glib/Makefile.am (dbus_binding_tool_SOURCES): Add
2800         dbus-binding-tool-glib.c, dbus-binding-tool-glib.h,
2801         dbus-glib-tool.h.
2802
2803         * dbus/dbus-glib.h (struct DBusGMethodMarshaller): Remove in favor
2804         of using GClosureMarshal directly.
2805         (struct DBusGObjectInfo): Add n_infos member.
2806
2807         * test/glib/test-service-glib.xml: New file; contains introspection data
2808         for MyTestObject used in test-service-glib.c.
2809
2810         * test/glib/test-service-glib.c (enum MyObjectError): New GError enum.
2811         (my_object_do_nothing, my_object_increment, my_object_throw_error)
2812         (my_object_uppercase, my_object_many_args): New test methods.
2813         (main): Use dbus_g_object_class_install_info to include generated object
2814         info.
2815
2816         * test/glib/Makefile.am: Generate server-side glue for test-service-glib.c,
2817         as well as client-side bindings.
2818
2819         * test/glib/test-dbus-glib.c: Include test-service-glib-bindings.h.
2820         (main): Activate TestSuiteGLibService; test invoke a bunch of its methods
2821         using both the dbus_gproxy stuff directly as well as the generated bindings.
2822
2823 2005-02-15  Havoc Pennington  <hp@redhat.com>
2824
2825         * dbus/dbus-connection.c (dbus_connection_dispatch): always
2826         complete a pending call, don't run filters first.
2827
2828         * glib/dbus-gproxy.c (dbus_g_proxy_end_call): change to use
2829         dbus_pending_call_steal_reply
2830
2831         * dbus/dbus-pending-call.c (dbus_pending_call_block): just call
2832         _dbus_connection_block_pending_call
2833         (dbus_pending_call_get_reply): change to steal_reply and return a
2834         ref
2835
2836         * dbus/dbus-connection.c
2837         (dbus_connection_send_with_reply_and_block): port to work in terms
2838         of DBusPendingCall
2839         (_dbus_connection_block_pending_call): replace block_for_reply
2840         with this
2841
2842 2005-02-14  Havoc Pennington  <hp@redhat.com>
2843
2844         * dbus/dbus-userdb-util.c (_dbus_user_database_lookup_group):
2845         properly handle looking up group information by name; fix 
2846         from j@bootlab.org
2847
2848 2005-02-13  Havoc Pennington  <hp@redhat.com>
2849
2850         * dbus/dbus-connection.c (dbus_connection_return_message) 
2851         (dbus_connection_borrow_message): hold dispatch lock while message
2852         is outstanding
2853         (_dbus_connection_block_for_reply): hold dispatch lock while we
2854         block for the reply, so nobody steals our reply
2855         (dbus_connection_pop_message): hold the dispatch lock while we
2856         pluck the message
2857
2858 2005-02-13  Havoc Pennington  <hp@redhat.com>
2859
2860         * dbus/dbus-connection.c (_dbus_connection_acquire_dispatch)
2861         (_dbus_connection_release_dispatch)
2862         (_dbus_connection_acquire_io_path)
2863         (_dbus_connection_release_io_path): make the mutex and condvar
2864         control access to the "acquired" flag. Drop the connection lock
2865         while waiting on the condvar. Hopefully these are baby steps in
2866         roughly the right direction.
2867
2868 2005-02-13  Havoc Pennington  <hp@redhat.com>
2869
2870         * dbus/dbus-connection.c: use separate mutexes for the condition
2871         variables; this is some kind of baseline for sanity, but the
2872         condition variables still aren't used correctly afaict
2873
2874 2005-02-13  Havoc Pennington  <hp@redhat.com>
2875
2876         * dbus/dbus-object-tree.c (handle_default_introspect_and_unlock):
2877         fix a double-unlock
2878
2879         * dbus/dbus-connection.c
2880         (_dbus_connection_detach_pending_call_unlocked): add this
2881
2882         Initial semi-correct pass through to fix thread locking; there are
2883         still some issues with the condition variable paths I'm pretty
2884         sure
2885         
2886         * dbus/dbus-server.c: add a mutex on DBusServer and appropriate
2887         lock/unlock calls
2888
2889         * dbus/dbus-connection.c (_dbus_connection_do_iteration_unlocked):
2890         rename to add _unlocked
2891         (struct DBusConnection): move "dispatch_acquired" and
2892         "io_path_acquired" to use only one bit each.
2893         (CONNECTION_LOCK, CONNECTION_UNLOCK): add checks with !DBUS_DISABLE_CHECKS
2894         (dbus_connection_set_watch_functions): hacky fix to reentrancy
2895         (_dbus_connection_add_watch, _dbus_connection_remove_watch) 
2896         (_dbus_connection_toggle_watch, _dbus_connection_add_timeout) 
2897         (_dbus_connection_remove_timeout) 
2898         (_dbus_connection_toggle_timeout): drop lock when calling out to
2899         user functions; done in a hacky/bad way.
2900         (_dbus_connection_send_and_unlock): add a missing unlock
2901         (_dbus_connection_block_for_reply): add a missing unlock
2902
2903         * dbus/dbus-transport.c (_dbus_transport_get_is_authenticated):
2904         drop lock in a hacky probably unsafe way to call out to user
2905         function
2906
2907 2005-02-12  Havoc Pennington  <hp@redhat.com>
2908
2909         * tools/dbus-tree-view.c (info_set_func_text): display more
2910         details on args
2911
2912         * bus/driver.c (bus_driver_handle_list_services): list the bus
2913         driver
2914
2915         * glib/dbus-gparser.c (parse_arg): generate an arg name if none is supplied
2916
2917         * glib/dbus-gidl.c (signal_info_get_n_args): new function
2918         (method_info_get_n_args): new function
2919
2920 2005-02-12  Havoc Pennington  <hp@redhat.com>
2921
2922         * bus/driver.c (bus_driver_handle_introspect): add introspection
2923         for bus driver
2924
2925 2005-02-12  Havoc Pennington  <hp@redhat.com>
2926
2927         * bus/driver.c: put the signature of each bus driver method in the
2928         table of handlers and check it on incoming calls; this isn't
2929         really useful, but going to add introspect support in a minute.
2930
2931 2005-02-11  Joe Shaw  <joeshaw@novell.com>
2932
2933         * mono/Connection.cs: The unpredictability of finalizers in mono
2934         prevents us from deterministically disconnecting the filters from
2935         the Service class's finalizer, so move tracking of filters and
2936         matches here.  Add API for that.
2937
2938         * mono/Service.cs: Remove the code, add code which calls the
2939         methods now on the Connection class.
2940
2941 2005-02-11  John (J5) Palmieri  <johnp@redhat.com>
2942
2943         * python/dbus.py (class Sender): added to support dbus signals better
2944         (Bus::add_signal_receiver): added expand_args parameter which defaults
2945         to True.  When expand args is True the signal handler will pass the 
2946         message arguments as parameters to the signal handler.  If False
2947         revert to previous behavior where the signal handler must get the
2948         argument list from the message.  This is to help port applications
2949         like HAL that have a tendancy to send variable length argument lists.
2950         self._match_rule_to_receivers is now a dict of dicts.
2951         (Bus::remove_signal_receiver): pop handler off the dict intead of 
2952         removing it from a list
2953         (Bus::_signal_func): change signal handlers so that interface,
2954         signal_name, service, path and message are packed into a Sender
2955         object and that is passed to the handler.  If expand_args is True
2956         extract the args list from the message and append it to the parameter
2957         list
2958         
2959         * python/dbus_bindings.pyx.in (class Signature): added to support 
2960         signiature types
2961         (MessageIter::__init__): changed iteration limit to match D-BUS
2962         (MessageIter::get*): added INT16, UINT16, SIGNATURE, DICT_ENTRY, 
2963         STRUCT and VARIENT type support
2964         (MessageIter::python_value_to_dbus_sig): made recursive to support
2965         recursive types
2966         (MessageIter::append*): added Signature, dict, tuple 
2967         support
2968
2969         * python/examples/example-client.py: added examples of getting tuples
2970         and dicts
2971
2972         * python/examples/example-service.py: added examples of sending tuples
2973         and dicts
2974
2975         * python/examples/example-signal-recipient.py: Fixed to handle new
2976         signal callback format
2977
2978 2005-02-10  Havoc Pennington  <hp@redhat.com>
2979
2980         * test/glib/test-dbus-glib.c (main): fix so this test doesn't fail
2981         (call dbus_g_proxy_add_signal)
2982
2983         * dbus/dbus-server-unix.c (_dbus_server_new_for_tcp_socket):
2984         escape the hostname
2985         (_dbus_server_new_for_domain_socket): escape the path
2986
2987         * dbus/dbus-address.c (dbus_address_escape_value): new
2988         (dbus_address_unescape_value): new
2989         (dbus_parse_address): unescape values
2990
2991         * dbus/dbus-string.c (_dbus_string_append_byte_as_hex): new function
2992
2993         * doc/dbus-specification.xml: explain how to escape values in
2994         addresses
2995
2996 2005-02-10  Havoc Pennington  <hp@redhat.com>
2997
2998         * dbus/dbus-message-factory.c (generate_special): modify test to
2999         avoid using a non-basic dict key
3000
3001         * dbus/dbus-marshal-validate-util.c: add test for the below
3002
3003         * doc/dbus-specification.xml: require that dict keys are a basic
3004         type
3005
3006         * dbus/dbus-marshal-validate.c
3007         (_dbus_validate_signature_with_reason): require that dict key is a
3008         basic type
3009
3010 2005-02-10  Havoc Pennington  <hp@redhat.com>
3011
3012         * dbus/dbus-object-tree.c (handle_default_introspect_and_unlock):
3013         change to be _and_unlock instead of _unlocked
3014
3015         * dbus/dbus-connection.c
3016         (_dbus_connection_send_preallocated_unlocked_no_update): rename to
3017         have no_update so we can find this bug quickly in future
3018
3019 2005-02-10  Havoc Pennington  <hp@redhat.com>
3020
3021         * dbus/dbus-message-util.c (verify_test_message): tests for string
3022         array
3023
3024         * dbus/dbus-message.c (dbus_message_append_args_valist): add
3025         support for arrays of string/signature/path
3026
3027 2005-02-10  Joe Shaw  <joeshaw@novell.com>
3028
3029         * dbus/dbus-connection.c
3030         (_dbus_connection_queue_received_message_link,
3031         _dbus_connection_message_sent): Add the path to
3032         the verbose output.
3033         (_dbus_connection_send_preallocated_and_unlock): Added.  Calls
3034         _dbus_connection_send_preallocated_unlocked(), updated the
3035         dispatch status, and unlocks.  Fixes a bug where certain
3036         situations (like a broken pipe) could cause a Disconnect message
3037         to not be sent, tricking the bus into thinking a service was still
3038         there when the process had quit.
3039         (_dbus_connection_send_preallocated): Call
3040         _dbus_connection_send_preallocated_and_unlock().
3041         (_dbus_connection_send_and_unlock): Added.  Calls
3042         _dbus_connection_send_preallocated_and_unlock().
3043         (dbus_connection_send): Call _dbus_connection_send_and_unlock().
3044         (dbus_connection_send_with_reply): Update the dispatch status and
3045         unlock.
3046
3047         * mono/Service.cs (~Service): Added.  Removes the filter so that
3048         we don't get unmanaged code calling back into a GCed delegate.
3049         (RemoveFilter); Added.
3050
3051 2005-02-09  John (J5) Palmieri  <johnp@redhat.com>
3052
3053         * dbus/dbus-message.c (dbus_message_iter_open_container):
3054         - Removed check for iterator type being an array because
3055         get_arg_type does not work with writer iterators
3056         - Pass NULL to _dbus_type_writer_recurse if signiture is NULL
3057
3058 2005-02-07  Havoc Pennington  <hp@redhat.com>
3059
3060         * doc/dbus-specification.xml: some more language cleanups; add
3061         stuff about how to deal with invalid protocol and extension
3062         points; add _ to allowed chars in auth commands; add EXTENSION_
3063         auth command prefix
3064
3065 2005-02-06  Havoc Pennington  <hp@redhat.com>
3066
3067         * s/expected/required/ in a couple places for clarity
3068
3069 2005-02-07  Colin Walters  <walters@verbum.org>
3070
3071         * bus/selinux.c (bus_selinux_allows_send): Handle NULL for
3072         sender or proposed_recipient.
3073
3074 2005-02-06  Havoc Pennington  <hp@redhat.com>
3075
3076         * dbus/dbus-message-factory.c (generate_special): more tests
3077
3078         * dbus/dbus-marshal-validate.c (validate_body_helper): detect
3079         array length that exceeds the maximum
3080
3081 2005-02-05  Havoc Pennington  <hp@redhat.com>
3082
3083         * dbus/dbus-message-factory.c (generate_special): more test cases,
3084         increasing coverage
3085
3086         * dbus/dbus-marshal-validate.c (validate_body_helper): return the
3087         reason why a signature was invalid
3088
3089         * dbus/dbus-marshal-header.c (load_and_validate_field): fix to
3090         skip the length of the string before we look at it in validation
3091
3092         * dbus/dbus-string-util.c (_dbus_string_test): add tests for
3093         equal_substring
3094
3095         * dbus/dbus-message.c (_dbus_message_loader_new): default
3096         max_message_length to DBUS_MAXIMUM_MESSAGE_LENGTH
3097
3098 2005-02-05  Havoc Pennington  <hp@redhat.com>
3099
3100         * dbus/dbus-marshal-validate.c (validate_body_helper): fix crash
3101         if the signature of a variant was empty
3102         (_dbus_validate_signature_with_reason): catch "(a)" (array inside
3103         struct with no element type)
3104
3105         * dbus/dbus-message-factory.c (generate_uint32_changed): add more
3106         mangled messages to break things
3107
3108 2005-02-04  Havoc Pennington  <hp@redhat.com>
3109
3110         * glib/dbus-gproxy.c (dbus_g_proxy_disconnect_signal): use
3111         g_quark_try_string() so it actually can return 0
3112         (dbus_g_proxy_connect_signal): ditto
3113
3114 2005-02-04  Havoc Pennington  <hp@redhat.com>
3115
3116         * glib/dbus-gproxy.c (dbus_g_proxy_emit_remote_signal): fix a
3117         bogus warning
3118         (tristring_from_message): assert cleanly on null path/interface
3119         (should not be possible though I decided later)
3120         (dbus_g_proxy_dispose): move proxy manager unregistration here
3121         (DBUS_G_PROXY_DESTROYED): add this macro, and use it in a bunch of
3122         g_return_if_fail() checks
3123
3124 2005-02-04  Havoc Pennington  <hp@redhat.com>
3125
3126         * doc/Makefile.am (EXTRA_DIST): add DTDs to makefile
3127
3128         * doc/introspect.dtd: add introspect.dtd from David A. Wheeler
3129         (with some minor changes)
3130
3131         * doc/dbus-specification.xml: add deprecated attribute to
3132         introspection format
3133
3134 2005-01-31  Havoc Pennington  <hp@redhat.com>
3135
3136         * glib/dbus-gproxy.c: rewrite how signals work again, this time I
3137         think it's sort of right
3138
3139 2005-01-30  Havoc Pennington  <hp@redhat.com>
3140
3141         * tools/dbus-viewer.c: kind of half-ass hook up the option menu.
3142
3143 2005-01-30  Havoc Pennington  <hp@redhat.com>
3144
3145         * tools/dbus-names-model.c: dynamically watch NameOwnerChanged
3146
3147         * autogen.sh: change to autotools 1.9
3148
3149         * glib/dbus-gproxy.c: completely change how signals work
3150         (dbus_g_proxy_add_signal): new function to specify signature of a
3151         signal
3152         (dbus_g_proxy_emit_received): marshal the dbus message to GValues,
3153         and g_warning if the incoming message has the wrong signature.
3154
3155 2005-01-30  Havoc Pennington  <hp@redhat.com>
3156
3157         * tools/dbus-names-model.c (have_names_notify): fix this
3158
3159         * dbus/dbus-message.c (_dbus_message_iter_get_args_valist): clean
3160         up the string array handling a bit 
3161
3162 2005-01-30  Havoc Pennington  <hp@redhat.com>
3163
3164         * glib/dbus-glib.c (dbus_g_pending_call_set_notify): new function
3165         (dbus_g_pending_call_cancel): new function
3166
3167         * dbus/dbus-glib.h: move GType decls for connection/message here;
3168         * dbus/dbus-glib.c: move all the g_type and ref/unref stuff in
3169         here, just kind of rationalizing how we handle all that
3170
3171         * tools/dbus-names-model.c: new file for a tree model listing the
3172         services on a bus
3173
3174         * tools/dbus-tree-view.c (model_new): use proper typing on the
3175         model rows
3176
3177 2005-01-30  Havoc Pennington  <hp@redhat.com>
3178
3179         * glib/dbus-gmain.c: add a custom GSource back that just checks
3180         whether the message queue has anything in it; otherwise, there are 
3181         cases where we won't see messages in the queue since there was no 
3182         IO visible to the glib main loop
3183
3184         * dbus/dbus-connection-internal.h (_DBUS_DEFAULT_TIMEOUT_VALUE):
3185         increase default message timeout to 25 seconds
3186
3187 2005-01-30  Havoc Pennington  <hp@redhat.com>
3188
3189         * test/glib/test-profile.c (no_bus_stop_server): remove the
3190         warning about the g_warning that I just fixed
3191
3192         * glib/dbus-gmain.c: rewrite the main loop stuff to avoid the
3193         custom source, seems to be a lot easier to understand and work
3194         better.
3195
3196 2005-01-30  Havoc Pennington  <hp@redhat.com>
3197
3198         I think this main loop thing is conceptually broken, but here are 
3199         some band aids. I'll maybe rewrite it in a minute.
3200         
3201         * glib/dbus-gmain.c (add_timeout): timeout stuff doesn't use the
3202         custom GSource, so don't pass it in; confusing
3203         (gsource_server_finalize, gsource_connection_finalize): add
3204         finalize handlers that remove all the watches.  
3205
3206 2005-01-30  Havoc Pennington  <hp@redhat.com>
3207
3208         * glib/dbus-gobject.c (introspect_properties): fix the XML
3209         generated
3210
3211         * dbus/dbus-message.c (dbus_message_unref): add an in_cache flag
3212         which effectively detects the use of freed messages
3213
3214         * glib/dbus-gobject.c (handle_introspect): modify and return the
3215         reply message instead of the incoming message
3216
3217         * dbus/dbus-object-tree.c (handle_default_introspect_unlocked):
3218         gee, maybe it should SEND THE XML instead of just making a string
3219         and freeing it again ;-)
3220
3221         * tools/dbus-print-message.c (print_message): improve printing of
3222         messages
3223
3224         * configure.in: add debug-glib.service to the output
3225
3226 2005-01-30  Havoc Pennington  <hp@redhat.com>
3227
3228         dbus-viewer introspected and displayed the bus driver
3229         
3230         * dbus/dbus-object-tree.c 
3231         (object_tree_test_iteration): add tests for a handler registered on "/"
3232
3233         * dbus/dbus-object-tree.c
3234         (_dbus_decompose_path): fix to handle path "/" properly
3235         (run_decompose_tests): add tests for path decomposition
3236         
3237         * glib/dbus-gutils.c (_dbus_gutils_split_path): fix to handle "/"
3238         properly
3239
3240         * glib/dbus-gobject.c (handle_introspect): fix quotes
3241
3242         * test/glib/run-test.sh: support launching the bus, then running
3243         dbus-viewer
3244
3245         * test/glib/test-service-glib.c (main): put in a trivial gobject
3246         subclass and register it on the connection
3247
3248         * bus/driver.c (bus_driver_handle_introspect): implement
3249         introspection of the bus driver service
3250
3251         * dbus/dbus-protocol.h: add #defines for the XML namespace,
3252         identifiers, doctype decl
3253
3254         * bus/driver.c (bus_driver_handle_get_service_owner): handle
3255         attempts to get owner of DBUS_SERVICE_ORG_FREEDESKTOP_DBUS by 
3256         returning the service unchanged.
3257         (bus_driver_handle_message): remove old check for reply_serial in
3258         method calls, now the message type deals with that
3259         (bus_driver_handle_message): handle NULL interface
3260
3261         * glib/dbus-gproxy.c (dbus_g_proxy_get_bus_name): new function
3262
3263         * glib/dbus-gloader-expat.c (description_load_from_string): allow
3264         -1 for len
3265
3266         * tools/dbus-viewer.c: add support for introspecting a service on
3267         a bus
3268
3269         * glib/dbus-gproxy.c (dbus_g_pending_call_ref): add
3270         (dbus_g_pending_call_unref): add
3271
3272 2005-01-29  Havoc Pennington  <hp@redhat.com>
3273
3274         * tools/dbus-tree-view.c: add support for displaying properties.
3275         (run dbus-viewer with an introspect xml file as arg, then resize
3276         the window so the tree elements show up, not sure what that is)
3277
3278         * glib/dbus-gobject.c (handle_introspect): return
3279         org.freedesktop.Properties and org.freedesktop.Introspectable
3280         interfaces when we are introspected.
3281
3282         * doc/dbus-specification.xml: allow empty interface name when 
3283         Get/Set a property
3284
3285 2005-01-29  Havoc Pennington  <hp@redhat.com>
3286
3287         * glib/Makefile.am: rename dbus-glib-tool to dbus-binding-tool;
3288         though it uses glib, it could be extended for any binding in
3289         principle
3290
3291         * glib/dbus-gobject.c (gobject_message_function): change to the
3292         new way properties work
3293
3294         * dbus/dbus-protocol.h: add the new interfaces
3295
3296         * doc/dbus-specification.xml: document the introspection format,
3297         Introspectable interface, and add an org.freedesktop.Properties
3298         interface.
3299
3300         * glib/dbus-gparser.c: add support for a <property> element
3301
3302         * glib/dbus-gidl.c: add PropertyInfo
3303
3304         * glib/dbus-gobject.c (handle_introspect): put the outermost
3305         <node> outside the signal and property descriptions.
3306         (introspect_properties): export properties as <property> rather
3307         than as method calls
3308
3309 2005-01-28  Havoc Pennington  <hp@redhat.com>
3310
3311         * doc/TODO, doc/dbus-specification.xml: spec and TODO tweaks
3312         related to authentication protocol
3313
3314 2005-01-28  John (J5) Palmieri  <johnp@redhat.com>
3315
3316         * python/dbus_bindings.pyx.in: Updated to handle new D-BUS type system
3317                 - BUS_ACTIVATION -> BUS_STARTER
3318                 - DBUS_BUS_ACTIVATION -> DBUS_BUS_STARTER
3319                 - class MessageIter (__init__): Added recursion checking 
3320                 so we throw a nice error instead of just disconnecting from the
3321                 bus.
3322                 (get): Added arg_type parameter for recursion.
3323                 Removed the nil type
3324                 Added signiture type placeholder (not implemented)
3325                 Added struct type placeholder (not implemented)
3326                 Added varient type placeholder (not implemented)
3327                 Commented out dict type for now     
3328                 (get_element_type): renamed from get_array_type
3329                 (get_*): changed to use the dbus_message_iter_get_basic API
3330                 (get_*_array): removed in favor of recursive get_array method
3331                 (get_array): new recursive method which calls get to marshal
3332                 the elements of the array
3333                 (value_to_dbus_sig): New method returns the corrasponding
3334                 dbus signiture to a python value
3335                 (append): Comment out dict handling for now
3336                 Handle lists with the new recursive API
3337                 Comment out None handling for now
3338                 (append_nil): removed
3339                 (append_*): changed to use dbus_message_iter_append_basic API
3340                 (append_*_array): removed in favor of recursive append_array 
3341                 method
3342                 (__str__): Make it easier to print out recursive iterators
3343                 for debugging
3344                 - class Message (__str__): moved type inspection to the
3345                 MessageIter class' __str__ method
3346                 (get_iter): Added an append parameter wich defaults to False
3347                 If True use the new API's to create an append iterator
3348
3349         * python/dbus.py: Update to use new bindings API
3350                 - TYPE_ACTIVATION -> TYPE_STARTER
3351                 - class Bus (_get_match_rule): GetServiceOwner -> GetNameOwner
3352                 - class ActivationBus -> class StarterBus
3353                 - class RemoteObject (__call__): get an append iterator
3354                 - (_dispatch_dbus_method_call): get an append iterator
3355                 - class Object (emit_signal): get an append iterator
3356
3357         * python/examples/: Fixed up the examples to work with the new API
3358                 
3359 2005-01-28  Joe Shaw  <joeshaw@novell.com>
3360
3361         * configure.in: Bump version up to 0.30.
3362
3363         * HACKING: Add a release item to bump the version number up after 
3364         a release.
3365
3366 2005-01-28  Havoc Pennington  <hp@redhat.com>
3367
3368         * doc/dbus-specification.xml: update to describe 16-bit types and
3369         dict entries
3370
3371         * dbus/dbus-marshal-basic.c (_dbus_unpack_uint16): fix broken
3372         assertion
3373
3374         * dbus/dbus-protocol.h (DBUS_TYPE_DICT_ENTRY): add DICT_ENTRY as a
3375         type
3376
3377         * dbus/dbus-marshal-recursive.c: implement
3378
3379 2005-01-27  Havoc Pennington  <hp@redhat.com>
3380
3381         * dbus/dbus-arch-deps.h.in: add 16/32-bit types
3382
3383         * configure.in: find the right type for 16 and 32 bit ints as well
3384         as 64
3385
3386         * dbus/dbus-protocol.h (DBUS_TYPE_INT16, DBUS_TYPE_UINT16): add
3387         the 16-bit types so people don't have to stuff them in 32-bit or
3388         byte arrays.
3389
3390 2005-01-27  Havoc Pennington  <hp@redhat.com>
3391
3392         * dbus/dbus-message.c: byteswap the message if you init an
3393         iterator to read/write from it
3394         
3395         * dbus/dbus-marshal-byteswap.c: new file implementing 
3396         _dbus_marshal_byteswap()
3397
3398         * dbus/dbus-marshal-basic.c: add _dbus_swap_array()
3399
3400 2005-01-26  Havoc Pennington  <hp@redhat.com>
3401         
3402         * dbus/dbus-marshal-validate-util.c: break this out (and fix
3403         build, apparently - nobody noticed?)
3404         
3405 2005-01-26  Havoc Pennington  <hp@redhat.com>
3406
3407         * dbus/dbus-marshal-recursive.h: remove todo comment
3408
3409 2005-01-25  Joe Shaw  <joeshaw@novell.com>
3410
3411         * Land the mono binding changes to conform to the new APIs.
3412
3413         * mono/Makefile.am: Remove Custom.cs, DBusType/Custom.cs,
3414         DBusType/Dict.cs, and DBusType/Nil.cs from the build.
3415
3416         * mono/Arguments.cs (GetCodeAsString): Added.  Returns the dbus
3417         type code as a string.
3418         (InitAppending): Rename dbus_message_append_iter_init() to
3419         dbus_message_iter_init_append().
3420
3421         * mono/BusDriver.cs: Rename ServiceEventHandler to
3422         NameOwnerChangedHandler.  Rename GetServiceOwner to GetOwner.
3423         Rename ServiceOwnerChanged to NameOwnerChanged.
3424
3425         * mono/Connection.cs: Rename BaseService to UniqueName, and the
3426         underlying C call.
3427
3428         * mono/Custom.cs: Removed.  The CUSTOM type has been removed.
3429
3430         * mono/Service.cs: Rename Exists to HasOwner, internally rename
3431         dbus_bus_acquire_service() to dbus_bus_request_name().
3432
3433         * mono/DBusType/Array.cs (ctor): Use Type.GetElementType() instead
3434         of Type.UnderlyingSystemType to get the correct element type for
3435         the array.
3436         (ctor): Update code for new APIs: use dbus_message_iter_recurse(),
3437         dbus_message_get_{element|arg}_type() instead of
3438         dbus_message_iter_init_array_iterator().
3439         (Append): Replace dbus_message_iter_append_array() with
3440         dbus_message_iter_open_container() and
3441         dbus_message_iter_close_container().
3442
3443         * mono/DBusType/Custom.cs, mono/DBusType/Nil.cs: Removed.  These
3444         types have been removed.
3445         
3446         * mono/DBusType/*.cs: Replace calls of
3447         dbus_message_iter_get_[type]() to dbus_message_iter_get_basic(),
3448         but specify the type in the DllImport extern declaration.  Ditto
3449         for dbus_message_iter_append_[type]() ->
3450         dbus_message_iter_append_basic().
3451
3452         * mono/example/BusListener.cs: Update for ServiceEventHandler ->
3453         NameOwnerChangedHandler.
3454
3455 2005-01-25  John (J5) Palmieri  <johnp@redhat.com>
3456
3457         * python/dbus_bindings.pyx.in: Rename of methods and bindings
3458                 - get_base_service -> get_unique_name
3459                 - bus_get_base_service -> bus_get_unique_name
3460                 - dbus_bus_get_base_service -> dbus_bus_get_unique_name
3461                 - ACTIVATION_REPLY_ACTIVATED -> DBUS_START_REPLY_SUCCESS 
3462                 - ACTIVATION_REPLY_ALREADY_ACTIVE -> DBUS_START_REPLY_ALREADY_RUNNING
3463                 - bus_activate_service -> bus_start_service_by_name
3464                 - dbus_bus_activate_service -> dbus_bus_start_service_by_name
3465                 - bus_acquire_service -> bus_request_name
3466                 - dbus_bus_acquire_service -> dbus_bus_request_name
3467                 - bus_service_exists -> bus_name_has_owner
3468                 - dbus_bus_service_exists -> dbus_bus_name_has_owner
3469
3470         * python/dbus.py: Rename of methods
3471                 - activate_service -> start_service_by_name
3472                 - bus_acquire_service -> bus_request_name
3473                 - ACTIVATION_REPLY_ACTIVATED -> START_REPLY_SUCCESS 
3474                 - ACTIVATION_REPLY_ALREADY_ACTIVE -> START_REPLY_ALREADY_RUNNING
3475
3476         
3477 2005-01-24  Joe Shaw  <joeshaw@novell.com>
3478
3479         * dbus/dbus-connection.c (dbus_connection_dispatch): Print out the
3480         signature for the method that can't be found.
3481
3482         * dbus/dbus-message.c (dbus_message_iter_init): To check to see if
3483         the message has any arguments, we need to call
3484         _dbus_type_reader_get_current_type(), not
3485         _dbus_type_reader_has_next().
3486
3487 2005-01-24  Havoc Pennington  <hp@redhat.com>
3488
3489         * dbus/dbus-message-factory.c: more testing of message validation
3490
3491         * dbus/dbus-protocol.h (DBUS_MINIMUM_HEADER_SIZE): move to this
3492         header
3493
3494 2005-01-23  Havoc Pennington  <hp@redhat.com>
3495
3496         * dbus/dbus-message-factory.c, dbus/dbus-message-util.c: 
3497         get this all working, not many tests in the framework yet though
3498
3499 2005-01-22  Havoc Pennington  <hp@redhat.com>
3500
3501         * doc/dbus-faq.xml, doc/dbus-tutorial: add a FAQ and update
3502         tutorial, based on work from David Wheeler.
3503
3504 2005-01-21  Havoc Pennington  <hp@redhat.com>
3505
3506         * dbus/dbus-bus.c: add more return_if_fail checks
3507
3508         * dbus/dbus-message.c (load_message): have the "no validation"
3509         mode (have to edit the code to toggle the mode for now though)
3510
3511         * dbus/dbus-marshal-header.c (_dbus_header_load): have a mode that
3512         skips all validation; I want to use this at least for benchmark
3513         baseline, I'm not sure if it should be a publicly-available switch.
3514
3515 2005-01-21  Havoc Pennington  <hp@redhat.com>
3516
3517         * glib/dbus-gmain.c: don't put the GLib bindings in the same
3518         toplevel doxygen group as the low-level API stuff
3519
3520         * dbus/dbus.h: note that libdbus is the low-level API
3521
3522 2005-01-20  Havoc Pennington  <hp@redhat.com>
3523
3524         * update-dbus-docs.sh: script to update docs on the web site, only
3525         works for me though. neener.
3526
3527 2005-01-20  Havoc Pennington  <hp@redhat.com>
3528
3529         * dbus/dbus-sysdeps.c (_dbus_poll): amazingly, trying to compile
3530         code can reveal bugs in it
3531
3532 2005-01-20  Havoc Pennington  <hp@redhat.com>
3533
3534         * dbus/dbus-sysdeps.c (_dbus_poll): fix several bugs in the
3535         select() version, patches from Tor Lillqvist
3536
3537 2005-01-20  Havoc Pennington  <hp@redhat.com>
3538
3539         * doc/dbus-tutorial.xml: replace > with &gt;
3540
3541         * bus/services.c (bus_registry_acquire_service): validate the name
3542         and return a better error if it's no good.
3543
3544         * doc/dbus-specification.xml: note NO_AUTO_START change
3545
3546         * dbus/dbus-protocol.h (DBUS_HEADER_FLAG_NO_AUTO_START): change
3547         from AUTO_START, we're toggling the default
3548
3549         * bus/dispatch.c: adapt the tests to change of auto-start default
3550
3551 2005-01-18  Havoc Pennington  <hp@redhat.com>
3552
3553         * rename dbus-daemon-1 to dbus-daemon throughout
3554
3555 2005-01-18  Havoc Pennington  <hp@redhat.com>
3556
3557         * Throughout, grand renaming to strip out the use of "service",
3558         just say "name" instead (or "bus name" when ambiguous).  Did not
3559         change the internal code of the message bus itself, only the
3560         programmer-facing API and messages.
3561         
3562         * doc/dbus-specification.xml: further update the message bus section
3563         
3564         * bus/config-parser.c (all_are_equiv): fix bug using freed string
3565         in error case
3566
3567 2005-01-17  Havoc Pennington  <hp@redhat.com>
3568
3569         * dbus/dbus-types.h: remove 16-bit types since we don't use them
3570         ever
3571
3572         * dbus/dbus-marshal-validate.c (_dbus_validate_path): disallow any
3573         "invalid name character" not only non-ASCII
3574
3575         * doc/dbus-specification.xml: further update spec, message bus 
3576         parts are still out-of-date but the marshaling etc. stuff is now
3577         accurate-ish
3578
3579 2005-01-17  Havoc Pennington  <hp@redhat.com>
3580
3581         * doc/dbus-specification.xml: partially update spec
3582
3583 2005-01-17  Havoc Pennington  <hp@redhat.com>
3584
3585         * Throughout, align variant bodies according to the contained
3586         type, rather than always to 8. Should save a fair bit of space in
3587         message headers.
3588         
3589         * dbus/dbus-marshal-validate.c (_dbus_validate_body_with_reason):
3590         fix handling of case where p == end
3591
3592         * doc/TODO: remove the dbus_bool_t item and variant alignment items
3593
3594 2005-01-17  Havoc Pennington  <hp@redhat.com>
3595
3596         * dbus/dbus-types.h: hardcode dbus_bool_t to 32 bits
3597
3598         * Throughout: modify DBUS_TYPE_BOOLEAN to be a 32-bit type instead
3599         of an 8-bit type. Now dbus_bool_t is the type to use whenever you 
3600         are marshaling/unmarshaling a boolean.
3601
3602 2005-01-16  Havoc Pennington  <hp@redhat.com>
3603
3604         This is about it on what can be disabled/deleted from libdbus
3605         easily, back below 150K anyhow. Deeper cuts are more work than 
3606         just turning the code off as I've done here.
3607         
3608         * dbus/dbus-marshal-basic.c (_dbus_pack_int32): we don't need the
3609         signed int convenience funcs
3610
3611         * dbus/dbus-internals.c (_dbus_verbose_real): omit when not in
3612         verbose mode
3613
3614         * dbus/dbus-string-util.c, dbus/dbus-string.c: more breaking
3615         things out of libdbus
3616
3617         * dbus/dbus-sysdeps.c, dbus/dbus-sysdeps-util.c: same
3618         
3619         * dbus/dbus-hash.c: purge the TWO_STRINGS crap (well, make it
3620         tests-enabled-only, though it should probably be deleted)
3621
3622         * dbus/dbus-message-util.c: same stuff
3623
3624         * dbus/dbus-auth-util.c: same stuff
3625
3626 2005-01-16  Havoc Pennington  <hp@redhat.com>
3627
3628         * dbus/dbus-userdb-util.c: split out part of dbus-userdb.c
3629
3630         * dbus/dbus-sysdeps.c (_dbus_uid_from_string): move here to pave
3631         way for stripping down dbus-userdb.c stuff included in libdbus.
3632         Rename _dbus_parse_uid for consistency.
3633
3634 2005-01-16  Havoc Pennington  <hp@redhat.com>
3635
3636         * dbus/dbus-internals.c (_dbus_real_assert): print the function
3637         name the assertion failed in
3638
3639         * dbus/dbus-internals.h (_dbus_return_if_fail) 
3640         (_dbus_return_val_if_fail): assert that the name of the function
3641         containing the check doesn't start with '_', since we only want to 
3642         use checks on public functions
3643         
3644         * dbus/dbus-connection.c (_dbus_connection_ref_unlocked): change
3645         checks to assertions
3646
3647         * dbus/dbus-marshal-header.c (_dbus_header_set_field_basic):
3648         change checks to asserts for private function
3649
3650         * dbus/dbus-message.c (_dbus_message_set_serial): checks
3651         to asserts for private function
3652
3653         * dbus/dbus-marshal-recursive.c (skip_one_complete_type): remove
3654         broken assertion that was breaking make check
3655         (_dbus_type_reader_array_is_empty): remove this rather than fix
3656         it, was only used in assertions
3657
3658 2005-01-16  Havoc Pennington  <hp@redhat.com>
3659
3660         * test/unused-code-gc.py: hacky script to find code that's used
3661         only by the bus (not libdbus) or used only by tests or not used at
3662         all. It has some false alarms, but looks like we can clean up a
3663         lot of size from libdbus.
3664
3665         * dbus/dbus-sysdeps.c, dbus/dbus-sysdeps-utils.c,
3666         dbus/Makefile.am: initially move 10K of binary size out of libdbus
3667         
3668 2005-01-16  Havoc Pennington  <hp@redhat.com>
3669
3670         * Add and fix docs according to Doxygen warnings throughout
3671         source.
3672         
3673         * dbus/dbus-marshal-recursive.c
3674         (_dbus_type_reader_array_is_empty): change this to just call
3675         array_reader_get_array_len() and make it static
3676
3677         * dbus/dbus-message.c (dbus_message_iter_get_element_type): rename
3678         from get_array_type
3679         (dbus_message_iter_init_append): rename from append_iter_init
3680
3681         * dbus/dbus-marshal-recursive.c
3682         (_dbus_type_reader_get_element_type): rename from
3683         _dbus_type_reader_get_array_type
3684
3685 2005-01-15  Havoc Pennington  <hp@redhat.com>
3686
3687         * test/glib/test-profile.c (with_bus_server_filter): fix crash
3688
3689         * dbus/dbus-marshal-basic.c (_dbus_unpack_uint32): inline as macro
3690         when DBUS_DISABLE_ASSERT
3691         (_dbus_marshal_set_basic): be sure we align for the string length
3692
3693         * dbus/dbus-marshal-recursive.c (skip_one_complete_type): make
3694         this look faster
3695
3696         * dbus/dbus-string.c (_dbus_string_get_const_data_len): add an
3697         inline macro version
3698         (_dbus_string_set_byte): provide inline macro version
3699
3700 2005-01-15  Havoc Pennington  <hp@redhat.com>
3701
3702         * Land the new message args API and type system.
3703
3704         This patch is huge, but the public API change is not 
3705         really large. The set of D-BUS types has changed somewhat, 
3706         and the arg "getters" are more geared toward language bindings;
3707         they don't make a copy, etc.
3708
3709         There are also some known issues. See these emails for details
3710         on this huge patch:
3711         http://lists.freedesktop.org/archives/dbus/2004-December/001836.html
3712         http://lists.freedesktop.org/archives/dbus/2005-January/001922.html
3713         
3714         * dbus/dbus-marshal-*: all the new stuff
3715
3716         * dbus/dbus-message.c: basically rewritten
3717
3718         * dbus/dbus-memory.c (check_guards): with "guards" enabled, init
3719         freed blocks to be all non-nul bytes so using freed memory is less
3720         likely to work right
3721
3722         * dbus/dbus-internals.c (_dbus_test_oom_handling): add
3723         DBUS_FAIL_MALLOC=N environment variable, so you can do
3724         DBUS_FAIL_MALLOC=0 to skip the out-of-memory checking, or
3725         DBUS_FAIL_MALLOC=10 to make it really, really, really slow and
3726         thorough.
3727
3728         * qt/message.cpp: port to the new message args API
3729         (operator<<): use str.utf8() rather than str.unicode()
3730         (pretty sure this is right from the Qt docs?)
3731
3732         * glib/dbus-gvalue.c: port to the new message args API
3733
3734         * bus/dispatch.c, bus/driver.c: port to the new message args API
3735
3736         * dbus/dbus-string.c (_dbus_string_init_const_len): initialize the
3737         "locked" flag to TRUE and align_offset to 0; I guess we never
3738         looked at these anyhow, but seems cleaner.
3739
3740         * dbus/dbus-string.h (_DBUS_STRING_ALLOCATION_PADDING):
3741         move allocation padding macro to this header; use it to implement
3742         (_DBUS_STRING_STATIC): ability to declare a static string.
3743
3744         * dbus/dbus-message.c (_dbus_message_has_type_interface_member):
3745         change to return TRUE if the interface is not set.
3746
3747         * dbus/dbus-string.[hc]: move the D-BUS specific validation stuff
3748         to dbus-marshal-validate.[hc]
3749
3750         * dbus/dbus-marshal-basic.c (_dbus_type_to_string): move here from
3751         dbus-internals.c
3752
3753         * dbus/Makefile.am: cut over from dbus-marshal.[hc]
3754         to dbus-marshal-*.[hc]
3755
3756         * dbus/dbus-object-tree.c (_dbus_decompose_path): move this
3757         function here from dbus-marshal.c
3758
3759 2005-01-12  Joe Shaw  <joeshaw@novell.com>
3760
3761         * NEWS: Update for 0.23.
3762
3763         * configure.in: Release 0.23.
3764
3765 2005-01-12  Joe Shaw  <joeshaw@novell.com>
3766
3767         * mono/Makefile.am, mono/example/Makefile.am: Always build the 
3768         dbus DLL with --debug.  Clean up after the .mdb files this leaves
3769         behind.
3770
3771         * mono/doc/Makefile.am: Need to uninstall the docs on "make
3772         uninstall"
3773
3774         * mono/Arguments.cs (GetDBusTypeConstructor): If the type
3775         is an enum, get the enum's underlying type.  Another mono
3776         1.1.3 fix.
3777
3778 2005-01-11  Joe Shaw  <joeshaw@novell.com>
3779
3780         Patch from Sjoerd Simons <sjoerd@luon.net>
3781
3782         * mono/Makefile.am, mono/example/Makefile.am: Don't redefine
3783         DESTDIR.  It breaks stuff.
3784
3785 2005-01-11  Joe Shaw  <joeshaw@novell.com>
3786
3787         Patch from Tambet Ingo <tambet@ximian.com>
3788
3789         * mono/DBusType/Array.cs (Get): Get the underlying element type by
3790         calling type.GetElementType().  The code previously depended on
3791         broken Mono behavior, which was fixed in Mono 1.1.3.
3792
3793         * mono/DBusType/Dict.cs (constructor): Fix the parameters for
3794         Activator.CreateInstance() so that the class's constructor is
3795         called with the right parameters.
3796
3797 2005-01-11  Joe Shaw  <joeshaw@novell.com>
3798
3799         Patch from Timo Teräs <ext-timo.teras@nokia.com>
3800
3801         * dbus/dbus-connection.c
3802         (_dbus_connection_queue_received_message_link): Call
3803         _dbus_connection_remove_timeout() instead of the _locked()
3804         variant, since it's always called from
3805         _dbus_connection_handle_watch(), which handles the locking.
3806         Removed the _locked() variant since it's no longer used.
3807
3808 2005-01-03  Havoc Pennington  <hp@redhat.com>
3809
3810         * dbus/dbus-internals.h: I'm an idiot, _dbus_assert certainly can
3811         return
3812         
3813 2004-12-26  Havoc Pennington  <hp@redhat.com>
3814
3815         * dbus/dbus-internals.h: add _DBUS_GNUC_NORETURN to _dbus_assert
3816
3817 2005-01-03  Havoc Pennington  <hp@redhat.com>
3818
3819         * dbus/dbus-sysdeps.c (_dbus_sysdeps_test): fix using == on
3820         floating point
3821
3822         * dbus/dbus-string.c (_dbus_string_insert_alignment): new function
3823
3824 2005-01-02  Havoc Pennington  <hp@redhat.com>
3825
3826         * dbus/dbus-internals.h (_DBUS_ALIGN_OFFSET): new macro
3827
3828 2005-01-01  Havoc Pennington  <hp@redhat.com>
3829
3830         * configure.in: add -Wfloat-equal
3831
3832 2005-01-01  Havoc Pennington  <hp@redhat.com>
3833
3834         * dbus/dbus-sysdeps.h: add _DBUS_DOUBLES_BITWISE_EQUAL macro, 
3835         for a variety of reasons '==' doesn't do this.
3836
3837 2004-12-31  Havoc Pennington  <hp@redhat.com>
3838
3839         * dbus/dbus-string.c (_dbus_string_equal_substrings): new function
3840         I keep wishing I had
3841
3842 2004-12-30  John (J5) Palmieri  <johnp@redhat.com>
3843
3844         * python/dbus.py: s/ACTIVATION_REPLY_ACTIVE/ACTIVATION_REPLY_ACTIVATED
3845
3846 2004-12-30  John (J5) Palmieri  <johnp@redhat.com>
3847
3848         * python/dbus_bindings.pyx.in: Change DBUS_ACTIVATION_REPLY_ACTIVATED
3849         and DBUS_ACTIVATION_REPLY_ALREADY_ACTIVE to match the values in
3850         dbus-protocol.h.  Because they are defines and not enums they are not
3851         autogenerated.
3852
3853 2004-12-26  John (J5) Palmieri  <johnp@redhat.com>
3854
3855         * python/dbus_bindings.pyx.in (bus_activate_service): Bind
3856         dbus_bus_activate_service
3857
3858         * python/dbus.py (Bus.activate_service): activate a service on the
3859         bus.
3860
3861 2004-12-24  Havoc Pennington  <hp@redhat.com>
3862
3863         * test/decode-gcov.c: change to use .gcno and .gcda files, but the
3864         file format has also changed and I haven't adapted to that yet
3865         
3866         * Makefile.am: load .gcno files from latest gcc
3867
3868 2004-12-23  John (J5) Palmieri  <johnp@redhat.com>
3869         * Patch from Rob Taylor <robtaylor@fastmail.fm>
3870
3871         * python/dbus_bindings.pyx.in (bus_get_unix_user): New
3872         lowlevel binding
3873
3874         * python/dbus.py (get_unix_user): Added binding to 
3875         call dbus_bindings.bus_get_unix_user
3876
3877         * python/extract.py: Modified the proto_pat regex to
3878         handle unsigned long
3879
3880 2004-12-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
3881
3882         * dbus/make-dbus-glib-error-enum.sh: omit the function keyword for
3883         better POSIX compliance.
3884
3885 2004-12-19  Havoc Pennington  <hp@redhat.com>
3886
3887         * dbus/dbus-string.c (_dbus_string_insert_4_aligned) 
3888         (_dbus_string_insert_8_aligned): new functions
3889
3890         * dbus/dbus-string.c (_dbus_string_alloc_space): new function
3891
3892 2004-12-18  Havoc Pennington  <hp@redhat.com>
3893
3894         * dbus/dbus-string.c (_dbus_string_validate_ascii): use ISASCII
3895         macro
3896
3897         * dbus/dbus-message.c: fix a comment, and add a still-unused
3898         not-implemented function
3899
3900         * dbus/dbus-marshal.h: fix comment
3901
3902         * dbus/dbus-internals.h (_DBUS_ISASCII): new macro
3903
3904 2004-12-17  Joe Shaw  <joeshaw@novell.com>
3905
3906         * mono/DBusType/Byte.cs, mono/DBusType/Int32.cs,
3907         mono/DBusType/Int64.cs, mono/DBusType/UInt32.cs,
3908         mono/DBusType/UInt64.cs: Use Enum.GetUnderlyingType() instead of
3909         Type.UnderlyingSystemType to get the actual system type
3910         underneath.  This code previously depended on the broken Mono
3911         behavior, which was fixed in 1.1.3.
3912
3913 2004-11-27  Havoc Pennington  <hp@redhat.com>
3914
3915         * dbus/dbus-string.h (_dbus_string_get_byte): inline when asserts
3916         are disabled
3917         (_dbus_string_get_const_data): inline when asserts are disabled
3918
3919         * dbus/dbus-message.c: record the _dbus_current_generation of
3920         creation so we can complain if dbus_shutdown() is used improperly.
3921         Do this only if checks are enabled.
3922
3923         * dbus/dbus-connection.c: ditto
3924         
3925 2004-11-26  Havoc Pennington  <hp@redhat.com>
3926
3927         * test/glib/test-profile.c: add with_bus mode to profile echoes
3928         that go through the bus.
3929
3930         * test/glib/run-test.sh: add ability to run test-profile
3931
3932         * bus/dbus-daemon-1.1.in: fix to say that SIGHUP causes partial
3933         config file reload.
3934
3935 2004-11-26  Havoc Pennington  <hp@redhat.com>
3936
3937         * test/glib/test-profile.c: clean up how the fake_malloc_overhead
3938         thing was implemented
3939
3940 2004-11-26  Havoc Pennington  <hp@redhat.com>
3941
3942         * test/glib/test-profile.c: tweak a bit, add support for some
3943         made-up minimal malloc overhead with plain sockets, since in 
3944         real life some sort of buffers are unavoidable thus we could 
3945         count them in the theoretical best case
3946
3947 2004-11-26  Havoc Pennington  <hp@redhat.com>
3948
3949         * dbus/dbus-message.c (dbus_message_cache_or_finalize): fix bug
3950         where I was trying to cache one too many messages
3951
3952 2004-11-26  Havoc Pennington  <hp@redhat.com>
3953
3954         * dbus/dbus-message.c: reimplement message cache as an array which 
3955         makes the cache about twice as fast and saves maybe 1.5% overall
3956
3957 2004-11-26  Havoc Pennington  <hp@redhat.com>
3958
3959         * dbus/dbus-threads.c (init_global_locks): forgot to put the
3960         message cache lock here
3961
3962 2004-11-26  Havoc Pennington  <hp@redhat.com>
3963
3964         * dbus/dbus-message.c (struct DBusMessage): put the locked bit and
3965         the "char byte_order" next to each other to save 4 bytes
3966         (dbus_message_new_empty_header): reduce preallocation, since the
3967         message cache should achieve a similar effect
3968         (dbus_message_cache_or_finalize, dbus_message_get_cached): add a
3969         message cache that keeps a few DBusMessage around in a pool,
3970         another 8% speedup or so.
3971
3972         * dbus/dbus-dataslot.c (_dbus_data_slot_list_clear): new function
3973
3974 2004-11-25  Havoc Pennington  <hp@redhat.com>
3975
3976         * dbus/dbus-transport-unix.c (unix_do_iteration): if we're going
3977         to write, without reading or blocking, try it before the poll()
3978         and skip the poll() if nothing remains to write. This is about a
3979         3% speedup in the echo client/server
3980
3981 2004-11-25  Havoc Pennington  <hp@redhat.com>
3982
3983         The primary change here is to always write() once before adding
3984         the write watch, which gives us about a 10% performance increase.
3985         
3986         * dbus/dbus-transport-unix.c: a number of modifications to cope
3987         with removing messages_pending
3988         (check_write_watch): properly handle
3989         DBUS_AUTH_STATE_WAITING_FOR_MEMORY; adapt to removal of
3990         messages_pending stuff
3991         (check_read_watch): properly handle WAITING_FOR_MEMORY and
3992         AUTHENTICATED cases
3993         (unix_handle_watch): after writing, see if the write watch can be
3994         removed
3995         (unix_do_iteration): assert that write_watch/read_watch are
3996         non-NULL rather than testing that they aren't, since they 
3997         aren't allowed to be NULL. check_write_watch() at the end so 
3998         we add the watch if we did not finish writing (e.g. got EAGAIN)
3999
4000         * dbus/dbus-transport-protected.h: remove messages_pending call,
4001         since it resulted in too much inefficient watch adding/removing; 
4002         instead we now require that the transport user does an iteration 
4003         after queueing outgoing messages, and after trying the first
4004         write() we add a write watch if we got EAGAIN or exceeded our 
4005         max bytes to write per iteration setting
4006
4007         * dbus/dbus-string.c (_dbus_string_validate_signature): add this
4008         function
4009
4010         * dbus/dbus-server-unix.c (unix_finalize): the socket name was
4011         freed and then accessed, valgrind flagged this bug, fix it
4012
4013         * dbus/dbus-message.c: fix several bugs where HEADER_FIELD_LAST was taken
4014         as the last valid field plus 1, where really it is equal to the
4015         last valid field. Corrects some message corruption issues.
4016
4017         * dbus/dbus-mainloop.c: verbosity changes
4018
4019         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): handle OOM
4020         instead of aborting in one of the test codepaths
4021
4022         * dbus/dbus-internals.c (_dbus_verbose_real): fix a bug that
4023         caused not printing the pid ever again if a verbose was missing
4024         the newline at the end
4025         (_dbus_header_field_to_string): add HEADER_FIELD_SIGNATURE
4026
4027         * dbus/dbus-connection.c: verbosity changes; 
4028         (dbus_connection_has_messages_to_send): new function
4029         (_dbus_connection_message_sent): no longer call transport->messages_pending
4030         (_dbus_connection_send_preallocated_unlocked): do one iteration to
4031         try to write() immediately, so we can avoid the write watch. This
4032         is the core purpose of this patchset
4033         (_dbus_connection_get_dispatch_status_unlocked): if disconnected,
4034         dump the outgoing message queue, so nobody will get confused
4035         trying to send them or thinking stuff is pending to be sent
4036
4037         * bus/test.c: verbosity changes
4038
4039         * bus/driver.c: verbosity/assertion changes
4040
4041         * bus/dispatch.c: a bunch of little tweaks to get it working again
4042         because this patchset changes when/where you need to block.
4043
4044 2004-11-23  Havoc Pennington  <hp@redhat.com>
4045
4046         * test/glib/test-profile.c: modify to accept a plain_sockets
4047         argument in which case it will bench plain sockets instead of
4048         libdbus, for comparison purposes.
4049
4050 2004-11-22  Havoc Pennington  <hp@redhat.com>
4051
4052         * test/glib/test-profile.c (N_CLIENT_THREADS): run multiple
4053         threads for more time, so sysprof can get a grip on it.
4054
4055         * dbus/dbus-string.c (_dbus_string_validate_utf8): remove
4056         pointless variable
4057
4058 2004-11-13  Havoc Pennington  <hp@redhat.com>
4059
4060         * test/glib/test-profile.c: fix this thing up a bit
4061
4062         * dbus/dbus-message.c (dbus_message_new_empty_header): increase
4063         preallocation sizes by a fair bit; not sure if this will be an
4064         overall performance win or not, but it does reduce reallocs.
4065
4066         * dbus/dbus-string.c (set_length, reallocate_for_length): ignore
4067         the test hack that forced constant realloc if asserts are
4068         disabled, so we can profile sanely. Sprinkle in some
4069         _DBUS_UNLIKELY() which are probably pointless, but before I
4070         noticed the real performance problem I put them in.
4071         (_dbus_string_validate_utf8): micro-optimize this thing a little
4072         bit, though callgrind says it didn't help; then special-case
4073         ascii, which did help a lot; then be sure we detect nul bytes as
4074         invalid, which is a bugfix.
4075         (align_length_then_lengthen): add some more _DBUS_UNLIKELY
4076         superstition; use memset to nul the padding instead of a manual
4077         loop.
4078         (_dbus_string_get_length): inline this as a
4079         macro; it showed up in the profile because it's used for loop
4080         tests and so forth
4081
4082 2004-11-10  Colin Walters  <walters@verbum.org>
4083
4084         * dbus/dbus-spawn.c (check_babysit_events): Handle EINTR,
4085         for extra paranoia.
4086
4087 2004-11-09  Colin Walters  <walters@verbum.org>
4088
4089         * dbus/dbus-string.c (_dbus_string_get_length): New
4090         function, writes DBusString to C buffer.
4091
4092         * dbus/dbus-string.h: Prototype it.
4093
4094         * dbus/dbus-message.c (dbus_message_type_to_string): New
4095         function, converts message type into C string.
4096
4097         * dbus/dbus-message.h: Prototype it.
4098
4099         * bus/selinux.c (bus_selinux_check): Take source pid,
4100         target pid, and audit data.  Pass audit data to
4101         avc_has_perm.
4102         (log_audit_callback): New function, appends extra
4103         audit information.
4104         (bus_selinux_allows_acquire_service): Also take
4105         service name, add it to audit data.
4106         (bus_selinux_allows_send): Also take message
4107         type, interface, method member, error name,
4108         and destination, and add them to audit data.
4109         (log_cb): Initialize func_audit.
4110         
4111         * bus/selinux.h (bus_selinux_allows_acquire_service)
4112         (bus_selinux_allows_send): Update prototypes 
4113
4114         * bus/services.c (bus_registry_acquire_service): Pass
4115         service name to bus_selinux_allows_acquire_service.
4116
4117         * bus/bus.c (bus_context_check_security_policy): Pass
4118         additional audit data.  Move assignment of dest
4119         to its own line.
4120
4121 2004-11-07  Colin Walters  <walters@verbum.org>
4122
4123         * dbus/dbus-transport-unix.c (do_authentication): Always
4124         initialize auth_completed.
4125         
4126 2004-11-07  Colin Walters  <walters@verbum.org>
4127
4128         * bus/bus.c (load_config): Break into three
4129         separate functions: process_config_first_time_only,
4130         process_config_every_time, and process_config_postinit.
4131         (process_config_every_time): Move call of
4132         bus_registry_set_service_context_table into
4133         process_config_postinit.
4134         (process_config_postinit): New function, does
4135         any processing that needs to happen late
4136         in initialization (and also on reload).
4137         (bus_context_new): Instead of calling load_config,
4138         open config parser here and call process_config_first_time_only
4139         and process_config_every_time directly.  Later, after
4140         we have forked but before changing UID,
4141         invoke bus_selinux_full_init, and then call
4142         process_config_postinit.
4143         (bus_context_reload_config): As in bus_context_new,
4144         load parse file inside here, and call process_config_every_time
4145         and process_config_postinit.
4146
4147         * bus/services.h, bus/services.c
4148         (bus_registry_set_service_context_table): Rename
4149         from bus_registry_set_sid_table.  Take string hash from config
4150         parser, and convert them here into SIDs.
4151
4152         * bus/config-parser.c (struct BusConfigParser): Have
4153         config parser only store a mapping of service->context
4154         string.
4155         (merge_service_context_hash): New function.
4156         (merge_included): Merge context string hashes instead
4157         of using bus_selinux_id_table_union.
4158         (bus_config_parser_new): Don't use bus_selinux_id_table_new;
4159         simply create a new string hash.
4160         (bus_config_parser_unref): Unref it.
4161         (start_selinux_child): Simply insert strings into hash,
4162         don't call bus_selinux_id_table_copy_over.
4163
4164         * bus/selinux.h, bus/selinux.c (bus_selinux_id_table_union)
4165         (bus_selinux_id_table_copy_over): Delete.
4166
4167 2004-11-03  Colin Walters  <walters@verbum.org>
4168
4169         * bus/selinux.c (bus_selinux_pre_init): Kill some unused
4170         variables.
4171         
4172 2004-11-03  Colin Walters  <walters@verbum.org>
4173
4174         * bus/test-main.c (test_pre_hook): Fix test logic,
4175         thanks Joerg Barfurth <Joerg.Barfurth@Sun.COM>.
4176
4177 2004-11-02  Colin Walters  <walters@redhat.com>
4178
4179         * bus/selinux.c (bus_selinux_init): Split into two functions,
4180         bus_selinux_pre_init and bus_selinux_post_init.
4181         (bus_selinux_pre_init): Just determine whether SELinux is
4182         enabled.
4183         (bus_selinux_post_init): Do everything else.
4184
4185         * bus/main.c (main): Call bus_selinux_pre_init before parsing
4186         config file, and bus_selinux_post_init after.  This ensures that
4187         we don't lose the policyreload notification thread that
4188         bus_selinux_init created before forking previously.
4189         
4190         * bus/test-main.c (test_pre_hook): Update for split.
4191
4192 2004-10-31  Owen Fraser-Green  <owen@discobabe.net>
4193
4194         Patch from Johan Fischer <linux@fischaz.com>
4195         
4196         * mono/doc/Makefile.am (install-data-local): Added directory
4197         install for DESTDIR
4198
4199 2004-10-29  Colin Walters  <walters@redhat.com>
4200
4201         * dbus/dbus-sysdeps.h (_dbus_become_daemon): Also take
4202         parameter for fd to write pid to.       
4203
4204         * dbus/dbus-sysdeps.c (_dbus_become_daemon): Implement it.
4205         
4206         * bus/bus.c (bus_context_new): Pass print_pid_fd
4207         to _dbus_become_daemon (bug #1720)
4208
4209 2004-10-29  Colin Walters  <walters@redhat.com>
4210
4211         Patch from Ed Catmur <ed@catmur.co.uk>
4212
4213         * mono/doc/Makefile.am (install-data-local): Handle
4214         DESTDIR.
4215
4216 2004-10-29  Colin Walters  <walters@redhat.com>
4217
4218         * bus/.cvsignore, qt/.cvsignore: Update.
4219
4220 2004-10-29  Colin Walters  <walters@redhat.com>
4221
4222         Patch from Kristof Vansant <de_lupus@pandora.be>
4223
4224         * configure.in: Detect Slackware.
4225         * bus/Makefile.am (SCRIPT_IN_FILES): Add rc.messagebus.in.
4226         * bus/rc.messagebus.in: New file.
4227
4228 2004-10-29  Colin Walters  <walters@redhat.com>
4229
4230         * tools/dbus-monitor.c (filter_func): Return
4231         DBUS_HANDLER_RESULT_HANDLED in filter function
4232         for now.  See:
4233         http://freedesktop.org/pipermail/dbus/2004-August/001433.html
4234
4235 2004-10-29  Colin Walters  <walters@redhat.com>
4236
4237         Patch from Matthew Rickard <mjricka@epoch.ncsc.mil>
4238
4239         * bus/services.c (bus_registry_acquire_service): 
4240         Correctly retrieve service name from DBusString
4241         for printing.
4242
4243 2004-10-29  Colin Walters  <walters@redhat.com>
4244
4245         * dbus/dbus-glib.h: Update documentation to not
4246         refer to internal APIs.
4247
4248 2004-10-27  Joe Shaw  <joeshaw@novell.com>
4249
4250         * mono/Arguments.cs (GetDBusTypeConstructor):
4251         type.UnderlyingSystemType will return "System.Byte" if you do it
4252         on "byte[]", which is not what we want.  So check the type.IsArray
4253         property and use System.Array instead.
4254
4255 2004-10-25  John (J5) Palmieri  <johnp@redhat.com>
4256
4257         * dbus/dbus-sysdeps.c (fill_user_info): On errors do not free
4258         the DBusUserInfo structure since this is passed into the function.
4259         This would cause a double free when the function that allocated
4260         the structure would try to free it when an error occured.
4261
4262         * (bus/session.conf.in, bus/Makefile.am, dbus/configure.in):
4263         use /usr/share/dbus-1/services instead of /usr/lib/dbus-1.0/services
4264         for service activation to avoid 32bit/64bit parallel install issues
4265
4266 2004-10-21  Colin Walters  <walters@verbum.org>
4267
4268         * AUTHORS: Fix my email address, the @gnu.org one
4269         has been bouncing for some time.  Also add J5.
4270         
4271 2004-10-21  Colin Walters  <walters@verbum.org>
4272
4273         * dbus/dbus-transport-unix.c (do_authentication): Return
4274         authentication status to callers.
4275         (unix_handle_watch): If we completed authentication this round,
4276         don't do another read.  Instead wait until the next iteration,
4277         after we've read any pending data in the auth buffer.
4278         (unix_do_iteration): Ditto.
4279         (unix_handle_watch): Updated for new do_authentication prototype.
4280
4281 2004-10-18  Colin Walters  <walters@verbum.org>
4282
4283         * bus/selinux.c (bus_selinux_enabled): Handle
4284         --disable-selinux case.
4285         
4286 2004-10-18  Colin Walters  <walters@verbum.org>
4287
4288         * bus/selinux.h: Add bus_selinux_enabled.
4289         
4290         * bus/selinux.c (bus_selinux_enabled): Implement it.
4291         
4292         * bus/config-parser.c (struct include): Add
4293         if_selinux_enabled member.
4294         (start_busconfig_child): Parse if_selinux_enabled
4295         attribute for include.
4296         (bus_config_parser_content): Handle it.
4297
4298         * bus/session.conf.in, bus/system.conf.in: Add
4299         inclusion of context mapping to default config files;
4300         conditional on SELinux being enabled.
4301         
4302         * doc/busconfig.dtd: Add to if_selinux_enabled to default DTD.
4303         
4304         * test/data/invalid-config-files/badselinux-1.conf, 
4305         test/data/invalid-config-files/badselinux-2.conf:
4306         Test files for bad syntax.
4307         
4308 2004-10-17  Colin Walters  <walters@verbum.org>
4309
4310         * dbus/dbus-memory.c (_dbus_initialize_malloc_debug, check_guards)
4311         (dbus_malloc, dbus_malloc0, dbus_realloc): Fix up printf
4312         format specifier mismatches.
4313
4314 2004-10-07  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4315
4316         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): fix an incorrect
4317         format string.
4318
4319         * glib/dbus-dbus-gmain.c (dbus_g_bus_get): do not mangle NULL
4320         pointer (bug #1540, Leonardo Boiko).
4321
4322 2004-09-28  Jon Trowbridge  <trow@ximian.com>
4323
4324         * mono/BusDriver.cs: Changed BusDriver struct to remove
4325         the ServiceCreated and ServiceDeleted events and replace them
4326         with the new ServiceOwnerChanged event.
4327
4328         * mono/example/BusListener.cs: Added a new example program,
4329         which listens for and reports any ServiceOwnerChanged events
4330         on the bus driver.
4331
4332         * mono/example/Makefile.am (DESTDIR): Build changes for the
4333         new BusListener.cs example.
4334
4335 2004-09-27  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4336
4337         * bus/signals.c (bus_match_rule_parse): validate the components of
4338         match rules (bug #1439).
4339
4340         * dbus/dbus-bus.c (dbus_bus_add_match): add a missing OOM test.
4341
4342 2004-09-24  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4343
4344         * doc/dbus-specification.xml: document ServiceOwnerChanged
4345         signal.
4346         
4347         * bus/driver.c, bus/driver.h, bus/services.c: Use
4348         ServiceOwnerChanged signal instead of ServiceCreated and
4349         ServiceDeleted.
4350         
4351         * bus/dispatch.c: update testcase for the new signal.
4352
4353 2004-09-20  Jon Trowbridge  <trow@ximian.com>
4354
4355         Patch from Nat Friedman <nat@novell.com>
4356
4357         * mono/Makefile.am: A number of small build fixes to allow "make
4358         distcheck" to succeed.
4359
4360         * mono/example/Makefile.am: "make distcheck" fixes.
4361
4362         * mono/AssemblyInfo.cs.in: When signing the assembly, look for the
4363         key in @srcdir@.
4364
4365         * test/Makefile.am: "make distcheck" fixes.
4366
4367 2004-09-17  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4368
4369         * dbus/dbus-sysdeps.c (_dbus_user_at_console): fix memleak in OOM.
4370
4371         * doc/busconfig.dtd: update the DTD for the at_console attribute.
4372
4373         * bus/driver.c (bus_driver_handle_hello): correctly handle Hello
4374         messages after the first one (bug #1389).
4375         
4376         * bus/dispatch.c (check_double_hello_message): add a test case for
4377         the double hello message bug.
4378         (check_existent_service_activation): fix check of spawning error.
4379         
4380 2004-09-16  David Zeuthen  <david@fubar.dk>
4381
4382         * python/dbus_bindings.pyx.in: Add support for int64 and uint64
4383
4384 2004-09-12  David Zeuthen  <david@fubar.dk>
4385
4386         Patch from Kay Sievers <kay.sievers@vrfy.org>
4387
4388         * bus/bus.c (bus_context_new):
4389         * bus/bus.h:
4390         * bus/main.c (usage)
4391         (main):
4392         Add commandline option --nofork to override configuration file
4393         setting.
4394
4395 2004-09-09  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4396
4397         * dbus/dbus-*.h: remove the ; after DBUS_(BEGIN|END)_DECLS. Some C
4398         compilers don't like it (bug #974).
4399
4400 2004-09-04  Harald Fernengel  <harry@kdevelop.org>
4401
4402         * qt/connection.*: Applied patch by Jérôme Lodewyck
4403         <lodewyck@clipper.ens.fr> to integrate an existing
4404         connection into the Qt eventloop
4405
4406 2004-08-30  Jon Trowbridge  <trow@ximian.com>
4407
4408         * mono/BusDriver.cs: Added.  This is a class for interacting with
4409         the org.freedesktop.DBus service.
4410
4411         * mono/Message.cs: Added a mechanism to expose the message that is
4412         currently being dispatched via the static Message.Current
4413         property.  Added Message.Sender and Message.Destination
4414         properties.
4415
4416         * mono/Handler.cs: Expose the dispatched message via
4417         Message.Current when handling method calls.
4418
4419         * mono/Service.cs: Expose the dispatched message via
4420         Message.Current when handling signal emissions.
4421         
4422         * mono/Connection.cs: Bind dbus_bus_get_base_service via the
4423         Connection.BaseService property.
4424
4425 2004-08-28  Havoc Pennington  <hp@redhat.com>
4426
4427         * dbus/dbus-userdb.c (_dbus_is_console_user): remove unused variable
4428
4429         More fixes from Steve Grubb
4430         
4431         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): fix fd leak
4432         (_dbus_listen_tcp_socket): fix fd leak
4433
4434         * dbus/dbus-spawn.c (read_pid, read_ints): move the "again:" for
4435         EINTR to a bit lower in the code
4436
4437 2004-08-26  Jon Trowbridge  <trow@ximian.com>
4438
4439         * bus/driver.c (bus_driver_handle_service_exists): Respond with
4440         TRUE if we are inquiring about the existence of the built-in
4441         org.freedesktop.DBus service.
4442
4443 2004-08-25  John Palmieri  <johnp@redhat.com>
4444         * bus/config-parser.c:
4445         (struct PolicyType): Add POLICY_CONSOLE
4446         (struct Element.d.policy): s/gid_or_uid/gid_uid_or_at_console
4447         (start_busconfig_child): Sets up console element when
4448         <policy at_console=""> is encountered in a policy file
4449         (append_rule_from_element): Convert console elements to console
4450         rules.
4451
4452         * bus/policy.c: 
4453         (bus_policy_create_client_policy): Add console rules to the client
4454         policy based on if the client is at the console
4455         (bus_policy_append_console_rule): New function for adding a
4456         console rule to a policy
4457         (bus_policy_merge): Handle console rule merging
4458
4459         * dbus/dbus-sysdeps.h: Added the DBUS_CONSOLE_DIR constant
4460         where we check for console user files
4461         
4462         * dbus/dbus-sysdeps.c:
4463         (_dbus_file_exists): New function which checks if the given
4464         file exists
4465         (_dbus_user_at_console): New function which does the system
4466         specific process of checking if the user is at the console
4467
4468         * dbus/dbus-userdb.c:
4469         (_dbus_is_console_user): New function converts a UID to user name
4470         and then calls the system specific _dbus_user_at_console to 
4471         see if the user is at the console and therefor a console user
4472
4473 2004-08-25  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4474
4475         * bus/config-parser.c (set_limit):
4476         * bus/dbus-daemon-1.1.in:
4477         * test/data/valid-config-files/many-rules.conf: set the
4478         max_match_rules_per_connection limt from the config file. 
4479
4480         * doc/busconfig.dtd: update the DTD.
4481
4482         * bus/driver.c: remove some unused variables.
4483
4484 2004-08-24  Mikael Hallendal  <micke@imendio.com>
4485
4486         * dbus/dbus-glib-lowlevel.h: Removed dbus_bus_get_with_g_main since 
4487         it's been replaced by dbus_g_bus_get
4488
4489 2004-08-23  Colin Walters  <walters@redhat.com>
4490
4491         Updated SELinux support from Matthew Rickard <mjricka@epoch.ncsc.mil>
4492
4493         * bus/selinux.h: Prototype bus_selinux_get_policy_root.
4494
4495         * bus/selinux.c: Create a thread for policy reload notification.
4496         (bus_selinux_get_policy_root): Implement.
4497
4498         * bus/config-parser.c (start_busconfig_child)
4499         (bus_config_parser_content): Support SELinux-root relative
4500         inclusion.
4501
4502         * configure.in <HAVE_SELINUX>: Add -lpthread.
4503         
4504         * bus/test-main.c (test_pre_hook, test_post_hook): New.
4505         (test_post_hook): Move memory checking into here.
4506         (test_pre_hook, test_post_hook): Move SELinux checks in
4507         here, but conditional on a DBUS_TEST_SELINUX environment
4508         variable.  Unfortunately we can't run the SELinux checks
4509         as a normal user, since they won't have any permissions
4510         for /selinux.  So this will have to be tested manually
4511         for now, until we have virtualization for most of
4512         libselinux.
4513         
4514 2004-08-23  Havoc Pennington  <hp@redhat.com>
4515
4516         * dbus/dbus-sysdeps.c (_dbus_change_identity): add setgroups() to
4517         drop supplementary groups, suggested by Steve Grubb
4518
4519 2004-08-20  Colin Walters  <walters@redhat.com>
4520
4521         * bus/config-parser.c (start_busconfig_child): Remove some unused
4522         variables.
4523         
4524         * bus/selinux.c (bus_selinux_id_table_insert): Avoid compiler
4525         warning.
4526
4527 2004-08-17  Joe Shaw  <joeshaw@novell.com>
4528
4529         * configure.in: If --enable-mono is passed in, if we can't find
4530         mono error out.
4531
4532         * mono/Makefile.am: Use /gacutil to install assemblies into the
4533         GAC and not /root.
4534
4535 2004-08-12  Havoc Pennington  <hp@redhat.com>
4536
4537         * NEWS: update for 0.22
4538
4539         * configure.in: release 0.22
4540
4541 2004-08-11  Colin Walters  <walters@redhat.com>
4542
4543         * tools/dbus-send.c (main, usage): Add --reply-timeout
4544         argument.
4545
4546 2004-08-10  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4547
4548         * bus/bus.c (process_config_first_time_only): get rid of an unused
4549         DBusError that was causing a memoy leak (bug #989).
4550
4551         * dbus/dbus-keyring.c, dbus/dbus-message.c:
4552         fix compilation on Solaris/Forte C (bug #974)
4553
4554         * bus/main.c (main): plug two minuscule memleaks.
4555
4556 2004-08-10  Havoc Pennington  <hp@redhat.com>
4557
4558         * doc/dbus-tutorial.xml: add some more info on GLib bindings
4559
4560 2004-08-09  Havoc Pennington  <hp@redhat.com>
4561
4562         * COPYING: switch to Academic Free License version 2.1 instead of
4563         2.0, to resolve complaints about patent termination clause.
4564
4565 2004-07-31  John (J5) Palmieri  <johnp@redhat.com>
4566
4567         * README: added documentation for the --enable-python 
4568         configure switch.
4569
4570 2004-07-31  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4571
4572         * bus/config-parser.c (bus_config_parser_new): fix an invalid
4573         _unref in the SELinux support.
4574
4575         * doc/busconfig.dtd: update DTD for SELinux support.
4576
4577         * bus/config-loader-libxml.c: fix error handler and parser
4578         initialisation/cleanup. OOM test now works with libxml2 HEAD.
4579
4580         * configure.in: remove the warning about libxml2.
4581
4582         * dbus/dbus-bus.c: silence doxygen warning.
4583
4584 2004-07-31  Colin Walters  <walters@redhat.com>
4585
4586         * configure.in: Move #error in SELinux check to its own line.
4587
4588 2004-07-31  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4589
4590         * dbus/dbus-internals.h (_DBUS_SET_OOM):
4591         * bus/utils.h (BUS_SET_OOM): use dbus_error_set_const instead of
4592         dbus_error_set.
4593
4594         * bus/dispatch.c (check_send_exit_to_service): fix the test case,
4595         broken by the change in the _SET_OOM macros.
4596
4597 2004-07-31  Colin Walters  <walters@redhat.com>
4598
4599         * bus/selinux.c <HAVE_SELINUX>: Include utils.h to get
4600         BUS_SET_OOM.
4601
4602 2004-07-31  Colin Walters  <walters@redhat.com>
4603
4604         * configure.in: Use AC_TRY_COMPILE instead of AC_EGREP_HEADER
4605         to correctly detect DBUS__ACQUIRE_SVC.  Also add an
4606         AC_MSG_CHECKING.
4607
4608 2004-07-24  Havoc Pennington  <hp@redhat.com>
4609
4610         SELinux support from Matthew Rickard <mjricka@epoch.ncsc.mil>
4611
4612         * bus/selinux.c, bus/selinux.h: new file encapsulating selinux
4613         functionality
4614
4615         * configure.in: add --enable-selinux
4616         
4617         * bus/policy.c (bus_policy_merge): add FIXME to a comment
4618
4619         * bus/main.c (main): initialize and shut down selinux
4620
4621         * bus/connection.c: store SELinux ID on each connection, to avoid 
4622         repeated getting of the string context and converting it into 
4623         an ID
4624
4625         * bus/bus.c (bus_context_get_policy): new accessor, though it
4626         isn't used
4627         (bus_context_check_security_policy): check whether the security
4628         context of sender connection can send to the security context of
4629         recipient connection
4630
4631         * bus/config-parser.c: add parsing for <selinux> and <associate>
4632         
4633         * dbus/dbus-transport.c (_dbus_transport_get_unix_fd): to
4634         implement dbus_connection_get_unix_fd()
4635
4636         * dbus/dbus-connection.c (dbus_connection_get_unix_fd): new
4637         function, used by the selinux stuff
4638         
4639 2004-07-29  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4640
4641         * bus/config-loader-libxml.c: complete the implementation of
4642         libxml backend for config file loader. Doesn't work with full OOM
4643         test yet. 
4644         
4645         * configure.in: change error when selecting libxml into a warning.
4646         
4647         * test/data/invalid-config-files: add two non-well-formed XML
4648         files. 
4649         
4650         * glib/Makefile.am: libdbus_gtool always uses expat, not libxml.
4651         
4652         * dbus/dbus-transport-unix.c (unix_handle_watch): do not
4653         disconnect in case of DBUS_WATCH_HANGUP, several do_reading() may
4654         be necessary to read all the buffer. (bug #894)
4655
4656         * bus/activation.c (bus_activation_activate_service): fix a
4657         potential assertion failure (bug #896). Small optimization in the
4658         case of auto-activation messages.
4659
4660         * dbus/dbus-message.c (verify_test_message, _dbus_message_test):
4661         add test case for byte-through-vararg bug (#901). patch by Kimmo
4662         Hämäläinen. 
4663
4664 2004-07-28  Anders Carlsson  <andersca@gnome.org>
4665
4666         * python/dbus.py:
4667         * python/dbus_bindings.pyx.in:
4668         Add dbus.init_gthreads (), allow emit_signal to pass
4669         arguments to the signal.
4670         
4671 2004-07-24  Havoc Pennington  <hp@redhat.com>
4672
4673         * AUTHORS: add some people, not really comprehensively, let me
4674         know if I missed you
4675
4676 2004-07-24  Havoc Pennington  <hp@redhat.com>
4677
4678         * Makefile.am (DIST_SUBDIRS): add DIST_SUBDIRS, problem solved by
4679         Owen
4680
4681         * test/Makefile.am (DIST_SUBDIRS): here also
4682
4683 2004-07-22  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4684
4685         * dbus/dbus-sysdeps.c (fill_user_info): fix inexistent label name,
4686         breaking build on Solaris, reported by Farhad Saberi on the ML.
4687
4688         * dbus/dbus-message.c (dbus_message_append_args_valist): fix the
4689         va_arg invocation to account for integer promotion in the case of
4690         DBUS_TYPE_BYTE (unsigned char is promoted to int). (bug #901)
4691
4692         * bus/services.c (bus_service_remove_owner): fix bug #902, use
4693         _dbus_list_get_first_link, not _dbus_list_get_first.
4694
4695         * dbus/dbus-bus.c (dbus_bus_service_exists): plug a memory leak.
4696
4697         * dbus/dbus-object-tree.c (free_subtree_recurse): always null
4698         handler functions so that the asserts in _dbus_object_subtree_unref
4699         do not fail.
4700
4701         * dbus/dbus-transport-unix.c (do_reading):
4702         _dbus_transport_queue_messages return value is of type
4703         dbus_bool_t, not DBusDispatchStatus.
4704         
4705 2004-07-19  David Zeuthen  <david@fubar.dk>
4706
4707         * dbus/dbus-protocol.h: Add DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN
4708
4709         * bus/dispatch.c:
4710         (check_get_connection_unix_user): Debug says GetProperty; but the
4711         method is called GetConnectionUnixUser
4712         (check_get_connection_unix_process_id): New function
4713         (bus_dispatch_test): Actually call check_get_connection_unix_user();
4714         also call check_get_connection_unix_process_id()
4715         
4716         * bus/driver.c:
4717         (bus_driver_handle_get_connection_unix_process_id): New function,
4718         handles GetConnectionUnixProcessID on the org.freedesktop.DBus
4719         interface
4720         
4721         * dbus/dbus-auth.c:
4722         (handle_server_data_external_mech): Set pid from the credentials
4723         obtained from the socket
4724         
4725         * dbus/dbus-connection.c:
4726         (dbus_connection_get_unix_process_id): New function
4727         
4728         * dbus/dbus-connection.h: 
4729         Add prototype for dbus_connection_get_unix_process_id
4730         
4731         * dbus/dbus-transport.c:
4732         (_dbus_transport_get_unix_process_id): New function
4733         
4734         * dbus/dbus-transport.h:
4735         Add prototype for _dbus_transport_get_unix_process_id
4736         
4737 2004-07-19  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4738
4739         * dbus/dbus-message.c: Message counter fix, patch by Christian
4740         Hammond <chipx86@gnupdate.org>
4741
4742 2004-07-18  Seth Nickell  <seth@gnome.org>
4743
4744         * python/dbus.py:
4745         * python/dbus_bindings.pyx.in:
4746         * python/tests/test-client.py:
4747
4748         Add dbus.ByteArray and dbus_bindings.ByteArray
4749         types so that byte streams can be passed back.
4750
4751         Give jdahlin the heaps of credit that are so
4752         rightfully his.
4753         
4754 2004-07-12  Seth Nickell  <seth@gnome.org>
4755
4756         * python/dbus.py:
4757
4758         Add message argument to the default object_method_handler
4759         function.
4760         
4761         * python/dbus_bindings.pyx.in:
4762
4763         Automatically return NIL when passed an empty list
4764         (we can't pass back a list since lists are typed
4765         and we don't have any idea what type the the client
4766         intended the list to be... :-( )
4767         
4768 2004-07-10  Seth Nickell  <seth@gnome.org>
4769
4770         * python/examples/Makefile.am:
4771
4772         Fix distcheck breakage caused by new examples.
4773
4774 2004-07-10  Seth Nickell  <seth@gnome.org>
4775
4776         * python/dbus.py:
4777
4778         Add "message" argument to service-side dbus.Object
4779         methods. This will break existing services written
4780         using the python bindings, but will allow extraction
4781         of all the message information (e.g. who its from).
4782
4783         Add improved "object oriented" signal handling/emission.
4784         
4785         * python/examples/example-service.py:
4786
4787         Nix this example.
4788         
4789         * python/examples/example-signal-emitter.py:
4790         * python/examples/example-signal-recipient.py:
4791
4792         Two new examples that show how to emit and receive
4793         signals using the new APIs.
4794         
4795         * python/examples/example-signals.py:
4796         * python/examples/gconf-proxy-service.py:
4797         * python/examples/gconf-proxy-service2.py:
4798
4799         Add "message" argument to service methods.
4800
4801 2004-06-28  Kay Sievers <kay.sievers@vrfy.org>
4802
4803         * bus/driver.c (bus_driver_handle_get_connection_unix_user)
4804         * dbus/bus.c (dbus_bus_get_unix_user)
4805         * doc/dbus-specification.xml: implement GetConnectionUnixUser
4806         method of org.freedesktop.DBus interface.
4807
4808         * bus/dispatch.c: test case
4809
4810 2004-06-23  John (J5) Palmieri  <johnp@redhat.com>
4811
4812         * python/Makefile.am: switched include directory from glib/ to dbus/
4813         since dbus-glib.h moved
4814  
4815 2004-06-22  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4816
4817         * configure.in: prevent building the gcj stuff and libxml loader
4818         since they are broken.
4819
4820 2004-06-20  Havoc Pennington  <hp@redhat.com>
4821
4822         * dbus/dbus-glib-error-enum.h: autogenerate the GError enum 
4823         codes from the dbus error names
4824         
4825         * glib/dbus-glib.h: move to subdir dbus/ since it's included 
4826         as dbus/dbus-glib.h and that breakage is now visible due to 
4827         including dbus/dbus-glib.h in dbus-glib-lowlevel.h
4828         
4829         * glib/dbus-glib.h: s/gproxy/g_proxy/
4830
4831         * dbus/dbus-shared.h: new header to hold stuff shared with
4832         binding APIs
4833         
4834         * dbus/dbus-protocol.h (DBUS_ERROR_*): move errors here rather
4835         than dbus-errors.h
4836
4837         * glib/dbus-glib.h (dbus_set_g_error): move to
4838         dbus-glib-lowlevel.h
4839
4840         * glib/dbus-glib.h: remove dbus/dbus.h from here; change a bunch
4841         of stuff to enable this
4842
4843         * dbus/dbus-glib-lowlevel.h: put dbus/dbus.h here
4844
4845         * a bunch of other changes with the same basic "separate glib 
4846         bindings from dbus.h" theme
4847         
4848 2004-06-10  Owen Fraser-Green  <owen@discobabe.net>
4849
4850         * dbus-sharp.pc.in: Removed glib-sharp inclusion in Libs.
4851
4852         * python/examples/Makefile.am: Fixed typo in EXTRA_DIST.
4853
4854 2004-06-09  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4855
4856         * bus/driver.c, dbus/dbus-bus.c: use BOOLEAN instead of UINT32 for
4857         the reply value of the ServiceExists message.
4858
4859 2004-06-07  John (J5) Palmieri  <johnp@redhat.com>
4860
4861         * python/dbus_bindings.pyx.in: No longer need to parse path
4862         elements and pass them as arrays of strings.  The C API now
4863         accepts plain path strings.
4864         (_build_parsed_path): removed 
4865
4866 2004-06-07  Havoc Pennington  <hp@redhat.com>
4867
4868         * doc/TODO: remove auto-activation item since it's done; sort
4869         items by importance/milestone
4870
4871 2004-06-07  Havoc Pennington  <hp@redhat.com>
4872
4873         * dbus/dbus-message-builder.c (_dbus_message_data_load): append
4874         random signature when using REQUIRED_FIELDS (this hack won't work
4875         in the long term)
4876
4877         * dbus/dbus-message.c: change the signature to be a header field,
4878         instead of message->signature special-case string. Incremental
4879         step forward. Then we can fix up code to send the signature in the
4880         message, then fix up code to validate said signature, then fix up
4881         code to not put the typecodes inline, etc.
4882         (load_one_message): don't make up the signature after the fact
4883         (decode_header_data): require signature field for the known
4884         message types
4885
4886         * dbus/dbus-marshal.c (_dbus_marshal_string_len): new
4887
4888         * dbus/dbus-protocol.h: add DBUS_HEADER_FIELD_SIGNATURE
4889
4890 2004-06-07  Owen Fraser-Green  <owen@discobabe.net>
4891
4892         * mono/DBusType/ObjectPath.cs: Renamed PathName argument to Path
4893
4894         * mono/Handler.cs: Updated to follow new path argument for
4895         (un-)registering objects.
4896
4897         * mono/example/Makefile.am:
4898         * mono/Makefile.am:
4899         * configure.in: Bumped required version for mono and use new -pkg
4900         syntax for deps
4901
4902 2004-06-05  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4903
4904         * dbus/dbus-connection.h, dbus/dbus-connection.c: have object path
4905         registration functions take the path argument as char* instead of
4906         char**.
4907
4908         * dbus/dbus-marshal.h, dbus/dbus-marshal.c (_dbus_decompose_path):
4909         split off the path decompostion part of
4910         _dbus_demarshal_object_path. Some misc. fixes to silence compiler
4911         warnings. 
4912
4913         * glib/dbus-gobject.c, test/test-service.c: update accordingly.
4914         
4915 2004-06-02  Kristian Høgsberg  <krh@redhat.com>
4916  
4917         * dbus/dbus-auth.c: Rewrite auth protocol handling to use a state
4918         machine approach.  A state is implemented as a function that
4919         handles incoming events as specified for that state.
4920         
4921         * doc/dbus-specification.xml: Update auth protocol state machine
4922         specification to match implementation.  Remove some leftover
4923         base64 examples.
4924
4925 2004-06-02  Kristian Høgsberg  <krh@redhat.com>
4926
4927         * glib/dbus-gproxy.c, glib/dbus-gmain.c, dbus/dbus-string.c,
4928         dbus/dbus-object-tree.c, dbus/dbus-message.c: add comments to
4929         quiet doxygen.
4930
4931         * Doxyfile.in: remove deprecated options.
4932
4933         * dbus/dbus-message-handler.c, dbus/dbus-message-handler.h,
4934         glib/test-thread.h, glib/test-thread-client.c,
4935         glib/test-thread-server.c, glib/test-profile.c,
4936         glib/test-dbus-glib.c: remove these unused files.
4937
4938 2004-06-01  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4939
4940         * dbus/dbus-object-tree.c
4941         (_dbus_object_tree_dispatch_and_unlock): fix dispatch for
4942         non-fallback handlers (bug #684).
4943         (_dbus_object_subtree_new): initialize invoke_as_fallback field.
4944         (find_subtree_recurse): report wether the returned subtree is an
4945         exact match or a "fallback" match higher up in the tree.
4946         (object_tree_test_iteration): update test case.
4947
4948 2004-06-01  Seth Nickell  <seth@gnome.org>
4949
4950         * python/dbus_bindings.pyx.in:
4951         * python/tests/test-client.py:
4952
4953         Round off basic type support. Add dicts (yay!), and 
4954         remaining array types.
4955
4956         Make MessageIter more general so it works for dicts too.
4957
4958         Mark all loop variables as C integers.
4959         
4960 2004-05-31  Havoc Pennington  <hp@redhat.com>
4961
4962         * glib/dbus-gidl.c (method_info_add_arg): keep args sorted with
4963         "in" before "out"
4964
4965         * glib/dbus-gobject.c (dbus_type_to_string): move to dbus-gutils.c
4966
4967         * glib/dbus-glib-tool.c (main): set up to have a --self-test
4968         option that runs the tests, and start filling in some code
4969         including for starters just dumping the interfaces to stdout
4970
4971         * glib/Makefile.am (INCLUDES): define DBUS_LOCALEDIR
4972
4973         * test/data/valid-introspection-files/lots-of-types.xml: test of
4974         an example introspection file
4975
4976         * glib/dbus-gparser.c (parser_check_doctype): doctype should be
4977         "node" (I think...)
4978
4979 2004-05-31  Seth Nickell  <seth@gnome.org>
4980
4981         * python/dbus_bindings.pyx.in:
4982         * python/tests/test-client.py:
4983
4984         Test Suite: 1
4985         Python Bindings: 0
4986
4987         Fix string array memory trashing bug... oops...
4988
4989 2004-05-30  Seth Nickell  <seth@gnome.org>
4990
4991         * python/dbus.py:
4992
4993         Add a nicer-but-less-flexible alternate API for handling 
4994         calls to virtual objects in dbus.ObjectTree.
4995
4996         Screw up the argument order to the dbus.Object constructor
4997         for consistency with dbus.ObjectTree (and to make dbus_methods
4998         optional for future extension)
4999         
5000         * python/examples/Makefile.am:
5001         * python/examples/gconf-proxy-service.py:
5002         * python/examples/gconf-proxy-service2.py:
5003
5004         Alternate implementation of gconf-proxy-service using the
5005         nicer dbus.ObjectTree API.
5006         
5007         * python/examples/example-service.py:
5008         * python/tests/test-server.py
5009
5010         Reverse the argument order to deal with dbus.Object constructor
5011         changes.
5012         
5013 2004-05-30  Seth Nickell  <seth@gnome.org>
5014
5015         * python/examples/example-client.py:
5016         * python/examples/example-service.py:
5017
5018         Take it back. Lists seem to work but they're broken
5019         in the test suite. Make the base examples use
5020         lists (works fine).
5021
5022 2004-05-30  Seth Nickell  <seth@gnome.org>
5023
5024         * python/dbus_bindings.pyx.in:
5025         * python/tests/test-client.py:
5026
5027         Add some more tests and fix errors that crop up.
5028         Unfortunately, currently it seems like marshalling
5029         and unmarshalling of lists is completely broken :-(
5030
5031 2004-05-30  Seth Nickell  <seth@gnome.org>
5032
5033         * python/dbus_bindings.pyx.in:
5034
5035         Add support for ObjectPath type.
5036
5037         * python/dbus.py:
5038
5039         Refactor message handling code to a common function.
5040         
5041         * python/tests/test-client.py:
5042         * python/tests/test-server.py:
5043
5044         Add tests that check to make sure values of all types
5045         can be echoed from a service w/o mangling.
5046         
5047 2004-05-29  Seth Nickell  <seth@gnome.org>
5048
5049         * python/dbus.py:
5050
5051         Add ObjectTree class which allows implementation
5052         of trees of "virtual" objects. Basically the python
5053         wrapper for "register_fallback".
5054         
5055         * python/examples/Makefile.am
5056         * python/examples/gconf-proxy-client.py:
5057         * python/examples/gconf-proxy-service.py:
5058
5059         Implement a simple GConf proxy service that supports
5060         get/set on string and int GConf keys using the ObjectTree.
5061         
5062 2004-05-29  Seth Nickell  <seth@gnome.org>
5063
5064         * python/dbus.py:
5065         * python/examples/example-client.py:
5066         * python/examples/example-service.py:
5067         * python/examples/list-system-services.py:
5068
5069         Add SessionBus, SystemBus and ActivationBus classes
5070         so you don't need to know the special little BUS_TYPE
5071         flag.
5072         
5073 2004-05-29  Havoc Pennington  <hp@redhat.com>
5074
5075         * bus/config-parser.c (process_test_valid_subdir): temporarily
5076         stop testing config parser OOM handling, since expat has issues
5077         http://freedesktop.org/pipermail/dbus/2004-May/001153.html
5078
5079         * bus/dbus-daemon-1.1.in: change requested_reply to
5080         send_requested_reply/receive_requested_reply so we can send the
5081         replies, not just receive them.
5082
5083         * bus/config-parser.c: parse the new
5084         send_requested_reply/receive_requested_reply
5085
5086         * bus/policy.c (bus_client_policy_check_can_send): add
5087         requested_reply argument and use it
5088
5089         * bus/bus.c (bus_context_check_security_policy): pass through
5090         requested_reply status to message send check
5091
5092         * bus/system.conf.in: adapt to requested_reply change
5093         
5094 2004-05-28  Havoc Pennington  <hp@redhat.com>
5095
5096         * test/glib/test-service-glib.c (main): remove unused variable
5097
5098         * glib/dbus-gidl.c (base_info_ref): fix a silly compiler warning
5099
5100         * dbus/dbus-auth.h (enum): remove AUTHENTICATED_WITH_UNUSED_BYTES
5101         from the enum, no longer in use.
5102
5103         * dbus/dbus-sysdeps.h: include config.h so DBUS_VA_COPY actually
5104         works right.
5105
5106         * dbus/dbus-message.c: add various _dbus_return_val_if_fail for
5107         whether error_name passed in is a valid error name.
5108
5109 2004-05-28  John (J5) Palmieri  <johnp@redhat.com>
5110
5111         * dbus/dbus-message.c (dbus_message_get_args): Added support for
5112         OBJECT_PATH and OBJECT_PATH_ARRAY
5113
5114 2004-05-28  Seth Nickell  <seth@gnome.org>
5115
5116         * python/examples/Makefile.am:
5117
5118         Forget to add Makefile.am. Do not pass go.
5119
5120 2004-05-28  Michael Meeks  <michael@ximian.com>
5121
5122         * glib/dbus-gvalue.c (dbus_gvalue_marshal, dbus_gvalue_demarshal): 
5123         fix no int64 case.
5124
5125         * dbus/dbus-string.c (_dbus_string_parse_basic_type): impl.
5126
5127         * dbus/dbus-message.c (_dbus_message_iter_get_basic_type),
5128         (_dbus_message_iter_get_basic_type_array): impl.
5129         drastically simplify ~all relevant _get methods to use these.
5130         (_dbus_message_iter_append_basic_array),
5131         (dbus_message_iter_append_basic): impl
5132         drastically simplify ~all relevant _append methods to use these.
5133
5134         * dbus/dbus-message-builder.c (parse_basic_type) 
5135         (parse_basic_array, lookup_basic_type): impl.
5136         (_dbus_message_data_load): prune scads of duplicate /
5137         cut & paste coding.
5138
5139         * dbus/dbus-marshal.c (_dbus_demarshal_basic_type_array) 
5140         (_dbus_demarshal_basic_type): implement,
5141         (demarshal_and_validate_len/arg): beef up debug.
5142         (_dbus_marshal_basic_type, _dbus_marshal_basic_type_array): impl.
5143
5144 2004-05-27  Seth Nickell  <seth@gnome.org>
5145
5146         * configure.in:
5147         * python/Makefile.am:
5148
5149         Include the example python apps in the tarball.
5150         
5151         * python/examples/list-system-services.py
5152
5153         Add a python new example that fetches the list of services
5154         from the system bus.
5155         
5156 2004-05-27  Seth Nickell  <seth@gnome.org>
5157
5158         * python/dbus.py:
5159         * python/dbus_bindings.pyx.in:
5160
5161         Fix failure to notify that a signal was not handled,
5162         resulted in hung functions.
5163         
5164 2004-05-25  Colin Walters  <walters@redhat.com>
5165
5166         * tools/dbus-monitor.c (main): Monitor all types of messages.
5167
5168 2004-05-23  Owen Fraser-Green  <owen@discobabe.net>
5169
5170         * mono/Handler.cs, mono/Service.cs: Added UnregisterObject method
5171         which unregisters the object path and disposes the handler.
5172
5173 2004-05-23  Kristian Høgsberg  <krh@redhat.com>
5174  
5175         Patch from Timo Teräs <ext-timo.teras@nokia.com> (#614):
5176          
5177         * dbus/dbus-message.c (dbus_message_iter_get_args_valist): Swap
5178         operands to && so we call dbus_message_iter_next () for the last
5179         argument also.
5180
5181 2004-05-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5182
5183         * dbus/dbus-object-tree.c
5184         (_dbus_object_tree_list_registered_unlock, lookup_subtree): return
5185         children even if the requested path isn't registered.
5186         (object_tree_test_iteration): test object_tree_list_registered.
5187
5188         * configure.in: undefine HAVE_ABSTRACT_SOCKETS instead of defining
5189         it to 0.
5190         
5191 2004-05-20  Kristian Høgsberg  <krh@redhat.com>
5192
5193         * doc/TODO: Remove resolved items.
5194
5195         * bus/expirelist.h (struct BusExpireList): remove unused n_items
5196         field.
5197         
5198         * bus/connection.c (bus_connections_expect_reply): Enforce the
5199         per-connection limit on pending replies.
5200         
5201         Patch from Jon Trowbridge <trow@ximian.com>:
5202  
5203         * bus/main.c (setup_reload_pipe): Added.  Creates a pipe and sets
5204         up a watch that triggers a config reload when one end of the pipe
5205         becomes readable.
5206         (signal_handler): Instead of doing the config reload in our SIGHUP
5207         handler, just write to the reload pipe and let the associated
5208         watch handle the reload when control returns to the main loop.
5209  
5210         * bus/driver.c (bus_driver_handle_reload_config): Added.
5211         Implements a ReloadConfig method for requesting a configuration
5212         file reload via the bus driver.
5213  
5214 2004-05-19  Owen Fraser-Green  <owen@discobabe.net>
5215
5216         * HACKING: Updated release instructions concerning the wiki page.
5217
5218 2004-05-18  Kristian Høgsberg  <krh@redhat.com>
5219
5220         * dbus/dbus-auth.c (client_try_next_mechanism): Remove logic to
5221         filter against auth->allowed_mechs; we only add allowed mechs in
5222         record_mechanisms().
5223  
5224         * dbus/dbus-auth-script.c (_dbus_auth_script_run): Add an
5225         ALLOWED_MECHS to auth-script format so we can set the list of
5226         allowed mechanisms.
5227  
5228         * data/auth/client-out-of-mechanisms.auth-script: New test to
5229         check client disconnects when it is out of mechanisms to try.
5230  
5231         * dbus/dbus-auth.c (process_command): Remove check for lines
5232         longer that 1 MB; we only buffer up maximum 16 kB.
5233  
5234         * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
5235         dbus/dbus-auth-script.c, dbus/dbus-auth.c, dbus/dbus-auth.h:
5236         Remove auth state AUTHENTICATED_WITH_UNUSED_BYTES, instead always
5237         assume there might be unused bytes.
5238  
5239         * dbus/dbus-auth.c (_dbus_auth_do_work): Remove check for
5240         client-out-of-mechs, it is handled in process_reject(). Move check
5241         for max failures to send_rejected(), as it's a server-only thing.
5242
5243         * dbus/dbus-auth.c: Factor out protocol reply code into functions
5244         send_auth(), send_data(), send_rejected(), send_error(),
5245         send_ok(), send_begin() and send_cancel().
5246
5247 2004-05-17  Kristian Høgsberg  <krh@redhat.com>
5248
5249         Remove base64 encoding, replace with hex encoding. Original patch
5250         from trow@ximian.com, added error handling.
5251
5252         * dbus/dbus-string.c (_dbus_string_base64_encode)
5253         (_dbus_string_base64_decode): Remove.
5254         (_dbus_string_hex_decode): Add end_return argument so we can
5255         distinguish between OOM and invalid hex encoding.
5256         (_dbus_string_test): Remove base64 tests and add test case for
5257         invalid hex.
5258
5259         * dbus/dbus-keyring.c, dbus/dbus-auth-script.c, dbus/dbus-auth.c:
5260         Replace base64 with hex.
5261
5262         * test/data/auth/invalid-hex-encoding.auth-script: New test case
5263         for invalid hex encoded data in auth protocol.
5264
5265 2004-05-17  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5266
5267         * dbus/dbus-connection.c (check_for_reply_unlocked): plug a memory
5268         leak.
5269
5270 2004-05-15  Owen Fraser-Green  <owen@discobabe.net>
5271
5272         * mono/dbus-sharp.dll.config.in: Added for GAC
5273         * mono/dbus-sharp.snk: Added for GAC
5274         * mono/Assembly.cs.in: Added for GAC
5275         * mono/Makefile.am: Changes for GAC installation        
5276         * configure.in: Added refs for dbus-sharp.dll.config.in and
5277         Assembly.cs.in. More fixes for mono testing
5278         * mono/example/Makefile.am: Changed var to CSC
5279         * Makefile.am: Changed flag name to DBUS_USE_CSC
5280
5281 2004-05-15  Owen Fraser-Green  <owen@discobabe.net>
5282
5283         * mono/Makefile.am: Added SUBDIRS for docs. Changed SUBDIRS order
5284         * mono/doc/*: Added documentation framework
5285         * configure.in: Added monodoc check
5286         * README: Added description of mono configure flags
5287
5288 2004-05-11  John (J5) Palmieri  <johnp@redhat.com>:
5289
5290         * doc/dbus-specification.xml: Added a "Required" column to the 
5291         header fields table and changed the "zero or more" verbage in
5292         the above paragraph to read "The header must contain the required 
5293         named header fields and zero or more of the optional named header 
5294         fields".
5295         * test/data/invalid-messages/*.message: Added the required PATH 
5296         named header field to the tests so that they don't fail on 
5297         'Missing path field'
5298
5299 2004-05-07  John (J5) Palmieri  <johnp@redhat.com>
5300
5301         * python/dbus-bindings.pyx.in: Stopped the bindings from trashing
5302         the stack by implicitly defining variable and parameter types and
5303         removing the hack of defining C pointers as python objects and later
5304         casting them.
5305
5306 2004-05-02  Owen Fraser-Green  <owen@discobabe.net>
5307
5308         * mono/Makefile.am: Removed test-dbus-sharp.exe from all target
5309
5310 2004-05-01  Owen Fraser-Green  <owen@discobabe.net>
5311
5312         * mono/DBusType/Dict.cs: Handle empty dicts
5313         * mono/DBusType/Array.cs: Handle empty arrays
5314         * mono/Arguments.cs: Handle empty arguments
5315
5316 2004-04-30  Owen Fraser-Green  <owen@discobabe.net>
5317
5318         * dbus-sharp.pc.in: Modified to include include Libs and Requires
5319         field
5320
5321 2004-04-25  Kristian Høgsberg  <krh@redhat.com>
5322
5323         * test/data/valid-messages/standard-*.message: Update message
5324         test scripts to new header field names.
5325
5326 2004-04-22  John (J5) Palmieri  <johnp@redhat.com>
5327
5328         * test/break-loader.c (randomly_do_n_things): tracked down buffer
5329         overflow to times_we_did_each_thing array which would chop off the
5330         first character of the failure_dir string. Increased the size of
5331         the array to 7 to reflect the number of random mutation functions
5332         we have.
5333
5334 2004-04-21  Kristian Høgsberg  <krh@redhat.com>
5335
5336         * dbus/dbus-server-unix.c (unix_finalize): Don't unref
5337         unix_server->watch here, it is unreffed in disconnect.
5338         (_dbus_server_new_for_tcp_socket): convert NULL host to
5339         "localhost" here so we don't append NULL to address.
5340         
5341         * dbus/dbus-server.c (_dbus_server_test): Add test case for
5342         various addresses, including tcp with no explicit host.
5343
5344 2004-04-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5345
5346         * dbus/dbus-message.c (decode_header_data, decode_string_field):
5347         fix incorrect setting of .name_offset in the HeaderField (it was
5348         off by two bytes, positioned right after the name and typecode)
5349
5350         * bus/bus.c (bus_context_new, bus_context_unref): test before
5351         calling dbus_server_free_data_slot and _dbus_user_database_unref
5352         in case of an error.
5353
5354         * tools/Makefile.am: add $(DBUS_GLIB_TOOL_LIBS), xml libs needed
5355         by libdbus-gtool.
5356
5357 2004-04-19  Kristian Høgsberg  <krh@redhat.com>
5358
5359         * dbus/dbus-transport-unix.c (unix_do_iteration): Rewrite to use
5360         _dbus_poll() instead of select().
5361
5362 2004-04-15  Jon Trowbridge  <trow@ximian.com>
5363
5364         * bus/main.c (signal_handler): Reload the configuration files
5365         on SIGHUP.
5366         (main): Set up our SIGHUP handler.
5367
5368         * bus/bus.c (struct BusContext): Store the config file, user and
5369         fork flag in the BusContext.
5370         (process_config_first_time_only): Added.  Contains the code
5371         (previously in bus_context_new) for setting up the BusContext from
5372         the BusConfigParser that should only be run the first time the
5373         config files are read.
5374         (process_config_every_time): Added.  Contains the code (previously
5375         in bus_context_new) for setting up the BusContext from the
5376         BusConfigParser that should be run every time the config files are
5377         read.
5378         (load_config): Added.  Builds a BusConfigParser from the config
5379         files and passes the resulting structure off to
5380         process_config_first_time_only (assuming this is the first time)
5381         and process_config_every_time.
5382         (bus_context_new): All of the config-related code has been moved
5383         to process_config_first_time_only and process_config_every_time.
5384         Now this function just does the non-config-related initializations
5385         and calls load_config.
5386         (bus_context_reload_config): Added.
5387
5388 2004-04-15  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5389
5390         * bus/driver.c (bus_driver_handle_get_service_owner):
5391         implement a GetServiceOwner method.
5392         * doc/dbus-specification.xml: document it.
5393         * dbus/dbus-errors.h: add a 'ServiceHasNoOwner' error.
5394         
5395         * glib/dbus-gproxy.c (dbus_gproxy_new_for_service_owner):
5396         implement, using the bus GetServiceOwner method.
5397
5398         * test/glib/test-dbus-glib.c:
5399         use dbus_gproxy_new_for_service_owner so that we can receive the
5400         signal. 
5401
5402 2004-04-15  John (J5) Palmieri  <johnp@redhat.com>
5403
5404         * dbus/dbus-internals.c, dbus/dbus-message-builder.c,
5405         dbus/dbus-message.c, dbus/dbus-protocol.h
5406         (DBUS_HEADER_FIELD_SERVICE): renamed DBUS_HEADER_FIELD_DESTINATION
5407
5408         * dbus/dbus-internals.c, dbus/dbus-message-builder.c,
5409         dbus/dbus-message.c, dbus/dbus-protocol.h
5410         (DBUS_HEADER_FIELD_SENDER_SERVICE): renamed DBUS_HEADER_FIELD_SENDER
5411
5412         * dbus/dbus-internals.c (_dbus_header_field_to_string):
5413         DBUS_HEADER_FIELD_DESTINATION resolves to "destination"
5414         DBUS_HEADER_FIELD_SENDER resolves to "sender"
5415
5416         * doc/dbus-specification.xml (Header Fields Table):
5417         s/SERVICE/DESTINATION
5418         s/SENDER_SERVICE/SENDER
5419
5420
5421 2004-04-14  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5422
5423         * test/glib/test-dbus-glib.c (timed_exit): fail the test after
5424         a few seconds.
5425
5426 2004-04-13  Michael Meeks  <michael@ximian.com>
5427
5428         * glib/dbus-gobject.c (handle_introspect): split out
5429         (introspect_properties): this.
5430         (handle_introspect): implement this.
5431
5432         * test/glib/Makefile.am: use the absolute path so the bus
5433         daemon's chdir ("/") doesn't kill us dead.
5434
5435         * configure.in: subst ABSOLUTE_TOP_BUILDDIR
5436
5437 2004-04-12  Jon Trowbridge  <trow@ximian.com>
5438
5439         * bus/config-parser.c (struct BusConfigParser): Added
5440         included_files field.
5441         (seen_include): Added.  Checks whether or not a file has already
5442         been included by any parent BusConfigParser.
5443         (bus_config_parser_new): Copy the parent's included_files.
5444         (include_file): Track which files have been included, and fail on
5445         circular inclusions.
5446         (process_test_valid_subdir): Changed printf to report if we are
5447         testing valid or invalid conf files.
5448         (all_are_equiv): Changed printf to be a bit clearer about
5449         what we are actually doing.
5450         (bus_config_parser_test): Test invalid configuration files.
5451
5452 2004-04-09  Jon Trowbridge  <trow@ximian.com>
5453
5454         * bus/config-parser.c (bus_config_parser_new): Added a 'parent'
5455         argument.  If non-null, the newly-constructed BusConfigParser will
5456         be initialized with the parent's BusLimits instead of the default
5457         values.
5458         (include_file): When including a config file, pass in
5459         the current parser as the parent and then copy the BusLimits
5460         from the included BusConfigParser pack to the current parser.
5461         (process_test_valid_subdir): Renamed from process_test_subdir.
5462         (process_test_equiv_subdir): Added.  Walks through a directory,
5463         descending into each subdirectory and loading the config files
5464         it finds there.  If any subdirectory contains two config files
5465         that don't produce identical BusConfigParser structs, fail.
5466         For now, the BusConfigParser's BusPolicies are not compared.
5467         (bus_config_parser_test): Call both process_test_valid_subdir and
5468         process_test_equiv_subdir.
5469
5470         * bus/config-loader-libxml.c (bus_config_load): Take a parent
5471         argument and pass it along to the call to bus_config_parser_new.
5472         Also made a few small changes to allow this code to compile.
5473
5474         * bus/config-loader-expat.c (bus_config_load): Take a parent
5475         argument and pass it along to the call to bus_config_parser_new.
5476
5477         * bus/bus.c (bus_context_new): Load the config file
5478         with a NULL parent argument.
5479
5480 2004-03-29  Michael Meeks  <michael@ximian.com>
5481
5482         * glib/dbus-gobject.c (introspect_properties): split
5483         out, fix mangled 'while' flow control.
5484         (introspect_signals): implement.
5485         (handle_introspect): update.
5486
5487 2004-03-29  Michael Meeks  <michael@ximian.com>
5488
5489         * glib/dbus-gobject.c (set_object_property): split out / 
5490         re-work, use the property type, and not the message type(!)
5491         (get_object_property): ditto.
5492
5493         * glib/dbus-gvalue.c (dbus_gvalue_demarshal),
5494         (dbus_gvalue_marshal): make this code re-usable, needed
5495         for signals too, also on both proxy and server side.
5496         Re-write for more efficiency / readability.
5497
5498 2004-03-29  Michael Meeks  <michael@ximian.com>
5499
5500         * dbus/dbus-message.c
5501         (dbus_message_new_error_printf): impl.
5502
5503         * dbus/dbus-connection.c
5504         (dbus_connection_unregister_object_path): fix warning.
5505
5506         * configure.in: fix no-mono-installed situation.
5507
5508 2004-03-27  Havoc Pennington  <hp@redhat.com>
5509
5510         Patch from Timo Teräs:
5511         
5512         * tools/dbus-send.c (main): if --print-reply, assume type is
5513         method call; support boolean type args
5514         
5515         * dbus/dbus-connection.c (dbus_connection_send_with_reply): fix a
5516         bunch of memleak and logic bugs
5517         
5518 2004-03-23  Owen Fraser-Green  <owen@discobabe.net>
5519
5520         * mono/Arguments.cs:
5521         * mono/Introspector.cs:
5522         * mono/Handler.cs:
5523         * mono/InterfaceProxy.cs:
5524         * mono/Message.cs
5525         * mono/ProxyBuilder.cs:
5526         * mono/Service.cs:
5527         Added InterfaceProxy class to avoid building proxies for every
5528         object.
5529
5530         * dbus-message.h:
5531         * dbus-message.c (dbus_message_append_args_valist)
5532         (dbus_message_iter_get_object_path)
5533         (dbus_message_iter_get_object_path_array)
5534         (dbus_message_iter_append_object_path)
5535         (dbus_message_iter_append_object_path_array):
5536         Added object_path iter functions to handle OBJECT_PATH arguments
5537         
5538 2004-03-23  Owen Fraser-Green  <owen@discobabe.net>
5539
5540         First checkin of mono bindings.
5541         * configure.in:
5542         * Makefile.am:
5543         Build stuff for the bindings
5544         * dbus-sharp.pc.in: Added for pkgconfig
5545         
5546 2004-03-21  Havoc Pennington  <hp@redhat.com>
5547
5548         * test/test-service.c (main): remove debug spew
5549
5550 2004-03-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5551
5552         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): accept empty
5553         arrays
5554
5555         * dbus/dbus-message.h, bus/dbus-message.c (dbus_message_iter_init)
5556         (dbus_message_iter_init_array_iterator)
5557         (dbus_message_iter_init_dict_iterator): return a dbus_bool_t to
5558         indicate whether the iterator is empty
5559
5560         * dbus/dbus-pending-call.c, dbus/dbus-server.c: silence compiler
5561         warnings
5562
5563 2004-03-19  Havoc Pennington  <hp@redhat.com>
5564
5565         * NEWS: 0.21 updates
5566
5567         * configure.in: 0.21
5568
5569         * doc/Makefile.am: add all XMLTO usage to DBUS_XML_DOCS_ENABLED
5570         
5571         * python/Makefile.am: change to avoid dist of dbus_bindings.c so
5572         you don't need pyrex to make dist
5573
5574         * qt/Makefile.am (libdbus_qt_1_la_SOURCES): add integrator.h to
5575         sources; run moc
5576         
5577 2004-03-18  Richard Hult  <richard@imendio.com>
5578
5579         * dbus/dbus-message.c (dbus_message_get_auto_activation) 
5580         (dbus_message_set_auto_activation): Add doxygen docs.
5581
5582 2004-03-16  Richard Hult  <richard@imendio.com>
5583
5584         * bus/activation.c: (bus_activation_service_created),
5585         (bus_activation_send_pending_auto_activation_messages),
5586         (bus_activation_activate_service):
5587         * bus/activation.h:
5588         * bus/dispatch.c: (bus_dispatch),
5589         (check_nonexistent_service_auto_activation),
5590         (check_service_auto_activated),
5591         (check_segfault_service_auto_activation),
5592         (check_existent_service_auto_activation), (bus_dispatch_test):
5593         * bus/driver.c: (bus_driver_handle_activate_service):
5594         * bus/services.c: (bus_registry_acquire_service):
5595         * dbus/dbus-message.c: (dbus_message_set_auto_activation),
5596         (dbus_message_get_auto_activation):
5597         * dbus/dbus-message.h:
5598         * dbus/dbus-protocol.h: Implement auto-activation.
5599         
5600         * doc/dbus-specification.xml: Add auto-activation to the spec.
5601
5602 2004-03-12  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5603
5604         * dbus/dbus-marshal.c (_dbus_marshal_get_arg_end_pos):
5605         fix a bug with CUSTOM types.
5606
5607         * dbus/dbus-message.c (message_iter_test, _dbus_message_test): add
5608         a unit test for this bug (used to fail).
5609
5610 2004-03-12  Mikael Hallendal  <micke@imendio.com>
5611
5612         * bus/activation.c:
5613         (babysitter_watch_callback): notify all pending activations waiting for
5614           the same exec that the activation failed.
5615         (bus_activation_activate_service): shortcut the activation if we 
5616           already waiting for the same executable to start up.
5617
5618 2004-03-12  Mikael Hallendal  <micke@imendio.com>
5619
5620         * bus/activation.c: 
5621         - Added service file reloading. 
5622           Each service files directory is kept in an hash table in 
5623           BusActivation and each BusActivationEntry knows what .service-file it
5624           was read from. So when you try to activate a service the bus will 
5625           check if it's been updated, removed or if new .service-files has 
5626           been installed.
5627         - Test code at the bottom for the service file reloading.
5628         * bus/test-main.c: (main):
5629         * bus/test.h:
5630         - added service reloading test.
5631         * dbus/dbus-sysdeps.c: 
5632         * dbus/dbus-sysdeps.h: (_dbus_delete_directory): Added.
5633
5634 2004-03-08  Michael Meeks  <michael@ximian.com>
5635
5636         * dbus/dbus-connection.c (_dbus_connection_block_for_reply): 
5637         bail immediately if disconnected, to avoid busy loop.
5638
5639         * dbus/dbus-message.c (dbus_message_iter_get_args_valist):
5640         cleanup cut/paste/inefficiency.
5641
5642 2004-03-01  David Zeuthen  <david@fubar.dk>
5643
5644         * dbus/dbus-string.c (_dbus_string_append_printf_valist): Fix a
5645         bug where args were used twice. This bug resulted in a segfault
5646         on a Debian/PPC system when starting the messagebus daemon. Include
5647         dbus-sysdeps.h for DBUS_VA_COPY
5648
5649         * dbus/dbus-sysdeps.h: Define DBUS_VA_COPY if neccessary. From GLib
5650
5651         * configure.in: Check for va_copy; define DBUS_VA_COPY to the
5652         appropriate va_copy implementation. From GLib
5653         
5654 2004-02-24  Joe Shaw  <joe@ximian.com>
5655
5656         * bus/services.c (bus_registry_acquire_service): We need to pass
5657         in the service name to dbus_set_error() to prevent a crash.
5658
5659 2003-12-26  Anders Carlsson  <andersca@gnome.org>
5660
5661         * AUTHORS: Reveal my True identity.
5662
5663 2003-12-17  Mikael Hallendal  <micke@imendio.com>
5664
5665         * dbus/dbus-message.c: (dbus_message_append_args_valist): 
5666         - Added case for DBUS_TYPE_BYTE, patch from Johan Hedberg.
5667
5668 2003-12-13  Mikael Hallendal  <micke@imendio.com>
5669
5670         * doc/TODO: Added not about better error check of configuration files.
5671
5672 2003-12-02  Richard Hult  <richard@imendio.com>
5673
5674         * Update AFL version to 2.0 throughout the source files to reflect
5675         the update that was done a while ago.
5676
5677 2003-12-02  Richard Hult  <richard@imendio.com>
5678
5679         * dbus/dbus-message.c (dbus_message_iter_append_dict): Set
5680         wrote_dict_key to FALSE on the iter that the dict is appended to,
5681         just like when appending other types. Fixes a bug where a dict
5682         couldn't be put inside a dict.
5683         (dbus_message_iter_append_dict_key): Fix typo in warning message.
5684         (message_iter_test, _dbus_message_test): Add test case for dict
5685         inside dict.
5686
5687 2003-12-01  David Zeuthen  <david@fubar.dk>
5688
5689         * python/dbus.py: Add the actual message when calling the reciever
5690         of a signal such that parameters can be inspected. Add the method
5691         remove_signal_receiver
5692         
5693 2003-11-26  Mikael Hallendal  <micke@imendio.com>
5694
5695         * bus/*.[ch]:
5696         * dbus/*.[ch]:
5697         * glib/*.[ch]: Made ref functions return the pointer
5698
5699 2003-11-25  Zack Rusin  <zack@kde.org>
5700
5701         * qt/integrator.h, qt/integrator.cpp: Adding handling of DBusServer,
5702
5703         * qt/server.h, qt/server.cpp, qt/Makefile.am: Adding DBusServer 
5704         wrappers,
5705
5706         * qt/connection.h, qt/connection.cpp: Adjusting to changes in 
5707         the Integrator and to better fit with the server,
5708
5709 2003-11-24  Zack Rusin  <zack@kde.org>
5710
5711         * qt/connection.h, qt/connection.cpp: removing initDbus method since
5712         the integrator handles it now
5713
5714         * qt/integrator.h, qt/integrator.cpp: reworking handling of timeouts,
5715         since QTimer wasn't really meant to be used the way DBusTimeout is
5716
5717 2003-11-24  Zack Rusin  <zack@kde.org>
5718
5719         * qt/integrator.h, qt/integrator.cpp, Makefile.am: Adding 
5720         Integrator class which integrates D-BUS with the Qt event loop,
5721
5722         * qt/connection.h, qt/connection.cpp: Move all the code which
5723         was dealing with D-BUS integration to the Integrator class,
5724         and start using Integrator,
5725
5726 2003-11-23  Zack Rusin  <zack@kde.org>
5727
5728         * qt/connection.h, qt/connection.cpp: Adding the DBusConnection 
5729         wrapper
5730
5731         * qt/message.h, qt/message.cpp: updating to the current D-BUS api,
5732         switching namespaces to DBusQt, reworking the class,
5733
5734         * Makefile.cvs: switching dependencies so that it matches KDE 
5735         schematics,
5736         
5737         * qt/Makefile.am: adding connection.{h,cpp} and message.{h,cpp} to 
5738         the library
5739
5740 2003-11-19  Havoc Pennington  <hp@redhat.com>
5741
5742         * NEWS: update
5743
5744         * configure.in: bump version to 0.20
5745
5746         * configure.in (have_qt): add yet another place to look for qt
5747         (someone hand trolltech a .pc file...)
5748
5749 2003-11-01  Havoc Pennington  <hp@redhat.com>
5750
5751         * doc/dbus-specification.xml: add state machine docs on the auth
5752         protocol; just a first draft, I'm sure it's wrong.      
5753
5754 2003-10-28  David Zeuthen  <david@fubar.dk>
5755
5756         * python/dbus_bindings.pyx.in: add get_dict to handle dictionaries
5757         return types. Fixup TYPE_* to reflect changes in dbus/dbus-protocol.h
5758         
5759 2003-10-28  Havoc Pennington  <hp@redhat.com>
5760
5761         * dbus/dbus-message.c (get_next_field): delete unused function
5762
5763 2003-10-28  Havoc Pennington  <hp@redhat.com>
5764
5765         * bus/expirelist.c (do_expiration_with_current_time): detect
5766         failure of the expire_func due to OOM
5767
5768         * bus/connection.c (bus_pending_reply_expired): return FALSE on OOM
5769
5770         * bus/dispatch.c (check_send_exit_to_service): fix to handle the
5771         NoReply error that's now created by the bus when the service exits
5772
5773 2003-10-28  Havoc Pennington  <hp@redhat.com>
5774
5775         * dbus/dbus-message.c (_dbus_message_test): enable and fix the
5776         tests for set_path, set_interface, set_member, etc.
5777
5778         * dbus/dbus-string.c (_dbus_string_insert_bytes): allow 0 bytes
5779
5780         * dbus/dbus-message.c (set_string_field): always just delete and
5781         re-append the field; accept NULL for deletion
5782         (re_align_fields_recurse): reimplement
5783         
5784 2003-10-26  Havoc Pennington  <hp@redhat.com>
5785
5786         * dbus/dbus-connection.c: fix docs to properly describe the
5787         disconnected message
5788         (_dbus_connection_notify_disconnected): remove this function; 
5789         we can't synchronously add the disconnected message, we have to 
5790         do it after we've queued any remaining real messages
5791         (_dbus_connection_get_dispatch_status_unlocked): queue the
5792         disconnect message only if the transport has finished queueing all
5793         its real messages and is disconnected.
5794         (dbus_connection_disconnect): update the dispatch status here
5795
5796 2003-10-22  Havoc Pennington  <hp@redhat.com>
5797
5798         * bus/bus.c (bus_context_check_security_policy): fix up assertion
5799
5800         * bus/connection.c (bus_transaction_send_from_driver): set the
5801         destination to the connection's base service
5802
5803 2003-10-20  Havoc Pennington  <hp@redhat.com>
5804
5805         hmm, make check is currently not passing.
5806         
5807         * doc/dbus-specification.xml: add requirement that custom type
5808         names follow the same rules as interface names.
5809
5810         * dbus/dbus-protocol.h: change some of the byte codes, to avoid
5811         duplication and allow 'c' to be 'custom'; dict is now 'm' for
5812         'map'
5813
5814         * doc/dbus-specification.xml: update type codes to match
5815         dbus-protocol.h, using the ASCII byte values. Rename type NAMED to
5816         CUSTOM. Add type OBJECT_PATH to the spec.
5817
5818 2003-10-17  Havoc Pennington  <hp@redhat.com>
5819
5820         * bus/driver.c (create_unique_client_name): use "." as separator
5821         in base service names instead of '-'
5822
5823         * dbus/dbus-string.c (_dbus_string_get_byte): allow getting nul
5824         byte at the end of the string
5825
5826         * dbus/dbus-internals.h (_DBUS_LIKELY, _DBUS_UNLIKELY): add
5827         optimization macros since string validation seems to be a slow
5828         point.
5829         
5830         * doc/dbus-specification.xml: restrict valid
5831         service/interface/member/error names. Add test suite code for the
5832         name validation.
5833
5834         * dbus/dbus-string.c: limit service/interface/member/error names 
5835         to [0-9][A-Z][a-z]_
5836
5837         * dbus/dbus-connection.c (dbus_connection_dispatch): add missing
5838         format arg to verbose spew
5839
5840         * glib/dbus-gproxy.c (dbus_gproxy_call_no_reply): if not out of
5841         memory, return instead of g_error
5842
5843         * test/test-service.c (path_message_func): support emitting a
5844         signal on request
5845
5846         * dbus/dbus-bus.c (init_connections_unlocked): only fill in
5847         activation bus type if DBUS_BUS_ACTIVATION was set; default to
5848         assuming the activation bus was the session bus so that services
5849         started manually will still register.
5850         (init_connections_unlocked): fix so that in OOM situation we get
5851         the same semantics when retrying the function
5852         
5853         * test/test-service.c (main): change to use path registration, to
5854         test those codepaths; register with DBUS_BUS_ACTIVATION rather
5855         than DBUS_BUS_SESSION
5856
5857 2003-10-16  Havoc Pennington  <hp@redhat.com>
5858
5859         * glib/dbus-gtest-main.c: bracket with #ifdef DBUS_BUILD_TESTS
5860
5861         * Makefile.am (GCOV_DIRS): remove "test", we don't care about test
5862         coverage of the tests
5863         (coverage-report.txt): don't move the .da and .bbg files around
5864
5865 2003-10-16  Havoc Pennington  <hp@redhat.com>
5866
5867         * bus/bus.c (struct BusContext): remove struct field I didn't mean
5868         to put there
5869
5870 2003-10-16  Havoc Pennington  <hp@redhat.com>
5871
5872         * bus/connection.c (bus_pending_reply_expired): either cancel or
5873         execute, not both
5874         (bus_connections_check_reply): use unlink, not remove_link, as we
5875         don't want to free the link; fixes double free mess
5876
5877         * dbus/dbus-pending-call.c (dbus_pending_call_block): fix in case
5878         where no reply was received
5879
5880         * dbus/dbus-connection.c (_dbus_pending_call_complete_and_unlock):
5881         fix a refcount leak
5882
5883         * bus/signals.c (match_rule_matches): add special cases for the
5884         bus driver, so you can match on sender/destination for it.
5885
5886         * dbus/dbus-sysdeps.c (_dbus_abort): print backtrace if
5887         DBUS_PRINT_BACKTRACE is set
5888
5889         * dbus/dbus-internals.c: add pid to assertion failure messages
5890
5891         * dbus/dbus-connection.c: add message type code to the debug spew
5892
5893         * glib/dbus-gproxy.c (gproxy_get_match_rule): match rules want
5894         sender=foo not service=foo
5895
5896         * dbus/dbus-bus.c (dbus_bus_get): if the activation bus is the
5897         session bus but DBUS_SESSION_BUS_ADDRESS isn't set, use 
5898         DBUS_ACTIVATION_ADDRESS instead
5899
5900         * bus/activation.c: set DBUS_SESSION_BUS_ADDRESS,
5901         DBUS_SYSTEM_BUS_ADDRESS if appropriate
5902
5903         * bus/bus.c (bus_context_new): handle OOM copying bus type into
5904         context struct
5905
5906         * dbus/dbus-message.c (dbus_message_iter_get_object_path): new function
5907         (dbus_message_iter_get_object_path_array): new function (half
5908         finished, disabled for the moment)
5909         
5910         * glib/dbus-gproxy.c (dbus_gproxy_end_call): properly handle
5911         DBUS_MESSAGE_TYPE_ERROR
5912
5913         * tools/dbus-launch.c (babysit): support DBUS_DEBUG_OUTPUT to
5914         avoid redirecting stderr to /dev/null
5915         (babysit): close stdin if not doing the "exit_with_session" thing
5916
5917         * dbus/dbus-sysdeps.c (_dbus_become_daemon): delete some leftover
5918         debug code; change DBUS_DEBUG_OUTPUT to only enable stderr, not
5919         stdout/stdin, so things don't get confused
5920         
5921         * bus/system.conf.in: fix to allow replies, I modified .conf
5922         instead of .conf.in again.
5923
5924 2003-10-14  David Zeuthen  <david@fubar.dk>
5925
5926         * python/dbus_bindings.pyx.in (MessageIter.get): fixed typo in
5927         argtype to arg_type when raising unknown arg type exception.
5928         Changed type list to reflect the changes in dbus-protocol.h so 
5929         the bindings actually work.
5930
5931 2003-10-14  Havoc Pennington  <hp@redhat.com>
5932
5933         * test/decode-gcov.c: support gcc 3.3 also, though gcc 3.3 seems
5934         to have a bug keeping it from outputting the .da files sometimes
5935         (string_get_string): don't append garbage nul bytes to the string.
5936
5937 2003-10-15  Seth Nickell  <seth@gnome.org>
5938
5939         * python/Makefile.am:
5940
5941         Include dbus_h_wrapper.h in the dist tarball.
5942
5943 2003-10-14  Havoc Pennington  <hp@redhat.com>
5944
5945         * bus/bus.c (bus_context_check_security_policy): revamp this to
5946         work more sanely with new policy-based requested reply setup
5947
5948         * bus/connection.c (bus_transaction_send_from_driver): set bus
5949         driver messages as no reply
5950
5951         * bus/policy.c (bus_client_policy_check_can_receive): handle a
5952         requested_reply attribute on allow/deny rules
5953
5954         * bus/system.conf: add <allow requested_reply="true"/>
5955
5956         * bus/driver.c (bus_driver_handle_message): fix check for replies
5957         sent to the bus driver, which was backward. How did this ever work
5958         at all though? I think I'm missing something.
5959
5960         * dbus/dbus-message.c (decode_header_data): require error and
5961         method return messages to have a reply serial field to be valid
5962         (_dbus_message_loader_queue_messages): break up this function;
5963         validate that reply serial and plain serial are nonzero; 
5964         clean up the OOM/error handling.
5965         (get_uint_field): don't return -1 from this
5966         (dbus_message_create_header): fix signed/unsigned bug
5967
5968         * bus/connection.c (bus_connections_expect_reply): save serial of
5969         the incoming message, not reply serial
5970
5971 2003-10-14  Havoc Pennington  <hp@redhat.com>
5972
5973         * bus/connection.c: implement pending reply tracking using
5974         BusExpireList
5975
5976         * bus/bus.c (bus_context_check_security_policy): verify that a
5977         reply is pending in order to allow a reply to be sent. Deny 
5978         messages of unknown type.
5979
5980         * bus/dbus-daemon-1.1.in: update to mention new resource limits
5981
5982         * bus/bus.c (bus_context_get_max_replies_per_connection): new
5983         (bus_context_get_reply_timeout): new
5984
5985 2003-10-13  Seth Nickell  <seth@gnome.org>
5986
5987         * python/Makefile.am:
5988
5989         Pass "make distcheck": remove a couple files from DIST_FILES
5990         that weren't included in the final version.
5991
5992 2003-10-12  Havoc Pennington  <hp@pobox.com>
5993
5994         Added test code that 1) starts an actual bus daemon and 2) uses
5995         DBusGProxy; fixed bugs that were revealed by the test. Lots 
5996         more testing possible, but this is the basic framework.
5997         
5998         * glib/dbus-gproxy.c (dbus_gproxy_manager_unregister): remove
5999         empty proxy lists from the proxy list hash
6000
6001         * dbus/dbus-message.c (dbus_message_iter_get_args_valist): add a
6002         couple of return_if_fail checks
6003
6004         * dbus/dbus-pending-call.c (_dbus_pending_call_new): use dbus_new0
6005         to allocate, so everything is cleared to NULL as it should be.
6006
6007         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): pass
6008         source as data to dbus_connection_set_timeout_functions() as the 
6009         timeout functions expected
6010
6011         * test/glib/run-test.sh: add a little script to start up a message
6012         bus and run tests using it
6013
6014         * tools/dbus-launch.1: updates
6015
6016         * tools/dbus-launch.c (main): add --config-file option
6017
6018         * tools/dbus-launch.c (main): remove confusing else if (runprog)
6019         that could never be reached.
6020
6021         * dbus/dbus-message.c (dbus_message_new_method_return) 
6022         (dbus_message_new_error, dbus_message_new_signal): set the
6023         no-reply-expected flag on all these. Redundant, but may
6024         as well be consistent.
6025
6026 2003-10-11  Havoc Pennington  <hp@pobox.com>
6027
6028         * test/decode-gcov.c (function_solve_graph): make broken block
6029         graph a nonfatal error since it seems to be broken. Need to debug
6030         this.
6031
6032         * dbus/dbus-marshal.c (_dbus_type_is_valid): new function since we
6033         can't just check type > INVALID < LAST anymore
6034
6035         * dbus/dbus-message.c (dbus_message_get_signature): new function
6036         (dbus_message_has_signature): new function
6037         (struct DBusMessage): add signature field (right now it isn't sent
6038         over the wire, just generated on the fly)
6039         (dbus_message_copy): copy the signature, and init strings to
6040         proper length to avoid some reallocs
6041         (dbus_message_iter_init_array_iterator): return void, since it
6042         can't fail
6043         (dbus_message_iter_init_dict_iterator): return void since it can't fail
6044         (_dbus_message_loader_queue_messages): add silly temporary hack to
6045         fill in message->signature on load
6046
6047         * dbus/dbus-protocol.h: change DBUS_TYPE_* values to be ASCII
6048         characters, so they are relatively human-readable.
6049
6050 2003-10-11  Havoc Pennington  <hp@pobox.com>
6051
6052         * dbus/dbus-message.c (_dbus_message_test): add more test
6053         coverage, but #if 0 for now since they uncover a bug 
6054         not fixed yet; I think in re_align_field_recurse()
6055         (re_align_field_recurse): add FIXME about broken assertion
6056
6057         * dbus/dbus-sysdeps.c (_dbus_sysdeps_test): add more test coverage
6058
6059         * bus/connection.c: share a couple code bits with expirelist.c
6060
6061         * bus/expirelist.h, bus/expirelist.c: implement a generic
6062         expire-items-after-N-seconds facility, was going to share between
6063         expiring connections and replies, decided not to use for expiring
6064         connections for now.
6065
6066         * COPYING: include AFL 2.0 (still need to change all the file headers)
6067
6068 2003-10-09  Havoc Pennington  <hp@redhat.com>
6069
6070         * configure.in: define DBUS_HAVE_GCC33_GCOV if we have
6071         gcc 3.3. Not that we do anything about it yet.
6072
6073         * bus/signals.c (bus_match_rule_parse): impose max length on the
6074         match rule text
6075
6076         * dbus/dbus-protocol.h: add DBUS_MAXIMUM_MATCH_RULE_LENGTH
6077
6078 2003-10-09  Havoc Pennington  <hp@redhat.com>
6079
6080         Make matching rules theoretically work (add parser).
6081         
6082         * bus/bus.c (bus_context_check_security_policy): fix up to handle
6083         the case where destination is explicitly specified as bus driver
6084         and someone else is eavesdropping.
6085         
6086         * bus/policy.c (bus_client_policy_check_can_receive): fix up
6087         definition of eavesdropping and assertion
6088
6089         * tools/dbus-send.c (main): use dbus_message_type_from_string
6090
6091         * bus/signals.c (bus_match_rule_parse): implement
6092
6093         * dbus/dbus-message.c (dbus_message_type_from_string): new
6094
6095         * dbus/dbus-errors.h (DBUS_ERROR_MATCH_RULE_INVALID): add
6096
6097 2003-10-02  Havoc Pennington  <hp@pobox.com>
6098
6099         * glib/dbus-gproxy.c (dbus_gproxy_call_no_reply): rename from
6100         dbus_gproxy_oneway_call
6101
6102         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main) 
6103         (dbus_server_setup_with_g_main): fix to allow calling them more
6104         than once on the same args
6105         (dbus_bus_get_with_g_main): new function
6106
6107 2003-10-02  Havoc Pennington  <hp@redhat.com>
6108
6109         * doc/dbus-tutorial.xml: write some stuff
6110
6111 2003-09-29  Havoc Pennington  <hp@pobox.com>
6112
6113         * configure.in: split checks for Doxygen from XML docs, check for
6114         xmlto
6115
6116         * doc/Makefile.am: XML-ify all the docs, and add a blank
6117         dbus-tutorial.xml
6118
6119 2003-09-29  Havoc Pennington  <hp@pobox.com>
6120
6121         * Merge dbus-object-names branch. To see the entire patch 
6122         do cvs diff -r DBUS_OBJECT_NAMES_BRANCHPOINT -r dbus-object-names,
6123         it's huuuuge though.
6124         To revert, I tagged DBUS_BEFORE_OBJECT_NAMES_MERGE.
6125         
6126 2003-09-28  Havoc Pennington  <hp@pobox.com>
6127
6128         * HACKING: update to reflect new server
6129
6130 2003-09-26  Seth Nickell  <seth@gnome.org>
6131
6132         * python/dbus.py:
6133         * python/examples/example-signals.py:
6134
6135         Start implementing some notions of signals. The API
6136         is really terrible, but they sort of work (with the
6137         exception of being able to filter by service, and to
6138         transmit signals *as* a particular service). Need to
6139         figure out how to make messages come from the service
6140         we registered :-(
6141         
6142         * python/dbus_bindings.pyx.in:
6143
6144         Removed duplicate message_handler callbacks.
6145         
6146 2003-09-25  Havoc Pennington  <hp@redhat.com>
6147
6148         * bus/session.conf.in: fix my mess
6149
6150 2003-09-25  Havoc Pennington  <hp@pobox.com>
6151
6152         * bus/session.conf.in: fix security policy, reported by Seth Nickell
6153
6154 2003-09-25  Seth Nickell  <seth@gnome.org>
6155
6156         * python/examples/example-service.py:
6157
6158         Johan notices complete wrong code in example-service, but
6159         completely wrong in a way that works exactly the same (!).
6160         Johan is confused, how could this possibly work? Example
6161         code fails to serve purpose of making things clear.
6162         Seth fixes.
6163
6164 2003-09-25  Mark McLoughlin  <mark@skynet.ie>
6165
6166         * doc/dbus-specification.sgml: don't require header fields
6167         to be 4-byte aligned and specify that fields should be
6168         distinguished from padding by the fact that zero is not
6169         a valid field name.
6170         
6171         * doc/TODO: remove re-alignment item and add item to doc
6172         the OBJECT_PATH type.
6173         
6174         * dbus/dbus-message.c:
6175         (HeaderField): rename the original member to value_offset
6176         and introduce a name_offset member to keep track of where
6177         the field actually begins.
6178         (adjust_field_offsets): remove.
6179         (append_int_field), (append_uint_field),
6180         (append_string_field): don't align the start of the header
6181         field to a 4-byte boundary.
6182         (get_next_field): impl finding the next marhsalled field
6183         after a given field.
6184         (re_align_field_recurse): impl re-aligning a number of
6185         already marshalled fields.
6186         (delete_field): impl deleting a field of any type and
6187         re-aligning any following fields.
6188         (delete_int_or_uint_field), (delete_string_field): remove.
6189         (set_int_field), (set_uint_field): no need to re-check
6190         that we have the correct type for the field.
6191         (set_string_field): ditto and impl re-aligning any
6192         following fields.
6193         (decode_header_data): update to take into account that
6194         the fields aren't 4-byte aligned any more and the new
6195         way to distinguish padding from header fields. Also,
6196         don't exit when there is too much header padding.
6197         (process_test_subdir): print the directory.
6198         (_dbus_message_test): add test to make sure a following
6199         field is re-aligned correctly after field deletion.
6200         
6201         * dbus/dbus-string.[ch]:
6202         (_dbus_string_insert_bytes): rename from insert_byte and
6203         allow the insert of multiple bytes.
6204         (_dbus_string_test): test inserting multiple bytes.
6205
6206         * dbus/dbus-marshal.c: (_dbus_marshal_set_string): add
6207         warning note to docs about having to re-align any
6208         marshalled values following the string.
6209         
6210         * dbus/dbus-message-builder.c:
6211         (append_string_field), (_dbus_message_data_load):
6212         don't align the header field.
6213         
6214         * dbus/dbus-auth.c: (process_test_subdir): print the
6215         directory.
6216         
6217         * test/break-loader.c: (randomly_add_one_byte): upd. for
6218         insert_byte change.
6219         
6220         * test/data/invalid-messages/bad-header-field-alignment.message:
6221         new test case.
6222         
6223         * test/data/valid-messages/unknown-header-field.message: shove
6224         a dict in the unknown field.
6225
6226 2003-09-25  Seth Nickell  <seth@gnome.org>
6227
6228         * python/dbus.py:
6229         * python/dbus_bindings.pyx.in:
6230
6231         Handle return values.
6232         
6233         * python/examples/example-client.py:
6234         * python/examples/example-service.py:
6235
6236         Pass back return values from the service to the client.
6237         
6238 2003-09-24  Seth Nickell  <seth@gnome.org>
6239
6240         * python/dbus.py:
6241
6242         Connect Object methods (when you are sharing an object) up... pass
6243         in a list of methods to be shared. Sharing all the methods just
6244         worked out too weird. You can now create nice Services over the
6245         DBus in Python. :-)
6246         
6247         * python/dbus_bindings.pyx.in:
6248
6249         Keep references to user_data tuples passed into C functions so 
6250         Python doesn't garbage collect on us.
6251
6252         Implement MethodReturn and Error subclasses of Message for creating
6253         DBusMessage's of those types.
6254         
6255         * python/examples/example-client.py:
6256         * python/examples/example-service.py:
6257
6258         Simple example code showing both how create DBus services and objects,
6259         and how to use them.
6260
6261 2003-09-23  Havoc Pennington  <hp@pobox.com>
6262
6263         * glib/dbus-gproxy.c (dbus_gproxy_manager_filter): implement
6264
6265 2003-09-23  Havoc Pennington  <hp@redhat.com>
6266
6267         * glib/dbus-gproxy.c (dbus_gproxy_connect_signal): implement
6268         (dbus_gproxy_disconnect_signal): implement
6269         (dbus_gproxy_manager_remove_signal_match): implement
6270         (dbus_gproxy_manager_add_signal_match): implement
6271         (dbus_gproxy_oneway_call): implement
6272
6273 2003-09-23  Havoc Pennington  <hp@pobox.com>
6274
6275         * glib/dbus-gproxy.c (struct DBusGProxy): convert to a GObject
6276         subclass. This means dropping the transparent thread safety of the
6277         proxy; you now need a separate proxy per-thread, or your own
6278         locking on the proxy. Probably right anyway.
6279         (dbus_gproxy_ref, dbus_gproxy_unref): nuke, just use g_object_ref
6280
6281 2003-09-22  Havoc Pennington  <hp@redhat.com>
6282
6283         * glib/dbus-gproxy.c (dbus_gproxy_manager_get): implement
6284
6285 2003-09-21  Seth Nickell  <seth@gnome.org>
6286
6287         First checkin of the Python bindings.
6288         
6289         * python/.cvsignore:
6290         * python/Makefile.am:
6291         * python/dbus_bindings.pyx.in:
6292         * python/dbus_h_wrapper.h:
6293
6294         Pieces for Pyrex to operate on, building a dbus_bindings.so
6295         python module for low-level access to the DBus APIs.
6296         
6297         * python/dbus.py:
6298
6299         High-level Python module for accessing DBus objects.
6300
6301         * configure.in:
6302         * Makefile.am:
6303
6304         Build stuff for the python bindings.
6305
6306         * acinclude.m4:
6307
6308         Extra macro needed for finding the Python C header files.
6309
6310 2003-09-21  Havoc Pennington  <hp@pobox.com>
6311
6312         * glib/dbus-gproxy.c (dbus_gproxy_manager_new): start
6313         implementing the proxy manager, didn't get very far.
6314
6315         * dbus/dbus-bus.c (dbus_bus_add_match): new
6316         (dbus_bus_remove_match): new
6317
6318         * glib/dbus-gproxy.c (dbus_gproxy_new_for_service): add a
6319         path_name argument; adjust the other not-yet-implemented 
6320         gproxy constructors to be what I think they should be.
6321
6322 2003-09-21  Havoc Pennington  <hp@pobox.com>
6323
6324         * dbus/dbus-bus.c (dbus_bus_get): set exit_on_disconnect to TRUE
6325         by default for message bus connections.
6326
6327         * dbus/dbus-connection.c (dbus_connection_dispatch): exit if
6328         exit_on_disconnect flag is set and we process the disconnected
6329         signal.
6330         (dbus_connection_set_exit_on_disconnect): new function
6331
6332 2003-09-21  Havoc Pennington  <hp@pobox.com>
6333
6334         Get matching rules mostly working in the bus; only actually
6335         parsing the rule text remains. However, the client side of
6336         "signal connections" hasn't been started, this patch is only the
6337         bus side.
6338         
6339         * dbus/dispatch.c: fix for the matching rules changes
6340         
6341         * bus/driver.c (bus_driver_handle_remove_match)
6342         (bus_driver_handle_add_match): send an ack reply from these
6343         method calls
6344
6345         * glib/dbus-gproxy.c (dbus_gproxy_begin_call): fix order of
6346         arguments, reported by Seth Nickell
6347
6348         * bus/config-parser.c (append_rule_from_element): support
6349         eavesdrop=true|false attribute on policies so match rules 
6350         can be prevented from snooping on the system bus.
6351
6352         * bus/dbus-daemon-1.1.in: consistently use terminology "sender"
6353         and "destination" in attribute names; fix some docs bugs; 
6354         add eavesdrop=true|false attribute
6355
6356         * bus/driver.c (bus_driver_handle_add_match)
6357         (bus_driver_handle_remove_match): handle AddMatch, RemoveMatch
6358         messages
6359
6360         * dbus/dbus-protocol.h (DBUS_SERVICE_ORG_FREEDESKTOP_BROADCAST): get
6361         rid of broadcast service concept, signals are just always broadcast
6362
6363         * bus/signals.c, bus/dispatch.c, bus/connection.c, bus/bus.c:
6364         mostly implement matching rules stuff (currently only exposed as signal
6365         connections)
6366
6367 2003-09-21  Mark McLoughlin  <mark@skynet.ie>
6368
6369         * doc/dbus-specification.sgml: Change the header field name
6370         to be an enum and update the rest of the spec to reference
6371         the fields using the conventinal name.
6372
6373         * dbus/dbus-protocol.h: update to reflect the spec.
6374
6375         * doc/TODO: add item to remove the 4 byte alignment requirement.
6376         
6377         * dbus/dbus-message.c: Remove the code to generalise the
6378         header/body length and serial number header fields as named
6379         header fields so we can reference field names using the 
6380         protocol values.
6381         (append_int_field), (append_uint_field), (append_string_field):
6382         Append the field name as a byte rather than four chars.
6383         (delete_int_or_uint_field), (delete_string_field): reflect the
6384         fact that the field name and typecode now occupy 4 bytes instead
6385         of 8.
6386         (decode_string_field), (decode_header_data): update to reflect
6387         protocol changes and move the field specific encoding from
6388         decode_string_field() back into decode_header_data().
6389         
6390         * dbus/dbus-internals.[ch]: (_dbus_header_field_to_string):
6391         Add utility to aid debugging.
6392         
6393         * dbus/dbus-message-builder.c:
6394         (append_string_field), (_dbus_message_data_load): Update to
6395         reflect protocol changes; Change the FIELD_NAME directive
6396         to HEADER_FIELD and allow it to take the field's conventional
6397         name rather than the actual value.
6398         
6399         * test/data/*/*.message: Update to use HEADER_FIELD instead
6400         of FIELD_NAME; Always align the header on an 8 byte boundary
6401         *before* updating the header length.
6402
6403 2003-09-15  Havoc Pennington  <hp@pobox.com>
6404
6405         * dbus/dbus-pending-call.c: add the get/set object data
6406         boilerplate as for DBusConnection, etc. Use generic object data
6407         for the notify callback.
6408
6409         * glib/dbus-gparser.c (parse_node): parse child nodes
6410
6411         * tools/dbus-viewer.c: more hacking on the dbus-viewer
6412         
6413         * glib/dbus-gutils.c (_dbus_gutils_split_path): add a file to
6414         contain functions shared between the convenience lib and the
6415         installed lib
6416
6417         * glib/Makefile.am (libdbus_glib_1_la_LDFLAGS): add
6418         -export-symbols-regex to the GLib library
6419
6420         * dbus/dbus-object-tree.c (_dbus_object_tree_dispatch_and_unlock):
6421         fix the locking in here, and add a default handler for
6422         Introspect() that just returns sub-nodes.
6423
6424 2003-09-14  Havoc Pennington  <hp@pobox.com>
6425
6426         * glib/dbus-gthread.c (dbus_g_thread_init): rename to make g_foo
6427         rather than gfoo consistent
6428
6429         * glib/dbus-gproxy.h: delete for now, move contents to
6430         dbus-glib.h, because the include files don't work right since we
6431         aren't in the dbus/ subdir.
6432         
6433         * glib/dbus-gproxy.c (dbus_gproxy_send): finish implementing
6434         (dbus_gproxy_end_call): finish
6435         (dbus_gproxy_begin_call): finish
6436
6437         * glib/dbus-gmain.c (dbus_set_g_error): new
6438
6439         * glib/dbus-gobject.c (handle_introspect): include information
6440         about child nodes in the introspection
6441
6442         * dbus/dbus-connection.c (dbus_connection_list_registered): new
6443         function to help in implementation of introspection
6444
6445         * dbus/dbus-object-tree.c
6446         (_dbus_object_tree_list_registered_and_unlock): new function
6447
6448 2003-09-12  Havoc Pennington  <hp@pobox.com>
6449
6450         * glib/dbus-gidl.h: add common base class for all the foo_info
6451         types
6452
6453         * tools/dbus-viewer.c: add GTK-based introspection UI thingy
6454         similar to kdcop
6455
6456         * test/Makefile.am: try test srcdir -ef . in addition to test
6457         srcdir = ., one of them should work (yeah lame)
6458         
6459         * glib/Makefile.am: build the "idl" parser stuff as a convenience
6460         library
6461         
6462         * glib/dbus-gparser.h: make description_load routines return
6463         NodeInfo* not Parser*
6464
6465         * Makefile.am (SUBDIRS): build test dir after all library dirs
6466
6467         * configure.in: add GTK+ detection
6468
6469 2003-09-07  Havoc Pennington  <hp@pobox.com>
6470
6471         * Make Doxygen contented.
6472
6473 2003-09-07  Havoc Pennington  <hp@pobox.com>
6474
6475         * doc/dbus-specification.sgml: more updates
6476
6477 2003-09-06  Havoc Pennington  <hp@pobox.com>
6478
6479         * doc/dbus-specification.sgml: partial updates
6480
6481         * bus/dbus-daemon-1.1.in: fix the config file docs for the
6482         zillionth time; hopefully I edited the right file this time.
6483
6484         * bus/config-parser.c (append_rule_from_element): support
6485         send_type, send_path, receive_type, receive_path
6486
6487         * bus/policy.c: add message type and path to the list of things
6488         that can be "firewalled"
6489
6490 2003-09-06  Havoc Pennington  <hp@pobox.com>
6491
6492         * dbus/dbus-connection.c (dbus_connection_register_fallback): add this
6493         (dbus_connection_register_object_path): make this not handle
6494         messages to paths below the given path
6495
6496 2003-09-03  Havoc Pennington  <hp@pobox.com>
6497
6498         * test/glib/Makefile.am: add this with random glib-linked test
6499         programs
6500
6501         * glib/Makefile.am: remove the random test programs from here,
6502         leave only the unit tests
6503
6504         * glib/dbus-gobject.c (_dbus_gobject_test): add test for 
6505         uscore/javacaps conversion, and fix     
6506         (get_object_property, set_object_property): change to .NET
6507         convention for mapping props to methods, set_FooBar/get_FooBar, 
6508         since one language has such a convention we may as well copy it. 
6509         Plus real methods in either getFooBar or get_foo_bar style won't 
6510         collide with this convention.
6511
6512 2003-09-01  Havoc Pennington  <hp@pobox.com>
6513
6514         * glib/dbus-gparser.c: implement
6515
6516         * glib/dbus-gobject.c: start implementing skeletons support
6517
6518         * configure.in: when disabling checks/assert, also define
6519         G_DISABLE_ASSERT and G_DISABLE_CHECKS
6520
6521 2003-09-01  Havoc Pennington  <hp@pobox.com>
6522
6523         * glib/Makefile.am: rearrange a bunch of files and get "make
6524         check" framework set up
6525
6526 2003-08-31  Havoc Pennington  <hp@pobox.com>
6527
6528         * fix build with --disable-tests
6529
6530 2003-08-30  Havoc Pennington  <hp@pobox.com>
6531
6532         * dbus/dbus-connection.c: purge DBusMessageHandler
6533
6534         * dbus/dbus-message-handler.c: remove DBusMessageHandler, just 
6535         use callbacks everywhere
6536
6537 2003-08-30  Havoc Pennington  <hp@pobox.com>
6538
6539         * test/data/valid-config-files/system.d/test.conf: change to 
6540         root for the user so warnings don't get printed
6541
6542         * dbus/dbus-message.c: add dbus_message_get_path,
6543         dbus_message_set_path
6544         
6545         * dbus/dbus-object-tree.c (do_test_dispatch): add test of
6546         dispatching to a path
6547
6548         * dbus/dbus-string.c (_dbus_string_validate_path): add
6549
6550         * dbus/dbus-marshal.c (_dbus_demarshal_object_path): implement
6551         (_dbus_marshal_object_path): implement
6552
6553         * dbus/dbus-protocol.h (DBUS_HEADER_FIELD_PATH): new header field 
6554         to contain the path to the target object
6555         (DBUS_HEADER_FIELD_SENDER_SERVICE): rename
6556         DBUS_HEADER_FIELD_SENDER to explicitly say it's the sender service
6557
6558 2003-08-30  Havoc Pennington  <hp@pobox.com>
6559
6560         * dbus/dbus-object-tree.c: write tests and fix the discovered bugs
6561
6562 2003-08-29  Havoc Pennington  <hp@pobox.com>
6563
6564         * dbus/dbus-object-tree.c: modify to allow overlapping paths to be
6565         registered
6566         (struct DBusObjectSubtree): shrink this
6567         a lot, since we may have a lot of them
6568         (_dbus_object_tree_free_all_unlocked): implement
6569         (_dbus_object_tree_dispatch_and_unlock): implement
6570
6571 2003-08-29  Havoc Pennington  <hp@pobox.com>
6572
6573         * dbus/dbus-internals.h: fix _DBUS_N_GLOBAL_LOCKS
6574
6575 2003-08-28  Havoc Pennington  <hp@pobox.com>
6576
6577         purge DBusObjectID
6578         
6579         * dbus/dbus-connection.c: port to no ObjectID, create a
6580         DBusObjectTree, rename ObjectTree to ObjectPath in public API
6581
6582         * dbus/dbus-connection.h (struct DBusObjectTreeVTable): delete 
6583         everything except UnregisterFunction and MessageFunction
6584         
6585         * dbus/dbus-marshal.c: port away from DBusObjectID, 
6586         add DBUS_TYPE_OBJECT_PATH
6587         
6588         * dbus/dbus-object-registry.[hc], dbus/dbus-object.[hc], 
6589         dbus/dbus-objectid.[hc]: remove these, we are moving to 
6590         path-based object IDs
6591
6592 2003-08-25  Havoc Pennington  <hp@pobox.com>
6593
6594         Just noticed that dbus_message_test is hosed, I wonder when I
6595         broke that. I thought make check was passing earlier...
6596         
6597         * dbus/dbus-object-tree.c: add new "object tree" to match DCOP 
6598         container tree, will replace most of dbus-object-registry
6599
6600         * dbus/dbus-string.c (_dbus_string_append_printf_valist): fix C99
6601         screwup
6602
6603 2003-08-19  Havoc Pennington  <hp@pobox.com>
6604
6605         * dbus/dbus-message.c (decode_string_field): support FIELD_SENDER
6606         (dbus_message_is_error): fix this function
6607
6608         * bus/dbus-daemon-1.1: clarify logic on when <deny>/<allow> rules
6609         match
6610
6611         * bus/policy.c (bus_client_policy_check_can_receive): fix code to
6612         reflect clarified man page
6613         (bus_client_policy_check_can_send): ditto
6614         
6615         * bus/session.conf.in: fixup
6616
6617         * bus/system.conf.in: fixup
6618
6619 2003-08-18  Havoc Pennington  <hp@redhat.com>
6620
6621         * dbus/dbus-hash.c (_dbus_hash_table_insert_two_strings): fix
6622
6623         * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
6624         dumb bug created earlier (wrong order of args to
6625         decode_header_data())
6626         
6627         * tools/dbus-send.c: port
6628
6629         * tools/dbus-print-message.c (print_message): port
6630
6631         * test/data/*messages: port all messages over
6632         
6633         * dbus/dbus-message-builder.c: support including 
6634         message type
6635         
6636         * bus/driver.c: port over
6637         
6638         * bus/dispatch.c: port over to new stuff
6639
6640         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
6641         rename disconnect signal to "Disconnected"
6642
6643 2003-08-17  Havoc Pennington  <hp@pobox.com>
6644
6645         This doesn't compile yet, but syncing up so I can hack on it from
6646         work. What are branches for if not broken code? ;-)
6647         
6648         * dbus/dbus-protocol.h: remove DBUS_HEADER_FIELD_NAME, add
6649         DBUS_HEADER_FIELD_INTERFACE, DBUS_HEADER_FIELD_MEMBER,
6650         DBUS_HEADER_FIELD_ERROR_NAME
6651         
6652         * dbus/dbus-hash.c: Introduce DBUS_HASH_TWO_STRINGS as hack to use
6653         for the interface+member pairs
6654         (string_hash): change to use g_str_hash algorithm
6655         (find_direct_function, find_string_function): refactor these to
6656         share most code.
6657         
6658         * dbus/dbus-message.c: port all of this over to support 
6659         interface/member fields instead of name field
6660
6661         * dbus/dbus-object-registry.c: port over
6662         
6663         * dbus/dbus-string.c (_dbus_string_validate_interface): rename
6664         from _dbus_string_validate_name
6665
6666         * bus/dbus-daemon-1.1: change file format for the 
6667         <deny>/<allow> stuff to match new message naming scheme
6668
6669         * bus/policy.c: port over
6670
6671         * bus/config-parser.c: parse new format
6672         
6673 2003-08-16  Havoc Pennington  <hp@pobox.com>
6674
6675         * dbus/dbus-object-registry.c (add_and_remove_objects): remove
6676         broken assertion
6677
6678         * glib/dbus-gproxy.c: some hacking
6679
6680 2003-08-15  Havoc Pennington  <hp@redhat.com>
6681
6682         * dbus/dbus-pending-call.c (dbus_pending_call_block): implement
6683
6684         * dbus/dbus-connection.c
6685         (dbus_connection_send_with_reply_and_block): factor out internals;
6686         change to convert any error replies to DBusError instead of 
6687         returning them as a message
6688
6689 2003-08-15  Havoc Pennington  <hp@pobox.com>
6690
6691         * dbus/dbus-connection.c, 
6692         dbus/dbus-pending-call.c: Finish the pending call stuff
6693
6694 2003-08-14  Havoc Pennington  <hp@redhat.com>
6695
6696         * dbus/dbus-pending-call.c: start on new object that will replace
6697         DBusMessageHandler and ReplyHandlerData for tracking outstanding
6698         replies
6699
6700         * dbus/dbus-gproxy.c: start on proxy object used to communicate
6701         with remote interfaces
6702
6703         * dbus/dbus-gidl.c: do the boring boilerplate in here
6704         
6705 2003-08-12  Havoc Pennington  <hp@pobox.com>
6706
6707         * bus/dispatch.c (bus_dispatch): make this return proper 
6708         DBusHandlerResult to avoid DBUS_ERROR_UNKNOWN_METHOD
6709
6710         * dbus/dbus-errors.c (dbus_set_error): use
6711         _dbus_string_append_printf_valist
6712
6713         * dbus/dbus-string.c (_dbus_string_append_printf_valist)
6714         (_dbus_string_append_printf): new
6715
6716         * dbus/dbus-errors.h (DBUS_ERROR_UNKNOWN_MESSAGE): change to
6717         UNKNOWN_METHOD
6718
6719         * dbus/dbus-connection.c (dbus_connection_dispatch): handle
6720         DBUS_HANDLER_RESULT_NEED_MEMORY; send default error reply if a
6721         message is unhandled.
6722
6723 2003-08-11  Havoc Pennington  <hp@pobox.com>
6724
6725         * bus/test.c (client_disconnect_handler): change to return
6726         HANDLED (would have been REMOVE_MESSAGE)
6727
6728         * dbus/dbus-object.h (enum DBusHandlerResult): rename to
6729         HANDLED/NOT_YET_HANDLED instead of
6730         REMOVE_MESSAGE/ALLOW_MORE_HANDLERS to make it clearer how it 
6731         should be used.
6732
6733 2003-08-10  Havoc Pennington  <hp@pobox.com>
6734
6735         * tools/dbus-send.c (main): add --type argument, for now
6736         supporting only method_call and signal types.
6737
6738         * tools/dbus-print-message.c: print message type
6739
6740         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
6741         init connection->objects
6742
6743         * doc/dbus-specification.sgml: fix sgml
6744
6745         * bus/*.c: port over to object-instance API changes
6746
6747         * test/test-service.c: ditto
6748         
6749         * dbus/dbus-message.c (dbus_message_create_header): allow #NULL
6750         name, we will have to fix up the rest of the code to also handle
6751         this
6752         (dbus_message_new): generic message-creation call
6753         (set_string_field): allow appending name field
6754
6755 2003-08-06  Havoc Pennington  <hp@pobox.com>
6756
6757         * dbus/dbus-object-registry.c: implement signal connection 
6758         and dispatch
6759
6760         * dbus/dbus-connection.c (_dbus_connection_unref_unlocked): new
6761
6762         * dbus/dbus-internals.c (_dbus_memdup): new function
6763
6764 2003-08-02  Havoc Pennington  <hp@pobox.com>
6765
6766         * dbus/dbus-message.c (dbus_message_get_no_reply)
6767         (dbus_message_set_no_reply): add these and remove
6768         set_is_error/get_is_error
6769
6770         * dbus/dbus-protocol.h, doc/dbus-specification.sgml: 
6771         remove the ERROR flag, since there's now an ERROR type
6772
6773 2003-08-01  Havoc Pennington  <hp@pobox.com>
6774
6775         * dbus/dbus-object-registry.c (_dbus_object_registry_handle_and_unlock):
6776         implement
6777
6778         * dbus/dbus-message.c (dbus_message_get_type): new function
6779
6780         * doc/dbus-specification.sgml: add "type" byte to messages
6781
6782 2003-08-01  Havoc Pennington  <hp@pobox.com>
6783
6784         * dbus/dbus-protocol.h (DBUS_MESSAGE_TYPE_*): introduce
6785         a message type enum to distinguish kinds of message
6786         (DBUS_HEADER_FLAG_NO_REPLY_EXPECTED): flag for a message 
6787         that need not be replied to
6788
6789 2003-08-01  Havoc Pennington  <hp@pobox.com>
6790
6791         * dbus/dbus-marshal.c: adapt to DBusObjectID changes
6792         (unpack_8_octets): fix no-64-bit-int bug
6793
6794         * dbus/dbus-object-registry.c (validate_id): validate the 
6795         connection ID bits, not just the instance ID.
6796
6797         * dbus/dbus-connection.c (_dbus_connection_init_id): initialize
6798         the connection-global 33 bits of the object ID
6799
6800         * dbus/dbus-object-registry.c (info_from_entry): fill in 
6801         object ID in the new way
6802
6803         * dbus/dbus-objectid.h: rather than high/low bits, specifically 
6804         define server/client/instance bits.
6805
6806 2003-07-30  Havoc Pennington  <hp@pobox.com>
6807
6808         * dbus/dbus-connection.c (dbus_connection_register_object): fix
6809         build
6810
6811 2003-07-13  Havoc Pennington  <hp@pobox.com>
6812
6813         * dbus/dbus-object.h (struct DBusObjectVTable): add padding
6814         fields to DBusObjectVTable and DBusObjectInfo
6815
6816 2003-07-12  Havoc Pennington  <hp@pobox.com>
6817
6818         * dbus/dbus-object-registry.c: implement unit test,
6819         fix bugs discovered in process
6820
6821         * dbus/dbus-connection.c: remove handler_table and
6822         register_handler(), add DBusObjectRegistry usage
6823
6824         * dbus/dbus-objectid.c (dbus_object_id_is_null)
6825         (dbus_object_id_set_null): new functions
6826
6827 2003-07-08  Havoc Pennington  <hp@pobox.com>
6828
6829         * dbus/dbus-object.c: implement some of this
6830
6831         * dbus/dbus-object-registry.c
6832         (_dbus_object_registry_add_and_unlock): fill in the object_id out
6833         param
6834         (_dbus_object_registry_new): handle OOM
6835
6836 2003-07-08  Havoc Pennington  <hp@pobox.com>
6837
6838         * dbus/dbus-object.h: sketch out an API for registering objects
6839         with a connection, that allows us to use as little as 24 bytes
6840         per object and lets application code represent an object in 
6841         any conceivable way.
6842
6843         * dbus/dbus-object-registry.c: implement the hard bits of the
6844         DBusConnection aspect of object API. Not yet wired up.
6845         
6846 2003-07-06  Havoc Pennington  <hp@pobox.com>
6847
6848         * dbus/dbus-marshal.c (_dbus_marshal_set_object_id): new function
6849         (_dbus_marshal_object_id): new
6850         (_dbus_demarshal_object_id): new
6851         (_dbus_marshal_get_arg_end_pos): support object ID type, and
6852         consolidate identical switch cases. Don't conditionalize handling
6853         of DBUS_TYPE_UINT64, need to handle the type always.
6854         (_dbus_marshal_validate_arg): consolidate identical cases, and
6855         handle DBUS_TYPE_OBJECT_ID
6856
6857         * dbus/dbus-objectid.c: new file with DBusObjectID data type.
6858
6859         * dbus/dbus-protocol.h: add DBUS_TYPE_OBJECT_ID
6860
6861 2003-09-28  Havoc Pennington  <hp@pobox.com>
6862
6863         * real 0.13 release
6864
6865 2003-09-28  Havoc Pennington  <hp@pobox.com>
6866
6867         * doc/Makefile.am (dbus-specification.html): testing a funky hack
6868         to work with Debian db2html
6869
6870 2003-09-28  Havoc Pennington  <hp@pobox.com>
6871
6872         * configure.in: 0.13
6873
6874         * doc/Makefile.am (dbus-test-plan.html): accept nonexistence of
6875         stylesheet-images for benefit of Debian
6876         
6877         Change back to using filesystem-linked sockets for the system
6878         bus, so only root can create the default system bus address.
6879         
6880         * bus/system.conf.in: change to use
6881         DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
6882
6883         * dbus/Makefile.am (INCLUDES): remove DBUS_SYSTEM_BUS_PATH define
6884         from here.
6885
6886         * configure.in: define DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
6887         here, and AC_DEFINE DBUS_SYSTEM_PATH
6888
6889 2003-08-09  Anders Carlsson  <andersca@codefactory.se>
6890
6891         * doc/TODO:
6892         * doc/busconfig.dtd:
6893         Add busconfig DTD.
6894         
6895 2003-08-09  Anders Carlsson  <andersca@codefactory.se>
6896
6897         * doc/dbus-specification.sgml:
6898         Add activation reply values.
6899         
6900 2003-08-05  Havoc Pennington  <hp@redhat.com>
6901
6902         * configure.in: 0.12
6903
6904 2003-08-05  Anders Carlsson  <andersca@codefactory.se>
6905
6906         * glib/dbus-gmain.c: (watch_fd_new), (watch_fd_ref),
6907         (watch_fd_unref), (dbus_gsource_check), (dbus_gsource_dispatch),
6908         (add_watch), (remove_watch), (create_source):
6909         Refcount fds, fixes some reentrancy issues.
6910         
6911 2003-07-30  Havoc Pennington  <hp@redhat.com>
6912
6913         * dbus/dbus-bus.c (init_connections_unlocked): fix default system
6914         bus address to be abstract if we have abstract sockets
6915
6916         * NEWS: update
6917
6918 2003-07-28  Havoc Pennington  <hp@redhat.com>
6919
6920         * bus/messagebus.in: fix to avoid processname/servicename 
6921         confusion, from Michael Kearey
6922         https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=100965
6923         
6924 2003-07-23  Havoc Pennington  <hp@pobox.com>
6925
6926         * dbus/dbus-message.c (dbus_message_iter_get_named): 
6927         fix from Andy Hanton to remove broken "+1"
6928
6929 2003-07-16  Havoc Pennington  <hp@pobox.com>
6930
6931         * tools/dbus-launch.c (babysit): close stdout/stderr in the
6932         babysitter process, as suggested by Thomas Leonard, so 
6933         an "eval `dbus-launch --exit-with-session`" will actually 
6934         return
6935
6936 2003-07-16  Havoc Pennington  <hp@pobox.com>
6937
6938         * configure.in: print out EXPANDED_* variables in the summary at
6939         the end; clean up the code that computes EXPANDED_ variables and
6940         get the ones using exec_prefix right. Should make things work
6941         when you build without --prefix
6942
6943 2003-06-29  Havoc Pennington  <hp@pobox.com>
6944
6945         * mono/Test.cs (class Test): fire up a main loop and run it
6946
6947         * mono/DBus.cs (DBus): don't g_thread_init since it can only be
6948         done once, the app has to do it
6949
6950 2003-06-26  Havoc Pennington  <hp@pobox.com>
6951
6952         * mono/Connection.cs: set up connection with the glib main loop
6953
6954 2003-07-01  Havoc Pennington  <hp@redhat.com>
6955
6956         * doc/dbus-specification.sgml: clarify the format of a type code,
6957         change suggested by Jim Blandy
6958
6959 2003-06-29  Miloslav Trmac  <mitr@volny.cz>
6960
6961         * doc/Makefile.am:
6962         * tools/Makefile.am: Don't assume srcdir == builddir.
6963
6964         * dbus/dbus-memory.c (dbus_realloc): Don't check guards after shrinking
6965         the allocated block.
6966         (_dbus_memory_test): New function.
6967         * dbus/dbus-test.h: Add _dbus_memory_test ().
6968         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): Call it.
6969
6970         * dbus/dbus-message.c (decode_header_data): Use %.4s instead
6971         of %c%c%c%c.
6972         (dbus_message_new): Remove obsolete @todo.
6973
6974         * dbus/dbus-marshal.c (_dbus_marshal_set_int64)
6975         (_dbus_marshal_set_uint64): Fix comment.
6976
6977         * dbus/dbus-message.c (append_int_field, append_uint_field): Don't
6978         hardcode FIELD_REPLY_SERIAL.
6979
6980         * dbus/dbus-mainloop.c (_dbus_loop_remove_watch)
6981         (_dbus_loop_remove_timeout): Cast function pointers to (void *) for %p
6982
6983         * configure.in: Add -D_POSIX_C_SOURCE=199309L -DBSD_SOURCE to CFLAGS
6984         and disable DBUS_USE_ATOMIC_INT_486 when --enable-ansi is used
6985
6986 2003-06-24  Havoc Pennington  <hp@pobox.com>
6987
6988         * mono/*.cs: Use IntPtr.Zero instead of ((IntPtr) 0)
6989
6990 2003-06-23  Anders Carlsson  <andersca@codefactory.se>
6991
6992         * configure.in:
6993         * gcj/.cvsignore:
6994         * gcj/Hello.java:
6995         * gcj/Makefile.am:
6996         * gcj/TestMessage.java: (TestMessage), (TestMessage.main):
6997         * gcj/org/.cvsignore:
6998         * gcj/org/Makefile.am:
6999         * gcj/org/freedesktop/.cvsignore:
7000         * gcj/org/freedesktop/Makefile.am:
7001         * gcj/org/freedesktop/dbus/.cvsignore:
7002         * gcj/org/freedesktop/dbus/Makefile.am:
7003         * gcj/org/freedesktop/dbus/Message.java: (Message),
7004         (Message.Message):
7005         * gcj/org/freedesktop/dbus/natMessage.cc:
7006         Fix the build system.
7007
7008 2003-06-22  Havoc Pennington  <hp@pobox.com>
7009
7010         * mono/Connection.cs: add more bindings
7011
7012         * dbus/dbus-threads.c (dbus_threads_init): allow calling this
7013         more than once.
7014
7015 2003-06-22  Havoc Pennington  <hp@pobox.com>
7016
7017         * mono/Connection.cs, mono/DBus.cs, mono/Error.cs:
7018         Start wrapping more stuff.
7019
7020 2003-06-22  Havoc Pennington  <hp@pobox.com>
7021
7022         * mono/Message.cs: implement Message.Wrap() that ensures we only
7023         have a single C# wrapper per DBusMessage, assuming it works which
7024         it probably doesn't.
7025
7026         * dbus/dbus-message.c (dbus_message_allocate_data_slot): new
7027         (dbus_message_free_data_slot): new
7028         (dbus_message_set_data): new
7029         (dbus_message_get_data): new
7030
7031 2003-06-22  Havoc Pennington  <hp@pobox.com>
7032
7033         * dbus/dbus-dataslot.c (_dbus_data_slot_allocator_unref)
7034         (_dbus_data_slot_allocator_alloc): rework these to keep a
7035         reference count on each slot and automatically manage a global
7036         slot ID variable passed in by address
7037
7038         * bus/bus.c: convert to new dataslot API
7039
7040         * dbus/dbus-bus.c: convert to new dataslot API
7041
7042         * dbus/dbus-connection.c: convert to new dataslot API
7043
7044         * dbus/dbus-server.c: convert to new dataslot API
7045
7046         * glib/dbus-gmain.c: ditto
7047
7048         * bus/test.c: ditto
7049
7050         * bus/connection.c: ditto
7051
7052 2003-06-22  Anders Carlsson  <andersca@codefactory.se>
7053
7054         * configure.in: Add AM_PROG_GCJ and move AM_PROG_LIBTOOL
7055         after the gcj checks so that the correct configuration tags
7056         will be added to libtool.
7057
7058         * dbus-glib-1.pc.in: No need to specify any includes since
7059         dbus-1.pc.in has those.
7060
7061 2003-06-22  Havoc Pennington  <hp@pobox.com>
7062
7063         * mono/*, gcj/*, configure.in, Makefile.am:
7064         Check in makefiles and subdirs for mono and gcj bindings.
7065         Neither binding actually exists, just trying to get through
7066         all the build and other boring bits.
7067
7068 2003-06-21  Philip Blundell  <philb@gnu.org>
7069
7070         * tools/dbus-monitor.1: Updated.
7071
7072         * tools/dbus-send.1: Likewise.
7073
7074 2003-06-20  Anders Carlsson  <andersca@codefactory.se>
7075
7076         * dbus/dbus-transport-unix.c (unix_handle_watch): Check
7077         for hangup and error after checking read so we won't discard
7078         pending data if both hangup and read are set.
7079
7080 2003-06-19  Philip Blundell  <philb@gnu.org>
7081
7082         * tools/dbus-print-message.c (print_message): Handle BOOLEAN.
7083
7084         * tools/dbus-send.c: Accept both --system and --session.
7085
7086         * tools/dbus-monitor.c: Same here.
7087
7088 2003-06-19  Anders Carlsson  <andersca@codefactory.se>
7089
7090         * glib/dbus-glib.h: Fix so that dbus-glib.h can be used
7091         from C++ (Patch by Miloslav Trmac).
7092
7093 2003-06-15  Joe Shaw  <joe@assbarn.com>
7094
7095         * configure.in: Check for socklen_t.
7096
7097         * dbus/dbus-sysdeps.c: Define socklen_t if it's not defined.
7098
7099         * test/test-segfault.c: Add #include <sys/time.h>
7100
7101         * tools/Makefile.am: Add DBUS_X_CFLAGS to the INCLUDES since
7102         dbus-launch needs it.
7103
7104 2003-06-09  Havoc Pennington  <hp@redhat.com>
7105
7106         * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): don't use
7107         SUN_LEN, it breaks abstract socket usage
7108
7109         * dbus/dbus-internals.c (_dbus_verbose_real): only print PID at
7110         starts of lines.
7111
7112 2003-06-04  Havoc Pennington  <hp@pobox.com>
7113
7114         * dbus/dbus-server.c (dbus_server_listen): allow abstract sockets
7115         using unix:abstract=/foo, and when listening in a tmpdir
7116         i.e. unix:tmpdir=/tmp, always use abstract sockets if we can.
7117
7118         * dbus/dbus-transport.c (_dbus_transport_open): support
7119         unix:abstract=/foo
7120
7121         * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
7122         support abstract sockets
7123
7124         * dbus/dbus-transport-unix.c
7125         (_dbus_transport_new_for_domain_socket): support abstract sockets
7126
7127         * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket): add "abstract"
7128         toggle as an argument, implement abstract namespace support
7129         (_dbus_listen_unix_socket): ditto
7130
7131         * configure.in: add --enable-abstract-sockets and implement
7132         a configure check for autodetection of the right value.
7133
7134 2003-06-01  Havoc Pennington  <hp@pobox.com>
7135
7136         * tools/dbus-cleanup-sockets.c: add utility to clean up sockets
7137         in /tmp (though on Linux this will end up being useless,
7138         when we add abstract namespace support)
7139
7140         * configure.in: define DBUS_SESSION_SOCKET_DIR in addition to
7141         subst'ing it
7142
7143 2003-05-28  Colin Walters  <walters@verbum.org>
7144
7145         * tools/dbus-monitor.c (main): Fix silly typo (s/--session/--system/).
7146
7147 2003-05-18  Anders Carlsson  <andersca@codefactory.se>
7148
7149         * dbus/dbus-message.c (dbus_message_new): Remove @todo.
7150
7151 2003-05-17  Colin Walters  <walters@gnu.org>
7152
7153         * tools/dbus-send.c: Don't exit with an error code if --help was
7154         passed.  Default to using the session bus instead of the system
7155         one.
7156
7157         * tools/dbus-launch.c: Ditto.
7158
7159         * tools/dbus-monitor.c: Ditto.
7160
7161         * tools/dbus-send.1: Update with new arguments.
7162
7163         * tools/dbus-launch.c: Emit code to export variables.  New
7164         arguments -s and -c to specify shell syntax, and a bit of code to
7165         autodetect syntax.  Also, allow specifying a program to run.
7166
7167         * tools/dbus-launch.1: Update with new arguments.
7168
7169         * tools/dbus-send.1: Ditto.
7170
7171         * tools/dbus-monitor.1: Ditto.
7172
7173 2003-05-17  Havoc Pennington  <hp@pobox.com>
7174
7175         * bus/config-parser.c (merge_included): merge in policies from
7176         child configuration file.
7177
7178         * bus/policy.c (bus_policy_merge): function to merge two policies
7179         together
7180
7181 2003-05-16  Havoc Pennington  <hp@redhat.com>
7182
7183         * dbus/dbus-connection.c: disable verbose lock spew
7184
7185         * tools/dbus-send.c: add --print-reply command line option
7186
7187         * tools/dbus-print-message.h (print_message): new util function
7188         shared by dbus-send and dbus-monitor
7189
7190         * tools/dbus-monitor.c (handler_func): exit on disconnect
7191
7192         * dbus/dbus-transport-unix.c (do_reading): if the transport is
7193         disconnected, don't try to use the read_watch
7194
7195         * dbus/dbus-watch.c (dbus_watch_get_enabled): assert watch != NULL
7196         so we can find this bug more easily
7197
7198 2003-05-16  Havoc Pennington  <hp@redhat.com>
7199
7200         * bus/policy.c (free_rule_list_func): avoid a crash when passed
7201         NULL as DBusHashTable is annoyingly likely to do.
7202
7203 2003-05-16  Colin Walters  <walters@verbum.org>
7204
7205         * tools/dbus-monitor.c: Add --session argument and usage()
7206         function.
7207
7208         * tools/dbus-monitor.1: Update with new --session arg.
7209
7210         * bus/Makefile.am (install-data-hook): Create
7211         $(libdir)/dbus-1.0/services so that the session bus is happy.
7212
7213 2003-05-15  Havoc Pennington  <hp@redhat.com>
7214
7215         * dbus/dbus-sysdeps.c (_dbus_atomic_dec, _dbus_atomic_inc): work
7216         on non-x86. ifdef's are evil.
7217
7218 2003-05-15  Havoc Pennington  <hp@redhat.com>
7219
7220         * configure.in: 0.11
7221
7222         * NEWS: update
7223
7224         * bus/Makefile.am (initddir): apparently we are supposed to put
7225         init scripts in /etc/rc.d/init.d not /etc/init.d
7226
7227         * bus/Makefile.am: remove the "you must --enable-tests to make
7228         check" as it broke distcheck
7229
7230         * bus/Makefile.am (install-data-hook): create /etc/dbus-1/system.d
7231
7232 2003-05-13  James Willcox  <jwillcox@gnome.org>
7233
7234         * configure.in:
7235         * bus/activation.c: (bus_activation_service_created),
7236         (bus_activation_activate_service):
7237         * bus/driver.c: (bus_driver_send_service_deleted),
7238         (bus_driver_send_service_created), (bus_driver_send_service_lost),
7239         (bus_driver_send_service_acquired),
7240         (bus_driver_send_welcome_message),
7241         (bus_driver_handle_list_services):
7242         * bus/session.conf.in:
7243         * dbus/dbus-bus.c: (dbus_bus_acquire_service),
7244         (dbus_bus_service_exists), (dbus_bus_activate_service):
7245         * dbus/dbus-bus.h:
7246
7247         Add some convenience API which lets you activate a service, and did a
7248         bunch of s/0/DBUS_TYPE_INVALID/ in calls to dbus_message_append_args()
7249         and dbus_message_get_args()
7250
7251 2003-05-11  Havoc Pennington  <hp@pobox.com>
7252
7253         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix to avoid
7254         calling _dbus_marshal_validate_arg() for every byte in a byte
7255         array, etc.
7256
7257         * dbus/dbus-message-handler.c: use atomic reference counting to
7258         reduce number of locks slightly; the global lock in here sucks
7259
7260         * dbus/dbus-connection.c
7261         (_dbus_connection_update_dispatch_status_and_unlock): variant of
7262         update_dispatch_status that can be called with lock held; then use
7263         in a couple places to reduce locking/unlocking
7264         (dbus_connection_send): hold the lock over the whole function
7265         instead of acquiring it twice.
7266
7267         * dbus/dbus-timeout.c (_dbus_timeout_new): handle OOM
7268
7269         * bus/connection.c (bus_connections_setup_connection): fix access
7270         to already-freed memory.
7271
7272         * dbus/dbus-connection.c: keep a little cache of linked list
7273         nodes, to avoid using the global linked list alloc lock in the
7274         normal send-message case. Instead we just use the connection lock
7275         that we already have to take.
7276
7277         * dbus/dbus-list.c (_dbus_list_find_last): new function
7278
7279         * dbus/dbus-sysdeps.c (_dbus_atomic_inc, _dbus_atomic_dec):
7280         change to use a struct for the atomic type; fix docs,
7281         they return value before increment, not after increment.
7282
7283         * dbus/dbus-string.c (_dbus_string_append_4_aligned)
7284         (_dbus_string_append_8_aligned): new functions to try to
7285         microoptimize this operation.
7286         (reallocate_for_length): break this out of set_length(), to
7287         improve profile info, and also so we can consider inlining the
7288         set_length() part.
7289
7290         * dbus/dbus-message.c (dbus_message_new_empty_header): init data
7291         strings with some preallocation, cuts down on our calls to realloc
7292         a fair bit. Though if we can get the "move entire string to empty
7293         string" optimization below to kick in here, it would be better.
7294
7295         * dbus/dbus-string.c (_dbus_string_move): just call
7296         _dbus_string_move_len
7297         (_dbus_string_move_len): add a special case for moving
7298         an entire string into an empty string; we can just
7299         swap the string data instead of doing any reallocs.
7300         (_dbus_string_init_preallocated): new function
7301
7302 2003-05-11  Havoc Pennington  <hp@pobox.com>
7303
7304         Write a "test-profile" that does echo client-server with threads;
7305         profile reveals lock contention, memcpy/realloc of buffers, and
7306         UTF-8 validation as hot spots. 20% of lock contention eliminated
7307         with dbus_atomic_inc/dec implementation on x86.  Much remaining
7308         contention is global mempool locks for GList and DBusList.
7309
7310         * dbus/dbus-sysdeps.c (_dbus_atomic_inc, _dbus_atomic_dec): add
7311         x86 implementation
7312
7313         * dbus/dbus-connection.c (struct DBusConnection): use
7314         dbus_atomic_t for the reference count
7315
7316         * dbus/dbus-message.c (struct DBusMessage): declare
7317         dbus_atomic_t values as volatile
7318
7319         * configure.in: code to detect ability to use atomic integer
7320         operations in assembly, from GLib patch
7321
7322         * dbus/dbus-internals.c (_dbus_verbose_real): call getpid every
7323         time, tired of it being wrong in threads and forked processes
7324
7325         * glib/test-profile.c: a little program to bounce messages back
7326         and forth between threads and eat CPU
7327
7328         * dbus/dbus-connection.c: add debug spew macros for debugging
7329         thread locks; include config.h at top; fix deadlock in
7330         dbus_connection_flush()
7331
7332 2003-05-08  Havoc Pennington  <hp@pobox.com>
7333
7334         * dbus/dbus-spawn.c: s/_exit/exit/ because it was keeping gcov
7335         data from getting written, and there wasn't a good reason to
7336         use _exit really.
7337
7338         * test/decode-gcov.c (mark_inside_dbus_build_tests): don't count
7339         dbus_verbose lines in test coverage
7340         (main): add list of functions sorted by # of untested blocks
7341         to the coverage report
7342
7343         * dbus/dbus-mempool.c: put some test-only code in DBUS_BUILD_TESTS
7344
7345         * dbus/dbus-marshal.c (_dbus_marshal_test): extend test coverage
7346
7347         * dbus/dbus-message-handler.c (_dbus_message_handler_test):
7348         extend test coverage
7349
7350         * test/data/auth/cancel.auth-script: test canceling an
7351         authentication
7352
7353         * dbus/Makefile.am: remove dbus-server-debug.[hc] for now, as they
7354         aren't used. in CVS history if we end up needing them.
7355
7356 2003-05-04  Havoc Pennington  <hp@pobox.com>
7357
7358         * dbus/dbus-message-handler.c (_dbus_message_handler_test): add
7359         unit test
7360
7361         * dbus/dbus-marshal.c (_dbus_demarshal_string_array): fix this
7362         function, which assumed length was in # of strings, not bytes
7363
7364         * dbus/dbus-message.c (_dbus_message_test): add tests for some
7365         missing coverage
7366
7367         * dbus/dbus-connection.c
7368         (_dbus_connection_queue_received_message): disable function for
7369         now, we are only using it in test mode
7370
7371         * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
7372         remove a mistaken FIXME
7373
7374 2003-05-04  Havoc Pennington  <hp@pobox.com>
7375
7376         * dbus/dbus-connection.c (dbus_connection_preallocate_send):
7377         unlock mutex on successful return, patch from Anders Gustafsson
7378
7379 2003-05-04  Havoc Pennington  <hp@pobox.com>
7380
7381         * dbus-glib-1.pc.in (Requires): fix dependencies, from
7382         Anders Gustafsson
7383
7384 2003-05-04  Havoc Pennington  <hp@pobox.com>
7385
7386         * tools/dbus-launch.c: implement
7387
7388         * bus/main.c (main), bus/bus.c (bus_context_new):
7389         implement --print-pid and --fork
7390
7391 2003-05-03  Havoc Pennington  <hp@redhat.com>
7392
7393         * dbus/dbus-address.c (dbus_parse_address): fix bug when a key in
7394         the address had no value, and add to test suite. Fix and
7395         regression test from Miloslav Trmac
7396
7397 2003-05-03  Havoc Pennington  <hp@pobox.com>
7398
7399         * dbus/dbus-watch.c (dbus_watch_handle): warn and return if a
7400         watch is invalid when handled
7401
7402         * tools/Makefile.am, tools/dbus-launch.c, tools/dbus-launch.1: add
7403         dbus-launch utility to launch the bus from a shell script.  Didn't
7404         actually implement dbus-launch yet, it's just a placeholder still.
7405
7406 2003-05-03  Havoc Pennington  <hp@pobox.com>
7407
7408         * bus/Makefile.am, bus/dbus-daemon-1.1.in: man page for the
7409         daemon; also documents daemon config file, so replaces
7410         doc/config-file.txt. Corrected some stuff from config-file.txt in
7411         the process of moving it.
7412
7413 2003-05-03  Havoc Pennington  <hp@pobox.com>
7414
7415         * tools/Makefile.am, tools/dbus-send.1, tools/dbus-monitor.1:
7416         add some man pages
7417
7418 2003-05-03  Colin Walters  <walters@verbum.org>
7419
7420         * dbus/dbus-sysdeps.c (fill_user_info): Test against
7421         DBUS_UID_UNSET to determine whether to do a uid lookup or not.
7422
7423         * Makefile.am: Update to use new .pc versioning scheme.
7424
7425 2003-05-02  Havoc Pennington  <hp@redhat.com>
7426
7427         * bus/system.conf.in: allow send/receive to/from message bus
7428         service
7429
7430 2003-04-30  Havoc Pennington  <hp@redhat.com>
7431
7432         * configure.in: print a note when building with unit tests and
7433         without assertions
7434
7435 2003-04-30  Havoc Pennington  <hp@redhat.com>
7436
7437         * Makefile.am: add a check-local that complains if you didn't
7438         configure with --enable-tests
7439
7440 2003-04-29  Havoc Pennington  <hp@redhat.com>
7441
7442         * glib/dbus-gmain.c: docs cleanups
7443
7444         * dbus/dbus-types.h: add docs on int64 types
7445
7446         * dbus/dbus-memory.c: fix docs to avoid putting private API in
7447         public API docs section
7448
7449 2003-04-29  Havoc Pennington  <hp@redhat.com>
7450
7451         * dbus-1.pc.in, dbus-glib-1.pc.in: rename these from
7452         dbus-1.0.pc.in, dbus-glib-1.0.pc.in. As these change with the
7453         parallel install API version, not with the D-BUS package version.
7454
7455         * HACKING: move some of README over here
7456
7457         * README: updates, and document API/ABI policy
7458
7459         * configure.in: reindentation
7460
7461 2003-04-29  Havoc Pennington  <hp@redhat.com>
7462
7463         * dbus/dbus.h: add "you have to define DBUS_API_SUBJECT_TO_CHANGE
7464         to use this library" to be sure people have the right
7465         expectations.
7466
7467 2003-04-28  Havoc Pennington  <hp@redhat.com>
7468
7469         * configure.in: add --enable-docs which by default is auto yes if
7470         doxygen and db2html found, no otherwise; but can be forced on/off
7471
7472         * doc/Makefile.am: conditionalize whether to build docs on
7473         --enable-docs
7474
7475 2003-04-28  Havoc Pennington  <hp@redhat.com>
7476
7477         * configure.in: 0.10
7478
7479         * NEWS: update
7480
7481         * bus/system.conf.in: add <includedir>system.d</includedir>
7482
7483         * dbus/dbus-userdb.c (_dbus_user_database_lookup): fix bug when
7484         username was provided but not uid
7485
7486         * bus/config-parser.c (struct BusConfigParser): keep track of
7487         whether the parser is toplevel or was included; change some
7488         of the error handling if it's included.
7489
7490 2003-04-27  Havoc Pennington  <hp@pobox.com>
7491
7492         Unbreak my code...
7493
7494         * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
7495         report correct status if we finish processing authentication
7496         inside this function.
7497
7498         * bus/activation.c (try_send_activation_failure): use
7499         bus_transaction_send_error_reply
7500
7501         * bus/connection.c (bus_connection_get_groups): return an error
7502         explaining the problem
7503
7504         * bus/bus.c (bus_context_check_security_policy): implement
7505         restriction here that inactive connections can only send the
7506         hello message. Also, allow bus driver to send anything to
7507         any recipient.
7508
7509         * bus/connection.c (bus_connection_complete): create the
7510         BusClientPolicy here instead of on-demand.
7511         (bus_connection_get_policy): don't return an error
7512
7513         * dbus/dbus-message.c (dbus_message_new_error_reply): allow NULL
7514         sender field in message being replied to
7515
7516         * bus/bus.c (bus_context_check_security_policy): fix silly typo
7517         causing it to return FALSE always
7518
7519         * bus/policy.c (bus_client_policy_check_can_send): fix bug where
7520         we checked sender rather than destination
7521
7522 2003-04-25  Havoc Pennington  <hp@redhat.com>
7523
7524         test suite is slightly hosed at the moment, will fix soon
7525
7526         * bus/connection.c (bus_connections_expire_incomplete): fix to
7527         properly disable the timeout when required
7528         (bus_connection_set_name): check whether we can remove incomplete
7529         connections timeout after we complete each connection.
7530
7531         * dbus/dbus-mainloop.c (check_timeout): fix this up a bit,
7532         probably still broken.
7533
7534         * bus/services.c (bus_registry_acquire_service): implement max
7535         number of services owned, and honor allow/deny rules on which
7536         services a connection can own.
7537
7538         * bus/connection.c (bus_connection_get_policy): report errors here
7539
7540         * bus/activation.c: implement limit on number of pending
7541         activations
7542
7543 2003-04-25  Havoc Pennington  <hp@redhat.com>
7544
7545         * dbus/dbus-transport.c (_dbus_transport_get_unix_user): fix bug
7546         where we used >= 0 instead of != DBUS_UID_UNSET.
7547
7548 2003-04-25  Havoc Pennington  <hp@redhat.com>
7549
7550         * glib/dbus-gmain.c (remove_watch): fix for a crash when watches
7551         were toggled without add/remove, fix from Anders Gustafsson
7552
7553 2003-04-24  Havoc Pennington  <hp@redhat.com>
7554
7555         * test/data/valid-config-files/basic.conf: add <limit> tags to
7556         this test
7557
7558         * bus/config-parser.h, bus/config-parser.c, bus/bus.c: Implement
7559         <limit> tag in configuration file.
7560
7561 2003-04-24  Havoc Pennington  <hp@redhat.com>
7562
7563         * bus/dispatch.c: somehow missed some name_is
7564
7565         * dbus/dbus-timeout.c (_dbus_timeout_set_enabled)
7566         (_dbus_timeout_set_interval): new
7567
7568         * bus/connection.c (bus_connections_setup_connection): record time
7569         when each connection is first set up, and expire them after the
7570         auth timeout passes.
7571
7572 2003-04-24  Havoc Pennington  <hp@redhat.com>
7573
7574         * dbus/dbus-message.c (dbus_message_name_is): rename
7575         (dbus_message_service_is): rename
7576         (dbus_message_sender_is): rename
7577         (dbus_message_get_service): rename
7578
7579 2003-04-24  Havoc Pennington  <hp@redhat.com>
7580
7581         * configure.in: add --enable-checks
7582
7583         * dbus/dbus-message.c (dbus_message_new): reverse name/service arguments
7584
7585         * dbus/dbus-connection.c (dbus_connection_preallocate_send): fix
7586         to use thread locks.
7587         (_dbus_connection_handler_destroyed_locked): move some private
7588         functions into proper docs group
7589
7590         * dbus/dbus-internals.h: add _dbus_return_if_fail,
7591         _dbus_return_val_if_fail
7592
7593         Throughout: use dbus_return_if_fail
7594
7595 2003-04-23  James Willcox  <jwillcox@gnome.org>
7596
7597         * glib/dbus-glib.h:
7598         * glib/dbus-gmain.c: (add_timeout), (wakeup_main), (create_source),
7599         (dbus_connection_setup_with_g_main),
7600         (dbus_server_setup_with_g_main):
7601         * glib/test-dbus-glib.c: (main):
7602         * glib/test-thread-client.c: (main):
7603         * glib/test-thread-server.c: (new_connection_callback), (main):
7604         * tools/dbus-monitor.c: (main):
7605
7606         Added a GMainContext argument to dbus_connection_setup_with_g_main()
7607         and dbus_server_setup_with_g_main().
7608
7609 2003-04-20  Havoc Pennington  <hp@pobox.com>
7610
7611         * doc/dbus-specification.sgml: document the restrictions on
7612         message and service names
7613
7614 2003-04-22  Havoc Pennington  <hp@redhat.com>
7615
7616         * dbus/dbus-message.c, dbus/dbus-marshal.c: add 64-bit integer
7617         support, and do some code cleanups to share more code and
7618         speed up array marshal/demarshal.
7619
7620         * dbus-1.0.pc.in (Cflags): put libdir include file in cflags
7621
7622         * configure.in: generate dbus-arch-deps.h
7623
7624         * dbus/dbus-protocol.h (DBUS_TYPE_INT64, DBUS_TYPE_UINT64): add
7625         64-bit typecodes
7626
7627 2003-04-22  Havoc Pennington  <hp@redhat.com>
7628
7629         * test/data/valid-messages/opposite-endian.message: fix test
7630         to use proper type for rply field
7631
7632         * test/data/invalid-messages: add tests for below validation
7633
7634         * dbus/dbus-message.c (decode_header_data): validate field types,
7635         and validate that named fields are valid names
7636         (decode_name_field): consider messages in the
7637         org.freedesktop.Local. namespace to be invalid.
7638
7639         * dbus/dbus-string.c (_dbus_string_validate_name): new
7640
7641 2003-04-19  Havoc Pennington  <hp@pobox.com>
7642
7643         * bus/driver.c (bus_driver_handle_hello): check limits and
7644         return an error if they are exceeded.
7645
7646         * bus/connection.c: maintain separate lists of active and inactive
7647         connections, and a count of each. Maintain count of completed
7648         connections per user. Implement code to check connection limits.
7649
7650         * dbus/dbus-list.c (_dbus_list_unlink): export
7651
7652         * bus/bus.c (bus_context_check_security_policy): enforce a maximum
7653         number of bytes in the message queue for a connection
7654
7655 2003-04-18  Havoc Pennington  <hp@pobox.com>
7656
7657         * dbus/dbus-auth.c (record_mechanisms): memleak fixes
7658
7659         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): fix some
7660         memleaks
7661
7662         * dbus/dbus-keyring.c (add_new_key): fix a memleak, and
7663         on realloc be sure to update the pointer in the keyring
7664
7665         * dbus/dbus-string.c (_dbus_string_zero): compensate for align
7666         offset to avoid writing to unallocated memory
7667
7668         * dbus/dbus-auth.c (process_rejected): return FALSE if we fail to
7669         try the next mechanism, so we properly handle OOM
7670
7671         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): fix double-free
7672         on OOM.
7673         (_dbus_keyring_new): fix OOM bug
7674         (_dbus_keyring_new_homedir): always set error; impose a maximum
7675         number of keys we'll load from the file, mostly to speed up the
7676         test suite and make its OOM checks more useful, but also for
7677         general sanity.
7678
7679         * dbus/dbus-auth.c (process_error_server): reject authentication
7680         if we get an error from the client
7681         (process_cancel): on cancel, send REJECTED, per the spec
7682         (process_error_client): send CANCEL if we get an error from the
7683         server.
7684
7685 2003-04-18  Havoc Pennington  <hp@pobox.com>
7686
7687         * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix UMR in verbose
7688         debug spew
7689
7690         * dbus/dbus-auth.c (handle_client_data_cookie_sha1_mech): fix OOM
7691         handling problem
7692
7693         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): only whine
7694         about DBUS_TEST_HOMEDIR once
7695
7696         * bus/Makefile.am (TESTS_ENVIRONMENT): put DBUS_TEST_HOMEDIR in
7697         the environment
7698
7699         * bus/dispatch.c (bus_dispatch_sha1_test): actually load sha1
7700         config file so we test the right thing
7701
7702         Throughout: assorted docs improvements
7703
7704 2003-04-18  Havoc Pennington  <hp@pobox.com>
7705
7706         * glib/dbus-gmain.c: adapt to watch changes
7707
7708         * bus/bus.c, bus/activation.c, etc.: adjust to watch changes
7709
7710         * dbus/dbus-server.h: remove dbus_server_handle_watch
7711
7712         * dbus/dbus-connection.h: remove dbus_connection_handle_watch
7713
7714         * dbus/dbus-watch.c (dbus_watch_handle): change DBusWatch to work
7715         like DBusTimeout, so we don't need dbus_connection_handle_watch
7716         etc.
7717
7718 2003-04-17  Havoc Pennington  <hp@redhat.com>
7719
7720         * dbus/dbus-userdb.c, dbus/dbus-sysdeps.c: redo all the passwd
7721         database usage so it all goes via the DBusUserDatabase cache.
7722
7723 2003-04-17  Havoc Pennington  <hp@redhat.com>
7724
7725         * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix logic so that if
7726         there was an OOM watch we skipped, we always return TRUE so we
7727         iterate again to have a look at it again. Fixes test suite hang.
7728         Code rearrangement also lets us lose some memset and only iterate
7729         over callbacks once.
7730
7731         * bus/driver.c (bus_driver_handle_message): sense of test for
7732         reply was backward
7733
7734 2003-04-16  Havoc Pennington  <hp@pobox.com>
7735
7736         * doc/dbus-specification.sgml: make spec say serials are unsigned
7737
7738         * dbus/dbus-message.h: change message serials to unsigned
7739
7740         * dbus/dbus-connection.c: adapt to message serials being unsigned
7741
7742 2003-04-15  Havoc Pennington  <hp@pobox.com>
7743
7744         * bus/bus.c: create and keep around a shared DBusUserDatabase
7745         object.
7746
7747         * bus/connection.c (bus_connection_get_groups): don't cache
7748         groups for user in the connection object, since user database
7749         object now does that.
7750
7751 2003-04-16  Havoc Pennington  <hp@redhat.com>
7752
7753         * dbus/dbus-message.c (_dbus_message_add_size_counter): keep a
7754         list of size counters
7755         (_dbus_message_loader_putback_message_link): put back a popped link
7756
7757         * dbus/dbus-connection.c
7758         (dbus_connection_set_max_live_messages_size): rename
7759         max_received_size
7760         (dbus_connection_get_outgoing_size): get size of outgoing
7761         queue
7762         (_dbus_connection_set_connection_counter): remove this cruft
7763
7764 2003-04-14  Havoc Pennington  <hp@redhat.com>
7765
7766         * dbus/dbus-userdb.c: user database abstraction, mostly to get
7767         caching, but at some point we might want to be able to use a
7768         different database.
7769
7770         * bus/dispatch.c (bus_dispatch_sha1_test): add a test that uses
7771         SHA1 conf file to test the sha1 auth mechanism, since the regular
7772         test always uses EXTERNAL when available.
7773
7774         * configure.in,
7775         test/data/valid-config-files/debug-allow-all-sha1.conf.in:
7776         add conf file that requires use of sha1 auth
7777
7778 2003-04-13  Havoc Pennington  <hp@pobox.com>
7779
7780         * tools/dbus-send.c, tools/dbus-monitor.c: two utility programs
7781         from Philip Blundell to send messages and monitor them.
7782
7783 2003-04-13  Havoc Pennington  <hp@pobox.com>
7784
7785         * dbus/dbus-mainloop.c: fix some reentrancy issues by refcounting
7786         callbacks
7787
7788         * test/data/valid-config-files/debug-allow-all.conf.in: allow all
7789         users
7790
7791         * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
7792         fix to only recover unused bytes if we're already authenticated
7793         (_dbus_transport_get_is_authenticated): fix to still mark us
7794         authenticated if there are unused bytes.
7795
7796         * bus/dispatch.c: implement security policy checking
7797
7798         * bus/connection.c (bus_transaction_send_from_driver): new
7799
7800         * bus/bus.c (bus_context_check_security_policy): new
7801
7802         * bus/dispatch.c (send_service_nonexistent_error): delete this,
7803         now we just set the DBusError and it gets converted to an error
7804         reply.
7805
7806         * bus/connection.c (allow_user_function): enable code using actual
7807         data from the config file
7808
7809         * bus/policy.c (list_allows_user): handle wildcard rules for
7810         user/group connection perms
7811
7812 2003-04-13  Havoc Pennington  <hp@pobox.com>
7813
7814         * bus/config-parser.c: Load up the BusPolicy and BusPolicyRules
7815
7816         * dbus/dbus-sysdeps.c (_dbus_get_user_id): new function
7817
7818         * bus/policy.c (bus_policy_append_mandatory_rule)
7819         (bus_policy_append_default_rule, bus_policy_append_user_rule)
7820         (bus_policy_append_group_rule): new functions
7821
7822 2003-04-12  Havoc Pennington  <hp@pobox.com>
7823
7824         * bus/config-parser.c (bus_config_parser_new): fix a memleak
7825
7826         * dbus/dbus-sysdeps.c: change DBusCredentials to use longs for
7827         the pid/gid/uid, just for paranoia.
7828
7829         * test/break-loader.c (randomly_do_n_things): find a byte
7830         containing a type code, and randomly change it to a different
7831         type code.
7832
7833 2003-04-12  Havoc Pennington  <hp@pobox.com>
7834
7835         * bus/policy.h: change BusPolicy to be the thing from the config
7836         file, and rename old BusPolicy to BusClientPolicy
7837
7838         * bus/bus.c, bus/connection.c, bus/config-parser.c: change to
7839         match change in how policy works
7840
7841         * dbus/dbus-internals.h: mark assert_not_reached as
7842         __attribute((noreturn))__
7843
7844 2003-04-11  Havoc Pennington  <hp@redhat.com>
7845
7846         * doc/dbus-specification.sgml: fix a spot with the wrong name for
7847         the broadcast service. Use boolean return for ServiceExists.
7848
7849 2003-04-11  Havoc Pennington  <hp@redhat.com>
7850
7851         * configure.in: add another directory to look for qt in.
7852
7853 2003-04-11  Havoc Pennington  <hp@redhat.com>
7854
7855         * AUTHORS: add Colin Walters
7856
7857 2003-04-11  Havoc Pennington  <hp@redhat.com>
7858
7859         * NEWS: update
7860
7861         * configure.in: 0.9
7862
7863 2003-04-11  Havoc Pennington  <hp@redhat.com>
7864
7865         * bus/messagebus.in: remove pid file when stopping the
7866         message bus, since the bus won't have privileges to remove it
7867         itself.
7868
7869 2003-04-11  Havoc Pennington  <hp@redhat.com>
7870
7871         * bus/bus.c (bus_context_new): move credentials change after
7872         creating pidfile
7873
7874 2003-04-11  Havoc Pennington  <hp@pobox.com>
7875
7876         * test/decode-gcov.c: add "below average functions" to the
7877         coverage report, and change how some of the code works.
7878
7879         * bus/test-main.c: bracket some stuff in DBUS_BUILD_TESTS so it's
7880         not in the coverage stats.
7881
7882         * test/test-service.c (main): use _dbus_verbose not fprintf in a
7883         couple places so running the test suite doesn't result in megaspam.
7884
7885 2003-04-11  Havoc Pennington  <hp@pobox.com>
7886
7887         * bus/dispatch.c (check_existent_service_activation): accept a no
7888         memory error in a place we didn't before
7889
7890         * bus/test.c (bus_test_run_everything): remove hacky "do it twice
7891         in case the first one failed," since the test suite is less
7892         broken now.
7893
7894 2003-04-10  Havoc Pennington  <hp@pobox.com>
7895
7896         * bus/dispatch.c (check_segfault_service_activation): add test
7897         for launching an executable that just crashes.
7898
7899         * test/test-segfault.c (main): try setting coredumpsize to 0 so we
7900         don't leave a million cores. We'll see how portable this is.
7901
7902 2003-04-10  Havoc Pennington  <hp@pobox.com>
7903
7904         * dbus/dbus-spawn.c (_dbus_spawn_async_with_babysitter): move all
7905         the possible parent failures before we fork, so that we don't
7906         fail to create a babysitter after creating the child.
7907
7908         * bus/activation.c (bus_activation_activate_service): kill child
7909         if we don't successfully complete the activation.
7910
7911 2003-04-10  Havoc Pennington  <hp@redhat.com>
7912
7913         * dbus/dbus-connection.c (dbus_connection_flush): don't spin on
7914         the connection if it's disconnected
7915
7916         * bus/activation.c (bus_activation_service_created): use new
7917         transaction features to roll back removal of pending activation if
7918         we don't successfully create the service after all. Don't remove
7919         pending activation if the function fails.
7920
7921         * dbus/dbus-list.c (_dbus_list_insert_before_link)
7922         (_dbus_list_insert_after_link): new code to facilitate
7923         services.c fixes
7924
7925         * dbus/dbus-hash.c (_dbus_hash_table_insert_string_preallocated):
7926         new functionality, so we can preallocate the ability to insert
7927         into a hash table.
7928
7929         * bus/connection.c (bus_transaction_add_cancel_hook): new function
7930         allowing us to put custom hooks in a transaction to be used for
7931         cancelling said transaction
7932
7933         * doc/dbus-specification.sgml: add some discussion of secondary
7934         service owners, and disallow zero-length service names
7935
7936         * bus/services.c (bus_registry_acquire_service): new function,
7937         splits out part of bus_driver_handle_acquire_service() and fixes
7938         a bug where we didn't remove the service doing the acquiring
7939         from the secondary queue if we failed to remove the current owner
7940         from the front of the queue.
7941
7942 2003-04-10  Alexander Larsson  <alexl@redhat.com>
7943
7944         * doc/dbus-specification.sgml:
7945         s/org.freedesktop.Broadcast/org.freedesktop.DBus.Broadcast/
7946
7947 2003-04-10  Alexander Larsson  <alexl@redhat.com>
7948
7949         * bus/.cvsignore:
7950         * glib/.cvsignore:
7951         * test/.cvsignore:
7952         Added files to cvsignore
7953
7954         * dbus/dbus-message.h:
7955         * dbus/dbus-message.c: (dbus_message_iter_get_named):
7956         Make get_named() take two out argument and return a boolean.
7957         (dbus_message_iter_get_args_valist):
7958         Update usage of get_named().
7959         (dbus_message_iter_append_byte):
7960         Fix typo
7961         (dbus_message_iter_append_named)
7962         Fix typo
7963         (message_iter_test), (check_message_handling_type), (_dbus_message_test):
7964         More tests.
7965
7966 2003-04-10  Alexander Larsson  <alexl@redhat.com>
7967
7968         * dbus/dbus-marshal.[ch]:
7969         Add array_type_pos argument to _dbus_marshal_validate_arg.
7970         Let you pass a NULL end_pos to _dbus_marshal_validate_type.
7971
7972         * dbus/dbus-message.[ch]:
7973         Multi-dimensional arrays have full type specification in the
7974         outermost array. Iter code re-arranged to handle this.
7975         Added some more iter tests.
7976
7977         * doc/dbus-specification.sgml:
7978         Add me to authors.
7979         Remove old FIXME.
7980         Update new array encoding description.
7981         Correct DBUS_SERVICE_FLAGS_REPLACE_EXISTING description.
7982
7983         * test/data/invalid-messages/array-with-mixed-types.message:
7984         * test/data/valid-messages/array-of-array-of-uint32.message:
7985         Change to the new array format.
7986
7987         * test/data/invalid-messages/too-short-dict.message:
7988         Fix bug in test.
7989
7990         * test/data/valid-messages/recursive-types.message:
7991         Fix up and extend test.
7992
7993 2003-04-10  Havoc Pennington  <hp@pobox.com>
7994
7995         * bus/dispatch.c: lots of fixes
7996
7997         * dbus/dbus-mainloop.c (_dbus_loop_dispatch): export
7998         (_dbus_loop_iterate): remove old "quit if no callbacks" code,
7999         that was crack, broke the test service.
8000
8001         * dbus/dbus-transport.c (_dbus_transport_open): fix error
8002         handling to avoid piling up errors if we get a failure on the
8003         first address.
8004
8005         * dbus/dbus-internals.c (_dbus_real_assert_not_reached): include
8006         pid in assertion failures.
8007
8008         * dbus/dbus-mainloop.c (_dbus_loop_iterate): use static arrays up
8009         to some fixed size of file descriptor array. Don't return TRUE
8010         anytime a timeout exists, that led to lots of busy loop silliness
8011         in the tests.
8012
8013 2003-04-09  Havoc Pennington  <hp@redhat.com>
8014
8015         * dbus/dbus-mainloop.c (check_timeout): fix timeouts, I thought
8016         I'd checked this in earlier but hadn't.
8017
8018 2003-04-09  Havoc Pennington  <hp@redhat.com>
8019
8020         * bus/dispatch.c (bus_dispatch_test): get a bit further through
8021         the activation test (man this is getting old!)
8022
8023 2003-04-09  Havoc Pennington  <hp@redhat.com>
8024
8025         * test/test-utils.c: use dispatch status function to fix this up
8026
8027         * bus/connection.c (connection_watch_callback): don't dispatch
8028         from here
8029         (connection_timeout_callback): don't dispatch from here
8030         (bus_connections_setup_connection): set the dispatch status function
8031         (bus_connection_disconnected): unset it
8032
8033         * dbus/dbus-mainloop.c (_dbus_loop_queue_dispatch): new function
8034         used to add a connection to be dispatched
8035         (_dbus_loop_iterate): do the dispatching at the end of each
8036         iteration
8037
8038         * dbus/dbus-connection.c
8039         (dbus_connection_set_dispatch_status_function): new function
8040         allowing us to fix up main loop usage
8041         (_dbus_connection_last_unref): free all the various function
8042         user data
8043         (dbus_connection_dispatch): call the DispatchStatusFunction
8044         whenever this function returns
8045         (dbus_connection_handle_watch): call DispatchStatusFunction
8046         (dbus_connection_send_with_reply_and_block): call DispatchStatusFunction
8047         (reply_handler_timeout): call DispatchStatusFunction
8048         (dbus_connection_flush): call DispatchStatusFunction
8049
8050 2003-04-09  Havoc Pennington  <hp@redhat.com>
8051
8052         * dbus/dbus-bus.c (dbus_bus_register): fix up error handling and
8053         a memory leak
8054
8055         * bus/dispatch.c (check_service_activated): fix bug in test
8056
8057         * dbus/dbus-mainloop.c (check_timeout): fix this up
8058
8059         * dbus/dbus-internals.c (_dbus_verbose_real): include PID in
8060         verbose output so we can sort out output from different processes,
8061         e.g. in the activation case.
8062
8063 2003-04-08  Colin Walters  <walters@gnu.org>
8064
8065         * bus/bus.c (struct BusContext) [pidfile]: New member, to store
8066         the pid file.
8067         (bus_context_new): Set it.
8068         (bus_context_unref): Use it to delete the pid file.
8069
8070 2003-04-08  Havoc Pennington  <hp@redhat.com>
8071
8072         * test/data/invalid-messages/array-with-mixed-types.message:
8073         regression test that fails for the moment
8074
8075         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): reorder
8076         tests for convenience
8077
8078         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): don't allow
8079         array of nil, it broke things.
8080
8081         * test/data/invalid-messages/array-of-nil.message: regression test
8082
8083         * test/data/valid-messages/array-of-array-of-uint32.message:
8084         happened to write this so added it to suite
8085
8086 2003-04-08  Havoc Pennington  <hp@redhat.com>
8087
8088         * bus/driver.c (bus_driver_handle_acquire_service): init
8089         retval/reply before checking name
8090
8091         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add a
8092         recursion depth argument
8093
8094         * dbus/dbus-message.h (struct DBusMessageIter): put some padding
8095         in the public struct for future extension
8096
8097         * dbus/dbus-message-builder.c (_dbus_message_data_load): fix
8098         typo
8099
8100         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix a verbose
8101         message
8102
8103         * doc/dbus-specification.sgml: fix typo
8104
8105 2003-04-08  Alexander Larsson  <alexl@redhat.com>
8106
8107         Implemented recursive types, named types and new-style iters
8108
8109         * bus/driver.c:
8110         * glib/test-thread-client.c: (thread_func):
8111         * glib/test-thread-server.c: (handle_test_message):
8112         * test/test-service.c: (handle_echo):
8113         Update to new api
8114
8115         * dbus/Makefile.am:
8116         * dbus/dbus-dict.c:
8117         * dbus/dbus-dict.h:
8118         * dbus/dbus.h
8119         Remove DBusDict
8120
8121         * dbus/dbus-internals.c: (_dbus_type_to_string):
8122         Update for new types.
8123
8124         * dbus/dbus-marshal.[ch]:
8125         Implement recursive types and the new marshalling format.
8126         Remove hardcoded dict marshalling.
8127         Marshal named types.
8128
8129         * dbus/dbus-message-builder.c:
8130         Add BYTE_ARRAY.
8131         Remove references to old types
8132
8133         * dbus/dbus-message.[ch]:
8134         New non-refcounted iter API that supports recursive iters.
8135         Use iters for appending, including support for recursive
8136         iters.
8137         Add byte and named type support.
8138         Update everything to new marshalling formats.
8139         Add tests for new API.
8140
8141         * dbus/dbus-protocol.h:
8142         Remove old array types.
8143         Add types: BYTE, ARRAY, DICT, NAMED
8144
8145         * dbus/dbus-string.c:
8146         * dbus/dbus-sysdeps.c:
8147         Make parse_double locale safe.
8148
8149         * dbus/dbus-test-main.c:
8150         Call setlocale.
8151
8152         * dbus/dbus-test.c:
8153         Kill dict test
8154
8155         * doc/dbus-specification.sgml:
8156         Update spec
8157
8158         * test/data/incomplete-messages/missing-body.message:
8159         * test/data/invalid-messages/bad-boolean.message:
8160         * test/data/invalid-messages/bad-boolean-array.message:
8161         * test/data/invalid-messages/boolean-array-length-too-long.message-raw:
8162         * test/data/invalid-messages/boolean-has-no-value.message-raw:
8163         * test/data/invalid-messages/too-short-dict.message:
8164         * test/data/valid-messages/dict-simple.message:
8165         * test/data/valid-messages/dict.message:
8166         * test/data/valid-messages/emptiness.message:
8167         * test/data/valid-messages/lots-of-arguments.message:
8168         * test/data/valid-messages/no-padding.message:
8169         * test/data/valid-messages/recursive-types.message:
8170         Add missing NAME fields
8171         Fix up dicts & arrays
8172
8173         * test/data/invalid-messages/dict-with-nil-value.message:
8174         Removed, this is not invalid anymore.
8175
8176         * test/data/valid-messages/recursive-types.message:
8177         Add new test for deeply recursive types.
8178
8179 2003-04-07  Havoc Pennington  <hp@pobox.com>
8180
8181         * bus/driver.c (bus_driver_handle_acquire_service): return an
8182         error if you try to acquire a service that starts with ':'
8183
8184 2003-04-07  Havoc Pennington  <hp@redhat.com>
8185
8186         * doc/dbus-specification.sgml: require that base service names
8187         start with ':' and that the base service is created/deleted
8188         as first and last things a connection does on the bus
8189
8190         * bus/dispatch.c (check_existent_service_activation): lots more
8191         work on the activation test; it doesn't fully pass yet...
8192
8193         * test/test-service.c (main): fix so we don't memleak the
8194         connection to the message bus
8195         (filter_func): accept a message asking us to exit
8196
8197 2003-04-06  Havoc Pennington  <hp@pobox.com>
8198
8199         * qt/Makefile.am (dbusinclude_HEADERS): install dbus-qt.h,
8200         from Colin Walters
8201
8202         * configure.in: fixes to Qt detection from Colin Walters
8203
8204         * doc/Makefile.am: Only remove generated docbook dirs if they
8205         exist, from Colin Walters
8206
8207         * dbus/dbus-bus.c: change how we set well-known connections to
8208         NULL, so that it works if a single connection is stored in
8209         two well-known array slots.
8210
8211         * test/Makefile.am: remove a lot of stuff that isn't immediately
8212         useful, it's in CVS history if we want it.
8213
8214         * test/test-service.c: use dbus-mainloop instead of that
8215         watch.[hc] crack
8216
8217 2003-04-06  Havoc Pennington  <hp@pobox.com>
8218
8219         * dbus/Makefile.am: split lists of sources into stuff that goes in
8220         the library, util functions that go in the lib and are also used
8221         elsewhere, and util functions that are used in tests/daemon but
8222         don't go in the lib.
8223
8224         * dbus/dbus-mainloop.h, dbus/dbus-mainloop.c: move bus/loop.[hc]
8225         here so it can be used in test binaries also
8226
8227 2003-04-06  Havoc Pennington  <hp@pobox.com>
8228
8229         * dbus/dbus-sysdeps.c (_dbus_become_daemon): write the pidfile
8230         here in the parent process, so we can return an error if it
8231         fails. Also, move some of the code into the child so the parent
8232         is less hosed if we fail midway through.
8233
8234         * bus/bus.c (bus_context_new): move pidfile detection further up
8235         in the function, before we start overwriting sockets and such.
8236
8237         * bus/messagebus.in: adjust this a bit, not sure if it will work.
8238
8239         * configure.in: add --with-system-pid-file and --with-system-socket
8240
8241 2003-04-06  Colin Walters  <walters@verbum.org>
8242
8243         * configure.in (DBUS_SYSTEM_PID_FILE): New variable.
8244
8245         * bus/system.conf.in: Declare a pidfile.
8246
8247         * bus/bus.c (bus_context_new): Test for an existing pid file, and
8248         create one (if appropriate).
8249
8250         * bus/config-parser.c (enum ElementType) [ELEMENT_PIDFILE]: New.
8251         (struct BusConfigParser) [pidfile]: New.
8252         (element_type_to_name, merge_included, start_busconfig_child)
8253         (bus_config_parser_end_element, bus_config_parser_content): Handle it.
8254         (bus_config_parser_unref): Free it.
8255         (bus_config_parser_get_pidfile): New function.
8256
8257         * bus/config-parser.h (_dbus_write_pid_file): Prototype.
8258
8259         * dbus/dbus-errors.h (DBUS_ERROR_PIDFILE_EXISTS): New error.
8260
8261         * dbus/dbus-sysdeps.c (_dbus_write_pid_file): New function.
8262
8263         * dbus/dbus-sysdeps.h: Prototype it.
8264
8265 2003-04-06  Havoc Pennington  <hp@pobox.com>
8266
8267         * bus/bus.c (bus_context_new): print the address in here, rather
8268         than in main(), because we need to do it before forking the daemon
8269
8270         * bus/dispatch.c (send_service_nonexistent_error): set the sender
8271         on the service nonexistent error
8272
8273         * bus/driver.c (bus_driver_handle_acquire_service): set the
8274         sender on the AcquireService reply
8275
8276         * test/data/valid-config-files/debug-allow-all.conf.in: Make test
8277         server also listen on a UNIX socket so services can connect to it.
8278
8279 2003-04-06  Havoc Pennington  <hp@pobox.com>
8280
8281         * dbus/dbus-threads.c: Redo how the fake debug mutexes are done
8282         so it detects deadlocks and also we actually init threads when
8283         debugging.
8284
8285 2003-04-06  Havoc Pennington  <hp@pobox.com>
8286
8287         * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
8288         save the domain socket name, and unlink it when we disconnect the
8289         server. Means that at least when we exit normally, we won't leave
8290         a bunch of junk in /tmp
8291
8292         * dbus/dbus-transport-unix.c
8293         (_dbus_transport_new_for_domain_socket): code cleanup (nicer
8294         memory management). (I was making a real change here but then
8295         didn't)
8296
8297 2003-04-06  Havoc Pennington  <hp@pobox.com>
8298
8299         * bus/bus.c (bus_context_new): fix wrong handling of
8300         server_data_slot_unref() in the error case.
8301
8302         * dbus/dbus-internals.h (_dbus_assert): change so it passes
8303         "(condition) != 0" to _dbus_real_assert so that
8304         "_dbus_assert (pointer)" doesn't cause a warning
8305
8306         * bus/main.c (main): accept --print-address option to print out
8307         the message bus address
8308
8309         * dbus/dbus-sysdeps.c (_dbus_generate_random_ascii): export this
8310
8311         * dbus/dbus-transport.c (_dbus_transport_open): special error for
8312         "tmpdir" option to unix: address on client side
8313
8314         * dbus/dbus-server.c (dbus_server_listen): handle "tmpdir" option
8315         to unix: address
8316
8317         * configure.in (TEST_SOCKET_DIR): locate a temporary directory
8318         we can use to create sockets in the test suite.
8319
8320         * bus/main.c (signal_handler): on SIGTERM, exit the daemon
8321         cleanly. To be used for testing.
8322
8323         * dbus/dbus-spawn.c (babysit): use _dbus_set_signal_handler()
8324
8325         * dbus/dbus-sysdeps.c (_dbus_set_signal_handler): new
8326
8327         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
8328         handle trying to call this when there's no servers active
8329
8330 2003-04-05  Havoc Pennington  <hp@pobox.com>
8331
8332         * NEWS: update
8333
8334         * configure.in: 0.8
8335
8336 2003-04-05  Havoc Pennington  <hp@pobox.com>
8337
8338         * bus/bus.c (setup_server): fix this so dbus-daemon-1 doesn't
8339         crash on startup. Need to get "try starting the daemon"
8340         in the test suite I guess. ;-)
8341
8342         * dbus/dbus-server.h, dbus/dbus-server.c: remove the stuff that
8343         tracked the number of open connections; it's better done in
8344         application-specific code as you want it to span all servers etc.
8345
8346 2003-04-05  Havoc Pennington  <hp@pobox.com>
8347
8348         * bus/Makefile.am (install-data-hook): add missing DESTDIR,
8349         patch from Colin Walters
8350
8351 2003-04-05  Havoc Pennington  <hp@pobox.com>
8352
8353         * doc/config-file.txt (Elements): fix docs of <auth> to reflect
8354         reality; in fact multiple mechanisms are allowed.
8355
8356         * dbus/dbus-internals.c (_dbus_real_assert)
8357         (_dbus_real_assert_not_reached): move guts of _dbus_assert() and
8358         _dbus_assert_not_reached() into functions, so that they don't show
8359         up in basic block counts for test coverage, and don't use up as
8360         much disk space. Does mean slower execution speed though, so
8361         assumes --disable-asserts is the normal production case.
8362
8363 2003-04-05  Havoc Pennington  <hp@pobox.com>
8364
8365         * test/Makefile.am (dist-hook): also dist *.in files
8366
8367         * NEWS: update
8368
8369         * configure.in: 0.7
8370
8371 2003-04-05  Havoc Pennington  <hp@pobox.com>
8372
8373         * dbus/dbus-string.c: docs warning
8374
8375         * dbus/dbus-spawn.c: missing docs
8376
8377         * dbus/dbus-memory.c (struct ShutdownClosure): missing docs
8378
8379 2003-04-05  Havoc Pennington  <hp@pobox.com>
8380
8381         * bus/loop.c (bus_loop_iterate): fix the timeout code, using
8382         magic from GLib
8383
8384         * dbus/dbus-spawn.c (_dbus_babysitter_unref): set sitter_pid
8385         to -1 once we've reaped the babysitter
8386         (_dbus_babysitter_handle_watch): do as much work as we can, not
8387         just one go of it
8388
8389         * bus/activation.c: add code using DBusBabysitter so that we
8390         handle it when a service fails to start up properly.
8391         (bus_activation_service_created): don't remove the activation
8392         entries as we go, just let them get removed when we free the pending
8393         activation. Unref reply messages after sending them.
8394
8395 2003-04-05  Havoc Pennington  <hp@pobox.com>
8396
8397         * test/decode-gcov.c (main): print per-directory stats in the report
8398
8399         * Makefile.am (coverage-report.txt): don't include test/* in gcov stats
8400
8401 2003-04-05  Havoc Pennington  <hp@pobox.com>
8402
8403         * Makefile.am (coverage-report.txt): add target "coverage-report.txt"
8404
8405         * test/decode-gcov.c: hack up a little program to suck data
8406         out of gcov files. Yes this is sort of silly.
8407
8408         * configure.in: define something in config.h and do an
8409         AM_CONDITIONAL when gcov is enabled
8410
8411 2003-04-04  Havoc Pennington  <hp@redhat.com>
8412
8413         * dbus/dbus-spawn.c, dbus/dbus-spawn.h: Change dbus_spawn to
8414         return a "babysitter" object that is used to monitor the status of
8415         the spawned process and reap it when required.
8416
8417         * test/test-segfault.c, test/test-exit.c,
8418         test/test-sleep-forever.c: binaries that do various lame things,
8419         used in the test suite.
8420
8421         * dbus/dbus-sysdeps.c: kill _dbus_errno_to_string()
8422
8423 2003-04-03  Havoc Pennington  <hp@pobox.com>
8424
8425         * dbus/dbus-spawn.c: Move dbus-spawn into a separate file
8426         in preparation for modifying it, dbus-sysdeps is getting
8427         a bit unmanageable.
8428
8429 2003-04-03  Havoc Pennington  <hp@redhat.com>
8430
8431         * bus/loop.h, bus/loop.c: make the mainloop an object so we can
8432         have multiple ones
8433
8434         * bus/*.[hc]: adapt to mainloop change
8435
8436 2003-04-03  Havoc Pennington  <hp@redhat.com>
8437
8438         * bus/activation.c (load_directory): fix up memleaks
8439         (bus_activation_entry_free): free the entry
8440
8441         * dbus/dbus-bus.c (dbus_bus_acquire_service): return an error if
8442         we get one from the message bus; fix memleaks.
8443
8444         * dbus/dbus-message.c (dbus_set_error_from_message): new function
8445
8446 2003-04-03  Havoc Pennington  <hp@pobox.com>
8447
8448         * bus/config-parser.c (bus_config_parser_unref): free
8449         list of mechanisms, bug discovered by test suite enhancements
8450         (putting system.conf and session.conf into suite)
8451
8452         * test/Makefile.am, test/test-service.c: add placeholder for a
8453         test service that we'll activate as part of test suite. Doesn't
8454         do anything yet.
8455
8456         * dbus/dbus-sysdeps.c (_dbus_setenv): support unsetenv by
8457         setting NULL value, and use system malloc not dbus_malloc()
8458         when we have unavoidable memleakage.
8459
8460         * dbus/dbus-bus.c (dbus_bus_get): fix bug where bus type of 0
8461         didn't work, and support DBUS_BUS_ACTIVATION.
8462
8463         * bus/activation.c (child_setup): pass our well-known bus type to
8464         the child
8465
8466         * bus/config-parser.c: support <type> to specify well-known type
8467
8468         * doc/dbus-specification.sgml: document the env variables to
8469         locate well-known buses and find service activator
8470
8471 2003-04-02  Havoc Pennington  <hp@redhat.com>
8472
8473         * test/Makefile.am (all-local): add a rule to copy tests to
8474         builddir, so we can have generated tests. Use this to remove the
8475         silly hack for testing system.conf and session.conf. Will use this
8476         shortly to generate .service files pointing to test binaries.
8477
8478 2003-04-02  Havoc Pennington  <hp@redhat.com>
8479
8480         * dbus/dbus-string.c (set_length): fix a bug - we allocated max of
8481         current alloc and needed new length, not max of the doubled
8482         allocation and needed new length. Also, when building tests,
8483         don't do the double-allocation stuff, just realloc every time.
8484
8485 2003-04-02  Havoc Pennington  <hp@redhat.com>
8486
8487         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): include filenames
8488         in error messages
8489         (_dbus_string_get_dirname): new
8490         (_dbus_sysdeps_test): new
8491         (_dbus_directory_open): include dirnames in error messages
8492
8493         * bus/config-parser.c: interpret <include> and <includedir> and
8494         <servicedir> relative to config file location if the given
8495         filename is not absolute.
8496
8497         * dbus/dbus-string.c (_dbus_string_find_byte_backward): new
8498
8499 2003-04-02  Havoc Pennington  <hp@redhat.com>
8500
8501         * bus/connection.c (bus_transaction_send_error_reply): set sender
8502         service for the error, and unref the reply on success
8503
8504         * bus/activation.c: convert to use BusTransaction so OOM can be
8505         handled correctly
8506         (bus_activation_service_created): set sender of the message
8507
8508 2003-04-01  Havoc Pennington  <hp@redhat.com>
8509
8510         * bus/config-parser.c, bus/bus.c: implement <servicedir> and
8511         <includedir> (at least mostly)
8512
8513         * dbus/dbus-sysdeps.c (_dbus_change_identity): set the group ID
8514         first, then the user ID
8515
8516 2003-04-01  Havoc Pennington  <hp@pobox.com>
8517
8518         * dbus/dbus-server.c (dbus_server_set_auth_mechanisms): new
8519         function
8520
8521         * dbus/dbus-auth.c (_dbus_auth_set_mechanisms): new
8522
8523         * dbus/dbus-internals.c (_dbus_dup_string_array): new function
8524
8525         * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): chmod the
8526         socket 0777, and unlink any existing socket.
8527
8528         * bus/bus.c (bus_context_new): change our UID/GID and fork if
8529         the configuration file so specifies; set up auth mechanism
8530         restrictions
8531
8532         * bus/config-parser.c (bus_config_parser_content): add support
8533         for <fork> option and fill in code for <auth>
8534
8535         * bus/system.conf.in: add <fork/> to default configuration,
8536         and limit auth mechanisms to EXTERNAL
8537
8538         * doc/config-file.txt (Elements): add <fork>
8539
8540         * dbus/dbus-sysdeps.c (_dbus_become_daemon): new function
8541         (_dbus_change_identity): new function
8542
8543 2003-03-31  Havoc Pennington  <hp@redhat.com>
8544
8545         * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket)
8546         (_dbus_listen_unix_socket): fix off-by-one error in null
8547         termination spotted by Nalin
8548
8549 2003-03-31  Havoc Pennington  <hp@redhat.com>
8550
8551         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): allow setting
8552         DBUS_TEST_HOMEDIR when tests are enabled, so we can test without
8553         having a real home directory available.
8554
8555 2003-03-31  Havoc Pennington  <hp@redhat.com>
8556
8557         * bus/Makefile.am (install-data-hook): create /var/run/dbus
8558
8559         * bus/messagebus.in: add init script for Red Hat /etc/init.d
8560
8561         * configure.in: add support for specifying a style of init script
8562         to install
8563
8564 2003-03-31  Havoc Pennington  <hp@redhat.com>
8565
8566         Fix some annoying DBusString API and fix all affected code.
8567
8568         * dbus/dbus-string.c (_dbus_string_init): get rid of annoying
8569         max_length argument
8570         (_dbus_string_get_data): change to return string instead of using
8571         an out param
8572         (_dbus_string_get_const_data): ditto
8573         (_dbus_string_get_data_len): ditto
8574         (_dbus_string_get_const_data_len): ditto
8575
8576 2003-03-31  Havoc Pennington  <hp@redhat.com>
8577
8578         * bus/main.c (main): fix up the command line arguments to be nicer
8579
8580 2003-03-31  Havoc Pennington  <hp@redhat.com>
8581
8582         * dbus/Makefile.am (INCLUDES): use EXPANDED_LOCALSTATEDIR to
8583         define DBUS_SYSTEM_BUS_PATH as we want to compile in the same
8584         final location that lands in the config file
8585
8586         * bus/config-loader-expat.c (bus_config_load): fix type of
8587         XML_Parser variable
8588
8589         * doc/TODO: remove TODO item for dbus_bus_get()
8590
8591         * dbus/dbus-bus.c (bus_data_free): add missing lock/unlock
8592
8593 2003-03-31  Havoc Pennington  <hp@pobox.com>
8594
8595         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_domain_socket)
8596         (_dbus_transport_new_for_tcp_socket): these didn't need the "server"
8597         argument since they are always client side
8598
8599         * dbus/dbus-server.c (dbus_server_get_address): new function
8600
8601         * bus/main.c (main): take the configuration file as an argument.
8602
8603         * test/data/valid-config-files/debug-allow-all.conf: new file to
8604         use with dispatch.c tests for example
8605
8606         * bus/test-main.c (main): require test data dir
8607
8608         * bus/bus.c (bus_context_new): change this to take a
8609         configuration file name as argument
8610
8611         * doc/config-file.txt (Elements): add <servicedir>
8612
8613         * bus/system.conf, bus/session.conf: new files
8614
8615         * dbus/dbus-bus.c (dbus_bus_get): look for system bus on
8616         well-known socket if none set
8617
8618         * configure.in: create system.conf and session.conf
8619
8620 2003-03-30  Havoc Pennington  <hp@pobox.com>
8621
8622         * bus/config-parser.c: hacking
8623
8624         * dbus/dbus-memory.c: don't use DBusList for the list of stuff
8625         to shut down, since it could cause weirdness with the DBusList
8626         lock
8627
8628         * dbus/dbus-list.c (_dbus_list_test): add tests for the
8629         link-oriented stack routines
8630         (alloc_link): free the mempool if the first alloc from it fails
8631
8632         * dbus/dbus-mempool.c (struct DBusMemBlock): fix alignment issue
8633
8634         * dbus/dbus-string.c (UNICODE_VALID): sync new version of this
8635         from GLib
8636         (_dbus_string_skip_white): new
8637
8638         * doc/config-file.txt (Elements): add <includedir>
8639
8640 2003-03-28  Havoc Pennington  <hp@pobox.com>
8641
8642         * dbus/dbus-string.c (_dbus_string_copy_data_len)
8643         (_dbus_string_copy_data): new functions
8644
8645 2003-03-28  Anders Carlsson  <andersca@codefactory.se>
8646
8647         * dbus/dbus-bus.c: (bus_data_free), (dbus_bus_get):
8648         * dbus/dbus-bus.h:
8649         Add dbus_bus_get.
8650
8651         * dbus/dbus-memory.c:
8652         Fix a doc comment.
8653
8654 2003-03-28  Havoc Pennington  <hp@pobox.com>
8655
8656         * bus/test.c (bus_test_flush_bus): remove the sleep from here,
8657         I think it may have just been superstition. Not sure.
8658
8659         * dbus/dbus-string.c (_dbus_string_base64_decode): catch some OOM
8660         failures that were not being handled.
8661
8662         * dbus/dbus-auth.c (process_auth): fix a memleak in OOM handling
8663
8664         * dbus/dbus-memory.c: add ability to set number of mallocs in a
8665         row that will fail on out-of-memory.
8666
8667         * dbus/dbus-internals.c (_dbus_test_oom_handling): convenience
8668         function for testing out-of-memory handling.
8669
8670         * bus/config-loader-expat.c (memsuite): don't wrap the dbus
8671         allocation functions, they do map exactly to the expat ones.
8672
8673 2003-03-27  Havoc Pennington  <hp@redhat.com>
8674
8675         * bus/config-loader-libxml.c (bus_config_load): add another error
8676         check
8677
8678 2003-03-26  Anders Carlsson  <andersca@codefactory.se>
8679
8680         * doc/TODO:
8681         Add note about automatic service activation.
8682
8683         * doc/dbus-specification.sgml:
8684         Rename the specification and clarify a few things.
8685
8686 2003-03-26  Anders Carlsson  <andersca@codefactory.se>
8687
8688         * Doxyfile.in:
8689         * dbus/dbus-address.c:
8690         * dbus/dbus-dict.c:
8691         * dbus/dbus-marshal.c:
8692         * dbus/dbus-server-debug-pipe.c:
8693         * dbus/dbus-transport-unix.c:
8694         Fix documentation warnings.
8695
8696 2003-03-26  Havoc Pennington  <hp@pobox.com>
8697
8698         * bus/test-main.c, dbus/dbus-test.c (main): check memleaks
8699         after every test so it's quick and easy to see which leaked, and
8700         so we test multiple dbus_shutdown() calls
8701
8702         * configure.in: change configure.in XML stuff to also support
8703         expat
8704
8705         * config-loader-libxml.c: some hacking
8706
8707         * config-loader-expat.c: some hacking
8708
8709         * config-parser.c: some hacking, plus tests
8710
8711 2003-03-25  Havoc Pennington  <hp@redhat.com>
8712
8713         * throughout - add more _DBUS_ASSERT_ERROR_IS_CLEAR
8714
8715         * configure.in: add --with-xml option to specify XML library,
8716         right now only libxml is supported.
8717
8718         * bus/config-loader-libxml.c, config-parser.c: sync some minor
8719         nonworking code between home and work, still just stubs
8720
8721 2003-03-24  Havoc Pennington  <hp@redhat.com>
8722
8723         * dbus/dbus-sysdeps.c (_dbus_set_fd_nonblocking): move to this
8724         file
8725
8726         * dbus/dbus-errors.c (dbus_set_error, dbus_set_error_const): allow
8727         NULL argument for "message" if the error is a well-known one,
8728         fill in a generic message in this case.
8729
8730         * dbus/dbus-errors.h (DBusResultCode): Kill DBusResultCode in
8731         favor of DBusError
8732
8733         * bus/test.c (bus_test_flush_bus): add
8734
8735         * bus/policy.c (bus_policy_test): test code stub
8736
8737 2003-03-24  Havoc Pennington  <hp@pobox.com>
8738
8739         * bus/connection.c (bus_connections_setup_connection): set up
8740         the "can this user connect" function, but it always returns
8741         TRUE until we have a config file parser so we can have a config
8742         file that allows connections.
8743
8744 2003-03-23  Havoc Pennington  <hp@pobox.com>
8745
8746         * dbus/dbus-threads.c (dbus_mutex_new, dbus_condvar_new): with
8747         DBUS_BUILD_TESTS, actually alloc/free a block of memory for
8748         the mutex, so we can check for proper memory management
8749         and OOM handling.
8750
8751         * dbus/dbus-dataslot.c: remove the mutex from
8752         DBusDataSlotAllocator and lock it manually when using it,
8753         to simplify fitting it into the global slots framework.
8754
8755         * dbus/dbus-threads.c (init_static_locks): rework how we're
8756         handling global locks so they are easily shut down.
8757
8758         * bus/policy.c (bus_policy_append_rule): fix
8759
8760         * bus/test-main.c (main): check for memleaks
8761
8762         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): make
8763         test suite check for memleaks
8764
8765         * dbus/dbus-memory.c: add support in test mode for tracking
8766         number of outstanding blocks
8767
8768 2003-03-23  Havoc Pennington  <hp@pobox.com>
8769
8770         * bus/policy.c, bus/bus.c, bus/connection.c: implement allow/deny
8771         policies code
8772
8773         * dbus/dbus-hash.h: add ULONG hash keys
8774
8775         * dbus/dbus-sysdeps.c (_dbus_get_groups): new
8776         (_dbus_get_group_id): new function
8777
8778 2003-03-20  Havoc Pennington  <hp@redhat.com>
8779
8780         * dbus/dbus-connection.c (dbus_connection_set_unix_user_function):
8781         new function
8782         (dbus_connection_get_unix_user): new function
8783
8784 2003-03-20  Havoc Pennington  <hp@pobox.com>
8785
8786         * bus/connection.c (bus_connection_send_oom_error): assert that
8787         message has a sender
8788         (connection_execute_transaction): ditto
8789         (bus_connection_preallocate_oom_error): fix to set the sender, and
8790         set recipient to the destination service, not the bus driver
8791
8792         * bus/policy.c: hacking
8793
8794         * dbus/dbus-message.c (dbus_message_service_is): new function
8795         (dbus_message_sender_is): new
8796
8797 2003-03-19  Havoc Pennington  <hp@redhat.com>
8798
8799         * bus/policy.c: start sketching code for policy restrictions on
8800         what connections can do.
8801
8802 2003-03-18  Havoc Pennington  <hp@redhat.com>
8803
8804         * doc/TODO: some notes on high-level todo items. Little nitpick
8805         stuff is all in @todo, so no need to add it here.
8806
8807         * doc/config-file.txt: some notes on how config file might look
8808
8809 2003-03-18  Anders Carlsson  <andersca@codefactory.se>
8810
8811         * configure.in: 0.6
8812
8813         * NEWS: Update.
8814
8815 2003-03-17  Havoc Pennington  <hp@redhat.com>
8816
8817         * dbus/dbus-internals.h: add gcc attributes so that
8818         our printf-style functions warn on bad arguments to
8819         format
8820
8821         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): fix printf
8822         format bug
8823
8824         * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
8825         printf format bug
8826
8827 2003-03-17  Havoc Pennington  <hp@redhat.com>
8828
8829         * bus/test-main.c (main): make it print something as it runs
8830         so make check doesn't look stuck
8831
8832         * doc/negotiation.txt, doc/dbus-sasl-profile.txt: remove
8833         from CVS, now obsolete
8834
8835 2003-03-17  Anders Carlsson  <andersca@codefactory.se>
8836
8837         * bus/dispatch.c: (bus_dispatch):
8838         Refetch the service name since it may have been reallocated
8839         when dbus_message_set_sender was called.
8840
8841         * dbus/dbus-sysdeps.c: (_dbus_accept):
8842         Add address and address length variables and use them to stop
8843         valgrind from complaining.
8844
8845 2003-03-17  Havoc Pennington  <hp@pobox.com>
8846
8847         All tests pass, no memleaks, no valgrind complaints.
8848
8849         * bus/test.c: refcount handler_slot
8850
8851         * bus/connection.c (bus_connections_new): refcount
8852         connection_data_slot
8853
8854         * dbus/dbus-auth-script.c (_dbus_auth_script_run): delete unused
8855         bytes so that auth scripts pass.
8856
8857         * bus/dispatch.c: init message_handler_slot so it gets allocated
8858         properly
8859
8860         * bus/dispatch.c (message_handler_slot_ref): fix memleak
8861
8862         * dbus/dbus-server-debug-pipe.c (_dbus_server_debug_pipe_new):
8863         dealloc server_pipe_hash when no longer used for benefit of
8864         leak checking
8865
8866         * dbus/dbus-auth.c (process_command): memleak fix
8867
8868         * bus/dispatch.c (check_hello_message): memleak fix
8869
8870 2003-03-16  Havoc Pennington  <hp@pobox.com>
8871
8872         * dbus/dbus-bus.c (ensure_bus_data): fix double-unref of the data slot
8873
8874 2003-03-17  Anders Carlsson  <andersca@codefactory.se>
8875
8876         * bus/activation.c (bus_activation_activate_service): Append
8877         the pending activation entry to the list of pending activations.
8878
8879 2003-03-16  Havoc Pennington  <hp@pobox.com>
8880
8881         * bus/dispatch.c (bus_dispatch_test): remove double-unrefs of
8882         connections
8883
8884         * dbus/dbus-address.c (create_entry): fix OOM handling when
8885         failing to alloc entry->method
8886
8887 2003-03-16  Havoc Pennington  <hp@pobox.com>
8888
8889         * dbus/dbus-watch.c (_dbus_watch_new): handle failure to malloc
8890         the watch
8891
8892         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
8893         add some missing dbus_set_result
8894
8895         * bus/dispatch.c (bus_dispatch_add_connection): handle failure to
8896         alloc the DBusMessageHandler
8897
8898         * dbus/dbus-transport.c (_dbus_transport_disconnect): don't ref
8899         the transport here, since we call this from the finalizer; it
8900         resulted in a double-finalize.
8901
8902         * dbus/dbus-transport.c (_dbus_transport_disconnect): fix a bug
8903         where we tried to use transport->connection that was NULL,
8904         happened when transport was disconnected early on due to OOM
8905
8906         * bus/*.c: adapt to handle OOM for watches/timeouts
8907
8908         * dbus/dbus-transport-unix.c: port to handle OOM during
8909         watch handling
8910
8911         * dbus/dbus-auth.c (_dbus_auth_get_unused_bytes): return a
8912         reference to unused bytes instead of a copy
8913
8914         * dbus/dbus-server.c (dbus_server_handle_watch): return FALSE for
8915         out of memory
8916
8917         * dbus/dbus-connection.c (dbus_connection_handle_watch): return
8918         FALSE on OOM
8919
8920         * dbus/dbus-timeout.c (dbus_timeout_handle): return FALSE for out
8921         of memory
8922
8923 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
8924
8925         * doc/dbus-specification.sgml:
8926         Document reply message for ActivateService.
8927
8928 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
8929
8930         * bus/activation.c: (bus_pending_activation_entry_free),
8931         (bus_pending_activation_free), (bus_activation_new),
8932         (bus_activation_unref), (bus_activation_service_created),
8933         (bus_activation_activate_service):
8934         * bus/activation.h:
8935         * bus/bus.c: (bus_context_new):
8936         * bus/desktop-file.c: (new_section):
8937         * bus/driver.c: (bus_driver_send_service_deleted),
8938         (bus_driver_handle_activate_service):
8939         * bus/services.c: (bus_registry_new), (bus_registry_ensure):
8940         * bus/services.h:
8941         * dbus/dbus-connection.c:
8942         (dbus_connection_send_with_reply_and_block):
8943         * dbus/dbus-message.c: (dbus_message_append_args_valist):
8944         * dbus/dbus-protocol.h:
8945         Make activation work better. Now pending activations will be queued
8946         and the daemon won't try to activate services that are already registered.
8947
8948 2003-03-16  Havoc Pennington  <hp@pobox.com>
8949
8950         * dbus/dbus-bus.c (ensure_bus_data): handle failure to set
8951         connection data
8952
8953         * dbus/dbus-memory.c (_dbus_initialize_malloc_debug): support
8954         DBUS_MALLOC_BACKTRACES to print trace when failing an alloc
8955
8956 2003-03-16  Havoc Pennington  <hp@pobox.com>
8957
8958         * dbus/dbus-string.c (_dbus_string_validate_utf8): oops, unbreak
8959         this. always run the test suite before commit...
8960
8961         * bus/*: adapt to DBusConnection API changes
8962
8963         * glib/dbus-gmain.c: adapt to DBusConnection API changes,
8964         requires renaming stuff to avoid dbus_connection_dispatch name
8965         conflict.
8966
8967         * dbus/dbus-transport.c (_dbus_transport_queue_messages): new
8968         function
8969
8970         * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
8971         separate from _dbus_message_loader_return_buffer()
8972
8973         * dbus/dbus-connection.c (dbus_connection_get_n_messages): remove
8974         this, because it's now always broken to use; the number of
8975         messages in queue vs. the number still buffered by the message
8976         loader is undefined/meaningless. Should use
8977         dbus_connection_get_dispatch_state().
8978         (dbus_connection_dispatch): rename from
8979         dbus_connection_dispatch_message
8980
8981 2003-03-16  Havoc Pennington  <hp@pobox.com>
8982
8983         * dbus/dbus-string.c (_dbus_string_validate_utf8): copy in a real
8984         implementation
8985
8986 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
8987
8988         * dbus/dbus-connection.c:
8989         (dbus_connection_send_with_reply_and_block):
8990         Decrease connection->n_incoming when removing an entry
8991         from the list.
8992         * dbus/dbus-dict.c: (dbus_dict_entry_free),
8993         (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
8994         (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
8995         (dbus_dict_set_byte_array), (dbus_dict_set_string_array),
8996         (dbus_dict_get_boolean_array), (dbus_dict_get_double_array),
8997         (dbus_dict_get_byte_array):
8998         Handle NULL arrays and strings. Also add support for byte arrays.
8999
9000         * dbus/dbus-marshal.c: (_dbus_marshal_byte_array),
9001         (_dbus_marshal_dict), (_dbus_demarshal_byte_array),
9002         (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
9003         (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
9004         (_dbus_demarshal_dict), (demarshal_and_validate_len),
9005         (_dbus_marshal_validate_arg), (_dbus_marshal_test):
9006         * dbus/dbus-marshal.h:
9007         Add support for marshalling and demarshalling empty arrays and strings.
9008
9009         * dbus/dbus-message.c: (dbus_message_append_args_valist),
9010         (dbus_message_append_string_array),
9011         (dbus_message_iter_get_boolean),
9012         (dbus_message_iter_get_boolean_array),
9013         (dbus_message_iter_get_int32_array),
9014         (dbus_message_iter_get_uint32_array),
9015         (dbus_message_iter_get_double_array),
9016         (dbus_message_iter_get_byte_array),
9017         (dbus_message_iter_get_string_array), (dbus_message_iter_get_dict),
9018         (check_message_handling):
9019         Add support for getting empty arrays and dicts.
9020
9021         * dbus/dbus-string.c: (_dbus_string_validate_utf8):
9022         Don't do any validation at all for now, that's better than just checking
9023         for ASCII.
9024
9025         * test/data/valid-messages/emptiness.message:
9026         New test message with lots of empty arrays.
9027
9028 2003-03-16  Havoc Pennington  <hp@pobox.com>
9029
9030         * dbus/dbus-connection.c
9031         (_dbus_connection_queue_received_message_link): new function that
9032         can't fail due to OOM
9033
9034         * dbus/dbus-message.c (_dbus_message_loader_pop_message_link):
9035         new function pops a message together with a list link
9036         containing it.
9037
9038         * dbus/dbus-transport-unix.c (queue_messages): use new link-based
9039         message queuing functions to avoid needing to alloc memory
9040
9041 2003-03-16  Havoc Pennington  <hp@pobox.com>
9042
9043         Oops - test code was only testing failure of around 30 of the
9044         mallocs in the test path, but it turns out there are 500+
9045         mallocs. I believe this was due to misguided linking setup such
9046         that there was one copy of dbus_malloc etc. in the daemon and one
9047         in the shared lib, and only daemon mallocs were tested. In any
9048         case, the test case now tests all 500+ mallocs, and doesn't pass
9049         yet, though there are lots of fixes in this patch.
9050
9051         * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
9052         this so that it doesn't need to allocate memory, since it
9053         has no way of indicating failure due to OOM (and would be
9054         annoying if it did).
9055
9056         * dbus/dbus-list.c (_dbus_list_pop_first_link): new function
9057
9058         * bus/Makefile.am: rearrange to create two self-contained
9059         libraries, to avoid having libraries with overlapping symbols.
9060         that was resulting in weirdness, e.g. I'm pretty sure there
9061         were two copies of global static variables.
9062
9063         * dbus/dbus-internals.c: move the malloc debug stuff to
9064         dbus-memory.c
9065
9066         * dbus/dbus-list.c (free_link): free list mempool if it becomes
9067         empty.
9068
9069         * dbus/dbus-memory.c (_dbus_disable_mem_pools): new function
9070
9071         * dbus/dbus-address.c (dbus_parse_address): free list nodes
9072         on failure.
9073
9074         * bus/dispatch.c (bus_dispatch_add_connection): free
9075         message_handler_slot when no longer using it, so
9076         memory leak checkers are happy for the test suite.
9077
9078         * dbus/dbus-server-debug-pipe.c (debug_finalize): free server name
9079
9080         * bus/bus.c (new_connection_callback): disconnect in here if
9081         bus_connections_setup_connection fails.
9082
9083         * bus/connection.c (bus_connections_unref): fix to free the
9084         connections
9085         (bus_connections_setup_connection): if this fails, don't
9086         disconnect the connection, just be sure there are no side
9087         effects.
9088
9089         * dbus/dbus-string.c (undo_alignment): unbreak this
9090
9091         * dbus/dbus-auth.c (_dbus_auth_unref): free some stuff we were
9092         leaking
9093         (_dbus_auth_new): fix the order in which we free strings
9094         on OOM failure
9095
9096         * bus/connection.c (bus_connection_disconnected): fix to
9097         not send ServiceDeleted multiple times in case of memory
9098         allocation failure
9099
9100         * dbus/dbus-bus.c (dbus_bus_get_base_service): new function to
9101         get the base service name
9102         (dbus_bus_register_client): don't return base service name,
9103         instead store it on the DBusConnection and have an accessor
9104         function for it.
9105         (dbus_bus_register_client): rename dbus_bus_register()
9106
9107         * bus/dispatch.c (check_hello_message): verify that other
9108         connections on the bus also got the correct results, not
9109         just the one sending hello
9110
9111 2003-03-15  Havoc Pennington  <hp@pobox.com>
9112
9113         Make it pass the Hello handling test including all OOM codepaths.
9114         Now to do other messages...
9115
9116         * bus/services.c (bus_service_remove_owner): fix crash when
9117         removing owner from an empty list of owners
9118         (bus_registry_ensure): don't leave service in the list of
9119         a connection's owned services if we fail to put the service
9120         in the hash table.
9121
9122         * bus/connection.c (bus_connection_preallocate_oom_error): set
9123         error flag on the OOM error.
9124
9125         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
9126         handle _dbus_transport_set_connection failure
9127
9128         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd): modify
9129         to create watches up front and simply enable/disable them as
9130         needed.
9131         (unix_connection_set): this can now fail on OOM
9132
9133         * dbus/dbus-timeout.c, dbus/dbus-watch.c: add concept
9134         of enabling/disabling a watch or timeout.
9135
9136         * bus/loop.c (bus_loop_iterate): don't touch disabled
9137         watches/timeouts
9138
9139         * glib/dbus-gmain.c: adapt to enable/disable watches and timeouts
9140
9141 2003-03-15  Havoc Pennington  <hp@pobox.com>
9142
9143         * bus/dispatch.c (bus_dispatch_test): OK, now finally actually
9144         write useful test code, after all that futzing around ;-)
9145
9146         Test does not yet pass because we can't handle OOM in
9147         _dbus_transport_messages_pending (basically,
9148         dbus_connection_preallocate_send() does not prealloc the write
9149         watch). To fix this, I think we need to add new stuff to
9150         set_watch_functions, namely a SetEnabled function so we can alloc
9151         the watch earlier, then enable it later.
9152
9153         * dbus/Makefile.am (libdbus_convenience_la_SOURCES): move
9154         dbus-memory.c to the convenience lib
9155
9156         * bus/test.c: rename some static functions to keep them clearly
9157         distinct from stuff in connection.c. Handle client disconnection.
9158
9159 2003-03-14  Havoc Pennington  <hp@pobox.com>
9160
9161         * bus/dispatch.c (bus_dispatch_test): do test using debug-pipe
9162         transport, tests more of the real codepath. Set up clients
9163         with bus_setup_debug_client.
9164
9165         * bus/test.c (bus_setup_debug_client): function to set up debug
9166         "clients" on the main loop
9167
9168         * dbus/dbus-transport.c (_dbus_transport_open): add debug-pipe
9169         support
9170
9171         * dbus/dbus-server.c (dbus_server_listen): add debug-pipe
9172         server type
9173
9174         * dbus/dbus-server-debug.c: support a debug server based on pipes
9175
9176         * dbus/dbus-sysdeps.c (_dbus_full_duplex_pipe): new function
9177         (_dbus_close): new function
9178
9179         * configure.in: check for socketpair
9180
9181 2003-03-14  Havoc Pennington  <hp@redhat.com>
9182
9183         * dbus/dbus-memory.c: add a "detect buffer overwrites on free"
9184         cheesy hack
9185
9186         * dbus/dbus-transport-debug.c: rework this a good bit to be
9187         less complicated. hopefully still works.
9188
9189         * dbus/dbus-server-debug.c (handle_new_client): remove timeout
9190         manually
9191
9192         * glib/dbus-gmain.c (timeout_handler): don't remove timeout
9193         after running it
9194
9195         * dbus/dbus-message.c (dbus_message_copy): rename from
9196         dbus_message_new_from_message, fix it up to copy
9197         all the message fields, add test case
9198
9199         * bus/dispatch.c (bus_dispatch_test): add some more test code,
9200         not quite passing yet
9201
9202 2003-03-14  Havoc Pennington  <hp@pobox.com>
9203
9204         * bus/loop.c (bus_loop_iterate): add this so we can "run loop
9205         until no work remains" in test code. (the large diff here
9206         is just code movement, no actual changes)
9207
9208         * dbus/dbus-server-debug.c (DEFAULT_INTERVAL): change interval to
9209         1, no point waiting around for test code.
9210         (_dbus_server_debug_accept_transport): unref the timeout
9211         after adding it (right?)
9212
9213         * dbus/dbus-transport-debug.c (DEFAULT_INTERVAL): ditto
9214
9215 2003-03-13  Havoc Pennington  <hp@redhat.com>
9216
9217         * dbus/dbus-timeout.c (_dbus_timeout_list_set_functions): handle
9218         out of memory
9219
9220         * dbus/dbus-watch.c (_dbus_watch_list_set_functions): handle out
9221         of memory
9222
9223         * dbus/dbus-connection.h: Make AddWatchFunction and
9224         AddTimeoutFunction return a bool so they can fail on out-of-memory
9225
9226         * bus/bus.c (bus_context_new): set up timeout handlers
9227
9228         * bus/connection.c (bus_connections_setup_connection): set up
9229         timeout handlers
9230
9231         * glib/dbus-gmain.c: adapt to the fact that set_functions stuff
9232         can fail
9233
9234         * bus/bus.c (bus_context_new): adapt to changes
9235
9236         * bus/connection.c: adapt to changes
9237
9238         * test/watch.c: adapt to DBusWatch changes
9239
9240         * bus/dispatch.c (bus_dispatch_test): started adding this but
9241         didn't finish
9242
9243 2003-03-14  Anders Carlsson  <andersca@codefactory.se>
9244
9245         * bus/dispatch.c (send_service_nonexistent_error): Fix typo.
9246
9247 2003-03-13  Havoc Pennington  <hp@pobox.com>
9248
9249         * bus/test.c, bus/test.h, bus/Makefile.am, bus/test-main.c:
9250         set up a test framework as for the library
9251
9252 2003-03-12  Havoc Pennington  <hp@pobox.com>
9253
9254         Throughout: purge global variables, introduce BusActivation,
9255         BusConnections, BusRegistry, etc. objects instead.
9256
9257         * bus/bus.h, bus/bus.c: introduce BusContext as a global
9258         message bus object
9259
9260         * test/Makefile.am (TEST_BINARIES): disable bus-test for now,
9261         going to redo this a bit differently I think
9262
9263 2003-03-12  Havoc Pennington  <hp@redhat.com>
9264
9265         Mega-patch that gets the message bus daemon initially handling
9266         out-of-memory. Work still needed. Also lots of random
9267         moving stuff to DBusError instead of ResultCode.
9268
9269         * dbus/dbus-list.c (_dbus_list_length_is_one): new function
9270
9271         * dbus/dbus-connection.c
9272         (dbus_connection_send_with_reply_and_block): use DBusError
9273
9274         * dbus/dbus-bus.c: adapt to API changes, make it use DBusError not
9275         DBusResultCode
9276
9277         * dbus/dbus-connection.c (dbus_connection_send): drop the result
9278         code here, as the only failure possible is OOM.
9279
9280         * bus/connection.c (bus_connection_disconnect):
9281         rename bus_connection_disconnected as it's a notification only
9282
9283         * bus/driver.c (bus_driver_handle_acquire_service): don't free
9284         "name" on get_args failure, should be done by get_args;
9285         don't disconnect client for bad args, just return an error.
9286         (bus_driver_handle_service_exists): ditto
9287
9288         * bus/services.c (bus_services_list): NULL-terminate returned array
9289
9290         * bus/driver.c (bus_driver_send_service_lost)
9291         (bus_driver_send_service_acquired): send messages from driver to a
9292         specific client to the client's unique name, not to the broadcast
9293         service.
9294
9295         * dbus/dbus-message.c (decode_header_data): reject messages that
9296         contain no name field
9297         (_dbus_message_get_client_serial): rename to
9298         dbus_message_get_serial and make public
9299         (_dbus_message_set_serial): rename from set_client_serial
9300         (_dbus_message_set_reply_serial): make public
9301         (_dbus_message_get_reply_serial): make public
9302
9303         * bus/connection.c (bus_connection_foreach): allow stopping
9304         iteration by returning FALSE from foreach function.
9305
9306         * dbus/dbus-connection.c (dbus_connection_send_preallocated)
9307         (dbus_connection_free_preallocated_send)
9308         (dbus_connection_preallocate_send): new API for sending a message
9309         without possibility of malloc failure.
9310         (dbus_connection_send_message): rename to just
9311         dbus_connection_send (and same for whole function family)
9312
9313         * dbus/dbus-errors.c (dbus_error_free): make this reinit the error
9314
9315         * dbus/dbus-sysdeps.c (_dbus_exit): new function
9316
9317         * bus/activation.c: handle/return errors
9318
9319         * dbus/dbus-errors.h: add more DBUS_ERROR #define
9320
9321         * dbus/dbus-sysdeps.c (_dbus_directory_open) (_dbus_file_get_contents)
9322         (_dbus_directory_get_next_file): use DBusError instead of DBusResultCode
9323         (_dbus_result_from_errno): move to this file
9324
9325 2003-03-10  Anders Carlsson  <andersca@codefactory.se>
9326
9327         * dbus/dbus-marshal.c:
9328         (_dbus_marshal_set_string):
9329         Take a length argument so we can marshal the correct string
9330         length.
9331
9332         (_dbus_marshal_dict), (_dbus_demarshal_dict),
9333         (_dbus_marshal_get_arg_end_pos), (_dbus_marshal_validate_arg),
9334         (_dbus_marshal_test):
9335         * dbus/dbus-marshal.h:
9336         Add support for marshalling and demarshalling dicts.
9337
9338         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
9339         Add support for TYPE DICT.
9340
9341         * dbus/dbus-message.c: (set_string_field):
9342         Adjust header padding.
9343
9344         (dbus_message_append_args_valist), (dbus_message_append_dict),
9345         (dbus_message_get_args_valist), (dbus_message_iter_get_arg_type),
9346         (dbus_message_iter_get_dict), (_dbus_message_loader_return_buffer),
9347         (check_message_handling), (check_have_valid_message):
9348         * dbus/dbus-message.h:
9349         Add functions for setting and getting dicts.
9350
9351         * dbus/dbus-protocol.h:
9352         Add DBUS_TYPE_DICT.
9353
9354         * dbus/dbus.h:
9355         Add dbus-dict.h
9356
9357         * doc/dbus-specification.sgml:
9358         Add information about how dicts are marshalled.
9359
9360         * test/data/invalid-messages/dict-with-nil-value.message:
9361         * test/data/invalid-messages/too-short-dict.message:
9362         * test/data/valid-messages/dict-simple.message:
9363         * test/data/valid-messages/dict.message:
9364         Add sample messages containing dicts.
9365
9366 2003-03-08  Anders Carlsson  <andersca@codefactory.se>
9367
9368         * dbus/dbus-dict.h: Add DBUS_END_DECLS.
9369
9370 2003-03-07  Anders Carlsson  <andersca@codefactory.se>
9371
9372         * dbus/Makefile.am:
9373         * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
9374         (dbus_dict_get_keys), (insert_entry), (dbus_dict_set_boolean),
9375         (dbus_dict_set_int32), (dbus_dict_set_uint32),
9376         (dbus_dict_set_double), (dbus_dict_set_string),
9377         (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
9378         (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
9379         (dbus_dict_set_string_array), (_dbus_dict_test):
9380         * dbus/dbus-dict.h:
9381         Fix according to comments from Havoc.
9382
9383 2003-03-06  Michael Meeks  <michael@server.home>
9384
9385         * configure.in: if we don't have kde-config, disable have_qt.
9386
9387 2003-03-07  Anders Carlsson  <andersca@codefactory.se>
9388
9389         * dbus/Makefile.am:
9390         Add dbus-dict.[ch]
9391
9392         * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
9393         (dbus_dict_ref), (dbus_dict_unref), (dbus_dict_contains),
9394         (dbus_dict_remove), (dbus_dict_get_value_type),
9395         (dbus_dict_get_keys), (dbus_dict_put_boolean),
9396         (dbus_dict_put_int32), (dbus_dict_put_uint32),
9397         (dbus_dict_put_double), (dbus_dict_put_string),
9398         (dbus_dict_put_boolean_array), (dbus_dict_put_int32_array),
9399         (dbus_dict_put_uint32_array), (dbus_dict_put_double_array),
9400         (dbus_dict_put_string_array), (dbus_dict_get_boolean),
9401         (dbus_dict_get_int32), (dbus_dict_get_uint32),
9402         (dbus_dict_get_double), (dbus_dict_get_string),
9403         (dbus_dict_get_boolean_array), (dbus_dict_get_int32_array),
9404         (dbus_dict_get_uint32_array), (dbus_dict_get_double_array),
9405         (dbus_dict_get_string_array), (_dbus_dict_test):
9406         * dbus/dbus-dict.h:
9407         Add DBusDict implementation
9408
9409         * dbus/dbus-test.c: (dbus_internal_do_not_use_run_tests):
9410         * dbus/dbus-test.h:
9411         Add _dbus_dict_test
9412
9413 2003-03-04  Havoc Pennington  <hp@pobox.com>
9414
9415         * test/data/auth/*: adapt to changes
9416
9417         * dbus/dbus-auth-script.c (_dbus_auth_script_run): add
9418         USERID_BASE64 and change USERNAME_BASE64 to put in username not
9419         userid
9420
9421         * dbus/dbus-keyring.c (_dbus_keyring_validate_context): prevent
9422         more stuff from being in a context name, to make the protocol
9423         simpler to deal with
9424
9425         * dbus/dbus-errors.c (dbus_error_has_name): new function
9426         (dbus_error_is_set): new function
9427
9428         * dbus/dbus-auth.c: replace DBUS_STUPID_TEST_MECH auth
9429         with DBUS_COOKIE_SHA1, implement DBUS_COOKIE_SHA1
9430
9431         * dbus/dbus-connection.c (dbus_connection_flush): also read
9432         messages during a flush operation
9433
9434         * dbus/Makefile.am: remove dbus-md5 since it isn't currently used.
9435
9436 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
9437
9438         * configure.in: Check for gethostbyname on Solaris.
9439
9440         * dbus/dbus-transport.c: (_dbus_transport_open):
9441         Remove duplicate "tcp" entry.
9442
9443         * doc/dbus-specification.sgml:
9444         Clarify some things.
9445
9446 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
9447
9448         * dbus/dbus-auth.c: (send_rejected), (process_test_subdir):
9449         * dbus/dbus-keyring.c: (_dbus_keyring_new_homedir),
9450         (_dbus_keyring_test):
9451         * dbus/dbus-md5.c: (_dbus_md5_compute):
9452         * dbus/dbus-sha.c: (_dbus_sha_compute):
9453         Plug memory leaks.
9454
9455 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
9456
9457         * README: Add some things.
9458
9459 2003-03-04  Anders Carlsson  <andersca@codefactory.se>
9460
9461         * dbus/dbus-message.c (dbus_message_append_args_valist): Add a break;
9462         after case DBUS_TYPE_BOOELAN.
9463
9464 2003-03-02  Havoc Pennington  <hp@pobox.com>
9465
9466         * test/break-loader.c (randomly_set_extreme_ints): add test that
9467         sets really huge and small integers
9468
9469         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add check
9470         that length of boolean array fits in the string, and that
9471         string has room for boolean value in single-bool case.
9472
9473         * dbus/dbus-message-builder.c (_dbus_message_data_load): add
9474         optional value to "ALIGN" command which is what to fill the
9475         alignment with.
9476
9477         * test/data/valid-messages/no-padding.message: add regression
9478         test for the message padding problem
9479
9480 2003-03-02  Havoc Pennington  <hp@pobox.com>
9481
9482         * dbus/dbus-message.c (decode_header_data): fix to always init
9483         message_padding, from Benjamin Dauvergne
9484
9485 2003-03-02  Havoc Pennington  <hp@pobox.com>
9486
9487         * configure.in: 0.5
9488
9489         * NEWS: Update.
9490
9491 2003-03-01  Joe Shaw  <joe@assbarn.com>
9492
9493         * configure.in: Check for "struct cmsgcred" and try to access its
9494         members for BSD-like unices.
9495
9496         * dbus/dbus-sysdeps.c (read_credentials_byte): Fold this back into
9497         _dbus_read_credentials_unix_socket().
9498         (_dbus_read_credentials_unix_socket): Use recvmsg() instead of
9499         read() for reading the credential byte off the unix socket.  Use
9500         struct cmsgcred on systems that support it.
9501
9502 2003-02-27  Alexander Larsson  <alexl@redhat.com>
9503
9504         * glib/Makefile.am:
9505         * configure.in:
9506         Make gthreads-2.0 dependency optional. Don't build thread test if
9507         its not found.
9508
9509 2003-02-27  Havoc Pennington  <hp@pobox.com>
9510
9511         * dbus/dbus-connection.c
9512         (dbus_connection_send_message_with_reply_and_block): fix doh!
9513         doh! doh! bug that resulted in never removing a reply from the
9514         queue, no wonder we called get_reply_serial so much ;-)
9515
9516         * dbus/dbus-message.c (struct DBusMessage): cache reply serial
9517         and client serial instead of demarshaling them every time
9518
9519 2003-02-27  Havoc Pennington  <hp@pobox.com>
9520
9521         * dbus/dbus-marshal.c (_dbus_demarshal_int32): rewrite to be much
9522         more inlined, using dbus-string-private.h, speeds things up
9523         substantially
9524
9525         * dbus/dbus-string.c (_dbus_string_free): apply align offset
9526         when freeing the string
9527         (_dbus_string_steal_data): fix for align offset
9528         (undo_alignment): new function
9529
9530 2003-02-26  Havoc Pennington  <hp@redhat.com>
9531
9532         All kinds of audit fixes from Owen, plus initial attempt to
9533         handle unaligned memory returned from malloc.
9534
9535         * dbus/dbus-string.c (_dbus_string_init): clamp max length to
9536         leave room for align_offset and nul byte
9537         (fixup_alignment): function to track an align_offset and
9538         ensure real->str is aligned
9539         (DBUS_GENERIC_STRING_PREAMBLE): len must be less than allocated,
9540         to allow a nul byte plus align offset
9541         (_dbus_string_lock): fix overflow issue
9542         (_dbus_string_init_const_len): add assertions on sanity of len,
9543         assign allocated to be ALLOCATION_PADDING larger than len
9544         (set_length): fixup the overflow handling
9545         (_dbus_string_get_data_len): fix overflow in assertion
9546         (open_gap): detect overflow in size of gap to be opened
9547         (_dbus_string_lengthen): add overflow check
9548         (_dbus_string_align_length): fix overflow with _DBUS_ALIGN_VALUE
9549         (_dbus_string_append): add overflow check
9550         (_dbus_string_append_unichar): overflow
9551         (_dbus_string_delete): fix overflow in assertion
9552         (_dbus_string_copy_len): overflow in assertion
9553         (_dbus_string_replace_len): overflows in assertions
9554         (_dbus_string_find): change to implement in terms of
9555         _dbus_string_find_to
9556         (_dbus_string_find_to): assorted fixage
9557         (_dbus_string_equal_c_str): assert c_str != NULL,
9558         fix logic so the function works
9559         (_dbus_string_ends_with_c_str): fix overflow thingy
9560         (_dbus_string_base64_encode): overflow fix
9561         (_dbus_string_validate_ascii): overflow
9562         (_dbus_string_validate_nul): overflow
9563
9564 2003-02-26  Havoc Pennington  <hp@redhat.com>
9565
9566         * dbus/dbus-marshal.c (_dbus_marshal_test): fix to work with DISABLE_ASSERTS
9567
9568 2003-02-26  Alexander Larsson  <alexl@redhat.com>
9569
9570         * configure.in:
9571         Set DBUS_GLIB_THREADS_LIBS for apps using gthread-2.0
9572
9573         * dbus/dbus-connection.c:
9574         * dbus/dbus-connection.h:
9575         Fix _dbus_connection_acquire_io_path and _dbus_connection_acquire_dispatch.
9576         Add dbus_connection_set_wakeup_main_function and use it when queueing
9577         incoming and outgoing messages.
9578
9579
9580         * dbus/dbus-dataslot.c:
9581         Threadsafe usage of DBusDataSlotAllocator
9582
9583         * dbus/dbus-message.c: (dbus_message_get_args_iter):
9584         dbus_new can fail.
9585
9586         * dbus/dbus-server-unix.c:
9587         Add todo comment
9588
9589         * glib/dbus-gmain.c:
9590         Implement the new wakeup functions for glib.
9591
9592         * glib/Makefile.am:
9593         * glib/test-thread-client.c:
9594         * glib/test-thread-server.c:
9595         * glib/test-thread.h:
9596         Initial cut at some thread test code. Not really done yet.
9597
9598 2003-02-26  Havoc Pennington  <hp@pobox.com>
9599
9600         * dbus/dbus-connection.c
9601         (dbus_connection_send_message_with_reply_and_block): fix crash
9602         where we ref'd the outgoing message instead of the returned reply
9603
9604         * dbus/dbus-transport-unix.c (do_authentication): check read watch
9605         at the end of this function, so if we didn't need to read for
9606         authentication, we reinstall it for receiving messages
9607
9608         * dbus/dbus-message.c (dbus_message_new_reply): allow replies to
9609         a NULL sender for peer-to-peer case
9610
9611         * dbus/dbus-transport-unix.c (check_read_watch): handle
9612         !authenticated case correctly
9613
9614         * glib/dbus-gmain.c: add support for DBusServer
9615
9616         * dbus/dbus-server.c: add data slot support
9617
9618         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): check
9619         return values and handle errors
9620
9621         * dbus/dbus-dataslot.c: factor out the data slot stuff from
9622         DBusConnection
9623
9624         * Doxyfile.in (INPUT): add glib subdir
9625
9626         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): rename
9627         setup_with_g_main instead of hookup_with_g_main; write docs
9628
9629 2003-02-24  Anders Carlsson  <andersca@codefactory.se>
9630
9631         * dbus/dbus-marshal.c: (_dbus_marshal_validate_arg):
9632         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
9633         * dbus/dbus-message.c: (dbus_message_append_boolean),
9634         (dbus_message_append_boolean_array),
9635         (dbus_message_get_args_valist), (_dbus_message_test):
9636         * dbus/dbus-message.h:
9637         * doc/dbus-specification.sgml:
9638         Various fixes as pointed out by Havoc.
9639
9640         * test/data/invalid-messages/bad-boolean-array.message:
9641         * test/data/invalid-messages/bad-boolean.message:
9642         Add invalid boolean value test cases.
9643
9644 2003-02-24  Anders Carlsson  <andersca@codefactory.se>
9645
9646         * dbus/dbus-internals.c: (_dbus_type_to_string):
9647         * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
9648         (_dbus_marshal_validate_arg):
9649         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
9650         * dbus/dbus-message.c: (dbus_message_append_args_valist),
9651         (dbus_message_append_boolean), (dbus_message_append_boolean_array),
9652         (dbus_message_get_args_valist), (dbus_message_iter_get_boolean),
9653         (dbus_message_iter_get_int32), (dbus_message_iter_get_uint32),
9654         (dbus_message_iter_get_double),
9655         (dbus_message_iter_get_boolean_array), (message_iter_test):
9656         * dbus/dbus-message.h:
9657         * dbus/dbus-protocol.h:
9658         * doc/dbus-specification.sgml:
9659         * test/data/valid-messages/lots-of-arguments.message:
9660         Add support for boolean and boolean array types.
9661
9662 2003-02-23  Havoc Pennington  <hp@pobox.com>
9663
9664         * dbus/dbus-keyring.c: finish most of this implementation and
9665         simple unit test
9666
9667         * dbus/dbus-errors.c (dbus_set_error_const, dbus_set_error): make
9668         these barf if the error isn't cleared to NULL
9669
9670         * dbus/dbus-sysdeps.c (_dbus_delete_file): set error on failure
9671         (_dbus_create_directory): new function
9672
9673         * dbus/dbus-errors.c (dbus_set_error): fix warning
9674
9675         * dbus/dbus-string.c (_dbus_string_hex_encode): new function
9676         (_dbus_string_hex_decode): new function
9677         (test_hex_roundtrip): test code
9678
9679         * dbus/dbus-sha.c (_dbus_sha_compute): use dbus_string_hex_encode
9680
9681         * dbus/dbus-md5.c (_dbus_md5_compute): use dbus_string_hex_encode
9682
9683         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): make this use
9684         the save-to-temp/rename trick to atomically write the new file
9685         (_dbus_string_parse_uint): new function
9686
9687 2003-02-22  Havoc Pennington  <hp@pobox.com>
9688
9689         * test/Makefile.am (dist-hook): fix dist for test/data/sha-1
9690
9691 2003-02-22  Havoc Pennington  <hp@pobox.com>
9692
9693         * dbus/dbus-message.c (dbus_message_iter_get_string_array):
9694         (dbus_message_iter_get_byte_array): Fix up doxygen warnings
9695
9696         * dbus/dbus-sha.c: add implementation of SHA-1 algorithm
9697
9698         * dbus/test/data/sha-1: add US government test suite for SHA-1
9699
9700 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
9701
9702         * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
9703         Make string arrays NULL-terminated.
9704
9705         * dbus/dbus-memory.c: (dbus_free_string_array):
9706         * dbus/dbus-memory.h:
9707         New function for freeing NULL-terminated string arrays.
9708
9709         * dbus/dbus-message-builder.c: (append_quoted_string),
9710         (_dbus_message_data_load):
9711         Add support for array types.
9712
9713         * dbus/dbus-message.c: (check_message_handling):
9714         Add more types as test cases.
9715
9716         * dbus/dbus-sysdeps.c: (_dbus_string_parse_int),
9717         (_dbus_string_parse_double):
9718         Add the start offset to the end offset.
9719
9720         * test/data/valid-messages/lots-of-arguments.message:
9721         New test message with lots of arguments.
9722
9723 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
9724
9725         * dbus/dbus-message.c: (dbus_message_append_nil),
9726         (dbus_message_append_int32), (dbus_message_append_uint32),
9727         (dbus_message_append_double), (dbus_message_append_string),
9728         (dbus_message_append_int32_array),
9729         (dbus_message_append_uint32_array),
9730         (dbus_message_append_double_array),
9731         (dbus_message_append_byte_array),
9732         (dbus_message_append_string_array):
9733         Fix all out-of-memory handling in these functions.
9734
9735 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
9736
9737         * dbus/dbus-message.c: (dbus_message_append_nil):
9738         Fix a silly.
9739
9740 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
9741
9742         * dbus/dbus-message.c: (dbus_message_append_args_valist),
9743         (dbus_message_append_nil), (dbus_message_append_int32_array),
9744         (dbus_message_append_uint32_array),
9745         (dbus_message_append_double_array),
9746         (dbus_message_append_byte_array),
9747         (dbus_message_append_string_array), (dbus_message_get_args_valist),
9748         (dbus_message_iter_get_int32_array),
9749         (dbus_message_iter_get_uint32_array),
9750         (dbus_message_iter_get_double_array),
9751         (dbus_message_iter_get_byte_array),
9752         (dbus_message_iter_get_string_array):
9753
9754         * dbus/dbus-message.h:
9755         Add functions for appending and getting arrays.
9756
9757 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
9758
9759         * dbus/dbus-mempool.c (_dbus_mem_pool_new): Make the
9760         element size at least 8 bytes, fixes mempool tests on
9761         64-bit machines.
9762
9763 2003-02-20  Alexander Larsson  <alexl@redhat.com>
9764
9765         * dbus/dbus-transport-unix.c (unix_do_iteration):
9766         Unlock the connection mutex during a blocking select call.
9767         Add todo about how we need a way to wake up the select.
9768
9769         * dbus/dbus-connection-internal.h:
9770         * dbus/dbus-connection.c:
9771         Add _dbus_connection_lock and _dbus_connection_unlock.
9772
9773 2003-02-19  Havoc Pennington  <hp@pobox.com>
9774
9775         * Doxyfile.in (PREDEFINED): put DOXYGEN_SHOULD_SKIP_THIS in
9776         Doxyfile.in, not Doxyfile
9777
9778         * dbus/dbus-keyring.c: do some hacking on this
9779
9780         * dbus/dbus-sysdeps.c (_dbus_delete_file): new
9781
9782         * dbus/dbus-errors.c (dbus_set_error_const): do not call
9783         dbus_error_init
9784         (dbus_set_error): remove dbus_error_init, check for message ==
9785         NULL *before* we sprintf into it, and add @todo about including
9786         system headers in this file
9787
9788         * dbus/dbus-sysdeps.c (_dbus_create_file_exclusively): new
9789
9790         * dbus/dbus-errors.h (DBUS_ERROR_FAILED): add
9791
9792         * dbus/dbus-sysdeps.c (get_user_info): break this function out to
9793         get various bits of user information based on either username
9794         or user ID
9795         (_dbus_homedir_from_username): new function
9796
9797 2003-02-19  Anders Carlsson  <andersca@codefactory.se>
9798
9799         * configure.in:
9800         Add check for nonposix getpwnam_r
9801
9802         * dbus/dbus-mempool.c: (_dbus_mem_pool_new):
9803         Align the pool element size to a sizeof (void *) boundary.
9804
9805         * dbus/dbus-sysdeps.c: (_dbus_setenv), (_dbus_connect_unix_socket),
9806         (_dbus_listen_unix_socket), (_dbus_credentials_from_username):
9807         General Solaris fixes.
9808
9809         * test/data/valid-messages/simplest-manual.message:
9810         Explicitly state that we want little-endian packing.
9811
9812 2003-02-19  Mikael Hallendal  <micke@codefactory.se>
9813
9814         * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
9815
9816         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_tcp_socket):
9817         Added to create a transport connecting using a tcp/ip socket.
9818
9819         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): Added to connect
9820         to a tcp socket at given host and port.
9821         (_dbus_listen_tcp_socket): added to listen on tcp socket for given
9822         hostname and port.
9823
9824         * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
9825
9826         * dbus/dbus-server-unix.c (_dbus_server_new_for_tcp_socket):
9827         Added to create a server listening on a TCP/IP socket.
9828
9829 2003-02-19  Havoc Pennington  <hp@pobox.com>
9830
9831         Throughout: mop up all the Doxygen warnings and undocumented
9832         stuff.
9833
9834         * dbus/dbus-sysdeps.c (do_exec): do not use execvp, we don't want
9835         to search any paths.
9836
9837         * dbus/dbus-threads.c: move global mutex initializers to
9838         dbus-internals.h, multiple prototypes was confusing doxygen
9839         besides being kind of ugly
9840
9841         * Doxyfile (PREDEFINED): have Doxygen define
9842         DOXYGEN_SHOULD_SKIP_THIS so we can exclude things from
9843         docs with #ifndef DOXYGEN_SHOULD_SKIP_THIS
9844         (do not abuse the feature! it's for stuff like the autogenerated
9845         macros in dbus-md5.c, not just for things you don't feel like
9846         documenting...)
9847
9848 2003-02-18  Havoc Pennington  <hp@pobox.com>
9849
9850         * dbus/dbus-string.c (_dbus_string_zero): new function
9851
9852         * dbus/dbus-md5.c: include MD5 implementation by L. Peter Deutsch,
9853         wrap it in some dbus-friendly API
9854
9855         * dbus/dbus-types.h: add 16-bit types
9856
9857 2003-02-18  Joe Shaw  <joe@assbarn.com>
9858
9859         * dbus/dbus-auth.c (handle_server_data_stupid_test_mech): Just get
9860         credentials from our currently running process.
9861         (get_word): Fix a buglet where we were copying the entire length
9862         instead of relative to our position.
9863
9864         * dbus/dbus-hash.c (_dbus_hash_test): Don't try to allocate the
9865         keys on the stack... it's 640k of data.
9866
9867         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): Always
9868         read the credentials byte off the socket, even if we don't have
9869         SO_PEERCRED.
9870         (_dbus_poll): Implement poll() using select() for systems which
9871         don't have it.
9872
9873         * glib/test-dbus-glib.c (main): Print out an error if no
9874         parameters are given.
9875
9876         * test/data/auth/fallback.auth-script: Added.  Tests that a client
9877         can fallback to a secondary auth mechanism if the first fails.
9878
9879 2003-02-18  Havoc Pennington  <hp@pobox.com>
9880
9881         * AUTHORS: add Alex
9882
9883 2003-02-17  Havoc Pennington  <hp@pobox.com>
9884
9885         * doc/dbus-specification.sgml: lots of cosmetic
9886         cleanups/rearrangement, add assorted FIXME, change DBUS_ADDRESS
9887         env variable to DBUS_BUS_ADDRESS, s/client/application/,
9888         s/server/bus/ (except in authentication section). Add a section
9889         "Message Bus Message Routing"
9890
9891 2003-02-17  Anders Carlsson  <andersca@codefactory.se.>
9892
9893         Release 0.4
9894
9895         * NEWS: Update
9896
9897 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
9898
9899         * doc/dbus-specification.sgml:
9900         Specification updates.
9901
9902 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
9903
9904         * bus/activation.c: (bus_activation_init), (child_setup),
9905         (bus_activation_activate_service):
9906         * bus/activation.h:
9907         * bus/main.c: (main):
9908         Set DBUS_ADDRESS environment variable.
9909
9910         * dbus/dbus-errors.c: (dbus_set_error):
9911         Don't use va_copy since that's a C99 feature.
9912
9913         * dbus/dbus-sysdeps.c: (_dbus_setenv), (do_exec),
9914         (_dbus_spawn_async):
9915         * dbus/dbus-sysdeps.h:
9916         Add child_setup_func to _dbus_spawn_async.
9917
9918         * doc/dbus-specification.sgml:
9919         Update specification.
9920
9921         * test/spawn-test.c: (setup_func), (main):
9922         Fix test.
9923
9924 2003-02-17  Alexander Larsson  <alexl@redhat.com>
9925
9926         * dbus/dbus-connection.c (_dbus_connection_handler_destroyed_locked):
9927         Added todo.
9928
9929 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
9930
9931         * doc/.cvsignore:
9932         * doc/Makefile.am:
9933         * doc/dbus-test-plan.sgml:
9934         Add test plan document.
9935
9936         * test/Makefile.am:
9937         Fix distcheck.
9938
9939 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
9940
9941         * dbus/dbus-message.c: (decode_header_data),
9942         (_dbus_message_loader_return_buffer):
9943         Set the header padding amount when loading a message.
9944
9945 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
9946
9947         * bus/dispatch.c: (send_one_message):
9948         Only send broadcast messages to registered connections.
9949
9950         * dbus/dbus-message.c: (dbus_message_name_is):
9951         * dbus/dbus-message.h:
9952         New convenience function.
9953
9954         * dbus/dbus-transport-debug.c: (do_reading):
9955         Only dispatch one message per run.
9956
9957         * test/Makefile.am:
9958         * test/bus-test.c: (new_connection_callback), (die),
9959         (test_hello_client1_handler), (test_hello_client2_handler),
9960         (test_hello_replies), (main):
9961
9962         * test/bus-test-loop.[ch]:
9963         Add these.
9964
9965 2003-02-16  Havoc Pennington  <hp@pobox.com>
9966
9967         * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
9968         backward conditional
9969
9970 2003-02-16  Alexander Larsson  <alexl@redhat.com>
9971
9972         * dbus/dbus-connection.c:
9973         Implement sent_message_with_reply. (with_reply_and block is still
9974         busted).
9975         Made dispatch_message not lose message if OOM.
9976
9977         * dbus/dbus-errors.h:
9978         Add NoReply error (for reply timeouts).
9979
9980 2003-02-16  Alexander Larsson  <alexl@redhat.com>
9981
9982         * dbus/dbus-hash.c (_dbus_hash_table_unref):
9983         Actually free keys and values when destroying hashtable.
9984
9985 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
9986
9987         * dbus/dbus-auth.c: (client_try_next_mechanism):
9988         Plug a leak.
9989
9990         * dbus/dbus-threads.c: (dbus_condvar_wait_timeout):
9991         Return TRUE if there's no thread implementation around.
9992
9993         * glib/dbus-gmain.c: (free_source),
9994         (dbus_connection_hookup_with_g_main):
9995         Make sure to remove the GSource when the connection is finalized.
9996
9997 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
9998
9999         * bus/dispatch.c: (bus_dispatch_message_handler):
10000         * dbus/dbus-errors.h:
10001         Return an error if someone tries to send a message to a service
10002         that doesn't exist.
10003
10004 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
10005
10006         * bus/activation.c: (load_directory), (bus_activation_init),
10007         (bus_activation_activate_service):
10008         * bus/activation.h:
10009         * bus/driver.c:
10010         (bus_driver_handle_activate_service), (bus_driver_handle_message):
10011         More work on the activation handling.
10012
10013         * dbus/dbus-errors.h:
10014         Add some error messages
10015
10016         * dbus/dbus-message.c: (dbus_message_new_error_reply):
10017         * dbus/dbus-message.h:
10018         New function that creates an error message.
10019
10020         * dbus/dbus-protocol.h:
10021         Add ACTIVATE_SERVER message.
10022
10023         * dbus/dbus-server-unix.c: (unix_handle_watch),
10024         (_dbus_server_new_for_domain_socket):
10025         Call _dbus_fd_set_close_on_exec.
10026
10027         * dbus/dbus-sysdeps.c: (make_pipe), (do_exec),
10028         (_dbus_spawn_async), (_dbus_disable_sigpipe),
10029         (_dbus_fd_set_close_on_exec):
10030         * dbus/dbus-sysdeps.h:
10031         Add _dbus_fd_set_close_on exec function. Also add function that checks
10032         that all open fds are set to close-on-exec and warns otherwise.
10033
10034         * dbus/dbus-transport-unix.c:
10035         (_dbus_transport_new_for_domain_socket):
10036         Call _dbus_fd_set_close_on_exec.
10037
10038 2003-02-16  Havoc Pennington  <hp@pobox.com>
10039
10040         * dbus/dbus-connection.c (dbus_connection_set_change_sigpipe):
10041         allow people to avoid setting SIGPIPE to SIG_IGN
10042         (_dbus_connection_new_for_transport): disable SIGPIPE unless
10043         we've been asked not to
10044
10045 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
10046
10047         * dbus/dbus-list.c: (_dbus_list_append_link),
10048         (_dbus_list_prepend_link):
10049         * dbus/dbus-memory.c: (dbus_malloc), (dbus_malloc0),
10050         (dbus_realloc):
10051         Warning fixes.
10052
10053 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
10054
10055         * bus/Makefile.am:
10056         * bus/activation.c: (bus_activation_entry_free),
10057         (add_desktop_file_entry), (load_directory), (bus_activation_init):
10058         * bus/activation.h:
10059         * bus/main.c: (main):
10060         Add simple activation support, doesn't work yet though.
10061
10062 2003-02-15   Zack Rusin  <zack@kde.org>
10063
10064         * qt/dbus-qthread.cpp:  small casting fix
10065
10066 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
10067
10068         * dbus/dbus-errors.c: (dbus_set_error):
10069         * dbus/dbus-errors.h:
10070         Add a few errors and make dbus_set_error void.
10071
10072         * dbus/dbus-sysdeps.c:
10073         (_dbus_errno_to_string), (close_and_invalidate), (make_pipe),
10074         (write_err_and_exit), (read_ints), (do_exec), (_dbus_spawn_async):
10075         * dbus/dbus-sysdeps.h:
10076         Add _dbus_spawn_async.
10077
10078         * test/spawn-test.c: (main):
10079         Test for _dbus_spawn_async.
10080
10081 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
10082
10083         * dbus/dbus-internals.h:
10084         Fix build without tests.
10085
10086         * dbus/dbus-list.c: (alloc_link):
10087         Fix a segfault when a malloc fails.
10088
10089         * dbus/dbus-memory.c: (initialize_malloc_debug), (dbus_malloc),
10090         (dbus_malloc0), (dbus_realloc):
10091         Add support for malloc debugging.
10092
10093 2003-02-15  Alexander Larsson  <alexl@redhat.com>
10094
10095         * dbus/dbus-threads.c:
10096         * dbus/dbus-threads.h:
10097         Add condvars. Remove static mutext from API.
10098         Implement static mutexes by initializing them from threads_init.
10099
10100         * glib/dbus-gthread.c:
10101         * qt/dbus-qthread.cpp:
10102         Update with the thread api changes.
10103
10104
10105         * dbus/dbus-list.c:
10106         * dbus/dbus-list.h:
10107         Turn StaticMutex into normal mutex + init function.
10108         Export new functions _dbus_list_alloc_link, _dbus_list_free_link,
10109         _dbus_list_append_link, _dbus_list_prepend_link
10110
10111
10112         * dbus/dbus-sysdeps.c:
10113         * dbus/dbus-sysdeps.h:
10114         New type dbus_atomic_t, and new functions _dbus_atomic_inc,
10115         _dbus_atomic_dec. Only slow fallback implementation at the moment.
10116
10117         * dbus/dbus-protocol.h:
10118         Add DBUS_MESSAGE_LOCAL_DISCONNECT define
10119
10120         * dbus/dbus-message.c:
10121         Make ref/unref atomic.
10122         Fix some docs.
10123
10124         * dbus/dbus-connection-internal.h:
10125         * dbus/dbus-connection.c:
10126         * dbus/dbus-connection.h:
10127         Make threadsafe.
10128         Change _peek to _borrow,_return & _steal_borrowed.
10129         Change disconnect callback to event.
10130         Make dbus_connection_dispatch_messages reentrant.
10131
10132         * dbus/dbus-transport.c:
10133         Don't ref the connection on calls to the transport
10134         implementation.
10135
10136         * dbus/dbus-message-handler.c:
10137         Make threadsafe.
10138
10139         * glib/dbus-gmain.c:
10140         Don't use peek_message anymore
10141
10142         * test/Makefile.am:
10143         * test/debug-thread.c:
10144         * test/debug-thread.h:
10145         Simple thread implementation that asserts() on deadlocks in
10146         single-threaded code.
10147
10148         * test/bus-test.c:
10149         (main) Call debug_threads_init.
10150
10151         * test/watch.c:
10152         Use disconnect message instead of disconnect callback.
10153
10154         * bus/connection.c:
10155         * bus/connection.h:
10156         Don't call dbus_connection_set_disconnect_function. Instead export
10157         bus_connection_disconnect.
10158
10159         * bus/dispatch.c:
10160         Call bus_connection_disconnect when we get a disconnected message.
10161
10162 2003-02-15  Havoc Pennington  <hp@pobox.com>
10163
10164         * dbus/dbus-message.c (dbus_message_new): fool around with the
10165         docs
10166
10167 2003-02-14  Havoc Pennington  <hp@pobox.com>
10168
10169         * dbus/dbus-mempool.c: fail if the debug functions so indicate
10170
10171         * dbus/dbus-memory.c: fail if the debug functions indicate we
10172         should
10173
10174         * dbus/dbus-internals.c (_dbus_set_fail_alloc_counter)
10175         (_dbus_decrement_fail_alloc_counter): debug functions to
10176         simulate memory allocation failures
10177
10178 2003-02-14  Havoc Pennington  <hp@pobox.com>
10179
10180         * dbus/dbus-errors.h (struct DBusError): add a word of padding
10181         to DBusError
10182
10183 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10184
10185         * bus/driver.c: (bus_driver_handle_hello):
10186         * bus/driver.h:
10187         * bus/services.c: (bus_service_lookup):
10188         Reorder message sending so we get a more sane order.
10189
10190         * test/bus-test.c: (message_handler):
10191         Fix tyop.
10192
10193 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10194
10195         * bus/driver.c: (bus_driver_send_service_deleted),
10196         (bus_driver_send_service_created), (bus_driver_send_service_lost),
10197         (bus_driver_send_service_acquired), (bus_driver_handle_hello),
10198         (bus_driver_send_welcome_message),
10199         (bus_driver_handle_list_services),
10200         (bus_driver_handle_acquire_service),
10201         (bus_driver_handle_service_exists):
10202         * dbus/dbus-bus.c: (dbus_bus_register_client),
10203         (dbus_bus_acquire_service), (dbus_bus_service_exists):
10204         * dbus/dbus-errors.c: (dbus_result_to_string):
10205         * dbus/dbus-errors.h:
10206         * dbus/dbus-message.c: (dbus_message_append_args),
10207         (dbus_message_append_args_valist), (dbus_message_get_args),
10208         (dbus_message_get_args_valist), (dbus_message_get_args_iter),
10209         (dbus_message_iter_get_arg_type), (dbus_message_iter_get_string),
10210         (dbus_message_iter_get_byte_array),
10211         (dbus_message_iter_get_string_array), (message_iter_test),
10212         (check_message_handling), (_dbus_message_test):
10213         * dbus/dbus-message.h:
10214         * test/bus-test.c: (main):
10215         Change fields to arguments in messages, so that they won't be
10216         confused with header fields.
10217
10218         * glib/test-dbus-glib.c: (main):
10219         Remove append_fields from hello message.
10220
10221 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10222
10223         * dbus/dbus-errors.c:
10224         * dbus/dbus-message.c:
10225         * dbus/dbus-string.c:
10226         Documentation fixes.
10227
10228 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10229
10230         * glib/dbus-gmain.c: (timeout_handler), (add_timeout),
10231         (remove_timeout):
10232         Implement support for timeouts in dbus-glib.
10233
10234 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10235
10236         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
10237         * dbus/dbus-message.c: (process_test_subdir):
10238         * test/break-loader.c: (find_breaks_based_on):
10239         Plug some memory leaks.
10240
10241 2003-02-13  Richard Hult  <rhult@codefactory.se>
10242
10243         * bus/main.c: Fix build.
10244
10245         * dbus/dbus-errors.h:
10246         * dbus/dbus-errors.c: Fix copyright for Anders.
10247
10248 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10249
10250         * bus/Makefile.am:
10251         Add utils.[ch]
10252
10253         * bus/connection.c: (bus_connection_foreach):
10254         Fix a warning.
10255
10256         * bus/desktop-file.c: (grow_lines_in_section), (grow_sections),
10257         (unescape_string), (new_section), (parse_section_start),
10258         (parse_key_value), (report_error), (bus_desktop_file_load),
10259         (bus_desktop_file_get_string):
10260         * bus/desktop-file.h:
10261         Use DBusError for error reporting.
10262
10263         * bus/dispatch.c: (send_one_message),
10264         (bus_dispatch_message_handler):
10265         * bus/driver.c: (bus_driver_send_service_deleted),
10266         (bus_driver_send_service_created), (bus_driver_send_service_lost),
10267         (bus_driver_send_service_acquired), (bus_driver_handle_hello),
10268         (bus_driver_send_welcome_message),
10269         (bus_driver_handle_list_services),
10270         (bus_driver_handle_acquire_service),
10271         (bus_driver_handle_service_exists):
10272         * bus/loop.c: (bus_loop_run):
10273         * bus/main.c:
10274         Use BUS_HANDLE_OOM instead of _DBUS_HANDLE_OOM.
10275
10276         * bus/utils.c: (bus_wait_for_memory):
10277         * bus/utils.h:
10278         New files with general utility functions.
10279
10280         * dbus/dbus-internals.h:
10281         Remove _DBUS_HANDLE_OOM.
10282
10283 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10284
10285         * dbus/dbus-errors.c: (dbus_result_to_string), (dbus_error_init),
10286         (dbus_error_free), (dbus_set_error_const), (dbus_set_error):
10287         * dbus/dbus-errors.h:
10288         Add DBusError structure.
10289
10290 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10291
10292         * test/data/valid-messages/standard-acquire-service.message:
10293         * test/data/valid-messages/standard-hello.message:
10294         * test/data/valid-messages/standard-list-services.message:
10295         * test/data/valid-messages/standard-service-exists.message:
10296         Add some standard messages.
10297
10298 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10299
10300         * bus/driver.c: (bus_driver_send_welcome_message),
10301         (bus_driver_handle_list_services),
10302         (bus_driver_handle_acquire_service),
10303         (bus_driver_handle_service_exists), (bus_driver_handle_message):
10304         Update for API changes in libdbus.
10305
10306         * dbus/dbus-message.c: (dbus_message_new_reply):
10307         * dbus/dbus-message.h:
10308         Remove the name argument. The spec states that replies shouldn't
10309         have a name.
10310
10311 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10312
10313         * bus/desktop-file.c: (parse_section_start), (parse_key_value),
10314         (report_error), (bus_desktop_file_load), (lookup_section),
10315         (lookup_line), (bus_desktop_file_get_raw),
10316         (bus_desktop_file_get_string):
10317         * bus/desktop-file.h:
10318         Some fixes, and new functions for getting a key value from a section.
10319
10320 2003-02-13  Havoc Pennington  <hp@pobox.com>
10321
10322         * test/data/auth/fail-after-n-attempts.auth-script: new test
10323
10324         * dbus/dbus-auth.c (send_rejected): shutdown_mech() when we
10325         reject the client.
10326
10327 2003-02-13  Havoc Pennington  <hp@pobox.com>
10328
10329         * dbus/dbus-auth.c (handle_server_data_external_mech): args to
10330         dbus_credentials_match were backward
10331
10332         * dbus/dbus-auth-script.c (_dbus_auth_script_run): support
10333         NO_CREDENTIALS and ROOT_CREDENTIALS
10334
10335         * dbus/dbus-auth.c (_dbus_auth_do_work): move get_state() routine
10336         into here. Never process more commands after we've reached an
10337         end state; store further data as unused bytes.
10338
10339         * test/data/auth/*: add more auth tests
10340
10341         * dbus/dbus-auth-script.c (_dbus_auth_script_run): support EXPECT
10342         command to match exact string and EXPECT_UNUSED to match unused
10343         bytes
10344
10345         * test/Makefile.am (dist-hook): fix to dist all the test stuff
10346
10347 2003-02-12  Havoc Pennington  <hp@pobox.com>
10348
10349         * dbus/dbus-string.c (_dbus_string_pop_line): fix to also strip
10350         \r off of popped lines
10351
10352         * dbus/dbus-auth.c (_dbus_auth_test): write code to run auth
10353         scripts
10354
10355         * dbus/dbus-auth-script.c (_dbus_auth_script_run): when doing a
10356         SEND, append \r\n
10357
10358 2003-02-12  Havoc Pennington  <hp@pobox.com>
10359
10360         * dbus/Makefile.am: remove break-loader from the build, since it
10361         moved.
10362
10363         * configure.in: add --enable-gcov to turn on coverage profiling
10364         flags and disable optimization
10365
10366 2003-02-10  Havoc Pennington  <hp@pobox.com>
10367
10368         * dbus/dbus-auth-script.c, dbus/dbus-auth-script.h: sync
10369         initial cut at test framework for DBusAuth from laptop.
10370         Doesn't quite work yet but it compiles and I need to get
10371         it off the 266mhz laptop. ;-)
10372
10373         * dbus/dbus-server-debug.c (_dbus_server_debug_accept_transport):
10374         fix a memleak in error case
10375
10376 2003-02-12  Anders Carlsson  <andersca@codefactory.se>
10377
10378         * bus/Makefile.am:
10379         * bus/desktop-file.c:
10380         * bus/desktop-file.h:
10381         Add a desktop file parser.
10382
10383 2003-02-11  Zack Rusin  <zack@kde.org>
10384
10385         * qt/message.[h|cpp]: sample implementation
10386         of the KDE wrapper for DBusMessage
10387
10388 2003-02-09  Zack Rusin  <zack@kde.org>
10389
10390         * test/bus-test.c: make_it_compile
10391         * doc/dbus-specification.sgml: minimal semantic fix
10392
10393 2003-02-06  Anders Carlsson  <andersca@codefactory.se>
10394
10395         Release 0.3
10396
10397         * NEWS: Update
10398
10399 2003-02-06  Anders Carlsson  <andersca@codefactory.se>
10400
10401         * dbus/Makefile.am:
10402         * dbus/dbus-break-loader.c:
10403         * test/Makefile.am:
10404         * test/break-loader.c:
10405         Move dbus-break-loader to test/ and rename it to break-loader.
10406
10407 2003-02-02  Havoc Pennington  <hp@pobox.com>
10408
10409         * dbus/dbus-keyring.c, dbus/dbus-keyring.h: template files
10410         for code to manage cookies in your home directory
10411
10412         * dbus/dbus-sysdeps.c (_dbus_generate_random_bytes): new function
10413
10414         * dbus/dbus-auth.c (get_state): impose a maximum number of tries
10415         to authenticate, then disconnect the client.
10416
10417 2003-02-03  Alexander Larsson  <alexl@redhat.com>
10418
10419         * dbus/dbus-message.c (dbus_message_append_fields):
10420         Correct docs.
10421
10422 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10423
10424         * doc/dbus-specification.sgml:
10425         Update address format section.
10426
10427 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10428
10429         * test/Makefile.am:
10430         * test/bus-test.c: (get_time), (add_timeout), (remove_timeout),
10431         (message_handler), (new_connection_callback), (loop_quit),
10432         (loop_run), (main):
10433         Add bus test.
10434
10435 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10436
10437         * bus/driver.c: (bus_driver_handle_service_exists):
10438         Simplify the code a bit.
10439
10440         * dbus/dbus-bus.c: (dbus_bus_service_exists):
10441         Fix a silly.
10442
10443 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10444
10445         * bus/Makefile.am:
10446         Add libdbus-daemon.la and link to it.
10447
10448 2003-02-01  James Willcox  <jwillcox@gnome.org>
10449
10450         * bus/driver.c: (bus_driver_handle_own_service):
10451         Actually include the service reply code in the message.
10452
10453 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10454
10455         * bus/driver.c: (bus_driver_handle_service_exists):
10456         Don't unref the incoming message.
10457
10458 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10459
10460         * dbus/dbus.h: Add dbus-address.h and dbus-bus.h
10461
10462 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
10463
10464         * dbus/dbus-server.c: (dbus_server_listen):
10465         * dbus/dbus-transport.c: (_dbus_transport_open):
10466         ifdef out the calls to the debug transport and server.
10467
10468 2003-02-02  Alexander Larsson  <alexl@redhat.com>
10469
10470         * dbus/dbus-watch.c (dbus_watch_get_flags):
10471         Add note in the docs that ERROR or HANGUP won't be returned
10472         and are assumed always on.
10473
10474         * glib/dbus-gmain.c (add_watch):
10475         Always add IO_ERR | IO_HUP
10476
10477         * dbus/dbus-message.h:
10478         Add semicolon after dbus_message_iter_get_string_array().
10479         Makes qt code build again
10480
10481 2003-02-01  Anders Carlsson  <andersca@codefactory.se>
10482
10483         * bus/driver.c: (create_unique_client_name),
10484         (bus_driver_handle_hello):
10485         Don't take a name, just use a numeric id to identify
10486         each client.
10487
10488         * dbus/Makefile.am:
10489         * dbus/dbus-bus.c: (dbus_bus_register_client),
10490         (dbus_bus_acquire_service), (dbus_bus_service_exists):
10491         * dbus/dbus-bus.h:
10492         Add new convenience functions for communicating with the bus.
10493
10494         * dbus/dbus-message.h:
10495
10496         * dbus/dbus-protocol.h:
10497         Fix a typo.
10498
10499 2003-02-01  Alexander Larsson  <alexl@redhat.com>
10500
10501         * dbus/dbus-message.c (dbus_message_append_fields):
10502         Add some more doc comments.
10503
10504 2003-02-01  Havoc Pennington  <hp@pobox.com>
10505
10506         * dbus/dbus-break-loader.c (randomly_modify_length): change
10507         a 4-byte value in the message as if it were a length
10508
10509         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): don't set
10510         execute bit on saved files
10511
10512 2003-02-01  Havoc Pennington  <hp@pobox.com>
10513
10514         * dbus/dbus-break-loader.c (main): new program to find messages
10515         that break the loader.
10516
10517         * dbus/dbus-sysdeps.c (_dbus_string_append_uint): new function
10518         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): new function
10519
10520         * dbus/dbus-string.c (_dbus_string_set_byte): new
10521
10522 2003-01-31  Havoc Pennington  <hp@pobox.com>
10523
10524         * dbus/dbus-message.c: refactor the test code to be more general,
10525         in preparation for writing a "randomly permute test cases to
10526         try to break the loader" program.
10527
10528 2003-01-31  Havoc Pennington  <hp@pobox.com>
10529
10530         * doc/dbus-specification.sgml: work on the specification
10531
10532         * dbus/dbus-message.c (_dbus_message_loader_return_buffer): check
10533         the protocol version of the message.
10534
10535         * dbus/dbus-protocol.h: drop special _REPLY names, the spec
10536         no longer specifies that.
10537         (DBUS_SERVICE_REPLY_SERVICE_EXISTS): fix flags (1/2/4/8 not
10538         1/2/3/4)
10539
10540         * dbus/dbus-marshal.c (_dbus_marshal_get_arg_end_pos): add missing
10541         "break" for DBUS_TYPE_NIL, remove @todo
10542
10543 2003-01-31  Havoc Pennington  <hp@pobox.com>
10544
10545         * dbus/dbus-message.c (dbus_message_set_is_error_reply): rename
10546         just set_is_error/get_is_error as this is a commonly-used
10547         function, and write docs.
10548
10549 2003-01-31  Anders Carlsson  <andersca@codefactory.se>
10550
10551         * dbus/dbus-address.c: (dbus_address_entry_free):
10552         Free key and value lists.
10553
10554         * dbus/dbus-internals.c: (_dbus_type_to_string):
10555         Add the types we didn't have.
10556
10557         * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
10558         (_dbus_marshal_validate_arg):
10559         Add NIL types.
10560
10561         * dbus/dbus-message.c: (dbus_message_set_sender):
10562         Remove todo about being able to set sender to NULL.
10563
10564         (dbus_message_set_is_error_reply),
10565         (dbus_message_get_is_error_reply):
10566         * dbus/dbus-message.h:
10567         New functions.
10568
10569         * dbus/dbus-protocol.h:
10570         Add error reply flag.
10571
10572         * test/data/valid-messages/opposite-endian.message:
10573         Add NIL type to test.
10574
10575 2003-01-31  Havoc Pennington  <hp@pobox.com>
10576
10577         * doc/dbus-specification.sgml: fully specify the header.  Add
10578         flags and major protocol version, and change header/body len to
10579         unsigned.
10580
10581         * dbus/dbus-message-builder.c (append_saved_length): append length
10582         as uint32
10583
10584         * dbus/dbus-message.c (dbus_message_create_header): change header
10585         length and body length to unsigned. Add the new fields from the
10586         spec
10587         (_dbus_message_loader_return_buffer): unsigned header/body len
10588
10589 2003-01-30  Havoc Pennington  <hp@pobox.com>
10590
10591         * dbus/dbus-auth.c: rework to use only REJECTED, no
10592         MECHANISMS
10593
10594         * doc/dbus-sasl-profile.txt: drop MECHANISMS and just
10595         use REJECTED, suggested by Mark McLoughlin
10596
10597 2003-01-30  Havoc Pennington  <hp@pobox.com>
10598
10599         * dbus/dbus-server.c (dbus_server_listen): @todo about how we need
10600         a better way to report errors here. e.g.  "unix address lacks
10601         path" or something. also "no such file" when the path doesn't
10602         exist, etc.
10603
10604         * dbus/dbus-address.c (dbus_address_entries_free): add @todo about
10605         leaking list nodes
10606         (dbus_parse_address): add @todo about documenting address format,
10607         and allowing , and ; to be escaped
10608
10609 2003-01-30  Anders Carlsson  <andersca@codefactory.se>
10610
10611         * dbus/Makefile.am:
10612         Add dbus-address.[ch]
10613
10614         * dbus/dbus-address.c: (dbus_address_entry_free),
10615         (dbus_address_entries_free), (create_entry),
10616         (dbus_address_entry_get_method), (dbus_address_entry_get_value),
10617         (dbus_parse_address), (_dbus_address_test):
10618         * dbus/dbus-address.h:
10619         New files for dealing with address parsing.
10620
10621         * dbus/dbus-connection.c:
10622         Document timeout functions.
10623
10624         * dbus/dbus-message.c:
10625         Document dbus_message_new_from_message.
10626
10627         * dbus/dbus-server-debug.c:
10628         Document.
10629
10630         * dbus/dbus-server.c: (dbus_server_listen):
10631         Parse address and use correct server implementation.
10632
10633         * dbus/dbus-string.c: (_dbus_string_find_to), (_dbus_string_test):
10634         * dbus/dbus-string.h:
10635         New function with test.
10636
10637         * dbus/dbus-test.c: (dbus_internal_symbol_do_not_use_run_tests):
10638         * dbus/dbus-test.h:
10639         Add address tests.
10640
10641         * dbus/dbus-transport-debug.c:
10642         Document.
10643
10644         * dbus/dbus-transport.c: (_dbus_transport_open):
10645         Parse address and use correct transport implementation.
10646
10647 2003-01-30  Havoc Pennington  <hp@pobox.com>
10648
10649         * dbus/dbus-message.c: use message->byte_order instead of
10650         DBUS_COMPILER_BYTE_ORDER throughout.
10651         (dbus_message_create_header): pad header to align the
10652         start of the body of the message to 8-byte boundary
10653
10654         * dbus/dbus-marshal.h: make all the demarshalers take const
10655         DBusString arguments.
10656
10657         * dbus/dbus-message.c (_dbus_message_loader_return_buffer):
10658         validate message args here, so we don't have to do slow validation
10659         later, and so we catch bad messages as they are incoming. Also add
10660         better checks on header_len and body_len. Also fill in
10661         message->byte_order
10662
10663         * dbus/dbus-string.c (_dbus_string_validate_utf8): new (not
10664         implemented properly)
10665         (_dbus_string_validate_nul): new function to check all-nul
10666
10667         * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): rename
10668         get_arg_end_pos and remove all validation
10669         (_dbus_marshal_validate_arg): actually do validation here.
10670
10671 2003-01-29  Havoc Pennington  <hp@pobox.com>
10672
10673         * dbus/dbus-message.c (check_message_handling): fix assertion
10674         failure on set_client_serial
10675
10676 2003-01-28  Havoc Pennington  <hp@pobox.com>
10677
10678         * dbus/dbus-server-debug.c: Add doc section comments
10679
10680         * dbus/dbus-transport-debug.c: add doc section comments
10681
10682 2003-01-28  Havoc Pennington  <hp@redhat.com>
10683
10684         * dbus/dbus-string.c (_dbus_string_base64_decode): append bytes in
10685         the reverse order from how I had it
10686         (_dbus_string_base64_encode): reverse encoding order. I was
10687         basically byteswapping everything during encoding.
10688
10689 2003-01-28  Anders Carlsson  <andersca@codefactory.se>
10690
10691         * dbus/dbus-connection-internal.h:
10692         * dbus/dbus-connection.c: (_dbus_connection_add_timeout),
10693         (_dbus_connection_remove_timeout):
10694         Add functions for adding and removing timeouts.
10695
10696         * dbus/dbus-message.c: (dbus_message_new_from_message):
10697         Add new function that takes a message and creates an exact
10698         copy of it, but with the refcount set to 1.
10699         (check_message_handling):
10700         Fix build error.
10701
10702         * dbus/dbus-server-protected.h:
10703         * dbus/dbus-server.c: (_dbus_server_init_base),
10704         (_dbus_server_finalize_base), (_dbus_server_add_timeout),
10705         (dbus_server_set_timeout_functions):
10706         (_dbus_server_remove_timeout):
10707         New functions so that a server can add and remove timeouts.
10708
10709         (dbus_server_listen):
10710         Add commented out call to dbus_server_debug_new.
10711
10712         * dbus/dbus-timeout.c: (_dbus_timeout_new):
10713         Actually set the handler, doh.
10714
10715         * dbus/dbus-transport.c: (_dbus_transport_open):
10716         Add commented out call to dbus_transport_debug_client_new.
10717
10718         * dbus/Makefile.am:
10719         Add dbus-transport-debug.[ch] and dbus-server-debug.[ch]
10720
10721 2003-01-28  Havoc Pennington  <hp@pobox.com>
10722
10723         * dbus/dbus-message.c (check_message_handling): function to check
10724         on the loaded message, iterates over it etc.
10725
10726 2003-01-28  Havoc Pennington  <hp@pobox.com>
10727
10728         * test/Makefile.am (dist-hook): fix make distdir
10729
10730         * dbus/Makefile.am (TESTS_ENVIRONMENT): fix make check
10731
10732 2003-01-27  Havoc Pennington  <hp@pobox.com>
10733
10734         * dbus/dbus-mempool.c (time_for_size): replace printf with
10735         _dbus_verbose
10736
10737         * dbus/dbus-message-builder.c (_dbus_message_data_load): allow
10738         empty lines; fix the SAVE_LENGTH stuff to be
10739         START_LENGTH/END_LENGTH so it actually works; couple other
10740         bugfixes
10741
10742         * test/Makefile.am (dist-hook): add dist-hook for .message files
10743
10744         * dbus/dbus-string.c (DBUS_STRING_COPY_PREAMBLE): source of a copy
10745         can be constant or locked.
10746         (_dbus_string_free): allow freeing a const string as
10747         documented/intended
10748
10749         * dbus/dbus-sysdeps.c (_dbus_concat_dir_and_file): utility
10750
10751         * dbus/dbus-test-main.c (main): take an argument which is the
10752         directory containing test data
10753
10754         * dbus/dbus-message.c (_dbus_message_test): pass a test_data_dir
10755         argument to this and load all the messages in test/data/
10756         checking that they can be loaded or not loaded as appropriate.
10757
10758 2003-01-27  Anders Carlsson  <andersca@codefactory.se>
10759
10760         * bus/dispatch.c: (bus_dispatch_message_handler):
10761         Dispatch messages sent to services.
10762
10763         * bus/driver.c: (bus_driver_send_service_deleted),
10764         (bus_driver_send_service_created), (bus_driver_send_service_lost),
10765         (bus_driver_send_service_acquired):
10766         Add helper functions for sending service related messages.
10767
10768         (bus_driver_send_welcome_message):
10769         Send HELLO_REPLY instead of WELCOME.
10770
10771         (bus_driver_handle_list_services):
10772         Send LIST_SERVICES_REPLY instead of SERVICES.
10773
10774         (bus_driver_handle_own_service),
10775         (bus_driver_handle_service_exists):
10776         New message handlers.
10777
10778         (bus_driver_handle_message):
10779         Invoke new message handlers.
10780
10781         (bus_driver_remove_connection):
10782         Don't remove any services here since that's done automatically
10783         by bus_service_remove_owner now.
10784
10785         * bus/driver.h:
10786         New function signatures.
10787
10788         * bus/services.c: (bus_service_add_owner):
10789         Send ServiceAcquired message if we're the only primary owner.
10790
10791         (bus_service_remove_owner):
10792         Send ServiceAcquired/ServiceLost messages.
10793
10794         (bus_service_set_prohibit_replacement),
10795         (bus_service_get_prohibit_replacement):
10796         Functions for setting prohibit replacement.
10797
10798         (bus_service_has_owner):
10799         New function that checks if a connection is in the owner queue of
10800         a certain service.
10801
10802         * bus/services.h:
10803         Add new function signatures.
10804
10805         * dbus/dbus-list.c: (_dbus_list_test):
10806         Add tests for _dbus_list_remove_last and traversing the list backwards.
10807
10808         * dbus/dbus-list.h:
10809         Fix a typo in _dbus_list_get_prev_link, if we're at the first element we can't
10810         go any further, so return NULL then.
10811
10812         * dbus/dbus-protocol.h:
10813         Add new messages, service flags and service replies.
10814
10815 2003-01-26  Havoc Pennington  <hp@pobox.com>
10816
10817         * dbus/dbus-message-builder.c: implement, completely untested.
10818
10819         * test/data/*: add data to be used in testing.
10820         ".message" files are our simple loadable text format.
10821         ".message-raw" will be binary dumps of messages.
10822
10823         * dbus/dbus-string.c (_dbus_string_starts_with_c_str): new
10824
10825 2003-01-26  Havoc Pennington  <hp@pobox.com>
10826
10827         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): new function
10828
10829         * dbus/dbus-errors.c (dbus_result_to_string): add
10830         file errors
10831
10832         * dbus/dbus-message-builder.c: new file, will contain code to load
10833         up messages from files. Not implemented yet.
10834
10835 2003-01-26  Havoc Pennington  <hp@pobox.com>
10836
10837         * dbus/dbus-message.c (dbus_message_set_sender): support deleting
10838         the sender by setting to NULL
10839
10840 2003-01-26  Havoc Pennington  <hp@pobox.com>
10841
10842         The unit tests pass, but otherwise untested.  If it breaks, the
10843         tests should have been better. ;-)
10844
10845         * bus/driver.c (bus_driver_handle_hello): return if we disconnect
10846         the connection.
10847
10848         * dbus/dbus-message.c: redo everything so we maintain
10849         message->header as the only copy of the various fields.
10850         This avoids the possibility of out-of-memory in some cases,
10851         for example dbus_message_lock() can't run out of memory anymore,
10852         and avoids extra copying. Figured I may as well go ahead and do
10853         this since it was busted for dbus_message_lock to not return
10854         failure on OOM, and dbus_message_write_header was totally
10855         unchecked for OOM. Also fixed some random other bugs.
10856
10857         * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): verify
10858         that strings are nul-terminated. Also, end_pos can be equal
10859         to string length just not greater than, I think.
10860         (_dbus_marshal_set_int32): new function
10861         (_dbus_marshal_set_uint32): new function
10862         (_dbus_marshal_set_string): new function
10863
10864         * dbus/dbus-connection.c (_dbus_connection_new_for_transport): fix
10865         a warning, init timeout_list to NULL
10866         (dbus_connection_send_message): don't use uninitialized variable
10867         "serial"
10868
10869         * dbus/dbus-string.c (_dbus_string_replace_len): new function
10870
10871 2003-01-26  Anders Carlsson  <andersca@codefactory.se>
10872
10873         * bus/driver.c: (bus_driver_handle_hello),
10874         (bus_driver_send_welcome_message):
10875         Plug leaks
10876
10877 2003-01-26  Anders Carlsson  <andersca@codefactory.se>
10878
10879         * dbus/dbus-auth.c: (process_auth), (_dbus_auth_unref):
10880         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
10881         (dbus_connection_unref):
10882         * dbus/dbus-marshal.c: (_dbus_marshal_test):
10883         * dbus/dbus-message.c: (dbus_message_unref),
10884         Plug memory leaks.
10885
10886         (dbus_message_get_fields):
10887         Remove debugging printout.
10888
10889         (_dbus_message_loader_return_buffer):
10890         Don't store the header string.
10891
10892         (_dbus_message_test):
10893         Plug leaks.
10894
10895 2003-01-26  Richard Hult  <rhult@codefactory.se>
10896
10897         * glib/dbus-gmain.c (dbus_connection_dispatch): Traverse a copy of
10898         the file descriptor list, since it can change under us.
10899
10900 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10901
10902         * glib/dbus-gmain.c: (dbus_connection_prepare),
10903         (dbus_connection_check), (dbus_connection_dispatch), (add_watch),
10904         (remove_watch), (dbus_connection_hookup_with_g_main):
10905         Rewrite the glib handling to use its own GSource instead of a
10906         GIOChannel so we can catch messages put in the queue while waiting
10907         for a reply.
10908
10909 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10910
10911         * bus/Makefile.am:
10912         * bus/connection.c: (connection_disconnect_handler),
10913         (connection_watch_callback), (bus_connection_setup):
10914         * bus/dispatch.c: (send_one_message),
10915         (bus_dispatch_broadcast_message), (bus_dispatch_message_handler),
10916         (bus_dispatch_add_connection), (bus_dispatch_remove_connection):
10917         * bus/dispatch.h:
10918         * bus/driver.c: (bus_driver_send_service_deleted),
10919         (bus_driver_send_service_created), (bus_driver_handle_hello),
10920         (bus_driver_send_welcome_message),
10921         (bus_driver_handle_list_services), (bus_driver_remove_connection),
10922         (bus_driver_handle_message):
10923         * bus/driver.h:
10924         Refactor code, put the message dispatching in its own file. Use
10925         _DBUS_HANDLE_OOM. Also send ServiceDeleted messages when a client
10926         is disconnected.
10927
10928 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10929
10930         * dbus/dbus-internals.h:
10931         Add _DBUS_HANDLE_OOM macro, it doesn't do anything currently.
10932
10933         * dbus/dbus-message.c: (dbus_message_get_sender):
10934         * dbus/dbus-message.h:
10935         Implement dbus_message_get_sender.
10936
10937         * dbus/dbus-protocol.h:
10938         Add message and service defines.
10939
10940 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10941
10942         * dbus/dbus-connection.c: (dbus_connection_send_message):
10943         * dbus/dbus-message-internal.h:
10944         * dbus/dbus-message.c: (_dbus_message_get_client_serial),
10945         (dbus_message_write_header):
10946         Remove _dbus_messag_unlock and don't set the client serial on a
10947         message if one already exists.
10948
10949 2003-01-24  Havoc Pennington  <hp@pobox.com>
10950
10951         * dbus/dbus-list.c (alloc_link): put a thread lock on the global
10952         list_pool
10953
10954         * bus/driver.c (bus_driver_handle_list_services): fix a leak
10955         on OOM
10956
10957 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10958
10959         * dbus/dbus-list.c: (alloc_link), (free_link):
10960         Use a memory pool for the links.
10961
10962 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10963
10964         * bus/connection.c: (bus_connection_foreach):
10965         * bus/connection.h:
10966         Add new bus_connection_foreach function.
10967
10968         * bus/driver.c: (send_one_message), (bus_driver_broadcast_message):
10969         Add function that broadcasts a message to all clients.
10970
10971         (bus_driver_send_service_created), (bus_driver_handle_hello),
10972         (bus_driver_send_welcome_message),
10973         (bus_driver_handle_list_services), (bus_driver_message_handler):
10974         Implement functions that take care of listing services, and notifying
10975         clients when new services are created.
10976
10977         * bus/services.c: (bus_services_list):
10978         * bus/services.h:
10979         Add new function that returns an array of strings with the currently
10980         registered services.
10981
10982         * glib/dbus-glib.h:
10983         * glib/dbus-gmain.c:
10984         Update copyright year.
10985
10986 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
10987
10988         * dbus/dbus-connection.c: (dbus_connection_send_message):
10989         Unlock the message in case it was sent earlier.
10990
10991         (dbus_connection_send_message_with_reply_and_block):
10992         Remove the reply message from the list.
10993
10994         * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
10995         Set array_len and new_pos correctly.
10996
10997         (_dbus_marshal_test):
10998         Remove debug output.
10999
11000         * dbus/dbus-message-internal.h:
11001         * dbus/dbus-message.c: (_dbus_message_get_reply_serial):
11002         New function that returns the reply serial.
11003
11004         (_dbus_message_unlock):
11005         New function that unlocks a message and resets its header.
11006
11007         (dbus_message_append_string_array),
11008         (dbus_message_get_fields_valist),
11009         (dbus_message_iter_get_field_type),
11010         (dbus_message_iter_get_string_array),
11011         (dbus_message_get_fields),
11012         (dbus_message_append_fields_valist):
11013         Handle string arrays.
11014
11015         (dbus_message_set_sender):
11016         Make this function public since the bus daemon needs it.
11017
11018         (decode_header_data):
11019         Set the reply serial to -1 initially.
11020
11021         * dbus/dbus-message.h:
11022         Add dbus_message_set_sender.
11023
11024 2003-01-24  Havoc Pennington  <hp@pobox.com>
11025
11026         * doc/dbus-specification.sgml: add some stuff
11027
11028 2003-01-22  Havoc Pennington  <hp@pobox.com>
11029
11030         * doc/dbus-specification.sgml: Start to document the protocol.
11031
11032 2003-01-22  Havoc Pennington  <hp@pobox.com>
11033
11034         * dbus/dbus-connection.c
11035         (dbus_connection_send_message_with_reply_and_block): add some @todo
11036
11037         * bus/driver.c (bus_driver_add_connection): add a FIXME about memleak
11038
11039 2003-01-21  Havoc Pennington  <hp@pobox.com>
11040
11041         (patch untested because can't compile)
11042
11043         * bus/driver.c (create_unique_client_name): make this function
11044         never recycle client names. Also, caller should initialize
11045         the DBusString.
11046
11047         * dbus/dbus-sysdeps.c (_dbus_get_current_time): new function
11048
11049 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
11050
11051         * dbus/dbus-marshal.c: (_dbus_marshal_double),
11052         (_dbus_marshal_int32), (_dbus_marshal_uint32),
11053         (_dbus_marshal_int32_array), (_dbus_marshal_uint32_array),
11054         (_dbus_marshal_double_array), (_dbus_marshal_string_array),
11055         (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
11056         (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
11057         (_dbus_marshal_get_field_end_pos), (_dbus_marshal_test):
11058         * dbus/dbus-marshal.h:
11059         * dbus/dbus-protocol.h:
11060         Add support for marshalling and demarshalling integer, double
11061         and string arrays.
11062
11063 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
11064
11065         * bus/Makefile.am:
11066         Add driver.[ch]
11067
11068         * bus/connection.c: (connection_disconnect_handler):
11069         Remove the connection from the bus driver's list.
11070
11071         (connection_watch_callback): Dispatch messages.
11072
11073         (free_connection_data): Free connection name.
11074
11075         (bus_connection_setup): Add connection to the bus driver's list.
11076         (bus_connection_remove_owned_service):
11077         (bus_connection_set_name), (bus_connection_get_name):
11078         Add functions for setting and getting the connection's name.
11079
11080         * bus/connection.h:
11081         Add function headers.
11082
11083         * bus/driver.c: (create_unique_client_name),
11084         (bus_driver_handle_hello_message),
11085         (bus_driver_send_welcome_message), (bus_driver_message_handler),
11086         (bus_driver_add_connection), (bus_driver_remove_connection):
11087         * bus/driver.h:
11088         * bus/main.c:
11089         * bus/services.c: (bus_service_free):
11090         * bus/services.h:
11091         New file that handles communication and registreation with the bus
11092         itself.
11093
11094 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
11095
11096         * dbus/dbus-connection.c: (dbus_connection_send_message):
11097         Add a new client_serial parameter.
11098
11099         (dbus_connection_send_message_with_reply):
11100         Remove a @todo since we've implemented the blocking function.
11101
11102         (dbus_connection_send_message_with_reply_and_block):
11103         New function that sends a message and waits for a reply and
11104         then returns the reply.
11105
11106         * dbus/dbus-connection.h:
11107         Add new functions.
11108
11109         * dbus/dbus-errors.c: (dbus_result_to_string):
11110         * dbus/dbus-errors.h:
11111         Add new DBUS_RESULT.
11112
11113         * dbus/dbus-message-internal.h:
11114         * dbus/dbus-message.c: (_dbus_message_get_reply_serial),
11115         (_dbus_message_set_sender), (dbus_message_write_header),
11116         (dbus_message_new_reply), (decode_header_data),
11117         (_dbus_message_loader_return_buffer), (_dbus_message_test):
11118         * dbus/dbus-message.h:
11119         Add new functions that set the reply serial and sender.
11120         Also marshal and demarshal them correctly and add test.
11121
11122         * dbus/dbus-protocol.h:
11123         Add new DBUS_MESSAGE_TYPE_SENDER.
11124
11125         * glib/dbus-glib.h:
11126         * glib/dbus-gmain.c: (watch_callback), (free_callback_data),
11127         (add_watch), (remove_watch), (add_timeout), (remove_timeout),
11128         (dbus_connection_hookup_with_g_main):
11129         * glib/test-dbus-glib.c: (main):
11130         Rewrite to use GIOChannel and remove the GSource crack.
11131
11132         * test/echo-client.c: (main):
11133         * test/watch.c: (check_messages):
11134         Update for changed APIs
11135
11136 2003-01-19  Anders Carlsson  <andersca@codefactory.se>
11137
11138         * dbus/Makefile.am: Add dbus-timeout.[cħ]
11139
11140         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport):
11141         Create a DBusTimeoutList.
11142         (dbus_connection_set_timeout_functions): Add new function to
11143         set timeout callbacks
11144
11145         * dbus/dbus-connection.h: Add public DBusTimeout API.
11146
11147         * dbus/dbus-message.c: (dbus_message_get_service):
11148         * dbus/dbus-message.h:  New function.
11149
11150         * dbus/dbus-server.c: Fix small doc typo.
11151
11152         * dbus/dbus-timeout.[ch]: New files for mainloop timeouts.
11153
11154 2003-01-19  Anders Carlsson  <andersca@codefactory.se>
11155
11156         * dbus/dbus-string.c (_dbus_string_move_len): Don't delete all
11157         of the string, just as long as specified.
11158
11159 2003-01-19  Havoc Pennington  <hp@pobox.com>
11160
11161         * dbus/dbus-connection.c (dbus_connection_get_is_authenticated):
11162         new function
11163
11164         * dbus/dbus-server.c (dbus_server_set_max_connections)
11165         (dbus_server_get_max_connections, dbus_server_get_n_connections):
11166         keep track of current number of connections, and add API for
11167         setting a max (but haven't implemented enforcing the max yet)
11168
11169 2003-01-18  Havoc Pennington  <hp@pobox.com>
11170
11171         * dbus/dbus-transport-unix.c (unix_do_iteration): only do the
11172         reading/writing if read_watch != NULL or write_watch != NULL.
11173
11174         * dbus/dbus-message.c (_dbus_message_loader_return_buffer): fix
11175         the message loader code to actually load message->header and
11176         message->body into the newly-created message.
11177
11178         * dbus/dbus-transport-unix.c (check_write_watch): fix a mem leak
11179         in OOM case
11180
11181         * dbus/dbus-connection.c (dbus_connection_set_max_message_size)
11182         (dbus_connection_get_max_message_size)
11183         (dbus_connection_set_max_live_messages_size)
11184         (dbus_connection_get_max_live_messages_size): implement some
11185         resource limitation functions
11186
11187         * dbus/dbus-resources.c: new file implementing some of the
11188         resource limits stuff
11189
11190         * dbus/dbus-message.c (dbus_message_iter_get_byte_array): add
11191         missing docs, add @todo to handle OOM etc.
11192
11193         * dbus/dbus-marshal.c (_dbus_demarshal_byte_array): add missing
11194         docs
11195
11196 2003-01-18  Havoc Pennington  <hp@pobox.com>
11197
11198         * dbus/dbus-connection.c (dbus_connection_unref): disconnect the
11199         connection if it hasn't been already.
11200
11201         * dbus/dbus-connection.h: kill off the idea of an ErrorFunction,
11202         replace with DisconnectFunction.
11203
11204 2003-01-18  Havoc Pennington  <hp@pobox.com>
11205
11206         Building --disable-verbose-mode --disable-asserts --disable-tests
11207         cuts the library from 112K to 45K or so
11208
11209         * configure.in: check for varargs macro support,
11210         add --enable-verbose-mode, --enable-asserts.
11211
11212         * dbus/dbus-internals.h (_dbus_assert): support
11213         DBUS_DISABLE_ASSERT
11214         (_dbus_verbose): support DBUS_ENABLE_VERBOSE_MODE
11215
11216 2003-01-18  Havoc Pennington  <hp@pobox.com>
11217
11218         * dbus/dbus-test.c: include config.h so that tests actually run
11219
11220         * dbus/dbus-string.c: add assertions that stuff is 8-byte aligned,
11221         so the failure mode when that assumption fails will be plenty
11222         obvious.
11223
11224 2003-01-18  Havoc Pennington  <hp@pobox.com>
11225
11226         * configure.in: default --enable-tests to $USE_MAINTAINER_MODE
11227
11228         * dbus/Makefile.am: fix it up so dubs-test-main.c is included in
11229         the distribution
11230
11231         * test/Makefile.am: don't use special variable "TESTS" for echo-*
11232         since we don't want to use those in make check
11233
11234 2003-01-15  Havoc Pennington  <hp@redhat.com>
11235
11236         Release 0.2
11237
11238         * NEWS: update
11239
11240 2003-01-15  Havoc Pennington  <hp@redhat.com>
11241
11242         * test/Makefile.am: fix so that test source code ends up in the
11243         distribution on make distcheck
11244
11245 2003-01-15  Havoc Pennington  <hp@redhat.com>
11246
11247         Release 0.1.
11248
11249         * NEWS: update
11250
11251 2003-01-15  Havoc Pennington  <hp@redhat.com>
11252
11253         * dbus/dbus-test.c (dbus_internal_symbol_do_not_use_run_tests):
11254         fix build when --disable-tests
11255
11256         * Makefile.am (EXTRA_DIST): put HACKING in here
11257
11258         * HACKING: document procedure for making a tarball release.
11259
11260 2003-01-14  Anders Carlsson  <andersca@codefactory.se>
11261
11262         * bus/connection.c: (connection_error_handler),
11263         (bus_connection_setup):
11264         * bus/main.c: (main):
11265         Make sure that the DBusConnectionData struct is NULLed
11266         out to prevent a segfault.
11267
11268         * dbus/dbus-errors.c: (dbus_result_to_string):
11269         * dbus/dbus-errors.h:
11270         * dbus/dbus-message.c: (dbus_message_get_fields),
11271         (dbus_message_get_fields_valist), (_dbus_message_test):
11272         * dbus/dbus-message.h:
11273         Make dbus_message_get_fields return a result code so we can
11274         track invalid fields as well as oom.
11275
11276 2003-01-11  Havoc Pennington  <hp@pobox.com>
11277
11278         * configure.in: change --enable-test/--enable-ansi action-if-given
11279         to enable_foo=$enableval instead of enable_foo=yes
11280
11281 2003-01-08  Havoc Pennington  <hp@pobox.com>
11282
11283         * dbus/dbus-string.c (_dbus_string_align_length): new function
11284
11285         * dbus/dbus-test-main.c: move main() for test app here
11286         * dbus/dbus-test.c
11287         (dbus_internal_symbol_do_not_use_run_tests): we have to export a
11288         symbol to run tests, because dbus-test isn't in the main
11289         library
11290
11291         Code review nitpicks.
11292
11293         * dbus/dbus-message.c (dbus_message_write_header): add newlines
11294         for people with narrow emacs ;-). Assert client_serial was filled
11295         in. Assert message->name != NULL.
11296         (dbus_message_append_fields): have "first_field_type" arg separate
11297         from va list, needed for C++ binding that also uses varargs IIRC
11298         and helps with type safety
11299         (dbus_message_new): add @todo about using DBusString to store
11300         service/name internally
11301         (dbus_message_new): don't leak ->service and ->name on OOM later
11302         in the function
11303         (dbus_message_unref): free the service name
11304         (dbus_message_get_fields): same change to varargs
11305         i.e. first_field_type
11306         (_dbus_message_loader_return_buffer): assert that the message data
11307         is aligned (if not it's a bug in our code). Put in verbose griping
11308         about why we set corrupted = TRUE.
11309         (decode_header_data): add FIXME that char* is evil.  Was going to
11310         add FIXME about evil locale-specific string.h strncmp, but just
11311         switched to wacky string-as-uint32 optimization. Move check for
11312         "no room for field name" above get_const_data_len() to avoid
11313         assertion failure in get_const_data_len if we have trailing 2
11314         bytes or the like. Check for service and name fields being
11315         provided twice. Don't leak service/name on error. Require field
11316         names to be aligned to 4 bytes.
11317
11318         * dbus/dbus-marshal.c: move byte swap stuff to header
11319         (_dbus_pack_int32): uscore-prefix
11320         (_dbus_unpack_int32): uscore-prefix
11321         (_dbus_unpack_uint32): export
11322         (_dbus_demarshal_string): add @todo complaining about use of
11323         memcpy()
11324         (_dbus_marshal_get_field_end_pos): add @todo about bad error
11325         handling allowing corrupt data to go unchecked
11326
11327 2003-01-08  Havoc Pennington  <hp@redhat.com>
11328
11329         * dbus/dbus-transport-unix.c (unix_do_iteration): add read/write
11330         to the select() as needed for authentication. (should be using
11331         _dbus_poll() not select, but for another day)
11332
11333         * dbus/dbus.h: include dbus/dbus-protocol.h
11334
11335 2003-01-08  Anders Carlsson  <andersca@codefactory.se>
11336
11337         * dbus/Makefile.am (dbusinclude_HEADERS): Install
11338         dbus-connection.h
11339
11340 2003-01-08  Anders Carlsson  <andersca@codefactory.se>
11341
11342         * dbus/dbus-internals.c: (_dbus_type_to_string):
11343         New function that returns a string describing a type.
11344
11345         * dbus/dbus-marshal.c: (_dbus_demarshal_byte_array):
11346         * dbus/dbus-marshal.h:
11347         * dbus/dbus-message.c: (dbus_message_get_fields_valist),
11348         (dbus_message_iter_get_field_type), (dbus_message_iter_get_double),
11349         (dbus_message_iter_get_byte_array):
11350         * dbus/dbus-message.h:
11351         Add new convenience functions for appending and getting message fields.
11352         Also add demarshalling routines for byte arrays.
11353
11354 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
11355
11356         * dbus/dbus-connection-internal.h:
11357         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
11358         (_dbus_connection_get_next_client_serial),
11359         (dbus_connection_send_message):
11360         * dbus/dbus-internals.h:
11361         * dbus/dbus-marshal.c: (unpack_uint32), (dbus_unpack_int32),
11362         (dbus_pack_int32), (_dbus_marshal_double), (_dbus_marshal_int32),
11363         (_dbus_marshal_uint32), (_dbus_demarshal_double),
11364         (_dbus_demarshal_int32), (_dbus_demarshal_uint32),
11365         (_dbus_demarshal_string), (_dbus_marshal_get_field_end_pos),
11366         (_dbus_verbose_bytes), (_dbus_marshal_test):
11367         * dbus/dbus-marshal.h:
11368         * dbus/dbus-message-internal.h:
11369         * dbus/dbus-message.c: (_dbus_message_set_client_serial),
11370         (dbus_message_write_header), (_dbus_message_lock),
11371         (dbus_message_new), (dbus_message_ref), (dbus_message_unref),
11372         (dbus_message_get_name), (dbus_message_append_int32),
11373         (dbus_message_append_uint32), (dbus_message_append_double),
11374         (dbus_message_append_string), (dbus_message_append_byte_array),
11375         (dbus_message_get_fields_iter), (dbus_message_iter_ref),
11376         (dbus_message_iter_unref), (dbus_message_iter_has_next),
11377         (dbus_message_iter_next), (dbus_message_iter_get_field_type),
11378         (dbus_message_iter_get_string), (dbus_message_iter_get_int32),
11379         (dbus_message_iter_get_uint32), (dbus_message_iter_get_double),
11380         (decode_header_data), (_dbus_message_loader_return_buffer),
11381         (message_iter_test), (_dbus_message_test):
11382         * dbus/dbus-message.h:
11383         * dbus/dbus-protocol.h:
11384         * dbus/dbus-test.c: (main):
11385         * dbus/dbus-test.h:
11386         * glib/test-dbus-glib.c: (message_handler), (main):
11387         * test/echo-client.c: (main):
11388         * test/watch.c: (check_messages):
11389         Make messages sendable and receivable for real.
11390
11391 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
11392
11393         * dbus/dbus-marshal.c: (_dbus_marshal_double),
11394         (_dbus_marshal_string), (_dbus_marshal_byte_array):
11395         * dbus/dbus-message.c: (dbus_message_append_int32),
11396         (dbus_message_append_uint32), (dbus_message_append_double),
11397         (dbus_message_append_string), (dbus_message_append_byte_array):
11398         Handle OOM restoration.
11399
11400 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
11401
11402         * dbus/dbus-marshal.c: (_dbus_marshal_string),
11403         (_dbus_demarshal_string), (_dbus_marshal_test):
11404         * dbus/dbus-marshal.h:
11405         * dbus/dbus-message.c: (dbus_message_get_name),
11406         Document these functions.
11407
11408         (dbus_message_append_int32), (dbus_message_append_uint32),
11409         (dbus_message_append_double), (dbus_message_append_string),
11410         (dbus_message_append_byte_array):
11411         * dbus/dbus-message.h:
11412         Add functions for adding message fields of different types.
11413
11414         * dbus/dbus-protocol.h:
11415         Add the different types.
11416
11417 2003-01-05  Havoc Pennington  <hp@pobox.com>
11418
11419         * bus/connection.c: implement routines for handling connections,
11420         first thing is keeping a list of owned services on each connection
11421         and setting up watches etc.
11422
11423         * bus/services.c: implement a mapping from service names to lists
11424         of connections
11425
11426         * dbus/dbus-hash.c: add DBUS_HASH_POINTER
11427
11428         * dbus/dbus-threads.c (dbus_static_mutex_lock): add functions
11429         to use static mutexes for global data
11430
11431         * dbus/dbus-connection.c (dbus_connection_set_data): add new
11432         collection of functions to set/get application-specific data
11433         on the DBusConnection.
11434
11435 2003-01-04  Havoc Pennington  <hp@pobox.com>
11436
11437         * dbus/dbus-sysdeps.c (_dbus_sleep_milliseconds): new function
11438         (_dbus_poll): new function
11439
11440         * dbus/dbus-internals.h (_DBUS_STRUCT_OFFSET): new macro
11441         copied from GLib
11442
11443         * bus/loop.c: initial code for the daemon main loop
11444
11445 2003-01-04  Havoc Pennington  <hp@pobox.com>
11446
11447         * test/watch.c (error_handler): make it safe if the error handler
11448         is called multiple times (if we s/error handler/disconnect
11449         handler/ we should just guarantee it's called only once)
11450
11451         * dbus/dbus-transport.c (_dbus_transport_disconnect): call the
11452         error handler on disconnect (it's quite possible we should
11453         just change the error handler to a "disconnect handler," I'm
11454         not sure we have any other meaningful errors)
11455
11456         * configure.in: check for getpwnam_r
11457
11458         * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
11459         dbus/dbus-auth.c: add credentials support, add EXTERNAL auth
11460         mechanism as in SASL spec, using socket credentials
11461
11462         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): new function
11463         (_dbus_send_credentials_unix_socket): new function
11464
11465         * dbus/dbus-sysdeps.c (_dbus_accept_unix_socket): rename just
11466         dbus_accept()
11467         (_dbus_write): only check errno if <0 returned
11468         (_dbus_write_two): ditto
11469
11470 2003-01-02  Anders Carlsson  <andersca@codefactory.se>
11471
11472         * dbus/dbus-marshal.c: (_dbus_marshal_utf8_string),
11473         (_dbus_marshal_byte_array), (_dbus_demarshal_utf8_string),
11474         (_dbus_marshal_test):
11475         * dbus/dbus-marshal.h:
11476         Add _dbus_marshal_byte_array and rename _dbus_marshal_string
11477         to _dbus_marshal_utf8_string. Also fix some tests.
11478
11479 2002-12-28  Harri Porten  <porten@kde.org>
11480
11481         * configure.in: added check for C++ compiler and a very cheesy
11482         check for the Qt integration
11483
11484         * Makefile.am (SUBDIRS): compile qt subdir if support is enabled
11485
11486         * qt/Makefile.am: added
11487
11488         * qt/.cvsignore: added
11489
11490         * qt/dbus-qthread.cc, qt/dbus-qthread.cpp: renamed former to
11491         latter, added #ifdef QT_THREAD_SUPPORT guard.
11492
11493         * dbus/Makefile.am: added missing headers for make dist
11494
11495 2002-12-28  Kristian Rietveld  <kris@gtk.org>
11496
11497         * dbus/Makefile.am: fixup export-symbols-regex.
11498
11499 2002-12-27  Anders Carlsson  <andersca@codefactory.se>
11500
11501         * acinclude.m4: Add this file and put the
11502         PKG_CHECK_MODULE macro in it.
11503
11504 2002-12-27  Anders Carlsson  <andersca@codefactory.se>
11505
11506         * dbus/dbus-marshal.c: (_dbus_marshal_string),
11507         (_dbus_demarshal_double), (_dbus_demarshal_int32),
11508         (_dbus_demarshal_uint32), (_dbus_demarshal_string),
11509         (_dbus_marshal_test):
11510         Make the demarshalling routines align the pos argument.
11511         Add string marshalling tests and fix the obvious bugs
11512         discovered.
11513
11514 2002-12-26  Havoc Pennington  <hp@pobox.com>
11515
11516         * dbus/dbus-auth.c: fixes fixes fixes
11517
11518         * dbus/dbus-transport-unix.c: wire up support for
11519         encoding/decoding data on the wire
11520
11521         * dbus/dbus-auth.c (_dbus_auth_encode_data)
11522         (_dbus_auth_decode_data): append to target string
11523         instead of nuking it.
11524
11525 2002-12-26  Havoc Pennington  <hp@pobox.com>
11526
11527         * dbus/dbus-marshal.h (DBUS_COMPILER_BYTE_ORDER): #ifdef
11528         WORDS_BIGENDIAN then compiler byte order is DBUS_BIG_ENDIAN,
11529         doh
11530
11531         * dbus/dbus-marshal.c: Add macros to do int swapping in-place and
11532         avoid swap_bytes() overhead (ignoring possible assembly stuff for
11533         now). Main point is because I wanted unpack_uint32 to implement
11534         _dbus_verbose_bytes
11535         (_dbus_verbose_bytes): new function
11536
11537         * dbus/dbus-string.c (_dbus_string_validate_ascii): new function
11538
11539         * dbus/dbus-message.c (_dbus_message_loader_get_is_corrupted): add
11540         mechanism to handle a corrupt message stream
11541         (_dbus_message_loader_new): fix preallocation to only prealloc,
11542         not prelengthen
11543
11544         * dbus/dbus-string.c (_dbus_string_skip_blank): fix this function
11545         (_dbus_string_test): enhance tests for copy/move and fix the
11546         functions
11547
11548         * dbus/dbus-transport-unix.c: Hold references in more places to
11549         avoid reentrancy problems
11550
11551         * dbus/dbus-transport.c: ditto
11552
11553         * dbus/dbus-connection.c (dbus_connection_dispatch_message): don't
11554         leak reference count in no-message case
11555
11556         * test/watch.c (do_mainloop): handle adding/removing watches
11557         during iteration over the watches. Also, ref the connection/server
11558         stored on a watch, so we don't try to mangle a destroyed one.
11559
11560         * dbus/dbus-transport-unix.c (do_authentication): perform
11561         authentication
11562
11563         * dbus/dbus-auth.c (get_state): add a state
11564         AUTHENTICATED_WITH_UNUSED_BYTES and return it if required
11565         (_dbus_auth_get_unused_bytes): append the unused bytes
11566         to the passed in string, rather than prepend
11567
11568         * dbus/dbus-transport.c (_dbus_transport_init_base): create
11569         the auth conversation DBusAuth
11570
11571         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd)
11572         (_dbus_transport_new_for_domain_socket): when creating a
11573         transport, pass in whether it's a client-side or server-side
11574         transport so we know which DBusAuth to create
11575
11576 2002-12-03  Havoc Pennington  <hp@pobox.com>
11577
11578         * dbus/dbus-transport-unix.c (unix_finalize): finalize base
11579         _after_ finalizing the derived members
11580         (unix_connection_set): unref watch if we fail to add it
11581
11582         * dbus/dbus-connection.c (dbus_connection_unref): delete the
11583         transport first, so that the connection owned by the
11584         transport will be valid as the transport finalizes.
11585
11586         * dbus/dbus-transport-unix.c (unix_finalize): free the write_watch
11587         if necessary, and remove watches from the connection.
11588
11589         * dbus/dbus-watch.c (_dbus_watch_list_free): improve a comment
11590
11591 2002-12-26  Anders Carlsson  <andersca@codefactory.se>
11592
11593         * dbus/dbus-marshal.c: (_dbus_marshal_string),
11594         (_dbus_demarshal_double), (_dbus_demarshal_int32),
11595         (_dbus_demarshal_uint32), (_dbus_demarshal_string),
11596         (_dbus_marshal_test):
11597         * dbus/dbus-marshal.h:
11598         Add string marshal functions and have the demarshal functions
11599         return the new position.
11600
11601 2002-12-25  Havoc Pennington  <hp@pobox.com>
11602
11603         * doc/dbus-sasl-profile.txt: docs on the authentication protocol,
11604         it is a simple protocol that just maps directly to SASL.
11605
11606         * dbus/dbus-auth.h, dbus/dbus-auth.c: authentication protocol
11607         initial implementation, not actually used yet.
11608
11609         * dbus/dbus-string.c (_dbus_string_find): new function
11610         (_dbus_string_equal): new function
11611         (_dbus_string_base64_encode): new function
11612         (_dbus_string_base64_decode): new function
11613
11614 2002-12-25  Anders Carlsson  <andersca@codefactory.se>
11615
11616         * dbus/Makefile.am:
11617         * dbus/dbus-marshal.c: (swap_bytes), (_dbus_marshal_double),
11618         (_dbus_marshal_int32), (_dbus_marshal_uint32),
11619         (_dbus_demarshal_double), (_dbus_demarshal_int32),
11620         (_dbus_demarshal_uint32), (_dbus_marshal_test):
11621         * dbus/dbus-marshal.h:
11622         * dbus/dbus-protocol.h:
11623         * dbus/dbus-test.c: (main):
11624         * dbus/dbus-test.h:
11625         Add un-optimized marshalling/demarshalling routines.
11626
11627 2002-12-25  Harri Porten  <porten@kde.org>
11628
11629         * qt/dbus-qt.h: adjusted ctor and getter to KDE/Qt conventions
11630
11631 2002-12-24  Zack Rusin  <zack@kde.org>
11632
11633         * qt/dbus-qthread.cc: adding - integrates QMutex into Dbus
11634         * qt/dbus-qt.h: skeleton with two sample implemenatation of the
11635         main loop stuff
11636
11637 2002-12-24  Havoc Pennington  <hp@pobox.com>
11638
11639         * glib/dbus-gthread.c: fix include
11640
11641         * glib/dbus-glib.h: rename DBusMessageHandler for now.
11642         I think glib API needs to change, though, as you don't
11643         want to use DBusMessageFunction, you want to use the
11644         DBusMessageHandler object. Probably
11645         dbus_connection_open_with_g_main_loop()
11646         and dbus_connection_setup_g_main_loop() or something like that
11647         (but think of better names...) that just create a connection
11648         that has watch/timeout functions etc. already set up.
11649
11650         * dbus/dbus-connection.c
11651         (dbus_connection_send_message_with_reply): new function just to
11652         show how the message handler helps us deal with replies.
11653
11654         * dbus/dbus-list.c (_dbus_list_remove_last): new function
11655
11656         * dbus/dbus-string.c (_dbus_string_test): free a string that
11657         wasn't
11658
11659         * dbus/dbus-hash.c: use memory pools for the hash entries
11660         (rebuild_table): be more paranoid about overflow, and
11661         shrink table when we can
11662         (_dbus_hash_test): reduce number of sprintfs and write
11663         valid C89. Add tests for case where we grow and then
11664         shrink the hash table.
11665
11666         * dbus/dbus-mempool.h, dbus/dbus-mempool.c: memory pools
11667
11668         * dbus/dbus-connection.c (dbus_connection_register_handler)
11669         (dbus_connection_unregister_handler): new functions
11670
11671         * dbus/dbus-message.c (dbus_message_get_name): new
11672
11673         * dbus/dbus-list.c: fix docs typo
11674
11675         * dbus/dbus-message-handler.h, dbus/dbus-message-handler.c:
11676         an object representing a handler for messages.
11677
11678 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
11679
11680         * glib/dbus-glib.h:
11681         * glib/dbus-gthread.c: (dbus_gthread_init):
11682         Don't use the gdbus prefix for public functions.
11683
11684 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
11685
11686         * Makefile.am:
11687         * configure.in:
11688         Add GLib checks and fixup .pc files
11689
11690         * glib/Makefile.am:
11691         * glib/dbus-glib.h:
11692         * glib/dbus-gmain.c: (gdbus_connection_prepare),
11693         (gdbus_connection_check), (gdbus_connection_dispatch),
11694         (gdbus_add_connection_watch), (gdbus_remove_connection_watch),
11695         (dbus_connection_gsource_new):
11696         * glib/dbus-gthread.c: (dbus_gmutex_new), (dbus_gmutex_free),
11697         (dbus_gmutex_lock), (dbus_gmutex_unlock), (dbus_gthread_init):
11698         * glib/test-dbus-glib.c: (message_handler), (main):
11699         Add GLib support.
11700
11701 2002-12-15  Harri Porten  <porten@kde.org>
11702
11703         * autogen.sh: check for libtoolize before attempting to use it
11704
11705         * dbus/dbus-transport-unix.c: include <sys/time.h> for timeval
11706         struct.
11707
11708         * .cvsignore: ignore more stamp files
11709
11710         * dbus/dbus-watch.c (_dbus_watch_list_new): fixed doc error
11711
11712         * test/Makefile.am: added -I$(top_srcdir) to be able to compile
11713         without make install.
11714
11715 2002-12-15  Havoc Pennington  <hp@pobox.com>
11716
11717         * dbus/dbus-threads.c: add thread stubs that a higher library
11718         layer can fill in. e.g. the GLib wrapper might fill them in with
11719         GThread stuff. We still need to use this thread API to
11720         thread-safe-ize the library.
11721
11722 2002-12-12  Havoc Pennington  <hp@pobox.com>
11723
11724         * dbus/dbus-transport-unix.c, dbus/dbus-server-unix.c: use the
11725         below new interfaces and include fewer system headers.
11726
11727         * dbus/dbus-sysdeps.c (_dbus_read): new function
11728         (_dbus_write): new function
11729         (_dbus_write_two): new function
11730         (_dbus_connect_unix_socket): new function
11731         (_dbus_listen_unix_socket): new function
11732
11733         * dbus/dbus-message-internal.h: change interfaces to use
11734         DBusString
11735
11736 2002-12-11  Havoc Pennington  <hp@pobox.com>
11737
11738         * dbus/dbus-types.h: add dbus_unichar
11739
11740         * dbus/dbus-internals.c (_dbus_verbose): use _dbus_getenv
11741
11742         * dbus/dbus-connection.c (dbus_connection_send_message): return
11743         TRUE on success
11744
11745         * dbus/dbus-transport.c: include dbus-watch.h
11746
11747         * dbus/dbus-connection.c: include dbus-message-internal.h
11748
11749         * HACKING: add file with coding guidelines stuff.
11750
11751         * dbus/dbus-string.h, dbus/dbus-string.c: Encapsulate all string
11752         handling here, for security purposes (as in vsftpd). Not actually
11753         using this class yet.
11754
11755         * dbus/dbus-sysdeps.h, dbus/dbus-sysdeps.c: Encapsulate all
11756         system/libc usage here, as in vsftpd, for ease of auditing (and
11757         should also simplify portability). Haven't actually moved all the
11758         system/libc usage into here yet.
11759
11760 2002-11-25  Havoc Pennington  <hp@pobox.com>
11761
11762         * dbus/dbus-internals.c (_dbus_verbose): fix to not
11763         always print the first verbose message.
11764
11765 2002-11-24  Havoc Pennington  <hp@pobox.com>
11766
11767         * test/echo-client.c, test/echo-server.c: cheesy test
11768         clients.
11769
11770         * configure.in (AC_CHECK_FUNCS): check for writev
11771
11772         * dbus/dbus-message.c (_dbus_message_get_network_data): new
11773         function
11774
11775         * dbus/dbus-list.c (_dbus_list_foreach): new function
11776
11777         * dbus/dbus-internals.c (_dbus_verbose): new function
11778
11779         * dbus/dbus-server.c, dbus/dbus-server.h: public object
11780         representing a server that listens for connections.
11781
11782         * dbus/.cvsignore: create
11783
11784         * dbus/dbus-errors.h, dbus/dbus-errors.c:
11785         public API for reporting errors
11786
11787         * dbus/dbus-connection.h, dbus/dbus-connection.c:
11788         public object representing a connection that
11789         sends/receives messages. (Same object used for
11790         both client and server.)
11791
11792         * dbus/dbus-transport.h, dbus/dbus-transport.c:
11793         Basic abstraction for different kinds of stream
11794         that we might read/write messages from.
11795
11796 2002-11-23  Havoc Pennington  <hp@pobox.com>
11797
11798         * dbus/dbus-internals.h (_DBUS_INT_MAX): add _DBUS_INT_MIN
11799         _DBUS_INT_MAX
11800
11801         * dbus/dbus-test.c (main): add list test, and include
11802         dbus-test.h as intended
11803
11804         * dbus/dbus-hash.c (_dbus_hash_table_remove_string)
11805         (_dbus_hash_table_remove_int): return value indicates
11806         whether the entry existed to remove
11807
11808         * dbus/dbus-list.c: add linked list utility class,
11809         with docs and tests
11810
11811         * dbus/dbus-hash.c: add TODO item about shrinking the hash bucket
11812         array sometimes.
11813
11814 2002-11-23  Havoc Pennington  <hp@pobox.com>
11815
11816         * Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/
11817         DBUS_END_DECLS to nothing, that should fix this once and for all
11818
11819         * Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES
11820
11821         * dbus/dbus-message.c, dbus/dbus-hash.c:
11822         add some missing @brief
11823
11824 2002-11-23  Havoc Pennington  <hp@pobox.com>
11825
11826         * dbus/dbus-message.h: put semicolons after DEBUG_BEGIN_DECLS
11827         to avoid confusing Doxygen
11828
11829         * dbus/dbus-hash.c: @} not }@
11830
11831         * dbus/dbus-message.c (struct DBusMessage): split out
11832         internals docs
11833
11834 2002-11-23  Havoc Pennington  <hp@pobox.com>
11835
11836         * configure.in: pile on more warning flags if using gcc
11837
11838         * Doxyfile.in (EXTRACT_STATIC): set to NO, so we don't have
11839         to document static functions
11840
11841         * configure.in: add summary to end of configure so it
11842         looks nice and attractive
11843
11844         * dbus/dbus-hash.c: finish implementation and write unit
11845         tests and docs
11846
11847         * configure.in: add --enable-tests to enable unit tests
11848
11849         * dbus/dbus-test.c: test program to run unit tests
11850         for all files in dbus/*, initially runs a test for
11851         dbus-hash.c
11852
11853         * dbus/dbus-internals.h: file to hold some internal utility stuff
11854
11855 2002-11-22  Havoc Pennington  <hp@redhat.com>
11856
11857         * dbus/dbus-hash.c: copy in Tcl hash table, not yet
11858         "ported" away from Tcl
11859
11860         * dbus/dbus-types.h: header for types such as dbus_bool_t
11861
11862 2002-11-22  Havoc Pennington  <hp@redhat.com>
11863
11864         * dbus/dbus.h: fixups for doc warnings
11865
11866         * Doxyfile.in (FILE_PATTERNS): we need to scan .h to pick up
11867         macros
11868         (QUIET): make it quiet so we can see warnings
11869
11870         * dbus/dbus-memory.c: teach D-BUS to allocate and free memory
11871
11872 2002-11-22  Havoc Pennington  <hp@redhat.com>
11873
11874         * Makefile.am: include "Doxyfile" target in all-local
11875
11876         * configure.in: generate the Doxyfile
11877
11878         * Doxyfile.in: move Doxyfile here, so we can use
11879         configure to generate a Doxyfile with the right
11880         version number etc.
11881
11882 2002-11-22  Havoc Pennington  <hp@redhat.com>
11883
11884         * dbus/dbus-message.c: move inline docs into .c file
11885
11886         * Doxyfile (OUTPUT_DIRECTORY): move output to doc/api
11887         so all docs are under doc/
11888         (MAN_EXTENSION): generate man pages. Use extension
11889         ".3dbus" which matches ".3qt" on my system,
11890         I guess this is OK, I don't know really.
11891         (FILE_PATTERNS): look for .c files not .h, makes sense
11892         for plain C I think
11893
11894 2002-11-22  Havoc Pennington  <hp@pobox.com>
11895
11896         * Makefile.am (SUBDIRS): rename subdir "server" to "bus"
11897         because any app can be a server, and any app can be a client,
11898         the bus is a special kind of server.
11899
11900 Thu Nov 21 23:35:31 2002  Zack Rusin  <zack@kde.org>
11901
11902         * Doxyfile : adding. Still needs Makefile rules to be generated
11903         automatically (just run "doxygen" in the toplevel dir for now to
11904         generate docs)
11905
11906         * dbus/dbus-message.h : Adding sample docs (javadoc since
11907         resembles gtk-doc a little more)
11908
11909         * dbus/dbus.h : Adding sample docs
11910
11911 2002-11-21  Havoc Pennington  <hp@redhat.com>
11912
11913         * dbus/Makefile.am (INCLUDES): define DBUS_COMPILATION
11914         so we can allow ourselves to include files directly,
11915         instead of having to use dbus.h
11916
11917         * dbus/dbus.h: fill in
11918
11919         * dbus/dbus-message.h: sketch out a sample header file.
11920         Include griping if you include it directly instead of
11921         via dbus.h
11922
11923         * dbus/dbus-macros.h: new file with macros for extern "C",
11924         TRUE/FALSE, NULL, etc.
11925
11926         * doc/file-boilerplate.c: put include guards in here
11927
11928 2002-11-21  Havoc Pennington  <hp@redhat.com>
11929
11930         * doc/file-boilerplate.c: include both AFL and GPL boilerplate.
11931
11932         * COPYING: include the GPL as well, and license code
11933         under both AFL and GPL.
11934
11935 2002-11-21  Havoc Pennington  <hp@redhat.com>
11936
11937         * acconfig.h: get rid of this
11938
11939         * autogen.sh (run_configure): add --no-configure option
11940
11941         * configure.in: remove AC_ARG_PROGRAM to make
11942         autoconf complain less. add AC_PREREQ.
11943         add AC_DEFINE third arg.
11944
11945 2002-11-21  Anders Carlsson  <andersca@codefactory.se>
11946
11947         * doc/Makefile.am:
11948         Fix references so we can distcheck.
11949
11950 2002-11-21  Havoc Pennington  <hp@redhat.com>
11951
11952         * Initial module creation
11953