2005-02-13 Havoc Pennington <hp@redhat.com>
[platform/upstream/dbus.git] / doc / TODO
1 Important for 1.0
2 ===
3
4  - Audit @todo and FIXME for security issues
5
6  - The convenience functions in dbus-bus.h should perhaps have
7    the signatures that they would have if they were autogenerated
8    stubs. e.g. the acquire service function. We should also evaluate 
9    which of these functions to include, in light of the fact that 
10    GLib/Qt native stubs will probably also exist.
11
12  - the "break loader" and valid/invalid message tests are all disabled;
13    they need to be fixed and re-enabled with the new message args stuff.
14    I think I want to drop the .message files thing and just have code
15    that generates messages, more like the tests for
16    dbus-marshal-recursive.c (this is mostly done now, just needs some
17    cleanup)
18
19  - need to define bus behavior if you send a message to 
20    yourself; is it an error, or allowed? If allowed, 
21    we need to have a test for it in the test suite.
22
23  - validate dict entry number of fields
24
25  - just before 1.0, try a HAVE_INT64=0 build and be sure it runs
26
27  - in dbus-keyring.c, enforce that the keyring dir is not 
28    world readable/writable
29
30  - Ping isn't handled
31
32  - fix introspection format to handle all signatures
33
34  - make the mutex/condvar functions private
35
36 Important for 1.0 GLib Bindings
37 ===
38
39  - finish dbus-glib-tool support for adding introspection 
40    data to GObject and autoexporting GObject using same
41
42  - Need to make sure that dbus-glib.h never returns any 
43    dbus_malloc() memory, only g_malloc(). 
44    dbus_g_proxy_end_call() is the major offender. 
45
46  - DBusGProxy doesn't emit "destroy" when it should
47
48 Might as Well for 1.0
49 ===
50
51  - add dbus_message_has_path(), maybe has_member/interface
52
53  - connection_open/connection_disconnect lacks symmetry, open/close
54    or connect/disconnect
55
56  - protocol version in each message is pretty silly
57
58 Can Be Post 1.0
59 ===
60
61  - change .service files to allow Names=list in addition to Name=string
62
63  - The message bus internal code still says "service" for 
64    "name", "base service" for "unique name", "activate" for 
65    "start"; would be nice to clean up.
66
67  - Property list feature on message bus (list of properties associated 
68    with a connection). May also include message matching rules 
69    that involve the properties of the source or destination
70    connection.
71
72  - Disconnecting the remote end on invalid UTF-8 is probably not a good 
73    idea. The definition of "valid" is slightly fuzzy. I think it might 
74    be better to just silently "fix" the UTF-8, or perhaps return an error.
75
76  - build and install the Doxygen manual in Makefile when --enable-docs
77
78  - if you send the same message to multiple connections, the serial number 
79    will only be right for one of them. Probably need to just write() the serial 
80    number, rather than putting it in the DBusMessage, or something.
81
82  - perhaps the bus driver should have properties that reflect attributes
83    of the session, such as hostname, architecture, operating system, 
84    etc. Could be useful for code that wants to special-case behavior 
85    for a particular host or class of hosts, for example.
86
87  - currently the security policy stuff for messages to/from 
88    the bus driver is kind of strange; basically it's hardcoded that 
89    you can always talk to the driver, but the default config file 
90    has rules for it anyway, or something. it's conceptually 
91    screwy at the moment.
92
93  - when making a method call, if the call serial were globally unique,
94    we could forward the call serial along with any method calls made
95    as a result of the first method call, and allow reentrancy that was
96    strictly part of the call stack of said method call. But I don't
97    really see how to do this without making the user pass around the
98    call serial to all method calls all the time, or disallowing 
99    async calls.
100
101    If done post 1.0 will probably be an optional/ugly-API type 
102    of thing.
103
104  - I don't want to introduce DBusObject, but refcounting and object
105    data could still be factored out into an internal "base class" 
106    perhaps.
107
108  - document the auth protocol as a set of states and transitions, and
109    then reimplement it in those terms
110
111  - recursive dispatch, see dbus_connection_dispatch()
112
113  - do we need per-display activation; if so I'd like to do this by setting a
114    "display ID" property on screen 0, with a GUID, and keying activation by 
115    said GUID. Otherwise you get all kinds of unrobust
116    string/hostname-based mess. per-screen is then done by appending screen number
117    to the display. If displays have a deterministic ID like this, you can 
118    do per-display by simply including GUID in the service name.
119
120  - optimization and profiling!