2005-11-07 Robert McQueen <robot101@debian.org>
[platform/upstream/dbus.git] / ChangeLog
1 2005-11-07  Robert McQueen  <robot101@debian.org>
2
3         * python/decorators.py: Change emit_signal function to use the
4         signature annotation of the signal when marhsalling the arguments from
5         the service. Fix a bug where the code checking signature length
6         against argument length referenced the wrong variable.
7
8         * python/introspect_parser.py: Avoid adding the type signature of
9         signal arguments to any methods which occur after them in the
10         introspection data (!) by making the parser a little more careful
11         about its current state.
12
13         * python/service.py: Remove debug prints from last commit (again :D).
14
15         * test/python/test-client.py, test/python/test-service.py: Add test
16         signals with signature decorators to test the strict marshalling code
17         gives errors at the right time. Could do with checking the signals
18         actually get emitted too, given that the test does nothing with
19         signals at the moment...
20
21 2005-11-07  Robert McQueen  <robot101@debian.org>
22
23         * python/_dbus.py: Add WeakReferenceDictionary cache of dbus.Bus
24         instances to stop madness of creating new instances representing
25         the same bus connection all the time, rendering any tracking of
26         match rules and bus names quite meaningless. Caught a bug where
27         the private argument to SessionBus() and friends was being passed
28         in as use_default_mainloop by mistake. Still some problems with
29         multiple dbus_binding.Connection instances representing the same
30         low-level connection (eg when you use both SessionBus() and
31         StarterBus() in same process), but it's a lot better now than it
32         was.
33
34         * python/dbus_bindings.pyx: Add constants with the return values
35         for bus_request_name().
36
37         * python/service.py: Store bus name instances in a per-dbus.Bus cache
38         and retrieve the same instances for the same name, so deletion can be
39         done with refcounting. Also now throws some kind of error if you
40         don't actually get the name you requested, unlike previously...
41
42         * test/python/test-client.py: Add tests for instance caching of buses
43         and bus name objects.
44
45 2005-11-04  Robert McQueen  <robot101@debian.org>
46
47         * python/dbus_bindings.pyx, test/python/test-client.py: Fix
48         marshalling of boolean values. Add some booleans to the values in
49         the test client.
50
51         * python/decorators.py, python/service.py: Add an 'async_callbacks'
52         argument to the dbus.service.method decorator, which allows you to
53         name arguments to take two callback functions for replying with
54         return values or an exception.
55
56         * test/python/test-client.py, test/python/test-service.py: Add test
57         case using asynchronous method reply functions, both return values and
58         errors, and from within both the function itself and from a mainloop
59         callback.
60
61         * python/decorators.py, python/service.py: Perform checking that the
62         number of method/signal arguments matches the number of types in the
63         signature at class loading time, not when you first introspect the
64         class.
65
66         * python/service.py: Remove debug print left by the last commit.
67
68 2005-11-03  Robert McQueen  <robot101@debian.org>
69
70         * python/service.py: Heavy refactoring of method invocation, with
71         hopefully no effect on functionality. Nuked _dispatch_dbus_method_call
72         in favour of a new _message_cb that uses seperate functions for
73         looking up the method to call, marshalling the return values, and
74         sending exceptions as errors, and is easier to follow as a
75         consequence.  Fixes some corner cases about returning things that
76         don't match your declared out_signature, allows exceptions to define
77         _dbus_error_name and have it be sent over the bus as the error name,
78         and paves the way for cool stuff like heeding the message no reply
79         flag, asynchronous method implementations, informing the method of the
80         sender, and including backtraces in the error messages.
81
82         * test/python/test-client.py: Catch and print exceptions thrown in the
83         async callback tests, rather than passing them to the low-level
84         bindings to be ignored in a noisy and frustrating manner.
85
86 2005-11-03  Robert McQueen  <robot101@debian.org>
87
88         * python/_dbus.py, python/proxies.py, python/service.py: Add __repr__
89         functions to dbus.Bus, dbus.service.BusName and dbus.service.Object,
90         tweak others to be consistent.
91
92         * test/python/test-client.py: Tweak output of testInheritance.
93
94 2005-10-29  Robert McQueen  <robot101@debian.org>
95
96         * python/service.py: Major changes to allow multiple inheritance
97         from classes that define D-Bus interfaces:
98         
99          1. Create a new Interface class which is the parent class of
100             Object, and make the ObjectType metaclass into InterfaceType.
101         
102          2. Patch written with Rob Taylor to replace use of method_vtable
103             with code that walks the class's __MRO__ (method resolution order)
104             to behave like Python does when invoking methods and allow
105             overriding as you'd expect. Code is quite tricky because
106             we have to find two methods, the one to invoke which has the
107             right name and isn't decorated with the /wrong/ interface,
108             and the one to pick up the signatures from which is decorated
109             with the right interface.
110         
111             The same caveats apply as to normal multiple inheritance -
112             this has undefined behaviour if you try and inherit from two
113             classes that define a method with the same name but are
114             decorated with different interfaces. You should decorate
115             your overriding method with the interface you want.
116         
117          3. Replace grungy introspection XML generation code in the metaclass
118             with dictionaries that cope correctly with multiple inheritance
119             and the overriding of methods. This also uses the signature
120             decorations to provide correct introspection data, including
121             the debut appearance of the types of your return values. :D
122
123         * test/python/test-client.py, test/python/test-service.py: Add a test
124         case to try invoking an method that overrides one inherited from a
125         D-Bus interface class.
126
127 2005-10-29  Robert McQueen  <robot101@debian.org>
128
129         * python/dbus_bindings.pyx: Tweak 'raise AssertionError' to assert().
130         Add checking for the end of struct character when marshalling a
131         struct in MessageIter.append_strict.
132
133         * python/examples/example-service.py,
134         python/examples/gconf-proxy-service.py,
135         python/examples/gconf-proxy-service2.py: Update to use gobject
136         mainloop directly rather than appearing to depend on gtk.
137
138         * python/test/test-client.py, python/test/test-server.py: Remove
139         obsolete and broken test scripts for old bindings. We have up to date
140         and working tests in test/python/.
141
142 2005-10-29  Robert McQueen  <robot101@debian.org>
143
144         * python/decorators.py: Add optional arguments to the method and
145         signal decorators to allow you to specify the signature of arguments
146         and return values. Preserve the doc strings of signal functions in the
147         decorated version, for pydoc and friends.
148
149         * python/dbus_bindings.pyx, python/proxies.py: Replace the
150         parse_signature_block function with an iterable dbus.Signature()
151         type. Fix a bug in MessageIter.append_strict where you could append
152         anything by claiming it was a string.
153
154         * python/service.py: Use the out_signature decoration on methods to
155         marshal return values, meaning you no longer require dbus.Array()
156         or dbus.Dictionary() to indicate the type when returning empty
157         arrays or dictionaries. Fix a bug where exceptions which are defined
158         in __main__ are not turned into error replies.
159
160         * test/python/test-client.py, test/python/test-service.py: Add test
161         for correct marshalling of return values according to out_signature.
162         Fix a bug in the async call test where the error_handler is missing a
163         self argument.
164
165 2005-10-29  Robert McQueen  <robot101@debian.org>
166
167         * glib/Makefile.am, glib/examples/Makefile.am,
168         glib/examples/statemachine/Makefile.am: Merge patch from Ubuntu by
169         Daniel Stone to replace explicit calls to libtool with $(LIBTOOL).
170
171         * test/python/.cvsignore: Add run-with-tmp-session-bus.conf.
172
173         * tools/dbus-monitor.1, tools/dbus-monitor.c: Merge dbus-monitor patch
174         from Ubuntu by Daniel Silverstone to allow specifying match rules on
175         the command line.
176
177 2005-10-27  Ross Burton  <ross@openedhand.com>
178
179         * dbus/dbus-marshal-header.c:
180         Remove dead code.
181
182         * glib/dbus-gobject.c:
183         Stop compiler warning.
184
185 2005-10-25  Ross Burton  <ross@openedhand.com>
186
187         * dbus/dbus-auth.c:
188         * dbus/dbus-server-unix.c:
189         * dbus/dbus-transport-unix.c:
190         * glib/dbus-gmain.c:
191         * glib/dbus-gobject.c:
192         Add some const keywords.
193
194 2005-10-25  Ross Burton  <ross@openedhand.com>
195
196         * doc/dbus-specification.xml:
197         Document the NoReply annotation.
198
199         * glib/dbus-binding-tool-glib.h:
200         * glib/dbus-binding-tool-glib.c:
201         Respect the NoReply annotation.
202
203 2005-10-24  Robert McQueen <robot101@debian.org>
204
205         * python/dbus_bindings.pyx (String, MessageIter): make D-Bus strings
206         derive from unicode instead of str, and encode/decode UTF-8 when
207         marshalling/unmarshalling bus messages
208
209         * python/introspect_parser.py: encode introspection data as UTF-8
210         before passing the buffer into libxml2
211
212         * test/python/test-client.py: add unicode test strings
213
214         * test/data/valid-service-files/.cvsignore, test/python/.cvsignore:
215         ignore generated python test files
216
217 2005-10-17  John (J5) Palmieri  <johnp@redhat.com>
218
219         * glib/dbus-gvalue-utils.c (hash_free_from_gtype): handle gdouble
220         and G_TYPE_VALUE_ARRAY (DBUS_TYPE_STRUCT)
221         (gvalue_from_hash_value, hash_value_from_gvalue): handle gdouble
222
223         * glib/dbus-gvalue.c (dbus_gvalue_to_signature): add missing
224         DBUS_STRUCT_BEGIN_CHAR and DBUS_STRUCT_END_CHAR charaters
225         when constructing struct signatures
226
227         * python/_dbus.py (Bus): handle private connections using the
228         private keyword in the constructor. defaults to private=False
229         (Bus::close): new method to close a connection to the bus
230
231         * python/dbus_bindings.pyx (Connection::close): renamed method
232         was previously called disconnect
233         (bus_get): now supports getting a private connection
234
235         * python/proxies.py (ProxyMethod::__call__): check if ignore_reply
236         keyword is set to True.  if it is, execute the method without waiting
237         for a reply
238         (ProxyObject::_introspect_execute_queue): new method for executing
239         all the pending methods that were waiting for the introspect to
240         finish.  this is called when introspect either succeeds or fails
241         (ProxyObject::_introspect_error_handler): call queued methods
242
243 2005-10-14  John (J5) Palmieri  <johnp@redhat.com>
244
245         * python/dbus_bindings.pyx (MessageIter::append_strict): check for
246         STRUCT_BEGIN not TYPE_STRUCT in indicate we are marshalling a struct
247
248         * python/service.py (Object::_message_cb): handle exceptions correctly
249         by sending them over the wire to the calling app.  This makes sure
250         the client returns immediately instead of waiting the 15 seconds to
251         timeout.
252
253         * test/python/test-client.py (TestDBusBindings::testBenchmarkIntrospect): 
254         Add a test to benchmark how long it takes to introspect a service and 
255         call a method which returns a large element (pretty fast)
256
257         * test/python/test-service.py (TestObject::GetComplexArray): new test 
258         method which pushes a lot of data
259
260 2005-10-13  John (J5) Palmieri  <johnp@redhat.com>
261
262         * python/service.py(ObjectType::_reflect_on_signal, _reflect_on_method):        
263         reclaim memory outside of the loop and use del istead of just setting
264         the key to None
265
266 2005-10-13  John (J5) Palmieri  <johnp@redhat.com>
267
268         * python/service.py (ObjectType::_reflect_on_signal): Always close
269         signal tag even when there are no arguments
270
271 2005-10-13  John (J5) Palmieri  <johnp@redhat.com>
272
273         * configure.in: Set mono, mono-docs and Qt3 to default
274         to no instead of auto when building.  These bindings do not
275         have full time maintainers and will not be supported for the
276         1.0 release.
277
278 2005-10-12  John (J5) Palmieri  <johnp@redhat.com>
279
280         patches from Michael Krivoruchko <misha at sun.com>: 
281         
282         * dbus/dbus-connection.c (_dbus_connection_queue_received_message_link,
283         _dbus_connection_message_sent, 
284         _dbus_connection_send_preallocated_unlocked_no_update, 
285         _dbus_connection_pop_message_link_unlocked): handle the case when path 
286         is NULL when calling _dbus_verbose
287
288         * configure.in: check for functions getpeerucred and getpeereid
289
290         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): provides 
291         support of auth EXTERNAL on Solaris 10+ (getpeerucred), FreeBSD 4.6+, 
292         OpenBSD 3.0+ and FreeBSD 5.0+ as well as MacOSX 10.2+ (getpeereid). 
293         Patch was only tested on Solaris 10 x86 so it might be issues
294         with other platforms (i.e. BSDs and MacOSX)
295         
296
297 2005-10-05  John (J5) Palmieri  <johnp@redhat.com>
298
299         * glib/dbus-gvalue.c (marshal_variant): call _dbus_gvalue_marshal 
300         instead of marshal basic so we can handle recursive types in a variant
301
302         * test/glib/test-dbus-glib.c: Add test for marshaling recurive types
303         in variants
304
305         * test/glib/test-service-glib.c, test-service-glib.xml
306         (my_object_echo_variant [EchoVariant], 
307         my_object_process_variant_of_array_of_ints123
308         [ProcessVariantOfArrayOfInts123]): 
309         Add two test methods
310
311         * python/introspect_parser.py: New module for parsing introspect
312         data.
313
314         * python/dbus_bindings.pyx:
315         (various places): when throwing errors fix to use errormsg instead 
316         of message local variable because Pyrex can get confused with other 
317         message variables (initial patch by Robert McQueen 
318         <robert.mcqueen at collabora.co.uk>)
319         (MessageIter::parse_signature_block): new method for getting the next
320         block in a signiture.
321         (MessageIter::append_strict): new method for appending values strictly
322         using the passed in signature instead of guessing at the type
323         (MessageItter:: append_dict, append_struct, append_array): use 
324         signatures to marshal children if the signature is available
325         
326         * python/exceptions.py (IntrospectionParserException): new exception
327
328         * python/proxies.py (ProxyMethod::__call__): Marshal args with 
329         introspected signatures if available, else we fall back to the
330         old way of doing things.
331         (ProxyObject::_introspect_reply_handler ): parse introspection data
332         
333         * python/service.py (ObjectType::_reflect_on_method): Properly
334         terminate <method> if there are no args in the reflection data
335
336         * test/python/test-client.py: add tests for talking with the GLib
337         test server.  This gives us better coverage for introspection since
338         python to python will always generate arguments as variants.  It also
339         allows us to test the robustness of the GLib bindings and interlanguage
340         communications.
341
342         
343 2005-10-03  John (J5) Palmieri  <johnp@redhat.com>
344
345         * bus/driver.c (bus_driver_handle_introspect): Add signals
346         to the introspect data. (patch from Daniel P. Berrange 
347         <dan at berrange.com>)
348
349         * bus/dispatch.c (check_existent_ping): Add testcase for Ping
350         
351         * dbus/dbus-connection.c (_dbus_connection_peer_filter,
352         _dbus_connection_run_builtin_filters): Changed these to
353         be unlock_no_update functions and call 
354         _dbus_connection_send_unlocked_no_update instead of
355         dbus_connection_send to avoid locking errors.
356         
357         * doc/TODO: Removed the make Ping test TODO
358         
359 2005-09-26  John (J5) Palmieri  <johnp@redhat.com>
360
361         * dbus/Python.pyx: Fixed memory leaks when throwing errors.
362         We now copy the message from a DBusError and then free 
363         the error object befor throwing the error
364
365         * glib/dbus-glib-tool.c: removed extra comma at the end of the
366         DBusBindingOutputMode enum which was causing a warning.
367         #include <time.h> so using time_t is explicitly defined
368
369 2005-09-26  John (J5) Palmieri  <johnp@redhat.com>
370
371         * Integrate patches from Lennart Poettering <mzsqb at 0pointer.de>:
372         - dbus/dbus-bus.c
373         (internal_bus_get): new method that take over the heavy lifting
374         of dbus_bus_get and adds the ability to get a private connection
375         to the bus
376         (dbus_bus_get): wrapper to internal_bus_get that provides the same
377         interface as in previous versions
378         (dbus_bus_get_private): new method that is a wrapper to 
379         internal_bus_get to get a private connection to the bus
380
381         - dbus/dbus-bus.h
382         (dbus_bus_get_private): add as a public libdbus interface
383
384         - dbus-1.pc.in: output system_bus_default_address and 
385         sysconfdir variables so apps can use them when compiling
386
387 2005-09-23  Harald Fernengel  <harry@kdevelop.org>
388         * dbus/qt: New Qt bindings
389
390 2005-09-12  Waldo Bastian  <bastian@kde.org>
391
392         * dbus/dbus-marshal-validate.c,
393         doc/dbus-specification.xml, test/Makefile.am,
394         test/test-names.c: allow hyphens in bus names.
395
396 2005-09-11  Mark McLoughlin  <mark@skynet.ie>
397
398         * test/data/auth/fallback.auth-script: we don't
399         retry the EXTERNAL method when we know its going
400         to fail anymore.
401
402 2005-09-11  Mark McLoughlin  <mark@skynet.ie>
403
404         * dbus/dbus-connection-internal.h: rename
405         (add|remove|toggle)_(watch|timeout) to unlocked()
406         
407         * dbus/dbus-connection.c: ditto.
408         
409         * dbus/dbus-timeout.c, dbus/dbus-transport-unix.c:
410         Update some callers for the renaming.
411
412 2005-09-10  Mark McLoughlin  <mark@skynet.ie>
413
414         * dbus/dbus-auth.c: (record_mechanisms): don't
415         retry the first auth mechanism because we know
416         we're just going to get rejected again.
417         
418         * dbus/dbus-keyring.c: (_dbus_keyring_reload):
419         Fix thinko ... and what a nasty little bugger to
420         track down you were ...
421
422         * dbus/dbus-connection.c:
423         (_dbus_connection_add_watch),
424         (_dbus_connection_remove_watch): add note about
425         these needing the connection to be locked.
426         (_dbus_connection_get_dispatch_status_unlocked):
427         set status to DATA_REMAINS when we queue the
428         disconnected message.
429         
430         * bus/dispatch.c:
431         (bus_dispatch): fix warning.
432         (check_existent_service_no_auto_start):
433         Expect ChildSignaled error too.
434         (check_existent_hello_from_self): fix another
435         couple of warnings.
436         
437 2005-09-08  Joe Shaw  <joeshaw@novell.com>
438
439         Patches from James Willcox <snorp@snorp.net>
440
441         * mono/Makefile.am: Add Int16.cs and UInt16.cs
442
443         * mono/DBusType/Array.cs: Handle multidimensional arrays, and
444         support array "out" parameters.
445
446         * mono/DBusType/Int16.cs, mono/DBusType/UInt16.cs: New files,
447         for 16-bit int support.
448
449 2005-09-06  John (J5) Palmieri  <johnp@redhat.com>
450
451         * Released 0.50
452
453         * Patch from Steve Grubb:
454         - bus/activation.c (bus_activation_service_reload_test): clean up
455         some indentation
456         - dbus/dbus-keyring.c (_dbus_keyring_reload): fix conditional 
457         - dbus/dbus-message-factory.c (generate_special): fix a couple of
458         buffer overflows in the test suite.  This is non critical because
459         it can not be exploited and this code is only run when doing a 
460         make check.
461
462         * Patch from Yaakov Selkowitz: Build fixes for Cygwin
463         - configure.in: Don't check and link against kdecore, only qt headers
464         - dbus/Makefile.am: Add -no-undefined to libdbus_1_la_LDFLAGS
465         - gcj/org/freedesktop/dbus/Makefile.am:
466         add libdbus_gcj_1_la_LDFLAGS = -no-undefined
467         - glib/Makefile.am: Add -no-undefined to libdbus_glib_1_la_LDFLAGS
468         and $(DBUS_GLIB_LIBS) to dbus_binding_tool_LDADD
469         - qt/Makefile.am: Add -no-undefined to libdbus_qt_1_la_LDFLAGS
470         - tools/Makefile.am: Add platform extentions to binaries 
471         (i.e. .exe on windows)
472
473         * configure.in: 
474         - Make it so if no suitable version of python is found we only 
475         disable building python instead of exiting the configure script
476         - Require version 2.4 of glib for glib bindings
477         - Up version to 0.50
478
479         * python/__init__.py: Sync version with libdbus to (0,50,0)
480         
481 2005-09-05  Olivier Andrieu  <oliv__a@users.sourceforge.net>
482
483         * dbus/dbus-object-tree.c (find_subtree_recurse):
484         a couple of optimizations (bug #710):
485         - do a binary search in the tree
486         - insert a new child at the right place directly, no need for
487           qsort anymore
488         - do the "double alloc" thing when allocating children
489
490 2005-08-31  John (J5) Palmieri  <johnp@redhat.com>
491
492         * python/Makefile.am: Break on pyrexc errors instead of ignoring them
493
494         * python/dbus_bindings.pyx: Memory management foo
495         (global): remove hacky _user_data_references global list
496         (GIL_safe_cunregister_function_handler): userdata now stuffed into
497         tuples. Unref user_data
498         (GIL_safe_cmessage_function_handler): userdata now stuffed into tuples
499         (Connection::__del__): Remove and replace with __dealloc__ method
500         (Connection::add_filter): Stuff user_data into a tuple.  Use Py_INCREF
501         to keep tuple from being deallocated instead of the global var hack
502         (Connection::register_object_path): Stuff user_data into a tuple.
503         Use Py_INCREF to keep tuple from being deallocated instead of the 
504         global var hack
505         (Connection::register_fallback): Stuff user_data into a tuple.
506         Use Py_INCREF to keep tuple from being deallocated instead of the 
507         global var hack
508         (GIL_safe_pending_call_notification): Don't unref the message
509         because it gets unreffed when going out of scope.  Py_XDECREF
510         the user_data
511         (PendingCall::__del__): Remove and replace with __dealloc__ method
512         (PendingCall::set_notify): ref the pending call because we will
513         need it to stick around for when the notify callback gets called
514         (Message::__del__): Remove and replace with __dealloc__ method
515
516         * python/dbus_glib_bindings.pyx (init_gthreads): Changed to 
517         gthreads_init to match up with the dbus call
518
519         * python/glib.py (init_threads): Changed to threads_init to match
520         up with gobject.threads_init().  init_threads is kept for backwards
521         compat but will most likely be deprecated in the future
522
523         * test/python/test-client.py: 
524         - revamp to use Python's unittest functionality
525         - add async call tests
526         - setup threads in glib and dbus so we make sure locks are working
527         
528 2005-08-30  John (J5) Palmieri  <johnp@redhat.com>
529
530         * python/dbus_bindings.pyx 
531         (_pending_call_notification, cunregister_function_handler, 
532         cmessage_function_handler): All callback functions have been rearranged 
533         to workaround a bug in Pyrex when working with the GIL which is Python's 
534         global lock when dealing with threads.  They have been split into
535         a wrapper function (which assumes the name of the old function) and
536         a _GIL_safe_<function name> function which contains the functionality
537         of the old function.  This ensures that Pyrex does not write code
538         the lock is released.
539         
540
541 2005-08-30  John (J5) Palmieri  <johnp@redhat.com>
542
543         * python/dbus_bindings.pyx (_pending_call_notification): Obtain the
544         GIL global lock when calling back into Python
545
546 2005-08-29  John (J5) Palmieri  <johnp@redhat.com>
547
548         * Release 0.36.2
549
550         * Add Havoc's patch that never got applied to HEAD (Bug #2436):
551
552         * bus/policy.c (bus_policy_allow_user): change default "user is
553         allowed" to be "user has same uid as the bus itself"; any
554         allow/deny rules will override.
555
556         * bus/session.conf.in: don't allow all users, since now by default
557         the user that ran the bus can connect.
558
559 2005-08-26  Colin Walters  <walters@verbum.org>
560
561         * tools/dbus-print-message.c (print_message): Flush stdout
562         after printing a message, so that redirecting to a file, then
563         hitting Ctrl-C works.
564
565 2005-08-25  John (J5) Palmieri  <johnp@redhat.com>
566
567         * python/dbus_bindings.pyx: Tracked down a major memleak and fixed it
568         (EmptyMessage): new class that subclasses Message.  This is a workaround
569         to a Pyrex bug that fails to call __del__ when the Message object goes out
570         of scope.  For some reason subclassing Message fixes this bug
571         (Bus::send_with_reply_and_block): use EmptyMessage instead of Message
572         - s/Message(_create=0)/EmptyMessage everywhere else
573         
574         * test/python/test-{server|client}.py: add the python/.libs directory
575         to the lookup path so dbus_bindings and dbus_glib_bindings don't
576         get picked up from the system
577
578 2005-08-25  Colin Walters  <walters@verbum.org>
579
580         * glib/dbus-gproxy.c (dbus_g_proxy_call): Doc update, thanks
581         to Ryan Lortie for the suggestion.
582
583 2005-08-24  John (J5) Palmieri  <johnp@redhat.com>
584
585         * test/python: Add python regression test
586
587         * configure.in: Add test/python/Makefile
588
589         * test/Makefile.am: Add the python directory to SUBDIRS
590
591 2005-08-24  John (J5) Palmieri  <johnp@redhat.com>
592
593         * Release 0.36.1
594
595         * python/_dbus.py: 
596         (Interface::connect_to_signal): propigate keywords for match on args
597         (Bus::add_signal_receiver): Fix typo s/dbus_inteface/dbus_interface
598
599         * python/proxies.py (ProxyObject::connect_to_signal):
600         propigate keywords for match on args
601
602         * Makefile.am: point everything to pyexecdir since python borks
603         on multilib
604
605 2005-08-23  John (J5) Palmieri  <johnp@redhat.com>
606
607         * Release 0.36
608
609 2005-08-23  Colin Walters  <walters@verbum.org>
610
611         * test/glib/Makefile.am: Don't multiply-define EXTRA_DIST.
612
613 2005-08-23  John (J5) Palmieri  <johnp@redhat.com>
614
615         * python/dbus_glib_bindings.pyx: reorder imports and c definitions
616         to fix some wranings. We now use dbus_bindings.DBusConnection instead
617         of defining DBusConnection ourselves.
618
619 2005-08-18  John (J5) Palmieri  <johnp@redhat.com>
620
621         * python/dbus.pth: New path file to fix up problems when installing
622         c libraries to lib64 and python files to lib.
623
624         * python/Makefile.am: install dbus.pth in the correct spot
625
626 2005-08-17  John (J5) Palmieri  <johnp@redhat.com>
627         * ChangeLog: clean up my last entry a bit
628
629         * doc/introspect.xsl: New stylesheet for converting introspection data
630         into browser renderable xhtml. Contributed by Lennart Poettering.
631
632         * doc/introspect.dtd: Fixups in the introspect format from Lennart
633         Poettering.
634
635         * doc/dbus-tutorial.xml: 
636         - Add Colin Walter to the Authors section for authoring the GLib
637         section
638         - Add descriptions of the new signature and type functionality
639         in the Python complex type mapping section
640         - Add a sidenote on the new args matching functionality in 
641         the Python bindings
642         - Fixed up some of the examples to use the gobject.MainLoop
643         instead of gtk.main
644         
645         * python/_dbus.py:
646         (Bus::_create_args_dict): New. Converts a hash of arg matches
647         to a more useable format
648         (Bus::add_signal_receiver): add a **keywords parameter for catching
649         arg match parameters
650         (Bus::remove_signal_receiver): add a **keywords parameter for catching
651         arg match parameters
652         
653         * python/matchrules.py:
654         (MatchTree::exec_matches): Check for arg matches
655         (SignalMatchRule::add_args_match): New method
656         (SignalMatchRule::execute): Added args_list parameter as an optimization
657         so we don't have to marshal the args more than once
658         (SignalMatchRule::match_args_from_list): New method that checks to see
659         if the rule's arg matches match an argument list.  Only arguments
660         set in the rule are checked.
661         (SignalMatchRule::match_args_from_rule): New method that checks to see
662         if the rule's arg matches match another rule's.  All args have to match
663         in order for this method to return true.  If either rule has more args
664         then it is not a match.
665         (SignalMatchRule::is_match): Add args match
666         (SignalMatchRule::repr): Add args to the final output if they exist
667
668 2005-08-17  Ross Burton  <ross@burtonini.com>
669
670         * glib/dbus-gproxy.c:
671         (dbus_g_proxy_call_no_reply): unref the message once sent.
672         (dbus_g_proxy_call): protect against NULL proxy.
673
674 2005-08-16  John (J5) Palmieri  <johnp@redhat.com>
675
676         * python/__init__.py: Version updated (0, 43, 0)
677         
678         * python/dbus_bindings.pyx: 
679         - Fixed type objects to have self passed into __init__
680         - Added the Variant type
681         - Add the ability to specify types or signatures for Array, Variant 
682         and Dictionary
683         (Connection::send_with_reply_handlers): return a PendingCall object
684         (_pending_call_notification): handle the case when an error is returned 
685         without an error message in the body
686         (MessageIter::get_boolean): return True or False instead of an integer
687         (MessageIter::python_value_to_dbus_sig): add direct checking of types 
688         and add checks for objects with embeded signatures or types (Array, 
689         Variant and Dictionary)
690         (MessageIter::append_byte): handle case when the value is a dbus.Byte
691         (MessageIter::append_dict): handle embeded types or signatures
692         (MessageIter::append_array): handle embeded types or signatures
693         (MessageIter::append_variant): new method
694         
695         * python/proxies.py:
696         (DeferedMethod): New. Dummy executable object used when queuing calls 
697         blocking on introspection data
698         (ProxyMethod::__call__): add the timeout keyword for specifying longer 
699         or shorter timeouts for method calls
700         (ProxyObject): Add first pass at an introspection state machine
701         (ProxyObject::__init__): Add introspect keyword for turing off an on 
702         introspection. 
703         (ProxyObject::_Introspect): Internal Introspect call that bypasses 
704         the usual mechanisms for sending messages.  This is to avoid a deadlock
705         where the Intospect call would be queued waiting for the Introspect 
706         call to finish ;-)
707         (ProxyObject::_introspect_reply_handler): New.  This method is called 
708         when introspection returns with no error
709         (ProxyObject::_introspect_error_handler): New.  This method is called 
710         when introspection encounters an error
711         (ProxyObject::__getattr__): Code to handle different introspection 
712         states.  Queue async calls or block blocking calls if we are 
713         introspecting.  Pass through as normal if we are not or are done with 
714         introspecting.
715         
716         * python/service.py: Import signal and method from decorators.py
717
718         * python/types.py: Add Variant type
719
720 2005-08-16  Colin Walters  <walters@verbum.org>
721
722         * glib/dbus-gobject.c (dbus_set_g_error): Don't lose if the
723         DBusError message is NULL.
724
725 2005-08-09  Havoc Pennington  <hp@redhat.com>
726
727         * dbus/dbus-errors.c: apply patch from Timo Teras to make a
728         malloc'd copy of the name parameter
729
730 2005-08-09  Havoc Pennington  <hp@redhat.com>
731
732         * dbus/dbus-message.c (dbus_message_set_reply_serial): print
733         warning if the reply serial is set to 0
734
735 2005-08-04  Colin Walters  <walters@verbum.org>
736
737         * glib/dbus-gvalue-utils.h (_dbus_g_type_specialized_builtins_init)
738         (dbus_g_type_is_fixed, dbus_g_type_fixed_get_size)
739         (dbus_gvalue_set_from_pointer, dbus_g_hash_table_value_foreach)
740         (dbus_g_hash_table_insert_values, dbus_g_hash_table_insert_steal_values)
741         (dbus_gtype_is_valid_hash_key, dbus_gtype_is_valid_hash_value)
742         (dbus_g_hash_func_from_gtype, dbus_g_hash_free_from_gtype)
743         (dbus_g_hash_equal_from_gtype, dbus_gvalue_stor, dbus_gvalue_take):
744         * glib/dbus-gvalue.h (dbus_g_value_types_init)
745         (dbus_gvalue_demarshal, dbus_gvalue_demarshal_variant)
746         (dbus_gvalue_demarshal_message, dbus_gvalue_marshal):
747         
748         Prefix name with _ to ensure they're not exported.  All callers
749         updated.
750
751         * glib/dbus-gvalue.c (typecode_to_gtype)
752         (dbus_typecode_maps_to_basic, basic_typecode_to_gtype)
753         (signature_iter_to_g_type_dict)
754         (signature_iter_to_g_type_array)
755         (dbus_gtype_from_signature_iter, dbus_gtype_from_signature)
756         (dbus_gtypes_from_arg_signature):
757         Move to dbus-gsignature.c.
758
759         * glib/dbus-binding-tool-glib.c (dbus_binding_tool_output_glib_server): Call
760         dbus_g_type_specialized_builtins_init instead of dbus_g_value_types_init.
761         (dbus_binding_tool_output_glib_client): Ditto.
762
763         * glib/Makefile.am (DBUS_GLIB_INTERNALS): Add dbus-gsignature.c
764         and dbus-gsignature.h
765
766         * test/glib/test-service-glib.c (my_object_rec_arrays): Delete
767         unused variable.
768
769 2005-08-03  Colin Walters  <walters@verbum.org>
770
771         * glib/dbus-gobject.c: Add tests on hardcoded object info; this should
772         catch any incompatible changes accidentally made.
773
774 2005-08-03  Havoc Pennington  <hp@redhat.com>
775
776         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): fix
777         typo, from Julien Puydt
778
779         * bus/connection.c (bus_connection_disconnected): we were always
780         doing a wait_for_memory due to a buggy loop, found by Timo Hoenig
781
782 2005-08-01  Colin Walters  <walters@verbum.org>
783
784         Patch from Joe Markus Clarke:   
785         
786         * glib/dbus-gidl.c (property_info_unref, arg_info_unref): Fix
787         use-after-free.
788
789 2005-08-01  Colin Walters  <walters@verbum.org>
790         
791         Patch from Joe Markus Clarke:   
792         
793         * tools/dbus-send.c (main): 
794         
795         Don't use C99 style initializers (bug #3933).
796         
797 2005-08-01  Colin Walters  <walters@verbum.org>
798
799         Patch from Joe Markus Clarke:   
800
801         * glib/dbus-gvalue.c (dbus_g_value_types_init): 
802         * glib/dbus-gvalue-utils.c (dbus_g_type_specialized_builtins_init) 
803         * glib/dbus-gobject.c (write_interface):
804
805         Don't use C99 style initializers (bug #3933).
806
807 2005-07-31  Havoc Pennington  <hp@redhat.com>
808
809         * tools/dbus-viewer.c (load_child_nodes): fix invocation of
810         dbus_g_proxy_call, fix from Piotr Zielinski bug #3920
811
812 2005-07-30  Havoc Pennington  <hp@redhat.com>
813
814         * fix a bunch of Doxygen warnings and mistakes
815
816 2005-07-30  Havoc Pennington  <hp@redhat.com>
817
818         * dbus/dbus-sysdeps.c (_dbus_string_parse_uint): remove #ifdef
819         DBUS_BUILD_TESTS since it's now used in production code
820
821 2005-07-29  Havoc Pennington  <hp@redhat.com>
822
823         * test/glib/test-profile.c (write_junk): initialize the junk
824         buffer so valgrind doesn't have a breakdown
825
826 2005-07-29  Havoc Pennington  <hp@redhat.com>
827
828         * bus/signals.c (bus_signals_test): add match_rule_equal() tests
829         (match_rule_matches): remove unused arg
830         (test_matching): add tests for match_rule_matches()
831
832         * bus/signals.c (bus_match_rule_parse_arg_match): add ability to
833         do arg0='foo' arg5='bar' in the match rules
834         (match_rule_matches): don't match if the arg0='foo' doesn't match.
835
836         * dbus/dbus-protocol.h (DBUS_MAXIMUM_MATCH_RULE_ARG_NUMBER): add this
837
838 2005-07-29  Ross Burton  <ross@openedhand.com>
839
840         * dbus/dbus-connection.c:
841         Don't create a DBusCondVar which is never used.
842
843 2005-07-27  Ross Burton  <ross@openedhand.com>
844
845         * dbus/dbus-message.c:
846         Reduce the size of the maximum cached message to 10K.
847
848 2005-07-25  Ross Burton  <ross@openedhand.com>
849
850         * glib/dbus-gproxy.c:
851         Remove matches when all proxies are unregistered.
852
853 2005-07-24  Colin Walters  <walters@verbum.org>
854
855         * glib/dbus-gvalue.c (signature_iter_to_g_type_array): Don't require
856         typedata; recursive arrays won't have it.
857
858         * test/glib/test-dbus-glib.c:
859         * test/glib/test-service-glib.c:
860         * test/glib/test-service-glib.xml: Add recursive arrays tests.
861         
862 2005-07-20  John (J5) Palmieir  <johnp@redhat.com>
863
864         * python/_dbus.py, _util.py, decorators.py, extract.py, matchrules.py.
865         proxies.py, service.py: Cleanup of code after running it through the
866         pyflakes code checker mostly dealing with undefined names.  
867         (Bug #3828, Patch from Anthony Baxter <anthony@interlink.com.au>)
868
869 2005-07-17  John (J5) Palmieri  <johnp@redhat.com>
870
871         * NEWS: Update to 0.35.2
872
873 2005-07-17  John (J5) Palmieri  <johnp@redhat.com>
874
875         * python/_dbus.py: Remove import of the dbus.services
876         module as it no longer exists (patch from Dimitur Kirov)
877
878         * python/service.py (Object::__init__): Fixed typo
879         s/name/bus_name (patch from Dimitur Kirov)
880
881         * python/examples/example-signal-emitter.py: import dbus.glib
882         to get the main loop and use glib mainloop instead of gtk so
883         X doesn't have to be running.
884
885         * python/examples/example-signal-recipient.py: import dbus.glib
886         to get the main loop and use glib mainloop instead of gtk so
887         X doesn't have to be running. Import the decorators module
888         directly.
889
890         * test/glib/Makefile.am:  Added DIST_EXTRA files that distcheck
891         didn't pick up on but are needed to build
892
893         * configure.in: upped version to 0.35.2
894
895         * bus/driver.c, bus/selinux.c, bus/selinux.h, dbus/dbus-protocol.h:
896         added Colin Walters' SELinux API rename patch from head 
897         s/unix sercurity context/selinux security context/
898
899 2005-07-16  John (J5) Palmieri  <johnp@redhat.com>
900
901         * python/Makefile.am: dbus_binding.pxd.in should be included 
902         in EXTRA_DIST not dbus_binding.pxd
903         fix up $(srcdir) hopefully for the last time
904
905         * NEWS: Update to 0.35.1
906
907 2005-07-16  Colin Walters  <walters@verbum.org>
908
909         * bus/driver.c (bus_driver_handle_get_connection_selinux_security_context): Renamed
910         from bus_driver_handle_get_connection_unix_security_context.  Update for
911         error usage.
912         (message_handlers): Update for renames.
913
914         * bus/selinux.c (bus_selinux_allows_send): Handle OOM on
915         _dbus_string_init failure correctly.
916         (bus_selinux_append_context): Convert SID to context.  Append it
917         as a byte array.
918         (bus_selinux_shutdown): Handle the case where bus_selinux_full_init
919         hasn't been called.
920
921         * bus/selinux.h: Update prototype.
922
923         * dbus/dbus-protocol.h (DBUS_ERROR_SELINUX_SECURITY_CONTEXT_UNKNOWN): Renamed
924         from DBUS_ERROR_UNIX_SECURITY_CONTEXT_UNKNOWN.
925
926 2005-07-15  Colin Walters  <walters@verbum.org>
927
928         * doc/TODO: Add note about convenience wrappers.
929
930 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
931
932         * NEWS: Update to 0.35
933
934 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
935
936         * glib/Makefile.am: Add make-dbus-glib-error-switch.sh to EXTRA_DIST
937         so distcheck doesn't fail
938
939         * glib/examples/Makefile.am: Add example-service.xml and 
940         example-signal-emitter.xml to EXTRA_DIST so distcheck doesn't fail
941
942         * glib/examples/statemachine/Makefile.am: Add statemachine.xml and
943         statemachine-server.xml to EXTRA_DIST so distcheck doesn't fail
944
945         * python/Makefile.am: Preprend $(srcdir)/ to source files so the
946         compiler looks in the right places during distcheck
947
948 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
949
950         * glib/example/Makefile.am: Fix a typo which cause make distcheck
951         to fail
952
953 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
954
955         * python/examples/example-service.py,
956         python/examples/example-signal-emitter.py: Fixed up examples
957         for API changes
958
959 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
960
961         * python/__init__.py: Upped to version (0,42,0) because of
962         the API change
963
964 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
965
966         * ChangeLog: fix date in last entry
967
968         * configure.in, bus/system.conf.in: add the ability to configure 
969         the system bus user at compiletime with the --with-dbus-user flag
970         (patch from Kristof Vansant)
971
972 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
973
974         * bus/dispatch.c, test/test-service.c: Add testcase
975         for sending messages to oneself (TODO item).
976
977         * python/service.py (class Object): Swap ordering of bus_name 
978         and object_path parameters to better support inheritance.
979
980         * doc/dbus-tutorial.xml: change Python docs to reflect change
981         in parameter ordering and fix the inheritance section.
982
983         * doc/TODO: remove sending message to oneself TODO item
984
985 2005-07-15  Ross Burton  <ross@openedhand.com>
986
987         * glib/dbus-gproxy.c:
988         Fix a leak when calling methods via the proxy.
989
990 2005-07-15  Colin Walters  <walters@verbum.org>
991
992         * bus/selinux.c (bus_selinux_append_context): Wrap in
993         HAVE_SELINUX.
994
995 2005-07-14  John (J5) Palmieri  <johnp@redhat.com>
996
997         * python/_dbus.py (Bus::remove_signal_receiver):
998         don't add a callback to the match if none has been passed in
999         
1000         * python/matchrules.py (SignalMatchTree::remove): if the rule
1001         being matched does not have a callback treat it as a wildcard
1002         fix matching logic
1003
1004         * doc/dbus-tutorial.xml: Add Python tutorial
1005
1006 2005-07-14  Colin Walters  <walters@verbum.org>
1007
1008         * bus/driver.c
1009         (bus_driver_handle_get_connection_unix_security_context): New function.
1010         (message_handlers): Add.
1011
1012         * bus/selinux.c (bus_selinux_append_context): New function; appends
1013         security context to message.
1014
1015         * bus/selinux.h: Prototype.
1016
1017         * dbus/dbus-protocol.h (DBUS_ERROR_UNIX_SECURITY_CONTEXT_UNKNOWN): New.
1018
1019 2005-07-14  John (J5) Palmieri  <johnp@redhat.com>
1020
1021         * bus/activation.c: clean up all tabs to be 8 spaces 
1022         (bus_activation_activate_service): make sure we clean up
1023         if activation fails
1024
1025         * bus/dispatch.c: clean up all tabs to be 8 spaces 
1026         (check_shell_fail_service_auto_start): New function
1027         tests to make sure we get fail properly when trying to auto start a service
1028         with a faulty command line
1029         (check_shell_service_success_auto_start): New function tests to make sure
1030         auto started services get the arguments on the command line
1031
1032         * test/test-shell-service.c: Added service for testing auto-starting with 
1033         command line arguments
1034
1035         * test/data/valid-service-files/debug-shell-echo-fail.service.in, 
1036         test/data/valid-service-files/debug-shell-echo-success.service.in:
1037         Added service files for testing auto-starting with command line arguments
1038
1039         * */.cvsignore: added a bunch of generated files to various .cvsignore files
1040
1041 2005-07-14  Rodrigo Moya  <rodrigo@novell.com>
1042
1043         * dbus/dbus-shell.[ch]: copy/pasted code from GLib.
1044         
1045         * dbus/Makefile.am: added new files to build.
1046
1047         * bus/activation.c (bus_activation_activate_service): support
1048         activation commands with parameters.
1049
1050         * test/shell-test.c: added test program for the shell parsing
1051         code.
1052
1053 2005-07-13  David Zeuthen  <davidz@redhat.com>
1054
1055         * tools/dbus-send.c (append_arg, type_from_name): Also support 16 and
1056         64 bit signed and unsigned parameters
1057
1058 2005-07-13  John (J5) Palmieri  <johnp@redhat.com>
1059
1060         * python/.cvsignore: remove dbus_bindings.pyx, add dbus_bindings.pxd
1061
1062         * python/service.py (class Name): renamed BusName to make it clearer
1063         what the object is for (a name on the bus)
1064
1065         * python/examples/example-service.py,
1066         python/examples/example-signal-emitter.py: change the Name object to
1067         BusName
1068
1069 2005-07-12  Colin Walters  <walters@verbum.org>
1070
1071         Patch from Jim Gettys <Jim.Gettys@hp.com>.
1072
1073         * tools/dbus-launch.c: Include sys/select.h.
1074
1075 2005-07-12  John (J5) Palmieri  <johnp@redhat.com>
1076         * python/dbus_bindings.pyx.in: removed
1077
1078         * python/dbus_bindings.pyx: Added.
1079         - Fixed some memleaks (patch from 
1080         Sean Meiners <sean.meiners@linspireinc.com>)
1081         - Broke out the #include "dbus_h_wrapper.h" and put it in its
1082         own pxd file (Pyrex definition)
1083         - Broke out glib dependancies into its own pyx module
1084         
1085         * python/dbus_bindings.pdx: Added.
1086         - Defines C class Connection for exporting to other modules
1087
1088         * python/dbus_glib_bindings.pyx: Added.
1089         - New module to handle lowlevel dbus-glib mainloop integration
1090
1091         * python/glib.py: Added.
1092         - Registers the glib mainloop when you import this module
1093
1094         * python/services.py: Removed (renamed to service.py)
1095         
1096         * python/service.py: Added.
1097         - (class Server): renamed Name
1098
1099         * python/__init__.py: Bump ro version (0,41,0)
1100         -don't import the decorators or service module
1101         by default.  These now reside in the dbus.service namespace
1102
1103         * python/_dbus.py (Bus::__init__): Add code run the main loop 
1104         setup function on creation 
1105
1106         * python/examples/example-service.py,
1107         python/examples/example-signal-emitter.py: update examples
1108
1109         * python/examples/gconf-proxy-service.py,
1110         python/examples/gconf-proxy-service2.py: TODO fix these up
1111
1112         * doc/TODO: Addition
1113         - Added a Python Bindings 1.0 section
1114         - added "Add match on args or match on details to match rules"
1115
1116
1117 2005-07-12  Colin Walters  <walters@verbum.org>
1118
1119         * glib/examples/statemachine/Makefile.am (statemachine-server-glue.h) 
1120         (statemachine-glue.h): 
1121         * glib/examples/Makefile.am (example-service-glue.h) 
1122         (example-signal-emitter-glue.h): 
1123         * glib/Makefile.am (dbus-glib-error-switch.h): 
1124         Add libtool --mode=execute so we use the built library instead
1125         of any installed one.
1126
1127 2005-07-11  Colin Walters  <walters@verbum.org>
1128
1129         * glib/dbus-gvalue.c (struct _DBusGValue): Delete.
1130         (dbus_g_value_types_init): Remove assertion.
1131         (dbus_g_value_get_g_type, dbus_g_value_open)
1132         (dbus_g_value_iterator_get_values, dbus_g_value_get_signature)
1133         (dbus_g_value_copy, dbus_g_value_free): Delete unimplemented
1134         functions related to DBusGValue.  Now we marshal/demarshal
1135         structures as GValueArray.
1136         (dbus_gtype_from_signature_iter): Return G_TYPE_VALUE_ARRAY for
1137         structures.
1138         (signature_iter_to_g_type_array): Don't call
1139         signature_iter_to_g_type_struct.
1140         (signature_iter_to_g_type_struct): Delete.
1141         (dbus_gvalue_to_signature): Delete.
1142         (dbus_gvalue_to_signature): New function with same name as other
1143         one; we can convert structures to signatures.
1144         (demarshal_valuearray): New function.
1145         (get_type_demarshaller): Use it.
1146         (demarshal_recurse): Delete.
1147         (marshal_proxy): New function.
1148         (marshal_map): Warn if we can't determine signature from type.
1149         (marshal_collection_ptrarray): Ditto.
1150         (marshal_collection_array): Ditto.
1151         (get_type_marshaller): Use marshal_valuearray.
1152         (marshal_recurse): Delete.
1153         (_dbus_gvalue_test): Add some tests.
1154
1155         * dbus/dbus-glib.h (struct _DBusGValueIterator): 
1156         (dbus_g_value_get_g_type, DBUS_TYPE_G_VALUE)
1157         (dbus_g_value_open, dbus_g_value_iterator_get_value)
1158         (dbus_g_value_iterator_get_values, dbus_g_value_iterator_recurse)
1159         (dbus_g_value_free): Remove prototypes.
1160
1161         * glib/dbus-binding-tool-glib.c (dbus_g_type_get_lookup_function): Handle
1162         G_TYPE_VALUE_ARRAY.
1163
1164         * glib/examples/example-service.c:
1165         * glib/examples/example-client.c: Implement GetTuple.
1166
1167         * test/glib/test-dbus-glib.c:
1168         * test/glib/test-service-glib.c:
1169         * test/glib/test-service-glib.xml: Add structure tests.
1170
1171 2005-07-10  Colin Walters  <walters@verbum.org>
1172
1173         * doc/TODO: Knock off some GLib items with this patch.
1174
1175         * glib/dbus-gvalue-utils.c (_dbus_gtype_can_signal_error) 
1176         (_dbus_gvalue_signals_error): New functions.
1177
1178         * glib/dbus-gvalue-utils.h: Prototype them.
1179
1180         * glib/dbus-gobject.c (arg_iterate): Update to handle return vals
1181         and change to not output const/retval flags for input args.  All
1182         callers updated.
1183         (invoke_object_method): Refactor to handle return values.  Add
1184         some more comments in various places.  Remove debug g_print.
1185
1186         * glib/dbus-binding-tool-glib.h (DBUS_GLIB_ANNOTATION_RETURNVAL): New.
1187
1188         * glib/dbus-binding-tool-glib.c (dbus_g_type_get_marshal_name):
1189         Handle G_TYPE_NONE.
1190         (compute_gsignature): New function; refactored from code from
1191         compute_marshaller and compute_marshaller_name.  Enhance to
1192         handle return values and async ops more cleanly.  Update for
1193         async ops returning NONE instead of BOOLEAN.
1194         (compute_marshaller, compute_marshaller_name): Call compute_gsignature
1195         and output appropriate string.
1196         (generate_glue): Handle return value annotation.  Also don't dump
1197         constness flag for input arguments.
1198
1199         * glib/Makefile.am (DBUS_GLIB_INTERNALS): New variable; contains
1200         files shared between installed library and utilities.
1201         (libdbus_glib_1_la_SOURCES): Move some stuf into DBUS_GLIB_INTERNALS.
1202         (libdbus_gtool_la_SOURCES): Suck in DBUS_GLIB_INTERNALS so the
1203         binding tool can access gtype utility functions.
1204
1205         * test/glib/test-service-glib.c: 
1206         * test/glib/test-service-glib.xml: 
1207         * test/glib/test-dbus-glib.c: Add some tests for return values.
1208
1209 2005-07-09  Colin Walters  <walters@verbum.org>
1210
1211         * glib/dbus-gparser.c (parse_annotation): Add annotations to
1212         argument if available, not method.
1213
1214         * glib/dbus-gobject.c (arg_iterate): More verbose warnings.
1215         (invoke_object_method): First, remove some redundant
1216         GValues (object_value, error_value) in favor of working on
1217         array directly.  Second, rework constness to be less buggy.
1218         Now we iterate directly over the argument metadata instead
1219         of parallel iterating over output signature and metadata.
1220
1221         * glib/dbus-glib-tool.h: Add INVALID_ANNOTATION error.
1222
1223         * glib/dbus-binding-tool-glib.c (generate_glue): Barf on const
1224         annotation on input args.
1225         
1226 2005-07-09  Colin Walters  <walters@verbum.org>
1227
1228         * glib/dbus-binding-tool-glib.h (DBUS_GLIB_ANNOTATION_CONST):
1229         Define.
1230
1231         * glib/dbus-binding-tool-glib.c (generate_glue): Handle Const
1232         annotation.
1233
1234         * glib/dbus-gobject.c (arg_iterate): Update to parse constval too.
1235         (method_dir_signature_from_object_info): Handle arg_iterate change.
1236         (write_interface): Ditto.
1237         (lookup_object_info): Don't barf if format_version is > 0.
1238         (invoke_object_method): Handle arg constness.
1239
1240         * glib/dbus-gidl.c (struct ArgInfo): Add annotations.
1241         (arg_info_new): Create.
1242         (arg_info_unref): Destroy.
1243         (arg_info_get_annotations, arg_info_get_annotation) 
1244         (arg_info_add_annotation): New functions.
1245
1246         * glib/dbus-gidl.h: Prototype them.
1247
1248         * glib/dbus-gparser.c (parse_annotation): Allow annotations in
1249         args, disallow them in properties.
1250         (parse_annotation): Handle arg annotations.
1251
1252         * test/glib/test-service-glib.xml: 
1253         * test/glib/test-service-glib.c: Update to make some methods
1254         const.
1255
1256 2005-07-08  Colin Walters  <walters@verbum.org>
1257
1258         * test/glib/test-service-glib.xml: 
1259         * test/glib/test-service-glib.c:
1260         * test/glib/test-dbus-glib.c: Test a{sv}.
1261
1262         * glib/examples/statemachine/statemachine.c:
1263         * glib/examples/statemachine/statemachine-server.c:
1264         * glib/examples/statemachine/statemachine-client.c: Fix some bugs,
1265         add progress bar, etc.
1266
1267         * glib/dbus-gvalue.c (register_array, register_dict): Delete; not
1268         needed anymore due to generic array/map marshalling.
1269         (dbus_g_value_types_init): Don't register basic arrays or the
1270         string/string hash.
1271         (dbus_gtype_from_signature_iter): Don't try to recurse into
1272         variants.
1273         (dbus_gtype_to_signature): Check collection/map before type
1274         metadata.
1275         (demarshal_garray_basic): Renamed to demarshal_collection_array.
1276         (demarshal_ghashtable): Renamed to demarshal_map; fix to use new
1277         generic map creation/append functions instead of hash table
1278         specifically.
1279         (get_type_demarshaller): Handle maps.
1280         (demarshal_collection): Dispatch on collection type to either
1281         demarshal_collection_ptrarray or demarshal_collection_array.
1282         (get_type_marshaller): Handle maps.
1283         (marshal_collection): Dispatch collection type to either
1284         marshal_collection_ptrarray or marshal_collection_array.
1285         (_dbus_gvalue_test): New test.
1286
1287         * glib/dbus-gvalue-utils.c (unset_and_free_g_value): New function.
1288         (hash_free_from_gtype): Use it to free GValues.
1289         (hashtable_append): New function.
1290         (ptrarray_append): Fix prototype.
1291         (slist_append): Ditto.
1292         (_dbus_gvalue_utils_test): Extend tests.
1293
1294         * glib/dbus-gtype-specialized.c
1295         (dbus_g_type_specialized_init_append): Renamed from
1296         dbus_g_type_specialized_collection_init_append.  Remove const from
1297         value, since we steal it.
1298         (dbus_g_type_specialized_map_append): New function.
1299
1300         * glib/dbus-gtype-specialized.h: Update prototypes.
1301         Add DBusGTypeSpecializedMapAppendFunc.
1302
1303         * glib/dbus-gtest.c (dbus_glib_internal_do_not_use_run_tests): Run
1304         _dbus_gvalue_test.
1305         
1306         * glib/dbus-gtest.h: Prototype it.
1307
1308 2005-07-08  Ross Burton  <ross@openedhand.com>
1309
1310         * dbus/dbus-glib.h:
1311         Add DBysGAsyncData for the async bindings.
1312
1313         * glib/dbus-binding-tool-glib.c:
1314         Re-enable the async bindings.
1315
1316         * test/glib/test-dbus-glib.c:
1317         Add a test for the generated async bindings.
1318
1319 2005-07-08  Colin Walters  <walters@verbum.org>
1320
1321         * doc/TODO: Update GLib todo bits, also add a post-1.0 TODO for a
1322         connection concept.
1323         
1324 2005-07-08  Colin Walters  <walters@verbum.org>
1325         
1326         * tools/Makefile.am: Kill of print-introspect in favor of using
1327         dbus-send --print-reply=literal.
1328
1329         * test/glib/test-service-glib.xml: 
1330         * test/glib/test-service-glib.c (my_object_get_objs): New test
1331         for "ao".
1332
1333         * test/glib/test-dbus-glib.c (echo_received_cb): Free echo data.
1334         (main): Test GetObjs.
1335
1336         * glib/examples/statemachine/Makefile.am:
1337         * glib/examples/statemachine/sm-marshal.list:
1338         * glib/examples/statemachine/statemachine-client.c:
1339         * glib/examples/statemachine/statemachine-server.c:
1340         * glib/examples/statemachine/statemachine-server.xml:
1341         * glib/examples/statemachine/statemachine.c:
1342         * glib/examples/statemachine/statemachine.h:
1343         * glib/examples/statemachine/statemachine.xml:
1344
1345         New example.
1346
1347         * glib/examples/example-service.c (main): Move invocation
1348         of dbus_g_object_type_install_info earlier, to emphasize it
1349         should only be done once.
1350
1351         * glib/examples/example-signal-emitter.c (main): Ditto.
1352
1353         * glib/examples/Makefile.am (SUBDIRS): Include statemachine.
1354
1355         * glib/dbus-gvalue.h (dbus_gtype_to_signature)
1356         (dbus_gvalue_marshal): Update prototypes.
1357
1358         * glib/dbus-gvalue.c: Update all marshalling functions to take
1359         const GValue instead of GValue.
1360         (signature_iter_to_g_type_array): Return a GPtrArray for nonfixed
1361         types.
1362         (dbus_gvalue_to_signature): Update for dbus_gtype_to_signature
1363         change.
1364         (dbus_gtype_to_signature): Handle generic collecitons and maps.
1365         Return a newly-allocated string.
1366         (demarshal_proxy, demarshal_object_path, demarshal_object)
1367         (demarshal_strv, demarshal_ghashtable): Set error, don't assert if
1368         we get the wrong types from message.
1369         (get_type_demarshaller): New function, extracted from
1370         dbus_gvalue_demarshal.
1371         (demarshal_collection): New function, demarshals generic
1372         collection.
1373         (dbus_gvalue_demarshal): Just invoke result of
1374         get_type_demarshaller.  Throw error if we don't have one.
1375         (marshal_garray_basic): Abort on OOM.
1376         (get_type_marshaller): New function, extracted from
1377         dbus_gvalue_marshal.
1378         (collection_marshal_iterator, marshal_collection): New functions;
1379         implements generic marshalling for an iteratable specialized
1380         collection.
1381         (dbus_gvalue_marshal): Just invoke result of get_type_marshaller.
1382
1383         * glib/dbus-gvalue-utils.c (gvalue_from_ptrarray_value): Handle
1384         G_TYPE_STRING.
1385         (ptrarray_value_from_gvalue): Ditto.
1386         (ptrarray_append, ptrarray_free): New functions.
1387         (slist_constructor, slist_iterator, slist_copy_elt, slist_copy) 
1388         (slist_append, slist_end_append, slist_free): New functions.
1389         (dbus_g_type_specialized_builtins_init): Add append fuctions
1390         for GPtrArray and GSList.  Register GSList.
1391         (test_specialized_hash, _dbus_gvalue_utils_test): New functions.
1392
1393         * glib/dbus-gtype-specialized.h (DBusGTypeSpecializedAppendContext):
1394         New.
1395         (dbus_g_type_specialized_collection_init_append)
1396         (dbus_g_type_specialized_collection_append)
1397         (dbus_g_type_specialized_collection_end_append): Prototype.
1398         (DBusGTypeSpecializedCollectionVtable): Add append_func and
1399         end_append_func.
1400
1401         * glib/dbus-gtype-specialized.c (dbus_g_type_specialized_collection_init_append) 
1402         (dbus_g_type_specialized_collection_append) 
1403         (dbus_g_type_specialized_collection_end_append): New functions.
1404         (dbus_g_type_map_value_iterate): Take const GValue.
1405         (dbus_g_type_collection_value_iterate): Ditto.
1406
1407         * glib/dbus-gtest.c (dbus_glib_internal_do_not_use_run_tests): Run
1408         _dbus_gvalue_utils_test.
1409         
1410         * glib/dbus-gtest.h: Prototype it.
1411
1412         * glib/dbus-gproxy.c (dbus_g_proxy_manager_filter): Avoid
1413         using uninitialized owner_list.
1414         (dbus_g_proxy_begin_call_internal): Move return_if_fail to
1415         public API.
1416         (dbus_g_proxy_end_call_internal): Update to use error set
1417         from dbus_gvalue_demarshal instead of setting it here.
1418         (dbus_g_proxy_begin_call): Move return_if_fail here.
1419
1420         * glib/dbus-gobject.c (write_interface): Update for
1421         dbus_gtype_to_signature returning new string.
1422
1423         * configure.in: Add glib/examples/statemachine.
1424
1425 2005-07-08  Joe Shaw  <joeshaw@novell.com>
1426
1427         * configure.in: Add a configure option, --with-console-auth-dir
1428         
1429         * dbus/dbus-sysdeps-util.c (_dbus_user_at_console): Use the
1430         new setting.  Patch from Kay Sievers.
1431
1432 2005-07-06  Colin Walters  <walters@verbum.org>
1433
1434         * dbus/dbus-glib.h (DBusGPendingCall, DBusGPendingCallNotify)
1435         (DBUS_TYPE_G_PENDING_CALL, dbus_g_pending_call_get_g_type)
1436         (dbus_g_pending_call_ref, dbus_g_pending_call_unref): Delete.
1437         (dbus_g_pending_call_set_notify, dbus_g_pending_call_cancel):
1438         Delete in favor of dbus_g_proxy_begin_call and
1439         dbus_g_proxy_cancel_call.
1440         (DBusGProxyCall, DBusGProxyCallNotify): New.
1441         (dbus_g_proxy_begin_call): Change prototype to take callback, user
1442         data, and destroy function.  This replaces
1443         dbus_g_pending_call_set_notify.
1444         (dbus_g_proxy_cancel_call): Prototype.
1445         (DBusGAsyncData): Delete, shouldn't be needed anymore.
1446
1447         * glib/dbus-gproxy.c (struct _DBusGProxy): Add call_id_counter and
1448         pending_calls map.
1449         (struct _DBusGProxyManager): Add bus_proxy member, which is an
1450         internal proxy for calls to the bus. Remove
1451         pending_nameowner_calls, now the internal proxy keeps track.
1452         (dbus_g_proxy_manager_unref): Unref bus proxy, remove reference to
1453         pending_nameowner_calls.
1454         (got_name_owner_cb): Update prototype, and use
1455         dbus_g_proxy_end_call.
1456         (got_name_owner_cb): Remove reference to pending_nameowner_calls.
1457         (dbus_g_proxy_manager_register): Delete directly libdbus code in
1458         favor of using internal proxy.
1459         (dbus_g_proxy_manager_unregister): Update to use
1460         dbus_g_proxy_cancel_call for any pending GetNameOwner call.
1461         (dbus_g_proxy_init): Initialize pending calls map.
1462         (dbus_g_proxy_constructor): New.
1463         (dbus_g_proxy_class_init): Add get/set property functions,
1464         constructor, and add NAME, PATH, and INTERFACE properties.
1465         (cancel_pending_call): New function.
1466         (dbus_g_proxy_dispose): Iterate over any outstanding calls and
1467         cancel them.
1468         (dbus_g_proxy_set_property, dbus_g_proxy_get_property): New.
1469         (GPendingNotifyClosure): New structure.
1470         (d_pending_call_notify, d_pending_call_free): Moved here from
1471         dbus-glib.c.
1472         (DBUS_G_VALUE_ARRAY_COLLECT_ALL): Moved around to satisfy function
1473         ordering.
1474         (manager_begin_bus_call): New internal function for talking to
1475         internal bus proxy.
1476         (dbus_g_proxy_new): Construct object using GObjet properties.
1477         (dbus_g_proxy_begin_call_internal): Update to take user data, etc.
1478         Create closure of same, and insert call into map of pending calls.
1479         (dbus_g_proxy_end_call_internal): Take call id instead of pending
1480         call.  Look up pending call in current set.  Remove it when we've
1481         completed.
1482         (dbus_g_pending_call_end, dbus_g_proxy_end_call_internal): Delete.
1483         (dbus_g_proxy_begin_call): Change API to take callback, user data,
1484         and destroy function directly.
1485         (dbus_g_proxy_end_call): Update to take DBusGProxyCall.
1486         (dbus_g_proxy_call): Invoke with NULL callback.
1487         (dbus_g_proxy_cancel_call): New function, replaces
1488         dbus_g_pending_call_cancel.
1489
1490         * glib/dbus-gparser.c (validate_signature): Fix call to
1491         dbus_set_g_error.
1492
1493         * glib/dbus-gobject.c (dbus_g_object_type_dbus_metadata_quark):
1494         New quark for attaching metadata to GType.
1495         (info_hash): Delete.
1496         (lookup_object_info): Look up using quark.
1497         (dbus_g_object_type_install_info): Check that a type is classed,
1498         not that it's an object.  Also just install type data using quark
1499         instead of using global hash.
1500
1501         * glib/dbus-glib.c (dbus_g_pending_call_ref) 
1502         (dbus_g_pending_call_unref, dbus_pending_call_get_g_type)
1503         (GPendingNotifyClosure): Delete.
1504         (d_pending_call_notify, d_pending_call_free): Move to dbus-gproxy.c.
1505         (dbus_g_pending_call_set_notify, dbus_g_pending_call_cancel): Delete.
1506
1507         * glib/dbus-binding-tool-glib.c (generate_client_glue): Disable async
1508         client method generation until we can fix it...
1509         
1510         * tools/dbus-viewer.c (load_child_nodes): Use dbus_g_proxy_call.
1511         (load_from_service_thread_func): Ditto.
1512
1513         * tools/dbus-names-model.c (struct NamesModel): Hold
1514         DBusGProxyCall.
1515         (have_names_notify): Update prototype, use
1516         dbus_g_proxy_cancel_call.
1517         (names_model_reload): Update for new dbus_g_proxy_begin_call API.
1518
1519         * tools/dbus-monitor.c (filter_func): Update for print_message
1520         API change.
1521
1522         * test/glib/test-dbus-glib.c: Add more tests for async
1523         invocations.  Update many begin_call/end_call pairs to just use
1524         dbus_g_proxy_call.
1525
1526         * tools/dbus-send.c (main): Add --print-reply=literal mode.  This
1527         allows us to dump print-introspect.c.
1528
1529         * tools/dbus-print-message.h (print_message): Add literal argument
1530         to print_message which is intended to allow printing arguments without
1531         metadata like "string=".
1532
1533         * tools/dbus-print-message.c (print_iter): Add literal argument.
1534         (print_message): Allow printing string messages literally.
1535
1536 2005-07-05  Colin Walters  <walters@verbum.org>
1537
1538         * glib/dbus-gproxy.c (marshal_dbus_message_to_g_marshaller):
1539         Remove value refcount leak, original patch from Jorn Baayen
1540         <jorn@openedhand.com>.  Also remove useless extra value in favor
1541         of prepending to value array directly.
1542
1543 2005-07-02  Colin Walters  <walters@verbum.org>
1544
1545         * glib/dbus-gmain.c (_dbus_gmain_test): Fix test.
1546
1547 2005-07-01  Colin Walters  <walters@verbum.org>
1548
1549         Patch from Jonathan Matthew <jonathan@kaolin.hn.org>
1550         
1551         * glib/dbus-gvalue.c (basic_typecode_to_gtype): Fix return type.
1552         (dbus_g_value_types_init): Marshal G_TYPE_CHAR as DBUS_TYPE_BYTE,
1553         G_TYPE_LONG as DBUS_TYPE_INT32, G_TYPE_ULONG as DBUS_TYPE_UINT32,
1554         and G_TYPE_FLOAT as DBUS_TYPE_DOUBLE.
1555
1556 2005-06-30  Colin Walters  <walters@verbum.org>
1557
1558         * test/glib/test-dbus-glib.c:
1559         * test/glib/test-service-glib.c:
1560         * test/glib/test-service-glib.xml: Update tests for new error
1561         setting bits, also add async tests (patch from Ross Burton).
1562
1563         * test/glib/Makefile.am (test_service_glib_LDADD): Add
1564         DBUS_GLIB_THREADS_LIBS.
1565
1566         * glib/dbus-gproxy.c (get_name_owner)
1567         (dbus_g_pending_call_end_valist): Ditto.
1568
1569         * glib/dbus-gobject.c (error_metadata): New mapping from GError
1570         domain (GQuark) to DBusGErrorInfo.  
1571         (gerror_domaincode_to_dbus_error_name): Attempt to look up error
1572         quark in error_metadata.  Take message interface as default
1573         error message interface.
1574         (gerror_to_dbus_error_message): Pass message interface.
1575         (dbus_set_g_error): Resurrected.
1576         (dbus_g_error_info_free): New function.
1577         (dbus_g_object_type_install_info): Use g_type_class_ref instead
1578         of _peek to actually create the object class if it hasn't been
1579         created yet.
1580         (dbus_g_error_domain_register): New function.
1581
1582         * glib/dbus-gmain.c (dbus_g_bus_get): Switch to dbus_set_g_error.
1583
1584         * glib/dbus-gparser.c (validate_signature): Ditto.
1585
1586         * dbus/dbus-glib.h (dbus_g_error_set): Delete.
1587         (dbus_g_error_domain_register): Prototype.
1588
1589         * glib/dbus-glib.c (dbus_g_error_set): Delete.
1590         Update tests.
1591
1592 2005-06-29  Colin Walters  <walters@verbum.org>
1593
1594         * dbus/dbus-glib.h: Delete DBUS_TYPE_G_PROXY_ARRAY.  Add
1595         DBUS_TYPE_G_OBJECT_PATH.
1596
1597         * glib/dbus-gvalue.c (dbus_g_value_types_init): Remove marshallers
1598         for G_TYPE_OBJECT and DBUS_TYPE_G_PROXY_ARRAY (the latter should
1599         be handled more generically).  Add DBUS_TYPE_G_OBJECT_PATH.
1600         (dbus_g_object_path_get_g_type): New function.
1601         (dbus_gtype_from_signature_iter): Map DBUS_TYPE_OBJECT_PATH
1602         to DBUS_TYPE_G_OBJECT_PATH by default.
1603         (demarshal_proxy): Remove unused name variable.
1604         (demarshal_object_path, marshal_object_path): New functions.
1605         (demarshal_proxy_array, marshal_proxy_array): Delete.
1606         
1607         * glib/dbus-binding-tool-glib.c (dbus_g_type_get_c_name): Map
1608         DBUS_TYPE_G_OBJECT_PATH to char *.
1609         (dbus_g_type_get_lookup_function): Map builtin
1610         DBUS_TYPE_G_OBJECT_PATH.
1611
1612         * test/glib/test-dbus-glib.c
1613         * test/glib/test-service-glib.c (my_object_objpath): 
1614         Adapt tests to new object path marshalling.
1615
1616 2005-06-29  John (J5) Palmieri  <johnp@redhat.com>
1617
1618         * configure.in: force check for Python >= 2.4
1619
1620 2005-06-29  Colin Walters  <walters@verbum.org>
1621         
1622         Patch from Ross Burton <ross@openedhand.com>
1623         
1624         * glib/dbus-gobject.c (invoke_object_method): Unset object
1625         value in all cases, not only in async case.
1626
1627 2005-06-29  Colin Walters  <walters@verbum.org>
1628
1629         * glib/dbus-gproxy.c (struct _DBusGProxy): Add new member
1630         name_call for keeping track of any outgoing GetNameOwner call.
1631         Also add for_owner and associated.
1632         (struct _DBusGProxyManager): Add owner_names, which is hash table
1633         that maps a base name to a list of names it owns (that we're
1634         interested in).  Add pending_nameowner_calls which is a list of
1635         all outstanding GetNameOwner; avoids us having to iterate over
1636         every proxy.  Add unassociated_proxies which keeps track of name
1637         proxies with no associated name owner.
1638         (dbus_g_proxy_manager_unref): Destroy owner_names.
1639         (struct DBusGProxyNameOwnerInfo): New struct for keeping track of
1640         name refcounts.
1641         (find_name_in_info, name_owner_foreach)
1642         (dbus_g_proxy_manager_lookup_name_owner, insert_nameinfo)
1643         (dbus_g_proxy_manager_monitor_name_owner)
1644         (dbus_g_proxy_manager_unmonitor_name_owner)
1645         (unassociate_proxies, dbus_g_proxy_manager_replace_name_owner):
1646         New functions; they manipulate the owner_names mapping.
1647         (got_name_owner_cb): New function.
1648         (get_name_owner): New function, extracted from
1649         dbus_g_proxy_new_for_name_owner.
1650         (dbus_g_proxy_manager_register): For now we need to keep track of
1651         all NameOwnerChanged.  Also if the proxy is for a name, if we
1652         don't already know the name owner, queue a new GetNameOwner
1653         request and add it to our list of unassociated proxies.  Otherwise
1654         inc the refcount.
1655         (dbus_g_proxy_manager_unregister): If this proxy is for a name,
1656         cancel any pending GetNameOwner call, etc.
1657         (dbus_g_proxy_manager_filter): Handle NameOwnerChanged.  Also use
1658         the owner_names mapping to look up the current names for the
1659         signal source, and dispatch to any proxies for that name.
1660         (dbus_g_proxy_new): Initialize new members.
1661         (dbus_g_proxy_new_for_name): Delete unused proxy variable.
1662         (dbus_g_proxy_new_for_name_owner): Use get_name_owner.
1663         (dbus_g_pending_call_end_valist): New function, extracted from
1664         dbus_g_proxy_end_call_internal.  Useful when we don't have a proxy
1665         but want to use the GLib infrastructure.  Also note how many
1666         arguments in reply were over.
1667         (dbus_g_pending_call_end): New function, just call
1668         dbus_g_pending_call_end_valist.
1669         (dbus_g_proxy_end_call_internal): Just call
1670         dbus_g_pending_call_end_valist.
1671
1672         * glib/dbus-gobject.c (_dbus_gobject_lookup_marshaller): Fix lookup
1673         of builtin marshaller for STRING_STRING_STRING.
1674
1675         * test/glib/test-dbus-glib.c: 
1676         * test/glib/test-service-glib.c:
1677         * test/glib/test-service-glib.xml:
1678         Extend tests to cover name proxies, destruction of owner proxies,
1679         etc.
1680         
1681         * glib/examples/example-signal-recipient.c
1682         (dbus_g_proxy_new_for_name_owner): Create a name proxy.
1683         
1684         * tools/dbus-send.c (main): Print D-BUS error name in addition
1685         to message.
1686
1687 2005-06-28  John (J5) Palmieri  <johnp@redhat.com>
1688
1689         * python/dbus_bindings.pyx.in (cunregister_function_handler,
1690         cmessage_function_handler): Patch from 
1691         Anthony Baxter <anthony@interlink.com.au> fixes threading problems
1692         by using the Py_GILState_Ensure/Release to synchronize with the
1693         python runtime.
1694         
1695 2005-06-28  Ray Strode  <rstrode@redhat.com>
1696
1697         *  dbus/dbus-spawn.c (_dbus_babysitter_unref): kill
1698         babysitter helper process on last unref, bug #2813.
1699
1700 2005-06-27  Colin Walters  <walters@verbum.org>
1701
1702         * test/glib/test-dbus-glib.c: 
1703         * test/glib/test-service-glib.c:
1704         * test/glib/test-service-glib.xml:
1705         Test hash table signal emitting.
1706
1707         * glib/dbus-gobject.c (_dbus_gobject_lookup_marshaller): Convert
1708         types to their fundamental basis types, since this is what
1709         marshallers operate on.  Also add an entry for VOID__BOXED.
1710         (dbus_g_object_register_marshaller_array): Convert to fundamental.
1711
1712 2005-06-26  Havoc Pennington  <hp@redhat.com>
1713
1714         * doc/dbus-tutorial.xml: fix names of interface/service/path, fix
1715         from Don Park
1716
1717 2005-06-26  Colin Walters  <walters@verbum.org>
1718
1719         * glib/dbus-glib.c (dbus_set_g_error): Delete.
1720         (dbus_g_error_set): New public function from its ashes; used by
1721         both service-side method implementation and GLib bindings
1722         internals.
1723         (dbus_g_error_has_name, dbus_g_error_get_name): New function.
1724         (_dbus_glib_test): Add some tests.
1725
1726         * test/glib/test-dbus-glib.c (main): Test dbus_g_error_has_name.
1727
1728         * test/glib/test-service-glib.c (my_object_throw_error): Use
1729         dbus_g_error_set.
1730
1731         * glib/dbus-gobject.c (gerror_to_dbus_error_message): Handle
1732         errors thrown by dbus_g_error_set.
1733
1734         * glib/dbus-gmain.c (dbus_g_bus_get): Change to dbus_g_error_set.
1735
1736         * glib/dbus-gparser.c (validate_signature): Ditto.
1737
1738         * glib/dbus-gproxy.c (dbus_g_proxy_new_for_name_owner) 
1739         (dbus_g_proxy_end_call_internal): Ditto.
1740
1741         * glib/Makefile.am: Generate dbus-glib-error-switch.h, which
1742         converts DBUS_ERROR_x to DBUS_GERROR_x.
1743         (libdbus_glib_1_la_SOURCES, BUILT_SOURCES, CLEANFILES): Add it.
1744
1745         * doc/TODO: Remove error TODO.
1746
1747         * doc/dbus-tutorial.xml: Update with documentation about error
1748         handling.
1749
1750         * dbus/make-dbus-glib-error-enum.sh: Tighten up regexp to make
1751         sure we only change DBUS_ERROR to DBUS_GERROR, not all ERROR to
1752         GERROR.  Also add DBUS_GERROR_REMOTE_EXCEPTION.
1753
1754 2005-06-22  Colin Walters  <walters@verbum.org>
1755         
1756         Patch from Ross Burton <ross@openedhand.com>
1757
1758         * glib/dbus-gobject.c (dbus_g_method_return): Free out_sig.
1759
1760 2005-06-20  Colin Walters  <walters@verbum.org>
1761
1762         * configure.in: Add glib/examples.
1763
1764         * glib/Makefile.am: Add examples/
1765
1766         * glib/examples/.cvsignore
1767         * glib/examples/Makefile.am
1768         * glib/examples/example-client.c
1769         * glib/examples/example-service.c
1770         * glib/examples/example-service.xml
1771         * glib/examples/example-signal-emitter.c
1772         * glib/examples/example-signal-emitter.xml
1773         * glib/examples/example-signal-recipient.c:
1774         New files; GLib binding examples, ported from
1775         python/examples.
1776
1777 2005-06-20  Colin Walters  <walters@verbum.org>
1778
1779         * dbus/dbus-glib.h: 
1780         * glib/dbus-gproxy.c: Rename dbus_g_proxy_invoke to
1781         dbus_g_proxy_call.
1782
1783         * glib/dbus-binding-tool-glib.c: 
1784         * doc/dbus-tutorial.xml: 
1785         * test/glib/test-dbus-glib.c: Update for rename.
1786         
1787 2005-06-20  Colin Walters  <walters@verbum.org>
1788
1789         Patch suggested by Ross Burton <ross@openedhand.com>
1790
1791         * glib/dbus-gobject.c (export_signals): Free signal name.
1792         (g_value_init): Use G_VALUE_NOCOPY_CONTENTS to plug
1793         memory leak.  Add a bit of documentation.
1794         (dbus_g_method_return_error): Free context, and note we do
1795         so.
1796
1797 2005-06-18  Murray Cumming  <murrayc@murrayc.com>
1798
1799         * dbus/dbus-glib.h:
1800         * glib/dbus-gobject.c:
1801         * glib/dbus-gproxy.c:
1802         * glib/dbus-gvalue.c: Predeclare structs as 
1803         typedef struct _Something Something instead of 
1804         typedef struct Something Something, so we can 
1805         redeclare the prototypes. Other GNOME libraries 
1806         do this already.
1807
1808 2005-06-17  Colin Walters  <walters@verbum.org>
1809
1810         * tools/dbus-names-model.c (have_names_notify): Fix call
1811         to dbus_g_proxy_end_call.
1812         
1813 2005-06-17  Colin Walters  <walters@verbum.org>
1814
1815         * glib/dbus-gproxy.c (dbus_g_proxy_emit_remote_signal): Don't
1816         spew warnings if we get malformed remote signals.
1817
1818         * glib/dbus-gobject.c (propsig_iterate): New function.
1819         (lookup_object_info): New function, extracted from
1820         lookup_object_and_method.
1821         (introspect_properties, introspect_signals): Delete; these
1822         are merged into write_interface.
1823         (write_interface): Write out signals and properties here;
1824         dump the org.gtk.object stuff and use the interface given
1825         in the introspection data blob.  Also fix up property XML.
1826         (lookup_values): New function.
1827         (introspect_interfaces): Gather a mapping from interface to a
1828         list of its methods, signals, and properties, then write out
1829         each interface.
1830         (lookup_object_and_method): Use lookup_object_info.
1831         (struct DBusGSignalClosure): Add interface.
1832         (dbus_g_signal_closure_new): Add interface. Don't dup signame;
1833         we can just use the constant data.
1834         (dbus_g_signal_closure_finalize): Don't free signal name.
1835         (signal_emitter_marshaller): Use interface from signal closure.
1836         (export_signals): Only export signals mentioned in introspection
1837         blob.
1838         (dbus_g_connection_register_g_object): Warn if we have no
1839         introspection data for an object.
1840         (funcsig_equal): Remove unused variable.
1841         (dbus_g_object_register_marshaller): Take varargs instead of
1842         list.
1843         (dbus_g_object_register_marshaller_array): New function,
1844         extracted from old dbus_g_object_register_marshaller.
1845
1846         * glib/dbus-binding-tool-glib.c (struct DBusBindingToolCData): Add
1847         signals and property data.
1848         (write_quoted_string): New function, extracted from generate_glue.
1849         (generate_glue): Write signals and properties to introspection
1850         blob.
1851
1852         * dbus/dbus-glib.h (struct DBusGObjectInfo): Include
1853         exported_signals and exported_properties.
1854         (dbus_g_object_register_marshaller): Update prototype.
1855         (dbus_g_object_register_marshaller_array): Prototype.
1856         
1857         * test/glib/test-dbus-glib.c: Extend testing to cover new signals.
1858
1859         * test/glib/test-service-glib.c: Add new test signals and method
1860         to emit them.
1861
1862         * test/glib/test-service-glib.xml: Add some test signals.
1863
1864         * test/glib/Makefile.am (BUILT_SOURCES): Add my-object-marshal.c
1865         and my-object-marshal.h
1866         (test_service_glib_SOURCES, test_dbus_glib_SOURCES): Add
1867         my-object-marshal.c.
1868         (my-object-marshal.c, my-object-marshal.h): Implement.
1869
1870         * test/glib/.cvsignore: Update.
1871
1872         * doc/TODO: Remove two GLib TODO items fixed by this
1873         patch.
1874
1875 2005-06-16  Colin Walters  <walters@verbum.org>
1876
1877         * doc/TODO: Update for GLib bindings.
1878         
1879 2005-06-16  Colin Walters  <walters@verbum.org>
1880
1881         * glib/dbus-binding-tool-glib.c:
1882         * glib/dbus-gobject.c:
1883         * glib/dbus-gproxy.c:  Add Nokia copyright; Patch
1884         from Ross Burton, for his GLib bindings work.
1885
1886 2005-06-16  Colin Walters  <walters@verbum.org>
1887
1888         * glib/dbus-gobject.c (funcsig_hash, funcsig_equal): Use n_params
1889         to iterate instead of walking to G_TYPE_INVALID.
1890
1891         Patch based on a patch from Ryan Gammon.
1892
1893 2005-06-16  Colin Walters  <walters@verbum.org>
1894
1895         * bus/bus.c (bus_context_new): Set parser to NULL
1896         after we unref it (Patch from Chris Boscolo, #2174).
1897         
1898 2005-06-16  Colin Walters  <walters@verbum.org>
1899
1900         * python/dbus_bindings.pyx.in: Import size_t,
1901         __int64_t, __uint64_t, and __signed.
1902
1903         * dbus/dbus-sysdeps.c <HAVE_CMSGCRED> (write_credentials_byte):
1904         Define cmsg struct, output it.
1905         (_dbus_read_credentials_unix_socket):
1906         Use cmsg struct.
1907         
1908         Patch from Joe Markus Clarke for FreeBSD support.
1909         
1910 2005-06-16  Colin Walters  <walters@verbum.org>
1911
1912         * tools/dbus-send.c (append_array): Use strtok.
1913         (append_dict): New function.
1914         (type_from_name): New function, extracted from main.
1915         (main): Handle sending dicts.
1916
1917         * tools/dbus-print-message.c (print_iter): Print dict
1918         entries.
1919         
1920 2005-06-16  Colin Walters  <walters@verbum.org>
1921
1922         * glib/dbus-gvalue.c (marshal_basic): Marshal NULL string
1923         values as the empty string (#2948).
1924         
1925 2005-06-16  Colin Walters  <walters@verbum.org>
1926
1927         * dbus/Makefile.am:
1928         * mono/doc/Makefile.am:
1929         * test/glib/Makefile.am:
1930
1931         Fix srcdir != builddir issues (Patch from Chris Wilson, #3477)
1932
1933 2005-06-16  Colin Walters  <walters@verbum.org>
1934
1935         * dbus/dbus-marshal-header.c (_dbus_header_load): Set
1936         header byte order from expected byte order (Patch from Chris Wilson, #3475).
1937
1938         * dbus/dbus-marshal-byteswap.c (byteswap_body_helper): 
1939         Increment pointer after swapping fixed array.  Add assertion
1940         for array length.
1941                 
1942 2005-06-15  Colin Walters  <walters@verbum.org>
1943
1944         * dbus/dbus-sysdeps.c <HAVE_CMSGCRED> (_dbus_read_credentials_unix_socket):
1945         Fix call to dbus_set_error.  (Patch from Michael Banck, #3461)
1946         
1947 2005-06-15  John (J5) Palmieri  <johnp@redhat.com>
1948
1949         * NEWS: Update to 0.34
1950
1951 2005-06-15  David Zeuthen  <davidz@redhat.com>
1952
1953         * configure.in (LT_CURRENT): Revert back to 1 as the library
1954         hasn't changed and we've certainly not committed to protocol
1955         stability yet.  All this does is to break ABI. See commit note
1956         from hp@redhat.com 2005-05-05 for details.
1957         
1958 2005-06-15  John (J5) Palmieri  <johnp@redhat.com>
1959
1960         * dbus/dbus-connection.c (_dbus_connection_peer_filter): New method 
1961         (_dbus_connection_run_builtin_filters): New method
1962         (dbus_connection_dispatch): Run the builtin filters which in turn
1963         runs the peer filter which handles Ping messages.
1964
1965         * doc/TODO: 
1966          - Ping isn't handled: This patch fixes it
1967          
1968          - Add a test case for the Ping message: added TODO item
1969
1970 2005-06-15  John (J5) Palmieri  <johnp@redhat.com>
1971
1972         * dbus/dbus-message.c:
1973         (dbus_message_has_path): New method
1974         (dbus_message_has_interface): New method
1975         (dbus_message_has_member): New method
1976
1977         * dbus/dbus/dbus-sysdeps.c (_dbus_check_dir_is_private_to_user):
1978         New method
1979
1980         * dbus/dbus-keyring.c (_dbus_keyring_reload): Check to see that 
1981         the keyring directory is private to the user
1982
1983         * doc/TODO:
1984          - The convenience functions in dbus-bus.h should perhaps have
1985          the signatures that they would have if they were autogenerated
1986          stubs. e.g. the acquire service function. We should also evaluate
1987          which of these functions to include, in light of the fact that
1988          GLib/Qt native stubs will probably also exist.: Punted
1989
1990          - add dbus_message_has_path(), maybe has_member/interface:
1991          fixed in this patch
1992
1993          - in dbus-keyring.c, enforce that the keyring dir is not
1994          world readable/writable: Fixed in this patch
1995
1996 2005-06-15  John (J5) Palmieri  <johnp@redhat.com>
1997
1998         * dbus/dbus-marshal-validate.h: Added a new validation
1999         error code DBUS_VALIDITY_UNKNOWN_OOM_ERROR = -4 for 
2000         out of memory errors when validating signitures
2001
2002         * dbus/dbus-marshal-header.c: use DBUS_VALIDITY_UNKNOWN_OOM_ERROR
2003         in places where we previously used DBUS_VALID and a FALSE return 
2004         value to indicate OOM
2005         
2006         * dbus/dbus-marshal-validate.c (_dbus_validate_signature_with_reason):
2007         Use a stack to track the number of elements inside containers.  The 
2008         stack values are then used to validate that dict entries have only two
2009         elements within them.
2010         (validate_body_helper): check the reason for failure when validating
2011         varients
2012         
2013         * dbus/dbus-message.c (load_message): use 
2014         DBUS_VALIDITY_UNKNOWN_OOM_ERROR in places where we previously used 
2015         DBUS_VALID and a FALSE return value to indicate OOM
2016
2017         * doc/TODO: remove "- validate dict entry number of fields" as this
2018         patch fixes it
2019
2020 2005-06-14  David Zeuthen  <davidz@redhat.com>
2021
2022         * bus/bus.c (process_config_every_time): Drop existing conf-dir
2023         watches (if applicable) and add new watches
2024
2025         * bus/main.c (signal_handler): Handle SIGIO if using D_NOTIFY
2026         (main): Setup SIGIO signal handler if using D_NOTIFY
2027
2028         * bus/config-parser.h: Add prototype bus_config_parser_get_conf_dirs
2029
2030         * bus/config-parser.c (struct BusConfigParser): Add conf_dirs list
2031         (merge_included): Also merge conf_dirs list
2032         (bus_config_parser_unref): Clear conf_dirs list
2033         (include_dir): Add directory to conf_dirs list
2034         (bus_config_parser_get_conf_dirs): New function
2035
2036         * bus/dir-watch.[ch]: New files
2037
2038         * bus/Makefile.am (BUS_SOURCES): Add dir-watch.[ch]
2039
2040         * configure.in: Add checks for D_NOTIFY on Linux
2041
2042 2005-06-14  Colin Walters  <walters@verbum.org>
2043
2044         * glib/dbus-binding-tool-glib.c:
2045         * glib/dbus-gobject.c:
2046         * glib/dbus-gvalue.c: Fix indentation and brace style.
2047         
2048 2005-06-14  Ross Burton <ross@openedhand.com>.
2049
2050         * glib/dbus-glib.h: Make DBusGMethodInvocation
2051         a private structure.  Rearrange prototypes a bit.
2052         
2053         * glib/dbus-gproxy.c (dbus_g_proxy_invoke): Add
2054         documentation for first_arg_type.
2055         
2056         * glib/dbus-gobject.c: Move DBusGMethodInvocation
2057         here, add documentation.  Move dbus_g_method_return
2058         and dbus_g_method_return_error into public API
2059         section.
2060
2061 2005-06-14  Colin Walters  <walters@verbum.org>
2062
2063         * glib/dbus-gobject.c (_dbus_gobject_lookup_marshaller):
2064         Add missing return statements, noticed by Ross Burton.
2065         
2066 2005-06-13  Ross Burton <ross@openedhand.com>.
2067
2068         * glib/dbus-gobject.c: Handle errors on message
2069         demarshalling by sending error message back.
2070         * glib/dbus-gvalue.c: Initialize return variables.
2071
2072 2005-06-13  Colin Walters  <walters@verbum.org>
2073
2074         * glib/Makefile.am: Fix thinko in last patch.
2075
2076 2005-06-13  Colin Walters  <walters@verbum.org>
2077
2078         * glib/Makefile.am: Move dbus-gtype-specialized.c
2079         and dbus-gtype-specialized.h into a _HEADERS variable,
2080         install them.
2081
2082 2005-06-12  Colin Walters  <walters@verbum.org>
2083
2084         Async signals and various bugfixes and testing by
2085         Ross Burton <ross@openedhand.com>.
2086
2087         * glib/dbus-gvalue.h: (struct DBusBasicGValue): Delete.
2088         (dbus_gvalue_genmarshal_name_from_type)
2089         (dbus_gvalue_ctype_from_type): Moved to dbus-binding-tool-glib.c.
2090         (dbus_gtype_to_dbus_type): Renamed to dbus_gtype_from_signature.
2091         (dbus_g_value_types_init, dbus_gtype_from_signature)
2092         (dbus_gtype_from_signature_iter, dbus_gtype_to_signature)
2093         (dbus_gtypes_from_arg_signature): New function prototypes.
2094         (dbus_gvalue_demarshal): Take context and error arguments.
2095         (dbus_gvalue_demarshal_variant): New function.
2096         (dbus_gvalue_demarshal_message): New function.
2097         (dbus_gvalue_store): Delete.
2098
2099         * glib/dbus-gvalue.c:
2100
2101         File has been almost entirely rewritten; now we special-case
2102         more types such as DBUS_TYPE_SIGNATURE, handle arrays and
2103         hash tables correctly, etc.  Full support for recursive values
2104         is not yet complete.
2105
2106         * glib/dbus-gproxy.c (dbus_g_proxy_class_init): Change last
2107         argument of signal to G_TYPE_POINTER since we now pass a
2108         structure.
2109         (lookup_g_marshaller): Delete in favor of
2110         _dbus_gobject_lookup_marshaller.
2111         (marshal_dbus_message_to_g_marshaller): Use
2112         _dbus_gobject_lookup_marshaller and dbus_gvalue_demarshal_message
2113         to handle remote signal callbacks.
2114         (dbus_g_proxy_new_from_proxy): New function; creates a new
2115         DBusGProxy by copying an existing one.
2116         (dbus_g_proxy_get_interface, dbus_g_proxy_set_interface)
2117         (dbus_g_proxy_get_path): New functions.
2118         (dbus_g_proxy_marshal_args_to_message): New function;
2119         factored out of existing code.
2120         (DBUS_G_VALUE_ARRAY_COLLECT_ALL): Collect all arguments
2121         from a varargs array.
2122         (dbus_g_proxy_begin_call_internal): New function.
2123         (dbus_g_proxy_end_call_internal): New function.
2124         (dbus_g_proxy_begin_call): Take GTypes instead of DBus types
2125         as arguments; simply invoke dbus_g_proxy_begin_call_internal
2126         after collecting args into value array.
2127         (dbus_g_proxy_end_call): Take GTypes instead of DBus types;
2128         invoke dbus_g_proxy_end_call_internal.
2129         (dbus_g_proxy_invoke): Simply invoke begin_call_interanl and
2130         end_call_internal.
2131         (dbus_g_proxy_call_no_reply): Take GTypes instead of DBus
2132         types.
2133         (array_free_all): New function.
2134         (dbus_g_proxy_add_signal): Take GTypes.
2135
2136         * glib/dbus-gobject.h:
2137         (_dbus_glib_marshal_dbus_message_to_gvalue_array): Delete.
2138         (_dbus_gobject_get_path, _dbus_gobject_lookup_marshaller):
2139         Prototype.
2140
2141         * glib/dbus-gobject.c: Add a global marshal_table hash which
2142         stores mappings from type signatures to marshallers.  Change lots
2143         of invocations of dbus_gtype_to_dbus_type to
2144         dbus_gtype_to_signature.
2145         (_dbus_glib_marshal_dbus_message_to_gvalue_array): Delete.
2146         (introspect_signals): Fix test for query.return_type.
2147         (set_object_property): Update invocation of dbus_gvalue_demarshal.
2148         (invoke_object_method): Many changes.  Handle asynchronous
2149         invocations.  Convert arguments with
2150         dbus_gvalue_demarshal_message.  Handle errors.  Use
2151         DBusSignatureIter instead of strlen on args. Handle all arguments
2152         generically.  Special-case variants.
2153         (dbus_g_method_return, dbus_g_method_return_error): New function.
2154         (DBusGSignalClosure): New structure, closes over signal
2155         information.
2156         (dbus_g_signal_closure_new): New function.
2157         (dbus_g_signal_closure_finalize): New function.
2158         (signal_emitter_marshaller): New function; is special marshaller
2159         which emits signals on bus.
2160         (export_signals): New function; introspects object signals and
2161         connects to them.
2162         (dbus_g_object_type_install_info): Take GType instead of
2163         GObjectClass.
2164         (dbus_g_connection_register_g_object): Invoke export_signals.
2165         (dbus_g_connection_lookup_g_object): New function.
2166         (DBusGFuncSignature) New structure; used for mapping type
2167         signatures to marshallers.
2168         (funcsig_hash): New function; hashes DBusGFuncSignature.
2169         (funcsig_equal): New function; compares DBusGFuncSignature.
2170         (_dbus_gobject_lookup_marshaller): New function.
2171         (dbus_g_object_register_marshaller): New function; used to
2172         register a marshaller at runtime for a particular signature.
2173
2174         * glib/dbus-gmain.c (_dbus_gmain_test): Add various tests.
2175
2176         * glib/dbus-binding-tool-glib.h: Add DBUS_GLIB_ANNOTATION_ASYNC
2177         which notes a server method implementation should be
2178         asynchronous.
2179
2180         * glib/dbus-binding-tool-glib.c
2181         (dbus_binding_tool_output_glib_server): Call
2182         dbus_g_value_types_init.
2183         (write_formal_parameters): Use dbus_gtype_from_signature.  Handle
2184         variants specially.
2185         (dbus_g_type_get_lookup_function): Turn GType into an invocation
2186         of a lookup function.
2187         (write_args_for_direction): Use dbus_g_type_get_lookup_function.
2188         (write_untyped_out_args): New method; write output arguments.
2189         (write_formal_declarations_for_direction): Function for
2190         writing prototypes.
2191         (write_formal_parameters_for_direction): Function for
2192         writing implementations.
2193         (write_typed_args_for_direction): Function for writing
2194         arguments prefixed with GTypes.
2195         (write_async_method_client): Write out async version
2196         of method.
2197
2198         * glib/dbus-binding-tool-glib.c: Include dbus-gvalue-utils.h.
2199         (dbus_g_type_get_marshal_name): Move mapping from GType
2200         to marshal name into here.
2201         (dbus_g_type_get_c_name): Move into here.
2202         (compute_marshaller): Convert signature to type with
2203         dbus_gtype_from_signature, use dbus_g_type_get_marshal_name.
2204         (compute_marshaller_name): Ditto.
2205         (compute_marshaller): Handle async signal annotations.
2206         (gather_marshallers): Return if we don't have a known
2207         prefix.
2208         (generate_glue): Collect introspection blob here, and
2209         write all of the blob at the end.  This allows an object
2210         with multiple interfaces to work.
2211         Mark async methods in introspection blob.
2212
2213         * glib/Makefile.am (libdbus_glib_1_la_SOURCES): Add
2214         dbus-gtype-specialized.c, dbus-gtype-specialized.h,
2215         dbus-gvalue-utils.h, dbus-gvalue-utils.c.
2216
2217         * dbus/dbus-glib.h: Don't include dbus-protocol.h; this
2218         avoids people accidentally using DBUS_TYPE_* which should
2219         not be necessary anymore.
2220         Do include dbus-gtype-specialized.h, which are utilities
2221         for GLib container types.
2222         Add various #defines for types such as
2223         DBUS_TYPE_G_BOOLEAN_ARRAY.
2224         (DBusGValueIterator, DBusGValue): Define, not fully used
2225         yet.
2226         (dbus_g_value_get_g_type): Type for recursive value.
2227         (dbus_g_value_open, dbus_g_value_iterator_get_value)
2228         (dbus_g_value_iterator_get_values, dbus_g_value_iterator_recurse)
2229         (dbus_g_value_free): Prototypes.
2230         (dbus_g_object_register_marshaller, dbus_g_proxy_new_from_proxy): Prototype.
2231         (dbus_g_proxy_set_interface): Prototype.
2232         (dbus_g_proxy_begin_call, dbus_g_proxy_end_call)
2233         (dbus_g_proxy_call_no_reply): Take GLib types instead of DBus
2234         types.
2235         (dbus_g_proxy_get_path, dbus_g_proxy_get_interface):
2236         Accessors.
2237         (DBusGAsyncData, DBusGMethodInvocation): Structures for
2238         doing async invocations.
2239         (dbus_g_method_return, dbus_g_method_return_error):
2240         Prototypes.
2241         * doc/dbus-tutorial.xml: Update GLib section.
2242         
2243         * tools/dbus-viewer.c (load_child_nodes): Update
2244         for new invocation type of dbus_g_proxy_end_call.
2245         (load_from_service_thread_func): Ditto.
2246
2247         * tools/print-introspect.c (main): Ditto.
2248
2249         * tools/dbus-names-model.c (have_names_notify)
2250         (names_model_reload, names_model_set_connection)
2251         Use GTypes.
2252
2253         * python/Makefile.am (INCLUDES): Define DBUS_COMPILATION,
2254         needed since Python bindings use GLib bindings.
2255
2256         * test/glib/Makefile.am (INCLUDES): Define DBUS_COMPILATION.
2257         Add --prefix argument.
2258
2259         * tools/Makefile.am: Define DBUS_COMPILATION.  Remove
2260         unneeded --ignore-unsupported arg.
2261         
2262         * test/glib/test-service-glib.c: 
2263         * test/glib/test-service-glib.xml:
2264         * test/glib/test-dbus-glib.c: Add many more tests.
2265
2266 2005-06-06  David Zeuthen  <davidz@redhat.com>
2267
2268         * doc/TODO: Add item about need to remove deprecated functions.
2269
2270         * dbus/dbus-connection.h: Add prototype for dbus_connection_disconnect
2271
2272         * dbus/dbus-connection.c (dbus_connection_disconnect): New function
2273         to repair the ABI which was broken with the last commit.
2274
2275 2005-06-02  John (J5) Palmieri <johnp@redhat.com>
2276
2277         *  dbus/dbus-connection.c, dbus/dbus-connection.h 
2278         (dbus_connection_disconnect): renamed to dbus_connection_close 
2279         for API symmetry with dbus_connection_open
2280         (_dbus_connection_open_internal): 
2281         s/dbus_connection_disconnect/dbus_connection_close
2282
2283         * dbus/dbus-bus.c (dbus_bus_get):
2284         s/dbus_connection_disconnect/dbus_connection_close
2285
2286         * bus/connection.c (bus_connections_unref, 
2287         bus_connections_setup_connection, bus_connections_expire_incomplete):
2288         s/dbus_connection_disconnect/dbus_connection_close
2289
2290         * bus/dispatch.c (bus_dispatch, kill_client_connection, 
2291         kill_client_connection_unchecked, check_hello_connection):
2292         s/dbus_connection_disconnect/dbus_connection_close
2293
2294         * bus/bus.c (new_connection_callback):
2295         s/dbus_connection_disconnect/dbus_connection_close
2296
2297         * tools/dbus-send.c (main):
2298         s/dbus_connection_disconnect/dbus_connection_close
2299
2300         * test/glib/test-profile.c (no_bus_thread_func, with_bus_thread_func):
2301         s/dbus_connection_disconnect/dbus_connection_close
2302         
2303         * test/test-service.c (path_message_func, filter_func):
2304         s/dbus_connection_disconnect/dbus_connection_close
2305         
2306         * doc/TODO: remove connection_open/connection_disconnect lacks symmetry         item that was just fixed
2307         
2308 2005-05-25  Colin Walters  <walters@verbum.org>
2309
2310         * dbus/dbus-protocol.h: Move various bus service #defines such
2311           as DBUS_SERVICE_DBUS and DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT to
2312           dbus/dbus-shared.h.
2313         * dbus/dbus-shared.h: Various defines moved here.
2314         * dbus/dbus-marshal-header.c: Include dbus-shared.h.
2315
2316 2005-05-25  John (J5) Palmieri  <johnp@redhat.com>
2317
2318         * python/__init__.py: Python bindings deserve a minor version
2319         update.  Upped to (0, 40, 2)
2320
2321 2005-05-24  John (J5) Palmieri  <johnp@redhat.com>
2322
2323         * python/decorators.py: add explicitly_pass_message decorator
2324         for passing in the dbus message as keyword for edge case signal
2325         handling
2326
2327         * python/matchrules.py (SignalMatchRule.__repr__): fix output
2328         to conform with what dbus expects for match rules
2329         (SignalMatchRule.execute): add the dbus message as a keyword
2330         if the signal handler has requested it
2331
2332         * python/examples/example/signal-recipient.py: added some more
2333         examples on how to hook up to signals
2334
2335 2005-05-23  John (J5) Palmieri  <johnp@redhat.com>
2336
2337         * python/decorators.py: import dbus_bindings
2338
2339         * python/matchrules.py (SignalMatchRule, SignalMatchTree, 
2340         SignalMatchNode): new classes that implement wildcard signal
2341         callback matching using a tree lookup. Heavily modified from a
2342         patch sent by Celso Pinto (fd.o bug #3241)
2343
2344         * _dbus.py (add_signal_receiver, remove_signal_receiver, _signal_func):
2345         use new match classes to handle signals.
2346
2347 2005-05-19  John (J5) Palmieri  <johnp@redhat.com>
2348         
2349         * python/dbus_bindings.pyx.in: s/TYPE_PATH/TYPE_OBJECT_PATH
2350
2351 2005-05-18  Havoc Pennington  <hp@redhat.com>
2352
2353         * configure.in: use GLIB_GNU_GETTEXT to get INTLLIBS and require
2354         gettext. Not really worth requiring yet perhaps, but any
2355         production quality 1.0 would require it so we should go ahead and
2356         get things set up. We do have a couple token calls to
2357         bindtextdomain in the code already.
2358
2359 2005-05-16  John (J5) Palmieri  <johnp@redhat.com>
2360
2361         * glib/dbus-gmain.c (io_handler_dispatch): fix deadlock
2362         when using recursive g_main_loops
2363
2364         * python/_dbus.py (class Bus): add the ProxyObjectClass
2365         alias for ProxyObject to make it easier for the Twisted 
2366         networking framework to integrate dbus.
2367
2368         * python/proxies.py (class ProxyObject): add the ProxyMethodClass
2369         alias for ProxyMethod to make it easier for the Twisted 
2370         networking framework to integrate dbus. 
2371
2372 2005-05-11  Ross Burton  <ross@openedhand.com>
2373
2374         * glib/dbus-glib-tool.c: Add --prefix argument.
2375         * glib/dbus-binding-tool-glib.h: Add prefix argument.
2376         * glib/dbus-binding-tool-glib.c (compute_marshaller_name):
2377         Add prefix argument.
2378         (generate_glue): Pass prefix argument down.
2379         (dbus_binding_tool_output_glib_server): Pass prefix to
2380         glib-genmarshal.
2381         
2382 2005-05-11  Colin Walters  <walters@verbum.org>
2383
2384         * tools/dbus-send.c (append_array): New function.
2385         (append_arg): Broken out from main.
2386         (main): Add cheesy hack to send arrays and variants.
2387         (usage): Update.
2388         * tools/dbus-print-message.c (print_iter): Broken out
2389         from main.
2390
2391 2005-05-11  Colin Walters  <walters@verbum.org>
2392
2393         * dbus/dbus-signature.c (dbus_signature_iter_get_signature):
2394         New function, returns signature string for signature iter.
2395         * dbus/dbus-signature.h: Prototype it.
2396         * dbus/dbus-message.c (dbus_message_iter_get_signature):
2397         New function, returns signature string for message iter.
2398         (dbus_message_iter_get_array_len): New function, returns
2399         length of array.
2400         (dbus_message_iter_get_fixed_array): Fix assertion; this
2401         function should be used when the iter is pointing to the
2402         contents of an array
2403         * dbus/dbus-message.h: Prototypes.
2404         * dbus/dbus-marshal-recursive.c (_dbus_type_reader_get_array_length):
2405         New function; returns length of an array.
2406         * dbus/dbus-marshal-recursive.h: Prototype it.
2407         
2408 2005-05-11  Colin Walters  <walters@verbum.org>
2409
2410         * dbus/dbus-sysdeps-util.c <!HAVE_POSIX_GETPWNAM_R>: Fix
2411         compilation error.
2412         
2413 2005-05-08  Havoc Pennington  <hp@redhat.com>
2414
2415         * dbus/dbus-sysdeps-util.c (_dbus_become_daemon): write the
2416         daemon's pid, not the parent's pid, to the file descriptor.
2417         Reported by Taj Morton.
2418
2419 2005-05-05  Havoc Pennington  <hp@redhat.com>
2420
2421         * configure.in (LT_*): add notes on how the libtool versioning
2422         works to save thinking. Increment soname to indicate protocol
2423         breakage (though really the library interface hasn't changed I
2424         guess)
2425
2426         * dbus/dbus-transport.c (_dbus_transport_get_is_authenticated):
2427         verify the GUID received from server matches what we were
2428         expecting, if we had an expectation
2429
2430         * dbus/dbus-auth.c (send_ok): send GUID along with the OK command
2431         (_dbus_auth_get_guid_from_server): new function
2432         (send_begin): parse the OK args
2433
2434         * doc/dbus-specification.xml: add GUID to the auth protocol
2435
2436 2005-05-05  John (J5) Palmieri  <johnp@redhat.com>
2437
2438         * Fix my name in previous changelog ;)
2439
2440         * python/proxies.py (ProxyObject.__getattr__): add further patch
2441         from Anthony Baxter to throw an AttributeError when python 
2442         __special__ functions are called instead of marshling them over 
2443         the bus (Bug#1685 comment 3).
2444
2445 2005-05-04  John (J5) Palmieri  <johnp@redhat.com>
2446
2447         * python/Makefile.am: changed to use pyexecdir for the binding
2448         shared libraries (Bug#2494)
2449
2450         * python/exceptions.py: bring exceptions over from the bindings
2451         so they can be used in applications (Bug#2036)
2452         Make all exceptions derive from DBusException
2453
2454         * python/_dbus.py, python/proxies.py: implement __repr__ in a couple
2455         of classes so that print obj doesn't throw an exception (Bug #1685)
2456
2457 2005-05-03  Ross Burton  <ross@openedhand.com>
2458
2459         * glib/dbus-gobject.c (dbus_g_connection_register_g_object):
2460         Return if we get an error during registration.  Set up a
2461         weak reference on object to unregister if object is destroyed.
2462         (unregister_gobject): New function.
2463         
2464 2005-05-01  John (J5) Palmieri  <johnp@redhat.com>
2465
2466         * python/dbus_bindings.pyx.in: 
2467         - added new type classes for hinting to the marashaler what type 
2468         to send over the wire
2469         - added int16 and uint16 marshalers
2470         - Fixed a bug in the type constants that caused int32 to go out
2471         as uint16 over the wire
2472         * python/dbus.py: split up into different files and renamed _dbus.py
2473         * python/__init__.py, python/_util.py, python/decorators.py, 
2474         python/exceptions.py, python/proxies.py, python/services.py,
2475         python/types.py: new files split off from dbus.py
2476         * python/Makefile.am: Add new files, remove dbus.py and 
2477         install all python files to <python module dir>/dbus
2478         * python/examples/*: Added #!/usr/bin/env python to the top of
2479         every example.  Patch provided by Tatavarty Kalyan
2480
2481 2005-04-25  John (J5) Palmieri  <johnp@redhat.com>
2482
2483         * NEWS: Update to 0.33
2484
2485 2005-04-25  John (J5) Palmieri  <johnp@redhat.com>
2486
2487         * python/dbus_bindings.pyx.in (send_with_reply_handlers): New send
2488         method for doing async calls
2489         (_pending_call_notification): New C function for handling pendning call
2490         callbacks
2491         (set_notify): New method for setting pending call notification
2492         
2493         * python/dbus.py: new version tuple "version" is set at (0, 40, 0)
2494         Async capabilities added to remote method calls
2495         (Sender): class removed
2496         (RemoteService): class removed
2497         (ObjectTree): class removed for now
2498         (RemoteObject): Renamed to ProxyObject
2499         (RemoteMethod): Renamed to ProxyMethod
2500         (method): Decorator added for decorating python methods as dbus methods
2501         (signal): Decorator added for decorating python methods as signal emitters
2502         (ObjectType): Metaclass added for generating introspection data and the
2503         method callback vtable
2504         (Interface): Wrapper class added to wrap objects in a dbus interface
2505         (Object): Uses ObjectType as its metaclass and exports Introspect
2506         of the org.freedesktop.DBus.Introspectable interface
2507         (ValidationException, UnknownMethodException): new exceptions
2508
2509         * python/examples/*: Modified to fit with the new bindings
2510
2511 2005-04-23  Havoc Pennington  <hp@redhat.com>
2512
2513         * dbus/dbus-message.c (dbus_message_append_args): fix doc comment,
2514         reported by Tony Houghton
2515
2516         * test/test-service.c (main): test
2517         dbus_connection_get_object_path_data()
2518
2519         * dbus/dbus-object-tree.c (find_handler): be sure we always init
2520         the exact_match
2521         (_dbus_object_tree_get_user_data_unlocked): new function used by
2522         dbus_connection_get_object_path_data()
2523         (do_register): add assertion test for get_user_data_unlocked
2524         (object_tree_test_iteration): more tests
2525
2526         * dbus/dbus-connection.c (dbus_connection_get_object_path_data):
2527         new function from Dan Reed to let you get the user data from 
2528         dbus_connection_register_object_path()
2529
2530 2005-04-23  John (J5) Palmieri  <johnp@redhat.com>
2531
2532         * dbus/dbus-marshal-recursive-util.c: Fixed buffer overflow
2533         in numerous places that did not account for the NULL terminator
2534         (signature_from_seed): changed the manual string copy loop to 
2535         just use strcpy instead
2536         make check should now pass
2537
2538 2005-04-19  John (J5) Palmieri  <johnp@redhat.com>
2539
2540         * dbus/dbus-marshal-header.c (_dbus_header_create): Fix assert
2541         so that it allows messages that are not signals to pass in 
2542         NULL as the interface.
2543
2544 2005-04-18  David Zeuthen  <davidz@redhat.com>
2545
2546         * glib/dbus-gmain.c (io_handler_destroy_source): 
2547         (timeout_handler_destroy_source, connection_setup_free): 
2548         Also unref the source to avoid memory leaks.
2549
2550 2005-04-13  David Zeuthen  <davidz@redhat.com>
2551
2552         * bus/config-parser.c (bus_config_parser_new): Bump this to a
2553         more reasonable, yet still totally arbitrary, value :-). 
2554
2555 2005-04-13  David Zeuthen  <davidz@redhat.com>
2556
2557         * doc/TODO: Added an "important for 1.0" item about selinux
2558         allow/deny messages
2559
2560 2005-04-13  David Zeuthen  <davidz@redhat.com>
2561
2562         * bus/selinux.c: Add c-file-style to top of file
2563         (log_audit_callback): Don't free the data here anymore
2564         (bus_selinux_check): Don't take spid and tpid since appending
2565         that to auxdata may OOM.
2566         (bus_selinux_allows_acquire_service): Handle OOM and signal back
2567         to the caller if we are OOM by taking an error object.
2568         (bus_selinux_allows_send): -do-
2569
2570         * bus/selinux.h: Fix prototypes for bus_selinux_allows_acquire_service
2571         and bus_selinux_allows_send
2572
2573         * bus/bus.c (bus_context_check_security_policy): Pass error and
2574         pass on OOM thrown by bus_selinux_allows_send()
2575
2576         * bus/services.c (bus_registry_acquire_service): Pass error and
2577         pass on OOM thrown by bus_selinux_allows_acquire_service()
2578
2579 2005-04-13  Havoc Pennington  <hp@redhat.com>
2580
2581         * glib/dbus-gmain.c (message_queue_dispatch): only dispatch one
2582         message at a time to avoid monopolizing the main loop, bug 
2583         #2953 from Benjamin Otte
2584
2585 2005-04-09  Havoc Pennington  <hp@redhat.com>
2586
2587         * dbus/dbus-string.c (copy): change a memcpy to memmove due to
2588         possible overlap, fix from Daniel Reed
2589         (fixup_alignment): fix signedness warnings
2590         (_dbus_string_append_unichar): ditto
2591
2592 2005-04-09  Havoc Pennington  <hp@redhat.com>
2593
2594         * dbus/dbus-message-util.c (_dbus_message_test): fix signedness warning
2595
2596         * glib/dbus-glib-tool.c (main): fix warning
2597
2598         * glib/dbus-binding-tool-glib.c (generate_glue): fix warning
2599
2600         * dbus/dbus-connection.c (dbus_connection_read_write_dispatch):
2601         add a new function that can be used in simple applications that
2602         don't have a main loop and are willing to block
2603
2604 2005-04-05  David Zeuthen  <davidz@redhat.com>
2605
2606         Fix https://bugs.freedesktop.org/show_bug.cgi?id=2889
2607
2608         * glib/dbus-gmain.c:
2609         (io_handler_destroy_source): Remove from list of IO handlers
2610         of the ConnectionSetup object
2611         (timeout_handler_destroy_source): -do- for timeout handlers
2612         (io_handler_source_finalized): Don't remove from list since
2613         we now do that in io_handler_destroy_source(). Renamed from
2614         io_handler_source_destroyed
2615         (timeout_handler_source_destroyed): -do- for timeout handlers
2616         (connection_setup_free): It is now safe to iterate over all
2617         IO and timeout handlers as the _destroy_source removes them
2618         from the list synchronously
2619
2620 2005-03-30  Havoc Pennington  <hp@redhat.com>
2621
2622         * configure.in: change check to gtk 2.4
2623
2624         * tools/dbus-viewer.c (name_combo_changed_callback): remove
2625         gtk_combo_box_get_active_text() usage to decrement GTK requirement
2626         to 2.4
2627
2628 2005-03-29  John (J5) Palmieri  <johnp@redhat.com>
2629
2630         * News: Update 0.32
2631
2632         * HACKING: Fixed realease instructions.  configure.in should be updated to
2633           the next release by the person who made the last release.
2634
2635 2005-03-29  John (J5) Palmieri  <johnp@redhat.com>
2636
2637         * python/lvalue_cast_post_process.py - removed.  Patch has been
2638           submitted to Pyrex maintainers that fixes gcc4.0 errors
2639
2640         * python/Makefile.am: removed refrences to lvalue_cast_post_process.py
2641
2642 2005-03-24  Daniel Reed  <n@ml.org>
2643
2644         * tools/Makefile.am: Make print-introspect and
2645         dbus-bus-introspect.xml building conditional on HAVE_GLIB.
2646
2647 2005-03-22  John (J5) Palmieri  <johnp@redhat.com>
2648
2649         * tools/Makefile.am: Patch by Colin Walters that fixes distcheck
2650
2651         * dbus/dbus-userdb.c, dbus/dbus-userdb-util.c: Add patch we have 
2652           had in Red Hat packages for a while but for some reason never 
2653           got merged upstream
2654           (_dbus_is_a_number): New checks if a string
2655           can be converted to a number and does the conversion if it can
2656           (_dbus_user_database_lookup): Add check to see if the given username
2657           is a udi.  This allows udi's to be used instead of usernames in the
2658           config file.
2659           (_dbus_user_database_lookup_group): Add check to see if the given groupname
2660           is a gdi.  This allows gdi's to be used instead of groupnames in the
2661           config file.
2662
2663 2005-03-21  John (J5) Palmieri  <johnp@redhat.com>
2664
2665         * python/lvalue_cast_post_process.py - added post processor to fix Pyrex
2666           code so that it compiles with gcc4.0
2667
2668         * python/Makefile.am: Added lvalue_cast_post_process.py to EXTRA_DIST
2669           run dbus_bindings.c through lvalue_cast_post_process.py and copy the
2670           results back to dbus_binding.c
2671
2672 2005-03-20  Colin Walters  <walters@verbum.org>
2673
2674         Patch suggested by Inguva Rajasekhar <ringuva@novell.com>.
2675
2676         * configure.in: Require GTK+ 2.6.
2677         
2678 2005-03-20  Colin Walters  <walters@verbum.org>
2679
2680         * Makefile.am (SUBDIRS, DIST_SUBDIRS): Build tools before test.
2681
2682 2005-03-17  Tom Parker  <palfrey@tevp.net>
2683
2684         * dbus/dbus-userdb.c (_dbus_user_database_lookup): Don't
2685         print DBUS_UID_UNSET; instead print passed username.  Also
2686         be sure to actually use gid looked up in cache.
2687         
2688         * dbus/dbus-userdb-util.c (_dbus_user_database_lookup_group): Ditto
2689         for DBUS_GID_UNSET and groupname.
2690
2691 2005-03-17  Colin Walters  <walters@verbum.org>
2692
2693         * bus/print-introspect.c: Move to tools/.
2694         * bus/run-with-tmp-session-bus.sh: Ditto.
2695         
2696         * glib/Makefile.am (dbus-glib-bindings.h): Move
2697         generation to tools/Makefile.am.
2698
2699         * test/glib/run-test.sh: Update to handle move
2700         of run-with-tmp-session-bus.sh.
2701
2702         * test/glib/test-service-glib.c: Update to handle
2703         move of dbus-glib-bindings.h.
2704
2705         * tools/print-introspect.c: Moved here
2706         from bus/, and ported to GLib bindings.
2707
2708         * tools/run-with-tmp-session-bus.sh: Moved here
2709         from bus/.
2710
2711         * tools/Makefile.am: Generate dbus-glib-bindings.h
2712         and dbus-bus-introspect.xml here.
2713
2714         * tools/.cvsignore, glib/.cvsignore, bus/.cvsignore:
2715         Update.
2716
2717 2005-03-17  Colin Walters  <walters@verbum.org>
2718
2719         * bus/driver.c (write_args_for_direction): Use
2720         _dbus_string_get_const_data to retrieve string;
2721         _dbus_string_get_const_data_len doesn't actually return
2722         a NULL-terminated substring.
2723
2724         * test/glib/test-service-glib.c: Include dbus-glib-bindings.h.
2725         (main): Change to use org_freedesktop_DBus_request_name
2726         instead of using g_proxy_begin_call/end_call.
2727
2728 2005-03-15  Joe Shaw  <joeshaw@novell.com>
2729
2730         * mono/ProxyBuilder.cs (BuildFinalizer): Fix some invalid IL when
2731         generating the finalizer.  Fixes from Ben Maurer.
2732
2733 2005-03-12  Joe Shaw  <joeshaw@novell.com>
2734
2735         * mono/BusDriver.cs: Update method names: ListServices
2736         becomes ListNames; GetOwner becomes GetNameOwner.
2737
2738         * mono/ProxyBuilder.cs (BuildFinalizer): Need to load arg 0
2739         onto the eval stack when removing the delegate.
2740
2741 2005-03-12  Joe Shaw  <joeshaw@novell.com>
2742
2743         * mono/dbus-sharp.dll.config.in: Don't hardcode 0 for
2744         LT_CURRENT.  Set it to the autoconf variable.
2745                                                                                 
2746         * mono/ProxyBuilder.cs: Add a finalizer to the generated proxy
2747         classes that disconnects the signal handler delegate from the
2748         service object.  Fixes a big leak of proxy objects on the
2749         client side of things.  Patch from Ben Maurer
2750         <bmaurer@ximian.com>
2751
2752 2005-03-12  Colin Walters  <walters@verbum.org>
2753
2754         * bus/driver.c (write_args_for_direction): New function,
2755         parses a type signature into arguments and outputs to
2756         XML.
2757         (bus_driver_handle_introspect): Use it instead of
2758         hardcoding XML for certain signatures.
2759         
2760         * bus/Makefile.am (dbus-bus-introspect.xml): Add
2761         dependency on dbus-daemon.
2762
2763         * glib/dbus-glib-tool.c (main): Parse ignore_unsupported
2764         argument, pass it to dbus_binding_tool_output_glib_client.
2765
2766         * glib/dbus-binding-tool-glib.c
2767         (generate_client_glue): Protect against multiple inclusion.
2768         (dbus_binding_tool_output_glib_client): Add
2769         G_BEGIN_DECLS/G_END_DECLS.
2770
2771         * glib/dbus-binding-tool-glib.c (compute_client_method_name):
2772         Change to just take iface prefix directly.
2773         (write_formal_parameters): Clarify error message.
2774         (check_supported_parameters): New function; checks to see type
2775         signatures of method parameters are supported.
2776         (generate_client_glue): Handle ignore_unsupported flag.
2777         (dbus_binding_tool_output_glib_client): Handle ignore_unsupported
2778         parameter.
2779
2780         * glib/Makefile.am (dbus-glib-bindings.h): Pass
2781         --ignore-unsupported by default until glib bindings
2782         support arrays.
2783
2784 2005-03-11  Colin Walters  <walters@verbum.org>
2785
2786         * glib/Makefile.am: Generate dbus-glib-bindings.h and
2787         install it.
2788
2789         * bus/print-introspect.c: New file; prints introspection
2790         data for a given name and object path.
2791
2792         * bus/run-with-tmp-session-bus.sh: New file, refactored
2793         from test/glib/run-test.sh.  Creates a temporary session
2794         bus and runs another program.
2795
2796         * test/glib/run-test.sh: Refactor to invoke
2797         run-with-tmp-session-bus.sh.
2798
2799         * bus/driver.c (bus_driver_handle_introspect): Fix to print new
2800         introspection format.  Also change to use DBUS_TYPE_x_AS_STRING
2801         macros instead of hardcoding.
2802
2803         * glib/.cvsignore, bus/.cvsignore, test/glib/.cvsignore: Update.
2804
2805 2005-03-11  Joe Shaw  <joeshaw@novell.com>
2806
2807         * dbus/dbus-connection.c (dbus_connection_send_with_reply): Remove
2808         this unref; it doesn't match up evenly in some codepaths.
2809         (_dbus_connection_block_pending_call): Unref at every exitpoint;
2810         this evenly matches with the ref near the top of this function.
2811
2812 2005-03-09  Joe Shaw  <joeshaw@novell.com>
2813
2814         * dbus/dbus-object-tree.c
2815         (_dbus_object_tree_unregister_and_unlock): If checks are enabled
2816         and we try to unregister a path that's not registered, still go
2817         through the process of unlocking and don't just return.
2818
2819 2005-03-09  Colin Walters  <walters@verbum.org>
2820
2821         * glib/dbus-gproxy.c (dbus_g_proxy_invoke): New method; calls
2822         to this are generated for client-side wrappers.  Invokes a
2823         D-BUS method and returns reply values.  
2824
2825         * glib/dbus-binding-tool-glib.c (write_args_sig_for_direction): New
2826         function; writes signature string for argument direction.
2827         (write_args_for_direction): Change to pass input values directly
2828         instead of via address, and fix indentation.
2829         (generate_client_glue): Change to invoke dbus_g_proxy_invoke.  Also
2830         make generated wrappers inlineable.
2831
2832         * dbus/dbus-message.c (dbus_message_iter_get_fixed_array): Add
2833         note about using dbus_type_is_fixed.
2834
2835         * dbus/dbus-marshal-basic.c (_dbus_type_is_fixed): Moved to
2836         dbus/dbus-signature.c as dbus_type_is_fixed.
2837
2838         All callers updated.
2839
2840         * dbus/dbus-signature.c (dbus_type_is_fixed): Moved here
2841         from dbus/dbus-marshal-basic.c:_dbus_type_is_fixed.
2842
2843         * dbus/dbus-signature.h: Prototype.
2844
2845         * glib/dbus-binding-tool-glib.c (compute_marshaller_name): Fix
2846         error printf code.
2847
2848         * test/glib/test-dbus-glib.c (main): Be sure to clear error as
2849         appropriate instead of just freeing it.
2850         (main): Free returned strings using g_free.
2851
2852         * test/glib/Makefile.am (test-service-glib-glue.h)
2853         (test-service-glib-bindings.h): Add dependency on dbus-binding-tool.
2854
2855         * glib/dbus-gvalue.c (MAP_BASIC): Refactored from MAP_BASIC_INIT;
2856         simply maps a simple D-BUS type to GType.
2857         (dbus_dbus_type_to_gtype): Function which maps D-BUS type to
2858         GType.
2859         (dbus_gvalue_init): Just invoke dbus_dbus_type_to_gtype and
2860         initialize the value with it.
2861         (dbus_gvalue_binding_type_from_type): Unused, delete.
2862         (dbus_gvalue_demarshal): Switch to hardcoding demarshalling for
2863         various types instead of unmarshalling to value data directly.
2864         Remove can_convert boolean.
2865         (dbus_gvalue_marshal): Remove duplicate initialization; switch to
2866         returning directly instead of using can_convert boolean.
2867         (dbus_gvalue_store): New function; not related to D-BUS per-se.
2868         Stores a GValue in a pointer to a value of its corresponding C
2869         type.
2870
2871         * glib/dbus-gvalue.h: Remove dbus_gvalue_binding_type_from_type,
2872         add dbus_gvalue_store.
2873
2874 2005-03-08  Joe Shaw  <joeshaw@novell.com>
2875
2876         Fix a bunch of lifecycle and memory management problems
2877         in the mono bindings.
2878
2879         * mono/Arguments.cs (Arguments): Implement IDisposable
2880
2881         * mono/Bus.cs (Bus): Don't allow public instantiation.  This is
2882         strictly a static class.
2883
2884         * mono/Connection.cs: Move the DBusObjectPathVTable and associated
2885         delegates into this file.
2886         (Connection): Implement IDisposable.
2887         (Dispose): Disconnect the connection and set the raw connection
2888         pointer to IntPtr.Zero.
2889         (~Connection): Call Dispose().
2890         (RegisterObjectPath): Added.  Manages the registration of object
2891         paths so we can cleanly disconnect them at dispose/finalize time.
2892         (UnregisterObjectPath): Ditto.
2893         (set_RawConnection): Unregister all of the object paths when
2894         changing the underlying DBusConnection.  Add them back onto the
2895         new connection, if any.
2896
2897         * mono/Handler.cs: Don't implement IDisposable; it doesn't use any
2898         more unmanaged resources anymore, so it's not necessary.  Move all
2899         the DBusObjectPathVTable stuff out of here.
2900         (Handler): Save references to our delegates so that they don't get
2901         finalized.  Call Connection.RegisterObjectPath() instead of
2902         dbus_connection_register_object_path() directly.
2903         (Message_Called): Dispose the message after we're finished with
2904         it.
2905
2906         * mono/Message.cs (Message): Implement IDisposable.
2907         (Dispose): Dispose the Arguments, and set the RawMessage to
2908         IntPtr.Zero.
2909         (SendWithReplyAndBlock): We own the ref to the reply that comes
2910         back from dbus_connection_send_with_reply_and_block() so add a
2911         comment about that and unref it after we've constructed a managed
2912         MethodReturn class around it.  Fixes a big, big leak.
2913
2914         * mono/ProxyBuilder.cs: Reflect into Message to get the Dispose
2915         method.
2916         (BuildSignalHandler): After we've sent the Signal message, dispose
2917         of it.
2918         (BuildMethod): Dispose of the method call and reply messages after
2919         we've sent the message and extracted the data we want from the
2920         reply.
2921
2922         * mono/Service.cs (UnregisterObject): Don't call handler.Dispose()
2923         anymore.
2924         (Service_FilterCalled): Dispose of the message after we're
2925         finished with it.
2926
2927 2005-03-08  Joe Shaw  <joeshaw@novell.com>
2928
2929         * dbus/dbus-connection.c (dbus_connection_send_with_reply):
2930         After we attach our pending call to the connection, unref
2931         it.  Fixes a leak.
2932  
2933         * mono/Connection.cs (set_RawConnection): Disconnect our
2934         filter and match callbacks from the old connection and
2935         reconnect them to the new connection, if any.
2936
2937         * mono/DBusType/Array.cs: "Code" is a static member, so
2938         don't use "this" to refer to it.  Fix for stricter checking
2939         in Mono 1.1.4.
2940  
2941         * mono/DBusType/ObjectPath.cs (Append): Don't leak the
2942         object path that we pass into unmanaged code.
2943  
2944         * mono/DBusType/String.cs (Append): Don't leak the string
2945         that we pass into unmanged code.
2946
2947 2005-03-07  John (J5) Palmieri  <johnp@redhat.com>
2948         * NEWS: Update for 0.31
2949
2950         * configure.in: Release 0.31
2951         add LT_CURRENT, LT_REVISION, LT_AGE for easy soname bumping
2952
2953         * qt/Makefile.am: fixed build
2954
2955         * dbus/Makefile.am: soname bump for libdbus
2956
2957         * glib/Makefile.am: soname bump for libdbus-glib
2958
2959 2005-03-05  Havoc Pennington  <hp@redhat.com>
2960
2961         * dbus/dbus-sysdeps.c:
2962         (pseudorandom_generate_random_bytes_buffer): fix to have no return
2963         value
2964         (_dbus_generate_random_bytes_buffer): fix return value
2965
2966         * dbus/dbus-sysdeps-util.c: s/GETPWNAME/GETPWNAM/ so configure
2967         checks actually work, from Tom Parker <fdo@tevp.net>
2968
2969 2005-03-01  Colin Walters  <walters@verbum.org>
2970
2971         * test/glib/test-dbus-glib.c (lose, lose_gerror): Utility
2972         functions copied from dbus-glib-tool.c.
2973         (main): Convert lots of error code to use them.
2974         Also add some testing for introspection bits.
2975
2976 2005-03-01  Colin Walters  <walters@verbum.org>
2977         
2978         * doc/TODO: Remove introspection signature TODO.
2979
2980 2005-02-27  Colin Walters  <walters@verbum.org>
2981
2982         * glib/dbus-gidl.c (property_info_get_type, arg_info_get_type):
2983         Change return value to const char * instead of int so we can do
2984         full signatures.
2985         (struct PropertyInfo, struct ArgInfo): Store char *.
2986         (property_info_new, arg_info_new): Update parameters, strdup.
2987         (property_info_unref, arg_info_unref): Free.
2988
2989         * glib/dbus-gidl.h: Update prototypes.
2990
2991         * glib/dbus-gparser.c (basic_type_from_string): Delete.
2992         (validate_signature): New function, just validates signature and
2993         sets GError.
2994         (parse_property, parse_arg): Invoke validate_signature.  Store
2995         signature instead of just type code.
2996
2997         * glib/dbus-gvalue.c (base_type_from_signature): New utility
2998         function to return a primary type for a signature, dropping
2999         information about types in container types.
3000         (dbus_gvalue_genmarshal_name_from_type)
3001         (dbus_gvalue_binding_type_from_type)
3002         (dbus_gvalue_ctype_from_type): Update to take full signature
3003          instead of type code.
3004         (dbus_gtype_to_dbus_type): Moved here from glib/dbus-gobject.c.
3005
3006         * glib/dbus-gvalue.h: Update prototypes for above.
3007
3008         * glib/dbus-gobject.c (gtype_to_dbus_type): Moved to
3009         glib/dbus-gvalue.c as dbus_gtype_to_dbus_type.
3010         (introspect_properties, introspect_signals, write_interface):
3011         Update to handle signatures, and remove usage of
3012         _dbus_gutils_type_to_string.
3013         (handle_introspect): Print out type codes instead of e.g. "string"
3014         in hardcoded introspection XML; also use x_AS_STRING constants
3015         instead of hardcoding in string.
3016
3017         * glib/dbus-glib-tool.c (pretty_print): Handle signature change
3018         to string.  Remove usage of _dbus_gutils_type_to_string.
3019
3020         * glib/dbus-gutils.c (_dbus_gutils_type_to_string): Delete.
3021
3022         * glib/dbus-gutils.h (_dbus_gutils_type_to_string): Update for
3023         deletion.
3024         
3025         * glib/dbus-binding-tool-glib.c (compute_marshaller)
3026         (compute_marshaller_name, generate_glue): Handle signature change
3027         to string.
3028         (write_formal_parameters, write_args_for_direction): Ditto, and
3029         remove FIXME.
3030
3031         * tools/dbus-tree-view.c (type_to_string): Delete.
3032         (info_set_func_text): Update to print full signatures.
3033
3034         * test/glib/test-service-glib.xml: Change types to new
3035         introspection format.
3036
3037 2005-02-26  Havoc Pennington  <hp@redhat.com>
3038
3039         * doc/TODO: remove the "guid" item
3040
3041         * test/glib/test-profile.c (no_bus_thread_func): use open_private
3042         (with_bus_thread_func): use open_private
3043
3044         * dbus/dbus-connection.c (dbus_connection_open_private): new
3045         function that works like the old dbus_connection_open()
3046         (dbus_connection_open): now returns an existing connection if
3047         possible
3048
3049         * dbus/dbus-server-unix.c (handle_new_client_fd_and_unlock): pass
3050         through the GUID to the transport
3051
3052         * dbus/dbus-server.c (_dbus_server_init_base): keep around the
3053         GUID in hex-encoded form.
3054
3055         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
3056         pass GUID argument in to the transport
3057
3058         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd): add
3059         guid argument
3060
3061         * dbus/dbus-transport.c (_dbus_transport_init_base): add guid argument
3062
3063         * dbus/dbus-auth.c (_dbus_auth_server_new): add guid argument
3064
3065 2005-02-25  Havoc Pennington  <hp@redhat.com>
3066
3067         * doc/dbus-specification.xml: document the GUID thing
3068
3069         * dbus/dbus-server.c (_dbus_server_init_base): initialize a
3070         globally unique ID for the server, and put a "guid=hexencoded"
3071         field in the address
3072
3073         * dbus/dbus-bus.c: fix missing #include of dbus-threads-internal.h
3074
3075         * dbus/dbus-message.c: ditto
3076
3077         * dbus/dbus-dataslot.c: ditto
3078
3079         * dbus/dbus-list.c: ditto
3080
3081         * dbus/dbus-internals.h: wait, just include
3082         dbus-threads-internal.h here
3083         
3084         * dbus/dbus-string.c (_dbus_string_copy_to_buffer): move back for
3085         use in main library
3086
3087         * dbus/dbus-sysdeps.c (_dbus_generate_random_bytes_buffer): new function
3088
3089 2005-02-24  Colin Walters  <walters@verbum.org>
3090
3091         * test/glib/Makefile.am (EXTRA_DIST): Add test-service-glib.xml
3092
3093 2005-02-24  John (J5) Palmieir  <johnp@redhat.com>
3094
3095         * glib/Makefile.am: added dbus-gobject.h to sources list
3096         so distcheck doesn't fail
3097         
3098 2005-02-24  Havoc Pennington  <hp@redhat.com>
3099
3100         * dbus/dbus-server.c, dbus/dbus-server-unix.c: change semantics so
3101         you must disconnect before unref, since locking and other things
3102         are screwed up otherwise. Fix assorted other locking stuff.
3103
3104         * dbus/dbus-signature.c (dbus_signature_iter_get_element_type):
3105         fix compilation
3106
3107         * dbus/dbus-threads-internal.h: move the mutex/condvar wrappers
3108         into a private header and don't export from the library
3109
3110         * throughout - call _dbus_thread_stuff vs. dbus_thread_stuff
3111
3112 2005-02-24  Colin Walters  <walters@verbum.org>
3113         
3114         * dbus/dbus-signature.c: New file; implements various functions
3115         related to type signatures.  Includes an interator for parsing,
3116         validation functions.
3117         (dbus_type_is_basic): Moved here from
3118         dbus-marshal-basic.c:_dbus_type_is_basic.
3119         (dbus_type_is_container): Moved here from
3120         dbus-marshal-basic.c:_dbus_type_is_container.
3121
3122         All callers of _dbus_type_is_container and _dbus_type_is_basic
3123         updated, and include dbus-signature.h.
3124
3125         * dbus/dbus-signature.h: New file; prototypes for the above.
3126
3127         * dbus/Makefile.am (DBUS_LIB_SOURCES): Add dbus-signature.c,
3128         dbus-signature.h.
3129
3130         * dbus/dbus-marshal-basic.c (map_type_char_to_type): New utility
3131         function factored out of _dbus_first_type_in_signature.
3132         (_dbus_first_type_in_signature_c_str): New function; returns first
3133         type code for a type signature character.
3134
3135         * dbus/dbus-marshal-basic.h: Prototype _dbus_first_type_in_signature_c_str,
3136         handle function moves.
3137
3138         * dbus/dbus-marshal-recursive.h: Export _dbus_type_signature_next.
3139
3140         * dbus/dbus-marshal-recursive.c (_dbus_type_signature_next): New
3141         function; skips to next complete type in type signature.
3142         Implemented using previous skip_one_complete_type.  Now
3143         skip_one_complete_type just delegates to
3144         _dbus_type_signature_next.
3145
3146         * dbus/dbus-marshal-basic.c (_dbus_type_is_basic): Moved
3147         to dbus-signature.c
3148         (_dbus_type_is_container): Ditto.
3149
3150         * doc/dbus-specification.xml: Update introspection sample to
3151         use real type signatures.
3152
3153         * dbus/dbus-test.h: Prototype signature test.
3154
3155         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): Run
3156         signature tests.
3157
3158         * dbus/dbus-protocol.h (DBUS_ERROR_INVALID_SIGNATURE): New error.
3159
3160 2005-02-23  John (J5) Palmieri  <johnp@redhat.com>
3161
3162         * python/dbus_bindings.pyx.in (PendingCall::get_reply):
3163         s/dbus_pending_call_get_reply/dbus_pending_call_steal_reply
3164
3165 2005-02-21  Colin Walters  <walters@verbum.org>
3166
3167         * dbus/dbus-test-main.c (main): Take optional specific test
3168         argument.
3169
3170         * dbus/dbus-test.c (run_test): New function, runs a test function
3171         with no data directory.
3172         (run_data_test): Like above, but takes data directory.
3173         (dbus_internal_do_not_use_run_tests): Take
3174         specific test argument.  Replace lots of cut n' paste code
3175         with run_test and run_data_test.
3176
3177         * dbus/dbus-test.h: Update prototype for
3178         dbus_internal_do_not_use_run_tests.
3179
3180 2005-02-20  Havoc Pennington  <hp@redhat.com>
3181
3182         Fix bugs reported by Daniel P. Berrange
3183         
3184         * dbus/dbus-server.c (_dbus_server_unref_unlocked): new function
3185         (protected_change_watch): new function
3186         (_dbus_server_toggle_watch, _dbus_server_remove_watch)
3187         (_dbus_server_add_watch): change to work like the
3188         dbus-connection.c equivalents; like those, probably kind of
3189         busted, but should at least mostly work for now
3190         (dbus_server_disconnect): drop the lock if we were already
3191         disconnected, patch from Daniel P. Berrange
3192
3193         * dbus/dbus-server.c (_dbus_server_toggle_timeout) 
3194         (_dbus_server_remove_timeout, _dbus_server_add_timeout): all the
3195         same stuff
3196
3197         * doc/TODO: todo about unscrewing this mess
3198
3199 2005-02-19  Colin Walters  <walters@verbum.org>
3200
3201         * glib/dbus-binding-tool-glib.c
3202         (dbus_binding_tool_output_glib_server): Fix iochannel refcounting.
3203
3204         * glib/dbus-glib-tool.c: Include dbus-glib-tool.h, as well
3205         as errno.h and sys/stat.h.
3206         (lose): New function, prints error with
3207         newline and exits.
3208         (lose_gerror): Similar, but takes GError for message.
3209         (main): Add --output argument to specify output file to write to,
3210         instead of always printing to stdout.  In this mode, determine
3211         timestamps on source files to see whether any are newer than the
3212         target file.  If not, exit.  Also convert a number of error
3213         messages to use lose (since it's shorter), and switch to using
3214         g_io_channel_shutdown.
3215
3216 2005-02-19  Havoc Pennington  <hp@redhat.com>
3217
3218         * glib/dbus-gobject.c
3219         (_dbus_glib_marshal_dbus_message_to_gvalue_array): add docs
3220
3221         * glib/dbus-glib.c: fix doxygen warnings
3222
3223         * glib/dbus-gparser.c (parse_annotation): error if an annotation
3224         is found on an <arg>
3225
3226 2005-02-17  Colin Walters  <walters@verbum.org>
3227
3228         * glib/dbus-gobject.h: Don't export
3229         _dbus_glib_marshal_dbus_message_to_gvalue_array.
3230         
3231         * glib/dbus-gobject.c (_dbus_glib_marshal_dbus_message_to_gvalue_array): Do rename.
3232         (invoke_object_method): Handle it.
3233
3234         * glib/dbus-gproxy.c (marshal_dbus_message_to_g_marshaller):
3235         Handle rename.
3236         
3237 2005-02-17  Colin Walters  <walters@verbum.org>
3238
3239         * bus/.cvsignore, doc/.cvsignore
3240         * test/data/valid-service-files/.cvsignore, test/glib/.cvsignore:
3241         Update.
3242
3243 2005-02-17  Colin Walters  <walters@verbum.org>
3244         
3245         * dbus/dbus-protocol.h (DBUS_SERVICE_ORG_FREEDESKTOP_DBUS):
3246         Rename to DBUS_SERVICE_DBUS.
3247         (DBUS_PATH_ORG_FREEDESKTOP_DBUS): Rename to DBUS_PATH_DBUS.
3248         (DBUS_PATH_ORG_FREEDESKTOP_LOCAL): Rename to DBUS_PATH_LOCAL.
3249         Change the value from "org.freedesktop.Local"
3250         to "org.freedesktop.DBus.Local".
3251         (DBUS_INTERFACE_ORG_FREEDESKTOP_DBUS): Rename to DBUS_INTERFACE_DBUS.
3252         (DBUS_INTERFACE_ORG_FREEDESKTOP_INTROSPECTABLE): Rename to
3253         DBUS_INTERFACE_INTROSPECTABLE.
3254         Change the value from "org.freedesktop.Introspectable"
3255         to "org.freedesktop.DBus.Introspectable".
3256         (DBUS_INTERFACE_ORG_FREEDESKTOP_PROPERTIES): Rename to
3257         DBUS_INTERFACE_PROPERTIES.
3258         Change the value from "org.freedesktop.Properties"
3259         to "org.freedesktop.DBus.Properties".
3260         (DBUS_INTERFACE_ORG_FREEDESKTOP_PEER): Rename to
3261         DBUS_INTERFACE_PEER.
3262         Change the value from "org.freedesktop.Peer"
3263         to "org.freedesktop.DBus.Peer".
3264         (DBUS_INTERFACE_ORG_FREEDESKTOP_LOCAL): 
3265         DBUS_INTERFACE_LOCAL.
3266         Change the value from "org.freedesktop.Local"
3267         to "org.freedesktop.DBus.Local".
3268
3269         All other users of those constants have been changed.
3270
3271         * bus/driver.c (bus_driver_handle_introspect): Use constants.
3272
3273         * glib/dbus-gobject.c (handle_introspect): Use constants.
3274
3275         * doc/dbus-faq.xml, doc/dbus-specification.xml: Update for rename.
3276
3277 2005-02-17  Colin Walters  <walters@verbum.org>
3278
3279         * glib/dbus-gparser.c (struct Parser): Add in_annotation boolean.
3280         (parse_node, parse_interface, parse_method, parse_signal)
3281         (parse_property, parse_annotation): Lose if we're currently in an
3282         annotation.
3283         (parse_annotation): New function.
3284         (parser_start_element, parser_end_element): Handle annotation.
3285         (parse_method, parse_interface): Remove support for c_name attribute,
3286         switch to annotations.
3287
3288         * glib/dbus-gidl.h (interface_info_get_binding_names)
3289         (method_info_get_binding_names)
3290         (interface_info_get_binding_name, method_info_get_binding_name)
3291         (interface_info_set_binding_name, method_info_set_binding_name):
3292         Remove.
3293         (interface_info_get_annotations, method_info_get_annotations)
3294         (interface_info_get_annotation, method_info_get_annotation)
3295         (interface_info_add_annotation, method_info_add_annotation):
3296         Prototype.
3297
3298         * glib/dbus-gidl.c (struct InterfaceInfo): Substitute "annotations"
3299         for "bindings".
3300         (struct MethodInfo): Ditto.
3301         Straightfoward conversion of binding methods into annotation methods
3302         as prototyped.
3303
3304         * glib/dbus-glib-tool.c (pretty_print): Print annotations.
3305
3306         * glib/dbus-binding-tool-glib.h (DBUS_GLIB_ANNOTATION_C_SYMBOL): Define.
3307
3308         * glib/dbus-binding-tool-glib.c (gather_marshallers, generate_glue):
3309         Use new annotation API.
3310
3311         * doc/introspect.dtd: Fix a number of DTD syntax errors.  Add
3312         annotation element.
3313         
3314         * doc/dbus-specification.xml: Discuss introspection annotations,
3315         include list of well-known annotations.
3316
3317         * test/glib/test-service-glib.xml: Make validate against new DTD.
3318
3319 2005-02-17  Colin Walters  <walters@verbum.org>
3320
3321         This patch is based on initial work from
3322         Paul Kuliniewicz <kuliniew@purdue.edu>.
3323
3324         * glib/dbus-gvalue.c (dbus_gvalue_init): New function; move
3325         initialization of GValue from dbus type to here.
3326         (dbus_gvalue_genmarshal_name_from_type): New function; generates a string
3327         for the "glib-genmarshal" program from a DBus type.
3328         (dbus_gvalue_binding_type_from_type): New function; turns a DBus type
3329         into the C name for it we use in the glib bindings.
3330         (dbus_gvalue_ctype_from_type): New function; maps a DBus type into a
3331         glib C type (not GValue).
3332         (dbus_gvalue_demarshal): invoke dbus_gvalue_init.
3333
3334         * glib/dbus-gutils.c (_dbus_gutils_wincaps_to_uscore): Moved here
3335         from dbus-gobject.c.
3336
3337         * glib/dbus-gutils.h: Prototype it.
3338
3339         * glib/dbus-gproxy.c: Include new dbus-gobject.h.
3340         (marshal_dbus_message_to_g_marshaller): Use new shared function
3341         dbus_glib_marshal_dbus_message_to_gvalue_array.
3342
3343         * glib/dbus-gparser.c (parse_interface, parse_method): Handle c_name attribute.
3344         Will be changed once we have annotations.
3345
3346         * glib/dbus-gobject.c: Change info_hash_mutex from GStaticMutex to
3347         GStaticRWLock.  Callers updated.
3348         (wincaps_to_uscore): Move to dbus-gutils.c.  Callers updated.
3349         (string_table_next): New function for iterating over zero-terminated
3350         string value array.
3351         (string_table_lookup): New function; retrieves specific entry in
3352         array.
3353         (get_method_data): New function; look up method data in object data chunk.
3354         (object_error_domain_prefix_from_object_info)
3355         (object_error_code_from_object_info): New functions, but not implemented yet.
3356         (method_interface_from_object_info): New function; retrieve interface name.
3357         (method_name_from_object_info): New function; retrieve method name.
3358         (method_arg_info_from_object_info): New function; retrieve argument data.
3359         (arg_iterate): New function; iterates over serialized argument data.
3360         (method_dir_signature_from_object_info): New function; returns a
3361         GString holding type signature for arguments for just one
3362         direction (input or output).
3363         (method_input_signature_from_object_info)
3364         (method_output_signature_from_object_info): New functions.
3365         (dbus_glib_marshal_dbus_message_to_gvalue_array): New shared function;
3366         converts dbus message arguments into a GValue array.  Used for both
3367         signal handling and method invocation.
3368         (struct DBusGlibWriteIterfaceData): New utility structure.
3369         (write_interface): New function; generate introspection XML for
3370         an interface.
3371         (introspect_interfaces): New function; gathers all interface->methods,
3372         generates introspection XML for them.
3373         (handle_introspect): Invoke introspect_interfaces.
3374         (get_object_property): Be sure to zero-initalize stack-allocated GValue.
3375         (lookup_object_and_method): New function; examines an incoming message
3376         and attempts to match it up (via interface, method name, and argument
3377         signature) with a known object and method.
3378         (gerror_domaincode_to_dbus_error_name): New function; converts a
3379         GError domain and code into a DBus error name.  Needs GError data
3380         added to object introspection to work well.
3381         (gerror_to_dbus_error_message): Creates a DBusMessage error return from
3382         GError.
3383         (invoke_object_method): New function to invoke an object method
3384         looked up via lookup_object_and_method.  Parses the incoming
3385         message, turns it into a GValue array, then invokes the marshaller
3386         specified in the DBusGMethodInfo.  Creates a new message with
3387         either return values or error message as appropriate.
3388         (gobject_message_function): Invoke lookup_object_and_method and
3389         invoke_object_method.
3390
3391         * glib/dbus-glib-tool.c: Include dbus-binding-tool-glib.h.
3392         (enum DBusBindingOutputMode): New enum for binding output modes.
3393         (pretty_print): Print binding names.
3394         (dbus_binding_tool_error_quark): GError bits.
3395         (version): Fix typo.
3396         (main): Create GIOChannel for output.  Parse new --mode argument,
3397         possible values are "pretty-print", "glib-server", "glib-client".
3398         Use mode to invoke appropriate function.
3399         
3400         * glib/dbus-gobject.h: Prototype dbus_glib_marshal_dbus_message_to_gvalue_array.
3401
3402         * glib/dbus-glib-tool.h: New header, just includes GError bits
3403         for now.
3404
3405         * glib/dbus-gidl.c (struct InterfaceInfo): Add bindings hashtable;
3406         maps binding style to name.
3407         (struct MethodInfo): Ditto.
3408         (get_hash_keys, get_hash_key): Utility function, returns keys for
3409         a GHashTable.
3410         (interface_info_new, method_info_new): Initialize bindings.
3411         (interface_info_unref, method_info_unref): Destroy bindings.
3412         (method_info_get_binding_names, method_info_get_binding_name)
3413         (interface_info_get_binding_names, interface_info_get_binding_name):
3414         Functions for retrieving binding names.
3415         (method_info_set_binding_name, interface_info_set_binding_name):
3416         Functions for setting binding names.
3417
3418         * glib/dbus-binding-tool-glib.h: New file, has prototypes
3419         for glib binding generation.
3420
3421         * glib/dbus-binding-tool-glib.c: New file, implements server-side
3422         and client-side glib glue generation.
3423
3424         * glib/Makefile.am (dbus_binding_tool_SOURCES): Add
3425         dbus-binding-tool-glib.c, dbus-binding-tool-glib.h,
3426         dbus-glib-tool.h.
3427
3428         * dbus/dbus-glib.h (struct DBusGMethodMarshaller): Remove in favor
3429         of using GClosureMarshal directly.
3430         (struct DBusGObjectInfo): Add n_infos member.
3431
3432         * test/glib/test-service-glib.xml: New file; contains introspection data
3433         for MyTestObject used in test-service-glib.c.
3434
3435         * test/glib/test-service-glib.c (enum MyObjectError): New GError enum.
3436         (my_object_do_nothing, my_object_increment, my_object_throw_error)
3437         (my_object_uppercase, my_object_many_args): New test methods.
3438         (main): Use dbus_g_object_class_install_info to include generated object
3439         info.
3440
3441         * test/glib/Makefile.am: Generate server-side glue for test-service-glib.c,
3442         as well as client-side bindings.
3443
3444         * test/glib/test-dbus-glib.c: Include test-service-glib-bindings.h.
3445         (main): Activate TestSuiteGLibService; test invoke a bunch of its methods
3446         using both the dbus_gproxy stuff directly as well as the generated bindings.
3447
3448 2005-02-15  Havoc Pennington  <hp@redhat.com>
3449
3450         * dbus/dbus-connection.c (dbus_connection_dispatch): always
3451         complete a pending call, don't run filters first.
3452
3453         * glib/dbus-gproxy.c (dbus_g_proxy_end_call): change to use
3454         dbus_pending_call_steal_reply
3455
3456         * dbus/dbus-pending-call.c (dbus_pending_call_block): just call
3457         _dbus_connection_block_pending_call
3458         (dbus_pending_call_get_reply): change to steal_reply and return a
3459         ref
3460
3461         * dbus/dbus-connection.c
3462         (dbus_connection_send_with_reply_and_block): port to work in terms
3463         of DBusPendingCall
3464         (_dbus_connection_block_pending_call): replace block_for_reply
3465         with this
3466
3467 2005-02-14  Havoc Pennington  <hp@redhat.com>
3468
3469         * dbus/dbus-userdb-util.c (_dbus_user_database_lookup_group):
3470         properly handle looking up group information by name; fix 
3471         from j@bootlab.org
3472
3473 2005-02-13  Havoc Pennington  <hp@redhat.com>
3474
3475         * dbus/dbus-connection.c (dbus_connection_return_message) 
3476         (dbus_connection_borrow_message): hold dispatch lock while message
3477         is outstanding
3478         (_dbus_connection_block_for_reply): hold dispatch lock while we
3479         block for the reply, so nobody steals our reply
3480         (dbus_connection_pop_message): hold the dispatch lock while we
3481         pluck the message
3482
3483 2005-02-13  Havoc Pennington  <hp@redhat.com>
3484
3485         * dbus/dbus-connection.c (_dbus_connection_acquire_dispatch)
3486         (_dbus_connection_release_dispatch)
3487         (_dbus_connection_acquire_io_path)
3488         (_dbus_connection_release_io_path): make the mutex and condvar
3489         control access to the "acquired" flag. Drop the connection lock
3490         while waiting on the condvar. Hopefully these are baby steps in
3491         roughly the right direction.
3492
3493 2005-02-13  Havoc Pennington  <hp@redhat.com>
3494
3495         * dbus/dbus-connection.c: use separate mutexes for the condition
3496         variables; this is some kind of baseline for sanity, but the
3497         condition variables still aren't used correctly afaict
3498
3499 2005-02-13  Havoc Pennington  <hp@redhat.com>
3500
3501         * dbus/dbus-object-tree.c (handle_default_introspect_and_unlock):
3502         fix a double-unlock
3503
3504         * dbus/dbus-connection.c
3505         (_dbus_connection_detach_pending_call_unlocked): add this
3506
3507         Initial semi-correct pass through to fix thread locking; there are
3508         still some issues with the condition variable paths I'm pretty
3509         sure
3510         
3511         * dbus/dbus-server.c: add a mutex on DBusServer and appropriate
3512         lock/unlock calls
3513
3514         * dbus/dbus-connection.c (_dbus_connection_do_iteration_unlocked):
3515         rename to add _unlocked
3516         (struct DBusConnection): move "dispatch_acquired" and
3517         "io_path_acquired" to use only one bit each.
3518         (CONNECTION_LOCK, CONNECTION_UNLOCK): add checks with !DBUS_DISABLE_CHECKS
3519         (dbus_connection_set_watch_functions): hacky fix to reentrancy
3520         (_dbus_connection_add_watch, _dbus_connection_remove_watch) 
3521         (_dbus_connection_toggle_watch, _dbus_connection_add_timeout) 
3522         (_dbus_connection_remove_timeout) 
3523         (_dbus_connection_toggle_timeout): drop lock when calling out to
3524         user functions; done in a hacky/bad way.
3525         (_dbus_connection_send_and_unlock): add a missing unlock
3526         (_dbus_connection_block_for_reply): add a missing unlock
3527
3528         * dbus/dbus-transport.c (_dbus_transport_get_is_authenticated):
3529         drop lock in a hacky probably unsafe way to call out to user
3530         function
3531
3532 2005-02-12  Havoc Pennington  <hp@redhat.com>
3533
3534         * tools/dbus-tree-view.c (info_set_func_text): display more
3535         details on args
3536
3537         * bus/driver.c (bus_driver_handle_list_services): list the bus
3538         driver
3539
3540         * glib/dbus-gparser.c (parse_arg): generate an arg name if none is supplied
3541
3542         * glib/dbus-gidl.c (signal_info_get_n_args): new function
3543         (method_info_get_n_args): new function
3544
3545 2005-02-12  Havoc Pennington  <hp@redhat.com>
3546
3547         * bus/driver.c (bus_driver_handle_introspect): add introspection
3548         for bus driver
3549
3550 2005-02-12  Havoc Pennington  <hp@redhat.com>
3551
3552         * bus/driver.c: put the signature of each bus driver method in the
3553         table of handlers and check it on incoming calls; this isn't
3554         really useful, but going to add introspect support in a minute.
3555
3556 2005-02-11  Joe Shaw  <joeshaw@novell.com>
3557
3558         * mono/Connection.cs: The unpredictability of finalizers in mono
3559         prevents us from deterministically disconnecting the filters from
3560         the Service class's finalizer, so move tracking of filters and
3561         matches here.  Add API for that.
3562
3563         * mono/Service.cs: Remove the code, add code which calls the
3564         methods now on the Connection class.
3565
3566 2005-02-11  John (J5) Palmieri  <johnp@redhat.com>
3567
3568         * python/dbus.py (class Sender): added to support dbus signals better
3569         (Bus::add_signal_receiver): added expand_args parameter which defaults
3570         to True.  When expand args is True the signal handler will pass the 
3571         message arguments as parameters to the signal handler.  If False
3572         revert to previous behavior where the signal handler must get the
3573         argument list from the message.  This is to help port applications
3574         like HAL that have a tendancy to send variable length argument lists.
3575         self._match_rule_to_receivers is now a dict of dicts.
3576         (Bus::remove_signal_receiver): pop handler off the dict intead of 
3577         removing it from a list
3578         (Bus::_signal_func): change signal handlers so that interface,
3579         signal_name, service, path and message are packed into a Sender
3580         object and that is passed to the handler.  If expand_args is True
3581         extract the args list from the message and append it to the parameter
3582         list
3583         
3584         * python/dbus_bindings.pyx.in (class Signature): added to support 
3585         signiature types
3586         (MessageIter::__init__): changed iteration limit to match D-BUS
3587         (MessageIter::get*): added INT16, UINT16, SIGNATURE, DICT_ENTRY, 
3588         STRUCT and VARIENT type support
3589         (MessageIter::python_value_to_dbus_sig): made recursive to support
3590         recursive types
3591         (MessageIter::append*): added Signature, dict, tuple 
3592         support
3593
3594         * python/examples/example-client.py: added examples of getting tuples
3595         and dicts
3596
3597         * python/examples/example-service.py: added examples of sending tuples
3598         and dicts
3599
3600         * python/examples/example-signal-recipient.py: Fixed to handle new
3601         signal callback format
3602
3603 2005-02-10  Havoc Pennington  <hp@redhat.com>
3604
3605         * test/glib/test-dbus-glib.c (main): fix so this test doesn't fail
3606         (call dbus_g_proxy_add_signal)
3607
3608         * dbus/dbus-server-unix.c (_dbus_server_new_for_tcp_socket):
3609         escape the hostname
3610         (_dbus_server_new_for_domain_socket): escape the path
3611
3612         * dbus/dbus-address.c (dbus_address_escape_value): new
3613         (dbus_address_unescape_value): new
3614         (dbus_parse_address): unescape values
3615
3616         * dbus/dbus-string.c (_dbus_string_append_byte_as_hex): new function
3617
3618         * doc/dbus-specification.xml: explain how to escape values in
3619         addresses
3620
3621 2005-02-10  Havoc Pennington  <hp@redhat.com>
3622
3623         * dbus/dbus-message-factory.c (generate_special): modify test to
3624         avoid using a non-basic dict key
3625
3626         * dbus/dbus-marshal-validate-util.c: add test for the below
3627
3628         * doc/dbus-specification.xml: require that dict keys are a basic
3629         type
3630
3631         * dbus/dbus-marshal-validate.c
3632         (_dbus_validate_signature_with_reason): require that dict key is a
3633         basic type
3634
3635 2005-02-10  Havoc Pennington  <hp@redhat.com>
3636
3637         * dbus/dbus-object-tree.c (handle_default_introspect_and_unlock):
3638         change to be _and_unlock instead of _unlocked
3639
3640         * dbus/dbus-connection.c
3641         (_dbus_connection_send_preallocated_unlocked_no_update): rename to
3642         have no_update so we can find this bug quickly in future
3643
3644 2005-02-10  Havoc Pennington  <hp@redhat.com>
3645
3646         * dbus/dbus-message-util.c (verify_test_message): tests for string
3647         array
3648
3649         * dbus/dbus-message.c (dbus_message_append_args_valist): add
3650         support for arrays of string/signature/path
3651
3652 2005-02-10  Joe Shaw  <joeshaw@novell.com>
3653
3654         * dbus/dbus-connection.c
3655         (_dbus_connection_queue_received_message_link,
3656         _dbus_connection_message_sent): Add the path to
3657         the verbose output.
3658         (_dbus_connection_send_preallocated_and_unlock): Added.  Calls
3659         _dbus_connection_send_preallocated_unlocked(), updated the
3660         dispatch status, and unlocks.  Fixes a bug where certain
3661         situations (like a broken pipe) could cause a Disconnect message
3662         to not be sent, tricking the bus into thinking a service was still
3663         there when the process had quit.
3664         (_dbus_connection_send_preallocated): Call
3665         _dbus_connection_send_preallocated_and_unlock().
3666         (_dbus_connection_send_and_unlock): Added.  Calls
3667         _dbus_connection_send_preallocated_and_unlock().
3668         (dbus_connection_send): Call _dbus_connection_send_and_unlock().
3669         (dbus_connection_send_with_reply): Update the dispatch status and
3670         unlock.
3671
3672         * mono/Service.cs (~Service): Added.  Removes the filter so that
3673         we don't get unmanaged code calling back into a GCed delegate.
3674         (RemoveFilter); Added.
3675
3676 2005-02-09  John (J5) Palmieri  <johnp@redhat.com>
3677
3678         * dbus/dbus-message.c (dbus_message_iter_open_container):
3679         - Removed check for iterator type being an array because
3680         get_arg_type does not work with writer iterators
3681         - Pass NULL to _dbus_type_writer_recurse if signiture is NULL
3682
3683 2005-02-07  Havoc Pennington  <hp@redhat.com>
3684
3685         * doc/dbus-specification.xml: some more language cleanups; add
3686         stuff about how to deal with invalid protocol and extension
3687         points; add _ to allowed chars in auth commands; add EXTENSION_
3688         auth command prefix
3689
3690 2005-02-06  Havoc Pennington  <hp@redhat.com>
3691
3692         * s/expected/required/ in a couple places for clarity
3693
3694 2005-02-07  Colin Walters  <walters@verbum.org>
3695
3696         * bus/selinux.c (bus_selinux_allows_send): Handle NULL for
3697         sender or proposed_recipient.
3698
3699 2005-02-06  Havoc Pennington  <hp@redhat.com>
3700
3701         * dbus/dbus-message-factory.c (generate_special): more tests
3702
3703         * dbus/dbus-marshal-validate.c (validate_body_helper): detect
3704         array length that exceeds the maximum
3705
3706 2005-02-05  Havoc Pennington  <hp@redhat.com>
3707
3708         * dbus/dbus-message-factory.c (generate_special): more test cases,
3709         increasing coverage
3710
3711         * dbus/dbus-marshal-validate.c (validate_body_helper): return the
3712         reason why a signature was invalid
3713
3714         * dbus/dbus-marshal-header.c (load_and_validate_field): fix to
3715         skip the length of the string before we look at it in validation
3716
3717         * dbus/dbus-string-util.c (_dbus_string_test): add tests for
3718         equal_substring
3719
3720         * dbus/dbus-message.c (_dbus_message_loader_new): default
3721         max_message_length to DBUS_MAXIMUM_MESSAGE_LENGTH
3722
3723 2005-02-05  Havoc Pennington  <hp@redhat.com>
3724
3725         * dbus/dbus-marshal-validate.c (validate_body_helper): fix crash
3726         if the signature of a variant was empty
3727         (_dbus_validate_signature_with_reason): catch "(a)" (array inside
3728         struct with no element type)
3729
3730         * dbus/dbus-message-factory.c (generate_uint32_changed): add more
3731         mangled messages to break things
3732
3733 2005-02-04  Havoc Pennington  <hp@redhat.com>
3734
3735         * glib/dbus-gproxy.c (dbus_g_proxy_disconnect_signal): use
3736         g_quark_try_string() so it actually can return 0
3737         (dbus_g_proxy_connect_signal): ditto
3738
3739 2005-02-04  Havoc Pennington  <hp@redhat.com>
3740
3741         * glib/dbus-gproxy.c (dbus_g_proxy_emit_remote_signal): fix a
3742         bogus warning
3743         (tristring_from_message): assert cleanly on null path/interface
3744         (should not be possible though I decided later)
3745         (dbus_g_proxy_dispose): move proxy manager unregistration here
3746         (DBUS_G_PROXY_DESTROYED): add this macro, and use it in a bunch of
3747         g_return_if_fail() checks
3748
3749 2005-02-04  Havoc Pennington  <hp@redhat.com>
3750
3751         * doc/Makefile.am (EXTRA_DIST): add DTDs to makefile
3752
3753         * doc/introspect.dtd: add introspect.dtd from David A. Wheeler
3754         (with some minor changes)
3755
3756         * doc/dbus-specification.xml: add deprecated attribute to
3757         introspection format
3758
3759 2005-01-31  Havoc Pennington  <hp@redhat.com>
3760
3761         * glib/dbus-gproxy.c: rewrite how signals work again, this time I
3762         think it's sort of right
3763
3764 2005-01-30  Havoc Pennington  <hp@redhat.com>
3765
3766         * tools/dbus-viewer.c: kind of half-ass hook up the option menu.
3767
3768 2005-01-30  Havoc Pennington  <hp@redhat.com>
3769
3770         * tools/dbus-names-model.c: dynamically watch NameOwnerChanged
3771
3772         * autogen.sh: change to autotools 1.9
3773
3774         * glib/dbus-gproxy.c: completely change how signals work
3775         (dbus_g_proxy_add_signal): new function to specify signature of a
3776         signal
3777         (dbus_g_proxy_emit_received): marshal the dbus message to GValues,
3778         and g_warning if the incoming message has the wrong signature.
3779
3780 2005-01-30  Havoc Pennington  <hp@redhat.com>
3781
3782         * tools/dbus-names-model.c (have_names_notify): fix this
3783
3784         * dbus/dbus-message.c (_dbus_message_iter_get_args_valist): clean
3785         up the string array handling a bit 
3786
3787 2005-01-30  Havoc Pennington  <hp@redhat.com>
3788
3789         * glib/dbus-glib.c (dbus_g_pending_call_set_notify): new function
3790         (dbus_g_pending_call_cancel): new function
3791
3792         * dbus/dbus-glib.h: move GType decls for connection/message here;
3793         * dbus/dbus-glib.c: move all the g_type and ref/unref stuff in
3794         here, just kind of rationalizing how we handle all that
3795
3796         * tools/dbus-names-model.c: new file for a tree model listing the
3797         services on a bus
3798
3799         * tools/dbus-tree-view.c (model_new): use proper typing on the
3800         model rows
3801
3802 2005-01-30  Havoc Pennington  <hp@redhat.com>
3803
3804         * glib/dbus-gmain.c: add a custom GSource back that just checks
3805         whether the message queue has anything in it; otherwise, there are 
3806         cases where we won't see messages in the queue since there was no 
3807         IO visible to the glib main loop
3808
3809         * dbus/dbus-connection-internal.h (_DBUS_DEFAULT_TIMEOUT_VALUE):
3810         increase default message timeout to 25 seconds
3811
3812 2005-01-30  Havoc Pennington  <hp@redhat.com>
3813
3814         * test/glib/test-profile.c (no_bus_stop_server): remove the
3815         warning about the g_warning that I just fixed
3816
3817         * glib/dbus-gmain.c: rewrite the main loop stuff to avoid the
3818         custom source, seems to be a lot easier to understand and work
3819         better.
3820
3821 2005-01-30  Havoc Pennington  <hp@redhat.com>
3822
3823         I think this main loop thing is conceptually broken, but here are 
3824         some band aids. I'll maybe rewrite it in a minute.
3825         
3826         * glib/dbus-gmain.c (add_timeout): timeout stuff doesn't use the
3827         custom GSource, so don't pass it in; confusing
3828         (gsource_server_finalize, gsource_connection_finalize): add
3829         finalize handlers that remove all the watches.  
3830
3831 2005-01-30  Havoc Pennington  <hp@redhat.com>
3832
3833         * glib/dbus-gobject.c (introspect_properties): fix the XML
3834         generated
3835
3836         * dbus/dbus-message.c (dbus_message_unref): add an in_cache flag
3837         which effectively detects the use of freed messages
3838
3839         * glib/dbus-gobject.c (handle_introspect): modify and return the
3840         reply message instead of the incoming message
3841
3842         * dbus/dbus-object-tree.c (handle_default_introspect_unlocked):
3843         gee, maybe it should SEND THE XML instead of just making a string
3844         and freeing it again ;-)
3845
3846         * tools/dbus-print-message.c (print_message): improve printing of
3847         messages
3848
3849         * configure.in: add debug-glib.service to the output
3850
3851 2005-01-30  Havoc Pennington  <hp@redhat.com>
3852
3853         dbus-viewer introspected and displayed the bus driver
3854         
3855         * dbus/dbus-object-tree.c 
3856         (object_tree_test_iteration): add tests for a handler registered on "/"
3857
3858         * dbus/dbus-object-tree.c
3859         (_dbus_decompose_path): fix to handle path "/" properly
3860         (run_decompose_tests): add tests for path decomposition
3861         
3862         * glib/dbus-gutils.c (_dbus_gutils_split_path): fix to handle "/"
3863         properly
3864
3865         * glib/dbus-gobject.c (handle_introspect): fix quotes
3866
3867         * test/glib/run-test.sh: support launching the bus, then running
3868         dbus-viewer
3869
3870         * test/glib/test-service-glib.c (main): put in a trivial gobject
3871         subclass and register it on the connection
3872
3873         * bus/driver.c (bus_driver_handle_introspect): implement
3874         introspection of the bus driver service
3875
3876         * dbus/dbus-protocol.h: add #defines for the XML namespace,
3877         identifiers, doctype decl
3878
3879         * bus/driver.c (bus_driver_handle_get_service_owner): handle
3880         attempts to get owner of DBUS_SERVICE_ORG_FREEDESKTOP_DBUS by 
3881         returning the service unchanged.
3882         (bus_driver_handle_message): remove old check for reply_serial in
3883         method calls, now the message type deals with that
3884         (bus_driver_handle_message): handle NULL interface
3885
3886         * glib/dbus-gproxy.c (dbus_g_proxy_get_bus_name): new function
3887
3888         * glib/dbus-gloader-expat.c (description_load_from_string): allow
3889         -1 for len
3890
3891         * tools/dbus-viewer.c: add support for introspecting a service on
3892         a bus
3893
3894         * glib/dbus-gproxy.c (dbus_g_pending_call_ref): add
3895         (dbus_g_pending_call_unref): add
3896
3897 2005-01-29  Havoc Pennington  <hp@redhat.com>
3898
3899         * tools/dbus-tree-view.c: add support for displaying properties.
3900         (run dbus-viewer with an introspect xml file as arg, then resize
3901         the window so the tree elements show up, not sure what that is)
3902
3903         * glib/dbus-gobject.c (handle_introspect): return
3904         org.freedesktop.Properties and org.freedesktop.Introspectable
3905         interfaces when we are introspected.
3906
3907         * doc/dbus-specification.xml: allow empty interface name when 
3908         Get/Set a property
3909
3910 2005-01-29  Havoc Pennington  <hp@redhat.com>
3911
3912         * glib/Makefile.am: rename dbus-glib-tool to dbus-binding-tool;
3913         though it uses glib, it could be extended for any binding in
3914         principle
3915
3916         * glib/dbus-gobject.c (gobject_message_function): change to the
3917         new way properties work
3918
3919         * dbus/dbus-protocol.h: add the new interfaces
3920
3921         * doc/dbus-specification.xml: document the introspection format,
3922         Introspectable interface, and add an org.freedesktop.Properties
3923         interface.
3924
3925         * glib/dbus-gparser.c: add support for a <property> element
3926
3927         * glib/dbus-gidl.c: add PropertyInfo
3928
3929         * glib/dbus-gobject.c (handle_introspect): put the outermost
3930         <node> outside the signal and property descriptions.
3931         (introspect_properties): export properties as <property> rather
3932         than as method calls
3933
3934 2005-01-28  Havoc Pennington  <hp@redhat.com>
3935
3936         * doc/TODO, doc/dbus-specification.xml: spec and TODO tweaks
3937         related to authentication protocol
3938
3939 2005-01-28  John (J5) Palmieri  <johnp@redhat.com>
3940
3941         * python/dbus_bindings.pyx.in: Updated to handle new D-BUS type system
3942                 - BUS_ACTIVATION -> BUS_STARTER
3943                 - DBUS_BUS_ACTIVATION -> DBUS_BUS_STARTER
3944                 - class MessageIter (__init__): Added recursion checking 
3945                 so we throw a nice error instead of just disconnecting from the
3946                 bus.
3947                 (get): Added arg_type parameter for recursion.
3948                 Removed the nil type
3949                 Added signiture type placeholder (not implemented)
3950                 Added struct type placeholder (not implemented)
3951                 Added varient type placeholder (not implemented)
3952                 Commented out dict type for now     
3953                 (get_element_type): renamed from get_array_type
3954                 (get_*): changed to use the dbus_message_iter_get_basic API
3955                 (get_*_array): removed in favor of recursive get_array method
3956                 (get_array): new recursive method which calls get to marshal
3957                 the elements of the array
3958                 (value_to_dbus_sig): New method returns the corrasponding
3959                 dbus signiture to a python value
3960                 (append): Comment out dict handling for now
3961                 Handle lists with the new recursive API
3962                 Comment out None handling for now
3963                 (append_nil): removed
3964                 (append_*): changed to use dbus_message_iter_append_basic API
3965                 (append_*_array): removed in favor of recursive append_array 
3966                 method
3967                 (__str__): Make it easier to print out recursive iterators
3968                 for debugging
3969                 - class Message (__str__): moved type inspection to the
3970                 MessageIter class' __str__ method
3971                 (get_iter): Added an append parameter wich defaults to False
3972                 If True use the new API's to create an append iterator
3973
3974         * python/dbus.py: Update to use new bindings API
3975                 - TYPE_ACTIVATION -> TYPE_STARTER
3976                 - class Bus (_get_match_rule): GetServiceOwner -> GetNameOwner
3977                 - class ActivationBus -> class StarterBus
3978                 - class RemoteObject (__call__): get an append iterator
3979                 - (_dispatch_dbus_method_call): get an append iterator
3980                 - class Object (emit_signal): get an append iterator
3981
3982         * python/examples/: Fixed up the examples to work with the new API
3983                 
3984 2005-01-28  Joe Shaw  <joeshaw@novell.com>
3985
3986         * configure.in: Bump version up to 0.30.
3987
3988         * HACKING: Add a release item to bump the version number up after 
3989         a release.
3990
3991 2005-01-28  Havoc Pennington  <hp@redhat.com>
3992
3993         * doc/dbus-specification.xml: update to describe 16-bit types and
3994         dict entries
3995
3996         * dbus/dbus-marshal-basic.c (_dbus_unpack_uint16): fix broken
3997         assertion
3998
3999         * dbus/dbus-protocol.h (DBUS_TYPE_DICT_ENTRY): add DICT_ENTRY as a
4000         type
4001
4002         * dbus/dbus-marshal-recursive.c: implement
4003
4004 2005-01-27  Havoc Pennington  <hp@redhat.com>
4005
4006         * dbus/dbus-arch-deps.h.in: add 16/32-bit types
4007
4008         * configure.in: find the right type for 16 and 32 bit ints as well
4009         as 64
4010
4011         * dbus/dbus-protocol.h (DBUS_TYPE_INT16, DBUS_TYPE_UINT16): add
4012         the 16-bit types so people don't have to stuff them in 32-bit or
4013         byte arrays.
4014
4015 2005-01-27  Havoc Pennington  <hp@redhat.com>
4016
4017         * dbus/dbus-message.c: byteswap the message if you init an
4018         iterator to read/write from it
4019         
4020         * dbus/dbus-marshal-byteswap.c: new file implementing 
4021         _dbus_marshal_byteswap()
4022
4023         * dbus/dbus-marshal-basic.c: add _dbus_swap_array()
4024
4025 2005-01-26  Havoc Pennington  <hp@redhat.com>
4026         
4027         * dbus/dbus-marshal-validate-util.c: break this out (and fix
4028         build, apparently - nobody noticed?)
4029         
4030 2005-01-26  Havoc Pennington  <hp@redhat.com>
4031
4032         * dbus/dbus-marshal-recursive.h: remove todo comment
4033
4034 2005-01-25  Joe Shaw  <joeshaw@novell.com>
4035
4036         * Land the mono binding changes to conform to the new APIs.
4037
4038         * mono/Makefile.am: Remove Custom.cs, DBusType/Custom.cs,
4039         DBusType/Dict.cs, and DBusType/Nil.cs from the build.
4040
4041         * mono/Arguments.cs (GetCodeAsString): Added.  Returns the dbus
4042         type code as a string.
4043         (InitAppending): Rename dbus_message_append_iter_init() to
4044         dbus_message_iter_init_append().
4045
4046         * mono/BusDriver.cs: Rename ServiceEventHandler to
4047         NameOwnerChangedHandler.  Rename GetServiceOwner to GetOwner.
4048         Rename ServiceOwnerChanged to NameOwnerChanged.
4049
4050         * mono/Connection.cs: Rename BaseService to UniqueName, and the
4051         underlying C call.
4052
4053         * mono/Custom.cs: Removed.  The CUSTOM type has been removed.
4054
4055         * mono/Service.cs: Rename Exists to HasOwner, internally rename
4056         dbus_bus_acquire_service() to dbus_bus_request_name().
4057
4058         * mono/DBusType/Array.cs (ctor): Use Type.GetElementType() instead
4059         of Type.UnderlyingSystemType to get the correct element type for
4060         the array.
4061         (ctor): Update code for new APIs: use dbus_message_iter_recurse(),
4062         dbus_message_get_{element|arg}_type() instead of
4063         dbus_message_iter_init_array_iterator().
4064         (Append): Replace dbus_message_iter_append_array() with
4065         dbus_message_iter_open_container() and
4066         dbus_message_iter_close_container().
4067
4068         * mono/DBusType/Custom.cs, mono/DBusType/Nil.cs: Removed.  These
4069         types have been removed.
4070         
4071         * mono/DBusType/*.cs: Replace calls of
4072         dbus_message_iter_get_[type]() to dbus_message_iter_get_basic(),
4073         but specify the type in the DllImport extern declaration.  Ditto
4074         for dbus_message_iter_append_[type]() ->
4075         dbus_message_iter_append_basic().
4076
4077         * mono/example/BusListener.cs: Update for ServiceEventHandler ->
4078         NameOwnerChangedHandler.
4079
4080 2005-01-25  John (J5) Palmieri  <johnp@redhat.com>
4081
4082         * python/dbus_bindings.pyx.in: Rename of methods and bindings
4083                 - get_base_service -> get_unique_name
4084                 - bus_get_base_service -> bus_get_unique_name
4085                 - dbus_bus_get_base_service -> dbus_bus_get_unique_name
4086                 - ACTIVATION_REPLY_ACTIVATED -> DBUS_START_REPLY_SUCCESS 
4087                 - ACTIVATION_REPLY_ALREADY_ACTIVE -> DBUS_START_REPLY_ALREADY_RUNNING
4088                 - bus_activate_service -> bus_start_service_by_name
4089                 - dbus_bus_activate_service -> dbus_bus_start_service_by_name
4090                 - bus_acquire_service -> bus_request_name
4091                 - dbus_bus_acquire_service -> dbus_bus_request_name
4092                 - bus_service_exists -> bus_name_has_owner
4093                 - dbus_bus_service_exists -> dbus_bus_name_has_owner
4094
4095         * python/dbus.py: Rename of methods
4096                 - activate_service -> start_service_by_name
4097                 - bus_acquire_service -> bus_request_name
4098                 - ACTIVATION_REPLY_ACTIVATED -> START_REPLY_SUCCESS 
4099                 - ACTIVATION_REPLY_ALREADY_ACTIVE -> START_REPLY_ALREADY_RUNNING
4100
4101         
4102 2005-01-24  Joe Shaw  <joeshaw@novell.com>
4103
4104         * dbus/dbus-connection.c (dbus_connection_dispatch): Print out the
4105         signature for the method that can't be found.
4106
4107         * dbus/dbus-message.c (dbus_message_iter_init): To check to see if
4108         the message has any arguments, we need to call
4109         _dbus_type_reader_get_current_type(), not
4110         _dbus_type_reader_has_next().
4111
4112 2005-01-24  Havoc Pennington  <hp@redhat.com>
4113
4114         * dbus/dbus-message-factory.c: more testing of message validation
4115
4116         * dbus/dbus-protocol.h (DBUS_MINIMUM_HEADER_SIZE): move to this
4117         header
4118
4119 2005-01-23  Havoc Pennington  <hp@redhat.com>
4120
4121         * dbus/dbus-message-factory.c, dbus/dbus-message-util.c: 
4122         get this all working, not many tests in the framework yet though
4123
4124 2005-01-22  Havoc Pennington  <hp@redhat.com>
4125
4126         * doc/dbus-faq.xml, doc/dbus-tutorial: add a FAQ and update
4127         tutorial, based on work from David Wheeler.
4128
4129 2005-01-21  Havoc Pennington  <hp@redhat.com>
4130
4131         * dbus/dbus-bus.c: add more return_if_fail checks
4132
4133         * dbus/dbus-message.c (load_message): have the "no validation"
4134         mode (have to edit the code to toggle the mode for now though)
4135
4136         * dbus/dbus-marshal-header.c (_dbus_header_load): have a mode that
4137         skips all validation; I want to use this at least for benchmark
4138         baseline, I'm not sure if it should be a publicly-available switch.
4139
4140 2005-01-21  Havoc Pennington  <hp@redhat.com>
4141
4142         * glib/dbus-gmain.c: don't put the GLib bindings in the same
4143         toplevel doxygen group as the low-level API stuff
4144
4145         * dbus/dbus.h: note that libdbus is the low-level API
4146
4147 2005-01-20  Havoc Pennington  <hp@redhat.com>
4148
4149         * update-dbus-docs.sh: script to update docs on the web site, only
4150         works for me though. neener.
4151
4152 2005-01-20  Havoc Pennington  <hp@redhat.com>
4153
4154         * dbus/dbus-sysdeps.c (_dbus_poll): amazingly, trying to compile
4155         code can reveal bugs in it
4156
4157 2005-01-20  Havoc Pennington  <hp@redhat.com>
4158
4159         * dbus/dbus-sysdeps.c (_dbus_poll): fix several bugs in the
4160         select() version, patches from Tor Lillqvist
4161
4162 2005-01-20  Havoc Pennington  <hp@redhat.com>
4163
4164         * doc/dbus-tutorial.xml: replace > with &gt;
4165
4166         * bus/services.c (bus_registry_acquire_service): validate the name
4167         and return a better error if it's no good.
4168
4169         * doc/dbus-specification.xml: note NO_AUTO_START change
4170
4171         * dbus/dbus-protocol.h (DBUS_HEADER_FLAG_NO_AUTO_START): change
4172         from AUTO_START, we're toggling the default
4173
4174         * bus/dispatch.c: adapt the tests to change of auto-start default
4175
4176 2005-01-18  Havoc Pennington  <hp@redhat.com>
4177
4178         * rename dbus-daemon-1 to dbus-daemon throughout
4179
4180 2005-01-18  Havoc Pennington  <hp@redhat.com>
4181
4182         * Throughout, grand renaming to strip out the use of "service",
4183         just say "name" instead (or "bus name" when ambiguous).  Did not
4184         change the internal code of the message bus itself, only the
4185         programmer-facing API and messages.
4186         
4187         * doc/dbus-specification.xml: further update the message bus section
4188         
4189         * bus/config-parser.c (all_are_equiv): fix bug using freed string
4190         in error case
4191
4192 2005-01-17  Havoc Pennington  <hp@redhat.com>
4193
4194         * dbus/dbus-types.h: remove 16-bit types since we don't use them
4195         ever
4196
4197         * dbus/dbus-marshal-validate.c (_dbus_validate_path): disallow any
4198         "invalid name character" not only non-ASCII
4199
4200         * doc/dbus-specification.xml: further update spec, message bus 
4201         parts are still out-of-date but the marshaling etc. stuff is now
4202         accurate-ish
4203
4204 2005-01-17  Havoc Pennington  <hp@redhat.com>
4205
4206         * doc/dbus-specification.xml: partially update spec
4207
4208 2005-01-17  Havoc Pennington  <hp@redhat.com>
4209
4210         * Throughout, align variant bodies according to the contained
4211         type, rather than always to 8. Should save a fair bit of space in
4212         message headers.
4213         
4214         * dbus/dbus-marshal-validate.c (_dbus_validate_body_with_reason):
4215         fix handling of case where p == end
4216
4217         * doc/TODO: remove the dbus_bool_t item and variant alignment items
4218
4219 2005-01-17  Havoc Pennington  <hp@redhat.com>
4220
4221         * dbus/dbus-types.h: hardcode dbus_bool_t to 32 bits
4222
4223         * Throughout: modify DBUS_TYPE_BOOLEAN to be a 32-bit type instead
4224         of an 8-bit type. Now dbus_bool_t is the type to use whenever you 
4225         are marshaling/unmarshaling a boolean.
4226
4227 2005-01-16  Havoc Pennington  <hp@redhat.com>
4228
4229         This is about it on what can be disabled/deleted from libdbus
4230         easily, back below 150K anyhow. Deeper cuts are more work than 
4231         just turning the code off as I've done here.
4232         
4233         * dbus/dbus-marshal-basic.c (_dbus_pack_int32): we don't need the
4234         signed int convenience funcs
4235
4236         * dbus/dbus-internals.c (_dbus_verbose_real): omit when not in
4237         verbose mode
4238
4239         * dbus/dbus-string-util.c, dbus/dbus-string.c: more breaking
4240         things out of libdbus
4241
4242         * dbus/dbus-sysdeps.c, dbus/dbus-sysdeps-util.c: same
4243         
4244         * dbus/dbus-hash.c: purge the TWO_STRINGS crap (well, make it
4245         tests-enabled-only, though it should probably be deleted)
4246
4247         * dbus/dbus-message-util.c: same stuff
4248
4249         * dbus/dbus-auth-util.c: same stuff
4250
4251 2005-01-16  Havoc Pennington  <hp@redhat.com>
4252
4253         * dbus/dbus-userdb-util.c: split out part of dbus-userdb.c
4254
4255         * dbus/dbus-sysdeps.c (_dbus_uid_from_string): move here to pave
4256         way for stripping down dbus-userdb.c stuff included in libdbus.
4257         Rename _dbus_parse_uid for consistency.
4258
4259 2005-01-16  Havoc Pennington  <hp@redhat.com>
4260
4261         * dbus/dbus-internals.c (_dbus_real_assert): print the function
4262         name the assertion failed in
4263
4264         * dbus/dbus-internals.h (_dbus_return_if_fail) 
4265         (_dbus_return_val_if_fail): assert that the name of the function
4266         containing the check doesn't start with '_', since we only want to 
4267         use checks on public functions
4268         
4269         * dbus/dbus-connection.c (_dbus_connection_ref_unlocked): change
4270         checks to assertions
4271
4272         * dbus/dbus-marshal-header.c (_dbus_header_set_field_basic):
4273         change checks to asserts for private function
4274
4275         * dbus/dbus-message.c (_dbus_message_set_serial): checks
4276         to asserts for private function
4277
4278         * dbus/dbus-marshal-recursive.c (skip_one_complete_type): remove
4279         broken assertion that was breaking make check
4280         (_dbus_type_reader_array_is_empty): remove this rather than fix
4281         it, was only used in assertions
4282
4283 2005-01-16  Havoc Pennington  <hp@redhat.com>
4284
4285         * test/unused-code-gc.py: hacky script to find code that's used
4286         only by the bus (not libdbus) or used only by tests or not used at
4287         all. It has some false alarms, but looks like we can clean up a
4288         lot of size from libdbus.
4289
4290         * dbus/dbus-sysdeps.c, dbus/dbus-sysdeps-utils.c,
4291         dbus/Makefile.am: initially move 10K of binary size out of libdbus
4292         
4293 2005-01-16  Havoc Pennington  <hp@redhat.com>
4294
4295         * Add and fix docs according to Doxygen warnings throughout
4296         source.
4297         
4298         * dbus/dbus-marshal-recursive.c
4299         (_dbus_type_reader_array_is_empty): change this to just call
4300         array_reader_get_array_len() and make it static
4301
4302         * dbus/dbus-message.c (dbus_message_iter_get_element_type): rename
4303         from get_array_type
4304         (dbus_message_iter_init_append): rename from append_iter_init
4305
4306         * dbus/dbus-marshal-recursive.c
4307         (_dbus_type_reader_get_element_type): rename from
4308         _dbus_type_reader_get_array_type
4309
4310 2005-01-15  Havoc Pennington  <hp@redhat.com>
4311
4312         * test/glib/test-profile.c (with_bus_server_filter): fix crash
4313
4314         * dbus/dbus-marshal-basic.c (_dbus_unpack_uint32): inline as macro
4315         when DBUS_DISABLE_ASSERT
4316         (_dbus_marshal_set_basic): be sure we align for the string length
4317
4318         * dbus/dbus-marshal-recursive.c (skip_one_complete_type): make
4319         this look faster
4320
4321         * dbus/dbus-string.c (_dbus_string_get_const_data_len): add an
4322         inline macro version
4323         (_dbus_string_set_byte): provide inline macro version
4324
4325 2005-01-15  Havoc Pennington  <hp@redhat.com>
4326
4327         * Land the new message args API and type system.
4328
4329         This patch is huge, but the public API change is not 
4330         really large. The set of D-BUS types has changed somewhat, 
4331         and the arg "getters" are more geared toward language bindings;
4332         they don't make a copy, etc.
4333
4334         There are also some known issues. See these emails for details
4335         on this huge patch:
4336         http://lists.freedesktop.org/archives/dbus/2004-December/001836.html
4337         http://lists.freedesktop.org/archives/dbus/2005-January/001922.html
4338         
4339         * dbus/dbus-marshal-*: all the new stuff
4340
4341         * dbus/dbus-message.c: basically rewritten
4342
4343         * dbus/dbus-memory.c (check_guards): with "guards" enabled, init
4344         freed blocks to be all non-nul bytes so using freed memory is less
4345         likely to work right
4346
4347         * dbus/dbus-internals.c (_dbus_test_oom_handling): add
4348         DBUS_FAIL_MALLOC=N environment variable, so you can do
4349         DBUS_FAIL_MALLOC=0 to skip the out-of-memory checking, or
4350         DBUS_FAIL_MALLOC=10 to make it really, really, really slow and
4351         thorough.
4352
4353         * qt/message.cpp: port to the new message args API
4354         (operator<<): use str.utf8() rather than str.unicode()
4355         (pretty sure this is right from the Qt docs?)
4356
4357         * glib/dbus-gvalue.c: port to the new message args API
4358
4359         * bus/dispatch.c, bus/driver.c: port to the new message args API
4360
4361         * dbus/dbus-string.c (_dbus_string_init_const_len): initialize the
4362         "locked" flag to TRUE and align_offset to 0; I guess we never
4363         looked at these anyhow, but seems cleaner.
4364
4365         * dbus/dbus-string.h (_DBUS_STRING_ALLOCATION_PADDING):
4366         move allocation padding macro to this header; use it to implement
4367         (_DBUS_STRING_STATIC): ability to declare a static string.
4368
4369         * dbus/dbus-message.c (_dbus_message_has_type_interface_member):
4370         change to return TRUE if the interface is not set.
4371
4372         * dbus/dbus-string.[hc]: move the D-BUS specific validation stuff
4373         to dbus-marshal-validate.[hc]
4374
4375         * dbus/dbus-marshal-basic.c (_dbus_type_to_string): move here from
4376         dbus-internals.c
4377
4378         * dbus/Makefile.am: cut over from dbus-marshal.[hc]
4379         to dbus-marshal-*.[hc]
4380
4381         * dbus/dbus-object-tree.c (_dbus_decompose_path): move this
4382         function here from dbus-marshal.c
4383
4384 2005-01-12  Joe Shaw  <joeshaw@novell.com>
4385
4386         * NEWS: Update for 0.23.
4387
4388         * configure.in: Release 0.23.
4389
4390 2005-01-12  Joe Shaw  <joeshaw@novell.com>
4391
4392         * mono/Makefile.am, mono/example/Makefile.am: Always build the 
4393         dbus DLL with --debug.  Clean up after the .mdb files this leaves
4394         behind.
4395
4396         * mono/doc/Makefile.am: Need to uninstall the docs on "make
4397         uninstall"
4398
4399         * mono/Arguments.cs (GetDBusTypeConstructor): If the type
4400         is an enum, get the enum's underlying type.  Another mono
4401         1.1.3 fix.
4402
4403 2005-01-11  Joe Shaw  <joeshaw@novell.com>
4404
4405         Patch from Sjoerd Simons <sjoerd@luon.net>
4406
4407         * mono/Makefile.am, mono/example/Makefile.am: Don't redefine
4408         DESTDIR.  It breaks stuff.
4409
4410 2005-01-11  Joe Shaw  <joeshaw@novell.com>
4411
4412         Patch from Tambet Ingo <tambet@ximian.com>
4413
4414         * mono/DBusType/Array.cs (Get): Get the underlying element type by
4415         calling type.GetElementType().  The code previously depended on
4416         broken Mono behavior, which was fixed in Mono 1.1.3.
4417
4418         * mono/DBusType/Dict.cs (constructor): Fix the parameters for
4419         Activator.CreateInstance() so that the class's constructor is
4420         called with the right parameters.
4421
4422 2005-01-11  Joe Shaw  <joeshaw@novell.com>
4423
4424         Patch from Timo Teräs <ext-timo.teras@nokia.com>
4425
4426         * dbus/dbus-connection.c
4427         (_dbus_connection_queue_received_message_link): Call
4428         _dbus_connection_remove_timeout() instead of the _locked()
4429         variant, since it's always called from
4430         _dbus_connection_handle_watch(), which handles the locking.
4431         Removed the _locked() variant since it's no longer used.
4432
4433 2005-01-03  Havoc Pennington  <hp@redhat.com>
4434
4435         * dbus/dbus-internals.h: I'm an idiot, _dbus_assert certainly can
4436         return
4437         
4438 2004-12-26  Havoc Pennington  <hp@redhat.com>
4439
4440         * dbus/dbus-internals.h: add _DBUS_GNUC_NORETURN to _dbus_assert
4441
4442 2005-01-03  Havoc Pennington  <hp@redhat.com>
4443
4444         * dbus/dbus-sysdeps.c (_dbus_sysdeps_test): fix using == on
4445         floating point
4446
4447         * dbus/dbus-string.c (_dbus_string_insert_alignment): new function
4448
4449 2005-01-02  Havoc Pennington  <hp@redhat.com>
4450
4451         * dbus/dbus-internals.h (_DBUS_ALIGN_OFFSET): new macro
4452
4453 2005-01-01  Havoc Pennington  <hp@redhat.com>
4454
4455         * configure.in: add -Wfloat-equal
4456
4457 2005-01-01  Havoc Pennington  <hp@redhat.com>
4458
4459         * dbus/dbus-sysdeps.h: add _DBUS_DOUBLES_BITWISE_EQUAL macro, 
4460         for a variety of reasons '==' doesn't do this.
4461
4462 2004-12-31  Havoc Pennington  <hp@redhat.com>
4463
4464         * dbus/dbus-string.c (_dbus_string_equal_substrings): new function
4465         I keep wishing I had
4466
4467 2004-12-30  John (J5) Palmieri  <johnp@redhat.com>
4468
4469         * python/dbus.py: s/ACTIVATION_REPLY_ACTIVE/ACTIVATION_REPLY_ACTIVATED
4470
4471 2004-12-30  John (J5) Palmieri  <johnp@redhat.com>
4472
4473         * python/dbus_bindings.pyx.in: Change DBUS_ACTIVATION_REPLY_ACTIVATED
4474         and DBUS_ACTIVATION_REPLY_ALREADY_ACTIVE to match the values in
4475         dbus-protocol.h.  Because they are defines and not enums they are not
4476         autogenerated.
4477
4478 2004-12-26  John (J5) Palmieri  <johnp@redhat.com>
4479
4480         * python/dbus_bindings.pyx.in (bus_activate_service): Bind
4481         dbus_bus_activate_service
4482
4483         * python/dbus.py (Bus.activate_service): activate a service on the
4484         bus.
4485
4486 2004-12-24  Havoc Pennington  <hp@redhat.com>
4487
4488         * test/decode-gcov.c: change to use .gcno and .gcda files, but the
4489         file format has also changed and I haven't adapted to that yet
4490         
4491         * Makefile.am: load .gcno files from latest gcc
4492
4493 2004-12-23  John (J5) Palmieri  <johnp@redhat.com>
4494         * Patch from Rob Taylor <robtaylor@fastmail.fm>
4495
4496         * python/dbus_bindings.pyx.in (bus_get_unix_user): New
4497         lowlevel binding
4498
4499         * python/dbus.py (get_unix_user): Added binding to 
4500         call dbus_bindings.bus_get_unix_user
4501
4502         * python/extract.py: Modified the proto_pat regex to
4503         handle unsigned long
4504
4505 2004-12-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4506
4507         * dbus/make-dbus-glib-error-enum.sh: omit the function keyword for
4508         better POSIX compliance.
4509
4510 2004-12-19  Havoc Pennington  <hp@redhat.com>
4511
4512         * dbus/dbus-string.c (_dbus_string_insert_4_aligned) 
4513         (_dbus_string_insert_8_aligned): new functions
4514
4515         * dbus/dbus-string.c (_dbus_string_alloc_space): new function
4516
4517 2004-12-18  Havoc Pennington  <hp@redhat.com>
4518
4519         * dbus/dbus-string.c (_dbus_string_validate_ascii): use ISASCII
4520         macro
4521
4522         * dbus/dbus-message.c: fix a comment, and add a still-unused
4523         not-implemented function
4524
4525         * dbus/dbus-marshal.h: fix comment
4526
4527         * dbus/dbus-internals.h (_DBUS_ISASCII): new macro
4528
4529 2004-12-17  Joe Shaw  <joeshaw@novell.com>
4530
4531         * mono/DBusType/Byte.cs, mono/DBusType/Int32.cs,
4532         mono/DBusType/Int64.cs, mono/DBusType/UInt32.cs,
4533         mono/DBusType/UInt64.cs: Use Enum.GetUnderlyingType() instead of
4534         Type.UnderlyingSystemType to get the actual system type
4535         underneath.  This code previously depended on the broken Mono
4536         behavior, which was fixed in 1.1.3.
4537
4538 2004-11-27  Havoc Pennington  <hp@redhat.com>
4539
4540         * dbus/dbus-string.h (_dbus_string_get_byte): inline when asserts
4541         are disabled
4542         (_dbus_string_get_const_data): inline when asserts are disabled
4543
4544         * dbus/dbus-message.c: record the _dbus_current_generation of
4545         creation so we can complain if dbus_shutdown() is used improperly.
4546         Do this only if checks are enabled.
4547
4548         * dbus/dbus-connection.c: ditto
4549         
4550 2004-11-26  Havoc Pennington  <hp@redhat.com>
4551
4552         * test/glib/test-profile.c: add with_bus mode to profile echoes
4553         that go through the bus.
4554
4555         * test/glib/run-test.sh: add ability to run test-profile
4556
4557         * bus/dbus-daemon-1.1.in: fix to say that SIGHUP causes partial
4558         config file reload.
4559
4560 2004-11-26  Havoc Pennington  <hp@redhat.com>
4561
4562         * test/glib/test-profile.c: clean up how the fake_malloc_overhead
4563         thing was implemented
4564
4565 2004-11-26  Havoc Pennington  <hp@redhat.com>
4566
4567         * test/glib/test-profile.c: tweak a bit, add support for some
4568         made-up minimal malloc overhead with plain sockets, since in 
4569         real life some sort of buffers are unavoidable thus we could 
4570         count them in the theoretical best case
4571
4572 2004-11-26  Havoc Pennington  <hp@redhat.com>
4573
4574         * dbus/dbus-message.c (dbus_message_cache_or_finalize): fix bug
4575         where I was trying to cache one too many messages
4576
4577 2004-11-26  Havoc Pennington  <hp@redhat.com>
4578
4579         * dbus/dbus-message.c: reimplement message cache as an array which 
4580         makes the cache about twice as fast and saves maybe 1.5% overall
4581
4582 2004-11-26  Havoc Pennington  <hp@redhat.com>
4583
4584         * dbus/dbus-threads.c (init_global_locks): forgot to put the
4585         message cache lock here
4586
4587 2004-11-26  Havoc Pennington  <hp@redhat.com>
4588
4589         * dbus/dbus-message.c (struct DBusMessage): put the locked bit and
4590         the "char byte_order" next to each other to save 4 bytes
4591         (dbus_message_new_empty_header): reduce preallocation, since the
4592         message cache should achieve a similar effect
4593         (dbus_message_cache_or_finalize, dbus_message_get_cached): add a
4594         message cache that keeps a few DBusMessage around in a pool,
4595         another 8% speedup or so.
4596
4597         * dbus/dbus-dataslot.c (_dbus_data_slot_list_clear): new function
4598
4599 2004-11-25  Havoc Pennington  <hp@redhat.com>
4600
4601         * dbus/dbus-transport-unix.c (unix_do_iteration): if we're going
4602         to write, without reading or blocking, try it before the poll()
4603         and skip the poll() if nothing remains to write. This is about a
4604         3% speedup in the echo client/server
4605
4606 2004-11-25  Havoc Pennington  <hp@redhat.com>
4607
4608         The primary change here is to always write() once before adding
4609         the write watch, which gives us about a 10% performance increase.
4610         
4611         * dbus/dbus-transport-unix.c: a number of modifications to cope
4612         with removing messages_pending
4613         (check_write_watch): properly handle
4614         DBUS_AUTH_STATE_WAITING_FOR_MEMORY; adapt to removal of
4615         messages_pending stuff
4616         (check_read_watch): properly handle WAITING_FOR_MEMORY and
4617         AUTHENTICATED cases
4618         (unix_handle_watch): after writing, see if the write watch can be
4619         removed
4620         (unix_do_iteration): assert that write_watch/read_watch are
4621         non-NULL rather than testing that they aren't, since they 
4622         aren't allowed to be NULL. check_write_watch() at the end so 
4623         we add the watch if we did not finish writing (e.g. got EAGAIN)
4624
4625         * dbus/dbus-transport-protected.h: remove messages_pending call,
4626         since it resulted in too much inefficient watch adding/removing; 
4627         instead we now require that the transport user does an iteration 
4628         after queueing outgoing messages, and after trying the first
4629         write() we add a write watch if we got EAGAIN or exceeded our 
4630         max bytes to write per iteration setting
4631
4632         * dbus/dbus-string.c (_dbus_string_validate_signature): add this
4633         function
4634
4635         * dbus/dbus-server-unix.c (unix_finalize): the socket name was
4636         freed and then accessed, valgrind flagged this bug, fix it
4637
4638         * dbus/dbus-message.c: fix several bugs where HEADER_FIELD_LAST was taken
4639         as the last valid field plus 1, where really it is equal to the
4640         last valid field. Corrects some message corruption issues.
4641
4642         * dbus/dbus-mainloop.c: verbosity changes
4643
4644         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): handle OOM
4645         instead of aborting in one of the test codepaths
4646
4647         * dbus/dbus-internals.c (_dbus_verbose_real): fix a bug that
4648         caused not printing the pid ever again if a verbose was missing
4649         the newline at the end
4650         (_dbus_header_field_to_string): add HEADER_FIELD_SIGNATURE
4651
4652         * dbus/dbus-connection.c: verbosity changes; 
4653         (dbus_connection_has_messages_to_send): new function
4654         (_dbus_connection_message_sent): no longer call transport->messages_pending
4655         (_dbus_connection_send_preallocated_unlocked): do one iteration to
4656         try to write() immediately, so we can avoid the write watch. This
4657         is the core purpose of this patchset
4658         (_dbus_connection_get_dispatch_status_unlocked): if disconnected,
4659         dump the outgoing message queue, so nobody will get confused
4660         trying to send them or thinking stuff is pending to be sent
4661
4662         * bus/test.c: verbosity changes
4663
4664         * bus/driver.c: verbosity/assertion changes
4665
4666         * bus/dispatch.c: a bunch of little tweaks to get it working again
4667         because this patchset changes when/where you need to block.
4668
4669 2004-11-23  Havoc Pennington  <hp@redhat.com>
4670
4671         * test/glib/test-profile.c: modify to accept a plain_sockets
4672         argument in which case it will bench plain sockets instead of
4673         libdbus, for comparison purposes.
4674
4675 2004-11-22  Havoc Pennington  <hp@redhat.com>
4676
4677         * test/glib/test-profile.c (N_CLIENT_THREADS): run multiple
4678         threads for more time, so sysprof can get a grip on it.
4679
4680         * dbus/dbus-string.c (_dbus_string_validate_utf8): remove
4681         pointless variable
4682
4683 2004-11-13  Havoc Pennington  <hp@redhat.com>
4684
4685         * test/glib/test-profile.c: fix this thing up a bit
4686
4687         * dbus/dbus-message.c (dbus_message_new_empty_header): increase
4688         preallocation sizes by a fair bit; not sure if this will be an
4689         overall performance win or not, but it does reduce reallocs.
4690
4691         * dbus/dbus-string.c (set_length, reallocate_for_length): ignore
4692         the test hack that forced constant realloc if asserts are
4693         disabled, so we can profile sanely. Sprinkle in some
4694         _DBUS_UNLIKELY() which are probably pointless, but before I
4695         noticed the real performance problem I put them in.
4696         (_dbus_string_validate_utf8): micro-optimize this thing a little
4697         bit, though callgrind says it didn't help; then special-case
4698         ascii, which did help a lot; then be sure we detect nul bytes as
4699         invalid, which is a bugfix.
4700         (align_length_then_lengthen): add some more _DBUS_UNLIKELY
4701         superstition; use memset to nul the padding instead of a manual
4702         loop.
4703         (_dbus_string_get_length): inline this as a
4704         macro; it showed up in the profile because it's used for loop
4705         tests and so forth
4706
4707 2004-11-10  Colin Walters  <walters@verbum.org>
4708
4709         * dbus/dbus-spawn.c (check_babysit_events): Handle EINTR,
4710         for extra paranoia.
4711
4712 2004-11-09  Colin Walters  <walters@verbum.org>
4713
4714         * dbus/dbus-string.c (_dbus_string_get_length): New
4715         function, writes DBusString to C buffer.
4716
4717         * dbus/dbus-string.h: Prototype it.
4718
4719         * dbus/dbus-message.c (dbus_message_type_to_string): New
4720         function, converts message type into C string.
4721
4722         * dbus/dbus-message.h: Prototype it.
4723
4724         * bus/selinux.c (bus_selinux_check): Take source pid,
4725         target pid, and audit data.  Pass audit data to
4726         avc_has_perm.
4727         (log_audit_callback): New function, appends extra
4728         audit information.
4729         (bus_selinux_allows_acquire_service): Also take
4730         service name, add it to audit data.
4731         (bus_selinux_allows_send): Also take message
4732         type, interface, method member, error name,
4733         and destination, and add them to audit data.
4734         (log_cb): Initialize func_audit.
4735         
4736         * bus/selinux.h (bus_selinux_allows_acquire_service)
4737         (bus_selinux_allows_send): Update prototypes 
4738
4739         * bus/services.c (bus_registry_acquire_service): Pass
4740         service name to bus_selinux_allows_acquire_service.
4741
4742         * bus/bus.c (bus_context_check_security_policy): Pass
4743         additional audit data.  Move assignment of dest
4744         to its own line.
4745
4746 2004-11-07  Colin Walters  <walters@verbum.org>
4747
4748         * dbus/dbus-transport-unix.c (do_authentication): Always
4749         initialize auth_completed.
4750         
4751 2004-11-07  Colin Walters  <walters@verbum.org>
4752
4753         * bus/bus.c (load_config): Break into three
4754         separate functions: process_config_first_time_only,
4755         process_config_every_time, and process_config_postinit.
4756         (process_config_every_time): Move call of
4757         bus_registry_set_service_context_table into
4758         process_config_postinit.
4759         (process_config_postinit): New function, does
4760         any processing that needs to happen late
4761         in initialization (and also on reload).
4762         (bus_context_new): Instead of calling load_config,
4763         open config parser here and call process_config_first_time_only
4764         and process_config_every_time directly.  Later, after
4765         we have forked but before changing UID,
4766         invoke bus_selinux_full_init, and then call
4767         process_config_postinit.
4768         (bus_context_reload_config): As in bus_context_new,
4769         load parse file inside here, and call process_config_every_time
4770         and process_config_postinit.
4771
4772         * bus/services.h, bus/services.c
4773         (bus_registry_set_service_context_table): Rename
4774         from bus_registry_set_sid_table.  Take string hash from config
4775         parser, and convert them here into SIDs.
4776
4777         * bus/config-parser.c (struct BusConfigParser): Have
4778         config parser only store a mapping of service->context
4779         string.
4780         (merge_service_context_hash): New function.
4781         (merge_included): Merge context string hashes instead
4782         of using bus_selinux_id_table_union.
4783         (bus_config_parser_new): Don't use bus_selinux_id_table_new;
4784         simply create a new string hash.
4785         (bus_config_parser_unref): Unref it.
4786         (start_selinux_child): Simply insert strings into hash,
4787         don't call bus_selinux_id_table_copy_over.
4788
4789         * bus/selinux.h, bus/selinux.c (bus_selinux_id_table_union)
4790         (bus_selinux_id_table_copy_over): Delete.
4791
4792 2004-11-03  Colin Walters  <walters@verbum.org>
4793
4794         * bus/selinux.c (bus_selinux_pre_init): Kill some unused
4795         variables.
4796         
4797 2004-11-03  Colin Walters  <walters@verbum.org>
4798
4799         * bus/test-main.c (test_pre_hook): Fix test logic,
4800         thanks Joerg Barfurth <Joerg.Barfurth@Sun.COM>.
4801
4802 2004-11-02  Colin Walters  <walters@redhat.com>
4803
4804         * bus/selinux.c (bus_selinux_init): Split into two functions,
4805         bus_selinux_pre_init and bus_selinux_post_init.
4806         (bus_selinux_pre_init): Just determine whether SELinux is
4807         enabled.
4808         (bus_selinux_post_init): Do everything else.
4809
4810         * bus/main.c (main): Call bus_selinux_pre_init before parsing
4811         config file, and bus_selinux_post_init after.  This ensures that
4812         we don't lose the policyreload notification thread that
4813         bus_selinux_init created before forking previously.
4814         
4815         * bus/test-main.c (test_pre_hook): Update for split.
4816
4817 2004-10-31  Owen Fraser-Green  <owen@discobabe.net>
4818
4819         Patch from Johan Fischer <linux@fischaz.com>
4820         
4821         * mono/doc/Makefile.am (install-data-local): Added directory
4822         install for DESTDIR
4823
4824 2004-10-29  Colin Walters  <walters@redhat.com>
4825
4826         * dbus/dbus-sysdeps.h (_dbus_become_daemon): Also take
4827         parameter for fd to write pid to.       
4828
4829         * dbus/dbus-sysdeps.c (_dbus_become_daemon): Implement it.
4830         
4831         * bus/bus.c (bus_context_new): Pass print_pid_fd
4832         to _dbus_become_daemon (bug #1720)
4833
4834 2004-10-29  Colin Walters  <walters@redhat.com>
4835
4836         Patch from Ed Catmur <ed@catmur.co.uk>
4837
4838         * mono/doc/Makefile.am (install-data-local): Handle
4839         DESTDIR.
4840
4841 2004-10-29  Colin Walters  <walters@redhat.com>
4842
4843         * bus/.cvsignore, qt/.cvsignore: Update.
4844
4845 2004-10-29  Colin Walters  <walters@redhat.com>
4846
4847         Patch from Kristof Vansant <de_lupus@pandora.be>
4848
4849         * configure.in: Detect Slackware.
4850         * bus/Makefile.am (SCRIPT_IN_FILES): Add rc.messagebus.in.
4851         * bus/rc.messagebus.in: New file.
4852
4853 2004-10-29  Colin Walters  <walters@redhat.com>
4854
4855         * tools/dbus-monitor.c (filter_func): Return
4856         DBUS_HANDLER_RESULT_HANDLED in filter function
4857         for now.  See:
4858         http://freedesktop.org/pipermail/dbus/2004-August/001433.html
4859
4860 2004-10-29  Colin Walters  <walters@redhat.com>
4861
4862         Patch from Matthew Rickard <mjricka@epoch.ncsc.mil>
4863
4864         * bus/services.c (bus_registry_acquire_service): 
4865         Correctly retrieve service name from DBusString
4866         for printing.
4867
4868 2004-10-29  Colin Walters  <walters@redhat.com>
4869
4870         * dbus/dbus-glib.h: Update documentation to not
4871         refer to internal APIs.
4872
4873 2004-10-27  Joe Shaw  <joeshaw@novell.com>
4874
4875         * mono/Arguments.cs (GetDBusTypeConstructor):
4876         type.UnderlyingSystemType will return "System.Byte" if you do it
4877         on "byte[]", which is not what we want.  So check the type.IsArray
4878         property and use System.Array instead.
4879
4880 2004-10-25  John (J5) Palmieri  <johnp@redhat.com>
4881
4882         * dbus/dbus-sysdeps.c (fill_user_info): On errors do not free
4883         the DBusUserInfo structure since this is passed into the function.
4884         This would cause a double free when the function that allocated
4885         the structure would try to free it when an error occured.
4886
4887         * (bus/session.conf.in, bus/Makefile.am, dbus/configure.in):
4888         use /usr/share/dbus-1/services instead of /usr/lib/dbus-1.0/services
4889         for service activation to avoid 32bit/64bit parallel install issues
4890
4891 2004-10-21  Colin Walters  <walters@verbum.org>
4892
4893         * AUTHORS: Fix my email address, the @gnu.org one
4894         has been bouncing for some time.  Also add J5.
4895         
4896 2004-10-21  Colin Walters  <walters@verbum.org>
4897
4898         * dbus/dbus-transport-unix.c (do_authentication): Return
4899         authentication status to callers.
4900         (unix_handle_watch): If we completed authentication this round,
4901         don't do another read.  Instead wait until the next iteration,
4902         after we've read any pending data in the auth buffer.
4903         (unix_do_iteration): Ditto.
4904         (unix_handle_watch): Updated for new do_authentication prototype.
4905
4906 2004-10-18  Colin Walters  <walters@verbum.org>
4907
4908         * bus/selinux.c (bus_selinux_enabled): Handle
4909         --disable-selinux case.
4910         
4911 2004-10-18  Colin Walters  <walters@verbum.org>
4912
4913         * bus/selinux.h: Add bus_selinux_enabled.
4914         
4915         * bus/selinux.c (bus_selinux_enabled): Implement it.
4916         
4917         * bus/config-parser.c (struct include): Add
4918         if_selinux_enabled member.
4919         (start_busconfig_child): Parse if_selinux_enabled
4920         attribute for include.
4921         (bus_config_parser_content): Handle it.
4922
4923         * bus/session.conf.in, bus/system.conf.in: Add
4924         inclusion of context mapping to default config files;
4925         conditional on SELinux being enabled.
4926         
4927         * doc/busconfig.dtd: Add to if_selinux_enabled to default DTD.
4928         
4929         * test/data/invalid-config-files/badselinux-1.conf, 
4930         test/data/invalid-config-files/badselinux-2.conf:
4931         Test files for bad syntax.
4932         
4933 2004-10-17  Colin Walters  <walters@verbum.org>
4934
4935         * dbus/dbus-memory.c (_dbus_initialize_malloc_debug, check_guards)
4936         (dbus_malloc, dbus_malloc0, dbus_realloc): Fix up printf
4937         format specifier mismatches.
4938
4939 2004-10-07  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4940
4941         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): fix an incorrect
4942         format string.
4943
4944         * glib/dbus-dbus-gmain.c (dbus_g_bus_get): do not mangle NULL
4945         pointer (bug #1540, Leonardo Boiko).
4946
4947 2004-09-28  Jon Trowbridge  <trow@ximian.com>
4948
4949         * mono/BusDriver.cs: Changed BusDriver struct to remove
4950         the ServiceCreated and ServiceDeleted events and replace them
4951         with the new ServiceOwnerChanged event.
4952
4953         * mono/example/BusListener.cs: Added a new example program,
4954         which listens for and reports any ServiceOwnerChanged events
4955         on the bus driver.
4956
4957         * mono/example/Makefile.am (DESTDIR): Build changes for the
4958         new BusListener.cs example.
4959
4960 2004-09-27  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4961
4962         * bus/signals.c (bus_match_rule_parse): validate the components of
4963         match rules (bug #1439).
4964
4965         * dbus/dbus-bus.c (dbus_bus_add_match): add a missing OOM test.
4966
4967 2004-09-24  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4968
4969         * doc/dbus-specification.xml: document ServiceOwnerChanged
4970         signal.
4971         
4972         * bus/driver.c, bus/driver.h, bus/services.c: Use
4973         ServiceOwnerChanged signal instead of ServiceCreated and
4974         ServiceDeleted.
4975         
4976         * bus/dispatch.c: update testcase for the new signal.
4977
4978 2004-09-20  Jon Trowbridge  <trow@ximian.com>
4979
4980         Patch from Nat Friedman <nat@novell.com>
4981
4982         * mono/Makefile.am: A number of small build fixes to allow "make
4983         distcheck" to succeed.
4984
4985         * mono/example/Makefile.am: "make distcheck" fixes.
4986
4987         * mono/AssemblyInfo.cs.in: When signing the assembly, look for the
4988         key in @srcdir@.
4989
4990         * test/Makefile.am: "make distcheck" fixes.
4991
4992 2004-09-17  Olivier Andrieu  <oliv__a@users.sourceforge.net>
4993
4994         * dbus/dbus-sysdeps.c (_dbus_user_at_console): fix memleak in OOM.
4995
4996         * doc/busconfig.dtd: update the DTD for the at_console attribute.
4997
4998         * bus/driver.c (bus_driver_handle_hello): correctly handle Hello
4999         messages after the first one (bug #1389).
5000         
5001         * bus/dispatch.c (check_double_hello_message): add a test case for
5002         the double hello message bug.
5003         (check_existent_service_activation): fix check of spawning error.
5004         
5005 2004-09-16  David Zeuthen  <david@fubar.dk>
5006
5007         * python/dbus_bindings.pyx.in: Add support for int64 and uint64
5008
5009 2004-09-12  David Zeuthen  <david@fubar.dk>
5010
5011         Patch from Kay Sievers <kay.sievers@vrfy.org>
5012
5013         * bus/bus.c (bus_context_new):
5014         * bus/bus.h:
5015         * bus/main.c (usage)
5016         (main):
5017         Add commandline option --nofork to override configuration file
5018         setting.
5019
5020 2004-09-09  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5021
5022         * dbus/dbus-*.h: remove the ; after DBUS_(BEGIN|END)_DECLS. Some C
5023         compilers don't like it (bug #974).
5024
5025 2004-09-04  Harald Fernengel  <harry@kdevelop.org>
5026
5027         * qt/connection.*: Applied patch by Jérôme Lodewyck
5028         <lodewyck@clipper.ens.fr> to integrate an existing
5029         connection into the Qt eventloop
5030
5031 2004-08-30  Jon Trowbridge  <trow@ximian.com>
5032
5033         * mono/BusDriver.cs: Added.  This is a class for interacting with
5034         the org.freedesktop.DBus service.
5035
5036         * mono/Message.cs: Added a mechanism to expose the message that is
5037         currently being dispatched via the static Message.Current
5038         property.  Added Message.Sender and Message.Destination
5039         properties.
5040
5041         * mono/Handler.cs: Expose the dispatched message via
5042         Message.Current when handling method calls.
5043
5044         * mono/Service.cs: Expose the dispatched message via
5045         Message.Current when handling signal emissions.
5046         
5047         * mono/Connection.cs: Bind dbus_bus_get_base_service via the
5048         Connection.BaseService property.
5049
5050 2004-08-28  Havoc Pennington  <hp@redhat.com>
5051
5052         * dbus/dbus-userdb.c (_dbus_is_console_user): remove unused variable
5053
5054         More fixes from Steve Grubb
5055         
5056         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): fix fd leak
5057         (_dbus_listen_tcp_socket): fix fd leak
5058
5059         * dbus/dbus-spawn.c (read_pid, read_ints): move the "again:" for
5060         EINTR to a bit lower in the code
5061
5062 2004-08-26  Jon Trowbridge  <trow@ximian.com>
5063
5064         * bus/driver.c (bus_driver_handle_service_exists): Respond with
5065         TRUE if we are inquiring about the existence of the built-in
5066         org.freedesktop.DBus service.
5067
5068 2004-08-25  John Palmieri  <johnp@redhat.com>
5069         * bus/config-parser.c:
5070         (struct PolicyType): Add POLICY_CONSOLE
5071         (struct Element.d.policy): s/gid_or_uid/gid_uid_or_at_console
5072         (start_busconfig_child): Sets up console element when
5073         <policy at_console=""> is encountered in a policy file
5074         (append_rule_from_element): Convert console elements to console
5075         rules.
5076
5077         * bus/policy.c: 
5078         (bus_policy_create_client_policy): Add console rules to the client
5079         policy based on if the client is at the console
5080         (bus_policy_append_console_rule): New function for adding a
5081         console rule to a policy
5082         (bus_policy_merge): Handle console rule merging
5083
5084         * dbus/dbus-sysdeps.h: Added the DBUS_CONSOLE_DIR constant
5085         where we check for console user files
5086         
5087         * dbus/dbus-sysdeps.c:
5088         (_dbus_file_exists): New function which checks if the given
5089         file exists
5090         (_dbus_user_at_console): New function which does the system
5091         specific process of checking if the user is at the console
5092
5093         * dbus/dbus-userdb.c:
5094         (_dbus_is_console_user): New function converts a UID to user name
5095         and then calls the system specific _dbus_user_at_console to 
5096         see if the user is at the console and therefor a console user
5097
5098 2004-08-25  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5099
5100         * bus/config-parser.c (set_limit):
5101         * bus/dbus-daemon-1.1.in:
5102         * test/data/valid-config-files/many-rules.conf: set the
5103         max_match_rules_per_connection limt from the config file. 
5104
5105         * doc/busconfig.dtd: update the DTD.
5106
5107         * bus/driver.c: remove some unused variables.
5108
5109 2004-08-24  Mikael Hallendal  <micke@imendio.com>
5110
5111         * dbus/dbus-glib-lowlevel.h: Removed dbus_bus_get_with_g_main since 
5112         it's been replaced by dbus_g_bus_get
5113
5114 2004-08-23  Colin Walters  <walters@redhat.com>
5115
5116         Updated SELinux support from Matthew Rickard <mjricka@epoch.ncsc.mil>
5117
5118         * bus/selinux.h: Prototype bus_selinux_get_policy_root.
5119
5120         * bus/selinux.c: Create a thread for policy reload notification.
5121         (bus_selinux_get_policy_root): Implement.
5122
5123         * bus/config-parser.c (start_busconfig_child)
5124         (bus_config_parser_content): Support SELinux-root relative
5125         inclusion.
5126
5127         * configure.in <HAVE_SELINUX>: Add -lpthread.
5128         
5129         * bus/test-main.c (test_pre_hook, test_post_hook): New.
5130         (test_post_hook): Move memory checking into here.
5131         (test_pre_hook, test_post_hook): Move SELinux checks in
5132         here, but conditional on a DBUS_TEST_SELINUX environment
5133         variable.  Unfortunately we can't run the SELinux checks
5134         as a normal user, since they won't have any permissions
5135         for /selinux.  So this will have to be tested manually
5136         for now, until we have virtualization for most of
5137         libselinux.
5138         
5139 2004-08-23  Havoc Pennington  <hp@redhat.com>
5140
5141         * dbus/dbus-sysdeps.c (_dbus_change_identity): add setgroups() to
5142         drop supplementary groups, suggested by Steve Grubb
5143
5144 2004-08-20  Colin Walters  <walters@redhat.com>
5145
5146         * bus/config-parser.c (start_busconfig_child): Remove some unused
5147         variables.
5148         
5149         * bus/selinux.c (bus_selinux_id_table_insert): Avoid compiler
5150         warning.
5151
5152 2004-08-17  Joe Shaw  <joeshaw@novell.com>
5153
5154         * configure.in: If --enable-mono is passed in, if we can't find
5155         mono error out.
5156
5157         * mono/Makefile.am: Use /gacutil to install assemblies into the
5158         GAC and not /root.
5159
5160 2004-08-12  Havoc Pennington  <hp@redhat.com>
5161
5162         * NEWS: update for 0.22
5163
5164         * configure.in: release 0.22
5165
5166 2004-08-11  Colin Walters  <walters@redhat.com>
5167
5168         * tools/dbus-send.c (main, usage): Add --reply-timeout
5169         argument.
5170
5171 2004-08-10  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5172
5173         * bus/bus.c (process_config_first_time_only): get rid of an unused
5174         DBusError that was causing a memoy leak (bug #989).
5175
5176         * dbus/dbus-keyring.c, dbus/dbus-message.c:
5177         fix compilation on Solaris/Forte C (bug #974)
5178
5179         * bus/main.c (main): plug two minuscule memleaks.
5180
5181 2004-08-10  Havoc Pennington  <hp@redhat.com>
5182
5183         * doc/dbus-tutorial.xml: add some more info on GLib bindings
5184
5185 2004-08-09  Havoc Pennington  <hp@redhat.com>
5186
5187         * COPYING: switch to Academic Free License version 2.1 instead of
5188         2.0, to resolve complaints about patent termination clause.
5189
5190 2004-07-31  John (J5) Palmieri  <johnp@redhat.com>
5191
5192         * README: added documentation for the --enable-python 
5193         configure switch.
5194
5195 2004-07-31  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5196
5197         * bus/config-parser.c (bus_config_parser_new): fix an invalid
5198         _unref in the SELinux support.
5199
5200         * doc/busconfig.dtd: update DTD for SELinux support.
5201
5202         * bus/config-loader-libxml.c: fix error handler and parser
5203         initialisation/cleanup. OOM test now works with libxml2 HEAD.
5204
5205         * configure.in: remove the warning about libxml2.
5206
5207         * dbus/dbus-bus.c: silence doxygen warning.
5208
5209 2004-07-31  Colin Walters  <walters@redhat.com>
5210
5211         * configure.in: Move #error in SELinux check to its own line.
5212
5213 2004-07-31  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5214
5215         * dbus/dbus-internals.h (_DBUS_SET_OOM):
5216         * bus/utils.h (BUS_SET_OOM): use dbus_error_set_const instead of
5217         dbus_error_set.
5218
5219         * bus/dispatch.c (check_send_exit_to_service): fix the test case,
5220         broken by the change in the _SET_OOM macros.
5221
5222 2004-07-31  Colin Walters  <walters@redhat.com>
5223
5224         * bus/selinux.c <HAVE_SELINUX>: Include utils.h to get
5225         BUS_SET_OOM.
5226
5227 2004-07-31  Colin Walters  <walters@redhat.com>
5228
5229         * configure.in: Use AC_TRY_COMPILE instead of AC_EGREP_HEADER
5230         to correctly detect DBUS__ACQUIRE_SVC.  Also add an
5231         AC_MSG_CHECKING.
5232
5233 2004-07-24  Havoc Pennington  <hp@redhat.com>
5234
5235         SELinux support from Matthew Rickard <mjricka@epoch.ncsc.mil>
5236
5237         * bus/selinux.c, bus/selinux.h: new file encapsulating selinux
5238         functionality
5239
5240         * configure.in: add --enable-selinux
5241         
5242         * bus/policy.c (bus_policy_merge): add FIXME to a comment
5243
5244         * bus/main.c (main): initialize and shut down selinux
5245
5246         * bus/connection.c: store SELinux ID on each connection, to avoid 
5247         repeated getting of the string context and converting it into 
5248         an ID
5249
5250         * bus/bus.c (bus_context_get_policy): new accessor, though it
5251         isn't used
5252         (bus_context_check_security_policy): check whether the security
5253         context of sender connection can send to the security context of
5254         recipient connection
5255
5256         * bus/config-parser.c: add parsing for <selinux> and <associate>
5257         
5258         * dbus/dbus-transport.c (_dbus_transport_get_unix_fd): to
5259         implement dbus_connection_get_unix_fd()
5260
5261         * dbus/dbus-connection.c (dbus_connection_get_unix_fd): new
5262         function, used by the selinux stuff
5263         
5264 2004-07-29  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5265
5266         * bus/config-loader-libxml.c: complete the implementation of
5267         libxml backend for config file loader. Doesn't work with full OOM
5268         test yet. 
5269         
5270         * configure.in: change error when selecting libxml into a warning.
5271         
5272         * test/data/invalid-config-files: add two non-well-formed XML
5273         files. 
5274         
5275         * glib/Makefile.am: libdbus_gtool always uses expat, not libxml.
5276         
5277         * dbus/dbus-transport-unix.c (unix_handle_watch): do not
5278         disconnect in case of DBUS_WATCH_HANGUP, several do_reading() may
5279         be necessary to read all the buffer. (bug #894)
5280
5281         * bus/activation.c (bus_activation_activate_service): fix a
5282         potential assertion failure (bug #896). Small optimization in the
5283         case of auto-activation messages.
5284
5285         * dbus/dbus-message.c (verify_test_message, _dbus_message_test):
5286         add test case for byte-through-vararg bug (#901). patch by Kimmo
5287         Hämäläinen. 
5288
5289 2004-07-28  Anders Carlsson  <andersca@gnome.org>
5290
5291         * python/dbus.py:
5292         * python/dbus_bindings.pyx.in:
5293         Add dbus.init_gthreads (), allow emit_signal to pass
5294         arguments to the signal.
5295         
5296 2004-07-24  Havoc Pennington  <hp@redhat.com>
5297
5298         * AUTHORS: add some people, not really comprehensively, let me
5299         know if I missed you
5300
5301 2004-07-24  Havoc Pennington  <hp@redhat.com>
5302
5303         * Makefile.am (DIST_SUBDIRS): add DIST_SUBDIRS, problem solved by
5304         Owen
5305
5306         * test/Makefile.am (DIST_SUBDIRS): here also
5307
5308 2004-07-22  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5309
5310         * dbus/dbus-sysdeps.c (fill_user_info): fix inexistent label name,
5311         breaking build on Solaris, reported by Farhad Saberi on the ML.
5312
5313         * dbus/dbus-message.c (dbus_message_append_args_valist): fix the
5314         va_arg invocation to account for integer promotion in the case of
5315         DBUS_TYPE_BYTE (unsigned char is promoted to int). (bug #901)
5316
5317         * bus/services.c (bus_service_remove_owner): fix bug #902, use
5318         _dbus_list_get_first_link, not _dbus_list_get_first.
5319
5320         * dbus/dbus-bus.c (dbus_bus_service_exists): plug a memory leak.
5321
5322         * dbus/dbus-object-tree.c (free_subtree_recurse): always null
5323         handler functions so that the asserts in _dbus_object_subtree_unref
5324         do not fail.
5325
5326         * dbus/dbus-transport-unix.c (do_reading):
5327         _dbus_transport_queue_messages return value is of type
5328         dbus_bool_t, not DBusDispatchStatus.
5329         
5330 2004-07-19  David Zeuthen  <david@fubar.dk>
5331
5332         * dbus/dbus-protocol.h: Add DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN
5333
5334         * bus/dispatch.c:
5335         (check_get_connection_unix_user): Debug says GetProperty; but the
5336         method is called GetConnectionUnixUser
5337         (check_get_connection_unix_process_id): New function
5338         (bus_dispatch_test): Actually call check_get_connection_unix_user();
5339         also call check_get_connection_unix_process_id()
5340         
5341         * bus/driver.c:
5342         (bus_driver_handle_get_connection_unix_process_id): New function,
5343         handles GetConnectionUnixProcessID on the org.freedesktop.DBus
5344         interface
5345         
5346         * dbus/dbus-auth.c:
5347         (handle_server_data_external_mech): Set pid from the credentials
5348         obtained from the socket
5349         
5350         * dbus/dbus-connection.c:
5351         (dbus_connection_get_unix_process_id): New function
5352         
5353         * dbus/dbus-connection.h: 
5354         Add prototype for dbus_connection_get_unix_process_id
5355         
5356         * dbus/dbus-transport.c:
5357         (_dbus_transport_get_unix_process_id): New function
5358         
5359         * dbus/dbus-transport.h:
5360         Add prototype for _dbus_transport_get_unix_process_id
5361         
5362 2004-07-19  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5363
5364         * dbus/dbus-message.c: Message counter fix, patch by Christian
5365         Hammond <chipx86@gnupdate.org>
5366
5367 2004-07-18  Seth Nickell  <seth@gnome.org>
5368
5369         * python/dbus.py:
5370         * python/dbus_bindings.pyx.in:
5371         * python/tests/test-client.py:
5372
5373         Add dbus.ByteArray and dbus_bindings.ByteArray
5374         types so that byte streams can be passed back.
5375
5376         Give jdahlin the heaps of credit that are so
5377         rightfully his.
5378         
5379 2004-07-12  Seth Nickell  <seth@gnome.org>
5380
5381         * python/dbus.py:
5382
5383         Add message argument to the default object_method_handler
5384         function.
5385         
5386         * python/dbus_bindings.pyx.in:
5387
5388         Automatically return NIL when passed an empty list
5389         (we can't pass back a list since lists are typed
5390         and we don't have any idea what type the the client
5391         intended the list to be... :-( )
5392         
5393 2004-07-10  Seth Nickell  <seth@gnome.org>
5394
5395         * python/examples/Makefile.am:
5396
5397         Fix distcheck breakage caused by new examples.
5398
5399 2004-07-10  Seth Nickell  <seth@gnome.org>
5400
5401         * python/dbus.py:
5402
5403         Add "message" argument to service-side dbus.Object
5404         methods. This will break existing services written
5405         using the python bindings, but will allow extraction
5406         of all the message information (e.g. who its from).
5407
5408         Add improved "object oriented" signal handling/emission.
5409         
5410         * python/examples/example-service.py:
5411
5412         Nix this example.
5413         
5414         * python/examples/example-signal-emitter.py:
5415         * python/examples/example-signal-recipient.py:
5416
5417         Two new examples that show how to emit and receive
5418         signals using the new APIs.
5419         
5420         * python/examples/example-signals.py:
5421         * python/examples/gconf-proxy-service.py:
5422         * python/examples/gconf-proxy-service2.py:
5423
5424         Add "message" argument to service methods.
5425
5426 2004-06-28  Kay Sievers <kay.sievers@vrfy.org>
5427
5428         * bus/driver.c (bus_driver_handle_get_connection_unix_user)
5429         * dbus/bus.c (dbus_bus_get_unix_user)
5430         * doc/dbus-specification.xml: implement GetConnectionUnixUser
5431         method of org.freedesktop.DBus interface.
5432
5433         * bus/dispatch.c: test case
5434
5435 2004-06-23  John (J5) Palmieri  <johnp@redhat.com>
5436
5437         * python/Makefile.am: switched include directory from glib/ to dbus/
5438         since dbus-glib.h moved
5439  
5440 2004-06-22  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5441
5442         * configure.in: prevent building the gcj stuff and libxml loader
5443         since they are broken.
5444
5445 2004-06-20  Havoc Pennington  <hp@redhat.com>
5446
5447         * dbus/dbus-glib-error-enum.h: autogenerate the GError enum 
5448         codes from the dbus error names
5449         
5450         * glib/dbus-glib.h: move to subdir dbus/ since it's included 
5451         as dbus/dbus-glib.h and that breakage is now visible due to 
5452         including dbus/dbus-glib.h in dbus-glib-lowlevel.h
5453         
5454         * glib/dbus-glib.h: s/gproxy/g_proxy/
5455
5456         * dbus/dbus-shared.h: new header to hold stuff shared with
5457         binding APIs
5458         
5459         * dbus/dbus-protocol.h (DBUS_ERROR_*): move errors here rather
5460         than dbus-errors.h
5461
5462         * glib/dbus-glib.h (dbus_set_g_error): move to
5463         dbus-glib-lowlevel.h
5464
5465         * glib/dbus-glib.h: remove dbus/dbus.h from here; change a bunch
5466         of stuff to enable this
5467
5468         * dbus/dbus-glib-lowlevel.h: put dbus/dbus.h here
5469
5470         * a bunch of other changes with the same basic "separate glib 
5471         bindings from dbus.h" theme
5472         
5473 2004-06-10  Owen Fraser-Green  <owen@discobabe.net>
5474
5475         * dbus-sharp.pc.in: Removed glib-sharp inclusion in Libs.
5476
5477         * python/examples/Makefile.am: Fixed typo in EXTRA_DIST.
5478
5479 2004-06-09  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5480
5481         * bus/driver.c, dbus/dbus-bus.c: use BOOLEAN instead of UINT32 for
5482         the reply value of the ServiceExists message.
5483
5484 2004-06-07  John (J5) Palmieri  <johnp@redhat.com>
5485
5486         * python/dbus_bindings.pyx.in: No longer need to parse path
5487         elements and pass them as arrays of strings.  The C API now
5488         accepts plain path strings.
5489         (_build_parsed_path): removed 
5490
5491 2004-06-07  Havoc Pennington  <hp@redhat.com>
5492
5493         * doc/TODO: remove auto-activation item since it's done; sort
5494         items by importance/milestone
5495
5496 2004-06-07  Havoc Pennington  <hp@redhat.com>
5497
5498         * dbus/dbus-message-builder.c (_dbus_message_data_load): append
5499         random signature when using REQUIRED_FIELDS (this hack won't work
5500         in the long term)
5501
5502         * dbus/dbus-message.c: change the signature to be a header field,
5503         instead of message->signature special-case string. Incremental
5504         step forward. Then we can fix up code to send the signature in the
5505         message, then fix up code to validate said signature, then fix up
5506         code to not put the typecodes inline, etc.
5507         (load_one_message): don't make up the signature after the fact
5508         (decode_header_data): require signature field for the known
5509         message types
5510
5511         * dbus/dbus-marshal.c (_dbus_marshal_string_len): new
5512
5513         * dbus/dbus-protocol.h: add DBUS_HEADER_FIELD_SIGNATURE
5514
5515 2004-06-07  Owen Fraser-Green  <owen@discobabe.net>
5516
5517         * mono/DBusType/ObjectPath.cs: Renamed PathName argument to Path
5518
5519         * mono/Handler.cs: Updated to follow new path argument for
5520         (un-)registering objects.
5521
5522         * mono/example/Makefile.am:
5523         * mono/Makefile.am:
5524         * configure.in: Bumped required version for mono and use new -pkg
5525         syntax for deps
5526
5527 2004-06-05  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5528
5529         * dbus/dbus-connection.h, dbus/dbus-connection.c: have object path
5530         registration functions take the path argument as char* instead of
5531         char**.
5532
5533         * dbus/dbus-marshal.h, dbus/dbus-marshal.c (_dbus_decompose_path):
5534         split off the path decompostion part of
5535         _dbus_demarshal_object_path. Some misc. fixes to silence compiler
5536         warnings. 
5537
5538         * glib/dbus-gobject.c, test/test-service.c: update accordingly.
5539         
5540 2004-06-02  Kristian Høgsberg  <krh@redhat.com>
5541  
5542         * dbus/dbus-auth.c: Rewrite auth protocol handling to use a state
5543         machine approach.  A state is implemented as a function that
5544         handles incoming events as specified for that state.
5545         
5546         * doc/dbus-specification.xml: Update auth protocol state machine
5547         specification to match implementation.  Remove some leftover
5548         base64 examples.
5549
5550 2004-06-02  Kristian Høgsberg  <krh@redhat.com>
5551
5552         * glib/dbus-gproxy.c, glib/dbus-gmain.c, dbus/dbus-string.c,
5553         dbus/dbus-object-tree.c, dbus/dbus-message.c: add comments to
5554         quiet doxygen.
5555
5556         * Doxyfile.in: remove deprecated options.
5557
5558         * dbus/dbus-message-handler.c, dbus/dbus-message-handler.h,
5559         glib/test-thread.h, glib/test-thread-client.c,
5560         glib/test-thread-server.c, glib/test-profile.c,
5561         glib/test-dbus-glib.c: remove these unused files.
5562
5563 2004-06-01  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5564
5565         * dbus/dbus-object-tree.c
5566         (_dbus_object_tree_dispatch_and_unlock): fix dispatch for
5567         non-fallback handlers (bug #684).
5568         (_dbus_object_subtree_new): initialize invoke_as_fallback field.
5569         (find_subtree_recurse): report wether the returned subtree is an
5570         exact match or a "fallback" match higher up in the tree.
5571         (object_tree_test_iteration): update test case.
5572
5573 2004-06-01  Seth Nickell  <seth@gnome.org>
5574
5575         * python/dbus_bindings.pyx.in:
5576         * python/tests/test-client.py:
5577
5578         Round off basic type support. Add dicts (yay!), and 
5579         remaining array types.
5580
5581         Make MessageIter more general so it works for dicts too.
5582
5583         Mark all loop variables as C integers.
5584         
5585 2004-05-31  Havoc Pennington  <hp@redhat.com>
5586
5587         * glib/dbus-gidl.c (method_info_add_arg): keep args sorted with
5588         "in" before "out"
5589
5590         * glib/dbus-gobject.c (dbus_type_to_string): move to dbus-gutils.c
5591
5592         * glib/dbus-glib-tool.c (main): set up to have a --self-test
5593         option that runs the tests, and start filling in some code
5594         including for starters just dumping the interfaces to stdout
5595
5596         * glib/Makefile.am (INCLUDES): define DBUS_LOCALEDIR
5597
5598         * test/data/valid-introspection-files/lots-of-types.xml: test of
5599         an example introspection file
5600
5601         * glib/dbus-gparser.c (parser_check_doctype): doctype should be
5602         "node" (I think...)
5603
5604 2004-05-31  Seth Nickell  <seth@gnome.org>
5605
5606         * python/dbus_bindings.pyx.in:
5607         * python/tests/test-client.py:
5608
5609         Test Suite: 1
5610         Python Bindings: 0
5611
5612         Fix string array memory trashing bug... oops...
5613
5614 2004-05-30  Seth Nickell  <seth@gnome.org>
5615
5616         * python/dbus.py:
5617
5618         Add a nicer-but-less-flexible alternate API for handling 
5619         calls to virtual objects in dbus.ObjectTree.
5620
5621         Screw up the argument order to the dbus.Object constructor
5622         for consistency with dbus.ObjectTree (and to make dbus_methods
5623         optional for future extension)
5624         
5625         * python/examples/Makefile.am:
5626         * python/examples/gconf-proxy-service.py:
5627         * python/examples/gconf-proxy-service2.py:
5628
5629         Alternate implementation of gconf-proxy-service using the
5630         nicer dbus.ObjectTree API.
5631         
5632         * python/examples/example-service.py:
5633         * python/tests/test-server.py
5634
5635         Reverse the argument order to deal with dbus.Object constructor
5636         changes.
5637         
5638 2004-05-30  Seth Nickell  <seth@gnome.org>
5639
5640         * python/examples/example-client.py:
5641         * python/examples/example-service.py:
5642
5643         Take it back. Lists seem to work but they're broken
5644         in the test suite. Make the base examples use
5645         lists (works fine).
5646
5647 2004-05-30  Seth Nickell  <seth@gnome.org>
5648
5649         * python/dbus_bindings.pyx.in:
5650         * python/tests/test-client.py:
5651
5652         Add some more tests and fix errors that crop up.
5653         Unfortunately, currently it seems like marshalling
5654         and unmarshalling of lists is completely broken :-(
5655
5656 2004-05-30  Seth Nickell  <seth@gnome.org>
5657
5658         * python/dbus_bindings.pyx.in:
5659
5660         Add support for ObjectPath type.
5661
5662         * python/dbus.py:
5663
5664         Refactor message handling code to a common function.
5665         
5666         * python/tests/test-client.py:
5667         * python/tests/test-server.py:
5668
5669         Add tests that check to make sure values of all types
5670         can be echoed from a service w/o mangling.
5671         
5672 2004-05-29  Seth Nickell  <seth@gnome.org>
5673
5674         * python/dbus.py:
5675
5676         Add ObjectTree class which allows implementation
5677         of trees of "virtual" objects. Basically the python
5678         wrapper for "register_fallback".
5679         
5680         * python/examples/Makefile.am
5681         * python/examples/gconf-proxy-client.py:
5682         * python/examples/gconf-proxy-service.py:
5683
5684         Implement a simple GConf proxy service that supports
5685         get/set on string and int GConf keys using the ObjectTree.
5686         
5687 2004-05-29  Seth Nickell  <seth@gnome.org>
5688
5689         * python/dbus.py:
5690         * python/examples/example-client.py:
5691         * python/examples/example-service.py:
5692         * python/examples/list-system-services.py:
5693
5694         Add SessionBus, SystemBus and ActivationBus classes
5695         so you don't need to know the special little BUS_TYPE
5696         flag.
5697         
5698 2004-05-29  Havoc Pennington  <hp@redhat.com>
5699
5700         * bus/config-parser.c (process_test_valid_subdir): temporarily
5701         stop testing config parser OOM handling, since expat has issues
5702         http://freedesktop.org/pipermail/dbus/2004-May/001153.html
5703
5704         * bus/dbus-daemon-1.1.in: change requested_reply to
5705         send_requested_reply/receive_requested_reply so we can send the
5706         replies, not just receive them.
5707
5708         * bus/config-parser.c: parse the new
5709         send_requested_reply/receive_requested_reply
5710
5711         * bus/policy.c (bus_client_policy_check_can_send): add
5712         requested_reply argument and use it
5713
5714         * bus/bus.c (bus_context_check_security_policy): pass through
5715         requested_reply status to message send check
5716
5717         * bus/system.conf.in: adapt to requested_reply change
5718         
5719 2004-05-28  Havoc Pennington  <hp@redhat.com>
5720
5721         * test/glib/test-service-glib.c (main): remove unused variable
5722
5723         * glib/dbus-gidl.c (base_info_ref): fix a silly compiler warning
5724
5725         * dbus/dbus-auth.h (enum): remove AUTHENTICATED_WITH_UNUSED_BYTES
5726         from the enum, no longer in use.
5727
5728         * dbus/dbus-sysdeps.h: include config.h so DBUS_VA_COPY actually
5729         works right.
5730
5731         * dbus/dbus-message.c: add various _dbus_return_val_if_fail for
5732         whether error_name passed in is a valid error name.
5733
5734 2004-05-28  John (J5) Palmieri  <johnp@redhat.com>
5735
5736         * dbus/dbus-message.c (dbus_message_get_args): Added support for
5737         OBJECT_PATH and OBJECT_PATH_ARRAY
5738
5739 2004-05-28  Seth Nickell  <seth@gnome.org>
5740
5741         * python/examples/Makefile.am:
5742
5743         Forget to add Makefile.am. Do not pass go.
5744
5745 2004-05-28  Michael Meeks  <michael@ximian.com>
5746
5747         * glib/dbus-gvalue.c (dbus_gvalue_marshal, dbus_gvalue_demarshal): 
5748         fix no int64 case.
5749
5750         * dbus/dbus-string.c (_dbus_string_parse_basic_type): impl.
5751
5752         * dbus/dbus-message.c (_dbus_message_iter_get_basic_type),
5753         (_dbus_message_iter_get_basic_type_array): impl.
5754         drastically simplify ~all relevant _get methods to use these.
5755         (_dbus_message_iter_append_basic_array),
5756         (dbus_message_iter_append_basic): impl
5757         drastically simplify ~all relevant _append methods to use these.
5758
5759         * dbus/dbus-message-builder.c (parse_basic_type) 
5760         (parse_basic_array, lookup_basic_type): impl.
5761         (_dbus_message_data_load): prune scads of duplicate /
5762         cut & paste coding.
5763
5764         * dbus/dbus-marshal.c (_dbus_demarshal_basic_type_array) 
5765         (_dbus_demarshal_basic_type): implement,
5766         (demarshal_and_validate_len/arg): beef up debug.
5767         (_dbus_marshal_basic_type, _dbus_marshal_basic_type_array): impl.
5768
5769 2004-05-27  Seth Nickell  <seth@gnome.org>
5770
5771         * configure.in:
5772         * python/Makefile.am:
5773
5774         Include the example python apps in the tarball.
5775         
5776         * python/examples/list-system-services.py
5777
5778         Add a python new example that fetches the list of services
5779         from the system bus.
5780         
5781 2004-05-27  Seth Nickell  <seth@gnome.org>
5782
5783         * python/dbus.py:
5784         * python/dbus_bindings.pyx.in:
5785
5786         Fix failure to notify that a signal was not handled,
5787         resulted in hung functions.
5788         
5789 2004-05-25  Colin Walters  <walters@redhat.com>
5790
5791         * tools/dbus-monitor.c (main): Monitor all types of messages.
5792
5793 2004-05-23  Owen Fraser-Green  <owen@discobabe.net>
5794
5795         * mono/Handler.cs, mono/Service.cs: Added UnregisterObject method
5796         which unregisters the object path and disposes the handler.
5797
5798 2004-05-23  Kristian Høgsberg  <krh@redhat.com>
5799  
5800         Patch from Timo Teräs <ext-timo.teras@nokia.com> (#614):
5801          
5802         * dbus/dbus-message.c (dbus_message_iter_get_args_valist): Swap
5803         operands to && so we call dbus_message_iter_next () for the last
5804         argument also.
5805
5806 2004-05-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5807
5808         * dbus/dbus-object-tree.c
5809         (_dbus_object_tree_list_registered_unlock, lookup_subtree): return
5810         children even if the requested path isn't registered.
5811         (object_tree_test_iteration): test object_tree_list_registered.
5812
5813         * configure.in: undefine HAVE_ABSTRACT_SOCKETS instead of defining
5814         it to 0.
5815         
5816 2004-05-20  Kristian Høgsberg  <krh@redhat.com>
5817
5818         * doc/TODO: Remove resolved items.
5819
5820         * bus/expirelist.h (struct BusExpireList): remove unused n_items
5821         field.
5822         
5823         * bus/connection.c (bus_connections_expect_reply): Enforce the
5824         per-connection limit on pending replies.
5825         
5826         Patch from Jon Trowbridge <trow@ximian.com>:
5827  
5828         * bus/main.c (setup_reload_pipe): Added.  Creates a pipe and sets
5829         up a watch that triggers a config reload when one end of the pipe
5830         becomes readable.
5831         (signal_handler): Instead of doing the config reload in our SIGHUP
5832         handler, just write to the reload pipe and let the associated
5833         watch handle the reload when control returns to the main loop.
5834  
5835         * bus/driver.c (bus_driver_handle_reload_config): Added.
5836         Implements a ReloadConfig method for requesting a configuration
5837         file reload via the bus driver.
5838  
5839 2004-05-19  Owen Fraser-Green  <owen@discobabe.net>
5840
5841         * HACKING: Updated release instructions concerning the wiki page.
5842
5843 2004-05-18  Kristian Høgsberg  <krh@redhat.com>
5844
5845         * dbus/dbus-auth.c (client_try_next_mechanism): Remove logic to
5846         filter against auth->allowed_mechs; we only add allowed mechs in
5847         record_mechanisms().
5848  
5849         * dbus/dbus-auth-script.c (_dbus_auth_script_run): Add an
5850         ALLOWED_MECHS to auth-script format so we can set the list of
5851         allowed mechanisms.
5852  
5853         * data/auth/client-out-of-mechanisms.auth-script: New test to
5854         check client disconnects when it is out of mechanisms to try.
5855  
5856         * dbus/dbus-auth.c (process_command): Remove check for lines
5857         longer that 1 MB; we only buffer up maximum 16 kB.
5858  
5859         * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
5860         dbus/dbus-auth-script.c, dbus/dbus-auth.c, dbus/dbus-auth.h:
5861         Remove auth state AUTHENTICATED_WITH_UNUSED_BYTES, instead always
5862         assume there might be unused bytes.
5863  
5864         * dbus/dbus-auth.c (_dbus_auth_do_work): Remove check for
5865         client-out-of-mechs, it is handled in process_reject(). Move check
5866         for max failures to send_rejected(), as it's a server-only thing.
5867
5868         * dbus/dbus-auth.c: Factor out protocol reply code into functions
5869         send_auth(), send_data(), send_rejected(), send_error(),
5870         send_ok(), send_begin() and send_cancel().
5871
5872 2004-05-17  Kristian Høgsberg  <krh@redhat.com>
5873
5874         Remove base64 encoding, replace with hex encoding. Original patch
5875         from trow@ximian.com, added error handling.
5876
5877         * dbus/dbus-string.c (_dbus_string_base64_encode)
5878         (_dbus_string_base64_decode): Remove.
5879         (_dbus_string_hex_decode): Add end_return argument so we can
5880         distinguish between OOM and invalid hex encoding.
5881         (_dbus_string_test): Remove base64 tests and add test case for
5882         invalid hex.
5883
5884         * dbus/dbus-keyring.c, dbus/dbus-auth-script.c, dbus/dbus-auth.c:
5885         Replace base64 with hex.
5886
5887         * test/data/auth/invalid-hex-encoding.auth-script: New test case
5888         for invalid hex encoded data in auth protocol.
5889
5890 2004-05-17  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5891
5892         * dbus/dbus-connection.c (check_for_reply_unlocked): plug a memory
5893         leak.
5894
5895 2004-05-15  Owen Fraser-Green  <owen@discobabe.net>
5896
5897         * mono/dbus-sharp.dll.config.in: Added for GAC
5898         * mono/dbus-sharp.snk: Added for GAC
5899         * mono/Assembly.cs.in: Added for GAC
5900         * mono/Makefile.am: Changes for GAC installation        
5901         * configure.in: Added refs for dbus-sharp.dll.config.in and
5902         Assembly.cs.in. More fixes for mono testing
5903         * mono/example/Makefile.am: Changed var to CSC
5904         * Makefile.am: Changed flag name to DBUS_USE_CSC
5905
5906 2004-05-15  Owen Fraser-Green  <owen@discobabe.net>
5907
5908         * mono/Makefile.am: Added SUBDIRS for docs. Changed SUBDIRS order
5909         * mono/doc/*: Added documentation framework
5910         * configure.in: Added monodoc check
5911         * README: Added description of mono configure flags
5912
5913 2004-05-11  John (J5) Palmieri  <johnp@redhat.com>:
5914
5915         * doc/dbus-specification.xml: Added a "Required" column to the 
5916         header fields table and changed the "zero or more" verbage in
5917         the above paragraph to read "The header must contain the required 
5918         named header fields and zero or more of the optional named header 
5919         fields".
5920         * test/data/invalid-messages/*.message: Added the required PATH 
5921         named header field to the tests so that they don't fail on 
5922         'Missing path field'
5923
5924 2004-05-07  John (J5) Palmieri  <johnp@redhat.com>
5925
5926         * python/dbus-bindings.pyx.in: Stopped the bindings from trashing
5927         the stack by implicitly defining variable and parameter types and
5928         removing the hack of defining C pointers as python objects and later
5929         casting them.
5930
5931 2004-05-02  Owen Fraser-Green  <owen@discobabe.net>
5932
5933         * mono/Makefile.am: Removed test-dbus-sharp.exe from all target
5934
5935 2004-05-01  Owen Fraser-Green  <owen@discobabe.net>
5936
5937         * mono/DBusType/Dict.cs: Handle empty dicts
5938         * mono/DBusType/Array.cs: Handle empty arrays
5939         * mono/Arguments.cs: Handle empty arguments
5940
5941 2004-04-30  Owen Fraser-Green  <owen@discobabe.net>
5942
5943         * dbus-sharp.pc.in: Modified to include include Libs and Requires
5944         field
5945
5946 2004-04-25  Kristian Høgsberg  <krh@redhat.com>
5947
5948         * test/data/valid-messages/standard-*.message: Update message
5949         test scripts to new header field names.
5950
5951 2004-04-22  John (J5) Palmieri  <johnp@redhat.com>
5952
5953         * test/break-loader.c (randomly_do_n_things): tracked down buffer
5954         overflow to times_we_did_each_thing array which would chop off the
5955         first character of the failure_dir string. Increased the size of
5956         the array to 7 to reflect the number of random mutation functions
5957         we have.
5958
5959 2004-04-21  Kristian Høgsberg  <krh@redhat.com>
5960
5961         * dbus/dbus-server-unix.c (unix_finalize): Don't unref
5962         unix_server->watch here, it is unreffed in disconnect.
5963         (_dbus_server_new_for_tcp_socket): convert NULL host to
5964         "localhost" here so we don't append NULL to address.
5965         
5966         * dbus/dbus-server.c (_dbus_server_test): Add test case for
5967         various addresses, including tcp with no explicit host.
5968
5969 2004-04-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5970
5971         * dbus/dbus-message.c (decode_header_data, decode_string_field):
5972         fix incorrect setting of .name_offset in the HeaderField (it was
5973         off by two bytes, positioned right after the name and typecode)
5974
5975         * bus/bus.c (bus_context_new, bus_context_unref): test before
5976         calling dbus_server_free_data_slot and _dbus_user_database_unref
5977         in case of an error.
5978
5979         * tools/Makefile.am: add $(DBUS_GLIB_TOOL_LIBS), xml libs needed
5980         by libdbus-gtool.
5981
5982 2004-04-19  Kristian Høgsberg  <krh@redhat.com>
5983
5984         * dbus/dbus-transport-unix.c (unix_do_iteration): Rewrite to use
5985         _dbus_poll() instead of select().
5986
5987 2004-04-15  Jon Trowbridge  <trow@ximian.com>
5988
5989         * bus/main.c (signal_handler): Reload the configuration files
5990         on SIGHUP.
5991         (main): Set up our SIGHUP handler.
5992
5993         * bus/bus.c (struct BusContext): Store the config file, user and
5994         fork flag in the BusContext.
5995         (process_config_first_time_only): Added.  Contains the code
5996         (previously in bus_context_new) for setting up the BusContext from
5997         the BusConfigParser that should only be run the first time the
5998         config files are read.
5999         (process_config_every_time): Added.  Contains the code (previously
6000         in bus_context_new) for setting up the BusContext from the
6001         BusConfigParser that should be run every time the config files are
6002         read.
6003         (load_config): Added.  Builds a BusConfigParser from the config
6004         files and passes the resulting structure off to
6005         process_config_first_time_only (assuming this is the first time)
6006         and process_config_every_time.
6007         (bus_context_new): All of the config-related code has been moved
6008         to process_config_first_time_only and process_config_every_time.
6009         Now this function just does the non-config-related initializations
6010         and calls load_config.
6011         (bus_context_reload_config): Added.
6012
6013 2004-04-15  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6014
6015         * bus/driver.c (bus_driver_handle_get_service_owner):
6016         implement a GetServiceOwner method.
6017         * doc/dbus-specification.xml: document it.
6018         * dbus/dbus-errors.h: add a 'ServiceHasNoOwner' error.
6019         
6020         * glib/dbus-gproxy.c (dbus_gproxy_new_for_service_owner):
6021         implement, using the bus GetServiceOwner method.
6022
6023         * test/glib/test-dbus-glib.c:
6024         use dbus_gproxy_new_for_service_owner so that we can receive the
6025         signal. 
6026
6027 2004-04-15  John (J5) Palmieri  <johnp@redhat.com>
6028
6029         * dbus/dbus-internals.c, dbus/dbus-message-builder.c,
6030         dbus/dbus-message.c, dbus/dbus-protocol.h
6031         (DBUS_HEADER_FIELD_SERVICE): renamed DBUS_HEADER_FIELD_DESTINATION
6032
6033         * dbus/dbus-internals.c, dbus/dbus-message-builder.c,
6034         dbus/dbus-message.c, dbus/dbus-protocol.h
6035         (DBUS_HEADER_FIELD_SENDER_SERVICE): renamed DBUS_HEADER_FIELD_SENDER
6036
6037         * dbus/dbus-internals.c (_dbus_header_field_to_string):
6038         DBUS_HEADER_FIELD_DESTINATION resolves to "destination"
6039         DBUS_HEADER_FIELD_SENDER resolves to "sender"
6040
6041         * doc/dbus-specification.xml (Header Fields Table):
6042         s/SERVICE/DESTINATION
6043         s/SENDER_SERVICE/SENDER
6044
6045
6046 2004-04-14  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6047
6048         * test/glib/test-dbus-glib.c (timed_exit): fail the test after
6049         a few seconds.
6050
6051 2004-04-13  Michael Meeks  <michael@ximian.com>
6052
6053         * glib/dbus-gobject.c (handle_introspect): split out
6054         (introspect_properties): this.
6055         (handle_introspect): implement this.
6056
6057         * test/glib/Makefile.am: use the absolute path so the bus
6058         daemon's chdir ("/") doesn't kill us dead.
6059
6060         * configure.in: subst ABSOLUTE_TOP_BUILDDIR
6061
6062 2004-04-12  Jon Trowbridge  <trow@ximian.com>
6063
6064         * bus/config-parser.c (struct BusConfigParser): Added
6065         included_files field.
6066         (seen_include): Added.  Checks whether or not a file has already
6067         been included by any parent BusConfigParser.
6068         (bus_config_parser_new): Copy the parent's included_files.
6069         (include_file): Track which files have been included, and fail on
6070         circular inclusions.
6071         (process_test_valid_subdir): Changed printf to report if we are
6072         testing valid or invalid conf files.
6073         (all_are_equiv): Changed printf to be a bit clearer about
6074         what we are actually doing.
6075         (bus_config_parser_test): Test invalid configuration files.
6076
6077 2004-04-09  Jon Trowbridge  <trow@ximian.com>
6078
6079         * bus/config-parser.c (bus_config_parser_new): Added a 'parent'
6080         argument.  If non-null, the newly-constructed BusConfigParser will
6081         be initialized with the parent's BusLimits instead of the default
6082         values.
6083         (include_file): When including a config file, pass in
6084         the current parser as the parent and then copy the BusLimits
6085         from the included BusConfigParser pack to the current parser.
6086         (process_test_valid_subdir): Renamed from process_test_subdir.
6087         (process_test_equiv_subdir): Added.  Walks through a directory,
6088         descending into each subdirectory and loading the config files
6089         it finds there.  If any subdirectory contains two config files
6090         that don't produce identical BusConfigParser structs, fail.
6091         For now, the BusConfigParser's BusPolicies are not compared.
6092         (bus_config_parser_test): Call both process_test_valid_subdir and
6093         process_test_equiv_subdir.
6094
6095         * bus/config-loader-libxml.c (bus_config_load): Take a parent
6096         argument and pass it along to the call to bus_config_parser_new.
6097         Also made a few small changes to allow this code to compile.
6098
6099         * bus/config-loader-expat.c (bus_config_load): Take a parent
6100         argument and pass it along to the call to bus_config_parser_new.
6101
6102         * bus/bus.c (bus_context_new): Load the config file
6103         with a NULL parent argument.
6104
6105 2004-03-29  Michael Meeks  <michael@ximian.com>
6106
6107         * glib/dbus-gobject.c (introspect_properties): split
6108         out, fix mangled 'while' flow control.
6109         (introspect_signals): implement.
6110         (handle_introspect): update.
6111
6112 2004-03-29  Michael Meeks  <michael@ximian.com>
6113
6114         * glib/dbus-gobject.c (set_object_property): split out / 
6115         re-work, use the property type, and not the message type(!)
6116         (get_object_property): ditto.
6117
6118         * glib/dbus-gvalue.c (dbus_gvalue_demarshal),
6119         (dbus_gvalue_marshal): make this code re-usable, needed
6120         for signals too, also on both proxy and server side.
6121         Re-write for more efficiency / readability.
6122
6123 2004-03-29  Michael Meeks  <michael@ximian.com>
6124
6125         * dbus/dbus-message.c
6126         (dbus_message_new_error_printf): impl.
6127
6128         * dbus/dbus-connection.c
6129         (dbus_connection_unregister_object_path): fix warning.
6130
6131         * configure.in: fix no-mono-installed situation.
6132
6133 2004-03-27  Havoc Pennington  <hp@redhat.com>
6134
6135         Patch from Timo Teräs:
6136         
6137         * tools/dbus-send.c (main): if --print-reply, assume type is
6138         method call; support boolean type args
6139         
6140         * dbus/dbus-connection.c (dbus_connection_send_with_reply): fix a
6141         bunch of memleak and logic bugs
6142         
6143 2004-03-23  Owen Fraser-Green  <owen@discobabe.net>
6144
6145         * mono/Arguments.cs:
6146         * mono/Introspector.cs:
6147         * mono/Handler.cs:
6148         * mono/InterfaceProxy.cs:
6149         * mono/Message.cs
6150         * mono/ProxyBuilder.cs:
6151         * mono/Service.cs:
6152         Added InterfaceProxy class to avoid building proxies for every
6153         object.
6154
6155         * dbus-message.h:
6156         * dbus-message.c (dbus_message_append_args_valist)
6157         (dbus_message_iter_get_object_path)
6158         (dbus_message_iter_get_object_path_array)
6159         (dbus_message_iter_append_object_path)
6160         (dbus_message_iter_append_object_path_array):
6161         Added object_path iter functions to handle OBJECT_PATH arguments
6162         
6163 2004-03-23  Owen Fraser-Green  <owen@discobabe.net>
6164
6165         First checkin of mono bindings.
6166         * configure.in:
6167         * Makefile.am:
6168         Build stuff for the bindings
6169         * dbus-sharp.pc.in: Added for pkgconfig
6170         
6171 2004-03-21  Havoc Pennington  <hp@redhat.com>
6172
6173         * test/test-service.c (main): remove debug spew
6174
6175 2004-03-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6176
6177         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): accept empty
6178         arrays
6179
6180         * dbus/dbus-message.h, bus/dbus-message.c (dbus_message_iter_init)
6181         (dbus_message_iter_init_array_iterator)
6182         (dbus_message_iter_init_dict_iterator): return a dbus_bool_t to
6183         indicate whether the iterator is empty
6184
6185         * dbus/dbus-pending-call.c, dbus/dbus-server.c: silence compiler
6186         warnings
6187
6188 2004-03-19  Havoc Pennington  <hp@redhat.com>
6189
6190         * NEWS: 0.21 updates
6191
6192         * configure.in: 0.21
6193
6194         * doc/Makefile.am: add all XMLTO usage to DBUS_XML_DOCS_ENABLED
6195         
6196         * python/Makefile.am: change to avoid dist of dbus_bindings.c so
6197         you don't need pyrex to make dist
6198
6199         * qt/Makefile.am (libdbus_qt_1_la_SOURCES): add integrator.h to
6200         sources; run moc
6201         
6202 2004-03-18  Richard Hult  <richard@imendio.com>
6203
6204         * dbus/dbus-message.c (dbus_message_get_auto_activation) 
6205         (dbus_message_set_auto_activation): Add doxygen docs.
6206
6207 2004-03-16  Richard Hult  <richard@imendio.com>
6208
6209         * bus/activation.c: (bus_activation_service_created),
6210         (bus_activation_send_pending_auto_activation_messages),
6211         (bus_activation_activate_service):
6212         * bus/activation.h:
6213         * bus/dispatch.c: (bus_dispatch),
6214         (check_nonexistent_service_auto_activation),
6215         (check_service_auto_activated),
6216         (check_segfault_service_auto_activation),
6217         (check_existent_service_auto_activation), (bus_dispatch_test):
6218         * bus/driver.c: (bus_driver_handle_activate_service):
6219         * bus/services.c: (bus_registry_acquire_service):
6220         * dbus/dbus-message.c: (dbus_message_set_auto_activation),
6221         (dbus_message_get_auto_activation):
6222         * dbus/dbus-message.h:
6223         * dbus/dbus-protocol.h: Implement auto-activation.
6224         
6225         * doc/dbus-specification.xml: Add auto-activation to the spec.
6226
6227 2004-03-12  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6228
6229         * dbus/dbus-marshal.c (_dbus_marshal_get_arg_end_pos):
6230         fix a bug with CUSTOM types.
6231
6232         * dbus/dbus-message.c (message_iter_test, _dbus_message_test): add
6233         a unit test for this bug (used to fail).
6234
6235 2004-03-12  Mikael Hallendal  <micke@imendio.com>
6236
6237         * bus/activation.c:
6238         (babysitter_watch_callback): notify all pending activations waiting for
6239           the same exec that the activation failed.
6240         (bus_activation_activate_service): shortcut the activation if we 
6241           already waiting for the same executable to start up.
6242
6243 2004-03-12  Mikael Hallendal  <micke@imendio.com>
6244
6245         * bus/activation.c: 
6246         - Added service file reloading. 
6247           Each service files directory is kept in an hash table in 
6248           BusActivation and each BusActivationEntry knows what .service-file it
6249           was read from. So when you try to activate a service the bus will 
6250           check if it's been updated, removed or if new .service-files has 
6251           been installed.
6252         - Test code at the bottom for the service file reloading.
6253         * bus/test-main.c: (main):
6254         * bus/test.h:
6255         - added service reloading test.
6256         * dbus/dbus-sysdeps.c: 
6257         * dbus/dbus-sysdeps.h: (_dbus_delete_directory): Added.
6258
6259 2004-03-08  Michael Meeks  <michael@ximian.com>
6260
6261         * dbus/dbus-connection.c (_dbus_connection_block_for_reply): 
6262         bail immediately if disconnected, to avoid busy loop.
6263
6264         * dbus/dbus-message.c (dbus_message_iter_get_args_valist):
6265         cleanup cut/paste/inefficiency.
6266
6267 2004-03-01  David Zeuthen  <david@fubar.dk>
6268
6269         * dbus/dbus-string.c (_dbus_string_append_printf_valist): Fix a
6270         bug where args were used twice. This bug resulted in a segfault
6271         on a Debian/PPC system when starting the messagebus daemon. Include
6272         dbus-sysdeps.h for DBUS_VA_COPY
6273
6274         * dbus/dbus-sysdeps.h: Define DBUS_VA_COPY if neccessary. From GLib
6275
6276         * configure.in: Check for va_copy; define DBUS_VA_COPY to the
6277         appropriate va_copy implementation. From GLib
6278         
6279 2004-02-24  Joe Shaw  <joe@ximian.com>
6280
6281         * bus/services.c (bus_registry_acquire_service): We need to pass
6282         in the service name to dbus_set_error() to prevent a crash.
6283
6284 2003-12-26  Anders Carlsson  <andersca@gnome.org>
6285
6286         * AUTHORS: Reveal my True identity.
6287
6288 2003-12-17  Mikael Hallendal  <micke@imendio.com>
6289
6290         * dbus/dbus-message.c: (dbus_message_append_args_valist): 
6291         - Added case for DBUS_TYPE_BYTE, patch from Johan Hedberg.
6292
6293 2003-12-13  Mikael Hallendal  <micke@imendio.com>
6294
6295         * doc/TODO: Added not about better error check of configuration files.
6296
6297 2003-12-02  Richard Hult  <richard@imendio.com>
6298
6299         * Update AFL version to 2.0 throughout the source files to reflect
6300         the update that was done a while ago.
6301
6302 2003-12-02  Richard Hult  <richard@imendio.com>
6303
6304         * dbus/dbus-message.c (dbus_message_iter_append_dict): Set
6305         wrote_dict_key to FALSE on the iter that the dict is appended to,
6306         just like when appending other types. Fixes a bug where a dict
6307         couldn't be put inside a dict.
6308         (dbus_message_iter_append_dict_key): Fix typo in warning message.
6309         (message_iter_test, _dbus_message_test): Add test case for dict
6310         inside dict.
6311
6312 2003-12-01  David Zeuthen  <david@fubar.dk>
6313
6314         * python/dbus.py: Add the actual message when calling the reciever
6315         of a signal such that parameters can be inspected. Add the method
6316         remove_signal_receiver
6317         
6318 2003-11-26  Mikael Hallendal  <micke@imendio.com>
6319
6320         * bus/*.[ch]:
6321         * dbus/*.[ch]:
6322         * glib/*.[ch]: Made ref functions return the pointer
6323
6324 2003-11-25  Zack Rusin  <zack@kde.org>
6325
6326         * qt/integrator.h, qt/integrator.cpp: Adding handling of DBusServer,
6327
6328         * qt/server.h, qt/server.cpp, qt/Makefile.am: Adding DBusServer 
6329         wrappers,
6330
6331         * qt/connection.h, qt/connection.cpp: Adjusting to changes in 
6332         the Integrator and to better fit with the server,
6333
6334 2003-11-24  Zack Rusin  <zack@kde.org>
6335
6336         * qt/connection.h, qt/connection.cpp: removing initDbus method since
6337         the integrator handles it now
6338
6339         * qt/integrator.h, qt/integrator.cpp: reworking handling of timeouts,
6340         since QTimer wasn't really meant to be used the way DBusTimeout is
6341
6342 2003-11-24  Zack Rusin  <zack@kde.org>
6343
6344         * qt/integrator.h, qt/integrator.cpp, Makefile.am: Adding 
6345         Integrator class which integrates D-BUS with the Qt event loop,
6346
6347         * qt/connection.h, qt/connection.cpp: Move all the code which
6348         was dealing with D-BUS integration to the Integrator class,
6349         and start using Integrator,
6350
6351 2003-11-23  Zack Rusin  <zack@kde.org>
6352
6353         * qt/connection.h, qt/connection.cpp: Adding the DBusConnection 
6354         wrapper
6355
6356         * qt/message.h, qt/message.cpp: updating to the current D-BUS api,
6357         switching namespaces to DBusQt, reworking the class,
6358
6359         * Makefile.cvs: switching dependencies so that it matches KDE 
6360         schematics,
6361         
6362         * qt/Makefile.am: adding connection.{h,cpp} and message.{h,cpp} to 
6363         the library
6364
6365 2003-11-19  Havoc Pennington  <hp@redhat.com>
6366
6367         * NEWS: update
6368
6369         * configure.in: bump version to 0.20
6370
6371         * configure.in (have_qt): add yet another place to look for qt
6372         (someone hand trolltech a .pc file...)
6373
6374 2003-11-01  Havoc Pennington  <hp@redhat.com>
6375
6376         * doc/dbus-specification.xml: add state machine docs on the auth
6377         protocol; just a first draft, I'm sure it's wrong.      
6378
6379 2003-10-28  David Zeuthen  <david@fubar.dk>
6380
6381         * python/dbus_bindings.pyx.in: add get_dict to handle dictionaries
6382         return types. Fixup TYPE_* to reflect changes in dbus/dbus-protocol.h
6383         
6384 2003-10-28  Havoc Pennington  <hp@redhat.com>
6385
6386         * dbus/dbus-message.c (get_next_field): delete unused function
6387
6388 2003-10-28  Havoc Pennington  <hp@redhat.com>
6389
6390         * bus/expirelist.c (do_expiration_with_current_time): detect
6391         failure of the expire_func due to OOM
6392
6393         * bus/connection.c (bus_pending_reply_expired): return FALSE on OOM
6394
6395         * bus/dispatch.c (check_send_exit_to_service): fix to handle the
6396         NoReply error that's now created by the bus when the service exits
6397
6398 2003-10-28  Havoc Pennington  <hp@redhat.com>
6399
6400         * dbus/dbus-message.c (_dbus_message_test): enable and fix the
6401         tests for set_path, set_interface, set_member, etc.
6402
6403         * dbus/dbus-string.c (_dbus_string_insert_bytes): allow 0 bytes
6404
6405         * dbus/dbus-message.c (set_string_field): always just delete and
6406         re-append the field; accept NULL for deletion
6407         (re_align_fields_recurse): reimplement
6408         
6409 2003-10-26  Havoc Pennington  <hp@redhat.com>
6410
6411         * dbus/dbus-connection.c: fix docs to properly describe the
6412         disconnected message
6413         (_dbus_connection_notify_disconnected): remove this function; 
6414         we can't synchronously add the disconnected message, we have to 
6415         do it after we've queued any remaining real messages
6416         (_dbus_connection_get_dispatch_status_unlocked): queue the
6417         disconnect message only if the transport has finished queueing all
6418         its real messages and is disconnected.
6419         (dbus_connection_disconnect): update the dispatch status here
6420
6421 2003-10-22  Havoc Pennington  <hp@redhat.com>
6422
6423         * bus/bus.c (bus_context_check_security_policy): fix up assertion
6424
6425         * bus/connection.c (bus_transaction_send_from_driver): set the
6426         destination to the connection's base service
6427
6428 2003-10-20  Havoc Pennington  <hp@redhat.com>
6429
6430         hmm, make check is currently not passing.
6431         
6432         * doc/dbus-specification.xml: add requirement that custom type
6433         names follow the same rules as interface names.
6434
6435         * dbus/dbus-protocol.h: change some of the byte codes, to avoid
6436         duplication and allow 'c' to be 'custom'; dict is now 'm' for
6437         'map'
6438
6439         * doc/dbus-specification.xml: update type codes to match
6440         dbus-protocol.h, using the ASCII byte values. Rename type NAMED to
6441         CUSTOM. Add type OBJECT_PATH to the spec.
6442
6443 2003-10-17  Havoc Pennington  <hp@redhat.com>
6444
6445         * bus/driver.c (create_unique_client_name): use "." as separator
6446         in base service names instead of '-'
6447
6448         * dbus/dbus-string.c (_dbus_string_get_byte): allow getting nul
6449         byte at the end of the string
6450
6451         * dbus/dbus-internals.h (_DBUS_LIKELY, _DBUS_UNLIKELY): add
6452         optimization macros since string validation seems to be a slow
6453         point.
6454         
6455         * doc/dbus-specification.xml: restrict valid
6456         service/interface/member/error names. Add test suite code for the
6457         name validation.
6458
6459         * dbus/dbus-string.c: limit service/interface/member/error names 
6460         to [0-9][A-Z][a-z]_
6461
6462         * dbus/dbus-connection.c (dbus_connection_dispatch): add missing
6463         format arg to verbose spew
6464
6465         * glib/dbus-gproxy.c (dbus_gproxy_call_no_reply): if not out of
6466         memory, return instead of g_error
6467
6468         * test/test-service.c (path_message_func): support emitting a
6469         signal on request
6470
6471         * dbus/dbus-bus.c (init_connections_unlocked): only fill in
6472         activation bus type if DBUS_BUS_ACTIVATION was set; default to
6473         assuming the activation bus was the session bus so that services
6474         started manually will still register.
6475         (init_connections_unlocked): fix so that in OOM situation we get
6476         the same semantics when retrying the function
6477         
6478         * test/test-service.c (main): change to use path registration, to
6479         test those codepaths; register with DBUS_BUS_ACTIVATION rather
6480         than DBUS_BUS_SESSION
6481
6482 2003-10-16  Havoc Pennington  <hp@redhat.com>
6483
6484         * glib/dbus-gtest-main.c: bracket with #ifdef DBUS_BUILD_TESTS
6485
6486         * Makefile.am (GCOV_DIRS): remove "test", we don't care about test
6487         coverage of the tests
6488         (coverage-report.txt): don't move the .da and .bbg files around
6489
6490 2003-10-16  Havoc Pennington  <hp@redhat.com>
6491
6492         * bus/bus.c (struct BusContext): remove struct field I didn't mean
6493         to put there
6494
6495 2003-10-16  Havoc Pennington  <hp@redhat.com>
6496
6497         * bus/connection.c (bus_pending_reply_expired): either cancel or
6498         execute, not both
6499         (bus_connections_check_reply): use unlink, not remove_link, as we
6500         don't want to free the link; fixes double free mess
6501
6502         * dbus/dbus-pending-call.c (dbus_pending_call_block): fix in case
6503         where no reply was received
6504
6505         * dbus/dbus-connection.c (_dbus_pending_call_complete_and_unlock):
6506         fix a refcount leak
6507
6508         * bus/signals.c (match_rule_matches): add special cases for the
6509         bus driver, so you can match on sender/destination for it.
6510
6511         * dbus/dbus-sysdeps.c (_dbus_abort): print backtrace if
6512         DBUS_PRINT_BACKTRACE is set
6513
6514         * dbus/dbus-internals.c: add pid to assertion failure messages
6515
6516         * dbus/dbus-connection.c: add message type code to the debug spew
6517
6518         * glib/dbus-gproxy.c (gproxy_get_match_rule): match rules want
6519         sender=foo not service=foo
6520
6521         * dbus/dbus-bus.c (dbus_bus_get): if the activation bus is the
6522         session bus but DBUS_SESSION_BUS_ADDRESS isn't set, use 
6523         DBUS_ACTIVATION_ADDRESS instead
6524
6525         * bus/activation.c: set DBUS_SESSION_BUS_ADDRESS,
6526         DBUS_SYSTEM_BUS_ADDRESS if appropriate
6527
6528         * bus/bus.c (bus_context_new): handle OOM copying bus type into
6529         context struct
6530
6531         * dbus/dbus-message.c (dbus_message_iter_get_object_path): new function
6532         (dbus_message_iter_get_object_path_array): new function (half
6533         finished, disabled for the moment)
6534         
6535         * glib/dbus-gproxy.c (dbus_gproxy_end_call): properly handle
6536         DBUS_MESSAGE_TYPE_ERROR
6537
6538         * tools/dbus-launch.c (babysit): support DBUS_DEBUG_OUTPUT to
6539         avoid redirecting stderr to /dev/null
6540         (babysit): close stdin if not doing the "exit_with_session" thing
6541
6542         * dbus/dbus-sysdeps.c (_dbus_become_daemon): delete some leftover
6543         debug code; change DBUS_DEBUG_OUTPUT to only enable stderr, not
6544         stdout/stdin, so things don't get confused
6545         
6546         * bus/system.conf.in: fix to allow replies, I modified .conf
6547         instead of .conf.in again.
6548
6549 2003-10-14  David Zeuthen  <david@fubar.dk>
6550
6551         * python/dbus_bindings.pyx.in (MessageIter.get): fixed typo in
6552         argtype to arg_type when raising unknown arg type exception.
6553         Changed type list to reflect the changes in dbus-protocol.h so 
6554         the bindings actually work.
6555
6556 2003-10-14  Havoc Pennington  <hp@redhat.com>
6557
6558         * test/decode-gcov.c: support gcc 3.3 also, though gcc 3.3 seems
6559         to have a bug keeping it from outputting the .da files sometimes
6560         (string_get_string): don't append garbage nul bytes to the string.
6561
6562 2003-10-15  Seth Nickell  <seth@gnome.org>
6563
6564         * python/Makefile.am:
6565
6566         Include dbus_h_wrapper.h in the dist tarball.
6567
6568 2003-10-14  Havoc Pennington  <hp@redhat.com>
6569
6570         * bus/bus.c (bus_context_check_security_policy): revamp this to
6571         work more sanely with new policy-based requested reply setup
6572
6573         * bus/connection.c (bus_transaction_send_from_driver): set bus
6574         driver messages as no reply
6575
6576         * bus/policy.c (bus_client_policy_check_can_receive): handle a
6577         requested_reply attribute on allow/deny rules
6578
6579         * bus/system.conf: add <allow requested_reply="true"/>
6580
6581         * bus/driver.c (bus_driver_handle_message): fix check for replies
6582         sent to the bus driver, which was backward. How did this ever work
6583         at all though? I think I'm missing something.
6584
6585         * dbus/dbus-message.c (decode_header_data): require error and
6586         method return messages to have a reply serial field to be valid
6587         (_dbus_message_loader_queue_messages): break up this function;
6588         validate that reply serial and plain serial are nonzero; 
6589         clean up the OOM/error handling.
6590         (get_uint_field): don't return -1 from this
6591         (dbus_message_create_header): fix signed/unsigned bug
6592
6593         * bus/connection.c (bus_connections_expect_reply): save serial of
6594         the incoming message, not reply serial
6595
6596 2003-10-14  Havoc Pennington  <hp@redhat.com>
6597
6598         * bus/connection.c: implement pending reply tracking using
6599         BusExpireList
6600
6601         * bus/bus.c (bus_context_check_security_policy): verify that a
6602         reply is pending in order to allow a reply to be sent. Deny 
6603         messages of unknown type.
6604
6605         * bus/dbus-daemon-1.1.in: update to mention new resource limits
6606
6607         * bus/bus.c (bus_context_get_max_replies_per_connection): new
6608         (bus_context_get_reply_timeout): new
6609
6610 2003-10-13  Seth Nickell  <seth@gnome.org>
6611
6612         * python/Makefile.am:
6613
6614         Pass "make distcheck": remove a couple files from DIST_FILES
6615         that weren't included in the final version.
6616
6617 2003-10-12  Havoc Pennington  <hp@pobox.com>
6618
6619         Added test code that 1) starts an actual bus daemon and 2) uses
6620         DBusGProxy; fixed bugs that were revealed by the test. Lots 
6621         more testing possible, but this is the basic framework.
6622         
6623         * glib/dbus-gproxy.c (dbus_gproxy_manager_unregister): remove
6624         empty proxy lists from the proxy list hash
6625
6626         * dbus/dbus-message.c (dbus_message_iter_get_args_valist): add a
6627         couple of return_if_fail checks
6628
6629         * dbus/dbus-pending-call.c (_dbus_pending_call_new): use dbus_new0
6630         to allocate, so everything is cleared to NULL as it should be.
6631
6632         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): pass
6633         source as data to dbus_connection_set_timeout_functions() as the 
6634         timeout functions expected
6635
6636         * test/glib/run-test.sh: add a little script to start up a message
6637         bus and run tests using it
6638
6639         * tools/dbus-launch.1: updates
6640
6641         * tools/dbus-launch.c (main): add --config-file option
6642
6643         * tools/dbus-launch.c (main): remove confusing else if (runprog)
6644         that could never be reached.
6645
6646         * dbus/dbus-message.c (dbus_message_new_method_return) 
6647         (dbus_message_new_error, dbus_message_new_signal): set the
6648         no-reply-expected flag on all these. Redundant, but may
6649         as well be consistent.
6650
6651 2003-10-11  Havoc Pennington  <hp@pobox.com>
6652
6653         * test/decode-gcov.c (function_solve_graph): make broken block
6654         graph a nonfatal error since it seems to be broken. Need to debug
6655         this.
6656
6657         * dbus/dbus-marshal.c (_dbus_type_is_valid): new function since we
6658         can't just check type > INVALID < LAST anymore
6659
6660         * dbus/dbus-message.c (dbus_message_get_signature): new function
6661         (dbus_message_has_signature): new function
6662         (struct DBusMessage): add signature field (right now it isn't sent
6663         over the wire, just generated on the fly)
6664         (dbus_message_copy): copy the signature, and init strings to
6665         proper length to avoid some reallocs
6666         (dbus_message_iter_init_array_iterator): return void, since it
6667         can't fail
6668         (dbus_message_iter_init_dict_iterator): return void since it can't fail
6669         (_dbus_message_loader_queue_messages): add silly temporary hack to
6670         fill in message->signature on load
6671
6672         * dbus/dbus-protocol.h: change DBUS_TYPE_* values to be ASCII
6673         characters, so they are relatively human-readable.
6674
6675 2003-10-11  Havoc Pennington  <hp@pobox.com>
6676
6677         * dbus/dbus-message.c (_dbus_message_test): add more test
6678         coverage, but #if 0 for now since they uncover a bug 
6679         not fixed yet; I think in re_align_field_recurse()
6680         (re_align_field_recurse): add FIXME about broken assertion
6681
6682         * dbus/dbus-sysdeps.c (_dbus_sysdeps_test): add more test coverage
6683
6684         * bus/connection.c: share a couple code bits with expirelist.c
6685
6686         * bus/expirelist.h, bus/expirelist.c: implement a generic
6687         expire-items-after-N-seconds facility, was going to share between
6688         expiring connections and replies, decided not to use for expiring
6689         connections for now.
6690
6691         * COPYING: include AFL 2.0 (still need to change all the file headers)
6692
6693 2003-10-09  Havoc Pennington  <hp@redhat.com>
6694
6695         * configure.in: define DBUS_HAVE_GCC33_GCOV if we have
6696         gcc 3.3. Not that we do anything about it yet.
6697
6698         * bus/signals.c (bus_match_rule_parse): impose max length on the
6699         match rule text
6700
6701         * dbus/dbus-protocol.h: add DBUS_MAXIMUM_MATCH_RULE_LENGTH
6702
6703 2003-10-09  Havoc Pennington  <hp@redhat.com>
6704
6705         Make matching rules theoretically work (add parser).
6706         
6707         * bus/bus.c (bus_context_check_security_policy): fix up to handle
6708         the case where destination is explicitly specified as bus driver
6709         and someone else is eavesdropping.
6710         
6711         * bus/policy.c (bus_client_policy_check_can_receive): fix up
6712         definition of eavesdropping and assertion
6713
6714         * tools/dbus-send.c (main): use dbus_message_type_from_string
6715
6716         * bus/signals.c (bus_match_rule_parse): implement
6717
6718         * dbus/dbus-message.c (dbus_message_type_from_string): new
6719
6720         * dbus/dbus-errors.h (DBUS_ERROR_MATCH_RULE_INVALID): add
6721
6722 2003-10-02  Havoc Pennington  <hp@pobox.com>
6723
6724         * glib/dbus-gproxy.c (dbus_gproxy_call_no_reply): rename from
6725         dbus_gproxy_oneway_call
6726
6727         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main) 
6728         (dbus_server_setup_with_g_main): fix to allow calling them more
6729         than once on the same args
6730         (dbus_bus_get_with_g_main): new function
6731
6732 2003-10-02  Havoc Pennington  <hp@redhat.com>
6733
6734         * doc/dbus-tutorial.xml: write some stuff
6735
6736 2003-09-29  Havoc Pennington  <hp@pobox.com>
6737
6738         * configure.in: split checks for Doxygen from XML docs, check for
6739         xmlto
6740
6741         * doc/Makefile.am: XML-ify all the docs, and add a blank
6742         dbus-tutorial.xml
6743
6744 2003-09-29  Havoc Pennington  <hp@pobox.com>
6745
6746         * Merge dbus-object-names branch. To see the entire patch 
6747         do cvs diff -r DBUS_OBJECT_NAMES_BRANCHPOINT -r dbus-object-names,
6748         it's huuuuge though.
6749         To revert, I tagged DBUS_BEFORE_OBJECT_NAMES_MERGE.
6750         
6751 2003-09-28  Havoc Pennington  <hp@pobox.com>
6752
6753         * HACKING: update to reflect new server
6754
6755 2003-09-26  Seth Nickell  <seth@gnome.org>
6756
6757         * python/dbus.py:
6758         * python/examples/example-signals.py:
6759
6760         Start implementing some notions of signals. The API
6761         is really terrible, but they sort of work (with the
6762         exception of being able to filter by service, and to
6763         transmit signals *as* a particular service). Need to
6764         figure out how to make messages come from the service
6765         we registered :-(
6766         
6767         * python/dbus_bindings.pyx.in:
6768
6769         Removed duplicate message_handler callbacks.
6770         
6771 2003-09-25  Havoc Pennington  <hp@redhat.com>
6772
6773         * bus/session.conf.in: fix my mess
6774
6775 2003-09-25  Havoc Pennington  <hp@pobox.com>
6776
6777         * bus/session.conf.in: fix security policy, reported by Seth Nickell
6778
6779 2003-09-25  Seth Nickell  <seth@gnome.org>
6780
6781         * python/examples/example-service.py:
6782
6783         Johan notices complete wrong code in example-service, but
6784         completely wrong in a way that works exactly the same (!).
6785         Johan is confused, how could this possibly work? Example
6786         code fails to serve purpose of making things clear.
6787         Seth fixes.
6788
6789 2003-09-25  Mark McLoughlin  <mark@skynet.ie>
6790
6791         * doc/dbus-specification.sgml: don't require header fields
6792         to be 4-byte aligned and specify that fields should be
6793         distinguished from padding by the fact that zero is not
6794         a valid field name.
6795         
6796         * doc/TODO: remove re-alignment item and add item to doc
6797         the OBJECT_PATH type.
6798         
6799         * dbus/dbus-message.c:
6800         (HeaderField): rename the original member to value_offset
6801         and introduce a name_offset member to keep track of where
6802         the field actually begins.
6803         (adjust_field_offsets): remove.
6804         (append_int_field), (append_uint_field),
6805         (append_string_field): don't align the start of the header
6806         field to a 4-byte boundary.
6807         (get_next_field): impl finding the next marhsalled field
6808         after a given field.
6809         (re_align_field_recurse): impl re-aligning a number of
6810         already marshalled fields.
6811         (delete_field): impl deleting a field of any type and
6812         re-aligning any following fields.
6813         (delete_int_or_uint_field), (delete_string_field): remove.
6814         (set_int_field), (set_uint_field): no need to re-check
6815         that we have the correct type for the field.
6816         (set_string_field): ditto and impl re-aligning any
6817         following fields.
6818         (decode_header_data): update to take into account that
6819         the fields aren't 4-byte aligned any more and the new
6820         way to distinguish padding from header fields. Also,
6821         don't exit when there is too much header padding.
6822         (process_test_subdir): print the directory.
6823         (_dbus_message_test): add test to make sure a following
6824         field is re-aligned correctly after field deletion.
6825         
6826         * dbus/dbus-string.[ch]:
6827         (_dbus_string_insert_bytes): rename from insert_byte and
6828         allow the insert of multiple bytes.
6829         (_dbus_string_test): test inserting multiple bytes.
6830
6831         * dbus/dbus-marshal.c: (_dbus_marshal_set_string): add
6832         warning note to docs about having to re-align any
6833         marshalled values following the string.
6834         
6835         * dbus/dbus-message-builder.c:
6836         (append_string_field), (_dbus_message_data_load):
6837         don't align the header field.
6838         
6839         * dbus/dbus-auth.c: (process_test_subdir): print the
6840         directory.
6841         
6842         * test/break-loader.c: (randomly_add_one_byte): upd. for
6843         insert_byte change.
6844         
6845         * test/data/invalid-messages/bad-header-field-alignment.message:
6846         new test case.
6847         
6848         * test/data/valid-messages/unknown-header-field.message: shove
6849         a dict in the unknown field.
6850
6851 2003-09-25  Seth Nickell  <seth@gnome.org>
6852
6853         * python/dbus.py:
6854         * python/dbus_bindings.pyx.in:
6855
6856         Handle return values.
6857         
6858         * python/examples/example-client.py:
6859         * python/examples/example-service.py:
6860
6861         Pass back return values from the service to the client.
6862         
6863 2003-09-24  Seth Nickell  <seth@gnome.org>
6864
6865         * python/dbus.py:
6866
6867         Connect Object methods (when you are sharing an object) up... pass
6868         in a list of methods to be shared. Sharing all the methods just
6869         worked out too weird. You can now create nice Services over the
6870         DBus in Python. :-)
6871         
6872         * python/dbus_bindings.pyx.in:
6873
6874         Keep references to user_data tuples passed into C functions so 
6875         Python doesn't garbage collect on us.
6876
6877         Implement MethodReturn and Error subclasses of Message for creating
6878         DBusMessage's of those types.
6879         
6880         * python/examples/example-client.py:
6881         * python/examples/example-service.py:
6882
6883         Simple example code showing both how create DBus services and objects,
6884         and how to use them.
6885
6886 2003-09-23  Havoc Pennington  <hp@pobox.com>
6887
6888         * glib/dbus-gproxy.c (dbus_gproxy_manager_filter): implement
6889
6890 2003-09-23  Havoc Pennington  <hp@redhat.com>
6891
6892         * glib/dbus-gproxy.c (dbus_gproxy_connect_signal): implement
6893         (dbus_gproxy_disconnect_signal): implement
6894         (dbus_gproxy_manager_remove_signal_match): implement
6895         (dbus_gproxy_manager_add_signal_match): implement
6896         (dbus_gproxy_oneway_call): implement
6897
6898 2003-09-23  Havoc Pennington  <hp@pobox.com>
6899
6900         * glib/dbus-gproxy.c (struct DBusGProxy): convert to a GObject
6901         subclass. This means dropping the transparent thread safety of the
6902         proxy; you now need a separate proxy per-thread, or your own
6903         locking on the proxy. Probably right anyway.
6904         (dbus_gproxy_ref, dbus_gproxy_unref): nuke, just use g_object_ref
6905
6906 2003-09-22  Havoc Pennington  <hp@redhat.com>
6907
6908         * glib/dbus-gproxy.c (dbus_gproxy_manager_get): implement
6909
6910 2003-09-21  Seth Nickell  <seth@gnome.org>
6911
6912         First checkin of the Python bindings.
6913         
6914         * python/.cvsignore:
6915         * python/Makefile.am:
6916         * python/dbus_bindings.pyx.in:
6917         * python/dbus_h_wrapper.h:
6918
6919         Pieces for Pyrex to operate on, building a dbus_bindings.so
6920         python module for low-level access to the DBus APIs.
6921         
6922         * python/dbus.py:
6923
6924         High-level Python module for accessing DBus objects.
6925
6926         * configure.in:
6927         * Makefile.am:
6928
6929         Build stuff for the python bindings.
6930
6931         * acinclude.m4:
6932
6933         Extra macro needed for finding the Python C header files.
6934
6935 2003-09-21  Havoc Pennington  <hp@pobox.com>
6936
6937         * glib/dbus-gproxy.c (dbus_gproxy_manager_new): start
6938         implementing the proxy manager, didn't get very far.
6939
6940         * dbus/dbus-bus.c (dbus_bus_add_match): new
6941         (dbus_bus_remove_match): new
6942
6943         * glib/dbus-gproxy.c (dbus_gproxy_new_for_service): add a
6944         path_name argument; adjust the other not-yet-implemented 
6945         gproxy constructors to be what I think they should be.
6946
6947 2003-09-21  Havoc Pennington  <hp@pobox.com>
6948
6949         * dbus/dbus-bus.c (dbus_bus_get): set exit_on_disconnect to TRUE
6950         by default for message bus connections.
6951
6952         * dbus/dbus-connection.c (dbus_connection_dispatch): exit if
6953         exit_on_disconnect flag is set and we process the disconnected
6954         signal.
6955         (dbus_connection_set_exit_on_disconnect): new function
6956
6957 2003-09-21  Havoc Pennington  <hp@pobox.com>
6958
6959         Get matching rules mostly working in the bus; only actually
6960         parsing the rule text remains. However, the client side of
6961         "signal connections" hasn't been started, this patch is only the
6962         bus side.
6963         
6964         * dbus/dispatch.c: fix for the matching rules changes
6965         
6966         * bus/driver.c (bus_driver_handle_remove_match)
6967         (bus_driver_handle_add_match): send an ack reply from these
6968         method calls
6969
6970         * glib/dbus-gproxy.c (dbus_gproxy_begin_call): fix order of
6971         arguments, reported by Seth Nickell
6972
6973         * bus/config-parser.c (append_rule_from_element): support
6974         eavesdrop=true|false attribute on policies so match rules 
6975         can be prevented from snooping on the system bus.
6976
6977         * bus/dbus-daemon-1.1.in: consistently use terminology "sender"
6978         and "destination" in attribute names; fix some docs bugs; 
6979         add eavesdrop=true|false attribute
6980
6981         * bus/driver.c (bus_driver_handle_add_match)
6982         (bus_driver_handle_remove_match): handle AddMatch, RemoveMatch
6983         messages
6984
6985         * dbus/dbus-protocol.h (DBUS_SERVICE_ORG_FREEDESKTOP_BROADCAST): get
6986         rid of broadcast service concept, signals are just always broadcast
6987
6988         * bus/signals.c, bus/dispatch.c, bus/connection.c, bus/bus.c:
6989         mostly implement matching rules stuff (currently only exposed as signal
6990         connections)
6991
6992 2003-09-21  Mark McLoughlin  <mark@skynet.ie>
6993
6994         * doc/dbus-specification.sgml: Change the header field name
6995         to be an enum and update the rest of the spec to reference
6996         the fields using the conventinal name.
6997
6998         * dbus/dbus-protocol.h: update to reflect the spec.
6999
7000         * doc/TODO: add item to remove the 4 byte alignment requirement.
7001         
7002         * dbus/dbus-message.c: Remove the code to generalise the
7003         header/body length and serial number header fields as named
7004         header fields so we can reference field names using the 
7005         protocol values.
7006         (append_int_field), (append_uint_field), (append_string_field):
7007         Append the field name as a byte rather than four chars.
7008         (delete_int_or_uint_field), (delete_string_field): reflect the
7009         fact that the field name and typecode now occupy 4 bytes instead
7010         of 8.
7011         (decode_string_field), (decode_header_data): update to reflect
7012         protocol changes and move the field specific encoding from
7013         decode_string_field() back into decode_header_data().
7014         
7015         * dbus/dbus-internals.[ch]: (_dbus_header_field_to_string):
7016         Add utility to aid debugging.
7017         
7018         * dbus/dbus-message-builder.c:
7019         (append_string_field), (_dbus_message_data_load): Update to
7020         reflect protocol changes; Change the FIELD_NAME directive
7021         to HEADER_FIELD and allow it to take the field's conventional
7022         name rather than the actual value.
7023         
7024         * test/data/*/*.message: Update to use HEADER_FIELD instead
7025         of FIELD_NAME; Always align the header on an 8 byte boundary
7026         *before* updating the header length.
7027
7028 2003-09-15  Havoc Pennington  <hp@pobox.com>
7029
7030         * dbus/dbus-pending-call.c: add the get/set object data
7031         boilerplate as for DBusConnection, etc. Use generic object data
7032         for the notify callback.
7033
7034         * glib/dbus-gparser.c (parse_node): parse child nodes
7035
7036         * tools/dbus-viewer.c: more hacking on the dbus-viewer
7037         
7038         * glib/dbus-gutils.c (_dbus_gutils_split_path): add a file to
7039         contain functions shared between the convenience lib and the
7040         installed lib
7041
7042         * glib/Makefile.am (libdbus_glib_1_la_LDFLAGS): add
7043         -export-symbols-regex to the GLib library
7044
7045         * dbus/dbus-object-tree.c (_dbus_object_tree_dispatch_and_unlock):
7046         fix the locking in here, and add a default handler for
7047         Introspect() that just returns sub-nodes.
7048
7049 2003-09-14  Havoc Pennington  <hp@pobox.com>
7050
7051         * glib/dbus-gthread.c (dbus_g_thread_init): rename to make g_foo
7052         rather than gfoo consistent
7053
7054         * glib/dbus-gproxy.h: delete for now, move contents to
7055         dbus-glib.h, because the include files don't work right since we
7056         aren't in the dbus/ subdir.
7057         
7058         * glib/dbus-gproxy.c (dbus_gproxy_send): finish implementing
7059         (dbus_gproxy_end_call): finish
7060         (dbus_gproxy_begin_call): finish
7061
7062         * glib/dbus-gmain.c (dbus_set_g_error): new
7063
7064         * glib/dbus-gobject.c (handle_introspect): include information
7065         about child nodes in the introspection
7066
7067         * dbus/dbus-connection.c (dbus_connection_list_registered): new
7068         function to help in implementation of introspection
7069
7070         * dbus/dbus-object-tree.c
7071         (_dbus_object_tree_list_registered_and_unlock): new function
7072
7073 2003-09-12  Havoc Pennington  <hp@pobox.com>
7074
7075         * glib/dbus-gidl.h: add common base class for all the foo_info
7076         types
7077
7078         * tools/dbus-viewer.c: add GTK-based introspection UI thingy
7079         similar to kdcop
7080
7081         * test/Makefile.am: try test srcdir -ef . in addition to test
7082         srcdir = ., one of them should work (yeah lame)
7083         
7084         * glib/Makefile.am: build the "idl" parser stuff as a convenience
7085         library
7086         
7087         * glib/dbus-gparser.h: make description_load routines return
7088         NodeInfo* not Parser*
7089
7090         * Makefile.am (SUBDIRS): build test dir after all library dirs
7091
7092         * configure.in: add GTK+ detection
7093
7094 2003-09-07  Havoc Pennington  <hp@pobox.com>
7095
7096         * Make Doxygen contented.
7097
7098 2003-09-07  Havoc Pennington  <hp@pobox.com>
7099
7100         * doc/dbus-specification.sgml: more updates
7101
7102 2003-09-06  Havoc Pennington  <hp@pobox.com>
7103
7104         * doc/dbus-specification.sgml: partial updates
7105
7106         * bus/dbus-daemon-1.1.in: fix the config file docs for the
7107         zillionth time; hopefully I edited the right file this time.
7108
7109         * bus/config-parser.c (append_rule_from_element): support
7110         send_type, send_path, receive_type, receive_path
7111
7112         * bus/policy.c: add message type and path to the list of things
7113         that can be "firewalled"
7114
7115 2003-09-06  Havoc Pennington  <hp@pobox.com>
7116
7117         * dbus/dbus-connection.c (dbus_connection_register_fallback): add this
7118         (dbus_connection_register_object_path): make this not handle
7119         messages to paths below the given path
7120
7121 2003-09-03  Havoc Pennington  <hp@pobox.com>
7122
7123         * test/glib/Makefile.am: add this with random glib-linked test
7124         programs
7125
7126         * glib/Makefile.am: remove the random test programs from here,
7127         leave only the unit tests
7128
7129         * glib/dbus-gobject.c (_dbus_gobject_test): add test for 
7130         uscore/javacaps conversion, and fix     
7131         (get_object_property, set_object_property): change to .NET
7132         convention for mapping props to methods, set_FooBar/get_FooBar, 
7133         since one language has such a convention we may as well copy it. 
7134         Plus real methods in either getFooBar or get_foo_bar style won't 
7135         collide with this convention.
7136
7137 2003-09-01  Havoc Pennington  <hp@pobox.com>
7138
7139         * glib/dbus-gparser.c: implement
7140
7141         * glib/dbus-gobject.c: start implementing skeletons support
7142
7143         * configure.in: when disabling checks/assert, also define
7144         G_DISABLE_ASSERT and G_DISABLE_CHECKS
7145
7146 2003-09-01  Havoc Pennington  <hp@pobox.com>
7147
7148         * glib/Makefile.am: rearrange a bunch of files and get "make
7149         check" framework set up
7150
7151 2003-08-31  Havoc Pennington  <hp@pobox.com>
7152
7153         * fix build with --disable-tests
7154
7155 2003-08-30  Havoc Pennington  <hp@pobox.com>
7156
7157         * dbus/dbus-connection.c: purge DBusMessageHandler
7158
7159         * dbus/dbus-message-handler.c: remove DBusMessageHandler, just 
7160         use callbacks everywhere
7161
7162 2003-08-30  Havoc Pennington  <hp@pobox.com>
7163
7164         * test/data/valid-config-files/system.d/test.conf: change to 
7165         root for the user so warnings don't get printed
7166
7167         * dbus/dbus-message.c: add dbus_message_get_path,
7168         dbus_message_set_path
7169         
7170         * dbus/dbus-object-tree.c (do_test_dispatch): add test of
7171         dispatching to a path
7172
7173         * dbus/dbus-string.c (_dbus_string_validate_path): add
7174
7175         * dbus/dbus-marshal.c (_dbus_demarshal_object_path): implement
7176         (_dbus_marshal_object_path): implement
7177
7178         * dbus/dbus-protocol.h (DBUS_HEADER_FIELD_PATH): new header field 
7179         to contain the path to the target object
7180         (DBUS_HEADER_FIELD_SENDER_SERVICE): rename
7181         DBUS_HEADER_FIELD_SENDER to explicitly say it's the sender service
7182
7183 2003-08-30  Havoc Pennington  <hp@pobox.com>
7184
7185         * dbus/dbus-object-tree.c: write tests and fix the discovered bugs
7186
7187 2003-08-29  Havoc Pennington  <hp@pobox.com>
7188
7189         * dbus/dbus-object-tree.c: modify to allow overlapping paths to be
7190         registered
7191         (struct DBusObjectSubtree): shrink this
7192         a lot, since we may have a lot of them
7193         (_dbus_object_tree_free_all_unlocked): implement
7194         (_dbus_object_tree_dispatch_and_unlock): implement
7195
7196 2003-08-29  Havoc Pennington  <hp@pobox.com>
7197
7198         * dbus/dbus-internals.h: fix _DBUS_N_GLOBAL_LOCKS
7199
7200 2003-08-28  Havoc Pennington  <hp@pobox.com>
7201
7202         purge DBusObjectID
7203         
7204         * dbus/dbus-connection.c: port to no ObjectID, create a
7205         DBusObjectTree, rename ObjectTree to ObjectPath in public API
7206
7207         * dbus/dbus-connection.h (struct DBusObjectTreeVTable): delete 
7208         everything except UnregisterFunction and MessageFunction
7209         
7210         * dbus/dbus-marshal.c: port away from DBusObjectID, 
7211         add DBUS_TYPE_OBJECT_PATH
7212         
7213         * dbus/dbus-object-registry.[hc], dbus/dbus-object.[hc], 
7214         dbus/dbus-objectid.[hc]: remove these, we are moving to 
7215         path-based object IDs
7216
7217 2003-08-25  Havoc Pennington  <hp@pobox.com>
7218
7219         Just noticed that dbus_message_test is hosed, I wonder when I
7220         broke that. I thought make check was passing earlier...
7221         
7222         * dbus/dbus-object-tree.c: add new "object tree" to match DCOP 
7223         container tree, will replace most of dbus-object-registry
7224
7225         * dbus/dbus-string.c (_dbus_string_append_printf_valist): fix C99
7226         screwup
7227
7228 2003-08-19  Havoc Pennington  <hp@pobox.com>
7229
7230         * dbus/dbus-message.c (decode_string_field): support FIELD_SENDER
7231         (dbus_message_is_error): fix this function
7232
7233         * bus/dbus-daemon-1.1: clarify logic on when <deny>/<allow> rules
7234         match
7235
7236         * bus/policy.c (bus_client_policy_check_can_receive): fix code to
7237         reflect clarified man page
7238         (bus_client_policy_check_can_send): ditto
7239         
7240         * bus/session.conf.in: fixup
7241
7242         * bus/system.conf.in: fixup
7243
7244 2003-08-18  Havoc Pennington  <hp@redhat.com>
7245
7246         * dbus/dbus-hash.c (_dbus_hash_table_insert_two_strings): fix
7247
7248         * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
7249         dumb bug created earlier (wrong order of args to
7250         decode_header_data())
7251         
7252         * tools/dbus-send.c: port
7253
7254         * tools/dbus-print-message.c (print_message): port
7255
7256         * test/data/*messages: port all messages over
7257         
7258         * dbus/dbus-message-builder.c: support including 
7259         message type
7260         
7261         * bus/driver.c: port over
7262         
7263         * bus/dispatch.c: port over to new stuff
7264
7265         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
7266         rename disconnect signal to "Disconnected"
7267
7268 2003-08-17  Havoc Pennington  <hp@pobox.com>
7269
7270         This doesn't compile yet, but syncing up so I can hack on it from
7271         work. What are branches for if not broken code? ;-)
7272         
7273         * dbus/dbus-protocol.h: remove DBUS_HEADER_FIELD_NAME, add
7274         DBUS_HEADER_FIELD_INTERFACE, DBUS_HEADER_FIELD_MEMBER,
7275         DBUS_HEADER_FIELD_ERROR_NAME
7276         
7277         * dbus/dbus-hash.c: Introduce DBUS_HASH_TWO_STRINGS as hack to use
7278         for the interface+member pairs
7279         (string_hash): change to use g_str_hash algorithm
7280         (find_direct_function, find_string_function): refactor these to
7281         share most code.
7282         
7283         * dbus/dbus-message.c: port all of this over to support 
7284         interface/member fields instead of name field
7285
7286         * dbus/dbus-object-registry.c: port over
7287         
7288         * dbus/dbus-string.c (_dbus_string_validate_interface): rename
7289         from _dbus_string_validate_name
7290
7291         * bus/dbus-daemon-1.1: change file format for the 
7292         <deny>/<allow> stuff to match new message naming scheme
7293
7294         * bus/policy.c: port over
7295
7296         * bus/config-parser.c: parse new format
7297         
7298 2003-08-16  Havoc Pennington  <hp@pobox.com>
7299
7300         * dbus/dbus-object-registry.c (add_and_remove_objects): remove
7301         broken assertion
7302
7303         * glib/dbus-gproxy.c: some hacking
7304
7305 2003-08-15  Havoc Pennington  <hp@redhat.com>
7306
7307         * dbus/dbus-pending-call.c (dbus_pending_call_block): implement
7308
7309         * dbus/dbus-connection.c
7310         (dbus_connection_send_with_reply_and_block): factor out internals;
7311         change to convert any error replies to DBusError instead of 
7312         returning them as a message
7313
7314 2003-08-15  Havoc Pennington  <hp@pobox.com>
7315
7316         * dbus/dbus-connection.c, 
7317         dbus/dbus-pending-call.c: Finish the pending call stuff
7318
7319 2003-08-14  Havoc Pennington  <hp@redhat.com>
7320
7321         * dbus/dbus-pending-call.c: start on new object that will replace
7322         DBusMessageHandler and ReplyHandlerData for tracking outstanding
7323         replies
7324
7325         * dbus/dbus-gproxy.c: start on proxy object used to communicate
7326         with remote interfaces
7327
7328         * dbus/dbus-gidl.c: do the boring boilerplate in here
7329         
7330 2003-08-12  Havoc Pennington  <hp@pobox.com>
7331
7332         * bus/dispatch.c (bus_dispatch): make this return proper 
7333         DBusHandlerResult to avoid DBUS_ERROR_UNKNOWN_METHOD
7334
7335         * dbus/dbus-errors.c (dbus_set_error): use
7336         _dbus_string_append_printf_valist
7337
7338         * dbus/dbus-string.c (_dbus_string_append_printf_valist)
7339         (_dbus_string_append_printf): new
7340
7341         * dbus/dbus-errors.h (DBUS_ERROR_UNKNOWN_MESSAGE): change to
7342         UNKNOWN_METHOD
7343
7344         * dbus/dbus-connection.c (dbus_connection_dispatch): handle
7345         DBUS_HANDLER_RESULT_NEED_MEMORY; send default error reply if a
7346         message is unhandled.
7347
7348 2003-08-11  Havoc Pennington  <hp@pobox.com>
7349
7350         * bus/test.c (client_disconnect_handler): change to return
7351         HANDLED (would have been REMOVE_MESSAGE)
7352
7353         * dbus/dbus-object.h (enum DBusHandlerResult): rename to
7354         HANDLED/NOT_YET_HANDLED instead of
7355         REMOVE_MESSAGE/ALLOW_MORE_HANDLERS to make it clearer how it 
7356         should be used.
7357
7358 2003-08-10  Havoc Pennington  <hp@pobox.com>
7359
7360         * tools/dbus-send.c (main): add --type argument, for now
7361         supporting only method_call and signal types.
7362
7363         * tools/dbus-print-message.c: print message type
7364
7365         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
7366         init connection->objects
7367
7368         * doc/dbus-specification.sgml: fix sgml
7369
7370         * bus/*.c: port over to object-instance API changes
7371
7372         * test/test-service.c: ditto
7373         
7374         * dbus/dbus-message.c (dbus_message_create_header): allow #NULL
7375         name, we will have to fix up the rest of the code to also handle
7376         this
7377         (dbus_message_new): generic message-creation call
7378         (set_string_field): allow appending name field
7379
7380 2003-08-06  Havoc Pennington  <hp@pobox.com>
7381
7382         * dbus/dbus-object-registry.c: implement signal connection 
7383         and dispatch
7384
7385         * dbus/dbus-connection.c (_dbus_connection_unref_unlocked): new
7386
7387         * dbus/dbus-internals.c (_dbus_memdup): new function
7388
7389 2003-08-02  Havoc Pennington  <hp@pobox.com>
7390
7391         * dbus/dbus-message.c (dbus_message_get_no_reply)
7392         (dbus_message_set_no_reply): add these and remove
7393         set_is_error/get_is_error
7394
7395         * dbus/dbus-protocol.h, doc/dbus-specification.sgml: 
7396         remove the ERROR flag, since there's now an ERROR type
7397
7398 2003-08-01  Havoc Pennington  <hp@pobox.com>
7399
7400         * dbus/dbus-object-registry.c (_dbus_object_registry_handle_and_unlock):
7401         implement
7402
7403         * dbus/dbus-message.c (dbus_message_get_type): new function
7404
7405         * doc/dbus-specification.sgml: add "type" byte to messages
7406
7407 2003-08-01  Havoc Pennington  <hp@pobox.com>
7408
7409         * dbus/dbus-protocol.h (DBUS_MESSAGE_TYPE_*): introduce
7410         a message type enum to distinguish kinds of message
7411         (DBUS_HEADER_FLAG_NO_REPLY_EXPECTED): flag for a message 
7412         that need not be replied to
7413
7414 2003-08-01  Havoc Pennington  <hp@pobox.com>
7415
7416         * dbus/dbus-marshal.c: adapt to DBusObjectID changes
7417         (unpack_8_octets): fix no-64-bit-int bug
7418
7419         * dbus/dbus-object-registry.c (validate_id): validate the 
7420         connection ID bits, not just the instance ID.
7421
7422         * dbus/dbus-connection.c (_dbus_connection_init_id): initialize
7423         the connection-global 33 bits of the object ID
7424
7425         * dbus/dbus-object-registry.c (info_from_entry): fill in 
7426         object ID in the new way
7427
7428         * dbus/dbus-objectid.h: rather than high/low bits, specifically 
7429         define server/client/instance bits.
7430
7431 2003-07-30  Havoc Pennington  <hp@pobox.com>
7432
7433         * dbus/dbus-connection.c (dbus_connection_register_object): fix
7434         build
7435
7436 2003-07-13  Havoc Pennington  <hp@pobox.com>
7437
7438         * dbus/dbus-object.h (struct DBusObjectVTable): add padding
7439         fields to DBusObjectVTable and DBusObjectInfo
7440
7441 2003-07-12  Havoc Pennington  <hp@pobox.com>
7442
7443         * dbus/dbus-object-registry.c: implement unit test,
7444         fix bugs discovered in process
7445
7446         * dbus/dbus-connection.c: remove handler_table and
7447         register_handler(), add DBusObjectRegistry usage
7448
7449         * dbus/dbus-objectid.c (dbus_object_id_is_null)
7450         (dbus_object_id_set_null): new functions
7451
7452 2003-07-08  Havoc Pennington  <hp@pobox.com>
7453
7454         * dbus/dbus-object.c: implement some of this
7455
7456         * dbus/dbus-object-registry.c
7457         (_dbus_object_registry_add_and_unlock): fill in the object_id out
7458         param
7459         (_dbus_object_registry_new): handle OOM
7460
7461 2003-07-08  Havoc Pennington  <hp@pobox.com>
7462
7463         * dbus/dbus-object.h: sketch out an API for registering objects
7464         with a connection, that allows us to use as little as 24 bytes
7465         per object and lets application code represent an object in 
7466         any conceivable way.
7467
7468         * dbus/dbus-object-registry.c: implement the hard bits of the
7469         DBusConnection aspect of object API. Not yet wired up.
7470         
7471 2003-07-06  Havoc Pennington  <hp@pobox.com>
7472
7473         * dbus/dbus-marshal.c (_dbus_marshal_set_object_id): new function
7474         (_dbus_marshal_object_id): new
7475         (_dbus_demarshal_object_id): new
7476         (_dbus_marshal_get_arg_end_pos): support object ID type, and
7477         consolidate identical switch cases. Don't conditionalize handling
7478         of DBUS_TYPE_UINT64, need to handle the type always.
7479         (_dbus_marshal_validate_arg): consolidate identical cases, and
7480         handle DBUS_TYPE_OBJECT_ID
7481
7482         * dbus/dbus-objectid.c: new file with DBusObjectID data type.
7483
7484         * dbus/dbus-protocol.h: add DBUS_TYPE_OBJECT_ID
7485
7486 2003-09-28  Havoc Pennington  <hp@pobox.com>
7487
7488         * real 0.13 release
7489
7490 2003-09-28  Havoc Pennington  <hp@pobox.com>
7491
7492         * doc/Makefile.am (dbus-specification.html): testing a funky hack
7493         to work with Debian db2html
7494
7495 2003-09-28  Havoc Pennington  <hp@pobox.com>
7496
7497         * configure.in: 0.13
7498
7499         * doc/Makefile.am (dbus-test-plan.html): accept nonexistence of
7500         stylesheet-images for benefit of Debian
7501         
7502         Change back to using filesystem-linked sockets for the system
7503         bus, so only root can create the default system bus address.
7504         
7505         * bus/system.conf.in: change to use
7506         DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
7507
7508         * dbus/Makefile.am (INCLUDES): remove DBUS_SYSTEM_BUS_PATH define
7509         from here.
7510
7511         * configure.in: define DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
7512         here, and AC_DEFINE DBUS_SYSTEM_PATH
7513
7514 2003-08-09  Anders Carlsson  <andersca@codefactory.se>
7515
7516         * doc/TODO:
7517         * doc/busconfig.dtd:
7518         Add busconfig DTD.
7519         
7520 2003-08-09  Anders Carlsson  <andersca@codefactory.se>
7521
7522         * doc/dbus-specification.sgml:
7523         Add activation reply values.
7524         
7525 2003-08-05  Havoc Pennington  <hp@redhat.com>
7526
7527         * configure.in: 0.12
7528
7529 2003-08-05  Anders Carlsson  <andersca@codefactory.se>
7530
7531         * glib/dbus-gmain.c: (watch_fd_new), (watch_fd_ref),
7532         (watch_fd_unref), (dbus_gsource_check), (dbus_gsource_dispatch),
7533         (add_watch), (remove_watch), (create_source):
7534         Refcount fds, fixes some reentrancy issues.
7535         
7536 2003-07-30  Havoc Pennington  <hp@redhat.com>
7537
7538         * dbus/dbus-bus.c (init_connections_unlocked): fix default system
7539         bus address to be abstract if we have abstract sockets
7540
7541         * NEWS: update
7542
7543 2003-07-28  Havoc Pennington  <hp@redhat.com>
7544
7545         * bus/messagebus.in: fix to avoid processname/servicename 
7546         confusion, from Michael Kearey
7547         https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=100965
7548         
7549 2003-07-23  Havoc Pennington  <hp@pobox.com>
7550
7551         * dbus/dbus-message.c (dbus_message_iter_get_named): 
7552         fix from Andy Hanton to remove broken "+1"
7553
7554 2003-07-16  Havoc Pennington  <hp@pobox.com>
7555
7556         * tools/dbus-launch.c (babysit): close stdout/stderr in the
7557         babysitter process, as suggested by Thomas Leonard, so 
7558         an "eval `dbus-launch --exit-with-session`" will actually 
7559         return
7560
7561 2003-07-16  Havoc Pennington  <hp@pobox.com>
7562
7563         * configure.in: print out EXPANDED_* variables in the summary at
7564         the end; clean up the code that computes EXPANDED_ variables and
7565         get the ones using exec_prefix right. Should make things work
7566         when you build without --prefix
7567
7568 2003-06-29  Havoc Pennington  <hp@pobox.com>
7569
7570         * mono/Test.cs (class Test): fire up a main loop and run it
7571
7572         * mono/DBus.cs (DBus): don't g_thread_init since it can only be
7573         done once, the app has to do it
7574
7575 2003-06-26  Havoc Pennington  <hp@pobox.com>
7576
7577         * mono/Connection.cs: set up connection with the glib main loop
7578
7579 2003-07-01  Havoc Pennington  <hp@redhat.com>
7580
7581         * doc/dbus-specification.sgml: clarify the format of a type code,
7582         change suggested by Jim Blandy
7583
7584 2003-06-29  Miloslav Trmac  <mitr@volny.cz>
7585
7586         * doc/Makefile.am:
7587         * tools/Makefile.am: Don't assume srcdir == builddir.
7588
7589         * dbus/dbus-memory.c (dbus_realloc): Don't check guards after shrinking
7590         the allocated block.
7591         (_dbus_memory_test): New function.
7592         * dbus/dbus-test.h: Add _dbus_memory_test ().
7593         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): Call it.
7594
7595         * dbus/dbus-message.c (decode_header_data): Use %.4s instead
7596         of %c%c%c%c.
7597         (dbus_message_new): Remove obsolete @todo.
7598
7599         * dbus/dbus-marshal.c (_dbus_marshal_set_int64)
7600         (_dbus_marshal_set_uint64): Fix comment.
7601
7602         * dbus/dbus-message.c (append_int_field, append_uint_field): Don't
7603         hardcode FIELD_REPLY_SERIAL.
7604
7605         * dbus/dbus-mainloop.c (_dbus_loop_remove_watch)
7606         (_dbus_loop_remove_timeout): Cast function pointers to (void *) for %p
7607
7608         * configure.in: Add -D_POSIX_C_SOURCE=199309L -DBSD_SOURCE to CFLAGS
7609         and disable DBUS_USE_ATOMIC_INT_486 when --enable-ansi is used
7610
7611 2003-06-24  Havoc Pennington  <hp@pobox.com>
7612
7613         * mono/*.cs: Use IntPtr.Zero instead of ((IntPtr) 0)
7614
7615 2003-06-23  Anders Carlsson  <andersca@codefactory.se>
7616
7617         * configure.in:
7618         * gcj/.cvsignore:
7619         * gcj/Hello.java:
7620         * gcj/Makefile.am:
7621         * gcj/TestMessage.java: (TestMessage), (TestMessage.main):
7622         * gcj/org/.cvsignore:
7623         * gcj/org/Makefile.am:
7624         * gcj/org/freedesktop/.cvsignore:
7625         * gcj/org/freedesktop/Makefile.am:
7626         * gcj/org/freedesktop/dbus/.cvsignore:
7627         * gcj/org/freedesktop/dbus/Makefile.am:
7628         * gcj/org/freedesktop/dbus/Message.java: (Message),
7629         (Message.Message):
7630         * gcj/org/freedesktop/dbus/natMessage.cc:
7631         Fix the build system.
7632
7633 2003-06-22  Havoc Pennington  <hp@pobox.com>
7634
7635         * mono/Connection.cs: add more bindings
7636
7637         * dbus/dbus-threads.c (dbus_threads_init): allow calling this
7638         more than once.
7639
7640 2003-06-22  Havoc Pennington  <hp@pobox.com>
7641
7642         * mono/Connection.cs, mono/DBus.cs, mono/Error.cs:
7643         Start wrapping more stuff.
7644
7645 2003-06-22  Havoc Pennington  <hp@pobox.com>
7646
7647         * mono/Message.cs: implement Message.Wrap() that ensures we only
7648         have a single C# wrapper per DBusMessage, assuming it works which
7649         it probably doesn't.
7650
7651         * dbus/dbus-message.c (dbus_message_allocate_data_slot): new
7652         (dbus_message_free_data_slot): new
7653         (dbus_message_set_data): new
7654         (dbus_message_get_data): new
7655
7656 2003-06-22  Havoc Pennington  <hp@pobox.com>
7657
7658         * dbus/dbus-dataslot.c (_dbus_data_slot_allocator_unref)
7659         (_dbus_data_slot_allocator_alloc): rework these to keep a
7660         reference count on each slot and automatically manage a global
7661         slot ID variable passed in by address
7662
7663         * bus/bus.c: convert to new dataslot API
7664
7665         * dbus/dbus-bus.c: convert to new dataslot API
7666
7667         * dbus/dbus-connection.c: convert to new dataslot API
7668
7669         * dbus/dbus-server.c: convert to new dataslot API
7670
7671         * glib/dbus-gmain.c: ditto
7672
7673         * bus/test.c: ditto
7674
7675         * bus/connection.c: ditto
7676
7677 2003-06-22  Anders Carlsson  <andersca@codefactory.se>
7678
7679         * configure.in: Add AM_PROG_GCJ and move AM_PROG_LIBTOOL
7680         after the gcj checks so that the correct configuration tags
7681         will be added to libtool.
7682
7683         * dbus-glib-1.pc.in: No need to specify any includes since
7684         dbus-1.pc.in has those.
7685
7686 2003-06-22  Havoc Pennington  <hp@pobox.com>
7687
7688         * mono/*, gcj/*, configure.in, Makefile.am:
7689         Check in makefiles and subdirs for mono and gcj bindings.
7690         Neither binding actually exists, just trying to get through
7691         all the build and other boring bits.
7692
7693 2003-06-21  Philip Blundell  <philb@gnu.org>
7694
7695         * tools/dbus-monitor.1: Updated.
7696
7697         * tools/dbus-send.1: Likewise.
7698
7699 2003-06-20  Anders Carlsson  <andersca@codefactory.se>
7700
7701         * dbus/dbus-transport-unix.c (unix_handle_watch): Check
7702         for hangup and error after checking read so we won't discard
7703         pending data if both hangup and read are set.
7704
7705 2003-06-19  Philip Blundell  <philb@gnu.org>
7706
7707         * tools/dbus-print-message.c (print_message): Handle BOOLEAN.
7708
7709         * tools/dbus-send.c: Accept both --system and --session.
7710
7711         * tools/dbus-monitor.c: Same here.
7712
7713 2003-06-19  Anders Carlsson  <andersca@codefactory.se>
7714
7715         * glib/dbus-glib.h: Fix so that dbus-glib.h can be used
7716         from C++ (Patch by Miloslav Trmac).
7717
7718 2003-06-15  Joe Shaw  <joe@assbarn.com>
7719
7720         * configure.in: Check for socklen_t.
7721
7722         * dbus/dbus-sysdeps.c: Define socklen_t if it's not defined.
7723
7724         * test/test-segfault.c: Add #include <sys/time.h>
7725
7726         * tools/Makefile.am: Add DBUS_X_CFLAGS to the INCLUDES since
7727         dbus-launch needs it.
7728
7729 2003-06-09  Havoc Pennington  <hp@redhat.com>
7730
7731         * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): don't use
7732         SUN_LEN, it breaks abstract socket usage
7733
7734         * dbus/dbus-internals.c (_dbus_verbose_real): only print PID at
7735         starts of lines.
7736
7737 2003-06-04  Havoc Pennington  <hp@pobox.com>
7738
7739         * dbus/dbus-server.c (dbus_server_listen): allow abstract sockets
7740         using unix:abstract=/foo, and when listening in a tmpdir
7741         i.e. unix:tmpdir=/tmp, always use abstract sockets if we can.
7742
7743         * dbus/dbus-transport.c (_dbus_transport_open): support
7744         unix:abstract=/foo
7745
7746         * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
7747         support abstract sockets
7748
7749         * dbus/dbus-transport-unix.c
7750         (_dbus_transport_new_for_domain_socket): support abstract sockets
7751
7752         * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket): add "abstract"
7753         toggle as an argument, implement abstract namespace support
7754         (_dbus_listen_unix_socket): ditto
7755
7756         * configure.in: add --enable-abstract-sockets and implement
7757         a configure check for autodetection of the right value.
7758
7759 2003-06-01  Havoc Pennington  <hp@pobox.com>
7760
7761         * tools/dbus-cleanup-sockets.c: add utility to clean up sockets
7762         in /tmp (though on Linux this will end up being useless,
7763         when we add abstract namespace support)
7764
7765         * configure.in: define DBUS_SESSION_SOCKET_DIR in addition to
7766         subst'ing it
7767
7768 2003-05-28  Colin Walters  <walters@verbum.org>
7769
7770         * tools/dbus-monitor.c (main): Fix silly typo (s/--session/--system/).
7771
7772 2003-05-18  Anders Carlsson  <andersca@codefactory.se>
7773
7774         * dbus/dbus-message.c (dbus_message_new): Remove @todo.
7775
7776 2003-05-17  Colin Walters  <walters@gnu.org>
7777
7778         * tools/dbus-send.c: Don't exit with an error code if --help was
7779         passed.  Default to using the session bus instead of the system
7780         one.
7781
7782         * tools/dbus-launch.c: Ditto.
7783
7784         * tools/dbus-monitor.c: Ditto.
7785
7786         * tools/dbus-send.1: Update with new arguments.
7787
7788         * tools/dbus-launch.c: Emit code to export variables.  New
7789         arguments -s and -c to specify shell syntax, and a bit of code to
7790         autodetect syntax.  Also, allow specifying a program to run.
7791
7792         * tools/dbus-launch.1: Update with new arguments.
7793
7794         * tools/dbus-send.1: Ditto.
7795
7796         * tools/dbus-monitor.1: Ditto.
7797
7798 2003-05-17  Havoc Pennington  <hp@pobox.com>
7799
7800         * bus/config-parser.c (merge_included): merge in policies from
7801         child configuration file.
7802
7803         * bus/policy.c (bus_policy_merge): function to merge two policies
7804         together
7805
7806 2003-05-16  Havoc Pennington  <hp@redhat.com>
7807
7808         * dbus/dbus-connection.c: disable verbose lock spew
7809
7810         * tools/dbus-send.c: add --print-reply command line option
7811
7812         * tools/dbus-print-message.h (print_message): new util function
7813         shared by dbus-send and dbus-monitor
7814
7815         * tools/dbus-monitor.c (handler_func): exit on disconnect
7816
7817         * dbus/dbus-transport-unix.c (do_reading): if the transport is
7818         disconnected, don't try to use the read_watch
7819
7820         * dbus/dbus-watch.c (dbus_watch_get_enabled): assert watch != NULL
7821         so we can find this bug more easily
7822
7823 2003-05-16  Havoc Pennington  <hp@redhat.com>
7824
7825         * bus/policy.c (free_rule_list_func): avoid a crash when passed
7826         NULL as DBusHashTable is annoyingly likely to do.
7827
7828 2003-05-16  Colin Walters  <walters@verbum.org>
7829
7830         * tools/dbus-monitor.c: Add --session argument and usage()
7831         function.
7832
7833         * tools/dbus-monitor.1: Update with new --session arg.
7834
7835         * bus/Makefile.am (install-data-hook): Create
7836         $(libdir)/dbus-1.0/services so that the session bus is happy.
7837
7838 2003-05-15  Havoc Pennington  <hp@redhat.com>
7839
7840         * dbus/dbus-sysdeps.c (_dbus_atomic_dec, _dbus_atomic_inc): work
7841         on non-x86. ifdef's are evil.
7842
7843 2003-05-15  Havoc Pennington  <hp@redhat.com>
7844
7845         * configure.in: 0.11
7846
7847         * NEWS: update
7848
7849         * bus/Makefile.am (initddir): apparently we are supposed to put
7850         init scripts in /etc/rc.d/init.d not /etc/init.d
7851
7852         * bus/Makefile.am: remove the "you must --enable-tests to make
7853         check" as it broke distcheck
7854
7855         * bus/Makefile.am (install-data-hook): create /etc/dbus-1/system.d
7856
7857 2003-05-13  James Willcox  <jwillcox@gnome.org>
7858
7859         * configure.in:
7860         * bus/activation.c: (bus_activation_service_created),
7861         (bus_activation_activate_service):
7862         * bus/driver.c: (bus_driver_send_service_deleted),
7863         (bus_driver_send_service_created), (bus_driver_send_service_lost),
7864         (bus_driver_send_service_acquired),
7865         (bus_driver_send_welcome_message),
7866         (bus_driver_handle_list_services):
7867         * bus/session.conf.in:
7868         * dbus/dbus-bus.c: (dbus_bus_acquire_service),
7869         (dbus_bus_service_exists), (dbus_bus_activate_service):
7870         * dbus/dbus-bus.h:
7871
7872         Add some convenience API which lets you activate a service, and did a
7873         bunch of s/0/DBUS_TYPE_INVALID/ in calls to dbus_message_append_args()
7874         and dbus_message_get_args()
7875
7876 2003-05-11  Havoc Pennington  <hp@pobox.com>
7877
7878         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix to avoid
7879         calling _dbus_marshal_validate_arg() for every byte in a byte
7880         array, etc.
7881
7882         * dbus/dbus-message-handler.c: use atomic reference counting to
7883         reduce number of locks slightly; the global lock in here sucks
7884
7885         * dbus/dbus-connection.c
7886         (_dbus_connection_update_dispatch_status_and_unlock): variant of
7887         update_dispatch_status that can be called with lock held; then use
7888         in a couple places to reduce locking/unlocking
7889         (dbus_connection_send): hold the lock over the whole function
7890         instead of acquiring it twice.
7891
7892         * dbus/dbus-timeout.c (_dbus_timeout_new): handle OOM
7893
7894         * bus/connection.c (bus_connections_setup_connection): fix access
7895         to already-freed memory.
7896
7897         * dbus/dbus-connection.c: keep a little cache of linked list
7898         nodes, to avoid using the global linked list alloc lock in the
7899         normal send-message case. Instead we just use the connection lock
7900         that we already have to take.
7901
7902         * dbus/dbus-list.c (_dbus_list_find_last): new function
7903
7904         * dbus/dbus-sysdeps.c (_dbus_atomic_inc, _dbus_atomic_dec):
7905         change to use a struct for the atomic type; fix docs,
7906         they return value before increment, not after increment.
7907
7908         * dbus/dbus-string.c (_dbus_string_append_4_aligned)
7909         (_dbus_string_append_8_aligned): new functions to try to
7910         microoptimize this operation.
7911         (reallocate_for_length): break this out of set_length(), to
7912         improve profile info, and also so we can consider inlining the
7913         set_length() part.
7914
7915         * dbus/dbus-message.c (dbus_message_new_empty_header): init data
7916         strings with some preallocation, cuts down on our calls to realloc
7917         a fair bit. Though if we can get the "move entire string to empty
7918         string" optimization below to kick in here, it would be better.
7919
7920         * dbus/dbus-string.c (_dbus_string_move): just call
7921         _dbus_string_move_len
7922         (_dbus_string_move_len): add a special case for moving
7923         an entire string into an empty string; we can just
7924         swap the string data instead of doing any reallocs.
7925         (_dbus_string_init_preallocated): new function
7926
7927 2003-05-11  Havoc Pennington  <hp@pobox.com>
7928
7929         Write a "test-profile" that does echo client-server with threads;
7930         profile reveals lock contention, memcpy/realloc of buffers, and
7931         UTF-8 validation as hot spots. 20% of lock contention eliminated
7932         with dbus_atomic_inc/dec implementation on x86.  Much remaining
7933         contention is global mempool locks for GList and DBusList.
7934
7935         * dbus/dbus-sysdeps.c (_dbus_atomic_inc, _dbus_atomic_dec): add
7936         x86 implementation
7937
7938         * dbus/dbus-connection.c (struct DBusConnection): use
7939         dbus_atomic_t for the reference count
7940
7941         * dbus/dbus-message.c (struct DBusMessage): declare
7942         dbus_atomic_t values as volatile
7943
7944         * configure.in: code to detect ability to use atomic integer
7945         operations in assembly, from GLib patch
7946
7947         * dbus/dbus-internals.c (_dbus_verbose_real): call getpid every
7948         time, tired of it being wrong in threads and forked processes
7949
7950         * glib/test-profile.c: a little program to bounce messages back
7951         and forth between threads and eat CPU
7952
7953         * dbus/dbus-connection.c: add debug spew macros for debugging
7954         thread locks; include config.h at top; fix deadlock in
7955         dbus_connection_flush()
7956
7957 2003-05-08  Havoc Pennington  <hp@pobox.com>
7958
7959         * dbus/dbus-spawn.c: s/_exit/exit/ because it was keeping gcov
7960         data from getting written, and there wasn't a good reason to
7961         use _exit really.
7962
7963         * test/decode-gcov.c (mark_inside_dbus_build_tests): don't count
7964         dbus_verbose lines in test coverage
7965         (main): add list of functions sorted by # of untested blocks
7966         to the coverage report
7967
7968         * dbus/dbus-mempool.c: put some test-only code in DBUS_BUILD_TESTS
7969
7970         * dbus/dbus-marshal.c (_dbus_marshal_test): extend test coverage
7971
7972         * dbus/dbus-message-handler.c (_dbus_message_handler_test):
7973         extend test coverage
7974
7975         * test/data/auth/cancel.auth-script: test canceling an
7976         authentication
7977
7978         * dbus/Makefile.am: remove dbus-server-debug.[hc] for now, as they
7979         aren't used. in CVS history if we end up needing them.
7980
7981 2003-05-04  Havoc Pennington  <hp@pobox.com>
7982
7983         * dbus/dbus-message-handler.c (_dbus_message_handler_test): add
7984         unit test
7985
7986         * dbus/dbus-marshal.c (_dbus_demarshal_string_array): fix this
7987         function, which assumed length was in # of strings, not bytes
7988
7989         * dbus/dbus-message.c (_dbus_message_test): add tests for some
7990         missing coverage
7991
7992         * dbus/dbus-connection.c
7993         (_dbus_connection_queue_received_message): disable function for
7994         now, we are only using it in test mode
7995
7996         * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
7997         remove a mistaken FIXME
7998
7999 2003-05-04  Havoc Pennington  <hp@pobox.com>
8000
8001         * dbus/dbus-connection.c (dbus_connection_preallocate_send):
8002         unlock mutex on successful return, patch from Anders Gustafsson
8003
8004 2003-05-04  Havoc Pennington  <hp@pobox.com>
8005
8006         * dbus-glib-1.pc.in (Requires): fix dependencies, from
8007         Anders Gustafsson
8008
8009 2003-05-04  Havoc Pennington  <hp@pobox.com>
8010
8011         * tools/dbus-launch.c: implement
8012
8013         * bus/main.c (main), bus/bus.c (bus_context_new):
8014         implement --print-pid and --fork
8015
8016 2003-05-03  Havoc Pennington  <hp@redhat.com>
8017
8018         * dbus/dbus-address.c (dbus_parse_address): fix bug when a key in
8019         the address had no value, and add to test suite. Fix and
8020         regression test from Miloslav Trmac
8021
8022 2003-05-03  Havoc Pennington  <hp@pobox.com>
8023
8024         * dbus/dbus-watch.c (dbus_watch_handle): warn and return if a
8025         watch is invalid when handled
8026
8027         * tools/Makefile.am, tools/dbus-launch.c, tools/dbus-launch.1: add
8028         dbus-launch utility to launch the bus from a shell script.  Didn't
8029         actually implement dbus-launch yet, it's just a placeholder still.
8030
8031 2003-05-03  Havoc Pennington  <hp@pobox.com>
8032
8033         * bus/Makefile.am, bus/dbus-daemon-1.1.in: man page for the
8034         daemon; also documents daemon config file, so replaces
8035         doc/config-file.txt. Corrected some stuff from config-file.txt in
8036         the process of moving it.
8037
8038 2003-05-03  Havoc Pennington  <hp@pobox.com>
8039
8040         * tools/Makefile.am, tools/dbus-send.1, tools/dbus-monitor.1:
8041         add some man pages
8042
8043 2003-05-03  Colin Walters  <walters@verbum.org>
8044
8045         * dbus/dbus-sysdeps.c (fill_user_info): Test against
8046         DBUS_UID_UNSET to determine whether to do a uid lookup or not.
8047
8048         * Makefile.am: Update to use new .pc versioning scheme.
8049
8050 2003-05-02  Havoc Pennington  <hp@redhat.com>
8051
8052         * bus/system.conf.in: allow send/receive to/from message bus
8053         service
8054
8055 2003-04-30  Havoc Pennington  <hp@redhat.com>
8056
8057         * configure.in: print a note when building with unit tests and
8058         without assertions
8059
8060 2003-04-30  Havoc Pennington  <hp@redhat.com>
8061
8062         * Makefile.am: add a check-local that complains if you didn't
8063         configure with --enable-tests
8064
8065 2003-04-29  Havoc Pennington  <hp@redhat.com>
8066
8067         * glib/dbus-gmain.c: docs cleanups
8068
8069         * dbus/dbus-types.h: add docs on int64 types
8070
8071         * dbus/dbus-memory.c: fix docs to avoid putting private API in
8072         public API docs section
8073
8074 2003-04-29  Havoc Pennington  <hp@redhat.com>
8075
8076         * dbus-1.pc.in, dbus-glib-1.pc.in: rename these from
8077         dbus-1.0.pc.in, dbus-glib-1.0.pc.in. As these change with the
8078         parallel install API version, not with the D-BUS package version.
8079
8080         * HACKING: move some of README over here
8081
8082         * README: updates, and document API/ABI policy
8083
8084         * configure.in: reindentation
8085
8086 2003-04-29  Havoc Pennington  <hp@redhat.com>
8087
8088         * dbus/dbus.h: add "you have to define DBUS_API_SUBJECT_TO_CHANGE
8089         to use this library" to be sure people have the right
8090         expectations.
8091
8092 2003-04-28  Havoc Pennington  <hp@redhat.com>
8093
8094         * configure.in: add --enable-docs which by default is auto yes if
8095         doxygen and db2html found, no otherwise; but can be forced on/off
8096
8097         * doc/Makefile.am: conditionalize whether to build docs on
8098         --enable-docs
8099
8100 2003-04-28  Havoc Pennington  <hp@redhat.com>
8101
8102         * configure.in: 0.10
8103
8104         * NEWS: update
8105
8106         * bus/system.conf.in: add <includedir>system.d</includedir>
8107
8108         * dbus/dbus-userdb.c (_dbus_user_database_lookup): fix bug when
8109         username was provided but not uid
8110
8111         * bus/config-parser.c (struct BusConfigParser): keep track of
8112         whether the parser is toplevel or was included; change some
8113         of the error handling if it's included.
8114
8115 2003-04-27  Havoc Pennington  <hp@pobox.com>
8116
8117         Unbreak my code...
8118
8119         * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
8120         report correct status if we finish processing authentication
8121         inside this function.
8122
8123         * bus/activation.c (try_send_activation_failure): use
8124         bus_transaction_send_error_reply
8125
8126         * bus/connection.c (bus_connection_get_groups): return an error
8127         explaining the problem
8128
8129         * bus/bus.c (bus_context_check_security_policy): implement
8130         restriction here that inactive connections can only send the
8131         hello message. Also, allow bus driver to send anything to
8132         any recipient.
8133
8134         * bus/connection.c (bus_connection_complete): create the
8135         BusClientPolicy here instead of on-demand.
8136         (bus_connection_get_policy): don't return an error
8137
8138         * dbus/dbus-message.c (dbus_message_new_error_reply): allow NULL
8139         sender field in message being replied to
8140
8141         * bus/bus.c (bus_context_check_security_policy): fix silly typo
8142         causing it to return FALSE always
8143
8144         * bus/policy.c (bus_client_policy_check_can_send): fix bug where
8145         we checked sender rather than destination
8146
8147 2003-04-25  Havoc Pennington  <hp@redhat.com>
8148
8149         test suite is slightly hosed at the moment, will fix soon
8150
8151         * bus/connection.c (bus_connections_expire_incomplete): fix to
8152         properly disable the timeout when required
8153         (bus_connection_set_name): check whether we can remove incomplete
8154         connections timeout after we complete each connection.
8155
8156         * dbus/dbus-mainloop.c (check_timeout): fix this up a bit,
8157         probably still broken.
8158
8159         * bus/services.c (bus_registry_acquire_service): implement max
8160         number of services owned, and honor allow/deny rules on which
8161         services a connection can own.
8162
8163         * bus/connection.c (bus_connection_get_policy): report errors here
8164
8165         * bus/activation.c: implement limit on number of pending
8166         activations
8167
8168 2003-04-25  Havoc Pennington  <hp@redhat.com>
8169
8170         * dbus/dbus-transport.c (_dbus_transport_get_unix_user): fix bug
8171         where we used >= 0 instead of != DBUS_UID_UNSET.
8172
8173 2003-04-25  Havoc Pennington  <hp@redhat.com>
8174
8175         * glib/dbus-gmain.c (remove_watch): fix for a crash when watches
8176         were toggled without add/remove, fix from Anders Gustafsson
8177
8178 2003-04-24  Havoc Pennington  <hp@redhat.com>
8179
8180         * test/data/valid-config-files/basic.conf: add <limit> tags to
8181         this test
8182
8183         * bus/config-parser.h, bus/config-parser.c, bus/bus.c: Implement
8184         <limit> tag in configuration file.
8185
8186 2003-04-24  Havoc Pennington  <hp@redhat.com>
8187
8188         * bus/dispatch.c: somehow missed some name_is
8189
8190         * dbus/dbus-timeout.c (_dbus_timeout_set_enabled)
8191         (_dbus_timeout_set_interval): new
8192
8193         * bus/connection.c (bus_connections_setup_connection): record time
8194         when each connection is first set up, and expire them after the
8195         auth timeout passes.
8196
8197 2003-04-24  Havoc Pennington  <hp@redhat.com>
8198
8199         * dbus/dbus-message.c (dbus_message_name_is): rename
8200         (dbus_message_service_is): rename
8201         (dbus_message_sender_is): rename
8202         (dbus_message_get_service): rename
8203
8204 2003-04-24  Havoc Pennington  <hp@redhat.com>
8205
8206         * configure.in: add --enable-checks
8207
8208         * dbus/dbus-message.c (dbus_message_new): reverse name/service arguments
8209
8210         * dbus/dbus-connection.c (dbus_connection_preallocate_send): fix
8211         to use thread locks.
8212         (_dbus_connection_handler_destroyed_locked): move some private
8213         functions into proper docs group
8214
8215         * dbus/dbus-internals.h: add _dbus_return_if_fail,
8216         _dbus_return_val_if_fail
8217
8218         Throughout: use dbus_return_if_fail
8219
8220 2003-04-23  James Willcox  <jwillcox@gnome.org>
8221
8222         * glib/dbus-glib.h:
8223         * glib/dbus-gmain.c: (add_timeout), (wakeup_main), (create_source),
8224         (dbus_connection_setup_with_g_main),
8225         (dbus_server_setup_with_g_main):
8226         * glib/test-dbus-glib.c: (main):
8227         * glib/test-thread-client.c: (main):
8228         * glib/test-thread-server.c: (new_connection_callback), (main):
8229         * tools/dbus-monitor.c: (main):
8230
8231         Added a GMainContext argument to dbus_connection_setup_with_g_main()
8232         and dbus_server_setup_with_g_main().
8233
8234 2003-04-20  Havoc Pennington  <hp@pobox.com>
8235
8236         * doc/dbus-specification.sgml: document the restrictions on
8237         message and service names
8238
8239 2003-04-22  Havoc Pennington  <hp@redhat.com>
8240
8241         * dbus/dbus-message.c, dbus/dbus-marshal.c: add 64-bit integer
8242         support, and do some code cleanups to share more code and
8243         speed up array marshal/demarshal.
8244
8245         * dbus-1.0.pc.in (Cflags): put libdir include file in cflags
8246
8247         * configure.in: generate dbus-arch-deps.h
8248
8249         * dbus/dbus-protocol.h (DBUS_TYPE_INT64, DBUS_TYPE_UINT64): add
8250         64-bit typecodes
8251
8252 2003-04-22  Havoc Pennington  <hp@redhat.com>
8253
8254         * test/data/valid-messages/opposite-endian.message: fix test
8255         to use proper type for rply field
8256
8257         * test/data/invalid-messages: add tests for below validation
8258
8259         * dbus/dbus-message.c (decode_header_data): validate field types,
8260         and validate that named fields are valid names
8261         (decode_name_field): consider messages in the
8262         org.freedesktop.Local. namespace to be invalid.
8263
8264         * dbus/dbus-string.c (_dbus_string_validate_name): new
8265
8266 2003-04-19  Havoc Pennington  <hp@pobox.com>
8267
8268         * bus/driver.c (bus_driver_handle_hello): check limits and
8269         return an error if they are exceeded.
8270
8271         * bus/connection.c: maintain separate lists of active and inactive
8272         connections, and a count of each. Maintain count of completed
8273         connections per user. Implement code to check connection limits.
8274
8275         * dbus/dbus-list.c (_dbus_list_unlink): export
8276
8277         * bus/bus.c (bus_context_check_security_policy): enforce a maximum
8278         number of bytes in the message queue for a connection
8279
8280 2003-04-18  Havoc Pennington  <hp@pobox.com>
8281
8282         * dbus/dbus-auth.c (record_mechanisms): memleak fixes
8283
8284         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): fix some
8285         memleaks
8286
8287         * dbus/dbus-keyring.c (add_new_key): fix a memleak, and
8288         on realloc be sure to update the pointer in the keyring
8289
8290         * dbus/dbus-string.c (_dbus_string_zero): compensate for align
8291         offset to avoid writing to unallocated memory
8292
8293         * dbus/dbus-auth.c (process_rejected): return FALSE if we fail to
8294         try the next mechanism, so we properly handle OOM
8295
8296         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): fix double-free
8297         on OOM.
8298         (_dbus_keyring_new): fix OOM bug
8299         (_dbus_keyring_new_homedir): always set error; impose a maximum
8300         number of keys we'll load from the file, mostly to speed up the
8301         test suite and make its OOM checks more useful, but also for
8302         general sanity.
8303
8304         * dbus/dbus-auth.c (process_error_server): reject authentication
8305         if we get an error from the client
8306         (process_cancel): on cancel, send REJECTED, per the spec
8307         (process_error_client): send CANCEL if we get an error from the
8308         server.
8309
8310 2003-04-18  Havoc Pennington  <hp@pobox.com>
8311
8312         * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix UMR in verbose
8313         debug spew
8314
8315         * dbus/dbus-auth.c (handle_client_data_cookie_sha1_mech): fix OOM
8316         handling problem
8317
8318         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): only whine
8319         about DBUS_TEST_HOMEDIR once
8320
8321         * bus/Makefile.am (TESTS_ENVIRONMENT): put DBUS_TEST_HOMEDIR in
8322         the environment
8323
8324         * bus/dispatch.c (bus_dispatch_sha1_test): actually load sha1
8325         config file so we test the right thing
8326
8327         Throughout: assorted docs improvements
8328
8329 2003-04-18  Havoc Pennington  <hp@pobox.com>
8330
8331         * glib/dbus-gmain.c: adapt to watch changes
8332
8333         * bus/bus.c, bus/activation.c, etc.: adjust to watch changes
8334
8335         * dbus/dbus-server.h: remove dbus_server_handle_watch
8336
8337         * dbus/dbus-connection.h: remove dbus_connection_handle_watch
8338
8339         * dbus/dbus-watch.c (dbus_watch_handle): change DBusWatch to work
8340         like DBusTimeout, so we don't need dbus_connection_handle_watch
8341         etc.
8342
8343 2003-04-17  Havoc Pennington  <hp@redhat.com>
8344
8345         * dbus/dbus-userdb.c, dbus/dbus-sysdeps.c: redo all the passwd
8346         database usage so it all goes via the DBusUserDatabase cache.
8347
8348 2003-04-17  Havoc Pennington  <hp@redhat.com>
8349
8350         * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix logic so that if
8351         there was an OOM watch we skipped, we always return TRUE so we
8352         iterate again to have a look at it again. Fixes test suite hang.
8353         Code rearrangement also lets us lose some memset and only iterate
8354         over callbacks once.
8355
8356         * bus/driver.c (bus_driver_handle_message): sense of test for
8357         reply was backward
8358
8359 2003-04-16  Havoc Pennington  <hp@pobox.com>
8360
8361         * doc/dbus-specification.sgml: make spec say serials are unsigned
8362
8363         * dbus/dbus-message.h: change message serials to unsigned
8364
8365         * dbus/dbus-connection.c: adapt to message serials being unsigned
8366
8367 2003-04-15  Havoc Pennington  <hp@pobox.com>
8368
8369         * bus/bus.c: create and keep around a shared DBusUserDatabase
8370         object.
8371
8372         * bus/connection.c (bus_connection_get_groups): don't cache
8373         groups for user in the connection object, since user database
8374         object now does that.
8375
8376 2003-04-16  Havoc Pennington  <hp@redhat.com>
8377
8378         * dbus/dbus-message.c (_dbus_message_add_size_counter): keep a
8379         list of size counters
8380         (_dbus_message_loader_putback_message_link): put back a popped link
8381
8382         * dbus/dbus-connection.c
8383         (dbus_connection_set_max_live_messages_size): rename
8384         max_received_size
8385         (dbus_connection_get_outgoing_size): get size of outgoing
8386         queue
8387         (_dbus_connection_set_connection_counter): remove this cruft
8388
8389 2003-04-14  Havoc Pennington  <hp@redhat.com>
8390
8391         * dbus/dbus-userdb.c: user database abstraction, mostly to get
8392         caching, but at some point we might want to be able to use a
8393         different database.
8394
8395         * bus/dispatch.c (bus_dispatch_sha1_test): add a test that uses
8396         SHA1 conf file to test the sha1 auth mechanism, since the regular
8397         test always uses EXTERNAL when available.
8398
8399         * configure.in,
8400         test/data/valid-config-files/debug-allow-all-sha1.conf.in:
8401         add conf file that requires use of sha1 auth
8402
8403 2003-04-13  Havoc Pennington  <hp@pobox.com>
8404
8405         * tools/dbus-send.c, tools/dbus-monitor.c: two utility programs
8406         from Philip Blundell to send messages and monitor them.
8407
8408 2003-04-13  Havoc Pennington  <hp@pobox.com>
8409
8410         * dbus/dbus-mainloop.c: fix some reentrancy issues by refcounting
8411         callbacks
8412
8413         * test/data/valid-config-files/debug-allow-all.conf.in: allow all
8414         users
8415
8416         * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
8417         fix to only recover unused bytes if we're already authenticated
8418         (_dbus_transport_get_is_authenticated): fix to still mark us
8419         authenticated if there are unused bytes.
8420
8421         * bus/dispatch.c: implement security policy checking
8422
8423         * bus/connection.c (bus_transaction_send_from_driver): new
8424
8425         * bus/bus.c (bus_context_check_security_policy): new
8426
8427         * bus/dispatch.c (send_service_nonexistent_error): delete this,
8428         now we just set the DBusError and it gets converted to an error
8429         reply.
8430
8431         * bus/connection.c (allow_user_function): enable code using actual
8432         data from the config file
8433
8434         * bus/policy.c (list_allows_user): handle wildcard rules for
8435         user/group connection perms
8436
8437 2003-04-13  Havoc Pennington  <hp@pobox.com>
8438
8439         * bus/config-parser.c: Load up the BusPolicy and BusPolicyRules
8440
8441         * dbus/dbus-sysdeps.c (_dbus_get_user_id): new function
8442
8443         * bus/policy.c (bus_policy_append_mandatory_rule)
8444         (bus_policy_append_default_rule, bus_policy_append_user_rule)
8445         (bus_policy_append_group_rule): new functions
8446
8447 2003-04-12  Havoc Pennington  <hp@pobox.com>
8448
8449         * bus/config-parser.c (bus_config_parser_new): fix a memleak
8450
8451         * dbus/dbus-sysdeps.c: change DBusCredentials to use longs for
8452         the pid/gid/uid, just for paranoia.
8453
8454         * test/break-loader.c (randomly_do_n_things): find a byte
8455         containing a type code, and randomly change it to a different
8456         type code.
8457
8458 2003-04-12  Havoc Pennington  <hp@pobox.com>
8459
8460         * bus/policy.h: change BusPolicy to be the thing from the config
8461         file, and rename old BusPolicy to BusClientPolicy
8462
8463         * bus/bus.c, bus/connection.c, bus/config-parser.c: change to
8464         match change in how policy works
8465
8466         * dbus/dbus-internals.h: mark assert_not_reached as
8467         __attribute((noreturn))__
8468
8469 2003-04-11  Havoc Pennington  <hp@redhat.com>
8470
8471         * doc/dbus-specification.sgml: fix a spot with the wrong name for
8472         the broadcast service. Use boolean return for ServiceExists.
8473
8474 2003-04-11  Havoc Pennington  <hp@redhat.com>
8475
8476         * configure.in: add another directory to look for qt in.
8477
8478 2003-04-11  Havoc Pennington  <hp@redhat.com>
8479
8480         * AUTHORS: add Colin Walters
8481
8482 2003-04-11  Havoc Pennington  <hp@redhat.com>
8483
8484         * NEWS: update
8485
8486         * configure.in: 0.9
8487
8488 2003-04-11  Havoc Pennington  <hp@redhat.com>
8489
8490         * bus/messagebus.in: remove pid file when stopping the
8491         message bus, since the bus won't have privileges to remove it
8492         itself.
8493
8494 2003-04-11  Havoc Pennington  <hp@redhat.com>
8495
8496         * bus/bus.c (bus_context_new): move credentials change after
8497         creating pidfile
8498
8499 2003-04-11  Havoc Pennington  <hp@pobox.com>
8500
8501         * test/decode-gcov.c: add "below average functions" to the
8502         coverage report, and change how some of the code works.
8503
8504         * bus/test-main.c: bracket some stuff in DBUS_BUILD_TESTS so it's
8505         not in the coverage stats.
8506
8507         * test/test-service.c (main): use _dbus_verbose not fprintf in a
8508         couple places so running the test suite doesn't result in megaspam.
8509
8510 2003-04-11  Havoc Pennington  <hp@pobox.com>
8511
8512         * bus/dispatch.c (check_existent_service_activation): accept a no
8513         memory error in a place we didn't before
8514
8515         * bus/test.c (bus_test_run_everything): remove hacky "do it twice
8516         in case the first one failed," since the test suite is less
8517         broken now.
8518
8519 2003-04-10  Havoc Pennington  <hp@pobox.com>
8520
8521         * bus/dispatch.c (check_segfault_service_activation): add test
8522         for launching an executable that just crashes.
8523
8524         * test/test-segfault.c (main): try setting coredumpsize to 0 so we
8525         don't leave a million cores. We'll see how portable this is.
8526
8527 2003-04-10  Havoc Pennington  <hp@pobox.com>
8528
8529         * dbus/dbus-spawn.c (_dbus_spawn_async_with_babysitter): move all
8530         the possible parent failures before we fork, so that we don't
8531         fail to create a babysitter after creating the child.
8532
8533         * bus/activation.c (bus_activation_activate_service): kill child
8534         if we don't successfully complete the activation.
8535
8536 2003-04-10  Havoc Pennington  <hp@redhat.com>
8537
8538         * dbus/dbus-connection.c (dbus_connection_flush): don't spin on
8539         the connection if it's disconnected
8540
8541         * bus/activation.c (bus_activation_service_created): use new
8542         transaction features to roll back removal of pending activation if
8543         we don't successfully create the service after all. Don't remove
8544         pending activation if the function fails.
8545
8546         * dbus/dbus-list.c (_dbus_list_insert_before_link)
8547         (_dbus_list_insert_after_link): new code to facilitate
8548         services.c fixes
8549
8550         * dbus/dbus-hash.c (_dbus_hash_table_insert_string_preallocated):
8551         new functionality, so we can preallocate the ability to insert
8552         into a hash table.
8553
8554         * bus/connection.c (bus_transaction_add_cancel_hook): new function
8555         allowing us to put custom hooks in a transaction to be used for
8556         cancelling said transaction
8557
8558         * doc/dbus-specification.sgml: add some discussion of secondary
8559         service owners, and disallow zero-length service names
8560
8561         * bus/services.c (bus_registry_acquire_service): new function,
8562         splits out part of bus_driver_handle_acquire_service() and fixes
8563         a bug where we didn't remove the service doing the acquiring
8564         from the secondary queue if we failed to remove the current owner
8565         from the front of the queue.
8566
8567 2003-04-10  Alexander Larsson  <alexl@redhat.com>
8568
8569         * doc/dbus-specification.sgml:
8570         s/org.freedesktop.Broadcast/org.freedesktop.DBus.Broadcast/
8571
8572 2003-04-10  Alexander Larsson  <alexl@redhat.com>
8573
8574         * bus/.cvsignore:
8575         * glib/.cvsignore:
8576         * test/.cvsignore:
8577         Added files to cvsignore
8578
8579         * dbus/dbus-message.h:
8580         * dbus/dbus-message.c: (dbus_message_iter_get_named):
8581         Make get_named() take two out argument and return a boolean.
8582         (dbus_message_iter_get_args_valist):
8583         Update usage of get_named().
8584         (dbus_message_iter_append_byte):
8585         Fix typo
8586         (dbus_message_iter_append_named)
8587         Fix typo
8588         (message_iter_test), (check_message_handling_type), (_dbus_message_test):
8589         More tests.
8590
8591 2003-04-10  Alexander Larsson  <alexl@redhat.com>
8592
8593         * dbus/dbus-marshal.[ch]:
8594         Add array_type_pos argument to _dbus_marshal_validate_arg.
8595         Let you pass a NULL end_pos to _dbus_marshal_validate_type.
8596
8597         * dbus/dbus-message.[ch]:
8598         Multi-dimensional arrays have full type specification in the
8599         outermost array. Iter code re-arranged to handle this.
8600         Added some more iter tests.
8601
8602         * doc/dbus-specification.sgml:
8603         Add me to authors.
8604         Remove old FIXME.
8605         Update new array encoding description.
8606         Correct DBUS_SERVICE_FLAGS_REPLACE_EXISTING description.
8607
8608         * test/data/invalid-messages/array-with-mixed-types.message:
8609         * test/data/valid-messages/array-of-array-of-uint32.message:
8610         Change to the new array format.
8611
8612         * test/data/invalid-messages/too-short-dict.message:
8613         Fix bug in test.
8614
8615         * test/data/valid-messages/recursive-types.message:
8616         Fix up and extend test.
8617
8618 2003-04-10  Havoc Pennington  <hp@pobox.com>
8619
8620         * bus/dispatch.c: lots of fixes
8621
8622         * dbus/dbus-mainloop.c (_dbus_loop_dispatch): export
8623         (_dbus_loop_iterate): remove old "quit if no callbacks" code,
8624         that was crack, broke the test service.
8625
8626         * dbus/dbus-transport.c (_dbus_transport_open): fix error
8627         handling to avoid piling up errors if we get a failure on the
8628         first address.
8629
8630         * dbus/dbus-internals.c (_dbus_real_assert_not_reached): include
8631         pid in assertion failures.
8632
8633         * dbus/dbus-mainloop.c (_dbus_loop_iterate): use static arrays up
8634         to some fixed size of file descriptor array. Don't return TRUE
8635         anytime a timeout exists, that led to lots of busy loop silliness
8636         in the tests.
8637
8638 2003-04-09  Havoc Pennington  <hp@redhat.com>
8639
8640         * dbus/dbus-mainloop.c (check_timeout): fix timeouts, I thought
8641         I'd checked this in earlier but hadn't.
8642
8643 2003-04-09  Havoc Pennington  <hp@redhat.com>
8644
8645         * bus/dispatch.c (bus_dispatch_test): get a bit further through
8646         the activation test (man this is getting old!)
8647
8648 2003-04-09  Havoc Pennington  <hp@redhat.com>
8649
8650         * test/test-utils.c: use dispatch status function to fix this up
8651
8652         * bus/connection.c (connection_watch_callback): don't dispatch
8653         from here
8654         (connection_timeout_callback): don't dispatch from here
8655         (bus_connections_setup_connection): set the dispatch status function
8656         (bus_connection_disconnected): unset it
8657
8658         * dbus/dbus-mainloop.c (_dbus_loop_queue_dispatch): new function
8659         used to add a connection to be dispatched
8660         (_dbus_loop_iterate): do the dispatching at the end of each
8661         iteration
8662
8663         * dbus/dbus-connection.c
8664         (dbus_connection_set_dispatch_status_function): new function
8665         allowing us to fix up main loop usage
8666         (_dbus_connection_last_unref): free all the various function
8667         user data
8668         (dbus_connection_dispatch): call the DispatchStatusFunction
8669         whenever this function returns
8670         (dbus_connection_handle_watch): call DispatchStatusFunction
8671         (dbus_connection_send_with_reply_and_block): call DispatchStatusFunction
8672         (reply_handler_timeout): call DispatchStatusFunction
8673         (dbus_connection_flush): call DispatchStatusFunction
8674
8675 2003-04-09  Havoc Pennington  <hp@redhat.com>
8676
8677         * dbus/dbus-bus.c (dbus_bus_register): fix up error handling and
8678         a memory leak
8679
8680         * bus/dispatch.c (check_service_activated): fix bug in test
8681
8682         * dbus/dbus-mainloop.c (check_timeout): fix this up
8683
8684         * dbus/dbus-internals.c (_dbus_verbose_real): include PID in
8685         verbose output so we can sort out output from different processes,
8686         e.g. in the activation case.
8687
8688 2003-04-08  Colin Walters  <walters@gnu.org>
8689
8690         * bus/bus.c (struct BusContext) [pidfile]: New member, to store
8691         the pid file.
8692         (bus_context_new): Set it.
8693         (bus_context_unref): Use it to delete the pid file.
8694
8695 2003-04-08  Havoc Pennington  <hp@redhat.com>
8696
8697         * test/data/invalid-messages/array-with-mixed-types.message:
8698         regression test that fails for the moment
8699
8700         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): reorder
8701         tests for convenience
8702
8703         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): don't allow
8704         array of nil, it broke things.
8705
8706         * test/data/invalid-messages/array-of-nil.message: regression test
8707
8708         * test/data/valid-messages/array-of-array-of-uint32.message:
8709         happened to write this so added it to suite
8710
8711 2003-04-08  Havoc Pennington  <hp@redhat.com>
8712
8713         * bus/driver.c (bus_driver_handle_acquire_service): init
8714         retval/reply before checking name
8715
8716         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add a
8717         recursion depth argument
8718
8719         * dbus/dbus-message.h (struct DBusMessageIter): put some padding
8720         in the public struct for future extension
8721
8722         * dbus/dbus-message-builder.c (_dbus_message_data_load): fix
8723         typo
8724
8725         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix a verbose
8726         message
8727
8728         * doc/dbus-specification.sgml: fix typo
8729
8730 2003-04-08  Alexander Larsson  <alexl@redhat.com>
8731
8732         Implemented recursive types, named types and new-style iters
8733
8734         * bus/driver.c:
8735         * glib/test-thread-client.c: (thread_func):
8736         * glib/test-thread-server.c: (handle_test_message):
8737         * test/test-service.c: (handle_echo):
8738         Update to new api
8739
8740         * dbus/Makefile.am:
8741         * dbus/dbus-dict.c:
8742         * dbus/dbus-dict.h:
8743         * dbus/dbus.h
8744         Remove DBusDict
8745
8746         * dbus/dbus-internals.c: (_dbus_type_to_string):
8747         Update for new types.
8748
8749         * dbus/dbus-marshal.[ch]:
8750         Implement recursive types and the new marshalling format.
8751         Remove hardcoded dict marshalling.
8752         Marshal named types.
8753
8754         * dbus/dbus-message-builder.c:
8755         Add BYTE_ARRAY.
8756         Remove references to old types
8757
8758         * dbus/dbus-message.[ch]:
8759         New non-refcounted iter API that supports recursive iters.
8760         Use iters for appending, including support for recursive
8761         iters.
8762         Add byte and named type support.
8763         Update everything to new marshalling formats.
8764         Add tests for new API.
8765
8766         * dbus/dbus-protocol.h:
8767         Remove old array types.
8768         Add types: BYTE, ARRAY, DICT, NAMED
8769
8770         * dbus/dbus-string.c:
8771         * dbus/dbus-sysdeps.c:
8772         Make parse_double locale safe.
8773
8774         * dbus/dbus-test-main.c:
8775         Call setlocale.
8776
8777         * dbus/dbus-test.c:
8778         Kill dict test
8779
8780         * doc/dbus-specification.sgml:
8781         Update spec
8782
8783         * test/data/incomplete-messages/missing-body.message:
8784         * test/data/invalid-messages/bad-boolean.message:
8785         * test/data/invalid-messages/bad-boolean-array.message:
8786         * test/data/invalid-messages/boolean-array-length-too-long.message-raw:
8787         * test/data/invalid-messages/boolean-has-no-value.message-raw:
8788         * test/data/invalid-messages/too-short-dict.message:
8789         * test/data/valid-messages/dict-simple.message:
8790         * test/data/valid-messages/dict.message:
8791         * test/data/valid-messages/emptiness.message:
8792         * test/data/valid-messages/lots-of-arguments.message:
8793         * test/data/valid-messages/no-padding.message:
8794         * test/data/valid-messages/recursive-types.message:
8795         Add missing NAME fields
8796         Fix up dicts & arrays
8797
8798         * test/data/invalid-messages/dict-with-nil-value.message:
8799         Removed, this is not invalid anymore.
8800
8801         * test/data/valid-messages/recursive-types.message:
8802         Add new test for deeply recursive types.
8803
8804 2003-04-07  Havoc Pennington  <hp@pobox.com>
8805
8806         * bus/driver.c (bus_driver_handle_acquire_service): return an
8807         error if you try to acquire a service that starts with ':'
8808
8809 2003-04-07  Havoc Pennington  <hp@redhat.com>
8810
8811         * doc/dbus-specification.sgml: require that base service names
8812         start with ':' and that the base service is created/deleted
8813         as first and last things a connection does on the bus
8814
8815         * bus/dispatch.c (check_existent_service_activation): lots more
8816         work on the activation test; it doesn't fully pass yet...
8817
8818         * test/test-service.c (main): fix so we don't memleak the
8819         connection to the message bus
8820         (filter_func): accept a message asking us to exit
8821
8822 2003-04-06  Havoc Pennington  <hp@pobox.com>
8823
8824         * qt/Makefile.am (dbusinclude_HEADERS): install dbus-qt.h,
8825         from Colin Walters
8826
8827         * configure.in: fixes to Qt detection from Colin Walters
8828
8829         * doc/Makefile.am: Only remove generated docbook dirs if they
8830         exist, from Colin Walters
8831
8832         * dbus/dbus-bus.c: change how we set well-known connections to
8833         NULL, so that it works if a single connection is stored in
8834         two well-known array slots.
8835
8836         * test/Makefile.am: remove a lot of stuff that isn't immediately
8837         useful, it's in CVS history if we want it.
8838
8839         * test/test-service.c: use dbus-mainloop instead of that
8840         watch.[hc] crack
8841
8842 2003-04-06  Havoc Pennington  <hp@pobox.com>
8843
8844         * dbus/Makefile.am: split lists of sources into stuff that goes in
8845         the library, util functions that go in the lib and are also used
8846         elsewhere, and util functions that are used in tests/daemon but
8847         don't go in the lib.
8848
8849         * dbus/dbus-mainloop.h, dbus/dbus-mainloop.c: move bus/loop.[hc]
8850         here so it can be used in test binaries also
8851
8852 2003-04-06  Havoc Pennington  <hp@pobox.com>
8853
8854         * dbus/dbus-sysdeps.c (_dbus_become_daemon): write the pidfile
8855         here in the parent process, so we can return an error if it
8856         fails. Also, move some of the code into the child so the parent
8857         is less hosed if we fail midway through.
8858
8859         * bus/bus.c (bus_context_new): move pidfile detection further up
8860         in the function, before we start overwriting sockets and such.
8861
8862         * bus/messagebus.in: adjust this a bit, not sure if it will work.
8863
8864         * configure.in: add --with-system-pid-file and --with-system-socket
8865
8866 2003-04-06  Colin Walters  <walters@verbum.org>
8867
8868         * configure.in (DBUS_SYSTEM_PID_FILE): New variable.
8869
8870         * bus/system.conf.in: Declare a pidfile.
8871
8872         * bus/bus.c (bus_context_new): Test for an existing pid file, and
8873         create one (if appropriate).
8874
8875         * bus/config-parser.c (enum ElementType) [ELEMENT_PIDFILE]: New.
8876         (struct BusConfigParser) [pidfile]: New.
8877         (element_type_to_name, merge_included, start_busconfig_child)
8878         (bus_config_parser_end_element, bus_config_parser_content): Handle it.
8879         (bus_config_parser_unref): Free it.
8880         (bus_config_parser_get_pidfile): New function.
8881
8882         * bus/config-parser.h (_dbus_write_pid_file): Prototype.
8883
8884         * dbus/dbus-errors.h (DBUS_ERROR_PIDFILE_EXISTS): New error.
8885
8886         * dbus/dbus-sysdeps.c (_dbus_write_pid_file): New function.
8887
8888         * dbus/dbus-sysdeps.h: Prototype it.
8889
8890 2003-04-06  Havoc Pennington  <hp@pobox.com>
8891
8892         * bus/bus.c (bus_context_new): print the address in here, rather
8893         than in main(), because we need to do it before forking the daemon
8894
8895         * bus/dispatch.c (send_service_nonexistent_error): set the sender
8896         on the service nonexistent error
8897
8898         * bus/driver.c (bus_driver_handle_acquire_service): set the
8899         sender on the AcquireService reply
8900
8901         * test/data/valid-config-files/debug-allow-all.conf.in: Make test
8902         server also listen on a UNIX socket so services can connect to it.
8903
8904 2003-04-06  Havoc Pennington  <hp@pobox.com>
8905
8906         * dbus/dbus-threads.c: Redo how the fake debug mutexes are done
8907         so it detects deadlocks and also we actually init threads when
8908         debugging.
8909
8910 2003-04-06  Havoc Pennington  <hp@pobox.com>
8911
8912         * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
8913         save the domain socket name, and unlink it when we disconnect the
8914         server. Means that at least when we exit normally, we won't leave
8915         a bunch of junk in /tmp
8916
8917         * dbus/dbus-transport-unix.c
8918         (_dbus_transport_new_for_domain_socket): code cleanup (nicer
8919         memory management). (I was making a real change here but then
8920         didn't)
8921
8922 2003-04-06  Havoc Pennington  <hp@pobox.com>
8923
8924         * bus/bus.c (bus_context_new): fix wrong handling of
8925         server_data_slot_unref() in the error case.
8926
8927         * dbus/dbus-internals.h (_dbus_assert): change so it passes
8928         "(condition) != 0" to _dbus_real_assert so that
8929         "_dbus_assert (pointer)" doesn't cause a warning
8930
8931         * bus/main.c (main): accept --print-address option to print out
8932         the message bus address
8933
8934         * dbus/dbus-sysdeps.c (_dbus_generate_random_ascii): export this
8935
8936         * dbus/dbus-transport.c (_dbus_transport_open): special error for
8937         "tmpdir" option to unix: address on client side
8938
8939         * dbus/dbus-server.c (dbus_server_listen): handle "tmpdir" option
8940         to unix: address
8941
8942         * configure.in (TEST_SOCKET_DIR): locate a temporary directory
8943         we can use to create sockets in the test suite.
8944
8945         * bus/main.c (signal_handler): on SIGTERM, exit the daemon
8946         cleanly. To be used for testing.
8947
8948         * dbus/dbus-spawn.c (babysit): use _dbus_set_signal_handler()
8949
8950         * dbus/dbus-sysdeps.c (_dbus_set_signal_handler): new
8951
8952         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
8953         handle trying to call this when there's no servers active
8954
8955 2003-04-05  Havoc Pennington  <hp@pobox.com>
8956
8957         * NEWS: update
8958
8959         * configure.in: 0.8
8960
8961 2003-04-05  Havoc Pennington  <hp@pobox.com>
8962
8963         * bus/bus.c (setup_server): fix this so dbus-daemon-1 doesn't
8964         crash on startup. Need to get "try starting the daemon"
8965         in the test suite I guess. ;-)
8966
8967         * dbus/dbus-server.h, dbus/dbus-server.c: remove the stuff that
8968         tracked the number of open connections; it's better done in
8969         application-specific code as you want it to span all servers etc.
8970
8971 2003-04-05  Havoc Pennington  <hp@pobox.com>
8972
8973         * bus/Makefile.am (install-data-hook): add missing DESTDIR,
8974         patch from Colin Walters
8975
8976 2003-04-05  Havoc Pennington  <hp@pobox.com>
8977
8978         * doc/config-file.txt (Elements): fix docs of <auth> to reflect
8979         reality; in fact multiple mechanisms are allowed.
8980
8981         * dbus/dbus-internals.c (_dbus_real_assert)
8982         (_dbus_real_assert_not_reached): move guts of _dbus_assert() and
8983         _dbus_assert_not_reached() into functions, so that they don't show
8984         up in basic block counts for test coverage, and don't use up as
8985         much disk space. Does mean slower execution speed though, so
8986         assumes --disable-asserts is the normal production case.
8987
8988 2003-04-05  Havoc Pennington  <hp@pobox.com>
8989
8990         * test/Makefile.am (dist-hook): also dist *.in files
8991
8992         * NEWS: update
8993
8994         * configure.in: 0.7
8995
8996 2003-04-05  Havoc Pennington  <hp@pobox.com>
8997
8998         * dbus/dbus-string.c: docs warning
8999
9000         * dbus/dbus-spawn.c: missing docs
9001
9002         * dbus/dbus-memory.c (struct ShutdownClosure): missing docs
9003
9004 2003-04-05  Havoc Pennington  <hp@pobox.com>
9005
9006         * bus/loop.c (bus_loop_iterate): fix the timeout code, using
9007         magic from GLib
9008
9009         * dbus/dbus-spawn.c (_dbus_babysitter_unref): set sitter_pid
9010         to -1 once we've reaped the babysitter
9011         (_dbus_babysitter_handle_watch): do as much work as we can, not
9012         just one go of it
9013
9014         * bus/activation.c: add code using DBusBabysitter so that we
9015         handle it when a service fails to start up properly.
9016         (bus_activation_service_created): don't remove the activation
9017         entries as we go, just let them get removed when we free the pending
9018         activation. Unref reply messages after sending them.
9019
9020 2003-04-05  Havoc Pennington  <hp@pobox.com>
9021
9022         * test/decode-gcov.c (main): print per-directory stats in the report
9023
9024         * Makefile.am (coverage-report.txt): don't include test/* in gcov stats
9025
9026 2003-04-05  Havoc Pennington  <hp@pobox.com>
9027
9028         * Makefile.am (coverage-report.txt): add target "coverage-report.txt"
9029
9030         * test/decode-gcov.c: hack up a little program to suck data
9031         out of gcov files. Yes this is sort of silly.
9032
9033         * configure.in: define something in config.h and do an
9034         AM_CONDITIONAL when gcov is enabled
9035
9036 2003-04-04  Havoc Pennington  <hp@redhat.com>
9037
9038         * dbus/dbus-spawn.c, dbus/dbus-spawn.h: Change dbus_spawn to
9039         return a "babysitter" object that is used to monitor the status of
9040         the spawned process and reap it when required.
9041
9042         * test/test-segfault.c, test/test-exit.c,
9043         test/test-sleep-forever.c: binaries that do various lame things,
9044         used in the test suite.
9045
9046         * dbus/dbus-sysdeps.c: kill _dbus_errno_to_string()
9047
9048 2003-04-03  Havoc Pennington  <hp@pobox.com>
9049
9050         * dbus/dbus-spawn.c: Move dbus-spawn into a separate file
9051         in preparation for modifying it, dbus-sysdeps is getting
9052         a bit unmanageable.
9053
9054 2003-04-03  Havoc Pennington  <hp@redhat.com>
9055
9056         * bus/loop.h, bus/loop.c: make the mainloop an object so we can
9057         have multiple ones
9058
9059         * bus/*.[hc]: adapt to mainloop change
9060
9061 2003-04-03  Havoc Pennington  <hp@redhat.com>
9062
9063         * bus/activation.c (load_directory): fix up memleaks
9064         (bus_activation_entry_free): free the entry
9065
9066         * dbus/dbus-bus.c (dbus_bus_acquire_service): return an error if
9067         we get one from the message bus; fix memleaks.
9068
9069         * dbus/dbus-message.c (dbus_set_error_from_message): new function
9070
9071 2003-04-03  Havoc Pennington  <hp@pobox.com>
9072
9073         * bus/config-parser.c (bus_config_parser_unref): free
9074         list of mechanisms, bug discovered by test suite enhancements
9075         (putting system.conf and session.conf into suite)
9076
9077         * test/Makefile.am, test/test-service.c: add placeholder for a
9078         test service that we'll activate as part of test suite. Doesn't
9079         do anything yet.
9080
9081         * dbus/dbus-sysdeps.c (_dbus_setenv): support unsetenv by
9082         setting NULL value, and use system malloc not dbus_malloc()
9083         when we have unavoidable memleakage.
9084
9085         * dbus/dbus-bus.c (dbus_bus_get): fix bug where bus type of 0
9086         didn't work, and support DBUS_BUS_ACTIVATION.
9087
9088         * bus/activation.c (child_setup): pass our well-known bus type to
9089         the child
9090
9091         * bus/config-parser.c: support <type> to specify well-known type
9092
9093         * doc/dbus-specification.sgml: document the env variables to
9094         locate well-known buses and find service activator
9095
9096 2003-04-02  Havoc Pennington  <hp@redhat.com>
9097
9098         * test/Makefile.am (all-local): add a rule to copy tests to
9099         builddir, so we can have generated tests. Use this to remove the
9100         silly hack for testing system.conf and session.conf. Will use this
9101         shortly to generate .service files pointing to test binaries.
9102
9103 2003-04-02  Havoc Pennington  <hp@redhat.com>
9104
9105         * dbus/dbus-string.c (set_length): fix a bug - we allocated max of
9106         current alloc and needed new length, not max of the doubled
9107         allocation and needed new length. Also, when building tests,
9108         don't do the double-allocation stuff, just realloc every time.
9109
9110 2003-04-02  Havoc Pennington  <hp@redhat.com>
9111
9112         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): include filenames
9113         in error messages
9114         (_dbus_string_get_dirname): new
9115         (_dbus_sysdeps_test): new
9116         (_dbus_directory_open): include dirnames in error messages
9117
9118         * bus/config-parser.c: interpret <include> and <includedir> and
9119         <servicedir> relative to config file location if the given
9120         filename is not absolute.
9121
9122         * dbus/dbus-string.c (_dbus_string_find_byte_backward): new
9123
9124 2003-04-02  Havoc Pennington  <hp@redhat.com>
9125
9126         * bus/connection.c (bus_transaction_send_error_reply): set sender
9127         service for the error, and unref the reply on success
9128
9129         * bus/activation.c: convert to use BusTransaction so OOM can be
9130         handled correctly
9131         (bus_activation_service_created): set sender of the message
9132
9133 2003-04-01  Havoc Pennington  <hp@redhat.com>
9134
9135         * bus/config-parser.c, bus/bus.c: implement <servicedir> and
9136         <includedir> (at least mostly)
9137
9138         * dbus/dbus-sysdeps.c (_dbus_change_identity): set the group ID
9139         first, then the user ID
9140
9141 2003-04-01  Havoc Pennington  <hp@pobox.com>
9142
9143         * dbus/dbus-server.c (dbus_server_set_auth_mechanisms): new
9144         function
9145
9146         * dbus/dbus-auth.c (_dbus_auth_set_mechanisms): new
9147
9148         * dbus/dbus-internals.c (_dbus_dup_string_array): new function
9149
9150         * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): chmod the
9151         socket 0777, and unlink any existing socket.
9152
9153         * bus/bus.c (bus_context_new): change our UID/GID and fork if
9154         the configuration file so specifies; set up auth mechanism
9155         restrictions
9156
9157         * bus/config-parser.c (bus_config_parser_content): add support
9158         for <fork> option and fill in code for <auth>
9159
9160         * bus/system.conf.in: add <fork/> to default configuration,
9161         and limit auth mechanisms to EXTERNAL
9162
9163         * doc/config-file.txt (Elements): add <fork>
9164
9165         * dbus/dbus-sysdeps.c (_dbus_become_daemon): new function
9166         (_dbus_change_identity): new function
9167
9168 2003-03-31  Havoc Pennington  <hp@redhat.com>
9169
9170         * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket)
9171         (_dbus_listen_unix_socket): fix off-by-one error in null
9172         termination spotted by Nalin
9173
9174 2003-03-31  Havoc Pennington  <hp@redhat.com>
9175
9176         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): allow setting
9177         DBUS_TEST_HOMEDIR when tests are enabled, so we can test without
9178         having a real home directory available.
9179
9180 2003-03-31  Havoc Pennington  <hp@redhat.com>
9181
9182         * bus/Makefile.am (install-data-hook): create /var/run/dbus
9183
9184         * bus/messagebus.in: add init script for Red Hat /etc/init.d
9185
9186         * configure.in: add support for specifying a style of init script
9187         to install
9188
9189 2003-03-31  Havoc Pennington  <hp@redhat.com>
9190
9191         Fix some annoying DBusString API and fix all affected code.
9192
9193         * dbus/dbus-string.c (_dbus_string_init): get rid of annoying
9194         max_length argument
9195         (_dbus_string_get_data): change to return string instead of using
9196         an out param
9197         (_dbus_string_get_const_data): ditto
9198         (_dbus_string_get_data_len): ditto
9199         (_dbus_string_get_const_data_len): ditto
9200
9201 2003-03-31  Havoc Pennington  <hp@redhat.com>
9202
9203         * bus/main.c (main): fix up the command line arguments to be nicer
9204
9205 2003-03-31  Havoc Pennington  <hp@redhat.com>
9206
9207         * dbus/Makefile.am (INCLUDES): use EXPANDED_LOCALSTATEDIR to
9208         define DBUS_SYSTEM_BUS_PATH as we want to compile in the same
9209         final location that lands in the config file
9210
9211         * bus/config-loader-expat.c (bus_config_load): fix type of
9212         XML_Parser variable
9213
9214         * doc/TODO: remove TODO item for dbus_bus_get()
9215
9216         * dbus/dbus-bus.c (bus_data_free): add missing lock/unlock
9217
9218 2003-03-31  Havoc Pennington  <hp@pobox.com>
9219
9220         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_domain_socket)
9221         (_dbus_transport_new_for_tcp_socket): these didn't need the "server"
9222         argument since they are always client side
9223
9224         * dbus/dbus-server.c (dbus_server_get_address): new function
9225
9226         * bus/main.c (main): take the configuration file as an argument.
9227
9228         * test/data/valid-config-files/debug-allow-all.conf: new file to
9229         use with dispatch.c tests for example
9230
9231         * bus/test-main.c (main): require test data dir
9232
9233         * bus/bus.c (bus_context_new): change this to take a
9234         configuration file name as argument
9235
9236         * doc/config-file.txt (Elements): add <servicedir>
9237
9238         * bus/system.conf, bus/session.conf: new files
9239
9240         * dbus/dbus-bus.c (dbus_bus_get): look for system bus on
9241         well-known socket if none set
9242
9243         * configure.in: create system.conf and session.conf
9244
9245 2003-03-30  Havoc Pennington  <hp@pobox.com>
9246
9247         * bus/config-parser.c: hacking
9248
9249         * dbus/dbus-memory.c: don't use DBusList for the list of stuff
9250         to shut down, since it could cause weirdness with the DBusList
9251         lock
9252
9253         * dbus/dbus-list.c (_dbus_list_test): add tests for the
9254         link-oriented stack routines
9255         (alloc_link): free the mempool if the first alloc from it fails
9256
9257         * dbus/dbus-mempool.c (struct DBusMemBlock): fix alignment issue
9258
9259         * dbus/dbus-string.c (UNICODE_VALID): sync new version of this
9260         from GLib
9261         (_dbus_string_skip_white): new
9262
9263         * doc/config-file.txt (Elements): add <includedir>
9264
9265 2003-03-28  Havoc Pennington  <hp@pobox.com>
9266
9267         * dbus/dbus-string.c (_dbus_string_copy_data_len)
9268         (_dbus_string_copy_data): new functions
9269
9270 2003-03-28  Anders Carlsson  <andersca@codefactory.se>
9271
9272         * dbus/dbus-bus.c: (bus_data_free), (dbus_bus_get):
9273         * dbus/dbus-bus.h:
9274         Add dbus_bus_get.
9275
9276         * dbus/dbus-memory.c:
9277         Fix a doc comment.
9278
9279 2003-03-28  Havoc Pennington  <hp@pobox.com>
9280
9281         * bus/test.c (bus_test_flush_bus): remove the sleep from here,
9282         I think it may have just been superstition. Not sure.
9283
9284         * dbus/dbus-string.c (_dbus_string_base64_decode): catch some OOM
9285         failures that were not being handled.
9286
9287         * dbus/dbus-auth.c (process_auth): fix a memleak in OOM handling
9288
9289         * dbus/dbus-memory.c: add ability to set number of mallocs in a
9290         row that will fail on out-of-memory.
9291
9292         * dbus/dbus-internals.c (_dbus_test_oom_handling): convenience
9293         function for testing out-of-memory handling.
9294
9295         * bus/config-loader-expat.c (memsuite): don't wrap the dbus
9296         allocation functions, they do map exactly to the expat ones.
9297
9298 2003-03-27  Havoc Pennington  <hp@redhat.com>
9299
9300         * bus/config-loader-libxml.c (bus_config_load): add another error
9301         check
9302
9303 2003-03-26  Anders Carlsson  <andersca@codefactory.se>
9304
9305         * doc/TODO:
9306         Add note about automatic service activation.
9307
9308         * doc/dbus-specification.sgml:
9309         Rename the specification and clarify a few things.
9310
9311 2003-03-26  Anders Carlsson  <andersca@codefactory.se>
9312
9313         * Doxyfile.in:
9314         * dbus/dbus-address.c:
9315         * dbus/dbus-dict.c:
9316         * dbus/dbus-marshal.c:
9317         * dbus/dbus-server-debug-pipe.c:
9318         * dbus/dbus-transport-unix.c:
9319         Fix documentation warnings.
9320
9321 2003-03-26  Havoc Pennington  <hp@pobox.com>
9322
9323         * bus/test-main.c, dbus/dbus-test.c (main): check memleaks
9324         after every test so it's quick and easy to see which leaked, and
9325         so we test multiple dbus_shutdown() calls
9326
9327         * configure.in: change configure.in XML stuff to also support
9328         expat
9329
9330         * config-loader-libxml.c: some hacking
9331
9332         * config-loader-expat.c: some hacking
9333
9334         * config-parser.c: some hacking, plus tests
9335
9336 2003-03-25  Havoc Pennington  <hp@redhat.com>
9337
9338         * throughout - add more _DBUS_ASSERT_ERROR_IS_CLEAR
9339
9340         * configure.in: add --with-xml option to specify XML library,
9341         right now only libxml is supported.
9342
9343         * bus/config-loader-libxml.c, config-parser.c: sync some minor
9344         nonworking code between home and work, still just stubs
9345
9346 2003-03-24  Havoc Pennington  <hp@redhat.com>
9347
9348         * dbus/dbus-sysdeps.c (_dbus_set_fd_nonblocking): move to this
9349         file
9350
9351         * dbus/dbus-errors.c (dbus_set_error, dbus_set_error_const): allow
9352         NULL argument for "message" if the error is a well-known one,
9353         fill in a generic message in this case.
9354
9355         * dbus/dbus-errors.h (DBusResultCode): Kill DBusResultCode in
9356         favor of DBusError
9357
9358         * bus/test.c (bus_test_flush_bus): add
9359
9360         * bus/policy.c (bus_policy_test): test code stub
9361
9362 2003-03-24  Havoc Pennington  <hp@pobox.com>
9363
9364         * bus/connection.c (bus_connections_setup_connection): set up
9365         the "can this user connect" function, but it always returns
9366         TRUE until we have a config file parser so we can have a config
9367         file that allows connections.
9368
9369 2003-03-23  Havoc Pennington  <hp@pobox.com>
9370
9371         * dbus/dbus-threads.c (dbus_mutex_new, dbus_condvar_new): with
9372         DBUS_BUILD_TESTS, actually alloc/free a block of memory for
9373         the mutex, so we can check for proper memory management
9374         and OOM handling.
9375
9376         * dbus/dbus-dataslot.c: remove the mutex from
9377         DBusDataSlotAllocator and lock it manually when using it,
9378         to simplify fitting it into the global slots framework.
9379
9380         * dbus/dbus-threads.c (init_static_locks): rework how we're
9381         handling global locks so they are easily shut down.
9382
9383         * bus/policy.c (bus_policy_append_rule): fix
9384
9385         * bus/test-main.c (main): check for memleaks
9386
9387         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): make
9388         test suite check for memleaks
9389
9390         * dbus/dbus-memory.c: add support in test mode for tracking
9391         number of outstanding blocks
9392
9393 2003-03-23  Havoc Pennington  <hp@pobox.com>
9394
9395         * bus/policy.c, bus/bus.c, bus/connection.c: implement allow/deny
9396         policies code
9397
9398         * dbus/dbus-hash.h: add ULONG hash keys
9399
9400         * dbus/dbus-sysdeps.c (_dbus_get_groups): new
9401         (_dbus_get_group_id): new function
9402
9403 2003-03-20  Havoc Pennington  <hp@redhat.com>
9404
9405         * dbus/dbus-connection.c (dbus_connection_set_unix_user_function):
9406         new function
9407         (dbus_connection_get_unix_user): new function
9408
9409 2003-03-20  Havoc Pennington  <hp@pobox.com>
9410
9411         * bus/connection.c (bus_connection_send_oom_error): assert that
9412         message has a sender
9413         (connection_execute_transaction): ditto
9414         (bus_connection_preallocate_oom_error): fix to set the sender, and
9415         set recipient to the destination service, not the bus driver
9416
9417         * bus/policy.c: hacking
9418
9419         * dbus/dbus-message.c (dbus_message_service_is): new function
9420         (dbus_message_sender_is): new
9421
9422 2003-03-19  Havoc Pennington  <hp@redhat.com>
9423
9424         * bus/policy.c: start sketching code for policy restrictions on
9425         what connections can do.
9426
9427 2003-03-18  Havoc Pennington  <hp@redhat.com>
9428
9429         * doc/TODO: some notes on high-level todo items. Little nitpick
9430         stuff is all in @todo, so no need to add it here.
9431
9432         * doc/config-file.txt: some notes on how config file might look
9433
9434 2003-03-18  Anders Carlsson  <andersca@codefactory.se>
9435
9436         * configure.in: 0.6
9437
9438         * NEWS: Update.
9439
9440 2003-03-17  Havoc Pennington  <hp@redhat.com>
9441
9442         * dbus/dbus-internals.h: add gcc attributes so that
9443         our printf-style functions warn on bad arguments to
9444         format
9445
9446         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): fix printf
9447         format bug
9448
9449         * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
9450         printf format bug
9451
9452 2003-03-17  Havoc Pennington  <hp@redhat.com>
9453
9454         * bus/test-main.c (main): make it print something as it runs
9455         so make check doesn't look stuck
9456
9457         * doc/negotiation.txt, doc/dbus-sasl-profile.txt: remove
9458         from CVS, now obsolete
9459
9460 2003-03-17  Anders Carlsson  <andersca@codefactory.se>
9461
9462         * bus/dispatch.c: (bus_dispatch):
9463         Refetch the service name since it may have been reallocated
9464         when dbus_message_set_sender was called.
9465
9466         * dbus/dbus-sysdeps.c: (_dbus_accept):
9467         Add address and address length variables and use them to stop
9468         valgrind from complaining.
9469
9470 2003-03-17  Havoc Pennington  <hp@pobox.com>
9471
9472         All tests pass, no memleaks, no valgrind complaints.
9473
9474         * bus/test.c: refcount handler_slot
9475
9476         * bus/connection.c (bus_connections_new): refcount
9477         connection_data_slot
9478
9479         * dbus/dbus-auth-script.c (_dbus_auth_script_run): delete unused
9480         bytes so that auth scripts pass.
9481
9482         * bus/dispatch.c: init message_handler_slot so it gets allocated
9483         properly
9484
9485         * bus/dispatch.c (message_handler_slot_ref): fix memleak
9486
9487         * dbus/dbus-server-debug-pipe.c (_dbus_server_debug_pipe_new):
9488         dealloc server_pipe_hash when no longer used for benefit of
9489         leak checking
9490
9491         * dbus/dbus-auth.c (process_command): memleak fix
9492
9493         * bus/dispatch.c (check_hello_message): memleak fix
9494
9495 2003-03-16  Havoc Pennington  <hp@pobox.com>
9496
9497         * dbus/dbus-bus.c (ensure_bus_data): fix double-unref of the data slot
9498
9499 2003-03-17  Anders Carlsson  <andersca@codefactory.se>
9500
9501         * bus/activation.c (bus_activation_activate_service): Append
9502         the pending activation entry to the list of pending activations.
9503
9504 2003-03-16  Havoc Pennington  <hp@pobox.com>
9505
9506         * bus/dispatch.c (bus_dispatch_test): remove double-unrefs of
9507         connections
9508
9509         * dbus/dbus-address.c (create_entry): fix OOM handling when
9510         failing to alloc entry->method
9511
9512 2003-03-16  Havoc Pennington  <hp@pobox.com>
9513
9514         * dbus/dbus-watch.c (_dbus_watch_new): handle failure to malloc
9515         the watch
9516
9517         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
9518         add some missing dbus_set_result
9519
9520         * bus/dispatch.c (bus_dispatch_add_connection): handle failure to
9521         alloc the DBusMessageHandler
9522
9523         * dbus/dbus-transport.c (_dbus_transport_disconnect): don't ref
9524         the transport here, since we call this from the finalizer; it
9525         resulted in a double-finalize.
9526
9527         * dbus/dbus-transport.c (_dbus_transport_disconnect): fix a bug
9528         where we tried to use transport->connection that was NULL,
9529         happened when transport was disconnected early on due to OOM
9530
9531         * bus/*.c: adapt to handle OOM for watches/timeouts
9532
9533         * dbus/dbus-transport-unix.c: port to handle OOM during
9534         watch handling
9535
9536         * dbus/dbus-auth.c (_dbus_auth_get_unused_bytes): return a
9537         reference to unused bytes instead of a copy
9538
9539         * dbus/dbus-server.c (dbus_server_handle_watch): return FALSE for
9540         out of memory
9541
9542         * dbus/dbus-connection.c (dbus_connection_handle_watch): return
9543         FALSE on OOM
9544
9545         * dbus/dbus-timeout.c (dbus_timeout_handle): return FALSE for out
9546         of memory
9547
9548 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
9549
9550         * doc/dbus-specification.sgml:
9551         Document reply message for ActivateService.
9552
9553 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
9554
9555         * bus/activation.c: (bus_pending_activation_entry_free),
9556         (bus_pending_activation_free), (bus_activation_new),
9557         (bus_activation_unref), (bus_activation_service_created),
9558         (bus_activation_activate_service):
9559         * bus/activation.h:
9560         * bus/bus.c: (bus_context_new):
9561         * bus/desktop-file.c: (new_section):
9562         * bus/driver.c: (bus_driver_send_service_deleted),
9563         (bus_driver_handle_activate_service):
9564         * bus/services.c: (bus_registry_new), (bus_registry_ensure):
9565         * bus/services.h:
9566         * dbus/dbus-connection.c:
9567         (dbus_connection_send_with_reply_and_block):
9568         * dbus/dbus-message.c: (dbus_message_append_args_valist):
9569         * dbus/dbus-protocol.h:
9570         Make activation work better. Now pending activations will be queued
9571         and the daemon won't try to activate services that are already registered.
9572
9573 2003-03-16  Havoc Pennington  <hp@pobox.com>
9574
9575         * dbus/dbus-bus.c (ensure_bus_data): handle failure to set
9576         connection data
9577
9578         * dbus/dbus-memory.c (_dbus_initialize_malloc_debug): support
9579         DBUS_MALLOC_BACKTRACES to print trace when failing an alloc
9580
9581 2003-03-16  Havoc Pennington  <hp@pobox.com>
9582
9583         * dbus/dbus-string.c (_dbus_string_validate_utf8): oops, unbreak
9584         this. always run the test suite before commit...
9585
9586         * bus/*: adapt to DBusConnection API changes
9587
9588         * glib/dbus-gmain.c: adapt to DBusConnection API changes,
9589         requires renaming stuff to avoid dbus_connection_dispatch name
9590         conflict.
9591
9592         * dbus/dbus-transport.c (_dbus_transport_queue_messages): new
9593         function
9594
9595         * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
9596         separate from _dbus_message_loader_return_buffer()
9597
9598         * dbus/dbus-connection.c (dbus_connection_get_n_messages): remove
9599         this, because it's now always broken to use; the number of
9600         messages in queue vs. the number still buffered by the message
9601         loader is undefined/meaningless. Should use
9602         dbus_connection_get_dispatch_state().
9603         (dbus_connection_dispatch): rename from
9604         dbus_connection_dispatch_message
9605
9606 2003-03-16  Havoc Pennington  <hp@pobox.com>
9607
9608         * dbus/dbus-string.c (_dbus_string_validate_utf8): copy in a real
9609         implementation
9610
9611 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
9612
9613         * dbus/dbus-connection.c:
9614         (dbus_connection_send_with_reply_and_block):
9615         Decrease connection->n_incoming when removing an entry
9616         from the list.
9617         * dbus/dbus-dict.c: (dbus_dict_entry_free),
9618         (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
9619         (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
9620         (dbus_dict_set_byte_array), (dbus_dict_set_string_array),
9621         (dbus_dict_get_boolean_array), (dbus_dict_get_double_array),
9622         (dbus_dict_get_byte_array):
9623         Handle NULL arrays and strings. Also add support for byte arrays.
9624
9625         * dbus/dbus-marshal.c: (_dbus_marshal_byte_array),
9626         (_dbus_marshal_dict), (_dbus_demarshal_byte_array),
9627         (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
9628         (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
9629         (_dbus_demarshal_dict), (demarshal_and_validate_len),
9630         (_dbus_marshal_validate_arg), (_dbus_marshal_test):
9631         * dbus/dbus-marshal.h:
9632         Add support for marshalling and demarshalling empty arrays and strings.
9633
9634         * dbus/dbus-message.c: (dbus_message_append_args_valist),
9635         (dbus_message_append_string_array),
9636         (dbus_message_iter_get_boolean),
9637         (dbus_message_iter_get_boolean_array),
9638         (dbus_message_iter_get_int32_array),
9639         (dbus_message_iter_get_uint32_array),
9640         (dbus_message_iter_get_double_array),
9641         (dbus_message_iter_get_byte_array),
9642         (dbus_message_iter_get_string_array), (dbus_message_iter_get_dict),
9643         (check_message_handling):
9644         Add support for getting empty arrays and dicts.
9645
9646         * dbus/dbus-string.c: (_dbus_string_validate_utf8):
9647         Don't do any validation at all for now, that's better than just checking
9648         for ASCII.
9649
9650         * test/data/valid-messages/emptiness.message:
9651         New test message with lots of empty arrays.
9652
9653 2003-03-16  Havoc Pennington  <hp@pobox.com>
9654
9655         * dbus/dbus-connection.c
9656         (_dbus_connection_queue_received_message_link): new function that
9657         can't fail due to OOM
9658
9659         * dbus/dbus-message.c (_dbus_message_loader_pop_message_link):
9660         new function pops a message together with a list link
9661         containing it.
9662
9663         * dbus/dbus-transport-unix.c (queue_messages): use new link-based
9664         message queuing functions to avoid needing to alloc memory
9665
9666 2003-03-16  Havoc Pennington  <hp@pobox.com>
9667
9668         Oops - test code was only testing failure of around 30 of the
9669         mallocs in the test path, but it turns out there are 500+
9670         mallocs. I believe this was due to misguided linking setup such
9671         that there was one copy of dbus_malloc etc. in the daemon and one
9672         in the shared lib, and only daemon mallocs were tested. In any
9673         case, the test case now tests all 500+ mallocs, and doesn't pass
9674         yet, though there are lots of fixes in this patch.
9675
9676         * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
9677         this so that it doesn't need to allocate memory, since it
9678         has no way of indicating failure due to OOM (and would be
9679         annoying if it did).
9680
9681         * dbus/dbus-list.c (_dbus_list_pop_first_link): new function
9682
9683         * bus/Makefile.am: rearrange to create two self-contained
9684         libraries, to avoid having libraries with overlapping symbols.
9685         that was resulting in weirdness, e.g. I'm pretty sure there
9686         were two copies of global static variables.
9687
9688         * dbus/dbus-internals.c: move the malloc debug stuff to
9689         dbus-memory.c
9690
9691         * dbus/dbus-list.c (free_link): free list mempool if it becomes
9692         empty.
9693
9694         * dbus/dbus-memory.c (_dbus_disable_mem_pools): new function
9695
9696         * dbus/dbus-address.c (dbus_parse_address): free list nodes
9697         on failure.
9698
9699         * bus/dispatch.c (bus_dispatch_add_connection): free
9700         message_handler_slot when no longer using it, so
9701         memory leak checkers are happy for the test suite.
9702
9703         * dbus/dbus-server-debug-pipe.c (debug_finalize): free server name
9704
9705         * bus/bus.c (new_connection_callback): disconnect in here if
9706         bus_connections_setup_connection fails.
9707
9708         * bus/connection.c (bus_connections_unref): fix to free the
9709         connections
9710         (bus_connections_setup_connection): if this fails, don't
9711         disconnect the connection, just be sure there are no side
9712         effects.
9713
9714         * dbus/dbus-string.c (undo_alignment): unbreak this
9715
9716         * dbus/dbus-auth.c (_dbus_auth_unref): free some stuff we were
9717         leaking
9718         (_dbus_auth_new): fix the order in which we free strings
9719         on OOM failure
9720
9721         * bus/connection.c (bus_connection_disconnected): fix to
9722         not send ServiceDeleted multiple times in case of memory
9723         allocation failure
9724
9725         * dbus/dbus-bus.c (dbus_bus_get_base_service): new function to
9726         get the base service name
9727         (dbus_bus_register_client): don't return base service name,
9728         instead store it on the DBusConnection and have an accessor
9729         function for it.
9730         (dbus_bus_register_client): rename dbus_bus_register()
9731
9732         * bus/dispatch.c (check_hello_message): verify that other
9733         connections on the bus also got the correct results, not
9734         just the one sending hello
9735
9736 2003-03-15  Havoc Pennington  <hp@pobox.com>
9737
9738         Make it pass the Hello handling test including all OOM codepaths.
9739         Now to do other messages...
9740
9741         * bus/services.c (bus_service_remove_owner): fix crash when
9742         removing owner from an empty list of owners
9743         (bus_registry_ensure): don't leave service in the list of
9744         a connection's owned services if we fail to put the service
9745         in the hash table.
9746
9747         * bus/connection.c (bus_connection_preallocate_oom_error): set
9748         error flag on the OOM error.
9749
9750         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
9751         handle _dbus_transport_set_connection failure
9752
9753         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd): modify
9754         to create watches up front and simply enable/disable them as
9755         needed.
9756         (unix_connection_set): this can now fail on OOM
9757
9758         * dbus/dbus-timeout.c, dbus/dbus-watch.c: add concept
9759         of enabling/disabling a watch or timeout.
9760
9761         * bus/loop.c (bus_loop_iterate): don't touch disabled
9762         watches/timeouts
9763
9764         * glib/dbus-gmain.c: adapt to enable/disable watches and timeouts
9765
9766 2003-03-15  Havoc Pennington  <hp@pobox.com>
9767
9768         * bus/dispatch.c (bus_dispatch_test): OK, now finally actually
9769         write useful test code, after all that futzing around ;-)
9770
9771         Test does not yet pass because we can't handle OOM in
9772         _dbus_transport_messages_pending (basically,
9773         dbus_connection_preallocate_send() does not prealloc the write
9774         watch). To fix this, I think we need to add new stuff to
9775         set_watch_functions, namely a SetEnabled function so we can alloc
9776         the watch earlier, then enable it later.
9777
9778         * dbus/Makefile.am (libdbus_convenience_la_SOURCES): move
9779         dbus-memory.c to the convenience lib
9780
9781         * bus/test.c: rename some static functions to keep them clearly
9782         distinct from stuff in connection.c. Handle client disconnection.
9783
9784 2003-03-14  Havoc Pennington  <hp@pobox.com>
9785
9786         * bus/dispatch.c (bus_dispatch_test): do test using debug-pipe
9787         transport, tests more of the real codepath. Set up clients
9788         with bus_setup_debug_client.
9789
9790         * bus/test.c (bus_setup_debug_client): function to set up debug
9791         "clients" on the main loop
9792
9793         * dbus/dbus-transport.c (_dbus_transport_open): add debug-pipe
9794         support
9795
9796         * dbus/dbus-server.c (dbus_server_listen): add debug-pipe
9797         server type
9798
9799         * dbus/dbus-server-debug.c: support a debug server based on pipes
9800
9801         * dbus/dbus-sysdeps.c (_dbus_full_duplex_pipe): new function
9802         (_dbus_close): new function
9803
9804         * configure.in: check for socketpair
9805
9806 2003-03-14  Havoc Pennington  <hp@redhat.com>
9807
9808         * dbus/dbus-memory.c: add a "detect buffer overwrites on free"
9809         cheesy hack
9810
9811         * dbus/dbus-transport-debug.c: rework this a good bit to be
9812         less complicated. hopefully still works.
9813
9814         * dbus/dbus-server-debug.c (handle_new_client): remove timeout
9815         manually
9816
9817         * glib/dbus-gmain.c (timeout_handler): don't remove timeout
9818         after running it
9819
9820         * dbus/dbus-message.c (dbus_message_copy): rename from
9821         dbus_message_new_from_message, fix it up to copy
9822         all the message fields, add test case
9823
9824         * bus/dispatch.c (bus_dispatch_test): add some more test code,
9825         not quite passing yet
9826
9827 2003-03-14  Havoc Pennington  <hp@pobox.com>
9828
9829         * bus/loop.c (bus_loop_iterate): add this so we can "run loop
9830         until no work remains" in test code. (the large diff here
9831         is just code movement, no actual changes)
9832
9833         * dbus/dbus-server-debug.c (DEFAULT_INTERVAL): change interval to
9834         1, no point waiting around for test code.
9835         (_dbus_server_debug_accept_transport): unref the timeout
9836         after adding it (right?)
9837
9838         * dbus/dbus-transport-debug.c (DEFAULT_INTERVAL): ditto
9839
9840 2003-03-13  Havoc Pennington  <hp@redhat.com>
9841
9842         * dbus/dbus-timeout.c (_dbus_timeout_list_set_functions): handle
9843         out of memory
9844
9845         * dbus/dbus-watch.c (_dbus_watch_list_set_functions): handle out
9846         of memory
9847
9848         * dbus/dbus-connection.h: Make AddWatchFunction and
9849         AddTimeoutFunction return a bool so they can fail on out-of-memory
9850
9851         * bus/bus.c (bus_context_new): set up timeout handlers
9852
9853         * bus/connection.c (bus_connections_setup_connection): set up
9854         timeout handlers
9855
9856         * glib/dbus-gmain.c: adapt to the fact that set_functions stuff
9857         can fail
9858
9859         * bus/bus.c (bus_context_new): adapt to changes
9860
9861         * bus/connection.c: adapt to changes
9862
9863         * test/watch.c: adapt to DBusWatch changes
9864
9865         * bus/dispatch.c (bus_dispatch_test): started adding this but
9866         didn't finish
9867
9868 2003-03-14  Anders Carlsson  <andersca@codefactory.se>
9869
9870         * bus/dispatch.c (send_service_nonexistent_error): Fix typo.
9871
9872 2003-03-13  Havoc Pennington  <hp@pobox.com>
9873
9874         * bus/test.c, bus/test.h, bus/Makefile.am, bus/test-main.c:
9875         set up a test framework as for the library
9876
9877 2003-03-12  Havoc Pennington  <hp@pobox.com>
9878
9879         Throughout: purge global variables, introduce BusActivation,
9880         BusConnections, BusRegistry, etc. objects instead.
9881
9882         * bus/bus.h, bus/bus.c: introduce BusContext as a global
9883         message bus object
9884
9885         * test/Makefile.am (TEST_BINARIES): disable bus-test for now,
9886         going to redo this a bit differently I think
9887
9888 2003-03-12  Havoc Pennington  <hp@redhat.com>
9889
9890         Mega-patch that gets the message bus daemon initially handling
9891         out-of-memory. Work still needed. Also lots of random
9892         moving stuff to DBusError instead of ResultCode.
9893
9894         * dbus/dbus-list.c (_dbus_list_length_is_one): new function
9895
9896         * dbus/dbus-connection.c
9897         (dbus_connection_send_with_reply_and_block): use DBusError
9898
9899         * dbus/dbus-bus.c: adapt to API changes, make it use DBusError not
9900         DBusResultCode
9901
9902         * dbus/dbus-connection.c (dbus_connection_send): drop the result
9903         code here, as the only failure possible is OOM.
9904
9905         * bus/connection.c (bus_connection_disconnect):
9906         rename bus_connection_disconnected as it's a notification only
9907
9908         * bus/driver.c (bus_driver_handle_acquire_service): don't free
9909         "name" on get_args failure, should be done by get_args;
9910         don't disconnect client for bad args, just return an error.
9911         (bus_driver_handle_service_exists): ditto
9912
9913         * bus/services.c (bus_services_list): NULL-terminate returned array
9914
9915         * bus/driver.c (bus_driver_send_service_lost)
9916         (bus_driver_send_service_acquired): send messages from driver to a
9917         specific client to the client's unique name, not to the broadcast
9918         service.
9919
9920         * dbus/dbus-message.c (decode_header_data): reject messages that
9921         contain no name field
9922         (_dbus_message_get_client_serial): rename to
9923         dbus_message_get_serial and make public
9924         (_dbus_message_set_serial): rename from set_client_serial
9925         (_dbus_message_set_reply_serial): make public
9926         (_dbus_message_get_reply_serial): make public
9927
9928         * bus/connection.c (bus_connection_foreach): allow stopping
9929         iteration by returning FALSE from foreach function.
9930
9931         * dbus/dbus-connection.c (dbus_connection_send_preallocated)
9932         (dbus_connection_free_preallocated_send)
9933         (dbus_connection_preallocate_send): new API for sending a message
9934         without possibility of malloc failure.
9935         (dbus_connection_send_message): rename to just
9936         dbus_connection_send (and same for whole function family)
9937
9938         * dbus/dbus-errors.c (dbus_error_free): make this reinit the error
9939
9940         * dbus/dbus-sysdeps.c (_dbus_exit): new function
9941
9942         * bus/activation.c: handle/return errors
9943
9944         * dbus/dbus-errors.h: add more DBUS_ERROR #define
9945
9946         * dbus/dbus-sysdeps.c (_dbus_directory_open) (_dbus_file_get_contents)
9947         (_dbus_directory_get_next_file): use DBusError instead of DBusResultCode
9948         (_dbus_result_from_errno): move to this file
9949
9950 2003-03-10  Anders Carlsson  <andersca@codefactory.se>
9951
9952         * dbus/dbus-marshal.c:
9953         (_dbus_marshal_set_string):
9954         Take a length argument so we can marshal the correct string
9955         length.
9956
9957         (_dbus_marshal_dict), (_dbus_demarshal_dict),
9958         (_dbus_marshal_get_arg_end_pos), (_dbus_marshal_validate_arg),
9959         (_dbus_marshal_test):
9960         * dbus/dbus-marshal.h:
9961         Add support for marshalling and demarshalling dicts.
9962
9963         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
9964         Add support for TYPE DICT.
9965
9966         * dbus/dbus-message.c: (set_string_field):
9967         Adjust header padding.
9968
9969         (dbus_message_append_args_valist), (dbus_message_append_dict),
9970         (dbus_message_get_args_valist), (dbus_message_iter_get_arg_type),
9971         (dbus_message_iter_get_dict), (_dbus_message_loader_return_buffer),
9972         (check_message_handling), (check_have_valid_message):
9973         * dbus/dbus-message.h:
9974         Add functions for setting and getting dicts.
9975
9976         * dbus/dbus-protocol.h:
9977         Add DBUS_TYPE_DICT.
9978
9979         * dbus/dbus.h:
9980         Add dbus-dict.h
9981
9982         * doc/dbus-specification.sgml:
9983         Add information about how dicts are marshalled.
9984
9985         * test/data/invalid-messages/dict-with-nil-value.message:
9986         * test/data/invalid-messages/too-short-dict.message:
9987         * test/data/valid-messages/dict-simple.message:
9988         * test/data/valid-messages/dict.message:
9989         Add sample messages containing dicts.
9990
9991 2003-03-08  Anders Carlsson  <andersca@codefactory.se>
9992
9993         * dbus/dbus-dict.h: Add DBUS_END_DECLS.
9994
9995 2003-03-07  Anders Carlsson  <andersca@codefactory.se>
9996
9997         * dbus/Makefile.am:
9998         * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
9999         (dbus_dict_get_keys), (insert_entry), (dbus_dict_set_boolean),
10000         (dbus_dict_set_int32), (dbus_dict_set_uint32),
10001         (dbus_dict_set_double), (dbus_dict_set_string),
10002         (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
10003         (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
10004         (dbus_dict_set_string_array), (_dbus_dict_test):
10005         * dbus/dbus-dict.h:
10006         Fix according to comments from Havoc.
10007
10008 2003-03-06  Michael Meeks  <michael@server.home>
10009
10010         * configure.in: if we don't have kde-config, disable have_qt.
10011
10012 2003-03-07  Anders Carlsson  <andersca@codefactory.se>
10013
10014         * dbus/Makefile.am:
10015         Add dbus-dict.[ch]
10016
10017         * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
10018         (dbus_dict_ref), (dbus_dict_unref), (dbus_dict_contains),
10019         (dbus_dict_remove), (dbus_dict_get_value_type),
10020         (dbus_dict_get_keys), (dbus_dict_put_boolean),
10021         (dbus_dict_put_int32), (dbus_dict_put_uint32),
10022         (dbus_dict_put_double), (dbus_dict_put_string),
10023         (dbus_dict_put_boolean_array), (dbus_dict_put_int32_array),
10024         (dbus_dict_put_uint32_array), (dbus_dict_put_double_array),
10025         (dbus_dict_put_string_array), (dbus_dict_get_boolean),
10026         (dbus_dict_get_int32), (dbus_dict_get_uint32),
10027         (dbus_dict_get_double), (dbus_dict_get_string),
10028         (dbus_dict_get_boolean_array), (dbus_dict_get_int32_array),
10029         (dbus_dict_get_uint32_array), (dbus_dict_get_double_array),
10030         (dbus_dict_get_string_array), (_dbus_dict_test):
10031         * dbus/dbus-dict.h:
10032         Add DBusDict implementation
10033
10034         * dbus/dbus-test.c: (dbus_internal_do_not_use_run_tests):
10035         * dbus/dbus-test.h:
10036         Add _dbus_dict_test
10037
10038 2003-03-04  Havoc Pennington  <hp@pobox.com>
10039
10040         * test/data/auth/*: adapt to changes
10041
10042         * dbus/dbus-auth-script.c (_dbus_auth_script_run): add
10043         USERID_BASE64 and change USERNAME_BASE64 to put in username not
10044         userid
10045
10046         * dbus/dbus-keyring.c (_dbus_keyring_validate_context): prevent
10047         more stuff from being in a context name, to make the protocol
10048         simpler to deal with
10049
10050         * dbus/dbus-errors.c (dbus_error_has_name): new function
10051         (dbus_error_is_set): new function
10052
10053         * dbus/dbus-auth.c: replace DBUS_STUPID_TEST_MECH auth
10054         with DBUS_COOKIE_SHA1, implement DBUS_COOKIE_SHA1
10055
10056         * dbus/dbus-connection.c (dbus_connection_flush): also read
10057         messages during a flush operation
10058
10059         * dbus/Makefile.am: remove dbus-md5 since it isn't currently used.
10060
10061 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
10062
10063         * configure.in: Check for gethostbyname on Solaris.
10064
10065         * dbus/dbus-transport.c: (_dbus_transport_open):
10066         Remove duplicate "tcp" entry.
10067
10068         * doc/dbus-specification.sgml:
10069         Clarify some things.
10070
10071 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
10072
10073         * dbus/dbus-auth.c: (send_rejected), (process_test_subdir):
10074         * dbus/dbus-keyring.c: (_dbus_keyring_new_homedir),
10075         (_dbus_keyring_test):
10076         * dbus/dbus-md5.c: (_dbus_md5_compute):
10077         * dbus/dbus-sha.c: (_dbus_sha_compute):
10078         Plug memory leaks.
10079
10080 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
10081
10082         * README: Add some things.
10083
10084 2003-03-04  Anders Carlsson  <andersca@codefactory.se>
10085
10086         * dbus/dbus-message.c (dbus_message_append_args_valist): Add a break;
10087         after case DBUS_TYPE_BOOELAN.
10088
10089 2003-03-02  Havoc Pennington  <hp@pobox.com>
10090
10091         * test/break-loader.c (randomly_set_extreme_ints): add test that
10092         sets really huge and small integers
10093
10094         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add check
10095         that length of boolean array fits in the string, and that
10096         string has room for boolean value in single-bool case.
10097
10098         * dbus/dbus-message-builder.c (_dbus_message_data_load): add
10099         optional value to "ALIGN" command which is what to fill the
10100         alignment with.
10101
10102         * test/data/valid-messages/no-padding.message: add regression
10103         test for the message padding problem
10104
10105 2003-03-02  Havoc Pennington  <hp@pobox.com>
10106
10107         * dbus/dbus-message.c (decode_header_data): fix to always init
10108         message_padding, from Benjamin Dauvergne
10109
10110 2003-03-02  Havoc Pennington  <hp@pobox.com>
10111
10112         * configure.in: 0.5
10113
10114         * NEWS: Update.
10115
10116 2003-03-01  Joe Shaw  <joe@assbarn.com>
10117
10118         * configure.in: Check for "struct cmsgcred" and try to access its
10119         members for BSD-like unices.
10120
10121         * dbus/dbus-sysdeps.c (read_credentials_byte): Fold this back into
10122         _dbus_read_credentials_unix_socket().
10123         (_dbus_read_credentials_unix_socket): Use recvmsg() instead of
10124         read() for reading the credential byte off the unix socket.  Use
10125         struct cmsgcred on systems that support it.
10126
10127 2003-02-27  Alexander Larsson  <alexl@redhat.com>
10128
10129         * glib/Makefile.am:
10130         * configure.in:
10131         Make gthreads-2.0 dependency optional. Don't build thread test if
10132         its not found.
10133
10134 2003-02-27  Havoc Pennington  <hp@pobox.com>
10135
10136         * dbus/dbus-connection.c
10137         (dbus_connection_send_message_with_reply_and_block): fix doh!
10138         doh! doh! bug that resulted in never removing a reply from the
10139         queue, no wonder we called get_reply_serial so much ;-)
10140
10141         * dbus/dbus-message.c (struct DBusMessage): cache reply serial
10142         and client serial instead of demarshaling them every time
10143
10144 2003-02-27  Havoc Pennington  <hp@pobox.com>
10145
10146         * dbus/dbus-marshal.c (_dbus_demarshal_int32): rewrite to be much
10147         more inlined, using dbus-string-private.h, speeds things up
10148         substantially
10149
10150         * dbus/dbus-string.c (_dbus_string_free): apply align offset
10151         when freeing the string
10152         (_dbus_string_steal_data): fix for align offset
10153         (undo_alignment): new function
10154
10155 2003-02-26  Havoc Pennington  <hp@redhat.com>
10156
10157         All kinds of audit fixes from Owen, plus initial attempt to
10158         handle unaligned memory returned from malloc.
10159
10160         * dbus/dbus-string.c (_dbus_string_init): clamp max length to
10161         leave room for align_offset and nul byte
10162         (fixup_alignment): function to track an align_offset and
10163         ensure real->str is aligned
10164         (DBUS_GENERIC_STRING_PREAMBLE): len must be less than allocated,
10165         to allow a nul byte plus align offset
10166         (_dbus_string_lock): fix overflow issue
10167         (_dbus_string_init_const_len): add assertions on sanity of len,
10168         assign allocated to be ALLOCATION_PADDING larger than len
10169         (set_length): fixup the overflow handling
10170         (_dbus_string_get_data_len): fix overflow in assertion
10171         (open_gap): detect overflow in size of gap to be opened
10172         (_dbus_string_lengthen): add overflow check
10173         (_dbus_string_align_length): fix overflow with _DBUS_ALIGN_VALUE
10174         (_dbus_string_append): add overflow check
10175         (_dbus_string_append_unichar): overflow
10176         (_dbus_string_delete): fix overflow in assertion
10177         (_dbus_string_copy_len): overflow in assertion
10178         (_dbus_string_replace_len): overflows in assertions
10179         (_dbus_string_find): change to implement in terms of
10180         _dbus_string_find_to
10181         (_dbus_string_find_to): assorted fixage
10182         (_dbus_string_equal_c_str): assert c_str != NULL,
10183         fix logic so the function works
10184         (_dbus_string_ends_with_c_str): fix overflow thingy
10185         (_dbus_string_base64_encode): overflow fix
10186         (_dbus_string_validate_ascii): overflow
10187         (_dbus_string_validate_nul): overflow
10188
10189 2003-02-26  Havoc Pennington  <hp@redhat.com>
10190
10191         * dbus/dbus-marshal.c (_dbus_marshal_test): fix to work with DISABLE_ASSERTS
10192
10193 2003-02-26  Alexander Larsson  <alexl@redhat.com>
10194
10195         * configure.in:
10196         Set DBUS_GLIB_THREADS_LIBS for apps using gthread-2.0
10197
10198         * dbus/dbus-connection.c:
10199         * dbus/dbus-connection.h:
10200         Fix _dbus_connection_acquire_io_path and _dbus_connection_acquire_dispatch.
10201         Add dbus_connection_set_wakeup_main_function and use it when queueing
10202         incoming and outgoing messages.
10203
10204
10205         * dbus/dbus-dataslot.c:
10206         Threadsafe usage of DBusDataSlotAllocator
10207
10208         * dbus/dbus-message.c: (dbus_message_get_args_iter):
10209         dbus_new can fail.
10210
10211         * dbus/dbus-server-unix.c:
10212         Add todo comment
10213
10214         * glib/dbus-gmain.c:
10215         Implement the new wakeup functions for glib.
10216
10217         * glib/Makefile.am:
10218         * glib/test-thread-client.c:
10219         * glib/test-thread-server.c:
10220         * glib/test-thread.h:
10221         Initial cut at some thread test code. Not really done yet.
10222
10223 2003-02-26  Havoc Pennington  <hp@pobox.com>
10224
10225         * dbus/dbus-connection.c
10226         (dbus_connection_send_message_with_reply_and_block): fix crash
10227         where we ref'd the outgoing message instead of the returned reply
10228
10229         * dbus/dbus-transport-unix.c (do_authentication): check read watch
10230         at the end of this function, so if we didn't need to read for
10231         authentication, we reinstall it for receiving messages
10232
10233         * dbus/dbus-message.c (dbus_message_new_reply): allow replies to
10234         a NULL sender for peer-to-peer case
10235
10236         * dbus/dbus-transport-unix.c (check_read_watch): handle
10237         !authenticated case correctly
10238
10239         * glib/dbus-gmain.c: add support for DBusServer
10240
10241         * dbus/dbus-server.c: add data slot support
10242
10243         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): check
10244         return values and handle errors
10245
10246         * dbus/dbus-dataslot.c: factor out the data slot stuff from
10247         DBusConnection
10248
10249         * Doxyfile.in (INPUT): add glib subdir
10250
10251         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): rename
10252         setup_with_g_main instead of hookup_with_g_main; write docs
10253
10254 2003-02-24  Anders Carlsson  <andersca@codefactory.se>
10255
10256         * dbus/dbus-marshal.c: (_dbus_marshal_validate_arg):
10257         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
10258         * dbus/dbus-message.c: (dbus_message_append_boolean),
10259         (dbus_message_append_boolean_array),
10260         (dbus_message_get_args_valist), (_dbus_message_test):
10261         * dbus/dbus-message.h:
10262         * doc/dbus-specification.sgml:
10263         Various fixes as pointed out by Havoc.
10264
10265         * test/data/invalid-messages/bad-boolean-array.message:
10266         * test/data/invalid-messages/bad-boolean.message:
10267         Add invalid boolean value test cases.
10268
10269 2003-02-24  Anders Carlsson  <andersca@codefactory.se>
10270
10271         * dbus/dbus-internals.c: (_dbus_type_to_string):
10272         * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
10273         (_dbus_marshal_validate_arg):
10274         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
10275         * dbus/dbus-message.c: (dbus_message_append_args_valist),
10276         (dbus_message_append_boolean), (dbus_message_append_boolean_array),
10277         (dbus_message_get_args_valist), (dbus_message_iter_get_boolean),
10278         (dbus_message_iter_get_int32), (dbus_message_iter_get_uint32),
10279         (dbus_message_iter_get_double),
10280         (dbus_message_iter_get_boolean_array), (message_iter_test):
10281         * dbus/dbus-message.h:
10282         * dbus/dbus-protocol.h:
10283         * doc/dbus-specification.sgml:
10284         * test/data/valid-messages/lots-of-arguments.message:
10285         Add support for boolean and boolean array types.
10286
10287 2003-02-23  Havoc Pennington  <hp@pobox.com>
10288
10289         * dbus/dbus-keyring.c: finish most of this implementation and
10290         simple unit test
10291
10292         * dbus/dbus-errors.c (dbus_set_error_const, dbus_set_error): make
10293         these barf if the error isn't cleared to NULL
10294
10295         * dbus/dbus-sysdeps.c (_dbus_delete_file): set error on failure
10296         (_dbus_create_directory): new function
10297
10298         * dbus/dbus-errors.c (dbus_set_error): fix warning
10299
10300         * dbus/dbus-string.c (_dbus_string_hex_encode): new function
10301         (_dbus_string_hex_decode): new function
10302         (test_hex_roundtrip): test code
10303
10304         * dbus/dbus-sha.c (_dbus_sha_compute): use dbus_string_hex_encode
10305
10306         * dbus/dbus-md5.c (_dbus_md5_compute): use dbus_string_hex_encode
10307
10308         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): make this use
10309         the save-to-temp/rename trick to atomically write the new file
10310         (_dbus_string_parse_uint): new function
10311
10312 2003-02-22  Havoc Pennington  <hp@pobox.com>
10313
10314         * test/Makefile.am (dist-hook): fix dist for test/data/sha-1
10315
10316 2003-02-22  Havoc Pennington  <hp@pobox.com>
10317
10318         * dbus/dbus-message.c (dbus_message_iter_get_string_array):
10319         (dbus_message_iter_get_byte_array): Fix up doxygen warnings
10320
10321         * dbus/dbus-sha.c: add implementation of SHA-1 algorithm
10322
10323         * dbus/test/data/sha-1: add US government test suite for SHA-1
10324
10325 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
10326
10327         * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
10328         Make string arrays NULL-terminated.
10329
10330         * dbus/dbus-memory.c: (dbus_free_string_array):
10331         * dbus/dbus-memory.h:
10332         New function for freeing NULL-terminated string arrays.
10333
10334         * dbus/dbus-message-builder.c: (append_quoted_string),
10335         (_dbus_message_data_load):
10336         Add support for array types.
10337
10338         * dbus/dbus-message.c: (check_message_handling):
10339         Add more types as test cases.
10340
10341         * dbus/dbus-sysdeps.c: (_dbus_string_parse_int),
10342         (_dbus_string_parse_double):
10343         Add the start offset to the end offset.
10344
10345         * test/data/valid-messages/lots-of-arguments.message:
10346         New test message with lots of arguments.
10347
10348 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
10349
10350         * dbus/dbus-message.c: (dbus_message_append_nil),
10351         (dbus_message_append_int32), (dbus_message_append_uint32),
10352         (dbus_message_append_double), (dbus_message_append_string),
10353         (dbus_message_append_int32_array),
10354         (dbus_message_append_uint32_array),
10355         (dbus_message_append_double_array),
10356         (dbus_message_append_byte_array),
10357         (dbus_message_append_string_array):
10358         Fix all out-of-memory handling in these functions.
10359
10360 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
10361
10362         * dbus/dbus-message.c: (dbus_message_append_nil):
10363         Fix a silly.
10364
10365 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
10366
10367         * dbus/dbus-message.c: (dbus_message_append_args_valist),
10368         (dbus_message_append_nil), (dbus_message_append_int32_array),
10369         (dbus_message_append_uint32_array),
10370         (dbus_message_append_double_array),
10371         (dbus_message_append_byte_array),
10372         (dbus_message_append_string_array), (dbus_message_get_args_valist),
10373         (dbus_message_iter_get_int32_array),
10374         (dbus_message_iter_get_uint32_array),
10375         (dbus_message_iter_get_double_array),
10376         (dbus_message_iter_get_byte_array),
10377         (dbus_message_iter_get_string_array):
10378
10379         * dbus/dbus-message.h:
10380         Add functions for appending and getting arrays.
10381
10382 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
10383
10384         * dbus/dbus-mempool.c (_dbus_mem_pool_new): Make the
10385         element size at least 8 bytes, fixes mempool tests on
10386         64-bit machines.
10387
10388 2003-02-20  Alexander Larsson  <alexl@redhat.com>
10389
10390         * dbus/dbus-transport-unix.c (unix_do_iteration):
10391         Unlock the connection mutex during a blocking select call.
10392         Add todo about how we need a way to wake up the select.
10393
10394         * dbus/dbus-connection-internal.h:
10395         * dbus/dbus-connection.c:
10396         Add _dbus_connection_lock and _dbus_connection_unlock.
10397
10398 2003-02-19  Havoc Pennington  <hp@pobox.com>
10399
10400         * Doxyfile.in (PREDEFINED): put DOXYGEN_SHOULD_SKIP_THIS in
10401         Doxyfile.in, not Doxyfile
10402
10403         * dbus/dbus-keyring.c: do some hacking on this
10404
10405         * dbus/dbus-sysdeps.c (_dbus_delete_file): new
10406
10407         * dbus/dbus-errors.c (dbus_set_error_const): do not call
10408         dbus_error_init
10409         (dbus_set_error): remove dbus_error_init, check for message ==
10410         NULL *before* we sprintf into it, and add @todo about including
10411         system headers in this file
10412
10413         * dbus/dbus-sysdeps.c (_dbus_create_file_exclusively): new
10414
10415         * dbus/dbus-errors.h (DBUS_ERROR_FAILED): add
10416
10417         * dbus/dbus-sysdeps.c (get_user_info): break this function out to
10418         get various bits of user information based on either username
10419         or user ID
10420         (_dbus_homedir_from_username): new function
10421
10422 2003-02-19  Anders Carlsson  <andersca@codefactory.se>
10423
10424         * configure.in:
10425         Add check for nonposix getpwnam_r
10426
10427         * dbus/dbus-mempool.c: (_dbus_mem_pool_new):
10428         Align the pool element size to a sizeof (void *) boundary.
10429
10430         * dbus/dbus-sysdeps.c: (_dbus_setenv), (_dbus_connect_unix_socket),
10431         (_dbus_listen_unix_socket), (_dbus_credentials_from_username):
10432         General Solaris fixes.
10433
10434         * test/data/valid-messages/simplest-manual.message:
10435         Explicitly state that we want little-endian packing.
10436
10437 2003-02-19  Mikael Hallendal  <micke@codefactory.se>
10438
10439         * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
10440
10441         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_tcp_socket):
10442         Added to create a transport connecting using a tcp/ip socket.
10443
10444         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): Added to connect
10445         to a tcp socket at given host and port.
10446         (_dbus_listen_tcp_socket): added to listen on tcp socket for given
10447         hostname and port.
10448
10449         * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
10450
10451         * dbus/dbus-server-unix.c (_dbus_server_new_for_tcp_socket):
10452         Added to create a server listening on a TCP/IP socket.
10453
10454 2003-02-19  Havoc Pennington  <hp@pobox.com>
10455
10456         Throughout: mop up all the Doxygen warnings and undocumented
10457         stuff.
10458
10459         * dbus/dbus-sysdeps.c (do_exec): do not use execvp, we don't want
10460         to search any paths.
10461
10462         * dbus/dbus-threads.c: move global mutex initializers to
10463         dbus-internals.h, multiple prototypes was confusing doxygen
10464         besides being kind of ugly
10465
10466         * Doxyfile (PREDEFINED): have Doxygen define
10467         DOXYGEN_SHOULD_SKIP_THIS so we can exclude things from
10468         docs with #ifndef DOXYGEN_SHOULD_SKIP_THIS
10469         (do not abuse the feature! it's for stuff like the autogenerated
10470         macros in dbus-md5.c, not just for things you don't feel like
10471         documenting...)
10472
10473 2003-02-18  Havoc Pennington  <hp@pobox.com>
10474
10475         * dbus/dbus-string.c (_dbus_string_zero): new function
10476
10477         * dbus/dbus-md5.c: include MD5 implementation by L. Peter Deutsch,
10478         wrap it in some dbus-friendly API
10479
10480         * dbus/dbus-types.h: add 16-bit types
10481
10482 2003-02-18  Joe Shaw  <joe@assbarn.com>
10483
10484         * dbus/dbus-auth.c (handle_server_data_stupid_test_mech): Just get
10485         credentials from our currently running process.
10486         (get_word): Fix a buglet where we were copying the entire length
10487         instead of relative to our position.
10488
10489         * dbus/dbus-hash.c (_dbus_hash_test): Don't try to allocate the
10490         keys on the stack... it's 640k of data.
10491
10492         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): Always
10493         read the credentials byte off the socket, even if we don't have
10494         SO_PEERCRED.
10495         (_dbus_poll): Implement poll() using select() for systems which
10496         don't have it.
10497
10498         * glib/test-dbus-glib.c (main): Print out an error if no
10499         parameters are given.
10500
10501         * test/data/auth/fallback.auth-script: Added.  Tests that a client
10502         can fallback to a secondary auth mechanism if the first fails.
10503
10504 2003-02-18  Havoc Pennington  <hp@pobox.com>
10505
10506         * AUTHORS: add Alex
10507
10508 2003-02-17  Havoc Pennington  <hp@pobox.com>
10509
10510         * doc/dbus-specification.sgml: lots of cosmetic
10511         cleanups/rearrangement, add assorted FIXME, change DBUS_ADDRESS
10512         env variable to DBUS_BUS_ADDRESS, s/client/application/,
10513         s/server/bus/ (except in authentication section). Add a section
10514         "Message Bus Message Routing"
10515
10516 2003-02-17  Anders Carlsson  <andersca@codefactory.se.>
10517
10518         Release 0.4
10519
10520         * NEWS: Update
10521
10522 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
10523
10524         * doc/dbus-specification.sgml:
10525         Specification updates.
10526
10527 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
10528
10529         * bus/activation.c: (bus_activation_init), (child_setup),
10530         (bus_activation_activate_service):
10531         * bus/activation.h:
10532         * bus/main.c: (main):
10533         Set DBUS_ADDRESS environment variable.
10534
10535         * dbus/dbus-errors.c: (dbus_set_error):
10536         Don't use va_copy since that's a C99 feature.
10537
10538         * dbus/dbus-sysdeps.c: (_dbus_setenv), (do_exec),
10539         (_dbus_spawn_async):
10540         * dbus/dbus-sysdeps.h:
10541         Add child_setup_func to _dbus_spawn_async.
10542
10543         * doc/dbus-specification.sgml:
10544         Update specification.
10545
10546         * test/spawn-test.c: (setup_func), (main):
10547         Fix test.
10548
10549 2003-02-17  Alexander Larsson  <alexl@redhat.com>
10550
10551         * dbus/dbus-connection.c (_dbus_connection_handler_destroyed_locked):
10552         Added todo.
10553
10554 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
10555
10556         * doc/.cvsignore:
10557         * doc/Makefile.am:
10558         * doc/dbus-test-plan.sgml:
10559         Add test plan document.
10560
10561         * test/Makefile.am:
10562         Fix distcheck.
10563
10564 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
10565
10566         * dbus/dbus-message.c: (decode_header_data),
10567         (_dbus_message_loader_return_buffer):
10568         Set the header padding amount when loading a message.
10569
10570 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
10571
10572         * bus/dispatch.c: (send_one_message):
10573         Only send broadcast messages to registered connections.
10574
10575         * dbus/dbus-message.c: (dbus_message_name_is):
10576         * dbus/dbus-message.h:
10577         New convenience function.
10578
10579         * dbus/dbus-transport-debug.c: (do_reading):
10580         Only dispatch one message per run.
10581
10582         * test/Makefile.am:
10583         * test/bus-test.c: (new_connection_callback), (die),
10584         (test_hello_client1_handler), (test_hello_client2_handler),
10585         (test_hello_replies), (main):
10586
10587         * test/bus-test-loop.[ch]:
10588         Add these.
10589
10590 2003-02-16  Havoc Pennington  <hp@pobox.com>
10591
10592         * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
10593         backward conditional
10594
10595 2003-02-16  Alexander Larsson  <alexl@redhat.com>
10596
10597         * dbus/dbus-connection.c:
10598         Implement sent_message_with_reply. (with_reply_and block is still
10599         busted).
10600         Made dispatch_message not lose message if OOM.
10601
10602         * dbus/dbus-errors.h:
10603         Add NoReply error (for reply timeouts).
10604
10605 2003-02-16  Alexander Larsson  <alexl@redhat.com>
10606
10607         * dbus/dbus-hash.c (_dbus_hash_table_unref):
10608         Actually free keys and values when destroying hashtable.
10609
10610 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
10611
10612         * dbus/dbus-auth.c: (client_try_next_mechanism):
10613         Plug a leak.
10614
10615         * dbus/dbus-threads.c: (dbus_condvar_wait_timeout):
10616         Return TRUE if there's no thread implementation around.
10617
10618         * glib/dbus-gmain.c: (free_source),
10619         (dbus_connection_hookup_with_g_main):
10620         Make sure to remove the GSource when the connection is finalized.
10621
10622 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
10623
10624         * bus/dispatch.c: (bus_dispatch_message_handler):
10625         * dbus/dbus-errors.h:
10626         Return an error if someone tries to send a message to a service
10627         that doesn't exist.
10628
10629 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
10630
10631         * bus/activation.c: (load_directory), (bus_activation_init),
10632         (bus_activation_activate_service):
10633         * bus/activation.h:
10634         * bus/driver.c:
10635         (bus_driver_handle_activate_service), (bus_driver_handle_message):
10636         More work on the activation handling.
10637
10638         * dbus/dbus-errors.h:
10639         Add some error messages
10640
10641         * dbus/dbus-message.c: (dbus_message_new_error_reply):
10642         * dbus/dbus-message.h:
10643         New function that creates an error message.
10644
10645         * dbus/dbus-protocol.h:
10646         Add ACTIVATE_SERVER message.
10647
10648         * dbus/dbus-server-unix.c: (unix_handle_watch),
10649         (_dbus_server_new_for_domain_socket):
10650         Call _dbus_fd_set_close_on_exec.
10651
10652         * dbus/dbus-sysdeps.c: (make_pipe), (do_exec),
10653         (_dbus_spawn_async), (_dbus_disable_sigpipe),
10654         (_dbus_fd_set_close_on_exec):
10655         * dbus/dbus-sysdeps.h:
10656         Add _dbus_fd_set_close_on exec function. Also add function that checks
10657         that all open fds are set to close-on-exec and warns otherwise.
10658
10659         * dbus/dbus-transport-unix.c:
10660         (_dbus_transport_new_for_domain_socket):
10661         Call _dbus_fd_set_close_on_exec.
10662
10663 2003-02-16  Havoc Pennington  <hp@pobox.com>
10664
10665         * dbus/dbus-connection.c (dbus_connection_set_change_sigpipe):
10666         allow people to avoid setting SIGPIPE to SIG_IGN
10667         (_dbus_connection_new_for_transport): disable SIGPIPE unless
10668         we've been asked not to
10669
10670 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
10671
10672         * dbus/dbus-list.c: (_dbus_list_append_link),
10673         (_dbus_list_prepend_link):
10674         * dbus/dbus-memory.c: (dbus_malloc), (dbus_malloc0),
10675         (dbus_realloc):
10676         Warning fixes.
10677
10678 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
10679
10680         * bus/Makefile.am:
10681         * bus/activation.c: (bus_activation_entry_free),
10682         (add_desktop_file_entry), (load_directory), (bus_activation_init):
10683         * bus/activation.h:
10684         * bus/main.c: (main):
10685         Add simple activation support, doesn't work yet though.
10686
10687 2003-02-15   Zack Rusin  <zack@kde.org>
10688
10689         * qt/dbus-qthread.cpp:  small casting fix
10690
10691 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
10692
10693         * dbus/dbus-errors.c: (dbus_set_error):
10694         * dbus/dbus-errors.h:
10695         Add a few errors and make dbus_set_error void.
10696
10697         * dbus/dbus-sysdeps.c:
10698         (_dbus_errno_to_string), (close_and_invalidate), (make_pipe),
10699         (write_err_and_exit), (read_ints), (do_exec), (_dbus_spawn_async):
10700         * dbus/dbus-sysdeps.h:
10701         Add _dbus_spawn_async.
10702
10703         * test/spawn-test.c: (main):
10704         Test for _dbus_spawn_async.
10705
10706 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
10707
10708         * dbus/dbus-internals.h:
10709         Fix build without tests.
10710
10711         * dbus/dbus-list.c: (alloc_link):
10712         Fix a segfault when a malloc fails.
10713
10714         * dbus/dbus-memory.c: (initialize_malloc_debug), (dbus_malloc),
10715         (dbus_malloc0), (dbus_realloc):
10716         Add support for malloc debugging.
10717
10718 2003-02-15  Alexander Larsson  <alexl@redhat.com>
10719
10720         * dbus/dbus-threads.c:
10721         * dbus/dbus-threads.h:
10722         Add condvars. Remove static mutext from API.
10723         Implement static mutexes by initializing them from threads_init.
10724
10725         * glib/dbus-gthread.c:
10726         * qt/dbus-qthread.cpp:
10727         Update with the thread api changes.
10728
10729
10730         * dbus/dbus-list.c:
10731         * dbus/dbus-list.h:
10732         Turn StaticMutex into normal mutex + init function.
10733         Export new functions _dbus_list_alloc_link, _dbus_list_free_link,
10734         _dbus_list_append_link, _dbus_list_prepend_link
10735
10736
10737         * dbus/dbus-sysdeps.c:
10738         * dbus/dbus-sysdeps.h:
10739         New type dbus_atomic_t, and new functions _dbus_atomic_inc,
10740         _dbus_atomic_dec. Only slow fallback implementation at the moment.
10741
10742         * dbus/dbus-protocol.h:
10743         Add DBUS_MESSAGE_LOCAL_DISCONNECT define
10744
10745         * dbus/dbus-message.c:
10746         Make ref/unref atomic.
10747         Fix some docs.
10748
10749         * dbus/dbus-connection-internal.h:
10750         * dbus/dbus-connection.c:
10751         * dbus/dbus-connection.h:
10752         Make threadsafe.
10753         Change _peek to _borrow,_return & _steal_borrowed.
10754         Change disconnect callback to event.
10755         Make dbus_connection_dispatch_messages reentrant.
10756
10757         * dbus/dbus-transport.c:
10758         Don't ref the connection on calls to the transport
10759         implementation.
10760
10761         * dbus/dbus-message-handler.c:
10762         Make threadsafe.
10763
10764         * glib/dbus-gmain.c:
10765         Don't use peek_message anymore
10766
10767         * test/Makefile.am:
10768         * test/debug-thread.c:
10769         * test/debug-thread.h:
10770         Simple thread implementation that asserts() on deadlocks in
10771         single-threaded code.
10772
10773         * test/bus-test.c:
10774         (main) Call debug_threads_init.
10775
10776         * test/watch.c:
10777         Use disconnect message instead of disconnect callback.
10778
10779         * bus/connection.c:
10780         * bus/connection.h:
10781         Don't call dbus_connection_set_disconnect_function. Instead export
10782         bus_connection_disconnect.
10783
10784         * bus/dispatch.c:
10785         Call bus_connection_disconnect when we get a disconnected message.
10786
10787 2003-02-15  Havoc Pennington  <hp@pobox.com>
10788
10789         * dbus/dbus-message.c (dbus_message_new): fool around with the
10790         docs
10791
10792 2003-02-14  Havoc Pennington  <hp@pobox.com>
10793
10794         * dbus/dbus-mempool.c: fail if the debug functions so indicate
10795
10796         * dbus/dbus-memory.c: fail if the debug functions indicate we
10797         should
10798
10799         * dbus/dbus-internals.c (_dbus_set_fail_alloc_counter)
10800         (_dbus_decrement_fail_alloc_counter): debug functions to
10801         simulate memory allocation failures
10802
10803 2003-02-14  Havoc Pennington  <hp@pobox.com>
10804
10805         * dbus/dbus-errors.h (struct DBusError): add a word of padding
10806         to DBusError
10807
10808 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10809
10810         * bus/driver.c: (bus_driver_handle_hello):
10811         * bus/driver.h:
10812         * bus/services.c: (bus_service_lookup):
10813         Reorder message sending so we get a more sane order.
10814
10815         * test/bus-test.c: (message_handler):
10816         Fix tyop.
10817
10818 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10819
10820         * bus/driver.c: (bus_driver_send_service_deleted),
10821         (bus_driver_send_service_created), (bus_driver_send_service_lost),
10822         (bus_driver_send_service_acquired), (bus_driver_handle_hello),
10823         (bus_driver_send_welcome_message),
10824         (bus_driver_handle_list_services),
10825         (bus_driver_handle_acquire_service),
10826         (bus_driver_handle_service_exists):
10827         * dbus/dbus-bus.c: (dbus_bus_register_client),
10828         (dbus_bus_acquire_service), (dbus_bus_service_exists):
10829         * dbus/dbus-errors.c: (dbus_result_to_string):
10830         * dbus/dbus-errors.h:
10831         * dbus/dbus-message.c: (dbus_message_append_args),
10832         (dbus_message_append_args_valist), (dbus_message_get_args),
10833         (dbus_message_get_args_valist), (dbus_message_get_args_iter),
10834         (dbus_message_iter_get_arg_type), (dbus_message_iter_get_string),
10835         (dbus_message_iter_get_byte_array),
10836         (dbus_message_iter_get_string_array), (message_iter_test),
10837         (check_message_handling), (_dbus_message_test):
10838         * dbus/dbus-message.h:
10839         * test/bus-test.c: (main):
10840         Change fields to arguments in messages, so that they won't be
10841         confused with header fields.
10842
10843         * glib/test-dbus-glib.c: (main):
10844         Remove append_fields from hello message.
10845
10846 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10847
10848         * dbus/dbus-errors.c:
10849         * dbus/dbus-message.c:
10850         * dbus/dbus-string.c:
10851         Documentation fixes.
10852
10853 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10854
10855         * glib/dbus-gmain.c: (timeout_handler), (add_timeout),
10856         (remove_timeout):
10857         Implement support for timeouts in dbus-glib.
10858
10859 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10860
10861         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
10862         * dbus/dbus-message.c: (process_test_subdir):
10863         * test/break-loader.c: (find_breaks_based_on):
10864         Plug some memory leaks.
10865
10866 2003-02-13  Richard Hult  <rhult@codefactory.se>
10867
10868         * bus/main.c: Fix build.
10869
10870         * dbus/dbus-errors.h:
10871         * dbus/dbus-errors.c: Fix copyright for Anders.
10872
10873 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10874
10875         * bus/Makefile.am:
10876         Add utils.[ch]
10877
10878         * bus/connection.c: (bus_connection_foreach):
10879         Fix a warning.
10880
10881         * bus/desktop-file.c: (grow_lines_in_section), (grow_sections),
10882         (unescape_string), (new_section), (parse_section_start),
10883         (parse_key_value), (report_error), (bus_desktop_file_load),
10884         (bus_desktop_file_get_string):
10885         * bus/desktop-file.h:
10886         Use DBusError for error reporting.
10887
10888         * bus/dispatch.c: (send_one_message),
10889         (bus_dispatch_message_handler):
10890         * bus/driver.c: (bus_driver_send_service_deleted),
10891         (bus_driver_send_service_created), (bus_driver_send_service_lost),
10892         (bus_driver_send_service_acquired), (bus_driver_handle_hello),
10893         (bus_driver_send_welcome_message),
10894         (bus_driver_handle_list_services),
10895         (bus_driver_handle_acquire_service),
10896         (bus_driver_handle_service_exists):
10897         * bus/loop.c: (bus_loop_run):
10898         * bus/main.c:
10899         Use BUS_HANDLE_OOM instead of _DBUS_HANDLE_OOM.
10900
10901         * bus/utils.c: (bus_wait_for_memory):
10902         * bus/utils.h:
10903         New files with general utility functions.
10904
10905         * dbus/dbus-internals.h:
10906         Remove _DBUS_HANDLE_OOM.
10907
10908 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10909
10910         * dbus/dbus-errors.c: (dbus_result_to_string), (dbus_error_init),
10911         (dbus_error_free), (dbus_set_error_const), (dbus_set_error):
10912         * dbus/dbus-errors.h:
10913         Add DBusError structure.
10914
10915 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10916
10917         * test/data/valid-messages/standard-acquire-service.message:
10918         * test/data/valid-messages/standard-hello.message:
10919         * test/data/valid-messages/standard-list-services.message:
10920         * test/data/valid-messages/standard-service-exists.message:
10921         Add some standard messages.
10922
10923 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10924
10925         * bus/driver.c: (bus_driver_send_welcome_message),
10926         (bus_driver_handle_list_services),
10927         (bus_driver_handle_acquire_service),
10928         (bus_driver_handle_service_exists), (bus_driver_handle_message):
10929         Update for API changes in libdbus.
10930
10931         * dbus/dbus-message.c: (dbus_message_new_reply):
10932         * dbus/dbus-message.h:
10933         Remove the name argument. The spec states that replies shouldn't
10934         have a name.
10935
10936 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
10937
10938         * bus/desktop-file.c: (parse_section_start), (parse_key_value),
10939         (report_error), (bus_desktop_file_load), (lookup_section),
10940         (lookup_line), (bus_desktop_file_get_raw),
10941         (bus_desktop_file_get_string):
10942         * bus/desktop-file.h:
10943         Some fixes, and new functions for getting a key value from a section.
10944
10945 2003-02-13  Havoc Pennington  <hp@pobox.com>
10946
10947         * test/data/auth/fail-after-n-attempts.auth-script: new test
10948
10949         * dbus/dbus-auth.c (send_rejected): shutdown_mech() when we
10950         reject the client.
10951
10952 2003-02-13  Havoc Pennington  <hp@pobox.com>
10953
10954         * dbus/dbus-auth.c (handle_server_data_external_mech): args to
10955         dbus_credentials_match were backward
10956
10957         * dbus/dbus-auth-script.c (_dbus_auth_script_run): support
10958         NO_CREDENTIALS and ROOT_CREDENTIALS
10959
10960         * dbus/dbus-auth.c (_dbus_auth_do_work): move get_state() routine
10961         into here. Never process more commands after we've reached an
10962         end state; store further data as unused bytes.
10963
10964         * test/data/auth/*: add more auth tests
10965
10966         * dbus/dbus-auth-script.c (_dbus_auth_script_run): support EXPECT
10967         command to match exact string and EXPECT_UNUSED to match unused
10968         bytes
10969
10970         * test/Makefile.am (dist-hook): fix to dist all the test stuff
10971
10972 2003-02-12  Havoc Pennington  <hp@pobox.com>
10973
10974         * dbus/dbus-string.c (_dbus_string_pop_line): fix to also strip
10975         \r off of popped lines
10976
10977         * dbus/dbus-auth.c (_dbus_auth_test): write code to run auth
10978         scripts
10979
10980         * dbus/dbus-auth-script.c (_dbus_auth_script_run): when doing a
10981         SEND, append \r\n
10982
10983 2003-02-12  Havoc Pennington  <hp@pobox.com>
10984
10985         * dbus/Makefile.am: remove break-loader from the build, since it
10986         moved.
10987
10988         * configure.in: add --enable-gcov to turn on coverage profiling
10989         flags and disable optimization
10990
10991 2003-02-10  Havoc Pennington  <hp@pobox.com>
10992
10993         * dbus/dbus-auth-script.c, dbus/dbus-auth-script.h: sync
10994         initial cut at test framework for DBusAuth from laptop.
10995         Doesn't quite work yet but it compiles and I need to get
10996         it off the 266mhz laptop. ;-)
10997
10998         * dbus/dbus-server-debug.c (_dbus_server_debug_accept_transport):
10999         fix a memleak in error case
11000
11001 2003-02-12  Anders Carlsson  <andersca@codefactory.se>
11002
11003         * bus/Makefile.am:
11004         * bus/desktop-file.c:
11005         * bus/desktop-file.h:
11006         Add a desktop file parser.
11007
11008 2003-02-11  Zack Rusin  <zack@kde.org>
11009
11010         * qt/message.[h|cpp]: sample implementation
11011         of the KDE wrapper for DBusMessage
11012
11013 2003-02-09  Zack Rusin  <zack@kde.org>
11014
11015         * test/bus-test.c: make_it_compile
11016         * doc/dbus-specification.sgml: minimal semantic fix
11017
11018 2003-02-06  Anders Carlsson  <andersca@codefactory.se>
11019
11020         Release 0.3
11021
11022         * NEWS: Update
11023
11024 2003-02-06  Anders Carlsson  <andersca@codefactory.se>
11025
11026         * dbus/Makefile.am:
11027         * dbus/dbus-break-loader.c:
11028         * test/Makefile.am:
11029         * test/break-loader.c:
11030         Move dbus-break-loader to test/ and rename it to break-loader.
11031
11032 2003-02-02  Havoc Pennington  <hp@pobox.com>
11033
11034         * dbus/dbus-keyring.c, dbus/dbus-keyring.h: template files
11035         for code to manage cookies in your home directory
11036
11037         * dbus/dbus-sysdeps.c (_dbus_generate_random_bytes): new function
11038
11039         * dbus/dbus-auth.c (get_state): impose a maximum number of tries
11040         to authenticate, then disconnect the client.
11041
11042 2003-02-03  Alexander Larsson  <alexl@redhat.com>
11043
11044         * dbus/dbus-message.c (dbus_message_append_fields):
11045         Correct docs.
11046
11047 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
11048
11049         * doc/dbus-specification.sgml:
11050         Update address format section.
11051
11052 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
11053
11054         * test/Makefile.am:
11055         * test/bus-test.c: (get_time), (add_timeout), (remove_timeout),
11056         (message_handler), (new_connection_callback), (loop_quit),
11057         (loop_run), (main):
11058         Add bus test.
11059
11060 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
11061
11062         * bus/driver.c: (bus_driver_handle_service_exists):
11063         Simplify the code a bit.
11064
11065         * dbus/dbus-bus.c: (dbus_bus_service_exists):
11066         Fix a silly.
11067
11068 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
11069
11070         * bus/Makefile.am:
11071         Add libdbus-daemon.la and link to it.
11072
11073 2003-02-01  James Willcox  <jwillcox@gnome.org>
11074
11075         * bus/driver.c: (bus_driver_handle_own_service):
11076         Actually include the service reply code in the message.
11077
11078 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
11079
11080         * bus/driver.c: (bus_driver_handle_service_exists):
11081         Don't unref the incoming message.
11082
11083 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
11084
11085         * dbus/dbus.h: Add dbus-address.h and dbus-bus.h
11086
11087 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
11088
11089         * dbus/dbus-server.c: (dbus_server_listen):
11090         * dbus/dbus-transport.c: (_dbus_transport_open):
11091         ifdef out the calls to the debug transport and server.
11092
11093 2003-02-02  Alexander Larsson  <alexl@redhat.com>
11094
11095         * dbus/dbus-watch.c (dbus_watch_get_flags):
11096         Add note in the docs that ERROR or HANGUP won't be returned
11097         and are assumed always on.
11098
11099         * glib/dbus-gmain.c (add_watch):
11100         Always add IO_ERR | IO_HUP
11101
11102         * dbus/dbus-message.h:
11103         Add semicolon after dbus_message_iter_get_string_array().
11104         Makes qt code build again
11105
11106 2003-02-01  Anders Carlsson  <andersca@codefactory.se>
11107
11108         * bus/driver.c: (create_unique_client_name),
11109         (bus_driver_handle_hello):
11110         Don't take a name, just use a numeric id to identify
11111         each client.
11112
11113         * dbus/Makefile.am:
11114         * dbus/dbus-bus.c: (dbus_bus_register_client),
11115         (dbus_bus_acquire_service), (dbus_bus_service_exists):
11116         * dbus/dbus-bus.h:
11117         Add new convenience functions for communicating with the bus.
11118
11119         * dbus/dbus-message.h:
11120
11121         * dbus/dbus-protocol.h:
11122         Fix a typo.
11123
11124 2003-02-01  Alexander Larsson  <alexl@redhat.com>
11125
11126         * dbus/dbus-message.c (dbus_message_append_fields):
11127         Add some more doc comments.
11128
11129 2003-02-01  Havoc Pennington  <hp@pobox.com>
11130
11131         * dbus/dbus-break-loader.c (randomly_modify_length): change
11132         a 4-byte value in the message as if it were a length
11133
11134         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): don't set
11135         execute bit on saved files
11136
11137 2003-02-01  Havoc Pennington  <hp@pobox.com>
11138
11139         * dbus/dbus-break-loader.c (main): new program to find messages
11140         that break the loader.
11141
11142         * dbus/dbus-sysdeps.c (_dbus_string_append_uint): new function
11143         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): new function
11144
11145         * dbus/dbus-string.c (_dbus_string_set_byte): new
11146
11147 2003-01-31  Havoc Pennington  <hp@pobox.com>
11148
11149         * dbus/dbus-message.c: refactor the test code to be more general,
11150         in preparation for writing a "randomly permute test cases to
11151         try to break the loader" program.
11152
11153 2003-01-31  Havoc Pennington  <hp@pobox.com>
11154
11155         * doc/dbus-specification.sgml: work on the specification
11156
11157         * dbus/dbus-message.c (_dbus_message_loader_return_buffer): check
11158         the protocol version of the message.
11159
11160         * dbus/dbus-protocol.h: drop special _REPLY names, the spec
11161         no longer specifies that.
11162         (DBUS_SERVICE_REPLY_SERVICE_EXISTS): fix flags (1/2/4/8 not
11163         1/2/3/4)
11164
11165         * dbus/dbus-marshal.c (_dbus_marshal_get_arg_end_pos): add missing
11166         "break" for DBUS_TYPE_NIL, remove @todo
11167
11168 2003-01-31  Havoc Pennington  <hp@pobox.com>
11169
11170         * dbus/dbus-message.c (dbus_message_set_is_error_reply): rename
11171         just set_is_error/get_is_error as this is a commonly-used
11172         function, and write docs.
11173
11174 2003-01-31  Anders Carlsson  <andersca@codefactory.se>
11175
11176         * dbus/dbus-address.c: (dbus_address_entry_free):
11177         Free key and value lists.
11178
11179         * dbus/dbus-internals.c: (_dbus_type_to_string):
11180         Add the types we didn't have.
11181
11182         * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
11183         (_dbus_marshal_validate_arg):
11184         Add NIL types.
11185
11186         * dbus/dbus-message.c: (dbus_message_set_sender):
11187         Remove todo about being able to set sender to NULL.
11188
11189         (dbus_message_set_is_error_reply),
11190         (dbus_message_get_is_error_reply):
11191         * dbus/dbus-message.h:
11192         New functions.
11193
11194         * dbus/dbus-protocol.h:
11195         Add error reply flag.
11196
11197         * test/data/valid-messages/opposite-endian.message:
11198         Add NIL type to test.
11199
11200 2003-01-31  Havoc Pennington  <hp@pobox.com>
11201
11202         * doc/dbus-specification.sgml: fully specify the header.  Add
11203         flags and major protocol version, and change header/body len to
11204         unsigned.
11205
11206         * dbus/dbus-message-builder.c (append_saved_length): append length
11207         as uint32
11208
11209         * dbus/dbus-message.c (dbus_message_create_header): change header
11210         length and body length to unsigned. Add the new fields from the
11211         spec
11212         (_dbus_message_loader_return_buffer): unsigned header/body len
11213
11214 2003-01-30  Havoc Pennington  <hp@pobox.com>
11215
11216         * dbus/dbus-auth.c: rework to use only REJECTED, no
11217         MECHANISMS
11218
11219         * doc/dbus-sasl-profile.txt: drop MECHANISMS and just
11220         use REJECTED, suggested by Mark McLoughlin
11221
11222 2003-01-30  Havoc Pennington  <hp@pobox.com>
11223
11224         * dbus/dbus-server.c (dbus_server_listen): @todo about how we need
11225         a better way to report errors here. e.g.  "unix address lacks
11226         path" or something. also "no such file" when the path doesn't
11227         exist, etc.
11228
11229         * dbus/dbus-address.c (dbus_address_entries_free): add @todo about
11230         leaking list nodes
11231         (dbus_parse_address): add @todo about documenting address format,
11232         and allowing , and ; to be escaped
11233
11234 2003-01-30  Anders Carlsson  <andersca@codefactory.se>
11235
11236         * dbus/Makefile.am:
11237         Add dbus-address.[ch]
11238
11239         * dbus/dbus-address.c: (dbus_address_entry_free),
11240         (dbus_address_entries_free), (create_entry),
11241         (dbus_address_entry_get_method), (dbus_address_entry_get_value),
11242         (dbus_parse_address), (_dbus_address_test):
11243         * dbus/dbus-address.h:
11244         New files for dealing with address parsing.
11245
11246         * dbus/dbus-connection.c:
11247         Document timeout functions.
11248
11249         * dbus/dbus-message.c:
11250         Document dbus_message_new_from_message.
11251
11252         * dbus/dbus-server-debug.c:
11253         Document.
11254
11255         * dbus/dbus-server.c: (dbus_server_listen):
11256         Parse address and use correct server implementation.
11257
11258         * dbus/dbus-string.c: (_dbus_string_find_to), (_dbus_string_test):
11259         * dbus/dbus-string.h:
11260         New function with test.
11261
11262         * dbus/dbus-test.c: (dbus_internal_symbol_do_not_use_run_tests):
11263         * dbus/dbus-test.h:
11264         Add address tests.
11265
11266         * dbus/dbus-transport-debug.c:
11267         Document.
11268
11269         * dbus/dbus-transport.c: (_dbus_transport_open):
11270         Parse address and use correct transport implementation.
11271
11272 2003-01-30  Havoc Pennington  <hp@pobox.com>
11273
11274         * dbus/dbus-message.c: use message->byte_order instead of
11275         DBUS_COMPILER_BYTE_ORDER throughout.
11276         (dbus_message_create_header): pad header to align the
11277         start of the body of the message to 8-byte boundary
11278
11279         * dbus/dbus-marshal.h: make all the demarshalers take const
11280         DBusString arguments.
11281
11282         * dbus/dbus-message.c (_dbus_message_loader_return_buffer):
11283         validate message args here, so we don't have to do slow validation
11284         later, and so we catch bad messages as they are incoming. Also add
11285         better checks on header_len and body_len. Also fill in
11286         message->byte_order
11287
11288         * dbus/dbus-string.c (_dbus_string_validate_utf8): new (not
11289         implemented properly)
11290         (_dbus_string_validate_nul): new function to check all-nul
11291
11292         * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): rename
11293         get_arg_end_pos and remove all validation
11294         (_dbus_marshal_validate_arg): actually do validation here.
11295
11296 2003-01-29  Havoc Pennington  <hp@pobox.com>
11297
11298         * dbus/dbus-message.c (check_message_handling): fix assertion
11299         failure on set_client_serial
11300
11301 2003-01-28  Havoc Pennington  <hp@pobox.com>
11302
11303         * dbus/dbus-server-debug.c: Add doc section comments
11304
11305         * dbus/dbus-transport-debug.c: add doc section comments
11306
11307 2003-01-28  Havoc Pennington  <hp@redhat.com>
11308
11309         * dbus/dbus-string.c (_dbus_string_base64_decode): append bytes in
11310         the reverse order from how I had it
11311         (_dbus_string_base64_encode): reverse encoding order. I was
11312         basically byteswapping everything during encoding.
11313
11314 2003-01-28  Anders Carlsson  <andersca@codefactory.se>
11315
11316         * dbus/dbus-connection-internal.h:
11317         * dbus/dbus-connection.c: (_dbus_connection_add_timeout),
11318         (_dbus_connection_remove_timeout):
11319         Add functions for adding and removing timeouts.
11320
11321         * dbus/dbus-message.c: (dbus_message_new_from_message):
11322         Add new function that takes a message and creates an exact
11323         copy of it, but with the refcount set to 1.
11324         (check_message_handling):
11325         Fix build error.
11326
11327         * dbus/dbus-server-protected.h:
11328         * dbus/dbus-server.c: (_dbus_server_init_base),
11329         (_dbus_server_finalize_base), (_dbus_server_add_timeout),
11330         (dbus_server_set_timeout_functions):
11331         (_dbus_server_remove_timeout):
11332         New functions so that a server can add and remove timeouts.
11333
11334         (dbus_server_listen):
11335         Add commented out call to dbus_server_debug_new.
11336
11337         * dbus/dbus-timeout.c: (_dbus_timeout_new):
11338         Actually set the handler, doh.
11339
11340         * dbus/dbus-transport.c: (_dbus_transport_open):
11341         Add commented out call to dbus_transport_debug_client_new.
11342
11343         * dbus/Makefile.am:
11344         Add dbus-transport-debug.[ch] and dbus-server-debug.[ch]
11345
11346 2003-01-28  Havoc Pennington  <hp@pobox.com>
11347
11348         * dbus/dbus-message.c (check_message_handling): function to check
11349         on the loaded message, iterates over it etc.
11350
11351 2003-01-28  Havoc Pennington  <hp@pobox.com>
11352
11353         * test/Makefile.am (dist-hook): fix make distdir
11354
11355         * dbus/Makefile.am (TESTS_ENVIRONMENT): fix make check
11356
11357 2003-01-27  Havoc Pennington  <hp@pobox.com>
11358
11359         * dbus/dbus-mempool.c (time_for_size): replace printf with
11360         _dbus_verbose
11361
11362         * dbus/dbus-message-builder.c (_dbus_message_data_load): allow
11363         empty lines; fix the SAVE_LENGTH stuff to be
11364         START_LENGTH/END_LENGTH so it actually works; couple other
11365         bugfixes
11366
11367         * test/Makefile.am (dist-hook): add dist-hook for .message files
11368
11369         * dbus/dbus-string.c (DBUS_STRING_COPY_PREAMBLE): source of a copy
11370         can be constant or locked.
11371         (_dbus_string_free): allow freeing a const string as
11372         documented/intended
11373
11374         * dbus/dbus-sysdeps.c (_dbus_concat_dir_and_file): utility
11375
11376         * dbus/dbus-test-main.c (main): take an argument which is the
11377         directory containing test data
11378
11379         * dbus/dbus-message.c (_dbus_message_test): pass a test_data_dir
11380         argument to this and load all the messages in test/data/
11381         checking that they can be loaded or not loaded as appropriate.
11382
11383 2003-01-27  Anders Carlsson  <andersca@codefactory.se>
11384
11385         * bus/dispatch.c: (bus_dispatch_message_handler):
11386         Dispatch messages sent to services.
11387
11388         * bus/driver.c: (bus_driver_send_service_deleted),
11389         (bus_driver_send_service_created), (bus_driver_send_service_lost),
11390         (bus_driver_send_service_acquired):
11391         Add helper functions for sending service related messages.
11392
11393         (bus_driver_send_welcome_message):
11394         Send HELLO_REPLY instead of WELCOME.
11395
11396         (bus_driver_handle_list_services):
11397         Send LIST_SERVICES_REPLY instead of SERVICES.
11398
11399         (bus_driver_handle_own_service),
11400         (bus_driver_handle_service_exists):
11401         New message handlers.
11402
11403         (bus_driver_handle_message):
11404         Invoke new message handlers.
11405
11406         (bus_driver_remove_connection):
11407         Don't remove any services here since that's done automatically
11408         by bus_service_remove_owner now.
11409
11410         * bus/driver.h:
11411         New function signatures.
11412
11413         * bus/services.c: (bus_service_add_owner):
11414         Send ServiceAcquired message if we're the only primary owner.
11415
11416         (bus_service_remove_owner):
11417         Send ServiceAcquired/ServiceLost messages.
11418
11419         (bus_service_set_prohibit_replacement),
11420         (bus_service_get_prohibit_replacement):
11421         Functions for setting prohibit replacement.
11422
11423         (bus_service_has_owner):
11424         New function that checks if a connection is in the owner queue of
11425         a certain service.
11426
11427         * bus/services.h:
11428         Add new function signatures.
11429
11430         * dbus/dbus-list.c: (_dbus_list_test):
11431         Add tests for _dbus_list_remove_last and traversing the list backwards.
11432
11433         * dbus/dbus-list.h:
11434         Fix a typo in _dbus_list_get_prev_link, if we're at the first element we can't
11435         go any further, so return NULL then.
11436
11437         * dbus/dbus-protocol.h:
11438         Add new messages, service flags and service replies.
11439
11440 2003-01-26  Havoc Pennington  <hp@pobox.com>
11441
11442         * dbus/dbus-message-builder.c: implement, completely untested.
11443
11444         * test/data/*: add data to be used in testing.
11445         ".message" files are our simple loadable text format.
11446         ".message-raw" will be binary dumps of messages.
11447
11448         * dbus/dbus-string.c (_dbus_string_starts_with_c_str): new
11449
11450 2003-01-26  Havoc Pennington  <hp@pobox.com>
11451
11452         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): new function
11453
11454         * dbus/dbus-errors.c (dbus_result_to_string): add
11455         file errors
11456
11457         * dbus/dbus-message-builder.c: new file, will contain code to load
11458         up messages from files. Not implemented yet.
11459
11460 2003-01-26  Havoc Pennington  <hp@pobox.com>
11461
11462         * dbus/dbus-message.c (dbus_message_set_sender): support deleting
11463         the sender by setting to NULL
11464
11465 2003-01-26  Havoc Pennington  <hp@pobox.com>
11466
11467         The unit tests pass, but otherwise untested.  If it breaks, the
11468         tests should have been better. ;-)
11469
11470         * bus/driver.c (bus_driver_handle_hello): return if we disconnect
11471         the connection.
11472
11473         * dbus/dbus-message.c: redo everything so we maintain
11474         message->header as the only copy of the various fields.
11475         This avoids the possibility of out-of-memory in some cases,
11476         for example dbus_message_lock() can't run out of memory anymore,
11477         and avoids extra copying. Figured I may as well go ahead and do
11478         this since it was busted for dbus_message_lock to not return
11479         failure on OOM, and dbus_message_write_header was totally
11480         unchecked for OOM. Also fixed some random other bugs.
11481
11482         * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): verify
11483         that strings are nul-terminated. Also, end_pos can be equal
11484         to string length just not greater than, I think.
11485         (_dbus_marshal_set_int32): new function
11486         (_dbus_marshal_set_uint32): new function
11487         (_dbus_marshal_set_string): new function
11488
11489         * dbus/dbus-connection.c (_dbus_connection_new_for_transport): fix
11490         a warning, init timeout_list to NULL
11491         (dbus_connection_send_message): don't use uninitialized variable
11492         "serial"
11493
11494         * dbus/dbus-string.c (_dbus_string_replace_len): new function
11495
11496 2003-01-26  Anders Carlsson  <andersca@codefactory.se>
11497
11498         * bus/driver.c: (bus_driver_handle_hello),
11499         (bus_driver_send_welcome_message):
11500         Plug leaks
11501
11502 2003-01-26  Anders Carlsson  <andersca@codefactory.se>
11503
11504         * dbus/dbus-auth.c: (process_auth), (_dbus_auth_unref):
11505         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
11506         (dbus_connection_unref):
11507         * dbus/dbus-marshal.c: (_dbus_marshal_test):
11508         * dbus/dbus-message.c: (dbus_message_unref),
11509         Plug memory leaks.
11510
11511         (dbus_message_get_fields):
11512         Remove debugging printout.
11513
11514         (_dbus_message_loader_return_buffer):
11515         Don't store the header string.
11516
11517         (_dbus_message_test):
11518         Plug leaks.
11519
11520 2003-01-26  Richard Hult  <rhult@codefactory.se>
11521
11522         * glib/dbus-gmain.c (dbus_connection_dispatch): Traverse a copy of
11523         the file descriptor list, since it can change under us.
11524
11525 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
11526
11527         * glib/dbus-gmain.c: (dbus_connection_prepare),
11528         (dbus_connection_check), (dbus_connection_dispatch), (add_watch),
11529         (remove_watch), (dbus_connection_hookup_with_g_main):
11530         Rewrite the glib handling to use its own GSource instead of a
11531         GIOChannel so we can catch messages put in the queue while waiting
11532         for a reply.
11533
11534 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
11535
11536         * bus/Makefile.am:
11537         * bus/connection.c: (connection_disconnect_handler),
11538         (connection_watch_callback), (bus_connection_setup):
11539         * bus/dispatch.c: (send_one_message),
11540         (bus_dispatch_broadcast_message), (bus_dispatch_message_handler),
11541         (bus_dispatch_add_connection), (bus_dispatch_remove_connection):
11542         * bus/dispatch.h:
11543         * bus/driver.c: (bus_driver_send_service_deleted),
11544         (bus_driver_send_service_created), (bus_driver_handle_hello),
11545         (bus_driver_send_welcome_message),
11546         (bus_driver_handle_list_services), (bus_driver_remove_connection),
11547         (bus_driver_handle_message):
11548         * bus/driver.h:
11549         Refactor code, put the message dispatching in its own file. Use
11550         _DBUS_HANDLE_OOM. Also send ServiceDeleted messages when a client
11551         is disconnected.
11552
11553 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
11554
11555         * dbus/dbus-internals.h:
11556         Add _DBUS_HANDLE_OOM macro, it doesn't do anything currently.
11557
11558         * dbus/dbus-message.c: (dbus_message_get_sender):
11559         * dbus/dbus-message.h:
11560         Implement dbus_message_get_sender.
11561
11562         * dbus/dbus-protocol.h:
11563         Add message and service defines.
11564
11565 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
11566
11567         * dbus/dbus-connection.c: (dbus_connection_send_message):
11568         * dbus/dbus-message-internal.h:
11569         * dbus/dbus-message.c: (_dbus_message_get_client_serial),
11570         (dbus_message_write_header):
11571         Remove _dbus_messag_unlock and don't set the client serial on a
11572         message if one already exists.
11573
11574 2003-01-24  Havoc Pennington  <hp@pobox.com>
11575
11576         * dbus/dbus-list.c (alloc_link): put a thread lock on the global
11577         list_pool
11578
11579         * bus/driver.c (bus_driver_handle_list_services): fix a leak
11580         on OOM
11581
11582 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
11583
11584         * dbus/dbus-list.c: (alloc_link), (free_link):
11585         Use a memory pool for the links.
11586
11587 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
11588
11589         * bus/connection.c: (bus_connection_foreach):
11590         * bus/connection.h:
11591         Add new bus_connection_foreach function.
11592
11593         * bus/driver.c: (send_one_message), (bus_driver_broadcast_message):
11594         Add function that broadcasts a message to all clients.
11595
11596         (bus_driver_send_service_created), (bus_driver_handle_hello),
11597         (bus_driver_send_welcome_message),
11598         (bus_driver_handle_list_services), (bus_driver_message_handler):
11599         Implement functions that take care of listing services, and notifying
11600         clients when new services are created.
11601
11602         * bus/services.c: (bus_services_list):
11603         * bus/services.h:
11604         Add new function that returns an array of strings with the currently
11605         registered services.
11606
11607         * glib/dbus-glib.h:
11608         * glib/dbus-gmain.c:
11609         Update copyright year.
11610
11611 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
11612
11613         * dbus/dbus-connection.c: (dbus_connection_send_message):
11614         Unlock the message in case it was sent earlier.
11615
11616         (dbus_connection_send_message_with_reply_and_block):
11617         Remove the reply message from the list.
11618
11619         * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
11620         Set array_len and new_pos correctly.
11621
11622         (_dbus_marshal_test):
11623         Remove debug output.
11624
11625         * dbus/dbus-message-internal.h:
11626         * dbus/dbus-message.c: (_dbus_message_get_reply_serial):
11627         New function that returns the reply serial.
11628
11629         (_dbus_message_unlock):
11630         New function that unlocks a message and resets its header.
11631
11632         (dbus_message_append_string_array),
11633         (dbus_message_get_fields_valist),
11634         (dbus_message_iter_get_field_type),
11635         (dbus_message_iter_get_string_array),
11636         (dbus_message_get_fields),
11637         (dbus_message_append_fields_valist):
11638         Handle string arrays.
11639
11640         (dbus_message_set_sender):
11641         Make this function public since the bus daemon needs it.
11642
11643         (decode_header_data):
11644         Set the reply serial to -1 initially.
11645
11646         * dbus/dbus-message.h:
11647         Add dbus_message_set_sender.
11648
11649 2003-01-24  Havoc Pennington  <hp@pobox.com>
11650
11651         * doc/dbus-specification.sgml: add some stuff
11652
11653 2003-01-22  Havoc Pennington  <hp@pobox.com>
11654
11655         * doc/dbus-specification.sgml: Start to document the protocol.
11656
11657 2003-01-22  Havoc Pennington  <hp@pobox.com>
11658
11659         * dbus/dbus-connection.c
11660         (dbus_connection_send_message_with_reply_and_block): add some @todo
11661
11662         * bus/driver.c (bus_driver_add_connection): add a FIXME about memleak
11663
11664 2003-01-21  Havoc Pennington  <hp@pobox.com>
11665
11666         (patch untested because can't compile)
11667
11668         * bus/driver.c (create_unique_client_name): make this function
11669         never recycle client names. Also, caller should initialize
11670         the DBusString.
11671
11672         * dbus/dbus-sysdeps.c (_dbus_get_current_time): new function
11673
11674 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
11675
11676         * dbus/dbus-marshal.c: (_dbus_marshal_double),
11677         (_dbus_marshal_int32), (_dbus_marshal_uint32),
11678         (_dbus_marshal_int32_array), (_dbus_marshal_uint32_array),
11679         (_dbus_marshal_double_array), (_dbus_marshal_string_array),
11680         (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
11681         (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
11682         (_dbus_marshal_get_field_end_pos), (_dbus_marshal_test):
11683         * dbus/dbus-marshal.h:
11684         * dbus/dbus-protocol.h:
11685         Add support for marshalling and demarshalling integer, double
11686         and string arrays.
11687
11688 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
11689
11690         * bus/Makefile.am:
11691         Add driver.[ch]
11692
11693         * bus/connection.c: (connection_disconnect_handler):
11694         Remove the connection from the bus driver's list.
11695
11696         (connection_watch_callback): Dispatch messages.
11697
11698         (free_connection_data): Free connection name.
11699
11700         (bus_connection_setup): Add connection to the bus driver's list.
11701         (bus_connection_remove_owned_service):
11702         (bus_connection_set_name), (bus_connection_get_name):
11703         Add functions for setting and getting the connection's name.
11704
11705         * bus/connection.h:
11706         Add function headers.
11707
11708         * bus/driver.c: (create_unique_client_name),
11709         (bus_driver_handle_hello_message),
11710         (bus_driver_send_welcome_message), (bus_driver_message_handler),
11711         (bus_driver_add_connection), (bus_driver_remove_connection):
11712         * bus/driver.h:
11713         * bus/main.c:
11714         * bus/services.c: (bus_service_free):
11715         * bus/services.h:
11716         New file that handles communication and registreation with the bus
11717         itself.
11718
11719 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
11720
11721         * dbus/dbus-connection.c: (dbus_connection_send_message):
11722         Add a new client_serial parameter.
11723
11724         (dbus_connection_send_message_with_reply):
11725         Remove a @todo since we've implemented the blocking function.
11726
11727         (dbus_connection_send_message_with_reply_and_block):
11728         New function that sends a message and waits for a reply and
11729         then returns the reply.
11730
11731         * dbus/dbus-connection.h:
11732         Add new functions.
11733
11734         * dbus/dbus-errors.c: (dbus_result_to_string):
11735         * dbus/dbus-errors.h:
11736         Add new DBUS_RESULT.
11737
11738         * dbus/dbus-message-internal.h:
11739         * dbus/dbus-message.c: (_dbus_message_get_reply_serial),
11740         (_dbus_message_set_sender), (dbus_message_write_header),
11741         (dbus_message_new_reply), (decode_header_data),
11742         (_dbus_message_loader_return_buffer), (_dbus_message_test):
11743         * dbus/dbus-message.h:
11744         Add new functions that set the reply serial and sender.
11745         Also marshal and demarshal them correctly and add test.
11746
11747         * dbus/dbus-protocol.h:
11748         Add new DBUS_MESSAGE_TYPE_SENDER.
11749
11750         * glib/dbus-glib.h:
11751         * glib/dbus-gmain.c: (watch_callback), (free_callback_data),
11752         (add_watch), (remove_watch), (add_timeout), (remove_timeout),
11753         (dbus_connection_hookup_with_g_main):
11754         * glib/test-dbus-glib.c: (main):
11755         Rewrite to use GIOChannel and remove the GSource crack.
11756
11757         * test/echo-client.c: (main):
11758         * test/watch.c: (check_messages):
11759         Update for changed APIs
11760
11761 2003-01-19  Anders Carlsson  <andersca@codefactory.se>
11762
11763         * dbus/Makefile.am: Add dbus-timeout.[cħ]
11764
11765         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport):
11766         Create a DBusTimeoutList.
11767         (dbus_connection_set_timeout_functions): Add new function to
11768         set timeout callbacks
11769
11770         * dbus/dbus-connection.h: Add public DBusTimeout API.
11771
11772         * dbus/dbus-message.c: (dbus_message_get_service):
11773         * dbus/dbus-message.h:  New function.
11774
11775         * dbus/dbus-server.c: Fix small doc typo.
11776
11777         * dbus/dbus-timeout.[ch]: New files for mainloop timeouts.
11778
11779 2003-01-19  Anders Carlsson  <andersca@codefactory.se>
11780
11781         * dbus/dbus-string.c (_dbus_string_move_len): Don't delete all
11782         of the string, just as long as specified.
11783
11784 2003-01-19  Havoc Pennington  <hp@pobox.com>
11785
11786         * dbus/dbus-connection.c (dbus_connection_get_is_authenticated):
11787         new function
11788
11789         * dbus/dbus-server.c (dbus_server_set_max_connections)
11790         (dbus_server_get_max_connections, dbus_server_get_n_connections):
11791         keep track of current number of connections, and add API for
11792         setting a max (but haven't implemented enforcing the max yet)
11793
11794 2003-01-18  Havoc Pennington  <hp@pobox.com>
11795
11796         * dbus/dbus-transport-unix.c (unix_do_iteration): only do the
11797         reading/writing if read_watch != NULL or write_watch != NULL.
11798
11799         * dbus/dbus-message.c (_dbus_message_loader_return_buffer): fix
11800         the message loader code to actually load message->header and
11801         message->body into the newly-created message.
11802
11803         * dbus/dbus-transport-unix.c (check_write_watch): fix a mem leak
11804         in OOM case
11805
11806         * dbus/dbus-connection.c (dbus_connection_set_max_message_size)
11807         (dbus_connection_get_max_message_size)
11808         (dbus_connection_set_max_live_messages_size)
11809         (dbus_connection_get_max_live_messages_size): implement some
11810         resource limitation functions
11811
11812         * dbus/dbus-resources.c: new file implementing some of the
11813         resource limits stuff
11814
11815         * dbus/dbus-message.c (dbus_message_iter_get_byte_array): add
11816         missing docs, add @todo to handle OOM etc.
11817
11818         * dbus/dbus-marshal.c (_dbus_demarshal_byte_array): add missing
11819         docs
11820
11821 2003-01-18  Havoc Pennington  <hp@pobox.com>
11822
11823         * dbus/dbus-connection.c (dbus_connection_unref): disconnect the
11824         connection if it hasn't been already.
11825
11826         * dbus/dbus-connection.h: kill off the idea of an ErrorFunction,
11827         replace with DisconnectFunction.
11828
11829 2003-01-18  Havoc Pennington  <hp@pobox.com>
11830
11831         Building --disable-verbose-mode --disable-asserts --disable-tests
11832         cuts the library from 112K to 45K or so
11833
11834         * configure.in: check for varargs macro support,
11835         add --enable-verbose-mode, --enable-asserts.
11836
11837         * dbus/dbus-internals.h (_dbus_assert): support
11838         DBUS_DISABLE_ASSERT
11839         (_dbus_verbose): support DBUS_ENABLE_VERBOSE_MODE
11840
11841 2003-01-18  Havoc Pennington  <hp@pobox.com>
11842
11843         * dbus/dbus-test.c: include config.h so that tests actually run
11844
11845         * dbus/dbus-string.c: add assertions that stuff is 8-byte aligned,
11846         so the failure mode when that assumption fails will be plenty
11847         obvious.
11848
11849 2003-01-18  Havoc Pennington  <hp@pobox.com>
11850
11851         * configure.in: default --enable-tests to $USE_MAINTAINER_MODE
11852
11853         * dbus/Makefile.am: fix it up so dubs-test-main.c is included in
11854         the distribution
11855
11856         * test/Makefile.am: don't use special variable "TESTS" for echo-*
11857         since we don't want to use those in make check
11858
11859 2003-01-15  Havoc Pennington  <hp@redhat.com>
11860
11861         Release 0.2
11862
11863         * NEWS: update
11864
11865 2003-01-15  Havoc Pennington  <hp@redhat.com>
11866
11867         * test/Makefile.am: fix so that test source code ends up in the
11868         distribution on make distcheck
11869
11870 2003-01-15  Havoc Pennington  <hp@redhat.com>
11871
11872         Release 0.1.
11873
11874         * NEWS: update
11875
11876 2003-01-15  Havoc Pennington  <hp@redhat.com>
11877
11878         * dbus/dbus-test.c (dbus_internal_symbol_do_not_use_run_tests):
11879         fix build when --disable-tests
11880
11881         * Makefile.am (EXTRA_DIST): put HACKING in here
11882
11883         * HACKING: document procedure for making a tarball release.
11884
11885 2003-01-14  Anders Carlsson  <andersca@codefactory.se>
11886
11887         * bus/connection.c: (connection_error_handler),
11888         (bus_connection_setup):
11889         * bus/main.c: (main):
11890         Make sure that the DBusConnectionData struct is NULLed
11891         out to prevent a segfault.
11892
11893         * dbus/dbus-errors.c: (dbus_result_to_string):
11894         * dbus/dbus-errors.h:
11895         * dbus/dbus-message.c: (dbus_message_get_fields),
11896         (dbus_message_get_fields_valist), (_dbus_message_test):
11897         * dbus/dbus-message.h:
11898         Make dbus_message_get_fields return a result code so we can
11899         track invalid fields as well as oom.
11900
11901 2003-01-11  Havoc Pennington  <hp@pobox.com>
11902
11903         * configure.in: change --enable-test/--enable-ansi action-if-given
11904         to enable_foo=$enableval instead of enable_foo=yes
11905
11906 2003-01-08  Havoc Pennington  <hp@pobox.com>
11907
11908         * dbus/dbus-string.c (_dbus_string_align_length): new function
11909
11910         * dbus/dbus-test-main.c: move main() for test app here
11911         * dbus/dbus-test.c
11912         (dbus_internal_symbol_do_not_use_run_tests): we have to export a
11913         symbol to run tests, because dbus-test isn't in the main
11914         library
11915
11916         Code review nitpicks.
11917
11918         * dbus/dbus-message.c (dbus_message_write_header): add newlines
11919         for people with narrow emacs ;-). Assert client_serial was filled
11920         in. Assert message->name != NULL.
11921         (dbus_message_append_fields): have "first_field_type" arg separate
11922         from va list, needed for C++ binding that also uses varargs IIRC
11923         and helps with type safety
11924         (dbus_message_new): add @todo about using DBusString to store
11925         service/name internally
11926         (dbus_message_new): don't leak ->service and ->name on OOM later
11927         in the function
11928         (dbus_message_unref): free the service name
11929         (dbus_message_get_fields): same change to varargs
11930         i.e. first_field_type
11931         (_dbus_message_loader_return_buffer): assert that the message data
11932         is aligned (if not it's a bug in our code). Put in verbose griping
11933         about why we set corrupted = TRUE.
11934         (decode_header_data): add FIXME that char* is evil.  Was going to
11935         add FIXME about evil locale-specific string.h strncmp, but just
11936         switched to wacky string-as-uint32 optimization. Move check for
11937         "no room for field name" above get_const_data_len() to avoid
11938         assertion failure in get_const_data_len if we have trailing 2
11939         bytes or the like. Check for service and name fields being
11940         provided twice. Don't leak service/name on error. Require field
11941         names to be aligned to 4 bytes.
11942
11943         * dbus/dbus-marshal.c: move byte swap stuff to header
11944         (_dbus_pack_int32): uscore-prefix
11945         (_dbus_unpack_int32): uscore-prefix
11946         (_dbus_unpack_uint32): export
11947         (_dbus_demarshal_string): add @todo complaining about use of
11948         memcpy()
11949         (_dbus_marshal_get_field_end_pos): add @todo about bad error
11950         handling allowing corrupt data to go unchecked
11951
11952 2003-01-08  Havoc Pennington  <hp@redhat.com>
11953
11954         * dbus/dbus-transport-unix.c (unix_do_iteration): add read/write
11955         to the select() as needed for authentication. (should be using
11956         _dbus_poll() not select, but for another day)
11957
11958         * dbus/dbus.h: include dbus/dbus-protocol.h
11959
11960 2003-01-08  Anders Carlsson  <andersca@codefactory.se>
11961
11962         * dbus/Makefile.am (dbusinclude_HEADERS): Install
11963         dbus-connection.h
11964
11965 2003-01-08  Anders Carlsson  <andersca@codefactory.se>
11966
11967         * dbus/dbus-internals.c: (_dbus_type_to_string):
11968         New function that returns a string describing a type.
11969
11970         * dbus/dbus-marshal.c: (_dbus_demarshal_byte_array):
11971         * dbus/dbus-marshal.h:
11972         * dbus/dbus-message.c: (dbus_message_get_fields_valist),
11973         (dbus_message_iter_get_field_type), (dbus_message_iter_get_double),
11974         (dbus_message_iter_get_byte_array):
11975         * dbus/dbus-message.h:
11976         Add new convenience functions for appending and getting message fields.
11977         Also add demarshalling routines for byte arrays.
11978
11979 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
11980
11981         * dbus/dbus-connection-internal.h:
11982         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
11983         (_dbus_connection_get_next_client_serial),
11984         (dbus_connection_send_message):
11985         * dbus/dbus-internals.h:
11986         * dbus/dbus-marshal.c: (unpack_uint32), (dbus_unpack_int32),
11987         (dbus_pack_int32), (_dbus_marshal_double), (_dbus_marshal_int32),
11988         (_dbus_marshal_uint32), (_dbus_demarshal_double),
11989         (_dbus_demarshal_int32), (_dbus_demarshal_uint32),
11990         (_dbus_demarshal_string), (_dbus_marshal_get_field_end_pos),
11991         (_dbus_verbose_bytes), (_dbus_marshal_test):
11992         * dbus/dbus-marshal.h:
11993         * dbus/dbus-message-internal.h:
11994         * dbus/dbus-message.c: (_dbus_message_set_client_serial),
11995         (dbus_message_write_header), (_dbus_message_lock),
11996         (dbus_message_new), (dbus_message_ref), (dbus_message_unref),
11997         (dbus_message_get_name), (dbus_message_append_int32),
11998         (dbus_message_append_uint32), (dbus_message_append_double),
11999         (dbus_message_append_string), (dbus_message_append_byte_array),
12000         (dbus_message_get_fields_iter), (dbus_message_iter_ref),
12001         (dbus_message_iter_unref), (dbus_message_iter_has_next),
12002         (dbus_message_iter_next), (dbus_message_iter_get_field_type),
12003         (dbus_message_iter_get_string), (dbus_message_iter_get_int32),
12004         (dbus_message_iter_get_uint32), (dbus_message_iter_get_double),
12005         (decode_header_data), (_dbus_message_loader_return_buffer),
12006         (message_iter_test), (_dbus_message_test):
12007         * dbus/dbus-message.h:
12008         * dbus/dbus-protocol.h:
12009         * dbus/dbus-test.c: (main):
12010         * dbus/dbus-test.h:
12011         * glib/test-dbus-glib.c: (message_handler), (main):
12012         * test/echo-client.c: (main):
12013         * test/watch.c: (check_messages):
12014         Make messages sendable and receivable for real.
12015
12016 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
12017
12018         * dbus/dbus-marshal.c: (_dbus_marshal_double),
12019         (_dbus_marshal_string), (_dbus_marshal_byte_array):
12020         * dbus/dbus-message.c: (dbus_message_append_int32),
12021         (dbus_message_append_uint32), (dbus_message_append_double),
12022         (dbus_message_append_string), (dbus_message_append_byte_array):
12023         Handle OOM restoration.
12024
12025 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
12026
12027         * dbus/dbus-marshal.c: (_dbus_marshal_string),
12028         (_dbus_demarshal_string), (_dbus_marshal_test):
12029         * dbus/dbus-marshal.h:
12030         * dbus/dbus-message.c: (dbus_message_get_name),
12031         Document these functions.
12032
12033         (dbus_message_append_int32), (dbus_message_append_uint32),
12034         (dbus_message_append_double), (dbus_message_append_string),
12035         (dbus_message_append_byte_array):
12036         * dbus/dbus-message.h:
12037         Add functions for adding message fields of different types.
12038
12039         * dbus/dbus-protocol.h:
12040         Add the different types.
12041
12042 2003-01-05  Havoc Pennington  <hp@pobox.com>
12043
12044         * bus/connection.c: implement routines for handling connections,
12045         first thing is keeping a list of owned services on each connection
12046         and setting up watches etc.
12047
12048         * bus/services.c: implement a mapping from service names to lists
12049         of connections
12050
12051         * dbus/dbus-hash.c: add DBUS_HASH_POINTER
12052
12053         * dbus/dbus-threads.c (dbus_static_mutex_lock): add functions
12054         to use static mutexes for global data
12055
12056         * dbus/dbus-connection.c (dbus_connection_set_data): add new
12057         collection of functions to set/get application-specific data
12058         on the DBusConnection.
12059
12060 2003-01-04  Havoc Pennington  <hp@pobox.com>
12061
12062         * dbus/dbus-sysdeps.c (_dbus_sleep_milliseconds): new function
12063         (_dbus_poll): new function
12064
12065         * dbus/dbus-internals.h (_DBUS_STRUCT_OFFSET): new macro
12066         copied from GLib
12067
12068         * bus/loop.c: initial code for the daemon main loop
12069
12070 2003-01-04  Havoc Pennington  <hp@pobox.com>
12071
12072         * test/watch.c (error_handler): make it safe if the error handler
12073         is called multiple times (if we s/error handler/disconnect
12074         handler/ we should just guarantee it's called only once)
12075
12076         * dbus/dbus-transport.c (_dbus_transport_disconnect): call the
12077         error handler on disconnect (it's quite possible we should
12078         just change the error handler to a "disconnect handler," I'm
12079         not sure we have any other meaningful errors)
12080
12081         * configure.in: check for getpwnam_r
12082
12083         * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
12084         dbus/dbus-auth.c: add credentials support, add EXTERNAL auth
12085         mechanism as in SASL spec, using socket credentials
12086
12087         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): new function
12088         (_dbus_send_credentials_unix_socket): new function
12089
12090         * dbus/dbus-sysdeps.c (_dbus_accept_unix_socket): rename just
12091         dbus_accept()
12092         (_dbus_write): only check errno if <0 returned
12093         (_dbus_write_two): ditto
12094
12095 2003-01-02  Anders Carlsson  <andersca@codefactory.se>
12096
12097         * dbus/dbus-marshal.c: (_dbus_marshal_utf8_string),
12098         (_dbus_marshal_byte_array), (_dbus_demarshal_utf8_string),
12099         (_dbus_marshal_test):
12100         * dbus/dbus-marshal.h:
12101         Add _dbus_marshal_byte_array and rename _dbus_marshal_string
12102         to _dbus_marshal_utf8_string. Also fix some tests.
12103
12104 2002-12-28  Harri Porten  <porten@kde.org>
12105
12106         * configure.in: added check for C++ compiler and a very cheesy
12107         check for the Qt integration
12108
12109         * Makefile.am (SUBDIRS): compile qt subdir if support is enabled
12110
12111         * qt/Makefile.am: added
12112
12113         * qt/.cvsignore: added
12114
12115         * qt/dbus-qthread.cc, qt/dbus-qthread.cpp: renamed former to
12116         latter, added #ifdef QT_THREAD_SUPPORT guard.
12117
12118         * dbus/Makefile.am: added missing headers for make dist
12119
12120 2002-12-28  Kristian Rietveld  <kris@gtk.org>
12121
12122         * dbus/Makefile.am: fixup export-symbols-regex.
12123
12124 2002-12-27  Anders Carlsson  <andersca@codefactory.se>
12125
12126         * acinclude.m4: Add this file and put the
12127         PKG_CHECK_MODULE macro in it.
12128
12129 2002-12-27  Anders Carlsson  <andersca@codefactory.se>
12130
12131         * dbus/dbus-marshal.c: (_dbus_marshal_string),
12132         (_dbus_demarshal_double), (_dbus_demarshal_int32),
12133         (_dbus_demarshal_uint32), (_dbus_demarshal_string),
12134         (_dbus_marshal_test):
12135         Make the demarshalling routines align the pos argument.
12136         Add string marshalling tests and fix the obvious bugs
12137         discovered.
12138
12139 2002-12-26  Havoc Pennington  <hp@pobox.com>
12140
12141         * dbus/dbus-auth.c: fixes fixes fixes
12142
12143         * dbus/dbus-transport-unix.c: wire up support for
12144         encoding/decoding data on the wire
12145
12146         * dbus/dbus-auth.c (_dbus_auth_encode_data)
12147         (_dbus_auth_decode_data): append to target string
12148         instead of nuking it.
12149
12150 2002-12-26  Havoc Pennington  <hp@pobox.com>
12151
12152         * dbus/dbus-marshal.h (DBUS_COMPILER_BYTE_ORDER): #ifdef
12153         WORDS_BIGENDIAN then compiler byte order is DBUS_BIG_ENDIAN,
12154         doh
12155
12156         * dbus/dbus-marshal.c: Add macros to do int swapping in-place and
12157         avoid swap_bytes() overhead (ignoring possible assembly stuff for
12158         now). Main point is because I wanted unpack_uint32 to implement
12159         _dbus_verbose_bytes
12160         (_dbus_verbose_bytes): new function
12161
12162         * dbus/dbus-string.c (_dbus_string_validate_ascii): new function
12163
12164         * dbus/dbus-message.c (_dbus_message_loader_get_is_corrupted): add
12165         mechanism to handle a corrupt message stream
12166         (_dbus_message_loader_new): fix preallocation to only prealloc,
12167         not prelengthen
12168
12169         * dbus/dbus-string.c (_dbus_string_skip_blank): fix this function
12170         (_dbus_string_test): enhance tests for copy/move and fix the
12171         functions
12172
12173         * dbus/dbus-transport-unix.c: Hold references in more places to
12174         avoid reentrancy problems
12175
12176         * dbus/dbus-transport.c: ditto
12177
12178         * dbus/dbus-connection.c (dbus_connection_dispatch_message): don't
12179         leak reference count in no-message case
12180
12181         * test/watch.c (do_mainloop): handle adding/removing watches
12182         during iteration over the watches. Also, ref the connection/server
12183         stored on a watch, so we don't try to mangle a destroyed one.
12184
12185         * dbus/dbus-transport-unix.c (do_authentication): perform
12186         authentication
12187
12188         * dbus/dbus-auth.c (get_state): add a state
12189         AUTHENTICATED_WITH_UNUSED_BYTES and return it if required
12190         (_dbus_auth_get_unused_bytes): append the unused bytes
12191         to the passed in string, rather than prepend
12192
12193         * dbus/dbus-transport.c (_dbus_transport_init_base): create
12194         the auth conversation DBusAuth
12195
12196         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd)
12197         (_dbus_transport_new_for_domain_socket): when creating a
12198         transport, pass in whether it's a client-side or server-side
12199         transport so we know which DBusAuth to create
12200
12201 2002-12-03  Havoc Pennington  <hp@pobox.com>
12202
12203         * dbus/dbus-transport-unix.c (unix_finalize): finalize base
12204         _after_ finalizing the derived members
12205         (unix_connection_set): unref watch if we fail to add it
12206
12207         * dbus/dbus-connection.c (dbus_connection_unref): delete the
12208         transport first, so that the connection owned by the
12209         transport will be valid as the transport finalizes.
12210
12211         * dbus/dbus-transport-unix.c (unix_finalize): free the write_watch
12212         if necessary, and remove watches from the connection.
12213
12214         * dbus/dbus-watch.c (_dbus_watch_list_free): improve a comment
12215
12216 2002-12-26  Anders Carlsson  <andersca@codefactory.se>
12217
12218         * dbus/dbus-marshal.c: (_dbus_marshal_string),
12219         (_dbus_demarshal_double), (_dbus_demarshal_int32),
12220         (_dbus_demarshal_uint32), (_dbus_demarshal_string),
12221         (_dbus_marshal_test):
12222         * dbus/dbus-marshal.h:
12223         Add string marshal functions and have the demarshal functions
12224         return the new position.
12225
12226 2002-12-25  Havoc Pennington  <hp@pobox.com>
12227
12228         * doc/dbus-sasl-profile.txt: docs on the authentication protocol,
12229         it is a simple protocol that just maps directly to SASL.
12230
12231         * dbus/dbus-auth.h, dbus/dbus-auth.c: authentication protocol
12232         initial implementation, not actually used yet.
12233
12234         * dbus/dbus-string.c (_dbus_string_find): new function
12235         (_dbus_string_equal): new function
12236         (_dbus_string_base64_encode): new function
12237         (_dbus_string_base64_decode): new function
12238
12239 2002-12-25  Anders Carlsson  <andersca@codefactory.se>
12240
12241         * dbus/Makefile.am:
12242         * dbus/dbus-marshal.c: (swap_bytes), (_dbus_marshal_double),
12243         (_dbus_marshal_int32), (_dbus_marshal_uint32),
12244         (_dbus_demarshal_double), (_dbus_demarshal_int32),
12245         (_dbus_demarshal_uint32), (_dbus_marshal_test):
12246         * dbus/dbus-marshal.h:
12247         * dbus/dbus-protocol.h:
12248         * dbus/dbus-test.c: (main):
12249         * dbus/dbus-test.h:
12250         Add un-optimized marshalling/demarshalling routines.
12251
12252 2002-12-25  Harri Porten  <porten@kde.org>
12253
12254         * qt/dbus-qt.h: adjusted ctor and getter to KDE/Qt conventions
12255
12256 2002-12-24  Zack Rusin  <zack@kde.org>
12257
12258         * qt/dbus-qthread.cc: adding - integrates QMutex into Dbus
12259         * qt/dbus-qt.h: skeleton with two sample implemenatation of the
12260         main loop stuff
12261
12262 2002-12-24  Havoc Pennington  <hp@pobox.com>
12263
12264         * glib/dbus-gthread.c: fix include
12265
12266         * glib/dbus-glib.h: rename DBusMessageHandler for now.
12267         I think glib API needs to change, though, as you don't
12268         want to use DBusMessageFunction, you want to use the
12269         DBusMessageHandler object. Probably
12270         dbus_connection_open_with_g_main_loop()
12271         and dbus_connection_setup_g_main_loop() or something like that
12272         (but think of better names...) that just create a connection
12273         that has watch/timeout functions etc. already set up.
12274
12275         * dbus/dbus-connection.c
12276         (dbus_connection_send_message_with_reply): new function just to
12277         show how the message handler helps us deal with replies.
12278
12279         * dbus/dbus-list.c (_dbus_list_remove_last): new function
12280
12281         * dbus/dbus-string.c (_dbus_string_test): free a string that
12282         wasn't
12283
12284         * dbus/dbus-hash.c: use memory pools for the hash entries
12285         (rebuild_table): be more paranoid about overflow, and
12286         shrink table when we can
12287         (_dbus_hash_test): reduce number of sprintfs and write
12288         valid C89. Add tests for case where we grow and then
12289         shrink the hash table.
12290
12291         * dbus/dbus-mempool.h, dbus/dbus-mempool.c: memory pools
12292
12293         * dbus/dbus-connection.c (dbus_connection_register_handler)
12294         (dbus_connection_unregister_handler): new functions
12295
12296         * dbus/dbus-message.c (dbus_message_get_name): new
12297
12298         * dbus/dbus-list.c: fix docs typo
12299
12300         * dbus/dbus-message-handler.h, dbus/dbus-message-handler.c:
12301         an object representing a handler for messages.
12302
12303 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
12304
12305         * glib/dbus-glib.h:
12306         * glib/dbus-gthread.c: (dbus_gthread_init):
12307         Don't use the gdbus prefix for public functions.
12308
12309 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
12310
12311         * Makefile.am:
12312         * configure.in:
12313         Add GLib checks and fixup .pc files
12314
12315         * glib/Makefile.am:
12316         * glib/dbus-glib.h:
12317         * glib/dbus-gmain.c: (gdbus_connection_prepare),
12318         (gdbus_connection_check), (gdbus_connection_dispatch),
12319         (gdbus_add_connection_watch), (gdbus_remove_connection_watch),
12320         (dbus_connection_gsource_new):
12321         * glib/dbus-gthread.c: (dbus_gmutex_new), (dbus_gmutex_free),
12322         (dbus_gmutex_lock), (dbus_gmutex_unlock), (dbus_gthread_init):
12323         * glib/test-dbus-glib.c: (message_handler), (main):
12324         Add GLib support.
12325
12326 2002-12-15  Harri Porten  <porten@kde.org>
12327
12328         * autogen.sh: check for libtoolize before attempting to use it
12329
12330         * dbus/dbus-transport-unix.c: include <sys/time.h> for timeval
12331         struct.
12332
12333         * .cvsignore: ignore more stamp files
12334
12335         * dbus/dbus-watch.c (_dbus_watch_list_new): fixed doc error
12336
12337         * test/Makefile.am: added -I$(top_srcdir) to be able to compile
12338         without make install.
12339
12340 2002-12-15  Havoc Pennington  <hp@pobox.com>
12341
12342         * dbus/dbus-threads.c: add thread stubs that a higher library
12343         layer can fill in. e.g. the GLib wrapper might fill them in with
12344         GThread stuff. We still need to use this thread API to
12345         thread-safe-ize the library.
12346
12347 2002-12-12  Havoc Pennington  <hp@pobox.com>
12348
12349         * dbus/dbus-transport-unix.c, dbus/dbus-server-unix.c: use the
12350         below new interfaces and include fewer system headers.
12351
12352         * dbus/dbus-sysdeps.c (_dbus_read): new function
12353         (_dbus_write): new function
12354         (_dbus_write_two): new function
12355         (_dbus_connect_unix_socket): new function
12356         (_dbus_listen_unix_socket): new function
12357
12358         * dbus/dbus-message-internal.h: change interfaces to use
12359         DBusString
12360
12361 2002-12-11  Havoc Pennington  <hp@pobox.com>
12362
12363         * dbus/dbus-types.h: add dbus_unichar
12364
12365         * dbus/dbus-internals.c (_dbus_verbose): use _dbus_getenv
12366
12367         * dbus/dbus-connection.c (dbus_connection_send_message): return
12368         TRUE on success
12369
12370         * dbus/dbus-transport.c: include dbus-watch.h
12371
12372         * dbus/dbus-connection.c: include dbus-message-internal.h
12373
12374         * HACKING: add file with coding guidelines stuff.
12375
12376         * dbus/dbus-string.h, dbus/dbus-string.c: Encapsulate all string
12377         handling here, for security purposes (as in vsftpd). Not actually
12378         using this class yet.
12379
12380         * dbus/dbus-sysdeps.h, dbus/dbus-sysdeps.c: Encapsulate all
12381         system/libc usage here, as in vsftpd, for ease of auditing (and
12382         should also simplify portability). Haven't actually moved all the
12383         system/libc usage into here yet.
12384
12385 2002-11-25  Havoc Pennington  <hp@pobox.com>
12386
12387         * dbus/dbus-internals.c (_dbus_verbose): fix to not
12388         always print the first verbose message.
12389
12390 2002-11-24  Havoc Pennington  <hp@pobox.com>
12391
12392         * test/echo-client.c, test/echo-server.c: cheesy test
12393         clients.
12394
12395         * configure.in (AC_CHECK_FUNCS): check for writev
12396
12397         * dbus/dbus-message.c (_dbus_message_get_network_data): new
12398         function
12399
12400         * dbus/dbus-list.c (_dbus_list_foreach): new function
12401
12402         * dbus/dbus-internals.c (_dbus_verbose): new function
12403
12404         * dbus/dbus-server.c, dbus/dbus-server.h: public object
12405         representing a server that listens for connections.
12406
12407         * dbus/.cvsignore: create
12408
12409         * dbus/dbus-errors.h, dbus/dbus-errors.c:
12410         public API for reporting errors
12411
12412         * dbus/dbus-connection.h, dbus/dbus-connection.c:
12413         public object representing a connection that
12414         sends/receives messages. (Same object used for
12415         both client and server.)
12416
12417         * dbus/dbus-transport.h, dbus/dbus-transport.c:
12418         Basic abstraction for different kinds of stream
12419         that we might read/write messages from.
12420
12421 2002-11-23  Havoc Pennington  <hp@pobox.com>
12422
12423         * dbus/dbus-internals.h (_DBUS_INT_MAX): add _DBUS_INT_MIN
12424         _DBUS_INT_MAX
12425
12426         * dbus/dbus-test.c (main): add list test, and include
12427         dbus-test.h as intended
12428
12429         * dbus/dbus-hash.c (_dbus_hash_table_remove_string)
12430         (_dbus_hash_table_remove_int): return value indicates
12431         whether the entry existed to remove
12432
12433         * dbus/dbus-list.c: add linked list utility class,
12434         with docs and tests
12435
12436         * dbus/dbus-hash.c: add TODO item about shrinking the hash bucket
12437         array sometimes.
12438
12439 2002-11-23  Havoc Pennington  <hp@pobox.com>
12440
12441         * Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/
12442         DBUS_END_DECLS to nothing, that should fix this once and for all
12443
12444         * Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES
12445
12446         * dbus/dbus-message.c, dbus/dbus-hash.c:
12447         add some missing @brief
12448
12449 2002-11-23  Havoc Pennington  <hp@pobox.com>
12450
12451         * dbus/dbus-message.h: put semicolons after DEBUG_BEGIN_DECLS
12452         to avoid confusing Doxygen
12453
12454         * dbus/dbus-hash.c: @} not }@
12455
12456         * dbus/dbus-message.c (struct DBusMessage): split out
12457         internals docs
12458
12459 2002-11-23  Havoc Pennington  <hp@pobox.com>
12460
12461         * configure.in: pile on more warning flags if using gcc
12462
12463         * Doxyfile.in (EXTRACT_STATIC): set to NO, so we don't have
12464         to document static functions
12465
12466         * configure.in: add summary to end of configure so it
12467         looks nice and attractive
12468
12469         * dbus/dbus-hash.c: finish implementation and write unit
12470         tests and docs
12471
12472         * configure.in: add --enable-tests to enable unit tests
12473
12474         * dbus/dbus-test.c: test program to run unit tests
12475         for all files in dbus/*, initially runs a test for
12476         dbus-hash.c
12477
12478         * dbus/dbus-internals.h: file to hold some internal utility stuff
12479
12480 2002-11-22  Havoc Pennington  <hp@redhat.com>
12481
12482         * dbus/dbus-hash.c: copy in Tcl hash table, not yet
12483         "ported" away from Tcl
12484
12485         * dbus/dbus-types.h: header for types such as dbus_bool_t
12486
12487 2002-11-22  Havoc Pennington  <hp@redhat.com>
12488
12489         * dbus/dbus.h: fixups for doc warnings
12490
12491         * Doxyfile.in (FILE_PATTERNS): we need to scan .h to pick up
12492         macros
12493         (QUIET): make it quiet so we can see warnings
12494
12495         * dbus/dbus-memory.c: teach D-BUS to allocate and free memory
12496
12497 2002-11-22  Havoc Pennington  <hp@redhat.com>
12498
12499         * Makefile.am: include "Doxyfile" target in all-local
12500
12501         * configure.in: generate the Doxyfile
12502
12503         * Doxyfile.in: move Doxyfile here, so we can use
12504         configure to generate a Doxyfile with the right
12505         version number etc.
12506
12507 2002-11-22  Havoc Pennington  <hp@redhat.com>
12508
12509         * dbus/dbus-message.c: move inline docs into .c file
12510
12511         * Doxyfile (OUTPUT_DIRECTORY): move output to doc/api
12512         so all docs are under doc/
12513         (MAN_EXTENSION): generate man pages. Use extension
12514         ".3dbus" which matches ".3qt" on my system,
12515         I guess this is OK, I don't know really.
12516         (FILE_PATTERNS): look for .c files not .h, makes sense
12517         for plain C I think
12518
12519 2002-11-22  Havoc Pennington  <hp@pobox.com>
12520
12521         * Makefile.am (SUBDIRS): rename subdir "server" to "bus"
12522         because any app can be a server, and any app can be a client,
12523         the bus is a special kind of server.
12524
12525 Thu Nov 21 23:35:31 2002  Zack Rusin  <zack@kde.org>
12526
12527         * Doxyfile : adding. Still needs Makefile rules to be generated
12528         automatically (just run "doxygen" in the toplevel dir for now to
12529         generate docs)
12530
12531         * dbus/dbus-message.h : Adding sample docs (javadoc since
12532         resembles gtk-doc a little more)
12533
12534         * dbus/dbus.h : Adding sample docs
12535
12536 2002-11-21  Havoc Pennington  <hp@redhat.com>
12537
12538         * dbus/Makefile.am (INCLUDES): define DBUS_COMPILATION
12539         so we can allow ourselves to include files directly,
12540         instead of having to use dbus.h
12541
12542         * dbus/dbus.h: fill in
12543
12544         * dbus/dbus-message.h: sketch out a sample header file.
12545         Include griping if you include it directly instead of
12546         via dbus.h
12547
12548         * dbus/dbus-macros.h: new file with macros for extern "C",
12549         TRUE/FALSE, NULL, etc.
12550
12551         * doc/file-boilerplate.c: put include guards in here
12552
12553 2002-11-21  Havoc Pennington  <hp@redhat.com>
12554
12555         * doc/file-boilerplate.c: include both AFL and GPL boilerplate.
12556
12557         * COPYING: include the GPL as well, and license code
12558         under both AFL and GPL.
12559
12560 2002-11-21  Havoc Pennington  <hp@redhat.com>
12561
12562         * acconfig.h: get rid of this
12563
12564         * autogen.sh (run_configure): add --no-configure option
12565
12566         * configure.in: remove AC_ARG_PROGRAM to make
12567         autoconf complain less. add AC_PREREQ.
12568         add AC_DEFINE third arg.
12569
12570 2002-11-21  Anders Carlsson  <andersca@codefactory.se>
12571
12572         * doc/Makefile.am:
12573         Fix references so we can distcheck.
12574
12575 2002-11-21  Havoc Pennington  <hp@redhat.com>
12576
12577         * Initial module creation
12578