2003-01-25 Anders Carlsson <andersca@codefactory.se>
[platform/upstream/dbus.git] / ChangeLog
1 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
2
3         * dbus/dbus-list.c: (alloc_link), (free_link):
4         Use a memory pool for the links.
5         
6 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
7
8         * bus/connection.c: (bus_connection_foreach):
9         * bus/connection.h:
10         Add new bus_connection_foreach function.
11         
12         * bus/driver.c: (send_one_message), (bus_driver_broadcast_message):
13         Add function that broadcasts a message to all clients.
14         
15         (bus_driver_send_service_created), (bus_driver_handle_hello),
16         (bus_driver_send_welcome_message),
17         (bus_driver_handle_list_services), (bus_driver_message_handler):
18         Implement functions that take care of listing services, and notifying
19         clients when new services are created.
20         
21         * bus/services.c: (bus_services_list):
22         * bus/services.h:
23         Add new function that returns an array of strings with the currently
24         registered services.
25         
26         * glib/dbus-glib.h:
27         * glib/dbus-gmain.c:
28         Update copyright year.
29         
30 2003-01-25  Anders Carlsson  <andersca@codefactory.se>
31
32         * dbus/dbus-connection.c: (dbus_connection_send_message):
33         Unlock the message in case it was sent earlier.
34         
35         (dbus_connection_send_message_with_reply_and_block):
36         Remove the reply message from the list.
37         
38         * dbus/dbus-marshal.c: (_dbus_demarshal_string_array):
39         Set array_len and new_pos correctly.
40         
41         (_dbus_marshal_test):
42         Remove debug output.
43         
44         * dbus/dbus-message-internal.h:
45         * dbus/dbus-message.c: (_dbus_message_get_reply_serial):
46         New function that returns the reply serial.
47         
48         (_dbus_message_unlock):
49         New function that unlocks a message and resets its header.
50
51         (dbus_message_append_string_array), 
52         (dbus_message_get_fields_valist),
53         (dbus_message_iter_get_field_type),
54         (dbus_message_iter_get_string_array),   
55         (dbus_message_get_fields),      
56         (dbus_message_append_fields_valist):
57         Handle string arrays.
58         
59         (dbus_message_set_sender):
60         Make this function public since the bus daemon needs it.
61         
62         (decode_header_data):
63         Set the reply serial to -1 initially.
64
65         * dbus/dbus-message.h:
66         Add dbus_message_set_sender.    
67
68 2003-01-24  Havoc Pennington  <hp@pobox.com>
69
70         * doc/dbus-specification.sgml: add some stuff
71
72 2003-01-22  Havoc Pennington  <hp@pobox.com>
73
74         * doc/dbus-specification.sgml: Start to document the protocol.
75
76 2003-01-22  Havoc Pennington  <hp@pobox.com>
77
78         * dbus/dbus-connection.c
79         (dbus_connection_send_message_with_reply_and_block): add some @todo
80
81         * bus/driver.c (bus_driver_add_connection): add a FIXME about memleak
82
83 2003-01-21  Havoc Pennington  <hp@pobox.com>
84
85         (patch untested because can't compile)
86         
87         * bus/driver.c (create_unique_client_name): make this function
88         never recycle client names. Also, caller should initialize 
89         the DBusString.
90
91         * dbus/dbus-sysdeps.c (_dbus_get_current_time): new function
92
93 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
94
95         * dbus/dbus-marshal.c: (_dbus_marshal_double),
96         (_dbus_marshal_int32), (_dbus_marshal_uint32),
97         (_dbus_marshal_int32_array), (_dbus_marshal_uint32_array),
98         (_dbus_marshal_double_array), (_dbus_marshal_string_array),
99         (_dbus_demarshal_int32_array), (_dbus_demarshal_uint32_array),
100         (_dbus_demarshal_double_array), (_dbus_demarshal_string_array),
101         (_dbus_marshal_get_field_end_pos), (_dbus_marshal_test):
102         * dbus/dbus-marshal.h:
103         * dbus/dbus-protocol.h:
104         Add support for marshalling and demarshalling integer, double
105         and string arrays.
106         
107 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
108
109         * bus/Makefile.am:
110         Add driver.[ch]
111         
112         * bus/connection.c: (connection_disconnect_handler):
113         Remove the connection from the bus driver's list.
114         
115         (connection_watch_callback): Dispatch messages.
116
117         (free_connection_data): Free connection name.
118         
119         (bus_connection_setup): Add connection to the bus driver's list.
120         (bus_connection_remove_owned_service): 
121         (bus_connection_set_name), (bus_connection_get_name):
122         Add functions for setting and getting the connection's name.
123         
124         * bus/connection.h:
125         Add function headers.
126         
127         * bus/driver.c: (create_unique_client_name),
128         (bus_driver_handle_hello_message),
129         (bus_driver_send_welcome_message), (bus_driver_message_handler),
130         (bus_driver_add_connection), (bus_driver_remove_connection):
131         * bus/driver.h:
132         * bus/main.c:
133         * bus/services.c: (bus_service_free):
134         * bus/services.h:
135         New file that handles communication and registreation with the bus
136         itself. 
137         
138 2003-01-21  Anders Carlsson  <andersca@codefactory.se>
139
140         * dbus/dbus-connection.c: (dbus_connection_send_message):
141         Add a new client_serial parameter.
142         
143         (dbus_connection_send_message_with_reply):
144         Remove a @todo since we've implemented the blocking function.
145         
146         (dbus_connection_send_message_with_reply_and_block):
147         New function that sends a message and waits for a reply and
148         then returns the reply.
149         
150         * dbus/dbus-connection.h:
151         Add new functions.
152         
153         * dbus/dbus-errors.c: (dbus_result_to_string):
154         * dbus/dbus-errors.h:
155         Add new DBUS_RESULT.
156         
157         * dbus/dbus-message-internal.h:
158         * dbus/dbus-message.c: (_dbus_message_get_reply_serial),
159         (_dbus_message_set_sender), (dbus_message_write_header),
160         (dbus_message_new_reply), (decode_header_data),
161         (_dbus_message_loader_return_buffer), (_dbus_message_test):
162         * dbus/dbus-message.h:
163         Add new functions that set the reply serial and sender.
164         Also marshal and demarshal them correctly and add test.
165         
166         * dbus/dbus-protocol.h:
167         Add new DBUS_MESSAGE_TYPE_SENDER.
168         
169         * glib/dbus-glib.h:
170         * glib/dbus-gmain.c: (watch_callback), (free_callback_data),
171         (add_watch), (remove_watch), (add_timeout), (remove_timeout),
172         (dbus_connection_hookup_with_g_main):
173         * glib/test-dbus-glib.c: (main):
174         Rewrite to use GIOChannel and remove the GSource crack.
175         
176         * test/echo-client.c: (main):
177         * test/watch.c: (check_messages):
178         Update for changed APIs
179         
180 2003-01-19  Anders Carlsson  <andersca@codefactory.se>
181
182         * dbus/Makefile.am: Add dbus-timeout.[cħ]
183         
184         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport):
185         Create a DBusTimeoutList.       
186         (dbus_connection_set_timeout_functions): Add new function to
187         set timeout callbacks
188         
189         * dbus/dbus-connection.h: Add public DBusTimeout API.
190         
191         * dbus/dbus-message.c: (dbus_message_get_service):
192         * dbus/dbus-message.h:  New function.
193
194         * dbus/dbus-server.c: Fix small doc typo.
195         
196         * dbus/dbus-timeout.[ch]: New files for mainloop timeouts.
197
198 2003-01-19  Anders Carlsson  <andersca@codefactory.se>
199
200         * dbus/dbus-string.c (_dbus_string_move_len): Don't delete all
201         of the string, just as long as specified.
202
203 2003-01-19  Havoc Pennington  <hp@pobox.com>
204
205         * dbus/dbus-connection.c (dbus_connection_get_is_authenticated):
206         new function
207
208         * dbus/dbus-server.c (dbus_server_set_max_connections)
209         (dbus_server_get_max_connections, dbus_server_get_n_connections):
210         keep track of current number of connections, and add API for
211         setting a max (but haven't implemented enforcing the max yet)
212
213 2003-01-18  Havoc Pennington  <hp@pobox.com>
214
215         * dbus/dbus-transport-unix.c (unix_do_iteration): only do the
216         reading/writing if read_watch != NULL or write_watch != NULL.
217
218         * dbus/dbus-message.c (_dbus_message_loader_return_buffer): fix
219         the message loader code to actually load message->header and
220         message->body into the newly-created message.
221
222         * dbus/dbus-transport-unix.c (check_write_watch): fix a mem leak
223         in OOM case
224
225         * dbus/dbus-connection.c (dbus_connection_set_max_message_size) 
226         (dbus_connection_get_max_message_size) 
227         (dbus_connection_set_max_live_messages_size) 
228         (dbus_connection_get_max_live_messages_size): implement some
229         resource limitation functions
230
231         * dbus/dbus-resources.c: new file implementing some of the
232         resource limits stuff
233
234         * dbus/dbus-message.c (dbus_message_iter_get_byte_array): add
235         missing docs, add @todo to handle OOM etc.
236
237         * dbus/dbus-marshal.c (_dbus_demarshal_byte_array): add missing
238         docs
239         
240 2003-01-18  Havoc Pennington  <hp@pobox.com>
241
242         * dbus/dbus-connection.c (dbus_connection_unref): disconnect the 
243         connection if it hasn't been already.
244
245         * dbus/dbus-connection.h: kill off the idea of an ErrorFunction,
246         replace with DisconnectFunction.
247
248 2003-01-18  Havoc Pennington  <hp@pobox.com>
249
250         Building --disable-verbose-mode --disable-asserts --disable-tests
251         cuts the library from 112K to 45K or so
252         
253         * configure.in: check for varargs macro support, 
254         add --enable-verbose-mode, --enable-asserts. 
255
256         * dbus/dbus-internals.h (_dbus_assert): support
257         DBUS_DISABLE_ASSERT
258         (_dbus_verbose): support DBUS_ENABLE_VERBOSE_MODE
259
260 2003-01-18  Havoc Pennington  <hp@pobox.com>
261
262         * dbus/dbus-test.c: include config.h so that tests actually run
263
264         * dbus/dbus-string.c: add assertions that stuff is 8-byte aligned,
265         so the failure mode when that assumption fails will be plenty
266         obvious.
267
268 2003-01-18  Havoc Pennington  <hp@pobox.com>
269
270         * configure.in: default --enable-tests to $USE_MAINTAINER_MODE
271
272         * dbus/Makefile.am: fix it up so dubs-test-main.c is included in
273         the distribution
274
275         * test/Makefile.am: don't use special variable "TESTS" for echo-*
276         since we don't want to use those in make check
277
278 2003-01-15  Havoc Pennington  <hp@redhat.com>
279
280         Release 0.2
281         
282         * NEWS: update
283
284 2003-01-15  Havoc Pennington  <hp@redhat.com>
285
286         * test/Makefile.am: fix so that test source code ends up in the
287         distribution on make distcheck
288
289 2003-01-15  Havoc Pennington  <hp@redhat.com>
290
291         Release 0.1.
292         
293         * NEWS: update  
294
295 2003-01-15  Havoc Pennington  <hp@redhat.com>
296
297         * dbus/dbus-test.c (dbus_internal_symbol_do_not_use_run_tests):
298         fix build when --disable-tests
299
300         * Makefile.am (EXTRA_DIST): put HACKING in here
301
302         * HACKING: document procedure for making a tarball release.
303
304 2003-01-14  Anders Carlsson  <andersca@codefactory.se>
305
306         * bus/connection.c: (connection_error_handler),
307         (bus_connection_setup):
308         * bus/main.c: (main):
309         Make sure that the DBusConnectionData struct is NULLed
310         out to prevent a segfault.
311         
312         * dbus/dbus-errors.c: (dbus_result_to_string):
313         * dbus/dbus-errors.h:
314         * dbus/dbus-message.c: (dbus_message_get_fields),
315         (dbus_message_get_fields_valist), (_dbus_message_test):
316         * dbus/dbus-message.h:
317         Make dbus_message_get_fields return a result code so we can
318         track invalid fields as well as oom.
319         
320 2003-01-11  Havoc Pennington  <hp@pobox.com>
321
322         * configure.in: change --enable-test/--enable-ansi action-if-given
323         to enable_foo=$enableval instead of enable_foo=yes
324
325 2003-01-08  Havoc Pennington  <hp@pobox.com>
326
327         * dbus/dbus-string.c (_dbus_string_align_length): new function
328
329         * dbus/dbus-test-main.c: move main() for test app here
330         * dbus/dbus-test.c
331         (dbus_internal_symbol_do_not_use_run_tests): we have to export a
332         symbol to run tests, because dbus-test isn't in the main 
333         library
334
335         Code review nitpicks.
336         
337         * dbus/dbus-message.c (dbus_message_write_header): add newlines
338         for people with narrow emacs ;-). Assert client_serial was filled
339         in. Assert message->name != NULL.
340         (dbus_message_append_fields): have "first_field_type" arg separate
341         from va list, needed for C++ binding that also uses varargs IIRC
342         and helps with type safety
343         (dbus_message_new): add @todo about using DBusString to store
344         service/name internally
345         (dbus_message_new): don't leak ->service and ->name on OOM later
346         in the function
347         (dbus_message_unref): free the service name
348         (dbus_message_get_fields): same change to varargs
349         i.e. first_field_type
350         (_dbus_message_loader_return_buffer): assert that the message data
351         is aligned (if not it's a bug in our code). Put in verbose griping
352         about why we set corrupted = TRUE.
353         (decode_header_data): add FIXME that char* is evil.  Was going to
354         add FIXME about evil locale-specific string.h strncmp, but just
355         switched to wacky string-as-uint32 optimization. Move check for
356         "no room for field name" above get_const_data_len() to avoid
357         assertion failure in get_const_data_len if we have trailing 2
358         bytes or the like. Check for service and name fields being
359         provided twice. Don't leak service/name on error. Require field
360         names to be aligned to 4 bytes.
361
362         * dbus/dbus-marshal.c: move byte swap stuff to header
363         (_dbus_pack_int32): uscore-prefix
364         (_dbus_unpack_int32): uscore-prefix
365         (_dbus_unpack_uint32): export
366         (_dbus_demarshal_string): add @todo complaining about use of
367         memcpy()
368         (_dbus_marshal_get_field_end_pos): add @todo about bad error
369         handling allowing corrupt data to go unchecked
370
371 2003-01-08  Havoc Pennington  <hp@redhat.com>
372
373         * dbus/dbus-transport-unix.c (unix_do_iteration): add read/write 
374         to the select() as needed for authentication. (should be using
375         _dbus_poll() not select, but for another day)
376
377         * dbus/dbus.h: include dbus/dbus-protocol.h
378
379 2003-01-08  Anders Carlsson  <andersca@codefactory.se>
380
381         * dbus/Makefile.am (dbusinclude_HEADERS): Install
382         dbus-connection.h
383
384 2003-01-08  Anders Carlsson  <andersca@codefactory.se>
385
386         * dbus/dbus-internals.c: (_dbus_type_to_string):
387         New function that returns a string describing a type.
388         
389         * dbus/dbus-marshal.c: (_dbus_demarshal_byte_array):
390         * dbus/dbus-marshal.h:
391         * dbus/dbus-message.c: (dbus_message_get_fields_valist),
392         (dbus_message_iter_get_field_type), (dbus_message_iter_get_double),
393         (dbus_message_iter_get_byte_array):
394         * dbus/dbus-message.h:
395         Add new convenience functions for appending and getting message fields.
396         Also add demarshalling routines for byte arrays.
397
398 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
399
400         * dbus/dbus-connection-internal.h:
401         * dbus/dbus-connection.c: (_dbus_connection_new_for_transport),
402         (_dbus_connection_get_next_client_serial),
403         (dbus_connection_send_message):
404         * dbus/dbus-internals.h:
405         * dbus/dbus-marshal.c: (unpack_uint32), (dbus_unpack_int32),
406         (dbus_pack_int32), (_dbus_marshal_double), (_dbus_marshal_int32),
407         (_dbus_marshal_uint32), (_dbus_demarshal_double),
408         (_dbus_demarshal_int32), (_dbus_demarshal_uint32),
409         (_dbus_demarshal_string), (_dbus_marshal_get_field_end_pos),
410         (_dbus_verbose_bytes), (_dbus_marshal_test):
411         * dbus/dbus-marshal.h:
412         * dbus/dbus-message-internal.h:
413         * dbus/dbus-message.c: (_dbus_message_set_client_serial),
414         (dbus_message_write_header), (_dbus_message_lock),
415         (dbus_message_new), (dbus_message_ref), (dbus_message_unref),
416         (dbus_message_get_name), (dbus_message_append_int32),
417         (dbus_message_append_uint32), (dbus_message_append_double),
418         (dbus_message_append_string), (dbus_message_append_byte_array),
419         (dbus_message_get_fields_iter), (dbus_message_iter_ref),
420         (dbus_message_iter_unref), (dbus_message_iter_has_next),
421         (dbus_message_iter_next), (dbus_message_iter_get_field_type),
422         (dbus_message_iter_get_string), (dbus_message_iter_get_int32),
423         (dbus_message_iter_get_uint32), (dbus_message_iter_get_double),
424         (decode_header_data), (_dbus_message_loader_return_buffer),
425         (message_iter_test), (_dbus_message_test):
426         * dbus/dbus-message.h:
427         * dbus/dbus-protocol.h:
428         * dbus/dbus-test.c: (main):
429         * dbus/dbus-test.h:
430         * glib/test-dbus-glib.c: (message_handler), (main):
431         * test/echo-client.c: (main):
432         * test/watch.c: (check_messages):
433         Make messages sendable and receivable for real.
434         
435 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
436
437         * dbus/dbus-marshal.c: (_dbus_marshal_double),
438         (_dbus_marshal_string), (_dbus_marshal_byte_array):
439         * dbus/dbus-message.c: (dbus_message_append_int32),
440         (dbus_message_append_uint32), (dbus_message_append_double),
441         (dbus_message_append_string), (dbus_message_append_byte_array):
442         Handle OOM restoration.
443         
444 2003-01-07  Anders Carlsson  <andersca@codefactory.se>
445
446         * dbus/dbus-marshal.c: (_dbus_marshal_string),
447         (_dbus_demarshal_string), (_dbus_marshal_test):
448         * dbus/dbus-marshal.h:
449         * dbus/dbus-message.c: (dbus_message_get_name),
450         Document these functions.
451         
452         (dbus_message_append_int32), (dbus_message_append_uint32),
453         (dbus_message_append_double), (dbus_message_append_string),
454         (dbus_message_append_byte_array):
455         * dbus/dbus-message.h:
456         Add functions for adding message fields of different types.
457         
458         * dbus/dbus-protocol.h:
459         Add the different types.
460
461 2003-01-05  Havoc Pennington  <hp@pobox.com>
462
463         * bus/connection.c: implement routines for handling connections,
464         first thing is keeping a list of owned services on each connection
465         and setting up watches etc.
466
467         * bus/services.c: implement a mapping from service names to lists
468         of connections
469
470         * dbus/dbus-hash.c: add DBUS_HASH_POINTER
471
472         * dbus/dbus-threads.c (dbus_static_mutex_lock): add functions
473         to use static mutexes for global data
474
475         * dbus/dbus-connection.c (dbus_connection_set_data): add new
476         collection of functions to set/get application-specific data
477         on the DBusConnection.
478
479 2003-01-04  Havoc Pennington  <hp@pobox.com>
480
481         * dbus/dbus-sysdeps.c (_dbus_sleep_milliseconds): new function
482         (_dbus_poll): new function
483
484         * dbus/dbus-internals.h (_DBUS_STRUCT_OFFSET): new macro
485         copied from GLib
486
487         * bus/loop.c: initial code for the daemon main loop
488
489 2003-01-04  Havoc Pennington  <hp@pobox.com>
490
491         * test/watch.c (error_handler): make it safe if the error handler 
492         is called multiple times (if we s/error handler/disconnect
493         handler/ we should just guarantee it's called only once)
494
495         * dbus/dbus-transport.c (_dbus_transport_disconnect): call the
496         error handler on disconnect (it's quite possible we should
497         just change the error handler to a "disconnect handler," I'm 
498         not sure we have any other meaningful errors)
499
500         * configure.in: check for getpwnam_r
501
502         * dbus/dbus-transport.c, dbus/dbus-transport-unix.c,
503         dbus/dbus-auth.c: add credentials support, add EXTERNAL auth
504         mechanism as in SASL spec, using socket credentials
505
506         * dbus/dbus-sysdeps.c (_dbus_read_credentials_unix_socket): new function
507         (_dbus_send_credentials_unix_socket): new function
508
509         * dbus/dbus-sysdeps.c (_dbus_accept_unix_socket): rename just
510         dbus_accept()
511         (_dbus_write): only check errno if <0 returned
512         (_dbus_write_two): ditto
513
514 2003-01-02  Anders Carlsson  <andersca@codefactory.se>
515
516         * dbus/dbus-marshal.c: (_dbus_marshal_utf8_string),
517         (_dbus_marshal_byte_array), (_dbus_demarshal_utf8_string),
518         (_dbus_marshal_test):
519         * dbus/dbus-marshal.h:
520         Add _dbus_marshal_byte_array and rename _dbus_marshal_string
521         to _dbus_marshal_utf8_string. Also fix some tests.
522         
523 2002-12-28  Harri Porten  <porten@kde.org>
524
525         * configure.in: added check for C++ compiler and a very cheesy
526         check for the Qt integration
527
528         * Makefile.am (SUBDIRS): compile qt subdir if support is enabled
529
530         * qt/Makefile.am: added 
531
532         * qt/.cvsignore: added  
533
534         * qt/dbus-qthread.cc, qt/dbus-qthread.cpp: renamed former to
535         latter, added #ifdef QT_THREAD_SUPPORT guard.
536
537         * dbus/Makefile.am: added missing headers for make dist
538
539 2002-12-28  Kristian Rietveld  <kris@gtk.org>
540
541         * dbus/Makefile.am: fixup export-symbols-regex.
542
543 2002-12-27  Anders Carlsson  <andersca@codefactory.se>
544
545         * acinclude.m4: Add this file and put the 
546         PKG_CHECK_MODULE macro in it.
547
548 2002-12-27  Anders Carlsson  <andersca@codefactory.se>
549
550         * dbus/dbus-marshal.c: (_dbus_marshal_string),
551         (_dbus_demarshal_double), (_dbus_demarshal_int32),
552         (_dbus_demarshal_uint32), (_dbus_demarshal_string),
553         (_dbus_marshal_test):
554         Make the demarshalling routines align the pos argument.
555         Add string marshalling tests and fix the obvious bugs 
556         discovered.
557         
558 2002-12-26  Havoc Pennington  <hp@pobox.com>
559
560         * dbus/dbus-auth.c: fixes fixes fixes
561
562         * dbus/dbus-transport-unix.c: wire up support for
563         encoding/decoding data on the wire
564
565         * dbus/dbus-auth.c (_dbus_auth_encode_data) 
566         (_dbus_auth_decode_data): append to target string 
567         instead of nuking it.
568
569 2002-12-26  Havoc Pennington  <hp@pobox.com>
570
571         * dbus/dbus-marshal.h (DBUS_COMPILER_BYTE_ORDER): #ifdef
572         WORDS_BIGENDIAN then compiler byte order is DBUS_BIG_ENDIAN,
573         doh
574
575         * dbus/dbus-marshal.c: Add macros to do int swapping in-place and
576         avoid swap_bytes() overhead (ignoring possible assembly stuff for 
577         now). Main point is because I wanted unpack_uint32 to implement
578         _dbus_verbose_bytes
579         (_dbus_verbose_bytes): new function
580
581         * dbus/dbus-string.c (_dbus_string_validate_ascii): new function
582
583         * dbus/dbus-message.c (_dbus_message_loader_get_is_corrupted): add
584         mechanism to handle a corrupt message stream
585         (_dbus_message_loader_new): fix preallocation to only prealloc, 
586         not prelengthen
587         
588         * dbus/dbus-string.c (_dbus_string_skip_blank): fix this function
589         (_dbus_string_test): enhance tests for copy/move and fix the
590         functions
591
592         * dbus/dbus-transport-unix.c: Hold references in more places to 
593         avoid reentrancy problems
594
595         * dbus/dbus-transport.c: ditto
596
597         * dbus/dbus-connection.c (dbus_connection_dispatch_message): don't
598         leak reference count in no-message case
599
600         * test/watch.c (do_mainloop): handle adding/removing watches
601         during iteration over the watches. Also, ref the connection/server
602         stored on a watch, so we don't try to mangle a destroyed one.
603
604         * dbus/dbus-transport-unix.c (do_authentication): perform
605         authentication
606
607         * dbus/dbus-auth.c (get_state): add a state
608         AUTHENTICATED_WITH_UNUSED_BYTES and return it if required
609         (_dbus_auth_get_unused_bytes): append the unused bytes
610         to the passed in string, rather than prepend
611
612         * dbus/dbus-transport.c (_dbus_transport_init_base): create 
613         the auth conversation DBusAuth
614
615         * dbus/dbus-transport-unix.c (_dbus_transport_new_for_fd)
616         (_dbus_transport_new_for_domain_socket): when creating a
617         transport, pass in whether it's a client-side or server-side
618         transport so we know which DBusAuth to create
619
620 2002-12-03  Havoc Pennington  <hp@pobox.com>
621
622         * dbus/dbus-transport-unix.c (unix_finalize): finalize base
623         _after_ finalizing the derived members
624         (unix_connection_set): unref watch if we fail to add it
625
626         * dbus/dbus-connection.c (dbus_connection_unref): delete the
627         transport first, so that the connection owned by the 
628         transport will be valid as the transport finalizes.
629
630         * dbus/dbus-transport-unix.c (unix_finalize): free the write_watch
631         if necessary, and remove watches from the connection.
632         
633         * dbus/dbus-watch.c (_dbus_watch_list_free): improve a comment
634         
635 2002-12-26  Anders Carlsson  <andersca@codefactory.se>
636
637         * dbus/dbus-marshal.c: (_dbus_marshal_string),
638         (_dbus_demarshal_double), (_dbus_demarshal_int32),
639         (_dbus_demarshal_uint32), (_dbus_demarshal_string),
640         (_dbus_marshal_test):
641         * dbus/dbus-marshal.h:
642         Add string marshal functions and have the demarshal functions
643         return the new position.
644         
645 2002-12-25  Havoc Pennington  <hp@pobox.com>
646
647         * doc/dbus-sasl-profile.txt: docs on the authentication protocol, 
648         it is a simple protocol that just maps directly to SASL.
649
650         * dbus/dbus-auth.h, dbus/dbus-auth.c: authentication protocol
651         initial implementation, not actually used yet.
652         
653         * dbus/dbus-string.c (_dbus_string_find): new function
654         (_dbus_string_equal): new function
655         (_dbus_string_base64_encode): new function
656         (_dbus_string_base64_decode): new function
657
658 2002-12-25  Anders Carlsson  <andersca@codefactory.se>
659
660         * dbus/Makefile.am:
661         * dbus/dbus-marshal.c: (swap_bytes), (_dbus_marshal_double),
662         (_dbus_marshal_int32), (_dbus_marshal_uint32),
663         (_dbus_demarshal_double), (_dbus_demarshal_int32),
664         (_dbus_demarshal_uint32), (_dbus_marshal_test):
665         * dbus/dbus-marshal.h:
666         * dbus/dbus-protocol.h:
667         * dbus/dbus-test.c: (main):
668         * dbus/dbus-test.h:
669         Add un-optimized marshalling/demarshalling routines.
670         
671 2002-12-25  Harri Porten  <porten@kde.org>
672
673         * qt/dbus-qt.h: adjusted ctor and getter to KDE/Qt conventions
674
675 2002-12-24  Zack Rusin  <zack@kde.org>
676
677         * qt/dbus-qthread.cc: adding - integrates QMutex into Dbus
678         * qt/dbus-qt.h: skeleton with two sample implemenatation of the
679         main loop stuff
680
681 2002-12-24  Havoc Pennington  <hp@pobox.com>
682
683         * glib/dbus-gthread.c: fix include
684
685         * glib/dbus-glib.h: rename DBusMessageHandler for now. 
686         I think glib API needs to change, though, as you don't 
687         want to use DBusMessageFunction, you want to use the 
688         DBusMessageHandler object. Probably 
689         dbus_connection_open_with_g_main_loop()
690         and dbus_connection_setup_g_main_loop() or something like that
691         (but think of better names...) that just create a connection 
692         that has watch/timeout functions etc. already set up.
693
694         * dbus/dbus-connection.c
695         (dbus_connection_send_message_with_reply): new function just to 
696         show how the message handler helps us deal with replies.
697
698         * dbus/dbus-list.c (_dbus_list_remove_last): new function
699
700         * dbus/dbus-string.c (_dbus_string_test): free a string that
701         wasn't
702
703         * dbus/dbus-hash.c: use memory pools for the hash entries
704         (rebuild_table): be more paranoid about overflow, and 
705         shrink table when we can
706         (_dbus_hash_test): reduce number of sprintfs and write
707         valid C89. Add tests for case where we grow and then 
708         shrink the hash table.
709
710         * dbus/dbus-mempool.h, dbus/dbus-mempool.c: memory pools
711
712         * dbus/dbus-connection.c (dbus_connection_register_handler) 
713         (dbus_connection_unregister_handler): new functions
714
715         * dbus/dbus-message.c (dbus_message_get_name): new
716
717         * dbus/dbus-list.c: fix docs typo
718
719         * dbus/dbus-message-handler.h, dbus/dbus-message-handler.c:
720         an object representing a handler for messages.
721
722 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
723
724         * glib/dbus-glib.h:
725         * glib/dbus-gthread.c: (dbus_gthread_init):
726         Don't use the gdbus prefix for public functions.
727         
728 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
729
730         * Makefile.am:
731         * configure.in:
732         Add GLib checks and fixup .pc files
733         
734         * glib/Makefile.am:
735         * glib/dbus-glib.h:
736         * glib/dbus-gmain.c: (gdbus_connection_prepare),
737         (gdbus_connection_check), (gdbus_connection_dispatch),
738         (gdbus_add_connection_watch), (gdbus_remove_connection_watch),
739         (dbus_connection_gsource_new):
740         * glib/dbus-gthread.c: (dbus_gmutex_new), (dbus_gmutex_free),
741         (dbus_gmutex_lock), (dbus_gmutex_unlock), (dbus_gthread_init):
742         * glib/test-dbus-glib.c: (message_handler), (main):
743         Add GLib support.
744         
745 2002-12-15  Harri Porten  <porten@kde.org>
746
747         * autogen.sh: check for libtoolize before attempting to use it 
748         
749         * dbus/dbus-transport-unix.c: include <sys/time.h> for timeval
750         struct.
751         
752         * .cvsignore: ignore more stamp files
753
754         * dbus/dbus-watch.c (_dbus_watch_list_new): fixed doc error
755
756         * test/Makefile.am: added -I$(top_srcdir) to be able to compile
757         without make install.
758
759 2002-12-15  Havoc Pennington  <hp@pobox.com>
760
761         * dbus/dbus-threads.c: add thread stubs that a higher library
762         layer can fill in. e.g. the GLib wrapper might fill them in with
763         GThread stuff. We still need to use this thread API to
764         thread-safe-ize the library.
765
766 2002-12-12  Havoc Pennington  <hp@pobox.com>
767
768         * dbus/dbus-transport-unix.c, dbus/dbus-server-unix.c: use the
769         below new interfaces and include fewer system headers.
770
771         * dbus/dbus-sysdeps.c (_dbus_read): new function
772         (_dbus_write): new function
773         (_dbus_write_two): new function
774         (_dbus_connect_unix_socket): new function
775         (_dbus_listen_unix_socket): new function
776
777         * dbus/dbus-message-internal.h: change interfaces to use
778         DBusString
779
780 2002-12-11  Havoc Pennington  <hp@pobox.com>
781
782         * dbus/dbus-types.h: add dbus_unichar
783
784         * dbus/dbus-internals.c (_dbus_verbose): use _dbus_getenv
785
786         * dbus/dbus-connection.c (dbus_connection_send_message): return
787         TRUE on success
788
789         * dbus/dbus-transport.c: include dbus-watch.h   
790
791         * dbus/dbus-connection.c: include dbus-message-internal.h
792
793         * HACKING: add file with coding guidelines stuff.
794
795         * dbus/dbus-string.h, dbus/dbus-string.c: Encapsulate all string
796         handling here, for security purposes (as in vsftpd). Not actually
797         using this class yet.
798
799         * dbus/dbus-sysdeps.h, dbus/dbus-sysdeps.c: Encapsulate all
800         system/libc usage here, as in vsftpd, for ease of auditing (and
801         should also simplify portability). Haven't actually moved all the
802         system/libc usage into here yet.
803         
804 2002-11-25  Havoc Pennington  <hp@pobox.com>
805
806         * dbus/dbus-internals.c (_dbus_verbose): fix to not 
807         always print the first verbose message.
808
809 2002-11-24  Havoc Pennington  <hp@pobox.com>
810
811         * test/echo-client.c, test/echo-server.c: cheesy test 
812         clients.
813         
814         * configure.in (AC_CHECK_FUNCS): check for writev
815
816         * dbus/dbus-message.c (_dbus_message_get_network_data): new
817         function
818
819         * dbus/dbus-list.c (_dbus_list_foreach): new function
820
821         * dbus/dbus-internals.c (_dbus_verbose): new function
822
823         * dbus/dbus-server.c, dbus/dbus-server.h: public object
824         representing a server that listens for connections.
825
826         * dbus/.cvsignore: create
827
828         * dbus/dbus-errors.h, dbus/dbus-errors.c:
829         public API for reporting errors
830
831         * dbus/dbus-connection.h, dbus/dbus-connection.c:
832         public object representing a connection that 
833         sends/receives messages. (Same object used for 
834         both client and server.)
835
836         * dbus/dbus-transport.h, dbus/dbus-transport.c:
837         Basic abstraction for different kinds of stream
838         that we might read/write messages from.
839
840 2002-11-23  Havoc Pennington  <hp@pobox.com>
841
842         * dbus/dbus-internals.h (_DBUS_INT_MAX): add _DBUS_INT_MIN 
843         _DBUS_INT_MAX
844
845         * dbus/dbus-test.c (main): add list test, and include 
846         dbus-test.h as intended
847
848         * dbus/dbus-hash.c (_dbus_hash_table_remove_string) 
849         (_dbus_hash_table_remove_int): return value indicates 
850         whether the entry existed to remove
851
852         * dbus/dbus-list.c: add linked list utility class, 
853         with docs and tests
854
855         * dbus/dbus-hash.c: add TODO item about shrinking the hash bucket 
856         array sometimes.
857
858 2002-11-23  Havoc Pennington  <hp@pobox.com>
859
860         * Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/
861         DBUS_END_DECLS to nothing, that should fix this once and for all
862
863         * Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES
864
865         * dbus/dbus-message.c, dbus/dbus-hash.c: 
866         add some missing @brief
867
868 2002-11-23  Havoc Pennington  <hp@pobox.com>
869
870         * dbus/dbus-message.h: put semicolons after DEBUG_BEGIN_DECLS 
871         to avoid confusing Doxygen
872
873         * dbus/dbus-hash.c: @} not }@
874
875         * dbus/dbus-message.c (struct DBusMessage): split out 
876         internals docs
877
878 2002-11-23  Havoc Pennington  <hp@pobox.com>
879
880         * configure.in: pile on more warning flags if using gcc
881
882         * Doxyfile.in (EXTRACT_STATIC): set to NO, so we don't have 
883         to document static functions
884
885         * configure.in: add summary to end of configure so it 
886         looks nice and attractive
887
888         * dbus/dbus-hash.c: finish implementation and write unit 
889         tests and docs
890
891         * configure.in: add --enable-tests to enable unit tests
892
893         * dbus/dbus-test.c: test program to run unit tests 
894         for all files in dbus/*, initially runs a test for 
895         dbus-hash.c
896         
897         * dbus/dbus-internals.h: file to hold some internal utility stuff
898
899 2002-11-22  Havoc Pennington  <hp@redhat.com>
900
901         * dbus/dbus-hash.c: copy in Tcl hash table, not yet 
902         "ported" away from Tcl
903
904         * dbus/dbus-types.h: header for types such as dbus_bool_t
905
906 2002-11-22  Havoc Pennington  <hp@redhat.com>
907
908         * dbus/dbus.h: fixups for doc warnings
909
910         * Doxyfile.in (FILE_PATTERNS): we need to scan .h to pick up 
911         macros
912         (QUIET): make it quiet so we can see warnings
913
914         * dbus/dbus-memory.c: teach D-BUS to allocate and free memory
915
916 2002-11-22  Havoc Pennington  <hp@redhat.com>
917
918         * Makefile.am: include "Doxyfile" target in all-local
919
920         * configure.in: generate the Doxyfile
921
922         * Doxyfile.in: move Doxyfile here, so we can use 
923         configure to generate a Doxyfile with the right 
924         version number etc.
925
926 2002-11-22  Havoc Pennington  <hp@redhat.com>
927
928         * dbus/dbus-message.c: move inline docs into .c file
929
930         * Doxyfile (OUTPUT_DIRECTORY): move output to doc/api
931         so all docs are under doc/
932         (MAN_EXTENSION): generate man pages. Use extension 
933         ".3dbus" which matches ".3qt" on my system, 
934         I guess this is OK, I don't know really.
935         (FILE_PATTERNS): look for .c files not .h, makes sense
936         for plain C I think
937
938 2002-11-22  Havoc Pennington  <hp@pobox.com>
939
940         * Makefile.am (SUBDIRS): rename subdir "server" to "bus" 
941         because any app can be a server, and any app can be a client, 
942         the bus is a special kind of server.
943
944 Thu Nov 21 23:35:31 2002  Zack Rusin  <zack@kde.org>
945
946         * Doxyfile : adding. Still needs Makefile rules to be generated
947         automatically (just run "doxygen" in the toplevel dir for now to
948         generate docs)
949         
950         * dbus/dbus-message.h : Adding sample docs (javadoc since
951         resembles gtk-doc a little more)
952
953         * dbus/dbus.h : Adding sample docs
954
955 2002-11-21  Havoc Pennington  <hp@redhat.com>
956
957         * dbus/Makefile.am (INCLUDES): define DBUS_COMPILATION 
958         so we can allow ourselves to include files directly, 
959         instead of having to use dbus.h
960
961         * dbus/dbus.h: fill in
962
963         * dbus/dbus-message.h: sketch out a sample header file.
964         Include griping if you include it directly instead of 
965         via dbus.h
966
967         * dbus/dbus-macros.h: new file with macros for extern "C", 
968         TRUE/FALSE, NULL, etc.
969
970         * doc/file-boilerplate.c: put include guards in here
971
972 2002-11-21  Havoc Pennington  <hp@redhat.com>
973
974         * doc/file-boilerplate.c: include both AFL and GPL boilerplate.
975
976         * COPYING: include the GPL as well, and license code 
977         under both AFL and GPL.
978
979 2002-11-21  Havoc Pennington  <hp@redhat.com>
980
981         * acconfig.h: get rid of this
982
983         * autogen.sh (run_configure): add --no-configure option
984
985         * configure.in: remove AC_ARG_PROGRAM to make
986         autoconf complain less. add AC_PREREQ. 
987         add AC_DEFINE third arg.
988         
989 2002-11-21  Anders Carlsson  <andersca@codefactory.se>
990
991         * doc/Makefile.am:
992         Fix references so we can distcheck.
993
994 2002-11-21  Havoc Pennington  <hp@redhat.com>
995
996         * Initial module creation
997