2005-01-26 Havoc Pennington <hp@redhat.com>
[platform/upstream/dbus.git] / doc / TODO
1 Important for 1.0
2 ===
3
4  - change .service files to have Names=list rather than Name=string
5   
6  - How we will handle DCOP needs sorting out. Among other things, we
7    need to check that service and service-ownership semantics map to DCOP 
8    reasonably well.
9
10  - Activation needs some careful additional thinking-through.
11
12  - Audit @todo and FIXME for security issues
13
14  - The convenience functions in dbus-bus.h should perhaps have
15    the signatures that they would have if they were autogenerated
16    stubs. e.g. the acquire service function. We should also evaluate 
17    which of these functions to include, in light of the fact that 
18    GLib/Qt native stubs will probably also exist.
19
20  - the "break loader" and valid/invalid message tests are all disabled;
21    they need to be fixed and re-enabled with the new message args stuff.
22    I think I want to drop the .message files thing and just have code
23    that generates messages, more like the tests for
24    dbus-marshal-recursive.c
25
26  - modify the auth protocol to also support other initial-handshake
27    type of information:
28
29    Perhaps the auth protocol should be able to negotiate a protocol 
30    version to the least-common-denominator between client and server?
31    Though in practice ever using this feature would be pretty tough, 
32    since protocol probably modifies the API. But we could have it there
33    as a safety net.
34
35  - need to define bus behavior if you send a message to 
36    yourself; is it an error, or allowed? If allowed, 
37    we need to have a test for it in the test suite.
38
39  - array lengths should probably be returned as size_t rather than int
40    (though they are kind of a pita to pass in as size_t with the 
41     varargs, so maybe not - what does glib do with g_object_get()?)
42
43  - things are broken now when mixing endianness, because DBusMessage
44    doesn't autoswap itself when you access a message of alternate
45    endian.
46
47  - add string array support back to append_args()
48
49  - just before 1.0, try a HAVE_INT64=0 build and be sure it runs
50
51 Important for 1.0 GLib Bindings
52 ===
53
54  - finish dbus-glib-tool support for adding introspection 
55    data to GObject and autoexporting GObject using same
56
57  - the GLib bindings varargs take DBUS_TYPE_WHATEVER and 
58    return stuff allocated with dbus_malloc(); should this 
59    be made more "G" at some expense in code duplication?
60    You also still have to use some D-BUS functions such as 
61    dbus_message_get_args() which takes a DBusError. 
62    Probably we need to either fully encapsulate and hide 
63    dbus/dbus.h, or encapsulate it slightly less e.g. no 
64    GError. Or maybe it's as simple as "never return dbus_malloc() 
65    memory" and just fully encapsulate the get_args() type of 
66    stuff.
67
68  - dbus_gproxy_connect_signal() has to take a signature for the signal 
69    so it can figure out how to invoke the callback, or we have to rely
70    on having introspection data.
71
72  - DBusGProxy doesn't emit "destroy" when it should
73
74 Might as Well for 1.0
75 ===
76
77  - add dbus_message_has_path(), maybe has_member/interface
78
79  - connection_open/connection_disconnect lacks symmetry, open/close
80    or connect/disconnect
81
82  - protocol version in each message is pretty silly
83
84 Can Be Post 1.0
85 ===
86
87  - The message bus internal code still says "service" for 
88    "name", "base service" for "unique name", "activate" for 
89    "start"; would be nice to clean up.
90
91  - Property list feature on message bus (list of properties associated 
92    with a connection). May also include message matching rules 
93    that involve the properties of the source or destination
94    connection.
95
96  - Disconnecting the remote end on invalid UTF-8 is probably not a good 
97    idea. The definition of "valid" is slightly fuzzy. I think it might 
98    be better to just silently "fix" the UTF-8, or perhaps return an error.
99
100    Owen says we should only validate the UTF-8 on dbus_message_get_string()
101    (changing get_string to have an error return, and allowing a type error 
102    as a possible return)
103
104  - assorted _-prefixed symbols in libdbus aren't actually used by
105    libdbus, only by the message bus. These bloat up the library
106    size. Not sure how to fix, really.
107
108  - build and install the Doxygen manual in Makefile when --enable-docs
109
110  - if you send the same message to multiple connections, the serial number 
111    will only be right for one of them. Probably need to just write() the serial 
112    number, rather than putting it in the DBusMessage, or something.
113
114  - perhaps the bus driver should have properties that reflect attributes
115    of the session, such as hostname, architecture, operating system, 
116    etc. Could be useful for code that wants to special-case behavior 
117    for a particular host or class of hosts, for example.
118
119  - currently the security policy stuff for messages to/from 
120    the bus driver is kind of strange; basically it's hardcoded that 
121    you can always talk to the driver, but the default config file 
122    has rules for it anyway, or something. it's conceptually 
123    screwy at the moment.
124
125  - when making a method call, if the call serial were globally unique,
126    we could forward the call serial along with any method calls made
127    as a result of the first method call, and allow reentrancy that was
128    strictly part of the call stack of said method call. But I don't
129    really see how to do this without making the user pass around the
130    call serial to all method calls all the time, or disallowing 
131    async calls.
132
133    If done post 1.0 will probably be an optional/ugly-API type 
134    of thing.
135
136  - I don't want to introduce DBusObject, but refcounting and object
137    data could still be factored out into an internal "base class" 
138    perhaps.
139
140  - document the auth protocol as a set of states and transitions, and
141    then reimplement it in those terms
142
143  - recursive dispatch, see dbus_connection_dispatch()
144
145  - do we need per-display activation; if so I'd like to do this by setting a
146    "display ID" property on screen 0, with a GUID, and keying activation by 
147    said GUID. Otherwise you get all kinds of unrobust
148    string/hostname-based mess. per-screen is then done by appending screen number
149    to the display. If displays have a deterministic ID like this, you can 
150    do per-display by simply including GUID in the service name.
151
152  - optimization and profiling!