2005-06-17 Colin Walters <walters@verbum.org>
[platform/upstream/dbus.git] / doc / TODO
1 Important for 1.0
2 ===
3
4  - Remove all deprecated functions
5
6  - Audit @todo and FIXME for security issues
7
8  - the "break loader" and valid/invalid message tests are all disabled;
9    they need to be fixed and re-enabled with the new message args stuff.
10    I think I want to drop the .message files thing and just have code
11    that generates messages, more like the tests for
12    dbus-marshal-recursive.c (this is mostly done now, just needs some
13    cleanup)
14
15  - need to define bus behavior if you send a message to 
16    yourself; is it an error, or allowed? If allowed, 
17    we need to have a test for it in the test suite.
18
19  - just before 1.0, try a HAVE_INT64=0 build and be sure it runs
20
21  - dbus-pending-call.c has some API and thread safety issues to review
22
23  - Add test harness for selinux allow/deny cf. this message
24    http://lists.freedesktop.org/archives/dbus/2005-April/002506.html
25
26  - Add a test case for handling the Ping message 
27
28 Important for 1.0 GLib Bindings
29 ===
30
31  - Annotations for "do not take ownership of this return value" on server
32
33  - Fix TYPE_OBJECT_PATH marshalling; see:
34    http://lists.freedesktop.org/archives/dbus/2005-June/002774.html
35
36  - Fix errors - need to get specific error back, not UnmappedError crap
37
38  - DBusGProxy doesn't emit "destroy" when it should
39
40 Might as Well for 1.0
41 ===
42
43  - protocol version in each message is pretty silly
44
45 Can Be Post 1.0
46 ===
47
48  - if the GUID is obtained only during authentication, not in the address, 
49    we could still share the connection
50
51  - Allow a dbus_g_proxy_to_string()/g_object_to_string() that
52    would convert the proxy to an "IOR" and dbus_g_proxy_from_string()
53    that would decode; using these, dbus-glib users could avoid
54    DBusConnection entirely. Of course the same applies to other kinds
55    of binding. This would use dbus_connection_open()'s connection-sharing
56    feature to avoid massive proliferation of connections.
57
58  - DBusWatchList/TimeoutList duplicate a lot of code, as do
59    protected_change_watch/protected_change_timeout in dbus-connection.c
60    and dbus-server.c. This could all be mopped up, cut-and-paste 
61    fixed, code size reduced.
62
63  - change .service files to allow Names=list in addition to Name=string
64
65  - The message bus internal code still says "service" for 
66    "name", "base service" for "unique name", "activate" for 
67    "start"; would be nice to clean up.
68
69  - Property list feature on message bus (list of properties associated 
70    with a connection). May also include message matching rules 
71    that involve the properties of the source or destination
72    connection.
73
74  - Disconnecting the remote end on invalid UTF-8 is probably not a good 
75    idea. The definition of "valid" is slightly fuzzy. I think it might 
76    be better to just silently "fix" the UTF-8, or perhaps return an error.
77
78  - build and install the Doxygen manual in Makefile when --enable-docs
79
80  - if you send the same message to multiple connections, the serial number 
81    will only be right for one of them. Probably need to just write() the serial 
82    number, rather than putting it in the DBusMessage, or something.
83
84  - perhaps the bus driver should have properties that reflect attributes
85    of the session, such as hostname, architecture, operating system, 
86    etc. Could be useful for code that wants to special-case behavior 
87    for a particular host or class of hosts, for example.
88
89  - currently the security policy stuff for messages to/from 
90    the bus driver is kind of strange; basically it's hardcoded that 
91    you can always talk to the driver, but the default config file 
92    has rules for it anyway, or something. it's conceptually 
93    screwy at the moment.
94
95  - when making a method call, if the call serial were globally unique,
96    we could forward the call serial along with any method calls made
97    as a result of the first method call, and allow reentrancy that was
98    strictly part of the call stack of said method call. But I don't
99    really see how to do this without making the user pass around the
100    call serial to all method calls all the time, or disallowing 
101    async calls.
102
103    If done post 1.0 will probably be an optional/ugly-API type 
104    of thing.
105
106  - I don't want to introduce DBusObject, but refcounting and object
107    data could still be factored out into an internal "base class" 
108    perhaps.
109
110  - document the auth protocol as a set of states and transitions, and
111    then reimplement it in those terms
112
113  - recursive dispatch, see dbus_connection_dispatch()
114
115  - do we need per-display activation; if so I'd like to do this by setting a
116    "display ID" property on screen 0, with a GUID, and keying activation by 
117    said GUID. Otherwise you get all kinds of unrobust
118    string/hostname-based mess. per-screen is then done by appending screen number
119    to the display. If displays have a deterministic ID like this, you can 
120    do per-display by simply including GUID in the service name.
121
122  - optimization and profiling!