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