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