2002-12-25 Anders Carlsson <andersca@codefactory.se>
[platform/upstream/dbus.git] / ChangeLog
1 2002-12-25  Anders Carlsson  <andersca@codefactory.se>
2
3         * dbus/Makefile.am:
4         * dbus/dbus-marshal.c: (swap_bytes), (_dbus_marshal_double),
5         (_dbus_marshal_int32), (_dbus_marshal_uint32),
6         (_dbus_demarshal_double), (_dbus_demarshal_int32),
7         (_dbus_demarshal_uint32), (_dbus_marshal_test):
8         * dbus/dbus-marshal.h:
9         * dbus/dbus-protocol.h:
10         * dbus/dbus-test.c: (main):
11         * dbus/dbus-test.h:
12         Add un-optimized marshalling/demarshalling routines.
13         
14 2002-12-25  Harri Porten  <porten@kde.org>
15
16         * qt/dbus-qt.h: adjusted ctor and getter to KDE/Qt conventions
17
18 2002-12-24  Zack Rusin  <zack@kde.org>
19
20         * qt/dbus-qthread.cc: adding - integrates QMutex into Dbus
21         * qt/dbus-qt.h: skeleton with two sample implemenatation of the
22         main loop stuff
23
24 2002-12-24  Havoc Pennington  <hp@pobox.com>
25
26         * glib/dbus-gthread.c: fix include
27
28         * glib/dbus-glib.h: rename DBusMessageHandler for now. 
29         I think glib API needs to change, though, as you don't 
30         want to use DBusMessageFunction, you want to use the 
31         DBusMessageHandler object. Probably 
32         dbus_connection_open_with_g_main_loop()
33         and dbus_connection_setup_g_main_loop() or something like that
34         (but think of better names...) that just create a connection 
35         that has watch/timeout functions etc. already set up.
36
37         * dbus/dbus-connection.c
38         (dbus_connection_send_message_with_reply): new function just to 
39         show how the message handler helps us deal with replies.
40
41         * dbus/dbus-list.c (_dbus_list_remove_last): new function
42
43         * dbus/dbus-string.c (_dbus_string_test): free a string that
44         wasn't
45
46         * dbus/dbus-hash.c: use memory pools for the hash entries
47         (rebuild_table): be more paranoid about overflow, and 
48         shrink table when we can
49         (_dbus_hash_test): reduce number of sprintfs and write
50         valid C89. Add tests for case where we grow and then 
51         shrink the hash table.
52
53         * dbus/dbus-mempool.h, dbus/dbus-mempool.c: memory pools
54
55         * dbus/dbus-connection.c (dbus_connection_register_handler) 
56         (dbus_connection_unregister_handler): new functions
57
58         * dbus/dbus-message.c (dbus_message_get_name): new
59
60         * dbus/dbus-list.c: fix docs typo
61
62         * dbus/dbus-message-handler.h, dbus/dbus-message-handler.c:
63         an object representing a handler for messages.
64
65 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
66
67         * glib/dbus-glib.h:
68         * glib/dbus-gthread.c: (dbus_gthread_init):
69         Don't use the gdbus prefix for public functions.
70         
71 2002-12-16  Anders Carlsson  <andersca@codefactory.se>
72
73         * Makefile.am:
74         * configure.in:
75         Add GLib checks and fixup .pc files
76         
77         * glib/Makefile.am:
78         * glib/dbus-glib.h:
79         * glib/dbus-gmain.c: (gdbus_connection_prepare),
80         (gdbus_connection_check), (gdbus_connection_dispatch),
81         (gdbus_add_connection_watch), (gdbus_remove_connection_watch),
82         (dbus_connection_gsource_new):
83         * glib/dbus-gthread.c: (dbus_gmutex_new), (dbus_gmutex_free),
84         (dbus_gmutex_lock), (dbus_gmutex_unlock), (dbus_gthread_init):
85         * glib/test-dbus-glib.c: (message_handler), (main):
86         Add GLib support.
87         
88 2002-12-15  Harri Porten  <porten@kde.org>
89
90         * autogen.sh: check for libtoolize before attempting to use it 
91         
92         * dbus/dbus-transport-unix.c: include <sys/time.h> for timeval
93         struct.
94         
95         * .cvsignore: ignore more stamp files
96
97         * dbus/dbus-watch.c (_dbus_watch_list_new): fixed doc error
98
99         * test/Makefile.am: added -I$(top_srcdir) to be able to compile
100         without make install.
101
102 2002-12-15  Havoc Pennington  <hp@pobox.com>
103
104         * dbus/dbus-threads.c: add thread stubs that a higher library
105         layer can fill in. e.g. the GLib wrapper might fill them in with
106         GThread stuff. We still need to use this thread API to
107         thread-safe-ize the library.
108
109 2002-12-12  Havoc Pennington  <hp@pobox.com>
110
111         * dbus/dbus-transport-unix.c, dbus/dbus-server-unix.c: use the
112         below new interfaces and include fewer system headers.
113
114         * dbus/dbus-sysdeps.c (_dbus_read): new function
115         (_dbus_write): new function
116         (_dbus_write_two): new function
117         (_dbus_connect_unix_socket): new function
118         (_dbus_listen_unix_socket): new function
119
120         * dbus/dbus-message-internal.h: change interfaces to use
121         DBusString
122
123 2002-12-11  Havoc Pennington  <hp@pobox.com>
124
125         * dbus/dbus-types.h: add dbus_unichar
126
127         * dbus/dbus-internals.c (_dbus_verbose): use _dbus_getenv
128
129         * dbus/dbus-connection.c (dbus_connection_send_message): return
130         TRUE on success
131
132         * dbus/dbus-transport.c: include dbus-watch.h   
133
134         * dbus/dbus-connection.c: include dbus-message-internal.h
135
136         * HACKING: add file with coding guidelines stuff.
137
138         * dbus/dbus-string.h, dbus/dbus-string.c: Encapsulate all string
139         handling here, for security purposes (as in vsftpd). Not actually
140         using this class yet.
141
142         * dbus/dbus-sysdeps.h, dbus/dbus-sysdeps.c: Encapsulate all
143         system/libc usage here, as in vsftpd, for ease of auditing (and
144         should also simplify portability). Haven't actually moved all the
145         system/libc usage into here yet.
146         
147 2002-11-25  Havoc Pennington  <hp@pobox.com>
148
149         * dbus/dbus-internals.c (_dbus_verbose): fix to not 
150         always print the first verbose message.
151
152 2002-11-24  Havoc Pennington  <hp@pobox.com>
153
154         * test/echo-client.c, test/echo-server.c: cheesy test 
155         clients.
156         
157         * configure.in (AC_CHECK_FUNCS): check for writev
158
159         * dbus/dbus-message.c (_dbus_message_get_network_data): new
160         function
161
162         * dbus/dbus-list.c (_dbus_list_foreach): new function
163
164         * dbus/dbus-internals.c (_dbus_verbose): new function
165
166         * dbus/dbus-server.c, dbus/dbus-server.h: public object
167         representing a server that listens for connections.
168
169         * dbus/.cvsignore: create
170
171         * dbus/dbus-errors.h, dbus/dbus-errors.c:
172         public API for reporting errors
173
174         * dbus/dbus-connection.h, dbus/dbus-connection.c:
175         public object representing a connection that 
176         sends/receives messages. (Same object used for 
177         both client and server.)
178
179         * dbus/dbus-transport.h, dbus/dbus-transport.c:
180         Basic abstraction for different kinds of stream
181         that we might read/write messages from.
182
183 2002-11-23  Havoc Pennington  <hp@pobox.com>
184
185         * dbus/dbus-internals.h (_DBUS_INT_MAX): add _DBUS_INT_MIN 
186         _DBUS_INT_MAX
187
188         * dbus/dbus-test.c (main): add list test, and include 
189         dbus-test.h as intended
190
191         * dbus/dbus-hash.c (_dbus_hash_table_remove_string) 
192         (_dbus_hash_table_remove_int): return value indicates 
193         whether the entry existed to remove
194
195         * dbus/dbus-list.c: add linked list utility class, 
196         with docs and tests
197
198         * dbus/dbus-hash.c: add TODO item about shrinking the hash bucket 
199         array sometimes.
200
201 2002-11-23  Havoc Pennington  <hp@pobox.com>
202
203         * Doxyfile.in (INCLUDE_FILE_PATTERNS): expand DBUS_BEGIN_DECLS/
204         DBUS_END_DECLS to nothing, that should fix this once and for all
205
206         * Doxyfile.in (JAVADOC_AUTOBRIEF): set to YES
207
208         * dbus/dbus-message.c, dbus/dbus-hash.c: 
209         add some missing @brief
210
211 2002-11-23  Havoc Pennington  <hp@pobox.com>
212
213         * dbus/dbus-message.h: put semicolons after DEBUG_BEGIN_DECLS 
214         to avoid confusing Doxygen
215
216         * dbus/dbus-hash.c: @} not }@
217
218         * dbus/dbus-message.c (struct DBusMessage): split out 
219         internals docs
220
221 2002-11-23  Havoc Pennington  <hp@pobox.com>
222
223         * configure.in: pile on more warning flags if using gcc
224
225         * Doxyfile.in (EXTRACT_STATIC): set to NO, so we don't have 
226         to document static functions
227
228         * configure.in: add summary to end of configure so it 
229         looks nice and attractive
230
231         * dbus/dbus-hash.c: finish implementation and write unit 
232         tests and docs
233
234         * configure.in: add --enable-tests to enable unit tests
235
236         * dbus/dbus-test.c: test program to run unit tests 
237         for all files in dbus/*, initially runs a test for 
238         dbus-hash.c
239         
240         * dbus/dbus-internals.h: file to hold some internal utility stuff
241
242 2002-11-22  Havoc Pennington  <hp@redhat.com>
243
244         * dbus/dbus-hash.c: copy in Tcl hash table, not yet 
245         "ported" away from Tcl
246
247         * dbus/dbus-types.h: header for types such as dbus_bool_t
248
249 2002-11-22  Havoc Pennington  <hp@redhat.com>
250
251         * dbus/dbus.h: fixups for doc warnings
252
253         * Doxyfile.in (FILE_PATTERNS): we need to scan .h to pick up 
254         macros
255         (QUIET): make it quiet so we can see warnings
256
257         * dbus/dbus-memory.c: teach D-BUS to allocate and free memory
258
259 2002-11-22  Havoc Pennington  <hp@redhat.com>
260
261         * Makefile.am: include "Doxyfile" target in all-local
262
263         * configure.in: generate the Doxyfile
264
265         * Doxyfile.in: move Doxyfile here, so we can use 
266         configure to generate a Doxyfile with the right 
267         version number etc.
268
269 2002-11-22  Havoc Pennington  <hp@redhat.com>
270
271         * dbus/dbus-message.c: move inline docs into .c file
272
273         * Doxyfile (OUTPUT_DIRECTORY): move output to doc/api
274         so all docs are under doc/
275         (MAN_EXTENSION): generate man pages. Use extension 
276         ".3dbus" which matches ".3qt" on my system, 
277         I guess this is OK, I don't know really.
278         (FILE_PATTERNS): look for .c files not .h, makes sense
279         for plain C I think
280
281 2002-11-22  Havoc Pennington  <hp@pobox.com>
282
283         * Makefile.am (SUBDIRS): rename subdir "server" to "bus" 
284         because any app can be a server, and any app can be a client, 
285         the bus is a special kind of server.
286
287 Thu Nov 21 23:35:31 2002  Zack Rusin  <zack@kde.org>
288
289         * Doxyfile : adding. Still needs Makefile rules to be generated
290         automatically (just run "doxygen" in the toplevel dir for now to
291         generate docs)
292         
293         * dbus/dbus-message.h : Adding sample docs (javadoc since
294         resembles gtk-doc a little more)
295
296         * dbus/dbus.h : Adding sample docs
297
298 2002-11-21  Havoc Pennington  <hp@redhat.com>
299
300         * dbus/Makefile.am (INCLUDES): define DBUS_COMPILATION 
301         so we can allow ourselves to include files directly, 
302         instead of having to use dbus.h
303
304         * dbus/dbus.h: fill in
305
306         * dbus/dbus-message.h: sketch out a sample header file.
307         Include griping if you include it directly instead of 
308         via dbus.h
309
310         * dbus/dbus-macros.h: new file with macros for extern "C", 
311         TRUE/FALSE, NULL, etc.
312
313         * doc/file-boilerplate.c: put include guards in here
314
315 2002-11-21  Havoc Pennington  <hp@redhat.com>
316
317         * doc/file-boilerplate.c: include both AFL and GPL boilerplate.
318
319         * COPYING: include the GPL as well, and license code 
320         under both AFL and GPL.
321
322 2002-11-21  Havoc Pennington  <hp@redhat.com>
323
324         * acconfig.h: get rid of this
325
326         * autogen.sh (run_configure): add --no-configure option
327
328         * configure.in: remove AC_ARG_PROGRAM to make
329         autoconf complain less. add AC_PREREQ. 
330         add AC_DEFINE third arg.
331         
332 2002-11-21  Anders Carlsson  <andersca@codefactory.se>
333
334         * doc/Makefile.am:
335         Fix references so we can distcheck.
336
337 2002-11-21  Havoc Pennington  <hp@redhat.com>
338
339         * Initial module creation
340