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