File: Introduction.texi

package info (click to toggle)
dbuskit 0.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 3,552 kB
  • sloc: objc: 10,309; sh: 9,443; ansic: 200; makefile: 20
file content (261 lines) | stat: -rw-r--r-- 12,370 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
@c This file is part of the GNUstep DBusKit and D-Bus Programming Manual
@c Copyright (C) 2010
@c   Free Software Foundation, Inc.
@c See the file DBusKit.texi for copying conditions.

@paragraphindent 0
@node Introduction
@chapter Introduction

The aim of this manual is to familiarise the reader with the concepts
and tools necessary to successfully integrate a GNUstep application into
a desktop environment based around message exchange through the D-Bus
messaging bus facilities. The manual tries to give succinct explanation
of the concepts involved, providing illustrative examples whenever
possible.

It will be most useful to a reader who has basic working
knowledge of the Objective-C programming language and the OpenStep APIs
(either from the GNUstep implementation or from Apple's Cocoa). In depth
knowledge of the Distributed Objects system or D-Bus is also beneficial
but not required.

@section An IPC primer
@cindex IPC
@cindex inter-process communication
A typical modern computer system executes multiple units of computation
at the same time. Even with a single-core CPU, the operating system will
constantly switch between different units of computation by employing
different multitasking strategies. This approach has a number of
advantages, e.g.:
@itemize @bullet
@item
It facilitates isolation of processes from one another: A
malignant process cannot easily modify the memory of other processes on
the system.
@item
It allows privilege separation: It is not necessary that a
web-browser has the same rights as a partitioning utility. Running both
in different processes allows the operating system to assign different
privileges to both.
@item
It increases modularity: You can easily change one part of the
software on your computer without disturbing the other parts.
@item
 If the computer has more than one CPU, computation can be sped up
by running more than one process (or thread) in parallel.
@end itemize
To leverage these advantages effectively, different processes or
applications need a mechanism for inter-process communication (IPC) that
allows them to exchange information (and ensure synchronisation if
needed). 

@cindex message passing
One way to implement an IPC mechanism is by using the message passing
paradigm. Entities in a message passing system communicate by exchanging
messages with each other, which makes it a natural fit for object
oriented languages, where the basic abstraction is the object.

The message passing paradigm is also used in Objective-C (actually
Objective-C inherited it from Smalltalk), where you interact with
objects by sending messages to them. E.g. the intended meaning of
@example
[alice greet];
@end example
would be sending the @code{-greet} message to the @code{alice} object,
which is referred to as the @emph{receiver} of the message. This idiom
can be quite easily extended beyond the single process case, which the
NeXT did by including the @emph{Distributed Objects} system in the
OpenStep specification that GNUstep implements. The message passing
paradigm is also employed by D-Bus, and we will look at the similarities
and differences of both systems in the following sections.

@section Distributed Objects
@cindex Distributed Objects
@cindex DO

The GNUstep Distributed Objects (DO) System is designed to go out of a
programmer's way. Since ordinary (intra-process) usage Objective-C
already has message passing semantics, Distributed Objects simply
extends these semantics to objects in other processes.

This works by usage of the proxy design pattern. A proxy is a stand-in
object that receives messages @emph{in lieu} of another object and
forwards them (most likely after processing them as it sees fit). In the
case of Distributed Objects, the proxy will take the message that is
being sent to the remote object, encode it a @code{NSInvocation}
object and send a serialised version of the invocation to the remote
process where it is invoked on the receiver it was initially intended
for. 

Establishing a connection to a remote object using DO is thus a simple
three step process:
@enumerate
@item Look up a process that exposes ('vends', in DO parlance) an object.
@item Establish a communication channel to the process.
@item Create a proxy object to send messages to the remote object.
@end enumerate
Afterwards, the generated proxy can be used just like any in-process
object.

Task 1. involves the @code{NSPortNameServer} class which can be used to
obtain a communication endpoint (@code{NSPort}) to a service with a
specific name: 
@example
NSPort *sendPort = [[NSPortNameServer systemDefaultPortNameServer]
  portForName: @@"MyService"];
@end example
Task 2. involves @code{NSPort} and @code{NSConnection}. While the former
is concerned with the low-level details of encoding messages to a wire
format, the latter manages sending messages over ports. A connection to
the above @code{MyService} using the created @code{sendPort} could be
obtained like this:
@example
NSConnection *c = [NSConnection connectionWithReceivePort: [NSPort port]
                                                 sendPort: sendPort];
@end example

Task 3. is done by calling @code{-rootProxy} on the @code{NSConnection}
object. This will return an instance of @code{NSDistantObject}: A proxy
that will use @code{NSConnection} and @code{NSPort} to forward messages
to the remote object.
@example
id remoteObject = [c rootProxy];
@end example

The DO mode of operation has a few notable advantages:
@itemize @bullet
@item Usual message passing semantics apply.
@item The native Objective-C type system is used in both processes. No
type conversion is necessary.
@item New objects can be vended implicitly by returning them from the
root proxy. New proxies will be created automatically for them.
@item DO can make intelligent decisions about the remote objects: If
process @emph{A} has vended object @emph{O} to process @emph{B}
(yielding the proxy @emph{P(O)}), and @emph{B}  latter vends
@emph{P(O)} to @emph{A}, @emph{A} will not use @emph{P(P(O))}, but its
local reference to @emph{O}.
@end itemize
It goes without saying that DO is pretty useful and GNUstep uses it in
many places. It drives, for example, the services architecture, the pasteboard
server, or the distributed notification system. For further information
about DO, please consult the
@uref{../../Base/ProgrammingManual/manual_7.html, Objective-C GNUstep
Base Programming Manual}. We will now turn our attention to the D-Bus
IPC system.

@section D-Bus
@cindex D-Bus

Distributed Objects has already been part of NeXT's OpenStep
Specification, which appeared in 1994 and thus predates the D-Bus IPC
system for quite some time.  But while DO is only useful in an
Objective-C context, D-Bus was created to suit the needs of desktop
environments such as KDE or GNOME, which use (among others) C or
C++ as their core programming languages. 
@subsection Message Busses
@cindex message bus
One core concept of D-Bus is that of the message bus. A standard desktop
system that uses D-Bus usually has two active message buses, dubbed the
@emph{well-known buses}. One is the @emph{system bus}, to which
system-wide services connect, the other is the @emph{session bus} which
is started per user session and allows applications on the user's
desktop to communicate. 

The purpose of a bus, which is running as a separate process (the
@emph{dbus-daemon}), is to provide name-services to the connected
applications and route messages between them.
@subsection Services
@cindex service, D-Bus
@cindex D-Bus service
A process that connects to a message bus is considered to be a
@emph{service}, even if it will not expose any object to the bus. A
unique name, which starts with a colon (e.g. @emph{:1.1}) and is
required for message routing, will be assigned to every service by the
bus. The service can also request further names from the bus. A text
editor might, for example, want to request the name
@emph{org.gnustep.TextEditor} from the bus. These names are referred to
as @emph{well-known names} and usually utilise reverse-DNS notation.

These names can be subject to different assignment policies. A service
can specify that it wants to be queued for a name that has already be
assigned. It will then become the owner of the name when the last
previous owner exits or releases the name. Alternatively, the service
can request to replace an existing name, a feature that can be used to
ensure that only one application of a specific type is running (as would
be the case for, e.g., a screensaver).
@subsection Object Paths
@cindex object path, D-Bus
@cindex D-Bus object path

When using DO, the object graph vended by a service is generated
implicitly: If a message send to a remote object returns another object,
that object will implicitly be vended and wrapped in a proxy for use by
the other process. D-Bus operates quite differently in that respect:
Every object needs to be assigned a name that can be used by remote
processes to interact with the object. These object names are organised
in the directory-like structure, where each object is uniquely
identified by its @emph{object path}. The UDisks service
(@emph{org.freedesktop.UDisks}) on the system bus does, for example,
expose different disks of a computer at different paths:
@example
/org/freedesktop/UDisks/devices/sda
/org/freedesktop/UDisks/devices/sdb
@end example
It is worth noting that it is a D-Bus convention to have the root object
of the service not reside at the root path (``/'') but at one that
corresponds to the service name with all dots replaced by the path
separator. Thus you don not access the root object of
@emph{org.freedesktop.UDisks} at ``/'' but at ``/org/freedesktop/UDisks''.
The reason for this is to ensure proper name-spacing if different code
modules in a single process have registered multiple names on the bus
(which will all point to the same unique name).
@subsection Interfaces
@cindex interface, D-Bus
@cindex D-Bus interface
D-Bus object-path nodes are the receivers and senders of D-Bus messages.
They receive calls to methods and emit signals, which are broadcast by
the bus and can be watched for by other applications. These methods and
signals can be aggregated into @emph{interfaces}, which are a bit, but
not quite, like Objective-C protocols. One interface that almost every
D-Bus object implements is @emph{org.freedesktop.Introspectable}, which
has as its sole member the @code{Introspect()}-method. This will return
XML-encoded information about all methods, signals, and properties the
object exposes. 

Interfaces are also used as namespaces for their members: Identically
named methods with different implementations are allowed to appear in
multiple interfaces, something that is not possible with Objective-C
protocols.

@subsection Type System
@cindex type system, D-Bus
@cindex D-Bus type system
For arguments and values of methods, signals, and properties, D-Bus
defines its own type system, which is similar to the C type system. It
contains integer and floating point types of different sizes as well as
array and structure types. The type system represents dictionaries as
arrays of ordered pairs. Additionally, there is a type available for
references to objects (but these references are only valid within a
single service) and a variant type that, just like Objective-C's
@code{id}, allows for values of arbitrary types. This type system has to
be adopted by any application that wants to interface with D-Bus.

@section Comparison

@multitable @columnfractions .22 .39 .39
@headitem Feature @tab Distributed Objects @tab D-Bus
@item IPC paradigm @tab message passing @tab message passing 
@item type system @tab native Objective-C type system @tab custom D-Bus
type system (C-like)
@item supported programming languages @tab Objective-C@footnote{Please
note that the GNUstep and Apple implementations of Distributed Objects
are incompatible.} @tab many languages through bindings
@item polymorphism @tab no special provisions @tab through overloaded method names in
different interfaces
@item object-graph generation @tab implicit @tab explicit with named
objects
@item name service @tab provided by separate nameserver objects @tab integrated
@item delivery of broadcast information @tab distributed notification
system implemented on top of DO @tab integrated as D-Bus signals
@end multitable