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