1 2005-09-05 Olivier Andrieu <oliv__a@users.sourceforge.net>
3 * dbus/dbus-object-tree.c (find_subtree_recurse):
4 a couple of optimizations (bug #710):
5 - do a binary search in the tree
6 - insert a new child at the right place directly, no need for
8 - do the "double alloc" thing when allocating children
10 2005-08-31 John (J5) Palmieri <johnp@redhat.com>
12 * python/Makefile.am: Break on pyrexc errors instead of ignoring them
14 * python/dbus_bindings.pyx: Memory management foo
15 (global): remove hacky _user_data_references global list
16 (GIL_safe_cunregister_function_handler): userdata now stuffed into
17 tuples. Unref user_data
18 (GIL_safe_cmessage_function_handler): userdata now stuffed into tuples
19 (Connection::__del__): Remove and replace with __dealloc__ method
20 (Connection::add_filter): Stuff user_data into a tuple. Use Py_INCREF
21 to keep tuple from being deallocated instead of the global var hack
22 (Connection::register_object_path): Stuff user_data into a tuple.
23 Use Py_INCREF to keep tuple from being deallocated instead of the
25 (Connection::register_fallback): Stuff user_data into a tuple.
26 Use Py_INCREF to keep tuple from being deallocated instead of the
28 (GIL_safe_pending_call_notification): Don't unref the message
29 because it gets unreffed when going out of scope. Py_XDECREF
31 (PendingCall::__del__): Remove and replace with __dealloc__ method
32 (PendingCall::set_notify): ref the pending call because we will
33 need it to stick around for when the notify callback gets called
34 (Message::__del__): Remove and replace with __dealloc__ method
36 * python/dbus_glib_bindings.pyx (init_gthreads): Changed to
37 gthreads_init to match up with the dbus call
39 * python/glib.py (init_threads): Changed to threads_init to match
40 up with gobject.threads_init(). init_threads is kept for backwards
41 compat but will most likely be deprecated in the future
43 * test/python/test-client.py:
44 - revamp to use Python's unittest functionality
45 - add async call tests
46 - setup threads in glib and dbus so we make sure locks are working
48 2005-08-30 John (J5) Palmieri <johnp@redhat.com>
50 * python/dbus_bindings.pyx
51 (_pending_call_notification, cunregister_function_handler,
52 cmessage_function_handler): All callback functions have been rearranged
53 to workaround a bug in Pyrex when working with the GIL which is Python's
54 global lock when dealing with threads. They have been split into
55 a wrapper function (which assumes the name of the old function) and
56 a _GIL_safe_<function name> function which contains the functionality
57 of the old function. This ensures that Pyrex does not write code
61 2005-08-30 John (J5) Palmieri <johnp@redhat.com>
63 * python/dbus_bindings.pyx (_pending_call_notification): Obtain the
64 GIL global lock when calling back into Python
66 2005-08-29 John (J5) Palmieri <johnp@redhat.com>
70 * Add Havoc's patch that never got applied to HEAD (Bug #2436):
72 * bus/policy.c (bus_policy_allow_user): change default "user is
73 allowed" to be "user has same uid as the bus itself"; any
74 allow/deny rules will override.
76 * bus/session.conf.in: don't allow all users, since now by default
77 the user that ran the bus can connect.
79 2005-08-26 Colin Walters <walters@verbum.org>
81 * tools/dbus-print-message.c (print_message): Flush stdout
82 after printing a message, so that redirecting to a file, then
85 2005-08-25 John (J5) Palmieri <johnp@redhat.com>
87 * python/dbus_bindings.pyx: Tracked down a major memleak and fixed it
88 (EmptyMessage): new class that subclasses Message. This is a workaround
89 to a Pyrex bug that fails to call __del__ when the Message object goes out
90 of scope. For some reason subclassing Message fixes this bug
91 (Bus::send_with_reply_and_block): use EmptyMessage instead of Message
92 - s/Message(_create=0)/EmptyMessage everywhere else
94 * test/python/test-{server|client}.py: add the python/.libs directory
95 to the lookup path so dbus_bindings and dbus_glib_bindings don't
96 get picked up from the system
98 2005-08-25 Colin Walters <walters@verbum.org>
100 * glib/dbus-gproxy.c (dbus_g_proxy_call): Doc update, thanks
101 to Ryan Lortie for the suggestion.
103 2005-08-24 John (J5) Palmieri <johnp@redhat.com>
105 * test/python: Add python regression test
107 * configure.in: Add test/python/Makefile
109 * test/Makefile.am: Add the python directory to SUBDIRS
111 2005-08-24 John (J5) Palmieri <johnp@redhat.com>
116 (Interface::connect_to_signal): propigate keywords for match on args
117 (Bus::add_signal_receiver): Fix typo s/dbus_inteface/dbus_interface
119 * python/proxies.py (ProxyObject::connect_to_signal):
120 propigate keywords for match on args
122 * Makefile.am: point everything to pyexecdir since python borks
125 2005-08-23 John (J5) Palmieri <johnp@redhat.com>
129 2005-08-23 Colin Walters <walters@verbum.org>
131 * test/glib/Makefile.am: Don't multiply-define EXTRA_DIST.
133 2005-08-23 John (J5) Palmieri <johnp@redhat.com>
135 * python/dbus_glib_bindings.pyx: reorder imports and c definitions
136 to fix some wranings. We now use dbus_bindings.DBusConnection instead
137 of defining DBusConnection ourselves.
139 2005-08-18 John (J5) Palmieri <johnp@redhat.com>
141 * python/dbus.pth: New path file to fix up problems when installing
142 c libraries to lib64 and python files to lib.
144 * python/Makefile.am: install dbus.pth in the correct spot
146 2005-08-17 John (J5) Palmieri <johnp@redhat.com>
147 * ChangeLog: clean up my last entry a bit
149 * doc/introspect.xsl: New stylesheet for converting introspection data
150 into browser renderable xhtml. Contributed by Lennart Poettering.
152 * doc/introspect.dtd: Fixups in the introspect format from Lennart
155 * doc/dbus-tutorial.xml:
156 - Add Colin Walter to the Authors section for authoring the GLib
158 - Add descriptions of the new signature and type functionality
159 in the Python complex type mapping section
160 - Add a sidenote on the new args matching functionality in
162 - Fixed up some of the examples to use the gobject.MainLoop
166 (Bus::_create_args_dict): New. Converts a hash of arg matches
167 to a more useable format
168 (Bus::add_signal_receiver): add a **keywords parameter for catching
170 (Bus::remove_signal_receiver): add a **keywords parameter for catching
173 * python/matchrules.py:
174 (MatchTree::exec_matches): Check for arg matches
175 (SignalMatchRule::add_args_match): New method
176 (SignalMatchRule::execute): Added args_list parameter as an optimization
177 so we don't have to marshal the args more than once
178 (SignalMatchRule::match_args_from_list): New method that checks to see
179 if the rule's arg matches match an argument list. Only arguments
180 set in the rule are checked.
181 (SignalMatchRule::match_args_from_rule): New method that checks to see
182 if the rule's arg matches match another rule's. All args have to match
183 in order for this method to return true. If either rule has more args
184 then it is not a match.
185 (SignalMatchRule::is_match): Add args match
186 (SignalMatchRule::repr): Add args to the final output if they exist
188 2005-08-17 Ross Burton <ross@burtonini.com>
190 * glib/dbus-gproxy.c:
191 (dbus_g_proxy_call_no_reply): unref the message once sent.
192 (dbus_g_proxy_call): protect against NULL proxy.
194 2005-08-16 John (J5) Palmieri <johnp@redhat.com>
196 * python/__init__.py: Version updated (0, 43, 0)
198 * python/dbus_bindings.pyx:
199 - Fixed type objects to have self passed into __init__
200 - Added the Variant type
201 - Add the ability to specify types or signatures for Array, Variant
203 (Connection::send_with_reply_handlers): return a PendingCall object
204 (_pending_call_notification): handle the case when an error is returned
205 without an error message in the body
206 (MessageIter::get_boolean): return True or False instead of an integer
207 (MessageIter::python_value_to_dbus_sig): add direct checking of types
208 and add checks for objects with embeded signatures or types (Array,
209 Variant and Dictionary)
210 (MessageIter::append_byte): handle case when the value is a dbus.Byte
211 (MessageIter::append_dict): handle embeded types or signatures
212 (MessageIter::append_array): handle embeded types or signatures
213 (MessageIter::append_variant): new method
216 (DeferedMethod): New. Dummy executable object used when queuing calls
217 blocking on introspection data
218 (ProxyMethod::__call__): add the timeout keyword for specifying longer
219 or shorter timeouts for method calls
220 (ProxyObject): Add first pass at an introspection state machine
221 (ProxyObject::__init__): Add introspect keyword for turing off an on
223 (ProxyObject::_Introspect): Internal Introspect call that bypasses
224 the usual mechanisms for sending messages. This is to avoid a deadlock
225 where the Intospect call would be queued waiting for the Introspect
227 (ProxyObject::_introspect_reply_handler): New. This method is called
228 when introspection returns with no error
229 (ProxyObject::_introspect_error_handler): New. This method is called
230 when introspection encounters an error
231 (ProxyObject::__getattr__): Code to handle different introspection
232 states. Queue async calls or block blocking calls if we are
233 introspecting. Pass through as normal if we are not or are done with
236 * python/service.py: Import signal and method from decorators.py
238 * python/types.py: Add Variant type
240 2005-08-16 Colin Walters <walters@verbum.org>
242 * glib/dbus-gobject.c (dbus_set_g_error): Don't lose if the
243 DBusError message is NULL.
245 2005-08-09 Havoc Pennington <hp@redhat.com>
247 * dbus/dbus-errors.c: apply patch from Timo Teras to make a
248 malloc'd copy of the name parameter
250 2005-08-09 Havoc Pennington <hp@redhat.com>
252 * dbus/dbus-message.c (dbus_message_set_reply_serial): print
253 warning if the reply serial is set to 0
255 2005-08-04 Colin Walters <walters@verbum.org>
257 * glib/dbus-gvalue-utils.h (_dbus_g_type_specialized_builtins_init)
258 (dbus_g_type_is_fixed, dbus_g_type_fixed_get_size)
259 (dbus_gvalue_set_from_pointer, dbus_g_hash_table_value_foreach)
260 (dbus_g_hash_table_insert_values, dbus_g_hash_table_insert_steal_values)
261 (dbus_gtype_is_valid_hash_key, dbus_gtype_is_valid_hash_value)
262 (dbus_g_hash_func_from_gtype, dbus_g_hash_free_from_gtype)
263 (dbus_g_hash_equal_from_gtype, dbus_gvalue_stor, dbus_gvalue_take):
264 * glib/dbus-gvalue.h (dbus_g_value_types_init)
265 (dbus_gvalue_demarshal, dbus_gvalue_demarshal_variant)
266 (dbus_gvalue_demarshal_message, dbus_gvalue_marshal):
268 Prefix name with _ to ensure they're not exported. All callers
271 * glib/dbus-gvalue.c (typecode_to_gtype)
272 (dbus_typecode_maps_to_basic, basic_typecode_to_gtype)
273 (signature_iter_to_g_type_dict)
274 (signature_iter_to_g_type_array)
275 (dbus_gtype_from_signature_iter, dbus_gtype_from_signature)
276 (dbus_gtypes_from_arg_signature):
277 Move to dbus-gsignature.c.
279 * glib/dbus-binding-tool-glib.c (dbus_binding_tool_output_glib_server): Call
280 dbus_g_type_specialized_builtins_init instead of dbus_g_value_types_init.
281 (dbus_binding_tool_output_glib_client): Ditto.
283 * glib/Makefile.am (DBUS_GLIB_INTERNALS): Add dbus-gsignature.c
284 and dbus-gsignature.h
286 * test/glib/test-service-glib.c (my_object_rec_arrays): Delete
289 2005-08-03 Colin Walters <walters@verbum.org>
291 * glib/dbus-gobject.c: Add tests on hardcoded object info; this should
292 catch any incompatible changes accidentally made.
294 2005-08-03 Havoc Pennington <hp@redhat.com>
296 * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): fix
297 typo, from Julien Puydt
299 * bus/connection.c (bus_connection_disconnected): we were always
300 doing a wait_for_memory due to a buggy loop, found by Timo Hoenig
302 2005-08-01 Colin Walters <walters@verbum.org>
304 Patch from Joe Markus Clarke:
306 * glib/dbus-gidl.c (property_info_unref, arg_info_unref): Fix
309 2005-08-01 Colin Walters <walters@verbum.org>
311 Patch from Joe Markus Clarke:
313 * tools/dbus-send.c (main):
315 Don't use C99 style initializers (bug #3933).
317 2005-08-01 Colin Walters <walters@verbum.org>
319 Patch from Joe Markus Clarke:
321 * glib/dbus-gvalue.c (dbus_g_value_types_init):
322 * glib/dbus-gvalue-utils.c (dbus_g_type_specialized_builtins_init)
323 * glib/dbus-gobject.c (write_interface):
325 Don't use C99 style initializers (bug #3933).
327 2005-07-31 Havoc Pennington <hp@redhat.com>
329 * tools/dbus-viewer.c (load_child_nodes): fix invocation of
330 dbus_g_proxy_call, fix from Piotr Zielinski bug #3920
332 2005-07-30 Havoc Pennington <hp@redhat.com>
334 * fix a bunch of Doxygen warnings and mistakes
336 2005-07-30 Havoc Pennington <hp@redhat.com>
338 * dbus/dbus-sysdeps.c (_dbus_string_parse_uint): remove #ifdef
339 DBUS_BUILD_TESTS since it's now used in production code
341 2005-07-29 Havoc Pennington <hp@redhat.com>
343 * test/glib/test-profile.c (write_junk): initialize the junk
344 buffer so valgrind doesn't have a breakdown
346 2005-07-29 Havoc Pennington <hp@redhat.com>
348 * bus/signals.c (bus_signals_test): add match_rule_equal() tests
349 (match_rule_matches): remove unused arg
350 (test_matching): add tests for match_rule_matches()
352 * bus/signals.c (bus_match_rule_parse_arg_match): add ability to
353 do arg0='foo' arg5='bar' in the match rules
354 (match_rule_matches): don't match if the arg0='foo' doesn't match.
356 * dbus/dbus-protocol.h (DBUS_MAXIMUM_MATCH_RULE_ARG_NUMBER): add this
358 2005-07-29 Ross Burton <ross@openedhand.com>
360 * dbus/dbus-connection.c:
361 Don't create a DBusCondVar which is never used.
363 2005-07-27 Ross Burton <ross@openedhand.com>
365 * dbus/dbus-message.c:
366 Reduce the size of the maximum cached message to 10K.
368 2005-07-25 Ross Burton <ross@openedhand.com>
370 * glib/dbus-gproxy.c:
371 Remove matches when all proxies are unregistered.
373 2005-07-24 Colin Walters <walters@verbum.org>
375 * glib/dbus-gvalue.c (signature_iter_to_g_type_array): Don't require
376 typedata; recursive arrays won't have it.
378 * test/glib/test-dbus-glib.c:
379 * test/glib/test-service-glib.c:
380 * test/glib/test-service-glib.xml: Add recursive arrays tests.
382 2005-07-20 John (J5) Palmieir <johnp@redhat.com>
384 * python/_dbus.py, _util.py, decorators.py, extract.py, matchrules.py.
385 proxies.py, service.py: Cleanup of code after running it through the
386 pyflakes code checker mostly dealing with undefined names.
387 (Bug #3828, Patch from Anthony Baxter <anthony@interlink.com.au>)
389 2005-07-17 John (J5) Palmieri <johnp@redhat.com>
391 * NEWS: Update to 0.35.2
393 2005-07-17 John (J5) Palmieri <johnp@redhat.com>
395 * python/_dbus.py: Remove import of the dbus.services
396 module as it no longer exists (patch from Dimitur Kirov)
398 * python/service.py (Object::__init__): Fixed typo
399 s/name/bus_name (patch from Dimitur Kirov)
401 * python/examples/example-signal-emitter.py: import dbus.glib
402 to get the main loop and use glib mainloop instead of gtk so
403 X doesn't have to be running.
405 * python/examples/example-signal-recipient.py: import dbus.glib
406 to get the main loop and use glib mainloop instead of gtk so
407 X doesn't have to be running. Import the decorators module
410 * test/glib/Makefile.am: Added DIST_EXTRA files that distcheck
411 didn't pick up on but are needed to build
413 * configure.in: upped version to 0.35.2
415 * bus/driver.c, bus/selinux.c, bus/selinux.h, dbus/dbus-protocol.h:
416 added Colin Walters' SELinux API rename patch from head
417 s/unix sercurity context/selinux security context/
419 2005-07-16 John (J5) Palmieri <johnp@redhat.com>
421 * python/Makefile.am: dbus_binding.pxd.in should be included
422 in EXTRA_DIST not dbus_binding.pxd
423 fix up $(srcdir) hopefully for the last time
425 * NEWS: Update to 0.35.1
427 2005-07-16 Colin Walters <walters@verbum.org>
429 * bus/driver.c (bus_driver_handle_get_connection_selinux_security_context): Renamed
430 from bus_driver_handle_get_connection_unix_security_context. Update for
432 (message_handlers): Update for renames.
434 * bus/selinux.c (bus_selinux_allows_send): Handle OOM on
435 _dbus_string_init failure correctly.
436 (bus_selinux_append_context): Convert SID to context. Append it
438 (bus_selinux_shutdown): Handle the case where bus_selinux_full_init
441 * bus/selinux.h: Update prototype.
443 * dbus/dbus-protocol.h (DBUS_ERROR_SELINUX_SECURITY_CONTEXT_UNKNOWN): Renamed
444 from DBUS_ERROR_UNIX_SECURITY_CONTEXT_UNKNOWN.
446 2005-07-15 Colin Walters <walters@verbum.org>
448 * doc/TODO: Add note about convenience wrappers.
450 2005-07-15 John (J5) Palmieri <johnp@redhat.com>
452 * NEWS: Update to 0.35
454 2005-07-15 John (J5) Palmieri <johnp@redhat.com>
456 * glib/Makefile.am: Add make-dbus-glib-error-switch.sh to EXTRA_DIST
457 so distcheck doesn't fail
459 * glib/examples/Makefile.am: Add example-service.xml and
460 example-signal-emitter.xml to EXTRA_DIST so distcheck doesn't fail
462 * glib/examples/statemachine/Makefile.am: Add statemachine.xml and
463 statemachine-server.xml to EXTRA_DIST so distcheck doesn't fail
465 * python/Makefile.am: Preprend $(srcdir)/ to source files so the
466 compiler looks in the right places during distcheck
468 2005-07-15 John (J5) Palmieri <johnp@redhat.com>
470 * glib/example/Makefile.am: Fix a typo which cause make distcheck
473 2005-07-15 John (J5) Palmieri <johnp@redhat.com>
475 * python/examples/example-service.py,
476 python/examples/example-signal-emitter.py: Fixed up examples
479 2005-07-15 John (J5) Palmieri <johnp@redhat.com>
481 * python/__init__.py: Upped to version (0,42,0) because of
484 2005-07-15 John (J5) Palmieri <johnp@redhat.com>
486 * ChangeLog: fix date in last entry
488 * configure.in, bus/system.conf.in: add the ability to configure
489 the system bus user at compiletime with the --with-dbus-user flag
490 (patch from Kristof Vansant)
492 2005-07-15 John (J5) Palmieri <johnp@redhat.com>
494 * bus/dispatch.c, test/test-service.c: Add testcase
495 for sending messages to oneself (TODO item).
497 * python/service.py (class Object): Swap ordering of bus_name
498 and object_path parameters to better support inheritance.
500 * doc/dbus-tutorial.xml: change Python docs to reflect change
501 in parameter ordering and fix the inheritance section.
503 * doc/TODO: remove sending message to oneself TODO item
505 2005-07-15 Ross Burton <ross@openedhand.com>
507 * glib/dbus-gproxy.c:
508 Fix a leak when calling methods via the proxy.
510 2005-07-15 Colin Walters <walters@verbum.org>
512 * bus/selinux.c (bus_selinux_append_context): Wrap in
515 2005-07-14 John (J5) Palmieri <johnp@redhat.com>
517 * python/_dbus.py (Bus::remove_signal_receiver):
518 don't add a callback to the match if none has been passed in
520 * python/matchrules.py (SignalMatchTree::remove): if the rule
521 being matched does not have a callback treat it as a wildcard
524 * doc/dbus-tutorial.xml: Add Python tutorial
526 2005-07-14 Colin Walters <walters@verbum.org>
529 (bus_driver_handle_get_connection_unix_security_context): New function.
530 (message_handlers): Add.
532 * bus/selinux.c (bus_selinux_append_context): New function; appends
533 security context to message.
535 * bus/selinux.h: Prototype.
537 * dbus/dbus-protocol.h (DBUS_ERROR_UNIX_SECURITY_CONTEXT_UNKNOWN): New.
539 2005-07-14 John (J5) Palmieri <johnp@redhat.com>
541 * bus/activation.c: clean up all tabs to be 8 spaces
542 (bus_activation_activate_service): make sure we clean up
545 * bus/dispatch.c: clean up all tabs to be 8 spaces
546 (check_shell_fail_service_auto_start): New function
547 tests to make sure we get fail properly when trying to auto start a service
548 with a faulty command line
549 (check_shell_service_success_auto_start): New function tests to make sure
550 auto started services get the arguments on the command line
552 * test/test-shell-service.c: Added service for testing auto-starting with
553 command line arguments
555 * test/data/valid-service-files/debug-shell-echo-fail.service.in,
556 test/data/valid-service-files/debug-shell-echo-success.service.in:
557 Added service files for testing auto-starting with command line arguments
559 * */.cvsignore: added a bunch of generated files to various .cvsignore files
561 2005-07-14 Rodrigo Moya <rodrigo@novell.com>
563 * dbus/dbus-shell.[ch]: copy/pasted code from GLib.
565 * dbus/Makefile.am: added new files to build.
567 * bus/activation.c (bus_activation_activate_service): support
568 activation commands with parameters.
570 * test/shell-test.c: added test program for the shell parsing
573 2005-07-13 David Zeuthen <davidz@redhat.com>
575 * tools/dbus-send.c (append_arg, type_from_name): Also support 16 and
576 64 bit signed and unsigned parameters
578 2005-07-13 John (J5) Palmieri <johnp@redhat.com>
580 * python/.cvsignore: remove dbus_bindings.pyx, add dbus_bindings.pxd
582 * python/service.py (class Name): renamed BusName to make it clearer
583 what the object is for (a name on the bus)
585 * python/examples/example-service.py,
586 python/examples/example-signal-emitter.py: change the Name object to
589 2005-07-12 Colin Walters <walters@verbum.org>
591 Patch from Jim Gettys <Jim.Gettys@hp.com>.
593 * tools/dbus-launch.c: Include sys/select.h.
595 2005-07-12 John (J5) Palmieri <johnp@redhat.com>
596 * python/dbus_bindings.pyx.in: removed
598 * python/dbus_bindings.pyx: Added.
599 - Fixed some memleaks (patch from
600 Sean Meiners <sean.meiners@linspireinc.com>)
601 - Broke out the #include "dbus_h_wrapper.h" and put it in its
602 own pxd file (Pyrex definition)
603 - Broke out glib dependancies into its own pyx module
605 * python/dbus_bindings.pdx: Added.
606 - Defines C class Connection for exporting to other modules
608 * python/dbus_glib_bindings.pyx: Added.
609 - New module to handle lowlevel dbus-glib mainloop integration
611 * python/glib.py: Added.
612 - Registers the glib mainloop when you import this module
614 * python/services.py: Removed (renamed to service.py)
616 * python/service.py: Added.
617 - (class Server): renamed Name
619 * python/__init__.py: Bump ro version (0,41,0)
620 -don't import the decorators or service module
621 by default. These now reside in the dbus.service namespace
623 * python/_dbus.py (Bus::__init__): Add code run the main loop
624 setup function on creation
626 * python/examples/example-service.py,
627 python/examples/example-signal-emitter.py: update examples
629 * python/examples/gconf-proxy-service.py,
630 python/examples/gconf-proxy-service2.py: TODO fix these up
633 - Added a Python Bindings 1.0 section
634 - added "Add match on args or match on details to match rules"
637 2005-07-12 Colin Walters <walters@verbum.org>
639 * glib/examples/statemachine/Makefile.am (statemachine-server-glue.h)
640 (statemachine-glue.h):
641 * glib/examples/Makefile.am (example-service-glue.h)
642 (example-signal-emitter-glue.h):
643 * glib/Makefile.am (dbus-glib-error-switch.h):
644 Add libtool --mode=execute so we use the built library instead
645 of any installed one.
647 2005-07-11 Colin Walters <walters@verbum.org>
649 * glib/dbus-gvalue.c (struct _DBusGValue): Delete.
650 (dbus_g_value_types_init): Remove assertion.
651 (dbus_g_value_get_g_type, dbus_g_value_open)
652 (dbus_g_value_iterator_get_values, dbus_g_value_get_signature)
653 (dbus_g_value_copy, dbus_g_value_free): Delete unimplemented
654 functions related to DBusGValue. Now we marshal/demarshal
655 structures as GValueArray.
656 (dbus_gtype_from_signature_iter): Return G_TYPE_VALUE_ARRAY for
658 (signature_iter_to_g_type_array): Don't call
659 signature_iter_to_g_type_struct.
660 (signature_iter_to_g_type_struct): Delete.
661 (dbus_gvalue_to_signature): Delete.
662 (dbus_gvalue_to_signature): New function with same name as other
663 one; we can convert structures to signatures.
664 (demarshal_valuearray): New function.
665 (get_type_demarshaller): Use it.
666 (demarshal_recurse): Delete.
667 (marshal_proxy): New function.
668 (marshal_map): Warn if we can't determine signature from type.
669 (marshal_collection_ptrarray): Ditto.
670 (marshal_collection_array): Ditto.
671 (get_type_marshaller): Use marshal_valuearray.
672 (marshal_recurse): Delete.
673 (_dbus_gvalue_test): Add some tests.
675 * dbus/dbus-glib.h (struct _DBusGValueIterator):
676 (dbus_g_value_get_g_type, DBUS_TYPE_G_VALUE)
677 (dbus_g_value_open, dbus_g_value_iterator_get_value)
678 (dbus_g_value_iterator_get_values, dbus_g_value_iterator_recurse)
679 (dbus_g_value_free): Remove prototypes.
681 * glib/dbus-binding-tool-glib.c (dbus_g_type_get_lookup_function): Handle
684 * glib/examples/example-service.c:
685 * glib/examples/example-client.c: Implement GetTuple.
687 * test/glib/test-dbus-glib.c:
688 * test/glib/test-service-glib.c:
689 * test/glib/test-service-glib.xml: Add structure tests.
691 2005-07-10 Colin Walters <walters@verbum.org>
693 * doc/TODO: Knock off some GLib items with this patch.
695 * glib/dbus-gvalue-utils.c (_dbus_gtype_can_signal_error)
696 (_dbus_gvalue_signals_error): New functions.
698 * glib/dbus-gvalue-utils.h: Prototype them.
700 * glib/dbus-gobject.c (arg_iterate): Update to handle return vals
701 and change to not output const/retval flags for input args. All
703 (invoke_object_method): Refactor to handle return values. Add
704 some more comments in various places. Remove debug g_print.
706 * glib/dbus-binding-tool-glib.h (DBUS_GLIB_ANNOTATION_RETURNVAL): New.
708 * glib/dbus-binding-tool-glib.c (dbus_g_type_get_marshal_name):
710 (compute_gsignature): New function; refactored from code from
711 compute_marshaller and compute_marshaller_name. Enhance to
712 handle return values and async ops more cleanly. Update for
713 async ops returning NONE instead of BOOLEAN.
714 (compute_marshaller, compute_marshaller_name): Call compute_gsignature
715 and output appropriate string.
716 (generate_glue): Handle return value annotation. Also don't dump
717 constness flag for input arguments.
719 * glib/Makefile.am (DBUS_GLIB_INTERNALS): New variable; contains
720 files shared between installed library and utilities.
721 (libdbus_glib_1_la_SOURCES): Move some stuf into DBUS_GLIB_INTERNALS.
722 (libdbus_gtool_la_SOURCES): Suck in DBUS_GLIB_INTERNALS so the
723 binding tool can access gtype utility functions.
725 * test/glib/test-service-glib.c:
726 * test/glib/test-service-glib.xml:
727 * test/glib/test-dbus-glib.c: Add some tests for return values.
729 2005-07-09 Colin Walters <walters@verbum.org>
731 * glib/dbus-gparser.c (parse_annotation): Add annotations to
732 argument if available, not method.
734 * glib/dbus-gobject.c (arg_iterate): More verbose warnings.
735 (invoke_object_method): First, remove some redundant
736 GValues (object_value, error_value) in favor of working on
737 array directly. Second, rework constness to be less buggy.
738 Now we iterate directly over the argument metadata instead
739 of parallel iterating over output signature and metadata.
741 * glib/dbus-glib-tool.h: Add INVALID_ANNOTATION error.
743 * glib/dbus-binding-tool-glib.c (generate_glue): Barf on const
744 annotation on input args.
746 2005-07-09 Colin Walters <walters@verbum.org>
748 * glib/dbus-binding-tool-glib.h (DBUS_GLIB_ANNOTATION_CONST):
751 * glib/dbus-binding-tool-glib.c (generate_glue): Handle Const
754 * glib/dbus-gobject.c (arg_iterate): Update to parse constval too.
755 (method_dir_signature_from_object_info): Handle arg_iterate change.
756 (write_interface): Ditto.
757 (lookup_object_info): Don't barf if format_version is > 0.
758 (invoke_object_method): Handle arg constness.
760 * glib/dbus-gidl.c (struct ArgInfo): Add annotations.
761 (arg_info_new): Create.
762 (arg_info_unref): Destroy.
763 (arg_info_get_annotations, arg_info_get_annotation)
764 (arg_info_add_annotation): New functions.
766 * glib/dbus-gidl.h: Prototype them.
768 * glib/dbus-gparser.c (parse_annotation): Allow annotations in
769 args, disallow them in properties.
770 (parse_annotation): Handle arg annotations.
772 * test/glib/test-service-glib.xml:
773 * test/glib/test-service-glib.c: Update to make some methods
776 2005-07-08 Colin Walters <walters@verbum.org>
778 * test/glib/test-service-glib.xml:
779 * test/glib/test-service-glib.c:
780 * test/glib/test-dbus-glib.c: Test a{sv}.
782 * glib/examples/statemachine/statemachine.c:
783 * glib/examples/statemachine/statemachine-server.c:
784 * glib/examples/statemachine/statemachine-client.c: Fix some bugs,
785 add progress bar, etc.
787 * glib/dbus-gvalue.c (register_array, register_dict): Delete; not
788 needed anymore due to generic array/map marshalling.
789 (dbus_g_value_types_init): Don't register basic arrays or the
791 (dbus_gtype_from_signature_iter): Don't try to recurse into
793 (dbus_gtype_to_signature): Check collection/map before type
795 (demarshal_garray_basic): Renamed to demarshal_collection_array.
796 (demarshal_ghashtable): Renamed to demarshal_map; fix to use new
797 generic map creation/append functions instead of hash table
799 (get_type_demarshaller): Handle maps.
800 (demarshal_collection): Dispatch on collection type to either
801 demarshal_collection_ptrarray or demarshal_collection_array.
802 (get_type_marshaller): Handle maps.
803 (marshal_collection): Dispatch collection type to either
804 marshal_collection_ptrarray or marshal_collection_array.
805 (_dbus_gvalue_test): New test.
807 * glib/dbus-gvalue-utils.c (unset_and_free_g_value): New function.
808 (hash_free_from_gtype): Use it to free GValues.
809 (hashtable_append): New function.
810 (ptrarray_append): Fix prototype.
811 (slist_append): Ditto.
812 (_dbus_gvalue_utils_test): Extend tests.
814 * glib/dbus-gtype-specialized.c
815 (dbus_g_type_specialized_init_append): Renamed from
816 dbus_g_type_specialized_collection_init_append. Remove const from
817 value, since we steal it.
818 (dbus_g_type_specialized_map_append): New function.
820 * glib/dbus-gtype-specialized.h: Update prototypes.
821 Add DBusGTypeSpecializedMapAppendFunc.
823 * glib/dbus-gtest.c (dbus_glib_internal_do_not_use_run_tests): Run
826 * glib/dbus-gtest.h: Prototype it.
828 2005-07-08 Ross Burton <ross@openedhand.com>
831 Add DBysGAsyncData for the async bindings.
833 * glib/dbus-binding-tool-glib.c:
834 Re-enable the async bindings.
836 * test/glib/test-dbus-glib.c:
837 Add a test for the generated async bindings.
839 2005-07-08 Colin Walters <walters@verbum.org>
841 * doc/TODO: Update GLib todo bits, also add a post-1.0 TODO for a
844 2005-07-08 Colin Walters <walters@verbum.org>
846 * tools/Makefile.am: Kill of print-introspect in favor of using
847 dbus-send --print-reply=literal.
849 * test/glib/test-service-glib.xml:
850 * test/glib/test-service-glib.c (my_object_get_objs): New test
853 * test/glib/test-dbus-glib.c (echo_received_cb): Free echo data.
854 (main): Test GetObjs.
856 * glib/examples/statemachine/Makefile.am:
857 * glib/examples/statemachine/sm-marshal.list:
858 * glib/examples/statemachine/statemachine-client.c:
859 * glib/examples/statemachine/statemachine-server.c:
860 * glib/examples/statemachine/statemachine-server.xml:
861 * glib/examples/statemachine/statemachine.c:
862 * glib/examples/statemachine/statemachine.h:
863 * glib/examples/statemachine/statemachine.xml:
867 * glib/examples/example-service.c (main): Move invocation
868 of dbus_g_object_type_install_info earlier, to emphasize it
869 should only be done once.
871 * glib/examples/example-signal-emitter.c (main): Ditto.
873 * glib/examples/Makefile.am (SUBDIRS): Include statemachine.
875 * glib/dbus-gvalue.h (dbus_gtype_to_signature)
876 (dbus_gvalue_marshal): Update prototypes.
878 * glib/dbus-gvalue.c: Update all marshalling functions to take
879 const GValue instead of GValue.
880 (signature_iter_to_g_type_array): Return a GPtrArray for nonfixed
882 (dbus_gvalue_to_signature): Update for dbus_gtype_to_signature
884 (dbus_gtype_to_signature): Handle generic collecitons and maps.
885 Return a newly-allocated string.
886 (demarshal_proxy, demarshal_object_path, demarshal_object)
887 (demarshal_strv, demarshal_ghashtable): Set error, don't assert if
888 we get the wrong types from message.
889 (get_type_demarshaller): New function, extracted from
890 dbus_gvalue_demarshal.
891 (demarshal_collection): New function, demarshals generic
893 (dbus_gvalue_demarshal): Just invoke result of
894 get_type_demarshaller. Throw error if we don't have one.
895 (marshal_garray_basic): Abort on OOM.
896 (get_type_marshaller): New function, extracted from
898 (collection_marshal_iterator, marshal_collection): New functions;
899 implements generic marshalling for an iteratable specialized
901 (dbus_gvalue_marshal): Just invoke result of get_type_marshaller.
903 * glib/dbus-gvalue-utils.c (gvalue_from_ptrarray_value): Handle
905 (ptrarray_value_from_gvalue): Ditto.
906 (ptrarray_append, ptrarray_free): New functions.
907 (slist_constructor, slist_iterator, slist_copy_elt, slist_copy)
908 (slist_append, slist_end_append, slist_free): New functions.
909 (dbus_g_type_specialized_builtins_init): Add append fuctions
910 for GPtrArray and GSList. Register GSList.
911 (test_specialized_hash, _dbus_gvalue_utils_test): New functions.
913 * glib/dbus-gtype-specialized.h (DBusGTypeSpecializedAppendContext):
915 (dbus_g_type_specialized_collection_init_append)
916 (dbus_g_type_specialized_collection_append)
917 (dbus_g_type_specialized_collection_end_append): Prototype.
918 (DBusGTypeSpecializedCollectionVtable): Add append_func and
921 * glib/dbus-gtype-specialized.c (dbus_g_type_specialized_collection_init_append)
922 (dbus_g_type_specialized_collection_append)
923 (dbus_g_type_specialized_collection_end_append): New functions.
924 (dbus_g_type_map_value_iterate): Take const GValue.
925 (dbus_g_type_collection_value_iterate): Ditto.
927 * glib/dbus-gtest.c (dbus_glib_internal_do_not_use_run_tests): Run
928 _dbus_gvalue_utils_test.
930 * glib/dbus-gtest.h: Prototype it.
932 * glib/dbus-gproxy.c (dbus_g_proxy_manager_filter): Avoid
933 using uninitialized owner_list.
934 (dbus_g_proxy_begin_call_internal): Move return_if_fail to
936 (dbus_g_proxy_end_call_internal): Update to use error set
937 from dbus_gvalue_demarshal instead of setting it here.
938 (dbus_g_proxy_begin_call): Move return_if_fail here.
940 * glib/dbus-gobject.c (write_interface): Update for
941 dbus_gtype_to_signature returning new string.
943 * configure.in: Add glib/examples/statemachine.
945 2005-07-08 Joe Shaw <joeshaw@novell.com>
947 * configure.in: Add a configure option, --with-console-auth-dir
949 * dbus/dbus-sysdeps-util.c (_dbus_user_at_console): Use the
950 new setting. Patch from Kay Sievers.
952 2005-07-06 Colin Walters <walters@verbum.org>
954 * dbus/dbus-glib.h (DBusGPendingCall, DBusGPendingCallNotify)
955 (DBUS_TYPE_G_PENDING_CALL, dbus_g_pending_call_get_g_type)
956 (dbus_g_pending_call_ref, dbus_g_pending_call_unref): Delete.
957 (dbus_g_pending_call_set_notify, dbus_g_pending_call_cancel):
958 Delete in favor of dbus_g_proxy_begin_call and
959 dbus_g_proxy_cancel_call.
960 (DBusGProxyCall, DBusGProxyCallNotify): New.
961 (dbus_g_proxy_begin_call): Change prototype to take callback, user
962 data, and destroy function. This replaces
963 dbus_g_pending_call_set_notify.
964 (dbus_g_proxy_cancel_call): Prototype.
965 (DBusGAsyncData): Delete, shouldn't be needed anymore.
967 * glib/dbus-gproxy.c (struct _DBusGProxy): Add call_id_counter and
969 (struct _DBusGProxyManager): Add bus_proxy member, which is an
970 internal proxy for calls to the bus. Remove
971 pending_nameowner_calls, now the internal proxy keeps track.
972 (dbus_g_proxy_manager_unref): Unref bus proxy, remove reference to
973 pending_nameowner_calls.
974 (got_name_owner_cb): Update prototype, and use
975 dbus_g_proxy_end_call.
976 (got_name_owner_cb): Remove reference to pending_nameowner_calls.
977 (dbus_g_proxy_manager_register): Delete directly libdbus code in
978 favor of using internal proxy.
979 (dbus_g_proxy_manager_unregister): Update to use
980 dbus_g_proxy_cancel_call for any pending GetNameOwner call.
981 (dbus_g_proxy_init): Initialize pending calls map.
982 (dbus_g_proxy_constructor): New.
983 (dbus_g_proxy_class_init): Add get/set property functions,
984 constructor, and add NAME, PATH, and INTERFACE properties.
985 (cancel_pending_call): New function.
986 (dbus_g_proxy_dispose): Iterate over any outstanding calls and
988 (dbus_g_proxy_set_property, dbus_g_proxy_get_property): New.
989 (GPendingNotifyClosure): New structure.
990 (d_pending_call_notify, d_pending_call_free): Moved here from
992 (DBUS_G_VALUE_ARRAY_COLLECT_ALL): Moved around to satisfy function
994 (manager_begin_bus_call): New internal function for talking to
996 (dbus_g_proxy_new): Construct object using GObjet properties.
997 (dbus_g_proxy_begin_call_internal): Update to take user data, etc.
998 Create closure of same, and insert call into map of pending calls.
999 (dbus_g_proxy_end_call_internal): Take call id instead of pending
1000 call. Look up pending call in current set. Remove it when we've
1002 (dbus_g_pending_call_end, dbus_g_proxy_end_call_internal): Delete.
1003 (dbus_g_proxy_begin_call): Change API to take callback, user data,
1004 and destroy function directly.
1005 (dbus_g_proxy_end_call): Update to take DBusGProxyCall.
1006 (dbus_g_proxy_call): Invoke with NULL callback.
1007 (dbus_g_proxy_cancel_call): New function, replaces
1008 dbus_g_pending_call_cancel.
1010 * glib/dbus-gparser.c (validate_signature): Fix call to
1013 * glib/dbus-gobject.c (dbus_g_object_type_dbus_metadata_quark):
1014 New quark for attaching metadata to GType.
1015 (info_hash): Delete.
1016 (lookup_object_info): Look up using quark.
1017 (dbus_g_object_type_install_info): Check that a type is classed,
1018 not that it's an object. Also just install type data using quark
1019 instead of using global hash.
1021 * glib/dbus-glib.c (dbus_g_pending_call_ref)
1022 (dbus_g_pending_call_unref, dbus_pending_call_get_g_type)
1023 (GPendingNotifyClosure): Delete.
1024 (d_pending_call_notify, d_pending_call_free): Move to dbus-gproxy.c.
1025 (dbus_g_pending_call_set_notify, dbus_g_pending_call_cancel): Delete.
1027 * glib/dbus-binding-tool-glib.c (generate_client_glue): Disable async
1028 client method generation until we can fix it...
1030 * tools/dbus-viewer.c (load_child_nodes): Use dbus_g_proxy_call.
1031 (load_from_service_thread_func): Ditto.
1033 * tools/dbus-names-model.c (struct NamesModel): Hold
1035 (have_names_notify): Update prototype, use
1036 dbus_g_proxy_cancel_call.
1037 (names_model_reload): Update for new dbus_g_proxy_begin_call API.
1039 * tools/dbus-monitor.c (filter_func): Update for print_message
1042 * test/glib/test-dbus-glib.c: Add more tests for async
1043 invocations. Update many begin_call/end_call pairs to just use
1046 * tools/dbus-send.c (main): Add --print-reply=literal mode. This
1047 allows us to dump print-introspect.c.
1049 * tools/dbus-print-message.h (print_message): Add literal argument
1050 to print_message which is intended to allow printing arguments without
1051 metadata like "string=".
1053 * tools/dbus-print-message.c (print_iter): Add literal argument.
1054 (print_message): Allow printing string messages literally.
1056 2005-07-05 Colin Walters <walters@verbum.org>
1058 * glib/dbus-gproxy.c (marshal_dbus_message_to_g_marshaller):
1059 Remove value refcount leak, original patch from Jorn Baayen
1060 <jorn@openedhand.com>. Also remove useless extra value in favor
1061 of prepending to value array directly.
1063 2005-07-02 Colin Walters <walters@verbum.org>
1065 * glib/dbus-gmain.c (_dbus_gmain_test): Fix test.
1067 2005-07-01 Colin Walters <walters@verbum.org>
1069 Patch from Jonathan Matthew <jonathan@kaolin.hn.org>
1071 * glib/dbus-gvalue.c (basic_typecode_to_gtype): Fix return type.
1072 (dbus_g_value_types_init): Marshal G_TYPE_CHAR as DBUS_TYPE_BYTE,
1073 G_TYPE_LONG as DBUS_TYPE_INT32, G_TYPE_ULONG as DBUS_TYPE_UINT32,
1074 and G_TYPE_FLOAT as DBUS_TYPE_DOUBLE.
1076 2005-06-30 Colin Walters <walters@verbum.org>
1078 * test/glib/test-dbus-glib.c:
1079 * test/glib/test-service-glib.c:
1080 * test/glib/test-service-glib.xml: Update tests for new error
1081 setting bits, also add async tests (patch from Ross Burton).
1083 * test/glib/Makefile.am (test_service_glib_LDADD): Add
1084 DBUS_GLIB_THREADS_LIBS.
1086 * glib/dbus-gproxy.c (get_name_owner)
1087 (dbus_g_pending_call_end_valist): Ditto.
1089 * glib/dbus-gobject.c (error_metadata): New mapping from GError
1090 domain (GQuark) to DBusGErrorInfo.
1091 (gerror_domaincode_to_dbus_error_name): Attempt to look up error
1092 quark in error_metadata. Take message interface as default
1093 error message interface.
1094 (gerror_to_dbus_error_message): Pass message interface.
1095 (dbus_set_g_error): Resurrected.
1096 (dbus_g_error_info_free): New function.
1097 (dbus_g_object_type_install_info): Use g_type_class_ref instead
1098 of _peek to actually create the object class if it hasn't been
1100 (dbus_g_error_domain_register): New function.
1102 * glib/dbus-gmain.c (dbus_g_bus_get): Switch to dbus_set_g_error.
1104 * glib/dbus-gparser.c (validate_signature): Ditto.
1106 * dbus/dbus-glib.h (dbus_g_error_set): Delete.
1107 (dbus_g_error_domain_register): Prototype.
1109 * glib/dbus-glib.c (dbus_g_error_set): Delete.
1112 2005-06-29 Colin Walters <walters@verbum.org>
1114 * dbus/dbus-glib.h: Delete DBUS_TYPE_G_PROXY_ARRAY. Add
1115 DBUS_TYPE_G_OBJECT_PATH.
1117 * glib/dbus-gvalue.c (dbus_g_value_types_init): Remove marshallers
1118 for G_TYPE_OBJECT and DBUS_TYPE_G_PROXY_ARRAY (the latter should
1119 be handled more generically). Add DBUS_TYPE_G_OBJECT_PATH.
1120 (dbus_g_object_path_get_g_type): New function.
1121 (dbus_gtype_from_signature_iter): Map DBUS_TYPE_OBJECT_PATH
1122 to DBUS_TYPE_G_OBJECT_PATH by default.
1123 (demarshal_proxy): Remove unused name variable.
1124 (demarshal_object_path, marshal_object_path): New functions.
1125 (demarshal_proxy_array, marshal_proxy_array): Delete.
1127 * glib/dbus-binding-tool-glib.c (dbus_g_type_get_c_name): Map
1128 DBUS_TYPE_G_OBJECT_PATH to char *.
1129 (dbus_g_type_get_lookup_function): Map builtin
1130 DBUS_TYPE_G_OBJECT_PATH.
1132 * test/glib/test-dbus-glib.c
1133 * test/glib/test-service-glib.c (my_object_objpath):
1134 Adapt tests to new object path marshalling.
1136 2005-06-29 John (J5) Palmieri <johnp@redhat.com>
1138 * configure.in: force check for Python >= 2.4
1140 2005-06-29 Colin Walters <walters@verbum.org>
1142 Patch from Ross Burton <ross@openedhand.com>
1144 * glib/dbus-gobject.c (invoke_object_method): Unset object
1145 value in all cases, not only in async case.
1147 2005-06-29 Colin Walters <walters@verbum.org>
1149 * glib/dbus-gproxy.c (struct _DBusGProxy): Add new member
1150 name_call for keeping track of any outgoing GetNameOwner call.
1151 Also add for_owner and associated.
1152 (struct _DBusGProxyManager): Add owner_names, which is hash table
1153 that maps a base name to a list of names it owns (that we're
1154 interested in). Add pending_nameowner_calls which is a list of
1155 all outstanding GetNameOwner; avoids us having to iterate over
1156 every proxy. Add unassociated_proxies which keeps track of name
1157 proxies with no associated name owner.
1158 (dbus_g_proxy_manager_unref): Destroy owner_names.
1159 (struct DBusGProxyNameOwnerInfo): New struct for keeping track of
1161 (find_name_in_info, name_owner_foreach)
1162 (dbus_g_proxy_manager_lookup_name_owner, insert_nameinfo)
1163 (dbus_g_proxy_manager_monitor_name_owner)
1164 (dbus_g_proxy_manager_unmonitor_name_owner)
1165 (unassociate_proxies, dbus_g_proxy_manager_replace_name_owner):
1166 New functions; they manipulate the owner_names mapping.
1167 (got_name_owner_cb): New function.
1168 (get_name_owner): New function, extracted from
1169 dbus_g_proxy_new_for_name_owner.
1170 (dbus_g_proxy_manager_register): For now we need to keep track of
1171 all NameOwnerChanged. Also if the proxy is for a name, if we
1172 don't already know the name owner, queue a new GetNameOwner
1173 request and add it to our list of unassociated proxies. Otherwise
1175 (dbus_g_proxy_manager_unregister): If this proxy is for a name,
1176 cancel any pending GetNameOwner call, etc.
1177 (dbus_g_proxy_manager_filter): Handle NameOwnerChanged. Also use
1178 the owner_names mapping to look up the current names for the
1179 signal source, and dispatch to any proxies for that name.
1180 (dbus_g_proxy_new): Initialize new members.
1181 (dbus_g_proxy_new_for_name): Delete unused proxy variable.
1182 (dbus_g_proxy_new_for_name_owner): Use get_name_owner.
1183 (dbus_g_pending_call_end_valist): New function, extracted from
1184 dbus_g_proxy_end_call_internal. Useful when we don't have a proxy
1185 but want to use the GLib infrastructure. Also note how many
1186 arguments in reply were over.
1187 (dbus_g_pending_call_end): New function, just call
1188 dbus_g_pending_call_end_valist.
1189 (dbus_g_proxy_end_call_internal): Just call
1190 dbus_g_pending_call_end_valist.
1192 * glib/dbus-gobject.c (_dbus_gobject_lookup_marshaller): Fix lookup
1193 of builtin marshaller for STRING_STRING_STRING.
1195 * test/glib/test-dbus-glib.c:
1196 * test/glib/test-service-glib.c:
1197 * test/glib/test-service-glib.xml:
1198 Extend tests to cover name proxies, destruction of owner proxies,
1201 * glib/examples/example-signal-recipient.c
1202 (dbus_g_proxy_new_for_name_owner): Create a name proxy.
1204 * tools/dbus-send.c (main): Print D-BUS error name in addition
1207 2005-06-28 John (J5) Palmieri <johnp@redhat.com>
1209 * python/dbus_bindings.pyx.in (cunregister_function_handler,
1210 cmessage_function_handler): Patch from
1211 Anthony Baxter <anthony@interlink.com.au> fixes threading problems
1212 by using the Py_GILState_Ensure/Release to synchronize with the
1215 2005-06-28 Ray Strode <rstrode@redhat.com>
1217 * dbus/dbus-spawn.c (_dbus_babysitter_unref): kill
1218 babysitter helper process on last unref, bug #2813.
1220 2005-06-27 Colin Walters <walters@verbum.org>
1222 * test/glib/test-dbus-glib.c:
1223 * test/glib/test-service-glib.c:
1224 * test/glib/test-service-glib.xml:
1225 Test hash table signal emitting.
1227 * glib/dbus-gobject.c (_dbus_gobject_lookup_marshaller): Convert
1228 types to their fundamental basis types, since this is what
1229 marshallers operate on. Also add an entry for VOID__BOXED.
1230 (dbus_g_object_register_marshaller_array): Convert to fundamental.
1232 2005-06-26 Havoc Pennington <hp@redhat.com>
1234 * doc/dbus-tutorial.xml: fix names of interface/service/path, fix
1237 2005-06-26 Colin Walters <walters@verbum.org>
1239 * glib/dbus-glib.c (dbus_set_g_error): Delete.
1240 (dbus_g_error_set): New public function from its ashes; used by
1241 both service-side method implementation and GLib bindings
1243 (dbus_g_error_has_name, dbus_g_error_get_name): New function.
1244 (_dbus_glib_test): Add some tests.
1246 * test/glib/test-dbus-glib.c (main): Test dbus_g_error_has_name.
1248 * test/glib/test-service-glib.c (my_object_throw_error): Use
1251 * glib/dbus-gobject.c (gerror_to_dbus_error_message): Handle
1252 errors thrown by dbus_g_error_set.
1254 * glib/dbus-gmain.c (dbus_g_bus_get): Change to dbus_g_error_set.
1256 * glib/dbus-gparser.c (validate_signature): Ditto.
1258 * glib/dbus-gproxy.c (dbus_g_proxy_new_for_name_owner)
1259 (dbus_g_proxy_end_call_internal): Ditto.
1261 * glib/Makefile.am: Generate dbus-glib-error-switch.h, which
1262 converts DBUS_ERROR_x to DBUS_GERROR_x.
1263 (libdbus_glib_1_la_SOURCES, BUILT_SOURCES, CLEANFILES): Add it.
1265 * doc/TODO: Remove error TODO.
1267 * doc/dbus-tutorial.xml: Update with documentation about error
1270 * dbus/make-dbus-glib-error-enum.sh: Tighten up regexp to make
1271 sure we only change DBUS_ERROR to DBUS_GERROR, not all ERROR to
1272 GERROR. Also add DBUS_GERROR_REMOTE_EXCEPTION.
1274 2005-06-22 Colin Walters <walters@verbum.org>
1276 Patch from Ross Burton <ross@openedhand.com>
1278 * glib/dbus-gobject.c (dbus_g_method_return): Free out_sig.
1280 2005-06-20 Colin Walters <walters@verbum.org>
1282 * configure.in: Add glib/examples.
1284 * glib/Makefile.am: Add examples/
1286 * glib/examples/.cvsignore
1287 * glib/examples/Makefile.am
1288 * glib/examples/example-client.c
1289 * glib/examples/example-service.c
1290 * glib/examples/example-service.xml
1291 * glib/examples/example-signal-emitter.c
1292 * glib/examples/example-signal-emitter.xml
1293 * glib/examples/example-signal-recipient.c:
1294 New files; GLib binding examples, ported from
1297 2005-06-20 Colin Walters <walters@verbum.org>
1300 * glib/dbus-gproxy.c: Rename dbus_g_proxy_invoke to
1303 * glib/dbus-binding-tool-glib.c:
1304 * doc/dbus-tutorial.xml:
1305 * test/glib/test-dbus-glib.c: Update for rename.
1307 2005-06-20 Colin Walters <walters@verbum.org>
1309 Patch suggested by Ross Burton <ross@openedhand.com>
1311 * glib/dbus-gobject.c (export_signals): Free signal name.
1312 (g_value_init): Use G_VALUE_NOCOPY_CONTENTS to plug
1313 memory leak. Add a bit of documentation.
1314 (dbus_g_method_return_error): Free context, and note we do
1317 2005-06-18 Murray Cumming <murrayc@murrayc.com>
1320 * glib/dbus-gobject.c:
1321 * glib/dbus-gproxy.c:
1322 * glib/dbus-gvalue.c: Predeclare structs as
1323 typedef struct _Something Something instead of
1324 typedef struct Something Something, so we can
1325 redeclare the prototypes. Other GNOME libraries
1328 2005-06-17 Colin Walters <walters@verbum.org>
1330 * tools/dbus-names-model.c (have_names_notify): Fix call
1331 to dbus_g_proxy_end_call.
1333 2005-06-17 Colin Walters <walters@verbum.org>
1335 * glib/dbus-gproxy.c (dbus_g_proxy_emit_remote_signal): Don't
1336 spew warnings if we get malformed remote signals.
1338 * glib/dbus-gobject.c (propsig_iterate): New function.
1339 (lookup_object_info): New function, extracted from
1340 lookup_object_and_method.
1341 (introspect_properties, introspect_signals): Delete; these
1342 are merged into write_interface.
1343 (write_interface): Write out signals and properties here;
1344 dump the org.gtk.object stuff and use the interface given
1345 in the introspection data blob. Also fix up property XML.
1346 (lookup_values): New function.
1347 (introspect_interfaces): Gather a mapping from interface to a
1348 list of its methods, signals, and properties, then write out
1350 (lookup_object_and_method): Use lookup_object_info.
1351 (struct DBusGSignalClosure): Add interface.
1352 (dbus_g_signal_closure_new): Add interface. Don't dup signame;
1353 we can just use the constant data.
1354 (dbus_g_signal_closure_finalize): Don't free signal name.
1355 (signal_emitter_marshaller): Use interface from signal closure.
1356 (export_signals): Only export signals mentioned in introspection
1358 (dbus_g_connection_register_g_object): Warn if we have no
1359 introspection data for an object.
1360 (funcsig_equal): Remove unused variable.
1361 (dbus_g_object_register_marshaller): Take varargs instead of
1363 (dbus_g_object_register_marshaller_array): New function,
1364 extracted from old dbus_g_object_register_marshaller.
1366 * glib/dbus-binding-tool-glib.c (struct DBusBindingToolCData): Add
1367 signals and property data.
1368 (write_quoted_string): New function, extracted from generate_glue.
1369 (generate_glue): Write signals and properties to introspection
1372 * dbus/dbus-glib.h (struct DBusGObjectInfo): Include
1373 exported_signals and exported_properties.
1374 (dbus_g_object_register_marshaller): Update prototype.
1375 (dbus_g_object_register_marshaller_array): Prototype.
1377 * test/glib/test-dbus-glib.c: Extend testing to cover new signals.
1379 * test/glib/test-service-glib.c: Add new test signals and method
1382 * test/glib/test-service-glib.xml: Add some test signals.
1384 * test/glib/Makefile.am (BUILT_SOURCES): Add my-object-marshal.c
1385 and my-object-marshal.h
1386 (test_service_glib_SOURCES, test_dbus_glib_SOURCES): Add
1387 my-object-marshal.c.
1388 (my-object-marshal.c, my-object-marshal.h): Implement.
1390 * test/glib/.cvsignore: Update.
1392 * doc/TODO: Remove two GLib TODO items fixed by this
1395 2005-06-16 Colin Walters <walters@verbum.org>
1397 * doc/TODO: Update for GLib bindings.
1399 2005-06-16 Colin Walters <walters@verbum.org>
1401 * glib/dbus-binding-tool-glib.c:
1402 * glib/dbus-gobject.c:
1403 * glib/dbus-gproxy.c: Add Nokia copyright; Patch
1404 from Ross Burton, for his GLib bindings work.
1406 2005-06-16 Colin Walters <walters@verbum.org>
1408 * glib/dbus-gobject.c (funcsig_hash, funcsig_equal): Use n_params
1409 to iterate instead of walking to G_TYPE_INVALID.
1411 Patch based on a patch from Ryan Gammon.
1413 2005-06-16 Colin Walters <walters@verbum.org>
1415 * bus/bus.c (bus_context_new): Set parser to NULL
1416 after we unref it (Patch from Chris Boscolo, #2174).
1418 2005-06-16 Colin Walters <walters@verbum.org>
1420 * python/dbus_bindings.pyx.in: Import size_t,
1421 __int64_t, __uint64_t, and __signed.
1423 * dbus/dbus-sysdeps.c <HAVE_CMSGCRED> (write_credentials_byte):
1424 Define cmsg struct, output it.
1425 (_dbus_read_credentials_unix_socket):
1428 Patch from Joe Markus Clarke for FreeBSD support.
1430 2005-06-16 Colin Walters <walters@verbum.org>
1432 * tools/dbus-send.c (append_array): Use strtok.
1433 (append_dict): New function.
1434 (type_from_name): New function, extracted from main.
1435 (main): Handle sending dicts.
1437 * tools/dbus-print-message.c (print_iter): Print dict
1440 2005-06-16 Colin Walters <walters@verbum.org>
1442 * glib/dbus-gvalue.c (marshal_basic): Marshal NULL string
1443 values as the empty string (#2948).
1445 2005-06-16 Colin Walters <walters@verbum.org>
1448 * mono/doc/Makefile.am:
1449 * test/glib/Makefile.am:
1451 Fix srcdir != builddir issues (Patch from Chris Wilson, #3477)
1453 2005-06-16 Colin Walters <walters@verbum.org>
1455 * dbus/dbus-marshal-header.c (_dbus_header_load): Set
1456 header byte order from expected byte order (Patch from Chris Wilson, #3475).
1458 * dbus/dbus-marshal-byteswap.c (byteswap_body_helper):
1459 Increment pointer after swapping fixed array. Add assertion
1462 2005-06-15 Colin Walters <walters@verbum.org>
1464 * dbus/dbus-sysdeps.c <HAVE_CMSGCRED> (_dbus_read_credentials_unix_socket):
1465 Fix call to dbus_set_error. (Patch from Michael Banck, #3461)
1467 2005-06-15 John (J5) Palmieri <johnp@redhat.com>
1469 * NEWS: Update to 0.34
1471 2005-06-15 David Zeuthen <davidz@redhat.com>
1473 * configure.in (LT_CURRENT): Revert back to 1 as the library
1474 hasn't changed and we've certainly not committed to protocol
1475 stability yet. All this does is to break ABI. See commit note
1476 from hp@redhat.com 2005-05-05 for details.
1478 2005-06-15 John (J5) Palmieri <johnp@redhat.com>
1480 * dbus/dbus-connection.c (_dbus_connection_peer_filter): New method
1481 (_dbus_connection_run_builtin_filters): New method
1482 (dbus_connection_dispatch): Run the builtin filters which in turn
1483 runs the peer filter which handles Ping messages.
1486 - Ping isn't handled: This patch fixes it
1488 - Add a test case for the Ping message: added TODO item
1490 2005-06-15 John (J5) Palmieri <johnp@redhat.com>
1492 * dbus/dbus-message.c:
1493 (dbus_message_has_path): New method
1494 (dbus_message_has_interface): New method
1495 (dbus_message_has_member): New method
1497 * dbus/dbus/dbus-sysdeps.c (_dbus_check_dir_is_private_to_user):
1500 * dbus/dbus-keyring.c (_dbus_keyring_reload): Check to see that
1501 the keyring directory is private to the user
1504 - The convenience functions in dbus-bus.h should perhaps have
1505 the signatures that they would have if they were autogenerated
1506 stubs. e.g. the acquire service function. We should also evaluate
1507 which of these functions to include, in light of the fact that
1508 GLib/Qt native stubs will probably also exist.: Punted
1510 - add dbus_message_has_path(), maybe has_member/interface:
1513 - in dbus-keyring.c, enforce that the keyring dir is not
1514 world readable/writable: Fixed in this patch
1516 2005-06-15 John (J5) Palmieri <johnp@redhat.com>
1518 * dbus/dbus-marshal-validate.h: Added a new validation
1519 error code DBUS_VALIDITY_UNKNOWN_OOM_ERROR = -4 for
1520 out of memory errors when validating signitures
1522 * dbus/dbus-marshal-header.c: use DBUS_VALIDITY_UNKNOWN_OOM_ERROR
1523 in places where we previously used DBUS_VALID and a FALSE return
1524 value to indicate OOM
1526 * dbus/dbus-marshal-validate.c (_dbus_validate_signature_with_reason):
1527 Use a stack to track the number of elements inside containers. The
1528 stack values are then used to validate that dict entries have only two
1529 elements within them.
1530 (validate_body_helper): check the reason for failure when validating
1533 * dbus/dbus-message.c (load_message): use
1534 DBUS_VALIDITY_UNKNOWN_OOM_ERROR in places where we previously used
1535 DBUS_VALID and a FALSE return value to indicate OOM
1537 * doc/TODO: remove "- validate dict entry number of fields" as this
1540 2005-06-14 David Zeuthen <davidz@redhat.com>
1542 * bus/bus.c (process_config_every_time): Drop existing conf-dir
1543 watches (if applicable) and add new watches
1545 * bus/main.c (signal_handler): Handle SIGIO if using D_NOTIFY
1546 (main): Setup SIGIO signal handler if using D_NOTIFY
1548 * bus/config-parser.h: Add prototype bus_config_parser_get_conf_dirs
1550 * bus/config-parser.c (struct BusConfigParser): Add conf_dirs list
1551 (merge_included): Also merge conf_dirs list
1552 (bus_config_parser_unref): Clear conf_dirs list
1553 (include_dir): Add directory to conf_dirs list
1554 (bus_config_parser_get_conf_dirs): New function
1556 * bus/dir-watch.[ch]: New files
1558 * bus/Makefile.am (BUS_SOURCES): Add dir-watch.[ch]
1560 * configure.in: Add checks for D_NOTIFY on Linux
1562 2005-06-14 Colin Walters <walters@verbum.org>
1564 * glib/dbus-binding-tool-glib.c:
1565 * glib/dbus-gobject.c:
1566 * glib/dbus-gvalue.c: Fix indentation and brace style.
1568 2005-06-14 Ross Burton <ross@openedhand.com>.
1570 * glib/dbus-glib.h: Make DBusGMethodInvocation
1571 a private structure. Rearrange prototypes a bit.
1573 * glib/dbus-gproxy.c (dbus_g_proxy_invoke): Add
1574 documentation for first_arg_type.
1576 * glib/dbus-gobject.c: Move DBusGMethodInvocation
1577 here, add documentation. Move dbus_g_method_return
1578 and dbus_g_method_return_error into public API
1581 2005-06-14 Colin Walters <walters@verbum.org>
1583 * glib/dbus-gobject.c (_dbus_gobject_lookup_marshaller):
1584 Add missing return statements, noticed by Ross Burton.
1586 2005-06-13 Ross Burton <ross@openedhand.com>.
1588 * glib/dbus-gobject.c: Handle errors on message
1589 demarshalling by sending error message back.
1590 * glib/dbus-gvalue.c: Initialize return variables.
1592 2005-06-13 Colin Walters <walters@verbum.org>
1594 * glib/Makefile.am: Fix thinko in last patch.
1596 2005-06-13 Colin Walters <walters@verbum.org>
1598 * glib/Makefile.am: Move dbus-gtype-specialized.c
1599 and dbus-gtype-specialized.h into a _HEADERS variable,
1602 2005-06-12 Colin Walters <walters@verbum.org>
1604 Async signals and various bugfixes and testing by
1605 Ross Burton <ross@openedhand.com>.
1607 * glib/dbus-gvalue.h: (struct DBusBasicGValue): Delete.
1608 (dbus_gvalue_genmarshal_name_from_type)
1609 (dbus_gvalue_ctype_from_type): Moved to dbus-binding-tool-glib.c.
1610 (dbus_gtype_to_dbus_type): Renamed to dbus_gtype_from_signature.
1611 (dbus_g_value_types_init, dbus_gtype_from_signature)
1612 (dbus_gtype_from_signature_iter, dbus_gtype_to_signature)
1613 (dbus_gtypes_from_arg_signature): New function prototypes.
1614 (dbus_gvalue_demarshal): Take context and error arguments.
1615 (dbus_gvalue_demarshal_variant): New function.
1616 (dbus_gvalue_demarshal_message): New function.
1617 (dbus_gvalue_store): Delete.
1619 * glib/dbus-gvalue.c:
1621 File has been almost entirely rewritten; now we special-case
1622 more types such as DBUS_TYPE_SIGNATURE, handle arrays and
1623 hash tables correctly, etc. Full support for recursive values
1624 is not yet complete.
1626 * glib/dbus-gproxy.c (dbus_g_proxy_class_init): Change last
1627 argument of signal to G_TYPE_POINTER since we now pass a
1629 (lookup_g_marshaller): Delete in favor of
1630 _dbus_gobject_lookup_marshaller.
1631 (marshal_dbus_message_to_g_marshaller): Use
1632 _dbus_gobject_lookup_marshaller and dbus_gvalue_demarshal_message
1633 to handle remote signal callbacks.
1634 (dbus_g_proxy_new_from_proxy): New function; creates a new
1635 DBusGProxy by copying an existing one.
1636 (dbus_g_proxy_get_interface, dbus_g_proxy_set_interface)
1637 (dbus_g_proxy_get_path): New functions.
1638 (dbus_g_proxy_marshal_args_to_message): New function;
1639 factored out of existing code.
1640 (DBUS_G_VALUE_ARRAY_COLLECT_ALL): Collect all arguments
1641 from a varargs array.
1642 (dbus_g_proxy_begin_call_internal): New function.
1643 (dbus_g_proxy_end_call_internal): New function.
1644 (dbus_g_proxy_begin_call): Take GTypes instead of DBus types
1645 as arguments; simply invoke dbus_g_proxy_begin_call_internal
1646 after collecting args into value array.
1647 (dbus_g_proxy_end_call): Take GTypes instead of DBus types;
1648 invoke dbus_g_proxy_end_call_internal.
1649 (dbus_g_proxy_invoke): Simply invoke begin_call_interanl and
1651 (dbus_g_proxy_call_no_reply): Take GTypes instead of DBus
1653 (array_free_all): New function.
1654 (dbus_g_proxy_add_signal): Take GTypes.
1656 * glib/dbus-gobject.h:
1657 (_dbus_glib_marshal_dbus_message_to_gvalue_array): Delete.
1658 (_dbus_gobject_get_path, _dbus_gobject_lookup_marshaller):
1661 * glib/dbus-gobject.c: Add a global marshal_table hash which
1662 stores mappings from type signatures to marshallers. Change lots
1663 of invocations of dbus_gtype_to_dbus_type to
1664 dbus_gtype_to_signature.
1665 (_dbus_glib_marshal_dbus_message_to_gvalue_array): Delete.
1666 (introspect_signals): Fix test for query.return_type.
1667 (set_object_property): Update invocation of dbus_gvalue_demarshal.
1668 (invoke_object_method): Many changes. Handle asynchronous
1669 invocations. Convert arguments with
1670 dbus_gvalue_demarshal_message. Handle errors. Use
1671 DBusSignatureIter instead of strlen on args. Handle all arguments
1672 generically. Special-case variants.
1673 (dbus_g_method_return, dbus_g_method_return_error): New function.
1674 (DBusGSignalClosure): New structure, closes over signal
1676 (dbus_g_signal_closure_new): New function.
1677 (dbus_g_signal_closure_finalize): New function.
1678 (signal_emitter_marshaller): New function; is special marshaller
1679 which emits signals on bus.
1680 (export_signals): New function; introspects object signals and
1682 (dbus_g_object_type_install_info): Take GType instead of
1684 (dbus_g_connection_register_g_object): Invoke export_signals.
1685 (dbus_g_connection_lookup_g_object): New function.
1686 (DBusGFuncSignature) New structure; used for mapping type
1687 signatures to marshallers.
1688 (funcsig_hash): New function; hashes DBusGFuncSignature.
1689 (funcsig_equal): New function; compares DBusGFuncSignature.
1690 (_dbus_gobject_lookup_marshaller): New function.
1691 (dbus_g_object_register_marshaller): New function; used to
1692 register a marshaller at runtime for a particular signature.
1694 * glib/dbus-gmain.c (_dbus_gmain_test): Add various tests.
1696 * glib/dbus-binding-tool-glib.h: Add DBUS_GLIB_ANNOTATION_ASYNC
1697 which notes a server method implementation should be
1700 * glib/dbus-binding-tool-glib.c
1701 (dbus_binding_tool_output_glib_server): Call
1702 dbus_g_value_types_init.
1703 (write_formal_parameters): Use dbus_gtype_from_signature. Handle
1705 (dbus_g_type_get_lookup_function): Turn GType into an invocation
1706 of a lookup function.
1707 (write_args_for_direction): Use dbus_g_type_get_lookup_function.
1708 (write_untyped_out_args): New method; write output arguments.
1709 (write_formal_declarations_for_direction): Function for
1711 (write_formal_parameters_for_direction): Function for
1712 writing implementations.
1713 (write_typed_args_for_direction): Function for writing
1714 arguments prefixed with GTypes.
1715 (write_async_method_client): Write out async version
1718 * glib/dbus-binding-tool-glib.c: Include dbus-gvalue-utils.h.
1719 (dbus_g_type_get_marshal_name): Move mapping from GType
1720 to marshal name into here.
1721 (dbus_g_type_get_c_name): Move into here.
1722 (compute_marshaller): Convert signature to type with
1723 dbus_gtype_from_signature, use dbus_g_type_get_marshal_name.
1724 (compute_marshaller_name): Ditto.
1725 (compute_marshaller): Handle async signal annotations.
1726 (gather_marshallers): Return if we don't have a known
1728 (generate_glue): Collect introspection blob here, and
1729 write all of the blob at the end. This allows an object
1730 with multiple interfaces to work.
1731 Mark async methods in introspection blob.
1733 * glib/Makefile.am (libdbus_glib_1_la_SOURCES): Add
1734 dbus-gtype-specialized.c, dbus-gtype-specialized.h,
1735 dbus-gvalue-utils.h, dbus-gvalue-utils.c.
1737 * dbus/dbus-glib.h: Don't include dbus-protocol.h; this
1738 avoids people accidentally using DBUS_TYPE_* which should
1739 not be necessary anymore.
1740 Do include dbus-gtype-specialized.h, which are utilities
1741 for GLib container types.
1742 Add various #defines for types such as
1743 DBUS_TYPE_G_BOOLEAN_ARRAY.
1744 (DBusGValueIterator, DBusGValue): Define, not fully used
1746 (dbus_g_value_get_g_type): Type for recursive value.
1747 (dbus_g_value_open, dbus_g_value_iterator_get_value)
1748 (dbus_g_value_iterator_get_values, dbus_g_value_iterator_recurse)
1749 (dbus_g_value_free): Prototypes.
1750 (dbus_g_object_register_marshaller, dbus_g_proxy_new_from_proxy): Prototype.
1751 (dbus_g_proxy_set_interface): Prototype.
1752 (dbus_g_proxy_begin_call, dbus_g_proxy_end_call)
1753 (dbus_g_proxy_call_no_reply): Take GLib types instead of DBus
1755 (dbus_g_proxy_get_path, dbus_g_proxy_get_interface):
1757 (DBusGAsyncData, DBusGMethodInvocation): Structures for
1758 doing async invocations.
1759 (dbus_g_method_return, dbus_g_method_return_error):
1761 * doc/dbus-tutorial.xml: Update GLib section.
1763 * tools/dbus-viewer.c (load_child_nodes): Update
1764 for new invocation type of dbus_g_proxy_end_call.
1765 (load_from_service_thread_func): Ditto.
1767 * tools/print-introspect.c (main): Ditto.
1769 * tools/dbus-names-model.c (have_names_notify)
1770 (names_model_reload, names_model_set_connection)
1773 * python/Makefile.am (INCLUDES): Define DBUS_COMPILATION,
1774 needed since Python bindings use GLib bindings.
1776 * test/glib/Makefile.am (INCLUDES): Define DBUS_COMPILATION.
1777 Add --prefix argument.
1779 * tools/Makefile.am: Define DBUS_COMPILATION. Remove
1780 unneeded --ignore-unsupported arg.
1782 * test/glib/test-service-glib.c:
1783 * test/glib/test-service-glib.xml:
1784 * test/glib/test-dbus-glib.c: Add many more tests.
1786 2005-06-06 David Zeuthen <davidz@redhat.com>
1788 * doc/TODO: Add item about need to remove deprecated functions.
1790 * dbus/dbus-connection.h: Add prototype for dbus_connection_disconnect
1792 * dbus/dbus-connection.c (dbus_connection_disconnect): New function
1793 to repair the ABI which was broken with the last commit.
1795 2005-06-02 John (J5) Palmieri <johnp@redhat.com>
1797 * dbus/dbus-connection.c, dbus/dbus-connection.h
1798 (dbus_connection_disconnect): renamed to dbus_connection_close
1799 for API symmetry with dbus_connection_open
1800 (_dbus_connection_open_internal):
1801 s/dbus_connection_disconnect/dbus_connection_close
1803 * dbus/dbus-bus.c (dbus_bus_get):
1804 s/dbus_connection_disconnect/dbus_connection_close
1806 * bus/connection.c (bus_connections_unref,
1807 bus_connections_setup_connection, bus_connections_expire_incomplete):
1808 s/dbus_connection_disconnect/dbus_connection_close
1810 * bus/dispatch.c (bus_dispatch, kill_client_connection,
1811 kill_client_connection_unchecked, check_hello_connection):
1812 s/dbus_connection_disconnect/dbus_connection_close
1814 * bus/bus.c (new_connection_callback):
1815 s/dbus_connection_disconnect/dbus_connection_close
1817 * tools/dbus-send.c (main):
1818 s/dbus_connection_disconnect/dbus_connection_close
1820 * test/glib/test-profile.c (no_bus_thread_func, with_bus_thread_func):
1821 s/dbus_connection_disconnect/dbus_connection_close
1823 * test/test-service.c (path_message_func, filter_func):
1824 s/dbus_connection_disconnect/dbus_connection_close
1826 * doc/TODO: remove connection_open/connection_disconnect lacks symmetry item that was just fixed
1828 2005-05-25 Colin Walters <walters@verbum.org>
1830 * dbus/dbus-protocol.h: Move various bus service #defines such
1831 as DBUS_SERVICE_DBUS and DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT to
1833 * dbus/dbus-shared.h: Various defines moved here.
1834 * dbus/dbus-marshal-header.c: Include dbus-shared.h.
1836 2005-05-25 John (J5) Palmieri <johnp@redhat.com>
1838 * python/__init__.py: Python bindings deserve a minor version
1839 update. Upped to (0, 40, 2)
1841 2005-05-24 John (J5) Palmieri <johnp@redhat.com>
1843 * python/decorators.py: add explicitly_pass_message decorator
1844 for passing in the dbus message as keyword for edge case signal
1847 * python/matchrules.py (SignalMatchRule.__repr__): fix output
1848 to conform with what dbus expects for match rules
1849 (SignalMatchRule.execute): add the dbus message as a keyword
1850 if the signal handler has requested it
1852 * python/examples/example/signal-recipient.py: added some more
1853 examples on how to hook up to signals
1855 2005-05-23 John (J5) Palmieri <johnp@redhat.com>
1857 * python/decorators.py: import dbus_bindings
1859 * python/matchrules.py (SignalMatchRule, SignalMatchTree,
1860 SignalMatchNode): new classes that implement wildcard signal
1861 callback matching using a tree lookup. Heavily modified from a
1862 patch sent by Celso Pinto (fd.o bug #3241)
1864 * _dbus.py (add_signal_receiver, remove_signal_receiver, _signal_func):
1865 use new match classes to handle signals.
1867 2005-05-19 John (J5) Palmieri <johnp@redhat.com>
1869 * python/dbus_bindings.pyx.in: s/TYPE_PATH/TYPE_OBJECT_PATH
1871 2005-05-18 Havoc Pennington <hp@redhat.com>
1873 * configure.in: use GLIB_GNU_GETTEXT to get INTLLIBS and require
1874 gettext. Not really worth requiring yet perhaps, but any
1875 production quality 1.0 would require it so we should go ahead and
1876 get things set up. We do have a couple token calls to
1877 bindtextdomain in the code already.
1879 2005-05-16 John (J5) Palmieri <johnp@redhat.com>
1881 * glib/dbus-gmain.c (io_handler_dispatch): fix deadlock
1882 when using recursive g_main_loops
1884 * python/_dbus.py (class Bus): add the ProxyObjectClass
1885 alias for ProxyObject to make it easier for the Twisted
1886 networking framework to integrate dbus.
1888 * python/proxies.py (class ProxyObject): add the ProxyMethodClass
1889 alias for ProxyMethod to make it easier for the Twisted
1890 networking framework to integrate dbus.
1892 2005-05-11 Ross Burton <ross@openedhand.com>
1894 * glib/dbus-glib-tool.c: Add --prefix argument.
1895 * glib/dbus-binding-tool-glib.h: Add prefix argument.
1896 * glib/dbus-binding-tool-glib.c (compute_marshaller_name):
1897 Add prefix argument.
1898 (generate_glue): Pass prefix argument down.
1899 (dbus_binding_tool_output_glib_server): Pass prefix to
1902 2005-05-11 Colin Walters <walters@verbum.org>
1904 * tools/dbus-send.c (append_array): New function.
1905 (append_arg): Broken out from main.
1906 (main): Add cheesy hack to send arrays and variants.
1908 * tools/dbus-print-message.c (print_iter): Broken out
1911 2005-05-11 Colin Walters <walters@verbum.org>
1913 * dbus/dbus-signature.c (dbus_signature_iter_get_signature):
1914 New function, returns signature string for signature iter.
1915 * dbus/dbus-signature.h: Prototype it.
1916 * dbus/dbus-message.c (dbus_message_iter_get_signature):
1917 New function, returns signature string for message iter.
1918 (dbus_message_iter_get_array_len): New function, returns
1920 (dbus_message_iter_get_fixed_array): Fix assertion; this
1921 function should be used when the iter is pointing to the
1922 contents of an array
1923 * dbus/dbus-message.h: Prototypes.
1924 * dbus/dbus-marshal-recursive.c (_dbus_type_reader_get_array_length):
1925 New function; returns length of an array.
1926 * dbus/dbus-marshal-recursive.h: Prototype it.
1928 2005-05-11 Colin Walters <walters@verbum.org>
1930 * dbus/dbus-sysdeps-util.c <!HAVE_POSIX_GETPWNAM_R>: Fix
1933 2005-05-08 Havoc Pennington <hp@redhat.com>
1935 * dbus/dbus-sysdeps-util.c (_dbus_become_daemon): write the
1936 daemon's pid, not the parent's pid, to the file descriptor.
1937 Reported by Taj Morton.
1939 2005-05-05 Havoc Pennington <hp@redhat.com>
1941 * configure.in (LT_*): add notes on how the libtool versioning
1942 works to save thinking. Increment soname to indicate protocol
1943 breakage (though really the library interface hasn't changed I
1946 * dbus/dbus-transport.c (_dbus_transport_get_is_authenticated):
1947 verify the GUID received from server matches what we were
1948 expecting, if we had an expectation
1950 * dbus/dbus-auth.c (send_ok): send GUID along with the OK command
1951 (_dbus_auth_get_guid_from_server): new function
1952 (send_begin): parse the OK args
1954 * doc/dbus-specification.xml: add GUID to the auth protocol
1956 2005-05-05 John (J5) Palmieri <johnp@redhat.com>
1958 * Fix my name in previous changelog ;)
1960 * python/proxies.py (ProxyObject.__getattr__): add further patch
1961 from Anthony Baxter to throw an AttributeError when python
1962 __special__ functions are called instead of marshling them over
1963 the bus (Bug#1685 comment 3).
1965 2005-05-04 John (J5) Palmieri <johnp@redhat.com>
1967 * python/Makefile.am: changed to use pyexecdir for the binding
1968 shared libraries (Bug#2494)
1970 * python/exceptions.py: bring exceptions over from the bindings
1971 so they can be used in applications (Bug#2036)
1972 Make all exceptions derive from DBusException
1974 * python/_dbus.py, python/proxies.py: implement __repr__ in a couple
1975 of classes so that print obj doesn't throw an exception (Bug #1685)
1977 2005-05-03 Ross Burton <ross@openedhand.com>
1979 * glib/dbus-gobject.c (dbus_g_connection_register_g_object):
1980 Return if we get an error during registration. Set up a
1981 weak reference on object to unregister if object is destroyed.
1982 (unregister_gobject): New function.
1984 2005-05-01 John (J5) Palmieri <johnp@redhat.com>
1986 * python/dbus_bindings.pyx.in:
1987 - added new type classes for hinting to the marashaler what type
1988 to send over the wire
1989 - added int16 and uint16 marshalers
1990 - Fixed a bug in the type constants that caused int32 to go out
1991 as uint16 over the wire
1992 * python/dbus.py: split up into different files and renamed _dbus.py
1993 * python/__init__.py, python/_util.py, python/decorators.py,
1994 python/exceptions.py, python/proxies.py, python/services.py,
1995 python/types.py: new files split off from dbus.py
1996 * python/Makefile.am: Add new files, remove dbus.py and
1997 install all python files to <python module dir>/dbus
1998 * python/examples/*: Added #!/usr/bin/env python to the top of
1999 every example. Patch provided by Tatavarty Kalyan
2001 2005-04-25 John (J5) Palmieri <johnp@redhat.com>
2003 * NEWS: Update to 0.33
2005 2005-04-25 John (J5) Palmieri <johnp@redhat.com>
2007 * python/dbus_bindings.pyx.in (send_with_reply_handlers): New send
2008 method for doing async calls
2009 (_pending_call_notification): New C function for handling pendning call
2011 (set_notify): New method for setting pending call notification
2013 * python/dbus.py: new version tuple "version" is set at (0, 40, 0)
2014 Async capabilities added to remote method calls
2015 (Sender): class removed
2016 (RemoteService): class removed
2017 (ObjectTree): class removed for now
2018 (RemoteObject): Renamed to ProxyObject
2019 (RemoteMethod): Renamed to ProxyMethod
2020 (method): Decorator added for decorating python methods as dbus methods
2021 (signal): Decorator added for decorating python methods as signal emitters
2022 (ObjectType): Metaclass added for generating introspection data and the
2023 method callback vtable
2024 (Interface): Wrapper class added to wrap objects in a dbus interface
2025 (Object): Uses ObjectType as its metaclass and exports Introspect
2026 of the org.freedesktop.DBus.Introspectable interface
2027 (ValidationException, UnknownMethodException): new exceptions
2029 * python/examples/*: Modified to fit with the new bindings
2031 2005-04-23 Havoc Pennington <hp@redhat.com>
2033 * dbus/dbus-message.c (dbus_message_append_args): fix doc comment,
2034 reported by Tony Houghton
2036 * test/test-service.c (main): test
2037 dbus_connection_get_object_path_data()
2039 * dbus/dbus-object-tree.c (find_handler): be sure we always init
2041 (_dbus_object_tree_get_user_data_unlocked): new function used by
2042 dbus_connection_get_object_path_data()
2043 (do_register): add assertion test for get_user_data_unlocked
2044 (object_tree_test_iteration): more tests
2046 * dbus/dbus-connection.c (dbus_connection_get_object_path_data):
2047 new function from Dan Reed to let you get the user data from
2048 dbus_connection_register_object_path()
2050 2005-04-23 John (J5) Palmieri <johnp@redhat.com>
2052 * dbus/dbus-marshal-recursive-util.c: Fixed buffer overflow
2053 in numerous places that did not account for the NULL terminator
2054 (signature_from_seed): changed the manual string copy loop to
2055 just use strcpy instead
2056 make check should now pass
2058 2005-04-19 John (J5) Palmieri <johnp@redhat.com>
2060 * dbus/dbus-marshal-header.c (_dbus_header_create): Fix assert
2061 so that it allows messages that are not signals to pass in
2062 NULL as the interface.
2064 2005-04-18 David Zeuthen <davidz@redhat.com>
2066 * glib/dbus-gmain.c (io_handler_destroy_source):
2067 (timeout_handler_destroy_source, connection_setup_free):
2068 Also unref the source to avoid memory leaks.
2070 2005-04-13 David Zeuthen <davidz@redhat.com>
2072 * bus/config-parser.c (bus_config_parser_new): Bump this to a
2073 more reasonable, yet still totally arbitrary, value :-).
2075 2005-04-13 David Zeuthen <davidz@redhat.com>
2077 * doc/TODO: Added an "important for 1.0" item about selinux
2080 2005-04-13 David Zeuthen <davidz@redhat.com>
2082 * bus/selinux.c: Add c-file-style to top of file
2083 (log_audit_callback): Don't free the data here anymore
2084 (bus_selinux_check): Don't take spid and tpid since appending
2085 that to auxdata may OOM.
2086 (bus_selinux_allows_acquire_service): Handle OOM and signal back
2087 to the caller if we are OOM by taking an error object.
2088 (bus_selinux_allows_send): -do-
2090 * bus/selinux.h: Fix prototypes for bus_selinux_allows_acquire_service
2091 and bus_selinux_allows_send
2093 * bus/bus.c (bus_context_check_security_policy): Pass error and
2094 pass on OOM thrown by bus_selinux_allows_send()
2096 * bus/services.c (bus_registry_acquire_service): Pass error and
2097 pass on OOM thrown by bus_selinux_allows_acquire_service()
2099 2005-04-13 Havoc Pennington <hp@redhat.com>
2101 * glib/dbus-gmain.c (message_queue_dispatch): only dispatch one
2102 message at a time to avoid monopolizing the main loop, bug
2103 #2953 from Benjamin Otte
2105 2005-04-09 Havoc Pennington <hp@redhat.com>
2107 * dbus/dbus-string.c (copy): change a memcpy to memmove due to
2108 possible overlap, fix from Daniel Reed
2109 (fixup_alignment): fix signedness warnings
2110 (_dbus_string_append_unichar): ditto
2112 2005-04-09 Havoc Pennington <hp@redhat.com>
2114 * dbus/dbus-message-util.c (_dbus_message_test): fix signedness warning
2116 * glib/dbus-glib-tool.c (main): fix warning
2118 * glib/dbus-binding-tool-glib.c (generate_glue): fix warning
2120 * dbus/dbus-connection.c (dbus_connection_read_write_dispatch):
2121 add a new function that can be used in simple applications that
2122 don't have a main loop and are willing to block
2124 2005-04-05 David Zeuthen <davidz@redhat.com>
2126 Fix https://bugs.freedesktop.org/show_bug.cgi?id=2889
2128 * glib/dbus-gmain.c:
2129 (io_handler_destroy_source): Remove from list of IO handlers
2130 of the ConnectionSetup object
2131 (timeout_handler_destroy_source): -do- for timeout handlers
2132 (io_handler_source_finalized): Don't remove from list since
2133 we now do that in io_handler_destroy_source(). Renamed from
2134 io_handler_source_destroyed
2135 (timeout_handler_source_destroyed): -do- for timeout handlers
2136 (connection_setup_free): It is now safe to iterate over all
2137 IO and timeout handlers as the _destroy_source removes them
2138 from the list synchronously
2140 2005-03-30 Havoc Pennington <hp@redhat.com>
2142 * configure.in: change check to gtk 2.4
2144 * tools/dbus-viewer.c (name_combo_changed_callback): remove
2145 gtk_combo_box_get_active_text() usage to decrement GTK requirement
2148 2005-03-29 John (J5) Palmieri <johnp@redhat.com>
2152 * HACKING: Fixed realease instructions. configure.in should be updated to
2153 the next release by the person who made the last release.
2155 2005-03-29 John (J5) Palmieri <johnp@redhat.com>
2157 * python/lvalue_cast_post_process.py - removed. Patch has been
2158 submitted to Pyrex maintainers that fixes gcc4.0 errors
2160 * python/Makefile.am: removed refrences to lvalue_cast_post_process.py
2162 2005-03-24 Daniel Reed <n@ml.org>
2164 * tools/Makefile.am: Make print-introspect and
2165 dbus-bus-introspect.xml building conditional on HAVE_GLIB.
2167 2005-03-22 John (J5) Palmieri <johnp@redhat.com>
2169 * tools/Makefile.am: Patch by Colin Walters that fixes distcheck
2171 * dbus/dbus-userdb.c, dbus/dbus-userdb-util.c: Add patch we have
2172 had in Red Hat packages for a while but for some reason never
2174 (_dbus_is_a_number): New checks if a string
2175 can be converted to a number and does the conversion if it can
2176 (_dbus_user_database_lookup): Add check to see if the given username
2177 is a udi. This allows udi's to be used instead of usernames in the
2179 (_dbus_user_database_lookup_group): Add check to see if the given groupname
2180 is a gdi. This allows gdi's to be used instead of groupnames in the
2183 2005-03-21 John (J5) Palmieri <johnp@redhat.com>
2185 * python/lvalue_cast_post_process.py - added post processor to fix Pyrex
2186 code so that it compiles with gcc4.0
2188 * python/Makefile.am: Added lvalue_cast_post_process.py to EXTRA_DIST
2189 run dbus_bindings.c through lvalue_cast_post_process.py and copy the
2190 results back to dbus_binding.c
2192 2005-03-20 Colin Walters <walters@verbum.org>
2194 Patch suggested by Inguva Rajasekhar <ringuva@novell.com>.
2196 * configure.in: Require GTK+ 2.6.
2198 2005-03-20 Colin Walters <walters@verbum.org>
2200 * Makefile.am (SUBDIRS, DIST_SUBDIRS): Build tools before test.
2202 2005-03-17 Tom Parker <palfrey@tevp.net>
2204 * dbus/dbus-userdb.c (_dbus_user_database_lookup): Don't
2205 print DBUS_UID_UNSET; instead print passed username. Also
2206 be sure to actually use gid looked up in cache.
2208 * dbus/dbus-userdb-util.c (_dbus_user_database_lookup_group): Ditto
2209 for DBUS_GID_UNSET and groupname.
2211 2005-03-17 Colin Walters <walters@verbum.org>
2213 * bus/print-introspect.c: Move to tools/.
2214 * bus/run-with-tmp-session-bus.sh: Ditto.
2216 * glib/Makefile.am (dbus-glib-bindings.h): Move
2217 generation to tools/Makefile.am.
2219 * test/glib/run-test.sh: Update to handle move
2220 of run-with-tmp-session-bus.sh.
2222 * test/glib/test-service-glib.c: Update to handle
2223 move of dbus-glib-bindings.h.
2225 * tools/print-introspect.c: Moved here
2226 from bus/, and ported to GLib bindings.
2228 * tools/run-with-tmp-session-bus.sh: Moved here
2231 * tools/Makefile.am: Generate dbus-glib-bindings.h
2232 and dbus-bus-introspect.xml here.
2234 * tools/.cvsignore, glib/.cvsignore, bus/.cvsignore:
2237 2005-03-17 Colin Walters <walters@verbum.org>
2239 * bus/driver.c (write_args_for_direction): Use
2240 _dbus_string_get_const_data to retrieve string;
2241 _dbus_string_get_const_data_len doesn't actually return
2242 a NULL-terminated substring.
2244 * test/glib/test-service-glib.c: Include dbus-glib-bindings.h.
2245 (main): Change to use org_freedesktop_DBus_request_name
2246 instead of using g_proxy_begin_call/end_call.
2248 2005-03-15 Joe Shaw <joeshaw@novell.com>
2250 * mono/ProxyBuilder.cs (BuildFinalizer): Fix some invalid IL when
2251 generating the finalizer. Fixes from Ben Maurer.
2253 2005-03-12 Joe Shaw <joeshaw@novell.com>
2255 * mono/BusDriver.cs: Update method names: ListServices
2256 becomes ListNames; GetOwner becomes GetNameOwner.
2258 * mono/ProxyBuilder.cs (BuildFinalizer): Need to load arg 0
2259 onto the eval stack when removing the delegate.
2261 2005-03-12 Joe Shaw <joeshaw@novell.com>
2263 * mono/dbus-sharp.dll.config.in: Don't hardcode 0 for
2264 LT_CURRENT. Set it to the autoconf variable.
2266 * mono/ProxyBuilder.cs: Add a finalizer to the generated proxy
2267 classes that disconnects the signal handler delegate from the
2268 service object. Fixes a big leak of proxy objects on the
2269 client side of things. Patch from Ben Maurer
2270 <bmaurer@ximian.com>
2272 2005-03-12 Colin Walters <walters@verbum.org>
2274 * bus/driver.c (write_args_for_direction): New function,
2275 parses a type signature into arguments and outputs to
2277 (bus_driver_handle_introspect): Use it instead of
2278 hardcoding XML for certain signatures.
2280 * bus/Makefile.am (dbus-bus-introspect.xml): Add
2281 dependency on dbus-daemon.
2283 * glib/dbus-glib-tool.c (main): Parse ignore_unsupported
2284 argument, pass it to dbus_binding_tool_output_glib_client.
2286 * glib/dbus-binding-tool-glib.c
2287 (generate_client_glue): Protect against multiple inclusion.
2288 (dbus_binding_tool_output_glib_client): Add
2289 G_BEGIN_DECLS/G_END_DECLS.
2291 * glib/dbus-binding-tool-glib.c (compute_client_method_name):
2292 Change to just take iface prefix directly.
2293 (write_formal_parameters): Clarify error message.
2294 (check_supported_parameters): New function; checks to see type
2295 signatures of method parameters are supported.
2296 (generate_client_glue): Handle ignore_unsupported flag.
2297 (dbus_binding_tool_output_glib_client): Handle ignore_unsupported
2300 * glib/Makefile.am (dbus-glib-bindings.h): Pass
2301 --ignore-unsupported by default until glib bindings
2304 2005-03-11 Colin Walters <walters@verbum.org>
2306 * glib/Makefile.am: Generate dbus-glib-bindings.h and
2309 * bus/print-introspect.c: New file; prints introspection
2310 data for a given name and object path.
2312 * bus/run-with-tmp-session-bus.sh: New file, refactored
2313 from test/glib/run-test.sh. Creates a temporary session
2314 bus and runs another program.
2316 * test/glib/run-test.sh: Refactor to invoke
2317 run-with-tmp-session-bus.sh.
2319 * bus/driver.c (bus_driver_handle_introspect): Fix to print new
2320 introspection format. Also change to use DBUS_TYPE_x_AS_STRING
2321 macros instead of hardcoding.
2323 * glib/.cvsignore, bus/.cvsignore, test/glib/.cvsignore: Update.
2325 2005-03-11 Joe Shaw <joeshaw@novell.com>
2327 * dbus/dbus-connection.c (dbus_connection_send_with_reply): Remove
2328 this unref; it doesn't match up evenly in some codepaths.
2329 (_dbus_connection_block_pending_call): Unref at every exitpoint;
2330 this evenly matches with the ref near the top of this function.
2332 2005-03-09 Joe Shaw <joeshaw@novell.com>
2334 * dbus/dbus-object-tree.c
2335 (_dbus_object_tree_unregister_and_unlock): If checks are enabled
2336 and we try to unregister a path that's not registered, still go
2337 through the process of unlocking and don't just return.
2339 2005-03-09 Colin Walters <walters@verbum.org>
2341 * glib/dbus-gproxy.c (dbus_g_proxy_invoke): New method; calls
2342 to this are generated for client-side wrappers. Invokes a
2343 D-BUS method and returns reply values.
2345 * glib/dbus-binding-tool-glib.c (write_args_sig_for_direction): New
2346 function; writes signature string for argument direction.
2347 (write_args_for_direction): Change to pass input values directly
2348 instead of via address, and fix indentation.
2349 (generate_client_glue): Change to invoke dbus_g_proxy_invoke. Also
2350 make generated wrappers inlineable.
2352 * dbus/dbus-message.c (dbus_message_iter_get_fixed_array): Add
2353 note about using dbus_type_is_fixed.
2355 * dbus/dbus-marshal-basic.c (_dbus_type_is_fixed): Moved to
2356 dbus/dbus-signature.c as dbus_type_is_fixed.
2358 All callers updated.
2360 * dbus/dbus-signature.c (dbus_type_is_fixed): Moved here
2361 from dbus/dbus-marshal-basic.c:_dbus_type_is_fixed.
2363 * dbus/dbus-signature.h: Prototype.
2365 * glib/dbus-binding-tool-glib.c (compute_marshaller_name): Fix
2368 * test/glib/test-dbus-glib.c (main): Be sure to clear error as
2369 appropriate instead of just freeing it.
2370 (main): Free returned strings using g_free.
2372 * test/glib/Makefile.am (test-service-glib-glue.h)
2373 (test-service-glib-bindings.h): Add dependency on dbus-binding-tool.
2375 * glib/dbus-gvalue.c (MAP_BASIC): Refactored from MAP_BASIC_INIT;
2376 simply maps a simple D-BUS type to GType.
2377 (dbus_dbus_type_to_gtype): Function which maps D-BUS type to
2379 (dbus_gvalue_init): Just invoke dbus_dbus_type_to_gtype and
2380 initialize the value with it.
2381 (dbus_gvalue_binding_type_from_type): Unused, delete.
2382 (dbus_gvalue_demarshal): Switch to hardcoding demarshalling for
2383 various types instead of unmarshalling to value data directly.
2384 Remove can_convert boolean.
2385 (dbus_gvalue_marshal): Remove duplicate initialization; switch to
2386 returning directly instead of using can_convert boolean.
2387 (dbus_gvalue_store): New function; not related to D-BUS per-se.
2388 Stores a GValue in a pointer to a value of its corresponding C
2391 * glib/dbus-gvalue.h: Remove dbus_gvalue_binding_type_from_type,
2392 add dbus_gvalue_store.
2394 2005-03-08 Joe Shaw <joeshaw@novell.com>
2396 Fix a bunch of lifecycle and memory management problems
2397 in the mono bindings.
2399 * mono/Arguments.cs (Arguments): Implement IDisposable
2401 * mono/Bus.cs (Bus): Don't allow public instantiation. This is
2402 strictly a static class.
2404 * mono/Connection.cs: Move the DBusObjectPathVTable and associated
2405 delegates into this file.
2406 (Connection): Implement IDisposable.
2407 (Dispose): Disconnect the connection and set the raw connection
2408 pointer to IntPtr.Zero.
2409 (~Connection): Call Dispose().
2410 (RegisterObjectPath): Added. Manages the registration of object
2411 paths so we can cleanly disconnect them at dispose/finalize time.
2412 (UnregisterObjectPath): Ditto.
2413 (set_RawConnection): Unregister all of the object paths when
2414 changing the underlying DBusConnection. Add them back onto the
2415 new connection, if any.
2417 * mono/Handler.cs: Don't implement IDisposable; it doesn't use any
2418 more unmanaged resources anymore, so it's not necessary. Move all
2419 the DBusObjectPathVTable stuff out of here.
2420 (Handler): Save references to our delegates so that they don't get
2421 finalized. Call Connection.RegisterObjectPath() instead of
2422 dbus_connection_register_object_path() directly.
2423 (Message_Called): Dispose the message after we're finished with
2426 * mono/Message.cs (Message): Implement IDisposable.
2427 (Dispose): Dispose the Arguments, and set the RawMessage to
2429 (SendWithReplyAndBlock): We own the ref to the reply that comes
2430 back from dbus_connection_send_with_reply_and_block() so add a
2431 comment about that and unref it after we've constructed a managed
2432 MethodReturn class around it. Fixes a big, big leak.
2434 * mono/ProxyBuilder.cs: Reflect into Message to get the Dispose
2436 (BuildSignalHandler): After we've sent the Signal message, dispose
2438 (BuildMethod): Dispose of the method call and reply messages after
2439 we've sent the message and extracted the data we want from the
2442 * mono/Service.cs (UnregisterObject): Don't call handler.Dispose()
2444 (Service_FilterCalled): Dispose of the message after we're
2447 2005-03-08 Joe Shaw <joeshaw@novell.com>
2449 * dbus/dbus-connection.c (dbus_connection_send_with_reply):
2450 After we attach our pending call to the connection, unref
2453 * mono/Connection.cs (set_RawConnection): Disconnect our
2454 filter and match callbacks from the old connection and
2455 reconnect them to the new connection, if any.
2457 * mono/DBusType/Array.cs: "Code" is a static member, so
2458 don't use "this" to refer to it. Fix for stricter checking
2461 * mono/DBusType/ObjectPath.cs (Append): Don't leak the
2462 object path that we pass into unmanaged code.
2464 * mono/DBusType/String.cs (Append): Don't leak the string
2465 that we pass into unmanged code.
2467 2005-03-07 John (J5) Palmieri <johnp@redhat.com>
2468 * NEWS: Update for 0.31
2470 * configure.in: Release 0.31
2471 add LT_CURRENT, LT_REVISION, LT_AGE for easy soname bumping
2473 * qt/Makefile.am: fixed build
2475 * dbus/Makefile.am: soname bump for libdbus
2477 * glib/Makefile.am: soname bump for libdbus-glib
2479 2005-03-05 Havoc Pennington <hp@redhat.com>
2481 * dbus/dbus-sysdeps.c:
2482 (pseudorandom_generate_random_bytes_buffer): fix to have no return
2484 (_dbus_generate_random_bytes_buffer): fix return value
2486 * dbus/dbus-sysdeps-util.c: s/GETPWNAME/GETPWNAM/ so configure
2487 checks actually work, from Tom Parker <fdo@tevp.net>
2489 2005-03-01 Colin Walters <walters@verbum.org>
2491 * test/glib/test-dbus-glib.c (lose, lose_gerror): Utility
2492 functions copied from dbus-glib-tool.c.
2493 (main): Convert lots of error code to use them.
2494 Also add some testing for introspection bits.
2496 2005-03-01 Colin Walters <walters@verbum.org>
2498 * doc/TODO: Remove introspection signature TODO.
2500 2005-02-27 Colin Walters <walters@verbum.org>
2502 * glib/dbus-gidl.c (property_info_get_type, arg_info_get_type):
2503 Change return value to const char * instead of int so we can do
2505 (struct PropertyInfo, struct ArgInfo): Store char *.
2506 (property_info_new, arg_info_new): Update parameters, strdup.
2507 (property_info_unref, arg_info_unref): Free.
2509 * glib/dbus-gidl.h: Update prototypes.
2511 * glib/dbus-gparser.c (basic_type_from_string): Delete.
2512 (validate_signature): New function, just validates signature and
2514 (parse_property, parse_arg): Invoke validate_signature. Store
2515 signature instead of just type code.
2517 * glib/dbus-gvalue.c (base_type_from_signature): New utility
2518 function to return a primary type for a signature, dropping
2519 information about types in container types.
2520 (dbus_gvalue_genmarshal_name_from_type)
2521 (dbus_gvalue_binding_type_from_type)
2522 (dbus_gvalue_ctype_from_type): Update to take full signature
2523 instead of type code.
2524 (dbus_gtype_to_dbus_type): Moved here from glib/dbus-gobject.c.
2526 * glib/dbus-gvalue.h: Update prototypes for above.
2528 * glib/dbus-gobject.c (gtype_to_dbus_type): Moved to
2529 glib/dbus-gvalue.c as dbus_gtype_to_dbus_type.
2530 (introspect_properties, introspect_signals, write_interface):
2531 Update to handle signatures, and remove usage of
2532 _dbus_gutils_type_to_string.
2533 (handle_introspect): Print out type codes instead of e.g. "string"
2534 in hardcoded introspection XML; also use x_AS_STRING constants
2535 instead of hardcoding in string.
2537 * glib/dbus-glib-tool.c (pretty_print): Handle signature change
2538 to string. Remove usage of _dbus_gutils_type_to_string.
2540 * glib/dbus-gutils.c (_dbus_gutils_type_to_string): Delete.
2542 * glib/dbus-gutils.h (_dbus_gutils_type_to_string): Update for
2545 * glib/dbus-binding-tool-glib.c (compute_marshaller)
2546 (compute_marshaller_name, generate_glue): Handle signature change
2548 (write_formal_parameters, write_args_for_direction): Ditto, and
2551 * tools/dbus-tree-view.c (type_to_string): Delete.
2552 (info_set_func_text): Update to print full signatures.
2554 * test/glib/test-service-glib.xml: Change types to new
2555 introspection format.
2557 2005-02-26 Havoc Pennington <hp@redhat.com>
2559 * doc/TODO: remove the "guid" item
2561 * test/glib/test-profile.c (no_bus_thread_func): use open_private
2562 (with_bus_thread_func): use open_private
2564 * dbus/dbus-connection.c (dbus_connection_open_private): new
2565 function that works like the old dbus_connection_open()
2566 (dbus_connection_open): now returns an existing connection if
2569 * dbus/dbus-server-unix.c (handle_new_client_fd_and_unlock): pass
2570 through the GUID to the transport
2572 * dbus/dbus-server.c (_dbus_server_init_base): keep around the
2573 GUID in hex-encoded form.
2575 * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
2576 pass GUID argument in to the transport
2578 * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd): add
2581 * dbus/dbus-transport.c (_dbus_transport_init_base): add guid argument
2583 * dbus/dbus-auth.c (_dbus_auth_server_new): add guid argument
2585 2005-02-25 Havoc Pennington <hp@redhat.com>
2587 * doc/dbus-specification.xml: document the GUID thing
2589 * dbus/dbus-server.c (_dbus_server_init_base): initialize a
2590 globally unique ID for the server, and put a "guid=hexencoded"
2591 field in the address
2593 * dbus/dbus-bus.c: fix missing #include of dbus-threads-internal.h
2595 * dbus/dbus-message.c: ditto
2597 * dbus/dbus-dataslot.c: ditto
2599 * dbus/dbus-list.c: ditto
2601 * dbus/dbus-internals.h: wait, just include
2602 dbus-threads-internal.h here
2604 * dbus/dbus-string.c (_dbus_string_copy_to_buffer): move back for
2607 * dbus/dbus-sysdeps.c (_dbus_generate_random_bytes_buffer): new function
2609 2005-02-24 Colin Walters <walters@verbum.org>
2611 * test/glib/Makefile.am (EXTRA_DIST): Add test-service-glib.xml
2613 2005-02-24 John (J5) Palmieir <johnp@redhat.com>
2615 * glib/Makefile.am: added dbus-gobject.h to sources list
2616 so distcheck doesn't fail
2618 2005-02-24 Havoc Pennington <hp@redhat.com>
2620 * dbus/dbus-server.c, dbus/dbus-server-unix.c: change semantics so
2621 you must disconnect before unref, since locking and other things
2622 are screwed up otherwise. Fix assorted other locking stuff.
2624 * dbus/dbus-signature.c (dbus_signature_iter_get_element_type):
2627 * dbus/dbus-threads-internal.h: move the mutex/condvar wrappers
2628 into a private header and don't export from the library
2630 * throughout - call _dbus_thread_stuff vs. dbus_thread_stuff
2632 2005-02-24 Colin Walters <walters@verbum.org>
2634 * dbus/dbus-signature.c: New file; implements various functions
2635 related to type signatures. Includes an interator for parsing,
2636 validation functions.
2637 (dbus_type_is_basic): Moved here from
2638 dbus-marshal-basic.c:_dbus_type_is_basic.
2639 (dbus_type_is_container): Moved here from
2640 dbus-marshal-basic.c:_dbus_type_is_container.
2642 All callers of _dbus_type_is_container and _dbus_type_is_basic
2643 updated, and include dbus-signature.h.
2645 * dbus/dbus-signature.h: New file; prototypes for the above.
2647 * dbus/Makefile.am (DBUS_LIB_SOURCES): Add dbus-signature.c,
2650 * dbus/dbus-marshal-basic.c (map_type_char_to_type): New utility
2651 function factored out of _dbus_first_type_in_signature.
2652 (_dbus_first_type_in_signature_c_str): New function; returns first
2653 type code for a type signature character.
2655 * dbus/dbus-marshal-basic.h: Prototype _dbus_first_type_in_signature_c_str,
2656 handle function moves.
2658 * dbus/dbus-marshal-recursive.h: Export _dbus_type_signature_next.
2660 * dbus/dbus-marshal-recursive.c (_dbus_type_signature_next): New
2661 function; skips to next complete type in type signature.
2662 Implemented using previous skip_one_complete_type. Now
2663 skip_one_complete_type just delegates to
2664 _dbus_type_signature_next.
2666 * dbus/dbus-marshal-basic.c (_dbus_type_is_basic): Moved
2668 (_dbus_type_is_container): Ditto.
2670 * doc/dbus-specification.xml: Update introspection sample to
2671 use real type signatures.
2673 * dbus/dbus-test.h: Prototype signature test.
2675 * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): Run
2678 * dbus/dbus-protocol.h (DBUS_ERROR_INVALID_SIGNATURE): New error.
2680 2005-02-23 John (J5) Palmieri <johnp@redhat.com>
2682 * python/dbus_bindings.pyx.in (PendingCall::get_reply):
2683 s/dbus_pending_call_get_reply/dbus_pending_call_steal_reply
2685 2005-02-21 Colin Walters <walters@verbum.org>
2687 * dbus/dbus-test-main.c (main): Take optional specific test
2690 * dbus/dbus-test.c (run_test): New function, runs a test function
2691 with no data directory.
2692 (run_data_test): Like above, but takes data directory.
2693 (dbus_internal_do_not_use_run_tests): Take
2694 specific test argument. Replace lots of cut n' paste code
2695 with run_test and run_data_test.
2697 * dbus/dbus-test.h: Update prototype for
2698 dbus_internal_do_not_use_run_tests.
2700 2005-02-20 Havoc Pennington <hp@redhat.com>
2702 Fix bugs reported by Daniel P. Berrange
2704 * dbus/dbus-server.c (_dbus_server_unref_unlocked): new function
2705 (protected_change_watch): new function
2706 (_dbus_server_toggle_watch, _dbus_server_remove_watch)
2707 (_dbus_server_add_watch): change to work like the
2708 dbus-connection.c equivalents; like those, probably kind of
2709 busted, but should at least mostly work for now
2710 (dbus_server_disconnect): drop the lock if we were already
2711 disconnected, patch from Daniel P. Berrange
2713 * dbus/dbus-server.c (_dbus_server_toggle_timeout)
2714 (_dbus_server_remove_timeout, _dbus_server_add_timeout): all the
2717 * doc/TODO: todo about unscrewing this mess
2719 2005-02-19 Colin Walters <walters@verbum.org>
2721 * glib/dbus-binding-tool-glib.c
2722 (dbus_binding_tool_output_glib_server): Fix iochannel refcounting.
2724 * glib/dbus-glib-tool.c: Include dbus-glib-tool.h, as well
2725 as errno.h and sys/stat.h.
2726 (lose): New function, prints error with
2728 (lose_gerror): Similar, but takes GError for message.
2729 (main): Add --output argument to specify output file to write to,
2730 instead of always printing to stdout. In this mode, determine
2731 timestamps on source files to see whether any are newer than the
2732 target file. If not, exit. Also convert a number of error
2733 messages to use lose (since it's shorter), and switch to using
2734 g_io_channel_shutdown.
2736 2005-02-19 Havoc Pennington <hp@redhat.com>
2738 * glib/dbus-gobject.c
2739 (_dbus_glib_marshal_dbus_message_to_gvalue_array): add docs
2741 * glib/dbus-glib.c: fix doxygen warnings
2743 * glib/dbus-gparser.c (parse_annotation): error if an annotation
2744 is found on an <arg>
2746 2005-02-17 Colin Walters <walters@verbum.org>
2748 * glib/dbus-gobject.h: Don't export
2749 _dbus_glib_marshal_dbus_message_to_gvalue_array.
2751 * glib/dbus-gobject.c (_dbus_glib_marshal_dbus_message_to_gvalue_array): Do rename.
2752 (invoke_object_method): Handle it.
2754 * glib/dbus-gproxy.c (marshal_dbus_message_to_g_marshaller):
2757 2005-02-17 Colin Walters <walters@verbum.org>
2759 * bus/.cvsignore, doc/.cvsignore
2760 * test/data/valid-service-files/.cvsignore, test/glib/.cvsignore:
2763 2005-02-17 Colin Walters <walters@verbum.org>
2765 * dbus/dbus-protocol.h (DBUS_SERVICE_ORG_FREEDESKTOP_DBUS):
2766 Rename to DBUS_SERVICE_DBUS.
2767 (DBUS_PATH_ORG_FREEDESKTOP_DBUS): Rename to DBUS_PATH_DBUS.
2768 (DBUS_PATH_ORG_FREEDESKTOP_LOCAL): Rename to DBUS_PATH_LOCAL.
2769 Change the value from "org.freedesktop.Local"
2770 to "org.freedesktop.DBus.Local".
2771 (DBUS_INTERFACE_ORG_FREEDESKTOP_DBUS): Rename to DBUS_INTERFACE_DBUS.
2772 (DBUS_INTERFACE_ORG_FREEDESKTOP_INTROSPECTABLE): Rename to
2773 DBUS_INTERFACE_INTROSPECTABLE.
2774 Change the value from "org.freedesktop.Introspectable"
2775 to "org.freedesktop.DBus.Introspectable".
2776 (DBUS_INTERFACE_ORG_FREEDESKTOP_PROPERTIES): Rename to
2777 DBUS_INTERFACE_PROPERTIES.
2778 Change the value from "org.freedesktop.Properties"
2779 to "org.freedesktop.DBus.Properties".
2780 (DBUS_INTERFACE_ORG_FREEDESKTOP_PEER): Rename to
2781 DBUS_INTERFACE_PEER.
2782 Change the value from "org.freedesktop.Peer"
2783 to "org.freedesktop.DBus.Peer".
2784 (DBUS_INTERFACE_ORG_FREEDESKTOP_LOCAL):
2785 DBUS_INTERFACE_LOCAL.
2786 Change the value from "org.freedesktop.Local"
2787 to "org.freedesktop.DBus.Local".
2789 All other users of those constants have been changed.
2791 * bus/driver.c (bus_driver_handle_introspect): Use constants.
2793 * glib/dbus-gobject.c (handle_introspect): Use constants.
2795 * doc/dbus-faq.xml, doc/dbus-specification.xml: Update for rename.
2797 2005-02-17 Colin Walters <walters@verbum.org>
2799 * glib/dbus-gparser.c (struct Parser): Add in_annotation boolean.
2800 (parse_node, parse_interface, parse_method, parse_signal)
2801 (parse_property, parse_annotation): Lose if we're currently in an
2803 (parse_annotation): New function.
2804 (parser_start_element, parser_end_element): Handle annotation.
2805 (parse_method, parse_interface): Remove support for c_name attribute,
2806 switch to annotations.
2808 * glib/dbus-gidl.h (interface_info_get_binding_names)
2809 (method_info_get_binding_names)
2810 (interface_info_get_binding_name, method_info_get_binding_name)
2811 (interface_info_set_binding_name, method_info_set_binding_name):
2813 (interface_info_get_annotations, method_info_get_annotations)
2814 (interface_info_get_annotation, method_info_get_annotation)
2815 (interface_info_add_annotation, method_info_add_annotation):
2818 * glib/dbus-gidl.c (struct InterfaceInfo): Substitute "annotations"
2820 (struct MethodInfo): Ditto.
2821 Straightfoward conversion of binding methods into annotation methods
2824 * glib/dbus-glib-tool.c (pretty_print): Print annotations.
2826 * glib/dbus-binding-tool-glib.h (DBUS_GLIB_ANNOTATION_C_SYMBOL): Define.
2828 * glib/dbus-binding-tool-glib.c (gather_marshallers, generate_glue):
2829 Use new annotation API.
2831 * doc/introspect.dtd: Fix a number of DTD syntax errors. Add
2834 * doc/dbus-specification.xml: Discuss introspection annotations,
2835 include list of well-known annotations.
2837 * test/glib/test-service-glib.xml: Make validate against new DTD.
2839 2005-02-17 Colin Walters <walters@verbum.org>
2841 This patch is based on initial work from
2842 Paul Kuliniewicz <kuliniew@purdue.edu>.
2844 * glib/dbus-gvalue.c (dbus_gvalue_init): New function; move
2845 initialization of GValue from dbus type to here.
2846 (dbus_gvalue_genmarshal_name_from_type): New function; generates a string
2847 for the "glib-genmarshal" program from a DBus type.
2848 (dbus_gvalue_binding_type_from_type): New function; turns a DBus type
2849 into the C name for it we use in the glib bindings.
2850 (dbus_gvalue_ctype_from_type): New function; maps a DBus type into a
2851 glib C type (not GValue).
2852 (dbus_gvalue_demarshal): invoke dbus_gvalue_init.
2854 * glib/dbus-gutils.c (_dbus_gutils_wincaps_to_uscore): Moved here
2855 from dbus-gobject.c.
2857 * glib/dbus-gutils.h: Prototype it.
2859 * glib/dbus-gproxy.c: Include new dbus-gobject.h.
2860 (marshal_dbus_message_to_g_marshaller): Use new shared function
2861 dbus_glib_marshal_dbus_message_to_gvalue_array.
2863 * glib/dbus-gparser.c (parse_interface, parse_method): Handle c_name attribute.
2864 Will be changed once we have annotations.
2866 * glib/dbus-gobject.c: Change info_hash_mutex from GStaticMutex to
2867 GStaticRWLock. Callers updated.
2868 (wincaps_to_uscore): Move to dbus-gutils.c. Callers updated.
2869 (string_table_next): New function for iterating over zero-terminated
2871 (string_table_lookup): New function; retrieves specific entry in
2873 (get_method_data): New function; look up method data in object data chunk.
2874 (object_error_domain_prefix_from_object_info)
2875 (object_error_code_from_object_info): New functions, but not implemented yet.
2876 (method_interface_from_object_info): New function; retrieve interface name.
2877 (method_name_from_object_info): New function; retrieve method name.
2878 (method_arg_info_from_object_info): New function; retrieve argument data.
2879 (arg_iterate): New function; iterates over serialized argument data.
2880 (method_dir_signature_from_object_info): New function; returns a
2881 GString holding type signature for arguments for just one
2882 direction (input or output).
2883 (method_input_signature_from_object_info)
2884 (method_output_signature_from_object_info): New functions.
2885 (dbus_glib_marshal_dbus_message_to_gvalue_array): New shared function;
2886 converts dbus message arguments into a GValue array. Used for both
2887 signal handling and method invocation.
2888 (struct DBusGlibWriteIterfaceData): New utility structure.
2889 (write_interface): New function; generate introspection XML for
2891 (introspect_interfaces): New function; gathers all interface->methods,
2892 generates introspection XML for them.
2893 (handle_introspect): Invoke introspect_interfaces.
2894 (get_object_property): Be sure to zero-initalize stack-allocated GValue.
2895 (lookup_object_and_method): New function; examines an incoming message
2896 and attempts to match it up (via interface, method name, and argument
2897 signature) with a known object and method.
2898 (gerror_domaincode_to_dbus_error_name): New function; converts a
2899 GError domain and code into a DBus error name. Needs GError data
2900 added to object introspection to work well.
2901 (gerror_to_dbus_error_message): Creates a DBusMessage error return from
2903 (invoke_object_method): New function to invoke an object method
2904 looked up via lookup_object_and_method. Parses the incoming
2905 message, turns it into a GValue array, then invokes the marshaller
2906 specified in the DBusGMethodInfo. Creates a new message with
2907 either return values or error message as appropriate.
2908 (gobject_message_function): Invoke lookup_object_and_method and
2909 invoke_object_method.
2911 * glib/dbus-glib-tool.c: Include dbus-binding-tool-glib.h.
2912 (enum DBusBindingOutputMode): New enum for binding output modes.
2913 (pretty_print): Print binding names.
2914 (dbus_binding_tool_error_quark): GError bits.
2915 (version): Fix typo.
2916 (main): Create GIOChannel for output. Parse new --mode argument,
2917 possible values are "pretty-print", "glib-server", "glib-client".
2918 Use mode to invoke appropriate function.
2920 * glib/dbus-gobject.h: Prototype dbus_glib_marshal_dbus_message_to_gvalue_array.
2922 * glib/dbus-glib-tool.h: New header, just includes GError bits
2925 * glib/dbus-gidl.c (struct InterfaceInfo): Add bindings hashtable;
2926 maps binding style to name.
2927 (struct MethodInfo): Ditto.
2928 (get_hash_keys, get_hash_key): Utility function, returns keys for
2930 (interface_info_new, method_info_new): Initialize bindings.
2931 (interface_info_unref, method_info_unref): Destroy bindings.
2932 (method_info_get_binding_names, method_info_get_binding_name)
2933 (interface_info_get_binding_names, interface_info_get_binding_name):
2934 Functions for retrieving binding names.
2935 (method_info_set_binding_name, interface_info_set_binding_name):
2936 Functions for setting binding names.
2938 * glib/dbus-binding-tool-glib.h: New file, has prototypes
2939 for glib binding generation.
2941 * glib/dbus-binding-tool-glib.c: New file, implements server-side
2942 and client-side glib glue generation.
2944 * glib/Makefile.am (dbus_binding_tool_SOURCES): Add
2945 dbus-binding-tool-glib.c, dbus-binding-tool-glib.h,
2948 * dbus/dbus-glib.h (struct DBusGMethodMarshaller): Remove in favor
2949 of using GClosureMarshal directly.
2950 (struct DBusGObjectInfo): Add n_infos member.
2952 * test/glib/test-service-glib.xml: New file; contains introspection data
2953 for MyTestObject used in test-service-glib.c.
2955 * test/glib/test-service-glib.c (enum MyObjectError): New GError enum.
2956 (my_object_do_nothing, my_object_increment, my_object_throw_error)
2957 (my_object_uppercase, my_object_many_args): New test methods.
2958 (main): Use dbus_g_object_class_install_info to include generated object
2961 * test/glib/Makefile.am: Generate server-side glue for test-service-glib.c,
2962 as well as client-side bindings.
2964 * test/glib/test-dbus-glib.c: Include test-service-glib-bindings.h.
2965 (main): Activate TestSuiteGLibService; test invoke a bunch of its methods
2966 using both the dbus_gproxy stuff directly as well as the generated bindings.
2968 2005-02-15 Havoc Pennington <hp@redhat.com>
2970 * dbus/dbus-connection.c (dbus_connection_dispatch): always
2971 complete a pending call, don't run filters first.
2973 * glib/dbus-gproxy.c (dbus_g_proxy_end_call): change to use
2974 dbus_pending_call_steal_reply
2976 * dbus/dbus-pending-call.c (dbus_pending_call_block): just call
2977 _dbus_connection_block_pending_call
2978 (dbus_pending_call_get_reply): change to steal_reply and return a
2981 * dbus/dbus-connection.c
2982 (dbus_connection_send_with_reply_and_block): port to work in terms
2984 (_dbus_connection_block_pending_call): replace block_for_reply
2987 2005-02-14 Havoc Pennington <hp@redhat.com>
2989 * dbus/dbus-userdb-util.c (_dbus_user_database_lookup_group):
2990 properly handle looking up group information by name; fix
2993 2005-02-13 Havoc Pennington <hp@redhat.com>
2995 * dbus/dbus-connection.c (dbus_connection_return_message)
2996 (dbus_connection_borrow_message): hold dispatch lock while message
2998 (_dbus_connection_block_for_reply): hold dispatch lock while we
2999 block for the reply, so nobody steals our reply
3000 (dbus_connection_pop_message): hold the dispatch lock while we
3003 2005-02-13 Havoc Pennington <hp@redhat.com>
3005 * dbus/dbus-connection.c (_dbus_connection_acquire_dispatch)
3006 (_dbus_connection_release_dispatch)
3007 (_dbus_connection_acquire_io_path)
3008 (_dbus_connection_release_io_path): make the mutex and condvar
3009 control access to the "acquired" flag. Drop the connection lock
3010 while waiting on the condvar. Hopefully these are baby steps in
3011 roughly the right direction.
3013 2005-02-13 Havoc Pennington <hp@redhat.com>
3015 * dbus/dbus-connection.c: use separate mutexes for the condition
3016 variables; this is some kind of baseline for sanity, but the
3017 condition variables still aren't used correctly afaict
3019 2005-02-13 Havoc Pennington <hp@redhat.com>
3021 * dbus/dbus-object-tree.c (handle_default_introspect_and_unlock):
3024 * dbus/dbus-connection.c
3025 (_dbus_connection_detach_pending_call_unlocked): add this
3027 Initial semi-correct pass through to fix thread locking; there are
3028 still some issues with the condition variable paths I'm pretty
3031 * dbus/dbus-server.c: add a mutex on DBusServer and appropriate
3034 * dbus/dbus-connection.c (_dbus_connection_do_iteration_unlocked):
3035 rename to add _unlocked
3036 (struct DBusConnection): move "dispatch_acquired" and
3037 "io_path_acquired" to use only one bit each.
3038 (CONNECTION_LOCK, CONNECTION_UNLOCK): add checks with !DBUS_DISABLE_CHECKS
3039 (dbus_connection_set_watch_functions): hacky fix to reentrancy
3040 (_dbus_connection_add_watch, _dbus_connection_remove_watch)
3041 (_dbus_connection_toggle_watch, _dbus_connection_add_timeout)
3042 (_dbus_connection_remove_timeout)
3043 (_dbus_connection_toggle_timeout): drop lock when calling out to
3044 user functions; done in a hacky/bad way.
3045 (_dbus_connection_send_and_unlock): add a missing unlock
3046 (_dbus_connection_block_for_reply): add a missing unlock
3048 * dbus/dbus-transport.c (_dbus_transport_get_is_authenticated):
3049 drop lock in a hacky probably unsafe way to call out to user
3052 2005-02-12 Havoc Pennington <hp@redhat.com>
3054 * tools/dbus-tree-view.c (info_set_func_text): display more
3057 * bus/driver.c (bus_driver_handle_list_services): list the bus
3060 * glib/dbus-gparser.c (parse_arg): generate an arg name if none is supplied
3062 * glib/dbus-gidl.c (signal_info_get_n_args): new function
3063 (method_info_get_n_args): new function
3065 2005-02-12 Havoc Pennington <hp@redhat.com>
3067 * bus/driver.c (bus_driver_handle_introspect): add introspection
3070 2005-02-12 Havoc Pennington <hp@redhat.com>
3072 * bus/driver.c: put the signature of each bus driver method in the
3073 table of handlers and check it on incoming calls; this isn't
3074 really useful, but going to add introspect support in a minute.
3076 2005-02-11 Joe Shaw <joeshaw@novell.com>
3078 * mono/Connection.cs: The unpredictability of finalizers in mono
3079 prevents us from deterministically disconnecting the filters from
3080 the Service class's finalizer, so move tracking of filters and
3081 matches here. Add API for that.
3083 * mono/Service.cs: Remove the code, add code which calls the
3084 methods now on the Connection class.
3086 2005-02-11 John (J5) Palmieri <johnp@redhat.com>
3088 * python/dbus.py (class Sender): added to support dbus signals better
3089 (Bus::add_signal_receiver): added expand_args parameter which defaults
3090 to True. When expand args is True the signal handler will pass the
3091 message arguments as parameters to the signal handler. If False
3092 revert to previous behavior where the signal handler must get the
3093 argument list from the message. This is to help port applications
3094 like HAL that have a tendancy to send variable length argument lists.
3095 self._match_rule_to_receivers is now a dict of dicts.
3096 (Bus::remove_signal_receiver): pop handler off the dict intead of
3097 removing it from a list
3098 (Bus::_signal_func): change signal handlers so that interface,
3099 signal_name, service, path and message are packed into a Sender
3100 object and that is passed to the handler. If expand_args is True
3101 extract the args list from the message and append it to the parameter
3104 * python/dbus_bindings.pyx.in (class Signature): added to support
3106 (MessageIter::__init__): changed iteration limit to match D-BUS
3107 (MessageIter::get*): added INT16, UINT16, SIGNATURE, DICT_ENTRY,
3108 STRUCT and VARIENT type support
3109 (MessageIter::python_value_to_dbus_sig): made recursive to support
3111 (MessageIter::append*): added Signature, dict, tuple
3114 * python/examples/example-client.py: added examples of getting tuples
3117 * python/examples/example-service.py: added examples of sending tuples
3120 * python/examples/example-signal-recipient.py: Fixed to handle new
3121 signal callback format
3123 2005-02-10 Havoc Pennington <hp@redhat.com>
3125 * test/glib/test-dbus-glib.c (main): fix so this test doesn't fail
3126 (call dbus_g_proxy_add_signal)
3128 * dbus/dbus-server-unix.c (_dbus_server_new_for_tcp_socket):
3130 (_dbus_server_new_for_domain_socket): escape the path
3132 * dbus/dbus-address.c (dbus_address_escape_value): new
3133 (dbus_address_unescape_value): new
3134 (dbus_parse_address): unescape values
3136 * dbus/dbus-string.c (_dbus_string_append_byte_as_hex): new function
3138 * doc/dbus-specification.xml: explain how to escape values in
3141 2005-02-10 Havoc Pennington <hp@redhat.com>
3143 * dbus/dbus-message-factory.c (generate_special): modify test to
3144 avoid using a non-basic dict key
3146 * dbus/dbus-marshal-validate-util.c: add test for the below
3148 * doc/dbus-specification.xml: require that dict keys are a basic
3151 * dbus/dbus-marshal-validate.c
3152 (_dbus_validate_signature_with_reason): require that dict key is a
3155 2005-02-10 Havoc Pennington <hp@redhat.com>
3157 * dbus/dbus-object-tree.c (handle_default_introspect_and_unlock):
3158 change to be _and_unlock instead of _unlocked
3160 * dbus/dbus-connection.c
3161 (_dbus_connection_send_preallocated_unlocked_no_update): rename to
3162 have no_update so we can find this bug quickly in future
3164 2005-02-10 Havoc Pennington <hp@redhat.com>
3166 * dbus/dbus-message-util.c (verify_test_message): tests for string
3169 * dbus/dbus-message.c (dbus_message_append_args_valist): add
3170 support for arrays of string/signature/path
3172 2005-02-10 Joe Shaw <joeshaw@novell.com>
3174 * dbus/dbus-connection.c
3175 (_dbus_connection_queue_received_message_link,
3176 _dbus_connection_message_sent): Add the path to
3178 (_dbus_connection_send_preallocated_and_unlock): Added. Calls
3179 _dbus_connection_send_preallocated_unlocked(), updated the
3180 dispatch status, and unlocks. Fixes a bug where certain
3181 situations (like a broken pipe) could cause a Disconnect message
3182 to not be sent, tricking the bus into thinking a service was still
3183 there when the process had quit.
3184 (_dbus_connection_send_preallocated): Call
3185 _dbus_connection_send_preallocated_and_unlock().
3186 (_dbus_connection_send_and_unlock): Added. Calls
3187 _dbus_connection_send_preallocated_and_unlock().
3188 (dbus_connection_send): Call _dbus_connection_send_and_unlock().
3189 (dbus_connection_send_with_reply): Update the dispatch status and
3192 * mono/Service.cs (~Service): Added. Removes the filter so that
3193 we don't get unmanaged code calling back into a GCed delegate.
3194 (RemoveFilter); Added.
3196 2005-02-09 John (J5) Palmieri <johnp@redhat.com>
3198 * dbus/dbus-message.c (dbus_message_iter_open_container):
3199 - Removed check for iterator type being an array because
3200 get_arg_type does not work with writer iterators
3201 - Pass NULL to _dbus_type_writer_recurse if signiture is NULL
3203 2005-02-07 Havoc Pennington <hp@redhat.com>
3205 * doc/dbus-specification.xml: some more language cleanups; add
3206 stuff about how to deal with invalid protocol and extension
3207 points; add _ to allowed chars in auth commands; add EXTENSION_
3210 2005-02-06 Havoc Pennington <hp@redhat.com>
3212 * s/expected/required/ in a couple places for clarity
3214 2005-02-07 Colin Walters <walters@verbum.org>
3216 * bus/selinux.c (bus_selinux_allows_send): Handle NULL for
3217 sender or proposed_recipient.
3219 2005-02-06 Havoc Pennington <hp@redhat.com>
3221 * dbus/dbus-message-factory.c (generate_special): more tests
3223 * dbus/dbus-marshal-validate.c (validate_body_helper): detect
3224 array length that exceeds the maximum
3226 2005-02-05 Havoc Pennington <hp@redhat.com>
3228 * dbus/dbus-message-factory.c (generate_special): more test cases,
3231 * dbus/dbus-marshal-validate.c (validate_body_helper): return the
3232 reason why a signature was invalid
3234 * dbus/dbus-marshal-header.c (load_and_validate_field): fix to
3235 skip the length of the string before we look at it in validation
3237 * dbus/dbus-string-util.c (_dbus_string_test): add tests for
3240 * dbus/dbus-message.c (_dbus_message_loader_new): default
3241 max_message_length to DBUS_MAXIMUM_MESSAGE_LENGTH
3243 2005-02-05 Havoc Pennington <hp@redhat.com>
3245 * dbus/dbus-marshal-validate.c (validate_body_helper): fix crash
3246 if the signature of a variant was empty
3247 (_dbus_validate_signature_with_reason): catch "(a)" (array inside
3248 struct with no element type)
3250 * dbus/dbus-message-factory.c (generate_uint32_changed): add more
3251 mangled messages to break things
3253 2005-02-04 Havoc Pennington <hp@redhat.com>
3255 * glib/dbus-gproxy.c (dbus_g_proxy_disconnect_signal): use
3256 g_quark_try_string() so it actually can return 0
3257 (dbus_g_proxy_connect_signal): ditto
3259 2005-02-04 Havoc Pennington <hp@redhat.com>
3261 * glib/dbus-gproxy.c (dbus_g_proxy_emit_remote_signal): fix a
3263 (tristring_from_message): assert cleanly on null path/interface
3264 (should not be possible though I decided later)
3265 (dbus_g_proxy_dispose): move proxy manager unregistration here
3266 (DBUS_G_PROXY_DESTROYED): add this macro, and use it in a bunch of
3267 g_return_if_fail() checks
3269 2005-02-04 Havoc Pennington <hp@redhat.com>
3271 * doc/Makefile.am (EXTRA_DIST): add DTDs to makefile
3273 * doc/introspect.dtd: add introspect.dtd from David A. Wheeler
3274 (with some minor changes)
3276 * doc/dbus-specification.xml: add deprecated attribute to
3277 introspection format
3279 2005-01-31 Havoc Pennington <hp@redhat.com>
3281 * glib/dbus-gproxy.c: rewrite how signals work again, this time I
3282 think it's sort of right
3284 2005-01-30 Havoc Pennington <hp@redhat.com>
3286 * tools/dbus-viewer.c: kind of half-ass hook up the option menu.
3288 2005-01-30 Havoc Pennington <hp@redhat.com>
3290 * tools/dbus-names-model.c: dynamically watch NameOwnerChanged
3292 * autogen.sh: change to autotools 1.9
3294 * glib/dbus-gproxy.c: completely change how signals work
3295 (dbus_g_proxy_add_signal): new function to specify signature of a
3297 (dbus_g_proxy_emit_received): marshal the dbus message to GValues,
3298 and g_warning if the incoming message has the wrong signature.
3300 2005-01-30 Havoc Pennington <hp@redhat.com>
3302 * tools/dbus-names-model.c (have_names_notify): fix this
3304 * dbus/dbus-message.c (_dbus_message_iter_get_args_valist): clean
3305 up the string array handling a bit
3307 2005-01-30 Havoc Pennington <hp@redhat.com>
3309 * glib/dbus-glib.c (dbus_g_pending_call_set_notify): new function
3310 (dbus_g_pending_call_cancel): new function
3312 * dbus/dbus-glib.h: move GType decls for connection/message here;
3313 * dbus/dbus-glib.c: move all the g_type and ref/unref stuff in
3314 here, just kind of rationalizing how we handle all that
3316 * tools/dbus-names-model.c: new file for a tree model listing the
3319 * tools/dbus-tree-view.c (model_new): use proper typing on the
3322 2005-01-30 Havoc Pennington <hp@redhat.com>
3324 * glib/dbus-gmain.c: add a custom GSource back that just checks
3325 whether the message queue has anything in it; otherwise, there are
3326 cases where we won't see messages in the queue since there was no
3327 IO visible to the glib main loop
3329 * dbus/dbus-connection-internal.h (_DBUS_DEFAULT_TIMEOUT_VALUE):
3330 increase default message timeout to 25 seconds
3332 2005-01-30 Havoc Pennington <hp@redhat.com>
3334 * test/glib/test-profile.c (no_bus_stop_server): remove the
3335 warning about the g_warning that I just fixed
3337 * glib/dbus-gmain.c: rewrite the main loop stuff to avoid the
3338 custom source, seems to be a lot easier to understand and work
3341 2005-01-30 Havoc Pennington <hp@redhat.com>
3343 I think this main loop thing is conceptually broken, but here are
3344 some band aids. I'll maybe rewrite it in a minute.
3346 * glib/dbus-gmain.c (add_timeout): timeout stuff doesn't use the
3347 custom GSource, so don't pass it in; confusing
3348 (gsource_server_finalize, gsource_connection_finalize): add
3349 finalize handlers that remove all the watches.
3351 2005-01-30 Havoc Pennington <hp@redhat.com>
3353 * glib/dbus-gobject.c (introspect_properties): fix the XML
3356 * dbus/dbus-message.c (dbus_message_unref): add an in_cache flag
3357 which effectively detects the use of freed messages
3359 * glib/dbus-gobject.c (handle_introspect): modify and return the
3360 reply message instead of the incoming message
3362 * dbus/dbus-object-tree.c (handle_default_introspect_unlocked):
3363 gee, maybe it should SEND THE XML instead of just making a string
3364 and freeing it again ;-)
3366 * tools/dbus-print-message.c (print_message): improve printing of
3369 * configure.in: add debug-glib.service to the output
3371 2005-01-30 Havoc Pennington <hp@redhat.com>
3373 dbus-viewer introspected and displayed the bus driver
3375 * dbus/dbus-object-tree.c
3376 (object_tree_test_iteration): add tests for a handler registered on "/"
3378 * dbus/dbus-object-tree.c
3379 (_dbus_decompose_path): fix to handle path "/" properly
3380 (run_decompose_tests): add tests for path decomposition
3382 * glib/dbus-gutils.c (_dbus_gutils_split_path): fix to handle "/"
3385 * glib/dbus-gobject.c (handle_introspect): fix quotes
3387 * test/glib/run-test.sh: support launching the bus, then running
3390 * test/glib/test-service-glib.c (main): put in a trivial gobject
3391 subclass and register it on the connection
3393 * bus/driver.c (bus_driver_handle_introspect): implement
3394 introspection of the bus driver service
3396 * dbus/dbus-protocol.h: add #defines for the XML namespace,
3397 identifiers, doctype decl
3399 * bus/driver.c (bus_driver_handle_get_service_owner): handle
3400 attempts to get owner of DBUS_SERVICE_ORG_FREEDESKTOP_DBUS by
3401 returning the service unchanged.
3402 (bus_driver_handle_message): remove old check for reply_serial in
3403 method calls, now the message type deals with that
3404 (bus_driver_handle_message): handle NULL interface
3406 * glib/dbus-gproxy.c (dbus_g_proxy_get_bus_name): new function
3408 * glib/dbus-gloader-expat.c (description_load_from_string): allow
3411 * tools/dbus-viewer.c: add support for introspecting a service on
3414 * glib/dbus-gproxy.c (dbus_g_pending_call_ref): add
3415 (dbus_g_pending_call_unref): add
3417 2005-01-29 Havoc Pennington <hp@redhat.com>
3419 * tools/dbus-tree-view.c: add support for displaying properties.
3420 (run dbus-viewer with an introspect xml file as arg, then resize
3421 the window so the tree elements show up, not sure what that is)
3423 * glib/dbus-gobject.c (handle_introspect): return
3424 org.freedesktop.Properties and org.freedesktop.Introspectable
3425 interfaces when we are introspected.
3427 * doc/dbus-specification.xml: allow empty interface name when
3430 2005-01-29 Havoc Pennington <hp@redhat.com>
3432 * glib/Makefile.am: rename dbus-glib-tool to dbus-binding-tool;
3433 though it uses glib, it could be extended for any binding in
3436 * glib/dbus-gobject.c (gobject_message_function): change to the
3437 new way properties work
3439 * dbus/dbus-protocol.h: add the new interfaces
3441 * doc/dbus-specification.xml: document the introspection format,
3442 Introspectable interface, and add an org.freedesktop.Properties
3445 * glib/dbus-gparser.c: add support for a <property> element
3447 * glib/dbus-gidl.c: add PropertyInfo
3449 * glib/dbus-gobject.c (handle_introspect): put the outermost
3450 <node> outside the signal and property descriptions.
3451 (introspect_properties): export properties as <property> rather
3452 than as method calls
3454 2005-01-28 Havoc Pennington <hp@redhat.com>
3456 * doc/TODO, doc/dbus-specification.xml: spec and TODO tweaks
3457 related to authentication protocol
3459 2005-01-28 John (J5) Palmieri <johnp@redhat.com>
3461 * python/dbus_bindings.pyx.in: Updated to handle new D-BUS type system
3462 - BUS_ACTIVATION -> BUS_STARTER
3463 - DBUS_BUS_ACTIVATION -> DBUS_BUS_STARTER
3464 - class MessageIter (__init__): Added recursion checking
3465 so we throw a nice error instead of just disconnecting from the
3467 (get): Added arg_type parameter for recursion.
3468 Removed the nil type
3469 Added signiture type placeholder (not implemented)
3470 Added struct type placeholder (not implemented)
3471 Added varient type placeholder (not implemented)
3472 Commented out dict type for now
3473 (get_element_type): renamed from get_array_type
3474 (get_*): changed to use the dbus_message_iter_get_basic API
3475 (get_*_array): removed in favor of recursive get_array method
3476 (get_array): new recursive method which calls get to marshal
3477 the elements of the array
3478 (value_to_dbus_sig): New method returns the corrasponding
3479 dbus signiture to a python value
3480 (append): Comment out dict handling for now
3481 Handle lists with the new recursive API
3482 Comment out None handling for now
3483 (append_nil): removed
3484 (append_*): changed to use dbus_message_iter_append_basic API
3485 (append_*_array): removed in favor of recursive append_array
3487 (__str__): Make it easier to print out recursive iterators
3489 - class Message (__str__): moved type inspection to the
3490 MessageIter class' __str__ method
3491 (get_iter): Added an append parameter wich defaults to False
3492 If True use the new API's to create an append iterator
3494 * python/dbus.py: Update to use new bindings API
3495 - TYPE_ACTIVATION -> TYPE_STARTER
3496 - class Bus (_get_match_rule): GetServiceOwner -> GetNameOwner
3497 - class ActivationBus -> class StarterBus
3498 - class RemoteObject (__call__): get an append iterator
3499 - (_dispatch_dbus_method_call): get an append iterator
3500 - class Object (emit_signal): get an append iterator
3502 * python/examples/: Fixed up the examples to work with the new API
3504 2005-01-28 Joe Shaw <joeshaw@novell.com>
3506 * configure.in: Bump version up to 0.30.
3508 * HACKING: Add a release item to bump the version number up after
3511 2005-01-28 Havoc Pennington <hp@redhat.com>
3513 * doc/dbus-specification.xml: update to describe 16-bit types and
3516 * dbus/dbus-marshal-basic.c (_dbus_unpack_uint16): fix broken
3519 * dbus/dbus-protocol.h (DBUS_TYPE_DICT_ENTRY): add DICT_ENTRY as a
3522 * dbus/dbus-marshal-recursive.c: implement
3524 2005-01-27 Havoc Pennington <hp@redhat.com>
3526 * dbus/dbus-arch-deps.h.in: add 16/32-bit types
3528 * configure.in: find the right type for 16 and 32 bit ints as well
3531 * dbus/dbus-protocol.h (DBUS_TYPE_INT16, DBUS_TYPE_UINT16): add
3532 the 16-bit types so people don't have to stuff them in 32-bit or
3535 2005-01-27 Havoc Pennington <hp@redhat.com>
3537 * dbus/dbus-message.c: byteswap the message if you init an
3538 iterator to read/write from it
3540 * dbus/dbus-marshal-byteswap.c: new file implementing
3541 _dbus_marshal_byteswap()
3543 * dbus/dbus-marshal-basic.c: add _dbus_swap_array()
3545 2005-01-26 Havoc Pennington <hp@redhat.com>
3547 * dbus/dbus-marshal-validate-util.c: break this out (and fix
3548 build, apparently - nobody noticed?)
3550 2005-01-26 Havoc Pennington <hp@redhat.com>
3552 * dbus/dbus-marshal-recursive.h: remove todo comment
3554 2005-01-25 Joe Shaw <joeshaw@novell.com>
3556 * Land the mono binding changes to conform to the new APIs.
3558 * mono/Makefile.am: Remove Custom.cs, DBusType/Custom.cs,
3559 DBusType/Dict.cs, and DBusType/Nil.cs from the build.
3561 * mono/Arguments.cs (GetCodeAsString): Added. Returns the dbus
3562 type code as a string.
3563 (InitAppending): Rename dbus_message_append_iter_init() to
3564 dbus_message_iter_init_append().
3566 * mono/BusDriver.cs: Rename ServiceEventHandler to
3567 NameOwnerChangedHandler. Rename GetServiceOwner to GetOwner.
3568 Rename ServiceOwnerChanged to NameOwnerChanged.
3570 * mono/Connection.cs: Rename BaseService to UniqueName, and the
3573 * mono/Custom.cs: Removed. The CUSTOM type has been removed.
3575 * mono/Service.cs: Rename Exists to HasOwner, internally rename
3576 dbus_bus_acquire_service() to dbus_bus_request_name().
3578 * mono/DBusType/Array.cs (ctor): Use Type.GetElementType() instead
3579 of Type.UnderlyingSystemType to get the correct element type for
3581 (ctor): Update code for new APIs: use dbus_message_iter_recurse(),
3582 dbus_message_get_{element|arg}_type() instead of
3583 dbus_message_iter_init_array_iterator().
3584 (Append): Replace dbus_message_iter_append_array() with
3585 dbus_message_iter_open_container() and
3586 dbus_message_iter_close_container().
3588 * mono/DBusType/Custom.cs, mono/DBusType/Nil.cs: Removed. These
3589 types have been removed.
3591 * mono/DBusType/*.cs: Replace calls of
3592 dbus_message_iter_get_[type]() to dbus_message_iter_get_basic(),
3593 but specify the type in the DllImport extern declaration. Ditto
3594 for dbus_message_iter_append_[type]() ->
3595 dbus_message_iter_append_basic().
3597 * mono/example/BusListener.cs: Update for ServiceEventHandler ->
3598 NameOwnerChangedHandler.
3600 2005-01-25 John (J5) Palmieri <johnp@redhat.com>
3602 * python/dbus_bindings.pyx.in: Rename of methods and bindings
3603 - get_base_service -> get_unique_name
3604 - bus_get_base_service -> bus_get_unique_name
3605 - dbus_bus_get_base_service -> dbus_bus_get_unique_name
3606 - ACTIVATION_REPLY_ACTIVATED -> DBUS_START_REPLY_SUCCESS
3607 - ACTIVATION_REPLY_ALREADY_ACTIVE -> DBUS_START_REPLY_ALREADY_RUNNING
3608 - bus_activate_service -> bus_start_service_by_name
3609 - dbus_bus_activate_service -> dbus_bus_start_service_by_name
3610 - bus_acquire_service -> bus_request_name
3611 - dbus_bus_acquire_service -> dbus_bus_request_name
3612 - bus_service_exists -> bus_name_has_owner
3613 - dbus_bus_service_exists -> dbus_bus_name_has_owner
3615 * python/dbus.py: Rename of methods
3616 - activate_service -> start_service_by_name
3617 - bus_acquire_service -> bus_request_name
3618 - ACTIVATION_REPLY_ACTIVATED -> START_REPLY_SUCCESS
3619 - ACTIVATION_REPLY_ALREADY_ACTIVE -> START_REPLY_ALREADY_RUNNING
3622 2005-01-24 Joe Shaw <joeshaw@novell.com>
3624 * dbus/dbus-connection.c (dbus_connection_dispatch): Print out the
3625 signature for the method that can't be found.
3627 * dbus/dbus-message.c (dbus_message_iter_init): To check to see if
3628 the message has any arguments, we need to call
3629 _dbus_type_reader_get_current_type(), not
3630 _dbus_type_reader_has_next().
3632 2005-01-24 Havoc Pennington <hp@redhat.com>
3634 * dbus/dbus-message-factory.c: more testing of message validation
3636 * dbus/dbus-protocol.h (DBUS_MINIMUM_HEADER_SIZE): move to this
3639 2005-01-23 Havoc Pennington <hp@redhat.com>
3641 * dbus/dbus-message-factory.c, dbus/dbus-message-util.c:
3642 get this all working, not many tests in the framework yet though
3644 2005-01-22 Havoc Pennington <hp@redhat.com>
3646 * doc/dbus-faq.xml, doc/dbus-tutorial: add a FAQ and update
3647 tutorial, based on work from David Wheeler.
3649 2005-01-21 Havoc Pennington <hp@redhat.com>
3651 * dbus/dbus-bus.c: add more return_if_fail checks
3653 * dbus/dbus-message.c (load_message): have the "no validation"
3654 mode (have to edit the code to toggle the mode for now though)
3656 * dbus/dbus-marshal-header.c (_dbus_header_load): have a mode that
3657 skips all validation; I want to use this at least for benchmark
3658 baseline, I'm not sure if it should be a publicly-available switch.
3660 2005-01-21 Havoc Pennington <hp@redhat.com>
3662 * glib/dbus-gmain.c: don't put the GLib bindings in the same
3663 toplevel doxygen group as the low-level API stuff
3665 * dbus/dbus.h: note that libdbus is the low-level API
3667 2005-01-20 Havoc Pennington <hp@redhat.com>
3669 * update-dbus-docs.sh: script to update docs on the web site, only
3670 works for me though. neener.
3672 2005-01-20 Havoc Pennington <hp@redhat.com>
3674 * dbus/dbus-sysdeps.c (_dbus_poll): amazingly, trying to compile
3675 code can reveal bugs in it
3677 2005-01-20 Havoc Pennington <hp@redhat.com>
3679 * dbus/dbus-sysdeps.c (_dbus_poll): fix several bugs in the
3680 select() version, patches from Tor Lillqvist
3682 2005-01-20 Havoc Pennington <hp@redhat.com>
3684 * doc/dbus-tutorial.xml: replace > with >
3686 * bus/services.c (bus_registry_acquire_service): validate the name
3687 and return a better error if it's no good.
3689 * doc/dbus-specification.xml: note NO_AUTO_START change
3691 * dbus/dbus-protocol.h (DBUS_HEADER_FLAG_NO_AUTO_START): change
3692 from AUTO_START, we're toggling the default
3694 * bus/dispatch.c: adapt the tests to change of auto-start default
3696 2005-01-18 Havoc Pennington <hp@redhat.com>
3698 * rename dbus-daemon-1 to dbus-daemon throughout
3700 2005-01-18 Havoc Pennington <hp@redhat.com>
3702 * Throughout, grand renaming to strip out the use of "service",
3703 just say "name" instead (or "bus name" when ambiguous). Did not
3704 change the internal code of the message bus itself, only the
3705 programmer-facing API and messages.
3707 * doc/dbus-specification.xml: further update the message bus section
3709 * bus/config-parser.c (all_are_equiv): fix bug using freed string
3712 2005-01-17 Havoc Pennington <hp@redhat.com>
3714 * dbus/dbus-types.h: remove 16-bit types since we don't use them
3717 * dbus/dbus-marshal-validate.c (_dbus_validate_path): disallow any
3718 "invalid name character" not only non-ASCII
3720 * doc/dbus-specification.xml: further update spec, message bus
3721 parts are still out-of-date but the marshaling etc. stuff is now
3724 2005-01-17 Havoc Pennington <hp@redhat.com>
3726 * doc/dbus-specification.xml: partially update spec
3728 2005-01-17 Havoc Pennington <hp@redhat.com>
3730 * Throughout, align variant bodies according to the contained
3731 type, rather than always to 8. Should save a fair bit of space in
3734 * dbus/dbus-marshal-validate.c (_dbus_validate_body_with_reason):
3735 fix handling of case where p == end
3737 * doc/TODO: remove the dbus_bool_t item and variant alignment items
3739 2005-01-17 Havoc Pennington <hp@redhat.com>
3741 * dbus/dbus-types.h: hardcode dbus_bool_t to 32 bits
3743 * Throughout: modify DBUS_TYPE_BOOLEAN to be a 32-bit type instead
3744 of an 8-bit type. Now dbus_bool_t is the type to use whenever you
3745 are marshaling/unmarshaling a boolean.
3747 2005-01-16 Havoc Pennington <hp@redhat.com>
3749 This is about it on what can be disabled/deleted from libdbus
3750 easily, back below 150K anyhow. Deeper cuts are more work than
3751 just turning the code off as I've done here.
3753 * dbus/dbus-marshal-basic.c (_dbus_pack_int32): we don't need the
3754 signed int convenience funcs
3756 * dbus/dbus-internals.c (_dbus_verbose_real): omit when not in
3759 * dbus/dbus-string-util.c, dbus/dbus-string.c: more breaking
3760 things out of libdbus
3762 * dbus/dbus-sysdeps.c, dbus/dbus-sysdeps-util.c: same
3764 * dbus/dbus-hash.c: purge the TWO_STRINGS crap (well, make it
3765 tests-enabled-only, though it should probably be deleted)
3767 * dbus/dbus-message-util.c: same stuff
3769 * dbus/dbus-auth-util.c: same stuff
3771 2005-01-16 Havoc Pennington <hp@redhat.com>
3773 * dbus/dbus-userdb-util.c: split out part of dbus-userdb.c
3775 * dbus/dbus-sysdeps.c (_dbus_uid_from_string): move here to pave
3776 way for stripping down dbus-userdb.c stuff included in libdbus.
3777 Rename _dbus_parse_uid for consistency.
3779 2005-01-16 Havoc Pennington <hp@redhat.com>
3781 * dbus/dbus-internals.c (_dbus_real_assert): print the function
3782 name the assertion failed in
3784 * dbus/dbus-internals.h (_dbus_return_if_fail)
3785 (_dbus_return_val_if_fail): assert that the name of the function
3786 containing the check doesn't start with '_', since we only want to
3787 use checks on public functions
3789 * dbus/dbus-connection.c (_dbus_connection_ref_unlocked): change
3790 checks to assertions
3792 * dbus/dbus-marshal-header.c (_dbus_header_set_field_basic):
3793 change checks to asserts for private function
3795 * dbus/dbus-message.c (_dbus_message_set_serial): checks
3796 to asserts for private function
3798 * dbus/dbus-marshal-recursive.c (skip_one_complete_type): remove
3799 broken assertion that was breaking make check
3800 (_dbus_type_reader_array_is_empty): remove this rather than fix
3801 it, was only used in assertions
3803 2005-01-16 Havoc Pennington <hp@redhat.com>
3805 * test/unused-code-gc.py: hacky script to find code that's used
3806 only by the bus (not libdbus) or used only by tests or not used at
3807 all. It has some false alarms, but looks like we can clean up a
3808 lot of size from libdbus.
3810 * dbus/dbus-sysdeps.c, dbus/dbus-sysdeps-utils.c,
3811 dbus/Makefile.am: initially move 10K of binary size out of libdbus
3813 2005-01-16 Havoc Pennington <hp@redhat.com>
3815 * Add and fix docs according to Doxygen warnings throughout
3818 * dbus/dbus-marshal-recursive.c
3819 (_dbus_type_reader_array_is_empty): change this to just call
3820 array_reader_get_array_len() and make it static
3822 * dbus/dbus-message.c (dbus_message_iter_get_element_type): rename
3824 (dbus_message_iter_init_append): rename from append_iter_init
3826 * dbus/dbus-marshal-recursive.c
3827 (_dbus_type_reader_get_element_type): rename from
3828 _dbus_type_reader_get_array_type
3830 2005-01-15 Havoc Pennington <hp@redhat.com>
3832 * test/glib/test-profile.c (with_bus_server_filter): fix crash
3834 * dbus/dbus-marshal-basic.c (_dbus_unpack_uint32): inline as macro
3835 when DBUS_DISABLE_ASSERT
3836 (_dbus_marshal_set_basic): be sure we align for the string length
3838 * dbus/dbus-marshal-recursive.c (skip_one_complete_type): make
3841 * dbus/dbus-string.c (_dbus_string_get_const_data_len): add an
3842 inline macro version
3843 (_dbus_string_set_byte): provide inline macro version
3845 2005-01-15 Havoc Pennington <hp@redhat.com>
3847 * Land the new message args API and type system.
3849 This patch is huge, but the public API change is not
3850 really large. The set of D-BUS types has changed somewhat,
3851 and the arg "getters" are more geared toward language bindings;
3852 they don't make a copy, etc.
3854 There are also some known issues. See these emails for details
3856 http://lists.freedesktop.org/archives/dbus/2004-December/001836.html
3857 http://lists.freedesktop.org/archives/dbus/2005-January/001922.html
3859 * dbus/dbus-marshal-*: all the new stuff
3861 * dbus/dbus-message.c: basically rewritten
3863 * dbus/dbus-memory.c (check_guards): with "guards" enabled, init
3864 freed blocks to be all non-nul bytes so using freed memory is less
3865 likely to work right
3867 * dbus/dbus-internals.c (_dbus_test_oom_handling): add
3868 DBUS_FAIL_MALLOC=N environment variable, so you can do
3869 DBUS_FAIL_MALLOC=0 to skip the out-of-memory checking, or
3870 DBUS_FAIL_MALLOC=10 to make it really, really, really slow and
3873 * qt/message.cpp: port to the new message args API
3874 (operator<<): use str.utf8() rather than str.unicode()
3875 (pretty sure this is right from the Qt docs?)
3877 * glib/dbus-gvalue.c: port to the new message args API
3879 * bus/dispatch.c, bus/driver.c: port to the new message args API
3881 * dbus/dbus-string.c (_dbus_string_init_const_len): initialize the
3882 "locked" flag to TRUE and align_offset to 0; I guess we never
3883 looked at these anyhow, but seems cleaner.
3885 * dbus/dbus-string.h (_DBUS_STRING_ALLOCATION_PADDING):
3886 move allocation padding macro to this header; use it to implement
3887 (_DBUS_STRING_STATIC): ability to declare a static string.
3889 * dbus/dbus-message.c (_dbus_message_has_type_interface_member):
3890 change to return TRUE if the interface is not set.
3892 * dbus/dbus-string.[hc]: move the D-BUS specific validation stuff
3893 to dbus-marshal-validate.[hc]
3895 * dbus/dbus-marshal-basic.c (_dbus_type_to_string): move here from
3898 * dbus/Makefile.am: cut over from dbus-marshal.[hc]
3899 to dbus-marshal-*.[hc]
3901 * dbus/dbus-object-tree.c (_dbus_decompose_path): move this
3902 function here from dbus-marshal.c
3904 2005-01-12 Joe Shaw <joeshaw@novell.com>
3906 * NEWS: Update for 0.23.
3908 * configure.in: Release 0.23.
3910 2005-01-12 Joe Shaw <joeshaw@novell.com>
3912 * mono/Makefile.am, mono/example/Makefile.am: Always build the
3913 dbus DLL with --debug. Clean up after the .mdb files this leaves
3916 * mono/doc/Makefile.am: Need to uninstall the docs on "make
3919 * mono/Arguments.cs (GetDBusTypeConstructor): If the type
3920 is an enum, get the enum's underlying type. Another mono
3923 2005-01-11 Joe Shaw <joeshaw@novell.com>
3925 Patch from Sjoerd Simons <sjoerd@luon.net>
3927 * mono/Makefile.am, mono/example/Makefile.am: Don't redefine
3928 DESTDIR. It breaks stuff.
3930 2005-01-11 Joe Shaw <joeshaw@novell.com>
3932 Patch from Tambet Ingo <tambet@ximian.com>
3934 * mono/DBusType/Array.cs (Get): Get the underlying element type by
3935 calling type.GetElementType(). The code previously depended on
3936 broken Mono behavior, which was fixed in Mono 1.1.3.
3938 * mono/DBusType/Dict.cs (constructor): Fix the parameters for
3939 Activator.CreateInstance() so that the class's constructor is
3940 called with the right parameters.
3942 2005-01-11 Joe Shaw <joeshaw@novell.com>
3944 Patch from Timo Teräs <ext-timo.teras@nokia.com>
3946 * dbus/dbus-connection.c
3947 (_dbus_connection_queue_received_message_link): Call
3948 _dbus_connection_remove_timeout() instead of the _locked()
3949 variant, since it's always called from
3950 _dbus_connection_handle_watch(), which handles the locking.
3951 Removed the _locked() variant since it's no longer used.
3953 2005-01-03 Havoc Pennington <hp@redhat.com>
3955 * dbus/dbus-internals.h: I'm an idiot, _dbus_assert certainly can
3958 2004-12-26 Havoc Pennington <hp@redhat.com>
3960 * dbus/dbus-internals.h: add _DBUS_GNUC_NORETURN to _dbus_assert
3962 2005-01-03 Havoc Pennington <hp@redhat.com>
3964 * dbus/dbus-sysdeps.c (_dbus_sysdeps_test): fix using == on
3967 * dbus/dbus-string.c (_dbus_string_insert_alignment): new function
3969 2005-01-02 Havoc Pennington <hp@redhat.com>
3971 * dbus/dbus-internals.h (_DBUS_ALIGN_OFFSET): new macro
3973 2005-01-01 Havoc Pennington <hp@redhat.com>
3975 * configure.in: add -Wfloat-equal
3977 2005-01-01 Havoc Pennington <hp@redhat.com>
3979 * dbus/dbus-sysdeps.h: add _DBUS_DOUBLES_BITWISE_EQUAL macro,
3980 for a variety of reasons '==' doesn't do this.
3982 2004-12-31 Havoc Pennington <hp@redhat.com>
3984 * dbus/dbus-string.c (_dbus_string_equal_substrings): new function
3985 I keep wishing I had
3987 2004-12-30 John (J5) Palmieri <johnp@redhat.com>
3989 * python/dbus.py: s/ACTIVATION_REPLY_ACTIVE/ACTIVATION_REPLY_ACTIVATED
3991 2004-12-30 John (J5) Palmieri <johnp@redhat.com>
3993 * python/dbus_bindings.pyx.in: Change DBUS_ACTIVATION_REPLY_ACTIVATED
3994 and DBUS_ACTIVATION_REPLY_ALREADY_ACTIVE to match the values in
3995 dbus-protocol.h. Because they are defines and not enums they are not
3998 2004-12-26 John (J5) Palmieri <johnp@redhat.com>
4000 * python/dbus_bindings.pyx.in (bus_activate_service): Bind
4001 dbus_bus_activate_service
4003 * python/dbus.py (Bus.activate_service): activate a service on the
4006 2004-12-24 Havoc Pennington <hp@redhat.com>
4008 * test/decode-gcov.c: change to use .gcno and .gcda files, but the
4009 file format has also changed and I haven't adapted to that yet
4011 * Makefile.am: load .gcno files from latest gcc
4013 2004-12-23 John (J5) Palmieri <johnp@redhat.com>
4014 * Patch from Rob Taylor <robtaylor@fastmail.fm>
4016 * python/dbus_bindings.pyx.in (bus_get_unix_user): New
4019 * python/dbus.py (get_unix_user): Added binding to
4020 call dbus_bindings.bus_get_unix_user
4022 * python/extract.py: Modified the proto_pat regex to
4023 handle unsigned long
4025 2004-12-21 Olivier Andrieu <oliv__a@users.sourceforge.net>
4027 * dbus/make-dbus-glib-error-enum.sh: omit the function keyword for
4028 better POSIX compliance.
4030 2004-12-19 Havoc Pennington <hp@redhat.com>
4032 * dbus/dbus-string.c (_dbus_string_insert_4_aligned)
4033 (_dbus_string_insert_8_aligned): new functions
4035 * dbus/dbus-string.c (_dbus_string_alloc_space): new function
4037 2004-12-18 Havoc Pennington <hp@redhat.com>
4039 * dbus/dbus-string.c (_dbus_string_validate_ascii): use ISASCII
4042 * dbus/dbus-message.c: fix a comment, and add a still-unused
4043 not-implemented function
4045 * dbus/dbus-marshal.h: fix comment
4047 * dbus/dbus-internals.h (_DBUS_ISASCII): new macro
4049 2004-12-17 Joe Shaw <joeshaw@novell.com>
4051 * mono/DBusType/Byte.cs, mono/DBusType/Int32.cs,
4052 mono/DBusType/Int64.cs, mono/DBusType/UInt32.cs,
4053 mono/DBusType/UInt64.cs: Use Enum.GetUnderlyingType() instead of
4054 Type.UnderlyingSystemType to get the actual system type
4055 underneath. This code previously depended on the broken Mono
4056 behavior, which was fixed in 1.1.3.
4058 2004-11-27 Havoc Pennington <hp@redhat.com>
4060 * dbus/dbus-string.h (_dbus_string_get_byte): inline when asserts
4062 (_dbus_string_get_const_data): inline when asserts are disabled
4064 * dbus/dbus-message.c: record the _dbus_current_generation of
4065 creation so we can complain if dbus_shutdown() is used improperly.
4066 Do this only if checks are enabled.
4068 * dbus/dbus-connection.c: ditto
4070 2004-11-26 Havoc Pennington <hp@redhat.com>
4072 * test/glib/test-profile.c: add with_bus mode to profile echoes
4073 that go through the bus.
4075 * test/glib/run-test.sh: add ability to run test-profile
4077 * bus/dbus-daemon-1.1.in: fix to say that SIGHUP causes partial
4080 2004-11-26 Havoc Pennington <hp@redhat.com>
4082 * test/glib/test-profile.c: clean up how the fake_malloc_overhead
4083 thing was implemented
4085 2004-11-26 Havoc Pennington <hp@redhat.com>
4087 * test/glib/test-profile.c: tweak a bit, add support for some
4088 made-up minimal malloc overhead with plain sockets, since in
4089 real life some sort of buffers are unavoidable thus we could
4090 count them in the theoretical best case
4092 2004-11-26 Havoc Pennington <hp@redhat.com>
4094 * dbus/dbus-message.c (dbus_message_cache_or_finalize): fix bug
4095 where I was trying to cache one too many messages
4097 2004-11-26 Havoc Pennington <hp@redhat.com>
4099 * dbus/dbus-message.c: reimplement message cache as an array which
4100 makes the cache about twice as fast and saves maybe 1.5% overall
4102 2004-11-26 Havoc Pennington <hp@redhat.com>
4104 * dbus/dbus-threads.c (init_global_locks): forgot to put the
4105 message cache lock here
4107 2004-11-26 Havoc Pennington <hp@redhat.com>
4109 * dbus/dbus-message.c (struct DBusMessage): put the locked bit and
4110 the "char byte_order" next to each other to save 4 bytes
4111 (dbus_message_new_empty_header): reduce preallocation, since the
4112 message cache should achieve a similar effect
4113 (dbus_message_cache_or_finalize, dbus_message_get_cached): add a
4114 message cache that keeps a few DBusMessage around in a pool,
4115 another 8% speedup or so.
4117 * dbus/dbus-dataslot.c (_dbus_data_slot_list_clear): new function
4119 2004-11-25 Havoc Pennington <hp@redhat.com>
4121 * dbus/dbus-transport-unix.c (unix_do_iteration): if we're going
4122 to write, without reading or blocking, try it before the poll()
4123 and skip the poll() if nothing remains to write. This is about a
4124 3% speedup in the echo client/server
4126 2004-11-25 Havoc Pennington <hp@redhat.com>
4128 The primary change here is to always write() once before adding
4129 the write watch, which gives us about a 10% performance increase.
4131 * dbus/dbus-transport-unix.c: a number of modifications to cope
4132 with removing messages_pending
4133 (check_write_watch): properly handle
4134 DBUS_AUTH_STATE_WAITING_FOR_MEMORY; adapt to removal of
4135 messages_pending stuff
4136 (check_read_watch): properly handle WAITING_FOR_MEMORY and
4138 (unix_handle_watch): after writing, see if the write watch can be
4140 (unix_do_iteration): assert that write_watch/read_watch are
4141 non-NULL rather than testing that they aren't, since they
4142 aren't allowed to be NULL. check_write_watch() at the end so
4143 we add the watch if we did not finish writing (e.g. got EAGAIN)
4145 * dbus/dbus-transport-protected.h: remove messages_pending call,
4146 since it resulted in too much inefficient watch adding/removing;
4147 instead we now require that the transport user does an iteration
4148 after queueing outgoing messages, and after trying the first
4149 write() we add a write watch if we got EAGAIN or exceeded our
4150 max bytes to write per iteration setting
4152 * dbus/dbus-string.c (_dbus_string_validate_signature): add this
4155 * dbus/dbus-server-unix.c (unix_finalize): the socket name was
4156 freed and then accessed, valgrind flagged this bug, fix it
4158 * dbus/dbus-message.c: fix several bugs where HEADER_FIELD_LAST was taken
4159 as the last valid field plus 1, where really it is equal to the
4160 last valid field. Corrects some message corruption issues.
4162 * dbus/dbus-mainloop.c: verbosity changes
4164 * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): handle OOM
4165 instead of aborting in one of the test codepaths
4167 * dbus/dbus-internals.c (_dbus_verbose_real): fix a bug that
4168 caused not printing the pid ever again if a verbose was missing
4169 the newline at the end
4170 (_dbus_header_field_to_string): add HEADER_FIELD_SIGNATURE
4172 * dbus/dbus-connection.c: verbosity changes;
4173 (dbus_connection_has_messages_to_send): new function
4174 (_dbus_connection_message_sent): no longer call transport->messages_pending
4175 (_dbus_connection_send_preallocated_unlocked): do one iteration to
4176 try to write() immediately, so we can avoid the write watch. This
4177 is the core purpose of this patchset
4178 (_dbus_connection_get_dispatch_status_unlocked): if disconnected,
4179 dump the outgoing message queue, so nobody will get confused
4180 trying to send them or thinking stuff is pending to be sent
4182 * bus/test.c: verbosity changes
4184 * bus/driver.c: verbosity/assertion changes
4186 * bus/dispatch.c: a bunch of little tweaks to get it working again
4187 because this patchset changes when/where you need to block.
4189 2004-11-23 Havoc Pennington <hp@redhat.com>
4191 * test/glib/test-profile.c: modify to accept a plain_sockets
4192 argument in which case it will bench plain sockets instead of
4193 libdbus, for comparison purposes.
4195 2004-11-22 Havoc Pennington <hp@redhat.com>
4197 * test/glib/test-profile.c (N_CLIENT_THREADS): run multiple
4198 threads for more time, so sysprof can get a grip on it.
4200 * dbus/dbus-string.c (_dbus_string_validate_utf8): remove
4203 2004-11-13 Havoc Pennington <hp@redhat.com>
4205 * test/glib/test-profile.c: fix this thing up a bit
4207 * dbus/dbus-message.c (dbus_message_new_empty_header): increase
4208 preallocation sizes by a fair bit; not sure if this will be an
4209 overall performance win or not, but it does reduce reallocs.
4211 * dbus/dbus-string.c (set_length, reallocate_for_length): ignore
4212 the test hack that forced constant realloc if asserts are
4213 disabled, so we can profile sanely. Sprinkle in some
4214 _DBUS_UNLIKELY() which are probably pointless, but before I
4215 noticed the real performance problem I put them in.
4216 (_dbus_string_validate_utf8): micro-optimize this thing a little
4217 bit, though callgrind says it didn't help; then special-case
4218 ascii, which did help a lot; then be sure we detect nul bytes as
4219 invalid, which is a bugfix.
4220 (align_length_then_lengthen): add some more _DBUS_UNLIKELY
4221 superstition; use memset to nul the padding instead of a manual
4223 (_dbus_string_get_length): inline this as a
4224 macro; it showed up in the profile because it's used for loop
4227 2004-11-10 Colin Walters <walters@verbum.org>
4229 * dbus/dbus-spawn.c (check_babysit_events): Handle EINTR,
4232 2004-11-09 Colin Walters <walters@verbum.org>
4234 * dbus/dbus-string.c (_dbus_string_get_length): New
4235 function, writes DBusString to C buffer.
4237 * dbus/dbus-string.h: Prototype it.
4239 * dbus/dbus-message.c (dbus_message_type_to_string): New
4240 function, converts message type into C string.
4242 * dbus/dbus-message.h: Prototype it.
4244 * bus/selinux.c (bus_selinux_check): Take source pid,
4245 target pid, and audit data. Pass audit data to
4247 (log_audit_callback): New function, appends extra
4249 (bus_selinux_allows_acquire_service): Also take
4250 service name, add it to audit data.
4251 (bus_selinux_allows_send): Also take message
4252 type, interface, method member, error name,
4253 and destination, and add them to audit data.
4254 (log_cb): Initialize func_audit.
4256 * bus/selinux.h (bus_selinux_allows_acquire_service)
4257 (bus_selinux_allows_send): Update prototypes
4259 * bus/services.c (bus_registry_acquire_service): Pass
4260 service name to bus_selinux_allows_acquire_service.
4262 * bus/bus.c (bus_context_check_security_policy): Pass
4263 additional audit data. Move assignment of dest
4266 2004-11-07 Colin Walters <walters@verbum.org>
4268 * dbus/dbus-transport-unix.c (do_authentication): Always
4269 initialize auth_completed.
4271 2004-11-07 Colin Walters <walters@verbum.org>
4273 * bus/bus.c (load_config): Break into three
4274 separate functions: process_config_first_time_only,
4275 process_config_every_time, and process_config_postinit.
4276 (process_config_every_time): Move call of
4277 bus_registry_set_service_context_table into
4278 process_config_postinit.
4279 (process_config_postinit): New function, does
4280 any processing that needs to happen late
4281 in initialization (and also on reload).
4282 (bus_context_new): Instead of calling load_config,
4283 open config parser here and call process_config_first_time_only
4284 and process_config_every_time directly. Later, after
4285 we have forked but before changing UID,
4286 invoke bus_selinux_full_init, and then call
4287 process_config_postinit.
4288 (bus_context_reload_config): As in bus_context_new,
4289 load parse file inside here, and call process_config_every_time
4290 and process_config_postinit.
4292 * bus/services.h, bus/services.c
4293 (bus_registry_set_service_context_table): Rename
4294 from bus_registry_set_sid_table. Take string hash from config
4295 parser, and convert them here into SIDs.
4297 * bus/config-parser.c (struct BusConfigParser): Have
4298 config parser only store a mapping of service->context
4300 (merge_service_context_hash): New function.
4301 (merge_included): Merge context string hashes instead
4302 of using bus_selinux_id_table_union.
4303 (bus_config_parser_new): Don't use bus_selinux_id_table_new;
4304 simply create a new string hash.
4305 (bus_config_parser_unref): Unref it.
4306 (start_selinux_child): Simply insert strings into hash,
4307 don't call bus_selinux_id_table_copy_over.
4309 * bus/selinux.h, bus/selinux.c (bus_selinux_id_table_union)
4310 (bus_selinux_id_table_copy_over): Delete.
4312 2004-11-03 Colin Walters <walters@verbum.org>
4314 * bus/selinux.c (bus_selinux_pre_init): Kill some unused
4317 2004-11-03 Colin Walters <walters@verbum.org>
4319 * bus/test-main.c (test_pre_hook): Fix test logic,
4320 thanks Joerg Barfurth <Joerg.Barfurth@Sun.COM>.
4322 2004-11-02 Colin Walters <walters@redhat.com>
4324 * bus/selinux.c (bus_selinux_init): Split into two functions,
4325 bus_selinux_pre_init and bus_selinux_post_init.
4326 (bus_selinux_pre_init): Just determine whether SELinux is
4328 (bus_selinux_post_init): Do everything else.
4330 * bus/main.c (main): Call bus_selinux_pre_init before parsing
4331 config file, and bus_selinux_post_init after. This ensures that
4332 we don't lose the policyreload notification thread that
4333 bus_selinux_init created before forking previously.
4335 * bus/test-main.c (test_pre_hook): Update for split.
4337 2004-10-31 Owen Fraser-Green <owen@discobabe.net>
4339 Patch from Johan Fischer <linux@fischaz.com>
4341 * mono/doc/Makefile.am (install-data-local): Added directory
4344 2004-10-29 Colin Walters <walters@redhat.com>
4346 * dbus/dbus-sysdeps.h (_dbus_become_daemon): Also take
4347 parameter for fd to write pid to.
4349 * dbus/dbus-sysdeps.c (_dbus_become_daemon): Implement it.
4351 * bus/bus.c (bus_context_new): Pass print_pid_fd
4352 to _dbus_become_daemon (bug #1720)
4354 2004-10-29 Colin Walters <walters@redhat.com>
4356 Patch from Ed Catmur <ed@catmur.co.uk>
4358 * mono/doc/Makefile.am (install-data-local): Handle
4361 2004-10-29 Colin Walters <walters@redhat.com>
4363 * bus/.cvsignore, qt/.cvsignore: Update.
4365 2004-10-29 Colin Walters <walters@redhat.com>
4367 Patch from Kristof Vansant <de_lupus@pandora.be>
4369 * configure.in: Detect Slackware.
4370 * bus/Makefile.am (SCRIPT_IN_FILES): Add rc.messagebus.in.
4371 * bus/rc.messagebus.in: New file.
4373 2004-10-29 Colin Walters <walters@redhat.com>
4375 * tools/dbus-monitor.c (filter_func): Return
4376 DBUS_HANDLER_RESULT_HANDLED in filter function
4378 http://freedesktop.org/pipermail/dbus/2004-August/001433.html
4380 2004-10-29 Colin Walters <walters@redhat.com>
4382 Patch from Matthew Rickard <mjricka@epoch.ncsc.mil>
4384 * bus/services.c (bus_registry_acquire_service):
4385 Correctly retrieve service name from DBusString
4388 2004-10-29 Colin Walters <walters@redhat.com>
4390 * dbus/dbus-glib.h: Update documentation to not
4391 refer to internal APIs.
4393 2004-10-27 Joe Shaw <joeshaw@novell.com>
4395 * mono/Arguments.cs (GetDBusTypeConstructor):
4396 type.UnderlyingSystemType will return "System.Byte" if you do it
4397 on "byte[]", which is not what we want. So check the type.IsArray
4398 property and use System.Array instead.
4400 2004-10-25 John (J5) Palmieri <johnp@redhat.com>
4402 * dbus/dbus-sysdeps.c (fill_user_info): On errors do not free
4403 the DBusUserInfo structure since this is passed into the function.
4404 This would cause a double free when the function that allocated
4405 the structure would try to free it when an error occured.
4407 * (bus/session.conf.in, bus/Makefile.am, dbus/configure.in):
4408 use /usr/share/dbus-1/services instead of /usr/lib/dbus-1.0/services
4409 for service activation to avoid 32bit/64bit parallel install issues
4411 2004-10-21 Colin Walters <walters@verbum.org>
4413 * AUTHORS: Fix my email address, the @gnu.org one
4414 has been bouncing for some time. Also add J5.
4416 2004-10-21 Colin Walters <walters@verbum.org>
4418 * dbus/dbus-transport-unix.c (do_authentication): Return
4419 authentication status to callers.
4420 (unix_handle_watch): If we completed authentication this round,
4421 don't do another read. Instead wait until the next iteration,
4422 after we've read any pending data in the auth buffer.
4423 (unix_do_iteration): Ditto.
4424 (unix_handle_watch): Updated for new do_authentication prototype.
4426 2004-10-18 Colin Walters <walters@verbum.org>
4428 * bus/selinux.c (bus_selinux_enabled): Handle
4429 --disable-selinux case.
4431 2004-10-18 Colin Walters <walters@verbum.org>
4433 * bus/selinux.h: Add bus_selinux_enabled.
4435 * bus/selinux.c (bus_selinux_enabled): Implement it.
4437 * bus/config-parser.c (struct include): Add
4438 if_selinux_enabled member.
4439 (start_busconfig_child): Parse if_selinux_enabled
4440 attribute for include.
4441 (bus_config_parser_content): Handle it.
4443 * bus/session.conf.in, bus/system.conf.in: Add
4444 inclusion of context mapping to default config files;
4445 conditional on SELinux being enabled.
4447 * doc/busconfig.dtd: Add to if_selinux_enabled to default DTD.
4449 * test/data/invalid-config-files/badselinux-1.conf,
4450 test/data/invalid-config-files/badselinux-2.conf:
4451 Test files for bad syntax.
4453 2004-10-17 Colin Walters <walters@verbum.org>
4455 * dbus/dbus-memory.c (_dbus_initialize_malloc_debug, check_guards)
4456 (dbus_malloc, dbus_malloc0, dbus_realloc): Fix up printf
4457 format specifier mismatches.
4459 2004-10-07 Olivier Andrieu <oliv__a@users.sourceforge.net>
4461 * dbus/dbus-sysdeps.c (_dbus_file_get_contents): fix an incorrect
4464 * glib/dbus-dbus-gmain.c (dbus_g_bus_get): do not mangle NULL
4465 pointer (bug #1540, Leonardo Boiko).
4467 2004-09-28 Jon Trowbridge <trow@ximian.com>
4469 * mono/BusDriver.cs: Changed BusDriver struct to remove
4470 the ServiceCreated and ServiceDeleted events and replace them
4471 with the new ServiceOwnerChanged event.
4473 * mono/example/BusListener.cs: Added a new example program,
4474 which listens for and reports any ServiceOwnerChanged events
4477 * mono/example/Makefile.am (DESTDIR): Build changes for the
4478 new BusListener.cs example.
4480 2004-09-27 Olivier Andrieu <oliv__a@users.sourceforge.net>
4482 * bus/signals.c (bus_match_rule_parse): validate the components of
4483 match rules (bug #1439).
4485 * dbus/dbus-bus.c (dbus_bus_add_match): add a missing OOM test.
4487 2004-09-24 Olivier Andrieu <oliv__a@users.sourceforge.net>
4489 * doc/dbus-specification.xml: document ServiceOwnerChanged
4492 * bus/driver.c, bus/driver.h, bus/services.c: Use
4493 ServiceOwnerChanged signal instead of ServiceCreated and
4496 * bus/dispatch.c: update testcase for the new signal.
4498 2004-09-20 Jon Trowbridge <trow@ximian.com>
4500 Patch from Nat Friedman <nat@novell.com>
4502 * mono/Makefile.am: A number of small build fixes to allow "make
4503 distcheck" to succeed.
4505 * mono/example/Makefile.am: "make distcheck" fixes.
4507 * mono/AssemblyInfo.cs.in: When signing the assembly, look for the
4510 * test/Makefile.am: "make distcheck" fixes.
4512 2004-09-17 Olivier Andrieu <oliv__a@users.sourceforge.net>
4514 * dbus/dbus-sysdeps.c (_dbus_user_at_console): fix memleak in OOM.
4516 * doc/busconfig.dtd: update the DTD for the at_console attribute.
4518 * bus/driver.c (bus_driver_handle_hello): correctly handle Hello
4519 messages after the first one (bug #1389).
4521 * bus/dispatch.c (check_double_hello_message): add a test case for
4522 the double hello message bug.
4523 (check_existent_service_activation): fix check of spawning error.
4525 2004-09-16 David Zeuthen <david@fubar.dk>
4527 * python/dbus_bindings.pyx.in: Add support for int64 and uint64
4529 2004-09-12 David Zeuthen <david@fubar.dk>
4531 Patch from Kay Sievers <kay.sievers@vrfy.org>
4533 * bus/bus.c (bus_context_new):
4535 * bus/main.c (usage)
4537 Add commandline option --nofork to override configuration file
4540 2004-09-09 Olivier Andrieu <oliv__a@users.sourceforge.net>
4542 * dbus/dbus-*.h: remove the ; after DBUS_(BEGIN|END)_DECLS. Some C
4543 compilers don't like it (bug #974).
4545 2004-09-04 Harald Fernengel <harry@kdevelop.org>
4547 * qt/connection.*: Applied patch by Jérôme Lodewyck
4548 <lodewyck@clipper.ens.fr> to integrate an existing
4549 connection into the Qt eventloop
4551 2004-08-30 Jon Trowbridge <trow@ximian.com>
4553 * mono/BusDriver.cs: Added. This is a class for interacting with
4554 the org.freedesktop.DBus service.
4556 * mono/Message.cs: Added a mechanism to expose the message that is
4557 currently being dispatched via the static Message.Current
4558 property. Added Message.Sender and Message.Destination
4561 * mono/Handler.cs: Expose the dispatched message via
4562 Message.Current when handling method calls.
4564 * mono/Service.cs: Expose the dispatched message via
4565 Message.Current when handling signal emissions.
4567 * mono/Connection.cs: Bind dbus_bus_get_base_service via the
4568 Connection.BaseService property.
4570 2004-08-28 Havoc Pennington <hp@redhat.com>
4572 * dbus/dbus-userdb.c (_dbus_is_console_user): remove unused variable
4574 More fixes from Steve Grubb
4576 * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): fix fd leak
4577 (_dbus_listen_tcp_socket): fix fd leak
4579 * dbus/dbus-spawn.c (read_pid, read_ints): move the "again:" for
4580 EINTR to a bit lower in the code
4582 2004-08-26 Jon Trowbridge <trow@ximian.com>
4584 * bus/driver.c (bus_driver_handle_service_exists): Respond with
4585 TRUE if we are inquiring about the existence of the built-in
4586 org.freedesktop.DBus service.
4588 2004-08-25 John Palmieri <johnp@redhat.com>
4589 * bus/config-parser.c:
4590 (struct PolicyType): Add POLICY_CONSOLE
4591 (struct Element.d.policy): s/gid_or_uid/gid_uid_or_at_console
4592 (start_busconfig_child): Sets up console element when
4593 <policy at_console=""> is encountered in a policy file
4594 (append_rule_from_element): Convert console elements to console
4598 (bus_policy_create_client_policy): Add console rules to the client
4599 policy based on if the client is at the console
4600 (bus_policy_append_console_rule): New function for adding a
4601 console rule to a policy
4602 (bus_policy_merge): Handle console rule merging
4604 * dbus/dbus-sysdeps.h: Added the DBUS_CONSOLE_DIR constant
4605 where we check for console user files
4607 * dbus/dbus-sysdeps.c:
4608 (_dbus_file_exists): New function which checks if the given
4610 (_dbus_user_at_console): New function which does the system
4611 specific process of checking if the user is at the console
4613 * dbus/dbus-userdb.c:
4614 (_dbus_is_console_user): New function converts a UID to user name
4615 and then calls the system specific _dbus_user_at_console to
4616 see if the user is at the console and therefor a console user
4618 2004-08-25 Olivier Andrieu <oliv__a@users.sourceforge.net>
4620 * bus/config-parser.c (set_limit):
4621 * bus/dbus-daemon-1.1.in:
4622 * test/data/valid-config-files/many-rules.conf: set the
4623 max_match_rules_per_connection limt from the config file.
4625 * doc/busconfig.dtd: update the DTD.
4627 * bus/driver.c: remove some unused variables.
4629 2004-08-24 Mikael Hallendal <micke@imendio.com>
4631 * dbus/dbus-glib-lowlevel.h: Removed dbus_bus_get_with_g_main since
4632 it's been replaced by dbus_g_bus_get
4634 2004-08-23 Colin Walters <walters@redhat.com>
4636 Updated SELinux support from Matthew Rickard <mjricka@epoch.ncsc.mil>
4638 * bus/selinux.h: Prototype bus_selinux_get_policy_root.
4640 * bus/selinux.c: Create a thread for policy reload notification.
4641 (bus_selinux_get_policy_root): Implement.
4643 * bus/config-parser.c (start_busconfig_child)
4644 (bus_config_parser_content): Support SELinux-root relative
4647 * configure.in <HAVE_SELINUX>: Add -lpthread.
4649 * bus/test-main.c (test_pre_hook, test_post_hook): New.
4650 (test_post_hook): Move memory checking into here.
4651 (test_pre_hook, test_post_hook): Move SELinux checks in
4652 here, but conditional on a DBUS_TEST_SELINUX environment
4653 variable. Unfortunately we can't run the SELinux checks
4654 as a normal user, since they won't have any permissions
4655 for /selinux. So this will have to be tested manually
4656 for now, until we have virtualization for most of
4659 2004-08-23 Havoc Pennington <hp@redhat.com>
4661 * dbus/dbus-sysdeps.c (_dbus_change_identity): add setgroups() to
4662 drop supplementary groups, suggested by Steve Grubb
4664 2004-08-20 Colin Walters <walters@redhat.com>
4666 * bus/config-parser.c (start_busconfig_child): Remove some unused
4669 * bus/selinux.c (bus_selinux_id_table_insert): Avoid compiler
4672 2004-08-17 Joe Shaw <joeshaw@novell.com>
4674 * configure.in: If --enable-mono is passed in, if we can't find
4677 * mono/Makefile.am: Use /gacutil to install assemblies into the
4680 2004-08-12 Havoc Pennington <hp@redhat.com>
4682 * NEWS: update for 0.22
4684 * configure.in: release 0.22
4686 2004-08-11 Colin Walters <walters@redhat.com>
4688 * tools/dbus-send.c (main, usage): Add --reply-timeout
4691 2004-08-10 Olivier Andrieu <oliv__a@users.sourceforge.net>
4693 * bus/bus.c (process_config_first_time_only): get rid of an unused
4694 DBusError that was causing a memoy leak (bug #989).
4696 * dbus/dbus-keyring.c, dbus/dbus-message.c:
4697 fix compilation on Solaris/Forte C (bug #974)
4699 * bus/main.c (main): plug two minuscule memleaks.
4701 2004-08-10 Havoc Pennington <hp@redhat.com>
4703 * doc/dbus-tutorial.xml: add some more info on GLib bindings
4705 2004-08-09 Havoc Pennington <hp@redhat.com>
4707 * COPYING: switch to Academic Free License version 2.1 instead of
4708 2.0, to resolve complaints about patent termination clause.
4710 2004-07-31 John (J5) Palmieri <johnp@redhat.com>
4712 * README: added documentation for the --enable-python
4715 2004-07-31 Olivier Andrieu <oliv__a@users.sourceforge.net>
4717 * bus/config-parser.c (bus_config_parser_new): fix an invalid
4718 _unref in the SELinux support.
4720 * doc/busconfig.dtd: update DTD for SELinux support.
4722 * bus/config-loader-libxml.c: fix error handler and parser
4723 initialisation/cleanup. OOM test now works with libxml2 HEAD.
4725 * configure.in: remove the warning about libxml2.
4727 * dbus/dbus-bus.c: silence doxygen warning.
4729 2004-07-31 Colin Walters <walters@redhat.com>
4731 * configure.in: Move #error in SELinux check to its own line.
4733 2004-07-31 Olivier Andrieu <oliv__a@users.sourceforge.net>
4735 * dbus/dbus-internals.h (_DBUS_SET_OOM):
4736 * bus/utils.h (BUS_SET_OOM): use dbus_error_set_const instead of
4739 * bus/dispatch.c (check_send_exit_to_service): fix the test case,
4740 broken by the change in the _SET_OOM macros.
4742 2004-07-31 Colin Walters <walters@redhat.com>
4744 * bus/selinux.c <HAVE_SELINUX>: Include utils.h to get
4747 2004-07-31 Colin Walters <walters@redhat.com>
4749 * configure.in: Use AC_TRY_COMPILE instead of AC_EGREP_HEADER
4750 to correctly detect DBUS__ACQUIRE_SVC. Also add an
4753 2004-07-24 Havoc Pennington <hp@redhat.com>
4755 SELinux support from Matthew Rickard <mjricka@epoch.ncsc.mil>
4757 * bus/selinux.c, bus/selinux.h: new file encapsulating selinux
4760 * configure.in: add --enable-selinux
4762 * bus/policy.c (bus_policy_merge): add FIXME to a comment
4764 * bus/main.c (main): initialize and shut down selinux
4766 * bus/connection.c: store SELinux ID on each connection, to avoid
4767 repeated getting of the string context and converting it into
4770 * bus/bus.c (bus_context_get_policy): new accessor, though it
4772 (bus_context_check_security_policy): check whether the security
4773 context of sender connection can send to the security context of
4774 recipient connection
4776 * bus/config-parser.c: add parsing for <selinux> and <associate>
4778 * dbus/dbus-transport.c (_dbus_transport_get_unix_fd): to
4779 implement dbus_connection_get_unix_fd()
4781 * dbus/dbus-connection.c (dbus_connection_get_unix_fd): new
4782 function, used by the selinux stuff
4784 2004-07-29 Olivier Andrieu <oliv__a@users.sourceforge.net>
4786 * bus/config-loader-libxml.c: complete the implementation of
4787 libxml backend for config file loader. Doesn't work with full OOM
4790 * configure.in: change error when selecting libxml into a warning.
4792 * test/data/invalid-config-files: add two non-well-formed XML
4795 * glib/Makefile.am: libdbus_gtool always uses expat, not libxml.
4797 * dbus/dbus-transport-unix.c (unix_handle_watch): do not
4798 disconnect in case of DBUS_WATCH_HANGUP, several do_reading() may
4799 be necessary to read all the buffer. (bug #894)
4801 * bus/activation.c (bus_activation_activate_service): fix a
4802 potential assertion failure (bug #896). Small optimization in the
4803 case of auto-activation messages.
4805 * dbus/dbus-message.c (verify_test_message, _dbus_message_test):
4806 add test case for byte-through-vararg bug (#901). patch by Kimmo
4809 2004-07-28 Anders Carlsson <andersca@gnome.org>
4812 * python/dbus_bindings.pyx.in:
4813 Add dbus.init_gthreads (), allow emit_signal to pass
4814 arguments to the signal.
4816 2004-07-24 Havoc Pennington <hp@redhat.com>
4818 * AUTHORS: add some people, not really comprehensively, let me
4819 know if I missed you
4821 2004-07-24 Havoc Pennington <hp@redhat.com>
4823 * Makefile.am (DIST_SUBDIRS): add DIST_SUBDIRS, problem solved by
4826 * test/Makefile.am (DIST_SUBDIRS): here also
4828 2004-07-22 Olivier Andrieu <oliv__a@users.sourceforge.net>
4830 * dbus/dbus-sysdeps.c (fill_user_info): fix inexistent label name,
4831 breaking build on Solaris, reported by Farhad Saberi on the ML.
4833 * dbus/dbus-message.c (dbus_message_append_args_valist): fix the
4834 va_arg invocation to account for integer promotion in the case of
4835 DBUS_TYPE_BYTE (unsigned char is promoted to int). (bug #901)
4837 * bus/services.c (bus_service_remove_owner): fix bug #902, use
4838 _dbus_list_get_first_link, not _dbus_list_get_first.
4840 * dbus/dbus-bus.c (dbus_bus_service_exists): plug a memory leak.
4842 * dbus/dbus-object-tree.c (free_subtree_recurse): always null
4843 handler functions so that the asserts in _dbus_object_subtree_unref
4846 * dbus/dbus-transport-unix.c (do_reading):
4847 _dbus_transport_queue_messages return value is of type
4848 dbus_bool_t, not DBusDispatchStatus.
4850 2004-07-19 David Zeuthen <david@fubar.dk>
4852 * dbus/dbus-protocol.h: Add DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN
4855 (check_get_connection_unix_user): Debug says GetProperty; but the
4856 method is called GetConnectionUnixUser
4857 (check_get_connection_unix_process_id): New function
4858 (bus_dispatch_test): Actually call check_get_connection_unix_user();
4859 also call check_get_connection_unix_process_id()
4862 (bus_driver_handle_get_connection_unix_process_id): New function,
4863 handles GetConnectionUnixProcessID on the org.freedesktop.DBus
4867 (handle_server_data_external_mech): Set pid from the credentials
4868 obtained from the socket
4870 * dbus/dbus-connection.c:
4871 (dbus_connection_get_unix_process_id): New function
4873 * dbus/dbus-connection.h:
4874 Add prototype for dbus_connection_get_unix_process_id
4876 * dbus/dbus-transport.c:
4877 (_dbus_transport_get_unix_process_id): New function
4879 * dbus/dbus-transport.h:
4880 Add prototype for _dbus_transport_get_unix_process_id
4882 2004-07-19 Olivier Andrieu <oliv__a@users.sourceforge.net>
4884 * dbus/dbus-message.c: Message counter fix, patch by Christian
4885 Hammond <chipx86@gnupdate.org>
4887 2004-07-18 Seth Nickell <seth@gnome.org>
4890 * python/dbus_bindings.pyx.in:
4891 * python/tests/test-client.py:
4893 Add dbus.ByteArray and dbus_bindings.ByteArray
4894 types so that byte streams can be passed back.
4896 Give jdahlin the heaps of credit that are so
4899 2004-07-12 Seth Nickell <seth@gnome.org>
4903 Add message argument to the default object_method_handler
4906 * python/dbus_bindings.pyx.in:
4908 Automatically return NIL when passed an empty list
4909 (we can't pass back a list since lists are typed
4910 and we don't have any idea what type the the client
4911 intended the list to be... :-( )
4913 2004-07-10 Seth Nickell <seth@gnome.org>
4915 * python/examples/Makefile.am:
4917 Fix distcheck breakage caused by new examples.
4919 2004-07-10 Seth Nickell <seth@gnome.org>
4923 Add "message" argument to service-side dbus.Object
4924 methods. This will break existing services written
4925 using the python bindings, but will allow extraction
4926 of all the message information (e.g. who its from).
4928 Add improved "object oriented" signal handling/emission.
4930 * python/examples/example-service.py:
4934 * python/examples/example-signal-emitter.py:
4935 * python/examples/example-signal-recipient.py:
4937 Two new examples that show how to emit and receive
4938 signals using the new APIs.
4940 * python/examples/example-signals.py:
4941 * python/examples/gconf-proxy-service.py:
4942 * python/examples/gconf-proxy-service2.py:
4944 Add "message" argument to service methods.
4946 2004-06-28 Kay Sievers <kay.sievers@vrfy.org>
4948 * bus/driver.c (bus_driver_handle_get_connection_unix_user)
4949 * dbus/bus.c (dbus_bus_get_unix_user)
4950 * doc/dbus-specification.xml: implement GetConnectionUnixUser
4951 method of org.freedesktop.DBus interface.
4953 * bus/dispatch.c: test case
4955 2004-06-23 John (J5) Palmieri <johnp@redhat.com>
4957 * python/Makefile.am: switched include directory from glib/ to dbus/
4958 since dbus-glib.h moved
4960 2004-06-22 Olivier Andrieu <oliv__a@users.sourceforge.net>
4962 * configure.in: prevent building the gcj stuff and libxml loader
4963 since they are broken.
4965 2004-06-20 Havoc Pennington <hp@redhat.com>
4967 * dbus/dbus-glib-error-enum.h: autogenerate the GError enum
4968 codes from the dbus error names
4970 * glib/dbus-glib.h: move to subdir dbus/ since it's included
4971 as dbus/dbus-glib.h and that breakage is now visible due to
4972 including dbus/dbus-glib.h in dbus-glib-lowlevel.h
4974 * glib/dbus-glib.h: s/gproxy/g_proxy/
4976 * dbus/dbus-shared.h: new header to hold stuff shared with
4979 * dbus/dbus-protocol.h (DBUS_ERROR_*): move errors here rather
4982 * glib/dbus-glib.h (dbus_set_g_error): move to
4983 dbus-glib-lowlevel.h
4985 * glib/dbus-glib.h: remove dbus/dbus.h from here; change a bunch
4986 of stuff to enable this
4988 * dbus/dbus-glib-lowlevel.h: put dbus/dbus.h here
4990 * a bunch of other changes with the same basic "separate glib
4991 bindings from dbus.h" theme
4993 2004-06-10 Owen Fraser-Green <owen@discobabe.net>
4995 * dbus-sharp.pc.in: Removed glib-sharp inclusion in Libs.
4997 * python/examples/Makefile.am: Fixed typo in EXTRA_DIST.
4999 2004-06-09 Olivier Andrieu <oliv__a@users.sourceforge.net>
5001 * bus/driver.c, dbus/dbus-bus.c: use BOOLEAN instead of UINT32 for
5002 the reply value of the ServiceExists message.
5004 2004-06-07 John (J5) Palmieri <johnp@redhat.com>
5006 * python/dbus_bindings.pyx.in: No longer need to parse path
5007 elements and pass them as arrays of strings. The C API now
5008 accepts plain path strings.
5009 (_build_parsed_path): removed
5011 2004-06-07 Havoc Pennington <hp@redhat.com>
5013 * doc/TODO: remove auto-activation item since it's done; sort
5014 items by importance/milestone
5016 2004-06-07 Havoc Pennington <hp@redhat.com>
5018 * dbus/dbus-message-builder.c (_dbus_message_data_load): append
5019 random signature when using REQUIRED_FIELDS (this hack won't work
5022 * dbus/dbus-message.c: change the signature to be a header field,
5023 instead of message->signature special-case string. Incremental
5024 step forward. Then we can fix up code to send the signature in the
5025 message, then fix up code to validate said signature, then fix up
5026 code to not put the typecodes inline, etc.
5027 (load_one_message): don't make up the signature after the fact
5028 (decode_header_data): require signature field for the known
5031 * dbus/dbus-marshal.c (_dbus_marshal_string_len): new
5033 * dbus/dbus-protocol.h: add DBUS_HEADER_FIELD_SIGNATURE
5035 2004-06-07 Owen Fraser-Green <owen@discobabe.net>
5037 * mono/DBusType/ObjectPath.cs: Renamed PathName argument to Path
5039 * mono/Handler.cs: Updated to follow new path argument for
5040 (un-)registering objects.
5042 * mono/example/Makefile.am:
5044 * configure.in: Bumped required version for mono and use new -pkg
5047 2004-06-05 Olivier Andrieu <oliv__a@users.sourceforge.net>
5049 * dbus/dbus-connection.h, dbus/dbus-connection.c: have object path
5050 registration functions take the path argument as char* instead of
5053 * dbus/dbus-marshal.h, dbus/dbus-marshal.c (_dbus_decompose_path):
5054 split off the path decompostion part of
5055 _dbus_demarshal_object_path. Some misc. fixes to silence compiler
5058 * glib/dbus-gobject.c, test/test-service.c: update accordingly.
5060 2004-06-02 Kristian Høgsberg <krh@redhat.com>
5062 * dbus/dbus-auth.c: Rewrite auth protocol handling to use a state
5063 machine approach. A state is implemented as a function that
5064 handles incoming events as specified for that state.
5066 * doc/dbus-specification.xml: Update auth protocol state machine
5067 specification to match implementation. Remove some leftover
5070 2004-06-02 Kristian Høgsberg <krh@redhat.com>
5072 * glib/dbus-gproxy.c, glib/dbus-gmain.c, dbus/dbus-string.c,
5073 dbus/dbus-object-tree.c, dbus/dbus-message.c: add comments to
5076 * Doxyfile.in: remove deprecated options.
5078 * dbus/dbus-message-handler.c, dbus/dbus-message-handler.h,
5079 glib/test-thread.h, glib/test-thread-client.c,
5080 glib/test-thread-server.c, glib/test-profile.c,
5081 glib/test-dbus-glib.c: remove these unused files.
5083 2004-06-01 Olivier Andrieu <oliv__a@users.sourceforge.net>
5085 * dbus/dbus-object-tree.c
5086 (_dbus_object_tree_dispatch_and_unlock): fix dispatch for
5087 non-fallback handlers (bug #684).
5088 (_dbus_object_subtree_new): initialize invoke_as_fallback field.
5089 (find_subtree_recurse): report wether the returned subtree is an
5090 exact match or a "fallback" match higher up in the tree.
5091 (object_tree_test_iteration): update test case.
5093 2004-06-01 Seth Nickell <seth@gnome.org>
5095 * python/dbus_bindings.pyx.in:
5096 * python/tests/test-client.py:
5098 Round off basic type support. Add dicts (yay!), and
5099 remaining array types.
5101 Make MessageIter more general so it works for dicts too.
5103 Mark all loop variables as C integers.
5105 2004-05-31 Havoc Pennington <hp@redhat.com>
5107 * glib/dbus-gidl.c (method_info_add_arg): keep args sorted with
5110 * glib/dbus-gobject.c (dbus_type_to_string): move to dbus-gutils.c
5112 * glib/dbus-glib-tool.c (main): set up to have a --self-test
5113 option that runs the tests, and start filling in some code
5114 including for starters just dumping the interfaces to stdout
5116 * glib/Makefile.am (INCLUDES): define DBUS_LOCALEDIR
5118 * test/data/valid-introspection-files/lots-of-types.xml: test of
5119 an example introspection file
5121 * glib/dbus-gparser.c (parser_check_doctype): doctype should be
5124 2004-05-31 Seth Nickell <seth@gnome.org>
5126 * python/dbus_bindings.pyx.in:
5127 * python/tests/test-client.py:
5132 Fix string array memory trashing bug... oops...
5134 2004-05-30 Seth Nickell <seth@gnome.org>
5138 Add a nicer-but-less-flexible alternate API for handling
5139 calls to virtual objects in dbus.ObjectTree.
5141 Screw up the argument order to the dbus.Object constructor
5142 for consistency with dbus.ObjectTree (and to make dbus_methods
5143 optional for future extension)
5145 * python/examples/Makefile.am:
5146 * python/examples/gconf-proxy-service.py:
5147 * python/examples/gconf-proxy-service2.py:
5149 Alternate implementation of gconf-proxy-service using the
5150 nicer dbus.ObjectTree API.
5152 * python/examples/example-service.py:
5153 * python/tests/test-server.py
5155 Reverse the argument order to deal with dbus.Object constructor
5158 2004-05-30 Seth Nickell <seth@gnome.org>
5160 * python/examples/example-client.py:
5161 * python/examples/example-service.py:
5163 Take it back. Lists seem to work but they're broken
5164 in the test suite. Make the base examples use
5167 2004-05-30 Seth Nickell <seth@gnome.org>
5169 * python/dbus_bindings.pyx.in:
5170 * python/tests/test-client.py:
5172 Add some more tests and fix errors that crop up.
5173 Unfortunately, currently it seems like marshalling
5174 and unmarshalling of lists is completely broken :-(
5176 2004-05-30 Seth Nickell <seth@gnome.org>
5178 * python/dbus_bindings.pyx.in:
5180 Add support for ObjectPath type.
5184 Refactor message handling code to a common function.
5186 * python/tests/test-client.py:
5187 * python/tests/test-server.py:
5189 Add tests that check to make sure values of all types
5190 can be echoed from a service w/o mangling.
5192 2004-05-29 Seth Nickell <seth@gnome.org>
5196 Add ObjectTree class which allows implementation
5197 of trees of "virtual" objects. Basically the python
5198 wrapper for "register_fallback".
5200 * python/examples/Makefile.am
5201 * python/examples/gconf-proxy-client.py:
5202 * python/examples/gconf-proxy-service.py:
5204 Implement a simple GConf proxy service that supports
5205 get/set on string and int GConf keys using the ObjectTree.
5207 2004-05-29 Seth Nickell <seth@gnome.org>
5210 * python/examples/example-client.py:
5211 * python/examples/example-service.py:
5212 * python/examples/list-system-services.py:
5214 Add SessionBus, SystemBus and ActivationBus classes
5215 so you don't need to know the special little BUS_TYPE
5218 2004-05-29 Havoc Pennington <hp@redhat.com>
5220 * bus/config-parser.c (process_test_valid_subdir): temporarily
5221 stop testing config parser OOM handling, since expat has issues
5222 http://freedesktop.org/pipermail/dbus/2004-May/001153.html
5224 * bus/dbus-daemon-1.1.in: change requested_reply to
5225 send_requested_reply/receive_requested_reply so we can send the
5226 replies, not just receive them.
5228 * bus/config-parser.c: parse the new
5229 send_requested_reply/receive_requested_reply
5231 * bus/policy.c (bus_client_policy_check_can_send): add
5232 requested_reply argument and use it
5234 * bus/bus.c (bus_context_check_security_policy): pass through
5235 requested_reply status to message send check
5237 * bus/system.conf.in: adapt to requested_reply change
5239 2004-05-28 Havoc Pennington <hp@redhat.com>
5241 * test/glib/test-service-glib.c (main): remove unused variable
5243 * glib/dbus-gidl.c (base_info_ref): fix a silly compiler warning
5245 * dbus/dbus-auth.h (enum): remove AUTHENTICATED_WITH_UNUSED_BYTES
5246 from the enum, no longer in use.
5248 * dbus/dbus-sysdeps.h: include config.h so DBUS_VA_COPY actually
5251 * dbus/dbus-message.c: add various _dbus_return_val_if_fail for
5252 whether error_name passed in is a valid error name.
5254 2004-05-28 John (J5) Palmieri <johnp@redhat.com>
5256 * dbus/dbus-message.c (dbus_message_get_args): Added support for
5257 OBJECT_PATH and OBJECT_PATH_ARRAY
5259 2004-05-28 Seth Nickell <seth@gnome.org>
5261 * python/examples/Makefile.am:
5263 Forget to add Makefile.am. Do not pass go.
5265 2004-05-28 Michael Meeks <michael@ximian.com>
5267 * glib/dbus-gvalue.c (dbus_gvalue_marshal, dbus_gvalue_demarshal):
5270 * dbus/dbus-string.c (_dbus_string_parse_basic_type): impl.
5272 * dbus/dbus-message.c (_dbus_message_iter_get_basic_type),
5273 (_dbus_message_iter_get_basic_type_array): impl.
5274 drastically simplify ~all relevant _get methods to use these.
5275 (_dbus_message_iter_append_basic_array),
5276 (dbus_message_iter_append_basic): impl
5277 drastically simplify ~all relevant _append methods to use these.
5279 * dbus/dbus-message-builder.c (parse_basic_type)
5280 (parse_basic_array, lookup_basic_type): impl.
5281 (_dbus_message_data_load): prune scads of duplicate /
5284 * dbus/dbus-marshal.c (_dbus_demarshal_basic_type_array)
5285 (_dbus_demarshal_basic_type): implement,
5286 (demarshal_and_validate_len/arg): beef up debug.
5287 (_dbus_marshal_basic_type, _dbus_marshal_basic_type_array): impl.
5289 2004-05-27 Seth Nickell <seth@gnome.org>
5292 * python/Makefile.am:
5294 Include the example python apps in the tarball.
5296 * python/examples/list-system-services.py
5298 Add a python new example that fetches the list of services
5299 from the system bus.
5301 2004-05-27 Seth Nickell <seth@gnome.org>
5304 * python/dbus_bindings.pyx.in:
5306 Fix failure to notify that a signal was not handled,
5307 resulted in hung functions.
5309 2004-05-25 Colin Walters <walters@redhat.com>
5311 * tools/dbus-monitor.c (main): Monitor all types of messages.
5313 2004-05-23 Owen Fraser-Green <owen@discobabe.net>
5315 * mono/Handler.cs, mono/Service.cs: Added UnregisterObject method
5316 which unregisters the object path and disposes the handler.
5318 2004-05-23 Kristian Høgsberg <krh@redhat.com>
5320 Patch from Timo Teräs <ext-timo.teras@nokia.com> (#614):
5322 * dbus/dbus-message.c (dbus_message_iter_get_args_valist): Swap
5323 operands to && so we call dbus_message_iter_next () for the last
5326 2004-05-21 Olivier Andrieu <oliv__a@users.sourceforge.net>
5328 * dbus/dbus-object-tree.c
5329 (_dbus_object_tree_list_registered_unlock, lookup_subtree): return
5330 children even if the requested path isn't registered.
5331 (object_tree_test_iteration): test object_tree_list_registered.
5333 * configure.in: undefine HAVE_ABSTRACT_SOCKETS instead of defining
5336 2004-05-20 Kristian Høgsberg <krh@redhat.com>
5338 * doc/TODO: Remove resolved items.
5340 * bus/expirelist.h (struct BusExpireList): remove unused n_items
5343 * bus/connection.c (bus_connections_expect_reply): Enforce the
5344 per-connection limit on pending replies.
5346 Patch from Jon Trowbridge <trow@ximian.com>:
5348 * bus/main.c (setup_reload_pipe): Added. Creates a pipe and sets
5349 up a watch that triggers a config reload when one end of the pipe
5351 (signal_handler): Instead of doing the config reload in our SIGHUP
5352 handler, just write to the reload pipe and let the associated
5353 watch handle the reload when control returns to the main loop.
5355 * bus/driver.c (bus_driver_handle_reload_config): Added.
5356 Implements a ReloadConfig method for requesting a configuration
5357 file reload via the bus driver.
5359 2004-05-19 Owen Fraser-Green <owen@discobabe.net>
5361 * HACKING: Updated release instructions concerning the wiki page.
5363 2004-05-18 Kristian Høgsberg <krh@redhat.com>
5365 * dbus/dbus-auth.c (client_try_next_mechanism): Remove logic to
5366 filter against auth->allowed_mechs; we only add allowed mechs in
5367 record_mechanisms().
5369 * dbus/dbus-auth-script.c (_dbus_auth_script_run): Add an
5370 ALLOWED_MECHS to auth-script format so we can set the list of
5373 * data/auth/client-out-of-mechanisms.auth-script: New test to
5374 check client disconnects when it is out of mechanisms to try.
5376 * dbus/dbus-auth.c (process_command): Remove check for lines
5377 longer that 1 MB; we only buffer up maximum 16 kB.
5379 * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
5380 dbus/dbus-auth-script.c, dbus/dbus-auth.c, dbus/dbus-auth.h:
5381 Remove auth state AUTHENTICATED_WITH_UNUSED_BYTES, instead always
5382 assume there might be unused bytes.
5384 * dbus/dbus-auth.c (_dbus_auth_do_work): Remove check for
5385 client-out-of-mechs, it is handled in process_reject(). Move check
5386 for max failures to send_rejected(), as it's a server-only thing.
5388 * dbus/dbus-auth.c: Factor out protocol reply code into functions
5389 send_auth(), send_data(), send_rejected(), send_error(),
5390 send_ok(), send_begin() and send_cancel().
5392 2004-05-17 Kristian Høgsberg <krh@redhat.com>
5394 Remove base64 encoding, replace with hex encoding. Original patch
5395 from trow@ximian.com, added error handling.
5397 * dbus/dbus-string.c (_dbus_string_base64_encode)
5398 (_dbus_string_base64_decode): Remove.
5399 (_dbus_string_hex_decode): Add end_return argument so we can
5400 distinguish between OOM and invalid hex encoding.
5401 (_dbus_string_test): Remove base64 tests and add test case for
5404 * dbus/dbus-keyring.c, dbus/dbus-auth-script.c, dbus/dbus-auth.c:
5405 Replace base64 with hex.
5407 * test/data/auth/invalid-hex-encoding.auth-script: New test case
5408 for invalid hex encoded data in auth protocol.
5410 2004-05-17 Olivier Andrieu <oliv__a@users.sourceforge.net>
5412 * dbus/dbus-connection.c (check_for_reply_unlocked): plug a memory
5415 2004-05-15 Owen Fraser-Green <owen@discobabe.net>
5417 * mono/dbus-sharp.dll.config.in: Added for GAC
5418 * mono/dbus-sharp.snk: Added for GAC
5419 * mono/Assembly.cs.in: Added for GAC
5420 * mono/Makefile.am: Changes for GAC installation
5421 * configure.in: Added refs for dbus-sharp.dll.config.in and
5422 Assembly.cs.in. More fixes for mono testing
5423 * mono/example/Makefile.am: Changed var to CSC
5424 * Makefile.am: Changed flag name to DBUS_USE_CSC
5426 2004-05-15 Owen Fraser-Green <owen@discobabe.net>
5428 * mono/Makefile.am: Added SUBDIRS for docs. Changed SUBDIRS order
5429 * mono/doc/*: Added documentation framework
5430 * configure.in: Added monodoc check
5431 * README: Added description of mono configure flags
5433 2004-05-11 John (J5) Palmieri <johnp@redhat.com>:
5435 * doc/dbus-specification.xml: Added a "Required" column to the
5436 header fields table and changed the "zero or more" verbage in
5437 the above paragraph to read "The header must contain the required
5438 named header fields and zero or more of the optional named header
5440 * test/data/invalid-messages/*.message: Added the required PATH
5441 named header field to the tests so that they don't fail on
5442 'Missing path field'
5444 2004-05-07 John (J5) Palmieri <johnp@redhat.com>
5446 * python/dbus-bindings.pyx.in: Stopped the bindings from trashing
5447 the stack by implicitly defining variable and parameter types and
5448 removing the hack of defining C pointers as python objects and later
5451 2004-05-02 Owen Fraser-Green <owen@discobabe.net>
5453 * mono/Makefile.am: Removed test-dbus-sharp.exe from all target
5455 2004-05-01 Owen Fraser-Green <owen@discobabe.net>
5457 * mono/DBusType/Dict.cs: Handle empty dicts
5458 * mono/DBusType/Array.cs: Handle empty arrays
5459 * mono/Arguments.cs: Handle empty arguments
5461 2004-04-30 Owen Fraser-Green <owen@discobabe.net>
5463 * dbus-sharp.pc.in: Modified to include include Libs and Requires
5466 2004-04-25 Kristian Høgsberg <krh@redhat.com>
5468 * test/data/valid-messages/standard-*.message: Update message
5469 test scripts to new header field names.
5471 2004-04-22 John (J5) Palmieri <johnp@redhat.com>
5473 * test/break-loader.c (randomly_do_n_things): tracked down buffer
5474 overflow to times_we_did_each_thing array which would chop off the
5475 first character of the failure_dir string. Increased the size of
5476 the array to 7 to reflect the number of random mutation functions
5479 2004-04-21 Kristian Høgsberg <krh@redhat.com>
5481 * dbus/dbus-server-unix.c (unix_finalize): Don't unref
5482 unix_server->watch here, it is unreffed in disconnect.
5483 (_dbus_server_new_for_tcp_socket): convert NULL host to
5484 "localhost" here so we don't append NULL to address.
5486 * dbus/dbus-server.c (_dbus_server_test): Add test case for
5487 various addresses, including tcp with no explicit host.
5489 2004-04-21 Olivier Andrieu <oliv__a@users.sourceforge.net>
5491 * dbus/dbus-message.c (decode_header_data, decode_string_field):
5492 fix incorrect setting of .name_offset in the HeaderField (it was
5493 off by two bytes, positioned right after the name and typecode)
5495 * bus/bus.c (bus_context_new, bus_context_unref): test before
5496 calling dbus_server_free_data_slot and _dbus_user_database_unref
5497 in case of an error.
5499 * tools/Makefile.am: add $(DBUS_GLIB_TOOL_LIBS), xml libs needed
5502 2004-04-19 Kristian Høgsberg <krh@redhat.com>
5504 * dbus/dbus-transport-unix.c (unix_do_iteration): Rewrite to use
5505 _dbus_poll() instead of select().
5507 2004-04-15 Jon Trowbridge <trow@ximian.com>
5509 * bus/main.c (signal_handler): Reload the configuration files
5511 (main): Set up our SIGHUP handler.
5513 * bus/bus.c (struct BusContext): Store the config file, user and
5514 fork flag in the BusContext.
5515 (process_config_first_time_only): Added. Contains the code
5516 (previously in bus_context_new) for setting up the BusContext from
5517 the BusConfigParser that should only be run the first time the
5518 config files are read.
5519 (process_config_every_time): Added. Contains the code (previously
5520 in bus_context_new) for setting up the BusContext from the
5521 BusConfigParser that should be run every time the config files are
5523 (load_config): Added. Builds a BusConfigParser from the config
5524 files and passes the resulting structure off to
5525 process_config_first_time_only (assuming this is the first time)
5526 and process_config_every_time.
5527 (bus_context_new): All of the config-related code has been moved
5528 to process_config_first_time_only and process_config_every_time.
5529 Now this function just does the non-config-related initializations
5530 and calls load_config.
5531 (bus_context_reload_config): Added.
5533 2004-04-15 Olivier Andrieu <oliv__a@users.sourceforge.net>
5535 * bus/driver.c (bus_driver_handle_get_service_owner):
5536 implement a GetServiceOwner method.
5537 * doc/dbus-specification.xml: document it.
5538 * dbus/dbus-errors.h: add a 'ServiceHasNoOwner' error.
5540 * glib/dbus-gproxy.c (dbus_gproxy_new_for_service_owner):
5541 implement, using the bus GetServiceOwner method.
5543 * test/glib/test-dbus-glib.c:
5544 use dbus_gproxy_new_for_service_owner so that we can receive the
5547 2004-04-15 John (J5) Palmieri <johnp@redhat.com>
5549 * dbus/dbus-internals.c, dbus/dbus-message-builder.c,
5550 dbus/dbus-message.c, dbus/dbus-protocol.h
5551 (DBUS_HEADER_FIELD_SERVICE): renamed DBUS_HEADER_FIELD_DESTINATION
5553 * dbus/dbus-internals.c, dbus/dbus-message-builder.c,
5554 dbus/dbus-message.c, dbus/dbus-protocol.h
5555 (DBUS_HEADER_FIELD_SENDER_SERVICE): renamed DBUS_HEADER_FIELD_SENDER
5557 * dbus/dbus-internals.c (_dbus_header_field_to_string):
5558 DBUS_HEADER_FIELD_DESTINATION resolves to "destination"
5559 DBUS_HEADER_FIELD_SENDER resolves to "sender"
5561 * doc/dbus-specification.xml (Header Fields Table):
5562 s/SERVICE/DESTINATION
5563 s/SENDER_SERVICE/SENDER
5566 2004-04-14 Olivier Andrieu <oliv__a@users.sourceforge.net>
5568 * test/glib/test-dbus-glib.c (timed_exit): fail the test after
5571 2004-04-13 Michael Meeks <michael@ximian.com>
5573 * glib/dbus-gobject.c (handle_introspect): split out
5574 (introspect_properties): this.
5575 (handle_introspect): implement this.
5577 * test/glib/Makefile.am: use the absolute path so the bus
5578 daemon's chdir ("/") doesn't kill us dead.
5580 * configure.in: subst ABSOLUTE_TOP_BUILDDIR
5582 2004-04-12 Jon Trowbridge <trow@ximian.com>
5584 * bus/config-parser.c (struct BusConfigParser): Added
5585 included_files field.
5586 (seen_include): Added. Checks whether or not a file has already
5587 been included by any parent BusConfigParser.
5588 (bus_config_parser_new): Copy the parent's included_files.
5589 (include_file): Track which files have been included, and fail on
5590 circular inclusions.
5591 (process_test_valid_subdir): Changed printf to report if we are
5592 testing valid or invalid conf files.
5593 (all_are_equiv): Changed printf to be a bit clearer about
5594 what we are actually doing.
5595 (bus_config_parser_test): Test invalid configuration files.
5597 2004-04-09 Jon Trowbridge <trow@ximian.com>
5599 * bus/config-parser.c (bus_config_parser_new): Added a 'parent'
5600 argument. If non-null, the newly-constructed BusConfigParser will
5601 be initialized with the parent's BusLimits instead of the default
5603 (include_file): When including a config file, pass in
5604 the current parser as the parent and then copy the BusLimits
5605 from the included BusConfigParser pack to the current parser.
5606 (process_test_valid_subdir): Renamed from process_test_subdir.
5607 (process_test_equiv_subdir): Added. Walks through a directory,
5608 descending into each subdirectory and loading the config files
5609 it finds there. If any subdirectory contains two config files
5610 that don't produce identical BusConfigParser structs, fail.
5611 For now, the BusConfigParser's BusPolicies are not compared.
5612 (bus_config_parser_test): Call both process_test_valid_subdir and
5613 process_test_equiv_subdir.
5615 * bus/config-loader-libxml.c (bus_config_load): Take a parent
5616 argument and pass it along to the call to bus_config_parser_new.
5617 Also made a few small changes to allow this code to compile.
5619 * bus/config-loader-expat.c (bus_config_load): Take a parent
5620 argument and pass it along to the call to bus_config_parser_new.
5622 * bus/bus.c (bus_context_new): Load the config file
5623 with a NULL parent argument.
5625 2004-03-29 Michael Meeks <michael@ximian.com>
5627 * glib/dbus-gobject.c (introspect_properties): split
5628 out, fix mangled 'while' flow control.
5629 (introspect_signals): implement.
5630 (handle_introspect): update.
5632 2004-03-29 Michael Meeks <michael@ximian.com>
5634 * glib/dbus-gobject.c (set_object_property): split out /
5635 re-work, use the property type, and not the message type(!)
5636 (get_object_property): ditto.
5638 * glib/dbus-gvalue.c (dbus_gvalue_demarshal),
5639 (dbus_gvalue_marshal): make this code re-usable, needed
5640 for signals too, also on both proxy and server side.
5641 Re-write for more efficiency / readability.
5643 2004-03-29 Michael Meeks <michael@ximian.com>
5645 * dbus/dbus-message.c
5646 (dbus_message_new_error_printf): impl.
5648 * dbus/dbus-connection.c
5649 (dbus_connection_unregister_object_path): fix warning.
5651 * configure.in: fix no-mono-installed situation.
5653 2004-03-27 Havoc Pennington <hp@redhat.com>
5655 Patch from Timo Teräs:
5657 * tools/dbus-send.c (main): if --print-reply, assume type is
5658 method call; support boolean type args
5660 * dbus/dbus-connection.c (dbus_connection_send_with_reply): fix a
5661 bunch of memleak and logic bugs
5663 2004-03-23 Owen Fraser-Green <owen@discobabe.net>
5665 * mono/Arguments.cs:
5666 * mono/Introspector.cs:
5668 * mono/InterfaceProxy.cs:
5670 * mono/ProxyBuilder.cs:
5672 Added InterfaceProxy class to avoid building proxies for every
5676 * dbus-message.c (dbus_message_append_args_valist)
5677 (dbus_message_iter_get_object_path)
5678 (dbus_message_iter_get_object_path_array)
5679 (dbus_message_iter_append_object_path)
5680 (dbus_message_iter_append_object_path_array):
5681 Added object_path iter functions to handle OBJECT_PATH arguments
5683 2004-03-23 Owen Fraser-Green <owen@discobabe.net>
5685 First checkin of mono bindings.
5688 Build stuff for the bindings
5689 * dbus-sharp.pc.in: Added for pkgconfig
5691 2004-03-21 Havoc Pennington <hp@redhat.com>
5693 * test/test-service.c (main): remove debug spew
5695 2004-03-21 Olivier Andrieu <oliv__a@users.sourceforge.net>
5697 * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): accept empty
5700 * dbus/dbus-message.h, bus/dbus-message.c (dbus_message_iter_init)
5701 (dbus_message_iter_init_array_iterator)
5702 (dbus_message_iter_init_dict_iterator): return a dbus_bool_t to
5703 indicate whether the iterator is empty
5705 * dbus/dbus-pending-call.c, dbus/dbus-server.c: silence compiler
5708 2004-03-19 Havoc Pennington <hp@redhat.com>
5710 * NEWS: 0.21 updates
5712 * configure.in: 0.21
5714 * doc/Makefile.am: add all XMLTO usage to DBUS_XML_DOCS_ENABLED
5716 * python/Makefile.am: change to avoid dist of dbus_bindings.c so
5717 you don't need pyrex to make dist
5719 * qt/Makefile.am (libdbus_qt_1_la_SOURCES): add integrator.h to
5722 2004-03-18 Richard Hult <richard@imendio.com>
5724 * dbus/dbus-message.c (dbus_message_get_auto_activation)
5725 (dbus_message_set_auto_activation): Add doxygen docs.
5727 2004-03-16 Richard Hult <richard@imendio.com>
5729 * bus/activation.c: (bus_activation_service_created),
5730 (bus_activation_send_pending_auto_activation_messages),
5731 (bus_activation_activate_service):
5733 * bus/dispatch.c: (bus_dispatch),
5734 (check_nonexistent_service_auto_activation),
5735 (check_service_auto_activated),
5736 (check_segfault_service_auto_activation),
5737 (check_existent_service_auto_activation), (bus_dispatch_test):
5738 * bus/driver.c: (bus_driver_handle_activate_service):
5739 * bus/services.c: (bus_registry_acquire_service):
5740 * dbus/dbus-message.c: (dbus_message_set_auto_activation),
5741 (dbus_message_get_auto_activation):
5742 * dbus/dbus-message.h:
5743 * dbus/dbus-protocol.h: Implement auto-activation.
5745 * doc/dbus-specification.xml: Add auto-activation to the spec.
5747 2004-03-12 Olivier Andrieu <oliv__a@users.sourceforge.net>
5749 * dbus/dbus-marshal.c (_dbus_marshal_get_arg_end_pos):
5750 fix a bug with CUSTOM types.
5752 * dbus/dbus-message.c (message_iter_test, _dbus_message_test): add
5753 a unit test for this bug (used to fail).
5755 2004-03-12 Mikael Hallendal <micke@imendio.com>
5758 (babysitter_watch_callback): notify all pending activations waiting for
5759 the same exec that the activation failed.
5760 (bus_activation_activate_service): shortcut the activation if we
5761 already waiting for the same executable to start up.
5763 2004-03-12 Mikael Hallendal <micke@imendio.com>
5766 - Added service file reloading.
5767 Each service files directory is kept in an hash table in
5768 BusActivation and each BusActivationEntry knows what .service-file it
5769 was read from. So when you try to activate a service the bus will
5770 check if it's been updated, removed or if new .service-files has
5772 - Test code at the bottom for the service file reloading.
5773 * bus/test-main.c: (main):
5775 - added service reloading test.
5776 * dbus/dbus-sysdeps.c:
5777 * dbus/dbus-sysdeps.h: (_dbus_delete_directory): Added.
5779 2004-03-08 Michael Meeks <michael@ximian.com>
5781 * dbus/dbus-connection.c (_dbus_connection_block_for_reply):
5782 bail immediately if disconnected, to avoid busy loop.
5784 * dbus/dbus-message.c (dbus_message_iter_get_args_valist):
5785 cleanup cut/paste/inefficiency.
5787 2004-03-01 David Zeuthen <david@fubar.dk>
5789 * dbus/dbus-string.c (_dbus_string_append_printf_valist): Fix a
5790 bug where args were used twice. This bug resulted in a segfault
5791 on a Debian/PPC system when starting the messagebus daemon. Include
5792 dbus-sysdeps.h for DBUS_VA_COPY
5794 * dbus/dbus-sysdeps.h: Define DBUS_VA_COPY if neccessary. From GLib
5796 * configure.in: Check for va_copy; define DBUS_VA_COPY to the
5797 appropriate va_copy implementation. From GLib
5799 2004-02-24 Joe Shaw <joe@ximian.com>
5801 * bus/services.c (bus_registry_acquire_service): We need to pass
5802 in the service name to dbus_set_error() to prevent a crash.
5804 2003-12-26 Anders Carlsson <andersca@gnome.org>
5806 * AUTHORS: Reveal my True identity.
5808 2003-12-17 Mikael Hallendal <micke@imendio.com>
5810 * dbus/dbus-message.c: (dbus_message_append_args_valist):
5811 - Added case for DBUS_TYPE_BYTE, patch from Johan Hedberg.
5813 2003-12-13 Mikael Hallendal <micke@imendio.com>
5815 * doc/TODO: Added not about better error check of configuration files.
5817 2003-12-02 Richard Hult <richard@imendio.com>
5819 * Update AFL version to 2.0 throughout the source files to reflect
5820 the update that was done a while ago.
5822 2003-12-02 Richard Hult <richard@imendio.com>
5824 * dbus/dbus-message.c (dbus_message_iter_append_dict): Set
5825 wrote_dict_key to FALSE on the iter that the dict is appended to,
5826 just like when appending other types. Fixes a bug where a dict
5827 couldn't be put inside a dict.
5828 (dbus_message_iter_append_dict_key): Fix typo in warning message.
5829 (message_iter_test, _dbus_message_test): Add test case for dict
5832 2003-12-01 David Zeuthen <david@fubar.dk>
5834 * python/dbus.py: Add the actual message when calling the reciever
5835 of a signal such that parameters can be inspected. Add the method
5836 remove_signal_receiver
5838 2003-11-26 Mikael Hallendal <micke@imendio.com>
5842 * glib/*.[ch]: Made ref functions return the pointer
5844 2003-11-25 Zack Rusin <zack@kde.org>
5846 * qt/integrator.h, qt/integrator.cpp: Adding handling of DBusServer,
5848 * qt/server.h, qt/server.cpp, qt/Makefile.am: Adding DBusServer
5851 * qt/connection.h, qt/connection.cpp: Adjusting to changes in
5852 the Integrator and to better fit with the server,
5854 2003-11-24 Zack Rusin <zack@kde.org>
5856 * qt/connection.h, qt/connection.cpp: removing initDbus method since
5857 the integrator handles it now
5859 * qt/integrator.h, qt/integrator.cpp: reworking handling of timeouts,
5860 since QTimer wasn't really meant to be used the way DBusTimeout is
5862 2003-11-24 Zack Rusin <zack@kde.org>
5864 * qt/integrator.h, qt/integrator.cpp, Makefile.am: Adding
5865 Integrator class which integrates D-BUS with the Qt event loop,
5867 * qt/connection.h, qt/connection.cpp: Move all the code which
5868 was dealing with D-BUS integration to the Integrator class,
5869 and start using Integrator,
5871 2003-11-23 Zack Rusin <zack@kde.org>
5873 * qt/connection.h, qt/connection.cpp: Adding the DBusConnection
5876 * qt/message.h, qt/message.cpp: updating to the current D-BUS api,
5877 switching namespaces to DBusQt, reworking the class,
5879 * Makefile.cvs: switching dependencies so that it matches KDE
5882 * qt/Makefile.am: adding connection.{h,cpp} and message.{h,cpp} to
5885 2003-11-19 Havoc Pennington <hp@redhat.com>
5889 * configure.in: bump version to 0.20
5891 * configure.in (have_qt): add yet another place to look for qt
5892 (someone hand trolltech a .pc file...)
5894 2003-11-01 Havoc Pennington <hp@redhat.com>
5896 * doc/dbus-specification.xml: add state machine docs on the auth
5897 protocol; just a first draft, I'm sure it's wrong.
5899 2003-10-28 David Zeuthen <david@fubar.dk>
5901 * python/dbus_bindings.pyx.in: add get_dict to handle dictionaries
5902 return types. Fixup TYPE_* to reflect changes in dbus/dbus-protocol.h
5904 2003-10-28 Havoc Pennington <hp@redhat.com>
5906 * dbus/dbus-message.c (get_next_field): delete unused function
5908 2003-10-28 Havoc Pennington <hp@redhat.com>
5910 * bus/expirelist.c (do_expiration_with_current_time): detect
5911 failure of the expire_func due to OOM
5913 * bus/connection.c (bus_pending_reply_expired): return FALSE on OOM
5915 * bus/dispatch.c (check_send_exit_to_service): fix to handle the
5916 NoReply error that's now created by the bus when the service exits
5918 2003-10-28 Havoc Pennington <hp@redhat.com>
5920 * dbus/dbus-message.c (_dbus_message_test): enable and fix the
5921 tests for set_path, set_interface, set_member, etc.
5923 * dbus/dbus-string.c (_dbus_string_insert_bytes): allow 0 bytes
5925 * dbus/dbus-message.c (set_string_field): always just delete and
5926 re-append the field; accept NULL for deletion
5927 (re_align_fields_recurse): reimplement
5929 2003-10-26 Havoc Pennington <hp@redhat.com>
5931 * dbus/dbus-connection.c: fix docs to properly describe the
5932 disconnected message
5933 (_dbus_connection_notify_disconnected): remove this function;
5934 we can't synchronously add the disconnected message, we have to
5935 do it after we've queued any remaining real messages
5936 (_dbus_connection_get_dispatch_status_unlocked): queue the
5937 disconnect message only if the transport has finished queueing all
5938 its real messages and is disconnected.
5939 (dbus_connection_disconnect): update the dispatch status here
5941 2003-10-22 Havoc Pennington <hp@redhat.com>
5943 * bus/bus.c (bus_context_check_security_policy): fix up assertion
5945 * bus/connection.c (bus_transaction_send_from_driver): set the
5946 destination to the connection's base service
5948 2003-10-20 Havoc Pennington <hp@redhat.com>
5950 hmm, make check is currently not passing.
5952 * doc/dbus-specification.xml: add requirement that custom type
5953 names follow the same rules as interface names.
5955 * dbus/dbus-protocol.h: change some of the byte codes, to avoid
5956 duplication and allow 'c' to be 'custom'; dict is now 'm' for
5959 * doc/dbus-specification.xml: update type codes to match
5960 dbus-protocol.h, using the ASCII byte values. Rename type NAMED to
5961 CUSTOM. Add type OBJECT_PATH to the spec.
5963 2003-10-17 Havoc Pennington <hp@redhat.com>
5965 * bus/driver.c (create_unique_client_name): use "." as separator
5966 in base service names instead of '-'
5968 * dbus/dbus-string.c (_dbus_string_get_byte): allow getting nul
5969 byte at the end of the string
5971 * dbus/dbus-internals.h (_DBUS_LIKELY, _DBUS_UNLIKELY): add
5972 optimization macros since string validation seems to be a slow
5975 * doc/dbus-specification.xml: restrict valid
5976 service/interface/member/error names. Add test suite code for the
5979 * dbus/dbus-string.c: limit service/interface/member/error names
5982 * dbus/dbus-connection.c (dbus_connection_dispatch): add missing
5983 format arg to verbose spew
5985 * glib/dbus-gproxy.c (dbus_gproxy_call_no_reply): if not out of
5986 memory, return instead of g_error
5988 * test/test-service.c (path_message_func): support emitting a
5991 * dbus/dbus-bus.c (init_connections_unlocked): only fill in
5992 activation bus type if DBUS_BUS_ACTIVATION was set; default to
5993 assuming the activation bus was the session bus so that services
5994 started manually will still register.
5995 (init_connections_unlocked): fix so that in OOM situation we get
5996 the same semantics when retrying the function
5998 * test/test-service.c (main): change to use path registration, to
5999 test those codepaths; register with DBUS_BUS_ACTIVATION rather
6000 than DBUS_BUS_SESSION
6002 2003-10-16 Havoc Pennington <hp@redhat.com>
6004 * glib/dbus-gtest-main.c: bracket with #ifdef DBUS_BUILD_TESTS
6006 * Makefile.am (GCOV_DIRS): remove "test", we don't care about test
6007 coverage of the tests
6008 (coverage-report.txt): don't move the .da and .bbg files around
6010 2003-10-16 Havoc Pennington <hp@redhat.com>
6012 * bus/bus.c (struct BusContext): remove struct field I didn't mean
6015 2003-10-16 Havoc Pennington <hp@redhat.com>
6017 * bus/connection.c (bus_pending_reply_expired): either cancel or
6019 (bus_connections_check_reply): use unlink, not remove_link, as we
6020 don't want to free the link; fixes double free mess
6022 * dbus/dbus-pending-call.c (dbus_pending_call_block): fix in case
6023 where no reply was received
6025 * dbus/dbus-connection.c (_dbus_pending_call_complete_and_unlock):
6028 * bus/signals.c (match_rule_matches): add special cases for the
6029 bus driver, so you can match on sender/destination for it.
6031 * dbus/dbus-sysdeps.c (_dbus_abort): print backtrace if
6032 DBUS_PRINT_BACKTRACE is set
6034 * dbus/dbus-internals.c: add pid to assertion failure messages
6036 * dbus/dbus-connection.c: add message type code to the debug spew
6038 * glib/dbus-gproxy.c (gproxy_get_match_rule): match rules want
6039 sender=foo not service=foo
6041 * dbus/dbus-bus.c (dbus_bus_get): if the activation bus is the
6042 session bus but DBUS_SESSION_BUS_ADDRESS isn't set, use
6043 DBUS_ACTIVATION_ADDRESS instead
6045 * bus/activation.c: set DBUS_SESSION_BUS_ADDRESS,
6046 DBUS_SYSTEM_BUS_ADDRESS if appropriate
6048 * bus/bus.c (bus_context_new): handle OOM copying bus type into
6051 * dbus/dbus-message.c (dbus_message_iter_get_object_path): new function
6052 (dbus_message_iter_get_object_path_array): new function (half
6053 finished, disabled for the moment)
6055 * glib/dbus-gproxy.c (dbus_gproxy_end_call): properly handle
6056 DBUS_MESSAGE_TYPE_ERROR
6058 * tools/dbus-launch.c (babysit): support DBUS_DEBUG_OUTPUT to
6059 avoid redirecting stderr to /dev/null
6060 (babysit): close stdin if not doing the "exit_with_session" thing
6062 * dbus/dbus-sysdeps.c (_dbus_become_daemon): delete some leftover
6063 debug code; change DBUS_DEBUG_OUTPUT to only enable stderr, not
6064 stdout/stdin, so things don't get confused
6066 * bus/system.conf.in: fix to allow replies, I modified .conf
6067 instead of .conf.in again.
6069 2003-10-14 David Zeuthen <david@fubar.dk>
6071 * python/dbus_bindings.pyx.in (MessageIter.get): fixed typo in
6072 argtype to arg_type when raising unknown arg type exception.
6073 Changed type list to reflect the changes in dbus-protocol.h so
6074 the bindings actually work.
6076 2003-10-14 Havoc Pennington <hp@redhat.com>
6078 * test/decode-gcov.c: support gcc 3.3 also, though gcc 3.3 seems
6079 to have a bug keeping it from outputting the .da files sometimes
6080 (string_get_string): don't append garbage nul bytes to the string.
6082 2003-10-15 Seth Nickell <seth@gnome.org>
6084 * python/Makefile.am:
6086 Include dbus_h_wrapper.h in the dist tarball.
6088 2003-10-14 Havoc Pennington <hp@redhat.com>
6090 * bus/bus.c (bus_context_check_security_policy): revamp this to
6091 work more sanely with new policy-based requested reply setup
6093 * bus/connection.c (bus_transaction_send_from_driver): set bus
6094 driver messages as no reply
6096 * bus/policy.c (bus_client_policy_check_can_receive): handle a
6097 requested_reply attribute on allow/deny rules
6099 * bus/system.conf: add <allow requested_reply="true"/>
6101 * bus/driver.c (bus_driver_handle_message): fix check for replies
6102 sent to the bus driver, which was backward. How did this ever work
6103 at all though? I think I'm missing something.
6105 * dbus/dbus-message.c (decode_header_data): require error and
6106 method return messages to have a reply serial field to be valid
6107 (_dbus_message_loader_queue_messages): break up this function;
6108 validate that reply serial and plain serial are nonzero;
6109 clean up the OOM/error handling.
6110 (get_uint_field): don't return -1 from this
6111 (dbus_message_create_header): fix signed/unsigned bug
6113 * bus/connection.c (bus_connections_expect_reply): save serial of
6114 the incoming message, not reply serial
6116 2003-10-14 Havoc Pennington <hp@redhat.com>
6118 * bus/connection.c: implement pending reply tracking using
6121 * bus/bus.c (bus_context_check_security_policy): verify that a
6122 reply is pending in order to allow a reply to be sent. Deny
6123 messages of unknown type.
6125 * bus/dbus-daemon-1.1.in: update to mention new resource limits
6127 * bus/bus.c (bus_context_get_max_replies_per_connection): new
6128 (bus_context_get_reply_timeout): new
6130 2003-10-13 Seth Nickell <seth@gnome.org>
6132 * python/Makefile.am:
6134 Pass "make distcheck": remove a couple files from DIST_FILES
6135 that weren't included in the final version.
6137 2003-10-12 Havoc Pennington <hp@pobox.com>
6139 Added test code that 1) starts an actual bus daemon and 2) uses
6140 DBusGProxy; fixed bugs that were revealed by the test. Lots
6141 more testing possible, but this is the basic framework.
6143 * glib/dbus-gproxy.c (dbus_gproxy_manager_unregister): remove
6144 empty proxy lists from the proxy list hash
6146 * dbus/dbus-message.c (dbus_message_iter_get_args_valist): add a
6147 couple of return_if_fail checks
6149 * dbus/dbus-pending-call.c (_dbus_pending_call_new): use dbus_new0
6150 to allocate, so everything is cleared to NULL as it should be.
6152 * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): pass
6153 source as data to dbus_connection_set_timeout_functions() as the
6154 timeout functions expected
6156 * test/glib/run-test.sh: add a little script to start up a message
6157 bus and run tests using it
6159 * tools/dbus-launch.1: updates
6161 * tools/dbus-launch.c (main): add --config-file option
6163 * tools/dbus-launch.c (main): remove confusing else if (runprog)
6164 that could never be reached.
6166 * dbus/dbus-message.c (dbus_message_new_method_return)
6167 (dbus_message_new_error, dbus_message_new_signal): set the
6168 no-reply-expected flag on all these. Redundant, but may
6169 as well be consistent.
6171 2003-10-11 Havoc Pennington <hp@pobox.com>
6173 * test/decode-gcov.c (function_solve_graph): make broken block
6174 graph a nonfatal error since it seems to be broken. Need to debug
6177 * dbus/dbus-marshal.c (_dbus_type_is_valid): new function since we
6178 can't just check type > INVALID < LAST anymore
6180 * dbus/dbus-message.c (dbus_message_get_signature): new function
6181 (dbus_message_has_signature): new function
6182 (struct DBusMessage): add signature field (right now it isn't sent
6183 over the wire, just generated on the fly)
6184 (dbus_message_copy): copy the signature, and init strings to
6185 proper length to avoid some reallocs
6186 (dbus_message_iter_init_array_iterator): return void, since it
6188 (dbus_message_iter_init_dict_iterator): return void since it can't fail
6189 (_dbus_message_loader_queue_messages): add silly temporary hack to
6190 fill in message->signature on load
6192 * dbus/dbus-protocol.h: change DBUS_TYPE_* values to be ASCII
6193 characters, so they are relatively human-readable.
6195 2003-10-11 Havoc Pennington <hp@pobox.com>
6197 * dbus/dbus-message.c (_dbus_message_test): add more test
6198 coverage, but #if 0 for now since they uncover a bug
6199 not fixed yet; I think in re_align_field_recurse()
6200 (re_align_field_recurse): add FIXME about broken assertion
6202 * dbus/dbus-sysdeps.c (_dbus_sysdeps_test): add more test coverage
6204 * bus/connection.c: share a couple code bits with expirelist.c
6206 * bus/expirelist.h, bus/expirelist.c: implement a generic
6207 expire-items-after-N-seconds facility, was going to share between
6208 expiring connections and replies, decided not to use for expiring
6209 connections for now.
6211 * COPYING: include AFL 2.0 (still need to change all the file headers)
6213 2003-10-09 Havoc Pennington <hp@redhat.com>
6215 * configure.in: define DBUS_HAVE_GCC33_GCOV if we have
6216 gcc 3.3. Not that we do anything about it yet.
6218 * bus/signals.c (bus_match_rule_parse): impose max length on the
6221 * dbus/dbus-protocol.h: add DBUS_MAXIMUM_MATCH_RULE_LENGTH
6223 2003-10-09 Havoc Pennington <hp@redhat.com>
6225 Make matching rules theoretically work (add parser).
6227 * bus/bus.c (bus_context_check_security_policy): fix up to handle
6228 the case where destination is explicitly specified as bus driver
6229 and someone else is eavesdropping.
6231 * bus/policy.c (bus_client_policy_check_can_receive): fix up
6232 definition of eavesdropping and assertion
6234 * tools/dbus-send.c (main): use dbus_message_type_from_string
6236 * bus/signals.c (bus_match_rule_parse): implement
6238 * dbus/dbus-message.c (dbus_message_type_from_string): new
6240 * dbus/dbus-errors.h (DBUS_ERROR_MATCH_RULE_INVALID): add
6242 2003-10-02 Havoc Pennington <hp@pobox.com>
6244 * glib/dbus-gproxy.c (dbus_gproxy_call_no_reply): rename from
6245 dbus_gproxy_oneway_call
6247 * glib/dbus-gmain.c (dbus_connection_setup_with_g_main)
6248 (dbus_server_setup_with_g_main): fix to allow calling them more
6249 than once on the same args
6250 (dbus_bus_get_with_g_main): new function
6252 2003-10-02 Havoc Pennington <hp@redhat.com>
6254 * doc/dbus-tutorial.xml: write some stuff
6256 2003-09-29 Havoc Pennington <hp@pobox.com>
6258 * configure.in: split checks for Doxygen from XML docs, check for
6261 * doc/Makefile.am: XML-ify all the docs, and add a blank
6264 2003-09-29 Havoc Pennington <hp@pobox.com>
6266 * Merge dbus-object-names branch. To see the entire patch
6267 do cvs diff -r DBUS_OBJECT_NAMES_BRANCHPOINT -r dbus-object-names,
6268 it's huuuuge though.
6269 To revert, I tagged DBUS_BEFORE_OBJECT_NAMES_MERGE.
6271 2003-09-28 Havoc Pennington <hp@pobox.com>
6273 * HACKING: update to reflect new server
6275 2003-09-26 Seth Nickell <seth@gnome.org>
6278 * python/examples/example-signals.py:
6280 Start implementing some notions of signals. The API
6281 is really terrible, but they sort of work (with the
6282 exception of being able to filter by service, and to
6283 transmit signals *as* a particular service). Need to
6284 figure out how to make messages come from the service
6287 * python/dbus_bindings.pyx.in:
6289 Removed duplicate message_handler callbacks.
6291 2003-09-25 Havoc Pennington <hp@redhat.com>
6293 * bus/session.conf.in: fix my mess
6295 2003-09-25 Havoc Pennington <hp@pobox.com>
6297 * bus/session.conf.in: fix security policy, reported by Seth Nickell
6299 2003-09-25 Seth Nickell <seth@gnome.org>
6301 * python/examples/example-service.py:
6303 Johan notices complete wrong code in example-service, but
6304 completely wrong in a way that works exactly the same (!).
6305 Johan is confused, how could this possibly work? Example
6306 code fails to serve purpose of making things clear.
6309 2003-09-25 Mark McLoughlin <mark@skynet.ie>
6311 * doc/dbus-specification.sgml: don't require header fields
6312 to be 4-byte aligned and specify that fields should be
6313 distinguished from padding by the fact that zero is not
6316 * doc/TODO: remove re-alignment item and add item to doc
6317 the OBJECT_PATH type.
6319 * dbus/dbus-message.c:
6320 (HeaderField): rename the original member to value_offset
6321 and introduce a name_offset member to keep track of where
6322 the field actually begins.
6323 (adjust_field_offsets): remove.
6324 (append_int_field), (append_uint_field),
6325 (append_string_field): don't align the start of the header
6326 field to a 4-byte boundary.
6327 (get_next_field): impl finding the next marhsalled field
6328 after a given field.
6329 (re_align_field_recurse): impl re-aligning a number of
6330 already marshalled fields.
6331 (delete_field): impl deleting a field of any type and
6332 re-aligning any following fields.
6333 (delete_int_or_uint_field), (delete_string_field): remove.
6334 (set_int_field), (set_uint_field): no need to re-check
6335 that we have the correct type for the field.
6336 (set_string_field): ditto and impl re-aligning any
6338 (decode_header_data): update to take into account that
6339 the fields aren't 4-byte aligned any more and the new
6340 way to distinguish padding from header fields. Also,
6341 don't exit when there is too much header padding.
6342 (process_test_subdir): print the directory.
6343 (_dbus_message_test): add test to make sure a following
6344 field is re-aligned correctly after field deletion.
6346 * dbus/dbus-string.[ch]:
6347 (_dbus_string_insert_bytes): rename from insert_byte and
6348 allow the insert of multiple bytes.
6349 (_dbus_string_test): test inserting multiple bytes.
6351 * dbus/dbus-marshal.c: (_dbus_marshal_set_string): add
6352 warning note to docs about having to re-align any
6353 marshalled values following the string.
6355 * dbus/dbus-message-builder.c:
6356 (append_string_field), (_dbus_message_data_load):
6357 don't align the header field.
6359 * dbus/dbus-auth.c: (process_test_subdir): print the
6362 * test/break-loader.c: (randomly_add_one_byte): upd. for
6365 * test/data/invalid-messages/bad-header-field-alignment.message:
6368 * test/data/valid-messages/unknown-header-field.message: shove
6369 a dict in the unknown field.
6371 2003-09-25 Seth Nickell <seth@gnome.org>
6374 * python/dbus_bindings.pyx.in:
6376 Handle return values.
6378 * python/examples/example-client.py:
6379 * python/examples/example-service.py:
6381 Pass back return values from the service to the client.
6383 2003-09-24 Seth Nickell <seth@gnome.org>
6387 Connect Object methods (when you are sharing an object) up... pass
6388 in a list of methods to be shared. Sharing all the methods just
6389 worked out too weird. You can now create nice Services over the
6392 * python/dbus_bindings.pyx.in:
6394 Keep references to user_data tuples passed into C functions so
6395 Python doesn't garbage collect on us.
6397 Implement MethodReturn and Error subclasses of Message for creating
6398 DBusMessage's of those types.
6400 * python/examples/example-client.py:
6401 * python/examples/example-service.py:
6403 Simple example code showing both how create DBus services and objects,
6404 and how to use them.
6406 2003-09-23 Havoc Pennington <hp@pobox.com>
6408 * glib/dbus-gproxy.c (dbus_gproxy_manager_filter): implement
6410 2003-09-23 Havoc Pennington <hp@redhat.com>
6412 * glib/dbus-gproxy.c (dbus_gproxy_connect_signal): implement
6413 (dbus_gproxy_disconnect_signal): implement
6414 (dbus_gproxy_manager_remove_signal_match): implement
6415 (dbus_gproxy_manager_add_signal_match): implement
6416 (dbus_gproxy_oneway_call): implement
6418 2003-09-23 Havoc Pennington <hp@pobox.com>
6420 * glib/dbus-gproxy.c (struct DBusGProxy): convert to a GObject
6421 subclass. This means dropping the transparent thread safety of the
6422 proxy; you now need a separate proxy per-thread, or your own
6423 locking on the proxy. Probably right anyway.
6424 (dbus_gproxy_ref, dbus_gproxy_unref): nuke, just use g_object_ref
6426 2003-09-22 Havoc Pennington <hp@redhat.com>
6428 * glib/dbus-gproxy.c (dbus_gproxy_manager_get): implement
6430 2003-09-21 Seth Nickell <seth@gnome.org>
6432 First checkin of the Python bindings.
6434 * python/.cvsignore:
6435 * python/Makefile.am:
6436 * python/dbus_bindings.pyx.in:
6437 * python/dbus_h_wrapper.h:
6439 Pieces for Pyrex to operate on, building a dbus_bindings.so
6440 python module for low-level access to the DBus APIs.
6444 High-level Python module for accessing DBus objects.
6449 Build stuff for the python bindings.
6453 Extra macro needed for finding the Python C header files.
6455 2003-09-21 Havoc Pennington <hp@pobox.com>
6457 * glib/dbus-gproxy.c (dbus_gproxy_manager_new): start
6458 implementing the proxy manager, didn't get very far.
6460 * dbus/dbus-bus.c (dbus_bus_add_match): new
6461 (dbus_bus_remove_match): new
6463 * glib/dbus-gproxy.c (dbus_gproxy_new_for_service): add a
6464 path_name argument; adjust the other not-yet-implemented
6465 gproxy constructors to be what I think they should be.
6467 2003-09-21 Havoc Pennington <hp@pobox.com>
6469 * dbus/dbus-bus.c (dbus_bus_get): set exit_on_disconnect to TRUE
6470 by default for message bus connections.
6472 * dbus/dbus-connection.c (dbus_connection_dispatch): exit if
6473 exit_on_disconnect flag is set and we process the disconnected
6475 (dbus_connection_set_exit_on_disconnect): new function
6477 2003-09-21 Havoc Pennington <hp@pobox.com>
6479 Get matching rules mostly working in the bus; only actually
6480 parsing the rule text remains. However, the client side of
6481 "signal connections" hasn't been started, this patch is only the
6484 * dbus/dispatch.c: fix for the matching rules changes
6486 * bus/driver.c (bus_driver_handle_remove_match)
6487 (bus_driver_handle_add_match): send an ack reply from these
6490 * glib/dbus-gproxy.c (dbus_gproxy_begin_call): fix order of
6491 arguments, reported by Seth Nickell
6493 * bus/config-parser.c (append_rule_from_element): support
6494 eavesdrop=true|false attribute on policies so match rules
6495 can be prevented from snooping on the system bus.
6497 * bus/dbus-daemon-1.1.in: consistently use terminology "sender"
6498 and "destination" in attribute names; fix some docs bugs;
6499 add eavesdrop=true|false attribute
6501 * bus/driver.c (bus_driver_handle_add_match)
6502 (bus_driver_handle_remove_match): handle AddMatch, RemoveMatch
6505 * dbus/dbus-protocol.h (DBUS_SERVICE_ORG_FREEDESKTOP_BROADCAST): get
6506 rid of broadcast service concept, signals are just always broadcast
6508 * bus/signals.c, bus/dispatch.c, bus/connection.c, bus/bus.c:
6509 mostly implement matching rules stuff (currently only exposed as signal
6512 2003-09-21 Mark McLoughlin <mark@skynet.ie>
6514 * doc/dbus-specification.sgml: Change the header field name
6515 to be an enum and update the rest of the spec to reference
6516 the fields using the conventinal name.
6518 * dbus/dbus-protocol.h: update to reflect the spec.
6520 * doc/TODO: add item to remove the 4 byte alignment requirement.
6522 * dbus/dbus-message.c: Remove the code to generalise the
6523 header/body length and serial number header fields as named
6524 header fields so we can reference field names using the
6526 (append_int_field), (append_uint_field), (append_string_field):
6527 Append the field name as a byte rather than four chars.
6528 (delete_int_or_uint_field), (delete_string_field): reflect the
6529 fact that the field name and typecode now occupy 4 bytes instead
6531 (decode_string_field), (decode_header_data): update to reflect
6532 protocol changes and move the field specific encoding from
6533 decode_string_field() back into decode_header_data().
6535 * dbus/dbus-internals.[ch]: (_dbus_header_field_to_string):
6536 Add utility to aid debugging.
6538 * dbus/dbus-message-builder.c:
6539 (append_string_field), (_dbus_message_data_load): Update to
6540 reflect protocol changes; Change the FIELD_NAME directive
6541 to HEADER_FIELD and allow it to take the field's conventional
6542 name rather than the actual value.
6544 * test/data/*/*.message: Update to use HEADER_FIELD instead
6545 of FIELD_NAME; Always align the header on an 8 byte boundary
6546 *before* updating the header length.
6548 2003-09-15 Havoc Pennington <hp@pobox.com>
6550 * dbus/dbus-pending-call.c: add the get/set object data
6551 boilerplate as for DBusConnection, etc. Use generic object data
6552 for the notify callback.
6554 * glib/dbus-gparser.c (parse_node): parse child nodes
6556 * tools/dbus-viewer.c: more hacking on the dbus-viewer
6558 * glib/dbus-gutils.c (_dbus_gutils_split_path): add a file to
6559 contain functions shared between the convenience lib and the
6562 * glib/Makefile.am (libdbus_glib_1_la_LDFLAGS): add
6563 -export-symbols-regex to the GLib library
6565 * dbus/dbus-object-tree.c (_dbus_object_tree_dispatch_and_unlock):
6566 fix the locking in here, and add a default handler for
6567 Introspect() that just returns sub-nodes.
6569 2003-09-14 Havoc Pennington <hp@pobox.com>
6571 * glib/dbus-gthread.c (dbus_g_thread_init): rename to make g_foo
6572 rather than gfoo consistent
6574 * glib/dbus-gproxy.h: delete for now, move contents to
6575 dbus-glib.h, because the include files don't work right since we
6576 aren't in the dbus/ subdir.
6578 * glib/dbus-gproxy.c (dbus_gproxy_send): finish implementing
6579 (dbus_gproxy_end_call): finish
6580 (dbus_gproxy_begin_call): finish
6582 * glib/dbus-gmain.c (dbus_set_g_error): new
6584 * glib/dbus-gobject.c (handle_introspect): include information
6585 about child nodes in the introspection
6587 * dbus/dbus-connection.c (dbus_connection_list_registered): new
6588 function to help in implementation of introspection
6590 * dbus/dbus-object-tree.c
6591 (_dbus_object_tree_list_registered_and_unlock): new function
6593 2003-09-12 Havoc Pennington <hp@pobox.com>
6595 * glib/dbus-gidl.h: add common base class for all the foo_info
6598 * tools/dbus-viewer.c: add GTK-based introspection UI thingy
6601 * test/Makefile.am: try test srcdir -ef . in addition to test
6602 srcdir = ., one of them should work (yeah lame)
6604 * glib/Makefile.am: build the "idl" parser stuff as a convenience
6607 * glib/dbus-gparser.h: make description_load routines return
6608 NodeInfo* not Parser*
6610 * Makefile.am (SUBDIRS): build test dir after all library dirs
6612 * configure.in: add GTK+ detection
6614 2003-09-07 Havoc Pennington <hp@pobox.com>
6616 * Make Doxygen contented.
6618 2003-09-07 Havoc Pennington <hp@pobox.com>
6620 * doc/dbus-specification.sgml: more updates
6622 2003-09-06 Havoc Pennington <hp@pobox.com>
6624 * doc/dbus-specification.sgml: partial updates
6626 * bus/dbus-daemon-1.1.in: fix the config file docs for the
6627 zillionth time; hopefully I edited the right file this time.
6629 * bus/config-parser.c (append_rule_from_element): support
6630 send_type, send_path, receive_type, receive_path
6632 * bus/policy.c: add message type and path to the list of things
6633 that can be "firewalled"
6635 2003-09-06 Havoc Pennington <hp@pobox.com>
6637 * dbus/dbus-connection.c (dbus_connection_register_fallback): add this
6638 (dbus_connection_register_object_path): make this not handle
6639 messages to paths below the given path
6641 2003-09-03 Havoc Pennington <hp@pobox.com>
6643 * test/glib/Makefile.am: add this with random glib-linked test
6646 * glib/Makefile.am: remove the random test programs from here,
6647 leave only the unit tests
6649 * glib/dbus-gobject.c (_dbus_gobject_test): add test for
6650 uscore/javacaps conversion, and fix
6651 (get_object_property, set_object_property): change to .NET
6652 convention for mapping props to methods, set_FooBar/get_FooBar,
6653 since one language has such a convention we may as well copy it.
6654 Plus real methods in either getFooBar or get_foo_bar style won't
6655 collide with this convention.
6657 2003-09-01 Havoc Pennington <hp@pobox.com>
6659 * glib/dbus-gparser.c: implement
6661 * glib/dbus-gobject.c: start implementing skeletons support
6663 * configure.in: when disabling checks/assert, also define
6664 G_DISABLE_ASSERT and G_DISABLE_CHECKS
6666 2003-09-01 Havoc Pennington <hp@pobox.com>
6668 * glib/Makefile.am: rearrange a bunch of files and get "make
6669 check" framework set up
6671 2003-08-31 Havoc Pennington <hp@pobox.com>
6673 * fix build with --disable-tests
6675 2003-08-30 Havoc Pennington <hp@pobox.com>
6677 * dbus/dbus-connection.c: purge DBusMessageHandler
6679 * dbus/dbus-message-handler.c: remove DBusMessageHandler, just
6680 use callbacks everywhere
6682 2003-08-30 Havoc Pennington <hp@pobox.com>
6684 * test/data/valid-config-files/system.d/test.conf: change to
6685 root for the user so warnings don't get printed
6687 * dbus/dbus-message.c: add dbus_message_get_path,
6688 dbus_message_set_path
6690 * dbus/dbus-object-tree.c (do_test_dispatch): add test of
6691 dispatching to a path
6693 * dbus/dbus-string.c (_dbus_string_validate_path): add
6695 * dbus/dbus-marshal.c (_dbus_demarshal_object_path): implement
6696 (_dbus_marshal_object_path): implement
6698 * dbus/dbus-protocol.h (DBUS_HEADER_FIELD_PATH): new header field
6699 to contain the path to the target object
6700 (DBUS_HEADER_FIELD_SENDER_SERVICE): rename
6701 DBUS_HEADER_FIELD_SENDER to explicitly say it's the sender service
6703 2003-08-30 Havoc Pennington <hp@pobox.com>
6705 * dbus/dbus-object-tree.c: write tests and fix the discovered bugs
6707 2003-08-29 Havoc Pennington <hp@pobox.com>
6709 * dbus/dbus-object-tree.c: modify to allow overlapping paths to be
6711 (struct DBusObjectSubtree): shrink this
6712 a lot, since we may have a lot of them
6713 (_dbus_object_tree_free_all_unlocked): implement
6714 (_dbus_object_tree_dispatch_and_unlock): implement
6716 2003-08-29 Havoc Pennington <hp@pobox.com>
6718 * dbus/dbus-internals.h: fix _DBUS_N_GLOBAL_LOCKS
6720 2003-08-28 Havoc Pennington <hp@pobox.com>
6724 * dbus/dbus-connection.c: port to no ObjectID, create a
6725 DBusObjectTree, rename ObjectTree to ObjectPath in public API
6727 * dbus/dbus-connection.h (struct DBusObjectTreeVTable): delete
6728 everything except UnregisterFunction and MessageFunction
6730 * dbus/dbus-marshal.c: port away from DBusObjectID,
6731 add DBUS_TYPE_OBJECT_PATH
6733 * dbus/dbus-object-registry.[hc], dbus/dbus-object.[hc],
6734 dbus/dbus-objectid.[hc]: remove these, we are moving to
6735 path-based object IDs
6737 2003-08-25 Havoc Pennington <hp@pobox.com>
6739 Just noticed that dbus_message_test is hosed, I wonder when I
6740 broke that. I thought make check was passing earlier...
6742 * dbus/dbus-object-tree.c: add new "object tree" to match DCOP
6743 container tree, will replace most of dbus-object-registry
6745 * dbus/dbus-string.c (_dbus_string_append_printf_valist): fix C99
6748 2003-08-19 Havoc Pennington <hp@pobox.com>
6750 * dbus/dbus-message.c (decode_string_field): support FIELD_SENDER
6751 (dbus_message_is_error): fix this function
6753 * bus/dbus-daemon-1.1: clarify logic on when <deny>/<allow> rules
6756 * bus/policy.c (bus_client_policy_check_can_receive): fix code to
6757 reflect clarified man page
6758 (bus_client_policy_check_can_send): ditto
6760 * bus/session.conf.in: fixup
6762 * bus/system.conf.in: fixup
6764 2003-08-18 Havoc Pennington <hp@redhat.com>
6766 * dbus/dbus-hash.c (_dbus_hash_table_insert_two_strings): fix
6768 * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
6769 dumb bug created earlier (wrong order of args to
6770 decode_header_data())
6772 * tools/dbus-send.c: port
6774 * tools/dbus-print-message.c (print_message): port
6776 * test/data/*messages: port all messages over
6778 * dbus/dbus-message-builder.c: support including
6781 * bus/driver.c: port over
6783 * bus/dispatch.c: port over to new stuff
6785 * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
6786 rename disconnect signal to "Disconnected"
6788 2003-08-17 Havoc Pennington <hp@pobox.com>
6790 This doesn't compile yet, but syncing up so I can hack on it from
6791 work. What are branches for if not broken code? ;-)
6793 * dbus/dbus-protocol.h: remove DBUS_HEADER_FIELD_NAME, add
6794 DBUS_HEADER_FIELD_INTERFACE, DBUS_HEADER_FIELD_MEMBER,
6795 DBUS_HEADER_FIELD_ERROR_NAME
6797 * dbus/dbus-hash.c: Introduce DBUS_HASH_TWO_STRINGS as hack to use
6798 for the interface+member pairs
6799 (string_hash): change to use g_str_hash algorithm
6800 (find_direct_function, find_string_function): refactor these to
6803 * dbus/dbus-message.c: port all of this over to support
6804 interface/member fields instead of name field
6806 * dbus/dbus-object-registry.c: port over
6808 * dbus/dbus-string.c (_dbus_string_validate_interface): rename
6809 from _dbus_string_validate_name
6811 * bus/dbus-daemon-1.1: change file format for the
6812 <deny>/<allow> stuff to match new message naming scheme
6814 * bus/policy.c: port over
6816 * bus/config-parser.c: parse new format
6818 2003-08-16 Havoc Pennington <hp@pobox.com>
6820 * dbus/dbus-object-registry.c (add_and_remove_objects): remove
6823 * glib/dbus-gproxy.c: some hacking
6825 2003-08-15 Havoc Pennington <hp@redhat.com>
6827 * dbus/dbus-pending-call.c (dbus_pending_call_block): implement
6829 * dbus/dbus-connection.c
6830 (dbus_connection_send_with_reply_and_block): factor out internals;
6831 change to convert any error replies to DBusError instead of
6832 returning them as a message
6834 2003-08-15 Havoc Pennington <hp@pobox.com>
6836 * dbus/dbus-connection.c,
6837 dbus/dbus-pending-call.c: Finish the pending call stuff
6839 2003-08-14 Havoc Pennington <hp@redhat.com>
6841 * dbus/dbus-pending-call.c: start on new object that will replace
6842 DBusMessageHandler and ReplyHandlerData for tracking outstanding
6845 * dbus/dbus-gproxy.c: start on proxy object used to communicate
6846 with remote interfaces
6848 * dbus/dbus-gidl.c: do the boring boilerplate in here
6850 2003-08-12 Havoc Pennington <hp@pobox.com>
6852 * bus/dispatch.c (bus_dispatch): make this return proper
6853 DBusHandlerResult to avoid DBUS_ERROR_UNKNOWN_METHOD
6855 * dbus/dbus-errors.c (dbus_set_error): use
6856 _dbus_string_append_printf_valist
6858 * dbus/dbus-string.c (_dbus_string_append_printf_valist)
6859 (_dbus_string_append_printf): new
6861 * dbus/dbus-errors.h (DBUS_ERROR_UNKNOWN_MESSAGE): change to
6864 * dbus/dbus-connection.c (dbus_connection_dispatch): handle
6865 DBUS_HANDLER_RESULT_NEED_MEMORY; send default error reply if a
6866 message is unhandled.
6868 2003-08-11 Havoc Pennington <hp@pobox.com>
6870 * bus/test.c (client_disconnect_handler): change to return
6871 HANDLED (would have been REMOVE_MESSAGE)
6873 * dbus/dbus-object.h (enum DBusHandlerResult): rename to
6874 HANDLED/NOT_YET_HANDLED instead of
6875 REMOVE_MESSAGE/ALLOW_MORE_HANDLERS to make it clearer how it
6878 2003-08-10 Havoc Pennington <hp@pobox.com>
6880 * tools/dbus-send.c (main): add --type argument, for now
6881 supporting only method_call and signal types.
6883 * tools/dbus-print-message.c: print message type
6885 * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
6886 init connection->objects
6888 * doc/dbus-specification.sgml: fix sgml
6890 * bus/*.c: port over to object-instance API changes
6892 * test/test-service.c: ditto
6894 * dbus/dbus-message.c (dbus_message_create_header): allow #NULL
6895 name, we will have to fix up the rest of the code to also handle
6897 (dbus_message_new): generic message-creation call
6898 (set_string_field): allow appending name field
6900 2003-08-06 Havoc Pennington <hp@pobox.com>
6902 * dbus/dbus-object-registry.c: implement signal connection
6905 * dbus/dbus-connection.c (_dbus_connection_unref_unlocked): new
6907 * dbus/dbus-internals.c (_dbus_memdup): new function
6909 2003-08-02 Havoc Pennington <hp@pobox.com>
6911 * dbus/dbus-message.c (dbus_message_get_no_reply)
6912 (dbus_message_set_no_reply): add these and remove
6913 set_is_error/get_is_error
6915 * dbus/dbus-protocol.h, doc/dbus-specification.sgml:
6916 remove the ERROR flag, since there's now an ERROR type
6918 2003-08-01 Havoc Pennington <hp@pobox.com>
6920 * dbus/dbus-object-registry.c (_dbus_object_registry_handle_and_unlock):
6923 * dbus/dbus-message.c (dbus_message_get_type): new function
6925 * doc/dbus-specification.sgml: add "type" byte to messages
6927 2003-08-01 Havoc Pennington <hp@pobox.com>
6929 * dbus/dbus-protocol.h (DBUS_MESSAGE_TYPE_*): introduce
6930 a message type enum to distinguish kinds of message
6931 (DBUS_HEADER_FLAG_NO_REPLY_EXPECTED): flag for a message
6932 that need not be replied to
6934 2003-08-01 Havoc Pennington <hp@pobox.com>
6936 * dbus/dbus-marshal.c: adapt to DBusObjectID changes
6937 (unpack_8_octets): fix no-64-bit-int bug
6939 * dbus/dbus-object-registry.c (validate_id): validate the
6940 connection ID bits, not just the instance ID.
6942 * dbus/dbus-connection.c (_dbus_connection_init_id): initialize
6943 the connection-global 33 bits of the object ID
6945 * dbus/dbus-object-registry.c (info_from_entry): fill in
6946 object ID in the new way
6948 * dbus/dbus-objectid.h: rather than high/low bits, specifically
6949 define server/client/instance bits.
6951 2003-07-30 Havoc Pennington <hp@pobox.com>
6953 * dbus/dbus-connection.c (dbus_connection_register_object): fix
6956 2003-07-13 Havoc Pennington <hp@pobox.com>
6958 * dbus/dbus-object.h (struct DBusObjectVTable): add padding
6959 fields to DBusObjectVTable and DBusObjectInfo
6961 2003-07-12 Havoc Pennington <hp@pobox.com>
6963 * dbus/dbus-object-registry.c: implement unit test,
6964 fix bugs discovered in process
6966 * dbus/dbus-connection.c: remove handler_table and
6967 register_handler(), add DBusObjectRegistry usage
6969 * dbus/dbus-objectid.c (dbus_object_id_is_null)
6970 (dbus_object_id_set_null): new functions
6972 2003-07-08 Havoc Pennington <hp@pobox.com>
6974 * dbus/dbus-object.c: implement some of this
6976 * dbus/dbus-object-registry.c
6977 (_dbus_object_registry_add_and_unlock): fill in the object_id out
6979 (_dbus_object_registry_new): handle OOM
6981 2003-07-08 Havoc Pennington <hp@pobox.com>
6983 * dbus/dbus-object.h: sketch out an API for registering objects
6984 with a connection, that allows us to use as little as 24 bytes
6985 per object and lets application code represent an object in
6986 any conceivable way.
6988 * dbus/dbus-object-registry.c: implement the hard bits of the
6989 DBusConnection aspect of object API. Not yet wired up.
6991 2003-07-06 Havoc Pennington <hp@pobox.com>
6993 * dbus/dbus-marshal.c (_dbus_marshal_set_object_id): new function
6994 (_dbus_marshal_object_id): new
6995 (_dbus_demarshal_object_id): new
6996 (_dbus_marshal_get_arg_end_pos): support object ID type, and
6997 consolidate identical switch cases. Don't conditionalize handling
6998 of DBUS_TYPE_UINT64, need to handle the type always.
6999 (_dbus_marshal_validate_arg): consolidate identical cases, and
7000 handle DBUS_TYPE_OBJECT_ID
7002 * dbus/dbus-objectid.c: new file with DBusObjectID data type.
7004 * dbus/dbus-protocol.h: add DBUS_TYPE_OBJECT_ID
7006 2003-09-28 Havoc Pennington <hp@pobox.com>
7010 2003-09-28 Havoc Pennington <hp@pobox.com>
7012 * doc/Makefile.am (dbus-specification.html): testing a funky hack
7013 to work with Debian db2html
7015 2003-09-28 Havoc Pennington <hp@pobox.com>
7017 * configure.in: 0.13
7019 * doc/Makefile.am (dbus-test-plan.html): accept nonexistence of
7020 stylesheet-images for benefit of Debian
7022 Change back to using filesystem-linked sockets for the system
7023 bus, so only root can create the default system bus address.
7025 * bus/system.conf.in: change to use
7026 DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
7028 * dbus/Makefile.am (INCLUDES): remove DBUS_SYSTEM_BUS_PATH define
7031 * configure.in: define DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
7032 here, and AC_DEFINE DBUS_SYSTEM_PATH
7034 2003-08-09 Anders Carlsson <andersca@codefactory.se>
7037 * doc/busconfig.dtd:
7040 2003-08-09 Anders Carlsson <andersca@codefactory.se>
7042 * doc/dbus-specification.sgml:
7043 Add activation reply values.
7045 2003-08-05 Havoc Pennington <hp@redhat.com>
7047 * configure.in: 0.12
7049 2003-08-05 Anders Carlsson <andersca@codefactory.se>
7051 * glib/dbus-gmain.c: (watch_fd_new), (watch_fd_ref),
7052 (watch_fd_unref), (dbus_gsource_check), (dbus_gsource_dispatch),
7053 (add_watch), (remove_watch), (create_source):
7054 Refcount fds, fixes some reentrancy issues.
7056 2003-07-30 Havoc Pennington <hp@redhat.com>
7058 * dbus/dbus-bus.c (init_connections_unlocked): fix default system
7059 bus address to be abstract if we have abstract sockets
7063 2003-07-28 Havoc Pennington <hp@redhat.com>
7065 * bus/messagebus.in: fix to avoid processname/servicename
7066 confusion, from Michael Kearey
7067 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=100965
7069 2003-07-23 Havoc Pennington <hp@pobox.com>
7071 * dbus/dbus-message.c (dbus_message_iter_get_named):
7072 fix from Andy Hanton to remove broken "+1"
7074 2003-07-16 Havoc Pennington <hp@pobox.com>
7076 * tools/dbus-launch.c (babysit): close stdout/stderr in the
7077 babysitter process, as suggested by Thomas Leonard, so
7078 an "eval `dbus-launch --exit-with-session`" will actually
7081 2003-07-16 Havoc Pennington <hp@pobox.com>
7083 * configure.in: print out EXPANDED_* variables in the summary at
7084 the end; clean up the code that computes EXPANDED_ variables and
7085 get the ones using exec_prefix right. Should make things work
7086 when you build without --prefix
7088 2003-06-29 Havoc Pennington <hp@pobox.com>
7090 * mono/Test.cs (class Test): fire up a main loop and run it
7092 * mono/DBus.cs (DBus): don't g_thread_init since it can only be
7093 done once, the app has to do it
7095 2003-06-26 Havoc Pennington <hp@pobox.com>
7097 * mono/Connection.cs: set up connection with the glib main loop
7099 2003-07-01 Havoc Pennington <hp@redhat.com>
7101 * doc/dbus-specification.sgml: clarify the format of a type code,
7102 change suggested by Jim Blandy
7104 2003-06-29 Miloslav Trmac <mitr@volny.cz>
7107 * tools/Makefile.am: Don't assume srcdir == builddir.
7109 * dbus/dbus-memory.c (dbus_realloc): Don't check guards after shrinking
7110 the allocated block.
7111 (_dbus_memory_test): New function.
7112 * dbus/dbus-test.h: Add _dbus_memory_test ().
7113 * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): Call it.
7115 * dbus/dbus-message.c (decode_header_data): Use %.4s instead
7117 (dbus_message_new): Remove obsolete @todo.
7119 * dbus/dbus-marshal.c (_dbus_marshal_set_int64)
7120 (_dbus_marshal_set_uint64): Fix comment.
7122 * dbus/dbus-message.c (append_int_field, append_uint_field): Don't
7123 hardcode FIELD_REPLY_SERIAL.
7125 * dbus/dbus-mainloop.c (_dbus_loop_remove_watch)
7126 (_dbus_loop_remove_timeout): Cast function pointers to (void *) for %p
7128 * configure.in: Add -D_POSIX_C_SOURCE=199309L -DBSD_SOURCE to CFLAGS
7129 and disable DBUS_USE_ATOMIC_INT_486 when --enable-ansi is used
7131 2003-06-24 Havoc Pennington <hp@pobox.com>
7133 * mono/*.cs: Use IntPtr.Zero instead of ((IntPtr) 0)
7135 2003-06-23 Anders Carlsson <andersca@codefactory.se>
7141 * gcj/TestMessage.java: (TestMessage), (TestMessage.main):
7142 * gcj/org/.cvsignore:
7143 * gcj/org/Makefile.am:
7144 * gcj/org/freedesktop/.cvsignore:
7145 * gcj/org/freedesktop/Makefile.am:
7146 * gcj/org/freedesktop/dbus/.cvsignore:
7147 * gcj/org/freedesktop/dbus/Makefile.am:
7148 * gcj/org/freedesktop/dbus/Message.java: (Message),
7150 * gcj/org/freedesktop/dbus/natMessage.cc:
7151 Fix the build system.
7153 2003-06-22 Havoc Pennington <hp@pobox.com>
7155 * mono/Connection.cs: add more bindings
7157 * dbus/dbus-threads.c (dbus_threads_init): allow calling this
7160 2003-06-22 Havoc Pennington <hp@pobox.com>
7162 * mono/Connection.cs, mono/DBus.cs, mono/Error.cs:
7163 Start wrapping more stuff.
7165 2003-06-22 Havoc Pennington <hp@pobox.com>
7167 * mono/Message.cs: implement Message.Wrap() that ensures we only
7168 have a single C# wrapper per DBusMessage, assuming it works which
7169 it probably doesn't.
7171 * dbus/dbus-message.c (dbus_message_allocate_data_slot): new
7172 (dbus_message_free_data_slot): new
7173 (dbus_message_set_data): new
7174 (dbus_message_get_data): new
7176 2003-06-22 Havoc Pennington <hp@pobox.com>
7178 * dbus/dbus-dataslot.c (_dbus_data_slot_allocator_unref)
7179 (_dbus_data_slot_allocator_alloc): rework these to keep a
7180 reference count on each slot and automatically manage a global
7181 slot ID variable passed in by address
7183 * bus/bus.c: convert to new dataslot API
7185 * dbus/dbus-bus.c: convert to new dataslot API
7187 * dbus/dbus-connection.c: convert to new dataslot API
7189 * dbus/dbus-server.c: convert to new dataslot API
7191 * glib/dbus-gmain.c: ditto
7195 * bus/connection.c: ditto
7197 2003-06-22 Anders Carlsson <andersca@codefactory.se>
7199 * configure.in: Add AM_PROG_GCJ and move AM_PROG_LIBTOOL
7200 after the gcj checks so that the correct configuration tags
7201 will be added to libtool.
7203 * dbus-glib-1.pc.in: No need to specify any includes since
7204 dbus-1.pc.in has those.
7206 2003-06-22 Havoc Pennington <hp@pobox.com>
7208 * mono/*, gcj/*, configure.in, Makefile.am:
7209 Check in makefiles and subdirs for mono and gcj bindings.
7210 Neither binding actually exists, just trying to get through
7211 all the build and other boring bits.
7213 2003-06-21 Philip Blundell <philb@gnu.org>
7215 * tools/dbus-monitor.1: Updated.
7217 * tools/dbus-send.1: Likewise.
7219 2003-06-20 Anders Carlsson <andersca@codefactory.se>
7221 * dbus/dbus-transport-unix.c (unix_handle_watch): Check
7222 for hangup and error after checking read so we won't discard
7223 pending data if both hangup and read are set.
7225 2003-06-19 Philip Blundell <philb@gnu.org>
7227 * tools/dbus-print-message.c (print_message): Handle BOOLEAN.
7229 * tools/dbus-send.c: Accept both --system and --session.
7231 * tools/dbus-monitor.c: Same here.
7233 2003-06-19 Anders Carlsson <andersca@codefactory.se>
7235 * glib/dbus-glib.h: Fix so that dbus-glib.h can be used
7236 from C++ (Patch by Miloslav Trmac).
7238 2003-06-15 Joe Shaw <joe@assbarn.com>
7240 * configure.in: Check for socklen_t.
7242 * dbus/dbus-sysdeps.c: Define socklen_t if it's not defined.
7244 * test/test-segfault.c: Add #include <sys/time.h>
7246 * tools/Makefile.am: Add DBUS_X_CFLAGS to the INCLUDES since
7247 dbus-launch needs it.
7249 2003-06-09 Havoc Pennington <hp@redhat.com>
7251 * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): don't use
7252 SUN_LEN, it breaks abstract socket usage
7254 * dbus/dbus-internals.c (_dbus_verbose_real): only print PID at
7257 2003-06-04 Havoc Pennington <hp@pobox.com>
7259 * dbus/dbus-server.c (dbus_server_listen): allow abstract sockets
7260 using unix:abstract=/foo, and when listening in a tmpdir
7261 i.e. unix:tmpdir=/tmp, always use abstract sockets if we can.
7263 * dbus/dbus-transport.c (_dbus_transport_open): support
7266 * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
7267 support abstract sockets
7269 * dbus/dbus-transport-unix.c
7270 (_dbus_transport_new_for_domain_socket): support abstract sockets
7272 * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket): add "abstract"
7273 toggle as an argument, implement abstract namespace support
7274 (_dbus_listen_unix_socket): ditto
7276 * configure.in: add --enable-abstract-sockets and implement
7277 a configure check for autodetection of the right value.
7279 2003-06-01 Havoc Pennington <hp@pobox.com>
7281 * tools/dbus-cleanup-sockets.c: add utility to clean up sockets
7282 in /tmp (though on Linux this will end up being useless,
7283 when we add abstract namespace support)
7285 * configure.in: define DBUS_SESSION_SOCKET_DIR in addition to
7288 2003-05-28 Colin Walters <walters@verbum.org>
7290 * tools/dbus-monitor.c (main): Fix silly typo (s/--session/--system/).
7292 2003-05-18 Anders Carlsson <andersca@codefactory.se>
7294 * dbus/dbus-message.c (dbus_message_new): Remove @todo.
7296 2003-05-17 Colin Walters <walters@gnu.org>
7298 * tools/dbus-send.c: Don't exit with an error code if --help was
7299 passed. Default to using the session bus instead of the system
7302 * tools/dbus-launch.c: Ditto.
7304 * tools/dbus-monitor.c: Ditto.
7306 * tools/dbus-send.1: Update with new arguments.
7308 * tools/dbus-launch.c: Emit code to export variables. New
7309 arguments -s and -c to specify shell syntax, and a bit of code to
7310 autodetect syntax. Also, allow specifying a program to run.
7312 * tools/dbus-launch.1: Update with new arguments.
7314 * tools/dbus-send.1: Ditto.
7316 * tools/dbus-monitor.1: Ditto.
7318 2003-05-17 Havoc Pennington <hp@pobox.com>
7320 * bus/config-parser.c (merge_included): merge in policies from
7321 child configuration file.
7323 * bus/policy.c (bus_policy_merge): function to merge two policies
7326 2003-05-16 Havoc Pennington <hp@redhat.com>
7328 * dbus/dbus-connection.c: disable verbose lock spew
7330 * tools/dbus-send.c: add --print-reply command line option
7332 * tools/dbus-print-message.h (print_message): new util function
7333 shared by dbus-send and dbus-monitor
7335 * tools/dbus-monitor.c (handler_func): exit on disconnect
7337 * dbus/dbus-transport-unix.c (do_reading): if the transport is
7338 disconnected, don't try to use the read_watch
7340 * dbus/dbus-watch.c (dbus_watch_get_enabled): assert watch != NULL
7341 so we can find this bug more easily
7343 2003-05-16 Havoc Pennington <hp@redhat.com>
7345 * bus/policy.c (free_rule_list_func): avoid a crash when passed
7346 NULL as DBusHashTable is annoyingly likely to do.
7348 2003-05-16 Colin Walters <walters@verbum.org>
7350 * tools/dbus-monitor.c: Add --session argument and usage()
7353 * tools/dbus-monitor.1: Update with new --session arg.
7355 * bus/Makefile.am (install-data-hook): Create
7356 $(libdir)/dbus-1.0/services so that the session bus is happy.
7358 2003-05-15 Havoc Pennington <hp@redhat.com>
7360 * dbus/dbus-sysdeps.c (_dbus_atomic_dec, _dbus_atomic_inc): work
7361 on non-x86. ifdef's are evil.
7363 2003-05-15 Havoc Pennington <hp@redhat.com>
7365 * configure.in: 0.11
7369 * bus/Makefile.am (initddir): apparently we are supposed to put
7370 init scripts in /etc/rc.d/init.d not /etc/init.d
7372 * bus/Makefile.am: remove the "you must --enable-tests to make
7373 check" as it broke distcheck
7375 * bus/Makefile.am (install-data-hook): create /etc/dbus-1/system.d
7377 2003-05-13 James Willcox <jwillcox@gnome.org>
7380 * bus/activation.c: (bus_activation_service_created),
7381 (bus_activation_activate_service):
7382 * bus/driver.c: (bus_driver_send_service_deleted),
7383 (bus_driver_send_service_created), (bus_driver_send_service_lost),
7384 (bus_driver_send_service_acquired),
7385 (bus_driver_send_welcome_message),
7386 (bus_driver_handle_list_services):
7387 * bus/session.conf.in:
7388 * dbus/dbus-bus.c: (dbus_bus_acquire_service),
7389 (dbus_bus_service_exists), (dbus_bus_activate_service):
7392 Add some convenience API which lets you activate a service, and did a
7393 bunch of s/0/DBUS_TYPE_INVALID/ in calls to dbus_message_append_args()
7394 and dbus_message_get_args()
7396 2003-05-11 Havoc Pennington <hp@pobox.com>
7398 * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix to avoid
7399 calling _dbus_marshal_validate_arg() for every byte in a byte
7402 * dbus/dbus-message-handler.c: use atomic reference counting to
7403 reduce number of locks slightly; the global lock in here sucks
7405 * dbus/dbus-connection.c
7406 (_dbus_connection_update_dispatch_status_and_unlock): variant of
7407 update_dispatch_status that can be called with lock held; then use
7408 in a couple places to reduce locking/unlocking
7409 (dbus_connection_send): hold the lock over the whole function
7410 instead of acquiring it twice.
7412 * dbus/dbus-timeout.c (_dbus_timeout_new): handle OOM
7414 * bus/connection.c (bus_connections_setup_connection): fix access
7415 to already-freed memory.
7417 * dbus/dbus-connection.c: keep a little cache of linked list
7418 nodes, to avoid using the global linked list alloc lock in the
7419 normal send-message case. Instead we just use the connection lock
7420 that we already have to take.
7422 * dbus/dbus-list.c (_dbus_list_find_last): new function
7424 * dbus/dbus-sysdeps.c (_dbus_atomic_inc, _dbus_atomic_dec):
7425 change to use a struct for the atomic type; fix docs,
7426 they return value before increment, not after increment.
7428 * dbus/dbus-string.c (_dbus_string_append_4_aligned)
7429 (_dbus_string_append_8_aligned): new functions to try to
7430 microoptimize this operation.
7431 (reallocate_for_length): break this out of set_length(), to
7432 improve profile info, and also so we can consider inlining the
7435 * dbus/dbus-message.c (dbus_message_new_empty_header): init data
7436 strings with some preallocation, cuts down on our calls to realloc
7437 a fair bit. Though if we can get the "move entire string to empty
7438 string" optimization below to kick in here, it would be better.
7440 * dbus/dbus-string.c (_dbus_string_move): just call
7441 _dbus_string_move_len
7442 (_dbus_string_move_len): add a special case for moving
7443 an entire string into an empty string; we can just
7444 swap the string data instead of doing any reallocs.
7445 (_dbus_string_init_preallocated): new function
7447 2003-05-11 Havoc Pennington <hp@pobox.com>
7449 Write a "test-profile" that does echo client-server with threads;
7450 profile reveals lock contention, memcpy/realloc of buffers, and
7451 UTF-8 validation as hot spots. 20% of lock contention eliminated
7452 with dbus_atomic_inc/dec implementation on x86. Much remaining
7453 contention is global mempool locks for GList and DBusList.
7455 * dbus/dbus-sysdeps.c (_dbus_atomic_inc, _dbus_atomic_dec): add
7458 * dbus/dbus-connection.c (struct DBusConnection): use
7459 dbus_atomic_t for the reference count
7461 * dbus/dbus-message.c (struct DBusMessage): declare
7462 dbus_atomic_t values as volatile
7464 * configure.in: code to detect ability to use atomic integer
7465 operations in assembly, from GLib patch
7467 * dbus/dbus-internals.c (_dbus_verbose_real): call getpid every
7468 time, tired of it being wrong in threads and forked processes
7470 * glib/test-profile.c: a little program to bounce messages back
7471 and forth between threads and eat CPU
7473 * dbus/dbus-connection.c: add debug spew macros for debugging
7474 thread locks; include config.h at top; fix deadlock in
7475 dbus_connection_flush()
7477 2003-05-08 Havoc Pennington <hp@pobox.com>
7479 * dbus/dbus-spawn.c: s/_exit/exit/ because it was keeping gcov
7480 data from getting written, and there wasn't a good reason to
7483 * test/decode-gcov.c (mark_inside_dbus_build_tests): don't count
7484 dbus_verbose lines in test coverage
7485 (main): add list of functions sorted by # of untested blocks
7486 to the coverage report
7488 * dbus/dbus-mempool.c: put some test-only code in DBUS_BUILD_TESTS
7490 * dbus/dbus-marshal.c (_dbus_marshal_test): extend test coverage
7492 * dbus/dbus-message-handler.c (_dbus_message_handler_test):
7493 extend test coverage
7495 * test/data/auth/cancel.auth-script: test canceling an
7498 * dbus/Makefile.am: remove dbus-server-debug.[hc] for now, as they
7499 aren't used. in CVS history if we end up needing them.
7501 2003-05-04 Havoc Pennington <hp@pobox.com>
7503 * dbus/dbus-message-handler.c (_dbus_message_handler_test): add
7506 * dbus/dbus-marshal.c (_dbus_demarshal_string_array): fix this
7507 function, which assumed length was in # of strings, not bytes
7509 * dbus/dbus-message.c (_dbus_message_test): add tests for some
7512 * dbus/dbus-connection.c
7513 (_dbus_connection_queue_received_message): disable function for
7514 now, we are only using it in test mode
7516 * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
7517 remove a mistaken FIXME
7519 2003-05-04 Havoc Pennington <hp@pobox.com>
7521 * dbus/dbus-connection.c (dbus_connection_preallocate_send):
7522 unlock mutex on successful return, patch from Anders Gustafsson
7524 2003-05-04 Havoc Pennington <hp@pobox.com>
7526 * dbus-glib-1.pc.in (Requires): fix dependencies, from
7529 2003-05-04 Havoc Pennington <hp@pobox.com>
7531 * tools/dbus-launch.c: implement
7533 * bus/main.c (main), bus/bus.c (bus_context_new):
7534 implement --print-pid and --fork
7536 2003-05-03 Havoc Pennington <hp@redhat.com>
7538 * dbus/dbus-address.c (dbus_parse_address): fix bug when a key in
7539 the address had no value, and add to test suite. Fix and
7540 regression test from Miloslav Trmac
7542 2003-05-03 Havoc Pennington <hp@pobox.com>
7544 * dbus/dbus-watch.c (dbus_watch_handle): warn and return if a
7545 watch is invalid when handled
7547 * tools/Makefile.am, tools/dbus-launch.c, tools/dbus-launch.1: add
7548 dbus-launch utility to launch the bus from a shell script. Didn't
7549 actually implement dbus-launch yet, it's just a placeholder still.
7551 2003-05-03 Havoc Pennington <hp@pobox.com>
7553 * bus/Makefile.am, bus/dbus-daemon-1.1.in: man page for the
7554 daemon; also documents daemon config file, so replaces
7555 doc/config-file.txt. Corrected some stuff from config-file.txt in
7556 the process of moving it.
7558 2003-05-03 Havoc Pennington <hp@pobox.com>
7560 * tools/Makefile.am, tools/dbus-send.1, tools/dbus-monitor.1:
7563 2003-05-03 Colin Walters <walters@verbum.org>
7565 * dbus/dbus-sysdeps.c (fill_user_info): Test against
7566 DBUS_UID_UNSET to determine whether to do a uid lookup or not.
7568 * Makefile.am: Update to use new .pc versioning scheme.
7570 2003-05-02 Havoc Pennington <hp@redhat.com>
7572 * bus/system.conf.in: allow send/receive to/from message bus
7575 2003-04-30 Havoc Pennington <hp@redhat.com>
7577 * configure.in: print a note when building with unit tests and
7580 2003-04-30 Havoc Pennington <hp@redhat.com>
7582 * Makefile.am: add a check-local that complains if you didn't
7583 configure with --enable-tests
7585 2003-04-29 Havoc Pennington <hp@redhat.com>
7587 * glib/dbus-gmain.c: docs cleanups
7589 * dbus/dbus-types.h: add docs on int64 types
7591 * dbus/dbus-memory.c: fix docs to avoid putting private API in
7592 public API docs section
7594 2003-04-29 Havoc Pennington <hp@redhat.com>
7596 * dbus-1.pc.in, dbus-glib-1.pc.in: rename these from
7597 dbus-1.0.pc.in, dbus-glib-1.0.pc.in. As these change with the
7598 parallel install API version, not with the D-BUS package version.
7600 * HACKING: move some of README over here
7602 * README: updates, and document API/ABI policy
7604 * configure.in: reindentation
7606 2003-04-29 Havoc Pennington <hp@redhat.com>
7608 * dbus/dbus.h: add "you have to define DBUS_API_SUBJECT_TO_CHANGE
7609 to use this library" to be sure people have the right
7612 2003-04-28 Havoc Pennington <hp@redhat.com>
7614 * configure.in: add --enable-docs which by default is auto yes if
7615 doxygen and db2html found, no otherwise; but can be forced on/off
7617 * doc/Makefile.am: conditionalize whether to build docs on
7620 2003-04-28 Havoc Pennington <hp@redhat.com>
7622 * configure.in: 0.10
7626 * bus/system.conf.in: add <includedir>system.d</includedir>
7628 * dbus/dbus-userdb.c (_dbus_user_database_lookup): fix bug when
7629 username was provided but not uid
7631 * bus/config-parser.c (struct BusConfigParser): keep track of
7632 whether the parser is toplevel or was included; change some
7633 of the error handling if it's included.
7635 2003-04-27 Havoc Pennington <hp@pobox.com>
7639 * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
7640 report correct status if we finish processing authentication
7641 inside this function.
7643 * bus/activation.c (try_send_activation_failure): use
7644 bus_transaction_send_error_reply
7646 * bus/connection.c (bus_connection_get_groups): return an error
7647 explaining the problem
7649 * bus/bus.c (bus_context_check_security_policy): implement
7650 restriction here that inactive connections can only send the
7651 hello message. Also, allow bus driver to send anything to
7654 * bus/connection.c (bus_connection_complete): create the
7655 BusClientPolicy here instead of on-demand.
7656 (bus_connection_get_policy): don't return an error
7658 * dbus/dbus-message.c (dbus_message_new_error_reply): allow NULL
7659 sender field in message being replied to
7661 * bus/bus.c (bus_context_check_security_policy): fix silly typo
7662 causing it to return FALSE always
7664 * bus/policy.c (bus_client_policy_check_can_send): fix bug where
7665 we checked sender rather than destination
7667 2003-04-25 Havoc Pennington <hp@redhat.com>
7669 test suite is slightly hosed at the moment, will fix soon
7671 * bus/connection.c (bus_connections_expire_incomplete): fix to
7672 properly disable the timeout when required
7673 (bus_connection_set_name): check whether we can remove incomplete
7674 connections timeout after we complete each connection.
7676 * dbus/dbus-mainloop.c (check_timeout): fix this up a bit,
7677 probably still broken.
7679 * bus/services.c (bus_registry_acquire_service): implement max
7680 number of services owned, and honor allow/deny rules on which
7681 services a connection can own.
7683 * bus/connection.c (bus_connection_get_policy): report errors here
7685 * bus/activation.c: implement limit on number of pending
7688 2003-04-25 Havoc Pennington <hp@redhat.com>
7690 * dbus/dbus-transport.c (_dbus_transport_get_unix_user): fix bug
7691 where we used >= 0 instead of != DBUS_UID_UNSET.
7693 2003-04-25 Havoc Pennington <hp@redhat.com>
7695 * glib/dbus-gmain.c (remove_watch): fix for a crash when watches
7696 were toggled without add/remove, fix from Anders Gustafsson
7698 2003-04-24 Havoc Pennington <hp@redhat.com>
7700 * test/data/valid-config-files/basic.conf: add <limit> tags to
7703 * bus/config-parser.h, bus/config-parser.c, bus/bus.c: Implement
7704 <limit> tag in configuration file.
7706 2003-04-24 Havoc Pennington <hp@redhat.com>
7708 * bus/dispatch.c: somehow missed some name_is
7710 * dbus/dbus-timeout.c (_dbus_timeout_set_enabled)
7711 (_dbus_timeout_set_interval): new
7713 * bus/connection.c (bus_connections_setup_connection): record time
7714 when each connection is first set up, and expire them after the
7715 auth timeout passes.
7717 2003-04-24 Havoc Pennington <hp@redhat.com>
7719 * dbus/dbus-message.c (dbus_message_name_is): rename
7720 (dbus_message_service_is): rename
7721 (dbus_message_sender_is): rename
7722 (dbus_message_get_service): rename
7724 2003-04-24 Havoc Pennington <hp@redhat.com>
7726 * configure.in: add --enable-checks
7728 * dbus/dbus-message.c (dbus_message_new): reverse name/service arguments
7730 * dbus/dbus-connection.c (dbus_connection_preallocate_send): fix
7731 to use thread locks.
7732 (_dbus_connection_handler_destroyed_locked): move some private
7733 functions into proper docs group
7735 * dbus/dbus-internals.h: add _dbus_return_if_fail,
7736 _dbus_return_val_if_fail
7738 Throughout: use dbus_return_if_fail
7740 2003-04-23 James Willcox <jwillcox@gnome.org>
7743 * glib/dbus-gmain.c: (add_timeout), (wakeup_main), (create_source),
7744 (dbus_connection_setup_with_g_main),
7745 (dbus_server_setup_with_g_main):
7746 * glib/test-dbus-glib.c: (main):
7747 * glib/test-thread-client.c: (main):
7748 * glib/test-thread-server.c: (new_connection_callback), (main):
7749 * tools/dbus-monitor.c: (main):
7751 Added a GMainContext argument to dbus_connection_setup_with_g_main()
7752 and dbus_server_setup_with_g_main().
7754 2003-04-20 Havoc Pennington <hp@pobox.com>
7756 * doc/dbus-specification.sgml: document the restrictions on
7757 message and service names
7759 2003-04-22 Havoc Pennington <hp@redhat.com>
7761 * dbus/dbus-message.c, dbus/dbus-marshal.c: add 64-bit integer
7762 support, and do some code cleanups to share more code and
7763 speed up array marshal/demarshal.
7765 * dbus-1.0.pc.in (Cflags): put libdir include file in cflags
7767 * configure.in: generate dbus-arch-deps.h
7769 * dbus/dbus-protocol.h (DBUS_TYPE_INT64, DBUS_TYPE_UINT64): add
7772 2003-04-22 Havoc Pennington <hp@redhat.com>
7774 * test/data/valid-messages/opposite-endian.message: fix test
7775 to use proper type for rply field
7777 * test/data/invalid-messages: add tests for below validation
7779 * dbus/dbus-message.c (decode_header_data): validate field types,
7780 and validate that named fields are valid names
7781 (decode_name_field): consider messages in the
7782 org.freedesktop.Local. namespace to be invalid.
7784 * dbus/dbus-string.c (_dbus_string_validate_name): new
7786 2003-04-19 Havoc Pennington <hp@pobox.com>
7788 * bus/driver.c (bus_driver_handle_hello): check limits and
7789 return an error if they are exceeded.
7791 * bus/connection.c: maintain separate lists of active and inactive
7792 connections, and a count of each. Maintain count of completed
7793 connections per user. Implement code to check connection limits.
7795 * dbus/dbus-list.c (_dbus_list_unlink): export
7797 * bus/bus.c (bus_context_check_security_policy): enforce a maximum
7798 number of bytes in the message queue for a connection
7800 2003-04-18 Havoc Pennington <hp@pobox.com>
7802 * dbus/dbus-auth.c (record_mechanisms): memleak fixes
7804 * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): fix some
7807 * dbus/dbus-keyring.c (add_new_key): fix a memleak, and
7808 on realloc be sure to update the pointer in the keyring
7810 * dbus/dbus-string.c (_dbus_string_zero): compensate for align
7811 offset to avoid writing to unallocated memory
7813 * dbus/dbus-auth.c (process_rejected): return FALSE if we fail to
7814 try the next mechanism, so we properly handle OOM
7816 * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): fix double-free
7818 (_dbus_keyring_new): fix OOM bug
7819 (_dbus_keyring_new_homedir): always set error; impose a maximum
7820 number of keys we'll load from the file, mostly to speed up the
7821 test suite and make its OOM checks more useful, but also for
7824 * dbus/dbus-auth.c (process_error_server): reject authentication
7825 if we get an error from the client
7826 (process_cancel): on cancel, send REJECTED, per the spec
7827 (process_error_client): send CANCEL if we get an error from the
7830 2003-04-18 Havoc Pennington <hp@pobox.com>
7832 * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix UMR in verbose
7835 * dbus/dbus-auth.c (handle_client_data_cookie_sha1_mech): fix OOM
7838 * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): only whine
7839 about DBUS_TEST_HOMEDIR once
7841 * bus/Makefile.am (TESTS_ENVIRONMENT): put DBUS_TEST_HOMEDIR in
7844 * bus/dispatch.c (bus_dispatch_sha1_test): actually load sha1
7845 config file so we test the right thing
7847 Throughout: assorted docs improvements
7849 2003-04-18 Havoc Pennington <hp@pobox.com>
7851 * glib/dbus-gmain.c: adapt to watch changes
7853 * bus/bus.c, bus/activation.c, etc.: adjust to watch changes
7855 * dbus/dbus-server.h: remove dbus_server_handle_watch
7857 * dbus/dbus-connection.h: remove dbus_connection_handle_watch
7859 * dbus/dbus-watch.c (dbus_watch_handle): change DBusWatch to work
7860 like DBusTimeout, so we don't need dbus_connection_handle_watch
7863 2003-04-17 Havoc Pennington <hp@redhat.com>
7865 * dbus/dbus-userdb.c, dbus/dbus-sysdeps.c: redo all the passwd
7866 database usage so it all goes via the DBusUserDatabase cache.
7868 2003-04-17 Havoc Pennington <hp@redhat.com>
7870 * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix logic so that if
7871 there was an OOM watch we skipped, we always return TRUE so we
7872 iterate again to have a look at it again. Fixes test suite hang.
7873 Code rearrangement also lets us lose some memset and only iterate
7874 over callbacks once.
7876 * bus/driver.c (bus_driver_handle_message): sense of test for
7879 2003-04-16 Havoc Pennington <hp@pobox.com>
7881 * doc/dbus-specification.sgml: make spec say serials are unsigned
7883 * dbus/dbus-message.h: change message serials to unsigned
7885 * dbus/dbus-connection.c: adapt to message serials being unsigned
7887 2003-04-15 Havoc Pennington <hp@pobox.com>
7889 * bus/bus.c: create and keep around a shared DBusUserDatabase
7892 * bus/connection.c (bus_connection_get_groups): don't cache
7893 groups for user in the connection object, since user database
7894 object now does that.
7896 2003-04-16 Havoc Pennington <hp@redhat.com>
7898 * dbus/dbus-message.c (_dbus_message_add_size_counter): keep a
7899 list of size counters
7900 (_dbus_message_loader_putback_message_link): put back a popped link
7902 * dbus/dbus-connection.c
7903 (dbus_connection_set_max_live_messages_size): rename
7905 (dbus_connection_get_outgoing_size): get size of outgoing
7907 (_dbus_connection_set_connection_counter): remove this cruft
7909 2003-04-14 Havoc Pennington <hp@redhat.com>
7911 * dbus/dbus-userdb.c: user database abstraction, mostly to get
7912 caching, but at some point we might want to be able to use a
7915 * bus/dispatch.c (bus_dispatch_sha1_test): add a test that uses
7916 SHA1 conf file to test the sha1 auth mechanism, since the regular
7917 test always uses EXTERNAL when available.
7920 test/data/valid-config-files/debug-allow-all-sha1.conf.in:
7921 add conf file that requires use of sha1 auth
7923 2003-04-13 Havoc Pennington <hp@pobox.com>
7925 * tools/dbus-send.c, tools/dbus-monitor.c: two utility programs
7926 from Philip Blundell to send messages and monitor them.
7928 2003-04-13 Havoc Pennington <hp@pobox.com>
7930 * dbus/dbus-mainloop.c: fix some reentrancy issues by refcounting
7933 * test/data/valid-config-files/debug-allow-all.conf.in: allow all
7936 * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
7937 fix to only recover unused bytes if we're already authenticated
7938 (_dbus_transport_get_is_authenticated): fix to still mark us
7939 authenticated if there are unused bytes.
7941 * bus/dispatch.c: implement security policy checking
7943 * bus/connection.c (bus_transaction_send_from_driver): new
7945 * bus/bus.c (bus_context_check_security_policy): new
7947 * bus/dispatch.c (send_service_nonexistent_error): delete this,
7948 now we just set the DBusError and it gets converted to an error
7951 * bus/connection.c (allow_user_function): enable code using actual
7952 data from the config file
7954 * bus/policy.c (list_allows_user): handle wildcard rules for
7955 user/group connection perms
7957 2003-04-13 Havoc Pennington <hp@pobox.com>
7959 * bus/config-parser.c: Load up the BusPolicy and BusPolicyRules
7961 * dbus/dbus-sysdeps.c (_dbus_get_user_id): new function
7963 * bus/policy.c (bus_policy_append_mandatory_rule)
7964 (bus_policy_append_default_rule, bus_policy_append_user_rule)
7965 (bus_policy_append_group_rule): new functions
7967 2003-04-12 Havoc Pennington <hp@pobox.com>
7969 * bus/config-parser.c (bus_config_parser_new): fix a memleak
7971 * dbus/dbus-sysdeps.c: change DBusCredentials to use longs for
7972 the pid/gid/uid, just for paranoia.
7974 * test/break-loader.c (randomly_do_n_things): find a byte
7975 containing a type code, and randomly change it to a different
7978 2003-04-12 Havoc Pennington <hp@pobox.com>
7980 * bus/policy.h: change BusPolicy to be the thing from the config
7981 file, and rename old BusPolicy to BusClientPolicy
7983 * bus/bus.c, bus/connection.c, bus/config-parser.c: change to
7984 match change in how policy works
7986 * dbus/dbus-internals.h: mark assert_not_reached as
7987 __attribute((noreturn))__
7989 2003-04-11 Havoc Pennington <hp@redhat.com>
7991 * doc/dbus-specification.sgml: fix a spot with the wrong name for
7992 the broadcast service. Use boolean return for ServiceExists.
7994 2003-04-11 Havoc Pennington <hp@redhat.com>
7996 * configure.in: add another directory to look for qt in.
7998 2003-04-11 Havoc Pennington <hp@redhat.com>
8000 * AUTHORS: add Colin Walters
8002 2003-04-11 Havoc Pennington <hp@redhat.com>
8008 2003-04-11 Havoc Pennington <hp@redhat.com>
8010 * bus/messagebus.in: remove pid file when stopping the
8011 message bus, since the bus won't have privileges to remove it
8014 2003-04-11 Havoc Pennington <hp@redhat.com>
8016 * bus/bus.c (bus_context_new): move credentials change after
8019 2003-04-11 Havoc Pennington <hp@pobox.com>
8021 * test/decode-gcov.c: add "below average functions" to the
8022 coverage report, and change how some of the code works.
8024 * bus/test-main.c: bracket some stuff in DBUS_BUILD_TESTS so it's
8025 not in the coverage stats.
8027 * test/test-service.c (main): use _dbus_verbose not fprintf in a
8028 couple places so running the test suite doesn't result in megaspam.
8030 2003-04-11 Havoc Pennington <hp@pobox.com>
8032 * bus/dispatch.c (check_existent_service_activation): accept a no
8033 memory error in a place we didn't before
8035 * bus/test.c (bus_test_run_everything): remove hacky "do it twice
8036 in case the first one failed," since the test suite is less
8039 2003-04-10 Havoc Pennington <hp@pobox.com>
8041 * bus/dispatch.c (check_segfault_service_activation): add test
8042 for launching an executable that just crashes.
8044 * test/test-segfault.c (main): try setting coredumpsize to 0 so we
8045 don't leave a million cores. We'll see how portable this is.
8047 2003-04-10 Havoc Pennington <hp@pobox.com>
8049 * dbus/dbus-spawn.c (_dbus_spawn_async_with_babysitter): move all
8050 the possible parent failures before we fork, so that we don't
8051 fail to create a babysitter after creating the child.
8053 * bus/activation.c (bus_activation_activate_service): kill child
8054 if we don't successfully complete the activation.
8056 2003-04-10 Havoc Pennington <hp@redhat.com>
8058 * dbus/dbus-connection.c (dbus_connection_flush): don't spin on
8059 the connection if it's disconnected
8061 * bus/activation.c (bus_activation_service_created): use new
8062 transaction features to roll back removal of pending activation if
8063 we don't successfully create the service after all. Don't remove
8064 pending activation if the function fails.
8066 * dbus/dbus-list.c (_dbus_list_insert_before_link)
8067 (_dbus_list_insert_after_link): new code to facilitate
8070 * dbus/dbus-hash.c (_dbus_hash_table_insert_string_preallocated):
8071 new functionality, so we can preallocate the ability to insert
8074 * bus/connection.c (bus_transaction_add_cancel_hook): new function
8075 allowing us to put custom hooks in a transaction to be used for
8076 cancelling said transaction
8078 * doc/dbus-specification.sgml: add some discussion of secondary
8079 service owners, and disallow zero-length service names
8081 * bus/services.c (bus_registry_acquire_service): new function,
8082 splits out part of bus_driver_handle_acquire_service() and fixes
8083 a bug where we didn't remove the service doing the acquiring
8084 from the secondary queue if we failed to remove the current owner
8085 from the front of the queue.
8087 2003-04-10 Alexander Larsson <alexl@redhat.com>
8089 * doc/dbus-specification.sgml:
8090 s/org.freedesktop.Broadcast/org.freedesktop.DBus.Broadcast/
8092 2003-04-10 Alexander Larsson <alexl@redhat.com>
8097 Added files to cvsignore
8099 * dbus/dbus-message.h:
8100 * dbus/dbus-message.c: (dbus_message_iter_get_named):
8101 Make get_named() take two out argument and return a boolean.
8102 (dbus_message_iter_get_args_valist):
8103 Update usage of get_named().
8104 (dbus_message_iter_append_byte):
8106 (dbus_message_iter_append_named)
8108 (message_iter_test), (check_message_handling_type), (_dbus_message_test):
8111 2003-04-10 Alexander Larsson <alexl@redhat.com>
8113 * dbus/dbus-marshal.[ch]:
8114 Add array_type_pos argument to _dbus_marshal_validate_arg.
8115 Let you pass a NULL end_pos to _dbus_marshal_validate_type.
8117 * dbus/dbus-message.[ch]:
8118 Multi-dimensional arrays have full type specification in the
8119 outermost array. Iter code re-arranged to handle this.
8120 Added some more iter tests.
8122 * doc/dbus-specification.sgml:
8125 Update new array encoding description.
8126 Correct DBUS_SERVICE_FLAGS_REPLACE_EXISTING description.
8128 * test/data/invalid-messages/array-with-mixed-types.message:
8129 * test/data/valid-messages/array-of-array-of-uint32.message:
8130 Change to the new array format.
8132 * test/data/invalid-messages/too-short-dict.message:
8135 * test/data/valid-messages/recursive-types.message:
8136 Fix up and extend test.
8138 2003-04-10 Havoc Pennington <hp@pobox.com>
8140 * bus/dispatch.c: lots of fixes
8142 * dbus/dbus-mainloop.c (_dbus_loop_dispatch): export
8143 (_dbus_loop_iterate): remove old "quit if no callbacks" code,
8144 that was crack, broke the test service.
8146 * dbus/dbus-transport.c (_dbus_transport_open): fix error
8147 handling to avoid piling up errors if we get a failure on the
8150 * dbus/dbus-internals.c (_dbus_real_assert_not_reached): include
8151 pid in assertion failures.
8153 * dbus/dbus-mainloop.c (_dbus_loop_iterate): use static arrays up
8154 to some fixed size of file descriptor array. Don't return TRUE
8155 anytime a timeout exists, that led to lots of busy loop silliness
8158 2003-04-09 Havoc Pennington <hp@redhat.com>
8160 * dbus/dbus-mainloop.c (check_timeout): fix timeouts, I thought
8161 I'd checked this in earlier but hadn't.
8163 2003-04-09 Havoc Pennington <hp@redhat.com>
8165 * bus/dispatch.c (bus_dispatch_test): get a bit further through
8166 the activation test (man this is getting old!)
8168 2003-04-09 Havoc Pennington <hp@redhat.com>
8170 * test/test-utils.c: use dispatch status function to fix this up
8172 * bus/connection.c (connection_watch_callback): don't dispatch
8174 (connection_timeout_callback): don't dispatch from here
8175 (bus_connections_setup_connection): set the dispatch status function
8176 (bus_connection_disconnected): unset it
8178 * dbus/dbus-mainloop.c (_dbus_loop_queue_dispatch): new function
8179 used to add a connection to be dispatched
8180 (_dbus_loop_iterate): do the dispatching at the end of each
8183 * dbus/dbus-connection.c
8184 (dbus_connection_set_dispatch_status_function): new function
8185 allowing us to fix up main loop usage
8186 (_dbus_connection_last_unref): free all the various function
8188 (dbus_connection_dispatch): call the DispatchStatusFunction
8189 whenever this function returns
8190 (dbus_connection_handle_watch): call DispatchStatusFunction
8191 (dbus_connection_send_with_reply_and_block): call DispatchStatusFunction
8192 (reply_handler_timeout): call DispatchStatusFunction
8193 (dbus_connection_flush): call DispatchStatusFunction
8195 2003-04-09 Havoc Pennington <hp@redhat.com>
8197 * dbus/dbus-bus.c (dbus_bus_register): fix up error handling and
8200 * bus/dispatch.c (check_service_activated): fix bug in test
8202 * dbus/dbus-mainloop.c (check_timeout): fix this up
8204 * dbus/dbus-internals.c (_dbus_verbose_real): include PID in
8205 verbose output so we can sort out output from different processes,
8206 e.g. in the activation case.
8208 2003-04-08 Colin Walters <walters@gnu.org>
8210 * bus/bus.c (struct BusContext) [pidfile]: New member, to store
8212 (bus_context_new): Set it.
8213 (bus_context_unref): Use it to delete the pid file.
8215 2003-04-08 Havoc Pennington <hp@redhat.com>
8217 * test/data/invalid-messages/array-with-mixed-types.message:
8218 regression test that fails for the moment
8220 * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): reorder
8221 tests for convenience
8223 * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): don't allow
8224 array of nil, it broke things.
8226 * test/data/invalid-messages/array-of-nil.message: regression test
8228 * test/data/valid-messages/array-of-array-of-uint32.message:
8229 happened to write this so added it to suite
8231 2003-04-08 Havoc Pennington <hp@redhat.com>
8233 * bus/driver.c (bus_driver_handle_acquire_service): init
8234 retval/reply before checking name
8236 * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add a
8237 recursion depth argument
8239 * dbus/dbus-message.h (struct DBusMessageIter): put some padding
8240 in the public struct for future extension
8242 * dbus/dbus-message-builder.c (_dbus_message_data_load): fix
8245 * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix a verbose
8248 * doc/dbus-specification.sgml: fix typo
8250 2003-04-08 Alexander Larsson <alexl@redhat.com>
8252 Implemented recursive types, named types and new-style iters
8255 * glib/test-thread-client.c: (thread_func):
8256 * glib/test-thread-server.c: (handle_test_message):
8257 * test/test-service.c: (handle_echo):
8266 * dbus/dbus-internals.c: (_dbus_type_to_string):
8267 Update for new types.
8269 * dbus/dbus-marshal.[ch]:
8270 Implement recursive types and the new marshalling format.
8271 Remove hardcoded dict marshalling.
8272 Marshal named types.
8274 * dbus/dbus-message-builder.c:
8276 Remove references to old types
8278 * dbus/dbus-message.[ch]:
8279 New non-refcounted iter API that supports recursive iters.
8280 Use iters for appending, including support for recursive
8282 Add byte and named type support.
8283 Update everything to new marshalling formats.
8284 Add tests for new API.
8286 * dbus/dbus-protocol.h:
8287 Remove old array types.
8288 Add types: BYTE, ARRAY, DICT, NAMED
8290 * dbus/dbus-string.c:
8291 * dbus/dbus-sysdeps.c:
8292 Make parse_double locale safe.
8294 * dbus/dbus-test-main.c:
8300 * doc/dbus-specification.sgml:
8303 * test/data/incomplete-messages/missing-body.message:
8304 * test/data/invalid-messages/bad-boolean.message:
8305 * test/data/invalid-messages/bad-boolean-array.message:
8306 * test/data/invalid-messages/boolean-array-length-too-long.message-raw:
8307 * test/data/invalid-messages/boolean-has-no-value.message-raw:
8308 * test/data/invalid-messages/too-short-dict.message:
8309 * test/data/valid-messages/dict-simple.message:
8310 * test/data/valid-messages/dict.message:
8311 * test/data/valid-messages/emptiness.message:
8312 * test/data/valid-messages/lots-of-arguments.message:
8313 * test/data/valid-messages/no-padding.message:
8314 * test/data/valid-messages/recursive-types.message:
8315 Add missing NAME fields
8316 Fix up dicts & arrays
8318 * test/data/invalid-messages/dict-with-nil-value.message:
8319 Removed, this is not invalid anymore.
8321 * test/data/valid-messages/recursive-types.message:
8322 Add new test for deeply recursive types.
8324 2003-04-07 Havoc Pennington <hp@pobox.com>
8326 * bus/driver.c (bus_driver_handle_acquire_service): return an
8327 error if you try to acquire a service that starts with ':'
8329 2003-04-07 Havoc Pennington <hp@redhat.com>
8331 * doc/dbus-specification.sgml: require that base service names
8332 start with ':' and that the base service is created/deleted
8333 as first and last things a connection does on the bus
8335 * bus/dispatch.c (check_existent_service_activation): lots more
8336 work on the activation test; it doesn't fully pass yet...
8338 * test/test-service.c (main): fix so we don't memleak the
8339 connection to the message bus
8340 (filter_func): accept a message asking us to exit
8342 2003-04-06 Havoc Pennington <hp@pobox.com>
8344 * qt/Makefile.am (dbusinclude_HEADERS): install dbus-qt.h,
8347 * configure.in: fixes to Qt detection from Colin Walters
8349 * doc/Makefile.am: Only remove generated docbook dirs if they
8350 exist, from Colin Walters
8352 * dbus/dbus-bus.c: change how we set well-known connections to
8353 NULL, so that it works if a single connection is stored in
8354 two well-known array slots.
8356 * test/Makefile.am: remove a lot of stuff that isn't immediately
8357 useful, it's in CVS history if we want it.
8359 * test/test-service.c: use dbus-mainloop instead of that
8362 2003-04-06 Havoc Pennington <hp@pobox.com>
8364 * dbus/Makefile.am: split lists of sources into stuff that goes in
8365 the library, util functions that go in the lib and are also used
8366 elsewhere, and util functions that are used in tests/daemon but
8367 don't go in the lib.
8369 * dbus/dbus-mainloop.h, dbus/dbus-mainloop.c: move bus/loop.[hc]
8370 here so it can be used in test binaries also
8372 2003-04-06 Havoc Pennington <hp@pobox.com>
8374 * dbus/dbus-sysdeps.c (_dbus_become_daemon): write the pidfile
8375 here in the parent process, so we can return an error if it
8376 fails. Also, move some of the code into the child so the parent
8377 is less hosed if we fail midway through.
8379 * bus/bus.c (bus_context_new): move pidfile detection further up
8380 in the function, before we start overwriting sockets and such.
8382 * bus/messagebus.in: adjust this a bit, not sure if it will work.
8384 * configure.in: add --with-system-pid-file and --with-system-socket
8386 2003-04-06 Colin Walters <walters@verbum.org>
8388 * configure.in (DBUS_SYSTEM_PID_FILE): New variable.
8390 * bus/system.conf.in: Declare a pidfile.
8392 * bus/bus.c (bus_context_new): Test for an existing pid file, and
8393 create one (if appropriate).
8395 * bus/config-parser.c (enum ElementType) [ELEMENT_PIDFILE]: New.
8396 (struct BusConfigParser) [pidfile]: New.
8397 (element_type_to_name, merge_included, start_busconfig_child)
8398 (bus_config_parser_end_element, bus_config_parser_content): Handle it.
8399 (bus_config_parser_unref): Free it.
8400 (bus_config_parser_get_pidfile): New function.
8402 * bus/config-parser.h (_dbus_write_pid_file): Prototype.
8404 * dbus/dbus-errors.h (DBUS_ERROR_PIDFILE_EXISTS): New error.
8406 * dbus/dbus-sysdeps.c (_dbus_write_pid_file): New function.
8408 * dbus/dbus-sysdeps.h: Prototype it.
8410 2003-04-06 Havoc Pennington <hp@pobox.com>
8412 * bus/bus.c (bus_context_new): print the address in here, rather
8413 than in main(), because we need to do it before forking the daemon
8415 * bus/dispatch.c (send_service_nonexistent_error): set the sender
8416 on the service nonexistent error
8418 * bus/driver.c (bus_driver_handle_acquire_service): set the
8419 sender on the AcquireService reply
8421 * test/data/valid-config-files/debug-allow-all.conf.in: Make test
8422 server also listen on a UNIX socket so services can connect to it.
8424 2003-04-06 Havoc Pennington <hp@pobox.com>
8426 * dbus/dbus-threads.c: Redo how the fake debug mutexes are done
8427 so it detects deadlocks and also we actually init threads when
8430 2003-04-06 Havoc Pennington <hp@pobox.com>
8432 * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
8433 save the domain socket name, and unlink it when we disconnect the
8434 server. Means that at least when we exit normally, we won't leave
8435 a bunch of junk in /tmp
8437 * dbus/dbus-transport-unix.c
8438 (_dbus_transport_new_for_domain_socket): code cleanup (nicer
8439 memory management). (I was making a real change here but then
8442 2003-04-06 Havoc Pennington <hp@pobox.com>
8444 * bus/bus.c (bus_context_new): fix wrong handling of
8445 server_data_slot_unref() in the error case.
8447 * dbus/dbus-internals.h (_dbus_assert): change so it passes
8448 "(condition) != 0" to _dbus_real_assert so that
8449 "_dbus_assert (pointer)" doesn't cause a warning
8451 * bus/main.c (main): accept --print-address option to print out
8452 the message bus address
8454 * dbus/dbus-sysdeps.c (_dbus_generate_random_ascii): export this
8456 * dbus/dbus-transport.c (_dbus_transport_open): special error for
8457 "tmpdir" option to unix: address on client side
8459 * dbus/dbus-server.c (dbus_server_listen): handle "tmpdir" option
8462 * configure.in (TEST_SOCKET_DIR): locate a temporary directory
8463 we can use to create sockets in the test suite.
8465 * bus/main.c (signal_handler): on SIGTERM, exit the daemon
8466 cleanly. To be used for testing.
8468 * dbus/dbus-spawn.c (babysit): use _dbus_set_signal_handler()
8470 * dbus/dbus-sysdeps.c (_dbus_set_signal_handler): new
8472 * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
8473 handle trying to call this when there's no servers active
8475 2003-04-05 Havoc Pennington <hp@pobox.com>
8481 2003-04-05 Havoc Pennington <hp@pobox.com>
8483 * bus/bus.c (setup_server): fix this so dbus-daemon-1 doesn't
8484 crash on startup. Need to get "try starting the daemon"
8485 in the test suite I guess. ;-)
8487 * dbus/dbus-server.h, dbus/dbus-server.c: remove the stuff that
8488 tracked the number of open connections; it's better done in
8489 application-specific code as you want it to span all servers etc.
8491 2003-04-05 Havoc Pennington <hp@pobox.com>
8493 * bus/Makefile.am (install-data-hook): add missing DESTDIR,
8494 patch from Colin Walters
8496 2003-04-05 Havoc Pennington <hp@pobox.com>
8498 * doc/config-file.txt (Elements): fix docs of <auth> to reflect
8499 reality; in fact multiple mechanisms are allowed.
8501 * dbus/dbus-internals.c (_dbus_real_assert)
8502 (_dbus_real_assert_not_reached): move guts of _dbus_assert() and
8503 _dbus_assert_not_reached() into functions, so that they don't show
8504 up in basic block counts for test coverage, and don't use up as
8505 much disk space. Does mean slower execution speed though, so
8506 assumes --disable-asserts is the normal production case.
8508 2003-04-05 Havoc Pennington <hp@pobox.com>
8510 * test/Makefile.am (dist-hook): also dist *.in files
8516 2003-04-05 Havoc Pennington <hp@pobox.com>
8518 * dbus/dbus-string.c: docs warning
8520 * dbus/dbus-spawn.c: missing docs
8522 * dbus/dbus-memory.c (struct ShutdownClosure): missing docs
8524 2003-04-05 Havoc Pennington <hp@pobox.com>
8526 * bus/loop.c (bus_loop_iterate): fix the timeout code, using
8529 * dbus/dbus-spawn.c (_dbus_babysitter_unref): set sitter_pid
8530 to -1 once we've reaped the babysitter
8531 (_dbus_babysitter_handle_watch): do as much work as we can, not
8534 * bus/activation.c: add code using DBusBabysitter so that we
8535 handle it when a service fails to start up properly.
8536 (bus_activation_service_created): don't remove the activation
8537 entries as we go, just let them get removed when we free the pending
8538 activation. Unref reply messages after sending them.
8540 2003-04-05 Havoc Pennington <hp@pobox.com>
8542 * test/decode-gcov.c (main): print per-directory stats in the report
8544 * Makefile.am (coverage-report.txt): don't include test/* in gcov stats
8546 2003-04-05 Havoc Pennington <hp@pobox.com>
8548 * Makefile.am (coverage-report.txt): add target "coverage-report.txt"
8550 * test/decode-gcov.c: hack up a little program to suck data
8551 out of gcov files. Yes this is sort of silly.
8553 * configure.in: define something in config.h and do an
8554 AM_CONDITIONAL when gcov is enabled
8556 2003-04-04 Havoc Pennington <hp@redhat.com>
8558 * dbus/dbus-spawn.c, dbus/dbus-spawn.h: Change dbus_spawn to
8559 return a "babysitter" object that is used to monitor the status of
8560 the spawned process and reap it when required.
8562 * test/test-segfault.c, test/test-exit.c,
8563 test/test-sleep-forever.c: binaries that do various lame things,
8564 used in the test suite.
8566 * dbus/dbus-sysdeps.c: kill _dbus_errno_to_string()
8568 2003-04-03 Havoc Pennington <hp@pobox.com>
8570 * dbus/dbus-spawn.c: Move dbus-spawn into a separate file
8571 in preparation for modifying it, dbus-sysdeps is getting
8574 2003-04-03 Havoc Pennington <hp@redhat.com>
8576 * bus/loop.h, bus/loop.c: make the mainloop an object so we can
8579 * bus/*.[hc]: adapt to mainloop change
8581 2003-04-03 Havoc Pennington <hp@redhat.com>
8583 * bus/activation.c (load_directory): fix up memleaks
8584 (bus_activation_entry_free): free the entry
8586 * dbus/dbus-bus.c (dbus_bus_acquire_service): return an error if
8587 we get one from the message bus; fix memleaks.
8589 * dbus/dbus-message.c (dbus_set_error_from_message): new function
8591 2003-04-03 Havoc Pennington <hp@pobox.com>
8593 * bus/config-parser.c (bus_config_parser_unref): free
8594 list of mechanisms, bug discovered by test suite enhancements
8595 (putting system.conf and session.conf into suite)
8597 * test/Makefile.am, test/test-service.c: add placeholder for a
8598 test service that we'll activate as part of test suite. Doesn't
8601 * dbus/dbus-sysdeps.c (_dbus_setenv): support unsetenv by
8602 setting NULL value, and use system malloc not dbus_malloc()
8603 when we have unavoidable memleakage.
8605 * dbus/dbus-bus.c (dbus_bus_get): fix bug where bus type of 0
8606 didn't work, and support DBUS_BUS_ACTIVATION.
8608 * bus/activation.c (child_setup): pass our well-known bus type to
8611 * bus/config-parser.c: support <type> to specify well-known type
8613 * doc/dbus-specification.sgml: document the env variables to
8614 locate well-known buses and find service activator
8616 2003-04-02 Havoc Pennington <hp@redhat.com>
8618 * test/Makefile.am (all-local): add a rule to copy tests to
8619 builddir, so we can have generated tests. Use this to remove the
8620 silly hack for testing system.conf and session.conf. Will use this
8621 shortly to generate .service files pointing to test binaries.
8623 2003-04-02 Havoc Pennington <hp@redhat.com>
8625 * dbus/dbus-string.c (set_length): fix a bug - we allocated max of
8626 current alloc and needed new length, not max of the doubled
8627 allocation and needed new length. Also, when building tests,
8628 don't do the double-allocation stuff, just realloc every time.
8630 2003-04-02 Havoc Pennington <hp@redhat.com>
8632 * dbus/dbus-sysdeps.c (_dbus_file_get_contents): include filenames
8634 (_dbus_string_get_dirname): new
8635 (_dbus_sysdeps_test): new
8636 (_dbus_directory_open): include dirnames in error messages
8638 * bus/config-parser.c: interpret <include> and <includedir> and
8639 <servicedir> relative to config file location if the given
8640 filename is not absolute.
8642 * dbus/dbus-string.c (_dbus_string_find_byte_backward): new
8644 2003-04-02 Havoc Pennington <hp@redhat.com>
8646 * bus/connection.c (bus_transaction_send_error_reply): set sender
8647 service for the error, and unref the reply on success
8649 * bus/activation.c: convert to use BusTransaction so OOM can be
8651 (bus_activation_service_created): set sender of the message
8653 2003-04-01 Havoc Pennington <hp@redhat.com>
8655 * bus/config-parser.c, bus/bus.c: implement <servicedir> and
8656 <includedir> (at least mostly)
8658 * dbus/dbus-sysdeps.c (_dbus_change_identity): set the group ID
8659 first, then the user ID
8661 2003-04-01 Havoc Pennington <hp@pobox.com>
8663 * dbus/dbus-server.c (dbus_server_set_auth_mechanisms): new
8666 * dbus/dbus-auth.c (_dbus_auth_set_mechanisms): new
8668 * dbus/dbus-internals.c (_dbus_dup_string_array): new function
8670 * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): chmod the
8671 socket 0777, and unlink any existing socket.
8673 * bus/bus.c (bus_context_new): change our UID/GID and fork if
8674 the configuration file so specifies; set up auth mechanism
8677 * bus/config-parser.c (bus_config_parser_content): add support
8678 for <fork> option and fill in code for <auth>
8680 * bus/system.conf.in: add <fork/> to default configuration,
8681 and limit auth mechanisms to EXTERNAL
8683 * doc/config-file.txt (Elements): add <fork>
8685 * dbus/dbus-sysdeps.c (_dbus_become_daemon): new function
8686 (_dbus_change_identity): new function
8688 2003-03-31 Havoc Pennington <hp@redhat.com>
8690 * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket)
8691 (_dbus_listen_unix_socket): fix off-by-one error in null
8692 termination spotted by Nalin
8694 2003-03-31 Havoc Pennington <hp@redhat.com>
8696 * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): allow setting
8697 DBUS_TEST_HOMEDIR when tests are enabled, so we can test without
8698 having a real home directory available.
8700 2003-03-31 Havoc Pennington <hp@redhat.com>
8702 * bus/Makefile.am (install-data-hook): create /var/run/dbus
8704 * bus/messagebus.in: add init script for Red Hat /etc/init.d
8706 * configure.in: add support for specifying a style of init script
8709 2003-03-31 Havoc Pennington <hp@redhat.com>
8711 Fix some annoying DBusString API and fix all affected code.
8713 * dbus/dbus-string.c (_dbus_string_init): get rid of annoying
8715 (_dbus_string_get_data): change to return string instead of using
8717 (_dbus_string_get_const_data): ditto
8718 (_dbus_string_get_data_len): ditto
8719 (_dbus_string_get_const_data_len): ditto
8721 2003-03-31 Havoc Pennington <hp@redhat.com>
8723 * bus/main.c (main): fix up the command line arguments to be nicer
8725 2003-03-31 Havoc Pennington <hp@redhat.com>
8727 * dbus/Makefile.am (INCLUDES): use EXPANDED_LOCALSTATEDIR to
8728 define DBUS_SYSTEM_BUS_PATH as we want to compile in the same
8729 final location that lands in the config file
8731 * bus/config-loader-expat.c (bus_config_load): fix type of
8734 * doc/TODO: remove TODO item for dbus_bus_get()
8736 * dbus/dbus-bus.c (bus_data_free): add missing lock/unlock
8738 2003-03-31 Havoc Pennington <hp@pobox.com>
8740 * dbus/dbus-transport-unix.c (_dbus_transport_new_for_domain_socket)
8741 (_dbus_transport_new_for_tcp_socket): these didn't need the "server"
8742 argument since they are always client side
8744 * dbus/dbus-server.c (dbus_server_get_address): new function
8746 * bus/main.c (main): take the configuration file as an argument.
8748 * test/data/valid-config-files/debug-allow-all.conf: new file to
8749 use with dispatch.c tests for example
8751 * bus/test-main.c (main): require test data dir
8753 * bus/bus.c (bus_context_new): change this to take a
8754 configuration file name as argument
8756 * doc/config-file.txt (Elements): add <servicedir>
8758 * bus/system.conf, bus/session.conf: new files
8760 * dbus/dbus-bus.c (dbus_bus_get): look for system bus on
8761 well-known socket if none set
8763 * configure.in: create system.conf and session.conf
8765 2003-03-30 Havoc Pennington <hp@pobox.com>
8767 * bus/config-parser.c: hacking
8769 * dbus/dbus-memory.c: don't use DBusList for the list of stuff
8770 to shut down, since it could cause weirdness with the DBusList
8773 * dbus/dbus-list.c (_dbus_list_test): add tests for the
8774 link-oriented stack routines
8775 (alloc_link): free the mempool if the first alloc from it fails
8777 * dbus/dbus-mempool.c (struct DBusMemBlock): fix alignment issue
8779 * dbus/dbus-string.c (UNICODE_VALID): sync new version of this
8781 (_dbus_string_skip_white): new
8783 * doc/config-file.txt (Elements): add <includedir>
8785 2003-03-28 Havoc Pennington <hp@pobox.com>
8787 * dbus/dbus-string.c (_dbus_string_copy_data_len)
8788 (_dbus_string_copy_data): new functions
8790 2003-03-28 Anders Carlsson <andersca@codefactory.se>
8792 * dbus/dbus-bus.c: (bus_data_free), (dbus_bus_get):
8796 * dbus/dbus-memory.c:
8799 2003-03-28 Havoc Pennington <hp@pobox.com>
8801 * bus/test.c (bus_test_flush_bus): remove the sleep from here,
8802 I think it may have just been superstition. Not sure.
8804 * dbus/dbus-string.c (_dbus_string_base64_decode): catch some OOM
8805 failures that were not being handled.
8807 * dbus/dbus-auth.c (process_auth): fix a memleak in OOM handling
8809 * dbus/dbus-memory.c: add ability to set number of mallocs in a
8810 row that will fail on out-of-memory.
8812 * dbus/dbus-internals.c (_dbus_test_oom_handling): convenience
8813 function for testing out-of-memory handling.
8815 * bus/config-loader-expat.c (memsuite): don't wrap the dbus
8816 allocation functions, they do map exactly to the expat ones.
8818 2003-03-27 Havoc Pennington <hp@redhat.com>
8820 * bus/config-loader-libxml.c (bus_config_load): add another error
8823 2003-03-26 Anders Carlsson <andersca@codefactory.se>
8826 Add note about automatic service activation.
8828 * doc/dbus-specification.sgml:
8829 Rename the specification and clarify a few things.
8831 2003-03-26 Anders Carlsson <andersca@codefactory.se>
8834 * dbus/dbus-address.c:
8836 * dbus/dbus-marshal.c:
8837 * dbus/dbus-server-debug-pipe.c:
8838 * dbus/dbus-transport-unix.c:
8839 Fix documentation warnings.
8841 2003-03-26 Havoc Pennington <hp@pobox.com>
8843 * bus/test-main.c, dbus/dbus-test.c (main): check memleaks
8844 after every test so it's quick and easy to see which leaked, and
8845 so we test multiple dbus_shutdown() calls
8847 * configure.in: change configure.in XML stuff to also support
8850 * config-loader-libxml.c: some hacking
8852 * config-loader-expat.c: some hacking
8854 * config-parser.c: some hacking, plus tests
8856 2003-03-25 Havoc Pennington <hp@redhat.com>
8858 * throughout - add more _DBUS_ASSERT_ERROR_IS_CLEAR
8860 * configure.in: add --with-xml option to specify XML library,
8861 right now only libxml is supported.
8863 * bus/config-loader-libxml.c, config-parser.c: sync some minor
8864 nonworking code between home and work, still just stubs
8866 2003-03-24 Havoc Pennington <hp@redhat.com>
8868 * dbus/dbus-sysdeps.c (_dbus_set_fd_nonblocking): move to this
8871 * dbus/dbus-errors.c (dbus_set_error, dbus_set_error_const): allow
8872 NULL argument for "message" if the error is a well-known one,
8873 fill in a generic message in this case.
8875 * dbus/dbus-errors.h (DBusResultCode): Kill DBusResultCode in
8878 * bus/test.c (bus_test_flush_bus): add
8880 * bus/policy.c (bus_policy_test): test code stub
8882 2003-03-24 Havoc Pennington <hp@pobox.com>
8884 * bus/connection.c (bus_connections_setup_connection): set up
8885 the "can this user connect" function, but it always returns
8886 TRUE until we have a config file parser so we can have a config
8887 file that allows connections.
8889 2003-03-23 Havoc Pennington <hp@pobox.com>
8891 * dbus/dbus-threads.c (dbus_mutex_new, dbus_condvar_new): with
8892 DBUS_BUILD_TESTS, actually alloc/free a block of memory for
8893 the mutex, so we can check for proper memory management
8896 * dbus/dbus-dataslot.c: remove the mutex from
8897 DBusDataSlotAllocator and lock it manually when using it,
8898 to simplify fitting it into the global slots framework.
8900 * dbus/dbus-threads.c (init_static_locks): rework how we're
8901 handling global locks so they are easily shut down.
8903 * bus/policy.c (bus_policy_append_rule): fix
8905 * bus/test-main.c (main): check for memleaks
8907 * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): make
8908 test suite check for memleaks
8910 * dbus/dbus-memory.c: add support in test mode for tracking
8911 number of outstanding blocks
8913 2003-03-23 Havoc Pennington <hp@pobox.com>
8915 * bus/policy.c, bus/bus.c, bus/connection.c: implement allow/deny
8918 * dbus/dbus-hash.h: add ULONG hash keys
8920 * dbus/dbus-sysdeps.c (_dbus_get_groups): new
8921 (_dbus_get_group_id): new function
8923 2003-03-20 Havoc Pennington <hp@redhat.com>
8925 * dbus/dbus-connection.c (dbus_connection_set_unix_user_function):
8927 (dbus_connection_get_unix_user): new function
8929 2003-03-20 Havoc Pennington <hp@pobox.com>
8931 * bus/connection.c (bus_connection_send_oom_error): assert that
8932 message has a sender
8933 (connection_execute_transaction): ditto
8934 (bus_connection_preallocate_oom_error): fix to set the sender, and
8935 set recipient to the destination service, not the bus driver
8937 * bus/policy.c: hacking
8939 * dbus/dbus-message.c (dbus_message_service_is): new function
8940 (dbus_message_sender_is): new
8942 2003-03-19 Havoc Pennington <hp@redhat.com>
8944 * bus/policy.c: start sketching code for policy restrictions on
8945 what connections can do.
8947 2003-03-18 Havoc Pennington <hp@redhat.com>
8949 * doc/TODO: some notes on high-level todo items. Little nitpick
8950 stuff is all in @todo, so no need to add it here.
8952 * doc/config-file.txt: some notes on how config file might look
8954 2003-03-18 Anders Carlsson <andersca@codefactory.se>
8960 2003-03-17 Havoc Pennington <hp@redhat.com>
8962 * dbus/dbus-internals.h: add gcc attributes so that
8963 our printf-style functions warn on bad arguments to
8966 * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): fix printf
8969 * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
8972 2003-03-17 Havoc Pennington <hp@redhat.com>
8974 * bus/test-main.c (main): make it print something as it runs
8975 so make check doesn't look stuck
8977 * doc/negotiation.txt, doc/dbus-sasl-profile.txt: remove
8978 from CVS, now obsolete
8980 2003-03-17 Anders Carlsson <andersca@codefactory.se>
8982 * bus/dispatch.c: (bus_dispatch):
8983 Refetch the service name since it may have been reallocated
8984 when dbus_message_set_sender was called.
8986 * dbus/dbus-sysdeps.c: (_dbus_accept):
8987 Add address and address length variables and use them to stop
8988 valgrind from complaining.
8990 2003-03-17 Havoc Pennington <hp@pobox.com>
8992 All tests pass, no memleaks, no valgrind complaints.
8994 * bus/test.c: refcount handler_slot
8996 * bus/connection.c (bus_connections_new): refcount
8997 connection_data_slot
8999 * dbus/dbus-auth-script.c (_dbus_auth_script_run): delete unused
9000 bytes so that auth scripts pass.
9002 * bus/dispatch.c: init message_handler_slot so it gets allocated
9005 * bus/dispatch.c (message_handler_slot_ref): fix memleak
9007 * dbus/dbus-server-debug-pipe.c (_dbus_server_debug_pipe_new):
9008 dealloc server_pipe_hash when no longer used for benefit of
9011 * dbus/dbus-auth.c (process_command): memleak fix
9013 * bus/dispatch.c (check_hello_message): memleak fix
9015 2003-03-16 Havoc Pennington <hp@pobox.com>
9017 * dbus/dbus-bus.c (ensure_bus_data): fix double-unref of the data slot
9019 2003-03-17 Anders Carlsson <andersca@codefactory.se>
9021 * bus/activation.c (bus_activation_activate_service): Append
9022 the pending activation entry to the list of pending activations.
9024 2003-03-16 Havoc Pennington <hp@pobox.com>
9026 * bus/dispatch.c (bus_dispatch_test): remove double-unrefs of
9029 * dbus/dbus-address.c (create_entry): fix OOM handling when
9030 failing to alloc entry->method
9032 2003-03-16 Havoc Pennington <hp@pobox.com>
9034 * dbus/dbus-watch.c (_dbus_watch_new): handle failure to malloc
9037 * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
9038 add some missing dbus_set_result
9040 * bus/dispatch.c (bus_dispatch_add_connection): handle failure to
9041 alloc the DBusMessageHandler
9043 * dbus/dbus-transport.c (_dbus_transport_disconnect): don't ref
9044 the transport here, since we call this from the finalizer; it
9045 resulted in a double-finalize.
9047 * dbus/dbus-transport.c (_dbus_transport_disconnect): fix a bug
9048 where we tried to use transport->connection that was NULL,
9049 happened when transport was disconnected early on due to OOM
9051 * bus/*.c: adapt to handle OOM for watches/timeouts
9053 * dbus/dbus-transport-unix.c: port to handle OOM during
9056 * dbus/dbus-auth.c (_dbus_auth_get_unused_bytes): return a
9057 reference to unused bytes instead of a copy
9059 * dbus/dbus-server.c (dbus_server_handle_watch): return FALSE for
9062 * dbus/dbus-connection.c (dbus_connection_handle_watch): return
9065 * dbus/dbus-timeout.c (dbus_timeout_handle): return FALSE for out
9068 2003-03-16 Anders Carlsson <andersca@codefactory.se>
9070 * doc/dbus-specification.sgml:
9071 Document reply message for ActivateService.
9073 2003-03-16 Anders Carlsson <andersca@codefactory.se>
9075 * bus/activation.c: (bus_pending_activation_entry_free),
9076 (bus_pending_activation_free), (bus_activation_new),
9077 (bus_activation_unref), (bus_activation_service_created),
9078 (bus_activation_activate_service):
9080 * bus/bus.c: (bus_context_new):
9081 * bus/desktop-file.c: (new_section):
9082 * bus/driver.c: (bus_driver_send_service_deleted),
9083 (bus_driver_handle_activate_service):
9084 * bus/services.c: (bus_registry_new), (bus_registry_ensure):
9086 * dbus/dbus-connection.c:
9087 (dbus_connection_send_with_reply_and_block):
9088 * dbus/dbus-message.c: (dbus_message_append_args_valist):
9089 * dbus/dbus-protocol.h:
9090 Make activation work better. Now pending activations will be queued
9091 and the daemon won't try to activate services that are already registered.
9093 2003-03-16 Havoc Pennington <hp@pobox.com>
9095 * dbus/dbus-bus.c (ensure_bus_data): handle failure to set
9098 * dbus/dbus-memory.c (_dbus_initialize_malloc_debug): support
9099 DBUS_MALLOC_BACKTRACES to print trace when failing an alloc
9101 2003-03-16 Havoc Pennington <hp@pobox.com>
9103 * dbus/dbus-string.c (_dbus_string_validate_utf8): oops, unbreak
9104 this. always run the test suite before commit...
9106 * bus/*: adapt to DBusConnection API changes
9108 * glib/dbus-gmain.c: adapt to DBusConnection API changes,
9109 requires renaming stuff to avoid dbus_connection_dispatch name
9112 * dbus/dbus-transport.c (_dbus_transport_queue_messages): new
9115 * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
9116 separate from _dbus_message_loader_return_buffer()
9118 * dbus/dbus-connection.c (dbus_connection_get_n_messages): remove
9119 this, because it's now always broken to use; the number of
9120 messages in queue vs. the number still buffered by the message
9121 loader is undefined/meaningless. Should use
9122 dbus_connection_get_dispatch_state().
9123 (dbus_connection_dispatch): rename from
9124 dbus_connection_dispatch_message
9126 2003-03-16 Havoc Pennington <hp@pobox.com>
9128 * dbus/dbus-string.c (_dbus_string_validate_utf8): copy in a real
9131 2003-03-16 Anders Carlsson <andersca@codefactory.se>
9133 * dbus/dbus-connection.c:
9134 (dbus_connection_send_with_reply_and_block):
9135 Decrease connection->n_incoming when removing an entry
9137 * dbus/dbus-dict.c: (dbus_dict_entry_free),
9138 (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
9139 (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
9140 (dbus_dict_set_byte_array), (dbus_dict_set_string_array),
9141 (dbus_dict_get_boolean_array), (dbus_dict_get_double_array),
9142 (dbus_dict_get_byte_array):
9143 Handle NULL arrays and strings. Also add support for byte arrays.
9145 * dbus/dbus-marshal.c: (_dbus_marshal_byte_array),
9146 (_dbus_marshal_dict), (_dbus_demarshal_byte_array),
9147 (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
9148 (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
9149 (_dbus_demarshal_dict), (demarshal_and_validate_len),
9150 (_dbus_marshal_validate_arg), (_dbus_marshal_test):
9151 * dbus/dbus-marshal.h:
9152 Add support for marshalling and demarshalling empty arrays and strings.
9154 * dbus/dbus-message.c: (dbus_message_append_args_valist),
9155 (dbus_message_append_string_array),
9156 (dbus_message_iter_get_boolean),
9157 (dbus_message_iter_get_boolean_array),
9158 (dbus_message_iter_get_int32_array),
9159 (dbus_message_iter_get_uint32_array),
9160 (dbus_message_iter_get_double_array),
9161 (dbus_message_iter_get_byte_array),
9162 (dbus_message_iter_get_string_array), (dbus_message_iter_get_dict),
9163 (check_message_handling):
9164 Add support for getting empty arrays and dicts.
9166 * dbus/dbus-string.c: (_dbus_string_validate_utf8):
9167 Don't do any validation at all for now, that's better than just checking
9170 * test/data/valid-messages/emptiness.message:
9171 New test message with lots of empty arrays.
9173 2003-03-16 Havoc Pennington <hp@pobox.com>
9175 * dbus/dbus-connection.c
9176 (_dbus_connection_queue_received_message_link): new function that
9177 can't fail due to OOM
9179 * dbus/dbus-message.c (_dbus_message_loader_pop_message_link):
9180 new function pops a message together with a list link
9183 * dbus/dbus-transport-unix.c (queue_messages): use new link-based
9184 message queuing functions to avoid needing to alloc memory
9186 2003-03-16 Havoc Pennington <hp@pobox.com>
9188 Oops - test code was only testing failure of around 30 of the
9189 mallocs in the test path, but it turns out there are 500+
9190 mallocs. I believe this was due to misguided linking setup such
9191 that there was one copy of dbus_malloc etc. in the daemon and one
9192 in the shared lib, and only daemon mallocs were tested. In any
9193 case, the test case now tests all 500+ mallocs, and doesn't pass
9194 yet, though there are lots of fixes in this patch.
9196 * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
9197 this so that it doesn't need to allocate memory, since it
9198 has no way of indicating failure due to OOM (and would be
9199 annoying if it did).
9201 * dbus/dbus-list.c (_dbus_list_pop_first_link): new function
9203 * bus/Makefile.am: rearrange to create two self-contained
9204 libraries, to avoid having libraries with overlapping symbols.
9205 that was resulting in weirdness, e.g. I'm pretty sure there
9206 were two copies of global static variables.
9208 * dbus/dbus-internals.c: move the malloc debug stuff to
9211 * dbus/dbus-list.c (free_link): free list mempool if it becomes
9214 * dbus/dbus-memory.c (_dbus_disable_mem_pools): new function
9216 * dbus/dbus-address.c (dbus_parse_address): free list nodes
9219 * bus/dispatch.c (bus_dispatch_add_connection): free
9220 message_handler_slot when no longer using it, so
9221 memory leak checkers are happy for the test suite.
9223 * dbus/dbus-server-debug-pipe.c (debug_finalize): free server name
9225 * bus/bus.c (new_connection_callback): disconnect in here if
9226 bus_connections_setup_connection fails.
9228 * bus/connection.c (bus_connections_unref): fix to free the
9230 (bus_connections_setup_connection): if this fails, don't
9231 disconnect the connection, just be sure there are no side
9234 * dbus/dbus-string.c (undo_alignment): unbreak this
9236 * dbus/dbus-auth.c (_dbus_auth_unref): free some stuff we were
9238 (_dbus_auth_new): fix the order in which we free strings
9241 * bus/connection.c (bus_connection_disconnected): fix to
9242 not send ServiceDeleted multiple times in case of memory
9245 * dbus/dbus-bus.c (dbus_bus_get_base_service): new function to
9246 get the base service name
9247 (dbus_bus_register_client): don't return base service name,
9248 instead store it on the DBusConnection and have an accessor
9250 (dbus_bus_register_client): rename dbus_bus_register()
9252 * bus/dispatch.c (check_hello_message): verify that other
9253 connections on the bus also got the correct results, not
9254 just the one sending hello
9256 2003-03-15 Havoc Pennington <hp@pobox.com>
9258 Make it pass the Hello handling test including all OOM codepaths.
9259 Now to do other messages...
9261 * bus/services.c (bus_service_remove_owner): fix crash when
9262 removing owner from an empty list of owners
9263 (bus_registry_ensure): don't leave service in the list of
9264 a connection's owned services if we fail to put the service
9267 * bus/connection.c (bus_connection_preallocate_oom_error): set
9268 error flag on the OOM error.
9270 * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
9271 handle _dbus_transport_set_connection failure
9273 * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd): modify
9274 to create watches up front and simply enable/disable them as
9276 (unix_connection_set): this can now fail on OOM
9278 * dbus/dbus-timeout.c, dbus/dbus-watch.c: add concept
9279 of enabling/disabling a watch or timeout.
9281 * bus/loop.c (bus_loop_iterate): don't touch disabled
9284 * glib/dbus-gmain.c: adapt to enable/disable watches and timeouts
9286 2003-03-15 Havoc Pennington <hp@pobox.com>
9288 * bus/dispatch.c (bus_dispatch_test): OK, now finally actually
9289 write useful test code, after all that futzing around ;-)
9291 Test does not yet pass because we can't handle OOM in
9292 _dbus_transport_messages_pending (basically,
9293 dbus_connection_preallocate_send() does not prealloc the write
9294 watch). To fix this, I think we need to add new stuff to
9295 set_watch_functions, namely a SetEnabled function so we can alloc
9296 the watch earlier, then enable it later.
9298 * dbus/Makefile.am (libdbus_convenience_la_SOURCES): move
9299 dbus-memory.c to the convenience lib
9301 * bus/test.c: rename some static functions to keep them clearly
9302 distinct from stuff in connection.c. Handle client disconnection.
9304 2003-03-14 Havoc Pennington <hp@pobox.com>
9306 * bus/dispatch.c (bus_dispatch_test): do test using debug-pipe
9307 transport, tests more of the real codepath. Set up clients
9308 with bus_setup_debug_client.
9310 * bus/test.c (bus_setup_debug_client): function to set up debug
9311 "clients" on the main loop
9313 * dbus/dbus-transport.c (_dbus_transport_open): add debug-pipe
9316 * dbus/dbus-server.c (dbus_server_listen): add debug-pipe
9319 * dbus/dbus-server-debug.c: support a debug server based on pipes
9321 * dbus/dbus-sysdeps.c (_dbus_full_duplex_pipe): new function
9322 (_dbus_close): new function
9324 * configure.in: check for socketpair
9326 2003-03-14 Havoc Pennington <hp@redhat.com>
9328 * dbus/dbus-memory.c: add a "detect buffer overwrites on free"
9331 * dbus/dbus-transport-debug.c: rework this a good bit to be
9332 less complicated. hopefully still works.
9334 * dbus/dbus-server-debug.c (handle_new_client): remove timeout
9337 * glib/dbus-gmain.c (timeout_handler): don't remove timeout
9340 * dbus/dbus-message.c (dbus_message_copy): rename from
9341 dbus_message_new_from_message, fix it up to copy
9342 all the message fields, add test case
9344 * bus/dispatch.c (bus_dispatch_test): add some more test code,
9345 not quite passing yet
9347 2003-03-14 Havoc Pennington <hp@pobox.com>
9349 * bus/loop.c (bus_loop_iterate): add this so we can "run loop
9350 until no work remains" in test code. (the large diff here
9351 is just code movement, no actual changes)
9353 * dbus/dbus-server-debug.c (DEFAULT_INTERVAL): change interval to
9354 1, no point waiting around for test code.
9355 (_dbus_server_debug_accept_transport): unref the timeout
9356 after adding it (right?)
9358 * dbus/dbus-transport-debug.c (DEFAULT_INTERVAL): ditto
9360 2003-03-13 Havoc Pennington <hp@redhat.com>
9362 * dbus/dbus-timeout.c (_dbus_timeout_list_set_functions): handle
9365 * dbus/dbus-watch.c (_dbus_watch_list_set_functions): handle out
9368 * dbus/dbus-connection.h: Make AddWatchFunction and
9369 AddTimeoutFunction return a bool so they can fail on out-of-memory
9371 * bus/bus.c (bus_context_new): set up timeout handlers
9373 * bus/connection.c (bus_connections_setup_connection): set up
9376 * glib/dbus-gmain.c: adapt to the fact that set_functions stuff
9379 * bus/bus.c (bus_context_new): adapt to changes
9381 * bus/connection.c: adapt to changes
9383 * test/watch.c: adapt to DBusWatch changes
9385 * bus/dispatch.c (bus_dispatch_test): started adding this but
9388 2003-03-14 Anders Carlsson <andersca@codefactory.se>
9390 * bus/dispatch.c (send_service_nonexistent_error): Fix typo.
9392 2003-03-13 Havoc Pennington <hp@pobox.com>
9394 * bus/test.c, bus/test.h, bus/Makefile.am, bus/test-main.c:
9395 set up a test framework as for the library
9397 2003-03-12 Havoc Pennington <hp@pobox.com>
9399 Throughout: purge global variables, introduce BusActivation,
9400 BusConnections, BusRegistry, etc. objects instead.
9402 * bus/bus.h, bus/bus.c: introduce BusContext as a global
9405 * test/Makefile.am (TEST_BINARIES): disable bus-test for now,
9406 going to redo this a bit differently I think
9408 2003-03-12 Havoc Pennington <hp@redhat.com>
9410 Mega-patch that gets the message bus daemon initially handling
9411 out-of-memory. Work still needed. Also lots of random
9412 moving stuff to DBusError instead of ResultCode.
9414 * dbus/dbus-list.c (_dbus_list_length_is_one): new function
9416 * dbus/dbus-connection.c
9417 (dbus_connection_send_with_reply_and_block): use DBusError
9419 * dbus/dbus-bus.c: adapt to API changes, make it use DBusError not
9422 * dbus/dbus-connection.c (dbus_connection_send): drop the result
9423 code here, as the only failure possible is OOM.
9425 * bus/connection.c (bus_connection_disconnect):
9426 rename bus_connection_disconnected as it's a notification only
9428 * bus/driver.c (bus_driver_handle_acquire_service): don't free
9429 "name" on get_args failure, should be done by get_args;
9430 don't disconnect client for bad args, just return an error.
9431 (bus_driver_handle_service_exists): ditto
9433 * bus/services.c (bus_services_list): NULL-terminate returned array
9435 * bus/driver.c (bus_driver_send_service_lost)
9436 (bus_driver_send_service_acquired): send messages from driver to a
9437 specific client to the client's unique name, not to the broadcast
9440 * dbus/dbus-message.c (decode_header_data): reject messages that
9441 contain no name field
9442 (_dbus_message_get_client_serial): rename to
9443 dbus_message_get_serial and make public
9444 (_dbus_message_set_serial): rename from set_client_serial
9445 (_dbus_message_set_reply_serial): make public
9446 (_dbus_message_get_reply_serial): make public
9448 * bus/connection.c (bus_connection_foreach): allow stopping
9449 iteration by returning FALSE from foreach function.
9451 * dbus/dbus-connection.c (dbus_connection_send_preallocated)
9452 (dbus_connection_free_preallocated_send)
9453 (dbus_connection_preallocate_send): new API for sending a message
9454 without possibility of malloc failure.
9455 (dbus_connection_send_message): rename to just
9456 dbus_connection_send (and same for whole function family)
9458 * dbus/dbus-errors.c (dbus_error_free): make this reinit the error
9460 * dbus/dbus-sysdeps.c (_dbus_exit): new function
9462 * bus/activation.c: handle/return errors
9464 * dbus/dbus-errors.h: add more DBUS_ERROR #define
9466 * dbus/dbus-sysdeps.c (_dbus_directory_open) (_dbus_file_get_contents)
9467 (_dbus_directory_get_next_file): use DBusError instead of DBusResultCode
9468 (_dbus_result_from_errno): move to this file
9470 2003-03-10 Anders Carlsson <andersca@codefactory.se>
9472 * dbus/dbus-marshal.c:
9473 (_dbus_marshal_set_string):
9474 Take a length argument so we can marshal the correct string
9477 (_dbus_marshal_dict), (_dbus_demarshal_dict),
9478 (_dbus_marshal_get_arg_end_pos), (_dbus_marshal_validate_arg),
9479 (_dbus_marshal_test):
9480 * dbus/dbus-marshal.h:
9481 Add support for marshalling and demarshalling dicts.
9483 * dbus/dbus-message-builder.c: (_dbus_message_data_load):
9484 Add support for TYPE DICT.
9486 * dbus/dbus-message.c: (set_string_field):
9487 Adjust header padding.
9489 (dbus_message_append_args_valist), (dbus_message_append_dict),
9490 (dbus_message_get_args_valist), (dbus_message_iter_get_arg_type),
9491 (dbus_message_iter_get_dict), (_dbus_message_loader_return_buffer),
9492 (check_message_handling), (check_have_valid_message):
9493 * dbus/dbus-message.h:
9494 Add functions for setting and getting dicts.
9496 * dbus/dbus-protocol.h:
9502 * doc/dbus-specification.sgml:
9503 Add information about how dicts are marshalled.
9505 * test/data/invalid-messages/dict-with-nil-value.message:
9506 * test/data/invalid-messages/too-short-dict.message:
9507 * test/data/valid-messages/dict-simple.message:
9508 * test/data/valid-messages/dict.message:
9509 Add sample messages containing dicts.
9511 2003-03-08 Anders Carlsson <andersca@codefactory.se>
9513 * dbus/dbus-dict.h: Add DBUS_END_DECLS.
9515 2003-03-07 Anders Carlsson <andersca@codefactory.se>
9518 * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
9519 (dbus_dict_get_keys), (insert_entry), (dbus_dict_set_boolean),
9520 (dbus_dict_set_int32), (dbus_dict_set_uint32),
9521 (dbus_dict_set_double), (dbus_dict_set_string),
9522 (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
9523 (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
9524 (dbus_dict_set_string_array), (_dbus_dict_test):
9526 Fix according to comments from Havoc.
9528 2003-03-06 Michael Meeks <michael@server.home>
9530 * configure.in: if we don't have kde-config, disable have_qt.
9532 2003-03-07 Anders Carlsson <andersca@codefactory.se>
9537 * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
9538 (dbus_dict_ref), (dbus_dict_unref), (dbus_dict_contains),
9539 (dbus_dict_remove), (dbus_dict_get_value_type),
9540 (dbus_dict_get_keys), (dbus_dict_put_boolean),
9541 (dbus_dict_put_int32), (dbus_dict_put_uint32),
9542 (dbus_dict_put_double), (dbus_dict_put_string),
9543 (dbus_dict_put_boolean_array), (dbus_dict_put_int32_array),
9544 (dbus_dict_put_uint32_array), (dbus_dict_put_double_array),
9545 (dbus_dict_put_string_array), (dbus_dict_get_boolean),
9546 (dbus_dict_get_int32), (dbus_dict_get_uint32),
9547 (dbus_dict_get_double), (dbus_dict_get_string),
9548 (dbus_dict_get_boolean_array), (dbus_dict_get_int32_array),
9549 (dbus_dict_get_uint32_array), (dbus_dict_get_double_array),
9550 (dbus_dict_get_string_array), (_dbus_dict_test):
9552 Add DBusDict implementation
9554 * dbus/dbus-test.c: (dbus_internal_do_not_use_run_tests):
9558 2003-03-04 Havoc Pennington <hp@pobox.com>
9560 * test/data/auth/*: adapt to changes
9562 * dbus/dbus-auth-script.c (_dbus_auth_script_run): add
9563 USERID_BASE64 and change USERNAME_BASE64 to put in username not
9566 * dbus/dbus-keyring.c (_dbus_keyring_validate_context): prevent
9567 more stuff from being in a context name, to make the protocol
9568 simpler to deal with
9570 * dbus/dbus-errors.c (dbus_error_has_name): new function
9571 (dbus_error_is_set): new function
9573 * dbus/dbus-auth.c: replace DBUS_STUPID_TEST_MECH auth
9574 with DBUS_COOKIE_SHA1, implement DBUS_COOKIE_SHA1
9576 * dbus/dbus-connection.c (dbus_connection_flush): also read
9577 messages during a flush operation
9579 * dbus/Makefile.am: remove dbus-md5 since it isn't currently used.
9581 2003-03-05 Anders Carlsson <andersca@codefactory.se>
9583 * configure.in: Check for gethostbyname on Solaris.
9585 * dbus/dbus-transport.c: (_dbus_transport_open):
9586 Remove duplicate "tcp" entry.
9588 * doc/dbus-specification.sgml:
9589 Clarify some things.
9591 2003-03-05 Anders Carlsson <andersca@codefactory.se>
9593 * dbus/dbus-auth.c: (send_rejected), (process_test_subdir):
9594 * dbus/dbus-keyring.c: (_dbus_keyring_new_homedir),
9595 (_dbus_keyring_test):
9596 * dbus/dbus-md5.c: (_dbus_md5_compute):
9597 * dbus/dbus-sha.c: (_dbus_sha_compute):
9600 2003-03-05 Anders Carlsson <andersca@codefactory.se>
9602 * README: Add some things.
9604 2003-03-04 Anders Carlsson <andersca@codefactory.se>
9606 * dbus/dbus-message.c (dbus_message_append_args_valist): Add a break;
9607 after case DBUS_TYPE_BOOELAN.
9609 2003-03-02 Havoc Pennington <hp@pobox.com>
9611 * test/break-loader.c (randomly_set_extreme_ints): add test that
9612 sets really huge and small integers
9614 * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add check
9615 that length of boolean array fits in the string, and that
9616 string has room for boolean value in single-bool case.
9618 * dbus/dbus-message-builder.c (_dbus_message_data_load): add
9619 optional value to "ALIGN" command which is what to fill the
9622 * test/data/valid-messages/no-padding.message: add regression
9623 test for the message padding problem
9625 2003-03-02 Havoc Pennington <hp@pobox.com>
9627 * dbus/dbus-message.c (decode_header_data): fix to always init
9628 message_padding, from Benjamin Dauvergne
9630 2003-03-02 Havoc Pennington <hp@pobox.com>
9636 2003-03-01 Joe Shaw <joe@assbarn.com>
9638 * configure.in: Check for "struct cmsgcred" and try to access its
9639 members for BSD-like unices.
9641 * dbus/dbus-sysdeps.c (read_credentials_byte): Fold this back into
9642 _dbus_read_credentials_unix_socket().
9643 (_dbus_read_credentials_unix_socket): Use recvmsg() instead of
9644 read() for reading the credential byte off the unix socket. Use
9645 struct cmsgcred on systems that support it.
9647 2003-02-27 Alexander Larsson <alexl@redhat.com>
9651 Make gthreads-2.0 dependency optional. Don't build thread test if
9654 2003-02-27 Havoc Pennington <hp@pobox.com>
9656 * dbus/dbus-connection.c
9657 (dbus_connection_send_message_with_reply_and_block): fix doh!
9658 doh! doh! bug that resulted in never removing a reply from the
9659 queue, no wonder we called get_reply_serial so much ;-)
9661 * dbus/dbus-message.c (struct DBusMessage): cache reply serial
9662 and client serial instead of demarshaling them every time
9664 2003-02-27 Havoc Pennington <hp@pobox.com>
9666 * dbus/dbus-marshal.c (_dbus_demarshal_int32): rewrite to be much
9667 more inlined, using dbus-string-private.h, speeds things up
9670 * dbus/dbus-string.c (_dbus_string_free): apply align offset
9671 when freeing the string
9672 (_dbus_string_steal_data): fix for align offset
9673 (undo_alignment): new function
9675 2003-02-26 Havoc Pennington <hp@redhat.com>
9677 All kinds of audit fixes from Owen, plus initial attempt to
9678 handle unaligned memory returned from malloc.
9680 * dbus/dbus-string.c (_dbus_string_init): clamp max length to
9681 leave room for align_offset and nul byte
9682 (fixup_alignment): function to track an align_offset and
9683 ensure real->str is aligned
9684 (DBUS_GENERIC_STRING_PREAMBLE): len must be less than allocated,
9685 to allow a nul byte plus align offset
9686 (_dbus_string_lock): fix overflow issue
9687 (_dbus_string_init_const_len): add assertions on sanity of len,
9688 assign allocated to be ALLOCATION_PADDING larger than len
9689 (set_length): fixup the overflow handling
9690 (_dbus_string_get_data_len): fix overflow in assertion
9691 (open_gap): detect overflow in size of gap to be opened
9692 (_dbus_string_lengthen): add overflow check
9693 (_dbus_string_align_length): fix overflow with _DBUS_ALIGN_VALUE
9694 (_dbus_string_append): add overflow check
9695 (_dbus_string_append_unichar): overflow
9696 (_dbus_string_delete): fix overflow in assertion
9697 (_dbus_string_copy_len): overflow in assertion
9698 (_dbus_string_replace_len): overflows in assertions
9699 (_dbus_string_find): change to implement in terms of
9700 _dbus_string_find_to
9701 (_dbus_string_find_to): assorted fixage
9702 (_dbus_string_equal_c_str): assert c_str != NULL,
9703 fix logic so the function works
9704 (_dbus_string_ends_with_c_str): fix overflow thingy
9705 (_dbus_string_base64_encode): overflow fix
9706 (_dbus_string_validate_ascii): overflow
9707 (_dbus_string_validate_nul): overflow
9709 2003-02-26 Havoc Pennington <hp@redhat.com>
9711 * dbus/dbus-marshal.c (_dbus_marshal_test): fix to work with DISABLE_ASSERTS
9713 2003-02-26 Alexander Larsson <alexl@redhat.com>
9716 Set DBUS_GLIB_THREADS_LIBS for apps using gthread-2.0
9718 * dbus/dbus-connection.c:
9719 * dbus/dbus-connection.h:
9720 Fix _dbus_connection_acquire_io_path and _dbus_connection_acquire_dispatch.
9721 Add dbus_connection_set_wakeup_main_function and use it when queueing
9722 incoming and outgoing messages.
9725 * dbus/dbus-dataslot.c:
9726 Threadsafe usage of DBusDataSlotAllocator
9728 * dbus/dbus-message.c: (dbus_message_get_args_iter):
9731 * dbus/dbus-server-unix.c:
9734 * glib/dbus-gmain.c:
9735 Implement the new wakeup functions for glib.
9738 * glib/test-thread-client.c:
9739 * glib/test-thread-server.c:
9740 * glib/test-thread.h:
9741 Initial cut at some thread test code. Not really done yet.
9743 2003-02-26 Havoc Pennington <hp@pobox.com>
9745 * dbus/dbus-connection.c
9746 (dbus_connection_send_message_with_reply_and_block): fix crash
9747 where we ref'd the outgoing message instead of the returned reply
9749 * dbus/dbus-transport-unix.c (do_authentication): check read watch
9750 at the end of this function, so if we didn't need to read for
9751 authentication, we reinstall it for receiving messages
9753 * dbus/dbus-message.c (dbus_message_new_reply): allow replies to
9754 a NULL sender for peer-to-peer case
9756 * dbus/dbus-transport-unix.c (check_read_watch): handle
9757 !authenticated case correctly
9759 * glib/dbus-gmain.c: add support for DBusServer
9761 * dbus/dbus-server.c: add data slot support
9763 * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): check
9764 return values and handle errors
9766 * dbus/dbus-dataslot.c: factor out the data slot stuff from
9769 * Doxyfile.in (INPUT): add glib subdir
9771 * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): rename
9772 setup_with_g_main instead of hookup_with_g_main; write docs
9774 2003-02-24 Anders Carlsson <andersca@codefactory.se>
9776 * dbus/dbus-marshal.c: (_dbus_marshal_validate_arg):
9777 * dbus/dbus-message-builder.c: (_dbus_message_data_load):
9778 * dbus/dbus-message.c: (dbus_message_append_boolean),
9779 (dbus_message_append_boolean_array),
9780 (dbus_message_get_args_valist), (_dbus_message_test):
9781 * dbus/dbus-message.h:
9782 * doc/dbus-specification.sgml:
9783 Various fixes as pointed out by Havoc.
9785 * test/data/invalid-messages/bad-boolean-array.message:
9786 * test/data/invalid-messages/bad-boolean.message:
9787 Add invalid boolean value test cases.
9789 2003-02-24 Anders Carlsson <andersca@codefactory.se>
9791 * dbus/dbus-internals.c: (_dbus_type_to_string):
9792 * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
9793 (_dbus_marshal_validate_arg):
9794 * dbus/dbus-message-builder.c: (_dbus_message_data_load):
9795 * dbus/dbus-message.c: (dbus_message_append_args_valist),
9796 (dbus_message_append_boolean), (dbus_message_append_boolean_array),
9797 (dbus_message_get_args_valist), (dbus_message_iter_get_boolean),
9798 (dbus_message_iter_get_int32), (dbus_message_iter_get_uint32),
9799 (dbus_message_iter_get_double),
9800 (dbus_message_iter_get_boolean_array), (message_iter_test):
9801 * dbus/dbus-message.h:
9802 * dbus/dbus-protocol.h:
9803 * doc/dbus-specification.sgml:
9804 * test/data/valid-messages/lots-of-arguments.message:
9805 Add support for boolean and boolean array types.
9807 2003-02-23 Havoc Pennington <hp@pobox.com>
9809 * dbus/dbus-keyring.c: finish most of this implementation and
9812 * dbus/dbus-errors.c (dbus_set_error_const, dbus_set_error): make
9813 these barf if the error isn't cleared to NULL
9815 * dbus/dbus-sysdeps.c (_dbus_delete_file): set error on failure
9816 (_dbus_create_directory): new function
9818 * dbus/dbus-errors.c (dbus_set_error): fix warning
9820 * dbus/dbus-string.c (_dbus_string_hex_encode): new function
9821 (_dbus_string_hex_decode): new function
9822 (test_hex_roundtrip): test code
9824 * dbus/dbus-sha.c (_dbus_sha_compute): use dbus_string_hex_encode
9826 * dbus/dbus-md5.c (_dbus_md5_compute): use dbus_string_hex_encode
9828 * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): make this use
9829 the save-to-temp/rename trick to atomically write the new file
9830 (_dbus_string_parse_uint): new function
9832 2003-02-22 Havoc Pennington <hp@pobox.com>
9834 * test/Makefile.am (dist-hook): fix dist for test/data/sha-1
9836 2003-02-22 Havoc Pennington <hp@pobox.com>
9838 * dbus/dbus-message.c (dbus_message_iter_get_string_array):
9839 (dbus_message_iter_get_byte_array): Fix up doxygen warnings
9841 * dbus/dbus-sha.c: add implementation of SHA-1 algorithm
9843 * dbus/test/data/sha-1: add US government test suite for SHA-1
9845 2003-02-21 Anders Carlsson <andersca@codefactory.se>
9847 * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
9848 Make string arrays NULL-terminated.
9850 * dbus/dbus-memory.c: (dbus_free_string_array):
9851 * dbus/dbus-memory.h:
9852 New function for freeing NULL-terminated string arrays.
9854 * dbus/dbus-message-builder.c: (append_quoted_string),
9855 (_dbus_message_data_load):
9856 Add support for array types.
9858 * dbus/dbus-message.c: (check_message_handling):
9859 Add more types as test cases.
9861 * dbus/dbus-sysdeps.c: (_dbus_string_parse_int),
9862 (_dbus_string_parse_double):
9863 Add the start offset to the end offset.
9865 * test/data/valid-messages/lots-of-arguments.message:
9866 New test message with lots of arguments.
9868 2003-02-21 Anders Carlsson <andersca@codefactory.se>
9870 * dbus/dbus-message.c: (dbus_message_append_nil),
9871 (dbus_message_append_int32), (dbus_message_append_uint32),
9872 (dbus_message_append_double), (dbus_message_append_string),
9873 (dbus_message_append_int32_array),
9874 (dbus_message_append_uint32_array),
9875 (dbus_message_append_double_array),
9876 (dbus_message_append_byte_array),
9877 (dbus_message_append_string_array):
9878 Fix all out-of-memory handling in these functions.
9880 2003-02-21 Anders Carlsson <andersca@codefactory.se>
9882 * dbus/dbus-message.c: (dbus_message_append_nil):
9885 2003-02-21 Anders Carlsson <andersca@codefactory.se>
9887 * dbus/dbus-message.c: (dbus_message_append_args_valist),
9888 (dbus_message_append_nil), (dbus_message_append_int32_array),
9889 (dbus_message_append_uint32_array),
9890 (dbus_message_append_double_array),
9891 (dbus_message_append_byte_array),
9892 (dbus_message_append_string_array), (dbus_message_get_args_valist),
9893 (dbus_message_iter_get_int32_array),
9894 (dbus_message_iter_get_uint32_array),
9895 (dbus_message_iter_get_double_array),
9896 (dbus_message_iter_get_byte_array),
9897 (dbus_message_iter_get_string_array):
9899 * dbus/dbus-message.h:
9900 Add functions for appending and getting arrays.
9902 2003-02-21 Anders Carlsson <andersca@codefactory.se>
9904 * dbus/dbus-mempool.c (_dbus_mem_pool_new): Make the
9905 element size at least 8 bytes, fixes mempool tests on
9908 2003-02-20 Alexander Larsson <alexl@redhat.com>
9910 * dbus/dbus-transport-unix.c (unix_do_iteration):
9911 Unlock the connection mutex during a blocking select call.
9912 Add todo about how we need a way to wake up the select.
9914 * dbus/dbus-connection-internal.h:
9915 * dbus/dbus-connection.c:
9916 Add _dbus_connection_lock and _dbus_connection_unlock.
9918 2003-02-19 Havoc Pennington <hp@pobox.com>
9920 * Doxyfile.in (PREDEFINED): put DOXYGEN_SHOULD_SKIP_THIS in
9921 Doxyfile.in, not Doxyfile
9923 * dbus/dbus-keyring.c: do some hacking on this
9925 * dbus/dbus-sysdeps.c (_dbus_delete_file): new
9927 * dbus/dbus-errors.c (dbus_set_error_const): do not call
9929 (dbus_set_error): remove dbus_error_init, check for message ==
9930 NULL *before* we sprintf into it, and add @todo about including
9931 system headers in this file
9933 * dbus/dbus-sysdeps.c (_dbus_create_file_exclusively): new
9935 * dbus/dbus-errors.h (DBUS_ERROR_FAILED): add
9937 * dbus/dbus-sysdeps.c (get_user_info): break this function out to
9938 get various bits of user information based on either username
9940 (_dbus_homedir_from_username): new function
9942 2003-02-19 Anders Carlsson <andersca@codefactory.se>
9945 Add check for nonposix getpwnam_r
9947 * dbus/dbus-mempool.c: (_dbus_mem_pool_new):
9948 Align the pool element size to a sizeof (void *) boundary.
9950 * dbus/dbus-sysdeps.c: (_dbus_setenv), (_dbus_connect_unix_socket),
9951 (_dbus_listen_unix_socket), (_dbus_credentials_from_username):
9952 General Solaris fixes.
9954 * test/data/valid-messages/simplest-manual.message:
9955 Explicitly state that we want little-endian packing.
9957 2003-02-19 Mikael Hallendal <micke@codefactory.se>
9959 * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
9961 * dbus/dbus-transport-unix.c (_dbus_transport_new_for_tcp_socket):
9962 Added to create a transport connecting using a tcp/ip socket.
9964 * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): Added to connect
9965 to a tcp socket at given host and port.
9966 (_dbus_listen_tcp_socket): added to listen on tcp socket for given
9969 * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
9971 * dbus/dbus-server-unix.c (_dbus_server_new_for_tcp_socket):
9972 Added to create a server listening on a TCP/IP socket.
9974 2003-02-19 Havoc Pennington <hp@pobox.com>
9976 Throughout: mop up all the Doxygen warnings and undocumented
9979 * dbus/dbus-sysdeps.c (do_exec): do not use execvp, we don't want
9980 to search any paths.
9982 * dbus/dbus-threads.c: move global mutex initializers to
9983 dbus-internals.h, multiple prototypes was confusing doxygen
9984 besides being kind of ugly
9986 * Doxyfile (PREDEFINED): have Doxygen define
9987 DOXYGEN_SHOULD_SKIP_THIS so we can exclude things from
9988 docs with #ifndef DOXYGEN_SHOULD_SKIP_THIS
9989 (do not abuse the feature! it's for stuff like the autogenerated
9990 macros in dbus-md5.c, not just for things you don't feel like
9993 2003-02-18 Havoc Pennington <hp@pobox.com>
9995 * dbus/dbus-string.c (_dbus_string_zero): new function
9997 * dbus/dbus-md5.c: include MD5 implementation by L. Peter Deutsch,
9998 wrap it in some dbus-friendly API
10000 * dbus/dbus-types.h: add 16-bit types
10002 2003-02-18 Joe Shaw <joe@assbarn.com>
10004 * dbus/dbus-auth.c (handle_server_data_stupid_test_mech): Just get
10005 credentials from our currently running process.
10006 (get_word): Fix a buglet where we were copying the entire length
10007 instead of relative to our position.
10009 * dbus/dbus-hash.c (_dbus_hash_test): Don't try to allocate the
10010 keys on the stack... it's 640k of data.
10012 * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): Always
10013 read the credentials byte off the socket, even if we don't have
10015 (_dbus_poll): Implement poll() using select() for systems which
10018 * glib/test-dbus-glib.c (main): Print out an error if no
10019 parameters are given.
10021 * test/data/auth/fallback.auth-script: Added. Tests that a client
10022 can fallback to a secondary auth mechanism if the first fails.
10024 2003-02-18 Havoc Pennington <hp@pobox.com>
10026 * AUTHORS: add Alex
10028 2003-02-17 Havoc Pennington <hp@pobox.com>
10030 * doc/dbus-specification.sgml: lots of cosmetic
10031 cleanups/rearrangement, add assorted FIXME, change DBUS_ADDRESS
10032 env variable to DBUS_BUS_ADDRESS, s/client/application/,
10033 s/server/bus/ (except in authentication section). Add a section
10034 "Message Bus Message Routing"
10036 2003-02-17 Anders Carlsson <andersca@codefactory.se.>
10042 2003-02-17 Anders Carlsson <andersca@codefactory.se>
10044 * doc/dbus-specification.sgml:
10045 Specification updates.
10047 2003-02-17 Anders Carlsson <andersca@codefactory.se>
10049 * bus/activation.c: (bus_activation_init), (child_setup),
10050 (bus_activation_activate_service):
10051 * bus/activation.h:
10052 * bus/main.c: (main):
10053 Set DBUS_ADDRESS environment variable.
10055 * dbus/dbus-errors.c: (dbus_set_error):
10056 Don't use va_copy since that's a C99 feature.
10058 * dbus/dbus-sysdeps.c: (_dbus_setenv), (do_exec),
10059 (_dbus_spawn_async):
10060 * dbus/dbus-sysdeps.h:
10061 Add child_setup_func to _dbus_spawn_async.
10063 * doc/dbus-specification.sgml:
10064 Update specification.
10066 * test/spawn-test.c: (setup_func), (main):
10069 2003-02-17 Alexander Larsson <alexl@redhat.com>
10071 * dbus/dbus-connection.c (_dbus_connection_handler_destroyed_locked):
10074 2003-02-17 Anders Carlsson <andersca@codefactory.se>
10078 * doc/dbus-test-plan.sgml:
10079 Add test plan document.
10081 * test/Makefile.am:
10084 2003-02-17 Anders Carlsson <andersca@codefactory.se>
10086 * dbus/dbus-message.c: (decode_header_data),
10087 (_dbus_message_loader_return_buffer):
10088 Set the header padding amount when loading a message.
10090 2003-02-16 Anders Carlsson <andersca@codefactory.se>
10092 * bus/dispatch.c: (send_one_message):
10093 Only send broadcast messages to registered connections.
10095 * dbus/dbus-message.c: (dbus_message_name_is):
10096 * dbus/dbus-message.h:
10097 New convenience function.
10099 * dbus/dbus-transport-debug.c: (do_reading):
10100 Only dispatch one message per run.
10102 * test/Makefile.am:
10103 * test/bus-test.c: (new_connection_callback), (die),
10104 (test_hello_client1_handler), (test_hello_client2_handler),
10105 (test_hello_replies), (main):
10107 * test/bus-test-loop.[ch]:
10110 2003-02-16 Havoc Pennington <hp@pobox.com>
10112 * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
10113 backward conditional
10115 2003-02-16 Alexander Larsson <alexl@redhat.com>
10117 * dbus/dbus-connection.c:
10118 Implement sent_message_with_reply. (with_reply_and block is still
10120 Made dispatch_message not lose message if OOM.
10122 * dbus/dbus-errors.h:
10123 Add NoReply error (for reply timeouts).
10125 2003-02-16 Alexander Larsson <alexl@redhat.com>
10127 * dbus/dbus-hash.c (_dbus_hash_table_unref):
10128 Actually free keys and values when destroying hashtable.
10130 2003-02-16 Anders Carlsson <andersca@codefactory.se>
10132 * dbus/dbus-auth.c: (client_try_next_mechanism):
10135 * dbus/dbus-threads.c: (dbus_condvar_wait_timeout):
10136 Return TRUE if there's no thread implementation around.
10138 * glib/dbus-gmain.c: (free_source),
10139 (dbus_connection_hookup_with_g_main):
10140 Make sure to remove the GSource when the connection is finalized.
10142 2003-02-16 Anders Carlsson <andersca@codefactory.se>
10144 * bus/dispatch.c: (bus_dispatch_message_handler):
10145 * dbus/dbus-errors.h:
10146 Return an error if someone tries to send a message to a service
10147 that doesn't exist.
10149 2003-02-16 Anders Carlsson <andersca@codefactory.se>
10151 * bus/activation.c: (load_directory), (bus_activation_init),
10152 (bus_activation_activate_service):
10153 * bus/activation.h:
10155 (bus_driver_handle_activate_service), (bus_driver_handle_message):
10156 More work on the activation handling.
10158 * dbus/dbus-errors.h:
10159 Add some error messages
10161 * dbus/dbus-message.c: (dbus_message_new_error_reply):
10162 * dbus/dbus-message.h:
10163 New function that creates an error message.
10165 * dbus/dbus-protocol.h:
10166 Add ACTIVATE_SERVER message.
10168 * dbus/dbus-server-unix.c: (unix_handle_watch),
10169 (_dbus_server_new_for_domain_socket):
10170 Call _dbus_fd_set_close_on_exec.
10172 * dbus/dbus-sysdeps.c: (make_pipe), (do_exec),
10173 (_dbus_spawn_async), (_dbus_disable_sigpipe),
10174 (_dbus_fd_set_close_on_exec):
10175 * dbus/dbus-sysdeps.h:
10176 Add _dbus_fd_set_close_on exec function. Also add function that checks
10177 that all open fds are set to close-on-exec and warns otherwise.
10179 * dbus/dbus-transport-unix.c:
10180 (_dbus_transport_new_for_domain_socket):
10181 Call _dbus_fd_set_close_on_exec.
10183 2003-02-16 Havoc Pennington <hp@pobox.com>
10185 * dbus/dbus-connection.c (dbus_connection_set_change_sigpipe):
10186 allow people to avoid setting SIGPIPE to SIG_IGN
10187 (_dbus_connection_new_for_transport): disable SIGPIPE unless
10188 we've been asked not to
10190 2003-02-15 Anders Carlsson <andersca@codefactory.se>
10192 * dbus/dbus-list.c: (_dbus_list_append_link),
10193 (_dbus_list_prepend_link):
10194 * dbus/dbus-memory.c: (dbus_malloc), (dbus_malloc0),
10198 2003-02-15 Anders Carlsson <andersca@codefactory.se>
10201 * bus/activation.c: (bus_activation_entry_free),
10202 (add_desktop_file_entry), (load_directory), (bus_activation_init):
10203 * bus/activation.h:
10204 * bus/main.c: (main):
10205 Add simple activation support, doesn't work yet though.
10207 2003-02-15 Zack Rusin <zack@kde.org>
10209 * qt/dbus-qthread.cpp: small casting fix
10211 2003-02-15 Anders Carlsson <andersca@codefactory.se>
10213 * dbus/dbus-errors.c: (dbus_set_error):
10214 * dbus/dbus-errors.h:
10215 Add a few errors and make dbus_set_error void.
10217 * dbus/dbus-sysdeps.c:
10218 (_dbus_errno_to_string), (close_and_invalidate), (make_pipe),
10219 (write_err_and_exit), (read_ints), (do_exec), (_dbus_spawn_async):
10220 * dbus/dbus-sysdeps.h:
10221 Add _dbus_spawn_async.
10223 * test/spawn-test.c: (main):
10224 Test for _dbus_spawn_async.
10226 2003-02-15 Anders Carlsson <andersca@codefactory.se>
10228 * dbus/dbus-internals.h:
10229 Fix build without tests.
10231 * dbus/dbus-list.c: (alloc_link):
10232 Fix a segfault when a malloc fails.
10234 * dbus/dbus-memory.c: (initialize_malloc_debug), (dbus_malloc),
10235 (dbus_malloc0), (dbus_realloc):
10236 Add support for malloc debugging.
10238 2003-02-15 Alexander Larsson <alexl@redhat.com>
10240 * dbus/dbus-threads.c:
10241 * dbus/dbus-threads.h:
10242 Add condvars. Remove static mutext from API.
10243 Implement static mutexes by initializing them from threads_init.
10245 * glib/dbus-gthread.c:
10246 * qt/dbus-qthread.cpp:
10247 Update with the thread api changes.
10250 * dbus/dbus-list.c:
10251 * dbus/dbus-list.h:
10252 Turn StaticMutex into normal mutex + init function.
10253 Export new functions _dbus_list_alloc_link, _dbus_list_free_link,
10254 _dbus_list_append_link, _dbus_list_prepend_link
10257 * dbus/dbus-sysdeps.c:
10258 * dbus/dbus-sysdeps.h:
10259 New type dbus_atomic_t, and new functions _dbus_atomic_inc,
10260 _dbus_atomic_dec. Only slow fallback implementation at the moment.
10262 * dbus/dbus-protocol.h:
10263 Add DBUS_MESSAGE_LOCAL_DISCONNECT define
10265 * dbus/dbus-message.c:
10266 Make ref/unref atomic.
10269 * dbus/dbus-connection-internal.h:
10270 * dbus/dbus-connection.c:
10271 * dbus/dbus-connection.h:
10273 Change _peek to _borrow,_return & _steal_borrowed.
10274 Change disconnect callback to event.
10275 Make dbus_connection_dispatch_messages reentrant.
10277 * dbus/dbus-transport.c:
10278 Don't ref the connection on calls to the transport
10281 * dbus/dbus-message-handler.c:
10284 * glib/dbus-gmain.c:
10285 Don't use peek_message anymore
10287 * test/Makefile.am:
10288 * test/debug-thread.c:
10289 * test/debug-thread.h:
10290 Simple thread implementation that asserts() on deadlocks in
10291 single-threaded code.
10294 (main) Call debug_threads_init.
10297 Use disconnect message instead of disconnect callback.
10299 * bus/connection.c:
10300 * bus/connection.h:
10301 Don't call dbus_connection_set_disconnect_function. Instead export
10302 bus_connection_disconnect.
10305 Call bus_connection_disconnect when we get a disconnected message.
10307 2003-02-15 Havoc Pennington <hp@pobox.com>
10309 * dbus/dbus-message.c (dbus_message_new): fool around with the
10312 2003-02-14 Havoc Pennington <hp@pobox.com>
10314 * dbus/dbus-mempool.c: fail if the debug functions so indicate
10316 * dbus/dbus-memory.c: fail if the debug functions indicate we
10319 * dbus/dbus-internals.c (_dbus_set_fail_alloc_counter)
10320 (_dbus_decrement_fail_alloc_counter): debug functions to
10321 simulate memory allocation failures
10323 2003-02-14 Havoc Pennington <hp@pobox.com>
10325 * dbus/dbus-errors.h (struct DBusError): add a word of padding
10328 2003-02-13 Anders Carlsson <andersca@codefactory.se>
10330 * bus/driver.c: (bus_driver_handle_hello):
10332 * bus/services.c: (bus_service_lookup):
10333 Reorder message sending so we get a more sane order.
10335 * test/bus-test.c: (message_handler):
10338 2003-02-13 Anders Carlsson <andersca@codefactory.se>
10340 * bus/driver.c: (bus_driver_send_service_deleted),
10341 (bus_driver_send_service_created), (bus_driver_send_service_lost),
10342 (bus_driver_send_service_acquired), (bus_driver_handle_hello),
10343 (bus_driver_send_welcome_message),
10344 (bus_driver_handle_list_services),
10345 (bus_driver_handle_acquire_service),
10346 (bus_driver_handle_service_exists):
10347 * dbus/dbus-bus.c: (dbus_bus_register_client),
10348 (dbus_bus_acquire_service), (dbus_bus_service_exists):
10349 * dbus/dbus-errors.c: (dbus_result_to_string):
10350 * dbus/dbus-errors.h:
10351 * dbus/dbus-message.c: (dbus_message_append_args),
10352 (dbus_message_append_args_valist), (dbus_message_get_args),
10353 (dbus_message_get_args_valist), (dbus_message_get_args_iter),
10354 (dbus_message_iter_get_arg_type), (dbus_message_iter_get_string),
10355 (dbus_message_iter_get_byte_array),
10356 (dbus_message_iter_get_string_array), (message_iter_test),
10357 (check_message_handling), (_dbus_message_test):
10358 * dbus/dbus-message.h:
10359 * test/bus-test.c: (main):
10360 Change fields to arguments in messages, so that they won't be
10361 confused with header fields.
10363 * glib/test-dbus-glib.c: (main):
10364 Remove append_fields from hello message.
10366 2003-02-13 Anders Carlsson <andersca@codefactory.se>
10368 * dbus/dbus-errors.c:
10369 * dbus/dbus-message.c:
10370 * dbus/dbus-string.c:
10371 Documentation fixes.
10373 2003-02-13 Anders Carlsson <andersca@codefactory.se>
10375 * glib/dbus-gmain.c: (timeout_handler), (add_timeout),
10377 Implement support for timeouts in dbus-glib.
10379 2003-02-13 Anders Carlsson <andersca@codefactory.se>
10381 * dbus/dbus-message-builder.c: (_dbus_message_data_load):
10382 * dbus/dbus-message.c: (process_test_subdir):
10383 * test/break-loader.c: (find_breaks_based_on):
10384 Plug some memory leaks.
10386 2003-02-13 Richard Hult <rhult@codefactory.se>
10388 * bus/main.c: Fix build.
10390 * dbus/dbus-errors.h:
10391 * dbus/dbus-errors.c: Fix copyright for Anders.
10393 2003-02-13 Anders Carlsson <andersca@codefactory.se>
10398 * bus/connection.c: (bus_connection_foreach):
10401 * bus/desktop-file.c: (grow_lines_in_section), (grow_sections),
10402 (unescape_string), (new_section), (parse_section_start),
10403 (parse_key_value), (report_error), (bus_desktop_file_load),
10404 (bus_desktop_file_get_string):
10405 * bus/desktop-file.h:
10406 Use DBusError for error reporting.
10408 * bus/dispatch.c: (send_one_message),
10409 (bus_dispatch_message_handler):
10410 * bus/driver.c: (bus_driver_send_service_deleted),
10411 (bus_driver_send_service_created), (bus_driver_send_service_lost),
10412 (bus_driver_send_service_acquired), (bus_driver_handle_hello),
10413 (bus_driver_send_welcome_message),
10414 (bus_driver_handle_list_services),
10415 (bus_driver_handle_acquire_service),
10416 (bus_driver_handle_service_exists):
10417 * bus/loop.c: (bus_loop_run):
10419 Use BUS_HANDLE_OOM instead of _DBUS_HANDLE_OOM.
10421 * bus/utils.c: (bus_wait_for_memory):
10423 New files with general utility functions.
10425 * dbus/dbus-internals.h:
10426 Remove _DBUS_HANDLE_OOM.
10428 2003-02-13 Anders Carlsson <andersca@codefactory.se>
10430 * dbus/dbus-errors.c: (dbus_result_to_string), (dbus_error_init),
10431 (dbus_error_free), (dbus_set_error_const), (dbus_set_error):
10432 * dbus/dbus-errors.h:
10433 Add DBusError structure.
10435 2003-02-13 Anders Carlsson <andersca@codefactory.se>
10437 * test/data/valid-messages/standard-acquire-service.message:
10438 * test/data/valid-messages/standard-hello.message:
10439 * test/data/valid-messages/standard-list-services.message:
10440 * test/data/valid-messages/standard-service-exists.message:
10441 Add some standard messages.
10443 2003-02-13 Anders Carlsson <andersca@codefactory.se>
10445 * bus/driver.c: (bus_driver_send_welcome_message),
10446 (bus_driver_handle_list_services),
10447 (bus_driver_handle_acquire_service),
10448 (bus_driver_handle_service_exists), (bus_driver_handle_message):
10449 Update for API changes in libdbus.
10451 * dbus/dbus-message.c: (dbus_message_new_reply):
10452 * dbus/dbus-message.h:
10453 Remove the name argument. The spec states that replies shouldn't
10456 2003-02-13 Anders Carlsson <andersca@codefactory.se>
10458 * bus/desktop-file.c: (parse_section_start), (parse_key_value),
10459 (report_error), (bus_desktop_file_load), (lookup_section),
10460 (lookup_line), (bus_desktop_file_get_raw),
10461 (bus_desktop_file_get_string):
10462 * bus/desktop-file.h:
10463 Some fixes, and new functions for getting a key value from a section.
10465 2003-02-13 Havoc Pennington <hp@pobox.com>
10467 * test/data/auth/fail-after-n-attempts.auth-script: new test
10469 * dbus/dbus-auth.c (send_rejected): shutdown_mech() when we
10472 2003-02-13 Havoc Pennington <hp@pobox.com>
10474 * dbus/dbus-auth.c (handle_server_data_external_mech): args to
10475 dbus_credentials_match were backward
10477 * dbus/dbus-auth-script.c (_dbus_auth_script_run): support
10478 NO_CREDENTIALS and ROOT_CREDENTIALS
10480 * dbus/dbus-auth.c (_dbus_auth_do_work): move get_state() routine
10481 into here. Never process more commands after we've reached an
10482 end state; store further data as unused bytes.
10484 * test/data/auth/*: add more auth tests
10486 * dbus/dbus-auth-script.c (_dbus_auth_script_run): support EXPECT
10487 command to match exact string and EXPECT_UNUSED to match unused
10490 * test/Makefile.am (dist-hook): fix to dist all the test stuff
10492 2003-02-12 Havoc Pennington <hp@pobox.com>
10494 * dbus/dbus-string.c (_dbus_string_pop_line): fix to also strip
10495 \r off of popped lines
10497 * dbus/dbus-auth.c (_dbus_auth_test): write code to run auth
10500 * dbus/dbus-auth-script.c (_dbus_auth_script_run): when doing a
10503 2003-02-12 Havoc Pennington <hp@pobox.com>
10505 * dbus/Makefile.am: remove break-loader from the build, since it
10508 * configure.in: add --enable-gcov to turn on coverage profiling
10509 flags and disable optimization
10511 2003-02-10 Havoc Pennington <hp@pobox.com>
10513 * dbus/dbus-auth-script.c, dbus/dbus-auth-script.h: sync
10514 initial cut at test framework for DBusAuth from laptop.
10515 Doesn't quite work yet but it compiles and I need to get
10516 it off the 266mhz laptop. ;-)
10518 * dbus/dbus-server-debug.c (_dbus_server_debug_accept_transport):
10519 fix a memleak in error case
10521 2003-02-12 Anders Carlsson <andersca@codefactory.se>
10524 * bus/desktop-file.c:
10525 * bus/desktop-file.h:
10526 Add a desktop file parser.
10528 2003-02-11 Zack Rusin <zack@kde.org>
10530 * qt/message.[h|cpp]: sample implementation
10531 of the KDE wrapper for DBusMessage
10533 2003-02-09 Zack Rusin <zack@kde.org>
10535 * test/bus-test.c: make_it_compile
10536 * doc/dbus-specification.sgml: minimal semantic fix
10538 2003-02-06 Anders Carlsson <andersca@codefactory.se>
10544 2003-02-06 Anders Carlsson <andersca@codefactory.se>
10546 * dbus/Makefile.am:
10547 * dbus/dbus-break-loader.c:
10548 * test/Makefile.am:
10549 * test/break-loader.c:
10550 Move dbus-break-loader to test/ and rename it to break-loader.
10552 2003-02-02 Havoc Pennington <hp@pobox.com>
10554 * dbus/dbus-keyring.c, dbus/dbus-keyring.h: template files
10555 for code to manage cookies in your home directory
10557 * dbus/dbus-sysdeps.c (_dbus_generate_random_bytes): new function
10559 * dbus/dbus-auth.c (get_state): impose a maximum number of tries
10560 to authenticate, then disconnect the client.
10562 2003-02-03 Alexander Larsson <alexl@redhat.com>
10564 * dbus/dbus-message.c (dbus_message_append_fields):
10567 2003-02-02 Anders Carlsson <andersca@codefactory.se>
10569 * doc/dbus-specification.sgml:
10570 Update address format section.
10572 2003-02-02 Anders Carlsson <andersca@codefactory.se>
10574 * test/Makefile.am:
10575 * test/bus-test.c: (get_time), (add_timeout), (remove_timeout),
10576 (message_handler), (new_connection_callback), (loop_quit),
10577 (loop_run), (main):
10580 2003-02-02 Anders Carlsson <andersca@codefactory.se>
10582 * bus/driver.c: (bus_driver_handle_service_exists):
10583 Simplify the code a bit.
10585 * dbus/dbus-bus.c: (dbus_bus_service_exists):
10588 2003-02-02 Anders Carlsson <andersca@codefactory.se>
10591 Add libdbus-daemon.la and link to it.
10593 2003-02-01 James Willcox <jwillcox@gnome.org>
10595 * bus/driver.c: (bus_driver_handle_own_service):
10596 Actually include the service reply code in the message.
10598 2003-02-02 Anders Carlsson <andersca@codefactory.se>
10600 * bus/driver.c: (bus_driver_handle_service_exists):
10601 Don't unref the incoming message.
10603 2003-02-02 Anders Carlsson <andersca@codefactory.se>
10605 * dbus/dbus.h: Add dbus-address.h and dbus-bus.h
10607 2003-02-02 Anders Carlsson <andersca@codefactory.se>
10609 * dbus/dbus-server.c: (dbus_server_listen):
10610 * dbus/dbus-transport.c: (_dbus_transport_open):
10611 ifdef out the calls to the debug transport and server.
10613 2003-02-02 Alexander Larsson <alexl@redhat.com>
10615 * dbus/dbus-watch.c (dbus_watch_get_flags):
10616 Add note in the docs that ERROR or HANGUP won't be returned
10617 and are assumed always on.
10619 * glib/dbus-gmain.c (add_watch):
10620 Always add IO_ERR | IO_HUP
10622 * dbus/dbus-message.h:
10623 Add semicolon after dbus_message_iter_get_string_array().
10624 Makes qt code build again
10626 2003-02-01 Anders Carlsson <andersca@codefactory.se>
10628 * bus/driver.c: (create_unique_client_name),
10629 (bus_driver_handle_hello):
10630 Don't take a name, just use a numeric id to identify
10633 * dbus/Makefile.am:
10634 * dbus/dbus-bus.c: (dbus_bus_register_client),
10635 (dbus_bus_acquire_service), (dbus_bus_service_exists):
10637 Add new convenience functions for communicating with the bus.
10639 * dbus/dbus-message.h:
10641 * dbus/dbus-protocol.h:
10644 2003-02-01 Alexander Larsson <alexl@redhat.com>
10646 * dbus/dbus-message.c (dbus_message_append_fields):
10647 Add some more doc comments.
10649 2003-02-01 Havoc Pennington <hp@pobox.com>
10651 * dbus/dbus-break-loader.c (randomly_modify_length): change
10652 a 4-byte value in the message as if it were a length
10654 * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): don't set
10655 execute bit on saved files
10657 2003-02-01 Havoc Pennington <hp@pobox.com>
10659 * dbus/dbus-break-loader.c (main): new program to find messages
10660 that break the loader.
10662 * dbus/dbus-sysdeps.c (_dbus_string_append_uint): new function
10663 * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): new function
10665 * dbus/dbus-string.c (_dbus_string_set_byte): new
10667 2003-01-31 Havoc Pennington <hp@pobox.com>
10669 * dbus/dbus-message.c: refactor the test code to be more general,
10670 in preparation for writing a "randomly permute test cases to
10671 try to break the loader" program.
10673 2003-01-31 Havoc Pennington <hp@pobox.com>
10675 * doc/dbus-specification.sgml: work on the specification
10677 * dbus/dbus-message.c (_dbus_message_loader_return_buffer): check
10678 the protocol version of the message.
10680 * dbus/dbus-protocol.h: drop special _REPLY names, the spec
10681 no longer specifies that.
10682 (DBUS_SERVICE_REPLY_SERVICE_EXISTS): fix flags (1/2/4/8 not
10685 * dbus/dbus-marshal.c (_dbus_marshal_get_arg_end_pos): add missing
10686 "break" for DBUS_TYPE_NIL, remove @todo
10688 2003-01-31 Havoc Pennington <hp@pobox.com>
10690 * dbus/dbus-message.c (dbus_message_set_is_error_reply): rename
10691 just set_is_error/get_is_error as this is a commonly-used
10692 function, and write docs.
10694 2003-01-31 Anders Carlsson <andersca@codefactory.se>
10696 * dbus/dbus-address.c: (dbus_address_entry_free):
10697 Free key and value lists.
10699 * dbus/dbus-internals.c: (_dbus_type_to_string):
10700 Add the types we didn't have.
10702 * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
10703 (_dbus_marshal_validate_arg):
10706 * dbus/dbus-message.c: (dbus_message_set_sender):
10707 Remove todo about being able to set sender to NULL.
10709 (dbus_message_set_is_error_reply),
10710 (dbus_message_get_is_error_reply):
10711 * dbus/dbus-message.h:
10714 * dbus/dbus-protocol.h:
10715 Add error reply flag.
10717 * test/data/valid-messages/opposite-endian.message:
10718 Add NIL type to test.
10720 2003-01-31 Havoc Pennington <hp@pobox.com>
10722 * doc/dbus-specification.sgml: fully specify the header. Add
10723 flags and major protocol version, and change header/body len to
10726 * dbus/dbus-message-builder.c (append_saved_length): append length
10729 * dbus/dbus-message.c (dbus_message_create_header): change header
10730 length and body length to unsigned. Add the new fields from the
10732 (_dbus_message_loader_return_buffer): unsigned header/body len
10734 2003-01-30 Havoc Pennington <hp@pobox.com>
10736 * dbus/dbus-auth.c: rework to use only REJECTED, no
10739 * doc/dbus-sasl-profile.txt: drop MECHANISMS and just
10740 use REJECTED, suggested by Mark McLoughlin
10742 2003-01-30 Havoc Pennington <hp@pobox.com>
10744 * dbus/dbus-server.c (dbus_server_listen): @todo about how we need
10745 a better way to report errors here. e.g. "unix address lacks
10746 path" or something. also "no such file" when the path doesn't
10749 * dbus/dbus-address.c (dbus_address_entries_free): add @todo about
10751 (dbus_parse_address): add @todo about documenting address format,
10752 and allowing , and ; to be escaped
10754 2003-01-30 Anders Carlsson <andersca@codefactory.se>
10756 * dbus/Makefile.am:
10757 Add dbus-address.[ch]
10759 * dbus/dbus-address.c: (dbus_address_entry_free),
10760 (dbus_address_entries_free), (create_entry),
10761 (dbus_address_entry_get_method), (dbus_address_entry_get_value),
10762 (dbus_parse_address), (_dbus_address_test):
10763 * dbus/dbus-address.h:
10764 New files for dealing with address parsing.
10766 * dbus/dbus-connection.c:
10767 Document timeout functions.
10769 * dbus/dbus-message.c:
10770 Document dbus_message_new_from_message.
10772 * dbus/dbus-server-debug.c:
10775 * dbus/dbus-server.c: (dbus_server_listen):
10776 Parse address and use correct server implementation.
10778 * dbus/dbus-string.c: (_dbus_string_find_to), (_dbus_string_test):
10779 * dbus/dbus-string.h:
10780 New function with test.
10782 * dbus/dbus-test.c: (dbus_internal_symbol_do_not_use_run_tests):
10783 * dbus/dbus-test.h:
10786 * dbus/dbus-transport-debug.c:
10789 * dbus/dbus-transport.c: (_dbus_transport_open):
10790 Parse address and use correct transport implementation.
10792 2003-01-30 Havoc Pennington <hp@pobox.com>
10794 * dbus/dbus-message.c: use message->byte_order instead of
10795 DBUS_COMPILER_BYTE_ORDER throughout.
10796 (dbus_message_create_header): pad header to align the
10797 start of the body of the message to 8-byte boundary
10799 * dbus/dbus-marshal.h: make all the demarshalers take const
10800 DBusString arguments.
10802 * dbus/dbus-message.c (_dbus_message_loader_return_buffer):
10803 validate message args here, so we don't have to do slow validation
10804 later, and so we catch bad messages as they are incoming. Also add
10805 better checks on header_len and body_len. Also fill in
10806 message->byte_order
10808 * dbus/dbus-string.c (_dbus_string_validate_utf8): new (not
10809 implemented properly)
10810 (_dbus_string_validate_nul): new function to check all-nul
10812 * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): rename
10813 get_arg_end_pos and remove all validation
10814 (_dbus_marshal_validate_arg): actually do validation here.
10816 2003-01-29 Havoc Pennington <hp@pobox.com>
10818 * dbus/dbus-message.c (check_message_handling): fix assertion
10819 failure on set_client_serial
10821 2003-01-28 Havoc Pennington <hp@pobox.com>
10823 * dbus/dbus-server-debug.c: Add doc section comments
10825 * dbus/dbus-transport-debug.c: add doc section comments
10827 2003-01-28 Havoc Pennington <hp@redhat.com>
10829 * dbus/dbus-string.c (_dbus_string_base64_decode): append bytes in
10830 the reverse order from how I had it
10831 (_dbus_string_base64_encode): reverse encoding order. I was
10832 basically byteswapping everything during encoding.
10834 2003-01-28 Anders Carlsson <andersca@codefactory.se>
10836 * dbus/dbus-connection-internal.h:
10837 * dbus/dbus-connection.c: (_dbus_connection_add_timeout),
10838 (_dbus_connection_remove_timeout):
10839 Add functions for adding and removing timeouts.
10841 * dbus/dbus-message.c: (dbus_message_new_from_message):
10842 Add new function that takes a message and creates an exact
10843 copy of it, but with the refcount set to 1.
10844 (check_message_handling):
10847 * dbus/dbus-server-protected.h:
10848 * dbus/dbus-server.c: (_dbus_server_init_base),
10849 (_dbus_server_finalize_base), (_dbus_server_add_timeout),
10850 (dbus_server_set_timeout_functions):
10851 (_dbus_server_remove_timeout):
10852 New functions so that a server can add and remove timeouts.
10854 (dbus_server_listen):
10855 Add commented out call to dbus_server_debug_new.
10857 * dbus/dbus-timeout.c: (_dbus_timeout_new):
10858 Actually set the handler, doh.
10860 * dbus/dbus-transport.c: (_dbus_transport_open):
10861 Add commented out call to dbus_transport_debug_client_new.
10863 * dbus/Makefile.am:
10864 Add dbus-transport-debug.[ch] and dbus-server-debug.[ch]
10866 2003-01-28 Havoc Pennington <hp@pobox.com>
10868 * dbus/dbus-message.c (check_message_handling): function to check
10869 on the loaded message, iterates over it etc.
10871 2003-01-28 Havoc Pennington <hp@pobox.com>
10873 * test/Makefile.am (dist-hook): fix make distdir
10875 * dbus/Makefile.am (TESTS_ENVIRONMENT): fix make check
10877 2003-01-27 Havoc Pennington <hp@pobox.com>
10879 * dbus/dbus-mempool.c (time_for_size): replace printf with
10882 * dbus/dbus-message-builder.c (_dbus_message_data_load): allow
10883 empty lines; fix the SAVE_LENGTH stuff to be
10884 START_LENGTH/END_LENGTH so it actually works; couple other
10887 * test/Makefile.am (dist-hook): add dist-hook for .message files
10889 * dbus/dbus-string.c (DBUS_STRING_COPY_PREAMBLE): source of a copy
10890 can be constant or locked.
10891 (_dbus_string_free): allow freeing a const string as
10892 documented/intended
10894 * dbus/dbus-sysdeps.c (_dbus_concat_dir_and_file): utility
10896 * dbus/dbus-test-main.c (main): take an argument which is the
10897 directory containing test data
10899 * dbus/dbus-message.c (_dbus_message_test): pass a test_data_dir
10900 argument to this and load all the messages in test/data/
10901 checking that they can be loaded or not loaded as appropriate.
10903 2003-01-27 Anders Carlsson <andersca@codefactory.se>
10905 * bus/dispatch.c: (bus_dispatch_message_handler):
10906 Dispatch messages sent to services.
10908 * bus/driver.c: (bus_driver_send_service_deleted),
10909 (bus_driver_send_service_created), (bus_driver_send_service_lost),
10910 (bus_driver_send_service_acquired):
10911 Add helper functions for sending service related messages.
10913 (bus_driver_send_welcome_message):
10914 Send HELLO_REPLY instead of WELCOME.
10916 (bus_driver_handle_list_services):
10917 Send LIST_SERVICES_REPLY instead of SERVICES.
10919 (bus_driver_handle_own_service),
10920 (bus_driver_handle_service_exists):
10921 New message handlers.
10923 (bus_driver_handle_message):
10924 Invoke new message handlers.
10926 (bus_driver_remove_connection):
10927 Don't remove any services here since that's done automatically
10928 by bus_service_remove_owner now.
10931 New function signatures.
10933 * bus/services.c: (bus_service_add_owner):
10934 Send ServiceAcquired message if we're the only primary owner.
10936 (bus_service_remove_owner):
10937 Send ServiceAcquired/ServiceLost messages.
10939 (bus_service_set_prohibit_replacement),
10940 (bus_service_get_prohibit_replacement):
10941 Functions for setting prohibit replacement.
10943 (bus_service_has_owner):
10944 New function that checks if a connection is in the owner queue of
10948 Add new function signatures.
10950 * dbus/dbus-list.c: (_dbus_list_test):
10951 Add tests for _dbus_list_remove_last and traversing the list backwards.
10953 * dbus/dbus-list.h:
10954 Fix a typo in _dbus_list_get_prev_link, if we're at the first element we can't
10955 go any further, so return NULL then.
10957 * dbus/dbus-protocol.h:
10958 Add new messages, service flags and service replies.
10960 2003-01-26 Havoc Pennington <hp@pobox.com>
10962 * dbus/dbus-message-builder.c: implement, completely untested.
10964 * test/data/*: add data to be used in testing.
10965 ".message" files are our simple loadable text format.
10966 ".message-raw" will be binary dumps of messages.
10968 * dbus/dbus-string.c (_dbus_string_starts_with_c_str): new
10970 2003-01-26 Havoc Pennington <hp@pobox.com>
10972 * dbus/dbus-sysdeps.c (_dbus_file_get_contents): new function
10974 * dbus/dbus-errors.c (dbus_result_to_string): add
10977 * dbus/dbus-message-builder.c: new file, will contain code to load
10978 up messages from files. Not implemented yet.
10980 2003-01-26 Havoc Pennington <hp@pobox.com>
10982 * dbus/dbus-message.c (dbus_message_set_sender): support deleting
10983 the sender by setting to NULL
10985 2003-01-26 Havoc Pennington <hp@pobox.com>
10987 The unit tests pass, but otherwise untested. If it breaks, the
10988 tests should have been better. ;-)
10990 * bus/driver.c (bus_driver_handle_hello): return if we disconnect
10993 * dbus/dbus-message.c: redo everything so we maintain
10994 message->header as the only copy of the various fields.
10995 This avoids the possibility of out-of-memory in some cases,
10996 for example dbus_message_lock() can't run out of memory anymore,
10997 and avoids extra copying. Figured I may as well go ahead and do
10998 this since it was busted for dbus_message_lock to not return
10999 failure on OOM, and dbus_message_write_header was totally
11000 unchecked for OOM. Also fixed some random other bugs.
11002 * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): verify
11003 that strings are nul-terminated. Also, end_pos can be equal
11004 to string length just not greater than, I think.
11005 (_dbus_marshal_set_int32): new function
11006 (_dbus_marshal_set_uint32): new function
11007 (_dbus_marshal_set_string): new function
11009 * dbus/dbus-connection.c (_dbus_connection_new_for_transport): fix
11010 a warning, init timeout_list to NULL
11011 (dbus_connection_send_message): don't use uninitialized variable
11014 * dbus/dbus-string.c (_dbus_string_replace_len): new function
11016 2003-01-26 Anders Carlsson <andersca@codefactory.se>
11018 * bus/driver.c: (bus_driver_handle_hello),
11019 (bus_driver_send_welcome_message):
11022 2003-01-26 Anders Carlsson <andersca@codefactory.se>
11024 * dbus/dbus-auth.c: (process_auth), (_dbus_auth_unref):
11025 * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
11026 (dbus_connection_unref):
11027 * dbus/dbus-marshal.c: (_dbus_marshal_test):
11028 * dbus/dbus-message.c: (dbus_message_unref),
11031 (dbus_message_get_fields):
11032 Remove debugging printout.
11034 (_dbus_message_loader_return_buffer):
11035 Don't store the header string.
11037 (_dbus_message_test):
11040 2003-01-26 Richard Hult <rhult@codefactory.se>
11042 * glib/dbus-gmain.c (dbus_connection_dispatch): Traverse a copy of
11043 the file descriptor list, since it can change under us.
11045 2003-01-25 Anders Carlsson <andersca@codefactory.se>
11047 * glib/dbus-gmain.c: (dbus_connection_prepare),
11048 (dbus_connection_check), (dbus_connection_dispatch), (add_watch),
11049 (remove_watch), (dbus_connection_hookup_with_g_main):
11050 Rewrite the glib handling to use its own GSource instead of a
11051 GIOChannel so we can catch messages put in the queue while waiting
11054 2003-01-25 Anders Carlsson <andersca@codefactory.se>
11057 * bus/connection.c: (connection_disconnect_handler),
11058 (connection_watch_callback), (bus_connection_setup):
11059 * bus/dispatch.c: (send_one_message),
11060 (bus_dispatch_broadcast_message), (bus_dispatch_message_handler),
11061 (bus_dispatch_add_connection), (bus_dispatch_remove_connection):
11063 * bus/driver.c: (bus_driver_send_service_deleted),
11064 (bus_driver_send_service_created), (bus_driver_handle_hello),
11065 (bus_driver_send_welcome_message),
11066 (bus_driver_handle_list_services), (bus_driver_remove_connection),
11067 (bus_driver_handle_message):
11069 Refactor code, put the message dispatching in its own file. Use
11070 _DBUS_HANDLE_OOM. Also send ServiceDeleted messages when a client
11073 2003-01-25 Anders Carlsson <andersca@codefactory.se>
11075 * dbus/dbus-internals.h:
11076 Add _DBUS_HANDLE_OOM macro, it doesn't do anything currently.
11078 * dbus/dbus-message.c: (dbus_message_get_sender):
11079 * dbus/dbus-message.h:
11080 Implement dbus_message_get_sender.
11082 * dbus/dbus-protocol.h:
11083 Add message and service defines.
11085 2003-01-25 Anders Carlsson <andersca@codefactory.se>
11087 * dbus/dbus-connection.c: (dbus_connection_send_message):
11088 * dbus/dbus-message-internal.h:
11089 * dbus/dbus-message.c: (_dbus_message_get_client_serial),
11090 (dbus_message_write_header):
11091 Remove _dbus_messag_unlock and don't set the client serial on a
11092 message if one already exists.
11094 2003-01-24 Havoc Pennington <hp@pobox.com>
11096 * dbus/dbus-list.c (alloc_link): put a thread lock on the global
11099 * bus/driver.c (bus_driver_handle_list_services): fix a leak
11102 2003-01-25 Anders Carlsson <andersca@codefactory.se>
11104 * dbus/dbus-list.c: (alloc_link), (free_link):
11105 Use a memory pool for the links.
11107 2003-01-25 Anders Carlsson <andersca@codefactory.se>
11109 * bus/connection.c: (bus_connection_foreach):
11110 * bus/connection.h:
11111 Add new bus_connection_foreach function.
11113 * bus/driver.c: (send_one_message), (bus_driver_broadcast_message):
11114 Add function that broadcasts a message to all clients.
11116 (bus_driver_send_service_created), (bus_driver_handle_hello),
11117 (bus_driver_send_welcome_message),
11118 (bus_driver_handle_list_services), (bus_driver_message_handler):
11119 Implement functions that take care of listing services, and notifying
11120 clients when new services are created.
11122 * bus/services.c: (bus_services_list):
11124 Add new function that returns an array of strings with the currently
11125 registered services.
11127 * glib/dbus-glib.h:
11128 * glib/dbus-gmain.c:
11129 Update copyright year.
11131 2003-01-25 Anders Carlsson <andersca@codefactory.se>
11133 * dbus/dbus-connection.c: (dbus_connection_send_message):
11134 Unlock the message in case it was sent earlier.
11136 (dbus_connection_send_message_with_reply_and_block):
11137 Remove the reply message from the list.
11139 * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
11140 Set array_len and new_pos correctly.
11142 (_dbus_marshal_test):
11143 Remove debug output.
11145 * dbus/dbus-message-internal.h:
11146 * dbus/dbus-message.c: (_dbus_message_get_reply_serial):
11147 New function that returns the reply serial.
11149 (_dbus_message_unlock):
11150 New function that unlocks a message and resets its header.
11152 (dbus_message_append_string_array),
11153 (dbus_message_get_fields_valist),
11154 (dbus_message_iter_get_field_type),
11155 (dbus_message_iter_get_string_array),
11156 (dbus_message_get_fields),
11157 (dbus_message_append_fields_valist):
11158 Handle string arrays.
11160 (dbus_message_set_sender):
11161 Make this function public since the bus daemon needs it.
11163 (decode_header_data):
11164 Set the reply serial to -1 initially.
11166 * dbus/dbus-message.h:
11167 Add dbus_message_set_sender.
11169 2003-01-24 Havoc Pennington <hp@pobox.com>
11171 * doc/dbus-specification.sgml: add some stuff
11173 2003-01-22 Havoc Pennington <hp@pobox.com>
11175 * doc/dbus-specification.sgml: Start to document the protocol.
11177 2003-01-22 Havoc Pennington <hp@pobox.com>
11179 * dbus/dbus-connection.c
11180 (dbus_connection_send_message_with_reply_and_block): add some @todo
11182 * bus/driver.c (bus_driver_add_connection): add a FIXME about memleak
11184 2003-01-21 Havoc Pennington <hp@pobox.com>
11186 (patch untested because can't compile)
11188 * bus/driver.c (create_unique_client_name): make this function
11189 never recycle client names. Also, caller should initialize
11192 * dbus/dbus-sysdeps.c (_dbus_get_current_time): new function
11194 2003-01-21 Anders Carlsson <andersca@codefactory.se>
11196 * dbus/dbus-marshal.c: (_dbus_marshal_double),
11197 (_dbus_marshal_int32), (_dbus_marshal_uint32),
11198 (_dbus_marshal_int32_array), (_dbus_marshal_uint32_array),
11199 (_dbus_marshal_double_array), (_dbus_marshal_string_array),
11200 (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
11201 (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
11202 (_dbus_marshal_get_field_end_pos), (_dbus_marshal_test):
11203 * dbus/dbus-marshal.h:
11204 * dbus/dbus-protocol.h:
11205 Add support for marshalling and demarshalling integer, double
11208 2003-01-21 Anders Carlsson <andersca@codefactory.se>
11213 * bus/connection.c: (connection_disconnect_handler):
11214 Remove the connection from the bus driver's list.
11216 (connection_watch_callback): Dispatch messages.
11218 (free_connection_data): Free connection name.
11220 (bus_connection_setup): Add connection to the bus driver's list.
11221 (bus_connection_remove_owned_service):
11222 (bus_connection_set_name), (bus_connection_get_name):
11223 Add functions for setting and getting the connection's name.
11225 * bus/connection.h:
11226 Add function headers.
11228 * bus/driver.c: (create_unique_client_name),
11229 (bus_driver_handle_hello_message),
11230 (bus_driver_send_welcome_message), (bus_driver_message_handler),
11231 (bus_driver_add_connection), (bus_driver_remove_connection):
11234 * bus/services.c: (bus_service_free):
11236 New file that handles communication and registreation with the bus
11239 2003-01-21 Anders Carlsson <andersca@codefactory.se>
11241 * dbus/dbus-connection.c: (dbus_connection_send_message):
11242 Add a new client_serial parameter.
11244 (dbus_connection_send_message_with_reply):
11245 Remove a @todo since we've implemented the blocking function.
11247 (dbus_connection_send_message_with_reply_and_block):
11248 New function that sends a message and waits for a reply and
11249 then returns the reply.
11251 * dbus/dbus-connection.h:
11254 * dbus/dbus-errors.c: (dbus_result_to_string):
11255 * dbus/dbus-errors.h:
11256 Add new DBUS_RESULT.
11258 * dbus/dbus-message-internal.h:
11259 * dbus/dbus-message.c: (_dbus_message_get_reply_serial),
11260 (_dbus_message_set_sender), (dbus_message_write_header),
11261 (dbus_message_new_reply), (decode_header_data),
11262 (_dbus_message_loader_return_buffer), (_dbus_message_test):
11263 * dbus/dbus-message.h:
11264 Add new functions that set the reply serial and sender.
11265 Also marshal and demarshal them correctly and add test.
11267 * dbus/dbus-protocol.h:
11268 Add new DBUS_MESSAGE_TYPE_SENDER.
11270 * glib/dbus-glib.h:
11271 * glib/dbus-gmain.c: (watch_callback), (free_callback_data),
11272 (add_watch), (remove_watch), (add_timeout), (remove_timeout),
11273 (dbus_connection_hookup_with_g_main):
11274 * glib/test-dbus-glib.c: (main):
11275 Rewrite to use GIOChannel and remove the GSource crack.
11277 * test/echo-client.c: (main):
11278 * test/watch.c: (check_messages):
11279 Update for changed APIs
11281 2003-01-19 Anders Carlsson <andersca@codefactory.se>
11283 * dbus/Makefile.am: Add dbus-timeout.[cħ]
11285 * dbus/dbus-connection.c: (_dbus_connection_new_for_transport):
11286 Create a DBusTimeoutList.
11287 (dbus_connection_set_timeout_functions): Add new function to
11288 set timeout callbacks
11290 * dbus/dbus-connection.h: Add public DBusTimeout API.
11292 * dbus/dbus-message.c: (dbus_message_get_service):
11293 * dbus/dbus-message.h: New function.
11295 * dbus/dbus-server.c: Fix small doc typo.
11297 * dbus/dbus-timeout.[ch]: New files for mainloop timeouts.
11299 2003-01-19 Anders Carlsson <andersca@codefactory.se>
11301 * dbus/dbus-string.c (_dbus_string_move_len): Don't delete all
11302 of the string, just as long as specified.
11304 2003-01-19 Havoc Pennington <hp@pobox.com>
11306 * dbus/dbus-connection.c (dbus_connection_get_is_authenticated):
11309 * dbus/dbus-server.c (dbus_server_set_max_connections)
11310 (dbus_server_get_max_connections, dbus_server_get_n_connections):
11311 keep track of current number of connections, and add API for
11312 setting a max (but haven't implemented enforcing the max yet)
11314 2003-01-18 Havoc Pennington <hp@pobox.com>
11316 * dbus/dbus-transport-unix.c (unix_do_iteration): only do the
11317 reading/writing if read_watch != NULL or write_watch != NULL.
11319 * dbus/dbus-message.c (_dbus_message_loader_return_buffer): fix
11320 the message loader code to actually load message->header and
11321 message->body into the newly-created message.
11323 * dbus/dbus-transport-unix.c (check_write_watch): fix a mem leak
11326 * dbus/dbus-connection.c (dbus_connection_set_max_message_size)
11327 (dbus_connection_get_max_message_size)
11328 (dbus_connection_set_max_live_messages_size)
11329 (dbus_connection_get_max_live_messages_size): implement some
11330 resource limitation functions
11332 * dbus/dbus-resources.c: new file implementing some of the
11333 resource limits stuff
11335 * dbus/dbus-message.c (dbus_message_iter_get_byte_array): add
11336 missing docs, add @todo to handle OOM etc.
11338 * dbus/dbus-marshal.c (_dbus_demarshal_byte_array): add missing
11341 2003-01-18 Havoc Pennington <hp@pobox.com>
11343 * dbus/dbus-connection.c (dbus_connection_unref): disconnect the
11344 connection if it hasn't been already.
11346 * dbus/dbus-connection.h: kill off the idea of an ErrorFunction,
11347 replace with DisconnectFunction.
11349 2003-01-18 Havoc Pennington <hp@pobox.com>
11351 Building --disable-verbose-mode --disable-asserts --disable-tests
11352 cuts the library from 112K to 45K or so
11354 * configure.in: check for varargs macro support,
11355 add --enable-verbose-mode, --enable-asserts.
11357 * dbus/dbus-internals.h (_dbus_assert): support
11358 DBUS_DISABLE_ASSERT
11359 (_dbus_verbose): support DBUS_ENABLE_VERBOSE_MODE
11361 2003-01-18 Havoc Pennington <hp@pobox.com>
11363 * dbus/dbus-test.c: include config.h so that tests actually run
11365 * dbus/dbus-string.c: add assertions that stuff is 8-byte aligned,
11366 so the failure mode when that assumption fails will be plenty
11369 2003-01-18 Havoc Pennington <hp@pobox.com>
11371 * configure.in: default --enable-tests to $USE_MAINTAINER_MODE
11373 * dbus/Makefile.am: fix it up so dubs-test-main.c is included in
11376 * test/Makefile.am: don't use special variable "TESTS" for echo-*
11377 since we don't want to use those in make check
11379 2003-01-15 Havoc Pennington <hp@redhat.com>
11385 2003-01-15 Havoc Pennington <hp@redhat.com>
11387 * test/Makefile.am: fix so that test source code ends up in the
11388 distribution on make distcheck
11390 2003-01-15 Havoc Pennington <hp@redhat.com>
11396 2003-01-15 Havoc Pennington <hp@redhat.com>
11398 * dbus/dbus-test.c (dbus_internal_symbol_do_not_use_run_tests):
11399 fix build when --disable-tests
11401 * Makefile.am (EXTRA_DIST): put HACKING in here
11403 * HACKING: document procedure for making a tarball release.
11405 2003-01-14 Anders Carlsson <andersca@codefactory.se>
11407 * bus/connection.c: (connection_error_handler),
11408 (bus_connection_setup):
11409 * bus/main.c: (main):
11410 Make sure that the DBusConnectionData struct is NULLed
11411 out to prevent a segfault.
11413 * dbus/dbus-errors.c: (dbus_result_to_string):
11414 * dbus/dbus-errors.h:
11415 * dbus/dbus-message.c: (dbus_message_get_fields),
11416 (dbus_message_get_fields_valist), (_dbus_message_test):
11417 * dbus/dbus-message.h:
11418 Make dbus_message_get_fields return a result code so we can
11419 track invalid fields as well as oom.
11421 2003-01-11 Havoc Pennington <hp@pobox.com>
11423 * configure.in: change --enable-test/--enable-ansi action-if-given
11424 to enable_foo=$enableval instead of enable_foo=yes
11426 2003-01-08 Havoc Pennington <hp@pobox.com>
11428 * dbus/dbus-string.c (_dbus_string_align_length): new function
11430 * dbus/dbus-test-main.c: move main() for test app here
11432 (dbus_internal_symbol_do_not_use_run_tests): we have to export a
11433 symbol to run tests, because dbus-test isn't in the main
11436 Code review nitpicks.
11438 * dbus/dbus-message.c (dbus_message_write_header): add newlines
11439 for people with narrow emacs ;-). Assert client_serial was filled
11440 in. Assert message->name != NULL.
11441 (dbus_message_append_fields): have "first_field_type" arg separate
11442 from va list, needed for C++ binding that also uses varargs IIRC
11443 and helps with type safety
11444 (dbus_message_new): add @todo about using DBusString to store
11445 service/name internally
11446 (dbus_message_new): don't leak ->service and ->name on OOM later
11448 (dbus_message_unref): free the service name
11449 (dbus_message_get_fields): same change to varargs
11450 i.e. first_field_type
11451 (_dbus_message_loader_return_buffer): assert that the message data
11452 is aligned (if not it's a bug in our code). Put in verbose griping
11453 about why we set corrupted = TRUE.
11454 (decode_header_data): add FIXME that char* is evil. Was going to
11455 add FIXME about evil locale-specific string.h strncmp, but just
11456 switched to wacky string-as-uint32 optimization. Move check for
11457 "no room for field name" above get_const_data_len() to avoid
11458 assertion failure in get_const_data_len if we have trailing 2
11459 bytes or the like. Check for service and name fields being
11460 provided twice. Don't leak service/name on error. Require field
11461 names to be aligned to 4 bytes.
11463 * dbus/dbus-marshal.c: move byte swap stuff to header
11464 (_dbus_pack_int32): uscore-prefix
11465 (_dbus_unpack_int32): uscore-prefix
11466 (_dbus_unpack_uint32): export
11467 (_dbus_demarshal_string): add @todo complaining about use of
11469 (_dbus_marshal_get_field_end_pos): add @todo about bad error
11470 handling allowing corrupt data to go unchecked
11472 2003-01-08 Havoc Pennington <hp@redhat.com>
11474 * dbus/dbus-transport-unix.c (unix_do_iteration): add read/write
11475 to the select() as needed for authentication. (should be using
11476 _dbus_poll() not select, but for another day)
11478 * dbus/dbus.h: include dbus/dbus-protocol.h
11480 2003-01-08 Anders Carlsson <andersca@codefactory.se>
11482 * dbus/Makefile.am (dbusinclude_HEADERS): Install
11485 2003-01-08 Anders Carlsson <andersca@codefactory.se>
11487 * dbus/dbus-internals.c: (_dbus_type_to_string):
11488 New function that returns a string describing a type.
11490 * dbus/dbus-marshal.c: (_dbus_demarshal_byte_array):
11491 * dbus/dbus-marshal.h:
11492 * dbus/dbus-message.c: (dbus_message_get_fields_valist),
11493 (dbus_message_iter_get_field_type), (dbus_message_iter_get_double),
11494 (dbus_message_iter_get_byte_array):
11495 * dbus/dbus-message.h:
11496 Add new convenience functions for appending and getting message fields.
11497 Also add demarshalling routines for byte arrays.
11499 2003-01-07 Anders Carlsson <andersca@codefactory.se>
11501 * dbus/dbus-connection-internal.h:
11502 * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
11503 (_dbus_connection_get_next_client_serial),
11504 (dbus_connection_send_message):
11505 * dbus/dbus-internals.h:
11506 * dbus/dbus-marshal.c: (unpack_uint32), (dbus_unpack_int32),
11507 (dbus_pack_int32), (_dbus_marshal_double), (_dbus_marshal_int32),
11508 (_dbus_marshal_uint32), (_dbus_demarshal_double),
11509 (_dbus_demarshal_int32), (_dbus_demarshal_uint32),
11510 (_dbus_demarshal_string), (_dbus_marshal_get_field_end_pos),
11511 (_dbus_verbose_bytes), (_dbus_marshal_test):
11512 * dbus/dbus-marshal.h:
11513 * dbus/dbus-message-internal.h:
11514 * dbus/dbus-message.c: (_dbus_message_set_client_serial),
11515 (dbus_message_write_header), (_dbus_message_lock),
11516 (dbus_message_new), (dbus_message_ref), (dbus_message_unref),
11517 (dbus_message_get_name), (dbus_message_append_int32),
11518 (dbus_message_append_uint32), (dbus_message_append_double),
11519 (dbus_message_append_string), (dbus_message_append_byte_array),
11520 (dbus_message_get_fields_iter), (dbus_message_iter_ref),
11521 (dbus_message_iter_unref), (dbus_message_iter_has_next),
11522 (dbus_message_iter_next), (dbus_message_iter_get_field_type),
11523 (dbus_message_iter_get_string), (dbus_message_iter_get_int32),
11524 (dbus_message_iter_get_uint32), (dbus_message_iter_get_double),
11525 (decode_header_data), (_dbus_message_loader_return_buffer),
11526 (message_iter_test), (_dbus_message_test):
11527 * dbus/dbus-message.h:
11528 * dbus/dbus-protocol.h:
11529 * dbus/dbus-test.c: (main):
11530 * dbus/dbus-test.h:
11531 * glib/test-dbus-glib.c: (message_handler), (main):
11532 * test/echo-client.c: (main):
11533 * test/watch.c: (check_messages):
11534 Make messages sendable and receivable for real.
11536 2003-01-07 Anders Carlsson <andersca@codefactory.se>
11538 * dbus/dbus-marshal.c: (_dbus_marshal_double),
11539 (_dbus_marshal_string), (_dbus_marshal_byte_array):
11540 * dbus/dbus-message.c: (dbus_message_append_int32),
11541 (dbus_message_append_uint32), (dbus_message_append_double),
11542 (dbus_message_append_string), (dbus_message_append_byte_array):
11543 Handle OOM restoration.
11545 2003-01-07 Anders Carlsson <andersca@codefactory.se>
11547 * dbus/dbus-marshal.c: (_dbus_marshal_string),
11548 (_dbus_demarshal_string), (_dbus_marshal_test):
11549 * dbus/dbus-marshal.h:
11550 * dbus/dbus-message.c: (dbus_message_get_name),
11551 Document these functions.
11553 (dbus_message_append_int32), (dbus_message_append_uint32),
11554 (dbus_message_append_double), (dbus_message_append_string),
11555 (dbus_message_append_byte_array):
11556 * dbus/dbus-message.h:
11557 Add functions for adding message fields of different types.
11559 * dbus/dbus-protocol.h:
11560 Add the different types.
11562 2003-01-05 Havoc Pennington <hp@pobox.com>
11564 * bus/connection.c: implement routines for handling connections,
11565 first thing is keeping a list of owned services on each connection
11566 and setting up watches etc.
11568 * bus/services.c: implement a mapping from service names to lists
11571 * dbus/dbus-hash.c: add DBUS_HASH_POINTER
11573 * dbus/dbus-threads.c (dbus_static_mutex_lock): add functions
11574 to use static mutexes for global data
11576 * dbus/dbus-connection.c (dbus_connection_set_data): add new
11577 collection of functions to set/get application-specific data
11578 on the DBusConnection.
11580 2003-01-04 Havoc Pennington <hp@pobox.com>
11582 * dbus/dbus-sysdeps.c (_dbus_sleep_milliseconds): new function
11583 (_dbus_poll): new function
11585 * dbus/dbus-internals.h (_DBUS_STRUCT_OFFSET): new macro
11588 * bus/loop.c: initial code for the daemon main loop
11590 2003-01-04 Havoc Pennington <hp@pobox.com>
11592 * test/watch.c (error_handler): make it safe if the error handler
11593 is called multiple times (if we s/error handler/disconnect
11594 handler/ we should just guarantee it's called only once)
11596 * dbus/dbus-transport.c (_dbus_transport_disconnect): call the
11597 error handler on disconnect (it's quite possible we should
11598 just change the error handler to a "disconnect handler," I'm
11599 not sure we have any other meaningful errors)
11601 * configure.in: check for getpwnam_r
11603 * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
11604 dbus/dbus-auth.c: add credentials support, add EXTERNAL auth
11605 mechanism as in SASL spec, using socket credentials
11607 * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): new function
11608 (_dbus_send_credentials_unix_socket): new function
11610 * dbus/dbus-sysdeps.c (_dbus_accept_unix_socket): rename just
11612 (_dbus_write): only check errno if <0 returned
11613 (_dbus_write_two): ditto
11615 2003-01-02 Anders Carlsson <andersca@codefactory.se>
11617 * dbus/dbus-marshal.c: (_dbus_marshal_utf8_string),
11618 (_dbus_marshal_byte_array), (_dbus_demarshal_utf8_string),
11619 (_dbus_marshal_test):
11620 * dbus/dbus-marshal.h:
11621 Add _dbus_marshal_byte_array and rename _dbus_marshal_string
11622 to _dbus_marshal_utf8_string. Also fix some tests.
11624 2002-12-28 Harri Porten <porten@kde.org>
11626 * configure.in: added check for C++ compiler and a very cheesy
11627 check for the Qt integration
11629 * Makefile.am (SUBDIRS): compile qt subdir if support is enabled
11631 * qt/Makefile.am: added
11633 * qt/.cvsignore: added
11635 * qt/dbus-qthread.cc, qt/dbus-qthread.cpp: renamed former to
11636 latter, added #ifdef QT_THREAD_SUPPORT guard.
11638 * dbus/Makefile.am: added missing headers for make dist
11640 2002-12-28 Kristian Rietveld <kris@gtk.org>
11642 * dbus/Makefile.am: fixup export-symbols-regex.
11644 2002-12-27 Anders Carlsson <andersca@codefactory.se>
11646 * acinclude.m4: Add this file and put the
11647 PKG_CHECK_MODULE macro in it.
11649 2002-12-27 Anders Carlsson <andersca@codefactory.se>
11651 * dbus/dbus-marshal.c: (_dbus_marshal_string),
11652 (_dbus_demarshal_double), (_dbus_demarshal_int32),
11653 (_dbus_demarshal_uint32), (_dbus_demarshal_string),
11654 (_dbus_marshal_test):
11655 Make the demarshalling routines align the pos argument.
11656 Add string marshalling tests and fix the obvious bugs
11659 2002-12-26 Havoc Pennington <hp@pobox.com>
11661 * dbus/dbus-auth.c: fixes fixes fixes
11663 * dbus/dbus-transport-unix.c: wire up support for
11664 encoding/decoding data on the wire
11666 * dbus/dbus-auth.c (_dbus_auth_encode_data)
11667 (_dbus_auth_decode_data): append to target string
11668 instead of nuking it.
11670 2002-12-26 Havoc Pennington <hp@pobox.com>
11672 * dbus/dbus-marshal.h (DBUS_COMPILER_BYTE_ORDER): #ifdef
11673 WORDS_BIGENDIAN then compiler byte order is DBUS_BIG_ENDIAN,
11676 * dbus/dbus-marshal.c: Add macros to do int swapping in-place and
11677 avoid swap_bytes() overhead (ignoring possible assembly stuff for
11678 now). Main point is because I wanted unpack_uint32 to implement
11679 _dbus_verbose_bytes
11680 (_dbus_verbose_bytes): new function
11682 * dbus/dbus-string.c (_dbus_string_validate_ascii): new function
11684 * dbus/dbus-message.c (_dbus_message_loader_get_is_corrupted): add
11685 mechanism to handle a corrupt message stream
11686 (_dbus_message_loader_new): fix preallocation to only prealloc,
11689 * dbus/dbus-string.c (_dbus_string_skip_blank): fix this function
11690 (_dbus_string_test): enhance tests for copy/move and fix the
11693 * dbus/dbus-transport-unix.c: Hold references in more places to
11694 avoid reentrancy problems
11696 * dbus/dbus-transport.c: ditto
11698 * dbus/dbus-connection.c (dbus_connection_dispatch_message): don't
11699 leak reference count in no-message case
11701 * test/watch.c (do_mainloop): handle adding/removing watches
11702 during iteration over the watches. Also, ref the connection/server
11703 stored on a watch, so we don't try to mangle a destroyed one.
11705 * dbus/dbus-transport-unix.c (do_authentication): perform
11708 * dbus/dbus-auth.c (get_state): add a state
11709 AUTHENTICATED_WITH_UNUSED_BYTES and return it if required
11710 (_dbus_auth_get_unused_bytes): append the unused bytes
11711 to the passed in string, rather than prepend
11713 * dbus/dbus-transport.c (_dbus_transport_init_base): create
11714 the auth conversation DBusAuth
11716 * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd)
11717 (_dbus_transport_new_for_domain_socket): when creating a
11718 transport, pass in whether it's a client-side or server-side
11719 transport so we know which DBusAuth to create
11721 2002-12-03 Havoc Pennington <hp@pobox.com>
11723 * dbus/dbus-transport-unix.c (unix_finalize): finalize base
11724 _after_ finalizing the derived members
11725 (unix_connection_set): unref watch if we fail to add it
11727 * dbus/dbus-connection.c (dbus_connection_unref): delete the
11728 transport first, so that the connection owned by the
11729 transport will be valid as the transport finalizes.
11731 * dbus/dbus-transport-unix.c (unix_finalize): free the write_watch
11732 if necessary, and remove watches from the connection.
11734 * dbus/dbus-watch.c (_dbus_watch_list_free): improve a comment
11736 2002-12-26 Anders Carlsson <andersca@codefactory.se>
11738 * dbus/dbus-marshal.c: (_dbus_marshal_string),
11739 (_dbus_demarshal_double), (_dbus_demarshal_int32),
11740 (_dbus_demarshal_uint32), (_dbus_demarshal_string),
11741 (_dbus_marshal_test):
11742 * dbus/dbus-marshal.h:
11743 Add string marshal functions and have the demarshal functions
11744 return the new position.
11746 2002-12-25 Havoc Pennington <hp@pobox.com>
11748 * doc/dbus-sasl-profile.txt: docs on the authentication protocol,
11749 it is a simple protocol that just maps directly to SASL.
11751 * dbus/dbus-auth.h, dbus/dbus-auth.c: authentication protocol
11752 initial implementation, not actually used yet.
11754 * dbus/dbus-string.c (_dbus_string_find): new function
11755 (_dbus_string_equal): new function
11756 (_dbus_string_base64_encode): new function
11757 (_dbus_string_base64_decode): new function
11759 2002-12-25 Anders Carlsson <andersca@codefactory.se>
11761 * dbus/Makefile.am:
11762 * dbus/dbus-marshal.c: (swap_bytes), (_dbus_marshal_double),
11763 (_dbus_marshal_int32), (_dbus_marshal_uint32),
11764 (_dbus_demarshal_double), (_dbus_demarshal_int32),
11765 (_dbus_demarshal_uint32), (_dbus_marshal_test):
11766 * dbus/dbus-marshal.h:
11767 * dbus/dbus-protocol.h:
11768 * dbus/dbus-test.c: (main):
11769 * dbus/dbus-test.h:
11770 Add un-optimized marshalling/demarshalling routines.
11772 2002-12-25 Harri Porten <porten@kde.org>
11774 * qt/dbus-qt.h: adjusted ctor and getter to KDE/Qt conventions
11776 2002-12-24 Zack Rusin <zack@kde.org>
11778 * qt/dbus-qthread.cc: adding - integrates QMutex into Dbus
11779 * qt/dbus-qt.h: skeleton with two sample implemenatation of the
11782 2002-12-24 Havoc Pennington <hp@pobox.com>
11784 * glib/dbus-gthread.c: fix include
11786 * glib/dbus-glib.h: rename DBusMessageHandler for now.
11787 I think glib API needs to change, though, as you don't
11788 want to use DBusMessageFunction, you want to use the
11789 DBusMessageHandler object. Probably
11790 dbus_connection_open_with_g_main_loop()
11791 and dbus_connection_setup_g_main_loop() or something like that
11792 (but think of better names...) that just create a connection
11793 that has watch/timeout functions etc. already set up.
11795 * dbus/dbus-connection.c
11796 (dbus_connection_send_message_with_reply): new function just to
11797 show how the message handler helps us deal with replies.
11799 * dbus/dbus-list.c (_dbus_list_remove_last): new function
11801 * dbus/dbus-string.c (_dbus_string_test): free a string that
11804 * dbus/dbus-hash.c: use memory pools for the hash entries
11805 (rebuild_table): be more paranoid about overflow, and
11806 shrink table when we can
11807 (_dbus_hash_test): reduce number of sprintfs and write
11808 valid C89. Add tests for case where we grow and then
11809 shrink the hash table.
11811 * dbus/dbus-mempool.h, dbus/dbus-mempool.c: memory pools
11813 * dbus/dbus-connection.c (dbus_connection_register_handler)
11814 (dbus_connection_unregister_handler): new functions
11816 * dbus/dbus-message.c (dbus_message_get_name): new
11818 * dbus/dbus-list.c: fix docs typo
11820 * dbus/dbus-message-handler.h, dbus/dbus-message-handler.c:
11821 an object representing a handler for messages.
11823 2002-12-16 Anders Carlsson <andersca@codefactory.se>
11825 * glib/dbus-glib.h:
11826 * glib/dbus-gthread.c: (dbus_gthread_init):
11827 Don't use the gdbus prefix for public functions.
11829 2002-12-16 Anders Carlsson <andersca@codefactory.se>
11833 Add GLib checks and fixup .pc files
11835 * glib/Makefile.am:
11836 * glib/dbus-glib.h:
11837 * glib/dbus-gmain.c: (gdbus_connection_prepare),
11838 (gdbus_connection_check), (gdbus_connection_dispatch),
11839 (gdbus_add_connection_watch), (gdbus_remove_connection_watch),
11840 (dbus_connection_gsource_new):
11841 * glib/dbus-gthread.c: (dbus_gmutex_new), (dbus_gmutex_free),
11842 (dbus_gmutex_lock), (dbus_gmutex_unlock), (dbus_gthread_init):
11843 * glib/test-dbus-glib.c: (message_handler), (main):
11846 2002-12-15 Harri Porten <porten@kde.org>
11848 * autogen.sh: check for libtoolize before attempting to use it
11850 * dbus/dbus-transport-unix.c: include <sys/time.h> for timeval
11853 * .cvsignore: ignore more stamp files
11855 * dbus/dbus-watch.c (_dbus_watch_list_new): fixed doc error
11857 * test/Makefile.am: added -I$(top_srcdir) to be able to compile
11858 without make install.
11860 2002-12-15 Havoc Pennington <hp@pobox.com>
11862 * dbus/dbus-threads.c: add thread stubs that a higher library
11863 layer can fill in. e.g. the GLib wrapper might fill them in with
11864 GThread stuff. We still need to use this thread API to
11865 thread-safe-ize the library.
11867 2002-12-12 Havoc Pennington <hp@pobox.com>
11869 * dbus/dbus-transport-unix.c, dbus/dbus-server-unix.c: use the
11870 below new interfaces and include fewer system headers.
11872 * dbus/dbus-sysdeps.c (_dbus_read): new function
11873 (_dbus_write): new function
11874 (_dbus_write_two): new function
11875 (_dbus_connect_unix_socket): new function
11876 (_dbus_listen_unix_socket): new function
11878 * dbus/dbus-message-internal.h: change interfaces to use
11881 2002-12-11 Havoc Pennington <hp@pobox.com>
11883 * dbus/dbus-types.h: add dbus_unichar
11885 * dbus/dbus-internals.c (_dbus_verbose): use _dbus_getenv
11887 * dbus/dbus-connection.c (dbus_connection_send_message): return
11890 * dbus/dbus-transport.c: include dbus-watch.h
11892 * dbus/dbus-connection.c: include dbus-message-internal.h
11894 * HACKING: add file with coding guidelines stuff.
11896 * dbus/dbus-string.h, dbus/dbus-string.c: Encapsulate all string
11897 handling here, for security purposes (as in vsftpd). Not actually
11898 using this class yet.
11900 * dbus/dbus-sysdeps.h, dbus/dbus-sysdeps.c: Encapsulate all
11901 system/libc usage here, as in vsftpd, for ease of auditing (and
11902 should also simplify portability). Haven't actually moved all the
11903 system/libc usage into here yet.
11905 2002-11-25 Havoc Pennington <hp@pobox.com>
11907 * dbus/dbus-internals.c (_dbus_verbose): fix to not
11908 always print the first verbose message.
11910 2002-11-24 Havoc Pennington <hp@pobox.com>
11912 * test/echo-client.c, test/echo-server.c: cheesy test
11915 * configure.in (AC_CHECK_FUNCS): check for writev
11917 * dbus/dbus-message.c (_dbus_message_get_network_data): new
11920 * dbus/dbus-list.c (_dbus_list_foreach): new function
11922 * dbus/dbus-internals.c (_dbus_verbose): new function
11924 * dbus/dbus-server.c, dbus/dbus-server.h: public object
11925 representing a server that listens for connections.
11927 * dbus/.cvsignore: create
11929 * dbus/dbus-errors.h, dbus/dbus-errors.c:
11930 public API for reporting errors
11932 * dbus/dbus-connection.h, dbus/dbus-connection.c:
11933 public object representing a connection that
11934 sends/receives messages. (Same object used for
11935 both client and server.)
11937 * dbus/dbus-transport.h, dbus/dbus-transport.c:
11938 Basic abstraction for different kinds of stream
11939 that we might read/write messages from.
11941 2002-11-23 Havoc Pennington <hp@pobox.com>
11943 * dbus/dbus-internals.h (_DBUS_INT_MAX): add _DBUS_INT_MIN
11946 * dbus/dbus-test.c (main): add list test, and include
11947 dbus-test.h as intended
11949 * dbus/dbus-hash.c (_dbus_hash_table_remove_string)
11950 (_dbus_hash_table_remove_int): return value indicates
11951 whether the entry existed to remove
11953 * dbus/dbus-list.c: add linked list utility class,
11954 with docs and tests
11956 * dbus/dbus-hash.c: add TODO item about shrinking the hash bucket
11959 2002-11-23 Havoc Pennington <hp@pobox.com>
11961 * Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/
11962 DBUS_END_DECLS to nothing, that should fix this once and for all
11964 * Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES
11966 * dbus/dbus-message.c, dbus/dbus-hash.c:
11967 add some missing @brief
11969 2002-11-23 Havoc Pennington <hp@pobox.com>
11971 * dbus/dbus-message.h: put semicolons after DEBUG_BEGIN_DECLS
11972 to avoid confusing Doxygen
11974 * dbus/dbus-hash.c: @} not }@
11976 * dbus/dbus-message.c (struct DBusMessage): split out
11979 2002-11-23 Havoc Pennington <hp@pobox.com>
11981 * configure.in: pile on more warning flags if using gcc
11983 * Doxyfile.in (EXTRACT_STATIC): set to NO, so we don't have
11984 to document static functions
11986 * configure.in: add summary to end of configure so it
11987 looks nice and attractive
11989 * dbus/dbus-hash.c: finish implementation and write unit
11992 * configure.in: add --enable-tests to enable unit tests
11994 * dbus/dbus-test.c: test program to run unit tests
11995 for all files in dbus/*, initially runs a test for
11998 * dbus/dbus-internals.h: file to hold some internal utility stuff
12000 2002-11-22 Havoc Pennington <hp@redhat.com>
12002 * dbus/dbus-hash.c: copy in Tcl hash table, not yet
12003 "ported" away from Tcl
12005 * dbus/dbus-types.h: header for types such as dbus_bool_t
12007 2002-11-22 Havoc Pennington <hp@redhat.com>
12009 * dbus/dbus.h: fixups for doc warnings
12011 * Doxyfile.in (FILE_PATTERNS): we need to scan .h to pick up
12013 (QUIET): make it quiet so we can see warnings
12015 * dbus/dbus-memory.c: teach D-BUS to allocate and free memory
12017 2002-11-22 Havoc Pennington <hp@redhat.com>
12019 * Makefile.am: include "Doxyfile" target in all-local
12021 * configure.in: generate the Doxyfile
12023 * Doxyfile.in: move Doxyfile here, so we can use
12024 configure to generate a Doxyfile with the right
12025 version number etc.
12027 2002-11-22 Havoc Pennington <hp@redhat.com>
12029 * dbus/dbus-message.c: move inline docs into .c file
12031 * Doxyfile (OUTPUT_DIRECTORY): move output to doc/api
12032 so all docs are under doc/
12033 (MAN_EXTENSION): generate man pages. Use extension
12034 ".3dbus" which matches ".3qt" on my system,
12035 I guess this is OK, I don't know really.
12036 (FILE_PATTERNS): look for .c files not .h, makes sense
12037 for plain C I think
12039 2002-11-22 Havoc Pennington <hp@pobox.com>
12041 * Makefile.am (SUBDIRS): rename subdir "server" to "bus"
12042 because any app can be a server, and any app can be a client,
12043 the bus is a special kind of server.
12045 Thu Nov 21 23:35:31 2002 Zack Rusin <zack@kde.org>
12047 * Doxyfile : adding. Still needs Makefile rules to be generated
12048 automatically (just run "doxygen" in the toplevel dir for now to
12051 * dbus/dbus-message.h : Adding sample docs (javadoc since
12052 resembles gtk-doc a little more)
12054 * dbus/dbus.h : Adding sample docs
12056 2002-11-21 Havoc Pennington <hp@redhat.com>
12058 * dbus/Makefile.am (INCLUDES): define DBUS_COMPILATION
12059 so we can allow ourselves to include files directly,
12060 instead of having to use dbus.h
12062 * dbus/dbus.h: fill in
12064 * dbus/dbus-message.h: sketch out a sample header file.
12065 Include griping if you include it directly instead of
12068 * dbus/dbus-macros.h: new file with macros for extern "C",
12069 TRUE/FALSE, NULL, etc.
12071 * doc/file-boilerplate.c: put include guards in here
12073 2002-11-21 Havoc Pennington <hp@redhat.com>
12075 * doc/file-boilerplate.c: include both AFL and GPL boilerplate.
12077 * COPYING: include the GPL as well, and license code
12078 under both AFL and GPL.
12080 2002-11-21 Havoc Pennington <hp@redhat.com>
12082 * acconfig.h: get rid of this
12084 * autogen.sh (run_configure): add --no-configure option
12086 * configure.in: remove AC_ARG_PROGRAM to make
12087 autoconf complain less. add AC_PREREQ.
12088 add AC_DEFINE third arg.
12090 2002-11-21 Anders Carlsson <andersca@codefactory.se>
12093 Fix references so we can distcheck.
12095 2002-11-21 Havoc Pennington <hp@redhat.com>
12097 * Initial module creation