* dbus/dbus-connection.h: remove connection_disconnect and replace with
[platform/upstream/dbus.git] / ChangeLog
1 2006-07-07  John (J5) Palmieri  <johnp@redhat.com>
2
3         * dbus/dbus-connection.h: remove connection_disconnect and replace with
4         connection_close
5
6         * dbus/dbus-connection.c: include dbus-bus.h
7         (_dbus_connection_read_write_dispatch): make static
8
9 2006-07-07  John (J5) Palmieri  <johnp@redhat.com>
10
11         * dbus/dbus-connection.c (dbus_connection_close): removed deprecated
12         function
13         (dbus_connection_dispatch): On disconnect unref any shared connections
14
15         * dbus/dbus-bus.c (_dbus_bus_check_connection_and_unref): new function
16         for cleaning up shared connections on disconnect
17         (internal_bus_get): get a hard refrence to shared connections when
18         they are created
19         
20         * doc/TODO: Remove items which are no longer relevent or have been fixed
21         Split 1.0 todo items with a 0.90 freeze todo list
22  
23 2006-06-14  Ross Burton  <ross@openedhand.com>
24
25         * glib/dbus-gobject.c:
26         Free a leaking GArray (surely not!) in dbus_g_method_return.
27
28 2006-06-14  Ross Burton  <ross@openedhand.com>
29
30         * tools/Makefile.am:
31         * tools/dbus-monitor.c:
32         Don't use the GLib bindings in dbus-monitor (patch from Ralf
33         Habacker).
34         
35 2006-06-14  Ross Burton  <ross@openedhand.com>
36
37         * tools/dbus-print-message.c:
38         Also print the object path when outputting signals or method calls.
39
40 2006-06-13  Thiago Macieira <thiago.macieira@trolltech.com>
41
42         * qt/src/Makefile.am: install the qdbus.h header.
43         This allows people to actually use the installed code.
44
45 2006-06-12  Ross Burton  <ross@openedhand.com>
46
47         * glib/dbus-gproxy.c:
48         Don't leak a GArray when firing signals (thank Rob Taylor for review).
49
50 2006-06-12  Thiago Macieira <thiago.macieira@trolltech.com>
51
52         * Released 0.62
53
54 2006-06-12  Thiago Macieira <thiago.macieira@trolltech.com>
55
56         * dbus/dbus-arch-deps.h.in: Remove spurious semi-colons that
57         break pedantic builds. Closes bug 6043 (patch approved by
58         Havoc back in February).
59
60 2006-06-12  Thiago Macieira <thiago.macieira@trolltech.com>
61
62         * qt/src/qdbusintegrator.cpp: Fix bug in parsing async methods
63         that took a QDBusMessage parameter.
64         * qt/src/qdbusbus.h: Add a default flag for RequestName.
65         * qt/tools/dbus.cpp: Don't use automatic call because we might
66         be calling an async method: request a reply.
67
68 2006-06-11  Thiago Macieira <thiago.macieira@trolltech.com>
69
70         * test/qt/*: Update the testcases, including testing the new
71         functionality of sending null QByteArray and QString over the
72         bus. Add new headertest test and restore the old
73         qdbusxmlparser test.
74
75 2006-06-11  Thiago Macieira <thiago.macieira@trolltech.com>
76
77         * qt/tools/dbuscpp2xml.cpp: Compile on Windows.
78         * qt/tools/dbusidl2cpp.cpp: Add missing newline.
79
80         * qt/examples/Makefile.am:
81         * qt/examples/chat.h: Use UI-generated files with the ui_*.h
82         form.
83
84         * qt/src/qdbusmarshall.cpp: Allow sending of QString() and
85         QByteArray() (nulls) over the bus.
86         * qt/src/qdbusabstractinterface.cpp: Use the correct variable,
87         the one that has the signature suffix stripped.
88         * qt/src/qdbusreply.h: Make some methods const.
89
90 2006-06-09  Thiago Macieira <thiago.macieira@trolltech.com>
91
92         Patch from Timo Hoenig <thoenig@suse.de>.
93
94         * qt/dbus/Makefile.am: New file.  Fix "make dist", add all headers
95         required during build to EXTRA_DIST.
96         * qt/src/Makefile.am: Fix "make dist", add 'qdbus.h' to EXTRA_DIST.
97         * qt/Makefile.am: Fix "make dist", add 'dbus' to DIST_SUBDIRS.
98         * configure.in: Fix "make dist", take care that the Makefile for
99         qt/dbus is being generated.
100
101 2006-06-07  John (J5) Palmieri  <johnp@redhat.com>
102
103         * bus/bus.c: Fix eavesdropping on method calls
104
105 2006-06-07  John (J5) Palmieri  <johnp@redhat.com>
106
107         * configure.in:
108         * dbus/dbus-userdb-util.c:
109         Add Solaris console owner patch from Artem Kachitchkine
110
111 2006-06-07  Thiago Macieira <thiago.macieira@trolltech.com>
112
113         * qt/Makfile.am:
114         * qt/src/Makefile.am: Fix the EXTRA_DIST after the
115         reorganisation. Thanks to Timo Hoenig for pointing this out.
116
117 2006-06-06  Robert McQueen  <robot101@debian.org>
118
119         * glib/dbus-gtype-specialized.c: Fix obvious leak of GArray in every
120           call to dbus_g_type_get_struct.
121
122 2006-06-06  Robert McQueen  <robot101@debian.org>
123
124         * glib/dbus-gvalue-utils.c: Fix the failing test where static string
125           pointers were put into a GPtrArray-based specialised collection, and
126           then freed along with the array. GValues which you add into
127           collections or maps which have the NOCOPY flag set are assumed to not
128           belong to the caller, so rather than the existing pointer-stealing
129           semantics, they are copied instead. Given that the main consumers of
130           this abstraction are the bindings themselves, I don't think this is
131           too bad, but others should watch their choice of take vs set_static.
132
133 2006-06-06  Robert McQueen  <robot101@debian.org>
134
135         * glib/dbus-gvalue-utils.c: Spotted a warning about the return value
136           of g_slist_prepend not being used. Fixed copying of slist-based
137           specialised collections, then wrote a test case and found that it was
138           all broken. Went on to fix iterating and appending too. Good thing
139           nobody uses this code yet.
140
141 2006-06-06  Robert McQueen  <robot101@debian.org>
142
143         * glib/dbus-gvalue-utils.c: Remove duplicated code by having all of
144           the iterators use gvalue_take_ptrarray_value (the GValues themselves
145           are discarded without unsetting, so it makes no difference whether
146           we take or set_static). Remove cases for G_TYPE_POINTER because
147           there really is nothing useful we can do with them in our
148           specialised types - we *need* boxed copy/free functions at the very
149           least.
150
151 2006-06-05  Thiago Macieira <thiago.macieira@trolltech.com>
152
153         * qt/dbus: Add directory. I had forgotten to add this
154         yesterday after the move...
155
156         * qt/examples/Makefile.am:
157         * qt/examples/dbus.cpp: Moved to qt/tools/dbus.cpp.
158
159         * qt/tools/Makefile.am:
160         * qt/tools/dbus.cpp: Moved from qt/examples/dbus.cpp.
161         Added feature to get and set properties.
162         Added validation of service, object path and interface names.
163
164         * qt/tools/dbusidl2cpp.cpp: Two new features:
165         1) Allow specifying both the header and the source file names,
166         by separating them with a colon.
167         2) Don't write an interface output if the -p switch wasn't
168         given, but the -a was.
169
170         * qt/src/*: Fix usage of Iterators and ConstIterators.
171         Fix shadowing of variables by other variables (-Wshadow).
172         Fix keyword-cleanliness in headers.
173         Fix ASCII-cast (QLatin1String, QLatin1Char).
174         Fix validation of member names.
175         Add extra checking of introspection data during XML parsing.
176         Various bug fixes.
177
178 2006-06-04  Thiago Macieira <thiago.macieira@trolltech.com>
179
180         * dbus/Makefile.am:
181         * dbus/qdbus.h: Remove unnecessary file. This is mirrored into
182         qt/dbus/qdbus.h now.
183
184 2006-06-04  Thiago Macieira <thiago.macieira@trolltech.com>
185
186         * configure.in: Make --disable-qt actually do
187           something. Patch inspired by Zack Rusin.
188
189 2006-06-04  Thiago Macieira <thiago.macieira@trolltech.com>
190
191         * qt/: Update to Subversion r548032.
192         This includes a big reorganisation of the files inside the
193         subdir.
194
195 2006-05-30  Sjoerd Simons  <sjoerd@luon.net>
196
197         * dbus/dbus-sysdeps.c: Make tcp socket connection error somewhat more
198         clear:  
199         "Failed to connect to socket <host>:<port> <error>" instead of
200         "Failed to connect to socket <host>: <error>:<port>"
201
202         * dbus/dbus-transport-unix.c: Fix crash when no host option is given
203         for a tcp transport. 
204
205 2006-05-29  Thiago Macieira  <thiago.macieira@trolltech.com>
206
207         * qt/*: Update the QtDBus bindings up to revision 546310 in
208         Subversion.
209         This adds the dbuscpp2xml tool, that parses a C++ header and
210         outputs a D-BUS Introspection XML.
211
212 2006-05-21  Havoc Pennington  <hp@redhat.com>
213
214         * glib/dbus-gproxy.c: Put in a pile of assertions that the proxy name
215         is not NULL when it shouldn't be. Also a couple of possible fixes
216         for #4637 though I don't understand why the bug happens, to be
217         honest... also the object constructor has an assert name != NULL
218         and the name is only currently NULL for peer-to-peer proxies that 
219         I don't think anyone uses? So it should be asserting.
220         Anyway, for now at least see if we get an earlier assertion failure.
221
222         * glib/dbus-gvalue-utils.c: Put in a couple of assertions for
223         apparently broken code to be sure the tests fail and someone 
224         will fix them...
225
226 2006-05-07  Thiago Macieira  <thiago.macieira@trolltech.com>
227
228         * qt/qdbusmarshall.cpp: Fix a problem of demarshalling lists
229         and arrays when they had a single element: has_next returns
230         false, even before you read the element. So, instead, check
231         the array length.
232
233 2006-05-06  Thiago Macieira  <thiago.macieira@trolltech.com>
234
235         * qt/qdbusmessage.cpp:
236         * qt/qdbustypehelper_p.h:
237         * qt/qdbusintegrator.cpp: gcc 3.4 doesn't like Q_FOREACH when
238         the list is a const-reference
239
240 2006-05-03  John (J5) Palmieri  <johnp@redhat.com>
241
242         * Adding old doc patch that never got applied
243         
244         * dbus/bus.c (dbus_bus_add_match): Add documentation
245
246         * doc/dbus-specification.xml: Add documentation for the match rules
247           and the AddMatch and RemoveMatch methods
248
249 2006-05-02  Thiago Macieira  <thiago.macieira@trolltech.com>
250
251         * qt/dbusidl2cpp.cpp: There's no callAsync. Use the correct
252         call (r535506)
253
254         * qt/dbusidl2cpp.cpp:
255         * qt/qdbusabstractadaptor.cpp:
256         * qt/qdbusabstractadaptor.h: Make QDBusAdaptorConnector be a
257         sibling of the QDBusAbstractAdaptor objects instead of the
258         parent. (r535848)
259
260         * qt/dbusidl2cpp.cpp:
261         * qt/qdbusabstractinterface.cpp:
262         * qt/qdbusabstractinterface.h:
263         * qt/qdbusabstractinterface_p.h:
264         * qt/qdbusinterface.cpp: Make properties in interfaces
265         actually work. The code that was generated would not compile,
266         due to moc calls to functions that did not exist. They now
267         shall. (r536571)
268
269 2006-04-30  Thiago Macieira  <thiago.macieira@trolltech.com>
270
271         * Makefile.am:
272         * configure.in:
273         * dbus-qt4-1.pc.in: Add a pkg-config file for libdbus-qt4-1.
274         Thanks to Brad Hards for providing the patch
275
276 2006-04-29  Thiago Macieira  <thiago.macieira@trolltech.com>
277
278         * qt/dbusidl2cpp.cpp: There's no callAsync. Use the correct
279         call. (r535506)
280
281 2006-04-29  Thiago Macieira  <thiago.macieira@trolltech.com>
282
283         * qt/examples/dbus.cpp: Enhance error messages and use
284         QDBusInterfacePtr.
285
286 2006-04-29  Thiago Macieira  <thiago.macieira@trolltech.com>
287
288         * qt/qdbusinterface.h: Rename QDBusRef to QDBusInterfacePtr
289         and disable the copy operators. (r533772, r534746)
290
291         * qt/qdbuserror.h: Remove the automatic cast to bool. (r533929)
292
293         * qt/qdbusabstractinterface.cpp:
294         * qt/qdbusabstractinterface.h: Change the default call mode to
295         not use the event loop. Add convenience call() methods that
296         take a CallMode parameter. (r534042)
297
298         * qt/qdbusconnection.h: Change the default call mode to not
299         use the event loop. (r534042)
300
301         * qt/qdbusinterface.cpp:
302         * qt/qdbusinterface.h: Add a method to tell us if the
303         interface is valid (since we don't return a null pointer
304         anymore) (r534099)
305
306         * qt/qdbusinterface_p.h: Don't crash if metaObject is 0
307         (r534101)
308
309         * qt/qdbusinternalfilters.cpp: Decouple the introspection
310         function in two so taht we get the chance to introspect
311         without having a QDBusMessage (r534102)
312
313         * qt/qdbusbus.h:
314         * qt/qdbusconnection.cpp:
315         * qt/qdbusconnection_p.h:
316         * qt/qdbusintegrator.cpp: Keep a list of our own names to
317         avoid a round-trip to the server when attempting to introspect
318         one of our own objects. Also make sure the filter functions
319         match the empty interface as well. (r534108)
320         Don't keep the connection names. Instead, trust the unique
321         connection name (r534111)
322         Remove event loop usage (r534112)
323
324 2006-04-29  Thiago Macieira  <thiago.macieira@trolltech.com>
325
326         * qt/qdbusintegrator.cpp: Fix assertion failure spotted by
327         Brad Hards.
328
329 2006-04-28  Robert McQueen  <robot101@debian.org>
330
331         * glib/dbus-gproxy.c: Fix properties so that they can be given in
332         any order, making it easier for people who inherit from this
333         object.
334
335 2006-04-28  Robert McQueen  <robot101@debian.org>
336
337         * glib/dbus-gvalue-utils.c: Patch from Jakub Stachowski to fix leaking
338         of memory from within pointer arrays and lists. Fixes bug #6300.
339
340 2006-04-28  Robert McQueen  <robot101@debian.org>
341
342         * glib/dbus-gvalue.c: Patch from Jakub Stachowski to fix a leak in
343         generating struct signatures. Fixes bug #6083.
344
345 2006-04-28  Robert McQueen  <robot101@debian.org>
346
347         * qt/Makefile.am: Tweak CLEANFILES from qdbusconnection.moc
348         to qdbusconnection_p.moc.
349
350 2006-04-24 John (J5) Palmieri <johnp@redhat.com>
351
352         * README, INSTALL: Doc fixes
353         Patch from Brad Hards <bradh at frogmouth.net>
354
355 2006-04-23  Thiago Macieira  <thiago.macieira@trolltech.com>
356
357         * qt/examples/dbus.cpp: Use the new merged-interface mode for
358         the dynamic meta object. No need to guess which interface to
359         call.
360
361 2006-04-23  Thiago Macieira  <thiago.macieira@trolltech.com>
362
363         * qt/qdbusconnection_p.h:
364         * qt/qdbusmetaobject.cpp:
365         * qt/qdbusmetaobject_p.h:
366         * qt/qdbusintegrator.cpp: Use the new merged-interface mode
367         for the dynamic meta object. No need to guess which
368         interface to call.
369         * qt/qdbusabstractinterface_p.h:
370         * qt/qdbusconnection.cpp:
371         * qt/qdbusintegrator.cpp:
372         * qt/qdbusinterface.cpp:
373         * qt/qdbusinterface.h: Make findInterface always return a non-null pointer.
374         Add a QDBusRef that looks and behaves like DCOPRef.
375
376 2006-04-23  Thiago Macieira  <thiago.macieira@trolltech.com>
377
378         * dbus/dbus-connection.c: Interfaces are optional in method
379         calls, so don't give up if the interface parameter is NULL.
380         Patch reviewed by Havoc Pennington.
381
382 2006-04-23  Thiago Macieira  <thiago.macieira@trolltech.com>
383
384         * qt/qdbusreply.h: Add default constructor and operator=
385           (r532625)
386         * qt/qdbustypehelper_p.h: Use a clean namespace: no foreach()
387           in public headers (r532952)
388         * qt/qdbusabstractinterface.cpp:
389         * qt/qdbusabstractinterface_p.h: Add the AutoDetect mode and
390           make it the default (r532951)
391
392 2006-04-19  John (J5) Palmieri  <johnp@redhat.com>
393
394         * dbus/dbus-connection.c: Fix asserts
395         Patch from Tim Moloney <t.moloney at verizon.net>
396
397 2006-04-19  John (J5) Palmieri  <johnp@redhat.com>
398
399         * mono/Connection.cs, mono/Message.cs: Check Target type
400         Patch from Aaron Bockover (abockover at novell.com)
401
402 2006-04-13  Thiago Macieira  <thiago.macieira@trolltech.com>
403
404         * INSTALL: fine-tune the requirements for the Qt4 binding.
405
406 2006-04-16  Daniel P. Berrange  <dan@berrange.com>
407
408         * tools/dbus-print-message.c: Added support for printing of all 
409           remaining data types. Fixed logic for indentation of compound
410           data types.
411         
412 2006-04-15  Daniel P. Berrange  <dan@berrange.com>
413
414         * INSTALL: fill out content of file providing DBus specific
415           build installations, followed by generic Auto* INSTALL file
416           content
417         
418 2006-04-13  Thiago Macieira  <thiago.macieira@trolltech.com>
419
420         * qt/qdbusintegrator.cpp: Work around g++ 3.3 bug.
421           Patch by Stefan Eilers. (r529537)
422
423 2006-04-13  Thiago Macieira  <thiago.macieira@trolltech.com>
424
425         * qt/qdbusinternalfilters.cpp: Don't show the parent's
426           contents (r528208)
427
428 2006-04-10  Thiago Macieira  <thiago.macieira@trolltech.com>
429
430         * qt/Makefile.am: fix the dependency for
431           qdbusconnection_p.moc. It's included in qdbusintegrator.cpp,
432           not in qdbusconnection.cpp.
433           Thanks to Jakub Stachowski <stachowski@hypair.net> for
434           spotting this.
435
436 2006-04-10  Thiago Macieira  <thiago.macieira@trolltech.com>
437
438         * qt/examples/listnames.cpp:
439         * qt/examples/Makefile.am: Three ways to list the names on the
440           bus.
441
442 2006-04-10  Thiago Macieira  <thiago.macieira@trolltech.com>
443
444         * test/qt/tst_hal.cpp: Remove the waiting, since it's not
445           needed anymore. Requires Qt 4.1.3 to work properly. (r528148)
446
447 2006-04-10  Thiago Macieira  <thiago.macieira@trolltech.com>
448
449         Merge from Subversion:
450         * qt/qt-dbus.qdocconf: Update Trolltech's webpage link to
451           something that exists (r526315)
452         * qt/qdbusinternalfilters.cpp: Correctly detect non-scriptable
453           slots/signals (r526316)
454         * qt/qdbusinternalfilters.cpp: Fix the setProperty call and
455           also return an unknown-method error if the parameters don't
456           match for org.freedesktop.DBus.Properties. (r526842)
457         * qt/examples/dbus.cpp: Allow passing of QVariants (r526843)
458         * qt/qdbusintegrator.cpp: Restore the proper order of
459           delivery: don't make method returns be delivered on priority
460           (r528150)
461
462 2006-03-28  Thiago Macieira  <thiago.macieira@trolltech.com>
463
464         * configure.in qt/Makefile.am: add qt/examples
465         * qt/examples: Add QtDBus example programs:
466           - hello: Hello, World
467           - ping: Simple method-calling program
468           - pong: Simple object-exporting program (not using adaptors)
469           - complexping: Interactive method-calling program 
470                 (also gets and sets properties).
471           - complexpong: Sample program exporting methods, signals and
472                 properties, using adaptors.
473           - dbus: Simple implementation of a generic method-calling
474                 program, similar to 'dbus-send', but with semantics
475                 similar to 'dcop'.
476           - chat: Simplistic chat program, implemented using signals
477                 and the system bus. Looks like IRC.
478
479 2006-03-28  Thiago Macieira  <thiago.macieira@trolltech.com>
480
481         * configure.in: Detect QtGui (necessary for one of the
482           example programs). Note: this increases the minimum required
483           version of Qt to 4.1.3.
484
485 2006-03-28  Thiago Macieira  <thiago.macieira@trolltech.com>
486
487         * test/qt/*: Sync with KDE Subversion revision 523647.
488         Update the testcases to the new API. Remove testcases for
489         classes that are no longer public or have been removed.
490
491 2006-03-28  Thiago Macieira  <thiago.macieira@trolltech.com>
492
493         * qt/*: 
494         * dbus/qdbus.h: Sync with KDE Subversion revision
495         523647. Hopefully, this will be the last of the
496         source-incompatible changes. Documentation has been improved;
497         support for QList<basic-types> has been added; QDBusObject is
498         gone; QDBus(Abstract)Interface is now a QObject with
499         auto-generated meta-object; QDBusIntrospection is marked
500         private, since QMetaObject can be used now; lots of bugfixes.
501
502 2006-03-16  John (J5) Palmieri  <johnp@redhat.com>
503
504         Patch from Milosz Derezynski <internalerror at gmail.com>
505         
506         * configure.in:
507         Output the service directory in the configure summary
508
509         * dbus-1.pc.in:
510         Add session_bus_services_dir
511
512 2006-03-10  Ross Burton  <ross@openedhand.com>
513
514         * tools/dbus-print-message.c:
515         Add support for object paths and signatures.
516
517 2006-03-06  Sjoerd Simons <sjoerd@luon.net>
518
519         * bus/bus.c: (bus_context_reload_config): Flush the user database cache on
520         config reload.
521         * bus/dbus-daemon.1.in: Also note that SIGHUP flushes the user/group
522         information caches
523         * dbus/dbus-hash.c: (_dbus_hash_table_remove_all): 
524         * dbus/dbus-hash.h: Add function to remove all entries from a hash table
525         * dbus/dbus-userdb.c: (_dbus_user_database_flush):
526         * dbus/dbus-userdb.h: Add function to flush all user/group information
527         caches.
528
529 2006-03-06  Thiago Macieira  <thiago.macieira@trolltech.com>
530
531         * qt/dbusidl2cpp.cpp:
532         * qt/Makefile.am: add the dbusidl2cpp tool, the replacement
533         for dcopidl2cpp, found in the KDE installations (or the more
534         modern kalyptus): generate Qt4 C++ code for the input XML
535         introspection. Currently no IDL parsing.
536
537 2006-03-06  Thiago Macieira  <thiago.macieira@trolltech.com>
538
539         * test/qt/*: Update the self-tests.
540
541 2006-03-06  Thiago Macieira  <thiago.macieira@trolltech.com>
542
543         * qt/*: 
544         * dbus/qdbus.h: Sync with KDE Subversion revision 516237. This
545         represents the first feature-complete version of the Qt4
546         bindings since I took ove maintainership.
547
548 2006-03-06  Thiago Macieira  <thiago.macieira@trolltech.com>
549
550         * qt/Doxyfile: Adding a Doxyfile for the Qt4 bindings
551         dir. This is C++, so we can't use the DBus ones.
552
553 2006-03-02  John (J5) Palmieri  <johnp@redhat.com>
554
555         * python/dbus_bindings.pyx: Remove refrence to sys/cdefs.h
556         (Patch from Artem Kachitchkine <Artem.Kachitchkin at Sun.COM>)
557
558 2006-03-02  John (J5) Palmieri  <johnp@redhat.com>
559
560         * dbus/dbus-connection.c: 
561         (_dbus_connection_block_pending_call):
562         Check to see if our data has already been read off the connection
563         by another blocking pending call before we block in poll.
564         (check_for_reply_and_update_dispatch_unlocked):
565         Code taken from _dbus_connection_block_pending_call - checks for
566         an already read reply and updates the dispatch if there is one.
567
568         * test/name-test/test-pending-call-dispatch.c:
569         New test for making sure we don't get stuck polling a 
570         dbus connection which has no data on the socket when
571         blocking out of order on two or more pending calls.
572
573 2006-02-28  Thiago Macieira <thiago.macieira@trolltech.com>
574
575         * qt/Makefile.am: Patch by Sjoerd Simons. More .moc issues:
576         make/automake don't detect that we're talking about the same
577         .lo file if I specify the full path to the source files.
578
579 2006-02-26  Havoc Pennington  <hp@redhat.com>
580
581         * bus/dbus-daemon.1.in: improve the language in a couple spots I noticed
582
583         * dbus/dbus-bus.c (internal_bus_get): in the error message if the
584         session bus variable is unset, suggest "man dbus-launch" and "man
585         dbus-daemon" to figure out how to fix the problem
586
587 2006-02-25  Havoc Pennington  <hp@redhat.com>
588
589         * glib/dbus-glib-tool.c (usage): fix up the usage message, someone
590         should make this thing use the new glib options parser
591
592 2006-02-25  Thiago Macieira <thiago.macieira@trolltech.com>
593
594         * qt/Makefile.am: Patch by Sjoerd Simons. Fix the path to the
595         .lo files taking moc sources.
596
597 2006-02-25  Havoc Pennington  <hp@redhat.com>
598
599         * dbus/dbus.h, dbus/Makefile.am: add dbus-signature.h to dbus.h
600         and install it as a public header
601
602 2006-02-24  John (J5) Palmieri  <johnp@redhat.com>
603
604         * Released 0.61
605
606 2006-02-24  John (J5) Palmieri  <johnp@redhat.com>
607         
608         * proxies.py: Fix the callchain
609
610 2006-02-24  John (J5) Palmieri <johnp@redhat.com>
611         
612         * patch from Sjoerd Simons <sjoerd at debian.org>:      
613
614         * dbus/dbus-sysdeps-util.c (_dbus_group_info_free): Moved to 
615         dbus/dbus-sysdeps.c
616
617         * dbus/dbus-userdb.c (_dbus_group_info_free_allocated): Don't
618         call _dbus_group_info_free_allocated which causes infinite loop,
619         correctly call _dbus_group_info_free
620
621 2006-02-20  Thiago Macieira <thiago.macieira@trolltech.com>
622
623         * qt/qdbusinterface_p.h:
624         * qt/qdbusinterface.cpp: Use the standard
625         org.freedesktop.DBus.Method.NoReply annotation for the "async"
626         calls instead of creating one for us.
627
628         * qt/qdbusconnection_p.h:
629         * qt/qdbusintegrator.cpp: Remove debugging code.
630
631         * qt/qdbusintegrator.cpp:
632         * qt/qdbusmessage.cpp:
633         * qt/qdbusmessage_p.h:
634         * qt/qdbusmessage.h: Change the behaviour of automatic
635         reply-sending: now a reply is always sent, unless the caller
636         didn't request one or if the user slot has already sent one.
637
638 2006-02-16  Robert McQueen  <robot101@debian.org>
639
640         * configure.in: Patch from Debian packages by Sjoerd Simons
641         <sjoerd@debian.org> to add --with-qt-moc and --with-qt3-moc
642         arguments so it's possible to build both bindings in the
643         same tree.
644
645         * qt/Makefile.am: Fix truncated value so that make dist works.
646
647 2006-02-16  Robert McQueen  <robot101@debian.org>
648
649         * acinclude.m4, configure.in: Patch from Brad Hards
650         <bradh@frogmouth.net> to avoid warnings from autoconf 1.9 by
651         improving quoting, re-ordering a few checks, and a few other
652         aesthetic tidy-ups.
653
654 2006-02-16  Robert McQueen  <robot101@debian.org>
655
656         * dbus/dbus-message.c (dbus_message_iter_get_fixed_array):
657         Patch from Rob Taylor <rob.taylor@collabora.co.uk> to correct a bogus
658         assertion that the next element to read from the iter is fixed in
659         size. This is not the case when you are at the end of the iter,
660         because the next element type is INVALID.
661
662         * dbus/dbus-string.c (_dbus_string_init_const_len): Correct a
663         a bogus assert which means that you may not initialise a 0-length
664         string unless you provide a non-NULL pointer. This prevented
665         you from marshalling messages containing zero-length arrays in
666         some cases.
667
668         * glib/dbus-gvalue.c (demarshal_collection_array): Another patch
669         from Rob to correct bogus asserts when trying to demarshal an
670         array and get_fixed_array got you 0 elements. Append nothing to
671         the GArray in this case.
672
673         * test/glib/test-dbus-glib.c: Add a test case for round-tripping
674         an empty array via the glib bindings. Without all of the above
675         patches, this new test fails.
676
677 2006-02-16  Robert McQueen  <robot101@debian.org>
678
679         * glib/dbus-gmain.c: Make the previous commit compile.
680
681         * python/_dbus.py, python/matchrules.py: Patch from Ole Andre
682         Ravnaas <ole.andre.ravnaas@collabora.co.uk> to allow you to
683         specify sender_keyword="foo", path_keyword="bar" when adding
684         a signal listener, so that you can bind to signals generically
685         but still do something useful in your callback.
686
687         * python/dbus_bindings.pyx: Demarshal the byte type as unsigned
688         chars so that they're not cast to chars and made negative. Thanks
689         to Jakub Stachowski for reporting this and testing the fix.
690
691 2006-02-15  John (J5) Palmieri  <johnp@redhat.com>
692
693         * dbus/dbus-glib.h:
694         * glib/dbus-gmain.h:
695         (dbus_g_connection_open): new method for openning
696         a connection to an arbitrary address in the glib bindings
697
698         * ChangeLog: checkin last entry which doesn't seem to be commited
699
700 2006-02-13  John (J5) Palmieri  <johnp@redhat.com>
701
702         * tools/dbus-launch.c: Fixed sh syntax output
703
704 2006-02-13  Robert McQueen  <robot101@debian.org>
705
706         * glib/dbus-binding-tool-glib.c, glib/dbus-gmain.c,
707         glib/dbus-gsignature.c, glib/dbus-gtype-specialized.c,
708         glib/dbus-gtype-specialized.h, glib/dbus-gvalue-utils.c,
709         glib/dbus-gvalue-utils.h, glib/dbus-gvalue.c:
710         Patch from Rob Taylor <rob.taylor@collabora.co.uk> to add a big
711         missing piece of the glib bindings jigsaw puzzle. This modifies
712         the existing specialised types to have N type parameters (rather
713         than the current 1 or 2 for arrays and dictionaries respectively).
714         You can then use this to get a glib type to represent any arbitrary
715         D-Bus struct type using dbus_g_type_get_struct. The only
716         implementation of these types is with GValueArrays as before,
717         but it's now possible to store these in arrays, emit them in
718         signals, etc.
719
720 2006-02-10  John (J5) Palmieri  <johnp@redhat.com>
721
722         * dbus/dbus-signature.c (dbus_signature_iter_recurse): Correctly
723         deal with nested arrays (Bug #5823) Patch by Thiago Macieira 
724         <thiago.macieira at trolltech.com>
725
726 2006-02-10  John (J5) Palmieri  <johnp@redhat.com>
727
728         * mono/doc/Makefile.am: Fix parallel make problem with mono-doc
729         (Bug #4213) Patch from Doug Goldstein <cardoe at gentoo.org>
730
731 2006-02-10  John (J5) Palmieri  <johnp@redhat.com>
732
733         * bus/connection.c (bus_connections_expect_reply): Make
734         pending reply limit not common to all connections (Bug #5416)
735         Patch from Kimmo Hämäläinen <kimmo.hamalainen at nokia.com>
736
737 2006-02-10  John (J5) Palmieri  <johnp@redhat.com>
738
739         * tools/dbus-launch.c: Fixed csh syntax output (Bug #5720)
740
741 2006-02-10  John (J5) Palmieri  <johnp@redhat.com>
742
743         * gcj/Makefile.am: point to correct jar command (Bug #4529)
744         patch from Doug Goldstein <cardoe at gentoo.org>
745
746 2006-02-09  Joe Shaw  <joeshaw@novell.com>
747
748         * mono/Arguments.cs: Fix a magic number in the mono bindings
749         that doesn't work on 64 bit arches.  Patch from Peter Johanson.
750
751 2006-01-27  Robert McQueen  <robot101@debian.org>
752
753         * glib/dbus-binding-tool-glib.[ch]: Patch based on Ricardo Kekki's
754         patch to use an annotation org.freedesktop.DBus.GLib.ClientCSymbol
755         when generating the client-side methods, instead of overloading
756         CSymbol which broke everything horribly. My apologies.
757
758 2006-01-27  Robert McQueen  <robot101@debian.org>
759
760         * glib/dbus-gtype-specialized.[ch], glib/dbus-gvalue-utils.c: Patch
761         by me and Rob Taylor to add a simple_free function to D-Bus map
762         and collection types, which allows those types which can be freed
763         with a GDestroyNotify (such as GHashTables and GArrays, but not
764         GPtrArrays) to be stored as the values in hashtables.
765
766         * test/glib/test-dbus-glib.c, test/glib/test-service-glib.{c,xml}:
767         Patch by Rob Taylor to add nested dicts to the glib tests to check
768         the above code works, and appears not to leak when called repeatedly.
769
770 2006-01-27  Robert McQueen  <robot101@debian.org>
771
772         * glib/dbus-gvalue.c (demarshal_valuearray): Patch from Rob Taylor
773         to free a D-Bus allocated string with dbus_free () instead of
774         g_free ().
775
776 2006-01-27  Iain Holmes  <iain@openedhand.com>
777
778         * glib/dbus-gproxy.c (dbus_g_proxy_dispose): Protect the dispose
779         method from being called multiple times.
780
781 2006-01-19  Robert McQueen  <robot101@debian.org>
782
783         * glib/dbus-binding-tool-glib.c: Patch from Rob Taylor
784         <rob.taylor@collabora.co.uk> to add support for generating bindings
785         to arrays that are represented as GPtrArrays rather than GArrays (ie
786         size-variable things, such as strings, objects, structs, etc).
787
788 2006-01-05  Robert McQueen  <robot101@debian.org>
789
790         * dbus/dbus-glib.h, glib/dbus-gproxy.c: Patch from Ricardo Kekki
791         <ricardo.kekki@movial.fi> to make it possible to inherit from
792         DBusGProxy, by splitting the DBusGProxy struct into a public part and
793         a private part, and moving the setting of the DBusGProxyManager into a
794         connection property, allowing proper GObject construction.
795
796 2006-01-05  Robert McQueen  <robot101@debian.org>
797
798         * glib/dbus-binding-tool-glib.c: Patch from Ricardo Kekki
799         <ricardo.kekki@movial.fi> to make dbus-binding-tool heed C symbol name
800         annotations when generating glib client bindings.
801
802 2005-12-19 John (J5) Palmieri  <johnp@redhat.com>
803
804         * dbus/dbus-shared.h: Call it shared constants instead of shared macros
805
806         * dbus/dbus-protocol.h: add DOxygen markup to quiet warnings
807
808 2005-12-19 John (J5) Palmieri  <johnp@redhat.com>
809
810         * dbus/dbus-shared.h: add DOxygen markup to quiet warnings
811
812 2005-12-19 John (J5) Palmieri  <johnp@redhat.com> 
813
814         * dbus/dbus-macros.h: correct DOxygen end of section (s/}@/@})
815
816 2005-12-19  Ross Burton  <ross@openedhand.com>
817
818         * doc/dbus-tutorial.xml:
819         Document the Glib client-side bindings, and list all possible annotations.
820
821 2005-12-19  John (J5) Palmieri  <johnp@redhat.com>
822
823         * dbus/bus.c (dbus_bus_release_name): Add documentation
824
825 2005-12-06  Robert McQueen  <robot101@debian.org>
826
827         * python/service.py: s/sucessful/successful/ so we're allocating to
828         and reading from the same variable. Oops.
829
830 2005-11-30  John (J5) Palmieri  <johnp@redhat.com>
831
832         * Released 0.60
833
834 2005-11-30  John (J5) Palmieri  <johnp@redhat.com>
835
836         * test/qt/Makefile.am: build from srcdir
837
838         * qt/qtconnection.cpp (requestName): Changed PROHIBIT_REPLACE to ALLOW_REPLACE
839         Note - this code is wrong and needs to be fixed by the Qt binding
840         developers.  The flags should be treated as bitfields and not enums.
841
842         * qt/qtconnection.h: Change ProhibitReplace to AllowReplace
843
844 2005-11-30  John (J5) Palmieri  <johnp@redhat.com>
845
846         * dbus/dbus-list.c (_dbus_list_insert_after_link, _dbus_list_insert_after, 
847           link_after): remove #ifdef DBUS_BUILD_TESTS since we use these methods 
848           in production code
849
850 2005-11-30  John (J5) Palmieri  <johnp@redhat.com>
851
852         * dbus/dbus-connection.c (dbus_connection_read_write): Add new
853         method for getting messages off the bus in the absence of a
854         mainloop.  This method is much like 
855         dbus_connection_read_write_dispatch except it does not dispatch
856         the messages to a registered filter function.  Instead it
857         allows a developer to process messages by directly popping
858         them off the bus.
859
860 2005-11-30  John (J5) Palmieri  <johnp@redhat.com>
861
862         * bus/desktop-file.c (parse_key_value): Ignore locales allowing 
863         the parser to continue instead of returning error
864         (bus_desktop_file_load): Do not free parser data when
865         parse_section_start or parse_key_value fails because it was 
866         already freed by parser_free (patch from Carlos Garcia Campos  
867         <carlosgc at gnome.org>)
868
869 2005-11-30  John (J5) Palmieri  <johnp@redhat.com>
870
871         * dbus/dbus-auth.c, dbus/dbus-connection.c, dbus/dbus-keyring.c,
872         dbus/dbus-server-debug-pipe.c, glib/dbus-binding-tool-glib.c
873         glib/dbus-glib-tool.c, glib/dbus-gparser.c, glib/dbus-gproxy.c
874         test/test-segfault.c, test/test-utils.c,
875         test/glib/test-dbus-glib.c, tools/dbus-cleanup-sockets.c
876         tools/dbus-launch.c, tools/dbus-tree-view.c, tools/dbus-viewer.c:
877         Various cleanup of dead code and compiler warnings (patch from
878         Kjartan Maraas <kmaraas at gnome.org>) 
879
880 2005-11-30  John (J5) Palmieri  <johnp@redhat.com>
881
882         * glib/dbus-gmain.c (connection_setup_add_watch): plugged a leak
883         (patch from Carlos Garnacho Parro <carlosg at gnome.org>
884
885 2005-11-27  Robert McQueen  <robot101@debian.org>
886
887         * python/dbus_bindings.pyx: Repair my previous commit which reverted
888         part of the preceding one. Oops. Merge patch by Johan Hedberg
889         <johan.hedberg@nokia.com> to fix marshalling of 16-bit integer values
890         on big-endian platforms.
891
892         * test/python/test-client.py: Add some 16-bit integers to the test
893         values.
894
895 2005-11-27  Carlos Garcia Campos  <carlosgc@gnome.org>
896
897         * glib/dbus-gobject.c: Append a GValue instead of a basic type in
898         method return message for property getters
899
900 2005-11-27  Robert McQueen  <robot101@debian.org>
901
902         * python/dbus_bindings.pyx: Fix a bug where doing a strict append
903         with type v of an instance of dbus.Variant(foo, type='x') caused
904         it to be boxed twice before sending over the bus.
905
906         * python/dbus_bindings.pyx, python/service.py,
907         test/python/test-client.py: Update the constants for the new
908         request_name flags, and update comments/test cases now that queueing
909         is the default action.
910
911 2005-11-22  John (J5) Palmieri  <johnp@redhat.com>
912
913         * configure.in:
914         - Change version to 0.60 for impending release
915         - upped the sonames because of ABI and API breakage
916
917 2005-11-22  John (J5) Palmieri  <johnp@redhat.com>
918
919         * configure.in: Add test/name-test/Makefile to the generated
920         Makefile list
921
922         * dbus/dbus-shared.h (#define DBUS_NAME_FLAG_ALLOW_REPLACEMENT):
923         New flag which replaces DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT
924         (#define DBUS_NAME_FLAG_DO_NOT_QUEUE): New flag for specifying
925         not to queue an ower if it can't be the primary owner
926
927         * bus/bus.h: Add new internal BusOwner struct
928
929         * bus/driver.c (bus_driver_handle_hello): Send flags (0 for default)
930         to bus_registry_ensure and don't set the prohibit_replacement flag
931         since they are now set per BusOwner and not per name.
932         (bus_driver_handle_list_queued_owners): bus method (ListQueuedOwners) 
933         that returns the list of connections in a name's connection queue
934         
935         * bus/services.c (struct BusService): remove prohibit_replacement field
936         (struct BusOwner): new struct for keeping track of queued connections
937         and their associated flags for the queue
938         (struct BusRegistry): add a BusOwner memory pool
939         (bus_registry_new): initialize the BusOwner memory pool
940         (bus_registry_unref): free the BusOwner memory pool
941         (_bus_service_find_owner_link): new internal method for
942         searching the queue for a specific connection
943         (bus_owner_set_flags): new method for adding setting the flags on a
944         bus owner
945         (bus_owner_new): new method that creates a BusOwner object from the
946         pool and sets its flags
947         (bus_owner_ref, bus_owner_unref): ref counting for BusOwner objects
948         (bus_registry_ensure): Add the flags parameter
949         (bus_registry_acquire_service): Switch from using raw connections to
950         using the BusOwner struct
951         Add new state machine for dealing with the new set of flags
952         (bus_registry_set_service_context_table, struct OwnershipCancelData, 
953         cancel_ownership, free_ownership_cancel_data, 
954         add_cancel_ownership_to_transaction, struct OwnershipRestoreData, 
955         restore_ownership, free_ownership_restore_data, 
956         add_restore_ownership_to_transaction): Switch to using BusOwner 
957         instead of raw connections
958         (bus_service_add_owner): Add flags parameter
959         Switch to using BusOwner instead of raw connections
960         Add state machine for dealing with the new set of flags
961         (bus_service_swap_owner): Swaps the first and second owners in the
962         queue.  Used to make sure proper signals are sent when a service looses 
963         or gains primary ownership.  We never insert an owner at the top of the
964         queue.  Instead we insert it in the second position and then swap.
965         (bus_service_remove_owner): Remove the owner from the queue sending
966         out the NameLost and NameOwnerChanged signals if the we were the 
967         primary owner
968         (bus_service_get_primary_owners_connection): New method that extracts
969         the connection from the primary owner
970         (bus_service_get_primary_owner): Returns the BusOwner instead of the 
971         connection
972         (bus_service_get_allow_replacement): Changed from the old 
973         bus_service_get_prohibit_replacement method.  Checks the flags of the 
974         primary owner and returns if it can be replaced or not
975         (bus_service_set_prohibit_replacement): removed
976         (bus_service_has_owner): returns TRUE if and owner with
977         the specified connection exists in the queue
978         
979         * dbus/dbus-bus.c (dbus_bus_connection_get_unique_name): New helper
980         method that only compiles if tests are enabled.  Allows us to get the 
981         unique name of a connection so we can check it against the queue when
982         doing regression tests
983
984         * bus/activation.c (bus_activation_send_pending_auto_activate),
985         bus/dispatch.c (bus_dispatch),  
986         bus/driver.c (bus_driver_handle_get_service_owner, 
987         bus_driver_handle_get_connection_unix_user, 
988         bus_driver_handle_get_connection_unix_process_id,
989         bus_driver_handle_get_connection_selinux_security_context),
990         bus/signals.c (connection_is_primary_owner): 
991         use bus_service_get_primary_owners_connection instead of
992         bus_service_get_primary_owner
993
994         * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket, 
995         _dbus_listen_unix_socket): Calculate the length of the socket
996         path and use that instead of using a fixed length which was
997         causing socket names to contain many trailing Nul bytes.
998
999         * dbus/dbus-glib-lowlevel.h, glib/dbus-gobject.c
1000         (dbus_g_method_get_sender): New method for extracting the sender 
1001         from a DBusGMethodInvocation
1002         (dbus_g_method_return_get_reply): changed name to 
1003         dbus_g_method_get_reply
1004         (dbus_g_method_return_send_reply): changed name to
1005         dbus_g_method_send reply
1006
1007         * doc/dbus-specification.xml: New docs that describe how the new
1008         queueing system works and talks about the changes to the how
1009         we specify socket names
1010
1011         * glib/examples/example-service.c, 
1012         glib/examples/example-signal-emitter.c,
1013         glib/examples/statemachine/statemachine-server.c:
1014         Changed the RequestName flags to the new system
1015
1016         * test/name-test/ (test-names.c, run-test.sh, Makefile.am): New
1017         regression test suite for testing various states of the new
1018         queueing system
1019         
1020 2005-11-15  Robert McQueen  <robot101@debian.org>
1021
1022         * dbus/dbus-glib-lowlevel.h, glib/dbus-gobject.c: Patch from Rob
1023         Taylor to add two methods, dbus_g_method_return_get_reply and
1024         dbus_g_method_return_send_reply, to allow you to get the reply
1025         message from a DBusGMethodInvocation, append arbitrary stuff to it,
1026         and send it. The GLib bindings can't marshal a return value of
1027         something like a(s) if the array is empty - ultimately they should be
1028         made to heed the signature of the out arguments as the Python bindings
1029         now can, but this is a workable interim solution which might have
1030         other applications.
1031
1032 2005-11-15  Robert McQueen  <robot101@debian.org>
1033
1034         * bus/driver.c, bus/services.c, bus/services.h: Add a ReleaseName
1035         method to org.freedesktop.DBus to release a bus name or give up
1036         waiting in the queue for it.
1037
1038         * dbus/dbus-bus.c, dbus/dbus-bus.h, dbus/dbus-shared.h: Add a
1039         dbus_bus_release_name method to send the ReleaseName method calls.
1040         Add constants for the return values to dbus/dbus-shared.h.
1041
1042         * doc/dbus-specification.xml: Document the new ReleaseName method
1043         in the specification.
1044
1045         * python/dbus_bindings.pyx: Add a low-level python binding for the
1046         release name method.
1047
1048         * python/exceptions.py, python/service.py: Make freeing BusName
1049         objects release the name. Add a NameExistsException, and fix a
1050         bug with creating UnknownMethodException.
1051
1052         * test/python/test-client.py: Add tests for freeing BusName
1053         objects causing names to be released.
1054
1055 2005-11-14  Robert McQueen  <robot101@debian.org>
1056
1057         * python/service.py: Include the traceback in the error reply when we
1058         send an exception over the bus. _BEST_ _PATCH_ _EVER_
1059
1060 2005-11-14  David Zeuthen  <davidz@redhat.com>
1061
1062         Patch from Timo Hoenig <thoenig@suse.de>.
1063
1064         * bus/bus.c: I've recently investigated why the automatic reload
1065         of configuration files does not work as expected.
1066
1067         Currently, reloading configuration files does only work when
1068         running dbus-daemon with --nodaemon.  If we are running as daemon
1069         we're hitting a dnotify bug once we fork the process.
1070
1071         We're initializing the dnotify fds before calling fork().  Once
1072         the child process forked it does still have the fds (and they
1073         still show up in /proc/`pidof dbus-daemon`/fd/) but we're not
1074         getting SIGIO as changes are made to the configuration files.
1075
1076         The attached patch moves the initialization of the dnotify fds to
1077         process_config_postinit().  This is safe for all current code
1078         paths and solves the dnotify disfunction.  If we're running
1079         dbus-daemon as daemon the fds for dnotify are now being
1080         initialized after fork() for the child process.
1081
1082         * configure.in: The current configure.in check for dnotify probes
1083         'x$target_os' for being 'xlinux-gnu'.  I've changed the check to
1084         match for 'xlinux', too. Additionally I have adapted the configure
1085         option's style to match with the others.
1086
1087 2005-11-14  Robert McQueen  <robot101@debian.org>
1088
1089         * python/decorators.py, python/service.py: Add a new argument to the
1090         dbus.service.method decorator called sender_keyword, which if set,
1091         specifies the name of an argument which will be provided the bus
1092         name of the method caller.
1093
1094         * test/python/test-client.py, test/python/test-service.py: Add a
1095         method and test to check the sender_keyword functionality.
1096
1097 2005-11-07  John (J5) Palmieri  <johnp@redhat.com>
1098
1099         * bus/driver.c (bus_driver_handle_reload_config): Make sure we send an 
1100         empty reply so blocking calls don't block forever (Patch from Sjoerd 
1101         Simons <sjoerd at luon.net>)
1102
1103         * AUTHORS: Add Robert McQueen for his work on the Python
1104         Bindings and other parts of D-Bus
1105
1106 2005-11-07  Robert McQueen  <robot101@debian.org>
1107
1108         * python/decorators.py: Change emit_signal function to use the
1109         signature annotation of the signal when marhsalling the arguments from
1110         the service. Fix a bug where the code checking signature length
1111         against argument length referenced the wrong variable.
1112
1113         * python/introspect_parser.py: Avoid adding the type signature of
1114         signal arguments to any methods which occur after them in the
1115         introspection data (!) by making the parser a little more careful
1116         about its current state.
1117
1118         * python/service.py: Remove debug prints from last commit (again :D).
1119
1120         * test/python/test-client.py, test/python/test-service.py: Add test
1121         signals with signature decorators to test the strict marshalling code
1122         gives errors at the right time. Could do with checking the signals
1123         actually get emitted too, given that the test does nothing with
1124         signals at the moment...
1125
1126 2005-11-07  Robert McQueen  <robot101@debian.org>
1127
1128         * python/_dbus.py: Add WeakReferenceDictionary cache of dbus.Bus
1129         instances to stop madness of creating new instances representing
1130         the same bus connection all the time, rendering any tracking of
1131         match rules and bus names quite meaningless. Caught a bug where
1132         the private argument to SessionBus() and friends was being passed
1133         in as use_default_mainloop by mistake. Still some problems with
1134         multiple dbus_binding.Connection instances representing the same
1135         low-level connection (eg when you use both SessionBus() and
1136         StarterBus() in same process), but it's a lot better now than it
1137         was.
1138
1139         * python/dbus_bindings.pyx: Add constants with the return values
1140         for bus_request_name().
1141
1142         * python/service.py: Store bus name instances in a per-dbus.Bus cache
1143         and retrieve the same instances for the same name, so deletion can be
1144         done with refcounting. Also now throws some kind of error if you
1145         don't actually get the name you requested, unlike previously...
1146
1147         * test/python/test-client.py: Add tests for instance caching of buses
1148         and bus name objects.
1149
1150 2005-11-04  Robert McQueen  <robot101@debian.org>
1151
1152         * python/dbus_bindings.pyx, test/python/test-client.py: Fix
1153         marshalling of boolean values. Add some booleans to the values in
1154         the test client.
1155
1156         * python/decorators.py, python/service.py: Add an 'async_callbacks'
1157         argument to the dbus.service.method decorator, which allows you to
1158         name arguments to take two callback functions for replying with
1159         return values or an exception.
1160
1161         * test/python/test-client.py, test/python/test-service.py: Add test
1162         case using asynchronous method reply functions, both return values and
1163         errors, and from within both the function itself and from a mainloop
1164         callback.
1165
1166         * python/decorators.py, python/service.py: Perform checking that the
1167         number of method/signal arguments matches the number of types in the
1168         signature at class loading time, not when you first introspect the
1169         class.
1170
1171         * python/service.py: Remove debug print left by the last commit.
1172
1173 2005-11-03  Robert McQueen  <robot101@debian.org>
1174
1175         * python/service.py: Heavy refactoring of method invocation, with
1176         hopefully no effect on functionality. Nuked _dispatch_dbus_method_call
1177         in favour of a new _message_cb that uses seperate functions for
1178         looking up the method to call, marshalling the return values, and
1179         sending exceptions as errors, and is easier to follow as a
1180         consequence.  Fixes some corner cases about returning things that
1181         don't match your declared out_signature, allows exceptions to define
1182         _dbus_error_name and have it be sent over the bus as the error name,
1183         and paves the way for cool stuff like heeding the message no reply
1184         flag, asynchronous method implementations, informing the method of the
1185         sender, and including backtraces in the error messages.
1186
1187         * test/python/test-client.py: Catch and print exceptions thrown in the
1188         async callback tests, rather than passing them to the low-level
1189         bindings to be ignored in a noisy and frustrating manner.
1190
1191 2005-11-03  Robert McQueen  <robot101@debian.org>
1192
1193         * python/_dbus.py, python/proxies.py, python/service.py: Add __repr__
1194         functions to dbus.Bus, dbus.service.BusName and dbus.service.Object,
1195         tweak others to be consistent.
1196
1197         * test/python/test-client.py: Tweak output of testInheritance.
1198
1199 2005-10-29  Robert McQueen  <robot101@debian.org>
1200
1201         * python/service.py: Major changes to allow multiple inheritance
1202         from classes that define D-Bus interfaces:
1203         
1204          1. Create a new Interface class which is the parent class of
1205             Object, and make the ObjectType metaclass into InterfaceType.
1206         
1207          2. Patch written with Rob Taylor to replace use of method_vtable
1208             with code that walks the class's __MRO__ (method resolution order)
1209             to behave like Python does when invoking methods and allow
1210             overriding as you'd expect. Code is quite tricky because
1211             we have to find two methods, the one to invoke which has the
1212             right name and isn't decorated with the /wrong/ interface,
1213             and the one to pick up the signatures from which is decorated
1214             with the right interface.
1215         
1216             The same caveats apply as to normal multiple inheritance -
1217             this has undefined behaviour if you try and inherit from two
1218             classes that define a method with the same name but are
1219             decorated with different interfaces. You should decorate
1220             your overriding method with the interface you want.
1221         
1222          3. Replace grungy introspection XML generation code in the metaclass
1223             with dictionaries that cope correctly with multiple inheritance
1224             and the overriding of methods. This also uses the signature
1225             decorations to provide correct introspection data, including
1226             the debut appearance of the types of your return values. :D
1227
1228         * test/python/test-client.py, test/python/test-service.py: Add a test
1229         case to try invoking an method that overrides one inherited from a
1230         D-Bus interface class.
1231
1232 2005-10-29  Robert McQueen  <robot101@debian.org>
1233
1234         * python/dbus_bindings.pyx: Tweak 'raise AssertionError' to assert().
1235         Add checking for the end of struct character when marshalling a
1236         struct in MessageIter.append_strict.
1237
1238         * python/examples/example-service.py,
1239         python/examples/gconf-proxy-service.py,
1240         python/examples/gconf-proxy-service2.py: Update to use gobject
1241         mainloop directly rather than appearing to depend on gtk.
1242
1243         * python/test/test-client.py, python/test/test-server.py: Remove
1244         obsolete and broken test scripts for old bindings. We have up to date
1245         and working tests in test/python/.
1246
1247 2005-10-29  Robert McQueen  <robot101@debian.org>
1248
1249         * python/decorators.py: Add optional arguments to the method and
1250         signal decorators to allow you to specify the signature of arguments
1251         and return values. Preserve the doc strings of signal functions in the
1252         decorated version, for pydoc and friends.
1253
1254         * python/dbus_bindings.pyx, python/proxies.py: Replace the
1255         parse_signature_block function with an iterable dbus.Signature()
1256         type. Fix a bug in MessageIter.append_strict where you could append
1257         anything by claiming it was a string.
1258
1259         * python/service.py: Use the out_signature decoration on methods to
1260         marshal return values, meaning you no longer require dbus.Array()
1261         or dbus.Dictionary() to indicate the type when returning empty
1262         arrays or dictionaries. Fix a bug where exceptions which are defined
1263         in __main__ are not turned into error replies.
1264
1265         * test/python/test-client.py, test/python/test-service.py: Add test
1266         for correct marshalling of return values according to out_signature.
1267         Fix a bug in the async call test where the error_handler is missing a
1268         self argument.
1269
1270 2005-10-29  Robert McQueen  <robot101@debian.org>
1271
1272         * glib/Makefile.am, glib/examples/Makefile.am,
1273         glib/examples/statemachine/Makefile.am: Merge patch from Ubuntu by
1274         Daniel Stone to replace explicit calls to libtool with $(LIBTOOL).
1275
1276         * test/python/.cvsignore: Add run-with-tmp-session-bus.conf.
1277
1278         * tools/dbus-monitor.1, tools/dbus-monitor.c: Merge dbus-monitor patch
1279         from Ubuntu by Daniel Silverstone to allow specifying match rules on
1280         the command line.
1281
1282 2005-10-27  Ross Burton  <ross@openedhand.com>
1283
1284         * dbus/dbus-marshal-header.c:
1285         Remove dead code.
1286
1287         * glib/dbus-gobject.c:
1288         Stop compiler warning.
1289
1290 2005-10-25  Ross Burton  <ross@openedhand.com>
1291
1292         * dbus/dbus-auth.c:
1293         * dbus/dbus-server-unix.c:
1294         * dbus/dbus-transport-unix.c:
1295         * glib/dbus-gmain.c:
1296         * glib/dbus-gobject.c:
1297         Add some const keywords.
1298
1299 2005-10-25  Ross Burton  <ross@openedhand.com>
1300
1301         * doc/dbus-specification.xml:
1302         Document the NoReply annotation.
1303
1304         * glib/dbus-binding-tool-glib.h:
1305         * glib/dbus-binding-tool-glib.c:
1306         Respect the NoReply annotation.
1307
1308 2005-10-24  Robert McQueen <robot101@debian.org>
1309
1310         * python/dbus_bindings.pyx (String, MessageIter): make D-Bus strings
1311         derive from unicode instead of str, and encode/decode UTF-8 when
1312         marshalling/unmarshalling bus messages
1313
1314         * python/introspect_parser.py: encode introspection data as UTF-8
1315         before passing the buffer into libxml2
1316
1317         * test/python/test-client.py: add unicode test strings
1318
1319         * test/data/valid-service-files/.cvsignore, test/python/.cvsignore:
1320         ignore generated python test files
1321
1322 2005-10-17  John (J5) Palmieri  <johnp@redhat.com>
1323
1324         * glib/dbus-gvalue-utils.c (hash_free_from_gtype): handle gdouble
1325         and G_TYPE_VALUE_ARRAY (DBUS_TYPE_STRUCT)
1326         (gvalue_from_hash_value, hash_value_from_gvalue): handle gdouble
1327
1328         * glib/dbus-gvalue.c (dbus_gvalue_to_signature): add missing
1329         DBUS_STRUCT_BEGIN_CHAR and DBUS_STRUCT_END_CHAR charaters
1330         when constructing struct signatures
1331
1332         * python/_dbus.py (Bus): handle private connections using the
1333         private keyword in the constructor. defaults to private=False
1334         (Bus::close): new method to close a connection to the bus
1335
1336         * python/dbus_bindings.pyx (Connection::close): renamed method
1337         was previously called disconnect
1338         (bus_get): now supports getting a private connection
1339
1340         * python/proxies.py (ProxyMethod::__call__): check if ignore_reply
1341         keyword is set to True.  if it is, execute the method without waiting
1342         for a reply
1343         (ProxyObject::_introspect_execute_queue): new method for executing
1344         all the pending methods that were waiting for the introspect to
1345         finish.  this is called when introspect either succeeds or fails
1346         (ProxyObject::_introspect_error_handler): call queued methods
1347
1348 2005-10-14  John (J5) Palmieri  <johnp@redhat.com>
1349
1350         * python/dbus_bindings.pyx (MessageIter::append_strict): check for
1351         STRUCT_BEGIN not TYPE_STRUCT in indicate we are marshalling a struct
1352
1353         * python/service.py (Object::_message_cb): handle exceptions correctly
1354         by sending them over the wire to the calling app.  This makes sure
1355         the client returns immediately instead of waiting the 15 seconds to
1356         timeout.
1357
1358         * test/python/test-client.py (TestDBusBindings::testBenchmarkIntrospect): 
1359         Add a test to benchmark how long it takes to introspect a service and 
1360         call a method which returns a large element (pretty fast)
1361
1362         * test/python/test-service.py (TestObject::GetComplexArray): new test 
1363         method which pushes a lot of data
1364
1365 2005-10-13  John (J5) Palmieri  <johnp@redhat.com>
1366
1367         * python/service.py(ObjectType::_reflect_on_signal, _reflect_on_method):        
1368         reclaim memory outside of the loop and use del istead of just setting
1369         the key to None
1370
1371 2005-10-13  John (J5) Palmieri  <johnp@redhat.com>
1372
1373         * python/service.py (ObjectType::_reflect_on_signal): Always close
1374         signal tag even when there are no arguments
1375
1376 2005-10-13  John (J5) Palmieri  <johnp@redhat.com>
1377
1378         * configure.in: Set mono, mono-docs and Qt3 to default
1379         to no instead of auto when building.  These bindings do not
1380         have full time maintainers and will not be supported for the
1381         1.0 release.
1382
1383 2005-10-12  John (J5) Palmieri  <johnp@redhat.com>
1384
1385         patches from Michael Krivoruchko <misha at sun.com>: 
1386         
1387         * dbus/dbus-connection.c (_dbus_connection_queue_received_message_link,
1388         _dbus_connection_message_sent, 
1389         _dbus_connection_send_preallocated_unlocked_no_update, 
1390         _dbus_connection_pop_message_link_unlocked): handle the case when path 
1391         is NULL when calling _dbus_verbose
1392
1393         * configure.in: check for functions getpeerucred and getpeereid
1394
1395         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): provides 
1396         support of auth EXTERNAL on Solaris 10+ (getpeerucred), FreeBSD 4.6+, 
1397         OpenBSD 3.0+ and FreeBSD 5.0+ as well as MacOSX 10.2+ (getpeereid). 
1398         Patch was only tested on Solaris 10 x86 so it might be issues
1399         with other platforms (i.e. BSDs and MacOSX)
1400         
1401
1402 2005-10-05  John (J5) Palmieri  <johnp@redhat.com>
1403
1404         * glib/dbus-gvalue.c (marshal_variant): call _dbus_gvalue_marshal 
1405         instead of marshal basic so we can handle recursive types in a variant
1406
1407         * test/glib/test-dbus-glib.c: Add test for marshaling recurive types
1408         in variants
1409
1410         * test/glib/test-service-glib.c, test-service-glib.xml
1411         (my_object_echo_variant [EchoVariant], 
1412         my_object_process_variant_of_array_of_ints123
1413         [ProcessVariantOfArrayOfInts123]): 
1414         Add two test methods
1415
1416         * python/introspect_parser.py: New module for parsing introspect
1417         data.
1418
1419         * python/dbus_bindings.pyx:
1420         (various places): when throwing errors fix to use errormsg instead 
1421         of message local variable because Pyrex can get confused with other 
1422         message variables (initial patch by Robert McQueen 
1423         <robert.mcqueen at collabora.co.uk>)
1424         (MessageIter::parse_signature_block): new method for getting the next
1425         block in a signiture.
1426         (MessageIter::append_strict): new method for appending values strictly
1427         using the passed in signature instead of guessing at the type
1428         (MessageItter:: append_dict, append_struct, append_array): use 
1429         signatures to marshal children if the signature is available
1430         
1431         * python/exceptions.py (IntrospectionParserException): new exception
1432
1433         * python/proxies.py (ProxyMethod::__call__): Marshal args with 
1434         introspected signatures if available, else we fall back to the
1435         old way of doing things.
1436         (ProxyObject::_introspect_reply_handler ): parse introspection data
1437         
1438         * python/service.py (ObjectType::_reflect_on_method): Properly
1439         terminate <method> if there are no args in the reflection data
1440
1441         * test/python/test-client.py: add tests for talking with the GLib
1442         test server.  This gives us better coverage for introspection since
1443         python to python will always generate arguments as variants.  It also
1444         allows us to test the robustness of the GLib bindings and interlanguage
1445         communications.
1446
1447         
1448 2005-10-03  John (J5) Palmieri  <johnp@redhat.com>
1449
1450         * bus/driver.c (bus_driver_handle_introspect): Add signals
1451         to the introspect data. (patch from Daniel P. Berrange 
1452         <dan at berrange.com>)
1453
1454         * bus/dispatch.c (check_existent_ping): Add testcase for Ping
1455         
1456         * dbus/dbus-connection.c (_dbus_connection_peer_filter,
1457         _dbus_connection_run_builtin_filters): Changed these to
1458         be unlock_no_update functions and call 
1459         _dbus_connection_send_unlocked_no_update instead of
1460         dbus_connection_send to avoid locking errors.
1461         
1462         * doc/TODO: Removed the make Ping test TODO
1463         
1464 2005-09-26  John (J5) Palmieri  <johnp@redhat.com>
1465
1466         * dbus/Python.pyx: Fixed memory leaks when throwing errors.
1467         We now copy the message from a DBusError and then free 
1468         the error object befor throwing the error
1469
1470         * glib/dbus-glib-tool.c: removed extra comma at the end of the
1471         DBusBindingOutputMode enum which was causing a warning.
1472         #include <time.h> so using time_t is explicitly defined
1473
1474 2005-09-26  John (J5) Palmieri  <johnp@redhat.com>
1475
1476         * Integrate patches from Lennart Poettering <mzsqb at 0pointer.de>:
1477         - dbus/dbus-bus.c
1478         (internal_bus_get): new method that take over the heavy lifting
1479         of dbus_bus_get and adds the ability to get a private connection
1480         to the bus
1481         (dbus_bus_get): wrapper to internal_bus_get that provides the same
1482         interface as in previous versions
1483         (dbus_bus_get_private): new method that is a wrapper to 
1484         internal_bus_get to get a private connection to the bus
1485
1486         - dbus/dbus-bus.h
1487         (dbus_bus_get_private): add as a public libdbus interface
1488
1489         - dbus-1.pc.in: output system_bus_default_address and 
1490         sysconfdir variables so apps can use them when compiling
1491
1492 2005-09-23  Harald Fernengel  <harry@kdevelop.org>
1493         * dbus/qt: New Qt bindings
1494
1495 2005-09-12  Waldo Bastian  <bastian@kde.org>
1496
1497         * dbus/dbus-marshal-validate.c,
1498         doc/dbus-specification.xml, test/Makefile.am,
1499         test/test-names.c: allow hyphens in bus names.
1500
1501 2005-09-11  Mark McLoughlin  <mark@skynet.ie>
1502
1503         * test/data/auth/fallback.auth-script: we don't
1504         retry the EXTERNAL method when we know its going
1505         to fail anymore.
1506
1507 2005-09-11  Mark McLoughlin  <mark@skynet.ie>
1508
1509         * dbus/dbus-connection-internal.h: rename
1510         (add|remove|toggle)_(watch|timeout) to unlocked()
1511         
1512         * dbus/dbus-connection.c: ditto.
1513         
1514         * dbus/dbus-timeout.c, dbus/dbus-transport-unix.c:
1515         Update some callers for the renaming.
1516
1517 2005-09-10  Mark McLoughlin  <mark@skynet.ie>
1518
1519         * dbus/dbus-auth.c: (record_mechanisms): don't
1520         retry the first auth mechanism because we know
1521         we're just going to get rejected again.
1522         
1523         * dbus/dbus-keyring.c: (_dbus_keyring_reload):
1524         Fix thinko ... and what a nasty little bugger to
1525         track down you were ...
1526
1527         * dbus/dbus-connection.c:
1528         (_dbus_connection_add_watch),
1529         (_dbus_connection_remove_watch): add note about
1530         these needing the connection to be locked.
1531         (_dbus_connection_get_dispatch_status_unlocked):
1532         set status to DATA_REMAINS when we queue the
1533         disconnected message.
1534         
1535         * bus/dispatch.c:
1536         (bus_dispatch): fix warning.
1537         (check_existent_service_no_auto_start):
1538         Expect ChildSignaled error too.
1539         (check_existent_hello_from_self): fix another
1540         couple of warnings.
1541         
1542 2005-09-08  Joe Shaw  <joeshaw@novell.com>
1543
1544         Patches from James Willcox <snorp@snorp.net>
1545
1546         * mono/Makefile.am: Add Int16.cs and UInt16.cs
1547
1548         * mono/DBusType/Array.cs: Handle multidimensional arrays, and
1549         support array "out" parameters.
1550
1551         * mono/DBusType/Int16.cs, mono/DBusType/UInt16.cs: New files,
1552         for 16-bit int support.
1553
1554 2005-09-06  John (J5) Palmieri  <johnp@redhat.com>
1555
1556         * Released 0.50
1557
1558         * Patch from Steve Grubb:
1559         - bus/activation.c (bus_activation_service_reload_test): clean up
1560         some indentation
1561         - dbus/dbus-keyring.c (_dbus_keyring_reload): fix conditional 
1562         - dbus/dbus-message-factory.c (generate_special): fix a couple of
1563         buffer overflows in the test suite.  This is non critical because
1564         it can not be exploited and this code is only run when doing a 
1565         make check.
1566
1567         * Patch from Yaakov Selkowitz: Build fixes for Cygwin
1568         - configure.in: Don't check and link against kdecore, only qt headers
1569         - dbus/Makefile.am: Add -no-undefined to libdbus_1_la_LDFLAGS
1570         - gcj/org/freedesktop/dbus/Makefile.am:
1571         add libdbus_gcj_1_la_LDFLAGS = -no-undefined
1572         - glib/Makefile.am: Add -no-undefined to libdbus_glib_1_la_LDFLAGS
1573         and $(DBUS_GLIB_LIBS) to dbus_binding_tool_LDADD
1574         - qt/Makefile.am: Add -no-undefined to libdbus_qt_1_la_LDFLAGS
1575         - tools/Makefile.am: Add platform extentions to binaries 
1576         (i.e. .exe on windows)
1577
1578         * configure.in: 
1579         - Make it so if no suitable version of python is found we only 
1580         disable building python instead of exiting the configure script
1581         - Require version 2.4 of glib for glib bindings
1582         - Up version to 0.50
1583
1584         * python/__init__.py: Sync version with libdbus to (0,50,0)
1585         
1586 2005-09-05  Olivier Andrieu  <oliv__a@users.sourceforge.net>
1587
1588         * dbus/dbus-object-tree.c (find_subtree_recurse):
1589         a couple of optimizations (bug #710):
1590         - do a binary search in the tree
1591         - insert a new child at the right place directly, no need for
1592           qsort anymore
1593         - do the "double alloc" thing when allocating children
1594
1595 2005-08-31  John (J5) Palmieri  <johnp@redhat.com>
1596
1597         * python/Makefile.am: Break on pyrexc errors instead of ignoring them
1598
1599         * python/dbus_bindings.pyx: Memory management foo
1600         (global): remove hacky _user_data_references global list
1601         (GIL_safe_cunregister_function_handler): userdata now stuffed into
1602         tuples. Unref user_data
1603         (GIL_safe_cmessage_function_handler): userdata now stuffed into tuples
1604         (Connection::__del__): Remove and replace with __dealloc__ method
1605         (Connection::add_filter): Stuff user_data into a tuple.  Use Py_INCREF
1606         to keep tuple from being deallocated instead of the global var hack
1607         (Connection::register_object_path): Stuff user_data into a tuple.
1608         Use Py_INCREF to keep tuple from being deallocated instead of the 
1609         global var hack
1610         (Connection::register_fallback): Stuff user_data into a tuple.
1611         Use Py_INCREF to keep tuple from being deallocated instead of the 
1612         global var hack
1613         (GIL_safe_pending_call_notification): Don't unref the message
1614         because it gets unreffed when going out of scope.  Py_XDECREF
1615         the user_data
1616         (PendingCall::__del__): Remove and replace with __dealloc__ method
1617         (PendingCall::set_notify): ref the pending call because we will
1618         need it to stick around for when the notify callback gets called
1619         (Message::__del__): Remove and replace with __dealloc__ method
1620
1621         * python/dbus_glib_bindings.pyx (init_gthreads): Changed to 
1622         gthreads_init to match up with the dbus call
1623
1624         * python/glib.py (init_threads): Changed to threads_init to match
1625         up with gobject.threads_init().  init_threads is kept for backwards
1626         compat but will most likely be deprecated in the future
1627
1628         * test/python/test-client.py: 
1629         - revamp to use Python's unittest functionality
1630         - add async call tests
1631         - setup threads in glib and dbus so we make sure locks are working
1632         
1633 2005-08-30  John (J5) Palmieri  <johnp@redhat.com>
1634
1635         * python/dbus_bindings.pyx 
1636         (_pending_call_notification, cunregister_function_handler, 
1637         cmessage_function_handler): All callback functions have been rearranged 
1638         to workaround a bug in Pyrex when working with the GIL which is Python's 
1639         global lock when dealing with threads.  They have been split into
1640         a wrapper function (which assumes the name of the old function) and
1641         a _GIL_safe_<function name> function which contains the functionality
1642         of the old function.  This ensures that Pyrex does not write code
1643         the lock is released.
1644         
1645
1646 2005-08-30  John (J5) Palmieri  <johnp@redhat.com>
1647
1648         * python/dbus_bindings.pyx (_pending_call_notification): Obtain the
1649         GIL global lock when calling back into Python
1650
1651 2005-08-29  John (J5) Palmieri  <johnp@redhat.com>
1652
1653         * Release 0.36.2
1654
1655         * Add Havoc's patch that never got applied to HEAD (Bug #2436):
1656
1657         * bus/policy.c (bus_policy_allow_user): change default "user is
1658         allowed" to be "user has same uid as the bus itself"; any
1659         allow/deny rules will override.
1660
1661         * bus/session.conf.in: don't allow all users, since now by default
1662         the user that ran the bus can connect.
1663
1664 2005-08-26  Colin Walters  <walters@verbum.org>
1665
1666         * tools/dbus-print-message.c (print_message): Flush stdout
1667         after printing a message, so that redirecting to a file, then
1668         hitting Ctrl-C works.
1669
1670 2005-08-25  John (J5) Palmieri  <johnp@redhat.com>
1671
1672         * python/dbus_bindings.pyx: Tracked down a major memleak and fixed it
1673         (EmptyMessage): new class that subclasses Message.  This is a workaround
1674         to a Pyrex bug that fails to call __del__ when the Message object goes out
1675         of scope.  For some reason subclassing Message fixes this bug
1676         (Bus::send_with_reply_and_block): use EmptyMessage instead of Message
1677         - s/Message(_create=0)/EmptyMessage everywhere else
1678         
1679         * test/python/test-{server|client}.py: add the python/.libs directory
1680         to the lookup path so dbus_bindings and dbus_glib_bindings don't
1681         get picked up from the system
1682
1683 2005-08-25  Colin Walters  <walters@verbum.org>
1684
1685         * glib/dbus-gproxy.c (dbus_g_proxy_call): Doc update, thanks
1686         to Ryan Lortie for the suggestion.
1687
1688 2005-08-24  John (J5) Palmieri  <johnp@redhat.com>
1689
1690         * test/python: Add python regression test
1691
1692         * configure.in: Add test/python/Makefile
1693
1694         * test/Makefile.am: Add the python directory to SUBDIRS
1695
1696 2005-08-24  John (J5) Palmieri  <johnp@redhat.com>
1697
1698         * Release 0.36.1
1699
1700         * python/_dbus.py: 
1701         (Interface::connect_to_signal): propigate keywords for match on args
1702         (Bus::add_signal_receiver): Fix typo s/dbus_inteface/dbus_interface
1703
1704         * python/proxies.py (ProxyObject::connect_to_signal):
1705         propigate keywords for match on args
1706
1707         * Makefile.am: point everything to pyexecdir since python borks
1708         on multilib
1709
1710 2005-08-23  John (J5) Palmieri  <johnp@redhat.com>
1711
1712         * Release 0.36
1713
1714 2005-08-23  Colin Walters  <walters@verbum.org>
1715
1716         * test/glib/Makefile.am: Don't multiply-define EXTRA_DIST.
1717
1718 2005-08-23  John (J5) Palmieri  <johnp@redhat.com>
1719
1720         * python/dbus_glib_bindings.pyx: reorder imports and c definitions
1721         to fix some wranings. We now use dbus_bindings.DBusConnection instead
1722         of defining DBusConnection ourselves.
1723
1724 2005-08-18  John (J5) Palmieri  <johnp@redhat.com>
1725
1726         * python/dbus.pth: New path file to fix up problems when installing
1727         c libraries to lib64 and python files to lib.
1728
1729         * python/Makefile.am: install dbus.pth in the correct spot
1730
1731 2005-08-17  John (J5) Palmieri  <johnp@redhat.com>
1732         * ChangeLog: clean up my last entry a bit
1733
1734         * doc/introspect.xsl: New stylesheet for converting introspection data
1735         into browser renderable xhtml. Contributed by Lennart Poettering.
1736
1737         * doc/introspect.dtd: Fixups in the introspect format from Lennart
1738         Poettering.
1739
1740         * doc/dbus-tutorial.xml: 
1741         - Add Colin Walter to the Authors section for authoring the GLib
1742         section
1743         - Add descriptions of the new signature and type functionality
1744         in the Python complex type mapping section
1745         - Add a sidenote on the new args matching functionality in 
1746         the Python bindings
1747         - Fixed up some of the examples to use the gobject.MainLoop
1748         instead of gtk.main
1749         
1750         * python/_dbus.py:
1751         (Bus::_create_args_dict): New. Converts a hash of arg matches
1752         to a more useable format
1753         (Bus::add_signal_receiver): add a **keywords parameter for catching
1754         arg match parameters
1755         (Bus::remove_signal_receiver): add a **keywords parameter for catching
1756         arg match parameters
1757         
1758         * python/matchrules.py:
1759         (MatchTree::exec_matches): Check for arg matches
1760         (SignalMatchRule::add_args_match): New method
1761         (SignalMatchRule::execute): Added args_list parameter as an optimization
1762         so we don't have to marshal the args more than once
1763         (SignalMatchRule::match_args_from_list): New method that checks to see
1764         if the rule's arg matches match an argument list.  Only arguments
1765         set in the rule are checked.
1766         (SignalMatchRule::match_args_from_rule): New method that checks to see
1767         if the rule's arg matches match another rule's.  All args have to match
1768         in order for this method to return true.  If either rule has more args
1769         then it is not a match.
1770         (SignalMatchRule::is_match): Add args match
1771         (SignalMatchRule::repr): Add args to the final output if they exist
1772
1773 2005-08-17  Ross Burton  <ross@burtonini.com>
1774
1775         * glib/dbus-gproxy.c:
1776         (dbus_g_proxy_call_no_reply): unref the message once sent.
1777         (dbus_g_proxy_call): protect against NULL proxy.
1778
1779 2005-08-16  John (J5) Palmieri  <johnp@redhat.com>
1780
1781         * python/__init__.py: Version updated (0, 43, 0)
1782         
1783         * python/dbus_bindings.pyx: 
1784         - Fixed type objects to have self passed into __init__
1785         - Added the Variant type
1786         - Add the ability to specify types or signatures for Array, Variant 
1787         and Dictionary
1788         (Connection::send_with_reply_handlers): return a PendingCall object
1789         (_pending_call_notification): handle the case when an error is returned 
1790         without an error message in the body
1791         (MessageIter::get_boolean): return True or False instead of an integer
1792         (MessageIter::python_value_to_dbus_sig): add direct checking of types 
1793         and add checks for objects with embeded signatures or types (Array, 
1794         Variant and Dictionary)
1795         (MessageIter::append_byte): handle case when the value is a dbus.Byte
1796         (MessageIter::append_dict): handle embeded types or signatures
1797         (MessageIter::append_array): handle embeded types or signatures
1798         (MessageIter::append_variant): new method
1799         
1800         * python/proxies.py:
1801         (DeferedMethod): New. Dummy executable object used when queuing calls 
1802         blocking on introspection data
1803         (ProxyMethod::__call__): add the timeout keyword for specifying longer 
1804         or shorter timeouts for method calls
1805         (ProxyObject): Add first pass at an introspection state machine
1806         (ProxyObject::__init__): Add introspect keyword for turing off an on 
1807         introspection. 
1808         (ProxyObject::_Introspect): Internal Introspect call that bypasses 
1809         the usual mechanisms for sending messages.  This is to avoid a deadlock
1810         where the Intospect call would be queued waiting for the Introspect 
1811         call to finish ;-)
1812         (ProxyObject::_introspect_reply_handler): New.  This method is called 
1813         when introspection returns with no error
1814         (ProxyObject::_introspect_error_handler): New.  This method is called 
1815         when introspection encounters an error
1816         (ProxyObject::__getattr__): Code to handle different introspection 
1817         states.  Queue async calls or block blocking calls if we are 
1818         introspecting.  Pass through as normal if we are not or are done with 
1819         introspecting.
1820         
1821         * python/service.py: Import signal and method from decorators.py
1822
1823         * python/types.py: Add Variant type
1824
1825 2005-08-16  Colin Walters  <walters@verbum.org>
1826
1827         * glib/dbus-gobject.c (dbus_set_g_error): Don't lose if the
1828         DBusError message is NULL.
1829
1830 2005-08-09  Havoc Pennington  <hp@redhat.com>
1831
1832         * dbus/dbus-errors.c: apply patch from Timo Teras to make a
1833         malloc'd copy of the name parameter
1834
1835 2005-08-09  Havoc Pennington  <hp@redhat.com>
1836
1837         * dbus/dbus-message.c (dbus_message_set_reply_serial): print
1838         warning if the reply serial is set to 0
1839
1840 2005-08-04  Colin Walters  <walters@verbum.org>
1841
1842         * glib/dbus-gvalue-utils.h (_dbus_g_type_specialized_builtins_init)
1843         (dbus_g_type_is_fixed, dbus_g_type_fixed_get_size)
1844         (dbus_gvalue_set_from_pointer, dbus_g_hash_table_value_foreach)
1845         (dbus_g_hash_table_insert_values, dbus_g_hash_table_insert_steal_values)
1846         (dbus_gtype_is_valid_hash_key, dbus_gtype_is_valid_hash_value)
1847         (dbus_g_hash_func_from_gtype, dbus_g_hash_free_from_gtype)
1848         (dbus_g_hash_equal_from_gtype, dbus_gvalue_stor, dbus_gvalue_take):
1849         * glib/dbus-gvalue.h (dbus_g_value_types_init)
1850         (dbus_gvalue_demarshal, dbus_gvalue_demarshal_variant)
1851         (dbus_gvalue_demarshal_message, dbus_gvalue_marshal):
1852         
1853         Prefix name with _ to ensure they're not exported.  All callers
1854         updated.
1855
1856         * glib/dbus-gvalue.c (typecode_to_gtype)
1857         (dbus_typecode_maps_to_basic, basic_typecode_to_gtype)
1858         (signature_iter_to_g_type_dict)
1859         (signature_iter_to_g_type_array)
1860         (dbus_gtype_from_signature_iter, dbus_gtype_from_signature)
1861         (dbus_gtypes_from_arg_signature):
1862         Move to dbus-gsignature.c.
1863
1864         * glib/dbus-binding-tool-glib.c (dbus_binding_tool_output_glib_server): Call
1865         dbus_g_type_specialized_builtins_init instead of dbus_g_value_types_init.
1866         (dbus_binding_tool_output_glib_client): Ditto.
1867
1868         * glib/Makefile.am (DBUS_GLIB_INTERNALS): Add dbus-gsignature.c
1869         and dbus-gsignature.h
1870
1871         * test/glib/test-service-glib.c (my_object_rec_arrays): Delete
1872         unused variable.
1873
1874 2005-08-03  Colin Walters  <walters@verbum.org>
1875
1876         * glib/dbus-gobject.c: Add tests on hardcoded object info; this should
1877         catch any incompatible changes accidentally made.
1878
1879 2005-08-03  Havoc Pennington  <hp@redhat.com>
1880
1881         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): fix
1882         typo, from Julien Puydt
1883
1884         * bus/connection.c (bus_connection_disconnected): we were always
1885         doing a wait_for_memory due to a buggy loop, found by Timo Hoenig
1886
1887 2005-08-01  Colin Walters  <walters@verbum.org>
1888
1889         Patch from Joe Markus Clarke:   
1890         
1891         * glib/dbus-gidl.c (property_info_unref, arg_info_unref): Fix
1892         use-after-free.
1893
1894 2005-08-01  Colin Walters  <walters@verbum.org>
1895         
1896         Patch from Joe Markus Clarke:   
1897         
1898         * tools/dbus-send.c (main): 
1899         
1900         Don't use C99 style initializers (bug #3933).
1901         
1902 2005-08-01  Colin Walters  <walters@verbum.org>
1903
1904         Patch from Joe Markus Clarke:   
1905
1906         * glib/dbus-gvalue.c (dbus_g_value_types_init): 
1907         * glib/dbus-gvalue-utils.c (dbus_g_type_specialized_builtins_init) 
1908         * glib/dbus-gobject.c (write_interface):
1909
1910         Don't use C99 style initializers (bug #3933).
1911
1912 2005-07-31  Havoc Pennington  <hp@redhat.com>
1913
1914         * tools/dbus-viewer.c (load_child_nodes): fix invocation of
1915         dbus_g_proxy_call, fix from Piotr Zielinski bug #3920
1916
1917 2005-07-30  Havoc Pennington  <hp@redhat.com>
1918
1919         * fix a bunch of Doxygen warnings and mistakes
1920
1921 2005-07-30  Havoc Pennington  <hp@redhat.com>
1922
1923         * dbus/dbus-sysdeps.c (_dbus_string_parse_uint): remove #ifdef
1924         DBUS_BUILD_TESTS since it's now used in production code
1925
1926 2005-07-29  Havoc Pennington  <hp@redhat.com>
1927
1928         * test/glib/test-profile.c (write_junk): initialize the junk
1929         buffer so valgrind doesn't have a breakdown
1930
1931 2005-07-29  Havoc Pennington  <hp@redhat.com>
1932
1933         * bus/signals.c (bus_signals_test): add match_rule_equal() tests
1934         (match_rule_matches): remove unused arg
1935         (test_matching): add tests for match_rule_matches()
1936
1937         * bus/signals.c (bus_match_rule_parse_arg_match): add ability to
1938         do arg0='foo' arg5='bar' in the match rules
1939         (match_rule_matches): don't match if the arg0='foo' doesn't match.
1940
1941         * dbus/dbus-protocol.h (DBUS_MAXIMUM_MATCH_RULE_ARG_NUMBER): add this
1942
1943 2005-07-29  Ross Burton  <ross@openedhand.com>
1944
1945         * dbus/dbus-connection.c:
1946         Don't create a DBusCondVar which is never used.
1947
1948 2005-07-27  Ross Burton  <ross@openedhand.com>
1949
1950         * dbus/dbus-message.c:
1951         Reduce the size of the maximum cached message to 10K.
1952
1953 2005-07-25  Ross Burton  <ross@openedhand.com>
1954
1955         * glib/dbus-gproxy.c:
1956         Remove matches when all proxies are unregistered.
1957
1958 2005-07-24  Colin Walters  <walters@verbum.org>
1959
1960         * glib/dbus-gvalue.c (signature_iter_to_g_type_array): Don't require
1961         typedata; recursive arrays won't have it.
1962
1963         * test/glib/test-dbus-glib.c:
1964         * test/glib/test-service-glib.c:
1965         * test/glib/test-service-glib.xml: Add recursive arrays tests.
1966         
1967 2005-07-20  John (J5) Palmieir  <johnp@redhat.com>
1968
1969         * python/_dbus.py, _util.py, decorators.py, extract.py, matchrules.py.
1970         proxies.py, service.py: Cleanup of code after running it through the
1971         pyflakes code checker mostly dealing with undefined names.  
1972         (Bug #3828, Patch from Anthony Baxter <anthony@interlink.com.au>)
1973
1974 2005-07-17  John (J5) Palmieri  <johnp@redhat.com>
1975
1976         * NEWS: Update to 0.35.2
1977
1978 2005-07-17  John (J5) Palmieri  <johnp@redhat.com>
1979
1980         * python/_dbus.py: Remove import of the dbus.services
1981         module as it no longer exists (patch from Dimitur Kirov)
1982
1983         * python/service.py (Object::__init__): Fixed typo
1984         s/name/bus_name (patch from Dimitur Kirov)
1985
1986         * python/examples/example-signal-emitter.py: import dbus.glib
1987         to get the main loop and use glib mainloop instead of gtk so
1988         X doesn't have to be running.
1989
1990         * python/examples/example-signal-recipient.py: import dbus.glib
1991         to get the main loop and use glib mainloop instead of gtk so
1992         X doesn't have to be running. Import the decorators module
1993         directly.
1994
1995         * test/glib/Makefile.am:  Added DIST_EXTRA files that distcheck
1996         didn't pick up on but are needed to build
1997
1998         * configure.in: upped version to 0.35.2
1999
2000         * bus/driver.c, bus/selinux.c, bus/selinux.h, dbus/dbus-protocol.h:
2001         added Colin Walters' SELinux API rename patch from head 
2002         s/unix sercurity context/selinux security context/
2003
2004 2005-07-16  John (J5) Palmieri  <johnp@redhat.com>
2005
2006         * python/Makefile.am: dbus_binding.pxd.in should be included 
2007         in EXTRA_DIST not dbus_binding.pxd
2008         fix up $(srcdir) hopefully for the last time
2009
2010         * NEWS: Update to 0.35.1
2011
2012 2005-07-16  Colin Walters  <walters@verbum.org>
2013
2014         * bus/driver.c (bus_driver_handle_get_connection_selinux_security_context): Renamed
2015         from bus_driver_handle_get_connection_unix_security_context.  Update for
2016         error usage.
2017         (message_handlers): Update for renames.
2018
2019         * bus/selinux.c (bus_selinux_allows_send): Handle OOM on
2020         _dbus_string_init failure correctly.
2021         (bus_selinux_append_context): Convert SID to context.  Append it
2022         as a byte array.
2023         (bus_selinux_shutdown): Handle the case where bus_selinux_full_init
2024         hasn't been called.
2025
2026         * bus/selinux.h: Update prototype.
2027
2028         * dbus/dbus-protocol.h (DBUS_ERROR_SELINUX_SECURITY_CONTEXT_UNKNOWN): Renamed
2029         from DBUS_ERROR_UNIX_SECURITY_CONTEXT_UNKNOWN.
2030
2031 2005-07-15  Colin Walters  <walters@verbum.org>
2032
2033         * doc/TODO: Add note about convenience wrappers.
2034
2035 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
2036
2037         * NEWS: Update to 0.35
2038
2039 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
2040
2041         * glib/Makefile.am: Add make-dbus-glib-error-switch.sh to EXTRA_DIST
2042         so distcheck doesn't fail
2043
2044         * glib/examples/Makefile.am: Add example-service.xml and 
2045         example-signal-emitter.xml to EXTRA_DIST so distcheck doesn't fail
2046
2047         * glib/examples/statemachine/Makefile.am: Add statemachine.xml and
2048         statemachine-server.xml to EXTRA_DIST so distcheck doesn't fail
2049
2050         * python/Makefile.am: Preprend $(srcdir)/ to source files so the
2051         compiler looks in the right places during distcheck
2052
2053 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
2054
2055         * glib/example/Makefile.am: Fix a typo which cause make distcheck
2056         to fail
2057
2058 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
2059
2060         * python/examples/example-service.py,
2061         python/examples/example-signal-emitter.py: Fixed up examples
2062         for API changes
2063
2064 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
2065
2066         * python/__init__.py: Upped to version (0,42,0) because of
2067         the API change
2068
2069 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
2070
2071         * ChangeLog: fix date in last entry
2072
2073         * configure.in, bus/system.conf.in: add the ability to configure 
2074         the system bus user at compiletime with the --with-dbus-user flag
2075         (patch from Kristof Vansant)
2076
2077 2005-07-15  John (J5) Palmieri  <johnp@redhat.com>
2078
2079         * bus/dispatch.c, test/test-service.c: Add testcase
2080         for sending messages to oneself (TODO item).
2081
2082         * python/service.py (class Object): Swap ordering of bus_name 
2083         and object_path parameters to better support inheritance.
2084
2085         * doc/dbus-tutorial.xml: change Python docs to reflect change
2086         in parameter ordering and fix the inheritance section.
2087
2088         * doc/TODO: remove sending message to oneself TODO item
2089
2090 2005-07-15  Ross Burton  <ross@openedhand.com>
2091
2092         * glib/dbus-gproxy.c:
2093         Fix a leak when calling methods via the proxy.
2094
2095 2005-07-15  Colin Walters  <walters@verbum.org>
2096
2097         * bus/selinux.c (bus_selinux_append_context): Wrap in
2098         HAVE_SELINUX.
2099
2100 2005-07-14  John (J5) Palmieri  <johnp@redhat.com>
2101
2102         * python/_dbus.py (Bus::remove_signal_receiver):
2103         don't add a callback to the match if none has been passed in
2104         
2105         * python/matchrules.py (SignalMatchTree::remove): if the rule
2106         being matched does not have a callback treat it as a wildcard
2107         fix matching logic
2108
2109         * doc/dbus-tutorial.xml: Add Python tutorial
2110
2111 2005-07-14  Colin Walters  <walters@verbum.org>
2112
2113         * bus/driver.c
2114         (bus_driver_handle_get_connection_unix_security_context): New function.
2115         (message_handlers): Add.
2116
2117         * bus/selinux.c (bus_selinux_append_context): New function; appends
2118         security context to message.
2119
2120         * bus/selinux.h: Prototype.
2121
2122         * dbus/dbus-protocol.h (DBUS_ERROR_UNIX_SECURITY_CONTEXT_UNKNOWN): New.
2123
2124 2005-07-14  John (J5) Palmieri  <johnp@redhat.com>
2125
2126         * bus/activation.c: clean up all tabs to be 8 spaces 
2127         (bus_activation_activate_service): make sure we clean up
2128         if activation fails
2129
2130         * bus/dispatch.c: clean up all tabs to be 8 spaces 
2131         (check_shell_fail_service_auto_start): New function
2132         tests to make sure we get fail properly when trying to auto start a service
2133         with a faulty command line
2134         (check_shell_service_success_auto_start): New function tests to make sure
2135         auto started services get the arguments on the command line
2136
2137         * test/test-shell-service.c: Added service for testing auto-starting with 
2138         command line arguments
2139
2140         * test/data/valid-service-files/debug-shell-echo-fail.service.in, 
2141         test/data/valid-service-files/debug-shell-echo-success.service.in:
2142         Added service files for testing auto-starting with command line arguments
2143
2144         * */.cvsignore: added a bunch of generated files to various .cvsignore files
2145
2146 2005-07-14  Rodrigo Moya  <rodrigo@novell.com>
2147
2148         * dbus/dbus-shell.[ch]: copy/pasted code from GLib.
2149         
2150         * dbus/Makefile.am: added new files to build.
2151
2152         * bus/activation.c (bus_activation_activate_service): support
2153         activation commands with parameters.
2154
2155         * test/shell-test.c: added test program for the shell parsing
2156         code.
2157
2158 2005-07-13  David Zeuthen  <davidz@redhat.com>
2159
2160         * tools/dbus-send.c (append_arg, type_from_name): Also support 16 and
2161         64 bit signed and unsigned parameters
2162
2163 2005-07-13  John (J5) Palmieri  <johnp@redhat.com>
2164
2165         * python/.cvsignore: remove dbus_bindings.pyx, add dbus_bindings.pxd
2166
2167         * python/service.py (class Name): renamed BusName to make it clearer
2168         what the object is for (a name on the bus)
2169
2170         * python/examples/example-service.py,
2171         python/examples/example-signal-emitter.py: change the Name object to
2172         BusName
2173
2174 2005-07-12  Colin Walters  <walters@verbum.org>
2175
2176         Patch from Jim Gettys <Jim.Gettys@hp.com>.
2177
2178         * tools/dbus-launch.c: Include sys/select.h.
2179
2180 2005-07-12  John (J5) Palmieri  <johnp@redhat.com>
2181         * python/dbus_bindings.pyx.in: removed
2182
2183         * python/dbus_bindings.pyx: Added.
2184         - Fixed some memleaks (patch from 
2185         Sean Meiners <sean.meiners@linspireinc.com>)
2186         - Broke out the #include "dbus_h_wrapper.h" and put it in its
2187         own pxd file (Pyrex definition)
2188         - Broke out glib dependancies into its own pyx module
2189         
2190         * python/dbus_bindings.pdx: Added.
2191         - Defines C class Connection for exporting to other modules
2192
2193         * python/dbus_glib_bindings.pyx: Added.
2194         - New module to handle lowlevel dbus-glib mainloop integration
2195
2196         * python/glib.py: Added.
2197         - Registers the glib mainloop when you import this module
2198
2199         * python/services.py: Removed (renamed to service.py)
2200         
2201         * python/service.py: Added.
2202         - (class Server): renamed Name
2203
2204         * python/__init__.py: Bump ro version (0,41,0)
2205         -don't import the decorators or service module
2206         by default.  These now reside in the dbus.service namespace
2207
2208         * python/_dbus.py (Bus::__init__): Add code run the main loop 
2209         setup function on creation 
2210
2211         * python/examples/example-service.py,
2212         python/examples/example-signal-emitter.py: update examples
2213
2214         * python/examples/gconf-proxy-service.py,
2215         python/examples/gconf-proxy-service2.py: TODO fix these up
2216
2217         * doc/TODO: Addition
2218         - Added a Python Bindings 1.0 section
2219         - added "Add match on args or match on details to match rules"
2220
2221
2222 2005-07-12  Colin Walters  <walters@verbum.org>
2223
2224         * glib/examples/statemachine/Makefile.am (statemachine-server-glue.h) 
2225         (statemachine-glue.h): 
2226         * glib/examples/Makefile.am (example-service-glue.h) 
2227         (example-signal-emitter-glue.h): 
2228         * glib/Makefile.am (dbus-glib-error-switch.h): 
2229         Add libtool --mode=execute so we use the built library instead
2230         of any installed one.
2231
2232 2005-07-11  Colin Walters  <walters@verbum.org>
2233
2234         * glib/dbus-gvalue.c (struct _DBusGValue): Delete.
2235         (dbus_g_value_types_init): Remove assertion.
2236         (dbus_g_value_get_g_type, dbus_g_value_open)
2237         (dbus_g_value_iterator_get_values, dbus_g_value_get_signature)
2238         (dbus_g_value_copy, dbus_g_value_free): Delete unimplemented
2239         functions related to DBusGValue.  Now we marshal/demarshal
2240         structures as GValueArray.
2241         (dbus_gtype_from_signature_iter): Return G_TYPE_VALUE_ARRAY for
2242         structures.
2243         (signature_iter_to_g_type_array): Don't call
2244         signature_iter_to_g_type_struct.
2245         (signature_iter_to_g_type_struct): Delete.
2246         (dbus_gvalue_to_signature): Delete.
2247         (dbus_gvalue_to_signature): New function with same name as other
2248         one; we can convert structures to signatures.
2249         (demarshal_valuearray): New function.
2250         (get_type_demarshaller): Use it.
2251         (demarshal_recurse): Delete.
2252         (marshal_proxy): New function.
2253         (marshal_map): Warn if we can't determine signature from type.
2254         (marshal_collection_ptrarray): Ditto.
2255         (marshal_collection_array): Ditto.
2256         (get_type_marshaller): Use marshal_valuearray.
2257         (marshal_recurse): Delete.
2258         (_dbus_gvalue_test): Add some tests.
2259
2260         * dbus/dbus-glib.h (struct _DBusGValueIterator): 
2261         (dbus_g_value_get_g_type, DBUS_TYPE_G_VALUE)
2262         (dbus_g_value_open, dbus_g_value_iterator_get_value)
2263         (dbus_g_value_iterator_get_values, dbus_g_value_iterator_recurse)
2264         (dbus_g_value_free): Remove prototypes.
2265
2266         * glib/dbus-binding-tool-glib.c (dbus_g_type_get_lookup_function): Handle
2267         G_TYPE_VALUE_ARRAY.
2268
2269         * glib/examples/example-service.c:
2270         * glib/examples/example-client.c: Implement GetTuple.
2271
2272         * test/glib/test-dbus-glib.c:
2273         * test/glib/test-service-glib.c:
2274         * test/glib/test-service-glib.xml: Add structure tests.
2275
2276 2005-07-10  Colin Walters  <walters@verbum.org>
2277
2278         * doc/TODO: Knock off some GLib items with this patch.
2279
2280         * glib/dbus-gvalue-utils.c (_dbus_gtype_can_signal_error) 
2281         (_dbus_gvalue_signals_error): New functions.
2282
2283         * glib/dbus-gvalue-utils.h: Prototype them.
2284
2285         * glib/dbus-gobject.c (arg_iterate): Update to handle return vals
2286         and change to not output const/retval flags for input args.  All
2287         callers updated.
2288         (invoke_object_method): Refactor to handle return values.  Add
2289         some more comments in various places.  Remove debug g_print.
2290
2291         * glib/dbus-binding-tool-glib.h (DBUS_GLIB_ANNOTATION_RETURNVAL): New.
2292
2293         * glib/dbus-binding-tool-glib.c (dbus_g_type_get_marshal_name):
2294         Handle G_TYPE_NONE.
2295         (compute_gsignature): New function; refactored from code from
2296         compute_marshaller and compute_marshaller_name.  Enhance to
2297         handle return values and async ops more cleanly.  Update for
2298         async ops returning NONE instead of BOOLEAN.
2299         (compute_marshaller, compute_marshaller_name): Call compute_gsignature
2300         and output appropriate string.
2301         (generate_glue): Handle return value annotation.  Also don't dump
2302         constness flag for input arguments.
2303
2304         * glib/Makefile.am (DBUS_GLIB_INTERNALS): New variable; contains
2305         files shared between installed library and utilities.
2306         (libdbus_glib_1_la_SOURCES): Move some stuf into DBUS_GLIB_INTERNALS.
2307         (libdbus_gtool_la_SOURCES): Suck in DBUS_GLIB_INTERNALS so the
2308         binding tool can access gtype utility functions.
2309
2310         * test/glib/test-service-glib.c: 
2311         * test/glib/test-service-glib.xml: 
2312         * test/glib/test-dbus-glib.c: Add some tests for return values.
2313
2314 2005-07-09  Colin Walters  <walters@verbum.org>
2315
2316         * glib/dbus-gparser.c (parse_annotation): Add annotations to
2317         argument if available, not method.
2318
2319         * glib/dbus-gobject.c (arg_iterate): More verbose warnings.
2320         (invoke_object_method): First, remove some redundant
2321         GValues (object_value, error_value) in favor of working on
2322         array directly.  Second, rework constness to be less buggy.
2323         Now we iterate directly over the argument metadata instead
2324         of parallel iterating over output signature and metadata.
2325
2326         * glib/dbus-glib-tool.h: Add INVALID_ANNOTATION error.
2327
2328         * glib/dbus-binding-tool-glib.c (generate_glue): Barf on const
2329         annotation on input args.
2330         
2331 2005-07-09  Colin Walters  <walters@verbum.org>
2332
2333         * glib/dbus-binding-tool-glib.h (DBUS_GLIB_ANNOTATION_CONST):
2334         Define.
2335
2336         * glib/dbus-binding-tool-glib.c (generate_glue): Handle Const
2337         annotation.
2338
2339         * glib/dbus-gobject.c (arg_iterate): Update to parse constval too.
2340         (method_dir_signature_from_object_info): Handle arg_iterate change.
2341         (write_interface): Ditto.
2342         (lookup_object_info): Don't barf if format_version is > 0.
2343         (invoke_object_method): Handle arg constness.
2344
2345         * glib/dbus-gidl.c (struct ArgInfo): Add annotations.
2346         (arg_info_new): Create.
2347         (arg_info_unref): Destroy.
2348         (arg_info_get_annotations, arg_info_get_annotation) 
2349         (arg_info_add_annotation): New functions.
2350
2351         * glib/dbus-gidl.h: Prototype them.
2352
2353         * glib/dbus-gparser.c (parse_annotation): Allow annotations in
2354         args, disallow them in properties.
2355         (parse_annotation): Handle arg annotations.
2356
2357         * test/glib/test-service-glib.xml: 
2358         * test/glib/test-service-glib.c: Update to make some methods
2359         const.
2360
2361 2005-07-08  Colin Walters  <walters@verbum.org>
2362
2363         * test/glib/test-service-glib.xml: 
2364         * test/glib/test-service-glib.c:
2365         * test/glib/test-dbus-glib.c: Test a{sv}.
2366
2367         * glib/examples/statemachine/statemachine.c:
2368         * glib/examples/statemachine/statemachine-server.c:
2369         * glib/examples/statemachine/statemachine-client.c: Fix some bugs,
2370         add progress bar, etc.
2371
2372         * glib/dbus-gvalue.c (register_array, register_dict): Delete; not
2373         needed anymore due to generic array/map marshalling.
2374         (dbus_g_value_types_init): Don't register basic arrays or the
2375         string/string hash.
2376         (dbus_gtype_from_signature_iter): Don't try to recurse into
2377         variants.
2378         (dbus_gtype_to_signature): Check collection/map before type
2379         metadata.
2380         (demarshal_garray_basic): Renamed to demarshal_collection_array.
2381         (demarshal_ghashtable): Renamed to demarshal_map; fix to use new
2382         generic map creation/append functions instead of hash table
2383         specifically.
2384         (get_type_demarshaller): Handle maps.
2385         (demarshal_collection): Dispatch on collection type to either
2386         demarshal_collection_ptrarray or demarshal_collection_array.
2387         (get_type_marshaller): Handle maps.
2388         (marshal_collection): Dispatch collection type to either
2389         marshal_collection_ptrarray or marshal_collection_array.
2390         (_dbus_gvalue_test): New test.
2391
2392         * glib/dbus-gvalue-utils.c (unset_and_free_g_value): New function.
2393         (hash_free_from_gtype): Use it to free GValues.
2394         (hashtable_append): New function.
2395         (ptrarray_append): Fix prototype.
2396         (slist_append): Ditto.
2397         (_dbus_gvalue_utils_test): Extend tests.
2398
2399         * glib/dbus-gtype-specialized.c
2400         (dbus_g_type_specialized_init_append): Renamed from
2401         dbus_g_type_specialized_collection_init_append.  Remove const from
2402         value, since we steal it.
2403         (dbus_g_type_specialized_map_append): New function.
2404
2405         * glib/dbus-gtype-specialized.h: Update prototypes.
2406         Add DBusGTypeSpecializedMapAppendFunc.
2407
2408         * glib/dbus-gtest.c (dbus_glib_internal_do_not_use_run_tests): Run
2409         _dbus_gvalue_test.
2410         
2411         * glib/dbus-gtest.h: Prototype it.
2412
2413 2005-07-08  Ross Burton  <ross@openedhand.com>
2414
2415         * dbus/dbus-glib.h:
2416         Add DBysGAsyncData for the async bindings.
2417
2418         * glib/dbus-binding-tool-glib.c:
2419         Re-enable the async bindings.
2420
2421         * test/glib/test-dbus-glib.c:
2422         Add a test for the generated async bindings.
2423
2424 2005-07-08  Colin Walters  <walters@verbum.org>
2425
2426         * doc/TODO: Update GLib todo bits, also add a post-1.0 TODO for a
2427         connection concept.
2428         
2429 2005-07-08  Colin Walters  <walters@verbum.org>
2430         
2431         * tools/Makefile.am: Kill of print-introspect in favor of using
2432         dbus-send --print-reply=literal.
2433
2434         * test/glib/test-service-glib.xml: 
2435         * test/glib/test-service-glib.c (my_object_get_objs): New test
2436         for "ao".
2437
2438         * test/glib/test-dbus-glib.c (echo_received_cb): Free echo data.
2439         (main): Test GetObjs.
2440
2441         * glib/examples/statemachine/Makefile.am:
2442         * glib/examples/statemachine/sm-marshal.list:
2443         * glib/examples/statemachine/statemachine-client.c:
2444         * glib/examples/statemachine/statemachine-server.c:
2445         * glib/examples/statemachine/statemachine-server.xml:
2446         * glib/examples/statemachine/statemachine.c:
2447         * glib/examples/statemachine/statemachine.h:
2448         * glib/examples/statemachine/statemachine.xml:
2449
2450         New example.
2451
2452         * glib/examples/example-service.c (main): Move invocation
2453         of dbus_g_object_type_install_info earlier, to emphasize it
2454         should only be done once.
2455
2456         * glib/examples/example-signal-emitter.c (main): Ditto.
2457
2458         * glib/examples/Makefile.am (SUBDIRS): Include statemachine.
2459
2460         * glib/dbus-gvalue.h (dbus_gtype_to_signature)
2461         (dbus_gvalue_marshal): Update prototypes.
2462
2463         * glib/dbus-gvalue.c: Update all marshalling functions to take
2464         const GValue instead of GValue.
2465         (signature_iter_to_g_type_array): Return a GPtrArray for nonfixed
2466         types.
2467         (dbus_gvalue_to_signature): Update for dbus_gtype_to_signature
2468         change.
2469         (dbus_gtype_to_signature): Handle generic collecitons and maps.
2470         Return a newly-allocated string.
2471         (demarshal_proxy, demarshal_object_path, demarshal_object)
2472         (demarshal_strv, demarshal_ghashtable): Set error, don't assert if
2473         we get the wrong types from message.
2474         (get_type_demarshaller): New function, extracted from
2475         dbus_gvalue_demarshal.
2476         (demarshal_collection): New function, demarshals generic
2477         collection.
2478         (dbus_gvalue_demarshal): Just invoke result of
2479         get_type_demarshaller.  Throw error if we don't have one.
2480         (marshal_garray_basic): Abort on OOM.
2481         (get_type_marshaller): New function, extracted from
2482         dbus_gvalue_marshal.
2483         (collection_marshal_iterator, marshal_collection): New functions;
2484         implements generic marshalling for an iteratable specialized
2485         collection.
2486         (dbus_gvalue_marshal): Just invoke result of get_type_marshaller.
2487
2488         * glib/dbus-gvalue-utils.c (gvalue_from_ptrarray_value): Handle
2489         G_TYPE_STRING.
2490         (ptrarray_value_from_gvalue): Ditto.
2491         (ptrarray_append, ptrarray_free): New functions.
2492         (slist_constructor, slist_iterator, slist_copy_elt, slist_copy) 
2493         (slist_append, slist_end_append, slist_free): New functions.
2494         (dbus_g_type_specialized_builtins_init): Add append fuctions
2495         for GPtrArray and GSList.  Register GSList.
2496         (test_specialized_hash, _dbus_gvalue_utils_test): New functions.
2497
2498         * glib/dbus-gtype-specialized.h (DBusGTypeSpecializedAppendContext):
2499         New.
2500         (dbus_g_type_specialized_collection_init_append)
2501         (dbus_g_type_specialized_collection_append)
2502         (dbus_g_type_specialized_collection_end_append): Prototype.
2503         (DBusGTypeSpecializedCollectionVtable): Add append_func and
2504         end_append_func.
2505
2506         * glib/dbus-gtype-specialized.c (dbus_g_type_specialized_collection_init_append) 
2507         (dbus_g_type_specialized_collection_append) 
2508         (dbus_g_type_specialized_collection_end_append): New functions.
2509         (dbus_g_type_map_value_iterate): Take const GValue.
2510         (dbus_g_type_collection_value_iterate): Ditto.
2511
2512         * glib/dbus-gtest.c (dbus_glib_internal_do_not_use_run_tests): Run
2513         _dbus_gvalue_utils_test.
2514         
2515         * glib/dbus-gtest.h: Prototype it.
2516
2517         * glib/dbus-gproxy.c (dbus_g_proxy_manager_filter): Avoid
2518         using uninitialized owner_list.
2519         (dbus_g_proxy_begin_call_internal): Move return_if_fail to
2520         public API.
2521         (dbus_g_proxy_end_call_internal): Update to use error set
2522         from dbus_gvalue_demarshal instead of setting it here.
2523         (dbus_g_proxy_begin_call): Move return_if_fail here.
2524
2525         * glib/dbus-gobject.c (write_interface): Update for
2526         dbus_gtype_to_signature returning new string.
2527
2528         * configure.in: Add glib/examples/statemachine.
2529
2530 2005-07-08  Joe Shaw  <joeshaw@novell.com>
2531
2532         * configure.in: Add a configure option, --with-console-auth-dir
2533         
2534         * dbus/dbus-sysdeps-util.c (_dbus_user_at_console): Use the
2535         new setting.  Patch from Kay Sievers.
2536
2537 2005-07-06  Colin Walters  <walters@verbum.org>
2538
2539         * dbus/dbus-glib.h (DBusGPendingCall, DBusGPendingCallNotify)
2540         (DBUS_TYPE_G_PENDING_CALL, dbus_g_pending_call_get_g_type)
2541         (dbus_g_pending_call_ref, dbus_g_pending_call_unref): Delete.
2542         (dbus_g_pending_call_set_notify, dbus_g_pending_call_cancel):
2543         Delete in favor of dbus_g_proxy_begin_call and
2544         dbus_g_proxy_cancel_call.
2545         (DBusGProxyCall, DBusGProxyCallNotify): New.
2546         (dbus_g_proxy_begin_call): Change prototype to take callback, user
2547         data, and destroy function.  This replaces
2548         dbus_g_pending_call_set_notify.
2549         (dbus_g_proxy_cancel_call): Prototype.
2550         (DBusGAsyncData): Delete, shouldn't be needed anymore.
2551
2552         * glib/dbus-gproxy.c (struct _DBusGProxy): Add call_id_counter and
2553         pending_calls map.
2554         (struct _DBusGProxyManager): Add bus_proxy member, which is an
2555         internal proxy for calls to the bus. Remove
2556         pending_nameowner_calls, now the internal proxy keeps track.
2557         (dbus_g_proxy_manager_unref): Unref bus proxy, remove reference to
2558         pending_nameowner_calls.
2559         (got_name_owner_cb): Update prototype, and use
2560         dbus_g_proxy_end_call.
2561         (got_name_owner_cb): Remove reference to pending_nameowner_calls.
2562         (dbus_g_proxy_manager_register): Delete directly libdbus code in
2563         favor of using internal proxy.
2564         (dbus_g_proxy_manager_unregister): Update to use
2565         dbus_g_proxy_cancel_call for any pending GetNameOwner call.
2566         (dbus_g_proxy_init): Initialize pending calls map.
2567         (dbus_g_proxy_constructor): New.
2568         (dbus_g_proxy_class_init): Add get/set property functions,
2569         constructor, and add NAME, PATH, and INTERFACE properties.
2570         (cancel_pending_call): New function.
2571         (dbus_g_proxy_dispose): Iterate over any outstanding calls and
2572         cancel them.
2573         (dbus_g_proxy_set_property, dbus_g_proxy_get_property): New.
2574         (GPendingNotifyClosure): New structure.
2575         (d_pending_call_notify, d_pending_call_free): Moved here from
2576         dbus-glib.c.
2577         (DBUS_G_VALUE_ARRAY_COLLECT_ALL): Moved around to satisfy function
2578         ordering.
2579         (manager_begin_bus_call): New internal function for talking to
2580         internal bus proxy.
2581         (dbus_g_proxy_new): Construct object using GObjet properties.
2582         (dbus_g_proxy_begin_call_internal): Update to take user data, etc.
2583         Create closure of same, and insert call into map of pending calls.
2584         (dbus_g_proxy_end_call_internal): Take call id instead of pending
2585         call.  Look up pending call in current set.  Remove it when we've
2586         completed.
2587         (dbus_g_pending_call_end, dbus_g_proxy_end_call_internal): Delete.
2588         (dbus_g_proxy_begin_call): Change API to take callback, user data,
2589         and destroy function directly.
2590         (dbus_g_proxy_end_call): Update to take DBusGProxyCall.
2591         (dbus_g_proxy_call): Invoke with NULL callback.
2592         (dbus_g_proxy_cancel_call): New function, replaces
2593         dbus_g_pending_call_cancel.
2594
2595         * glib/dbus-gparser.c (validate_signature): Fix call to
2596         dbus_set_g_error.
2597
2598         * glib/dbus-gobject.c (dbus_g_object_type_dbus_metadata_quark):
2599         New quark for attaching metadata to GType.
2600         (info_hash): Delete.
2601         (lookup_object_info): Look up using quark.
2602         (dbus_g_object_type_install_info): Check that a type is classed,
2603         not that it's an object.  Also just install type data using quark
2604         instead of using global hash.
2605
2606         * glib/dbus-glib.c (dbus_g_pending_call_ref) 
2607         (dbus_g_pending_call_unref, dbus_pending_call_get_g_type)
2608         (GPendingNotifyClosure): Delete.
2609         (d_pending_call_notify, d_pending_call_free): Move to dbus-gproxy.c.
2610         (dbus_g_pending_call_set_notify, dbus_g_pending_call_cancel): Delete.
2611
2612         * glib/dbus-binding-tool-glib.c (generate_client_glue): Disable async
2613         client method generation until we can fix it...
2614         
2615         * tools/dbus-viewer.c (load_child_nodes): Use dbus_g_proxy_call.
2616         (load_from_service_thread_func): Ditto.
2617
2618         * tools/dbus-names-model.c (struct NamesModel): Hold
2619         DBusGProxyCall.
2620         (have_names_notify): Update prototype, use
2621         dbus_g_proxy_cancel_call.
2622         (names_model_reload): Update for new dbus_g_proxy_begin_call API.
2623
2624         * tools/dbus-monitor.c (filter_func): Update for print_message
2625         API change.
2626
2627         * test/glib/test-dbus-glib.c: Add more tests for async
2628         invocations.  Update many begin_call/end_call pairs to just use
2629         dbus_g_proxy_call.
2630
2631         * tools/dbus-send.c (main): Add --print-reply=literal mode.  This
2632         allows us to dump print-introspect.c.
2633
2634         * tools/dbus-print-message.h (print_message): Add literal argument
2635         to print_message which is intended to allow printing arguments without
2636         metadata like "string=".
2637
2638         * tools/dbus-print-message.c (print_iter): Add literal argument.
2639         (print_message): Allow printing string messages literally.
2640
2641 2005-07-05  Colin Walters  <walters@verbum.org>
2642
2643         * glib/dbus-gproxy.c (marshal_dbus_message_to_g_marshaller):
2644         Remove value refcount leak, original patch from Jorn Baayen
2645         <jorn@openedhand.com>.  Also remove useless extra value in favor
2646         of prepending to value array directly.
2647
2648 2005-07-02  Colin Walters  <walters@verbum.org>
2649
2650         * glib/dbus-gmain.c (_dbus_gmain_test): Fix test.
2651
2652 2005-07-01  Colin Walters  <walters@verbum.org>
2653
2654         Patch from Jonathan Matthew <jonathan@kaolin.hn.org>
2655         
2656         * glib/dbus-gvalue.c (basic_typecode_to_gtype): Fix return type.
2657         (dbus_g_value_types_init): Marshal G_TYPE_CHAR as DBUS_TYPE_BYTE,
2658         G_TYPE_LONG as DBUS_TYPE_INT32, G_TYPE_ULONG as DBUS_TYPE_UINT32,
2659         and G_TYPE_FLOAT as DBUS_TYPE_DOUBLE.
2660
2661 2005-06-30  Colin Walters  <walters@verbum.org>
2662
2663         * test/glib/test-dbus-glib.c:
2664         * test/glib/test-service-glib.c:
2665         * test/glib/test-service-glib.xml: Update tests for new error
2666         setting bits, also add async tests (patch from Ross Burton).
2667
2668         * test/glib/Makefile.am (test_service_glib_LDADD): Add
2669         DBUS_GLIB_THREADS_LIBS.
2670
2671         * glib/dbus-gproxy.c (get_name_owner)
2672         (dbus_g_pending_call_end_valist): Ditto.
2673
2674         * glib/dbus-gobject.c (error_metadata): New mapping from GError
2675         domain (GQuark) to DBusGErrorInfo.  
2676         (gerror_domaincode_to_dbus_error_name): Attempt to look up error
2677         quark in error_metadata.  Take message interface as default
2678         error message interface.
2679         (gerror_to_dbus_error_message): Pass message interface.
2680         (dbus_set_g_error): Resurrected.
2681         (dbus_g_error_info_free): New function.
2682         (dbus_g_object_type_install_info): Use g_type_class_ref instead
2683         of _peek to actually create the object class if it hasn't been
2684         created yet.
2685         (dbus_g_error_domain_register): New function.
2686
2687         * glib/dbus-gmain.c (dbus_g_bus_get): Switch to dbus_set_g_error.
2688
2689         * glib/dbus-gparser.c (validate_signature): Ditto.
2690
2691         * dbus/dbus-glib.h (dbus_g_error_set): Delete.
2692         (dbus_g_error_domain_register): Prototype.
2693
2694         * glib/dbus-glib.c (dbus_g_error_set): Delete.
2695         Update tests.
2696
2697 2005-06-29  Colin Walters  <walters@verbum.org>
2698
2699         * dbus/dbus-glib.h: Delete DBUS_TYPE_G_PROXY_ARRAY.  Add
2700         DBUS_TYPE_G_OBJECT_PATH.
2701
2702         * glib/dbus-gvalue.c (dbus_g_value_types_init): Remove marshallers
2703         for G_TYPE_OBJECT and DBUS_TYPE_G_PROXY_ARRAY (the latter should
2704         be handled more generically).  Add DBUS_TYPE_G_OBJECT_PATH.
2705         (dbus_g_object_path_get_g_type): New function.
2706         (dbus_gtype_from_signature_iter): Map DBUS_TYPE_OBJECT_PATH
2707         to DBUS_TYPE_G_OBJECT_PATH by default.
2708         (demarshal_proxy): Remove unused name variable.
2709         (demarshal_object_path, marshal_object_path): New functions.
2710         (demarshal_proxy_array, marshal_proxy_array): Delete.
2711         
2712         * glib/dbus-binding-tool-glib.c (dbus_g_type_get_c_name): Map
2713         DBUS_TYPE_G_OBJECT_PATH to char *.
2714         (dbus_g_type_get_lookup_function): Map builtin
2715         DBUS_TYPE_G_OBJECT_PATH.
2716
2717         * test/glib/test-dbus-glib.c
2718         * test/glib/test-service-glib.c (my_object_objpath): 
2719         Adapt tests to new object path marshalling.
2720
2721 2005-06-29  John (J5) Palmieri  <johnp@redhat.com>
2722
2723         * configure.in: force check for Python >= 2.4
2724
2725 2005-06-29  Colin Walters  <walters@verbum.org>
2726         
2727         Patch from Ross Burton <ross@openedhand.com>
2728         
2729         * glib/dbus-gobject.c (invoke_object_method): Unset object
2730         value in all cases, not only in async case.
2731
2732 2005-06-29  Colin Walters  <walters@verbum.org>
2733
2734         * glib/dbus-gproxy.c (struct _DBusGProxy): Add new member
2735         name_call for keeping track of any outgoing GetNameOwner call.
2736         Also add for_owner and associated.
2737         (struct _DBusGProxyManager): Add owner_names, which is hash table
2738         that maps a base name to a list of names it owns (that we're
2739         interested in).  Add pending_nameowner_calls which is a list of
2740         all outstanding GetNameOwner; avoids us having to iterate over
2741         every proxy.  Add unassociated_proxies which keeps track of name
2742         proxies with no associated name owner.
2743         (dbus_g_proxy_manager_unref): Destroy owner_names.
2744         (struct DBusGProxyNameOwnerInfo): New struct for keeping track of
2745         name refcounts.
2746         (find_name_in_info, name_owner_foreach)
2747         (dbus_g_proxy_manager_lookup_name_owner, insert_nameinfo)
2748         (dbus_g_proxy_manager_monitor_name_owner)
2749         (dbus_g_proxy_manager_unmonitor_name_owner)
2750         (unassociate_proxies, dbus_g_proxy_manager_replace_name_owner):
2751         New functions; they manipulate the owner_names mapping.
2752         (got_name_owner_cb): New function.
2753         (get_name_owner): New function, extracted from
2754         dbus_g_proxy_new_for_name_owner.
2755         (dbus_g_proxy_manager_register): For now we need to keep track of
2756         all NameOwnerChanged.  Also if the proxy is for a name, if we
2757         don't already know the name owner, queue a new GetNameOwner
2758         request and add it to our list of unassociated proxies.  Otherwise
2759         inc the refcount.
2760         (dbus_g_proxy_manager_unregister): If this proxy is for a name,
2761         cancel any pending GetNameOwner call, etc.
2762         (dbus_g_proxy_manager_filter): Handle NameOwnerChanged.  Also use
2763         the owner_names mapping to look up the current names for the
2764         signal source, and dispatch to any proxies for that name.
2765         (dbus_g_proxy_new): Initialize new members.
2766         (dbus_g_proxy_new_for_name): Delete unused proxy variable.
2767         (dbus_g_proxy_new_for_name_owner): Use get_name_owner.
2768         (dbus_g_pending_call_end_valist): New function, extracted from
2769         dbus_g_proxy_end_call_internal.  Useful when we don't have a proxy
2770         but want to use the GLib infrastructure.  Also note how many
2771         arguments in reply were over.
2772         (dbus_g_pending_call_end): New function, just call
2773         dbus_g_pending_call_end_valist.
2774         (dbus_g_proxy_end_call_internal): Just call
2775         dbus_g_pending_call_end_valist.
2776
2777         * glib/dbus-gobject.c (_dbus_gobject_lookup_marshaller): Fix lookup
2778         of builtin marshaller for STRING_STRING_STRING.
2779
2780         * test/glib/test-dbus-glib.c: 
2781         * test/glib/test-service-glib.c:
2782         * test/glib/test-service-glib.xml:
2783         Extend tests to cover name proxies, destruction of owner proxies,
2784         etc.
2785         
2786         * glib/examples/example-signal-recipient.c
2787         (dbus_g_proxy_new_for_name_owner): Create a name proxy.
2788         
2789         * tools/dbus-send.c (main): Print D-BUS error name in addition
2790         to message.
2791
2792 2005-06-28  John (J5) Palmieri  <johnp@redhat.com>
2793
2794         * python/dbus_bindings.pyx.in (cunregister_function_handler,
2795         cmessage_function_handler): Patch from 
2796         Anthony Baxter <anthony@interlink.com.au> fixes threading problems
2797         by using the Py_GILState_Ensure/Release to synchronize with the
2798         python runtime.
2799         
2800 2005-06-28  Ray Strode  <rstrode@redhat.com>
2801
2802         *  dbus/dbus-spawn.c (_dbus_babysitter_unref): kill
2803         babysitter helper process on last unref, bug #2813.
2804
2805 2005-06-27  Colin Walters  <walters@verbum.org>
2806
2807         * test/glib/test-dbus-glib.c: 
2808         * test/glib/test-service-glib.c:
2809         * test/glib/test-service-glib.xml:
2810         Test hash table signal emitting.
2811
2812         * glib/dbus-gobject.c (_dbus_gobject_lookup_marshaller): Convert
2813         types to their fundamental basis types, since this is what
2814         marshallers operate on.  Also add an entry for VOID__BOXED.
2815         (dbus_g_object_register_marshaller_array): Convert to fundamental.
2816
2817 2005-06-26  Havoc Pennington  <hp@redhat.com>
2818
2819         * doc/dbus-tutorial.xml: fix names of interface/service/path, fix
2820         from Don Park
2821
2822 2005-06-26  Colin Walters  <walters@verbum.org>
2823
2824         * glib/dbus-glib.c (dbus_set_g_error): Delete.
2825         (dbus_g_error_set): New public function from its ashes; used by
2826         both service-side method implementation and GLib bindings
2827         internals.
2828         (dbus_g_error_has_name, dbus_g_error_get_name): New function.
2829         (_dbus_glib_test): Add some tests.
2830
2831         * test/glib/test-dbus-glib.c (main): Test dbus_g_error_has_name.
2832
2833         * test/glib/test-service-glib.c (my_object_throw_error): Use
2834         dbus_g_error_set.
2835
2836         * glib/dbus-gobject.c (gerror_to_dbus_error_message): Handle
2837         errors thrown by dbus_g_error_set.
2838
2839         * glib/dbus-gmain.c (dbus_g_bus_get): Change to dbus_g_error_set.
2840
2841         * glib/dbus-gparser.c (validate_signature): Ditto.
2842
2843         * glib/dbus-gproxy.c (dbus_g_proxy_new_for_name_owner) 
2844         (dbus_g_proxy_end_call_internal): Ditto.
2845
2846         * glib/Makefile.am: Generate dbus-glib-error-switch.h, which
2847         converts DBUS_ERROR_x to DBUS_GERROR_x.
2848         (libdbus_glib_1_la_SOURCES, BUILT_SOURCES, CLEANFILES): Add it.
2849
2850         * doc/TODO: Remove error TODO.
2851
2852         * doc/dbus-tutorial.xml: Update with documentation about error
2853         handling.
2854
2855         * dbus/make-dbus-glib-error-enum.sh: Tighten up regexp to make
2856         sure we only change DBUS_ERROR to DBUS_GERROR, not all ERROR to
2857         GERROR.  Also add DBUS_GERROR_REMOTE_EXCEPTION.
2858
2859 2005-06-22  Colin Walters  <walters@verbum.org>
2860         
2861         Patch from Ross Burton <ross@openedhand.com>
2862
2863         * glib/dbus-gobject.c (dbus_g_method_return): Free out_sig.
2864
2865 2005-06-20  Colin Walters  <walters@verbum.org>
2866
2867         * configure.in: Add glib/examples.
2868
2869         * glib/Makefile.am: Add examples/
2870
2871         * glib/examples/.cvsignore
2872         * glib/examples/Makefile.am
2873         * glib/examples/example-client.c
2874         * glib/examples/example-service.c
2875         * glib/examples/example-service.xml
2876         * glib/examples/example-signal-emitter.c
2877         * glib/examples/example-signal-emitter.xml
2878         * glib/examples/example-signal-recipient.c:
2879         New files; GLib binding examples, ported from
2880         python/examples.
2881
2882 2005-06-20  Colin Walters  <walters@verbum.org>
2883
2884         * dbus/dbus-glib.h: 
2885         * glib/dbus-gproxy.c: Rename dbus_g_proxy_invoke to
2886         dbus_g_proxy_call.
2887
2888         * glib/dbus-binding-tool-glib.c: 
2889         * doc/dbus-tutorial.xml: 
2890         * test/glib/test-dbus-glib.c: Update for rename.
2891         
2892 2005-06-20  Colin Walters  <walters@verbum.org>
2893
2894         Patch suggested by Ross Burton <ross@openedhand.com>
2895
2896         * glib/dbus-gobject.c (export_signals): Free signal name.
2897         (g_value_init): Use G_VALUE_NOCOPY_CONTENTS to plug
2898         memory leak.  Add a bit of documentation.
2899         (dbus_g_method_return_error): Free context, and note we do
2900         so.
2901
2902 2005-06-18  Murray Cumming  <murrayc@murrayc.com>
2903
2904         * dbus/dbus-glib.h:
2905         * glib/dbus-gobject.c:
2906         * glib/dbus-gproxy.c:
2907         * glib/dbus-gvalue.c: Predeclare structs as 
2908         typedef struct _Something Something instead of 
2909         typedef struct Something Something, so we can 
2910         redeclare the prototypes. Other GNOME libraries 
2911         do this already.
2912
2913 2005-06-17  Colin Walters  <walters@verbum.org>
2914
2915         * tools/dbus-names-model.c (have_names_notify): Fix call
2916         to dbus_g_proxy_end_call.
2917         
2918 2005-06-17  Colin Walters  <walters@verbum.org>
2919
2920         * glib/dbus-gproxy.c (dbus_g_proxy_emit_remote_signal): Don't
2921         spew warnings if we get malformed remote signals.
2922
2923         * glib/dbus-gobject.c (propsig_iterate): New function.
2924         (lookup_object_info): New function, extracted from
2925         lookup_object_and_method.
2926         (introspect_properties, introspect_signals): Delete; these
2927         are merged into write_interface.
2928         (write_interface): Write out signals and properties here;
2929         dump the org.gtk.object stuff and use the interface given
2930         in the introspection data blob.  Also fix up property XML.
2931         (lookup_values): New function.
2932         (introspect_interfaces): Gather a mapping from interface to a
2933         list of its methods, signals, and properties, then write out
2934         each interface.
2935         (lookup_object_and_method): Use lookup_object_info.
2936         (struct DBusGSignalClosure): Add interface.
2937         (dbus_g_signal_closure_new): Add interface. Don't dup signame;
2938         we can just use the constant data.
2939         (dbus_g_signal_closure_finalize): Don't free signal name.
2940         (signal_emitter_marshaller): Use interface from signal closure.
2941         (export_signals): Only export signals mentioned in introspection
2942         blob.
2943         (dbus_g_connection_register_g_object): Warn if we have no
2944         introspection data for an object.
2945         (funcsig_equal): Remove unused variable.
2946         (dbus_g_object_register_marshaller): Take varargs instead of
2947         list.
2948         (dbus_g_object_register_marshaller_array): New function,
2949         extracted from old dbus_g_object_register_marshaller.
2950
2951         * glib/dbus-binding-tool-glib.c (struct DBusBindingToolCData): Add
2952         signals and property data.
2953         (write_quoted_string): New function, extracted from generate_glue.
2954         (generate_glue): Write signals and properties to introspection
2955         blob.
2956
2957         * dbus/dbus-glib.h (struct DBusGObjectInfo): Include
2958         exported_signals and exported_properties.
2959         (dbus_g_object_register_marshaller): Update prototype.
2960         (dbus_g_object_register_marshaller_array): Prototype.
2961         
2962         * test/glib/test-dbus-glib.c: Extend testing to cover new signals.
2963
2964         * test/glib/test-service-glib.c: Add new test signals and method
2965         to emit them.
2966
2967         * test/glib/test-service-glib.xml: Add some test signals.
2968
2969         * test/glib/Makefile.am (BUILT_SOURCES): Add my-object-marshal.c
2970         and my-object-marshal.h
2971         (test_service_glib_SOURCES, test_dbus_glib_SOURCES): Add
2972         my-object-marshal.c.
2973         (my-object-marshal.c, my-object-marshal.h): Implement.
2974
2975         * test/glib/.cvsignore: Update.
2976
2977         * doc/TODO: Remove two GLib TODO items fixed by this
2978         patch.
2979
2980 2005-06-16  Colin Walters  <walters@verbum.org>
2981
2982         * doc/TODO: Update for GLib bindings.
2983         
2984 2005-06-16  Colin Walters  <walters@verbum.org>
2985
2986         * glib/dbus-binding-tool-glib.c:
2987         * glib/dbus-gobject.c:
2988         * glib/dbus-gproxy.c:  Add Nokia copyright; Patch
2989         from Ross Burton, for his GLib bindings work.
2990
2991 2005-06-16  Colin Walters  <walters@verbum.org>
2992
2993         * glib/dbus-gobject.c (funcsig_hash, funcsig_equal): Use n_params
2994         to iterate instead of walking to G_TYPE_INVALID.
2995
2996         Patch based on a patch from Ryan Gammon.
2997
2998 2005-06-16  Colin Walters  <walters@verbum.org>
2999
3000         * bus/bus.c (bus_context_new): Set parser to NULL
3001         after we unref it (Patch from Chris Boscolo, #2174).
3002         
3003 2005-06-16  Colin Walters  <walters@verbum.org>
3004
3005         * python/dbus_bindings.pyx.in: Import size_t,
3006         __int64_t, __uint64_t, and __signed.
3007
3008         * dbus/dbus-sysdeps.c <HAVE_CMSGCRED> (write_credentials_byte):
3009         Define cmsg struct, output it.
3010         (_dbus_read_credentials_unix_socket):
3011         Use cmsg struct.
3012         
3013         Patch from Joe Markus Clarke for FreeBSD support.
3014         
3015 2005-06-16  Colin Walters  <walters@verbum.org>
3016
3017         * tools/dbus-send.c (append_array): Use strtok.
3018         (append_dict): New function.
3019         (type_from_name): New function, extracted from main.
3020         (main): Handle sending dicts.
3021
3022         * tools/dbus-print-message.c (print_iter): Print dict
3023         entries.
3024         
3025 2005-06-16  Colin Walters  <walters@verbum.org>
3026
3027         * glib/dbus-gvalue.c (marshal_basic): Marshal NULL string
3028         values as the empty string (#2948).
3029         
3030 2005-06-16  Colin Walters  <walters@verbum.org>
3031
3032         * dbus/Makefile.am:
3033         * mono/doc/Makefile.am:
3034         * test/glib/Makefile.am:
3035
3036         Fix srcdir != builddir issues (Patch from Chris Wilson, #3477)
3037
3038 2005-06-16  Colin Walters  <walters@verbum.org>
3039
3040         * dbus/dbus-marshal-header.c (_dbus_header_load): Set
3041         header byte order from expected byte order (Patch from Chris Wilson, #3475).
3042
3043         * dbus/dbus-marshal-byteswap.c (byteswap_body_helper): 
3044         Increment pointer after swapping fixed array.  Add assertion
3045         for array length.
3046                 
3047 2005-06-15  Colin Walters  <walters@verbum.org>
3048
3049         * dbus/dbus-sysdeps.c <HAVE_CMSGCRED> (_dbus_read_credentials_unix_socket):
3050         Fix call to dbus_set_error.  (Patch from Michael Banck, #3461)
3051         
3052 2005-06-15  John (J5) Palmieri  <johnp@redhat.com>
3053
3054         * NEWS: Update to 0.34
3055
3056 2005-06-15  David Zeuthen  <davidz@redhat.com>
3057
3058         * configure.in (LT_CURRENT): Revert back to 1 as the library
3059         hasn't changed and we've certainly not committed to protocol
3060         stability yet.  All this does is to break ABI. See commit note
3061         from hp@redhat.com 2005-05-05 for details.
3062         
3063 2005-06-15  John (J5) Palmieri  <johnp@redhat.com>
3064
3065         * dbus/dbus-connection.c (_dbus_connection_peer_filter): New method 
3066         (_dbus_connection_run_builtin_filters): New method
3067         (dbus_connection_dispatch): Run the builtin filters which in turn
3068         runs the peer filter which handles Ping messages.
3069
3070         * doc/TODO: 
3071          - Ping isn't handled: This patch fixes it
3072          
3073          - Add a test case for the Ping message: added TODO item
3074
3075 2005-06-15  John (J5) Palmieri  <johnp@redhat.com>
3076
3077         * dbus/dbus-message.c:
3078         (dbus_message_has_path): New method
3079         (dbus_message_has_interface): New method
3080         (dbus_message_has_member): New method
3081
3082         * dbus/dbus/dbus-sysdeps.c (_dbus_check_dir_is_private_to_user):
3083         New method
3084
3085         * dbus/dbus-keyring.c (_dbus_keyring_reload): Check to see that 
3086         the keyring directory is private to the user
3087
3088         * doc/TODO:
3089          - The convenience functions in dbus-bus.h should perhaps have
3090          the signatures that they would have if they were autogenerated
3091          stubs. e.g. the acquire service function. We should also evaluate
3092          which of these functions to include, in light of the fact that
3093          GLib/Qt native stubs will probably also exist.: Punted
3094
3095          - add dbus_message_has_path(), maybe has_member/interface:
3096          fixed in this patch
3097
3098          - in dbus-keyring.c, enforce that the keyring dir is not
3099          world readable/writable: Fixed in this patch
3100
3101 2005-06-15  John (J5) Palmieri  <johnp@redhat.com>
3102
3103         * dbus/dbus-marshal-validate.h: Added a new validation
3104         error code DBUS_VALIDITY_UNKNOWN_OOM_ERROR = -4 for 
3105         out of memory errors when validating signitures
3106
3107         * dbus/dbus-marshal-header.c: use DBUS_VALIDITY_UNKNOWN_OOM_ERROR
3108         in places where we previously used DBUS_VALID and a FALSE return 
3109         value to indicate OOM
3110         
3111         * dbus/dbus-marshal-validate.c (_dbus_validate_signature_with_reason):
3112         Use a stack to track the number of elements inside containers.  The 
3113         stack values are then used to validate that dict entries have only two
3114         elements within them.
3115         (validate_body_helper): check the reason for failure when validating
3116         varients
3117         
3118         * dbus/dbus-message.c (load_message): use 
3119         DBUS_VALIDITY_UNKNOWN_OOM_ERROR in places where we previously used 
3120         DBUS_VALID and a FALSE return value to indicate OOM
3121
3122         * doc/TODO: remove "- validate dict entry number of fields" as this
3123         patch fixes it
3124
3125 2005-06-14  David Zeuthen  <davidz@redhat.com>
3126
3127         * bus/bus.c (process_config_every_time): Drop existing conf-dir
3128         watches (if applicable) and add new watches
3129
3130         * bus/main.c (signal_handler): Handle SIGIO if using D_NOTIFY
3131         (main): Setup SIGIO signal handler if using D_NOTIFY
3132
3133         * bus/config-parser.h: Add prototype bus_config_parser_get_conf_dirs
3134
3135         * bus/config-parser.c (struct BusConfigParser): Add conf_dirs list
3136         (merge_included): Also merge conf_dirs list
3137         (bus_config_parser_unref): Clear conf_dirs list
3138         (include_dir): Add directory to conf_dirs list
3139         (bus_config_parser_get_conf_dirs): New function
3140
3141         * bus/dir-watch.[ch]: New files
3142
3143         * bus/Makefile.am (BUS_SOURCES): Add dir-watch.[ch]
3144
3145         * configure.in: Add checks for D_NOTIFY on Linux
3146
3147 2005-06-14  Colin Walters  <walters@verbum.org>
3148
3149         * glib/dbus-binding-tool-glib.c:
3150         * glib/dbus-gobject.c:
3151         * glib/dbus-gvalue.c: Fix indentation and brace style.
3152         
3153 2005-06-14  Ross Burton <ross@openedhand.com>.
3154
3155         * glib/dbus-glib.h: Make DBusGMethodInvocation
3156         a private structure.  Rearrange prototypes a bit.
3157         
3158         * glib/dbus-gproxy.c (dbus_g_proxy_invoke): Add
3159         documentation for first_arg_type.
3160         
3161         * glib/dbus-gobject.c: Move DBusGMethodInvocation
3162         here, add documentation.  Move dbus_g_method_return
3163         and dbus_g_method_return_error into public API
3164         section.
3165
3166 2005-06-14  Colin Walters  <walters@verbum.org>
3167
3168         * glib/dbus-gobject.c (_dbus_gobject_lookup_marshaller):
3169         Add missing return statements, noticed by Ross Burton.
3170         
3171 2005-06-13  Ross Burton <ross@openedhand.com>.
3172
3173         * glib/dbus-gobject.c: Handle errors on message
3174         demarshalling by sending error message back.
3175         * glib/dbus-gvalue.c: Initialize return variables.
3176
3177 2005-06-13  Colin Walters  <walters@verbum.org>
3178
3179         * glib/Makefile.am: Fix thinko in last patch.
3180
3181 2005-06-13  Colin Walters  <walters@verbum.org>
3182
3183         * glib/Makefile.am: Move dbus-gtype-specialized.c
3184         and dbus-gtype-specialized.h into a _HEADERS variable,
3185         install them.
3186
3187 2005-06-12  Colin Walters  <walters@verbum.org>
3188
3189         Async signals and various bugfixes and testing by
3190         Ross Burton <ross@openedhand.com>.
3191
3192         * glib/dbus-gvalue.h: (struct DBusBasicGValue): Delete.
3193         (dbus_gvalue_genmarshal_name_from_type)
3194         (dbus_gvalue_ctype_from_type): Moved to dbus-binding-tool-glib.c.
3195         (dbus_gtype_to_dbus_type): Renamed to dbus_gtype_from_signature.
3196         (dbus_g_value_types_init, dbus_gtype_from_signature)
3197         (dbus_gtype_from_signature_iter, dbus_gtype_to_signature)
3198         (dbus_gtypes_from_arg_signature): New function prototypes.
3199         (dbus_gvalue_demarshal): Take context and error arguments.
3200         (dbus_gvalue_demarshal_variant): New function.
3201         (dbus_gvalue_demarshal_message): New function.
3202         (dbus_gvalue_store): Delete.
3203
3204         * glib/dbus-gvalue.c:
3205
3206         File has been almost entirely rewritten; now we special-case
3207         more types such as DBUS_TYPE_SIGNATURE, handle arrays and
3208         hash tables correctly, etc.  Full support for recursive values
3209         is not yet complete.
3210
3211         * glib/dbus-gproxy.c (dbus_g_proxy_class_init): Change last
3212         argument of signal to G_TYPE_POINTER since we now pass a
3213         structure.
3214         (lookup_g_marshaller): Delete in favor of
3215         _dbus_gobject_lookup_marshaller.
3216         (marshal_dbus_message_to_g_marshaller): Use
3217         _dbus_gobject_lookup_marshaller and dbus_gvalue_demarshal_message
3218         to handle remote signal callbacks.
3219         (dbus_g_proxy_new_from_proxy): New function; creates a new
3220         DBusGProxy by copying an existing one.
3221         (dbus_g_proxy_get_interface, dbus_g_proxy_set_interface)
3222         (dbus_g_proxy_get_path): New functions.
3223         (dbus_g_proxy_marshal_args_to_message): New function;
3224         factored out of existing code.
3225         (DBUS_G_VALUE_ARRAY_COLLECT_ALL): Collect all arguments
3226         from a varargs array.
3227         (dbus_g_proxy_begin_call_internal): New function.
3228         (dbus_g_proxy_end_call_internal): New function.
3229         (dbus_g_proxy_begin_call): Take GTypes instead of DBus types
3230         as arguments; simply invoke dbus_g_proxy_begin_call_internal
3231         after collecting args into value array.
3232         (dbus_g_proxy_end_call): Take GTypes instead of DBus types;
3233         invoke dbus_g_proxy_end_call_internal.
3234         (dbus_g_proxy_invoke): Simply invoke begin_call_interanl and
3235         end_call_internal.
3236         (dbus_g_proxy_call_no_reply): Take GTypes instead of DBus
3237         types.
3238         (array_free_all): New function.
3239         (dbus_g_proxy_add_signal): Take GTypes.
3240
3241         * glib/dbus-gobject.h:
3242         (_dbus_glib_marshal_dbus_message_to_gvalue_array): Delete.
3243         (_dbus_gobject_get_path, _dbus_gobject_lookup_marshaller):
3244         Prototype.
3245
3246         * glib/dbus-gobject.c: Add a global marshal_table hash which
3247         stores mappings from type signatures to marshallers.  Change lots
3248         of invocations of dbus_gtype_to_dbus_type to
3249         dbus_gtype_to_signature.
3250         (_dbus_glib_marshal_dbus_message_to_gvalue_array): Delete.
3251         (introspect_signals): Fix test for query.return_type.
3252         (set_object_property): Update invocation of dbus_gvalue_demarshal.
3253         (invoke_object_method): Many changes.  Handle asynchronous
3254         invocations.  Convert arguments with
3255         dbus_gvalue_demarshal_message.  Handle errors.  Use
3256         DBusSignatureIter instead of strlen on args. Handle all arguments
3257         generically.  Special-case variants.
3258         (dbus_g_method_return, dbus_g_method_return_error): New function.
3259         (DBusGSignalClosure): New structure, closes over signal
3260         information.
3261         (dbus_g_signal_closure_new): New function.
3262         (dbus_g_signal_closure_finalize): New function.
3263         (signal_emitter_marshaller): New function; is special marshaller
3264         which emits signals on bus.
3265         (export_signals): New function; introspects object signals and
3266         connects to them.
3267         (dbus_g_object_type_install_info): Take GType instead of
3268         GObjectClass.
3269         (dbus_g_connection_register_g_object): Invoke export_signals.
3270         (dbus_g_connection_lookup_g_object): New function.
3271         (DBusGFuncSignature) New structure; used for mapping type
3272         signatures to marshallers.
3273         (funcsig_hash): New function; hashes DBusGFuncSignature.
3274         (funcsig_equal): New function; compares DBusGFuncSignature.
3275         (_dbus_gobject_lookup_marshaller): New function.
3276         (dbus_g_object_register_marshaller): New function; used to
3277         register a marshaller at runtime for a particular signature.
3278
3279         * glib/dbus-gmain.c (_dbus_gmain_test): Add various tests.
3280
3281         * glib/dbus-binding-tool-glib.h: Add DBUS_GLIB_ANNOTATION_ASYNC
3282         which notes a server method implementation should be
3283         asynchronous.
3284
3285         * glib/dbus-binding-tool-glib.c
3286         (dbus_binding_tool_output_glib_server): Call
3287         dbus_g_value_types_init.
3288         (write_formal_parameters): Use dbus_gtype_from_signature.  Handle
3289         variants specially.
3290         (dbus_g_type_get_lookup_function): Turn GType into an invocation
3291         of a lookup function.
3292         (write_args_for_direction): Use dbus_g_type_get_lookup_function.
3293         (write_untyped_out_args): New method; write output arguments.
3294         (write_formal_declarations_for_direction): Function for
3295         writing prototypes.
3296         (write_formal_parameters_for_direction): Function for
3297         writing implementations.
3298         (write_typed_args_for_direction): Function for writing
3299         arguments prefixed with GTypes.
3300         (write_async_method_client): Write out async version
3301         of method.
3302
3303         * glib/dbus-binding-tool-glib.c: Include dbus-gvalue-utils.h.
3304         (dbus_g_type_get_marshal_name): Move mapping from GType
3305         to marshal name into here.
3306         (dbus_g_type_get_c_name): Move into here.
3307         (compute_marshaller): Convert signature to type with
3308         dbus_gtype_from_signature, use dbus_g_type_get_marshal_name.
3309         (compute_marshaller_name): Ditto.
3310         (compute_marshaller): Handle async signal annotations.
3311         (gather_marshallers): Return if we don't have a known
3312         prefix.
3313         (generate_glue): Collect introspection blob here, and
3314         write all of the blob at the end.  This allows an object
3315         with multiple interfaces to work.
3316         Mark async methods in introspection blob.
3317
3318         * glib/Makefile.am (libdbus_glib_1_la_SOURCES): Add
3319         dbus-gtype-specialized.c, dbus-gtype-specialized.h,
3320         dbus-gvalue-utils.h, dbus-gvalue-utils.c.
3321
3322         * dbus/dbus-glib.h: Don't include dbus-protocol.h; this
3323         avoids people accidentally using DBUS_TYPE_* which should
3324         not be necessary anymore.
3325         Do include dbus-gtype-specialized.h, which are utilities
3326         for GLib container types.
3327         Add various #defines for types such as
3328         DBUS_TYPE_G_BOOLEAN_ARRAY.
3329         (DBusGValueIterator, DBusGValue): Define, not fully used
3330         yet.
3331         (dbus_g_value_get_g_type): Type for recursive value.
3332         (dbus_g_value_open, dbus_g_value_iterator_get_value)
3333         (dbus_g_value_iterator_get_values, dbus_g_value_iterator_recurse)
3334         (dbus_g_value_free): Prototypes.
3335         (dbus_g_object_register_marshaller, dbus_g_proxy_new_from_proxy): Prototype.
3336         (dbus_g_proxy_set_interface): Prototype.
3337         (dbus_g_proxy_begin_call, dbus_g_proxy_end_call)
3338         (dbus_g_proxy_call_no_reply): Take GLib types instead of DBus
3339         types.
3340         (dbus_g_proxy_get_path, dbus_g_proxy_get_interface):
3341         Accessors.
3342         (DBusGAsyncData, DBusGMethodInvocation): Structures for
3343         doing async invocations.
3344         (dbus_g_method_return, dbus_g_method_return_error):
3345         Prototypes.
3346         * doc/dbus-tutorial.xml: Update GLib section.
3347         
3348         * tools/dbus-viewer.c (load_child_nodes): Update
3349         for new invocation type of dbus_g_proxy_end_call.
3350         (load_from_service_thread_func): Ditto.
3351
3352         * tools/print-introspect.c (main): Ditto.
3353
3354         * tools/dbus-names-model.c (have_names_notify)
3355         (names_model_reload, names_model_set_connection)
3356         Use GTypes.
3357
3358         * python/Makefile.am (INCLUDES): Define DBUS_COMPILATION,
3359         needed since Python bindings use GLib bindings.
3360
3361         * test/glib/Makefile.am (INCLUDES): Define DBUS_COMPILATION.
3362         Add --prefix argument.
3363
3364         * tools/Makefile.am: Define DBUS_COMPILATION.  Remove
3365         unneeded --ignore-unsupported arg.
3366         
3367         * test/glib/test-service-glib.c: 
3368         * test/glib/test-service-glib.xml:
3369         * test/glib/test-dbus-glib.c: Add many more tests.
3370
3371 2005-06-06  David Zeuthen  <davidz@redhat.com>
3372
3373         * doc/TODO: Add item about need to remove deprecated functions.
3374
3375         * dbus/dbus-connection.h: Add prototype for dbus_connection_disconnect
3376
3377         * dbus/dbus-connection.c (dbus_connection_disconnect): New function
3378         to repair the ABI which was broken with the last commit.
3379
3380 2005-06-02  John (J5) Palmieri <johnp@redhat.com>
3381
3382         *  dbus/dbus-connection.c, dbus/dbus-connection.h 
3383         (dbus_connection_disconnect): renamed to dbus_connection_close 
3384         for API symmetry with dbus_connection_open
3385         (_dbus_connection_open_internal): 
3386         s/dbus_connection_disconnect/dbus_connection_close
3387
3388         * dbus/dbus-bus.c (dbus_bus_get):
3389         s/dbus_connection_disconnect/dbus_connection_close
3390
3391         * bus/connection.c (bus_connections_unref, 
3392         bus_connections_setup_connection, bus_connections_expire_incomplete):
3393         s/dbus_connection_disconnect/dbus_connection_close
3394
3395         * bus/dispatch.c (bus_dispatch, kill_client_connection, 
3396         kill_client_connection_unchecked, check_hello_connection):
3397         s/dbus_connection_disconnect/dbus_connection_close
3398
3399         * bus/bus.c (new_connection_callback):
3400         s/dbus_connection_disconnect/dbus_connection_close
3401
3402         * tools/dbus-send.c (main):
3403         s/dbus_connection_disconnect/dbus_connection_close
3404
3405         * test/glib/test-profile.c (no_bus_thread_func, with_bus_thread_func):
3406         s/dbus_connection_disconnect/dbus_connection_close
3407         
3408         * test/test-service.c (path_message_func, filter_func):
3409         s/dbus_connection_disconnect/dbus_connection_close
3410         
3411         * doc/TODO: remove connection_open/connection_disconnect lacks symmetry         item that was just fixed
3412         
3413 2005-05-25  Colin Walters  <walters@verbum.org>
3414
3415         * dbus/dbus-protocol.h: Move various bus service #defines such
3416           as DBUS_SERVICE_DBUS and DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT to
3417           dbus/dbus-shared.h.
3418         * dbus/dbus-shared.h: Various defines moved here.
3419         * dbus/dbus-marshal-header.c: Include dbus-shared.h.
3420
3421 2005-05-25  John (J5) Palmieri  <johnp@redhat.com>
3422
3423         * python/__init__.py: Python bindings deserve a minor version
3424         update.  Upped to (0, 40, 2)
3425
3426 2005-05-24  John (J5) Palmieri  <johnp@redhat.com>
3427
3428         * python/decorators.py: add explicitly_pass_message decorator
3429         for passing in the dbus message as keyword for edge case signal
3430         handling
3431
3432         * python/matchrules.py (SignalMatchRule.__repr__): fix output
3433         to conform with what dbus expects for match rules
3434         (SignalMatchRule.execute): add the dbus message as a keyword
3435         if the signal handler has requested it
3436
3437         * python/examples/example/signal-recipient.py: added some more
3438         examples on how to hook up to signals
3439
3440 2005-05-23  John (J5) Palmieri  <johnp@redhat.com>
3441
3442         * python/decorators.py: import dbus_bindings
3443
3444         * python/matchrules.py (SignalMatchRule, SignalMatchTree, 
3445         SignalMatchNode): new classes that implement wildcard signal
3446         callback matching using a tree lookup. Heavily modified from a
3447         patch sent by Celso Pinto (fd.o bug #3241)
3448
3449         * _dbus.py (add_signal_receiver, remove_signal_receiver, _signal_func):
3450         use new match classes to handle signals.
3451
3452 2005-05-19  John (J5) Palmieri  <johnp@redhat.com>
3453         
3454         * python/dbus_bindings.pyx.in: s/TYPE_PATH/TYPE_OBJECT_PATH
3455
3456 2005-05-18  Havoc Pennington  <hp@redhat.com>
3457
3458         * configure.in: use GLIB_GNU_GETTEXT to get INTLLIBS and require
3459         gettext. Not really worth requiring yet perhaps, but any
3460         production quality 1.0 would require it so we should go ahead and
3461         get things set up. We do have a couple token calls to
3462         bindtextdomain in the code already.
3463
3464 2005-05-16  John (J5) Palmieri  <johnp@redhat.com>
3465
3466         * glib/dbus-gmain.c (io_handler_dispatch): fix deadlock
3467         when using recursive g_main_loops
3468
3469         * python/_dbus.py (class Bus): add the ProxyObjectClass
3470         alias for ProxyObject to make it easier for the Twisted 
3471         networking framework to integrate dbus.
3472
3473         * python/proxies.py (class ProxyObject): add the ProxyMethodClass
3474         alias for ProxyMethod to make it easier for the Twisted 
3475         networking framework to integrate dbus. 
3476
3477 2005-05-11  Ross Burton  <ross@openedhand.com>
3478
3479         * glib/dbus-glib-tool.c: Add --prefix argument.
3480         * glib/dbus-binding-tool-glib.h: Add prefix argument.
3481         * glib/dbus-binding-tool-glib.c (compute_marshaller_name):
3482         Add prefix argument.
3483         (generate_glue): Pass prefix argument down.
3484         (dbus_binding_tool_output_glib_server): Pass prefix to
3485         glib-genmarshal.
3486         
3487 2005-05-11  Colin Walters  <walters@verbum.org>
3488
3489         * tools/dbus-send.c (append_array): New function.
3490         (append_arg): Broken out from main.
3491         (main): Add cheesy hack to send arrays and variants.
3492         (usage): Update.
3493         * tools/dbus-print-message.c (print_iter): Broken out
3494         from main.
3495
3496 2005-05-11  Colin Walters  <walters@verbum.org>
3497
3498         * dbus/dbus-signature.c (dbus_signature_iter_get_signature):
3499         New function, returns signature string for signature iter.
3500         * dbus/dbus-signature.h: Prototype it.
3501         * dbus/dbus-message.c (dbus_message_iter_get_signature):
3502         New function, returns signature string for message iter.
3503         (dbus_message_iter_get_array_len): New function, returns
3504         length of array.
3505         (dbus_message_iter_get_fixed_array): Fix assertion; this
3506         function should be used when the iter is pointing to the
3507         contents of an array
3508         * dbus/dbus-message.h: Prototypes.
3509         * dbus/dbus-marshal-recursive.c (_dbus_type_reader_get_array_length):
3510         New function; returns length of an array.
3511         * dbus/dbus-marshal-recursive.h: Prototype it.
3512         
3513 2005-05-11  Colin Walters  <walters@verbum.org>
3514
3515         * dbus/dbus-sysdeps-util.c <!HAVE_POSIX_GETPWNAM_R>: Fix
3516         compilation error.
3517         
3518 2005-05-08  Havoc Pennington  <hp@redhat.com>
3519
3520         * dbus/dbus-sysdeps-util.c (_dbus_become_daemon): write the
3521         daemon's pid, not the parent's pid, to the file descriptor.
3522         Reported by Taj Morton.
3523
3524 2005-05-05  Havoc Pennington  <hp@redhat.com>
3525
3526         * configure.in (LT_*): add notes on how the libtool versioning
3527         works to save thinking. Increment soname to indicate protocol
3528         breakage (though really the library interface hasn't changed I
3529         guess)
3530
3531         * dbus/dbus-transport.c (_dbus_transport_get_is_authenticated):
3532         verify the GUID received from server matches what we were
3533         expecting, if we had an expectation
3534
3535         * dbus/dbus-auth.c (send_ok): send GUID along with the OK command
3536         (_dbus_auth_get_guid_from_server): new function
3537         (send_begin): parse the OK args
3538
3539         * doc/dbus-specification.xml: add GUID to the auth protocol
3540
3541 2005-05-05  John (J5) Palmieri  <johnp@redhat.com>
3542
3543         * Fix my name in previous changelog ;)
3544
3545         * python/proxies.py (ProxyObject.__getattr__): add further patch
3546         from Anthony Baxter to throw an AttributeError when python 
3547         __special__ functions are called instead of marshling them over 
3548         the bus (Bug#1685 comment 3).
3549
3550 2005-05-04  John (J5) Palmieri  <johnp@redhat.com>
3551
3552         * python/Makefile.am: changed to use pyexecdir for the binding
3553         shared libraries (Bug#2494)
3554
3555         * python/exceptions.py: bring exceptions over from the bindings
3556         so they can be used in applications (Bug#2036)
3557         Make all exceptions derive from DBusException
3558
3559         * python/_dbus.py, python/proxies.py: implement __repr__ in a couple
3560         of classes so that print obj doesn't throw an exception (Bug #1685)
3561
3562 2005-05-03  Ross Burton  <ross@openedhand.com>
3563
3564         * glib/dbus-gobject.c (dbus_g_connection_register_g_object):
3565         Return if we get an error during registration.  Set up a
3566         weak reference on object to unregister if object is destroyed.
3567         (unregister_gobject): New function.
3568         
3569 2005-05-01  John (J5) Palmieri  <johnp@redhat.com>
3570
3571         * python/dbus_bindings.pyx.in: 
3572         - added new type classes for hinting to the marashaler what type 
3573         to send over the wire
3574         - added int16 and uint16 marshalers
3575         - Fixed a bug in the type constants that caused int32 to go out
3576         as uint16 over the wire
3577         * python/dbus.py: split up into different files and renamed _dbus.py
3578         * python/__init__.py, python/_util.py, python/decorators.py, 
3579         python/exceptions.py, python/proxies.py, python/services.py,
3580         python/types.py: new files split off from dbus.py
3581         * python/Makefile.am: Add new files, remove dbus.py and 
3582         install all python files to <python module dir>/dbus
3583         * python/examples/*: Added #!/usr/bin/env python to the top of
3584         every example.  Patch provided by Tatavarty Kalyan
3585
3586 2005-04-25  John (J5) Palmieri  <johnp@redhat.com>
3587
3588         * NEWS: Update to 0.33
3589
3590 2005-04-25  John (J5) Palmieri  <johnp@redhat.com>
3591
3592         * python/dbus_bindings.pyx.in (send_with_reply_handlers): New send
3593         method for doing async calls
3594         (_pending_call_notification): New C function for handling pendning call
3595         callbacks
3596         (set_notify): New method for setting pending call notification
3597         
3598         * python/dbus.py: new version tuple "version" is set at (0, 40, 0)
3599         Async capabilities added to remote method calls
3600         (Sender): class removed
3601         (RemoteService): class removed
3602         (ObjectTree): class removed for now
3603         (RemoteObject): Renamed to ProxyObject
3604         (RemoteMethod): Renamed to ProxyMethod
3605         (method): Decorator added for decorating python methods as dbus methods
3606         (signal): Decorator added for decorating python methods as signal emitters
3607         (ObjectType): Metaclass added for generating introspection data and the
3608         method callback vtable
3609         (Interface): Wrapper class added to wrap objects in a dbus interface
3610         (Object): Uses ObjectType as its metaclass and exports Introspect
3611         of the org.freedesktop.DBus.Introspectable interface
3612         (ValidationException, UnknownMethodException): new exceptions
3613
3614         * python/examples/*: Modified to fit with the new bindings
3615
3616 2005-04-23  Havoc Pennington  <hp@redhat.com>
3617
3618         * dbus/dbus-message.c (dbus_message_append_args): fix doc comment,
3619         reported by Tony Houghton
3620
3621         * test/test-service.c (main): test
3622         dbus_connection_get_object_path_data()
3623
3624         * dbus/dbus-object-tree.c (find_handler): be sure we always init
3625         the exact_match
3626         (_dbus_object_tree_get_user_data_unlocked): new function used by
3627         dbus_connection_get_object_path_data()
3628         (do_register): add assertion test for get_user_data_unlocked
3629         (object_tree_test_iteration): more tests
3630
3631         * dbus/dbus-connection.c (dbus_connection_get_object_path_data):
3632         new function from Dan Reed to let you get the user data from 
3633         dbus_connection_register_object_path()
3634
3635 2005-04-23  John (J5) Palmieri  <johnp@redhat.com>
3636
3637         * dbus/dbus-marshal-recursive-util.c: Fixed buffer overflow
3638         in numerous places that did not account for the NULL terminator
3639         (signature_from_seed): changed the manual string copy loop to 
3640         just use strcpy instead
3641         make check should now pass
3642
3643 2005-04-19  John (J5) Palmieri  <johnp@redhat.com>
3644
3645         * dbus/dbus-marshal-header.c (_dbus_header_create): Fix assert
3646         so that it allows messages that are not signals to pass in 
3647         NULL as the interface.
3648
3649 2005-04-18  David Zeuthen  <davidz@redhat.com>
3650
3651         * glib/dbus-gmain.c (io_handler_destroy_source): 
3652         (timeout_handler_destroy_source, connection_setup_free): 
3653         Also unref the source to avoid memory leaks.
3654
3655 2005-04-13  David Zeuthen  <davidz@redhat.com>
3656
3657         * bus/config-parser.c (bus_config_parser_new): Bump this to a
3658         more reasonable, yet still totally arbitrary, value :-). 
3659
3660 2005-04-13  David Zeuthen  <davidz@redhat.com>
3661
3662         * doc/TODO: Added an "important for 1.0" item about selinux
3663         allow/deny messages
3664
3665 2005-04-13  David Zeuthen  <davidz@redhat.com>
3666
3667         * bus/selinux.c: Add c-file-style to top of file
3668         (log_audit_callback): Don't free the data here anymore
3669         (bus_selinux_check): Don't take spid and tpid since appending
3670         that to auxdata may OOM.
3671         (bus_selinux_allows_acquire_service): Handle OOM and signal back
3672         to the caller if we are OOM by taking an error object.
3673         (bus_selinux_allows_send): -do-
3674
3675         * bus/selinux.h: Fix prototypes for bus_selinux_allows_acquire_service
3676         and bus_selinux_allows_send
3677
3678         * bus/bus.c (bus_context_check_security_policy): Pass error and
3679         pass on OOM thrown by bus_selinux_allows_send()
3680
3681         * bus/services.c (bus_registry_acquire_service): Pass error and
3682         pass on OOM thrown by bus_selinux_allows_acquire_service()
3683
3684 2005-04-13  Havoc Pennington  <hp@redhat.com>
3685
3686         * glib/dbus-gmain.c (message_queue_dispatch): only dispatch one
3687         message at a time to avoid monopolizing the main loop, bug 
3688         #2953 from Benjamin Otte
3689
3690 2005-04-09  Havoc Pennington  <hp@redhat.com>
3691
3692         * dbus/dbus-string.c (copy): change a memcpy to memmove due to
3693         possible overlap, fix from Daniel Reed
3694         (fixup_alignment): fix signedness warnings
3695         (_dbus_string_append_unichar): ditto
3696
3697 2005-04-09  Havoc Pennington  <hp@redhat.com>
3698
3699         * dbus/dbus-message-util.c (_dbus_message_test): fix signedness warning
3700
3701         * glib/dbus-glib-tool.c (main): fix warning
3702
3703         * glib/dbus-binding-tool-glib.c (generate_glue): fix warning
3704
3705         * dbus/dbus-connection.c (dbus_connection_read_write_dispatch):
3706         add a new function that can be used in simple applications that
3707         don't have a main loop and are willing to block
3708
3709 2005-04-05  David Zeuthen  <davidz@redhat.com>
3710
3711         Fix https://bugs.freedesktop.org/show_bug.cgi?id=2889
3712
3713         * glib/dbus-gmain.c:
3714         (io_handler_destroy_source): Remove from list of IO handlers
3715         of the ConnectionSetup object
3716         (timeout_handler_destroy_source): -do- for timeout handlers
3717         (io_handler_source_finalized): Don't remove from list since
3718         we now do that in io_handler_destroy_source(). Renamed from
3719         io_handler_source_destroyed
3720         (timeout_handler_source_destroyed): -do- for timeout handlers
3721         (connection_setup_free): It is now safe to iterate over all
3722         IO and timeout handlers as the _destroy_source removes them
3723         from the list synchronously
3724
3725 2005-03-30  Havoc Pennington  <hp@redhat.com>
3726
3727         * configure.in: change check to gtk 2.4
3728
3729         * tools/dbus-viewer.c (name_combo_changed_callback): remove
3730         gtk_combo_box_get_active_text() usage to decrement GTK requirement
3731         to 2.4
3732
3733 2005-03-29  John (J5) Palmieri  <johnp@redhat.com>
3734
3735         * News: Update 0.32
3736
3737         * HACKING: Fixed realease instructions.  configure.in should be updated to
3738           the next release by the person who made the last release.
3739
3740 2005-03-29  John (J5) Palmieri  <johnp@redhat.com>
3741
3742         * python/lvalue_cast_post_process.py - removed.  Patch has been
3743           submitted to Pyrex maintainers that fixes gcc4.0 errors
3744
3745         * python/Makefile.am: removed refrences to lvalue_cast_post_process.py
3746
3747 2005-03-24  Daniel Reed  <n@ml.org>
3748
3749         * tools/Makefile.am: Make print-introspect and
3750         dbus-bus-introspect.xml building conditional on HAVE_GLIB.
3751
3752 2005-03-22  John (J5) Palmieri  <johnp@redhat.com>
3753
3754         * tools/Makefile.am: Patch by Colin Walters that fixes distcheck
3755
3756         * dbus/dbus-userdb.c, dbus/dbus-userdb-util.c: Add patch we have 
3757           had in Red Hat packages for a while but for some reason never 
3758           got merged upstream
3759           (_dbus_is_a_number): New checks if a string
3760           can be converted to a number and does the conversion if it can
3761           (_dbus_user_database_lookup): Add check to see if the given username
3762           is a udi.  This allows udi's to be used instead of usernames in the
3763           config file.
3764           (_dbus_user_database_lookup_group): Add check to see if the given groupname
3765           is a gdi.  This allows gdi's to be used instead of groupnames in the
3766           config file.
3767
3768 2005-03-21  John (J5) Palmieri  <johnp@redhat.com>
3769
3770         * python/lvalue_cast_post_process.py - added post processor to fix Pyrex
3771           code so that it compiles with gcc4.0
3772
3773         * python/Makefile.am: Added lvalue_cast_post_process.py to EXTRA_DIST
3774           run dbus_bindings.c through lvalue_cast_post_process.py and copy the
3775           results back to dbus_binding.c
3776
3777 2005-03-20  Colin Walters  <walters@verbum.org>
3778
3779         Patch suggested by Inguva Rajasekhar <ringuva@novell.com>.
3780
3781         * configure.in: Require GTK+ 2.6.
3782         
3783 2005-03-20  Colin Walters  <walters@verbum.org>
3784
3785         * Makefile.am (SUBDIRS, DIST_SUBDIRS): Build tools before test.
3786
3787 2005-03-17  Tom Parker  <palfrey@tevp.net>
3788
3789         * dbus/dbus-userdb.c (_dbus_user_database_lookup): Don't
3790         print DBUS_UID_UNSET; instead print passed username.  Also
3791         be sure to actually use gid looked up in cache.
3792         
3793         * dbus/dbus-userdb-util.c (_dbus_user_database_lookup_group): Ditto
3794         for DBUS_GID_UNSET and groupname.
3795
3796 2005-03-17  Colin Walters  <walters@verbum.org>
3797
3798         * bus/print-introspect.c: Move to tools/.
3799         * bus/run-with-tmp-session-bus.sh: Ditto.
3800         
3801         * glib/Makefile.am (dbus-glib-bindings.h): Move
3802         generation to tools/Makefile.am.
3803
3804         * test/glib/run-test.sh: Update to handle move
3805         of run-with-tmp-session-bus.sh.
3806
3807         * test/glib/test-service-glib.c: Update to handle
3808         move of dbus-glib-bindings.h.
3809
3810         * tools/print-introspect.c: Moved here
3811         from bus/, and ported to GLib bindings.
3812
3813         * tools/run-with-tmp-session-bus.sh: Moved here
3814         from bus/.
3815
3816         * tools/Makefile.am: Generate dbus-glib-bindings.h
3817         and dbus-bus-introspect.xml here.
3818
3819         * tools/.cvsignore, glib/.cvsignore, bus/.cvsignore:
3820         Update.
3821
3822 2005-03-17  Colin Walters  <walters@verbum.org>
3823
3824         * bus/driver.c (write_args_for_direction): Use
3825         _dbus_string_get_const_data to retrieve string;
3826         _dbus_string_get_const_data_len doesn't actually return
3827         a NULL-terminated substring.
3828
3829         * test/glib/test-service-glib.c: Include dbus-glib-bindings.h.
3830         (main): Change to use org_freedesktop_DBus_request_name
3831         instead of using g_proxy_begin_call/end_call.
3832
3833 2005-03-15  Joe Shaw  <joeshaw@novell.com>
3834
3835         * mono/ProxyBuilder.cs (BuildFinalizer): Fix some invalid IL when
3836         generating the finalizer.  Fixes from Ben Maurer.
3837
3838 2005-03-12  Joe Shaw  <joeshaw@novell.com>
3839
3840         * mono/BusDriver.cs: Update method names: ListServices
3841         becomes ListNames; GetOwner becomes GetNameOwner.
3842
3843         * mono/ProxyBuilder.cs (BuildFinalizer): Need to load arg 0
3844         onto the eval stack when removing the delegate.
3845
3846 2005-03-12  Joe Shaw  <joeshaw@novell.com>
3847
3848         * mono/dbus-sharp.dll.config.in: Don't hardcode 0 for
3849         LT_CURRENT.  Set it to the autoconf variable.
3850                                                                                 
3851         * mono/ProxyBuilder.cs: Add a finalizer to the generated proxy
3852         classes that disconnects the signal handler delegate from the
3853         service object.  Fixes a big leak of proxy objects on the
3854         client side of things.  Patch from Ben Maurer
3855         <bmaurer@ximian.com>
3856
3857 2005-03-12  Colin Walters  <walters@verbum.org>
3858
3859         * bus/driver.c (write_args_for_direction): New function,
3860         parses a type signature into arguments and outputs to
3861         XML.
3862         (bus_driver_handle_introspect): Use it instead of
3863         hardcoding XML for certain signatures.
3864         
3865         * bus/Makefile.am (dbus-bus-introspect.xml): Add
3866         dependency on dbus-daemon.
3867
3868         * glib/dbus-glib-tool.c (main): Parse ignore_unsupported
3869         argument, pass it to dbus_binding_tool_output_glib_client.
3870
3871         * glib/dbus-binding-tool-glib.c
3872         (generate_client_glue): Protect against multiple inclusion.
3873         (dbus_binding_tool_output_glib_client): Add
3874         G_BEGIN_DECLS/G_END_DECLS.
3875
3876         * glib/dbus-binding-tool-glib.c (compute_client_method_name):
3877         Change to just take iface prefix directly.
3878         (write_formal_parameters): Clarify error message.
3879         (check_supported_parameters): New function; checks to see type
3880         signatures of method parameters are supported.
3881         (generate_client_glue): Handle ignore_unsupported flag.
3882         (dbus_binding_tool_output_glib_client): Handle ignore_unsupported
3883         parameter.
3884
3885         * glib/Makefile.am (dbus-glib-bindings.h): Pass
3886         --ignore-unsupported by default until glib bindings
3887         support arrays.
3888
3889 2005-03-11  Colin Walters  <walters@verbum.org>
3890
3891         * glib/Makefile.am: Generate dbus-glib-bindings.h and
3892         install it.
3893
3894         * bus/print-introspect.c: New file; prints introspection
3895         data for a given name and object path.
3896
3897         * bus/run-with-tmp-session-bus.sh: New file, refactored
3898         from test/glib/run-test.sh.  Creates a temporary session
3899         bus and runs another program.
3900
3901         * test/glib/run-test.sh: Refactor to invoke
3902         run-with-tmp-session-bus.sh.
3903
3904         * bus/driver.c (bus_driver_handle_introspect): Fix to print new
3905         introspection format.  Also change to use DBUS_TYPE_x_AS_STRING
3906         macros instead of hardcoding.
3907
3908         * glib/.cvsignore, bus/.cvsignore, test/glib/.cvsignore: Update.
3909
3910 2005-03-11  Joe Shaw  <joeshaw@novell.com>
3911
3912         * dbus/dbus-connection.c (dbus_connection_send_with_reply): Remove
3913         this unref; it doesn't match up evenly in some codepaths.
3914         (_dbus_connection_block_pending_call): Unref at every exitpoint;
3915         this evenly matches with the ref near the top of this function.
3916
3917 2005-03-09  Joe Shaw  <joeshaw@novell.com>
3918
3919         * dbus/dbus-object-tree.c
3920         (_dbus_object_tree_unregister_and_unlock): If checks are enabled
3921         and we try to unregister a path that's not registered, still go
3922         through the process of unlocking and don't just return.
3923
3924 2005-03-09  Colin Walters  <walters@verbum.org>
3925
3926         * glib/dbus-gproxy.c (dbus_g_proxy_invoke): New method; calls
3927         to this are generated for client-side wrappers.  Invokes a
3928         D-BUS method and returns reply values.  
3929
3930         * glib/dbus-binding-tool-glib.c (write_args_sig_for_direction): New
3931         function; writes signature string for argument direction.
3932         (write_args_for_direction): Change to pass input values directly
3933         instead of via address, and fix indentation.
3934         (generate_client_glue): Change to invoke dbus_g_proxy_invoke.  Also
3935         make generated wrappers inlineable.
3936
3937         * dbus/dbus-message.c (dbus_message_iter_get_fixed_array): Add
3938         note about using dbus_type_is_fixed.
3939
3940         * dbus/dbus-marshal-basic.c (_dbus_type_is_fixed): Moved to
3941         dbus/dbus-signature.c as dbus_type_is_fixed.
3942
3943         All callers updated.
3944
3945         * dbus/dbus-signature.c (dbus_type_is_fixed): Moved here
3946         from dbus/dbus-marshal-basic.c:_dbus_type_is_fixed.
3947
3948         * dbus/dbus-signature.h: Prototype.
3949
3950         * glib/dbus-binding-tool-glib.c (compute_marshaller_name): Fix
3951         error printf code.
3952
3953         * test/glib/test-dbus-glib.c (main): Be sure to clear error as
3954         appropriate instead of just freeing it.
3955         (main): Free returned strings using g_free.
3956
3957         * test/glib/Makefile.am (test-service-glib-glue.h)
3958         (test-service-glib-bindings.h): Add dependency on dbus-binding-tool.
3959
3960         * glib/dbus-gvalue.c (MAP_BASIC): Refactored from MAP_BASIC_INIT;
3961         simply maps a simple D-BUS type to GType.
3962         (dbus_dbus_type_to_gtype): Function which maps D-BUS type to
3963         GType.
3964         (dbus_gvalue_init): Just invoke dbus_dbus_type_to_gtype and
3965         initialize the value with it.
3966         (dbus_gvalue_binding_type_from_type): Unused, delete.
3967         (dbus_gvalue_demarshal): Switch to hardcoding demarshalling for
3968         various types instead of unmarshalling to value data directly.
3969         Remove can_convert boolean.
3970         (dbus_gvalue_marshal): Remove duplicate initialization; switch to
3971         returning directly instead of using can_convert boolean.
3972         (dbus_gvalue_store): New function; not related to D-BUS per-se.
3973         Stores a GValue in a pointer to a value of its corresponding C
3974         type.
3975
3976         * glib/dbus-gvalue.h: Remove dbus_gvalue_binding_type_from_type,
3977         add dbus_gvalue_store.
3978
3979 2005-03-08  Joe Shaw  <joeshaw@novell.com>
3980
3981         Fix a bunch of lifecycle and memory management problems
3982         in the mono bindings.
3983
3984         * mono/Arguments.cs (Arguments): Implement IDisposable
3985
3986         * mono/Bus.cs (Bus): Don't allow public instantiation.  This is
3987         strictly a static class.
3988
3989         * mono/Connection.cs: Move the DBusObjectPathVTable and associated
3990         delegates into this file.
3991         (Connection): Implement IDisposable.
3992         (Dispose): Disconnect the connection and set the raw connection
3993         pointer to IntPtr.Zero.
3994         (~Connection): Call Dispose().
3995         (RegisterObjectPath): Added.  Manages the registration of object
3996         paths so we can cleanly disconnect them at dispose/finalize time.
3997         (UnregisterObjectPath): Ditto.
3998         (set_RawConnection): Unregister all of the object paths when
3999         changing the underlying DBusConnection.  Add them back onto the
4000         new connection, if any.
4001
4002         * mono/Handler.cs: Don't implement IDisposable; it doesn't use any
4003         more unmanaged resources anymore, so it's not necessary.  Move all
4004         the DBusObjectPathVTable stuff out of here.
4005         (Handler): Save references to our delegates so that they don't get
4006         finalized.  Call Connection.RegisterObjectPath() instead of
4007         dbus_connection_register_object_path() directly.
4008         (Message_Called): Dispose the message after we're finished with
4009         it.
4010
4011         * mono/Message.cs (Message): Implement IDisposable.
4012         (Dispose): Dispose the Arguments, and set the RawMessage to
4013         IntPtr.Zero.
4014         (SendWithReplyAndBlock): We own the ref to the reply that comes
4015         back from dbus_connection_send_with_reply_and_block() so add a
4016         comment about that and unref it after we've constructed a managed
4017         MethodReturn class around it.  Fixes a big, big leak.
4018
4019         * mono/ProxyBuilder.cs: Reflect into Message to get the Dispose
4020         method.
4021         (BuildSignalHandler): After we've sent the Signal message, dispose
4022         of it.
4023         (BuildMethod): Dispose of the method call and reply messages after
4024         we've sent the message and extracted the data we want from the
4025         reply.
4026
4027         * mono/Service.cs (UnregisterObject): Don't call handler.Dispose()
4028         anymore.
4029         (Service_FilterCalled): Dispose of the message after we're
4030         finished with it.
4031
4032 2005-03-08  Joe Shaw  <joeshaw@novell.com>
4033
4034         * dbus/dbus-connection.c (dbus_connection_send_with_reply):
4035         After we attach our pending call to the connection, unref
4036         it.  Fixes a leak.
4037  
4038         * mono/Connection.cs (set_RawConnection): Disconnect our
4039         filter and match callbacks from the old connection and
4040         reconnect them to the new connection, if any.
4041
4042         * mono/DBusType/Array.cs: "Code" is a static member, so
4043         don't use "this" to refer to it.  Fix for stricter checking
4044         in Mono 1.1.4.
4045  
4046         * mono/DBusType/ObjectPath.cs (Append): Don't leak the
4047         object path that we pass into unmanaged code.
4048  
4049         * mono/DBusType/String.cs (Append): Don't leak the string
4050         that we pass into unmanged code.
4051
4052 2005-03-07  John (J5) Palmieri  <johnp@redhat.com>
4053         * NEWS: Update for 0.31
4054
4055         * configure.in: Release 0.31
4056         add LT_CURRENT, LT_REVISION, LT_AGE for easy soname bumping
4057
4058         * qt/Makefile.am: fixed build
4059
4060         * dbus/Makefile.am: soname bump for libdbus
4061
4062         * glib/Makefile.am: soname bump for libdbus-glib
4063
4064 2005-03-05  Havoc Pennington  <hp@redhat.com>
4065
4066         * dbus/dbus-sysdeps.c:
4067         (pseudorandom_generate_random_bytes_buffer): fix to have no return
4068         value
4069         (_dbus_generate_random_bytes_buffer): fix return value
4070
4071         * dbus/dbus-sysdeps-util.c: s/GETPWNAME/GETPWNAM/ so configure
4072         checks actually work, from Tom Parker <fdo@tevp.net>
4073
4074 2005-03-01  Colin Walters  <walters@verbum.org>
4075
4076         * test/glib/test-dbus-glib.c (lose, lose_gerror): Utility
4077         functions copied from dbus-glib-tool.c.
4078         (main): Convert lots of error code to use them.
4079         Also add some testing for introspection bits.
4080
4081 2005-03-01  Colin Walters  <walters@verbum.org>
4082         
4083         * doc/TODO: Remove introspection signature TODO.
4084
4085 2005-02-27  Colin Walters  <walters@verbum.org>
4086
4087         * glib/dbus-gidl.c (property_info_get_type, arg_info_get_type):
4088         Change return value to const char * instead of int so we can do
4089         full signatures.
4090         (struct PropertyInfo, struct ArgInfo): Store char *.
4091         (property_info_new, arg_info_new): Update parameters, strdup.
4092         (property_info_unref, arg_info_unref): Free.
4093
4094         * glib/dbus-gidl.h: Update prototypes.
4095
4096         * glib/dbus-gparser.c (basic_type_from_string): Delete.
4097         (validate_signature): New function, just validates signature and
4098         sets GError.
4099         (parse_property, parse_arg): Invoke validate_signature.  Store
4100         signature instead of just type code.
4101
4102         * glib/dbus-gvalue.c (base_type_from_signature): New utility
4103         function to return a primary type for a signature, dropping
4104         information about types in container types.
4105         (dbus_gvalue_genmarshal_name_from_type)
4106         (dbus_gvalue_binding_type_from_type)
4107         (dbus_gvalue_ctype_from_type): Update to take full signature
4108          instead of type code.
4109         (dbus_gtype_to_dbus_type): Moved here from glib/dbus-gobject.c.
4110
4111         * glib/dbus-gvalue.h: Update prototypes for above.
4112
4113         * glib/dbus-gobject.c (gtype_to_dbus_type): Moved to
4114         glib/dbus-gvalue.c as dbus_gtype_to_dbus_type.
4115         (introspect_properties, introspect_signals, write_interface):
4116         Update to handle signatures, and remove usage of
4117         _dbus_gutils_type_to_string.
4118         (handle_introspect): Print out type codes instead of e.g. "string"
4119         in hardcoded introspection XML; also use x_AS_STRING constants
4120         instead of hardcoding in string.
4121
4122         * glib/dbus-glib-tool.c (pretty_print): Handle signature change
4123         to string.  Remove usage of _dbus_gutils_type_to_string.
4124
4125         * glib/dbus-gutils.c (_dbus_gutils_type_to_string): Delete.
4126
4127         * glib/dbus-gutils.h (_dbus_gutils_type_to_string): Update for
4128         deletion.
4129         
4130         * glib/dbus-binding-tool-glib.c (compute_marshaller)
4131         (compute_marshaller_name, generate_glue): Handle signature change
4132         to string.
4133         (write_formal_parameters, write_args_for_direction): Ditto, and
4134         remove FIXME.
4135
4136         * tools/dbus-tree-view.c (type_to_string): Delete.
4137         (info_set_func_text): Update to print full signatures.
4138
4139         * test/glib/test-service-glib.xml: Change types to new
4140         introspection format.
4141
4142 2005-02-26  Havoc Pennington  <hp@redhat.com>
4143
4144         * doc/TODO: remove the "guid" item
4145
4146         * test/glib/test-profile.c (no_bus_thread_func): use open_private
4147         (with_bus_thread_func): use open_private
4148
4149         * dbus/dbus-connection.c (dbus_connection_open_private): new
4150         function that works like the old dbus_connection_open()
4151         (dbus_connection_open): now returns an existing connection if
4152         possible
4153
4154         * dbus/dbus-server-unix.c (handle_new_client_fd_and_unlock): pass
4155         through the GUID to the transport
4156
4157         * dbus/dbus-server.c (_dbus_server_init_base): keep around the
4158         GUID in hex-encoded form.
4159
4160         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
4161         pass GUID argument in to the transport
4162
4163         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd): add
4164         guid argument
4165
4166         * dbus/dbus-transport.c (_dbus_transport_init_base): add guid argument
4167
4168         * dbus/dbus-auth.c (_dbus_auth_server_new): add guid argument
4169
4170 2005-02-25  Havoc Pennington  <hp@redhat.com>
4171
4172         * doc/dbus-specification.xml: document the GUID thing
4173
4174         * dbus/dbus-server.c (_dbus_server_init_base): initialize a
4175         globally unique ID for the server, and put a "guid=hexencoded"
4176         field in the address
4177
4178         * dbus/dbus-bus.c: fix missing #include of dbus-threads-internal.h
4179
4180         * dbus/dbus-message.c: ditto
4181
4182         * dbus/dbus-dataslot.c: ditto
4183
4184         * dbus/dbus-list.c: ditto
4185
4186         * dbus/dbus-internals.h: wait, just include
4187         dbus-threads-internal.h here
4188         
4189         * dbus/dbus-string.c (_dbus_string_copy_to_buffer): move back for
4190         use in main library
4191
4192         * dbus/dbus-sysdeps.c (_dbus_generate_random_bytes_buffer): new function
4193
4194 2005-02-24  Colin Walters  <walters@verbum.org>
4195
4196         * test/glib/Makefile.am (EXTRA_DIST): Add test-service-glib.xml
4197
4198 2005-02-24  John (J5) Palmieir  <johnp@redhat.com>
4199
4200         * glib/Makefile.am: added dbus-gobject.h to sources list
4201         so distcheck doesn't fail
4202         
4203 2005-02-24  Havoc Pennington  <hp@redhat.com>
4204
4205         * dbus/dbus-server.c, dbus/dbus-server-unix.c: change semantics so
4206         you must disconnect before unref, since locking and other things
4207         are screwed up otherwise. Fix assorted other locking stuff.
4208
4209         * dbus/dbus-signature.c (dbus_signature_iter_get_element_type):
4210         fix compilation
4211
4212         * dbus/dbus-threads-internal.h: move the mutex/condvar wrappers
4213         into a private header and don't export from the library
4214
4215         * throughout - call _dbus_thread_stuff vs. dbus_thread_stuff
4216
4217 2005-02-24  Colin Walters  <walters@verbum.org>
4218         
4219         * dbus/dbus-signature.c: New file; implements various functions
4220         related to type signatures.  Includes an interator for parsing,
4221         validation functions.
4222         (dbus_type_is_basic): Moved here from
4223         dbus-marshal-basic.c:_dbus_type_is_basic.
4224         (dbus_type_is_container): Moved here from
4225         dbus-marshal-basic.c:_dbus_type_is_container.
4226
4227         All callers of _dbus_type_is_container and _dbus_type_is_basic
4228         updated, and include dbus-signature.h.
4229
4230         * dbus/dbus-signature.h: New file; prototypes for the above.
4231
4232         * dbus/Makefile.am (DBUS_LIB_SOURCES): Add dbus-signature.c,
4233         dbus-signature.h.
4234
4235         * dbus/dbus-marshal-basic.c (map_type_char_to_type): New utility
4236         function factored out of _dbus_first_type_in_signature.
4237         (_dbus_first_type_in_signature_c_str): New function; returns first
4238         type code for a type signature character.
4239
4240         * dbus/dbus-marshal-basic.h: Prototype _dbus_first_type_in_signature_c_str,
4241         handle function moves.
4242
4243         * dbus/dbus-marshal-recursive.h: Export _dbus_type_signature_next.
4244
4245         * dbus/dbus-marshal-recursive.c (_dbus_type_signature_next): New
4246         function; skips to next complete type in type signature.
4247         Implemented using previous skip_one_complete_type.  Now
4248         skip_one_complete_type just delegates to
4249         _dbus_type_signature_next.
4250
4251         * dbus/dbus-marshal-basic.c (_dbus_type_is_basic): Moved
4252         to dbus-signature.c
4253         (_dbus_type_is_container): Ditto.
4254
4255         * doc/dbus-specification.xml: Update introspection sample to
4256         use real type signatures.
4257
4258         * dbus/dbus-test.h: Prototype signature test.
4259
4260         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): Run
4261         signature tests.
4262
4263         * dbus/dbus-protocol.h (DBUS_ERROR_INVALID_SIGNATURE): New error.
4264
4265 2005-02-23  John (J5) Palmieri  <johnp@redhat.com>
4266
4267         * python/dbus_bindings.pyx.in (PendingCall::get_reply):
4268         s/dbus_pending_call_get_reply/dbus_pending_call_steal_reply
4269
4270 2005-02-21  Colin Walters  <walters@verbum.org>
4271
4272         * dbus/dbus-test-main.c (main): Take optional specific test
4273         argument.
4274
4275         * dbus/dbus-test.c (run_test): New function, runs a test function
4276         with no data directory.
4277         (run_data_test): Like above, but takes data directory.
4278         (dbus_internal_do_not_use_run_tests): Take
4279         specific test argument.  Replace lots of cut n' paste code
4280         with run_test and run_data_test.
4281
4282         * dbus/dbus-test.h: Update prototype for
4283         dbus_internal_do_not_use_run_tests.
4284
4285 2005-02-20  Havoc Pennington  <hp@redhat.com>
4286
4287         Fix bugs reported by Daniel P. Berrange
4288         
4289         * dbus/dbus-server.c (_dbus_server_unref_unlocked): new function
4290         (protected_change_watch): new function
4291         (_dbus_server_toggle_watch, _dbus_server_remove_watch)
4292         (_dbus_server_add_watch): change to work like the
4293         dbus-connection.c equivalents; like those, probably kind of
4294         busted, but should at least mostly work for now
4295         (dbus_server_disconnect): drop the lock if we were already
4296         disconnected, patch from Daniel P. Berrange
4297
4298         * dbus/dbus-server.c (_dbus_server_toggle_timeout) 
4299         (_dbus_server_remove_timeout, _dbus_server_add_timeout): all the
4300         same stuff
4301
4302         * doc/TODO: todo about unscrewing this mess
4303
4304 2005-02-19  Colin Walters  <walters@verbum.org>
4305
4306         * glib/dbus-binding-tool-glib.c
4307         (dbus_binding_tool_output_glib_server): Fix iochannel refcounting.
4308
4309         * glib/dbus-glib-tool.c: Include dbus-glib-tool.h, as well
4310         as errno.h and sys/stat.h.
4311         (lose): New function, prints error with
4312         newline and exits.
4313         (lose_gerror): Similar, but takes GError for message.
4314         (main): Add --output argument to specify output file to write to,
4315         instead of always printing to stdout.  In this mode, determine
4316         timestamps on source files to see whether any are newer than the
4317         target file.  If not, exit.  Also convert a number of error
4318         messages to use lose (since it's shorter), and switch to using
4319         g_io_channel_shutdown.
4320
4321 2005-02-19  Havoc Pennington  <hp@redhat.com>
4322
4323         * glib/dbus-gobject.c
4324         (_dbus_glib_marshal_dbus_message_to_gvalue_array): add docs
4325
4326         * glib/dbus-glib.c: fix doxygen warnings
4327
4328         * glib/dbus-gparser.c (parse_annotation): error if an annotation
4329         is found on an <arg>
4330
4331 2005-02-17  Colin Walters  <walters@verbum.org>
4332
4333         * glib/dbus-gobject.h: Don't export
4334         _dbus_glib_marshal_dbus_message_to_gvalue_array.
4335         
4336         * glib/dbus-gobject.c (_dbus_glib_marshal_dbus_message_to_gvalue_array): Do rename.
4337         (invoke_object_method): Handle it.
4338
4339         * glib/dbus-gproxy.c (marshal_dbus_message_to_g_marshaller):
4340         Handle rename.
4341         
4342 2005-02-17  Colin Walters  <walters@verbum.org>
4343
4344         * bus/.cvsignore, doc/.cvsignore
4345         * test/data/valid-service-files/.cvsignore, test/glib/.cvsignore:
4346         Update.
4347
4348 2005-02-17  Colin Walters  <walters@verbum.org>
4349         
4350         * dbus/dbus-protocol.h (DBUS_SERVICE_ORG_FREEDESKTOP_DBUS):
4351         Rename to DBUS_SERVICE_DBUS.
4352         (DBUS_PATH_ORG_FREEDESKTOP_DBUS): Rename to DBUS_PATH_DBUS.
4353         (DBUS_PATH_ORG_FREEDESKTOP_LOCAL): Rename to DBUS_PATH_LOCAL.
4354         Change the value from "org.freedesktop.Local"
4355         to "org.freedesktop.DBus.Local".
4356         (DBUS_INTERFACE_ORG_FREEDESKTOP_DBUS): Rename to DBUS_INTERFACE_DBUS.
4357         (DBUS_INTERFACE_ORG_FREEDESKTOP_INTROSPECTABLE): Rename to
4358         DBUS_INTERFACE_INTROSPECTABLE.
4359         Change the value from "org.freedesktop.Introspectable"
4360         to "org.freedesktop.DBus.Introspectable".
4361         (DBUS_INTERFACE_ORG_FREEDESKTOP_PROPERTIES): Rename to
4362         DBUS_INTERFACE_PROPERTIES.
4363         Change the value from "org.freedesktop.Properties"
4364         to "org.freedesktop.DBus.Properties".
4365         (DBUS_INTERFACE_ORG_FREEDESKTOP_PEER): Rename to
4366         DBUS_INTERFACE_PEER.
4367         Change the value from "org.freedesktop.Peer"
4368         to "org.freedesktop.DBus.Peer".
4369         (DBUS_INTERFACE_ORG_FREEDESKTOP_LOCAL): 
4370         DBUS_INTERFACE_LOCAL.
4371         Change the value from "org.freedesktop.Local"
4372         to "org.freedesktop.DBus.Local".
4373
4374         All other users of those constants have been changed.
4375
4376         * bus/driver.c (bus_driver_handle_introspect): Use constants.
4377
4378         * glib/dbus-gobject.c (handle_introspect): Use constants.
4379
4380         * doc/dbus-faq.xml, doc/dbus-specification.xml: Update for rename.
4381
4382 2005-02-17  Colin Walters  <walters@verbum.org>
4383
4384         * glib/dbus-gparser.c (struct Parser): Add in_annotation boolean.
4385         (parse_node, parse_interface, parse_method, parse_signal)
4386         (parse_property, parse_annotation): Lose if we're currently in an
4387         annotation.
4388         (parse_annotation): New function.
4389         (parser_start_element, parser_end_element): Handle annotation.
4390         (parse_method, parse_interface): Remove support for c_name attribute,
4391         switch to annotations.
4392
4393         * glib/dbus-gidl.h (interface_info_get_binding_names)
4394         (method_info_get_binding_names)
4395         (interface_info_get_binding_name, method_info_get_binding_name)
4396         (interface_info_set_binding_name, method_info_set_binding_name):
4397         Remove.
4398         (interface_info_get_annotations, method_info_get_annotations)
4399         (interface_info_get_annotation, method_info_get_annotation)
4400         (interface_info_add_annotation, method_info_add_annotation):
4401         Prototype.
4402
4403         * glib/dbus-gidl.c (struct InterfaceInfo): Substitute "annotations"
4404         for "bindings".
4405         (struct MethodInfo): Ditto.
4406         Straightfoward conversion of binding methods into annotation methods
4407         as prototyped.
4408
4409         * glib/dbus-glib-tool.c (pretty_print): Print annotations.
4410
4411         * glib/dbus-binding-tool-glib.h (DBUS_GLIB_ANNOTATION_C_SYMBOL): Define.
4412
4413         * glib/dbus-binding-tool-glib.c (gather_marshallers, generate_glue):
4414         Use new annotation API.
4415
4416         * doc/introspect.dtd: Fix a number of DTD syntax errors.  Add
4417         annotation element.
4418         
4419         * doc/dbus-specification.xml: Discuss introspection annotations,
4420         include list of well-known annotations.
4421
4422         * test/glib/test-service-glib.xml: Make validate against new DTD.
4423
4424 2005-02-17  Colin Walters  <walters@verbum.org>
4425
4426         This patch is based on initial work from
4427         Paul Kuliniewicz <kuliniew@purdue.edu>.
4428
4429         * glib/dbus-gvalue.c (dbus_gvalue_init): New function; move
4430         initialization of GValue from dbus type to here.
4431         (dbus_gvalue_genmarshal_name_from_type): New function; generates a string
4432         for the "glib-genmarshal" program from a DBus type.
4433         (dbus_gvalue_binding_type_from_type): New function; turns a DBus type
4434         into the C name for it we use in the glib bindings.
4435         (dbus_gvalue_ctype_from_type): New function; maps a DBus type into a
4436         glib C type (not GValue).
4437         (dbus_gvalue_demarshal): invoke dbus_gvalue_init.
4438
4439         * glib/dbus-gutils.c (_dbus_gutils_wincaps_to_uscore): Moved here
4440         from dbus-gobject.c.
4441
4442         * glib/dbus-gutils.h: Prototype it.
4443
4444         * glib/dbus-gproxy.c: Include new dbus-gobject.h.
4445         (marshal_dbus_message_to_g_marshaller): Use new shared function
4446         dbus_glib_marshal_dbus_message_to_gvalue_array.
4447
4448         * glib/dbus-gparser.c (parse_interface, parse_method): Handle c_name attribute.
4449         Will be changed once we have annotations.
4450
4451         * glib/dbus-gobject.c: Change info_hash_mutex from GStaticMutex to
4452         GStaticRWLock.  Callers updated.
4453         (wincaps_to_uscore): Move to dbus-gutils.c.  Callers updated.
4454         (string_table_next): New function for iterating over zero-terminated
4455         string value array.
4456         (string_table_lookup): New function; retrieves specific entry in
4457         array.
4458         (get_method_data): New function; look up method data in object data chunk.
4459         (object_error_domain_prefix_from_object_info)
4460         (object_error_code_from_object_info): New functions, but not implemented yet.
4461         (method_interface_from_object_info): New function; retrieve interface name.
4462         (method_name_from_object_info): New function; retrieve method name.
4463         (method_arg_info_from_object_info): New function; retrieve argument data.
4464         (arg_iterate): New function; iterates over serialized argument data.
4465         (method_dir_signature_from_object_info): New function; returns a
4466         GString holding type signature for arguments for just one
4467         direction (input or output).
4468         (method_input_signature_from_object_info)
4469         (method_output_signature_from_object_info): New functions.
4470         (dbus_glib_marshal_dbus_message_to_gvalue_array): New shared function;
4471         converts dbus message arguments into a GValue array.  Used for both
4472         signal handling and method invocation.
4473         (struct DBusGlibWriteIterfaceData): New utility structure.
4474         (write_interface): New function; generate introspection XML for
4475         an interface.
4476         (introspect_interfaces): New function; gathers all interface->methods,
4477         generates introspection XML for them.
4478         (handle_introspect): Invoke introspect_interfaces.
4479         (get_object_property): Be sure to zero-initalize stack-allocated GValue.
4480         (lookup_object_and_method): New function; examines an incoming message
4481         and attempts to match it up (via interface, method name, and argument
4482         signature) with a known object and method.
4483         (gerror_domaincode_to_dbus_error_name): New function; converts a
4484         GError domain and code into a DBus error name.  Needs GError data
4485         added to object introspection to work well.
4486         (gerror_to_dbus_error_message): Creates a DBusMessage error return from
4487         GError.
4488         (invoke_object_method): New function to invoke an object method
4489         looked up via lookup_object_and_method.  Parses the incoming
4490         message, turns it into a GValue array, then invokes the marshaller
4491         specified in the DBusGMethodInfo.  Creates a new message with
4492         either return values or error message as appropriate.
4493         (gobject_message_function): Invoke lookup_object_and_method and
4494         invoke_object_method.
4495
4496         * glib/dbus-glib-tool.c: Include dbus-binding-tool-glib.h.
4497         (enum DBusBindingOutputMode): New enum for binding output modes.
4498         (pretty_print): Print binding names.
4499         (dbus_binding_tool_error_quark): GError bits.
4500         (version): Fix typo.
4501         (main): Create GIOChannel for output.  Parse new --mode argument,
4502         possible values are "pretty-print", "glib-server", "glib-client".
4503         Use mode to invoke appropriate function.
4504         
4505         * glib/dbus-gobject.h: Prototype dbus_glib_marshal_dbus_message_to_gvalue_array.
4506
4507         * glib/dbus-glib-tool.h: New header, just includes GError bits
4508         for now.
4509
4510         * glib/dbus-gidl.c (struct InterfaceInfo): Add bindings hashtable;
4511         maps binding style to name.
4512         (struct MethodInfo): Ditto.
4513         (get_hash_keys, get_hash_key): Utility function, returns keys for
4514         a GHashTable.
4515         (interface_info_new, method_info_new): Initialize bindings.
4516         (interface_info_unref, method_info_unref): Destroy bindings.
4517         (method_info_get_binding_names, method_info_get_binding_name)
4518         (interface_info_get_binding_names, interface_info_get_binding_name):
4519         Functions for retrieving binding names.
4520         (method_info_set_binding_name, interface_info_set_binding_name):
4521         Functions for setting binding names.
4522
4523         * glib/dbus-binding-tool-glib.h: New file, has prototypes
4524         for glib binding generation.
4525
4526         * glib/dbus-binding-tool-glib.c: New file, implements server-side
4527         and client-side glib glue generation.
4528
4529         * glib/Makefile.am (dbus_binding_tool_SOURCES): Add
4530         dbus-binding-tool-glib.c, dbus-binding-tool-glib.h,
4531         dbus-glib-tool.h.
4532
4533         * dbus/dbus-glib.h (struct DBusGMethodMarshaller): Remove in favor
4534         of using GClosureMarshal directly.
4535         (struct DBusGObjectInfo): Add n_infos member.
4536
4537         * test/glib/test-service-glib.xml: New file; contains introspection data
4538         for MyTestObject used in test-service-glib.c.
4539
4540         * test/glib/test-service-glib.c (enum MyObjectError): New GError enum.
4541         (my_object_do_nothing, my_object_increment, my_object_throw_error)
4542         (my_object_uppercase, my_object_many_args): New test methods.
4543         (main): Use dbus_g_object_class_install_info to include generated object
4544         info.
4545
4546         * test/glib/Makefile.am: Generate server-side glue for test-service-glib.c,
4547         as well as client-side bindings.
4548
4549         * test/glib/test-dbus-glib.c: Include test-service-glib-bindings.h.
4550         (main): Activate TestSuiteGLibService; test invoke a bunch of its methods
4551         using both the dbus_gproxy stuff directly as well as the generated bindings.
4552
4553 2005-02-15  Havoc Pennington  <hp@redhat.com>
4554
4555         * dbus/dbus-connection.c (dbus_connection_dispatch): always
4556         complete a pending call, don't run filters first.
4557
4558         * glib/dbus-gproxy.c (dbus_g_proxy_end_call): change to use
4559         dbus_pending_call_steal_reply
4560
4561         * dbus/dbus-pending-call.c (dbus_pending_call_block): just call
4562         _dbus_connection_block_pending_call
4563         (dbus_pending_call_get_reply): change to steal_reply and return a
4564         ref
4565
4566         * dbus/dbus-connection.c
4567         (dbus_connection_send_with_reply_and_block): port to work in terms
4568         of DBusPendingCall
4569         (_dbus_connection_block_pending_call): replace block_for_reply
4570         with this
4571
4572 2005-02-14  Havoc Pennington  <hp@redhat.com>
4573
4574         * dbus/dbus-userdb-util.c (_dbus_user_database_lookup_group):
4575         properly handle looking up group information by name; fix 
4576         from j@bootlab.org
4577
4578 2005-02-13  Havoc Pennington  <hp@redhat.com>
4579
4580         * dbus/dbus-connection.c (dbus_connection_return_message) 
4581         (dbus_connection_borrow_message): hold dispatch lock while message
4582         is outstanding
4583         (_dbus_connection_block_for_reply): hold dispatch lock while we
4584         block for the reply, so nobody steals our reply
4585         (dbus_connection_pop_message): hold the dispatch lock while we
4586         pluck the message
4587
4588 2005-02-13  Havoc Pennington  <hp@redhat.com>
4589
4590         * dbus/dbus-connection.c (_dbus_connection_acquire_dispatch)
4591         (_dbus_connection_release_dispatch)
4592         (_dbus_connection_acquire_io_path)
4593         (_dbus_connection_release_io_path): make the mutex and condvar
4594         control access to the "acquired" flag. Drop the connection lock
4595         while waiting on the condvar. Hopefully these are baby steps in
4596         roughly the right direction.
4597
4598 2005-02-13  Havoc Pennington  <hp@redhat.com>
4599
4600         * dbus/dbus-connection.c: use separate mutexes for the condition
4601         variables; this is some kind of baseline for sanity, but the
4602         condition variables still aren't used correctly afaict
4603
4604 2005-02-13  Havoc Pennington  <hp@redhat.com>
4605
4606         * dbus/dbus-object-tree.c (handle_default_introspect_and_unlock):
4607         fix a double-unlock
4608
4609         * dbus/dbus-connection.c
4610         (_dbus_connection_detach_pending_call_unlocked): add this
4611
4612         Initial semi-correct pass through to fix thread locking; there are
4613         still some issues with the condition variable paths I'm pretty
4614         sure
4615         
4616         * dbus/dbus-server.c: add a mutex on DBusServer and appropriate
4617         lock/unlock calls
4618
4619         * dbus/dbus-connection.c (_dbus_connection_do_iteration_unlocked):
4620         rename to add _unlocked
4621         (struct DBusConnection): move "dispatch_acquired" and
4622         "io_path_acquired" to use only one bit each.
4623         (CONNECTION_LOCK, CONNECTION_UNLOCK): add checks with !DBUS_DISABLE_CHECKS
4624         (dbus_connection_set_watch_functions): hacky fix to reentrancy
4625         (_dbus_connection_add_watch, _dbus_connection_remove_watch) 
4626         (_dbus_connection_toggle_watch, _dbus_connection_add_timeout) 
4627         (_dbus_connection_remove_timeout) 
4628         (_dbus_connection_toggle_timeout): drop lock when calling out to
4629         user functions; done in a hacky/bad way.
4630         (_dbus_connection_send_and_unlock): add a missing unlock
4631         (_dbus_connection_block_for_reply): add a missing unlock
4632
4633         * dbus/dbus-transport.c (_dbus_transport_get_is_authenticated):
4634         drop lock in a hacky probably unsafe way to call out to user
4635         function
4636
4637 2005-02-12  Havoc Pennington  <hp@redhat.com>
4638
4639         * tools/dbus-tree-view.c (info_set_func_text): display more
4640         details on args
4641
4642         * bus/driver.c (bus_driver_handle_list_services): list the bus
4643         driver
4644
4645         * glib/dbus-gparser.c (parse_arg): generate an arg name if none is supplied
4646
4647         * glib/dbus-gidl.c (signal_info_get_n_args): new function
4648         (method_info_get_n_args): new function
4649
4650 2005-02-12  Havoc Pennington  <hp@redhat.com>
4651
4652         * bus/driver.c (bus_driver_handle_introspect): add introspection
4653         for bus driver
4654
4655 2005-02-12  Havoc Pennington  <hp@redhat.com>
4656
4657         * bus/driver.c: put the signature of each bus driver method in the
4658         table of handlers and check it on incoming calls; this isn't
4659         really useful, but going to add introspect support in a minute.
4660
4661 2005-02-11  Joe Shaw  <joeshaw@novell.com>
4662
4663         * mono/Connection.cs: The unpredictability of finalizers in mono
4664         prevents us from deterministically disconnecting the filters from
4665         the Service class's finalizer, so move tracking of filters and
4666         matches here.  Add API for that.
4667
4668         * mono/Service.cs: Remove the code, add code which calls the
4669         methods now on the Connection class.
4670
4671 2005-02-11  John (J5) Palmieri  <johnp@redhat.com>
4672
4673         * python/dbus.py (class Sender): added to support dbus signals better
4674         (Bus::add_signal_receiver): added expand_args parameter which defaults
4675         to True.  When expand args is True the signal handler will pass the 
4676         message arguments as parameters to the signal handler.  If False
4677         revert to previous behavior where the signal handler must get the
4678         argument list from the message.  This is to help port applications
4679         like HAL that have a tendancy to send variable length argument lists.
4680         self._match_rule_to_receivers is now a dict of dicts.
4681         (Bus::remove_signal_receiver): pop handler off the dict intead of 
4682         removing it from a list
4683         (Bus::_signal_func): change signal handlers so that interface,
4684         signal_name, service, path and message are packed into a Sender
4685         object and that is passed to the handler.  If expand_args is True
4686         extract the args list from the message and append it to the parameter
4687         list
4688         
4689         * python/dbus_bindings.pyx.in (class Signature): added to support 
4690         signiature types
4691         (MessageIter::__init__): changed iteration limit to match D-BUS
4692         (MessageIter::get*): added INT16, UINT16, SIGNATURE, DICT_ENTRY, 
4693         STRUCT and VARIENT type support
4694         (MessageIter::python_value_to_dbus_sig): made recursive to support
4695         recursive types
4696         (MessageIter::append*): added Signature, dict, tuple 
4697         support
4698
4699         * python/examples/example-client.py: added examples of getting tuples
4700         and dicts
4701
4702         * python/examples/example-service.py: added examples of sending tuples
4703         and dicts
4704
4705         * python/examples/example-signal-recipient.py: Fixed to handle new
4706         signal callback format
4707
4708 2005-02-10  Havoc Pennington  <hp@redhat.com>
4709
4710         * test/glib/test-dbus-glib.c (main): fix so this test doesn't fail
4711         (call dbus_g_proxy_add_signal)
4712
4713         * dbus/dbus-server-unix.c (_dbus_server_new_for_tcp_socket):
4714         escape the hostname
4715         (_dbus_server_new_for_domain_socket): escape the path
4716
4717         * dbus/dbus-address.c (dbus_address_escape_value): new
4718         (dbus_address_unescape_value): new
4719         (dbus_parse_address): unescape values
4720
4721         * dbus/dbus-string.c (_dbus_string_append_byte_as_hex): new function
4722
4723         * doc/dbus-specification.xml: explain how to escape values in
4724         addresses
4725
4726 2005-02-10  Havoc Pennington  <hp@redhat.com>
4727
4728         * dbus/dbus-message-factory.c (generate_special): modify test to
4729         avoid using a non-basic dict key
4730
4731         * dbus/dbus-marshal-validate-util.c: add test for the below
4732
4733         * doc/dbus-specification.xml: require that dict keys are a basic
4734         type
4735
4736         * dbus/dbus-marshal-validate.c
4737         (_dbus_validate_signature_with_reason): require that dict key is a
4738         basic type
4739
4740 2005-02-10  Havoc Pennington  <hp@redhat.com>
4741
4742         * dbus/dbus-object-tree.c (handle_default_introspect_and_unlock):
4743         change to be _and_unlock instead of _unlocked
4744
4745         * dbus/dbus-connection.c
4746         (_dbus_connection_send_preallocated_unlocked_no_update): rename to
4747         have no_update so we can find this bug quickly in future
4748
4749 2005-02-10  Havoc Pennington  <hp@redhat.com>
4750
4751         * dbus/dbus-message-util.c (verify_test_message): tests for string
4752         array
4753
4754         * dbus/dbus-message.c (dbus_message_append_args_valist): add
4755         support for arrays of string/signature/path
4756
4757 2005-02-10  Joe Shaw  <joeshaw@novell.com>
4758
4759         * dbus/dbus-connection.c
4760         (_dbus_connection_queue_received_message_link,
4761         _dbus_connection_message_sent): Add the path to
4762         the verbose output.
4763         (_dbus_connection_send_preallocated_and_unlock): Added.  Calls
4764         _dbus_connection_send_preallocated_unlocked(), updated the
4765         dispatch status, and unlocks.  Fixes a bug where certain
4766         situations (like a broken pipe) could cause a Disconnect message
4767         to not be sent, tricking the bus into thinking a service was still
4768         there when the process had quit.
4769         (_dbus_connection_send_preallocated): Call
4770         _dbus_connection_send_preallocated_and_unlock().
4771         (_dbus_connection_send_and_unlock): Added.  Calls
4772         _dbus_connection_send_preallocated_and_unlock().
4773         (dbus_connection_send): Call _dbus_connection_send_and_unlock().
4774         (dbus_connection_send_with_reply): Update the dispatch status and
4775         unlock.
4776
4777         * mono/Service.cs (~Service): Added.  Removes the filter so that
4778         we don't get unmanaged code calling back into a GCed delegate.
4779         (RemoveFilter); Added.
4780
4781 2005-02-09  John (J5) Palmieri  <johnp@redhat.com>
4782
4783         * dbus/dbus-message.c (dbus_message_iter_open_container):
4784         - Removed check for iterator type being an array because
4785         get_arg_type does not work with writer iterators
4786         - Pass NULL to _dbus_type_writer_recurse if signiture is NULL
4787
4788 2005-02-07  Havoc Pennington  <hp@redhat.com>
4789
4790         * doc/dbus-specification.xml: some more language cleanups; add
4791         stuff about how to deal with invalid protocol and extension
4792         points; add _ to allowed chars in auth commands; add EXTENSION_
4793         auth command prefix
4794
4795 2005-02-06  Havoc Pennington  <hp@redhat.com>
4796
4797         * s/expected/required/ in a couple places for clarity
4798
4799 2005-02-07  Colin Walters  <walters@verbum.org>
4800
4801         * bus/selinux.c (bus_selinux_allows_send): Handle NULL for
4802         sender or proposed_recipient.
4803
4804 2005-02-06  Havoc Pennington  <hp@redhat.com>
4805
4806         * dbus/dbus-message-factory.c (generate_special): more tests
4807
4808         * dbus/dbus-marshal-validate.c (validate_body_helper): detect
4809         array length that exceeds the maximum
4810
4811 2005-02-05  Havoc Pennington  <hp@redhat.com>
4812
4813         * dbus/dbus-message-factory.c (generate_special): more test cases,
4814         increasing coverage
4815
4816         * dbus/dbus-marshal-validate.c (validate_body_helper): return the
4817         reason why a signature was invalid
4818
4819         * dbus/dbus-marshal-header.c (load_and_validate_field): fix to
4820         skip the length of the string before we look at it in validation
4821
4822         * dbus/dbus-string-util.c (_dbus_string_test): add tests for
4823         equal_substring
4824
4825         * dbus/dbus-message.c (_dbus_message_loader_new): default
4826         max_message_length to DBUS_MAXIMUM_MESSAGE_LENGTH
4827
4828 2005-02-05  Havoc Pennington  <hp@redhat.com>
4829
4830         * dbus/dbus-marshal-validate.c (validate_body_helper): fix crash
4831         if the signature of a variant was empty
4832         (_dbus_validate_signature_with_reason): catch "(a)" (array inside
4833         struct with no element type)
4834
4835         * dbus/dbus-message-factory.c (generate_uint32_changed): add more
4836         mangled messages to break things
4837
4838 2005-02-04  Havoc Pennington  <hp@redhat.com>
4839
4840         * glib/dbus-gproxy.c (dbus_g_proxy_disconnect_signal): use
4841         g_quark_try_string() so it actually can return 0
4842         (dbus_g_proxy_connect_signal): ditto
4843
4844 2005-02-04  Havoc Pennington  <hp@redhat.com>
4845
4846         * glib/dbus-gproxy.c (dbus_g_proxy_emit_remote_signal): fix a
4847         bogus warning
4848         (tristring_from_message): assert cleanly on null path/interface
4849         (should not be possible though I decided later)
4850         (dbus_g_proxy_dispose): move proxy manager unregistration here
4851         (DBUS_G_PROXY_DESTROYED): add this macro, and use it in a bunch of
4852         g_return_if_fail() checks
4853
4854 2005-02-04  Havoc Pennington  <hp@redhat.com>
4855
4856         * doc/Makefile.am (EXTRA_DIST): add DTDs to makefile
4857
4858         * doc/introspect.dtd: add introspect.dtd from David A. Wheeler
4859         (with some minor changes)
4860
4861         * doc/dbus-specification.xml: add deprecated attribute to
4862         introspection format
4863
4864 2005-01-31  Havoc Pennington  <hp@redhat.com>
4865
4866         * glib/dbus-gproxy.c: rewrite how signals work again, this time I
4867         think it's sort of right
4868
4869 2005-01-30  Havoc Pennington  <hp@redhat.com>
4870
4871         * tools/dbus-viewer.c: kind of half-ass hook up the option menu.
4872
4873 2005-01-30  Havoc Pennington  <hp@redhat.com>
4874
4875         * tools/dbus-names-model.c: dynamically watch NameOwnerChanged
4876
4877         * autogen.sh: change to autotools 1.9
4878
4879         * glib/dbus-gproxy.c: completely change how signals work
4880         (dbus_g_proxy_add_signal): new function to specify signature of a
4881         signal
4882         (dbus_g_proxy_emit_received): marshal the dbus message to GValues,
4883         and g_warning if the incoming message has the wrong signature.
4884
4885 2005-01-30  Havoc Pennington  <hp@redhat.com>
4886
4887         * tools/dbus-names-model.c (have_names_notify): fix this
4888
4889         * dbus/dbus-message.c (_dbus_message_iter_get_args_valist): clean
4890         up the string array handling a bit 
4891
4892 2005-01-30  Havoc Pennington  <hp@redhat.com>
4893
4894         * glib/dbus-glib.c (dbus_g_pending_call_set_notify): new function
4895         (dbus_g_pending_call_cancel): new function
4896
4897         * dbus/dbus-glib.h: move GType decls for connection/message here;
4898         * dbus/dbus-glib.c: move all the g_type and ref/unref stuff in
4899         here, just kind of rationalizing how we handle all that
4900
4901         * tools/dbus-names-model.c: new file for a tree model listing the
4902         services on a bus
4903
4904         * tools/dbus-tree-view.c (model_new): use proper typing on the
4905         model rows
4906
4907 2005-01-30  Havoc Pennington  <hp@redhat.com>
4908
4909         * glib/dbus-gmain.c: add a custom GSource back that just checks
4910         whether the message queue has anything in it; otherwise, there are 
4911         cases where we won't see messages in the queue since there was no 
4912         IO visible to the glib main loop
4913
4914         * dbus/dbus-connection-internal.h (_DBUS_DEFAULT_TIMEOUT_VALUE):
4915         increase default message timeout to 25 seconds
4916
4917 2005-01-30  Havoc Pennington  <hp@redhat.com>
4918
4919         * test/glib/test-profile.c (no_bus_stop_server): remove the
4920         warning about the g_warning that I just fixed
4921
4922         * glib/dbus-gmain.c: rewrite the main loop stuff to avoid the
4923         custom source, seems to be a lot easier to understand and work
4924         better.
4925
4926 2005-01-30  Havoc Pennington  <hp@redhat.com>
4927
4928         I think this main loop thing is conceptually broken, but here are 
4929         some band aids. I'll maybe rewrite it in a minute.
4930         
4931         * glib/dbus-gmain.c (add_timeout): timeout stuff doesn't use the
4932         custom GSource, so don't pass it in; confusing
4933         (gsource_server_finalize, gsource_connection_finalize): add
4934         finalize handlers that remove all the watches.  
4935
4936 2005-01-30  Havoc Pennington  <hp@redhat.com>
4937
4938         * glib/dbus-gobject.c (introspect_properties): fix the XML
4939         generated
4940
4941         * dbus/dbus-message.c (dbus_message_unref): add an in_cache flag
4942         which effectively detects the use of freed messages
4943
4944         * glib/dbus-gobject.c (handle_introspect): modify and return the
4945         reply message instead of the incoming message
4946
4947         * dbus/dbus-object-tree.c (handle_default_introspect_unlocked):
4948         gee, maybe it should SEND THE XML instead of just making a string
4949         and freeing it again ;-)
4950
4951         * tools/dbus-print-message.c (print_message): improve printing of
4952         messages
4953
4954         * configure.in: add debug-glib.service to the output
4955
4956 2005-01-30  Havoc Pennington  <hp@redhat.com>
4957
4958         dbus-viewer introspected and displayed the bus driver
4959         
4960         * dbus/dbus-object-tree.c 
4961         (object_tree_test_iteration): add tests for a handler registered on "/"
4962
4963         * dbus/dbus-object-tree.c
4964         (_dbus_decompose_path): fix to handle path "/" properly
4965         (run_decompose_tests): add tests for path decomposition
4966         
4967         * glib/dbus-gutils.c (_dbus_gutils_split_path): fix to handle "/"
4968         properly
4969
4970         * glib/dbus-gobject.c (handle_introspect): fix quotes
4971
4972         * test/glib/run-test.sh: support launching the bus, then running
4973         dbus-viewer
4974
4975         * test/glib/test-service-glib.c (main): put in a trivial gobject
4976         subclass and register it on the connection
4977
4978         * bus/driver.c (bus_driver_handle_introspect): implement
4979         introspection of the bus driver service
4980
4981         * dbus/dbus-protocol.h: add #defines for the XML namespace,
4982         identifiers, doctype decl
4983
4984         * bus/driver.c (bus_driver_handle_get_service_owner): handle
4985         attempts to get owner of DBUS_SERVICE_ORG_FREEDESKTOP_DBUS by 
4986         returning the service unchanged.
4987         (bus_driver_handle_message): remove old check for reply_serial in
4988         method calls, now the message type deals with that
4989         (bus_driver_handle_message): handle NULL interface
4990
4991         * glib/dbus-gproxy.c (dbus_g_proxy_get_bus_name): new function
4992
4993         * glib/dbus-gloader-expat.c (description_load_from_string): allow
4994         -1 for len
4995
4996         * tools/dbus-viewer.c: add support for introspecting a service on
4997         a bus
4998
4999         * glib/dbus-gproxy.c (dbus_g_pending_call_ref): add
5000         (dbus_g_pending_call_unref): add
5001
5002 2005-01-29  Havoc Pennington  <hp@redhat.com>
5003
5004         * tools/dbus-tree-view.c: add support for displaying properties.
5005         (run dbus-viewer with an introspect xml file as arg, then resize
5006         the window so the tree elements show up, not sure what that is)
5007
5008         * glib/dbus-gobject.c (handle_introspect): return
5009         org.freedesktop.Properties and org.freedesktop.Introspectable
5010         interfaces when we are introspected.
5011
5012         * doc/dbus-specification.xml: allow empty interface name when 
5013         Get/Set a property
5014
5015 2005-01-29  Havoc Pennington  <hp@redhat.com>
5016
5017         * glib/Makefile.am: rename dbus-glib-tool to dbus-binding-tool;
5018         though it uses glib, it could be extended for any binding in
5019         principle
5020
5021         * glib/dbus-gobject.c (gobject_message_function): change to the
5022         new way properties work
5023
5024         * dbus/dbus-protocol.h: add the new interfaces
5025
5026         * doc/dbus-specification.xml: document the introspection format,
5027         Introspectable interface, and add an org.freedesktop.Properties
5028         interface.
5029
5030         * glib/dbus-gparser.c: add support for a <property> element
5031
5032         * glib/dbus-gidl.c: add PropertyInfo
5033
5034         * glib/dbus-gobject.c (handle_introspect): put the outermost
5035         <node> outside the signal and property descriptions.
5036         (introspect_properties): export properties as <property> rather
5037         than as method calls
5038
5039 2005-01-28  Havoc Pennington  <hp@redhat.com>
5040
5041         * doc/TODO, doc/dbus-specification.xml: spec and TODO tweaks
5042         related to authentication protocol
5043
5044 2005-01-28  John (J5) Palmieri  <johnp@redhat.com>
5045
5046         * python/dbus_bindings.pyx.in: Updated to handle new D-BUS type system
5047                 - BUS_ACTIVATION -> BUS_STARTER
5048                 - DBUS_BUS_ACTIVATION -> DBUS_BUS_STARTER
5049                 - class MessageIter (__init__): Added recursion checking 
5050                 so we throw a nice error instead of just disconnecting from the
5051                 bus.
5052                 (get): Added arg_type parameter for recursion.
5053                 Removed the nil type
5054                 Added signiture type placeholder (not implemented)
5055                 Added struct type placeholder (not implemented)
5056                 Added varient type placeholder (not implemented)
5057                 Commented out dict type for now     
5058                 (get_element_type): renamed from get_array_type
5059                 (get_*): changed to use the dbus_message_iter_get_basic API
5060                 (get_*_array): removed in favor of recursive get_array method
5061                 (get_array): new recursive method which calls get to marshal
5062                 the elements of the array
5063                 (value_to_dbus_sig): New method returns the corrasponding
5064                 dbus signiture to a python value
5065                 (append): Comment out dict handling for now
5066                 Handle lists with the new recursive API
5067                 Comment out None handling for now
5068                 (append_nil): removed
5069                 (append_*): changed to use dbus_message_iter_append_basic API
5070                 (append_*_array): removed in favor of recursive append_array 
5071                 method
5072                 (__str__): Make it easier to print out recursive iterators
5073                 for debugging
5074                 - class Message (__str__): moved type inspection to the
5075                 MessageIter class' __str__ method
5076                 (get_iter): Added an append parameter wich defaults to False
5077                 If True use the new API's to create an append iterator
5078
5079         * python/dbus.py: Update to use new bindings API
5080                 - TYPE_ACTIVATION -> TYPE_STARTER
5081                 - class Bus (_get_match_rule): GetServiceOwner -> GetNameOwner
5082                 - class ActivationBus -> class StarterBus
5083                 - class RemoteObject (__call__): get an append iterator
5084                 - (_dispatch_dbus_method_call): get an append iterator
5085                 - class Object (emit_signal): get an append iterator
5086
5087         * python/examples/: Fixed up the examples to work with the new API
5088                 
5089 2005-01-28  Joe Shaw  <joeshaw@novell.com>
5090
5091         * configure.in: Bump version up to 0.30.
5092
5093         * HACKING: Add a release item to bump the version number up after 
5094         a release.
5095
5096 2005-01-28  Havoc Pennington  <hp@redhat.com>
5097
5098         * doc/dbus-specification.xml: update to describe 16-bit types and
5099         dict entries
5100
5101         * dbus/dbus-marshal-basic.c (_dbus_unpack_uint16): fix broken
5102         assertion
5103
5104         * dbus/dbus-protocol.h (DBUS_TYPE_DICT_ENTRY): add DICT_ENTRY as a
5105         type
5106
5107         * dbus/dbus-marshal-recursive.c: implement
5108
5109 2005-01-27  Havoc Pennington  <hp@redhat.com>
5110
5111         * dbus/dbus-arch-deps.h.in: add 16/32-bit types
5112
5113         * configure.in: find the right type for 16 and 32 bit ints as well
5114         as 64
5115
5116         * dbus/dbus-protocol.h (DBUS_TYPE_INT16, DBUS_TYPE_UINT16): add
5117         the 16-bit types so people don't have to stuff them in 32-bit or
5118         byte arrays.
5119
5120 2005-01-27  Havoc Pennington  <hp@redhat.com>
5121
5122         * dbus/dbus-message.c: byteswap the message if you init an
5123         iterator to read/write from it
5124         
5125         * dbus/dbus-marshal-byteswap.c: new file implementing 
5126         _dbus_marshal_byteswap()
5127
5128         * dbus/dbus-marshal-basic.c: add _dbus_swap_array()
5129
5130 2005-01-26  Havoc Pennington  <hp@redhat.com>
5131         
5132         * dbus/dbus-marshal-validate-util.c: break this out (and fix
5133         build, apparently - nobody noticed?)
5134         
5135 2005-01-26  Havoc Pennington  <hp@redhat.com>
5136
5137         * dbus/dbus-marshal-recursive.h: remove todo comment
5138
5139 2005-01-25  Joe Shaw  <joeshaw@novell.com>
5140
5141         * Land the mono binding changes to conform to the new APIs.
5142
5143         * mono/Makefile.am: Remove Custom.cs, DBusType/Custom.cs,
5144         DBusType/Dict.cs, and DBusType/Nil.cs from the build.
5145
5146         * mono/Arguments.cs (GetCodeAsString): Added.  Returns the dbus
5147         type code as a string.
5148         (InitAppending): Rename dbus_message_append_iter_init() to
5149         dbus_message_iter_init_append().
5150
5151         * mono/BusDriver.cs: Rename ServiceEventHandler to
5152         NameOwnerChangedHandler.  Rename GetServiceOwner to GetOwner.
5153         Rename ServiceOwnerChanged to NameOwnerChanged.
5154
5155         * mono/Connection.cs: Rename BaseService to UniqueName, and the
5156         underlying C call.
5157
5158         * mono/Custom.cs: Removed.  The CUSTOM type has been removed.
5159
5160         * mono/Service.cs: Rename Exists to HasOwner, internally rename
5161         dbus_bus_acquire_service() to dbus_bus_request_name().
5162
5163         * mono/DBusType/Array.cs (ctor): Use Type.GetElementType() instead
5164         of Type.UnderlyingSystemType to get the correct element type for
5165         the array.
5166         (ctor): Update code for new APIs: use dbus_message_iter_recurse(),
5167         dbus_message_get_{element|arg}_type() instead of
5168         dbus_message_iter_init_array_iterator().
5169         (Append): Replace dbus_message_iter_append_array() with
5170         dbus_message_iter_open_container() and
5171         dbus_message_iter_close_container().
5172
5173         * mono/DBusType/Custom.cs, mono/DBusType/Nil.cs: Removed.  These
5174         types have been removed.
5175         
5176         * mono/DBusType/*.cs: Replace calls of
5177         dbus_message_iter_get_[type]() to dbus_message_iter_get_basic(),
5178         but specify the type in the DllImport extern declaration.  Ditto
5179         for dbus_message_iter_append_[type]() ->
5180         dbus_message_iter_append_basic().
5181
5182         * mono/example/BusListener.cs: Update for ServiceEventHandler ->
5183         NameOwnerChangedHandler.
5184
5185 2005-01-25  John (J5) Palmieri  <johnp@redhat.com>
5186
5187         * python/dbus_bindings.pyx.in: Rename of methods and bindings
5188                 - get_base_service -> get_unique_name
5189                 - bus_get_base_service -> bus_get_unique_name
5190                 - dbus_bus_get_base_service -> dbus_bus_get_unique_name
5191                 - ACTIVATION_REPLY_ACTIVATED -> DBUS_START_REPLY_SUCCESS 
5192                 - ACTIVATION_REPLY_ALREADY_ACTIVE -> DBUS_START_REPLY_ALREADY_RUNNING
5193                 - bus_activate_service -> bus_start_service_by_name
5194                 - dbus_bus_activate_service -> dbus_bus_start_service_by_name
5195                 - bus_acquire_service -> bus_request_name
5196                 - dbus_bus_acquire_service -> dbus_bus_request_name
5197                 - bus_service_exists -> bus_name_has_owner
5198                 - dbus_bus_service_exists -> dbus_bus_name_has_owner
5199
5200         * python/dbus.py: Rename of methods
5201                 - activate_service -> start_service_by_name
5202                 - bus_acquire_service -> bus_request_name
5203                 - ACTIVATION_REPLY_ACTIVATED -> START_REPLY_SUCCESS 
5204                 - ACTIVATION_REPLY_ALREADY_ACTIVE -> START_REPLY_ALREADY_RUNNING
5205
5206         
5207 2005-01-24  Joe Shaw  <joeshaw@novell.com>
5208
5209         * dbus/dbus-connection.c (dbus_connection_dispatch): Print out the
5210         signature for the method that can't be found.
5211
5212         * dbus/dbus-message.c (dbus_message_iter_init): To check to see if
5213         the message has any arguments, we need to call
5214         _dbus_type_reader_get_current_type(), not
5215         _dbus_type_reader_has_next().
5216
5217 2005-01-24  Havoc Pennington  <hp@redhat.com>
5218
5219         * dbus/dbus-message-factory.c: more testing of message validation
5220
5221         * dbus/dbus-protocol.h (DBUS_MINIMUM_HEADER_SIZE): move to this
5222         header
5223
5224 2005-01-23  Havoc Pennington  <hp@redhat.com>
5225
5226         * dbus/dbus-message-factory.c, dbus/dbus-message-util.c: 
5227         get this all working, not many tests in the framework yet though
5228
5229 2005-01-22  Havoc Pennington  <hp@redhat.com>
5230
5231         * doc/dbus-faq.xml, doc/dbus-tutorial: add a FAQ and update
5232         tutorial, based on work from David Wheeler.
5233
5234 2005-01-21  Havoc Pennington  <hp@redhat.com>
5235
5236         * dbus/dbus-bus.c: add more return_if_fail checks
5237
5238         * dbus/dbus-message.c (load_message): have the "no validation"
5239         mode (have to edit the code to toggle the mode for now though)
5240
5241         * dbus/dbus-marshal-header.c (_dbus_header_load): have a mode that
5242         skips all validation; I want to use this at least for benchmark
5243         baseline, I'm not sure if it should be a publicly-available switch.
5244
5245 2005-01-21  Havoc Pennington  <hp@redhat.com>
5246
5247         * glib/dbus-gmain.c: don't put the GLib bindings in the same
5248         toplevel doxygen group as the low-level API stuff
5249
5250         * dbus/dbus.h: note that libdbus is the low-level API
5251
5252 2005-01-20  Havoc Pennington  <hp@redhat.com>
5253
5254         * update-dbus-docs.sh: script to update docs on the web site, only
5255         works for me though. neener.
5256
5257 2005-01-20  Havoc Pennington  <hp@redhat.com>
5258
5259         * dbus/dbus-sysdeps.c (_dbus_poll): amazingly, trying to compile
5260         code can reveal bugs in it
5261
5262 2005-01-20  Havoc Pennington  <hp@redhat.com>
5263
5264         * dbus/dbus-sysdeps.c (_dbus_poll): fix several bugs in the
5265         select() version, patches from Tor Lillqvist
5266
5267 2005-01-20  Havoc Pennington  <hp@redhat.com>
5268
5269         * doc/dbus-tutorial.xml: replace > with &gt;
5270
5271         * bus/services.c (bus_registry_acquire_service): validate the name
5272         and return a better error if it's no good.
5273
5274         * doc/dbus-specification.xml: note NO_AUTO_START change
5275
5276         * dbus/dbus-protocol.h (DBUS_HEADER_FLAG_NO_AUTO_START): change
5277         from AUTO_START, we're toggling the default
5278
5279         * bus/dispatch.c: adapt the tests to change of auto-start default
5280
5281 2005-01-18  Havoc Pennington  <hp@redhat.com>
5282
5283         * rename dbus-daemon-1 to dbus-daemon throughout
5284
5285 2005-01-18  Havoc Pennington  <hp@redhat.com>
5286
5287         * Throughout, grand renaming to strip out the use of "service",
5288         just say "name" instead (or "bus name" when ambiguous).  Did not
5289         change the internal code of the message bus itself, only the
5290         programmer-facing API and messages.
5291         
5292         * doc/dbus-specification.xml: further update the message bus section
5293         
5294         * bus/config-parser.c (all_are_equiv): fix bug using freed string
5295         in error case
5296
5297 2005-01-17  Havoc Pennington  <hp@redhat.com>
5298
5299         * dbus/dbus-types.h: remove 16-bit types since we don't use them
5300         ever
5301
5302         * dbus/dbus-marshal-validate.c (_dbus_validate_path): disallow any
5303         "invalid name character" not only non-ASCII
5304
5305         * doc/dbus-specification.xml: further update spec, message bus 
5306         parts are still out-of-date but the marshaling etc. stuff is now
5307         accurate-ish
5308
5309 2005-01-17  Havoc Pennington  <hp@redhat.com>
5310
5311         * doc/dbus-specification.xml: partially update spec
5312
5313 2005-01-17  Havoc Pennington  <hp@redhat.com>
5314
5315         * Throughout, align variant bodies according to the contained
5316         type, rather than always to 8. Should save a fair bit of space in
5317         message headers.
5318         
5319         * dbus/dbus-marshal-validate.c (_dbus_validate_body_with_reason):
5320         fix handling of case where p == end
5321
5322         * doc/TODO: remove the dbus_bool_t item and variant alignment items
5323
5324 2005-01-17  Havoc Pennington  <hp@redhat.com>
5325
5326         * dbus/dbus-types.h: hardcode dbus_bool_t to 32 bits
5327
5328         * Throughout: modify DBUS_TYPE_BOOLEAN to be a 32-bit type instead
5329         of an 8-bit type. Now dbus_bool_t is the type to use whenever you 
5330         are marshaling/unmarshaling a boolean.
5331
5332 2005-01-16  Havoc Pennington  <hp@redhat.com>
5333
5334         This is about it on what can be disabled/deleted from libdbus
5335         easily, back below 150K anyhow. Deeper cuts are more work than 
5336         just turning the code off as I've done here.
5337         
5338         * dbus/dbus-marshal-basic.c (_dbus_pack_int32): we don't need the
5339         signed int convenience funcs
5340
5341         * dbus/dbus-internals.c (_dbus_verbose_real): omit when not in
5342         verbose mode
5343
5344         * dbus/dbus-string-util.c, dbus/dbus-string.c: more breaking
5345         things out of libdbus
5346
5347         * dbus/dbus-sysdeps.c, dbus/dbus-sysdeps-util.c: same
5348         
5349         * dbus/dbus-hash.c: purge the TWO_STRINGS crap (well, make it
5350         tests-enabled-only, though it should probably be deleted)
5351
5352         * dbus/dbus-message-util.c: same stuff
5353
5354         * dbus/dbus-auth-util.c: same stuff
5355
5356 2005-01-16  Havoc Pennington  <hp@redhat.com>
5357
5358         * dbus/dbus-userdb-util.c: split out part of dbus-userdb.c
5359
5360         * dbus/dbus-sysdeps.c (_dbus_uid_from_string): move here to pave
5361         way for stripping down dbus-userdb.c stuff included in libdbus.
5362         Rename _dbus_parse_uid for consistency.
5363
5364 2005-01-16  Havoc Pennington  <hp@redhat.com>
5365
5366         * dbus/dbus-internals.c (_dbus_real_assert): print the function
5367         name the assertion failed in
5368
5369         * dbus/dbus-internals.h (_dbus_return_if_fail) 
5370         (_dbus_return_val_if_fail): assert that the name of the function
5371         containing the check doesn't start with '_', since we only want to 
5372         use checks on public functions
5373         
5374         * dbus/dbus-connection.c (_dbus_connection_ref_unlocked): change
5375         checks to assertions
5376
5377         * dbus/dbus-marshal-header.c (_dbus_header_set_field_basic):
5378         change checks to asserts for private function
5379
5380         * dbus/dbus-message.c (_dbus_message_set_serial): checks
5381         to asserts for private function
5382
5383         * dbus/dbus-marshal-recursive.c (skip_one_complete_type): remove
5384         broken assertion that was breaking make check
5385         (_dbus_type_reader_array_is_empty): remove this rather than fix
5386         it, was only used in assertions
5387
5388 2005-01-16  Havoc Pennington  <hp@redhat.com>
5389
5390         * test/unused-code-gc.py: hacky script to find code that's used
5391         only by the bus (not libdbus) or used only by tests or not used at
5392         all. It has some false alarms, but looks like we can clean up a
5393         lot of size from libdbus.
5394
5395         * dbus/dbus-sysdeps.c, dbus/dbus-sysdeps-utils.c,
5396         dbus/Makefile.am: initially move 10K of binary size out of libdbus
5397         
5398 2005-01-16  Havoc Pennington  <hp@redhat.com>
5399
5400         * Add and fix docs according to Doxygen warnings throughout
5401         source.
5402         
5403         * dbus/dbus-marshal-recursive.c
5404         (_dbus_type_reader_array_is_empty): change this to just call
5405         array_reader_get_array_len() and make it static
5406
5407         * dbus/dbus-message.c (dbus_message_iter_get_element_type): rename
5408         from get_array_type
5409         (dbus_message_iter_init_append): rename from append_iter_init
5410
5411         * dbus/dbus-marshal-recursive.c
5412         (_dbus_type_reader_get_element_type): rename from
5413         _dbus_type_reader_get_array_type
5414
5415 2005-01-15  Havoc Pennington  <hp@redhat.com>
5416
5417         * test/glib/test-profile.c (with_bus_server_filter): fix crash
5418
5419         * dbus/dbus-marshal-basic.c (_dbus_unpack_uint32): inline as macro
5420         when DBUS_DISABLE_ASSERT
5421         (_dbus_marshal_set_basic): be sure we align for the string length
5422
5423         * dbus/dbus-marshal-recursive.c (skip_one_complete_type): make
5424         this look faster
5425
5426         * dbus/dbus-string.c (_dbus_string_get_const_data_len): add an
5427         inline macro version
5428         (_dbus_string_set_byte): provide inline macro version
5429
5430 2005-01-15  Havoc Pennington  <hp@redhat.com>
5431
5432         * Land the new message args API and type system.
5433
5434         This patch is huge, but the public API change is not 
5435         really large. The set of D-BUS types has changed somewhat, 
5436         and the arg "getters" are more geared toward language bindings;
5437         they don't make a copy, etc.
5438
5439         There are also some known issues. See these emails for details
5440         on this huge patch:
5441         http://lists.freedesktop.org/archives/dbus/2004-December/001836.html
5442         http://lists.freedesktop.org/archives/dbus/2005-January/001922.html
5443         
5444         * dbus/dbus-marshal-*: all the new stuff
5445
5446         * dbus/dbus-message.c: basically rewritten
5447
5448         * dbus/dbus-memory.c (check_guards): with "guards" enabled, init
5449         freed blocks to be all non-nul bytes so using freed memory is less
5450         likely to work right
5451
5452         * dbus/dbus-internals.c (_dbus_test_oom_handling): add
5453         DBUS_FAIL_MALLOC=N environment variable, so you can do
5454         DBUS_FAIL_MALLOC=0 to skip the out-of-memory checking, or
5455         DBUS_FAIL_MALLOC=10 to make it really, really, really slow and
5456         thorough.
5457
5458         * qt/message.cpp: port to the new message args API
5459         (operator<<): use str.utf8() rather than str.unicode()
5460         (pretty sure this is right from the Qt docs?)
5461
5462         * glib/dbus-gvalue.c: port to the new message args API
5463
5464         * bus/dispatch.c, bus/driver.c: port to the new message args API
5465
5466         * dbus/dbus-string.c (_dbus_string_init_const_len): initialize the
5467         "locked" flag to TRUE and align_offset to 0; I guess we never
5468         looked at these anyhow, but seems cleaner.
5469
5470         * dbus/dbus-string.h (_DBUS_STRING_ALLOCATION_PADDING):
5471         move allocation padding macro to this header; use it to implement
5472         (_DBUS_STRING_STATIC): ability to declare a static string.
5473
5474         * dbus/dbus-message.c (_dbus_message_has_type_interface_member):
5475         change to return TRUE if the interface is not set.
5476
5477         * dbus/dbus-string.[hc]: move the D-BUS specific validation stuff
5478         to dbus-marshal-validate.[hc]
5479
5480         * dbus/dbus-marshal-basic.c (_dbus_type_to_string): move here from
5481         dbus-internals.c
5482
5483         * dbus/Makefile.am: cut over from dbus-marshal.[hc]
5484         to dbus-marshal-*.[hc]
5485
5486         * dbus/dbus-object-tree.c (_dbus_decompose_path): move this
5487         function here from dbus-marshal.c
5488
5489 2005-01-12  Joe Shaw  <joeshaw@novell.com>
5490
5491         * NEWS: Update for 0.23.
5492
5493         * configure.in: Release 0.23.
5494
5495 2005-01-12  Joe Shaw  <joeshaw@novell.com>
5496
5497         * mono/Makefile.am, mono/example/Makefile.am: Always build the 
5498         dbus DLL with --debug.  Clean up after the .mdb files this leaves
5499         behind.
5500
5501         * mono/doc/Makefile.am: Need to uninstall the docs on "make
5502         uninstall"
5503
5504         * mono/Arguments.cs (GetDBusTypeConstructor): If the type
5505         is an enum, get the enum's underlying type.  Another mono
5506         1.1.3 fix.
5507
5508 2005-01-11  Joe Shaw  <joeshaw@novell.com>
5509
5510         Patch from Sjoerd Simons <sjoerd@luon.net>
5511
5512         * mono/Makefile.am, mono/example/Makefile.am: Don't redefine
5513         DESTDIR.  It breaks stuff.
5514
5515 2005-01-11  Joe Shaw  <joeshaw@novell.com>
5516
5517         Patch from Tambet Ingo <tambet@ximian.com>
5518
5519         * mono/DBusType/Array.cs (Get): Get the underlying element type by
5520         calling type.GetElementType().  The code previously depended on
5521         broken Mono behavior, which was fixed in Mono 1.1.3.
5522
5523         * mono/DBusType/Dict.cs (constructor): Fix the parameters for
5524         Activator.CreateInstance() so that the class's constructor is
5525         called with the right parameters.
5526
5527 2005-01-11  Joe Shaw  <joeshaw@novell.com>
5528
5529         Patch from Timo Teräs <ext-timo.teras@nokia.com>
5530
5531         * dbus/dbus-connection.c
5532         (_dbus_connection_queue_received_message_link): Call
5533         _dbus_connection_remove_timeout() instead of the _locked()
5534         variant, since it's always called from
5535         _dbus_connection_handle_watch(), which handles the locking.
5536         Removed the _locked() variant since it's no longer used.
5537
5538 2005-01-03  Havoc Pennington  <hp@redhat.com>
5539
5540         * dbus/dbus-internals.h: I'm an idiot, _dbus_assert certainly can
5541         return
5542         
5543 2004-12-26  Havoc Pennington  <hp@redhat.com>
5544
5545         * dbus/dbus-internals.h: add _DBUS_GNUC_NORETURN to _dbus_assert
5546
5547 2005-01-03  Havoc Pennington  <hp@redhat.com>
5548
5549         * dbus/dbus-sysdeps.c (_dbus_sysdeps_test): fix using == on
5550         floating point
5551
5552         * dbus/dbus-string.c (_dbus_string_insert_alignment): new function
5553
5554 2005-01-02  Havoc Pennington  <hp@redhat.com>
5555
5556         * dbus/dbus-internals.h (_DBUS_ALIGN_OFFSET): new macro
5557
5558 2005-01-01  Havoc Pennington  <hp@redhat.com>
5559
5560         * configure.in: add -Wfloat-equal
5561
5562 2005-01-01  Havoc Pennington  <hp@redhat.com>
5563
5564         * dbus/dbus-sysdeps.h: add _DBUS_DOUBLES_BITWISE_EQUAL macro, 
5565         for a variety of reasons '==' doesn't do this.
5566
5567 2004-12-31  Havoc Pennington  <hp@redhat.com>
5568
5569         * dbus/dbus-string.c (_dbus_string_equal_substrings): new function
5570         I keep wishing I had
5571
5572 2004-12-30  John (J5) Palmieri  <johnp@redhat.com>
5573
5574         * python/dbus.py: s/ACTIVATION_REPLY_ACTIVE/ACTIVATION_REPLY_ACTIVATED
5575
5576 2004-12-30  John (J5) Palmieri  <johnp@redhat.com>
5577
5578         * python/dbus_bindings.pyx.in: Change DBUS_ACTIVATION_REPLY_ACTIVATED
5579         and DBUS_ACTIVATION_REPLY_ALREADY_ACTIVE to match the values in
5580         dbus-protocol.h.  Because they are defines and not enums they are not
5581         autogenerated.
5582
5583 2004-12-26  John (J5) Palmieri  <johnp@redhat.com>
5584
5585         * python/dbus_bindings.pyx.in (bus_activate_service): Bind
5586         dbus_bus_activate_service
5587
5588         * python/dbus.py (Bus.activate_service): activate a service on the
5589         bus.
5590
5591 2004-12-24  Havoc Pennington  <hp@redhat.com>
5592
5593         * test/decode-gcov.c: change to use .gcno and .gcda files, but the
5594         file format has also changed and I haven't adapted to that yet
5595         
5596         * Makefile.am: load .gcno files from latest gcc
5597
5598 2004-12-23  John (J5) Palmieri  <johnp@redhat.com>
5599         * Patch from Rob Taylor <robtaylor@fastmail.fm>
5600
5601         * python/dbus_bindings.pyx.in (bus_get_unix_user): New
5602         lowlevel binding
5603
5604         * python/dbus.py (get_unix_user): Added binding to 
5605         call dbus_bindings.bus_get_unix_user
5606
5607         * python/extract.py: Modified the proto_pat regex to
5608         handle unsigned long
5609
5610 2004-12-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
5611
5612         * dbus/make-dbus-glib-error-enum.sh: omit the function keyword for
5613         better POSIX compliance.
5614
5615 2004-12-19  Havoc Pennington  <hp@redhat.com>
5616
5617         * dbus/dbus-string.c (_dbus_string_insert_4_aligned) 
5618         (_dbus_string_insert_8_aligned): new functions
5619
5620         * dbus/dbus-string.c (_dbus_string_alloc_space): new function
5621
5622 2004-12-18  Havoc Pennington  <hp@redhat.com>
5623
5624         * dbus/dbus-string.c (_dbus_string_validate_ascii): use ISASCII
5625         macro
5626
5627         * dbus/dbus-message.c: fix a comment, and add a still-unused
5628         not-implemented function
5629
5630         * dbus/dbus-marshal.h: fix comment
5631
5632         * dbus/dbus-internals.h (_DBUS_ISASCII): new macro
5633
5634 2004-12-17  Joe Shaw  <joeshaw@novell.com>
5635
5636         * mono/DBusType/Byte.cs, mono/DBusType/Int32.cs,
5637         mono/DBusType/Int64.cs, mono/DBusType/UInt32.cs,
5638         mono/DBusType/UInt64.cs: Use Enum.GetUnderlyingType() instead of
5639         Type.UnderlyingSystemType to get the actual system type
5640         underneath.  This code previously depended on the broken Mono
5641         behavior, which was fixed in 1.1.3.
5642
5643 2004-11-27  Havoc Pennington  <hp@redhat.com>
5644
5645         * dbus/dbus-string.h (_dbus_string_get_byte): inline when asserts
5646         are disabled
5647         (_dbus_string_get_const_data): inline when asserts are disabled
5648
5649         * dbus/dbus-message.c: record the _dbus_current_generation of
5650         creation so we can complain if dbus_shutdown() is used improperly.
5651         Do this only if checks are enabled.
5652
5653         * dbus/dbus-connection.c: ditto
5654         
5655 2004-11-26  Havoc Pennington  <hp@redhat.com>
5656
5657         * test/glib/test-profile.c: add with_bus mode to profile echoes
5658         that go through the bus.
5659
5660         * test/glib/run-test.sh: add ability to run test-profile
5661
5662         * bus/dbus-daemon-1.1.in: fix to say that SIGHUP causes partial
5663         config file reload.
5664
5665 2004-11-26  Havoc Pennington  <hp@redhat.com>
5666
5667         * test/glib/test-profile.c: clean up how the fake_malloc_overhead
5668         thing was implemented
5669
5670 2004-11-26  Havoc Pennington  <hp@redhat.com>
5671
5672         * test/glib/test-profile.c: tweak a bit, add support for some
5673         made-up minimal malloc overhead with plain sockets, since in 
5674         real life some sort of buffers are unavoidable thus we could 
5675         count them in the theoretical best case
5676
5677 2004-11-26  Havoc Pennington  <hp@redhat.com>
5678
5679         * dbus/dbus-message.c (dbus_message_cache_or_finalize): fix bug
5680         where I was trying to cache one too many messages
5681
5682 2004-11-26  Havoc Pennington  <hp@redhat.com>
5683
5684         * dbus/dbus-message.c: reimplement message cache as an array which 
5685         makes the cache about twice as fast and saves maybe 1.5% overall
5686
5687 2004-11-26  Havoc Pennington  <hp@redhat.com>
5688
5689         * dbus/dbus-threads.c (init_global_locks): forgot to put the
5690         message cache lock here
5691
5692 2004-11-26  Havoc Pennington  <hp@redhat.com>
5693
5694         * dbus/dbus-message.c (struct DBusMessage): put the locked bit and
5695         the "char byte_order" next to each other to save 4 bytes
5696         (dbus_message_new_empty_header): reduce preallocation, since the
5697         message cache should achieve a similar effect
5698         (dbus_message_cache_or_finalize, dbus_message_get_cached): add a
5699         message cache that keeps a few DBusMessage around in a pool,
5700         another 8% speedup or so.
5701
5702         * dbus/dbus-dataslot.c (_dbus_data_slot_list_clear): new function
5703
5704 2004-11-25  Havoc Pennington  <hp@redhat.com>
5705
5706         * dbus/dbus-transport-unix.c (unix_do_iteration): if we're going
5707         to write, without reading or blocking, try it before the poll()
5708         and skip the poll() if nothing remains to write. This is about a
5709         3% speedup in the echo client/server
5710
5711 2004-11-25  Havoc Pennington  <hp@redhat.com>
5712
5713         The primary change here is to always write() once before adding
5714         the write watch, which gives us about a 10% performance increase.
5715         
5716         * dbus/dbus-transport-unix.c: a number of modifications to cope
5717         with removing messages_pending
5718         (check_write_watch): properly handle
5719         DBUS_AUTH_STATE_WAITING_FOR_MEMORY; adapt to removal of
5720         messages_pending stuff
5721         (check_read_watch): properly handle WAITING_FOR_MEMORY and
5722         AUTHENTICATED cases
5723         (unix_handle_watch): after writing, see if the write watch can be
5724         removed
5725         (unix_do_iteration): assert that write_watch/read_watch are
5726         non-NULL rather than testing that they aren't, since they 
5727         aren't allowed to be NULL. check_write_watch() at the end so 
5728         we add the watch if we did not finish writing (e.g. got EAGAIN)
5729
5730         * dbus/dbus-transport-protected.h: remove messages_pending call,
5731         since it resulted in too much inefficient watch adding/removing; 
5732         instead we now require that the transport user does an iteration 
5733         after queueing outgoing messages, and after trying the first
5734         write() we add a write watch if we got EAGAIN or exceeded our 
5735         max bytes to write per iteration setting
5736
5737         * dbus/dbus-string.c (_dbus_string_validate_signature): add this
5738         function
5739
5740         * dbus/dbus-server-unix.c (unix_finalize): the socket name was
5741         freed and then accessed, valgrind flagged this bug, fix it
5742
5743         * dbus/dbus-message.c: fix several bugs where HEADER_FIELD_LAST was taken
5744         as the last valid field plus 1, where really it is equal to the
5745         last valid field. Corrects some message corruption issues.
5746
5747         * dbus/dbus-mainloop.c: verbosity changes
5748
5749         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): handle OOM
5750         instead of aborting in one of the test codepaths
5751
5752         * dbus/dbus-internals.c (_dbus_verbose_real): fix a bug that
5753         caused not printing the pid ever again if a verbose was missing
5754         the newline at the end
5755         (_dbus_header_field_to_string): add HEADER_FIELD_SIGNATURE
5756
5757         * dbus/dbus-connection.c: verbosity changes; 
5758         (dbus_connection_has_messages_to_send): new function
5759         (_dbus_connection_message_sent): no longer call transport->messages_pending
5760         (_dbus_connection_send_preallocated_unlocked): do one iteration to
5761         try to write() immediately, so we can avoid the write watch. This
5762         is the core purpose of this patchset
5763         (_dbus_connection_get_dispatch_status_unlocked): if disconnected,
5764         dump the outgoing message queue, so nobody will get confused
5765         trying to send them or thinking stuff is pending to be sent
5766
5767         * bus/test.c: verbosity changes
5768
5769         * bus/driver.c: verbosity/assertion changes
5770
5771         * bus/dispatch.c: a bunch of little tweaks to get it working again
5772         because this patchset changes when/where you need to block.
5773
5774 2004-11-23  Havoc Pennington  <hp@redhat.com>
5775
5776         * test/glib/test-profile.c: modify to accept a plain_sockets
5777         argument in which case it will bench plain sockets instead of
5778         libdbus, for comparison purposes.
5779
5780 2004-11-22  Havoc Pennington  <hp@redhat.com>
5781
5782         * test/glib/test-profile.c (N_CLIENT_THREADS): run multiple
5783         threads for more time, so sysprof can get a grip on it.
5784
5785         * dbus/dbus-string.c (_dbus_string_validate_utf8): remove
5786         pointless variable
5787
5788 2004-11-13  Havoc Pennington  <hp@redhat.com>
5789
5790         * test/glib/test-profile.c: fix this thing up a bit
5791
5792         * dbus/dbus-message.c (dbus_message_new_empty_header): increase
5793         preallocation sizes by a fair bit; not sure if this will be an
5794         overall performance win or not, but it does reduce reallocs.
5795
5796         * dbus/dbus-string.c (set_length, reallocate_for_length): ignore
5797         the test hack that forced constant realloc if asserts are
5798         disabled, so we can profile sanely. Sprinkle in some
5799         _DBUS_UNLIKELY() which are probably pointless, but before I
5800         noticed the real performance problem I put them in.
5801         (_dbus_string_validate_utf8): micro-optimize this thing a little
5802         bit, though callgrind says it didn't help; then special-case
5803         ascii, which did help a lot; then be sure we detect nul bytes as
5804         invalid, which is a bugfix.
5805         (align_length_then_lengthen): add some more _DBUS_UNLIKELY
5806         superstition; use memset to nul the padding instead of a manual
5807         loop.
5808         (_dbus_string_get_length): inline this as a
5809         macro; it showed up in the profile because it's used for loop
5810         tests and so forth
5811
5812 2004-11-10  Colin Walters  <walters@verbum.org>
5813
5814         * dbus/dbus-spawn.c (check_babysit_events): Handle EINTR,
5815         for extra paranoia.
5816
5817 2004-11-09  Colin Walters  <walters@verbum.org>
5818
5819         * dbus/dbus-string.c (_dbus_string_get_length): New
5820         function, writes DBusString to C buffer.
5821
5822         * dbus/dbus-string.h: Prototype it.
5823
5824         * dbus/dbus-message.c (dbus_message_type_to_string): New
5825         function, converts message type into C string.
5826
5827         * dbus/dbus-message.h: Prototype it.
5828
5829         * bus/selinux.c (bus_selinux_check): Take source pid,
5830         target pid, and audit data.  Pass audit data to
5831         avc_has_perm.
5832         (log_audit_callback): New function, appends extra
5833         audit information.
5834         (bus_selinux_allows_acquire_service): Also take
5835         service name, add it to audit data.
5836         (bus_selinux_allows_send): Also take message
5837         type, interface, method member, error name,
5838         and destination, and add them to audit data.
5839         (log_cb): Initialize func_audit.
5840         
5841         * bus/selinux.h (bus_selinux_allows_acquire_service)
5842         (bus_selinux_allows_send): Update prototypes 
5843
5844         * bus/services.c (bus_registry_acquire_service): Pass
5845         service name to bus_selinux_allows_acquire_service.
5846
5847         * bus/bus.c (bus_context_check_security_policy): Pass
5848         additional audit data.  Move assignment of dest
5849         to its own line.
5850
5851 2004-11-07  Colin Walters  <walters@verbum.org>
5852
5853         * dbus/dbus-transport-unix.c (do_authentication): Always
5854         initialize auth_completed.
5855         
5856 2004-11-07  Colin Walters  <walters@verbum.org>
5857
5858         * bus/bus.c (load_config): Break into three
5859         separate functions: process_config_first_time_only,
5860         process_config_every_time, and process_config_postinit.
5861         (process_config_every_time): Move call of
5862         bus_registry_set_service_context_table into
5863         process_config_postinit.
5864         (process_config_postinit): New function, does
5865         any processing that needs to happen late
5866         in initialization (and also on reload).
5867         (bus_context_new): Instead of calling load_config,
5868         open config parser here and call process_config_first_time_only
5869         and process_config_every_time directly.  Later, after
5870         we have forked but before changing UID,
5871         invoke bus_selinux_full_init, and then call
5872         process_config_postinit.
5873         (bus_context_reload_config): As in bus_context_new,
5874         load parse file inside here, and call process_config_every_time
5875         and process_config_postinit.
5876
5877         * bus/services.h, bus/services.c
5878         (bus_registry_set_service_context_table): Rename
5879         from bus_registry_set_sid_table.  Take string hash from config
5880         parser, and convert them here into SIDs.
5881
5882         * bus/config-parser.c (struct BusConfigParser): Have
5883         config parser only store a mapping of service->context
5884         string.
5885         (merge_service_context_hash): New function.
5886         (merge_included): Merge context string hashes instead
5887         of using bus_selinux_id_table_union.
5888         (bus_config_parser_new): Don't use bus_selinux_id_table_new;
5889         simply create a new string hash.
5890         (bus_config_parser_unref): Unref it.
5891         (start_selinux_child): Simply insert strings into hash,
5892         don't call bus_selinux_id_table_copy_over.
5893
5894         * bus/selinux.h, bus/selinux.c (bus_selinux_id_table_union)
5895         (bus_selinux_id_table_copy_over): Delete.
5896
5897 2004-11-03  Colin Walters  <walters@verbum.org>
5898
5899         * bus/selinux.c (bus_selinux_pre_init): Kill some unused
5900         variables.
5901         
5902 2004-11-03  Colin Walters  <walters@verbum.org>
5903
5904         * bus/test-main.c (test_pre_hook): Fix test logic,
5905         thanks Joerg Barfurth <Joerg.Barfurth@Sun.COM>.
5906
5907 2004-11-02  Colin Walters  <walters@redhat.com>
5908
5909         * bus/selinux.c (bus_selinux_init): Split into two functions,
5910         bus_selinux_pre_init and bus_selinux_post_init.
5911         (bus_selinux_pre_init): Just determine whether SELinux is
5912         enabled.
5913         (bus_selinux_post_init): Do everything else.
5914
5915         * bus/main.c (main): Call bus_selinux_pre_init before parsing
5916         config file, and bus_selinux_post_init after.  This ensures that
5917         we don't lose the policyreload notification thread that
5918         bus_selinux_init created before forking previously.
5919         
5920         * bus/test-main.c (test_pre_hook): Update for split.
5921
5922 2004-10-31  Owen Fraser-Green  <owen@discobabe.net>
5923
5924         Patch from Johan Fischer <linux@fischaz.com>
5925         
5926         * mono/doc/Makefile.am (install-data-local): Added directory
5927         install for DESTDIR
5928
5929 2004-10-29  Colin Walters  <walters@redhat.com>
5930
5931         * dbus/dbus-sysdeps.h (_dbus_become_daemon): Also take
5932         parameter for fd to write pid to.       
5933
5934         * dbus/dbus-sysdeps.c (_dbus_become_daemon): Implement it.
5935         
5936         * bus/bus.c (bus_context_new): Pass print_pid_fd
5937         to _dbus_become_daemon (bug #1720)
5938
5939 2004-10-29  Colin Walters  <walters@redhat.com>
5940
5941         Patch from Ed Catmur <ed@catmur.co.uk>
5942
5943         * mono/doc/Makefile.am (install-data-local): Handle
5944         DESTDIR.
5945
5946 2004-10-29  Colin Walters  <walters@redhat.com>
5947
5948         * bus/.cvsignore, qt/.cvsignore: Update.
5949
5950 2004-10-29  Colin Walters  <walters@redhat.com>
5951
5952         Patch from Kristof Vansant <de_lupus@pandora.be>
5953
5954         * configure.in: Detect Slackware.
5955         * bus/Makefile.am (SCRIPT_IN_FILES): Add rc.messagebus.in.
5956         * bus/rc.messagebus.in: New file.
5957
5958 2004-10-29  Colin Walters  <walters@redhat.com>
5959
5960         * tools/dbus-monitor.c (filter_func): Return
5961         DBUS_HANDLER_RESULT_HANDLED in filter function
5962         for now.  See:
5963         http://freedesktop.org/pipermail/dbus/2004-August/001433.html
5964
5965 2004-10-29  Colin Walters  <walters@redhat.com>
5966
5967         Patch from Matthew Rickard <mjricka@epoch.ncsc.mil>
5968
5969         * bus/services.c (bus_registry_acquire_service): 
5970         Correctly retrieve service name from DBusString
5971         for printing.
5972
5973 2004-10-29  Colin Walters  <walters@redhat.com>
5974
5975         * dbus/dbus-glib.h: Update documentation to not
5976         refer to internal APIs.
5977
5978 2004-10-27  Joe Shaw  <joeshaw@novell.com>
5979
5980         * mono/Arguments.cs (GetDBusTypeConstructor):
5981         type.UnderlyingSystemType will return "System.Byte" if you do it
5982         on "byte[]", which is not what we want.  So check the type.IsArray
5983         property and use System.Array instead.
5984
5985 2004-10-25  John (J5) Palmieri  <johnp@redhat.com>
5986
5987         * dbus/dbus-sysdeps.c (fill_user_info): On errors do not free
5988         the DBusUserInfo structure since this is passed into the function.
5989         This would cause a double free when the function that allocated
5990         the structure would try to free it when an error occured.
5991
5992         * (bus/session.conf.in, bus/Makefile.am, dbus/configure.in):
5993         use /usr/share/dbus-1/services instead of /usr/lib/dbus-1.0/services
5994         for service activation to avoid 32bit/64bit parallel install issues
5995
5996 2004-10-21  Colin Walters  <walters@verbum.org>
5997
5998         * AUTHORS: Fix my email address, the @gnu.org one
5999         has been bouncing for some time.  Also add J5.
6000         
6001 2004-10-21  Colin Walters  <walters@verbum.org>
6002
6003         * dbus/dbus-transport-unix.c (do_authentication): Return
6004         authentication status to callers.
6005         (unix_handle_watch): If we completed authentication this round,
6006         don't do another read.  Instead wait until the next iteration,
6007         after we've read any pending data in the auth buffer.
6008         (unix_do_iteration): Ditto.
6009         (unix_handle_watch): Updated for new do_authentication prototype.
6010
6011 2004-10-18  Colin Walters  <walters@verbum.org>
6012
6013         * bus/selinux.c (bus_selinux_enabled): Handle
6014         --disable-selinux case.
6015         
6016 2004-10-18  Colin Walters  <walters@verbum.org>
6017
6018         * bus/selinux.h: Add bus_selinux_enabled.
6019         
6020         * bus/selinux.c (bus_selinux_enabled): Implement it.
6021         
6022         * bus/config-parser.c (struct include): Add
6023         if_selinux_enabled member.
6024         (start_busconfig_child): Parse if_selinux_enabled
6025         attribute for include.
6026         (bus_config_parser_content): Handle it.
6027
6028         * bus/session.conf.in, bus/system.conf.in: Add
6029         inclusion of context mapping to default config files;
6030         conditional on SELinux being enabled.
6031         
6032         * doc/busconfig.dtd: Add to if_selinux_enabled to default DTD.
6033         
6034         * test/data/invalid-config-files/badselinux-1.conf, 
6035         test/data/invalid-config-files/badselinux-2.conf:
6036         Test files for bad syntax.
6037         
6038 2004-10-17  Colin Walters  <walters@verbum.org>
6039
6040         * dbus/dbus-memory.c (_dbus_initialize_malloc_debug, check_guards)
6041         (dbus_malloc, dbus_malloc0, dbus_realloc): Fix up printf
6042         format specifier mismatches.
6043
6044 2004-10-07  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6045
6046         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): fix an incorrect
6047         format string.
6048
6049         * glib/dbus-dbus-gmain.c (dbus_g_bus_get): do not mangle NULL
6050         pointer (bug #1540, Leonardo Boiko).
6051
6052 2004-09-28  Jon Trowbridge  <trow@ximian.com>
6053
6054         * mono/BusDriver.cs: Changed BusDriver struct to remove
6055         the ServiceCreated and ServiceDeleted events and replace them
6056         with the new ServiceOwnerChanged event.
6057
6058         * mono/example/BusListener.cs: Added a new example program,
6059         which listens for and reports any ServiceOwnerChanged events
6060         on the bus driver.
6061
6062         * mono/example/Makefile.am (DESTDIR): Build changes for the
6063         new BusListener.cs example.
6064
6065 2004-09-27  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6066
6067         * bus/signals.c (bus_match_rule_parse): validate the components of
6068         match rules (bug #1439).
6069
6070         * dbus/dbus-bus.c (dbus_bus_add_match): add a missing OOM test.
6071
6072 2004-09-24  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6073
6074         * doc/dbus-specification.xml: document ServiceOwnerChanged
6075         signal.
6076         
6077         * bus/driver.c, bus/driver.h, bus/services.c: Use
6078         ServiceOwnerChanged signal instead of ServiceCreated and
6079         ServiceDeleted.
6080         
6081         * bus/dispatch.c: update testcase for the new signal.
6082
6083 2004-09-20  Jon Trowbridge  <trow@ximian.com>
6084
6085         Patch from Nat Friedman <nat@novell.com>
6086
6087         * mono/Makefile.am: A number of small build fixes to allow "make
6088         distcheck" to succeed.
6089
6090         * mono/example/Makefile.am: "make distcheck" fixes.
6091
6092         * mono/AssemblyInfo.cs.in: When signing the assembly, look for the
6093         key in @srcdir@.
6094
6095         * test/Makefile.am: "make distcheck" fixes.
6096
6097 2004-09-17  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6098
6099         * dbus/dbus-sysdeps.c (_dbus_user_at_console): fix memleak in OOM.
6100
6101         * doc/busconfig.dtd: update the DTD for the at_console attribute.
6102
6103         * bus/driver.c (bus_driver_handle_hello): correctly handle Hello
6104         messages after the first one (bug #1389).
6105         
6106         * bus/dispatch.c (check_double_hello_message): add a test case for
6107         the double hello message bug.
6108         (check_existent_service_activation): fix check of spawning error.
6109         
6110 2004-09-16  David Zeuthen  <david@fubar.dk>
6111
6112         * python/dbus_bindings.pyx.in: Add support for int64 and uint64
6113
6114 2004-09-12  David Zeuthen  <david@fubar.dk>
6115
6116         Patch from Kay Sievers <kay.sievers@vrfy.org>
6117
6118         * bus/bus.c (bus_context_new):
6119         * bus/bus.h:
6120         * bus/main.c (usage)
6121         (main):
6122         Add commandline option --nofork to override configuration file
6123         setting.
6124
6125 2004-09-09  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6126
6127         * dbus/dbus-*.h: remove the ; after DBUS_(BEGIN|END)_DECLS. Some C
6128         compilers don't like it (bug #974).
6129
6130 2004-09-04  Harald Fernengel  <harry@kdevelop.org>
6131
6132         * qt/connection.*: Applied patch by Jérôme Lodewyck
6133         <lodewyck@clipper.ens.fr> to integrate an existing
6134         connection into the Qt eventloop
6135
6136 2004-08-30  Jon Trowbridge  <trow@ximian.com>
6137
6138         * mono/BusDriver.cs: Added.  This is a class for interacting with
6139         the org.freedesktop.DBus service.
6140
6141         * mono/Message.cs: Added a mechanism to expose the message that is
6142         currently being dispatched via the static Message.Current
6143         property.  Added Message.Sender and Message.Destination
6144         properties.
6145
6146         * mono/Handler.cs: Expose the dispatched message via
6147         Message.Current when handling method calls.
6148
6149         * mono/Service.cs: Expose the dispatched message via
6150         Message.Current when handling signal emissions.
6151         
6152         * mono/Connection.cs: Bind dbus_bus_get_base_service via the
6153         Connection.BaseService property.
6154
6155 2004-08-28  Havoc Pennington  <hp@redhat.com>
6156
6157         * dbus/dbus-userdb.c (_dbus_is_console_user): remove unused variable
6158
6159         More fixes from Steve Grubb
6160         
6161         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): fix fd leak
6162         (_dbus_listen_tcp_socket): fix fd leak
6163
6164         * dbus/dbus-spawn.c (read_pid, read_ints): move the "again:" for
6165         EINTR to a bit lower in the code
6166
6167 2004-08-26  Jon Trowbridge  <trow@ximian.com>
6168
6169         * bus/driver.c (bus_driver_handle_service_exists): Respond with
6170         TRUE if we are inquiring about the existence of the built-in
6171         org.freedesktop.DBus service.
6172
6173 2004-08-25  John Palmieri  <johnp@redhat.com>
6174         * bus/config-parser.c:
6175         (struct PolicyType): Add POLICY_CONSOLE
6176         (struct Element.d.policy): s/gid_or_uid/gid_uid_or_at_console
6177         (start_busconfig_child): Sets up console element when
6178         <policy at_console=""> is encountered in a policy file
6179         (append_rule_from_element): Convert console elements to console
6180         rules.
6181
6182         * bus/policy.c: 
6183         (bus_policy_create_client_policy): Add console rules to the client
6184         policy based on if the client is at the console
6185         (bus_policy_append_console_rule): New function for adding a
6186         console rule to a policy
6187         (bus_policy_merge): Handle console rule merging
6188
6189         * dbus/dbus-sysdeps.h: Added the DBUS_CONSOLE_DIR constant
6190         where we check for console user files
6191         
6192         * dbus/dbus-sysdeps.c:
6193         (_dbus_file_exists): New function which checks if the given
6194         file exists
6195         (_dbus_user_at_console): New function which does the system
6196         specific process of checking if the user is at the console
6197
6198         * dbus/dbus-userdb.c:
6199         (_dbus_is_console_user): New function converts a UID to user name
6200         and then calls the system specific _dbus_user_at_console to 
6201         see if the user is at the console and therefor a console user
6202
6203 2004-08-25  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6204
6205         * bus/config-parser.c (set_limit):
6206         * bus/dbus-daemon-1.1.in:
6207         * test/data/valid-config-files/many-rules.conf: set the
6208         max_match_rules_per_connection limt from the config file. 
6209
6210         * doc/busconfig.dtd: update the DTD.
6211
6212         * bus/driver.c: remove some unused variables.
6213
6214 2004-08-24  Mikael Hallendal  <micke@imendio.com>
6215
6216         * dbus/dbus-glib-lowlevel.h: Removed dbus_bus_get_with_g_main since 
6217         it's been replaced by dbus_g_bus_get
6218
6219 2004-08-23  Colin Walters  <walters@redhat.com>
6220
6221         Updated SELinux support from Matthew Rickard <mjricka@epoch.ncsc.mil>
6222
6223         * bus/selinux.h: Prototype bus_selinux_get_policy_root.
6224
6225         * bus/selinux.c: Create a thread for policy reload notification.
6226         (bus_selinux_get_policy_root): Implement.
6227
6228         * bus/config-parser.c (start_busconfig_child)
6229         (bus_config_parser_content): Support SELinux-root relative
6230         inclusion.
6231
6232         * configure.in <HAVE_SELINUX>: Add -lpthread.
6233         
6234         * bus/test-main.c (test_pre_hook, test_post_hook): New.
6235         (test_post_hook): Move memory checking into here.
6236         (test_pre_hook, test_post_hook): Move SELinux checks in
6237         here, but conditional on a DBUS_TEST_SELINUX environment
6238         variable.  Unfortunately we can't run the SELinux checks
6239         as a normal user, since they won't have any permissions
6240         for /selinux.  So this will have to be tested manually
6241         for now, until we have virtualization for most of
6242         libselinux.
6243         
6244 2004-08-23  Havoc Pennington  <hp@redhat.com>
6245
6246         * dbus/dbus-sysdeps.c (_dbus_change_identity): add setgroups() to
6247         drop supplementary groups, suggested by Steve Grubb
6248
6249 2004-08-20  Colin Walters  <walters@redhat.com>
6250
6251         * bus/config-parser.c (start_busconfig_child): Remove some unused
6252         variables.
6253         
6254         * bus/selinux.c (bus_selinux_id_table_insert): Avoid compiler
6255         warning.
6256
6257 2004-08-17  Joe Shaw  <joeshaw@novell.com>
6258
6259         * configure.in: If --enable-mono is passed in, if we can't find
6260         mono error out.
6261
6262         * mono/Makefile.am: Use /gacutil to install assemblies into the
6263         GAC and not /root.
6264
6265 2004-08-12  Havoc Pennington  <hp@redhat.com>
6266
6267         * NEWS: update for 0.22
6268
6269         * configure.in: release 0.22
6270
6271 2004-08-11  Colin Walters  <walters@redhat.com>
6272
6273         * tools/dbus-send.c (main, usage): Add --reply-timeout
6274         argument.
6275
6276 2004-08-10  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6277
6278         * bus/bus.c (process_config_first_time_only): get rid of an unused
6279         DBusError that was causing a memoy leak (bug #989).
6280
6281         * dbus/dbus-keyring.c, dbus/dbus-message.c:
6282         fix compilation on Solaris/Forte C (bug #974)
6283
6284         * bus/main.c (main): plug two minuscule memleaks.
6285
6286 2004-08-10  Havoc Pennington  <hp@redhat.com>
6287
6288         * doc/dbus-tutorial.xml: add some more info on GLib bindings
6289
6290 2004-08-09  Havoc Pennington  <hp@redhat.com>
6291
6292         * COPYING: switch to Academic Free License version 2.1 instead of
6293         2.0, to resolve complaints about patent termination clause.
6294
6295 2004-07-31  John (J5) Palmieri  <johnp@redhat.com>
6296
6297         * README: added documentation for the --enable-python 
6298         configure switch.
6299
6300 2004-07-31  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6301
6302         * bus/config-parser.c (bus_config_parser_new): fix an invalid
6303         _unref in the SELinux support.
6304
6305         * doc/busconfig.dtd: update DTD for SELinux support.
6306
6307         * bus/config-loader-libxml.c: fix error handler and parser
6308         initialisation/cleanup. OOM test now works with libxml2 HEAD.
6309
6310         * configure.in: remove the warning about libxml2.
6311
6312         * dbus/dbus-bus.c: silence doxygen warning.
6313
6314 2004-07-31  Colin Walters  <walters@redhat.com>
6315
6316         * configure.in: Move #error in SELinux check to its own line.
6317
6318 2004-07-31  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6319
6320         * dbus/dbus-internals.h (_DBUS_SET_OOM):
6321         * bus/utils.h (BUS_SET_OOM): use dbus_error_set_const instead of
6322         dbus_error_set.
6323
6324         * bus/dispatch.c (check_send_exit_to_service): fix the test case,
6325         broken by the change in the _SET_OOM macros.
6326
6327 2004-07-31  Colin Walters  <walters@redhat.com>
6328
6329         * bus/selinux.c <HAVE_SELINUX>: Include utils.h to get
6330         BUS_SET_OOM.
6331
6332 2004-07-31  Colin Walters  <walters@redhat.com>
6333
6334         * configure.in: Use AC_TRY_COMPILE instead of AC_EGREP_HEADER
6335         to correctly detect DBUS__ACQUIRE_SVC.  Also add an
6336         AC_MSG_CHECKING.
6337
6338 2004-07-24  Havoc Pennington  <hp@redhat.com>
6339
6340         SELinux support from Matthew Rickard <mjricka@epoch.ncsc.mil>
6341
6342         * bus/selinux.c, bus/selinux.h: new file encapsulating selinux
6343         functionality
6344
6345         * configure.in: add --enable-selinux
6346         
6347         * bus/policy.c (bus_policy_merge): add FIXME to a comment
6348
6349         * bus/main.c (main): initialize and shut down selinux
6350
6351         * bus/connection.c: store SELinux ID on each connection, to avoid 
6352         repeated getting of the string context and converting it into 
6353         an ID
6354
6355         * bus/bus.c (bus_context_get_policy): new accessor, though it
6356         isn't used
6357         (bus_context_check_security_policy): check whether the security
6358         context of sender connection can send to the security context of
6359         recipient connection
6360
6361         * bus/config-parser.c: add parsing for <selinux> and <associate>
6362         
6363         * dbus/dbus-transport.c (_dbus_transport_get_unix_fd): to
6364         implement dbus_connection_get_unix_fd()
6365
6366         * dbus/dbus-connection.c (dbus_connection_get_unix_fd): new
6367         function, used by the selinux stuff
6368         
6369 2004-07-29  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6370
6371         * bus/config-loader-libxml.c: complete the implementation of
6372         libxml backend for config file loader. Doesn't work with full OOM
6373         test yet. 
6374         
6375         * configure.in: change error when selecting libxml into a warning.
6376         
6377         * test/data/invalid-config-files: add two non-well-formed XML
6378         files. 
6379         
6380         * glib/Makefile.am: libdbus_gtool always uses expat, not libxml.
6381         
6382         * dbus/dbus-transport-unix.c (unix_handle_watch): do not
6383         disconnect in case of DBUS_WATCH_HANGUP, several do_reading() may
6384         be necessary to read all the buffer. (bug #894)
6385
6386         * bus/activation.c (bus_activation_activate_service): fix a
6387         potential assertion failure (bug #896). Small optimization in the
6388         case of auto-activation messages.
6389
6390         * dbus/dbus-message.c (verify_test_message, _dbus_message_test):
6391         add test case for byte-through-vararg bug (#901). patch by Kimmo
6392         Hämäläinen. 
6393
6394 2004-07-28  Anders Carlsson  <andersca@gnome.org>
6395
6396         * python/dbus.py:
6397         * python/dbus_bindings.pyx.in:
6398         Add dbus.init_gthreads (), allow emit_signal to pass
6399         arguments to the signal.
6400         
6401 2004-07-24  Havoc Pennington  <hp@redhat.com>
6402
6403         * AUTHORS: add some people, not really comprehensively, let me
6404         know if I missed you
6405
6406 2004-07-24  Havoc Pennington  <hp@redhat.com>
6407
6408         * Makefile.am (DIST_SUBDIRS): add DIST_SUBDIRS, problem solved by
6409         Owen
6410
6411         * test/Makefile.am (DIST_SUBDIRS): here also
6412
6413 2004-07-22  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6414
6415         * dbus/dbus-sysdeps.c (fill_user_info): fix inexistent label name,
6416         breaking build on Solaris, reported by Farhad Saberi on the ML.
6417
6418         * dbus/dbus-message.c (dbus_message_append_args_valist): fix the
6419         va_arg invocation to account for integer promotion in the case of
6420         DBUS_TYPE_BYTE (unsigned char is promoted to int). (bug #901)
6421
6422         * bus/services.c (bus_service_remove_owner): fix bug #902, use
6423         _dbus_list_get_first_link, not _dbus_list_get_first.
6424
6425         * dbus/dbus-bus.c (dbus_bus_service_exists): plug a memory leak.
6426
6427         * dbus/dbus-object-tree.c (free_subtree_recurse): always null
6428         handler functions so that the asserts in _dbus_object_subtree_unref
6429         do not fail.
6430
6431         * dbus/dbus-transport-unix.c (do_reading):
6432         _dbus_transport_queue_messages return value is of type
6433         dbus_bool_t, not DBusDispatchStatus.
6434         
6435 2004-07-19  David Zeuthen  <david@fubar.dk>
6436
6437         * dbus/dbus-protocol.h: Add DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN
6438
6439         * bus/dispatch.c:
6440         (check_get_connection_unix_user): Debug says GetProperty; but the
6441         method is called GetConnectionUnixUser
6442         (check_get_connection_unix_process_id): New function
6443         (bus_dispatch_test): Actually call check_get_connection_unix_user();
6444         also call check_get_connection_unix_process_id()
6445         
6446         * bus/driver.c:
6447         (bus_driver_handle_get_connection_unix_process_id): New function,
6448         handles GetConnectionUnixProcessID on the org.freedesktop.DBus
6449         interface
6450         
6451         * dbus/dbus-auth.c:
6452         (handle_server_data_external_mech): Set pid from the credentials
6453         obtained from the socket
6454         
6455         * dbus/dbus-connection.c:
6456         (dbus_connection_get_unix_process_id): New function
6457         
6458         * dbus/dbus-connection.h: 
6459         Add prototype for dbus_connection_get_unix_process_id
6460         
6461         * dbus/dbus-transport.c:
6462         (_dbus_transport_get_unix_process_id): New function
6463         
6464         * dbus/dbus-transport.h:
6465         Add prototype for _dbus_transport_get_unix_process_id
6466         
6467 2004-07-19  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6468
6469         * dbus/dbus-message.c: Message counter fix, patch by Christian
6470         Hammond <chipx86@gnupdate.org>
6471
6472 2004-07-18  Seth Nickell  <seth@gnome.org>
6473
6474         * python/dbus.py:
6475         * python/dbus_bindings.pyx.in:
6476         * python/tests/test-client.py:
6477
6478         Add dbus.ByteArray and dbus_bindings.ByteArray
6479         types so that byte streams can be passed back.
6480
6481         Give jdahlin the heaps of credit that are so
6482         rightfully his.
6483         
6484 2004-07-12  Seth Nickell  <seth@gnome.org>
6485
6486         * python/dbus.py:
6487
6488         Add message argument to the default object_method_handler
6489         function.
6490         
6491         * python/dbus_bindings.pyx.in:
6492
6493         Automatically return NIL when passed an empty list
6494         (we can't pass back a list since lists are typed
6495         and we don't have any idea what type the the client
6496         intended the list to be... :-( )
6497         
6498 2004-07-10  Seth Nickell  <seth@gnome.org>
6499
6500         * python/examples/Makefile.am:
6501
6502         Fix distcheck breakage caused by new examples.
6503
6504 2004-07-10  Seth Nickell  <seth@gnome.org>
6505
6506         * python/dbus.py:
6507
6508         Add "message" argument to service-side dbus.Object
6509         methods. This will break existing services written
6510         using the python bindings, but will allow extraction
6511         of all the message information (e.g. who its from).
6512
6513         Add improved "object oriented" signal handling/emission.
6514         
6515         * python/examples/example-service.py:
6516
6517         Nix this example.
6518         
6519         * python/examples/example-signal-emitter.py:
6520         * python/examples/example-signal-recipient.py:
6521
6522         Two new examples that show how to emit and receive
6523         signals using the new APIs.
6524         
6525         * python/examples/example-signals.py:
6526         * python/examples/gconf-proxy-service.py:
6527         * python/examples/gconf-proxy-service2.py:
6528
6529         Add "message" argument to service methods.
6530
6531 2004-06-28  Kay Sievers <kay.sievers@vrfy.org>
6532
6533         * bus/driver.c (bus_driver_handle_get_connection_unix_user)
6534         * dbus/bus.c (dbus_bus_get_unix_user)
6535         * doc/dbus-specification.xml: implement GetConnectionUnixUser
6536         method of org.freedesktop.DBus interface.
6537
6538         * bus/dispatch.c: test case
6539
6540 2004-06-23  John (J5) Palmieri  <johnp@redhat.com>
6541
6542         * python/Makefile.am: switched include directory from glib/ to dbus/
6543         since dbus-glib.h moved
6544  
6545 2004-06-22  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6546
6547         * configure.in: prevent building the gcj stuff and libxml loader
6548         since they are broken.
6549
6550 2004-06-20  Havoc Pennington  <hp@redhat.com>
6551
6552         * dbus/dbus-glib-error-enum.h: autogenerate the GError enum 
6553         codes from the dbus error names
6554         
6555         * glib/dbus-glib.h: move to subdir dbus/ since it's included 
6556         as dbus/dbus-glib.h and that breakage is now visible due to 
6557         including dbus/dbus-glib.h in dbus-glib-lowlevel.h
6558         
6559         * glib/dbus-glib.h: s/gproxy/g_proxy/
6560
6561         * dbus/dbus-shared.h: new header to hold stuff shared with
6562         binding APIs
6563         
6564         * dbus/dbus-protocol.h (DBUS_ERROR_*): move errors here rather
6565         than dbus-errors.h
6566
6567         * glib/dbus-glib.h (dbus_set_g_error): move to
6568         dbus-glib-lowlevel.h
6569
6570         * glib/dbus-glib.h: remove dbus/dbus.h from here; change a bunch
6571         of stuff to enable this
6572
6573         * dbus/dbus-glib-lowlevel.h: put dbus/dbus.h here
6574
6575         * a bunch of other changes with the same basic "separate glib 
6576         bindings from dbus.h" theme
6577         
6578 2004-06-10  Owen Fraser-Green  <owen@discobabe.net>
6579
6580         * dbus-sharp.pc.in: Removed glib-sharp inclusion in Libs.
6581
6582         * python/examples/Makefile.am: Fixed typo in EXTRA_DIST.
6583
6584 2004-06-09  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6585
6586         * bus/driver.c, dbus/dbus-bus.c: use BOOLEAN instead of UINT32 for
6587         the reply value of the ServiceExists message.
6588
6589 2004-06-07  John (J5) Palmieri  <johnp@redhat.com>
6590
6591         * python/dbus_bindings.pyx.in: No longer need to parse path
6592         elements and pass them as arrays of strings.  The C API now
6593         accepts plain path strings.
6594         (_build_parsed_path): removed 
6595
6596 2004-06-07  Havoc Pennington  <hp@redhat.com>
6597
6598         * doc/TODO: remove auto-activation item since it's done; sort
6599         items by importance/milestone
6600
6601 2004-06-07  Havoc Pennington  <hp@redhat.com>
6602
6603         * dbus/dbus-message-builder.c (_dbus_message_data_load): append
6604         random signature when using REQUIRED_FIELDS (this hack won't work
6605         in the long term)
6606
6607         * dbus/dbus-message.c: change the signature to be a header field,
6608         instead of message->signature special-case string. Incremental
6609         step forward. Then we can fix up code to send the signature in the
6610         message, then fix up code to validate said signature, then fix up
6611         code to not put the typecodes inline, etc.
6612         (load_one_message): don't make up the signature after the fact
6613         (decode_header_data): require signature field for the known
6614         message types
6615
6616         * dbus/dbus-marshal.c (_dbus_marshal_string_len): new
6617
6618         * dbus/dbus-protocol.h: add DBUS_HEADER_FIELD_SIGNATURE
6619
6620 2004-06-07  Owen Fraser-Green  <owen@discobabe.net>
6621
6622         * mono/DBusType/ObjectPath.cs: Renamed PathName argument to Path
6623
6624         * mono/Handler.cs: Updated to follow new path argument for
6625         (un-)registering objects.
6626
6627         * mono/example/Makefile.am:
6628         * mono/Makefile.am:
6629         * configure.in: Bumped required version for mono and use new -pkg
6630         syntax for deps
6631
6632 2004-06-05  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6633
6634         * dbus/dbus-connection.h, dbus/dbus-connection.c: have object path
6635         registration functions take the path argument as char* instead of
6636         char**.
6637
6638         * dbus/dbus-marshal.h, dbus/dbus-marshal.c (_dbus_decompose_path):
6639         split off the path decompostion part of
6640         _dbus_demarshal_object_path. Some misc. fixes to silence compiler
6641         warnings. 
6642
6643         * glib/dbus-gobject.c, test/test-service.c: update accordingly.
6644         
6645 2004-06-02  Kristian Høgsberg  <krh@redhat.com>
6646  
6647         * dbus/dbus-auth.c: Rewrite auth protocol handling to use a state
6648         machine approach.  A state is implemented as a function that
6649         handles incoming events as specified for that state.
6650         
6651         * doc/dbus-specification.xml: Update auth protocol state machine
6652         specification to match implementation.  Remove some leftover
6653         base64 examples.
6654
6655 2004-06-02  Kristian Høgsberg  <krh@redhat.com>
6656
6657         * glib/dbus-gproxy.c, glib/dbus-gmain.c, dbus/dbus-string.c,
6658         dbus/dbus-object-tree.c, dbus/dbus-message.c: add comments to
6659         quiet doxygen.
6660
6661         * Doxyfile.in: remove deprecated options.
6662
6663         * dbus/dbus-message-handler.c, dbus/dbus-message-handler.h,
6664         glib/test-thread.h, glib/test-thread-client.c,
6665         glib/test-thread-server.c, glib/test-profile.c,
6666         glib/test-dbus-glib.c: remove these unused files.
6667
6668 2004-06-01  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6669
6670         * dbus/dbus-object-tree.c
6671         (_dbus_object_tree_dispatch_and_unlock): fix dispatch for
6672         non-fallback handlers (bug #684).
6673         (_dbus_object_subtree_new): initialize invoke_as_fallback field.
6674         (find_subtree_recurse): report wether the returned subtree is an
6675         exact match or a "fallback" match higher up in the tree.
6676         (object_tree_test_iteration): update test case.
6677
6678 2004-06-01  Seth Nickell  <seth@gnome.org>
6679
6680         * python/dbus_bindings.pyx.in:
6681         * python/tests/test-client.py:
6682
6683         Round off basic type support. Add dicts (yay!), and 
6684         remaining array types.
6685
6686         Make MessageIter more general so it works for dicts too.
6687
6688         Mark all loop variables as C integers.
6689         
6690 2004-05-31  Havoc Pennington  <hp@redhat.com>
6691
6692         * glib/dbus-gidl.c (method_info_add_arg): keep args sorted with
6693         "in" before "out"
6694
6695         * glib/dbus-gobject.c (dbus_type_to_string): move to dbus-gutils.c
6696
6697         * glib/dbus-glib-tool.c (main): set up to have a --self-test
6698         option that runs the tests, and start filling in some code
6699         including for starters just dumping the interfaces to stdout
6700
6701         * glib/Makefile.am (INCLUDES): define DBUS_LOCALEDIR
6702
6703         * test/data/valid-introspection-files/lots-of-types.xml: test of
6704         an example introspection file
6705
6706         * glib/dbus-gparser.c (parser_check_doctype): doctype should be
6707         "node" (I think...)
6708
6709 2004-05-31  Seth Nickell  <seth@gnome.org>
6710
6711         * python/dbus_bindings.pyx.in:
6712         * python/tests/test-client.py:
6713
6714         Test Suite: 1
6715         Python Bindings: 0
6716
6717         Fix string array memory trashing bug... oops...
6718
6719 2004-05-30  Seth Nickell  <seth@gnome.org>
6720
6721         * python/dbus.py:
6722
6723         Add a nicer-but-less-flexible alternate API for handling 
6724         calls to virtual objects in dbus.ObjectTree.
6725
6726         Screw up the argument order to the dbus.Object constructor
6727         for consistency with dbus.ObjectTree (and to make dbus_methods
6728         optional for future extension)
6729         
6730         * python/examples/Makefile.am:
6731         * python/examples/gconf-proxy-service.py:
6732         * python/examples/gconf-proxy-service2.py:
6733
6734         Alternate implementation of gconf-proxy-service using the
6735         nicer dbus.ObjectTree API.
6736         
6737         * python/examples/example-service.py:
6738         * python/tests/test-server.py
6739
6740         Reverse the argument order to deal with dbus.Object constructor
6741         changes.
6742         
6743 2004-05-30  Seth Nickell  <seth@gnome.org>
6744
6745         * python/examples/example-client.py:
6746         * python/examples/example-service.py:
6747
6748         Take it back. Lists seem to work but they're broken
6749         in the test suite. Make the base examples use
6750         lists (works fine).
6751
6752 2004-05-30  Seth Nickell  <seth@gnome.org>
6753
6754         * python/dbus_bindings.pyx.in:
6755         * python/tests/test-client.py:
6756
6757         Add some more tests and fix errors that crop up.
6758         Unfortunately, currently it seems like marshalling
6759         and unmarshalling of lists is completely broken :-(
6760
6761 2004-05-30  Seth Nickell  <seth@gnome.org>
6762
6763         * python/dbus_bindings.pyx.in:
6764
6765         Add support for ObjectPath type.
6766
6767         * python/dbus.py:
6768
6769         Refactor message handling code to a common function.
6770         
6771         * python/tests/test-client.py:
6772         * python/tests/test-server.py:
6773
6774         Add tests that check to make sure values of all types
6775         can be echoed from a service w/o mangling.
6776         
6777 2004-05-29  Seth Nickell  <seth@gnome.org>
6778
6779         * python/dbus.py:
6780
6781         Add ObjectTree class which allows implementation
6782         of trees of "virtual" objects. Basically the python
6783         wrapper for "register_fallback".
6784         
6785         * python/examples/Makefile.am
6786         * python/examples/gconf-proxy-client.py:
6787         * python/examples/gconf-proxy-service.py:
6788
6789         Implement a simple GConf proxy service that supports
6790         get/set on string and int GConf keys using the ObjectTree.
6791         
6792 2004-05-29  Seth Nickell  <seth@gnome.org>
6793
6794         * python/dbus.py:
6795         * python/examples/example-client.py:
6796         * python/examples/example-service.py:
6797         * python/examples/list-system-services.py:
6798
6799         Add SessionBus, SystemBus and ActivationBus classes
6800         so you don't need to know the special little BUS_TYPE
6801         flag.
6802         
6803 2004-05-29  Havoc Pennington  <hp@redhat.com>
6804
6805         * bus/config-parser.c (process_test_valid_subdir): temporarily
6806         stop testing config parser OOM handling, since expat has issues
6807         http://freedesktop.org/pipermail/dbus/2004-May/001153.html
6808
6809         * bus/dbus-daemon-1.1.in: change requested_reply to
6810         send_requested_reply/receive_requested_reply so we can send the
6811         replies, not just receive them.
6812
6813         * bus/config-parser.c: parse the new
6814         send_requested_reply/receive_requested_reply
6815
6816         * bus/policy.c (bus_client_policy_check_can_send): add
6817         requested_reply argument and use it
6818
6819         * bus/bus.c (bus_context_check_security_policy): pass through
6820         requested_reply status to message send check
6821
6822         * bus/system.conf.in: adapt to requested_reply change
6823         
6824 2004-05-28  Havoc Pennington  <hp@redhat.com>
6825
6826         * test/glib/test-service-glib.c (main): remove unused variable
6827
6828         * glib/dbus-gidl.c (base_info_ref): fix a silly compiler warning
6829
6830         * dbus/dbus-auth.h (enum): remove AUTHENTICATED_WITH_UNUSED_BYTES
6831         from the enum, no longer in use.
6832
6833         * dbus/dbus-sysdeps.h: include config.h so DBUS_VA_COPY actually
6834         works right.
6835
6836         * dbus/dbus-message.c: add various _dbus_return_val_if_fail for
6837         whether error_name passed in is a valid error name.
6838
6839 2004-05-28  John (J5) Palmieri  <johnp@redhat.com>
6840
6841         * dbus/dbus-message.c (dbus_message_get_args): Added support for
6842         OBJECT_PATH and OBJECT_PATH_ARRAY
6843
6844 2004-05-28  Seth Nickell  <seth@gnome.org>
6845
6846         * python/examples/Makefile.am:
6847
6848         Forget to add Makefile.am. Do not pass go.
6849
6850 2004-05-28  Michael Meeks  <michael@ximian.com>
6851
6852         * glib/dbus-gvalue.c (dbus_gvalue_marshal, dbus_gvalue_demarshal): 
6853         fix no int64 case.
6854
6855         * dbus/dbus-string.c (_dbus_string_parse_basic_type): impl.
6856
6857         * dbus/dbus-message.c (_dbus_message_iter_get_basic_type),
6858         (_dbus_message_iter_get_basic_type_array): impl.
6859         drastically simplify ~all relevant _get methods to use these.
6860         (_dbus_message_iter_append_basic_array),
6861         (dbus_message_iter_append_basic): impl
6862         drastically simplify ~all relevant _append methods to use these.
6863
6864         * dbus/dbus-message-builder.c (parse_basic_type) 
6865         (parse_basic_array, lookup_basic_type): impl.
6866         (_dbus_message_data_load): prune scads of duplicate /
6867         cut & paste coding.
6868
6869         * dbus/dbus-marshal.c (_dbus_demarshal_basic_type_array) 
6870         (_dbus_demarshal_basic_type): implement,
6871         (demarshal_and_validate_len/arg): beef up debug.
6872         (_dbus_marshal_basic_type, _dbus_marshal_basic_type_array): impl.
6873
6874 2004-05-27  Seth Nickell  <seth@gnome.org>
6875
6876         * configure.in:
6877         * python/Makefile.am:
6878
6879         Include the example python apps in the tarball.
6880         
6881         * python/examples/list-system-services.py
6882
6883         Add a python new example that fetches the list of services
6884         from the system bus.
6885         
6886 2004-05-27  Seth Nickell  <seth@gnome.org>
6887
6888         * python/dbus.py:
6889         * python/dbus_bindings.pyx.in:
6890
6891         Fix failure to notify that a signal was not handled,
6892         resulted in hung functions.
6893         
6894 2004-05-25  Colin Walters  <walters@redhat.com>
6895
6896         * tools/dbus-monitor.c (main): Monitor all types of messages.
6897
6898 2004-05-23  Owen Fraser-Green  <owen@discobabe.net>
6899
6900         * mono/Handler.cs, mono/Service.cs: Added UnregisterObject method
6901         which unregisters the object path and disposes the handler.
6902
6903 2004-05-23  Kristian Høgsberg  <krh@redhat.com>
6904  
6905         Patch from Timo Teräs <ext-timo.teras@nokia.com> (#614):
6906          
6907         * dbus/dbus-message.c (dbus_message_iter_get_args_valist): Swap
6908         operands to && so we call dbus_message_iter_next () for the last
6909         argument also.
6910
6911 2004-05-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6912
6913         * dbus/dbus-object-tree.c
6914         (_dbus_object_tree_list_registered_unlock, lookup_subtree): return
6915         children even if the requested path isn't registered.
6916         (object_tree_test_iteration): test object_tree_list_registered.
6917
6918         * configure.in: undefine HAVE_ABSTRACT_SOCKETS instead of defining
6919         it to 0.
6920         
6921 2004-05-20  Kristian Høgsberg  <krh@redhat.com>
6922
6923         * doc/TODO: Remove resolved items.
6924
6925         * bus/expirelist.h (struct BusExpireList): remove unused n_items
6926         field.
6927         
6928         * bus/connection.c (bus_connections_expect_reply): Enforce the
6929         per-connection limit on pending replies.
6930         
6931         Patch from Jon Trowbridge <trow@ximian.com>:
6932  
6933         * bus/main.c (setup_reload_pipe): Added.  Creates a pipe and sets
6934         up a watch that triggers a config reload when one end of the pipe
6935         becomes readable.
6936         (signal_handler): Instead of doing the config reload in our SIGHUP
6937         handler, just write to the reload pipe and let the associated
6938         watch handle the reload when control returns to the main loop.
6939  
6940         * bus/driver.c (bus_driver_handle_reload_config): Added.
6941         Implements a ReloadConfig method for requesting a configuration
6942         file reload via the bus driver.
6943  
6944 2004-05-19  Owen Fraser-Green  <owen@discobabe.net>
6945
6946         * HACKING: Updated release instructions concerning the wiki page.
6947
6948 2004-05-18  Kristian Høgsberg  <krh@redhat.com>
6949
6950         * dbus/dbus-auth.c (client_try_next_mechanism): Remove logic to
6951         filter against auth->allowed_mechs; we only add allowed mechs in
6952         record_mechanisms().
6953  
6954         * dbus/dbus-auth-script.c (_dbus_auth_script_run): Add an
6955         ALLOWED_MECHS to auth-script format so we can set the list of
6956         allowed mechanisms.
6957  
6958         * data/auth/client-out-of-mechanisms.auth-script: New test to
6959         check client disconnects when it is out of mechanisms to try.
6960  
6961         * dbus/dbus-auth.c (process_command): Remove check for lines
6962         longer that 1 MB; we only buffer up maximum 16 kB.
6963  
6964         * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
6965         dbus/dbus-auth-script.c, dbus/dbus-auth.c, dbus/dbus-auth.h:
6966         Remove auth state AUTHENTICATED_WITH_UNUSED_BYTES, instead always
6967         assume there might be unused bytes.
6968  
6969         * dbus/dbus-auth.c (_dbus_auth_do_work): Remove check for
6970         client-out-of-mechs, it is handled in process_reject(). Move check
6971         for max failures to send_rejected(), as it's a server-only thing.
6972
6973         * dbus/dbus-auth.c: Factor out protocol reply code into functions
6974         send_auth(), send_data(), send_rejected(), send_error(),
6975         send_ok(), send_begin() and send_cancel().
6976
6977 2004-05-17  Kristian Høgsberg  <krh@redhat.com>
6978
6979         Remove base64 encoding, replace with hex encoding. Original patch
6980         from trow@ximian.com, added error handling.
6981
6982         * dbus/dbus-string.c (_dbus_string_base64_encode)
6983         (_dbus_string_base64_decode): Remove.
6984         (_dbus_string_hex_decode): Add end_return argument so we can
6985         distinguish between OOM and invalid hex encoding.
6986         (_dbus_string_test): Remove base64 tests and add test case for
6987         invalid hex.
6988
6989         * dbus/dbus-keyring.c, dbus/dbus-auth-script.c, dbus/dbus-auth.c:
6990         Replace base64 with hex.
6991
6992         * test/data/auth/invalid-hex-encoding.auth-script: New test case
6993         for invalid hex encoded data in auth protocol.
6994
6995 2004-05-17  Olivier Andrieu  <oliv__a@users.sourceforge.net>
6996
6997         * dbus/dbus-connection.c (check_for_reply_unlocked): plug a memory
6998         leak.
6999
7000 2004-05-15  Owen Fraser-Green  <owen@discobabe.net>
7001
7002         * mono/dbus-sharp.dll.config.in: Added for GAC
7003         * mono/dbus-sharp.snk: Added for GAC
7004         * mono/Assembly.cs.in: Added for GAC
7005         * mono/Makefile.am: Changes for GAC installation        
7006         * configure.in: Added refs for dbus-sharp.dll.config.in and
7007         Assembly.cs.in. More fixes for mono testing
7008         * mono/example/Makefile.am: Changed var to CSC
7009         * Makefile.am: Changed flag name to DBUS_USE_CSC
7010
7011 2004-05-15  Owen Fraser-Green  <owen@discobabe.net>
7012
7013         * mono/Makefile.am: Added SUBDIRS for docs. Changed SUBDIRS order
7014         * mono/doc/*: Added documentation framework
7015         * configure.in: Added monodoc check
7016         * README: Added description of mono configure flags
7017
7018 2004-05-11  John (J5) Palmieri  <johnp@redhat.com>:
7019
7020         * doc/dbus-specification.xml: Added a "Required" column to the 
7021         header fields table and changed the "zero or more" verbage in
7022         the above paragraph to read "The header must contain the required 
7023         named header fields and zero or more of the optional named header 
7024         fields".
7025         * test/data/invalid-messages/*.message: Added the required PATH 
7026         named header field to the tests so that they don't fail on 
7027         'Missing path field'
7028
7029 2004-05-07  John (J5) Palmieri  <johnp@redhat.com>
7030
7031         * python/dbus-bindings.pyx.in: Stopped the bindings from trashing
7032         the stack by implicitly defining variable and parameter types and
7033         removing the hack of defining C pointers as python objects and later
7034         casting them.
7035
7036 2004-05-02  Owen Fraser-Green  <owen@discobabe.net>
7037
7038         * mono/Makefile.am: Removed test-dbus-sharp.exe from all target
7039
7040 2004-05-01  Owen Fraser-Green  <owen@discobabe.net>
7041
7042         * mono/DBusType/Dict.cs: Handle empty dicts
7043         * mono/DBusType/Array.cs: Handle empty arrays
7044         * mono/Arguments.cs: Handle empty arguments
7045
7046 2004-04-30  Owen Fraser-Green  <owen@discobabe.net>
7047
7048         * dbus-sharp.pc.in: Modified to include include Libs and Requires
7049         field
7050
7051 2004-04-25  Kristian Høgsberg  <krh@redhat.com>
7052
7053         * test/data/valid-messages/standard-*.message: Update message
7054         test scripts to new header field names.
7055
7056 2004-04-22  John (J5) Palmieri  <johnp@redhat.com>
7057
7058         * test/break-loader.c (randomly_do_n_things): tracked down buffer
7059         overflow to times_we_did_each_thing array which would chop off the
7060         first character of the failure_dir string. Increased the size of
7061         the array to 7 to reflect the number of random mutation functions
7062         we have.
7063
7064 2004-04-21  Kristian Høgsberg  <krh@redhat.com>
7065
7066         * dbus/dbus-server-unix.c (unix_finalize): Don't unref
7067         unix_server->watch here, it is unreffed in disconnect.
7068         (_dbus_server_new_for_tcp_socket): convert NULL host to
7069         "localhost" here so we don't append NULL to address.
7070         
7071         * dbus/dbus-server.c (_dbus_server_test): Add test case for
7072         various addresses, including tcp with no explicit host.
7073
7074 2004-04-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
7075
7076         * dbus/dbus-message.c (decode_header_data, decode_string_field):
7077         fix incorrect setting of .name_offset in the HeaderField (it was
7078         off by two bytes, positioned right after the name and typecode)
7079
7080         * bus/bus.c (bus_context_new, bus_context_unref): test before
7081         calling dbus_server_free_data_slot and _dbus_user_database_unref
7082         in case of an error.
7083
7084         * tools/Makefile.am: add $(DBUS_GLIB_TOOL_LIBS), xml libs needed
7085         by libdbus-gtool.
7086
7087 2004-04-19  Kristian Høgsberg  <krh@redhat.com>
7088
7089         * dbus/dbus-transport-unix.c (unix_do_iteration): Rewrite to use
7090         _dbus_poll() instead of select().
7091
7092 2004-04-15  Jon Trowbridge  <trow@ximian.com>
7093
7094         * bus/main.c (signal_handler): Reload the configuration files
7095         on SIGHUP.
7096         (main): Set up our SIGHUP handler.
7097
7098         * bus/bus.c (struct BusContext): Store the config file, user and
7099         fork flag in the BusContext.
7100         (process_config_first_time_only): Added.  Contains the code
7101         (previously in bus_context_new) for setting up the BusContext from
7102         the BusConfigParser that should only be run the first time the
7103         config files are read.
7104         (process_config_every_time): Added.  Contains the code (previously
7105         in bus_context_new) for setting up the BusContext from the
7106         BusConfigParser that should be run every time the config files are
7107         read.
7108         (load_config): Added.  Builds a BusConfigParser from the config
7109         files and passes the resulting structure off to
7110         process_config_first_time_only (assuming this is the first time)
7111         and process_config_every_time.
7112         (bus_context_new): All of the config-related code has been moved
7113         to process_config_first_time_only and process_config_every_time.
7114         Now this function just does the non-config-related initializations
7115         and calls load_config.
7116         (bus_context_reload_config): Added.
7117
7118 2004-04-15  Olivier Andrieu  <oliv__a@users.sourceforge.net>
7119
7120         * bus/driver.c (bus_driver_handle_get_service_owner):
7121         implement a GetServiceOwner method.
7122         * doc/dbus-specification.xml: document it.
7123         * dbus/dbus-errors.h: add a 'ServiceHasNoOwner' error.
7124         
7125         * glib/dbus-gproxy.c (dbus_gproxy_new_for_service_owner):
7126         implement, using the bus GetServiceOwner method.
7127
7128         * test/glib/test-dbus-glib.c:
7129         use dbus_gproxy_new_for_service_owner so that we can receive the
7130         signal. 
7131
7132 2004-04-15  John (J5) Palmieri  <johnp@redhat.com>
7133
7134         * dbus/dbus-internals.c, dbus/dbus-message-builder.c,
7135         dbus/dbus-message.c, dbus/dbus-protocol.h
7136         (DBUS_HEADER_FIELD_SERVICE): renamed DBUS_HEADER_FIELD_DESTINATION
7137
7138         * dbus/dbus-internals.c, dbus/dbus-message-builder.c,
7139         dbus/dbus-message.c, dbus/dbus-protocol.h
7140         (DBUS_HEADER_FIELD_SENDER_SERVICE): renamed DBUS_HEADER_FIELD_SENDER
7141
7142         * dbus/dbus-internals.c (_dbus_header_field_to_string):
7143         DBUS_HEADER_FIELD_DESTINATION resolves to "destination"
7144         DBUS_HEADER_FIELD_SENDER resolves to "sender"
7145
7146         * doc/dbus-specification.xml (Header Fields Table):
7147         s/SERVICE/DESTINATION
7148         s/SENDER_SERVICE/SENDER
7149
7150
7151 2004-04-14  Olivier Andrieu  <oliv__a@users.sourceforge.net>
7152
7153         * test/glib/test-dbus-glib.c (timed_exit): fail the test after
7154         a few seconds.
7155
7156 2004-04-13  Michael Meeks  <michael@ximian.com>
7157
7158         * glib/dbus-gobject.c (handle_introspect): split out
7159         (introspect_properties): this.
7160         (handle_introspect): implement this.
7161
7162         * test/glib/Makefile.am: use the absolute path so the bus
7163         daemon's chdir ("/") doesn't kill us dead.
7164
7165         * configure.in: subst ABSOLUTE_TOP_BUILDDIR
7166
7167 2004-04-12  Jon Trowbridge  <trow@ximian.com>
7168
7169         * bus/config-parser.c (struct BusConfigParser): Added
7170         included_files field.
7171         (seen_include): Added.  Checks whether or not a file has already
7172         been included by any parent BusConfigParser.
7173         (bus_config_parser_new): Copy the parent's included_files.
7174         (include_file): Track which files have been included, and fail on
7175         circular inclusions.
7176         (process_test_valid_subdir): Changed printf to report if we are
7177         testing valid or invalid conf files.
7178         (all_are_equiv): Changed printf to be a bit clearer about
7179         what we are actually doing.
7180         (bus_config_parser_test): Test invalid configuration files.
7181
7182 2004-04-09  Jon Trowbridge  <trow@ximian.com>
7183
7184         * bus/config-parser.c (bus_config_parser_new): Added a 'parent'
7185         argument.  If non-null, the newly-constructed BusConfigParser will
7186         be initialized with the parent's BusLimits instead of the default
7187         values.
7188         (include_file): When including a config file, pass in
7189         the current parser as the parent and then copy the BusLimits
7190         from the included BusConfigParser pack to the current parser.
7191         (process_test_valid_subdir): Renamed from process_test_subdir.
7192         (process_test_equiv_subdir): Added.  Walks through a directory,
7193         descending into each subdirectory and loading the config files
7194         it finds there.  If any subdirectory contains two config files
7195         that don't produce identical BusConfigParser structs, fail.
7196         For now, the BusConfigParser's BusPolicies are not compared.
7197         (bus_config_parser_test): Call both process_test_valid_subdir and
7198         process_test_equiv_subdir.
7199
7200         * bus/config-loader-libxml.c (bus_config_load): Take a parent
7201         argument and pass it along to the call to bus_config_parser_new.
7202         Also made a few small changes to allow this code to compile.
7203
7204         * bus/config-loader-expat.c (bus_config_load): Take a parent
7205         argument and pass it along to the call to bus_config_parser_new.
7206
7207         * bus/bus.c (bus_context_new): Load the config file
7208         with a NULL parent argument.
7209
7210 2004-03-29  Michael Meeks  <michael@ximian.com>
7211
7212         * glib/dbus-gobject.c (introspect_properties): split
7213         out, fix mangled 'while' flow control.
7214         (introspect_signals): implement.
7215         (handle_introspect): update.
7216
7217 2004-03-29  Michael Meeks  <michael@ximian.com>
7218
7219         * glib/dbus-gobject.c (set_object_property): split out / 
7220         re-work, use the property type, and not the message type(!)
7221         (get_object_property): ditto.
7222
7223         * glib/dbus-gvalue.c (dbus_gvalue_demarshal),
7224         (dbus_gvalue_marshal): make this code re-usable, needed
7225         for signals too, also on both proxy and server side.
7226         Re-write for more efficiency / readability.
7227
7228 2004-03-29  Michael Meeks  <michael@ximian.com>
7229
7230         * dbus/dbus-message.c
7231         (dbus_message_new_error_printf): impl.
7232
7233         * dbus/dbus-connection.c
7234         (dbus_connection_unregister_object_path): fix warning.
7235
7236         * configure.in: fix no-mono-installed situation.
7237
7238 2004-03-27  Havoc Pennington  <hp@redhat.com>
7239
7240         Patch from Timo Teräs:
7241         
7242         * tools/dbus-send.c (main): if --print-reply, assume type is
7243         method call; support boolean type args
7244         
7245         * dbus/dbus-connection.c (dbus_connection_send_with_reply): fix a
7246         bunch of memleak and logic bugs
7247         
7248 2004-03-23  Owen Fraser-Green  <owen@discobabe.net>
7249
7250         * mono/Arguments.cs:
7251         * mono/Introspector.cs:
7252         * mono/Handler.cs:
7253         * mono/InterfaceProxy.cs:
7254         * mono/Message.cs
7255         * mono/ProxyBuilder.cs:
7256         * mono/Service.cs:
7257         Added InterfaceProxy class to avoid building proxies for every
7258         object.
7259
7260         * dbus-message.h:
7261         * dbus-message.c (dbus_message_append_args_valist)
7262         (dbus_message_iter_get_object_path)
7263         (dbus_message_iter_get_object_path_array)
7264         (dbus_message_iter_append_object_path)
7265         (dbus_message_iter_append_object_path_array):
7266         Added object_path iter functions to handle OBJECT_PATH arguments
7267         
7268 2004-03-23  Owen Fraser-Green  <owen@discobabe.net>
7269
7270         First checkin of mono bindings.
7271         * configure.in:
7272         * Makefile.am:
7273         Build stuff for the bindings
7274         * dbus-sharp.pc.in: Added for pkgconfig
7275         
7276 2004-03-21  Havoc Pennington  <hp@redhat.com>
7277
7278         * test/test-service.c (main): remove debug spew
7279
7280 2004-03-21  Olivier Andrieu  <oliv__a@users.sourceforge.net>
7281
7282         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): accept empty
7283         arrays
7284
7285         * dbus/dbus-message.h, bus/dbus-message.c (dbus_message_iter_init)
7286         (dbus_message_iter_init_array_iterator)
7287         (dbus_message_iter_init_dict_iterator): return a dbus_bool_t to
7288         indicate whether the iterator is empty
7289
7290         * dbus/dbus-pending-call.c, dbus/dbus-server.c: silence compiler
7291         warnings
7292
7293 2004-03-19  Havoc Pennington  <hp@redhat.com>
7294
7295         * NEWS: 0.21 updates
7296
7297         * configure.in: 0.21
7298
7299         * doc/Makefile.am: add all XMLTO usage to DBUS_XML_DOCS_ENABLED
7300         
7301         * python/Makefile.am: change to avoid dist of dbus_bindings.c so
7302         you don't need pyrex to make dist
7303
7304         * qt/Makefile.am (libdbus_qt_1_la_SOURCES): add integrator.h to
7305         sources; run moc
7306         
7307 2004-03-18  Richard Hult  <richard@imendio.com>
7308
7309         * dbus/dbus-message.c (dbus_message_get_auto_activation) 
7310         (dbus_message_set_auto_activation): Add doxygen docs.
7311
7312 2004-03-16  Richard Hult  <richard@imendio.com>
7313
7314         * bus/activation.c: (bus_activation_service_created),
7315         (bus_activation_send_pending_auto_activation_messages),
7316         (bus_activation_activate_service):
7317         * bus/activation.h:
7318         * bus/dispatch.c: (bus_dispatch),
7319         (check_nonexistent_service_auto_activation),
7320         (check_service_auto_activated),
7321         (check_segfault_service_auto_activation),
7322         (check_existent_service_auto_activation), (bus_dispatch_test):
7323         * bus/driver.c: (bus_driver_handle_activate_service):
7324         * bus/services.c: (bus_registry_acquire_service):
7325         * dbus/dbus-message.c: (dbus_message_set_auto_activation),
7326         (dbus_message_get_auto_activation):
7327         * dbus/dbus-message.h:
7328         * dbus/dbus-protocol.h: Implement auto-activation.
7329         
7330         * doc/dbus-specification.xml: Add auto-activation to the spec.
7331
7332 2004-03-12  Olivier Andrieu  <oliv__a@users.sourceforge.net>
7333
7334         * dbus/dbus-marshal.c (_dbus_marshal_get_arg_end_pos):
7335         fix a bug with CUSTOM types.
7336
7337         * dbus/dbus-message.c (message_iter_test, _dbus_message_test): add
7338         a unit test for this bug (used to fail).
7339
7340 2004-03-12  Mikael Hallendal  <micke@imendio.com>
7341
7342         * bus/activation.c:
7343         (babysitter_watch_callback): notify all pending activations waiting for
7344           the same exec that the activation failed.
7345         (bus_activation_activate_service): shortcut the activation if we 
7346           already waiting for the same executable to start up.
7347
7348 2004-03-12  Mikael Hallendal  <micke@imendio.com>
7349
7350         * bus/activation.c: 
7351         - Added service file reloading. 
7352           Each service files directory is kept in an hash table in 
7353           BusActivation and each BusActivationEntry knows what .service-file it
7354           was read from. So when you try to activate a service the bus will 
7355           check if it's been updated, removed or if new .service-files has 
7356           been installed.
7357         - Test code at the bottom for the service file reloading.
7358         * bus/test-main.c: (main):
7359         * bus/test.h:
7360         - added service reloading test.
7361         * dbus/dbus-sysdeps.c: 
7362         * dbus/dbus-sysdeps.h: (_dbus_delete_directory): Added.
7363
7364 2004-03-08  Michael Meeks  <michael@ximian.com>
7365
7366         * dbus/dbus-connection.c (_dbus_connection_block_for_reply): 
7367         bail immediately if disconnected, to avoid busy loop.
7368
7369         * dbus/dbus-message.c (dbus_message_iter_get_args_valist):
7370         cleanup cut/paste/inefficiency.
7371
7372 2004-03-01  David Zeuthen  <david@fubar.dk>
7373
7374         * dbus/dbus-string.c (_dbus_string_append_printf_valist): Fix a
7375         bug where args were used twice. This bug resulted in a segfault
7376         on a Debian/PPC system when starting the messagebus daemon. Include
7377         dbus-sysdeps.h for DBUS_VA_COPY
7378
7379         * dbus/dbus-sysdeps.h: Define DBUS_VA_COPY if neccessary. From GLib
7380
7381         * configure.in: Check for va_copy; define DBUS_VA_COPY to the
7382         appropriate va_copy implementation. From GLib
7383         
7384 2004-02-24  Joe Shaw  <joe@ximian.com>
7385
7386         * bus/services.c (bus_registry_acquire_service): We need to pass
7387         in the service name to dbus_set_error() to prevent a crash.
7388
7389 2003-12-26  Anders Carlsson  <andersca@gnome.org>
7390
7391         * AUTHORS: Reveal my True identity.
7392
7393 2003-12-17  Mikael Hallendal  <micke@imendio.com>
7394
7395         * dbus/dbus-message.c: (dbus_message_append_args_valist): 
7396         - Added case for DBUS_TYPE_BYTE, patch from Johan Hedberg.
7397
7398 2003-12-13  Mikael Hallendal  <micke@imendio.com>
7399
7400         * doc/TODO: Added not about better error check of configuration files.
7401
7402 2003-12-02  Richard Hult  <richard@imendio.com>
7403
7404         * Update AFL version to 2.0 throughout the source files to reflect
7405         the update that was done a while ago.
7406
7407 2003-12-02  Richard Hult  <richard@imendio.com>
7408
7409         * dbus/dbus-message.c (dbus_message_iter_append_dict): Set
7410         wrote_dict_key to FALSE on the iter that the dict is appended to,
7411         just like when appending other types. Fixes a bug where a dict
7412         couldn't be put inside a dict.
7413         (dbus_message_iter_append_dict_key): Fix typo in warning message.
7414         (message_iter_test, _dbus_message_test): Add test case for dict
7415         inside dict.
7416
7417 2003-12-01  David Zeuthen  <david@fubar.dk>
7418
7419         * python/dbus.py: Add the actual message when calling the reciever
7420         of a signal such that parameters can be inspected. Add the method
7421         remove_signal_receiver
7422         
7423 2003-11-26  Mikael Hallendal  <micke@imendio.com>
7424
7425         * bus/*.[ch]:
7426         * dbus/*.[ch]:
7427         * glib/*.[ch]: Made ref functions return the pointer
7428
7429 2003-11-25  Zack Rusin  <zack@kde.org>
7430
7431         * qt/integrator.h, qt/integrator.cpp: Adding handling of DBusServer,
7432
7433         * qt/server.h, qt/server.cpp, qt/Makefile.am: Adding DBusServer 
7434         wrappers,
7435
7436         * qt/connection.h, qt/connection.cpp: Adjusting to changes in 
7437         the Integrator and to better fit with the server,
7438
7439 2003-11-24  Zack Rusin  <zack@kde.org>
7440
7441         * qt/connection.h, qt/connection.cpp: removing initDbus method since
7442         the integrator handles it now
7443
7444         * qt/integrator.h, qt/integrator.cpp: reworking handling of timeouts,
7445         since QTimer wasn't really meant to be used the way DBusTimeout is
7446
7447 2003-11-24  Zack Rusin  <zack@kde.org>
7448
7449         * qt/integrator.h, qt/integrator.cpp, Makefile.am: Adding 
7450         Integrator class which integrates D-BUS with the Qt event loop,
7451
7452         * qt/connection.h, qt/connection.cpp: Move all the code which
7453         was dealing with D-BUS integration to the Integrator class,
7454         and start using Integrator,
7455
7456 2003-11-23  Zack Rusin  <zack@kde.org>
7457
7458         * qt/connection.h, qt/connection.cpp: Adding the DBusConnection 
7459         wrapper
7460
7461         * qt/message.h, qt/message.cpp: updating to the current D-BUS api,
7462         switching namespaces to DBusQt, reworking the class,
7463
7464         * Makefile.cvs: switching dependencies so that it matches KDE 
7465         schematics,
7466         
7467         * qt/Makefile.am: adding connection.{h,cpp} and message.{h,cpp} to 
7468         the library
7469
7470 2003-11-19  Havoc Pennington  <hp@redhat.com>
7471
7472         * NEWS: update
7473
7474         * configure.in: bump version to 0.20
7475
7476         * configure.in (have_qt): add yet another place to look for qt
7477         (someone hand trolltech a .pc file...)
7478
7479 2003-11-01  Havoc Pennington  <hp@redhat.com>
7480
7481         * doc/dbus-specification.xml: add state machine docs on the auth
7482         protocol; just a first draft, I'm sure it's wrong.      
7483
7484 2003-10-28  David Zeuthen  <david@fubar.dk>
7485
7486         * python/dbus_bindings.pyx.in: add get_dict to handle dictionaries
7487         return types. Fixup TYPE_* to reflect changes in dbus/dbus-protocol.h
7488         
7489 2003-10-28  Havoc Pennington  <hp@redhat.com>
7490
7491         * dbus/dbus-message.c (get_next_field): delete unused function
7492
7493 2003-10-28  Havoc Pennington  <hp@redhat.com>
7494
7495         * bus/expirelist.c (do_expiration_with_current_time): detect
7496         failure of the expire_func due to OOM
7497
7498         * bus/connection.c (bus_pending_reply_expired): return FALSE on OOM
7499
7500         * bus/dispatch.c (check_send_exit_to_service): fix to handle the
7501         NoReply error that's now created by the bus when the service exits
7502
7503 2003-10-28  Havoc Pennington  <hp@redhat.com>
7504
7505         * dbus/dbus-message.c (_dbus_message_test): enable and fix the
7506         tests for set_path, set_interface, set_member, etc.
7507
7508         * dbus/dbus-string.c (_dbus_string_insert_bytes): allow 0 bytes
7509
7510         * dbus/dbus-message.c (set_string_field): always just delete and
7511         re-append the field; accept NULL for deletion
7512         (re_align_fields_recurse): reimplement
7513         
7514 2003-10-26  Havoc Pennington  <hp@redhat.com>
7515
7516         * dbus/dbus-connection.c: fix docs to properly describe the
7517         disconnected message
7518         (_dbus_connection_notify_disconnected): remove this function; 
7519         we can't synchronously add the disconnected message, we have to 
7520         do it after we've queued any remaining real messages
7521         (_dbus_connection_get_dispatch_status_unlocked): queue the
7522         disconnect message only if the transport has finished queueing all
7523         its real messages and is disconnected.
7524         (dbus_connection_disconnect): update the dispatch status here
7525
7526 2003-10-22  Havoc Pennington  <hp@redhat.com>
7527
7528         * bus/bus.c (bus_context_check_security_policy): fix up assertion
7529
7530         * bus/connection.c (bus_transaction_send_from_driver): set the
7531         destination to the connection's base service
7532
7533 2003-10-20  Havoc Pennington  <hp@redhat.com>
7534
7535         hmm, make check is currently not passing.
7536         
7537         * doc/dbus-specification.xml: add requirement that custom type
7538         names follow the same rules as interface names.
7539
7540         * dbus/dbus-protocol.h: change some of the byte codes, to avoid
7541         duplication and allow 'c' to be 'custom'; dict is now 'm' for
7542         'map'
7543
7544         * doc/dbus-specification.xml: update type codes to match
7545         dbus-protocol.h, using the ASCII byte values. Rename type NAMED to
7546         CUSTOM. Add type OBJECT_PATH to the spec.
7547
7548 2003-10-17  Havoc Pennington  <hp@redhat.com>
7549
7550         * bus/driver.c (create_unique_client_name): use "." as separator
7551         in base service names instead of '-'
7552
7553         * dbus/dbus-string.c (_dbus_string_get_byte): allow getting nul
7554         byte at the end of the string
7555
7556         * dbus/dbus-internals.h (_DBUS_LIKELY, _DBUS_UNLIKELY): add
7557         optimization macros since string validation seems to be a slow
7558         point.
7559         
7560         * doc/dbus-specification.xml: restrict valid
7561         service/interface/member/error names. Add test suite code for the
7562         name validation.
7563
7564         * dbus/dbus-string.c: limit service/interface/member/error names 
7565         to [0-9][A-Z][a-z]_
7566
7567         * dbus/dbus-connection.c (dbus_connection_dispatch): add missing
7568         format arg to verbose spew
7569
7570         * glib/dbus-gproxy.c (dbus_gproxy_call_no_reply): if not out of
7571         memory, return instead of g_error
7572
7573         * test/test-service.c (path_message_func): support emitting a
7574         signal on request
7575
7576         * dbus/dbus-bus.c (init_connections_unlocked): only fill in
7577         activation bus type if DBUS_BUS_ACTIVATION was set; default to
7578         assuming the activation bus was the session bus so that services
7579         started manually will still register.
7580         (init_connections_unlocked): fix so that in OOM situation we get
7581         the same semantics when retrying the function
7582         
7583         * test/test-service.c (main): change to use path registration, to
7584         test those codepaths; register with DBUS_BUS_ACTIVATION rather
7585         than DBUS_BUS_SESSION
7586
7587 2003-10-16  Havoc Pennington  <hp@redhat.com>
7588
7589         * glib/dbus-gtest-main.c: bracket with #ifdef DBUS_BUILD_TESTS
7590
7591         * Makefile.am (GCOV_DIRS): remove "test", we don't care about test
7592         coverage of the tests
7593         (coverage-report.txt): don't move the .da and .bbg files around
7594
7595 2003-10-16  Havoc Pennington  <hp@redhat.com>
7596
7597         * bus/bus.c (struct BusContext): remove struct field I didn't mean
7598         to put there
7599
7600 2003-10-16  Havoc Pennington  <hp@redhat.com>
7601
7602         * bus/connection.c (bus_pending_reply_expired): either cancel or
7603         execute, not both
7604         (bus_connections_check_reply): use unlink, not remove_link, as we
7605         don't want to free the link; fixes double free mess
7606
7607         * dbus/dbus-pending-call.c (dbus_pending_call_block): fix in case
7608         where no reply was received
7609
7610         * dbus/dbus-connection.c (_dbus_pending_call_complete_and_unlock):
7611         fix a refcount leak
7612
7613         * bus/signals.c (match_rule_matches): add special cases for the
7614         bus driver, so you can match on sender/destination for it.
7615
7616         * dbus/dbus-sysdeps.c (_dbus_abort): print backtrace if
7617         DBUS_PRINT_BACKTRACE is set
7618
7619         * dbus/dbus-internals.c: add pid to assertion failure messages
7620
7621         * dbus/dbus-connection.c: add message type code to the debug spew
7622
7623         * glib/dbus-gproxy.c (gproxy_get_match_rule): match rules want
7624         sender=foo not service=foo
7625
7626         * dbus/dbus-bus.c (dbus_bus_get): if the activation bus is the
7627         session bus but DBUS_SESSION_BUS_ADDRESS isn't set, use 
7628         DBUS_ACTIVATION_ADDRESS instead
7629
7630         * bus/activation.c: set DBUS_SESSION_BUS_ADDRESS,
7631         DBUS_SYSTEM_BUS_ADDRESS if appropriate
7632
7633         * bus/bus.c (bus_context_new): handle OOM copying bus type into
7634         context struct
7635
7636         * dbus/dbus-message.c (dbus_message_iter_get_object_path): new function
7637         (dbus_message_iter_get_object_path_array): new function (half
7638         finished, disabled for the moment)
7639         
7640         * glib/dbus-gproxy.c (dbus_gproxy_end_call): properly handle
7641         DBUS_MESSAGE_TYPE_ERROR
7642
7643         * tools/dbus-launch.c (babysit): support DBUS_DEBUG_OUTPUT to
7644         avoid redirecting stderr to /dev/null
7645         (babysit): close stdin if not doing the "exit_with_session" thing
7646
7647         * dbus/dbus-sysdeps.c (_dbus_become_daemon): delete some leftover
7648         debug code; change DBUS_DEBUG_OUTPUT to only enable stderr, not
7649         stdout/stdin, so things don't get confused
7650         
7651         * bus/system.conf.in: fix to allow replies, I modified .conf
7652         instead of .conf.in again.
7653
7654 2003-10-14  David Zeuthen  <david@fubar.dk>
7655
7656         * python/dbus_bindings.pyx.in (MessageIter.get): fixed typo in
7657         argtype to arg_type when raising unknown arg type exception.
7658         Changed type list to reflect the changes in dbus-protocol.h so 
7659         the bindings actually work.
7660
7661 2003-10-14  Havoc Pennington  <hp@redhat.com>
7662
7663         * test/decode-gcov.c: support gcc 3.3 also, though gcc 3.3 seems
7664         to have a bug keeping it from outputting the .da files sometimes
7665         (string_get_string): don't append garbage nul bytes to the string.
7666
7667 2003-10-15  Seth Nickell  <seth@gnome.org>
7668
7669         * python/Makefile.am:
7670
7671         Include dbus_h_wrapper.h in the dist tarball.
7672
7673 2003-10-14  Havoc Pennington  <hp@redhat.com>
7674
7675         * bus/bus.c (bus_context_check_security_policy): revamp this to
7676         work more sanely with new policy-based requested reply setup
7677
7678         * bus/connection.c (bus_transaction_send_from_driver): set bus
7679         driver messages as no reply
7680
7681         * bus/policy.c (bus_client_policy_check_can_receive): handle a
7682         requested_reply attribute on allow/deny rules
7683
7684         * bus/system.conf: add <allow requested_reply="true"/>
7685
7686         * bus/driver.c (bus_driver_handle_message): fix check for replies
7687         sent to the bus driver, which was backward. How did this ever work
7688         at all though? I think I'm missing something.
7689
7690         * dbus/dbus-message.c (decode_header_data): require error and
7691         method return messages to have a reply serial field to be valid
7692         (_dbus_message_loader_queue_messages): break up this function;
7693         validate that reply serial and plain serial are nonzero; 
7694         clean up the OOM/error handling.
7695         (get_uint_field): don't return -1 from this
7696         (dbus_message_create_header): fix signed/unsigned bug
7697
7698         * bus/connection.c (bus_connections_expect_reply): save serial of
7699         the incoming message, not reply serial
7700
7701 2003-10-14  Havoc Pennington  <hp@redhat.com>
7702
7703         * bus/connection.c: implement pending reply tracking using
7704         BusExpireList
7705
7706         * bus/bus.c (bus_context_check_security_policy): verify that a
7707         reply is pending in order to allow a reply to be sent. Deny 
7708         messages of unknown type.
7709
7710         * bus/dbus-daemon-1.1.in: update to mention new resource limits
7711
7712         * bus/bus.c (bus_context_get_max_replies_per_connection): new
7713         (bus_context_get_reply_timeout): new
7714
7715 2003-10-13  Seth Nickell  <seth@gnome.org>
7716
7717         * python/Makefile.am:
7718
7719         Pass "make distcheck": remove a couple files from DIST_FILES
7720         that weren't included in the final version.
7721
7722 2003-10-12  Havoc Pennington  <hp@pobox.com>
7723
7724         Added test code that 1) starts an actual bus daemon and 2) uses
7725         DBusGProxy; fixed bugs that were revealed by the test. Lots 
7726         more testing possible, but this is the basic framework.
7727         
7728         * glib/dbus-gproxy.c (dbus_gproxy_manager_unregister): remove
7729         empty proxy lists from the proxy list hash
7730
7731         * dbus/dbus-message.c (dbus_message_iter_get_args_valist): add a
7732         couple of return_if_fail checks
7733
7734         * dbus/dbus-pending-call.c (_dbus_pending_call_new): use dbus_new0
7735         to allocate, so everything is cleared to NULL as it should be.
7736
7737         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): pass
7738         source as data to dbus_connection_set_timeout_functions() as the 
7739         timeout functions expected
7740
7741         * test/glib/run-test.sh: add a little script to start up a message
7742         bus and run tests using it
7743
7744         * tools/dbus-launch.1: updates
7745
7746         * tools/dbus-launch.c (main): add --config-file option
7747
7748         * tools/dbus-launch.c (main): remove confusing else if (runprog)
7749         that could never be reached.
7750
7751         * dbus/dbus-message.c (dbus_message_new_method_return) 
7752         (dbus_message_new_error, dbus_message_new_signal): set the
7753         no-reply-expected flag on all these. Redundant, but may
7754         as well be consistent.
7755
7756 2003-10-11  Havoc Pennington  <hp@pobox.com>
7757
7758         * test/decode-gcov.c (function_solve_graph): make broken block
7759         graph a nonfatal error since it seems to be broken. Need to debug
7760         this.
7761
7762         * dbus/dbus-marshal.c (_dbus_type_is_valid): new function since we
7763         can't just check type > INVALID < LAST anymore
7764
7765         * dbus/dbus-message.c (dbus_message_get_signature): new function
7766         (dbus_message_has_signature): new function
7767         (struct DBusMessage): add signature field (right now it isn't sent
7768         over the wire, just generated on the fly)
7769         (dbus_message_copy): copy the signature, and init strings to
7770         proper length to avoid some reallocs
7771         (dbus_message_iter_init_array_iterator): return void, since it
7772         can't fail
7773         (dbus_message_iter_init_dict_iterator): return void since it can't fail
7774         (_dbus_message_loader_queue_messages): add silly temporary hack to
7775         fill in message->signature on load
7776
7777         * dbus/dbus-protocol.h: change DBUS_TYPE_* values to be ASCII
7778         characters, so they are relatively human-readable.
7779
7780 2003-10-11  Havoc Pennington  <hp@pobox.com>
7781
7782         * dbus/dbus-message.c (_dbus_message_test): add more test
7783         coverage, but #if 0 for now since they uncover a bug 
7784         not fixed yet; I think in re_align_field_recurse()
7785         (re_align_field_recurse): add FIXME about broken assertion
7786
7787         * dbus/dbus-sysdeps.c (_dbus_sysdeps_test): add more test coverage
7788
7789         * bus/connection.c: share a couple code bits with expirelist.c
7790
7791         * bus/expirelist.h, bus/expirelist.c: implement a generic
7792         expire-items-after-N-seconds facility, was going to share between
7793         expiring connections and replies, decided not to use for expiring
7794         connections for now.
7795
7796         * COPYING: include AFL 2.0 (still need to change all the file headers)
7797
7798 2003-10-09  Havoc Pennington  <hp@redhat.com>
7799
7800         * configure.in: define DBUS_HAVE_GCC33_GCOV if we have
7801         gcc 3.3. Not that we do anything about it yet.
7802
7803         * bus/signals.c (bus_match_rule_parse): impose max length on the
7804         match rule text
7805
7806         * dbus/dbus-protocol.h: add DBUS_MAXIMUM_MATCH_RULE_LENGTH
7807
7808 2003-10-09  Havoc Pennington  <hp@redhat.com>
7809
7810         Make matching rules theoretically work (add parser).
7811         
7812         * bus/bus.c (bus_context_check_security_policy): fix up to handle
7813         the case where destination is explicitly specified as bus driver
7814         and someone else is eavesdropping.
7815         
7816         * bus/policy.c (bus_client_policy_check_can_receive): fix up
7817         definition of eavesdropping and assertion
7818
7819         * tools/dbus-send.c (main): use dbus_message_type_from_string
7820
7821         * bus/signals.c (bus_match_rule_parse): implement
7822
7823         * dbus/dbus-message.c (dbus_message_type_from_string): new
7824
7825         * dbus/dbus-errors.h (DBUS_ERROR_MATCH_RULE_INVALID): add
7826
7827 2003-10-02  Havoc Pennington  <hp@pobox.com>
7828
7829         * glib/dbus-gproxy.c (dbus_gproxy_call_no_reply): rename from
7830         dbus_gproxy_oneway_call
7831
7832         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main) 
7833         (dbus_server_setup_with_g_main): fix to allow calling them more
7834         than once on the same args
7835         (dbus_bus_get_with_g_main): new function
7836
7837 2003-10-02  Havoc Pennington  <hp@redhat.com>
7838
7839         * doc/dbus-tutorial.xml: write some stuff
7840
7841 2003-09-29  Havoc Pennington  <hp@pobox.com>
7842
7843         * configure.in: split checks for Doxygen from XML docs, check for
7844         xmlto
7845
7846         * doc/Makefile.am: XML-ify all the docs, and add a blank
7847         dbus-tutorial.xml
7848
7849 2003-09-29  Havoc Pennington  <hp@pobox.com>
7850
7851         * Merge dbus-object-names branch. To see the entire patch 
7852         do cvs diff -r DBUS_OBJECT_NAMES_BRANCHPOINT -r dbus-object-names,
7853         it's huuuuge though.
7854         To revert, I tagged DBUS_BEFORE_OBJECT_NAMES_MERGE.
7855         
7856 2003-09-28  Havoc Pennington  <hp@pobox.com>
7857
7858         * HACKING: update to reflect new server
7859
7860 2003-09-26  Seth Nickell  <seth@gnome.org>
7861
7862         * python/dbus.py:
7863         * python/examples/example-signals.py:
7864
7865         Start implementing some notions of signals. The API
7866         is really terrible, but they sort of work (with the
7867         exception of being able to filter by service, and to
7868         transmit signals *as* a particular service). Need to
7869         figure out how to make messages come from the service
7870         we registered :-(
7871         
7872         * python/dbus_bindings.pyx.in:
7873
7874         Removed duplicate message_handler callbacks.
7875         
7876 2003-09-25  Havoc Pennington  <hp@redhat.com>
7877
7878         * bus/session.conf.in: fix my mess
7879
7880 2003-09-25  Havoc Pennington  <hp@pobox.com>
7881
7882         * bus/session.conf.in: fix security policy, reported by Seth Nickell
7883
7884 2003-09-25  Seth Nickell  <seth@gnome.org>
7885
7886         * python/examples/example-service.py:
7887
7888         Johan notices complete wrong code in example-service, but
7889         completely wrong in a way that works exactly the same (!).
7890         Johan is confused, how could this possibly work? Example
7891         code fails to serve purpose of making things clear.
7892         Seth fixes.
7893
7894 2003-09-25  Mark McLoughlin  <mark@skynet.ie>
7895
7896         * doc/dbus-specification.sgml: don't require header fields
7897         to be 4-byte aligned and specify that fields should be
7898         distinguished from padding by the fact that zero is not
7899         a valid field name.
7900         
7901         * doc/TODO: remove re-alignment item and add item to doc
7902         the OBJECT_PATH type.
7903         
7904         * dbus/dbus-message.c:
7905         (HeaderField): rename the original member to value_offset
7906         and introduce a name_offset member to keep track of where
7907         the field actually begins.
7908         (adjust_field_offsets): remove.
7909         (append_int_field), (append_uint_field),
7910         (append_string_field): don't align the start of the header
7911         field to a 4-byte boundary.
7912         (get_next_field): impl finding the next marhsalled field
7913         after a given field.
7914         (re_align_field_recurse): impl re-aligning a number of
7915         already marshalled fields.
7916         (delete_field): impl deleting a field of any type and
7917         re-aligning any following fields.
7918         (delete_int_or_uint_field), (delete_string_field): remove.
7919         (set_int_field), (set_uint_field): no need to re-check
7920         that we have the correct type for the field.
7921         (set_string_field): ditto and impl re-aligning any
7922         following fields.
7923         (decode_header_data): update to take into account that
7924         the fields aren't 4-byte aligned any more and the new
7925         way to distinguish padding from header fields. Also,
7926         don't exit when there is too much header padding.
7927         (process_test_subdir): print the directory.
7928         (_dbus_message_test): add test to make sure a following
7929         field is re-aligned correctly after field deletion.
7930         
7931         * dbus/dbus-string.[ch]:
7932         (_dbus_string_insert_bytes): rename from insert_byte and
7933         allow the insert of multiple bytes.
7934         (_dbus_string_test): test inserting multiple bytes.
7935
7936         * dbus/dbus-marshal.c: (_dbus_marshal_set_string): add
7937         warning note to docs about having to re-align any
7938         marshalled values following the string.
7939         
7940         * dbus/dbus-message-builder.c:
7941         (append_string_field), (_dbus_message_data_load):
7942         don't align the header field.
7943         
7944         * dbus/dbus-auth.c: (process_test_subdir): print the
7945         directory.
7946         
7947         * test/break-loader.c: (randomly_add_one_byte): upd. for
7948         insert_byte change.
7949         
7950         * test/data/invalid-messages/bad-header-field-alignment.message:
7951         new test case.
7952         
7953         * test/data/valid-messages/unknown-header-field.message: shove
7954         a dict in the unknown field.
7955
7956 2003-09-25  Seth Nickell  <seth@gnome.org>
7957
7958         * python/dbus.py:
7959         * python/dbus_bindings.pyx.in:
7960
7961         Handle return values.
7962         
7963         * python/examples/example-client.py:
7964         * python/examples/example-service.py:
7965
7966         Pass back return values from the service to the client.
7967         
7968 2003-09-24  Seth Nickell  <seth@gnome.org>
7969
7970         * python/dbus.py:
7971
7972         Connect Object methods (when you are sharing an object) up... pass
7973         in a list of methods to be shared. Sharing all the methods just
7974         worked out too weird. You can now create nice Services over the
7975         DBus in Python. :-)
7976         
7977         * python/dbus_bindings.pyx.in:
7978
7979         Keep references to user_data tuples passed into C functions so 
7980         Python doesn't garbage collect on us.
7981
7982         Implement MethodReturn and Error subclasses of Message for creating
7983         DBusMessage's of those types.
7984         
7985         * python/examples/example-client.py:
7986         * python/examples/example-service.py:
7987
7988         Simple example code showing both how create DBus services and objects,
7989         and how to use them.
7990
7991 2003-09-23  Havoc Pennington  <hp@pobox.com>
7992
7993         * glib/dbus-gproxy.c (dbus_gproxy_manager_filter): implement
7994
7995 2003-09-23  Havoc Pennington  <hp@redhat.com>
7996
7997         * glib/dbus-gproxy.c (dbus_gproxy_connect_signal): implement
7998         (dbus_gproxy_disconnect_signal): implement
7999         (dbus_gproxy_manager_remove_signal_match): implement
8000         (dbus_gproxy_manager_add_signal_match): implement
8001         (dbus_gproxy_oneway_call): implement
8002
8003 2003-09-23  Havoc Pennington  <hp@pobox.com>
8004
8005         * glib/dbus-gproxy.c (struct DBusGProxy): convert to a GObject
8006         subclass. This means dropping the transparent thread safety of the
8007         proxy; you now need a separate proxy per-thread, or your own
8008         locking on the proxy. Probably right anyway.
8009         (dbus_gproxy_ref, dbus_gproxy_unref): nuke, just use g_object_ref
8010
8011 2003-09-22  Havoc Pennington  <hp@redhat.com>
8012
8013         * glib/dbus-gproxy.c (dbus_gproxy_manager_get): implement
8014
8015 2003-09-21  Seth Nickell  <seth@gnome.org>
8016
8017         First checkin of the Python bindings.
8018         
8019         * python/.cvsignore:
8020         * python/Makefile.am:
8021         * python/dbus_bindings.pyx.in:
8022         * python/dbus_h_wrapper.h:
8023
8024         Pieces for Pyrex to operate on, building a dbus_bindings.so
8025         python module for low-level access to the DBus APIs.
8026         
8027         * python/dbus.py:
8028
8029         High-level Python module for accessing DBus objects.
8030
8031         * configure.in:
8032         * Makefile.am:
8033
8034         Build stuff for the python bindings.
8035
8036         * acinclude.m4:
8037
8038         Extra macro needed for finding the Python C header files.
8039
8040 2003-09-21  Havoc Pennington  <hp@pobox.com>
8041
8042         * glib/dbus-gproxy.c (dbus_gproxy_manager_new): start
8043         implementing the proxy manager, didn't get very far.
8044
8045         * dbus/dbus-bus.c (dbus_bus_add_match): new
8046         (dbus_bus_remove_match): new
8047
8048         * glib/dbus-gproxy.c (dbus_gproxy_new_for_service): add a
8049         path_name argument; adjust the other not-yet-implemented 
8050         gproxy constructors to be what I think they should be.
8051
8052 2003-09-21  Havoc Pennington  <hp@pobox.com>
8053
8054         * dbus/dbus-bus.c (dbus_bus_get): set exit_on_disconnect to TRUE
8055         by default for message bus connections.
8056
8057         * dbus/dbus-connection.c (dbus_connection_dispatch): exit if
8058         exit_on_disconnect flag is set and we process the disconnected
8059         signal.
8060         (dbus_connection_set_exit_on_disconnect): new function
8061
8062 2003-09-21  Havoc Pennington  <hp@pobox.com>
8063
8064         Get matching rules mostly working in the bus; only actually
8065         parsing the rule text remains. However, the client side of
8066         "signal connections" hasn't been started, this patch is only the
8067         bus side.
8068         
8069         * dbus/dispatch.c: fix for the matching rules changes
8070         
8071         * bus/driver.c (bus_driver_handle_remove_match)
8072         (bus_driver_handle_add_match): send an ack reply from these
8073         method calls
8074
8075         * glib/dbus-gproxy.c (dbus_gproxy_begin_call): fix order of
8076         arguments, reported by Seth Nickell
8077
8078         * bus/config-parser.c (append_rule_from_element): support
8079         eavesdrop=true|false attribute on policies so match rules 
8080         can be prevented from snooping on the system bus.
8081
8082         * bus/dbus-daemon-1.1.in: consistently use terminology "sender"
8083         and "destination" in attribute names; fix some docs bugs; 
8084         add eavesdrop=true|false attribute
8085
8086         * bus/driver.c (bus_driver_handle_add_match)
8087         (bus_driver_handle_remove_match): handle AddMatch, RemoveMatch
8088         messages
8089
8090         * dbus/dbus-protocol.h (DBUS_SERVICE_ORG_FREEDESKTOP_BROADCAST): get
8091         rid of broadcast service concept, signals are just always broadcast
8092
8093         * bus/signals.c, bus/dispatch.c, bus/connection.c, bus/bus.c:
8094         mostly implement matching rules stuff (currently only exposed as signal
8095         connections)
8096
8097 2003-09-21  Mark McLoughlin  <mark@skynet.ie>
8098
8099         * doc/dbus-specification.sgml: Change the header field name
8100         to be an enum and update the rest of the spec to reference
8101         the fields using the conventinal name.
8102
8103         * dbus/dbus-protocol.h: update to reflect the spec.
8104
8105         * doc/TODO: add item to remove the 4 byte alignment requirement.
8106         
8107         * dbus/dbus-message.c: Remove the code to generalise the
8108         header/body length and serial number header fields as named
8109         header fields so we can reference field names using the 
8110         protocol values.
8111         (append_int_field), (append_uint_field), (append_string_field):
8112         Append the field name as a byte rather than four chars.
8113         (delete_int_or_uint_field), (delete_string_field): reflect the
8114         fact that the field name and typecode now occupy 4 bytes instead
8115         of 8.
8116         (decode_string_field), (decode_header_data): update to reflect
8117         protocol changes and move the field specific encoding from
8118         decode_string_field() back into decode_header_data().
8119         
8120         * dbus/dbus-internals.[ch]: (_dbus_header_field_to_string):
8121         Add utility to aid debugging.
8122         
8123         * dbus/dbus-message-builder.c:
8124         (append_string_field), (_dbus_message_data_load): Update to
8125         reflect protocol changes; Change the FIELD_NAME directive
8126         to HEADER_FIELD and allow it to take the field's conventional
8127         name rather than the actual value.
8128         
8129         * test/data/*/*.message: Update to use HEADER_FIELD instead
8130         of FIELD_NAME; Always align the header on an 8 byte boundary
8131         *before* updating the header length.
8132
8133 2003-09-15  Havoc Pennington  <hp@pobox.com>
8134
8135         * dbus/dbus-pending-call.c: add the get/set object data
8136         boilerplate as for DBusConnection, etc. Use generic object data
8137         for the notify callback.
8138
8139         * glib/dbus-gparser.c (parse_node): parse child nodes
8140
8141         * tools/dbus-viewer.c: more hacking on the dbus-viewer
8142         
8143         * glib/dbus-gutils.c (_dbus_gutils_split_path): add a file to
8144         contain functions shared between the convenience lib and the
8145         installed lib
8146
8147         * glib/Makefile.am (libdbus_glib_1_la_LDFLAGS): add
8148         -export-symbols-regex to the GLib library
8149
8150         * dbus/dbus-object-tree.c (_dbus_object_tree_dispatch_and_unlock):
8151         fix the locking in here, and add a default handler for
8152         Introspect() that just returns sub-nodes.
8153
8154 2003-09-14  Havoc Pennington  <hp@pobox.com>
8155
8156         * glib/dbus-gthread.c (dbus_g_thread_init): rename to make g_foo
8157         rather than gfoo consistent
8158
8159         * glib/dbus-gproxy.h: delete for now, move contents to
8160         dbus-glib.h, because the include files don't work right since we
8161         aren't in the dbus/ subdir.
8162         
8163         * glib/dbus-gproxy.c (dbus_gproxy_send): finish implementing
8164         (dbus_gproxy_end_call): finish
8165         (dbus_gproxy_begin_call): finish
8166
8167         * glib/dbus-gmain.c (dbus_set_g_error): new
8168
8169         * glib/dbus-gobject.c (handle_introspect): include information
8170         about child nodes in the introspection
8171
8172         * dbus/dbus-connection.c (dbus_connection_list_registered): new
8173         function to help in implementation of introspection
8174
8175         * dbus/dbus-object-tree.c
8176         (_dbus_object_tree_list_registered_and_unlock): new function
8177
8178 2003-09-12  Havoc Pennington  <hp@pobox.com>
8179
8180         * glib/dbus-gidl.h: add common base class for all the foo_info
8181         types
8182
8183         * tools/dbus-viewer.c: add GTK-based introspection UI thingy
8184         similar to kdcop
8185
8186         * test/Makefile.am: try test srcdir -ef . in addition to test
8187         srcdir = ., one of them should work (yeah lame)
8188         
8189         * glib/Makefile.am: build the "idl" parser stuff as a convenience
8190         library
8191         
8192         * glib/dbus-gparser.h: make description_load routines return
8193         NodeInfo* not Parser*
8194
8195         * Makefile.am (SUBDIRS): build test dir after all library dirs
8196
8197         * configure.in: add GTK+ detection
8198
8199 2003-09-07  Havoc Pennington  <hp@pobox.com>
8200
8201         * Make Doxygen contented.
8202
8203 2003-09-07  Havoc Pennington  <hp@pobox.com>
8204
8205         * doc/dbus-specification.sgml: more updates
8206
8207 2003-09-06  Havoc Pennington  <hp@pobox.com>
8208
8209         * doc/dbus-specification.sgml: partial updates
8210
8211         * bus/dbus-daemon-1.1.in: fix the config file docs for the
8212         zillionth time; hopefully I edited the right file this time.
8213
8214         * bus/config-parser.c (append_rule_from_element): support
8215         send_type, send_path, receive_type, receive_path
8216
8217         * bus/policy.c: add message type and path to the list of things
8218         that can be "firewalled"
8219
8220 2003-09-06  Havoc Pennington  <hp@pobox.com>
8221
8222         * dbus/dbus-connection.c (dbus_connection_register_fallback): add this
8223         (dbus_connection_register_object_path): make this not handle
8224         messages to paths below the given path
8225
8226 2003-09-03  Havoc Pennington  <hp@pobox.com>
8227
8228         * test/glib/Makefile.am: add this with random glib-linked test
8229         programs
8230
8231         * glib/Makefile.am: remove the random test programs from here,
8232         leave only the unit tests
8233
8234         * glib/dbus-gobject.c (_dbus_gobject_test): add test for 
8235         uscore/javacaps conversion, and fix     
8236         (get_object_property, set_object_property): change to .NET
8237         convention for mapping props to methods, set_FooBar/get_FooBar, 
8238         since one language has such a convention we may as well copy it. 
8239         Plus real methods in either getFooBar or get_foo_bar style won't 
8240         collide with this convention.
8241
8242 2003-09-01  Havoc Pennington  <hp@pobox.com>
8243
8244         * glib/dbus-gparser.c: implement
8245
8246         * glib/dbus-gobject.c: start implementing skeletons support
8247
8248         * configure.in: when disabling checks/assert, also define
8249         G_DISABLE_ASSERT and G_DISABLE_CHECKS
8250
8251 2003-09-01  Havoc Pennington  <hp@pobox.com>
8252
8253         * glib/Makefile.am: rearrange a bunch of files and get "make
8254         check" framework set up
8255
8256 2003-08-31  Havoc Pennington  <hp@pobox.com>
8257
8258         * fix build with --disable-tests
8259
8260 2003-08-30  Havoc Pennington  <hp@pobox.com>
8261
8262         * dbus/dbus-connection.c: purge DBusMessageHandler
8263
8264         * dbus/dbus-message-handler.c: remove DBusMessageHandler, just 
8265         use callbacks everywhere
8266
8267 2003-08-30  Havoc Pennington  <hp@pobox.com>
8268
8269         * test/data/valid-config-files/system.d/test.conf: change to 
8270         root for the user so warnings don't get printed
8271
8272         * dbus/dbus-message.c: add dbus_message_get_path,
8273         dbus_message_set_path
8274         
8275         * dbus/dbus-object-tree.c (do_test_dispatch): add test of
8276         dispatching to a path
8277
8278         * dbus/dbus-string.c (_dbus_string_validate_path): add
8279
8280         * dbus/dbus-marshal.c (_dbus_demarshal_object_path): implement
8281         (_dbus_marshal_object_path): implement
8282
8283         * dbus/dbus-protocol.h (DBUS_HEADER_FIELD_PATH): new header field 
8284         to contain the path to the target object
8285         (DBUS_HEADER_FIELD_SENDER_SERVICE): rename
8286         DBUS_HEADER_FIELD_SENDER to explicitly say it's the sender service
8287
8288 2003-08-30  Havoc Pennington  <hp@pobox.com>
8289
8290         * dbus/dbus-object-tree.c: write tests and fix the discovered bugs
8291
8292 2003-08-29  Havoc Pennington  <hp@pobox.com>
8293
8294         * dbus/dbus-object-tree.c: modify to allow overlapping paths to be
8295         registered
8296         (struct DBusObjectSubtree): shrink this
8297         a lot, since we may have a lot of them
8298         (_dbus_object_tree_free_all_unlocked): implement
8299         (_dbus_object_tree_dispatch_and_unlock): implement
8300
8301 2003-08-29  Havoc Pennington  <hp@pobox.com>
8302
8303         * dbus/dbus-internals.h: fix _DBUS_N_GLOBAL_LOCKS
8304
8305 2003-08-28  Havoc Pennington  <hp@pobox.com>
8306
8307         purge DBusObjectID
8308         
8309         * dbus/dbus-connection.c: port to no ObjectID, create a
8310         DBusObjectTree, rename ObjectTree to ObjectPath in public API
8311
8312         * dbus/dbus-connection.h (struct DBusObjectTreeVTable): delete 
8313         everything except UnregisterFunction and MessageFunction
8314         
8315         * dbus/dbus-marshal.c: port away from DBusObjectID, 
8316         add DBUS_TYPE_OBJECT_PATH
8317         
8318         * dbus/dbus-object-registry.[hc], dbus/dbus-object.[hc], 
8319         dbus/dbus-objectid.[hc]: remove these, we are moving to 
8320         path-based object IDs
8321
8322 2003-08-25  Havoc Pennington  <hp@pobox.com>
8323
8324         Just noticed that dbus_message_test is hosed, I wonder when I
8325         broke that. I thought make check was passing earlier...
8326         
8327         * dbus/dbus-object-tree.c: add new "object tree" to match DCOP 
8328         container tree, will replace most of dbus-object-registry
8329
8330         * dbus/dbus-string.c (_dbus_string_append_printf_valist): fix C99
8331         screwup
8332
8333 2003-08-19  Havoc Pennington  <hp@pobox.com>
8334
8335         * dbus/dbus-message.c (decode_string_field): support FIELD_SENDER
8336         (dbus_message_is_error): fix this function
8337
8338         * bus/dbus-daemon-1.1: clarify logic on when <deny>/<allow> rules
8339         match
8340
8341         * bus/policy.c (bus_client_policy_check_can_receive): fix code to
8342         reflect clarified man page
8343         (bus_client_policy_check_can_send): ditto
8344         
8345         * bus/session.conf.in: fixup
8346
8347         * bus/system.conf.in: fixup
8348
8349 2003-08-18  Havoc Pennington  <hp@redhat.com>
8350
8351         * dbus/dbus-hash.c (_dbus_hash_table_insert_two_strings): fix
8352
8353         * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
8354         dumb bug created earlier (wrong order of args to
8355         decode_header_data())
8356         
8357         * tools/dbus-send.c: port
8358
8359         * tools/dbus-print-message.c (print_message): port
8360
8361         * test/data/*messages: port all messages over
8362         
8363         * dbus/dbus-message-builder.c: support including 
8364         message type
8365         
8366         * bus/driver.c: port over
8367         
8368         * bus/dispatch.c: port over to new stuff
8369
8370         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
8371         rename disconnect signal to "Disconnected"
8372
8373 2003-08-17  Havoc Pennington  <hp@pobox.com>
8374
8375         This doesn't compile yet, but syncing up so I can hack on it from
8376         work. What are branches for if not broken code? ;-)
8377         
8378         * dbus/dbus-protocol.h: remove DBUS_HEADER_FIELD_NAME, add
8379         DBUS_HEADER_FIELD_INTERFACE, DBUS_HEADER_FIELD_MEMBER,
8380         DBUS_HEADER_FIELD_ERROR_NAME
8381         
8382         * dbus/dbus-hash.c: Introduce DBUS_HASH_TWO_STRINGS as hack to use
8383         for the interface+member pairs
8384         (string_hash): change to use g_str_hash algorithm
8385         (find_direct_function, find_string_function): refactor these to
8386         share most code.
8387         
8388         * dbus/dbus-message.c: port all of this over to support 
8389         interface/member fields instead of name field
8390
8391         * dbus/dbus-object-registry.c: port over
8392         
8393         * dbus/dbus-string.c (_dbus_string_validate_interface): rename
8394         from _dbus_string_validate_name
8395
8396         * bus/dbus-daemon-1.1: change file format for the 
8397         <deny>/<allow> stuff to match new message naming scheme
8398
8399         * bus/policy.c: port over
8400
8401         * bus/config-parser.c: parse new format
8402         
8403 2003-08-16  Havoc Pennington  <hp@pobox.com>
8404
8405         * dbus/dbus-object-registry.c (add_and_remove_objects): remove
8406         broken assertion
8407
8408         * glib/dbus-gproxy.c: some hacking
8409
8410 2003-08-15  Havoc Pennington  <hp@redhat.com>
8411
8412         * dbus/dbus-pending-call.c (dbus_pending_call_block): implement
8413
8414         * dbus/dbus-connection.c
8415         (dbus_connection_send_with_reply_and_block): factor out internals;
8416         change to convert any error replies to DBusError instead of 
8417         returning them as a message
8418
8419 2003-08-15  Havoc Pennington  <hp@pobox.com>
8420
8421         * dbus/dbus-connection.c, 
8422         dbus/dbus-pending-call.c: Finish the pending call stuff
8423
8424 2003-08-14  Havoc Pennington  <hp@redhat.com>
8425
8426         * dbus/dbus-pending-call.c: start on new object that will replace
8427         DBusMessageHandler and ReplyHandlerData for tracking outstanding
8428         replies
8429
8430         * dbus/dbus-gproxy.c: start on proxy object used to communicate
8431         with remote interfaces
8432
8433         * dbus/dbus-gidl.c: do the boring boilerplate in here
8434         
8435 2003-08-12  Havoc Pennington  <hp@pobox.com>
8436
8437         * bus/dispatch.c (bus_dispatch): make this return proper 
8438         DBusHandlerResult to avoid DBUS_ERROR_UNKNOWN_METHOD
8439
8440         * dbus/dbus-errors.c (dbus_set_error): use
8441         _dbus_string_append_printf_valist
8442
8443         * dbus/dbus-string.c (_dbus_string_append_printf_valist)
8444         (_dbus_string_append_printf): new
8445
8446         * dbus/dbus-errors.h (DBUS_ERROR_UNKNOWN_MESSAGE): change to
8447         UNKNOWN_METHOD
8448
8449         * dbus/dbus-connection.c (dbus_connection_dispatch): handle
8450         DBUS_HANDLER_RESULT_NEED_MEMORY; send default error reply if a
8451         message is unhandled.
8452
8453 2003-08-11  Havoc Pennington  <hp@pobox.com>
8454
8455         * bus/test.c (client_disconnect_handler): change to return
8456         HANDLED (would have been REMOVE_MESSAGE)
8457
8458         * dbus/dbus-object.h (enum DBusHandlerResult): rename to
8459         HANDLED/NOT_YET_HANDLED instead of
8460         REMOVE_MESSAGE/ALLOW_MORE_HANDLERS to make it clearer how it 
8461         should be used.
8462
8463 2003-08-10  Havoc Pennington  <hp@pobox.com>
8464
8465         * tools/dbus-send.c (main): add --type argument, for now
8466         supporting only method_call and signal types.
8467
8468         * tools/dbus-print-message.c: print message type
8469
8470         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
8471         init connection->objects
8472
8473         * doc/dbus-specification.sgml: fix sgml
8474
8475         * bus/*.c: port over to object-instance API changes
8476
8477         * test/test-service.c: ditto
8478         
8479         * dbus/dbus-message.c (dbus_message_create_header): allow #NULL
8480         name, we will have to fix up the rest of the code to also handle
8481         this
8482         (dbus_message_new): generic message-creation call
8483         (set_string_field): allow appending name field
8484
8485 2003-08-06  Havoc Pennington  <hp@pobox.com>
8486
8487         * dbus/dbus-object-registry.c: implement signal connection 
8488         and dispatch
8489
8490         * dbus/dbus-connection.c (_dbus_connection_unref_unlocked): new
8491
8492         * dbus/dbus-internals.c (_dbus_memdup): new function
8493
8494 2003-08-02  Havoc Pennington  <hp@pobox.com>
8495
8496         * dbus/dbus-message.c (dbus_message_get_no_reply)
8497         (dbus_message_set_no_reply): add these and remove
8498         set_is_error/get_is_error
8499
8500         * dbus/dbus-protocol.h, doc/dbus-specification.sgml: 
8501         remove the ERROR flag, since there's now an ERROR type
8502
8503 2003-08-01  Havoc Pennington  <hp@pobox.com>
8504
8505         * dbus/dbus-object-registry.c (_dbus_object_registry_handle_and_unlock):
8506         implement
8507
8508         * dbus/dbus-message.c (dbus_message_get_type): new function
8509
8510         * doc/dbus-specification.sgml: add "type" byte to messages
8511
8512 2003-08-01  Havoc Pennington  <hp@pobox.com>
8513
8514         * dbus/dbus-protocol.h (DBUS_MESSAGE_TYPE_*): introduce
8515         a message type enum to distinguish kinds of message
8516         (DBUS_HEADER_FLAG_NO_REPLY_EXPECTED): flag for a message 
8517         that need not be replied to
8518
8519 2003-08-01  Havoc Pennington  <hp@pobox.com>
8520
8521         * dbus/dbus-marshal.c: adapt to DBusObjectID changes
8522         (unpack_8_octets): fix no-64-bit-int bug
8523
8524         * dbus/dbus-object-registry.c (validate_id): validate the 
8525         connection ID bits, not just the instance ID.
8526
8527         * dbus/dbus-connection.c (_dbus_connection_init_id): initialize
8528         the connection-global 33 bits of the object ID
8529
8530         * dbus/dbus-object-registry.c (info_from_entry): fill in 
8531         object ID in the new way
8532
8533         * dbus/dbus-objectid.h: rather than high/low bits, specifically 
8534         define server/client/instance bits.
8535
8536 2003-07-30  Havoc Pennington  <hp@pobox.com>
8537
8538         * dbus/dbus-connection.c (dbus_connection_register_object): fix
8539         build
8540
8541 2003-07-13  Havoc Pennington  <hp@pobox.com>
8542
8543         * dbus/dbus-object.h (struct DBusObjectVTable): add padding
8544         fields to DBusObjectVTable and DBusObjectInfo
8545
8546 2003-07-12  Havoc Pennington  <hp@pobox.com>
8547
8548         * dbus/dbus-object-registry.c: implement unit test,
8549         fix bugs discovered in process
8550
8551         * dbus/dbus-connection.c: remove handler_table and
8552         register_handler(), add DBusObjectRegistry usage
8553
8554         * dbus/dbus-objectid.c (dbus_object_id_is_null)
8555         (dbus_object_id_set_null): new functions
8556
8557 2003-07-08  Havoc Pennington  <hp@pobox.com>
8558
8559         * dbus/dbus-object.c: implement some of this
8560
8561         * dbus/dbus-object-registry.c
8562         (_dbus_object_registry_add_and_unlock): fill in the object_id out
8563         param
8564         (_dbus_object_registry_new): handle OOM
8565
8566 2003-07-08  Havoc Pennington  <hp@pobox.com>
8567
8568         * dbus/dbus-object.h: sketch out an API for registering objects
8569         with a connection, that allows us to use as little as 24 bytes
8570         per object and lets application code represent an object in 
8571         any conceivable way.
8572
8573         * dbus/dbus-object-registry.c: implement the hard bits of the
8574         DBusConnection aspect of object API. Not yet wired up.
8575         
8576 2003-07-06  Havoc Pennington  <hp@pobox.com>
8577
8578         * dbus/dbus-marshal.c (_dbus_marshal_set_object_id): new function
8579         (_dbus_marshal_object_id): new
8580         (_dbus_demarshal_object_id): new
8581         (_dbus_marshal_get_arg_end_pos): support object ID type, and
8582         consolidate identical switch cases. Don't conditionalize handling
8583         of DBUS_TYPE_UINT64, need to handle the type always.
8584         (_dbus_marshal_validate_arg): consolidate identical cases, and
8585         handle DBUS_TYPE_OBJECT_ID
8586
8587         * dbus/dbus-objectid.c: new file with DBusObjectID data type.
8588
8589         * dbus/dbus-protocol.h: add DBUS_TYPE_OBJECT_ID
8590
8591 2003-09-28  Havoc Pennington  <hp@pobox.com>
8592
8593         * real 0.13 release
8594
8595 2003-09-28  Havoc Pennington  <hp@pobox.com>
8596
8597         * doc/Makefile.am (dbus-specification.html): testing a funky hack
8598         to work with Debian db2html
8599
8600 2003-09-28  Havoc Pennington  <hp@pobox.com>
8601
8602         * configure.in: 0.13
8603
8604         * doc/Makefile.am (dbus-test-plan.html): accept nonexistence of
8605         stylesheet-images for benefit of Debian
8606         
8607         Change back to using filesystem-linked sockets for the system
8608         bus, so only root can create the default system bus address.
8609         
8610         * bus/system.conf.in: change to use
8611         DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
8612
8613         * dbus/Makefile.am (INCLUDES): remove DBUS_SYSTEM_BUS_PATH define
8614         from here.
8615
8616         * configure.in: define DBUS_SYSTEM_BUS_DEFAULT_ADDRESS
8617         here, and AC_DEFINE DBUS_SYSTEM_PATH
8618
8619 2003-08-09  Anders Carlsson  <andersca@codefactory.se>
8620
8621         * doc/TODO:
8622         * doc/busconfig.dtd:
8623         Add busconfig DTD.
8624         
8625 2003-08-09  Anders Carlsson  <andersca@codefactory.se>
8626
8627         * doc/dbus-specification.sgml:
8628         Add activation reply values.
8629         
8630 2003-08-05  Havoc Pennington  <hp@redhat.com>
8631
8632         * configure.in: 0.12
8633
8634 2003-08-05  Anders Carlsson  <andersca@codefactory.se>
8635
8636         * glib/dbus-gmain.c: (watch_fd_new), (watch_fd_ref),
8637         (watch_fd_unref), (dbus_gsource_check), (dbus_gsource_dispatch),
8638         (add_watch), (remove_watch), (create_source):
8639         Refcount fds, fixes some reentrancy issues.
8640         
8641 2003-07-30  Havoc Pennington  <hp@redhat.com>
8642
8643         * dbus/dbus-bus.c (init_connections_unlocked): fix default system
8644         bus address to be abstract if we have abstract sockets
8645
8646         * NEWS: update
8647
8648 2003-07-28  Havoc Pennington  <hp@redhat.com>
8649
8650         * bus/messagebus.in: fix to avoid processname/servicename 
8651         confusion, from Michael Kearey
8652         https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=100965
8653         
8654 2003-07-23  Havoc Pennington  <hp@pobox.com>
8655
8656         * dbus/dbus-message.c (dbus_message_iter_get_named): 
8657         fix from Andy Hanton to remove broken "+1"
8658
8659 2003-07-16  Havoc Pennington  <hp@pobox.com>
8660
8661         * tools/dbus-launch.c (babysit): close stdout/stderr in the
8662         babysitter process, as suggested by Thomas Leonard, so 
8663         an "eval `dbus-launch --exit-with-session`" will actually 
8664         return
8665
8666 2003-07-16  Havoc Pennington  <hp@pobox.com>
8667
8668         * configure.in: print out EXPANDED_* variables in the summary at
8669         the end; clean up the code that computes EXPANDED_ variables and
8670         get the ones using exec_prefix right. Should make things work
8671         when you build without --prefix
8672
8673 2003-06-29  Havoc Pennington  <hp@pobox.com>
8674
8675         * mono/Test.cs (class Test): fire up a main loop and run it
8676
8677         * mono/DBus.cs (DBus): don't g_thread_init since it can only be
8678         done once, the app has to do it
8679
8680 2003-06-26  Havoc Pennington  <hp@pobox.com>
8681
8682         * mono/Connection.cs: set up connection with the glib main loop
8683
8684 2003-07-01  Havoc Pennington  <hp@redhat.com>
8685
8686         * doc/dbus-specification.sgml: clarify the format of a type code,
8687         change suggested by Jim Blandy
8688
8689 2003-06-29  Miloslav Trmac  <mitr@volny.cz>
8690
8691         * doc/Makefile.am:
8692         * tools/Makefile.am: Don't assume srcdir == builddir.
8693
8694         * dbus/dbus-memory.c (dbus_realloc): Don't check guards after shrinking
8695         the allocated block.
8696         (_dbus_memory_test): New function.
8697         * dbus/dbus-test.h: Add _dbus_memory_test ().
8698         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): Call it.
8699
8700         * dbus/dbus-message.c (decode_header_data): Use %.4s instead
8701         of %c%c%c%c.
8702         (dbus_message_new): Remove obsolete @todo.
8703
8704         * dbus/dbus-marshal.c (_dbus_marshal_set_int64)
8705         (_dbus_marshal_set_uint64): Fix comment.
8706
8707         * dbus/dbus-message.c (append_int_field, append_uint_field): Don't
8708         hardcode FIELD_REPLY_SERIAL.
8709
8710         * dbus/dbus-mainloop.c (_dbus_loop_remove_watch)
8711         (_dbus_loop_remove_timeout): Cast function pointers to (void *) for %p
8712
8713         * configure.in: Add -D_POSIX_C_SOURCE=199309L -DBSD_SOURCE to CFLAGS
8714         and disable DBUS_USE_ATOMIC_INT_486 when --enable-ansi is used
8715
8716 2003-06-24  Havoc Pennington  <hp@pobox.com>
8717
8718         * mono/*.cs: Use IntPtr.Zero instead of ((IntPtr) 0)
8719
8720 2003-06-23  Anders Carlsson  <andersca@codefactory.se>
8721
8722         * configure.in:
8723         * gcj/.cvsignore:
8724         * gcj/Hello.java:
8725         * gcj/Makefile.am:
8726         * gcj/TestMessage.java: (TestMessage), (TestMessage.main):
8727         * gcj/org/.cvsignore:
8728         * gcj/org/Makefile.am:
8729         * gcj/org/freedesktop/.cvsignore:
8730         * gcj/org/freedesktop/Makefile.am:
8731         * gcj/org/freedesktop/dbus/.cvsignore:
8732         * gcj/org/freedesktop/dbus/Makefile.am:
8733         * gcj/org/freedesktop/dbus/Message.java: (Message),
8734         (Message.Message):
8735         * gcj/org/freedesktop/dbus/natMessage.cc:
8736         Fix the build system.
8737
8738 2003-06-22  Havoc Pennington  <hp@pobox.com>
8739
8740         * mono/Connection.cs: add more bindings
8741
8742         * dbus/dbus-threads.c (dbus_threads_init): allow calling this
8743         more than once.
8744
8745 2003-06-22  Havoc Pennington  <hp@pobox.com>
8746
8747         * mono/Connection.cs, mono/DBus.cs, mono/Error.cs:
8748         Start wrapping more stuff.
8749
8750 2003-06-22  Havoc Pennington  <hp@pobox.com>
8751
8752         * mono/Message.cs: implement Message.Wrap() that ensures we only
8753         have a single C# wrapper per DBusMessage, assuming it works which
8754         it probably doesn't.
8755
8756         * dbus/dbus-message.c (dbus_message_allocate_data_slot): new
8757         (dbus_message_free_data_slot): new
8758         (dbus_message_set_data): new
8759         (dbus_message_get_data): new
8760
8761 2003-06-22  Havoc Pennington  <hp@pobox.com>
8762
8763         * dbus/dbus-dataslot.c (_dbus_data_slot_allocator_unref)
8764         (_dbus_data_slot_allocator_alloc): rework these to keep a
8765         reference count on each slot and automatically manage a global
8766         slot ID variable passed in by address
8767
8768         * bus/bus.c: convert to new dataslot API
8769
8770         * dbus/dbus-bus.c: convert to new dataslot API
8771
8772         * dbus/dbus-connection.c: convert to new dataslot API
8773
8774         * dbus/dbus-server.c: convert to new dataslot API
8775
8776         * glib/dbus-gmain.c: ditto
8777
8778         * bus/test.c: ditto
8779
8780         * bus/connection.c: ditto
8781
8782 2003-06-22  Anders Carlsson  <andersca@codefactory.se>
8783
8784         * configure.in: Add AM_PROG_GCJ and move AM_PROG_LIBTOOL
8785         after the gcj checks so that the correct configuration tags
8786         will be added to libtool.
8787
8788         * dbus-glib-1.pc.in: No need to specify any includes since
8789         dbus-1.pc.in has those.
8790
8791 2003-06-22  Havoc Pennington  <hp@pobox.com>
8792
8793         * mono/*, gcj/*, configure.in, Makefile.am:
8794         Check in makefiles and subdirs for mono and gcj bindings.
8795         Neither binding actually exists, just trying to get through
8796         all the build and other boring bits.
8797
8798 2003-06-21  Philip Blundell  <philb@gnu.org>
8799
8800         * tools/dbus-monitor.1: Updated.
8801
8802         * tools/dbus-send.1: Likewise.
8803
8804 2003-06-20  Anders Carlsson  <andersca@codefactory.se>
8805
8806         * dbus/dbus-transport-unix.c (unix_handle_watch): Check
8807         for hangup and error after checking read so we won't discard
8808         pending data if both hangup and read are set.
8809
8810 2003-06-19  Philip Blundell  <philb@gnu.org>
8811
8812         * tools/dbus-print-message.c (print_message): Handle BOOLEAN.
8813
8814         * tools/dbus-send.c: Accept both --system and --session.
8815
8816         * tools/dbus-monitor.c: Same here.
8817
8818 2003-06-19  Anders Carlsson  <andersca@codefactory.se>
8819
8820         * glib/dbus-glib.h: Fix so that dbus-glib.h can be used
8821         from C++ (Patch by Miloslav Trmac).
8822
8823 2003-06-15  Joe Shaw  <joe@assbarn.com>
8824
8825         * configure.in: Check for socklen_t.
8826
8827         * dbus/dbus-sysdeps.c: Define socklen_t if it's not defined.
8828
8829         * test/test-segfault.c: Add #include <sys/time.h>
8830
8831         * tools/Makefile.am: Add DBUS_X_CFLAGS to the INCLUDES since
8832         dbus-launch needs it.
8833
8834 2003-06-09  Havoc Pennington  <hp@redhat.com>
8835
8836         * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): don't use
8837         SUN_LEN, it breaks abstract socket usage
8838
8839         * dbus/dbus-internals.c (_dbus_verbose_real): only print PID at
8840         starts of lines.
8841
8842 2003-06-04  Havoc Pennington  <hp@pobox.com>
8843
8844         * dbus/dbus-server.c (dbus_server_listen): allow abstract sockets
8845         using unix:abstract=/foo, and when listening in a tmpdir
8846         i.e. unix:tmpdir=/tmp, always use abstract sockets if we can.
8847
8848         * dbus/dbus-transport.c (_dbus_transport_open): support
8849         unix:abstract=/foo
8850
8851         * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
8852         support abstract sockets
8853
8854         * dbus/dbus-transport-unix.c
8855         (_dbus_transport_new_for_domain_socket): support abstract sockets
8856
8857         * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket): add "abstract"
8858         toggle as an argument, implement abstract namespace support
8859         (_dbus_listen_unix_socket): ditto
8860
8861         * configure.in: add --enable-abstract-sockets and implement
8862         a configure check for autodetection of the right value.
8863
8864 2003-06-01  Havoc Pennington  <hp@pobox.com>
8865
8866         * tools/dbus-cleanup-sockets.c: add utility to clean up sockets
8867         in /tmp (though on Linux this will end up being useless,
8868         when we add abstract namespace support)
8869
8870         * configure.in: define DBUS_SESSION_SOCKET_DIR in addition to
8871         subst'ing it
8872
8873 2003-05-28  Colin Walters  <walters@verbum.org>
8874
8875         * tools/dbus-monitor.c (main): Fix silly typo (s/--session/--system/).
8876
8877 2003-05-18  Anders Carlsson  <andersca@codefactory.se>
8878
8879         * dbus/dbus-message.c (dbus_message_new): Remove @todo.
8880
8881 2003-05-17  Colin Walters  <walters@gnu.org>
8882
8883         * tools/dbus-send.c: Don't exit with an error code if --help was
8884         passed.  Default to using the session bus instead of the system
8885         one.
8886
8887         * tools/dbus-launch.c: Ditto.
8888
8889         * tools/dbus-monitor.c: Ditto.
8890
8891         * tools/dbus-send.1: Update with new arguments.
8892
8893         * tools/dbus-launch.c: Emit code to export variables.  New
8894         arguments -s and -c to specify shell syntax, and a bit of code to
8895         autodetect syntax.  Also, allow specifying a program to run.
8896
8897         * tools/dbus-launch.1: Update with new arguments.
8898
8899         * tools/dbus-send.1: Ditto.
8900
8901         * tools/dbus-monitor.1: Ditto.
8902
8903 2003-05-17  Havoc Pennington  <hp@pobox.com>
8904
8905         * bus/config-parser.c (merge_included): merge in policies from
8906         child configuration file.
8907
8908         * bus/policy.c (bus_policy_merge): function to merge two policies
8909         together
8910
8911 2003-05-16  Havoc Pennington  <hp@redhat.com>
8912
8913         * dbus/dbus-connection.c: disable verbose lock spew
8914
8915         * tools/dbus-send.c: add --print-reply command line option
8916
8917         * tools/dbus-print-message.h (print_message): new util function
8918         shared by dbus-send and dbus-monitor
8919
8920         * tools/dbus-monitor.c (handler_func): exit on disconnect
8921
8922         * dbus/dbus-transport-unix.c (do_reading): if the transport is
8923         disconnected, don't try to use the read_watch
8924
8925         * dbus/dbus-watch.c (dbus_watch_get_enabled): assert watch != NULL
8926         so we can find this bug more easily
8927
8928 2003-05-16  Havoc Pennington  <hp@redhat.com>
8929
8930         * bus/policy.c (free_rule_list_func): avoid a crash when passed
8931         NULL as DBusHashTable is annoyingly likely to do.
8932
8933 2003-05-16  Colin Walters  <walters@verbum.org>
8934
8935         * tools/dbus-monitor.c: Add --session argument and usage()
8936         function.
8937
8938         * tools/dbus-monitor.1: Update with new --session arg.
8939
8940         * bus/Makefile.am (install-data-hook): Create
8941         $(libdir)/dbus-1.0/services so that the session bus is happy.
8942
8943 2003-05-15  Havoc Pennington  <hp@redhat.com>
8944
8945         * dbus/dbus-sysdeps.c (_dbus_atomic_dec, _dbus_atomic_inc): work
8946         on non-x86. ifdef's are evil.
8947
8948 2003-05-15  Havoc Pennington  <hp@redhat.com>
8949
8950         * configure.in: 0.11
8951
8952         * NEWS: update
8953
8954         * bus/Makefile.am (initddir): apparently we are supposed to put
8955         init scripts in /etc/rc.d/init.d not /etc/init.d
8956
8957         * bus/Makefile.am: remove the "you must --enable-tests to make
8958         check" as it broke distcheck
8959
8960         * bus/Makefile.am (install-data-hook): create /etc/dbus-1/system.d
8961
8962 2003-05-13  James Willcox  <jwillcox@gnome.org>
8963
8964         * configure.in:
8965         * bus/activation.c: (bus_activation_service_created),
8966         (bus_activation_activate_service):
8967         * bus/driver.c: (bus_driver_send_service_deleted),
8968         (bus_driver_send_service_created), (bus_driver_send_service_lost),
8969         (bus_driver_send_service_acquired),
8970         (bus_driver_send_welcome_message),
8971         (bus_driver_handle_list_services):
8972         * bus/session.conf.in:
8973         * dbus/dbus-bus.c: (dbus_bus_acquire_service),
8974         (dbus_bus_service_exists), (dbus_bus_activate_service):
8975         * dbus/dbus-bus.h:
8976
8977         Add some convenience API which lets you activate a service, and did a
8978         bunch of s/0/DBUS_TYPE_INVALID/ in calls to dbus_message_append_args()
8979         and dbus_message_get_args()
8980
8981 2003-05-11  Havoc Pennington  <hp@pobox.com>
8982
8983         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix to avoid
8984         calling _dbus_marshal_validate_arg() for every byte in a byte
8985         array, etc.
8986
8987         * dbus/dbus-message-handler.c: use atomic reference counting to
8988         reduce number of locks slightly; the global lock in here sucks
8989
8990         * dbus/dbus-connection.c
8991         (_dbus_connection_update_dispatch_status_and_unlock): variant of
8992         update_dispatch_status that can be called with lock held; then use
8993         in a couple places to reduce locking/unlocking
8994         (dbus_connection_send): hold the lock over the whole function
8995         instead of acquiring it twice.
8996
8997         * dbus/dbus-timeout.c (_dbus_timeout_new): handle OOM
8998
8999         * bus/connection.c (bus_connections_setup_connection): fix access
9000         to already-freed memory.
9001
9002         * dbus/dbus-connection.c: keep a little cache of linked list
9003         nodes, to avoid using the global linked list alloc lock in the
9004         normal send-message case. Instead we just use the connection lock
9005         that we already have to take.
9006
9007         * dbus/dbus-list.c (_dbus_list_find_last): new function
9008
9009         * dbus/dbus-sysdeps.c (_dbus_atomic_inc, _dbus_atomic_dec):
9010         change to use a struct for the atomic type; fix docs,
9011         they return value before increment, not after increment.
9012
9013         * dbus/dbus-string.c (_dbus_string_append_4_aligned)
9014         (_dbus_string_append_8_aligned): new functions to try to
9015         microoptimize this operation.
9016         (reallocate_for_length): break this out of set_length(), to
9017         improve profile info, and also so we can consider inlining the
9018         set_length() part.
9019
9020         * dbus/dbus-message.c (dbus_message_new_empty_header): init data
9021         strings with some preallocation, cuts down on our calls to realloc
9022         a fair bit. Though if we can get the "move entire string to empty
9023         string" optimization below to kick in here, it would be better.
9024
9025         * dbus/dbus-string.c (_dbus_string_move): just call
9026         _dbus_string_move_len
9027         (_dbus_string_move_len): add a special case for moving
9028         an entire string into an empty string; we can just
9029         swap the string data instead of doing any reallocs.
9030         (_dbus_string_init_preallocated): new function
9031
9032 2003-05-11  Havoc Pennington  <hp@pobox.com>
9033
9034         Write a "test-profile" that does echo client-server with threads;
9035         profile reveals lock contention, memcpy/realloc of buffers, and
9036         UTF-8 validation as hot spots. 20% of lock contention eliminated
9037         with dbus_atomic_inc/dec implementation on x86.  Much remaining
9038         contention is global mempool locks for GList and DBusList.
9039
9040         * dbus/dbus-sysdeps.c (_dbus_atomic_inc, _dbus_atomic_dec): add
9041         x86 implementation
9042
9043         * dbus/dbus-connection.c (struct DBusConnection): use
9044         dbus_atomic_t for the reference count
9045
9046         * dbus/dbus-message.c (struct DBusMessage): declare
9047         dbus_atomic_t values as volatile
9048
9049         * configure.in: code to detect ability to use atomic integer
9050         operations in assembly, from GLib patch
9051
9052         * dbus/dbus-internals.c (_dbus_verbose_real): call getpid every
9053         time, tired of it being wrong in threads and forked processes
9054
9055         * glib/test-profile.c: a little program to bounce messages back
9056         and forth between threads and eat CPU
9057
9058         * dbus/dbus-connection.c: add debug spew macros for debugging
9059         thread locks; include config.h at top; fix deadlock in
9060         dbus_connection_flush()
9061
9062 2003-05-08  Havoc Pennington  <hp@pobox.com>
9063
9064         * dbus/dbus-spawn.c: s/_exit/exit/ because it was keeping gcov
9065         data from getting written, and there wasn't a good reason to
9066         use _exit really.
9067
9068         * test/decode-gcov.c (mark_inside_dbus_build_tests): don't count
9069         dbus_verbose lines in test coverage
9070         (main): add list of functions sorted by # of untested blocks
9071         to the coverage report
9072
9073         * dbus/dbus-mempool.c: put some test-only code in DBUS_BUILD_TESTS
9074
9075         * dbus/dbus-marshal.c (_dbus_marshal_test): extend test coverage
9076
9077         * dbus/dbus-message-handler.c (_dbus_message_handler_test):
9078         extend test coverage
9079
9080         * test/data/auth/cancel.auth-script: test canceling an
9081         authentication
9082
9083         * dbus/Makefile.am: remove dbus-server-debug.[hc] for now, as they
9084         aren't used. in CVS history if we end up needing them.
9085
9086 2003-05-04  Havoc Pennington  <hp@pobox.com>
9087
9088         * dbus/dbus-message-handler.c (_dbus_message_handler_test): add
9089         unit test
9090
9091         * dbus/dbus-marshal.c (_dbus_demarshal_string_array): fix this
9092         function, which assumed length was in # of strings, not bytes
9093
9094         * dbus/dbus-message.c (_dbus_message_test): add tests for some
9095         missing coverage
9096
9097         * dbus/dbus-connection.c
9098         (_dbus_connection_queue_received_message): disable function for
9099         now, we are only using it in test mode
9100
9101         * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
9102         remove a mistaken FIXME
9103
9104 2003-05-04  Havoc Pennington  <hp@pobox.com>
9105
9106         * dbus/dbus-connection.c (dbus_connection_preallocate_send):
9107         unlock mutex on successful return, patch from Anders Gustafsson
9108
9109 2003-05-04  Havoc Pennington  <hp@pobox.com>
9110
9111         * dbus-glib-1.pc.in (Requires): fix dependencies, from
9112         Anders Gustafsson
9113
9114 2003-05-04  Havoc Pennington  <hp@pobox.com>
9115
9116         * tools/dbus-launch.c: implement
9117
9118         * bus/main.c (main), bus/bus.c (bus_context_new):
9119         implement --print-pid and --fork
9120
9121 2003-05-03  Havoc Pennington  <hp@redhat.com>
9122
9123         * dbus/dbus-address.c (dbus_parse_address): fix bug when a key in
9124         the address had no value, and add to test suite. Fix and
9125         regression test from Miloslav Trmac
9126
9127 2003-05-03  Havoc Pennington  <hp@pobox.com>
9128
9129         * dbus/dbus-watch.c (dbus_watch_handle): warn and return if a
9130         watch is invalid when handled
9131
9132         * tools/Makefile.am, tools/dbus-launch.c, tools/dbus-launch.1: add
9133         dbus-launch utility to launch the bus from a shell script.  Didn't
9134         actually implement dbus-launch yet, it's just a placeholder still.
9135
9136 2003-05-03  Havoc Pennington  <hp@pobox.com>
9137
9138         * bus/Makefile.am, bus/dbus-daemon-1.1.in: man page for the
9139         daemon; also documents daemon config file, so replaces
9140         doc/config-file.txt. Corrected some stuff from config-file.txt in
9141         the process of moving it.
9142
9143 2003-05-03  Havoc Pennington  <hp@pobox.com>
9144
9145         * tools/Makefile.am, tools/dbus-send.1, tools/dbus-monitor.1:
9146         add some man pages
9147
9148 2003-05-03  Colin Walters  <walters@verbum.org>
9149
9150         * dbus/dbus-sysdeps.c (fill_user_info): Test against
9151         DBUS_UID_UNSET to determine whether to do a uid lookup or not.
9152
9153         * Makefile.am: Update to use new .pc versioning scheme.
9154
9155 2003-05-02  Havoc Pennington  <hp@redhat.com>
9156
9157         * bus/system.conf.in: allow send/receive to/from message bus
9158         service
9159
9160 2003-04-30  Havoc Pennington  <hp@redhat.com>
9161
9162         * configure.in: print a note when building with unit tests and
9163         without assertions
9164
9165 2003-04-30  Havoc Pennington  <hp@redhat.com>
9166
9167         * Makefile.am: add a check-local that complains if you didn't
9168         configure with --enable-tests
9169
9170 2003-04-29  Havoc Pennington  <hp@redhat.com>
9171
9172         * glib/dbus-gmain.c: docs cleanups
9173
9174         * dbus/dbus-types.h: add docs on int64 types
9175
9176         * dbus/dbus-memory.c: fix docs to avoid putting private API in
9177         public API docs section
9178
9179 2003-04-29  Havoc Pennington  <hp@redhat.com>
9180
9181         * dbus-1.pc.in, dbus-glib-1.pc.in: rename these from
9182         dbus-1.0.pc.in, dbus-glib-1.0.pc.in. As these change with the
9183         parallel install API version, not with the D-BUS package version.
9184
9185         * HACKING: move some of README over here
9186
9187         * README: updates, and document API/ABI policy
9188
9189         * configure.in: reindentation
9190
9191 2003-04-29  Havoc Pennington  <hp@redhat.com>
9192
9193         * dbus/dbus.h: add "you have to define DBUS_API_SUBJECT_TO_CHANGE
9194         to use this library" to be sure people have the right
9195         expectations.
9196
9197 2003-04-28  Havoc Pennington  <hp@redhat.com>
9198
9199         * configure.in: add --enable-docs which by default is auto yes if
9200         doxygen and db2html found, no otherwise; but can be forced on/off
9201
9202         * doc/Makefile.am: conditionalize whether to build docs on
9203         --enable-docs
9204
9205 2003-04-28  Havoc Pennington  <hp@redhat.com>
9206
9207         * configure.in: 0.10
9208
9209         * NEWS: update
9210
9211         * bus/system.conf.in: add <includedir>system.d</includedir>
9212
9213         * dbus/dbus-userdb.c (_dbus_user_database_lookup): fix bug when
9214         username was provided but not uid
9215
9216         * bus/config-parser.c (struct BusConfigParser): keep track of
9217         whether the parser is toplevel or was included; change some
9218         of the error handling if it's included.
9219
9220 2003-04-27  Havoc Pennington  <hp@pobox.com>
9221
9222         Unbreak my code...
9223
9224         * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
9225         report correct status if we finish processing authentication
9226         inside this function.
9227
9228         * bus/activation.c (try_send_activation_failure): use
9229         bus_transaction_send_error_reply
9230
9231         * bus/connection.c (bus_connection_get_groups): return an error
9232         explaining the problem
9233
9234         * bus/bus.c (bus_context_check_security_policy): implement
9235         restriction here that inactive connections can only send the
9236         hello message. Also, allow bus driver to send anything to
9237         any recipient.
9238
9239         * bus/connection.c (bus_connection_complete): create the
9240         BusClientPolicy here instead of on-demand.
9241         (bus_connection_get_policy): don't return an error
9242
9243         * dbus/dbus-message.c (dbus_message_new_error_reply): allow NULL
9244         sender field in message being replied to
9245
9246         * bus/bus.c (bus_context_check_security_policy): fix silly typo
9247         causing it to return FALSE always
9248
9249         * bus/policy.c (bus_client_policy_check_can_send): fix bug where
9250         we checked sender rather than destination
9251
9252 2003-04-25  Havoc Pennington  <hp@redhat.com>
9253
9254         test suite is slightly hosed at the moment, will fix soon
9255
9256         * bus/connection.c (bus_connections_expire_incomplete): fix to
9257         properly disable the timeout when required
9258         (bus_connection_set_name): check whether we can remove incomplete
9259         connections timeout after we complete each connection.
9260
9261         * dbus/dbus-mainloop.c (check_timeout): fix this up a bit,
9262         probably still broken.
9263
9264         * bus/services.c (bus_registry_acquire_service): implement max
9265         number of services owned, and honor allow/deny rules on which
9266         services a connection can own.
9267
9268         * bus/connection.c (bus_connection_get_policy): report errors here
9269
9270         * bus/activation.c: implement limit on number of pending
9271         activations
9272
9273 2003-04-25  Havoc Pennington  <hp@redhat.com>
9274
9275         * dbus/dbus-transport.c (_dbus_transport_get_unix_user): fix bug
9276         where we used >= 0 instead of != DBUS_UID_UNSET.
9277
9278 2003-04-25  Havoc Pennington  <hp@redhat.com>
9279
9280         * glib/dbus-gmain.c (remove_watch): fix for a crash when watches
9281         were toggled without add/remove, fix from Anders Gustafsson
9282
9283 2003-04-24  Havoc Pennington  <hp@redhat.com>
9284
9285         * test/data/valid-config-files/basic.conf: add <limit> tags to
9286         this test
9287
9288         * bus/config-parser.h, bus/config-parser.c, bus/bus.c: Implement
9289         <limit> tag in configuration file.
9290
9291 2003-04-24  Havoc Pennington  <hp@redhat.com>
9292
9293         * bus/dispatch.c: somehow missed some name_is
9294
9295         * dbus/dbus-timeout.c (_dbus_timeout_set_enabled)
9296         (_dbus_timeout_set_interval): new
9297
9298         * bus/connection.c (bus_connections_setup_connection): record time
9299         when each connection is first set up, and expire them after the
9300         auth timeout passes.
9301
9302 2003-04-24  Havoc Pennington  <hp@redhat.com>
9303
9304         * dbus/dbus-message.c (dbus_message_name_is): rename
9305         (dbus_message_service_is): rename
9306         (dbus_message_sender_is): rename
9307         (dbus_message_get_service): rename
9308
9309 2003-04-24  Havoc Pennington  <hp@redhat.com>
9310
9311         * configure.in: add --enable-checks
9312
9313         * dbus/dbus-message.c (dbus_message_new): reverse name/service arguments
9314
9315         * dbus/dbus-connection.c (dbus_connection_preallocate_send): fix
9316         to use thread locks.
9317         (_dbus_connection_handler_destroyed_locked): move some private
9318         functions into proper docs group
9319
9320         * dbus/dbus-internals.h: add _dbus_return_if_fail,
9321         _dbus_return_val_if_fail
9322
9323         Throughout: use dbus_return_if_fail
9324
9325 2003-04-23  James Willcox  <jwillcox@gnome.org>
9326
9327         * glib/dbus-glib.h:
9328         * glib/dbus-gmain.c: (add_timeout), (wakeup_main), (create_source),
9329         (dbus_connection_setup_with_g_main),
9330         (dbus_server_setup_with_g_main):
9331         * glib/test-dbus-glib.c: (main):
9332         * glib/test-thread-client.c: (main):
9333         * glib/test-thread-server.c: (new_connection_callback), (main):
9334         * tools/dbus-monitor.c: (main):
9335
9336         Added a GMainContext argument to dbus_connection_setup_with_g_main()
9337         and dbus_server_setup_with_g_main().
9338
9339 2003-04-20  Havoc Pennington  <hp@pobox.com>
9340
9341         * doc/dbus-specification.sgml: document the restrictions on
9342         message and service names
9343
9344 2003-04-22  Havoc Pennington  <hp@redhat.com>
9345
9346         * dbus/dbus-message.c, dbus/dbus-marshal.c: add 64-bit integer
9347         support, and do some code cleanups to share more code and
9348         speed up array marshal/demarshal.
9349
9350         * dbus-1.0.pc.in (Cflags): put libdir include file in cflags
9351
9352         * configure.in: generate dbus-arch-deps.h
9353
9354         * dbus/dbus-protocol.h (DBUS_TYPE_INT64, DBUS_TYPE_UINT64): add
9355         64-bit typecodes
9356
9357 2003-04-22  Havoc Pennington  <hp@redhat.com>
9358
9359         * test/data/valid-messages/opposite-endian.message: fix test
9360         to use proper type for rply field
9361
9362         * test/data/invalid-messages: add tests for below validation
9363
9364         * dbus/dbus-message.c (decode_header_data): validate field types,
9365         and validate that named fields are valid names
9366         (decode_name_field): consider messages in the
9367         org.freedesktop.Local. namespace to be invalid.
9368
9369         * dbus/dbus-string.c (_dbus_string_validate_name): new
9370
9371 2003-04-19  Havoc Pennington  <hp@pobox.com>
9372
9373         * bus/driver.c (bus_driver_handle_hello): check limits and
9374         return an error if they are exceeded.
9375
9376         * bus/connection.c: maintain separate lists of active and inactive
9377         connections, and a count of each. Maintain count of completed
9378         connections per user. Implement code to check connection limits.
9379
9380         * dbus/dbus-list.c (_dbus_list_unlink): export
9381
9382         * bus/bus.c (bus_context_check_security_policy): enforce a maximum
9383         number of bytes in the message queue for a connection
9384
9385 2003-04-18  Havoc Pennington  <hp@pobox.com>
9386
9387         * dbus/dbus-auth.c (record_mechanisms): memleak fixes
9388
9389         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): fix some
9390         memleaks
9391
9392         * dbus/dbus-keyring.c (add_new_key): fix a memleak, and
9393         on realloc be sure to update the pointer in the keyring
9394
9395         * dbus/dbus-string.c (_dbus_string_zero): compensate for align
9396         offset to avoid writing to unallocated memory
9397
9398         * dbus/dbus-auth.c (process_rejected): return FALSE if we fail to
9399         try the next mechanism, so we properly handle OOM
9400
9401         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): fix double-free
9402         on OOM.
9403         (_dbus_keyring_new): fix OOM bug
9404         (_dbus_keyring_new_homedir): always set error; impose a maximum
9405         number of keys we'll load from the file, mostly to speed up the
9406         test suite and make its OOM checks more useful, but also for
9407         general sanity.
9408
9409         * dbus/dbus-auth.c (process_error_server): reject authentication
9410         if we get an error from the client
9411         (process_cancel): on cancel, send REJECTED, per the spec
9412         (process_error_client): send CANCEL if we get an error from the
9413         server.
9414
9415 2003-04-18  Havoc Pennington  <hp@pobox.com>
9416
9417         * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix UMR in verbose
9418         debug spew
9419
9420         * dbus/dbus-auth.c (handle_client_data_cookie_sha1_mech): fix OOM
9421         handling problem
9422
9423         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): only whine
9424         about DBUS_TEST_HOMEDIR once
9425
9426         * bus/Makefile.am (TESTS_ENVIRONMENT): put DBUS_TEST_HOMEDIR in
9427         the environment
9428
9429         * bus/dispatch.c (bus_dispatch_sha1_test): actually load sha1
9430         config file so we test the right thing
9431
9432         Throughout: assorted docs improvements
9433
9434 2003-04-18  Havoc Pennington  <hp@pobox.com>
9435
9436         * glib/dbus-gmain.c: adapt to watch changes
9437
9438         * bus/bus.c, bus/activation.c, etc.: adjust to watch changes
9439
9440         * dbus/dbus-server.h: remove dbus_server_handle_watch
9441
9442         * dbus/dbus-connection.h: remove dbus_connection_handle_watch
9443
9444         * dbus/dbus-watch.c (dbus_watch_handle): change DBusWatch to work
9445         like DBusTimeout, so we don't need dbus_connection_handle_watch
9446         etc.
9447
9448 2003-04-17  Havoc Pennington  <hp@redhat.com>
9449
9450         * dbus/dbus-userdb.c, dbus/dbus-sysdeps.c: redo all the passwd
9451         database usage so it all goes via the DBusUserDatabase cache.
9452
9453 2003-04-17  Havoc Pennington  <hp@redhat.com>
9454
9455         * dbus/dbus-mainloop.c (_dbus_loop_iterate): fix logic so that if
9456         there was an OOM watch we skipped, we always return TRUE so we
9457         iterate again to have a look at it again. Fixes test suite hang.
9458         Code rearrangement also lets us lose some memset and only iterate
9459         over callbacks once.
9460
9461         * bus/driver.c (bus_driver_handle_message): sense of test for
9462         reply was backward
9463
9464 2003-04-16  Havoc Pennington  <hp@pobox.com>
9465
9466         * doc/dbus-specification.sgml: make spec say serials are unsigned
9467
9468         * dbus/dbus-message.h: change message serials to unsigned
9469
9470         * dbus/dbus-connection.c: adapt to message serials being unsigned
9471
9472 2003-04-15  Havoc Pennington  <hp@pobox.com>
9473
9474         * bus/bus.c: create and keep around a shared DBusUserDatabase
9475         object.
9476
9477         * bus/connection.c (bus_connection_get_groups): don't cache
9478         groups for user in the connection object, since user database
9479         object now does that.
9480
9481 2003-04-16  Havoc Pennington  <hp@redhat.com>
9482
9483         * dbus/dbus-message.c (_dbus_message_add_size_counter): keep a
9484         list of size counters
9485         (_dbus_message_loader_putback_message_link): put back a popped link
9486
9487         * dbus/dbus-connection.c
9488         (dbus_connection_set_max_live_messages_size): rename
9489         max_received_size
9490         (dbus_connection_get_outgoing_size): get size of outgoing
9491         queue
9492         (_dbus_connection_set_connection_counter): remove this cruft
9493
9494 2003-04-14  Havoc Pennington  <hp@redhat.com>
9495
9496         * dbus/dbus-userdb.c: user database abstraction, mostly to get
9497         caching, but at some point we might want to be able to use a
9498         different database.
9499
9500         * bus/dispatch.c (bus_dispatch_sha1_test): add a test that uses
9501         SHA1 conf file to test the sha1 auth mechanism, since the regular
9502         test always uses EXTERNAL when available.
9503
9504         * configure.in,
9505         test/data/valid-config-files/debug-allow-all-sha1.conf.in:
9506         add conf file that requires use of sha1 auth
9507
9508 2003-04-13  Havoc Pennington  <hp@pobox.com>
9509
9510         * tools/dbus-send.c, tools/dbus-monitor.c: two utility programs
9511         from Philip Blundell to send messages and monitor them.
9512
9513 2003-04-13  Havoc Pennington  <hp@pobox.com>
9514
9515         * dbus/dbus-mainloop.c: fix some reentrancy issues by refcounting
9516         callbacks
9517
9518         * test/data/valid-config-files/debug-allow-all.conf.in: allow all
9519         users
9520
9521         * dbus/dbus-transport.c (_dbus_transport_get_dispatch_status):
9522         fix to only recover unused bytes if we're already authenticated
9523         (_dbus_transport_get_is_authenticated): fix to still mark us
9524         authenticated if there are unused bytes.
9525
9526         * bus/dispatch.c: implement security policy checking
9527
9528         * bus/connection.c (bus_transaction_send_from_driver): new
9529
9530         * bus/bus.c (bus_context_check_security_policy): new
9531
9532         * bus/dispatch.c (send_service_nonexistent_error): delete this,
9533         now we just set the DBusError and it gets converted to an error
9534         reply.
9535
9536         * bus/connection.c (allow_user_function): enable code using actual
9537         data from the config file
9538
9539         * bus/policy.c (list_allows_user): handle wildcard rules for
9540         user/group connection perms
9541
9542 2003-04-13  Havoc Pennington  <hp@pobox.com>
9543
9544         * bus/config-parser.c: Load up the BusPolicy and BusPolicyRules
9545
9546         * dbus/dbus-sysdeps.c (_dbus_get_user_id): new function
9547
9548         * bus/policy.c (bus_policy_append_mandatory_rule)
9549         (bus_policy_append_default_rule, bus_policy_append_user_rule)
9550         (bus_policy_append_group_rule): new functions
9551
9552 2003-04-12  Havoc Pennington  <hp@pobox.com>
9553
9554         * bus/config-parser.c (bus_config_parser_new): fix a memleak
9555
9556         * dbus/dbus-sysdeps.c: change DBusCredentials to use longs for
9557         the pid/gid/uid, just for paranoia.
9558
9559         * test/break-loader.c (randomly_do_n_things): find a byte
9560         containing a type code, and randomly change it to a different
9561         type code.
9562
9563 2003-04-12  Havoc Pennington  <hp@pobox.com>
9564
9565         * bus/policy.h: change BusPolicy to be the thing from the config
9566         file, and rename old BusPolicy to BusClientPolicy
9567
9568         * bus/bus.c, bus/connection.c, bus/config-parser.c: change to
9569         match change in how policy works
9570
9571         * dbus/dbus-internals.h: mark assert_not_reached as
9572         __attribute((noreturn))__
9573
9574 2003-04-11  Havoc Pennington  <hp@redhat.com>
9575
9576         * doc/dbus-specification.sgml: fix a spot with the wrong name for
9577         the broadcast service. Use boolean return for ServiceExists.
9578
9579 2003-04-11  Havoc Pennington  <hp@redhat.com>
9580
9581         * configure.in: add another directory to look for qt in.
9582
9583 2003-04-11  Havoc Pennington  <hp@redhat.com>
9584
9585         * AUTHORS: add Colin Walters
9586
9587 2003-04-11  Havoc Pennington  <hp@redhat.com>
9588
9589         * NEWS: update
9590
9591         * configure.in: 0.9
9592
9593 2003-04-11  Havoc Pennington  <hp@redhat.com>
9594
9595         * bus/messagebus.in: remove pid file when stopping the
9596         message bus, since the bus won't have privileges to remove it
9597         itself.
9598
9599 2003-04-11  Havoc Pennington  <hp@redhat.com>
9600
9601         * bus/bus.c (bus_context_new): move credentials change after
9602         creating pidfile
9603
9604 2003-04-11  Havoc Pennington  <hp@pobox.com>
9605
9606         * test/decode-gcov.c: add "below average functions" to the
9607         coverage report, and change how some of the code works.
9608
9609         * bus/test-main.c: bracket some stuff in DBUS_BUILD_TESTS so it's
9610         not in the coverage stats.
9611
9612         * test/test-service.c (main): use _dbus_verbose not fprintf in a
9613         couple places so running the test suite doesn't result in megaspam.
9614
9615 2003-04-11  Havoc Pennington  <hp@pobox.com>
9616
9617         * bus/dispatch.c (check_existent_service_activation): accept a no
9618         memory error in a place we didn't before
9619
9620         * bus/test.c (bus_test_run_everything): remove hacky "do it twice
9621         in case the first one failed," since the test suite is less
9622         broken now.
9623
9624 2003-04-10  Havoc Pennington  <hp@pobox.com>
9625
9626         * bus/dispatch.c (check_segfault_service_activation): add test
9627         for launching an executable that just crashes.
9628
9629         * test/test-segfault.c (main): try setting coredumpsize to 0 so we
9630         don't leave a million cores. We'll see how portable this is.
9631
9632 2003-04-10  Havoc Pennington  <hp@pobox.com>
9633
9634         * dbus/dbus-spawn.c (_dbus_spawn_async_with_babysitter): move all
9635         the possible parent failures before we fork, so that we don't
9636         fail to create a babysitter after creating the child.
9637
9638         * bus/activation.c (bus_activation_activate_service): kill child
9639         if we don't successfully complete the activation.
9640
9641 2003-04-10  Havoc Pennington  <hp@redhat.com>
9642
9643         * dbus/dbus-connection.c (dbus_connection_flush): don't spin on
9644         the connection if it's disconnected
9645
9646         * bus/activation.c (bus_activation_service_created): use new
9647         transaction features to roll back removal of pending activation if
9648         we don't successfully create the service after all. Don't remove
9649         pending activation if the function fails.
9650
9651         * dbus/dbus-list.c (_dbus_list_insert_before_link)
9652         (_dbus_list_insert_after_link): new code to facilitate
9653         services.c fixes
9654
9655         * dbus/dbus-hash.c (_dbus_hash_table_insert_string_preallocated):
9656         new functionality, so we can preallocate the ability to insert
9657         into a hash table.
9658
9659         * bus/connection.c (bus_transaction_add_cancel_hook): new function
9660         allowing us to put custom hooks in a transaction to be used for
9661         cancelling said transaction
9662
9663         * doc/dbus-specification.sgml: add some discussion of secondary
9664         service owners, and disallow zero-length service names
9665
9666         * bus/services.c (bus_registry_acquire_service): new function,
9667         splits out part of bus_driver_handle_acquire_service() and fixes
9668         a bug where we didn't remove the service doing the acquiring
9669         from the secondary queue if we failed to remove the current owner
9670         from the front of the queue.
9671
9672 2003-04-10  Alexander Larsson  <alexl@redhat.com>
9673
9674         * doc/dbus-specification.sgml:
9675         s/org.freedesktop.Broadcast/org.freedesktop.DBus.Broadcast/
9676
9677 2003-04-10  Alexander Larsson  <alexl@redhat.com>
9678
9679         * bus/.cvsignore:
9680         * glib/.cvsignore:
9681         * test/.cvsignore:
9682         Added files to cvsignore
9683
9684         * dbus/dbus-message.h:
9685         * dbus/dbus-message.c: (dbus_message_iter_get_named):
9686         Make get_named() take two out argument and return a boolean.
9687         (dbus_message_iter_get_args_valist):
9688         Update usage of get_named().
9689         (dbus_message_iter_append_byte):
9690         Fix typo
9691         (dbus_message_iter_append_named)
9692         Fix typo
9693         (message_iter_test), (check_message_handling_type), (_dbus_message_test):
9694         More tests.
9695
9696 2003-04-10  Alexander Larsson  <alexl@redhat.com>
9697
9698         * dbus/dbus-marshal.[ch]:
9699         Add array_type_pos argument to _dbus_marshal_validate_arg.
9700         Let you pass a NULL end_pos to _dbus_marshal_validate_type.
9701
9702         * dbus/dbus-message.[ch]:
9703         Multi-dimensional arrays have full type specification in the
9704         outermost array. Iter code re-arranged to handle this.
9705         Added some more iter tests.
9706
9707         * doc/dbus-specification.sgml:
9708         Add me to authors.
9709         Remove old FIXME.
9710         Update new array encoding description.
9711         Correct DBUS_SERVICE_FLAGS_REPLACE_EXISTING description.
9712
9713         * test/data/invalid-messages/array-with-mixed-types.message:
9714         * test/data/valid-messages/array-of-array-of-uint32.message:
9715         Change to the new array format.
9716
9717         * test/data/invalid-messages/too-short-dict.message:
9718         Fix bug in test.
9719
9720         * test/data/valid-messages/recursive-types.message:
9721         Fix up and extend test.
9722
9723 2003-04-10  Havoc Pennington  <hp@pobox.com>
9724
9725         * bus/dispatch.c: lots of fixes
9726
9727         * dbus/dbus-mainloop.c (_dbus_loop_dispatch): export
9728         (_dbus_loop_iterate): remove old "quit if no callbacks" code,
9729         that was crack, broke the test service.
9730
9731         * dbus/dbus-transport.c (_dbus_transport_open): fix error
9732         handling to avoid piling up errors if we get a failure on the
9733         first address.
9734
9735         * dbus/dbus-internals.c (_dbus_real_assert_not_reached): include
9736         pid in assertion failures.
9737
9738         * dbus/dbus-mainloop.c (_dbus_loop_iterate): use static arrays up
9739         to some fixed size of file descriptor array. Don't return TRUE
9740         anytime a timeout exists, that led to lots of busy loop silliness
9741         in the tests.
9742
9743 2003-04-09  Havoc Pennington  <hp@redhat.com>
9744
9745         * dbus/dbus-mainloop.c (check_timeout): fix timeouts, I thought
9746         I'd checked this in earlier but hadn't.
9747
9748 2003-04-09  Havoc Pennington  <hp@redhat.com>
9749
9750         * bus/dispatch.c (bus_dispatch_test): get a bit further through
9751         the activation test (man this is getting old!)
9752
9753 2003-04-09  Havoc Pennington  <hp@redhat.com>
9754
9755         * test/test-utils.c: use dispatch status function to fix this up
9756
9757         * bus/connection.c (connection_watch_callback): don't dispatch
9758         from here
9759         (connection_timeout_callback): don't dispatch from here
9760         (bus_connections_setup_connection): set the dispatch status function
9761         (bus_connection_disconnected): unset it
9762
9763         * dbus/dbus-mainloop.c (_dbus_loop_queue_dispatch): new function
9764         used to add a connection to be dispatched
9765         (_dbus_loop_iterate): do the dispatching at the end of each
9766         iteration
9767
9768         * dbus/dbus-connection.c
9769         (dbus_connection_set_dispatch_status_function): new function
9770         allowing us to fix up main loop usage
9771         (_dbus_connection_last_unref): free all the various function
9772         user data
9773         (dbus_connection_dispatch): call the DispatchStatusFunction
9774         whenever this function returns
9775         (dbus_connection_handle_watch): call DispatchStatusFunction
9776         (dbus_connection_send_with_reply_and_block): call DispatchStatusFunction
9777         (reply_handler_timeout): call DispatchStatusFunction
9778         (dbus_connection_flush): call DispatchStatusFunction
9779
9780 2003-04-09  Havoc Pennington  <hp@redhat.com>
9781
9782         * dbus/dbus-bus.c (dbus_bus_register): fix up error handling and
9783         a memory leak
9784
9785         * bus/dispatch.c (check_service_activated): fix bug in test
9786
9787         * dbus/dbus-mainloop.c (check_timeout): fix this up
9788
9789         * dbus/dbus-internals.c (_dbus_verbose_real): include PID in
9790         verbose output so we can sort out output from different processes,
9791         e.g. in the activation case.
9792
9793 2003-04-08  Colin Walters  <walters@gnu.org>
9794
9795         * bus/bus.c (struct BusContext) [pidfile]: New member, to store
9796         the pid file.
9797         (bus_context_new): Set it.
9798         (bus_context_unref): Use it to delete the pid file.
9799
9800 2003-04-08  Havoc Pennington  <hp@redhat.com>
9801
9802         * test/data/invalid-messages/array-with-mixed-types.message:
9803         regression test that fails for the moment
9804
9805         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): reorder
9806         tests for convenience
9807
9808         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): don't allow
9809         array of nil, it broke things.
9810
9811         * test/data/invalid-messages/array-of-nil.message: regression test
9812
9813         * test/data/valid-messages/array-of-array-of-uint32.message:
9814         happened to write this so added it to suite
9815
9816 2003-04-08  Havoc Pennington  <hp@redhat.com>
9817
9818         * bus/driver.c (bus_driver_handle_acquire_service): init
9819         retval/reply before checking name
9820
9821         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add a
9822         recursion depth argument
9823
9824         * dbus/dbus-message.h (struct DBusMessageIter): put some padding
9825         in the public struct for future extension
9826
9827         * dbus/dbus-message-builder.c (_dbus_message_data_load): fix
9828         typo
9829
9830         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): fix a verbose
9831         message
9832
9833         * doc/dbus-specification.sgml: fix typo
9834
9835 2003-04-08  Alexander Larsson  <alexl@redhat.com>
9836
9837         Implemented recursive types, named types and new-style iters
9838
9839         * bus/driver.c:
9840         * glib/test-thread-client.c: (thread_func):
9841         * glib/test-thread-server.c: (handle_test_message):
9842         * test/test-service.c: (handle_echo):
9843         Update to new api
9844
9845         * dbus/Makefile.am:
9846         * dbus/dbus-dict.c:
9847         * dbus/dbus-dict.h:
9848         * dbus/dbus.h
9849         Remove DBusDict
9850
9851         * dbus/dbus-internals.c: (_dbus_type_to_string):
9852         Update for new types.
9853
9854         * dbus/dbus-marshal.[ch]:
9855         Implement recursive types and the new marshalling format.
9856         Remove hardcoded dict marshalling.
9857         Marshal named types.
9858
9859         * dbus/dbus-message-builder.c:
9860         Add BYTE_ARRAY.
9861         Remove references to old types
9862
9863         * dbus/dbus-message.[ch]:
9864         New non-refcounted iter API that supports recursive iters.
9865         Use iters for appending, including support for recursive
9866         iters.
9867         Add byte and named type support.
9868         Update everything to new marshalling formats.
9869         Add tests for new API.
9870
9871         * dbus/dbus-protocol.h:
9872         Remove old array types.
9873         Add types: BYTE, ARRAY, DICT, NAMED
9874
9875         * dbus/dbus-string.c:
9876         * dbus/dbus-sysdeps.c:
9877         Make parse_double locale safe.
9878
9879         * dbus/dbus-test-main.c:
9880         Call setlocale.
9881
9882         * dbus/dbus-test.c:
9883         Kill dict test
9884
9885         * doc/dbus-specification.sgml:
9886         Update spec
9887
9888         * test/data/incomplete-messages/missing-body.message:
9889         * test/data/invalid-messages/bad-boolean.message:
9890         * test/data/invalid-messages/bad-boolean-array.message:
9891         * test/data/invalid-messages/boolean-array-length-too-long.message-raw:
9892         * test/data/invalid-messages/boolean-has-no-value.message-raw:
9893         * test/data/invalid-messages/too-short-dict.message:
9894         * test/data/valid-messages/dict-simple.message:
9895         * test/data/valid-messages/dict.message:
9896         * test/data/valid-messages/emptiness.message:
9897         * test/data/valid-messages/lots-of-arguments.message:
9898         * test/data/valid-messages/no-padding.message:
9899         * test/data/valid-messages/recursive-types.message:
9900         Add missing NAME fields
9901         Fix up dicts & arrays
9902
9903         * test/data/invalid-messages/dict-with-nil-value.message:
9904         Removed, this is not invalid anymore.
9905
9906         * test/data/valid-messages/recursive-types.message:
9907         Add new test for deeply recursive types.
9908
9909 2003-04-07  Havoc Pennington  <hp@pobox.com>
9910
9911         * bus/driver.c (bus_driver_handle_acquire_service): return an
9912         error if you try to acquire a service that starts with ':'
9913
9914 2003-04-07  Havoc Pennington  <hp@redhat.com>
9915
9916         * doc/dbus-specification.sgml: require that base service names
9917         start with ':' and that the base service is created/deleted
9918         as first and last things a connection does on the bus
9919
9920         * bus/dispatch.c (check_existent_service_activation): lots more
9921         work on the activation test; it doesn't fully pass yet...
9922
9923         * test/test-service.c (main): fix so we don't memleak the
9924         connection to the message bus
9925         (filter_func): accept a message asking us to exit
9926
9927 2003-04-06  Havoc Pennington  <hp@pobox.com>
9928
9929         * qt/Makefile.am (dbusinclude_HEADERS): install dbus-qt.h,
9930         from Colin Walters
9931
9932         * configure.in: fixes to Qt detection from Colin Walters
9933
9934         * doc/Makefile.am: Only remove generated docbook dirs if they
9935         exist, from Colin Walters
9936
9937         * dbus/dbus-bus.c: change how we set well-known connections to
9938         NULL, so that it works if a single connection is stored in
9939         two well-known array slots.
9940
9941         * test/Makefile.am: remove a lot of stuff that isn't immediately
9942         useful, it's in CVS history if we want it.
9943
9944         * test/test-service.c: use dbus-mainloop instead of that
9945         watch.[hc] crack
9946
9947 2003-04-06  Havoc Pennington  <hp@pobox.com>
9948
9949         * dbus/Makefile.am: split lists of sources into stuff that goes in
9950         the library, util functions that go in the lib and are also used
9951         elsewhere, and util functions that are used in tests/daemon but
9952         don't go in the lib.
9953
9954         * dbus/dbus-mainloop.h, dbus/dbus-mainloop.c: move bus/loop.[hc]
9955         here so it can be used in test binaries also
9956
9957 2003-04-06  Havoc Pennington  <hp@pobox.com>
9958
9959         * dbus/dbus-sysdeps.c (_dbus_become_daemon): write the pidfile
9960         here in the parent process, so we can return an error if it
9961         fails. Also, move some of the code into the child so the parent
9962         is less hosed if we fail midway through.
9963
9964         * bus/bus.c (bus_context_new): move pidfile detection further up
9965         in the function, before we start overwriting sockets and such.
9966
9967         * bus/messagebus.in: adjust this a bit, not sure if it will work.
9968
9969         * configure.in: add --with-system-pid-file and --with-system-socket
9970
9971 2003-04-06  Colin Walters  <walters@verbum.org>
9972
9973         * configure.in (DBUS_SYSTEM_PID_FILE): New variable.
9974
9975         * bus/system.conf.in: Declare a pidfile.
9976
9977         * bus/bus.c (bus_context_new): Test for an existing pid file, and
9978         create one (if appropriate).
9979
9980         * bus/config-parser.c (enum ElementType) [ELEMENT_PIDFILE]: New.
9981         (struct BusConfigParser) [pidfile]: New.
9982         (element_type_to_name, merge_included, start_busconfig_child)
9983         (bus_config_parser_end_element, bus_config_parser_content): Handle it.
9984         (bus_config_parser_unref): Free it.
9985         (bus_config_parser_get_pidfile): New function.
9986
9987         * bus/config-parser.h (_dbus_write_pid_file): Prototype.
9988
9989         * dbus/dbus-errors.h (DBUS_ERROR_PIDFILE_EXISTS): New error.
9990
9991         * dbus/dbus-sysdeps.c (_dbus_write_pid_file): New function.
9992
9993         * dbus/dbus-sysdeps.h: Prototype it.
9994
9995 2003-04-06  Havoc Pennington  <hp@pobox.com>
9996
9997         * bus/bus.c (bus_context_new): print the address in here, rather
9998         than in main(), because we need to do it before forking the daemon
9999
10000         * bus/dispatch.c (send_service_nonexistent_error): set the sender
10001         on the service nonexistent error
10002
10003         * bus/driver.c (bus_driver_handle_acquire_service): set the
10004         sender on the AcquireService reply
10005
10006         * test/data/valid-config-files/debug-allow-all.conf.in: Make test
10007         server also listen on a UNIX socket so services can connect to it.
10008
10009 2003-04-06  Havoc Pennington  <hp@pobox.com>
10010
10011         * dbus/dbus-threads.c: Redo how the fake debug mutexes are done
10012         so it detects deadlocks and also we actually init threads when
10013         debugging.
10014
10015 2003-04-06  Havoc Pennington  <hp@pobox.com>
10016
10017         * dbus/dbus-server-unix.c (_dbus_server_new_for_domain_socket):
10018         save the domain socket name, and unlink it when we disconnect the
10019         server. Means that at least when we exit normally, we won't leave
10020         a bunch of junk in /tmp
10021
10022         * dbus/dbus-transport-unix.c
10023         (_dbus_transport_new_for_domain_socket): code cleanup (nicer
10024         memory management). (I was making a real change here but then
10025         didn't)
10026
10027 2003-04-06  Havoc Pennington  <hp@pobox.com>
10028
10029         * bus/bus.c (bus_context_new): fix wrong handling of
10030         server_data_slot_unref() in the error case.
10031
10032         * dbus/dbus-internals.h (_dbus_assert): change so it passes
10033         "(condition) != 0" to _dbus_real_assert so that
10034         "_dbus_assert (pointer)" doesn't cause a warning
10035
10036         * bus/main.c (main): accept --print-address option to print out
10037         the message bus address
10038
10039         * dbus/dbus-sysdeps.c (_dbus_generate_random_ascii): export this
10040
10041         * dbus/dbus-transport.c (_dbus_transport_open): special error for
10042         "tmpdir" option to unix: address on client side
10043
10044         * dbus/dbus-server.c (dbus_server_listen): handle "tmpdir" option
10045         to unix: address
10046
10047         * configure.in (TEST_SOCKET_DIR): locate a temporary directory
10048         we can use to create sockets in the test suite.
10049
10050         * bus/main.c (signal_handler): on SIGTERM, exit the daemon
10051         cleanly. To be used for testing.
10052
10053         * dbus/dbus-spawn.c (babysit): use _dbus_set_signal_handler()
10054
10055         * dbus/dbus-sysdeps.c (_dbus_set_signal_handler): new
10056
10057         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
10058         handle trying to call this when there's no servers active
10059
10060 2003-04-05  Havoc Pennington  <hp@pobox.com>
10061
10062         * NEWS: update
10063
10064         * configure.in: 0.8
10065
10066 2003-04-05  Havoc Pennington  <hp@pobox.com>
10067
10068         * bus/bus.c (setup_server): fix this so dbus-daemon-1 doesn't
10069         crash on startup. Need to get "try starting the daemon"
10070         in the test suite I guess. ;-)
10071
10072         * dbus/dbus-server.h, dbus/dbus-server.c: remove the stuff that
10073         tracked the number of open connections; it's better done in
10074         application-specific code as you want it to span all servers etc.
10075
10076 2003-04-05  Havoc Pennington  <hp@pobox.com>
10077
10078         * bus/Makefile.am (install-data-hook): add missing DESTDIR,
10079         patch from Colin Walters
10080
10081 2003-04-05  Havoc Pennington  <hp@pobox.com>
10082
10083         * doc/config-file.txt (Elements): fix docs of <auth> to reflect
10084         reality; in fact multiple mechanisms are allowed.
10085
10086         * dbus/dbus-internals.c (_dbus_real_assert)
10087         (_dbus_real_assert_not_reached): move guts of _dbus_assert() and
10088         _dbus_assert_not_reached() into functions, so that they don't show
10089         up in basic block counts for test coverage, and don't use up as
10090         much disk space. Does mean slower execution speed though, so
10091         assumes --disable-asserts is the normal production case.
10092
10093 2003-04-05  Havoc Pennington  <hp@pobox.com>
10094
10095         * test/Makefile.am (dist-hook): also dist *.in files
10096
10097         * NEWS: update
10098
10099         * configure.in: 0.7
10100
10101 2003-04-05  Havoc Pennington  <hp@pobox.com>
10102
10103         * dbus/dbus-string.c: docs warning
10104
10105         * dbus/dbus-spawn.c: missing docs
10106
10107         * dbus/dbus-memory.c (struct ShutdownClosure): missing docs
10108
10109 2003-04-05  Havoc Pennington  <hp@pobox.com>
10110
10111         * bus/loop.c (bus_loop_iterate): fix the timeout code, using
10112         magic from GLib
10113
10114         * dbus/dbus-spawn.c (_dbus_babysitter_unref): set sitter_pid
10115         to -1 once we've reaped the babysitter
10116         (_dbus_babysitter_handle_watch): do as much work as we can, not
10117         just one go of it
10118
10119         * bus/activation.c: add code using DBusBabysitter so that we
10120         handle it when a service fails to start up properly.
10121         (bus_activation_service_created): don't remove the activation
10122         entries as we go, just let them get removed when we free the pending
10123         activation. Unref reply messages after sending them.
10124
10125 2003-04-05  Havoc Pennington  <hp@pobox.com>
10126
10127         * test/decode-gcov.c (main): print per-directory stats in the report
10128
10129         * Makefile.am (coverage-report.txt): don't include test/* in gcov stats
10130
10131 2003-04-05  Havoc Pennington  <hp@pobox.com>
10132
10133         * Makefile.am (coverage-report.txt): add target "coverage-report.txt"
10134
10135         * test/decode-gcov.c: hack up a little program to suck data
10136         out of gcov files. Yes this is sort of silly.
10137
10138         * configure.in: define something in config.h and do an
10139         AM_CONDITIONAL when gcov is enabled
10140
10141 2003-04-04  Havoc Pennington  <hp@redhat.com>
10142
10143         * dbus/dbus-spawn.c, dbus/dbus-spawn.h: Change dbus_spawn to
10144         return a "babysitter" object that is used to monitor the status of
10145         the spawned process and reap it when required.
10146
10147         * test/test-segfault.c, test/test-exit.c,
10148         test/test-sleep-forever.c: binaries that do various lame things,
10149         used in the test suite.
10150
10151         * dbus/dbus-sysdeps.c: kill _dbus_errno_to_string()
10152
10153 2003-04-03  Havoc Pennington  <hp@pobox.com>
10154
10155         * dbus/dbus-spawn.c: Move dbus-spawn into a separate file
10156         in preparation for modifying it, dbus-sysdeps is getting
10157         a bit unmanageable.
10158
10159 2003-04-03  Havoc Pennington  <hp@redhat.com>
10160
10161         * bus/loop.h, bus/loop.c: make the mainloop an object so we can
10162         have multiple ones
10163
10164         * bus/*.[hc]: adapt to mainloop change
10165
10166 2003-04-03  Havoc Pennington  <hp@redhat.com>
10167
10168         * bus/activation.c (load_directory): fix up memleaks
10169         (bus_activation_entry_free): free the entry
10170
10171         * dbus/dbus-bus.c (dbus_bus_acquire_service): return an error if
10172         we get one from the message bus; fix memleaks.
10173
10174         * dbus/dbus-message.c (dbus_set_error_from_message): new function
10175
10176 2003-04-03  Havoc Pennington  <hp@pobox.com>
10177
10178         * bus/config-parser.c (bus_config_parser_unref): free
10179         list of mechanisms, bug discovered by test suite enhancements
10180         (putting system.conf and session.conf into suite)
10181
10182         * test/Makefile.am, test/test-service.c: add placeholder for a
10183         test service that we'll activate as part of test suite. Doesn't
10184         do anything yet.
10185
10186         * dbus/dbus-sysdeps.c (_dbus_setenv): support unsetenv by
10187         setting NULL value, and use system malloc not dbus_malloc()
10188         when we have unavoidable memleakage.
10189
10190         * dbus/dbus-bus.c (dbus_bus_get): fix bug where bus type of 0
10191         didn't work, and support DBUS_BUS_ACTIVATION.
10192
10193         * bus/activation.c (child_setup): pass our well-known bus type to
10194         the child
10195
10196         * bus/config-parser.c: support <type> to specify well-known type
10197
10198         * doc/dbus-specification.sgml: document the env variables to
10199         locate well-known buses and find service activator
10200
10201 2003-04-02  Havoc Pennington  <hp@redhat.com>
10202
10203         * test/Makefile.am (all-local): add a rule to copy tests to
10204         builddir, so we can have generated tests. Use this to remove the
10205         silly hack for testing system.conf and session.conf. Will use this
10206         shortly to generate .service files pointing to test binaries.
10207
10208 2003-04-02  Havoc Pennington  <hp@redhat.com>
10209
10210         * dbus/dbus-string.c (set_length): fix a bug - we allocated max of
10211         current alloc and needed new length, not max of the doubled
10212         allocation and needed new length. Also, when building tests,
10213         don't do the double-allocation stuff, just realloc every time.
10214
10215 2003-04-02  Havoc Pennington  <hp@redhat.com>
10216
10217         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): include filenames
10218         in error messages
10219         (_dbus_string_get_dirname): new
10220         (_dbus_sysdeps_test): new
10221         (_dbus_directory_open): include dirnames in error messages
10222
10223         * bus/config-parser.c: interpret <include> and <includedir> and
10224         <servicedir> relative to config file location if the given
10225         filename is not absolute.
10226
10227         * dbus/dbus-string.c (_dbus_string_find_byte_backward): new
10228
10229 2003-04-02  Havoc Pennington  <hp@redhat.com>
10230
10231         * bus/connection.c (bus_transaction_send_error_reply): set sender
10232         service for the error, and unref the reply on success
10233
10234         * bus/activation.c: convert to use BusTransaction so OOM can be
10235         handled correctly
10236         (bus_activation_service_created): set sender of the message
10237
10238 2003-04-01  Havoc Pennington  <hp@redhat.com>
10239
10240         * bus/config-parser.c, bus/bus.c: implement <servicedir> and
10241         <includedir> (at least mostly)
10242
10243         * dbus/dbus-sysdeps.c (_dbus_change_identity): set the group ID
10244         first, then the user ID
10245
10246 2003-04-01  Havoc Pennington  <hp@pobox.com>
10247
10248         * dbus/dbus-server.c (dbus_server_set_auth_mechanisms): new
10249         function
10250
10251         * dbus/dbus-auth.c (_dbus_auth_set_mechanisms): new
10252
10253         * dbus/dbus-internals.c (_dbus_dup_string_array): new function
10254
10255         * dbus/dbus-sysdeps.c (_dbus_listen_unix_socket): chmod the
10256         socket 0777, and unlink any existing socket.
10257
10258         * bus/bus.c (bus_context_new): change our UID/GID and fork if
10259         the configuration file so specifies; set up auth mechanism
10260         restrictions
10261
10262         * bus/config-parser.c (bus_config_parser_content): add support
10263         for <fork> option and fill in code for <auth>
10264
10265         * bus/system.conf.in: add <fork/> to default configuration,
10266         and limit auth mechanisms to EXTERNAL
10267
10268         * doc/config-file.txt (Elements): add <fork>
10269
10270         * dbus/dbus-sysdeps.c (_dbus_become_daemon): new function
10271         (_dbus_change_identity): new function
10272
10273 2003-03-31  Havoc Pennington  <hp@redhat.com>
10274
10275         * dbus/dbus-sysdeps.c (_dbus_connect_unix_socket)
10276         (_dbus_listen_unix_socket): fix off-by-one error in null
10277         termination spotted by Nalin
10278
10279 2003-03-31  Havoc Pennington  <hp@redhat.com>
10280
10281         * dbus/dbus-keyring.c (_dbus_keyring_new_homedir): allow setting
10282         DBUS_TEST_HOMEDIR when tests are enabled, so we can test without
10283         having a real home directory available.
10284
10285 2003-03-31  Havoc Pennington  <hp@redhat.com>
10286
10287         * bus/Makefile.am (install-data-hook): create /var/run/dbus
10288
10289         * bus/messagebus.in: add init script for Red Hat /etc/init.d
10290
10291         * configure.in: add support for specifying a style of init script
10292         to install
10293
10294 2003-03-31  Havoc Pennington  <hp@redhat.com>
10295
10296         Fix some annoying DBusString API and fix all affected code.
10297
10298         * dbus/dbus-string.c (_dbus_string_init): get rid of annoying
10299         max_length argument
10300         (_dbus_string_get_data): change to return string instead of using
10301         an out param
10302         (_dbus_string_get_const_data): ditto
10303         (_dbus_string_get_data_len): ditto
10304         (_dbus_string_get_const_data_len): ditto
10305
10306 2003-03-31  Havoc Pennington  <hp@redhat.com>
10307
10308         * bus/main.c (main): fix up the command line arguments to be nicer
10309
10310 2003-03-31  Havoc Pennington  <hp@redhat.com>
10311
10312         * dbus/Makefile.am (INCLUDES): use EXPANDED_LOCALSTATEDIR to
10313         define DBUS_SYSTEM_BUS_PATH as we want to compile in the same
10314         final location that lands in the config file
10315
10316         * bus/config-loader-expat.c (bus_config_load): fix type of
10317         XML_Parser variable
10318
10319         * doc/TODO: remove TODO item for dbus_bus_get()
10320
10321         * dbus/dbus-bus.c (bus_data_free): add missing lock/unlock
10322
10323 2003-03-31  Havoc Pennington  <hp@pobox.com>
10324
10325         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_domain_socket)
10326         (_dbus_transport_new_for_tcp_socket): these didn't need the "server"
10327         argument since they are always client side
10328
10329         * dbus/dbus-server.c (dbus_server_get_address): new function
10330
10331         * bus/main.c (main): take the configuration file as an argument.
10332
10333         * test/data/valid-config-files/debug-allow-all.conf: new file to
10334         use with dispatch.c tests for example
10335
10336         * bus/test-main.c (main): require test data dir
10337
10338         * bus/bus.c (bus_context_new): change this to take a
10339         configuration file name as argument
10340
10341         * doc/config-file.txt (Elements): add <servicedir>
10342
10343         * bus/system.conf, bus/session.conf: new files
10344
10345         * dbus/dbus-bus.c (dbus_bus_get): look for system bus on
10346         well-known socket if none set
10347
10348         * configure.in: create system.conf and session.conf
10349
10350 2003-03-30  Havoc Pennington  <hp@pobox.com>
10351
10352         * bus/config-parser.c: hacking
10353
10354         * dbus/dbus-memory.c: don't use DBusList for the list of stuff
10355         to shut down, since it could cause weirdness with the DBusList
10356         lock
10357
10358         * dbus/dbus-list.c (_dbus_list_test): add tests for the
10359         link-oriented stack routines
10360         (alloc_link): free the mempool if the first alloc from it fails
10361
10362         * dbus/dbus-mempool.c (struct DBusMemBlock): fix alignment issue
10363
10364         * dbus/dbus-string.c (UNICODE_VALID): sync new version of this
10365         from GLib
10366         (_dbus_string_skip_white): new
10367
10368         * doc/config-file.txt (Elements): add <includedir>
10369
10370 2003-03-28  Havoc Pennington  <hp@pobox.com>
10371
10372         * dbus/dbus-string.c (_dbus_string_copy_data_len)
10373         (_dbus_string_copy_data): new functions
10374
10375 2003-03-28  Anders Carlsson  <andersca@codefactory.se>
10376
10377         * dbus/dbus-bus.c: (bus_data_free), (dbus_bus_get):
10378         * dbus/dbus-bus.h:
10379         Add dbus_bus_get.
10380
10381         * dbus/dbus-memory.c:
10382         Fix a doc comment.
10383
10384 2003-03-28  Havoc Pennington  <hp@pobox.com>
10385
10386         * bus/test.c (bus_test_flush_bus): remove the sleep from here,
10387         I think it may have just been superstition. Not sure.
10388
10389         * dbus/dbus-string.c (_dbus_string_base64_decode): catch some OOM
10390         failures that were not being handled.
10391
10392         * dbus/dbus-auth.c (process_auth): fix a memleak in OOM handling
10393
10394         * dbus/dbus-memory.c: add ability to set number of mallocs in a
10395         row that will fail on out-of-memory.
10396
10397         * dbus/dbus-internals.c (_dbus_test_oom_handling): convenience
10398         function for testing out-of-memory handling.
10399
10400         * bus/config-loader-expat.c (memsuite): don't wrap the dbus
10401         allocation functions, they do map exactly to the expat ones.
10402
10403 2003-03-27  Havoc Pennington  <hp@redhat.com>
10404
10405         * bus/config-loader-libxml.c (bus_config_load): add another error
10406         check
10407
10408 2003-03-26  Anders Carlsson  <andersca@codefactory.se>
10409
10410         * doc/TODO:
10411         Add note about automatic service activation.
10412
10413         * doc/dbus-specification.sgml:
10414         Rename the specification and clarify a few things.
10415
10416 2003-03-26  Anders Carlsson  <andersca@codefactory.se>
10417
10418         * Doxyfile.in:
10419         * dbus/dbus-address.c:
10420         * dbus/dbus-dict.c:
10421         * dbus/dbus-marshal.c:
10422         * dbus/dbus-server-debug-pipe.c:
10423         * dbus/dbus-transport-unix.c:
10424         Fix documentation warnings.
10425
10426 2003-03-26  Havoc Pennington  <hp@pobox.com>
10427
10428         * bus/test-main.c, dbus/dbus-test.c (main): check memleaks
10429         after every test so it's quick and easy to see which leaked, and
10430         so we test multiple dbus_shutdown() calls
10431
10432         * configure.in: change configure.in XML stuff to also support
10433         expat
10434
10435         * config-loader-libxml.c: some hacking
10436
10437         * config-loader-expat.c: some hacking
10438
10439         * config-parser.c: some hacking, plus tests
10440
10441 2003-03-25  Havoc Pennington  <hp@redhat.com>
10442
10443         * throughout - add more _DBUS_ASSERT_ERROR_IS_CLEAR
10444
10445         * configure.in: add --with-xml option to specify XML library,
10446         right now only libxml is supported.
10447
10448         * bus/config-loader-libxml.c, config-parser.c: sync some minor
10449         nonworking code between home and work, still just stubs
10450
10451 2003-03-24  Havoc Pennington  <hp@redhat.com>
10452
10453         * dbus/dbus-sysdeps.c (_dbus_set_fd_nonblocking): move to this
10454         file
10455
10456         * dbus/dbus-errors.c (dbus_set_error, dbus_set_error_const): allow
10457         NULL argument for "message" if the error is a well-known one,
10458         fill in a generic message in this case.
10459
10460         * dbus/dbus-errors.h (DBusResultCode): Kill DBusResultCode in
10461         favor of DBusError
10462
10463         * bus/test.c (bus_test_flush_bus): add
10464
10465         * bus/policy.c (bus_policy_test): test code stub
10466
10467 2003-03-24  Havoc Pennington  <hp@pobox.com>
10468
10469         * bus/connection.c (bus_connections_setup_connection): set up
10470         the "can this user connect" function, but it always returns
10471         TRUE until we have a config file parser so we can have a config
10472         file that allows connections.
10473
10474 2003-03-23  Havoc Pennington  <hp@pobox.com>
10475
10476         * dbus/dbus-threads.c (dbus_mutex_new, dbus_condvar_new): with
10477         DBUS_BUILD_TESTS, actually alloc/free a block of memory for
10478         the mutex, so we can check for proper memory management
10479         and OOM handling.
10480
10481         * dbus/dbus-dataslot.c: remove the mutex from
10482         DBusDataSlotAllocator and lock it manually when using it,
10483         to simplify fitting it into the global slots framework.
10484
10485         * dbus/dbus-threads.c (init_static_locks): rework how we're
10486         handling global locks so they are easily shut down.
10487
10488         * bus/policy.c (bus_policy_append_rule): fix
10489
10490         * bus/test-main.c (main): check for memleaks
10491
10492         * dbus/dbus-test.c (dbus_internal_do_not_use_run_tests): make
10493         test suite check for memleaks
10494
10495         * dbus/dbus-memory.c: add support in test mode for tracking
10496         number of outstanding blocks
10497
10498 2003-03-23  Havoc Pennington  <hp@pobox.com>
10499
10500         * bus/policy.c, bus/bus.c, bus/connection.c: implement allow/deny
10501         policies code
10502
10503         * dbus/dbus-hash.h: add ULONG hash keys
10504
10505         * dbus/dbus-sysdeps.c (_dbus_get_groups): new
10506         (_dbus_get_group_id): new function
10507
10508 2003-03-20  Havoc Pennington  <hp@redhat.com>
10509
10510         * dbus/dbus-connection.c (dbus_connection_set_unix_user_function):
10511         new function
10512         (dbus_connection_get_unix_user): new function
10513
10514 2003-03-20  Havoc Pennington  <hp@pobox.com>
10515
10516         * bus/connection.c (bus_connection_send_oom_error): assert that
10517         message has a sender
10518         (connection_execute_transaction): ditto
10519         (bus_connection_preallocate_oom_error): fix to set the sender, and
10520         set recipient to the destination service, not the bus driver
10521
10522         * bus/policy.c: hacking
10523
10524         * dbus/dbus-message.c (dbus_message_service_is): new function
10525         (dbus_message_sender_is): new
10526
10527 2003-03-19  Havoc Pennington  <hp@redhat.com>
10528
10529         * bus/policy.c: start sketching code for policy restrictions on
10530         what connections can do.
10531
10532 2003-03-18  Havoc Pennington  <hp@redhat.com>
10533
10534         * doc/TODO: some notes on high-level todo items. Little nitpick
10535         stuff is all in @todo, so no need to add it here.
10536
10537         * doc/config-file.txt: some notes on how config file might look
10538
10539 2003-03-18  Anders Carlsson  <andersca@codefactory.se>
10540
10541         * configure.in: 0.6
10542
10543         * NEWS: Update.
10544
10545 2003-03-17  Havoc Pennington  <hp@redhat.com>
10546
10547         * dbus/dbus-internals.h: add gcc attributes so that
10548         our printf-style functions warn on bad arguments to
10549         format
10550
10551         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): fix printf
10552         format bug
10553
10554         * dbus/dbus-message.c (_dbus_message_loader_queue_messages): fix
10555         printf format bug
10556
10557 2003-03-17  Havoc Pennington  <hp@redhat.com>
10558
10559         * bus/test-main.c (main): make it print something as it runs
10560         so make check doesn't look stuck
10561
10562         * doc/negotiation.txt, doc/dbus-sasl-profile.txt: remove
10563         from CVS, now obsolete
10564
10565 2003-03-17  Anders Carlsson  <andersca@codefactory.se>
10566
10567         * bus/dispatch.c: (bus_dispatch):
10568         Refetch the service name since it may have been reallocated
10569         when dbus_message_set_sender was called.
10570
10571         * dbus/dbus-sysdeps.c: (_dbus_accept):
10572         Add address and address length variables and use them to stop
10573         valgrind from complaining.
10574
10575 2003-03-17  Havoc Pennington  <hp@pobox.com>
10576
10577         All tests pass, no memleaks, no valgrind complaints.
10578
10579         * bus/test.c: refcount handler_slot
10580
10581         * bus/connection.c (bus_connections_new): refcount
10582         connection_data_slot
10583
10584         * dbus/dbus-auth-script.c (_dbus_auth_script_run): delete unused
10585         bytes so that auth scripts pass.
10586
10587         * bus/dispatch.c: init message_handler_slot so it gets allocated
10588         properly
10589
10590         * bus/dispatch.c (message_handler_slot_ref): fix memleak
10591
10592         * dbus/dbus-server-debug-pipe.c (_dbus_server_debug_pipe_new):
10593         dealloc server_pipe_hash when no longer used for benefit of
10594         leak checking
10595
10596         * dbus/dbus-auth.c (process_command): memleak fix
10597
10598         * bus/dispatch.c (check_hello_message): memleak fix
10599
10600 2003-03-16  Havoc Pennington  <hp@pobox.com>
10601
10602         * dbus/dbus-bus.c (ensure_bus_data): fix double-unref of the data slot
10603
10604 2003-03-17  Anders Carlsson  <andersca@codefactory.se>
10605
10606         * bus/activation.c (bus_activation_activate_service): Append
10607         the pending activation entry to the list of pending activations.
10608
10609 2003-03-16  Havoc Pennington  <hp@pobox.com>
10610
10611         * bus/dispatch.c (bus_dispatch_test): remove double-unrefs of
10612         connections
10613
10614         * dbus/dbus-address.c (create_entry): fix OOM handling when
10615         failing to alloc entry->method
10616
10617 2003-03-16  Havoc Pennington  <hp@pobox.com>
10618
10619         * dbus/dbus-watch.c (_dbus_watch_new): handle failure to malloc
10620         the watch
10621
10622         * dbus/dbus-server-debug-pipe.c (_dbus_transport_debug_pipe_new):
10623         add some missing dbus_set_result
10624
10625         * bus/dispatch.c (bus_dispatch_add_connection): handle failure to
10626         alloc the DBusMessageHandler
10627
10628         * dbus/dbus-transport.c (_dbus_transport_disconnect): don't ref
10629         the transport here, since we call this from the finalizer; it
10630         resulted in a double-finalize.
10631
10632         * dbus/dbus-transport.c (_dbus_transport_disconnect): fix a bug
10633         where we tried to use transport->connection that was NULL,
10634         happened when transport was disconnected early on due to OOM
10635
10636         * bus/*.c: adapt to handle OOM for watches/timeouts
10637
10638         * dbus/dbus-transport-unix.c: port to handle OOM during
10639         watch handling
10640
10641         * dbus/dbus-auth.c (_dbus_auth_get_unused_bytes): return a
10642         reference to unused bytes instead of a copy
10643
10644         * dbus/dbus-server.c (dbus_server_handle_watch): return FALSE for
10645         out of memory
10646
10647         * dbus/dbus-connection.c (dbus_connection_handle_watch): return
10648         FALSE on OOM
10649
10650         * dbus/dbus-timeout.c (dbus_timeout_handle): return FALSE for out
10651         of memory
10652
10653 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
10654
10655         * doc/dbus-specification.sgml:
10656         Document reply message for ActivateService.
10657
10658 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
10659
10660         * bus/activation.c: (bus_pending_activation_entry_free),
10661         (bus_pending_activation_free), (bus_activation_new),
10662         (bus_activation_unref), (bus_activation_service_created),
10663         (bus_activation_activate_service):
10664         * bus/activation.h:
10665         * bus/bus.c: (bus_context_new):
10666         * bus/desktop-file.c: (new_section):
10667         * bus/driver.c: (bus_driver_send_service_deleted),
10668         (bus_driver_handle_activate_service):
10669         * bus/services.c: (bus_registry_new), (bus_registry_ensure):
10670         * bus/services.h:
10671         * dbus/dbus-connection.c:
10672         (dbus_connection_send_with_reply_and_block):
10673         * dbus/dbus-message.c: (dbus_message_append_args_valist):
10674         * dbus/dbus-protocol.h:
10675         Make activation work better. Now pending activations will be queued
10676         and the daemon won't try to activate services that are already registered.
10677
10678 2003-03-16  Havoc Pennington  <hp@pobox.com>
10679
10680         * dbus/dbus-bus.c (ensure_bus_data): handle failure to set
10681         connection data
10682
10683         * dbus/dbus-memory.c (_dbus_initialize_malloc_debug): support
10684         DBUS_MALLOC_BACKTRACES to print trace when failing an alloc
10685
10686 2003-03-16  Havoc Pennington  <hp@pobox.com>
10687
10688         * dbus/dbus-string.c (_dbus_string_validate_utf8): oops, unbreak
10689         this. always run the test suite before commit...
10690
10691         * bus/*: adapt to DBusConnection API changes
10692
10693         * glib/dbus-gmain.c: adapt to DBusConnection API changes,
10694         requires renaming stuff to avoid dbus_connection_dispatch name
10695         conflict.
10696
10697         * dbus/dbus-transport.c (_dbus_transport_queue_messages): new
10698         function
10699
10700         * dbus/dbus-message.c (_dbus_message_loader_queue_messages):
10701         separate from _dbus_message_loader_return_buffer()
10702
10703         * dbus/dbus-connection.c (dbus_connection_get_n_messages): remove
10704         this, because it's now always broken to use; the number of
10705         messages in queue vs. the number still buffered by the message
10706         loader is undefined/meaningless. Should use
10707         dbus_connection_get_dispatch_state().
10708         (dbus_connection_dispatch): rename from
10709         dbus_connection_dispatch_message
10710
10711 2003-03-16  Havoc Pennington  <hp@pobox.com>
10712
10713         * dbus/dbus-string.c (_dbus_string_validate_utf8): copy in a real
10714         implementation
10715
10716 2003-03-16  Anders Carlsson  <andersca@codefactory.se>
10717
10718         * dbus/dbus-connection.c:
10719         (dbus_connection_send_with_reply_and_block):
10720         Decrease connection->n_incoming when removing an entry
10721         from the list.
10722         * dbus/dbus-dict.c: (dbus_dict_entry_free),
10723         (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
10724         (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
10725         (dbus_dict_set_byte_array), (dbus_dict_set_string_array),
10726         (dbus_dict_get_boolean_array), (dbus_dict_get_double_array),
10727         (dbus_dict_get_byte_array):
10728         Handle NULL arrays and strings. Also add support for byte arrays.
10729
10730         * dbus/dbus-marshal.c: (_dbus_marshal_byte_array),
10731         (_dbus_marshal_dict), (_dbus_demarshal_byte_array),
10732         (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
10733         (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
10734         (_dbus_demarshal_dict), (demarshal_and_validate_len),
10735         (_dbus_marshal_validate_arg), (_dbus_marshal_test):
10736         * dbus/dbus-marshal.h:
10737         Add support for marshalling and demarshalling empty arrays and strings.
10738
10739         * dbus/dbus-message.c: (dbus_message_append_args_valist),
10740         (dbus_message_append_string_array),
10741         (dbus_message_iter_get_boolean),
10742         (dbus_message_iter_get_boolean_array),
10743         (dbus_message_iter_get_int32_array),
10744         (dbus_message_iter_get_uint32_array),
10745         (dbus_message_iter_get_double_array),
10746         (dbus_message_iter_get_byte_array),
10747         (dbus_message_iter_get_string_array), (dbus_message_iter_get_dict),
10748         (check_message_handling):
10749         Add support for getting empty arrays and dicts.
10750
10751         * dbus/dbus-string.c: (_dbus_string_validate_utf8):
10752         Don't do any validation at all for now, that's better than just checking
10753         for ASCII.
10754
10755         * test/data/valid-messages/emptiness.message:
10756         New test message with lots of empty arrays.
10757
10758 2003-03-16  Havoc Pennington  <hp@pobox.com>
10759
10760         * dbus/dbus-connection.c
10761         (_dbus_connection_queue_received_message_link): new function that
10762         can't fail due to OOM
10763
10764         * dbus/dbus-message.c (_dbus_message_loader_pop_message_link):
10765         new function pops a message together with a list link
10766         containing it.
10767
10768         * dbus/dbus-transport-unix.c (queue_messages): use new link-based
10769         message queuing functions to avoid needing to alloc memory
10770
10771 2003-03-16  Havoc Pennington  <hp@pobox.com>
10772
10773         Oops - test code was only testing failure of around 30 of the
10774         mallocs in the test path, but it turns out there are 500+
10775         mallocs. I believe this was due to misguided linking setup such
10776         that there was one copy of dbus_malloc etc. in the daemon and one
10777         in the shared lib, and only daemon mallocs were tested. In any
10778         case, the test case now tests all 500+ mallocs, and doesn't pass
10779         yet, though there are lots of fixes in this patch.
10780
10781         * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
10782         this so that it doesn't need to allocate memory, since it
10783         has no way of indicating failure due to OOM (and would be
10784         annoying if it did).
10785
10786         * dbus/dbus-list.c (_dbus_list_pop_first_link): new function
10787
10788         * bus/Makefile.am: rearrange to create two self-contained
10789         libraries, to avoid having libraries with overlapping symbols.
10790         that was resulting in weirdness, e.g. I'm pretty sure there
10791         were two copies of global static variables.
10792
10793         * dbus/dbus-internals.c: move the malloc debug stuff to
10794         dbus-memory.c
10795
10796         * dbus/dbus-list.c (free_link): free list mempool if it becomes
10797         empty.
10798
10799         * dbus/dbus-memory.c (_dbus_disable_mem_pools): new function
10800
10801         * dbus/dbus-address.c (dbus_parse_address): free list nodes
10802         on failure.
10803
10804         * bus/dispatch.c (bus_dispatch_add_connection): free
10805         message_handler_slot when no longer using it, so
10806         memory leak checkers are happy for the test suite.
10807
10808         * dbus/dbus-server-debug-pipe.c (debug_finalize): free server name
10809
10810         * bus/bus.c (new_connection_callback): disconnect in here if
10811         bus_connections_setup_connection fails.
10812
10813         * bus/connection.c (bus_connections_unref): fix to free the
10814         connections
10815         (bus_connections_setup_connection): if this fails, don't
10816         disconnect the connection, just be sure there are no side
10817         effects.
10818
10819         * dbus/dbus-string.c (undo_alignment): unbreak this
10820
10821         * dbus/dbus-auth.c (_dbus_auth_unref): free some stuff we were
10822         leaking
10823         (_dbus_auth_new): fix the order in which we free strings
10824         on OOM failure
10825
10826         * bus/connection.c (bus_connection_disconnected): fix to
10827         not send ServiceDeleted multiple times in case of memory
10828         allocation failure
10829
10830         * dbus/dbus-bus.c (dbus_bus_get_base_service): new function to
10831         get the base service name
10832         (dbus_bus_register_client): don't return base service name,
10833         instead store it on the DBusConnection and have an accessor
10834         function for it.
10835         (dbus_bus_register_client): rename dbus_bus_register()
10836
10837         * bus/dispatch.c (check_hello_message): verify that other
10838         connections on the bus also got the correct results, not
10839         just the one sending hello
10840
10841 2003-03-15  Havoc Pennington  <hp@pobox.com>
10842
10843         Make it pass the Hello handling test including all OOM codepaths.
10844         Now to do other messages...
10845
10846         * bus/services.c (bus_service_remove_owner): fix crash when
10847         removing owner from an empty list of owners
10848         (bus_registry_ensure): don't leave service in the list of
10849         a connection's owned services if we fail to put the service
10850         in the hash table.
10851
10852         * bus/connection.c (bus_connection_preallocate_oom_error): set
10853         error flag on the OOM error.
10854
10855         * dbus/dbus-connection.c (_dbus_connection_new_for_transport):
10856         handle _dbus_transport_set_connection failure
10857
10858         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd): modify
10859         to create watches up front and simply enable/disable them as
10860         needed.
10861         (unix_connection_set): this can now fail on OOM
10862
10863         * dbus/dbus-timeout.c, dbus/dbus-watch.c: add concept
10864         of enabling/disabling a watch or timeout.
10865
10866         * bus/loop.c (bus_loop_iterate): don't touch disabled
10867         watches/timeouts
10868
10869         * glib/dbus-gmain.c: adapt to enable/disable watches and timeouts
10870
10871 2003-03-15  Havoc Pennington  <hp@pobox.com>
10872
10873         * bus/dispatch.c (bus_dispatch_test): OK, now finally actually
10874         write useful test code, after all that futzing around ;-)
10875
10876         Test does not yet pass because we can't handle OOM in
10877         _dbus_transport_messages_pending (basically,
10878         dbus_connection_preallocate_send() does not prealloc the write
10879         watch). To fix this, I think we need to add new stuff to
10880         set_watch_functions, namely a SetEnabled function so we can alloc
10881         the watch earlier, then enable it later.
10882
10883         * dbus/Makefile.am (libdbus_convenience_la_SOURCES): move
10884         dbus-memory.c to the convenience lib
10885
10886         * bus/test.c: rename some static functions to keep them clearly
10887         distinct from stuff in connection.c. Handle client disconnection.
10888
10889 2003-03-14  Havoc Pennington  <hp@pobox.com>
10890
10891         * bus/dispatch.c (bus_dispatch_test): do test using debug-pipe
10892         transport, tests more of the real codepath. Set up clients
10893         with bus_setup_debug_client.
10894
10895         * bus/test.c (bus_setup_debug_client): function to set up debug
10896         "clients" on the main loop
10897
10898         * dbus/dbus-transport.c (_dbus_transport_open): add debug-pipe
10899         support
10900
10901         * dbus/dbus-server.c (dbus_server_listen): add debug-pipe
10902         server type
10903
10904         * dbus/dbus-server-debug.c: support a debug server based on pipes
10905
10906         * dbus/dbus-sysdeps.c (_dbus_full_duplex_pipe): new function
10907         (_dbus_close): new function
10908
10909         * configure.in: check for socketpair
10910
10911 2003-03-14  Havoc Pennington  <hp@redhat.com>
10912
10913         * dbus/dbus-memory.c: add a "detect buffer overwrites on free"
10914         cheesy hack
10915
10916         * dbus/dbus-transport-debug.c: rework this a good bit to be
10917         less complicated. hopefully still works.
10918
10919         * dbus/dbus-server-debug.c (handle_new_client): remove timeout
10920         manually
10921
10922         * glib/dbus-gmain.c (timeout_handler): don't remove timeout
10923         after running it
10924
10925         * dbus/dbus-message.c (dbus_message_copy): rename from
10926         dbus_message_new_from_message, fix it up to copy
10927         all the message fields, add test case
10928
10929         * bus/dispatch.c (bus_dispatch_test): add some more test code,
10930         not quite passing yet
10931
10932 2003-03-14  Havoc Pennington  <hp@pobox.com>
10933
10934         * bus/loop.c (bus_loop_iterate): add this so we can "run loop
10935         until no work remains" in test code. (the large diff here
10936         is just code movement, no actual changes)
10937
10938         * dbus/dbus-server-debug.c (DEFAULT_INTERVAL): change interval to
10939         1, no point waiting around for test code.
10940         (_dbus_server_debug_accept_transport): unref the timeout
10941         after adding it (right?)
10942
10943         * dbus/dbus-transport-debug.c (DEFAULT_INTERVAL): ditto
10944
10945 2003-03-13  Havoc Pennington  <hp@redhat.com>
10946
10947         * dbus/dbus-timeout.c (_dbus_timeout_list_set_functions): handle
10948         out of memory
10949
10950         * dbus/dbus-watch.c (_dbus_watch_list_set_functions): handle out
10951         of memory
10952
10953         * dbus/dbus-connection.h: Make AddWatchFunction and
10954         AddTimeoutFunction return a bool so they can fail on out-of-memory
10955
10956         * bus/bus.c (bus_context_new): set up timeout handlers
10957
10958         * bus/connection.c (bus_connections_setup_connection): set up
10959         timeout handlers
10960
10961         * glib/dbus-gmain.c: adapt to the fact that set_functions stuff
10962         can fail
10963
10964         * bus/bus.c (bus_context_new): adapt to changes
10965
10966         * bus/connection.c: adapt to changes
10967
10968         * test/watch.c: adapt to DBusWatch changes
10969
10970         * bus/dispatch.c (bus_dispatch_test): started adding this but
10971         didn't finish
10972
10973 2003-03-14  Anders Carlsson  <andersca@codefactory.se>
10974
10975         * bus/dispatch.c (send_service_nonexistent_error): Fix typo.
10976
10977 2003-03-13  Havoc Pennington  <hp@pobox.com>
10978
10979         * bus/test.c, bus/test.h, bus/Makefile.am, bus/test-main.c:
10980         set up a test framework as for the library
10981
10982 2003-03-12  Havoc Pennington  <hp@pobox.com>
10983
10984         Throughout: purge global variables, introduce BusActivation,
10985         BusConnections, BusRegistry, etc. objects instead.
10986
10987         * bus/bus.h, bus/bus.c: introduce BusContext as a global
10988         message bus object
10989
10990         * test/Makefile.am (TEST_BINARIES): disable bus-test for now,
10991         going to redo this a bit differently I think
10992
10993 2003-03-12  Havoc Pennington  <hp@redhat.com>
10994
10995         Mega-patch that gets the message bus daemon initially handling
10996         out-of-memory. Work still needed. Also lots of random
10997         moving stuff to DBusError instead of ResultCode.
10998
10999         * dbus/dbus-list.c (_dbus_list_length_is_one): new function
11000
11001         * dbus/dbus-connection.c
11002         (dbus_connection_send_with_reply_and_block): use DBusError
11003
11004         * dbus/dbus-bus.c: adapt to API changes, make it use DBusError not
11005         DBusResultCode
11006
11007         * dbus/dbus-connection.c (dbus_connection_send): drop the result
11008         code here, as the only failure possible is OOM.
11009
11010         * bus/connection.c (bus_connection_disconnect):
11011         rename bus_connection_disconnected as it's a notification only
11012
11013         * bus/driver.c (bus_driver_handle_acquire_service): don't free
11014         "name" on get_args failure, should be done by get_args;
11015         don't disconnect client for bad args, just return an error.
11016         (bus_driver_handle_service_exists): ditto
11017
11018         * bus/services.c (bus_services_list): NULL-terminate returned array
11019
11020         * bus/driver.c (bus_driver_send_service_lost)
11021         (bus_driver_send_service_acquired): send messages from driver to a
11022         specific client to the client's unique name, not to the broadcast
11023         service.
11024
11025         * dbus/dbus-message.c (decode_header_data): reject messages that
11026         contain no name field
11027         (_dbus_message_get_client_serial): rename to
11028         dbus_message_get_serial and make public
11029         (_dbus_message_set_serial): rename from set_client_serial
11030         (_dbus_message_set_reply_serial): make public
11031         (_dbus_message_get_reply_serial): make public
11032
11033         * bus/connection.c (bus_connection_foreach): allow stopping
11034         iteration by returning FALSE from foreach function.
11035
11036         * dbus/dbus-connection.c (dbus_connection_send_preallocated)
11037         (dbus_connection_free_preallocated_send)
11038         (dbus_connection_preallocate_send): new API for sending a message
11039         without possibility of malloc failure.
11040         (dbus_connection_send_message): rename to just
11041         dbus_connection_send (and same for whole function family)
11042
11043         * dbus/dbus-errors.c (dbus_error_free): make this reinit the error
11044
11045         * dbus/dbus-sysdeps.c (_dbus_exit): new function
11046
11047         * bus/activation.c: handle/return errors
11048
11049         * dbus/dbus-errors.h: add more DBUS_ERROR #define
11050
11051         * dbus/dbus-sysdeps.c (_dbus_directory_open) (_dbus_file_get_contents)
11052         (_dbus_directory_get_next_file): use DBusError instead of DBusResultCode
11053         (_dbus_result_from_errno): move to this file
11054
11055 2003-03-10  Anders Carlsson  <andersca@codefactory.se>
11056
11057         * dbus/dbus-marshal.c:
11058         (_dbus_marshal_set_string):
11059         Take a length argument so we can marshal the correct string
11060         length.
11061
11062         (_dbus_marshal_dict), (_dbus_demarshal_dict),
11063         (_dbus_marshal_get_arg_end_pos), (_dbus_marshal_validate_arg),
11064         (_dbus_marshal_test):
11065         * dbus/dbus-marshal.h:
11066         Add support for marshalling and demarshalling dicts.
11067
11068         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
11069         Add support for TYPE DICT.
11070
11071         * dbus/dbus-message.c: (set_string_field):
11072         Adjust header padding.
11073
11074         (dbus_message_append_args_valist), (dbus_message_append_dict),
11075         (dbus_message_get_args_valist), (dbus_message_iter_get_arg_type),
11076         (dbus_message_iter_get_dict), (_dbus_message_loader_return_buffer),
11077         (check_message_handling), (check_have_valid_message):
11078         * dbus/dbus-message.h:
11079         Add functions for setting and getting dicts.
11080
11081         * dbus/dbus-protocol.h:
11082         Add DBUS_TYPE_DICT.
11083
11084         * dbus/dbus.h:
11085         Add dbus-dict.h
11086
11087         * doc/dbus-specification.sgml:
11088         Add information about how dicts are marshalled.
11089
11090         * test/data/invalid-messages/dict-with-nil-value.message:
11091         * test/data/invalid-messages/too-short-dict.message:
11092         * test/data/valid-messages/dict-simple.message:
11093         * test/data/valid-messages/dict.message:
11094         Add sample messages containing dicts.
11095
11096 2003-03-08  Anders Carlsson  <andersca@codefactory.se>
11097
11098         * dbus/dbus-dict.h: Add DBUS_END_DECLS.
11099
11100 2003-03-07  Anders Carlsson  <andersca@codefactory.se>
11101
11102         * dbus/Makefile.am:
11103         * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
11104         (dbus_dict_get_keys), (insert_entry), (dbus_dict_set_boolean),
11105         (dbus_dict_set_int32), (dbus_dict_set_uint32),
11106         (dbus_dict_set_double), (dbus_dict_set_string),
11107         (dbus_dict_set_boolean_array), (dbus_dict_set_int32_array),
11108         (dbus_dict_set_uint32_array), (dbus_dict_set_double_array),
11109         (dbus_dict_set_string_array), (_dbus_dict_test):
11110         * dbus/dbus-dict.h:
11111         Fix according to comments from Havoc.
11112
11113 2003-03-06  Michael Meeks  <michael@server.home>
11114
11115         * configure.in: if we don't have kde-config, disable have_qt.
11116
11117 2003-03-07  Anders Carlsson  <andersca@codefactory.se>
11118
11119         * dbus/Makefile.am:
11120         Add dbus-dict.[ch]
11121
11122         * dbus/dbus-dict.c: (dbus_dict_entry_free), (dbus_dict_new),
11123         (dbus_dict_ref), (dbus_dict_unref), (dbus_dict_contains),
11124         (dbus_dict_remove), (dbus_dict_get_value_type),
11125         (dbus_dict_get_keys), (dbus_dict_put_boolean),
11126         (dbus_dict_put_int32), (dbus_dict_put_uint32),
11127         (dbus_dict_put_double), (dbus_dict_put_string),
11128         (dbus_dict_put_boolean_array), (dbus_dict_put_int32_array),
11129         (dbus_dict_put_uint32_array), (dbus_dict_put_double_array),
11130         (dbus_dict_put_string_array), (dbus_dict_get_boolean),
11131         (dbus_dict_get_int32), (dbus_dict_get_uint32),
11132         (dbus_dict_get_double), (dbus_dict_get_string),
11133         (dbus_dict_get_boolean_array), (dbus_dict_get_int32_array),
11134         (dbus_dict_get_uint32_array), (dbus_dict_get_double_array),
11135         (dbus_dict_get_string_array), (_dbus_dict_test):
11136         * dbus/dbus-dict.h:
11137         Add DBusDict implementation
11138
11139         * dbus/dbus-test.c: (dbus_internal_do_not_use_run_tests):
11140         * dbus/dbus-test.h:
11141         Add _dbus_dict_test
11142
11143 2003-03-04  Havoc Pennington  <hp@pobox.com>
11144
11145         * test/data/auth/*: adapt to changes
11146
11147         * dbus/dbus-auth-script.c (_dbus_auth_script_run): add
11148         USERID_BASE64 and change USERNAME_BASE64 to put in username not
11149         userid
11150
11151         * dbus/dbus-keyring.c (_dbus_keyring_validate_context): prevent
11152         more stuff from being in a context name, to make the protocol
11153         simpler to deal with
11154
11155         * dbus/dbus-errors.c (dbus_error_has_name): new function
11156         (dbus_error_is_set): new function
11157
11158         * dbus/dbus-auth.c: replace DBUS_STUPID_TEST_MECH auth
11159         with DBUS_COOKIE_SHA1, implement DBUS_COOKIE_SHA1
11160
11161         * dbus/dbus-connection.c (dbus_connection_flush): also read
11162         messages during a flush operation
11163
11164         * dbus/Makefile.am: remove dbus-md5 since it isn't currently used.
11165
11166 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
11167
11168         * configure.in: Check for gethostbyname on Solaris.
11169
11170         * dbus/dbus-transport.c: (_dbus_transport_open):
11171         Remove duplicate "tcp" entry.
11172
11173         * doc/dbus-specification.sgml:
11174         Clarify some things.
11175
11176 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
11177
11178         * dbus/dbus-auth.c: (send_rejected), (process_test_subdir):
11179         * dbus/dbus-keyring.c: (_dbus_keyring_new_homedir),
11180         (_dbus_keyring_test):
11181         * dbus/dbus-md5.c: (_dbus_md5_compute):
11182         * dbus/dbus-sha.c: (_dbus_sha_compute):
11183         Plug memory leaks.
11184
11185 2003-03-05  Anders Carlsson  <andersca@codefactory.se>
11186
11187         * README: Add some things.
11188
11189 2003-03-04  Anders Carlsson  <andersca@codefactory.se>
11190
11191         * dbus/dbus-message.c (dbus_message_append_args_valist): Add a break;
11192         after case DBUS_TYPE_BOOELAN.
11193
11194 2003-03-02  Havoc Pennington  <hp@pobox.com>
11195
11196         * test/break-loader.c (randomly_set_extreme_ints): add test that
11197         sets really huge and small integers
11198
11199         * dbus/dbus-marshal.c (_dbus_marshal_validate_arg): add check
11200         that length of boolean array fits in the string, and that
11201         string has room for boolean value in single-bool case.
11202
11203         * dbus/dbus-message-builder.c (_dbus_message_data_load): add
11204         optional value to "ALIGN" command which is what to fill the
11205         alignment with.
11206
11207         * test/data/valid-messages/no-padding.message: add regression
11208         test for the message padding problem
11209
11210 2003-03-02  Havoc Pennington  <hp@pobox.com>
11211
11212         * dbus/dbus-message.c (decode_header_data): fix to always init
11213         message_padding, from Benjamin Dauvergne
11214
11215 2003-03-02  Havoc Pennington  <hp@pobox.com>
11216
11217         * configure.in: 0.5
11218
11219         * NEWS: Update.
11220
11221 2003-03-01  Joe Shaw  <joe@assbarn.com>
11222
11223         * configure.in: Check for "struct cmsgcred" and try to access its
11224         members for BSD-like unices.
11225
11226         * dbus/dbus-sysdeps.c (read_credentials_byte): Fold this back into
11227         _dbus_read_credentials_unix_socket().
11228         (_dbus_read_credentials_unix_socket): Use recvmsg() instead of
11229         read() for reading the credential byte off the unix socket.  Use
11230         struct cmsgcred on systems that support it.
11231
11232 2003-02-27  Alexander Larsson  <alexl@redhat.com>
11233
11234         * glib/Makefile.am:
11235         * configure.in:
11236         Make gthreads-2.0 dependency optional. Don't build thread test if
11237         its not found.
11238
11239 2003-02-27  Havoc Pennington  <hp@pobox.com>
11240
11241         * dbus/dbus-connection.c
11242         (dbus_connection_send_message_with_reply_and_block): fix doh!
11243         doh! doh! bug that resulted in never removing a reply from the
11244         queue, no wonder we called get_reply_serial so much ;-)
11245
11246         * dbus/dbus-message.c (struct DBusMessage): cache reply serial
11247         and client serial instead of demarshaling them every time
11248
11249 2003-02-27  Havoc Pennington  <hp@pobox.com>
11250
11251         * dbus/dbus-marshal.c (_dbus_demarshal_int32): rewrite to be much
11252         more inlined, using dbus-string-private.h, speeds things up
11253         substantially
11254
11255         * dbus/dbus-string.c (_dbus_string_free): apply align offset
11256         when freeing the string
11257         (_dbus_string_steal_data): fix for align offset
11258         (undo_alignment): new function
11259
11260 2003-02-26  Havoc Pennington  <hp@redhat.com>
11261
11262         All kinds of audit fixes from Owen, plus initial attempt to
11263         handle unaligned memory returned from malloc.
11264
11265         * dbus/dbus-string.c (_dbus_string_init): clamp max length to
11266         leave room for align_offset and nul byte
11267         (fixup_alignment): function to track an align_offset and
11268         ensure real->str is aligned
11269         (DBUS_GENERIC_STRING_PREAMBLE): len must be less than allocated,
11270         to allow a nul byte plus align offset
11271         (_dbus_string_lock): fix overflow issue
11272         (_dbus_string_init_const_len): add assertions on sanity of len,
11273         assign allocated to be ALLOCATION_PADDING larger than len
11274         (set_length): fixup the overflow handling
11275         (_dbus_string_get_data_len): fix overflow in assertion
11276         (open_gap): detect overflow in size of gap to be opened
11277         (_dbus_string_lengthen): add overflow check
11278         (_dbus_string_align_length): fix overflow with _DBUS_ALIGN_VALUE
11279         (_dbus_string_append): add overflow check
11280         (_dbus_string_append_unichar): overflow
11281         (_dbus_string_delete): fix overflow in assertion
11282         (_dbus_string_copy_len): overflow in assertion
11283         (_dbus_string_replace_len): overflows in assertions
11284         (_dbus_string_find): change to implement in terms of
11285         _dbus_string_find_to
11286         (_dbus_string_find_to): assorted fixage
11287         (_dbus_string_equal_c_str): assert c_str != NULL,
11288         fix logic so the function works
11289         (_dbus_string_ends_with_c_str): fix overflow thingy
11290         (_dbus_string_base64_encode): overflow fix
11291         (_dbus_string_validate_ascii): overflow
11292         (_dbus_string_validate_nul): overflow
11293
11294 2003-02-26  Havoc Pennington  <hp@redhat.com>
11295
11296         * dbus/dbus-marshal.c (_dbus_marshal_test): fix to work with DISABLE_ASSERTS
11297
11298 2003-02-26  Alexander Larsson  <alexl@redhat.com>
11299
11300         * configure.in:
11301         Set DBUS_GLIB_THREADS_LIBS for apps using gthread-2.0
11302
11303         * dbus/dbus-connection.c:
11304         * dbus/dbus-connection.h:
11305         Fix _dbus_connection_acquire_io_path and _dbus_connection_acquire_dispatch.
11306         Add dbus_connection_set_wakeup_main_function and use it when queueing
11307         incoming and outgoing messages.
11308
11309
11310         * dbus/dbus-dataslot.c:
11311         Threadsafe usage of DBusDataSlotAllocator
11312
11313         * dbus/dbus-message.c: (dbus_message_get_args_iter):
11314         dbus_new can fail.
11315
11316         * dbus/dbus-server-unix.c:
11317         Add todo comment
11318
11319         * glib/dbus-gmain.c:
11320         Implement the new wakeup functions for glib.
11321
11322         * glib/Makefile.am:
11323         * glib/test-thread-client.c:
11324         * glib/test-thread-server.c:
11325         * glib/test-thread.h:
11326         Initial cut at some thread test code. Not really done yet.
11327
11328 2003-02-26  Havoc Pennington  <hp@pobox.com>
11329
11330         * dbus/dbus-connection.c
11331         (dbus_connection_send_message_with_reply_and_block): fix crash
11332         where we ref'd the outgoing message instead of the returned reply
11333
11334         * dbus/dbus-transport-unix.c (do_authentication): check read watch
11335         at the end of this function, so if we didn't need to read for
11336         authentication, we reinstall it for receiving messages
11337
11338         * dbus/dbus-message.c (dbus_message_new_reply): allow replies to
11339         a NULL sender for peer-to-peer case
11340
11341         * dbus/dbus-transport-unix.c (check_read_watch): handle
11342         !authenticated case correctly
11343
11344         * glib/dbus-gmain.c: add support for DBusServer
11345
11346         * dbus/dbus-server.c: add data slot support
11347
11348         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): check
11349         return values and handle errors
11350
11351         * dbus/dbus-dataslot.c: factor out the data slot stuff from
11352         DBusConnection
11353
11354         * Doxyfile.in (INPUT): add glib subdir
11355
11356         * glib/dbus-gmain.c (dbus_connection_setup_with_g_main): rename
11357         setup_with_g_main instead of hookup_with_g_main; write docs
11358
11359 2003-02-24  Anders Carlsson  <andersca@codefactory.se>
11360
11361         * dbus/dbus-marshal.c: (_dbus_marshal_validate_arg):
11362         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
11363         * dbus/dbus-message.c: (dbus_message_append_boolean),
11364         (dbus_message_append_boolean_array),
11365         (dbus_message_get_args_valist), (_dbus_message_test):
11366         * dbus/dbus-message.h:
11367         * doc/dbus-specification.sgml:
11368         Various fixes as pointed out by Havoc.
11369
11370         * test/data/invalid-messages/bad-boolean-array.message:
11371         * test/data/invalid-messages/bad-boolean.message:
11372         Add invalid boolean value test cases.
11373
11374 2003-02-24  Anders Carlsson  <andersca@codefactory.se>
11375
11376         * dbus/dbus-internals.c: (_dbus_type_to_string):
11377         * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
11378         (_dbus_marshal_validate_arg):
11379         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
11380         * dbus/dbus-message.c: (dbus_message_append_args_valist),
11381         (dbus_message_append_boolean), (dbus_message_append_boolean_array),
11382         (dbus_message_get_args_valist), (dbus_message_iter_get_boolean),
11383         (dbus_message_iter_get_int32), (dbus_message_iter_get_uint32),
11384         (dbus_message_iter_get_double),
11385         (dbus_message_iter_get_boolean_array), (message_iter_test):
11386         * dbus/dbus-message.h:
11387         * dbus/dbus-protocol.h:
11388         * doc/dbus-specification.sgml:
11389         * test/data/valid-messages/lots-of-arguments.message:
11390         Add support for boolean and boolean array types.
11391
11392 2003-02-23  Havoc Pennington  <hp@pobox.com>
11393
11394         * dbus/dbus-keyring.c: finish most of this implementation and
11395         simple unit test
11396
11397         * dbus/dbus-errors.c (dbus_set_error_const, dbus_set_error): make
11398         these barf if the error isn't cleared to NULL
11399
11400         * dbus/dbus-sysdeps.c (_dbus_delete_file): set error on failure
11401         (_dbus_create_directory): new function
11402
11403         * dbus/dbus-errors.c (dbus_set_error): fix warning
11404
11405         * dbus/dbus-string.c (_dbus_string_hex_encode): new function
11406         (_dbus_string_hex_decode): new function
11407         (test_hex_roundtrip): test code
11408
11409         * dbus/dbus-sha.c (_dbus_sha_compute): use dbus_string_hex_encode
11410
11411         * dbus/dbus-md5.c (_dbus_md5_compute): use dbus_string_hex_encode
11412
11413         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): make this use
11414         the save-to-temp/rename trick to atomically write the new file
11415         (_dbus_string_parse_uint): new function
11416
11417 2003-02-22  Havoc Pennington  <hp@pobox.com>
11418
11419         * test/Makefile.am (dist-hook): fix dist for test/data/sha-1
11420
11421 2003-02-22  Havoc Pennington  <hp@pobox.com>
11422
11423         * dbus/dbus-message.c (dbus_message_iter_get_string_array):
11424         (dbus_message_iter_get_byte_array): Fix up doxygen warnings
11425
11426         * dbus/dbus-sha.c: add implementation of SHA-1 algorithm
11427
11428         * dbus/test/data/sha-1: add US government test suite for SHA-1
11429
11430 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
11431
11432         * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
11433         Make string arrays NULL-terminated.
11434
11435         * dbus/dbus-memory.c: (dbus_free_string_array):
11436         * dbus/dbus-memory.h:
11437         New function for freeing NULL-terminated string arrays.
11438
11439         * dbus/dbus-message-builder.c: (append_quoted_string),
11440         (_dbus_message_data_load):
11441         Add support for array types.
11442
11443         * dbus/dbus-message.c: (check_message_handling):
11444         Add more types as test cases.
11445
11446         * dbus/dbus-sysdeps.c: (_dbus_string_parse_int),
11447         (_dbus_string_parse_double):
11448         Add the start offset to the end offset.
11449
11450         * test/data/valid-messages/lots-of-arguments.message:
11451         New test message with lots of arguments.
11452
11453 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
11454
11455         * dbus/dbus-message.c: (dbus_message_append_nil),
11456         (dbus_message_append_int32), (dbus_message_append_uint32),
11457         (dbus_message_append_double), (dbus_message_append_string),
11458         (dbus_message_append_int32_array),
11459         (dbus_message_append_uint32_array),
11460         (dbus_message_append_double_array),
11461         (dbus_message_append_byte_array),
11462         (dbus_message_append_string_array):
11463         Fix all out-of-memory handling in these functions.
11464
11465 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
11466
11467         * dbus/dbus-message.c: (dbus_message_append_nil):
11468         Fix a silly.
11469
11470 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
11471
11472         * dbus/dbus-message.c: (dbus_message_append_args_valist),
11473         (dbus_message_append_nil), (dbus_message_append_int32_array),
11474         (dbus_message_append_uint32_array),
11475         (dbus_message_append_double_array),
11476         (dbus_message_append_byte_array),
11477         (dbus_message_append_string_array), (dbus_message_get_args_valist),
11478         (dbus_message_iter_get_int32_array),
11479         (dbus_message_iter_get_uint32_array),
11480         (dbus_message_iter_get_double_array),
11481         (dbus_message_iter_get_byte_array),
11482         (dbus_message_iter_get_string_array):
11483
11484         * dbus/dbus-message.h:
11485         Add functions for appending and getting arrays.
11486
11487 2003-02-21  Anders Carlsson  <andersca@codefactory.se>
11488
11489         * dbus/dbus-mempool.c (_dbus_mem_pool_new): Make the
11490         element size at least 8 bytes, fixes mempool tests on
11491         64-bit machines.
11492
11493 2003-02-20  Alexander Larsson  <alexl@redhat.com>
11494
11495         * dbus/dbus-transport-unix.c (unix_do_iteration):
11496         Unlock the connection mutex during a blocking select call.
11497         Add todo about how we need a way to wake up the select.
11498
11499         * dbus/dbus-connection-internal.h:
11500         * dbus/dbus-connection.c:
11501         Add _dbus_connection_lock and _dbus_connection_unlock.
11502
11503 2003-02-19  Havoc Pennington  <hp@pobox.com>
11504
11505         * Doxyfile.in (PREDEFINED): put DOXYGEN_SHOULD_SKIP_THIS in
11506         Doxyfile.in, not Doxyfile
11507
11508         * dbus/dbus-keyring.c: do some hacking on this
11509
11510         * dbus/dbus-sysdeps.c (_dbus_delete_file): new
11511
11512         * dbus/dbus-errors.c (dbus_set_error_const): do not call
11513         dbus_error_init
11514         (dbus_set_error): remove dbus_error_init, check for message ==
11515         NULL *before* we sprintf into it, and add @todo about including
11516         system headers in this file
11517
11518         * dbus/dbus-sysdeps.c (_dbus_create_file_exclusively): new
11519
11520         * dbus/dbus-errors.h (DBUS_ERROR_FAILED): add
11521
11522         * dbus/dbus-sysdeps.c (get_user_info): break this function out to
11523         get various bits of user information based on either username
11524         or user ID
11525         (_dbus_homedir_from_username): new function
11526
11527 2003-02-19  Anders Carlsson  <andersca@codefactory.se>
11528
11529         * configure.in:
11530         Add check for nonposix getpwnam_r
11531
11532         * dbus/dbus-mempool.c: (_dbus_mem_pool_new):
11533         Align the pool element size to a sizeof (void *) boundary.
11534
11535         * dbus/dbus-sysdeps.c: (_dbus_setenv), (_dbus_connect_unix_socket),
11536         (_dbus_listen_unix_socket), (_dbus_credentials_from_username):
11537         General Solaris fixes.
11538
11539         * test/data/valid-messages/simplest-manual.message:
11540         Explicitly state that we want little-endian packing.
11541
11542 2003-02-19  Mikael Hallendal  <micke@codefactory.se>
11543
11544         * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
11545
11546         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_tcp_socket):
11547         Added to create a transport connecting using a tcp/ip socket.
11548
11549         * dbus/dbus-sysdeps.c (_dbus_connect_tcp_socket): Added to connect
11550         to a tcp socket at given host and port.
11551         (_dbus_listen_tcp_socket): added to listen on tcp socket for given
11552         hostname and port.
11553
11554         * dbus/dbus-server.c (dbus_server_listen): Support tcp: addresses.
11555
11556         * dbus/dbus-server-unix.c (_dbus_server_new_for_tcp_socket):
11557         Added to create a server listening on a TCP/IP socket.
11558
11559 2003-02-19  Havoc Pennington  <hp@pobox.com>
11560
11561         Throughout: mop up all the Doxygen warnings and undocumented
11562         stuff.
11563
11564         * dbus/dbus-sysdeps.c (do_exec): do not use execvp, we don't want
11565         to search any paths.
11566
11567         * dbus/dbus-threads.c: move global mutex initializers to
11568         dbus-internals.h, multiple prototypes was confusing doxygen
11569         besides being kind of ugly
11570
11571         * Doxyfile (PREDEFINED): have Doxygen define
11572         DOXYGEN_SHOULD_SKIP_THIS so we can exclude things from
11573         docs with #ifndef DOXYGEN_SHOULD_SKIP_THIS
11574         (do not abuse the feature! it's for stuff like the autogenerated
11575         macros in dbus-md5.c, not just for things you don't feel like
11576         documenting...)
11577
11578 2003-02-18  Havoc Pennington  <hp@pobox.com>
11579
11580         * dbus/dbus-string.c (_dbus_string_zero): new function
11581
11582         * dbus/dbus-md5.c: include MD5 implementation by L. Peter Deutsch,
11583         wrap it in some dbus-friendly API
11584
11585         * dbus/dbus-types.h: add 16-bit types
11586
11587 2003-02-18  Joe Shaw  <joe@assbarn.com>
11588
11589         * dbus/dbus-auth.c (handle_server_data_stupid_test_mech): Just get
11590         credentials from our currently running process.
11591         (get_word): Fix a buglet where we were copying the entire length
11592         instead of relative to our position.
11593
11594         * dbus/dbus-hash.c (_dbus_hash_test): Don't try to allocate the
11595         keys on the stack... it's 640k of data.
11596
11597         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): Always
11598         read the credentials byte off the socket, even if we don't have
11599         SO_PEERCRED.
11600         (_dbus_poll): Implement poll() using select() for systems which
11601         don't have it.
11602
11603         * glib/test-dbus-glib.c (main): Print out an error if no
11604         parameters are given.
11605
11606         * test/data/auth/fallback.auth-script: Added.  Tests that a client
11607         can fallback to a secondary auth mechanism if the first fails.
11608
11609 2003-02-18  Havoc Pennington  <hp@pobox.com>
11610
11611         * AUTHORS: add Alex
11612
11613 2003-02-17  Havoc Pennington  <hp@pobox.com>
11614
11615         * doc/dbus-specification.sgml: lots of cosmetic
11616         cleanups/rearrangement, add assorted FIXME, change DBUS_ADDRESS
11617         env variable to DBUS_BUS_ADDRESS, s/client/application/,
11618         s/server/bus/ (except in authentication section). Add a section
11619         "Message Bus Message Routing"
11620
11621 2003-02-17  Anders Carlsson  <andersca@codefactory.se.>
11622
11623         Release 0.4
11624
11625         * NEWS: Update
11626
11627 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
11628
11629         * doc/dbus-specification.sgml:
11630         Specification updates.
11631
11632 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
11633
11634         * bus/activation.c: (bus_activation_init), (child_setup),
11635         (bus_activation_activate_service):
11636         * bus/activation.h:
11637         * bus/main.c: (main):
11638         Set DBUS_ADDRESS environment variable.
11639
11640         * dbus/dbus-errors.c: (dbus_set_error):
11641         Don't use va_copy since that's a C99 feature.
11642
11643         * dbus/dbus-sysdeps.c: (_dbus_setenv), (do_exec),
11644         (_dbus_spawn_async):
11645         * dbus/dbus-sysdeps.h:
11646         Add child_setup_func to _dbus_spawn_async.
11647
11648         * doc/dbus-specification.sgml:
11649         Update specification.
11650
11651         * test/spawn-test.c: (setup_func), (main):
11652         Fix test.
11653
11654 2003-02-17  Alexander Larsson  <alexl@redhat.com>
11655
11656         * dbus/dbus-connection.c (_dbus_connection_handler_destroyed_locked):
11657         Added todo.
11658
11659 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
11660
11661         * doc/.cvsignore:
11662         * doc/Makefile.am:
11663         * doc/dbus-test-plan.sgml:
11664         Add test plan document.
11665
11666         * test/Makefile.am:
11667         Fix distcheck.
11668
11669 2003-02-17  Anders Carlsson  <andersca@codefactory.se>
11670
11671         * dbus/dbus-message.c: (decode_header_data),
11672         (_dbus_message_loader_return_buffer):
11673         Set the header padding amount when loading a message.
11674
11675 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
11676
11677         * bus/dispatch.c: (send_one_message):
11678         Only send broadcast messages to registered connections.
11679
11680         * dbus/dbus-message.c: (dbus_message_name_is):
11681         * dbus/dbus-message.h:
11682         New convenience function.
11683
11684         * dbus/dbus-transport-debug.c: (do_reading):
11685         Only dispatch one message per run.
11686
11687         * test/Makefile.am:
11688         * test/bus-test.c: (new_connection_callback), (die),
11689         (test_hello_client1_handler), (test_hello_client2_handler),
11690         (test_hello_replies), (main):
11691
11692         * test/bus-test-loop.[ch]:
11693         Add these.
11694
11695 2003-02-16  Havoc Pennington  <hp@pobox.com>
11696
11697         * dbus/dbus-connection.c (dbus_connection_dispatch_message): fix
11698         backward conditional
11699
11700 2003-02-16  Alexander Larsson  <alexl@redhat.com>
11701
11702         * dbus/dbus-connection.c:
11703         Implement sent_message_with_reply. (with_reply_and block is still
11704         busted).
11705         Made dispatch_message not lose message if OOM.
11706
11707         * dbus/dbus-errors.h:
11708         Add NoReply error (for reply timeouts).
11709
11710 2003-02-16  Alexander Larsson  <alexl@redhat.com>
11711
11712         * dbus/dbus-hash.c (_dbus_hash_table_unref):
11713         Actually free keys and values when destroying hashtable.
11714
11715 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
11716
11717         * dbus/dbus-auth.c: (client_try_next_mechanism):
11718         Plug a leak.
11719
11720         * dbus/dbus-threads.c: (dbus_condvar_wait_timeout):
11721         Return TRUE if there's no thread implementation around.
11722
11723         * glib/dbus-gmain.c: (free_source),
11724         (dbus_connection_hookup_with_g_main):
11725         Make sure to remove the GSource when the connection is finalized.
11726
11727 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
11728
11729         * bus/dispatch.c: (bus_dispatch_message_handler):
11730         * dbus/dbus-errors.h:
11731         Return an error if someone tries to send a message to a service
11732         that doesn't exist.
11733
11734 2003-02-16  Anders Carlsson  <andersca@codefactory.se>
11735
11736         * bus/activation.c: (load_directory), (bus_activation_init),
11737         (bus_activation_activate_service):
11738         * bus/activation.h:
11739         * bus/driver.c:
11740         (bus_driver_handle_activate_service), (bus_driver_handle_message):
11741         More work on the activation handling.
11742
11743         * dbus/dbus-errors.h:
11744         Add some error messages
11745
11746         * dbus/dbus-message.c: (dbus_message_new_error_reply):
11747         * dbus/dbus-message.h:
11748         New function that creates an error message.
11749
11750         * dbus/dbus-protocol.h:
11751         Add ACTIVATE_SERVER message.
11752
11753         * dbus/dbus-server-unix.c: (unix_handle_watch),
11754         (_dbus_server_new_for_domain_socket):
11755         Call _dbus_fd_set_close_on_exec.
11756
11757         * dbus/dbus-sysdeps.c: (make_pipe), (do_exec),
11758         (_dbus_spawn_async), (_dbus_disable_sigpipe),
11759         (_dbus_fd_set_close_on_exec):
11760         * dbus/dbus-sysdeps.h:
11761         Add _dbus_fd_set_close_on exec function. Also add function that checks
11762         that all open fds are set to close-on-exec and warns otherwise.
11763
11764         * dbus/dbus-transport-unix.c:
11765         (_dbus_transport_new_for_domain_socket):
11766         Call _dbus_fd_set_close_on_exec.
11767
11768 2003-02-16  Havoc Pennington  <hp@pobox.com>
11769
11770         * dbus/dbus-connection.c (dbus_connection_set_change_sigpipe):
11771         allow people to avoid setting SIGPIPE to SIG_IGN
11772         (_dbus_connection_new_for_transport): disable SIGPIPE unless
11773         we've been asked not to
11774
11775 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
11776
11777         * dbus/dbus-list.c: (_dbus_list_append_link),
11778         (_dbus_list_prepend_link):
11779         * dbus/dbus-memory.c: (dbus_malloc), (dbus_malloc0),
11780         (dbus_realloc):
11781         Warning fixes.
11782
11783 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
11784
11785         * bus/Makefile.am:
11786         * bus/activation.c: (bus_activation_entry_free),
11787         (add_desktop_file_entry), (load_directory), (bus_activation_init):
11788         * bus/activation.h:
11789         * bus/main.c: (main):
11790         Add simple activation support, doesn't work yet though.
11791
11792 2003-02-15   Zack Rusin  <zack@kde.org>
11793
11794         * qt/dbus-qthread.cpp:  small casting fix
11795
11796 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
11797
11798         * dbus/dbus-errors.c: (dbus_set_error):
11799         * dbus/dbus-errors.h:
11800         Add a few errors and make dbus_set_error void.
11801
11802         * dbus/dbus-sysdeps.c:
11803         (_dbus_errno_to_string), (close_and_invalidate), (make_pipe),
11804         (write_err_and_exit), (read_ints), (do_exec), (_dbus_spawn_async):
11805         * dbus/dbus-sysdeps.h:
11806         Add _dbus_spawn_async.
11807
11808         * test/spawn-test.c: (main):
11809         Test for _dbus_spawn_async.
11810
11811 2003-02-15  Anders Carlsson  <andersca@codefactory.se>
11812
11813         * dbus/dbus-internals.h:
11814         Fix build without tests.
11815
11816         * dbus/dbus-list.c: (alloc_link):
11817         Fix a segfault when a malloc fails.
11818
11819         * dbus/dbus-memory.c: (initialize_malloc_debug), (dbus_malloc),
11820         (dbus_malloc0), (dbus_realloc):
11821         Add support for malloc debugging.
11822
11823 2003-02-15  Alexander Larsson  <alexl@redhat.com>
11824
11825         * dbus/dbus-threads.c:
11826         * dbus/dbus-threads.h:
11827         Add condvars. Remove static mutext from API.
11828         Implement static mutexes by initializing them from threads_init.
11829
11830         * glib/dbus-gthread.c:
11831         * qt/dbus-qthread.cpp:
11832         Update with the thread api changes.
11833
11834
11835         * dbus/dbus-list.c:
11836         * dbus/dbus-list.h:
11837         Turn StaticMutex into normal mutex + init function.
11838         Export new functions _dbus_list_alloc_link, _dbus_list_free_link,
11839         _dbus_list_append_link, _dbus_list_prepend_link
11840
11841
11842         * dbus/dbus-sysdeps.c:
11843         * dbus/dbus-sysdeps.h:
11844         New type dbus_atomic_t, and new functions _dbus_atomic_inc,
11845         _dbus_atomic_dec. Only slow fallback implementation at the moment.
11846
11847         * dbus/dbus-protocol.h:
11848         Add DBUS_MESSAGE_LOCAL_DISCONNECT define
11849
11850         * dbus/dbus-message.c:
11851         Make ref/unref atomic.
11852         Fix some docs.
11853
11854         * dbus/dbus-connection-internal.h:
11855         * dbus/dbus-connection.c:
11856         * dbus/dbus-connection.h:
11857         Make threadsafe.
11858         Change _peek to _borrow,_return & _steal_borrowed.
11859         Change disconnect callback to event.
11860         Make dbus_connection_dispatch_messages reentrant.
11861
11862         * dbus/dbus-transport.c:
11863         Don't ref the connection on calls to the transport
11864         implementation.
11865
11866         * dbus/dbus-message-handler.c:
11867         Make threadsafe.
11868
11869         * glib/dbus-gmain.c:
11870         Don't use peek_message anymore
11871
11872         * test/Makefile.am:
11873         * test/debug-thread.c:
11874         * test/debug-thread.h:
11875         Simple thread implementation that asserts() on deadlocks in
11876         single-threaded code.
11877
11878         * test/bus-test.c:
11879         (main) Call debug_threads_init.
11880
11881         * test/watch.c:
11882         Use disconnect message instead of disconnect callback.
11883
11884         * bus/connection.c:
11885         * bus/connection.h:
11886         Don't call dbus_connection_set_disconnect_function. Instead export
11887         bus_connection_disconnect.
11888
11889         * bus/dispatch.c:
11890         Call bus_connection_disconnect when we get a disconnected message.
11891
11892 2003-02-15  Havoc Pennington  <hp@pobox.com>
11893
11894         * dbus/dbus-message.c (dbus_message_new): fool around with the
11895         docs
11896
11897 2003-02-14  Havoc Pennington  <hp@pobox.com>
11898
11899         * dbus/dbus-mempool.c: fail if the debug functions so indicate
11900
11901         * dbus/dbus-memory.c: fail if the debug functions indicate we
11902         should
11903
11904         * dbus/dbus-internals.c (_dbus_set_fail_alloc_counter)
11905         (_dbus_decrement_fail_alloc_counter): debug functions to
11906         simulate memory allocation failures
11907
11908 2003-02-14  Havoc Pennington  <hp@pobox.com>
11909
11910         * dbus/dbus-errors.h (struct DBusError): add a word of padding
11911         to DBusError
11912
11913 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
11914
11915         * bus/driver.c: (bus_driver_handle_hello):
11916         * bus/driver.h:
11917         * bus/services.c: (bus_service_lookup):
11918         Reorder message sending so we get a more sane order.
11919
11920         * test/bus-test.c: (message_handler):
11921         Fix tyop.
11922
11923 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
11924
11925         * bus/driver.c: (bus_driver_send_service_deleted),
11926         (bus_driver_send_service_created), (bus_driver_send_service_lost),
11927         (bus_driver_send_service_acquired), (bus_driver_handle_hello),
11928         (bus_driver_send_welcome_message),
11929         (bus_driver_handle_list_services),
11930         (bus_driver_handle_acquire_service),
11931         (bus_driver_handle_service_exists):
11932         * dbus/dbus-bus.c: (dbus_bus_register_client),
11933         (dbus_bus_acquire_service), (dbus_bus_service_exists):
11934         * dbus/dbus-errors.c: (dbus_result_to_string):
11935         * dbus/dbus-errors.h:
11936         * dbus/dbus-message.c: (dbus_message_append_args),
11937         (dbus_message_append_args_valist), (dbus_message_get_args),
11938         (dbus_message_get_args_valist), (dbus_message_get_args_iter),
11939         (dbus_message_iter_get_arg_type), (dbus_message_iter_get_string),
11940         (dbus_message_iter_get_byte_array),
11941         (dbus_message_iter_get_string_array), (message_iter_test),
11942         (check_message_handling), (_dbus_message_test):
11943         * dbus/dbus-message.h:
11944         * test/bus-test.c: (main):
11945         Change fields to arguments in messages, so that they won't be
11946         confused with header fields.
11947
11948         * glib/test-dbus-glib.c: (main):
11949         Remove append_fields from hello message.
11950
11951 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
11952
11953         * dbus/dbus-errors.c:
11954         * dbus/dbus-message.c:
11955         * dbus/dbus-string.c:
11956         Documentation fixes.
11957
11958 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
11959
11960         * glib/dbus-gmain.c: (timeout_handler), (add_timeout),
11961         (remove_timeout):
11962         Implement support for timeouts in dbus-glib.
11963
11964 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
11965
11966         * dbus/dbus-message-builder.c: (_dbus_message_data_load):
11967         * dbus/dbus-message.c: (process_test_subdir):
11968         * test/break-loader.c: (find_breaks_based_on):
11969         Plug some memory leaks.
11970
11971 2003-02-13  Richard Hult  <rhult@codefactory.se>
11972
11973         * bus/main.c: Fix build.
11974
11975         * dbus/dbus-errors.h:
11976         * dbus/dbus-errors.c: Fix copyright for Anders.
11977
11978 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
11979
11980         * bus/Makefile.am:
11981         Add utils.[ch]
11982
11983         * bus/connection.c: (bus_connection_foreach):
11984         Fix a warning.
11985
11986         * bus/desktop-file.c: (grow_lines_in_section), (grow_sections),
11987         (unescape_string), (new_section), (parse_section_start),
11988         (parse_key_value), (report_error), (bus_desktop_file_load),
11989         (bus_desktop_file_get_string):
11990         * bus/desktop-file.h:
11991         Use DBusError for error reporting.
11992
11993         * bus/dispatch.c: (send_one_message),
11994         (bus_dispatch_message_handler):
11995         * bus/driver.c: (bus_driver_send_service_deleted),
11996         (bus_driver_send_service_created), (bus_driver_send_service_lost),
11997         (bus_driver_send_service_acquired), (bus_driver_handle_hello),
11998         (bus_driver_send_welcome_message),
11999         (bus_driver_handle_list_services),
12000         (bus_driver_handle_acquire_service),
12001         (bus_driver_handle_service_exists):
12002         * bus/loop.c: (bus_loop_run):
12003         * bus/main.c:
12004         Use BUS_HANDLE_OOM instead of _DBUS_HANDLE_OOM.
12005
12006         * bus/utils.c: (bus_wait_for_memory):
12007         * bus/utils.h:
12008         New files with general utility functions.
12009
12010         * dbus/dbus-internals.h:
12011         Remove _DBUS_HANDLE_OOM.
12012
12013 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
12014
12015         * dbus/dbus-errors.c: (dbus_result_to_string), (dbus_error_init),
12016         (dbus_error_free), (dbus_set_error_const), (dbus_set_error):
12017         * dbus/dbus-errors.h:
12018         Add DBusError structure.
12019
12020 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
12021
12022         * test/data/valid-messages/standard-acquire-service.message:
12023         * test/data/valid-messages/standard-hello.message:
12024         * test/data/valid-messages/standard-list-services.message:
12025         * test/data/valid-messages/standard-service-exists.message:
12026         Add some standard messages.
12027
12028 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
12029
12030         * bus/driver.c: (bus_driver_send_welcome_message),
12031         (bus_driver_handle_list_services),
12032         (bus_driver_handle_acquire_service),
12033         (bus_driver_handle_service_exists), (bus_driver_handle_message):
12034         Update for API changes in libdbus.
12035
12036         * dbus/dbus-message.c: (dbus_message_new_reply):
12037         * dbus/dbus-message.h:
12038         Remove the name argument. The spec states that replies shouldn't
12039         have a name.
12040
12041 2003-02-13  Anders Carlsson  <andersca@codefactory.se>
12042
12043         * bus/desktop-file.c: (parse_section_start), (parse_key_value),
12044         (report_error), (bus_desktop_file_load), (lookup_section),
12045         (lookup_line), (bus_desktop_file_get_raw),
12046         (bus_desktop_file_get_string):
12047         * bus/desktop-file.h:
12048         Some fixes, and new functions for getting a key value from a section.
12049
12050 2003-02-13  Havoc Pennington  <hp@pobox.com>
12051
12052         * test/data/auth/fail-after-n-attempts.auth-script: new test
12053
12054         * dbus/dbus-auth.c (send_rejected): shutdown_mech() when we
12055         reject the client.
12056
12057 2003-02-13  Havoc Pennington  <hp@pobox.com>
12058
12059         * dbus/dbus-auth.c (handle_server_data_external_mech): args to
12060         dbus_credentials_match were backward
12061
12062         * dbus/dbus-auth-script.c (_dbus_auth_script_run): support
12063         NO_CREDENTIALS and ROOT_CREDENTIALS
12064
12065         * dbus/dbus-auth.c (_dbus_auth_do_work): move get_state() routine
12066         into here. Never process more commands after we've reached an
12067         end state; store further data as unused bytes.
12068
12069         * test/data/auth/*: add more auth tests
12070
12071         * dbus/dbus-auth-script.c (_dbus_auth_script_run): support EXPECT
12072         command to match exact string and EXPECT_UNUSED to match unused
12073         bytes
12074
12075         * test/Makefile.am (dist-hook): fix to dist all the test stuff
12076
12077 2003-02-12  Havoc Pennington  <hp@pobox.com>
12078
12079         * dbus/dbus-string.c (_dbus_string_pop_line): fix to also strip
12080         \r off of popped lines
12081
12082         * dbus/dbus-auth.c (_dbus_auth_test): write code to run auth
12083         scripts
12084
12085         * dbus/dbus-auth-script.c (_dbus_auth_script_run): when doing a
12086         SEND, append \r\n
12087
12088 2003-02-12  Havoc Pennington  <hp@pobox.com>
12089
12090         * dbus/Makefile.am: remove break-loader from the build, since it
12091         moved.
12092
12093         * configure.in: add --enable-gcov to turn on coverage profiling
12094         flags and disable optimization
12095
12096 2003-02-10  Havoc Pennington  <hp@pobox.com>
12097
12098         * dbus/dbus-auth-script.c, dbus/dbus-auth-script.h: sync
12099         initial cut at test framework for DBusAuth from laptop.
12100         Doesn't quite work yet but it compiles and I need to get
12101         it off the 266mhz laptop. ;-)
12102
12103         * dbus/dbus-server-debug.c (_dbus_server_debug_accept_transport):
12104         fix a memleak in error case
12105
12106 2003-02-12  Anders Carlsson  <andersca@codefactory.se>
12107
12108         * bus/Makefile.am:
12109         * bus/desktop-file.c:
12110         * bus/desktop-file.h:
12111         Add a desktop file parser.
12112
12113 2003-02-11  Zack Rusin  <zack@kde.org>
12114
12115         * qt/message.[h|cpp]: sample implementation
12116         of the KDE wrapper for DBusMessage
12117
12118 2003-02-09  Zack Rusin  <zack@kde.org>
12119
12120         * test/bus-test.c: make_it_compile
12121         * doc/dbus-specification.sgml: minimal semantic fix
12122
12123 2003-02-06  Anders Carlsson  <andersca@codefactory.se>
12124
12125         Release 0.3
12126
12127         * NEWS: Update
12128
12129 2003-02-06  Anders Carlsson  <andersca@codefactory.se>
12130
12131         * dbus/Makefile.am:
12132         * dbus/dbus-break-loader.c:
12133         * test/Makefile.am:
12134         * test/break-loader.c:
12135         Move dbus-break-loader to test/ and rename it to break-loader.
12136
12137 2003-02-02  Havoc Pennington  <hp@pobox.com>
12138
12139         * dbus/dbus-keyring.c, dbus/dbus-keyring.h: template files
12140         for code to manage cookies in your home directory
12141
12142         * dbus/dbus-sysdeps.c (_dbus_generate_random_bytes): new function
12143
12144         * dbus/dbus-auth.c (get_state): impose a maximum number of tries
12145         to authenticate, then disconnect the client.
12146
12147 2003-02-03  Alexander Larsson  <alexl@redhat.com>
12148
12149         * dbus/dbus-message.c (dbus_message_append_fields):
12150         Correct docs.
12151
12152 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
12153
12154         * doc/dbus-specification.sgml:
12155         Update address format section.
12156
12157 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
12158
12159         * test/Makefile.am:
12160         * test/bus-test.c: (get_time), (add_timeout), (remove_timeout),
12161         (message_handler), (new_connection_callback), (loop_quit),
12162         (loop_run), (main):
12163         Add bus test.
12164
12165 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
12166
12167         * bus/driver.c: (bus_driver_handle_service_exists):
12168         Simplify the code a bit.
12169
12170         * dbus/dbus-bus.c: (dbus_bus_service_exists):
12171         Fix a silly.
12172
12173 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
12174
12175         * bus/Makefile.am:
12176         Add libdbus-daemon.la and link to it.
12177
12178 2003-02-01  James Willcox  <jwillcox@gnome.org>
12179
12180         * bus/driver.c: (bus_driver_handle_own_service):
12181         Actually include the service reply code in the message.
12182
12183 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
12184
12185         * bus/driver.c: (bus_driver_handle_service_exists):
12186         Don't unref the incoming message.
12187
12188 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
12189
12190         * dbus/dbus.h: Add dbus-address.h and dbus-bus.h
12191
12192 2003-02-02  Anders Carlsson  <andersca@codefactory.se>
12193
12194         * dbus/dbus-server.c: (dbus_server_listen):
12195         * dbus/dbus-transport.c: (_dbus_transport_open):
12196         ifdef out the calls to the debug transport and server.
12197
12198 2003-02-02  Alexander Larsson  <alexl@redhat.com>
12199
12200         * dbus/dbus-watch.c (dbus_watch_get_flags):
12201         Add note in the docs that ERROR or HANGUP won't be returned
12202         and are assumed always on.
12203
12204         * glib/dbus-gmain.c (add_watch):
12205         Always add IO_ERR | IO_HUP
12206
12207         * dbus/dbus-message.h:
12208         Add semicolon after dbus_message_iter_get_string_array().
12209         Makes qt code build again
12210
12211 2003-02-01  Anders Carlsson  <andersca@codefactory.se>
12212
12213         * bus/driver.c: (create_unique_client_name),
12214         (bus_driver_handle_hello):
12215         Don't take a name, just use a numeric id to identify
12216         each client.
12217
12218         * dbus/Makefile.am:
12219         * dbus/dbus-bus.c: (dbus_bus_register_client),
12220         (dbus_bus_acquire_service), (dbus_bus_service_exists):
12221         * dbus/dbus-bus.h:
12222         Add new convenience functions for communicating with the bus.
12223
12224         * dbus/dbus-message.h:
12225
12226         * dbus/dbus-protocol.h:
12227         Fix a typo.
12228
12229 2003-02-01  Alexander Larsson  <alexl@redhat.com>
12230
12231         * dbus/dbus-message.c (dbus_message_append_fields):
12232         Add some more doc comments.
12233
12234 2003-02-01  Havoc Pennington  <hp@pobox.com>
12235
12236         * dbus/dbus-break-loader.c (randomly_modify_length): change
12237         a 4-byte value in the message as if it were a length
12238
12239         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): don't set
12240         execute bit on saved files
12241
12242 2003-02-01  Havoc Pennington  <hp@pobox.com>
12243
12244         * dbus/dbus-break-loader.c (main): new program to find messages
12245         that break the loader.
12246
12247         * dbus/dbus-sysdeps.c (_dbus_string_append_uint): new function
12248         * dbus/dbus-sysdeps.c (_dbus_string_save_to_file): new function
12249
12250         * dbus/dbus-string.c (_dbus_string_set_byte): new
12251
12252 2003-01-31  Havoc Pennington  <hp@pobox.com>
12253
12254         * dbus/dbus-message.c: refactor the test code to be more general,
12255         in preparation for writing a "randomly permute test cases to
12256         try to break the loader" program.
12257
12258 2003-01-31  Havoc Pennington  <hp@pobox.com>
12259
12260         * doc/dbus-specification.sgml: work on the specification
12261
12262         * dbus/dbus-message.c (_dbus_message_loader_return_buffer): check
12263         the protocol version of the message.
12264
12265         * dbus/dbus-protocol.h: drop special _REPLY names, the spec
12266         no longer specifies that.
12267         (DBUS_SERVICE_REPLY_SERVICE_EXISTS): fix flags (1/2/4/8 not
12268         1/2/3/4)
12269
12270         * dbus/dbus-marshal.c (_dbus_marshal_get_arg_end_pos): add missing
12271         "break" for DBUS_TYPE_NIL, remove @todo
12272
12273 2003-01-31  Havoc Pennington  <hp@pobox.com>
12274
12275         * dbus/dbus-message.c (dbus_message_set_is_error_reply): rename
12276         just set_is_error/get_is_error as this is a commonly-used
12277         function, and write docs.
12278
12279 2003-01-31  Anders Carlsson  <andersca@codefactory.se>
12280
12281         * dbus/dbus-address.c: (dbus_address_entry_free):
12282         Free key and value lists.
12283
12284         * dbus/dbus-internals.c: (_dbus_type_to_string):
12285         Add the types we didn't have.
12286
12287         * dbus/dbus-marshal.c: (_dbus_marshal_get_arg_end_pos),
12288         (_dbus_marshal_validate_arg):
12289         Add NIL types.
12290
12291         * dbus/dbus-message.c: (dbus_message_set_sender):
12292         Remove todo about being able to set sender to NULL.
12293
12294         (dbus_message_set_is_error_reply),
12295         (dbus_message_get_is_error_reply):
12296         * dbus/dbus-message.h:
12297         New functions.
12298
12299         * dbus/dbus-protocol.h:
12300         Add error reply flag.
12301
12302         * test/data/valid-messages/opposite-endian.message:
12303         Add NIL type to test.
12304
12305 2003-01-31  Havoc Pennington  <hp@pobox.com>
12306
12307         * doc/dbus-specification.sgml: fully specify the header.  Add
12308         flags and major protocol version, and change header/body len to
12309         unsigned.
12310
12311         * dbus/dbus-message-builder.c (append_saved_length): append length
12312         as uint32
12313
12314         * dbus/dbus-message.c (dbus_message_create_header): change header
12315         length and body length to unsigned. Add the new fields from the
12316         spec
12317         (_dbus_message_loader_return_buffer): unsigned header/body len
12318
12319 2003-01-30  Havoc Pennington  <hp@pobox.com>
12320
12321         * dbus/dbus-auth.c: rework to use only REJECTED, no
12322         MECHANISMS
12323
12324         * doc/dbus-sasl-profile.txt: drop MECHANISMS and just
12325         use REJECTED, suggested by Mark McLoughlin
12326
12327 2003-01-30  Havoc Pennington  <hp@pobox.com>
12328
12329         * dbus/dbus-server.c (dbus_server_listen): @todo about how we need
12330         a better way to report errors here. e.g.  "unix address lacks
12331         path" or something. also "no such file" when the path doesn't
12332         exist, etc.
12333
12334         * dbus/dbus-address.c (dbus_address_entries_free): add @todo about
12335         leaking list nodes
12336         (dbus_parse_address): add @todo about documenting address format,
12337         and allowing , and ; to be escaped
12338
12339 2003-01-30  Anders Carlsson  <andersca@codefactory.se>
12340
12341         * dbus/Makefile.am:
12342         Add dbus-address.[ch]
12343
12344         * dbus/dbus-address.c: (dbus_address_entry_free),
12345         (dbus_address_entries_free), (create_entry),
12346         (dbus_address_entry_get_method), (dbus_address_entry_get_value),
12347         (dbus_parse_address), (_dbus_address_test):
12348         * dbus/dbus-address.h:
12349         New files for dealing with address parsing.
12350
12351         * dbus/dbus-connection.c:
12352         Document timeout functions.
12353
12354         * dbus/dbus-message.c:
12355         Document dbus_message_new_from_message.
12356
12357         * dbus/dbus-server-debug.c:
12358         Document.
12359
12360         * dbus/dbus-server.c: (dbus_server_listen):
12361         Parse address and use correct server implementation.
12362
12363         * dbus/dbus-string.c: (_dbus_string_find_to), (_dbus_string_test):
12364         * dbus/dbus-string.h:
12365         New function with test.
12366
12367         * dbus/dbus-test.c: (dbus_internal_symbol_do_not_use_run_tests):
12368         * dbus/dbus-test.h:
12369         Add address tests.
12370
12371         * dbus/dbus-transport-debug.c:
12372         Document.
12373
12374         * dbus/dbus-transport.c: (_dbus_transport_open):
12375         Parse address and use correct transport implementation.
12376
12377 2003-01-30  Havoc Pennington  <hp@pobox.com>
12378
12379         * dbus/dbus-message.c: use message->byte_order instead of
12380         DBUS_COMPILER_BYTE_ORDER throughout.
12381         (dbus_message_create_header): pad header to align the
12382         start of the body of the message to 8-byte boundary
12383
12384         * dbus/dbus-marshal.h: make all the demarshalers take const
12385         DBusString arguments.
12386
12387         * dbus/dbus-message.c (_dbus_message_loader_return_buffer):
12388         validate message args here, so we don't have to do slow validation
12389         later, and so we catch bad messages as they are incoming. Also add
12390         better checks on header_len and body_len. Also fill in
12391         message->byte_order
12392
12393         * dbus/dbus-string.c (_dbus_string_validate_utf8): new (not
12394         implemented properly)
12395         (_dbus_string_validate_nul): new function to check all-nul
12396
12397         * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): rename
12398         get_arg_end_pos and remove all validation
12399         (_dbus_marshal_validate_arg): actually do validation here.
12400
12401 2003-01-29  Havoc Pennington  <hp@pobox.com>
12402
12403         * dbus/dbus-message.c (check_message_handling): fix assertion
12404         failure on set_client_serial
12405
12406 2003-01-28  Havoc Pennington  <hp@pobox.com>
12407
12408         * dbus/dbus-server-debug.c: Add doc section comments
12409
12410         * dbus/dbus-transport-debug.c: add doc section comments
12411
12412 2003-01-28  Havoc Pennington  <hp@redhat.com>
12413
12414         * dbus/dbus-string.c (_dbus_string_base64_decode): append bytes in
12415         the reverse order from how I had it
12416         (_dbus_string_base64_encode): reverse encoding order. I was
12417         basically byteswapping everything during encoding.
12418
12419 2003-01-28  Anders Carlsson  <andersca@codefactory.se>
12420
12421         * dbus/dbus-connection-internal.h:
12422         * dbus/dbus-connection.c: (_dbus_connection_add_timeout),
12423         (_dbus_connection_remove_timeout):
12424         Add functions for adding and removing timeouts.
12425
12426         * dbus/dbus-message.c: (dbus_message_new_from_message):
12427         Add new function that takes a message and creates an exact
12428         copy of it, but with the refcount set to 1.
12429         (check_message_handling):
12430         Fix build error.
12431
12432         * dbus/dbus-server-protected.h:
12433         * dbus/dbus-server.c: (_dbus_server_init_base),
12434         (_dbus_server_finalize_base), (_dbus_server_add_timeout),
12435         (dbus_server_set_timeout_functions):
12436         (_dbus_server_remove_timeout):
12437         New functions so that a server can add and remove timeouts.
12438
12439         (dbus_server_listen):
12440         Add commented out call to dbus_server_debug_new.
12441
12442         * dbus/dbus-timeout.c: (_dbus_timeout_new):
12443         Actually set the handler, doh.
12444
12445         * dbus/dbus-transport.c: (_dbus_transport_open):
12446         Add commented out call to dbus_transport_debug_client_new.
12447
12448         * dbus/Makefile.am:
12449         Add dbus-transport-debug.[ch] and dbus-server-debug.[ch]
12450
12451 2003-01-28  Havoc Pennington  <hp@pobox.com>
12452
12453         * dbus/dbus-message.c (check_message_handling): function to check
12454         on the loaded message, iterates over it etc.
12455
12456 2003-01-28  Havoc Pennington  <hp@pobox.com>
12457
12458         * test/Makefile.am (dist-hook): fix make distdir
12459
12460         * dbus/Makefile.am (TESTS_ENVIRONMENT): fix make check
12461
12462 2003-01-27  Havoc Pennington  <hp@pobox.com>
12463
12464         * dbus/dbus-mempool.c (time_for_size): replace printf with
12465         _dbus_verbose
12466
12467         * dbus/dbus-message-builder.c (_dbus_message_data_load): allow
12468         empty lines; fix the SAVE_LENGTH stuff to be
12469         START_LENGTH/END_LENGTH so it actually works; couple other
12470         bugfixes
12471
12472         * test/Makefile.am (dist-hook): add dist-hook for .message files
12473
12474         * dbus/dbus-string.c (DBUS_STRING_COPY_PREAMBLE): source of a copy
12475         can be constant or locked.
12476         (_dbus_string_free): allow freeing a const string as
12477         documented/intended
12478
12479         * dbus/dbus-sysdeps.c (_dbus_concat_dir_and_file): utility
12480
12481         * dbus/dbus-test-main.c (main): take an argument which is the
12482         directory containing test data
12483
12484         * dbus/dbus-message.c (_dbus_message_test): pass a test_data_dir
12485         argument to this and load all the messages in test/data/
12486         checking that they can be loaded or not loaded as appropriate.
12487
12488 2003-01-27  Anders Carlsson  <andersca@codefactory.se>
12489
12490         * bus/dispatch.c: (bus_dispatch_message_handler):
12491         Dispatch messages sent to services.
12492
12493         * bus/driver.c: (bus_driver_send_service_deleted),
12494         (bus_driver_send_service_created), (bus_driver_send_service_lost),
12495         (bus_driver_send_service_acquired):
12496         Add helper functions for sending service related messages.
12497
12498         (bus_driver_send_welcome_message):
12499         Send HELLO_REPLY instead of WELCOME.
12500
12501         (bus_driver_handle_list_services):
12502         Send LIST_SERVICES_REPLY instead of SERVICES.
12503
12504         (bus_driver_handle_own_service),
12505         (bus_driver_handle_service_exists):
12506         New message handlers.
12507
12508         (bus_driver_handle_message):
12509         Invoke new message handlers.
12510
12511         (bus_driver_remove_connection):
12512         Don't remove any services here since that's done automatically
12513         by bus_service_remove_owner now.
12514
12515         * bus/driver.h:
12516         New function signatures.
12517
12518         * bus/services.c: (bus_service_add_owner):
12519         Send ServiceAcquired message if we're the only primary owner.
12520
12521         (bus_service_remove_owner):
12522         Send ServiceAcquired/ServiceLost messages.
12523
12524         (bus_service_set_prohibit_replacement),
12525         (bus_service_get_prohibit_replacement):
12526         Functions for setting prohibit replacement.
12527
12528         (bus_service_has_owner):
12529         New function that checks if a connection is in the owner queue of
12530         a certain service.
12531
12532         * bus/services.h:
12533         Add new function signatures.
12534
12535         * dbus/dbus-list.c: (_dbus_list_test):
12536         Add tests for _dbus_list_remove_last and traversing the list backwards.
12537
12538         * dbus/dbus-list.h:
12539         Fix a typo in _dbus_list_get_prev_link, if we're at the first element we can't
12540         go any further, so return NULL then.
12541
12542         * dbus/dbus-protocol.h:
12543         Add new messages, service flags and service replies.
12544
12545 2003-01-26  Havoc Pennington  <hp@pobox.com>
12546
12547         * dbus/dbus-message-builder.c: implement, completely untested.
12548
12549         * test/data/*: add data to be used in testing.
12550         ".message" files are our simple loadable text format.
12551         ".message-raw" will be binary dumps of messages.
12552
12553         * dbus/dbus-string.c (_dbus_string_starts_with_c_str): new
12554
12555 2003-01-26  Havoc Pennington  <hp@pobox.com>
12556
12557         * dbus/dbus-sysdeps.c (_dbus_file_get_contents): new function
12558
12559         * dbus/dbus-errors.c (dbus_result_to_string): add
12560         file errors
12561
12562         * dbus/dbus-message-builder.c: new file, will contain code to load
12563         up messages from files. Not implemented yet.
12564
12565 2003-01-26  Havoc Pennington  <hp@pobox.com>
12566
12567         * dbus/dbus-message.c (dbus_message_set_sender): support deleting
12568         the sender by setting to NULL
12569
12570 2003-01-26  Havoc Pennington  <hp@pobox.com>
12571
12572         The unit tests pass, but otherwise untested.  If it breaks, the
12573         tests should have been better. ;-)
12574
12575         * bus/driver.c (bus_driver_handle_hello): return if we disconnect
12576         the connection.
12577
12578         * dbus/dbus-message.c: redo everything so we maintain
12579         message->header as the only copy of the various fields.
12580         This avoids the possibility of out-of-memory in some cases,
12581         for example dbus_message_lock() can't run out of memory anymore,
12582         and avoids extra copying. Figured I may as well go ahead and do
12583         this since it was busted for dbus_message_lock to not return
12584         failure on OOM, and dbus_message_write_header was totally
12585         unchecked for OOM. Also fixed some random other bugs.
12586
12587         * dbus/dbus-marshal.c (_dbus_marshal_get_field_end_pos): verify
12588         that strings are nul-terminated. Also, end_pos can be equal
12589         to string length just not greater than, I think.
12590         (_dbus_marshal_set_int32): new function
12591         (_dbus_marshal_set_uint32): new function
12592         (_dbus_marshal_set_string): new function
12593
12594         * dbus/dbus-connection.c (_dbus_connection_new_for_transport): fix
12595         a warning, init timeout_list to NULL
12596         (dbus_connection_send_message): don't use uninitialized variable
12597         "serial"
12598
12599         * dbus/dbus-string.c (_dbus_string_replace_len): new function
12600
12601 2003-01-26  Anders Carlsson  <andersca@codefactory.se>
12602
12603         * bus/driver.c: (bus_driver_handle_hello),
12604         (bus_driver_send_welcome_message):
12605         Plug leaks
12606
12607 2003-01-26  Anders Carlsson  <andersca@codefactory.se>
12608
12609         * dbus/dbus-auth.c: (process_auth), (_dbus_auth_unref):
12610         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
12611         (dbus_connection_unref):
12612         * dbus/dbus-marshal.c: (_dbus_marshal_test):
12613         * dbus/dbus-message.c: (dbus_message_unref),
12614         Plug memory leaks.
12615
12616         (dbus_message_get_fields):
12617         Remove debugging printout.
12618
12619         (_dbus_message_loader_return_buffer):
12620         Don't store the header string.
12621
12622         (_dbus_message_test):
12623         Plug leaks.
12624
12625 2003-01-26  Richard Hult  <rhult@codefactory.se>
12626
12627         * glib/dbus-gmain.c (dbus_connection_dispatch): Traverse a copy of
12628         the file descriptor list, since it can change under us.
12629
12630 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
12631
12632         * glib/dbus-gmain.c: (dbus_connection_prepare),
12633         (dbus_connection_check), (dbus_connection_dispatch), (add_watch),
12634         (remove_watch), (dbus_connection_hookup_with_g_main):
12635         Rewrite the glib handling to use its own GSource instead of a
12636         GIOChannel so we can catch messages put in the queue while waiting
12637         for a reply.
12638
12639 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
12640
12641         * bus/Makefile.am:
12642         * bus/connection.c: (connection_disconnect_handler),
12643         (connection_watch_callback), (bus_connection_setup):
12644         * bus/dispatch.c: (send_one_message),
12645         (bus_dispatch_broadcast_message), (bus_dispatch_message_handler),
12646         (bus_dispatch_add_connection), (bus_dispatch_remove_connection):
12647         * bus/dispatch.h:
12648         * bus/driver.c: (bus_driver_send_service_deleted),
12649         (bus_driver_send_service_created), (bus_driver_handle_hello),
12650         (bus_driver_send_welcome_message),
12651         (bus_driver_handle_list_services), (bus_driver_remove_connection),
12652         (bus_driver_handle_message):
12653         * bus/driver.h:
12654         Refactor code, put the message dispatching in its own file. Use
12655         _DBUS_HANDLE_OOM. Also send ServiceDeleted messages when a client
12656         is disconnected.
12657
12658 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
12659
12660         * dbus/dbus-internals.h:
12661         Add _DBUS_HANDLE_OOM macro, it doesn't do anything currently.
12662
12663         * dbus/dbus-message.c: (dbus_message_get_sender):
12664         * dbus/dbus-message.h:
12665         Implement dbus_message_get_sender.
12666
12667         * dbus/dbus-protocol.h:
12668         Add message and service defines.
12669
12670 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
12671
12672         * dbus/dbus-connection.c: (dbus_connection_send_message):
12673         * dbus/dbus-message-internal.h:
12674         * dbus/dbus-message.c: (_dbus_message_get_client_serial),
12675         (dbus_message_write_header):
12676         Remove _dbus_messag_unlock and don't set the client serial on a
12677         message if one already exists.
12678
12679 2003-01-24  Havoc Pennington  <hp@pobox.com>
12680
12681         * dbus/dbus-list.c (alloc_link): put a thread lock on the global
12682         list_pool
12683
12684         * bus/driver.c (bus_driver_handle_list_services): fix a leak
12685         on OOM
12686
12687 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
12688
12689         * dbus/dbus-list.c: (alloc_link), (free_link):
12690         Use a memory pool for the links.
12691
12692 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
12693
12694         * bus/connection.c: (bus_connection_foreach):
12695         * bus/connection.h:
12696         Add new bus_connection_foreach function.
12697
12698         * bus/driver.c: (send_one_message), (bus_driver_broadcast_message):
12699         Add function that broadcasts a message to all clients.
12700
12701         (bus_driver_send_service_created), (bus_driver_handle_hello),
12702         (bus_driver_send_welcome_message),
12703         (bus_driver_handle_list_services), (bus_driver_message_handler):
12704         Implement functions that take care of listing services, and notifying
12705         clients when new services are created.
12706
12707         * bus/services.c: (bus_services_list):
12708         * bus/services.h:
12709         Add new function that returns an array of strings with the currently
12710         registered services.
12711
12712         * glib/dbus-glib.h:
12713         * glib/dbus-gmain.c:
12714         Update copyright year.
12715
12716 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
12717
12718         * dbus/dbus-connection.c: (dbus_connection_send_message):
12719         Unlock the message in case it was sent earlier.
12720
12721         (dbus_connection_send_message_with_reply_and_block):
12722         Remove the reply message from the list.
12723
12724         * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
12725         Set array_len and new_pos correctly.
12726
12727         (_dbus_marshal_test):
12728         Remove debug output.
12729
12730         * dbus/dbus-message-internal.h:
12731         * dbus/dbus-message.c: (_dbus_message_get_reply_serial):
12732         New function that returns the reply serial.
12733
12734         (_dbus_message_unlock):
12735         New function that unlocks a message and resets its header.
12736
12737         (dbus_message_append_string_array),
12738         (dbus_message_get_fields_valist),
12739         (dbus_message_iter_get_field_type),
12740         (dbus_message_iter_get_string_array),
12741         (dbus_message_get_fields),
12742         (dbus_message_append_fields_valist):
12743         Handle string arrays.
12744
12745         (dbus_message_set_sender):
12746         Make this function public since the bus daemon needs it.
12747
12748         (decode_header_data):
12749         Set the reply serial to -1 initially.
12750
12751         * dbus/dbus-message.h:
12752         Add dbus_message_set_sender.
12753
12754 2003-01-24  Havoc Pennington  <hp@pobox.com>
12755
12756         * doc/dbus-specification.sgml: add some stuff
12757
12758 2003-01-22  Havoc Pennington  <hp@pobox.com>
12759
12760         * doc/dbus-specification.sgml: Start to document the protocol.
12761
12762 2003-01-22  Havoc Pennington  <hp@pobox.com>
12763
12764         * dbus/dbus-connection.c
12765         (dbus_connection_send_message_with_reply_and_block): add some @todo
12766
12767         * bus/driver.c (bus_driver_add_connection): add a FIXME about memleak
12768
12769 2003-01-21  Havoc Pennington  <hp@pobox.com>
12770
12771         (patch untested because can't compile)
12772
12773         * bus/driver.c (create_unique_client_name): make this function
12774         never recycle client names. Also, caller should initialize
12775         the DBusString.
12776
12777         * dbus/dbus-sysdeps.c (_dbus_get_current_time): new function
12778
12779 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
12780
12781         * dbus/dbus-marshal.c: (_dbus_marshal_double),
12782         (_dbus_marshal_int32), (_dbus_marshal_uint32),
12783         (_dbus_marshal_int32_array), (_dbus_marshal_uint32_array),
12784         (_dbus_marshal_double_array), (_dbus_marshal_string_array),
12785         (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
12786         (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
12787         (_dbus_marshal_get_field_end_pos), (_dbus_marshal_test):
12788         * dbus/dbus-marshal.h:
12789         * dbus/dbus-protocol.h:
12790         Add support for marshalling and demarshalling integer, double
12791         and string arrays.
12792
12793 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
12794
12795         * bus/Makefile.am:
12796         Add driver.[ch]
12797
12798         * bus/connection.c: (connection_disconnect_handler):
12799         Remove the connection from the bus driver's list.
12800
12801         (connection_watch_callback): Dispatch messages.
12802
12803         (free_connection_data): Free connection name.
12804
12805         (bus_connection_setup): Add connection to the bus driver's list.
12806         (bus_connection_remove_owned_service):
12807         (bus_connection_set_name), (bus_connection_get_name):
12808         Add functions for setting and getting the connection's name.
12809
12810         * bus/connection.h:
12811         Add function headers.
12812
12813         * bus/driver.c: (create_unique_client_name),
12814         (bus_driver_handle_hello_message),
12815         (bus_driver_send_welcome_message), (bus_driver_message_handler),
12816         (bus_driver_add_connection), (bus_driver_remove_connection):
12817         * bus/driver.h:
12818         * bus/main.c:
12819         * bus/services.c: (bus_service_free):
12820         * bus/services.h:
12821         New file that handles communication and registreation with the bus
12822         itself.
12823
12824 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
12825
12826         * dbus/dbus-connection.c: (dbus_connection_send_message):
12827         Add a new client_serial parameter.
12828
12829         (dbus_connection_send_message_with_reply):
12830         Remove a @todo since we've implemented the blocking function.
12831
12832         (dbus_connection_send_message_with_reply_and_block):
12833         New function that sends a message and waits for a reply and
12834         then returns the reply.
12835
12836         * dbus/dbus-connection.h:
12837         Add new functions.
12838
12839         * dbus/dbus-errors.c: (dbus_result_to_string):
12840         * dbus/dbus-errors.h:
12841         Add new DBUS_RESULT.
12842
12843         * dbus/dbus-message-internal.h:
12844         * dbus/dbus-message.c: (_dbus_message_get_reply_serial),
12845         (_dbus_message_set_sender), (dbus_message_write_header),
12846         (dbus_message_new_reply), (decode_header_data),
12847         (_dbus_message_loader_return_buffer), (_dbus_message_test):
12848         * dbus/dbus-message.h:
12849         Add new functions that set the reply serial and sender.
12850         Also marshal and demarshal them correctly and add test.
12851
12852         * dbus/dbus-protocol.h:
12853         Add new DBUS_MESSAGE_TYPE_SENDER.
12854
12855         * glib/dbus-glib.h:
12856         * glib/dbus-gmain.c: (watch_callback), (free_callback_data),
12857         (add_watch), (remove_watch), (add_timeout), (remove_timeout),
12858         (dbus_connection_hookup_with_g_main):
12859         * glib/test-dbus-glib.c: (main):
12860         Rewrite to use GIOChannel and remove the GSource crack.
12861
12862         * test/echo-client.c: (main):
12863         * test/watch.c: (check_messages):
12864         Update for changed APIs
12865
12866 2003-01-19  Anders Carlsson  <andersca@codefactory.se>
12867
12868         * dbus/Makefile.am: Add dbus-timeout.[cħ]
12869
12870         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport):
12871         Create a DBusTimeoutList.
12872         (dbus_connection_set_timeout_functions): Add new function to
12873         set timeout callbacks
12874
12875         * dbus/dbus-connection.h: Add public DBusTimeout API.
12876
12877         * dbus/dbus-message.c: (dbus_message_get_service):
12878         * dbus/dbus-message.h:  New function.
12879
12880         * dbus/dbus-server.c: Fix small doc typo.
12881
12882         * dbus/dbus-timeout.[ch]: New files for mainloop timeouts.
12883
12884 2003-01-19  Anders Carlsson  <andersca@codefactory.se>
12885
12886         * dbus/dbus-string.c (_dbus_string_move_len): Don't delete all
12887         of the string, just as long as specified.
12888
12889 2003-01-19  Havoc Pennington  <hp@pobox.com>
12890
12891         * dbus/dbus-connection.c (dbus_connection_get_is_authenticated):
12892         new function
12893
12894         * dbus/dbus-server.c (dbus_server_set_max_connections)
12895         (dbus_server_get_max_connections, dbus_server_get_n_connections):
12896         keep track of current number of connections, and add API for
12897         setting a max (but haven't implemented enforcing the max yet)
12898
12899 2003-01-18  Havoc Pennington  <hp@pobox.com>
12900
12901         * dbus/dbus-transport-unix.c (unix_do_iteration): only do the
12902         reading/writing if read_watch != NULL or write_watch != NULL.
12903
12904         * dbus/dbus-message.c (_dbus_message_loader_return_buffer): fix
12905         the message loader code to actually load message->header and
12906         message->body into the newly-created message.
12907
12908         * dbus/dbus-transport-unix.c (check_write_watch): fix a mem leak
12909         in OOM case
12910
12911         * dbus/dbus-connection.c (dbus_connection_set_max_message_size)
12912         (dbus_connection_get_max_message_size)
12913         (dbus_connection_set_max_live_messages_size)
12914         (dbus_connection_get_max_live_messages_size): implement some
12915         resource limitation functions
12916
12917         * dbus/dbus-resources.c: new file implementing some of the
12918         resource limits stuff
12919
12920         * dbus/dbus-message.c (dbus_message_iter_get_byte_array): add
12921         missing docs, add @todo to handle OOM etc.
12922
12923         * dbus/dbus-marshal.c (_dbus_demarshal_byte_array): add missing
12924         docs
12925
12926 2003-01-18  Havoc Pennington  <hp@pobox.com>
12927
12928         * dbus/dbus-connection.c (dbus_connection_unref): disconnect the
12929         connection if it hasn't been already.
12930
12931         * dbus/dbus-connection.h: kill off the idea of an ErrorFunction,
12932         replace with DisconnectFunction.
12933
12934 2003-01-18  Havoc Pennington  <hp@pobox.com>
12935
12936         Building --disable-verbose-mode --disable-asserts --disable-tests
12937         cuts the library from 112K to 45K or so
12938
12939         * configure.in: check for varargs macro support,
12940         add --enable-verbose-mode, --enable-asserts.
12941
12942         * dbus/dbus-internals.h (_dbus_assert): support
12943         DBUS_DISABLE_ASSERT
12944         (_dbus_verbose): support DBUS_ENABLE_VERBOSE_MODE
12945
12946 2003-01-18  Havoc Pennington  <hp@pobox.com>
12947
12948         * dbus/dbus-test.c: include config.h so that tests actually run
12949
12950         * dbus/dbus-string.c: add assertions that stuff is 8-byte aligned,
12951         so the failure mode when that assumption fails will be plenty
12952         obvious.
12953
12954 2003-01-18  Havoc Pennington  <hp@pobox.com>
12955
12956         * configure.in: default --enable-tests to $USE_MAINTAINER_MODE
12957
12958         * dbus/Makefile.am: fix it up so dubs-test-main.c is included in
12959         the distribution
12960
12961         * test/Makefile.am: don't use special variable "TESTS" for echo-*
12962         since we don't want to use those in make check
12963
12964 2003-01-15  Havoc Pennington  <hp@redhat.com>
12965
12966         Release 0.2
12967
12968         * NEWS: update
12969
12970 2003-01-15  Havoc Pennington  <hp@redhat.com>
12971
12972         * test/Makefile.am: fix so that test source code ends up in the
12973         distribution on make distcheck
12974
12975 2003-01-15  Havoc Pennington  <hp@redhat.com>
12976
12977         Release 0.1.
12978
12979         * NEWS: update
12980
12981 2003-01-15  Havoc Pennington  <hp@redhat.com>
12982
12983         * dbus/dbus-test.c (dbus_internal_symbol_do_not_use_run_tests):
12984         fix build when --disable-tests
12985
12986         * Makefile.am (EXTRA_DIST): put HACKING in here
12987
12988         * HACKING: document procedure for making a tarball release.
12989
12990 2003-01-14  Anders Carlsson  <andersca@codefactory.se>
12991
12992         * bus/connection.c: (connection_error_handler),
12993         (bus_connection_setup):
12994         * bus/main.c: (main):
12995         Make sure that the DBusConnectionData struct is NULLed
12996         out to prevent a segfault.
12997
12998         * dbus/dbus-errors.c: (dbus_result_to_string):
12999         * dbus/dbus-errors.h:
13000         * dbus/dbus-message.c: (dbus_message_get_fields),
13001         (dbus_message_get_fields_valist), (_dbus_message_test):
13002         * dbus/dbus-message.h:
13003         Make dbus_message_get_fields return a result code so we can
13004         track invalid fields as well as oom.
13005
13006 2003-01-11  Havoc Pennington  <hp@pobox.com>
13007
13008         * configure.in: change --enable-test/--enable-ansi action-if-given
13009         to enable_foo=$enableval instead of enable_foo=yes
13010
13011 2003-01-08  Havoc Pennington  <hp@pobox.com>
13012
13013         * dbus/dbus-string.c (_dbus_string_align_length): new function
13014
13015         * dbus/dbus-test-main.c: move main() for test app here
13016         * dbus/dbus-test.c
13017         (dbus_internal_symbol_do_not_use_run_tests): we have to export a
13018         symbol to run tests, because dbus-test isn't in the main
13019         library
13020
13021         Code review nitpicks.
13022
13023         * dbus/dbus-message.c (dbus_message_write_header): add newlines
13024         for people with narrow emacs ;-). Assert client_serial was filled
13025         in. Assert message->name != NULL.
13026         (dbus_message_append_fields): have "first_field_type" arg separate
13027         from va list, needed for C++ binding that also uses varargs IIRC
13028         and helps with type safety
13029         (dbus_message_new): add @todo about using DBusString to store
13030         service/name internally
13031         (dbus_message_new): don't leak ->service and ->name on OOM later
13032         in the function
13033         (dbus_message_unref): free the service name
13034         (dbus_message_get_fields): same change to varargs
13035         i.e. first_field_type
13036         (_dbus_message_loader_return_buffer): assert that the message data
13037         is aligned (if not it's a bug in our code). Put in verbose griping
13038         about why we set corrupted = TRUE.
13039         (decode_header_data): add FIXME that char* is evil.  Was going to
13040         add FIXME about evil locale-specific string.h strncmp, but just
13041         switched to wacky string-as-uint32 optimization. Move check for
13042         "no room for field name" above get_const_data_len() to avoid
13043         assertion failure in get_const_data_len if we have trailing 2
13044         bytes or the like. Check for service and name fields being
13045         provided twice. Don't leak service/name on error. Require field
13046         names to be aligned to 4 bytes.
13047
13048         * dbus/dbus-marshal.c: move byte swap stuff to header
13049         (_dbus_pack_int32): uscore-prefix
13050         (_dbus_unpack_int32): uscore-prefix
13051         (_dbus_unpack_uint32): export
13052         (_dbus_demarshal_string): add @todo complaining about use of
13053         memcpy()
13054         (_dbus_marshal_get_field_end_pos): add @todo about bad error
13055         handling allowing corrupt data to go unchecked
13056
13057 2003-01-08  Havoc Pennington  <hp@redhat.com>
13058
13059         * dbus/dbus-transport-unix.c (unix_do_iteration): add read/write
13060         to the select() as needed for authentication. (should be using
13061         _dbus_poll() not select, but for another day)
13062
13063         * dbus/dbus.h: include dbus/dbus-protocol.h
13064
13065 2003-01-08  Anders Carlsson  <andersca@codefactory.se>
13066
13067         * dbus/Makefile.am (dbusinclude_HEADERS): Install
13068         dbus-connection.h
13069
13070 2003-01-08  Anders Carlsson  <andersca@codefactory.se>
13071
13072         * dbus/dbus-internals.c: (_dbus_type_to_string):
13073         New function that returns a string describing a type.
13074
13075         * dbus/dbus-marshal.c: (_dbus_demarshal_byte_array):
13076         * dbus/dbus-marshal.h:
13077         * dbus/dbus-message.c: (dbus_message_get_fields_valist),
13078         (dbus_message_iter_get_field_type), (dbus_message_iter_get_double),
13079         (dbus_message_iter_get_byte_array):
13080         * dbus/dbus-message.h:
13081         Add new convenience functions for appending and getting message fields.
13082         Also add demarshalling routines for byte arrays.
13083
13084 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
13085
13086         * dbus/dbus-connection-internal.h:
13087         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
13088         (_dbus_connection_get_next_client_serial),
13089         (dbus_connection_send_message):
13090         * dbus/dbus-internals.h:
13091         * dbus/dbus-marshal.c: (unpack_uint32), (dbus_unpack_int32),
13092         (dbus_pack_int32), (_dbus_marshal_double), (_dbus_marshal_int32),
13093         (_dbus_marshal_uint32), (_dbus_demarshal_double),
13094         (_dbus_demarshal_int32), (_dbus_demarshal_uint32),
13095         (_dbus_demarshal_string), (_dbus_marshal_get_field_end_pos),
13096         (_dbus_verbose_bytes), (_dbus_marshal_test):
13097         * dbus/dbus-marshal.h:
13098         * dbus/dbus-message-internal.h:
13099         * dbus/dbus-message.c: (_dbus_message_set_client_serial),
13100         (dbus_message_write_header), (_dbus_message_lock),
13101         (dbus_message_new), (dbus_message_ref), (dbus_message_unref),
13102         (dbus_message_get_name), (dbus_message_append_int32),
13103         (dbus_message_append_uint32), (dbus_message_append_double),
13104         (dbus_message_append_string), (dbus_message_append_byte_array),
13105         (dbus_message_get_fields_iter), (dbus_message_iter_ref),
13106         (dbus_message_iter_unref), (dbus_message_iter_has_next),
13107         (dbus_message_iter_next), (dbus_message_iter_get_field_type),
13108         (dbus_message_iter_get_string), (dbus_message_iter_get_int32),
13109         (dbus_message_iter_get_uint32), (dbus_message_iter_get_double),
13110         (decode_header_data), (_dbus_message_loader_return_buffer),
13111         (message_iter_test), (_dbus_message_test):
13112         * dbus/dbus-message.h:
13113         * dbus/dbus-protocol.h:
13114         * dbus/dbus-test.c: (main):
13115         * dbus/dbus-test.h:
13116         * glib/test-dbus-glib.c: (message_handler), (main):
13117         * test/echo-client.c: (main):
13118         * test/watch.c: (check_messages):
13119         Make messages sendable and receivable for real.
13120
13121 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
13122
13123         * dbus/dbus-marshal.c: (_dbus_marshal_double),
13124         (_dbus_marshal_string), (_dbus_marshal_byte_array):
13125         * dbus/dbus-message.c: (dbus_message_append_int32),
13126         (dbus_message_append_uint32), (dbus_message_append_double),
13127         (dbus_message_append_string), (dbus_message_append_byte_array):
13128         Handle OOM restoration.
13129
13130 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
13131
13132         * dbus/dbus-marshal.c: (_dbus_marshal_string),
13133         (_dbus_demarshal_string), (_dbus_marshal_test):
13134         * dbus/dbus-marshal.h:
13135         * dbus/dbus-message.c: (dbus_message_get_name),
13136         Document these functions.
13137
13138         (dbus_message_append_int32), (dbus_message_append_uint32),
13139         (dbus_message_append_double), (dbus_message_append_string),
13140         (dbus_message_append_byte_array):
13141         * dbus/dbus-message.h:
13142         Add functions for adding message fields of different types.
13143
13144         * dbus/dbus-protocol.h:
13145         Add the different types.
13146
13147 2003-01-05  Havoc Pennington  <hp@pobox.com>
13148
13149         * bus/connection.c: implement routines for handling connections,
13150         first thing is keeping a list of owned services on each connection
13151         and setting up watches etc.
13152
13153         * bus/services.c: implement a mapping from service names to lists
13154         of connections
13155
13156         * dbus/dbus-hash.c: add DBUS_HASH_POINTER
13157
13158         * dbus/dbus-threads.c (dbus_static_mutex_lock): add functions
13159         to use static mutexes for global data
13160
13161         * dbus/dbus-connection.c (dbus_connection_set_data): add new
13162         collection of functions to set/get application-specific data
13163         on the DBusConnection.
13164
13165 2003-01-04  Havoc Pennington  <hp@pobox.com>
13166
13167         * dbus/dbus-sysdeps.c (_dbus_sleep_milliseconds): new function
13168         (_dbus_poll): new function
13169
13170         * dbus/dbus-internals.h (_DBUS_STRUCT_OFFSET): new macro
13171         copied from GLib
13172
13173         * bus/loop.c: initial code for the daemon main loop
13174
13175 2003-01-04  Havoc Pennington  <hp@pobox.com>
13176
13177         * test/watch.c (error_handler): make it safe if the error handler
13178         is called multiple times (if we s/error handler/disconnect
13179         handler/ we should just guarantee it's called only once)
13180
13181         * dbus/dbus-transport.c (_dbus_transport_disconnect): call the
13182         error handler on disconnect (it's quite possible we should
13183         just change the error handler to a "disconnect handler," I'm
13184         not sure we have any other meaningful errors)
13185
13186         * configure.in: check for getpwnam_r
13187
13188         * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
13189         dbus/dbus-auth.c: add credentials support, add EXTERNAL auth
13190         mechanism as in SASL spec, using socket credentials
13191
13192         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): new function
13193         (_dbus_send_credentials_unix_socket): new function
13194
13195         * dbus/dbus-sysdeps.c (_dbus_accept_unix_socket): rename just
13196         dbus_accept()
13197         (_dbus_write): only check errno if <0 returned
13198         (_dbus_write_two): ditto
13199
13200 2003-01-02  Anders Carlsson  <andersca@codefactory.se>
13201
13202         * dbus/dbus-marshal.c: (_dbus_marshal_utf8_string),
13203         (_dbus_marshal_byte_array), (_dbus_demarshal_utf8_string),
13204         (_dbus_marshal_test):
13205         * dbus/dbus-marshal.h:
13206         Add _dbus_marshal_byte_array and rename _dbus_marshal_string
13207         to _dbus_marshal_utf8_string. Also fix some tests.
13208
13209 2002-12-28  Harri Porten  <porten@kde.org>
13210
13211         * configure.in: added check for C++ compiler and a very cheesy
13212         check for the Qt integration
13213
13214         * Makefile.am (SUBDIRS): compile qt subdir if support is enabled
13215
13216         * qt/Makefile.am: added
13217
13218         * qt/.cvsignore: added
13219
13220         * qt/dbus-qthread.cc, qt/dbus-qthread.cpp: renamed former to
13221         latter, added #ifdef QT_THREAD_SUPPORT guard.
13222
13223         * dbus/Makefile.am: added missing headers for make dist
13224
13225 2002-12-28  Kristian Rietveld  <kris@gtk.org>
13226
13227         * dbus/Makefile.am: fixup export-symbols-regex.
13228
13229 2002-12-27  Anders Carlsson  <andersca@codefactory.se>
13230
13231         * acinclude.m4: Add this file and put the
13232         PKG_CHECK_MODULE macro in it.
13233
13234 2002-12-27  Anders Carlsson  <andersca@codefactory.se>
13235
13236         * dbus/dbus-marshal.c: (_dbus_marshal_string),
13237         (_dbus_demarshal_double), (_dbus_demarshal_int32),
13238         (_dbus_demarshal_uint32), (_dbus_demarshal_string),
13239         (_dbus_marshal_test):
13240         Make the demarshalling routines align the pos argument.
13241         Add string marshalling tests and fix the obvious bugs
13242         discovered.
13243
13244 2002-12-26  Havoc Pennington  <hp@pobox.com>
13245
13246         * dbus/dbus-auth.c: fixes fixes fixes
13247
13248         * dbus/dbus-transport-unix.c: wire up support for
13249         encoding/decoding data on the wire
13250
13251         * dbus/dbus-auth.c (_dbus_auth_encode_data)
13252         (_dbus_auth_decode_data): append to target string
13253         instead of nuking it.
13254
13255 2002-12-26  Havoc Pennington  <hp@pobox.com>
13256
13257         * dbus/dbus-marshal.h (DBUS_COMPILER_BYTE_ORDER): #ifdef
13258         WORDS_BIGENDIAN then compiler byte order is DBUS_BIG_ENDIAN,
13259         doh
13260
13261         * dbus/dbus-marshal.c: Add macros to do int swapping in-place and
13262         avoid swap_bytes() overhead (ignoring possible assembly stuff for
13263         now). Main point is because I wanted unpack_uint32 to implement
13264         _dbus_verbose_bytes
13265         (_dbus_verbose_bytes): new function
13266
13267         * dbus/dbus-string.c (_dbus_string_validate_ascii): new function
13268
13269         * dbus/dbus-message.c (_dbus_message_loader_get_is_corrupted): add
13270         mechanism to handle a corrupt message stream
13271         (_dbus_message_loader_new): fix preallocation to only prealloc,
13272         not prelengthen
13273
13274         * dbus/dbus-string.c (_dbus_string_skip_blank): fix this function
13275         (_dbus_string_test): enhance tests for copy/move and fix the
13276         functions
13277
13278         * dbus/dbus-transport-unix.c: Hold references in more places to
13279         avoid reentrancy problems
13280
13281         * dbus/dbus-transport.c: ditto
13282
13283         * dbus/dbus-connection.c (dbus_connection_dispatch_message): don't
13284         leak reference count in no-message case
13285
13286         * test/watch.c (do_mainloop): handle adding/removing watches
13287         during iteration over the watches. Also, ref the connection/server
13288         stored on a watch, so we don't try to mangle a destroyed one.
13289
13290         * dbus/dbus-transport-unix.c (do_authentication): perform
13291         authentication
13292
13293         * dbus/dbus-auth.c (get_state): add a state
13294         AUTHENTICATED_WITH_UNUSED_BYTES and return it if required
13295         (_dbus_auth_get_unused_bytes): append the unused bytes
13296         to the passed in string, rather than prepend
13297
13298         * dbus/dbus-transport.c (_dbus_transport_init_base): create
13299         the auth conversation DBusAuth
13300
13301         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd)
13302         (_dbus_transport_new_for_domain_socket): when creating a
13303         transport, pass in whether it's a client-side or server-side
13304         transport so we know which DBusAuth to create
13305
13306 2002-12-03  Havoc Pennington  <hp@pobox.com>
13307
13308         * dbus/dbus-transport-unix.c (unix_finalize): finalize base
13309         _after_ finalizing the derived members
13310         (unix_connection_set): unref watch if we fail to add it
13311
13312         * dbus/dbus-connection.c (dbus_connection_unref): delete the
13313         transport first, so that the connection owned by the
13314         transport will be valid as the transport finalizes.
13315
13316         * dbus/dbus-transport-unix.c (unix_finalize): free the write_watch
13317         if necessary, and remove watches from the connection.
13318
13319         * dbus/dbus-watch.c (_dbus_watch_list_free): improve a comment
13320
13321 2002-12-26  Anders Carlsson  <andersca@codefactory.se>
13322
13323         * dbus/dbus-marshal.c: (_dbus_marshal_string),
13324         (_dbus_demarshal_double), (_dbus_demarshal_int32),
13325         (_dbus_demarshal_uint32), (_dbus_demarshal_string),
13326         (_dbus_marshal_test):
13327         * dbus/dbus-marshal.h:
13328         Add string marshal functions and have the demarshal functions
13329         return the new position.
13330
13331 2002-12-25  Havoc Pennington  <hp@pobox.com>
13332
13333         * doc/dbus-sasl-profile.txt: docs on the authentication protocol,
13334         it is a simple protocol that just maps directly to SASL.
13335
13336         * dbus/dbus-auth.h, dbus/dbus-auth.c: authentication protocol
13337         initial implementation, not actually used yet.
13338
13339         * dbus/dbus-string.c (_dbus_string_find): new function
13340         (_dbus_string_equal): new function
13341         (_dbus_string_base64_encode): new function
13342         (_dbus_string_base64_decode): new function
13343
13344 2002-12-25  Anders Carlsson  <andersca@codefactory.se>
13345
13346         * dbus/Makefile.am:
13347         * dbus/dbus-marshal.c: (swap_bytes), (_dbus_marshal_double),
13348         (_dbus_marshal_int32), (_dbus_marshal_uint32),
13349         (_dbus_demarshal_double), (_dbus_demarshal_int32),
13350         (_dbus_demarshal_uint32), (_dbus_marshal_test):
13351         * dbus/dbus-marshal.h:
13352         * dbus/dbus-protocol.h:
13353         * dbus/dbus-test.c: (main):
13354         * dbus/dbus-test.h:
13355         Add un-optimized marshalling/demarshalling routines.
13356
13357 2002-12-25  Harri Porten  <porten@kde.org>
13358
13359         * qt/dbus-qt.h: adjusted ctor and getter to KDE/Qt conventions
13360
13361 2002-12-24  Zack Rusin  <zack@kde.org>
13362
13363         * qt/dbus-qthread.cc: adding - integrates QMutex into Dbus
13364         * qt/dbus-qt.h: skeleton with two sample implemenatation of the
13365         main loop stuff
13366
13367 2002-12-24  Havoc Pennington  <hp@pobox.com>
13368
13369         * glib/dbus-gthread.c: fix include
13370
13371         * glib/dbus-glib.h: rename DBusMessageHandler for now.
13372         I think glib API needs to change, though, as you don't
13373         want to use DBusMessageFunction, you want to use the
13374         DBusMessageHandler object. Probably
13375         dbus_connection_open_with_g_main_loop()
13376         and dbus_connection_setup_g_main_loop() or something like that
13377         (but think of better names...) that just create a connection
13378         that has watch/timeout functions etc. already set up.
13379
13380         * dbus/dbus-connection.c
13381         (dbus_connection_send_message_with_reply): new function just to
13382         show how the message handler helps us deal with replies.
13383
13384         * dbus/dbus-list.c (_dbus_list_remove_last): new function
13385
13386         * dbus/dbus-string.c (_dbus_string_test): free a string that
13387         wasn't
13388
13389         * dbus/dbus-hash.c: use memory pools for the hash entries
13390         (rebuild_table): be more paranoid about overflow, and
13391         shrink table when we can
13392         (_dbus_hash_test): reduce number of sprintfs and write
13393         valid C89. Add tests for case where we grow and then
13394         shrink the hash table.
13395
13396         * dbus/dbus-mempool.h, dbus/dbus-mempool.c: memory pools
13397
13398         * dbus/dbus-connection.c (dbus_connection_register_handler)
13399         (dbus_connection_unregister_handler): new functions
13400
13401         * dbus/dbus-message.c (dbus_message_get_name): new
13402
13403         * dbus/dbus-list.c: fix docs typo
13404
13405         * dbus/dbus-message-handler.h, dbus/dbus-message-handler.c:
13406         an object representing a handler for messages.
13407
13408 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
13409
13410         * glib/dbus-glib.h:
13411         * glib/dbus-gthread.c: (dbus_gthread_init):
13412         Don't use the gdbus prefix for public functions.
13413
13414 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
13415
13416         * Makefile.am:
13417         * configure.in:
13418         Add GLib checks and fixup .pc files
13419
13420         * glib/Makefile.am:
13421         * glib/dbus-glib.h:
13422         * glib/dbus-gmain.c: (gdbus_connection_prepare),
13423         (gdbus_connection_check), (gdbus_connection_dispatch),
13424         (gdbus_add_connection_watch), (gdbus_remove_connection_watch),
13425         (dbus_connection_gsource_new):
13426         * glib/dbus-gthread.c: (dbus_gmutex_new), (dbus_gmutex_free),
13427         (dbus_gmutex_lock), (dbus_gmutex_unlock), (dbus_gthread_init):
13428         * glib/test-dbus-glib.c: (message_handler), (main):
13429         Add GLib support.
13430
13431 2002-12-15  Harri Porten  <porten@kde.org>
13432
13433         * autogen.sh: check for libtoolize before attempting to use it
13434
13435         * dbus/dbus-transport-unix.c: include <sys/time.h> for timeval
13436         struct.
13437
13438         * .cvsignore: ignore more stamp files
13439
13440         * dbus/dbus-watch.c (_dbus_watch_list_new): fixed doc error
13441
13442         * test/Makefile.am: added -I$(top_srcdir) to be able to compile
13443         without make install.
13444
13445 2002-12-15  Havoc Pennington  <hp@pobox.com>
13446
13447         * dbus/dbus-threads.c: add thread stubs that a higher library
13448         layer can fill in. e.g. the GLib wrapper might fill them in with
13449         GThread stuff. We still need to use this thread API to
13450         thread-safe-ize the library.
13451
13452 2002-12-12  Havoc Pennington  <hp@pobox.com>
13453
13454         * dbus/dbus-transport-unix.c, dbus/dbus-server-unix.c: use the
13455         below new interfaces and include fewer system headers.
13456
13457         * dbus/dbus-sysdeps.c (_dbus_read): new function
13458         (_dbus_write): new function
13459         (_dbus_write_two): new function
13460         (_dbus_connect_unix_socket): new function
13461         (_dbus_listen_unix_socket): new function
13462
13463         * dbus/dbus-message-internal.h: change interfaces to use
13464         DBusString
13465
13466 2002-12-11  Havoc Pennington  <hp@pobox.com>
13467
13468         * dbus/dbus-types.h: add dbus_unichar
13469
13470         * dbus/dbus-internals.c (_dbus_verbose): use _dbus_getenv
13471
13472         * dbus/dbus-connection.c (dbus_connection_send_message): return
13473         TRUE on success
13474
13475         * dbus/dbus-transport.c: include dbus-watch.h
13476
13477         * dbus/dbus-connection.c: include dbus-message-internal.h
13478
13479         * HACKING: add file with coding guidelines stuff.
13480
13481         * dbus/dbus-string.h, dbus/dbus-string.c: Encapsulate all string
13482         handling here, for security purposes (as in vsftpd). Not actually
13483         using this class yet.
13484
13485         * dbus/dbus-sysdeps.h, dbus/dbus-sysdeps.c: Encapsulate all
13486         system/libc usage here, as in vsftpd, for ease of auditing (and
13487         should also simplify portability). Haven't actually moved all the
13488         system/libc usage into here yet.
13489
13490 2002-11-25  Havoc Pennington  <hp@pobox.com>
13491
13492         * dbus/dbus-internals.c (_dbus_verbose): fix to not
13493         always print the first verbose message.
13494
13495 2002-11-24  Havoc Pennington  <hp@pobox.com>
13496
13497         * test/echo-client.c, test/echo-server.c: cheesy test
13498         clients.
13499
13500         * configure.in (AC_CHECK_FUNCS): check for writev
13501
13502         * dbus/dbus-message.c (_dbus_message_get_network_data): new
13503         function
13504
13505         * dbus/dbus-list.c (_dbus_list_foreach): new function
13506
13507         * dbus/dbus-internals.c (_dbus_verbose): new function
13508
13509         * dbus/dbus-server.c, dbus/dbus-server.h: public object
13510         representing a server that listens for connections.
13511
13512         * dbus/.cvsignore: create
13513
13514         * dbus/dbus-errors.h, dbus/dbus-errors.c:
13515         public API for reporting errors
13516
13517         * dbus/dbus-connection.h, dbus/dbus-connection.c:
13518         public object representing a connection that
13519         sends/receives messages. (Same object used for
13520         both client and server.)
13521
13522         * dbus/dbus-transport.h, dbus/dbus-transport.c:
13523         Basic abstraction for different kinds of stream
13524         that we might read/write messages from.
13525
13526 2002-11-23  Havoc Pennington  <hp@pobox.com>
13527
13528         * dbus/dbus-internals.h (_DBUS_INT_MAX): add _DBUS_INT_MIN
13529         _DBUS_INT_MAX
13530
13531         * dbus/dbus-test.c (main): add list test, and include
13532         dbus-test.h as intended
13533
13534         * dbus/dbus-hash.c (_dbus_hash_table_remove_string)
13535         (_dbus_hash_table_remove_int): return value indicates
13536         whether the entry existed to remove
13537
13538         * dbus/dbus-list.c: add linked list utility class,
13539         with docs and tests
13540
13541         * dbus/dbus-hash.c: add TODO item about shrinking the hash bucket
13542         array sometimes.
13543
13544 2002-11-23  Havoc Pennington  <hp@pobox.com>
13545
13546         * Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/
13547         DBUS_END_DECLS to nothing, that should fix this once and for all
13548
13549         * Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES
13550
13551         * dbus/dbus-message.c, dbus/dbus-hash.c:
13552         add some missing @brief
13553
13554 2002-11-23  Havoc Pennington  <hp@pobox.com>
13555
13556         * dbus/dbus-message.h: put semicolons after DEBUG_BEGIN_DECLS
13557         to avoid confusing Doxygen
13558
13559         * dbus/dbus-hash.c: @} not }@
13560
13561         * dbus/dbus-message.c (struct DBusMessage): split out
13562         internals docs
13563
13564 2002-11-23  Havoc Pennington  <hp@pobox.com>
13565
13566         * configure.in: pile on more warning flags if using gcc
13567
13568         * Doxyfile.in (EXTRACT_STATIC): set to NO, so we don't have
13569         to document static functions
13570
13571         * configure.in: add summary to end of configure so it
13572         looks nice and attractive
13573
13574         * dbus/dbus-hash.c: finish implementation and write unit
13575         tests and docs
13576
13577         * configure.in: add --enable-tests to enable unit tests
13578
13579         * dbus/dbus-test.c: test program to run unit tests
13580         for all files in dbus/*, initially runs a test for
13581         dbus-hash.c
13582
13583         * dbus/dbus-internals.h: file to hold some internal utility stuff
13584
13585 2002-11-22  Havoc Pennington  <hp@redhat.com>
13586
13587         * dbus/dbus-hash.c: copy in Tcl hash table, not yet
13588         "ported" away from Tcl
13589
13590         * dbus/dbus-types.h: header for types such as dbus_bool_t
13591
13592 2002-11-22  Havoc Pennington  <hp@redhat.com>
13593
13594         * dbus/dbus.h: fixups for doc warnings
13595
13596         * Doxyfile.in (FILE_PATTERNS): we need to scan .h to pick up
13597         macros
13598         (QUIET): make it quiet so we can see warnings
13599
13600         * dbus/dbus-memory.c: teach D-BUS to allocate and free memory
13601
13602 2002-11-22  Havoc Pennington  <hp@redhat.com>
13603
13604         * Makefile.am: include "Doxyfile" target in all-local
13605
13606         * configure.in: generate the Doxyfile
13607
13608         * Doxyfile.in: move Doxyfile here, so we can use
13609         configure to generate a Doxyfile with the right
13610         version number etc.
13611
13612 2002-11-22  Havoc Pennington  <hp@redhat.com>
13613
13614         * dbus/dbus-message.c: move inline docs into .c file
13615
13616         * Doxyfile (OUTPUT_DIRECTORY): move output to doc/api
13617         so all docs are under doc/
13618         (MAN_EXTENSION): generate man pages. Use extension
13619         ".3dbus" which matches ".3qt" on my system,
13620         I guess this is OK, I don't know really.
13621         (FILE_PATTERNS): look for .c files not .h, makes sense
13622         for plain C I think
13623
13624 2002-11-22  Havoc Pennington  <hp@pobox.com>
13625
13626         * Makefile.am (SUBDIRS): rename subdir "server" to "bus"
13627         because any app can be a server, and any app can be a client,
13628         the bus is a special kind of server.
13629
13630 Thu Nov 21 23:35:31 2002  Zack Rusin  <zack@kde.org>
13631
13632         * Doxyfile : adding. Still needs Makefile rules to be generated
13633         automatically (just run "doxygen" in the toplevel dir for now to
13634         generate docs)
13635
13636         * dbus/dbus-message.h : Adding sample docs (javadoc since
13637         resembles gtk-doc a little more)
13638
13639         * dbus/dbus.h : Adding sample docs
13640
13641 2002-11-21  Havoc Pennington  <hp@redhat.com>
13642
13643         * dbus/Makefile.am (INCLUDES): define DBUS_COMPILATION
13644         so we can allow ourselves to include files directly,
13645         instead of having to use dbus.h
13646
13647         * dbus/dbus.h: fill in
13648
13649         * dbus/dbus-message.h: sketch out a sample header file.
13650         Include griping if you include it directly instead of
13651         via dbus.h
13652
13653         * dbus/dbus-macros.h: new file with macros for extern "C",
13654         TRUE/FALSE, NULL, etc.
13655
13656         * doc/file-boilerplate.c: put include guards in here
13657
13658 2002-11-21  Havoc Pennington  <hp@redhat.com>
13659
13660         * doc/file-boilerplate.c: include both AFL and GPL boilerplate.
13661
13662         * COPYING: include the GPL as well, and license code
13663         under both AFL and GPL.
13664
13665 2002-11-21  Havoc Pennington  <hp@redhat.com>
13666
13667         * acconfig.h: get rid of this
13668
13669         * autogen.sh (run_configure): add --no-configure option
13670
13671         * configure.in: remove AC_ARG_PROGRAM to make
13672         autoconf complain less. add AC_PREREQ.
13673         add AC_DEFINE third arg.
13674
13675 2002-11-21  Anders Carlsson  <andersca@codefactory.se>
13676
13677         * doc/Makefile.am:
13678         Fix references so we can distcheck.
13679
13680 2002-11-21  Havoc Pennington  <hp@redhat.com>
13681
13682         * Initial module creation
13683