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