2003-03-18 23:22:12 +00:00
|
|
|
|
|
|
|
|
- Message matching rules (so broadcasts can be filtered) need sorting
|
|
|
|
|
out.
|
|
|
|
|
|
|
|
|
|
- How we will handle DCOP needs sorting out. Among other things, we
|
|
|
|
|
need to check that service and service-ownership semantics map to DCOP
|
|
|
|
|
reasonably well.
|
|
|
|
|
|
|
|
|
|
- Activation needs some careful additional thinking-through.
|
|
|
|
|
|
|
|
|
|
- Property list feature on message bus (list of properties associated
|
|
|
|
|
with a connection). May also include message matching rules
|
|
|
|
|
that involve the properties of the source or destination
|
|
|
|
|
connection.
|
|
|
|
|
|
2003-03-26 21:06:17 +00:00
|
|
|
- Automatic service activation, should probably be done through a message flag.
|
2003-03-18 23:22:12 +00:00
|
|
|
|
2003-03-28 05:42:19 +00:00
|
|
|
- Disconnecting the remote end on invalid UTF-8 is probably not a good
|
|
|
|
|
idea. The definitiion of "valid" is slightly fuzzy. I think it might
|
|
|
|
|
be better to just silently "fix" the UTF-8, or perhaps return an error.
|
|
|
|
|
|
2003-03-31 18:58:14 +00:00
|
|
|
Owen says we should only validate the UTF-8 on dbus_message_get_string()
|
|
|
|
|
(changing get_string to have an error return, and allowing a type error
|
|
|
|
|
as a possible return)
|
|
|
|
|
|
2003-04-03 21:56:22 +00:00
|
|
|
- The convenience functions in dbus-bus.h should perhaps have
|
|
|
|
|
the signatures that they would have if they were autogenerated
|
|
|
|
|
stubs. e.g. the acquire service function. We should also evaluate
|
|
|
|
|
which of these functions to include, in light of the fact that
|
|
|
|
|
GLib/Qt native stubs will probably also exist.
|
|
|
|
|
|
|
|
|
|
- The message handler interface needs rethinking, perhaps handlers should be able
|
|
|
|
|
to return an error that automatically gets turned into a message; most likely
|
|
|
|
|
some basic spec'ing out of the GLib/Qt level stubs/skels stuff will be
|
|
|
|
|
needed to understand the right approach.
|
2003-04-04 00:39:22 +00:00
|
|
|
|
|
|
|
|
- there are various bits of code to manage ref/unref of data slots, that should
|
|
|
|
|
be merged into a generic facility
|
2003-04-05 00:37:17 +00:00
|
|
|
|
|
|
|
|
- assorted _-prefixed symbols in libdbus aren't actually used by
|
|
|
|
|
libdbus, only by the message bus. These bloat up the library
|
|
|
|
|
size. Not sure how to fix, really.
|
|
|
|
|
|
2003-04-11 21:21:21 +00:00
|
|
|
- if you send a message to a service then block for reply, and the service exits/crashes
|
|
|
|
|
after the message bus has processed your message but before the service has replied,
|
|
|
|
|
it would be nice if the message bus sent you an error reply.
|
2003-05-03 23:07:19 +00:00
|
|
|
|
|
|
|
|
- write a DTD for the dbus-daemon-1 configuration file
|
|
|
|
|
|
|
|
|
|
- build and install the Doxygen manual in Makefile when --enable-docs
|
2003-05-05 19:12:58 +00:00
|
|
|
|
|
|
|
|
- if you send the same message to multiple connections, the serial number
|
|
|
|
|
will only be right for one of them. Probably need to just write() the serial
|
|
|
|
|
number, rather than putting it in the DBusMessage, or something.
|
|
|
|
|
|
2003-05-17 17:53:17 +00:00
|
|
|
- perhaps the bus driver should have properties that reflect attributes
|
|
|
|
|
of the session, such as hostname, architecture, operating system,
|
|
|
|
|
etc. Could be useful for code that wants to special-case behavior
|
|
|
|
|
for a particular host or class of hosts, for example.
|
|
|
|
|
|
2003-05-16 20:09:25 +00:00
|
|
|
- currently the security policy stuff for messages to/from
|
|
|
|
|
the bus driver is kind of strange; basically it's hardcoded that
|
|
|
|
|
you can always talk to the driver, but the default config file
|
|
|
|
|
has rules for it anyway, or something. it's conceptually
|
|
|
|
|
screwy at the moment.
|
2003-05-17 17:53:17 +00:00
|
|
|
|
|
|
|
|
- <limit> elements are not merged in from included configuration
|
|
|
|
|
files; they have to be in the toplevel file. when loading
|
|
|
|
|
a child file, we could just init its DBusLimits from the parent,
|
|
|
|
|
then after parsing copy its DBusLimits back to the parent
|
2003-08-30 00:26:00 +00:00
|
|
|
|
|
|
|
|
- when making a method call, if the call serial were globally unique,
|
|
|
|
|
we could forward the call serial along with any method calls made
|
|
|
|
|
as a result of the first method call, and allow reentrancy that was
|
|
|
|
|
strictly part of the call stack of said method call. But I don't
|
|
|
|
|
really see how to do this without making the user pass around the
|
|
|
|
|
call serial to all method calls all the time, or disallowing
|
|
|
|
|
async calls.
|
2003-08-31 01:51:44 +00:00
|
|
|
|
|
|
|
|
- the invalid messages in the test suite are all useless because
|
|
|
|
|
they are invalid for the wrong reasons due to protocol changes
|
2003-09-01 18:02:06 +00:00
|
|
|
|
2003-09-17 03:52:07 +00:00
|
|
|
- I don't want to introduce DBusObject, but refcounting and object
|
|
|
|
|
data could still be factored out into an internal "base class"
|
|
|
|
|
perhaps.
|
2003-09-21 18:43:20 +00:00
|
|
|
|
2003-09-21 19:53:56 +00:00
|
|
|
- modify the auth protocol to also support other initial-handshake
|
|
|
|
|
type of information
|
|
|
|
|
|
|
|
|
|
- document the auth protocol as a set of states and transitions, and
|
|
|
|
|
then reimplement it in those terms
|
|
|
|
|
|
2003-09-22 03:11:12 +00:00
|
|
|
- dbus_gproxy or dbus_g_proxy?
|
|
|
|
|
|
2003-09-25 08:50:14 +00:00
|
|
|
- The OBJECT_PATH type is not documented in the spec.
|