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