1 2002-12-24 Havoc Pennington <hp@pobox.com>
3 * glib/dbus-gthread.c: fix include
5 * glib/dbus-glib.h: rename DBusMessageHandler for now.
6 I think glib API needs to change, though, as you don't
7 want to use DBusMessageFunction, you want to use the
8 DBusMessageHandler object. Probably
9 dbus_connection_open_with_g_main_loop()
10 and dbus_connection_setup_g_main_loop() or something like that
11 (but think of better names...) that just create a connection
12 that has watch/timeout functions etc. already set up.
14 * dbus/dbus-connection.c
15 (dbus_connection_send_message_with_reply): new function just to
16 show how the message handler helps us deal with replies.
18 * dbus/dbus-list.c (_dbus_list_remove_last): new function
20 * dbus/dbus-string.c (_dbus_string_test): free a string that
23 * dbus/dbus-hash.c: use memory pools for the hash entries
24 (rebuild_table): be more paranoid about overflow, and
25 shrink table when we can
26 (_dbus_hash_test): reduce number of sprintfs and write
27 valid C89. Add tests for case where we grow and then
28 shrink the hash table.
30 * dbus/dbus-mempool.h, dbus/dbus-mempool.c: memory pools
32 * dbus/dbus-connection.c (dbus_connection_register_handler)
33 (dbus_connection_unregister_handler): new functions
35 * dbus/dbus-message.c (dbus_message_get_name): new
37 * dbus/dbus-list.c: fix docs typo
39 * dbus/dbus-message-handler.h, dbus/dbus-message-handler.c:
40 an object representing a handler for messages.
42 2002-12-16 Anders Carlsson <andersca@codefactory.se>
45 * glib/dbus-gthread.c: (dbus_gthread_init):
46 Don't use the gdbus prefix for public functions.
48 2002-12-16 Anders Carlsson <andersca@codefactory.se>
52 Add GLib checks and fixup .pc files
56 * glib/dbus-gmain.c: (gdbus_connection_prepare),
57 (gdbus_connection_check), (gdbus_connection_dispatch),
58 (gdbus_add_connection_watch), (gdbus_remove_connection_watch),
59 (dbus_connection_gsource_new):
60 * glib/dbus-gthread.c: (dbus_gmutex_new), (dbus_gmutex_free),
61 (dbus_gmutex_lock), (dbus_gmutex_unlock), (dbus_gthread_init):
62 * glib/test-dbus-glib.c: (message_handler), (main):
65 2002-12-15 Harri Porten <porten@kde.org>
67 * autogen.sh: check for libtoolize before attempting to use it
69 * dbus/dbus-transport-unix.c: include <sys/time.h> for timeval
72 * .cvsignore: ignore more stamp files
74 * dbus/dbus-watch.c (_dbus_watch_list_new): fixed doc error
76 * test/Makefile.am: added -I$(top_srcdir) to be able to compile
79 2002-12-15 Havoc Pennington <hp@pobox.com>
81 * dbus/dbus-threads.c: add thread stubs that a higher library
82 layer can fill in. e.g. the GLib wrapper might fill them in with
83 GThread stuff. We still need to use this thread API to
84 thread-safe-ize the library.
86 2002-12-12 Havoc Pennington <hp@pobox.com>
88 * dbus/dbus-transport-unix.c, dbus/dbus-server-unix.c: use the
89 below new interfaces and include fewer system headers.
91 * dbus/dbus-sysdeps.c (_dbus_read): new function
92 (_dbus_write): new function
93 (_dbus_write_two): new function
94 (_dbus_connect_unix_socket): new function
95 (_dbus_listen_unix_socket): new function
97 * dbus/dbus-message-internal.h: change interfaces to use
100 2002-12-11 Havoc Pennington <hp@pobox.com>
102 * dbus/dbus-types.h: add dbus_unichar
104 * dbus/dbus-internals.c (_dbus_verbose): use _dbus_getenv
106 * dbus/dbus-connection.c (dbus_connection_send_message): return
109 * dbus/dbus-transport.c: include dbus-watch.h
111 * dbus/dbus-connection.c: include dbus-message-internal.h
113 * HACKING: add file with coding guidelines stuff.
115 * dbus/dbus-string.h, dbus/dbus-string.c: Encapsulate all string
116 handling here, for security purposes (as in vsftpd). Not actually
117 using this class yet.
119 * dbus/dbus-sysdeps.h, dbus/dbus-sysdeps.c: Encapsulate all
120 system/libc usage here, as in vsftpd, for ease of auditing (and
121 should also simplify portability). Haven't actually moved all the
122 system/libc usage into here yet.
124 2002-11-25 Havoc Pennington <hp@pobox.com>
126 * dbus/dbus-internals.c (_dbus_verbose): fix to not
127 always print the first verbose message.
129 2002-11-24 Havoc Pennington <hp@pobox.com>
131 * test/echo-client.c, test/echo-server.c: cheesy test
134 * configure.in (AC_CHECK_FUNCS): check for writev
136 * dbus/dbus-message.c (_dbus_message_get_network_data): new
139 * dbus/dbus-list.c (_dbus_list_foreach): new function
141 * dbus/dbus-internals.c (_dbus_verbose): new function
143 * dbus/dbus-server.c, dbus/dbus-server.h: public object
144 representing a server that listens for connections.
146 * dbus/.cvsignore: create
148 * dbus/dbus-errors.h, dbus/dbus-errors.c:
149 public API for reporting errors
151 * dbus/dbus-connection.h, dbus/dbus-connection.c:
152 public object representing a connection that
153 sends/receives messages. (Same object used for
154 both client and server.)
156 * dbus/dbus-transport.h, dbus/dbus-transport.c:
157 Basic abstraction for different kinds of stream
158 that we might read/write messages from.
160 2002-11-23 Havoc Pennington <hp@pobox.com>
162 * dbus/dbus-internals.h (_DBUS_INT_MAX): add _DBUS_INT_MIN
165 * dbus/dbus-test.c (main): add list test, and include
166 dbus-test.h as intended
168 * dbus/dbus-hash.c (_dbus_hash_table_remove_string)
169 (_dbus_hash_table_remove_int): return value indicates
170 whether the entry existed to remove
172 * dbus/dbus-list.c: add linked list utility class,
175 * dbus/dbus-hash.c: add TODO item about shrinking the hash bucket
178 2002-11-23 Havoc Pennington <hp@pobox.com>
180 * Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/
181 DBUS_END_DECLS to nothing, that should fix this once and for all
183 * Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES
185 * dbus/dbus-message.c, dbus/dbus-hash.c:
186 add some missing @brief
188 2002-11-23 Havoc Pennington <hp@pobox.com>
190 * dbus/dbus-message.h: put semicolons after DEBUG_BEGIN_DECLS
191 to avoid confusing Doxygen
193 * dbus/dbus-hash.c: @} not }@
195 * dbus/dbus-message.c (struct DBusMessage): split out
198 2002-11-23 Havoc Pennington <hp@pobox.com>
200 * configure.in: pile on more warning flags if using gcc
202 * Doxyfile.in (EXTRACT_STATIC): set to NO, so we don't have
203 to document static functions
205 * configure.in: add summary to end of configure so it
206 looks nice and attractive
208 * dbus/dbus-hash.c: finish implementation and write unit
211 * configure.in: add --enable-tests to enable unit tests
213 * dbus/dbus-test.c: test program to run unit tests
214 for all files in dbus/*, initially runs a test for
217 * dbus/dbus-internals.h: file to hold some internal utility stuff
219 2002-11-22 Havoc Pennington <hp@redhat.com>
221 * dbus/dbus-hash.c: copy in Tcl hash table, not yet
222 "ported" away from Tcl
224 * dbus/dbus-types.h: header for types such as dbus_bool_t
226 2002-11-22 Havoc Pennington <hp@redhat.com>
228 * dbus/dbus.h: fixups for doc warnings
230 * Doxyfile.in (FILE_PATTERNS): we need to scan .h to pick up
232 (QUIET): make it quiet so we can see warnings
234 * dbus/dbus-memory.c: teach D-BUS to allocate and free memory
236 2002-11-22 Havoc Pennington <hp@redhat.com>
238 * Makefile.am: include "Doxyfile" target in all-local
240 * configure.in: generate the Doxyfile
242 * Doxyfile.in: move Doxyfile here, so we can use
243 configure to generate a Doxyfile with the right
246 2002-11-22 Havoc Pennington <hp@redhat.com>
248 * dbus/dbus-message.c: move inline docs into .c file
250 * Doxyfile (OUTPUT_DIRECTORY): move output to doc/api
251 so all docs are under doc/
252 (MAN_EXTENSION): generate man pages. Use extension
253 ".3dbus" which matches ".3qt" on my system,
254 I guess this is OK, I don't know really.
255 (FILE_PATTERNS): look for .c files not .h, makes sense
258 2002-11-22 Havoc Pennington <hp@pobox.com>
260 * Makefile.am (SUBDIRS): rename subdir "server" to "bus"
261 because any app can be a server, and any app can be a client,
262 the bus is a special kind of server.
264 Thu Nov 21 23:35:31 2002 Zack Rusin <zack@kde.org>
266 * Doxyfile : adding. Still needs Makefile rules to be generated
267 automatically (just run "doxygen" in the toplevel dir for now to
270 * dbus/dbus-message.h : Adding sample docs (javadoc since
271 resembles gtk-doc a little more)
273 * dbus/dbus.h : Adding sample docs
275 2002-11-21 Havoc Pennington <hp@redhat.com>
277 * dbus/Makefile.am (INCLUDES): define DBUS_COMPILATION
278 so we can allow ourselves to include files directly,
279 instead of having to use dbus.h
281 * dbus/dbus.h: fill in
283 * dbus/dbus-message.h: sketch out a sample header file.
284 Include griping if you include it directly instead of
287 * dbus/dbus-macros.h: new file with macros for extern "C",
288 TRUE/FALSE, NULL, etc.
290 * doc/file-boilerplate.c: put include guards in here
292 2002-11-21 Havoc Pennington <hp@redhat.com>
294 * doc/file-boilerplate.c: include both AFL and GPL boilerplate.
296 * COPYING: include the GPL as well, and license code
297 under both AFL and GPL.
299 2002-11-21 Havoc Pennington <hp@redhat.com>
301 * acconfig.h: get rid of this
303 * autogen.sh (run_configure): add --no-configure option
305 * configure.in: remove AC_ARG_PROGRAM to make
306 autoconf complain less. add AC_PREREQ.
307 add AC_DEFINE third arg.
309 2002-11-21 Anders Carlsson <andersca@codefactory.se>
312 Fix references so we can distcheck.
314 2002-11-21 Havoc Pennington <hp@redhat.com>
316 * Initial module creation