Documentation ¶
Overview ¶
Package dbus implements bindings to the D-Bus message bus system.
To use the message bus API, you first need to connect to a bus (usually the session or system bus). The acquired connection then can be used to call methods on remote objects and emit or receive signals. Using the Export method, you can arrange D-Bus methods calls to be directly translated to method calls on a Go value.
Conversion Rules ¶
For outgoing messages, Go types are automatically converted to the corresponding D-Bus types. See the official specification at https://dbus.freedesktop.org/doc/dbus-specification.html#type-system for more information on the D-Bus type system. The following types are directly encoded as their respective D-Bus equivalents:
Go type | D-Bus type ------------+----------- byte | BYTE bool | BOOLEAN int16 | INT16 uint16 | UINT16 int | INT32 uint | UINT32 int32 | INT32 uint32 | UINT32 int64 | INT64 uint64 | UINT64 float64 | DOUBLE string | STRING ObjectPath | OBJECT_PATH Signature | SIGNATURE Variant | VARIANT interface{} | VARIANT UnixFDIndex | UNIX_FD
Slices and arrays encode as ARRAYs of their element type.
Maps encode as DICTs, provided that their key type can be used as a key for a DICT.
Structs other than Variant and Signature encode as a STRUCT containing their exported fields in order. Fields whose tags contain `dbus:"-"` and unexported fields will be skipped.
Pointers encode as the value they're pointed to.
Types convertible to one of the base types above will be mapped as the base type.
Trying to encode any other type or a slice, map or struct containing an unsupported type will result in an InvalidTypeError.
For incoming messages, the inverse of these rules are used, with the exception of STRUCTs. Incoming STRUCTS are represented as a slice of empty interfaces containing the struct fields in the correct order. The Store function can be used to convert such values to Go structs.
Unix FD passing ¶
Handling Unix file descriptors deserves special mention. To use them, you should first check that they are supported on a connection by calling SupportsUnixFDs. If it returns true, all method of Connection will translate messages containing UnixFD's to messages that are accompanied by the given file descriptors with the UnixFD values being substituted by the correct indices. Similarly, the indices of incoming messages are automatically resolved. It shouldn't be necessary to use UnixFDIndex.
Index ¶
- Variables
- func EscapeBusAddressValue(val string) string
- func NewDefaultHandler() *defaultHandlerdeprecated
- func NewDefaultSignalHandler() *defaultSignalHandlerdeprecated
- func Store(src []interface{}, dest ...interface{}) error
- func UnescapeBusAddressValue(val string) (string, error)
- type ArgumentDecoder
- type Auth
- type AuthStatus
- type BusObject
- type Call
- type Conn
- func Connect(address string, opts ...ConnOption) (*Conn, error)
- func ConnectSessionBus(opts ...ConnOption) (*Conn, error)
- func ConnectSystemBus(opts ...ConnOption) (*Conn, error)
- func Dial(address string, opts ...ConnOption) (*Conn, error)
- func DialHandler(address string, handler Handler, signalHandler SignalHandler) (*Conn, error)deprecated
- func NewConn(conn io.ReadWriteCloser, opts ...ConnOption) (*Conn, error)
- func NewConnHandler(conn io.ReadWriteCloser, handler Handler, signalHandler SignalHandler) (*Conn, error)deprecated
- func SessionBus() (conn *Conn, err error)
- func SessionBusPrivate(opts ...ConnOption) (*Conn, error)
- func SessionBusPrivateHandler(handler Handler, signalHandler SignalHandler) (*Conn, error)deprecated
- func SessionBusPrivateNoAutoStartup(opts ...ConnOption) (*Conn, error)
- func SystemBus() (conn *Conn, err error)
- func SystemBusPrivate(opts ...ConnOption) (*Conn, error)
- func SystemBusPrivateHandler(handler Handler, signalHandler SignalHandler) (*Conn, error)deprecated
- func (conn *Conn) AddMatchSignal(options ...MatchOption) error
- func (conn *Conn) AddMatchSignalContext(ctx context.Context, options ...MatchOption) error
- func (conn *Conn) Auth(methods []Auth) error
- func (conn *Conn) BusObject() BusObject
- func (conn *Conn) Close() error
- func (conn *Conn) Connected() bool
- func (conn *Conn) Context() context.Context
- func (conn *Conn) Eavesdrop(ch chan<- *Message)
- func (conn *Conn) Emit(path ObjectPath, name string, values ...interface{}) error
- func (conn *Conn) Export(v interface{}, path ObjectPath, iface string) error
- func (conn *Conn) ExportAll(v interface{}, path ObjectPath, iface string) error
- func (conn *Conn) ExportMethodTable(methods map[string]interface{}, path ObjectPath, iface string) error
- func (conn *Conn) ExportSubtree(v interface{}, path ObjectPath, iface string) error
- func (conn *Conn) ExportSubtreeMethodTable(methods map[string]interface{}, path ObjectPath, iface string) error
- func (conn *Conn) ExportSubtreeWithMap(v interface{}, mapping map[string]string, path ObjectPath, iface string) error
- func (conn *Conn) ExportWithMap(v interface{}, mapping map[string]string, path ObjectPath, iface string) error
- func (conn *Conn) Hello() error
- func (conn *Conn) Names() []string
- func (conn *Conn) Object(dest string, path ObjectPath) BusObject
- func (conn *Conn) ReleaseName(name string) (ReleaseNameReply, error)
- func (conn *Conn) RemoveMatchSignal(options ...MatchOption) error
- func (conn *Conn) RemoveMatchSignalContext(ctx context.Context, options ...MatchOption) error
- func (conn *Conn) RemoveSignal(ch chan<- *Signal)
- func (conn *Conn) RequestName(name string, flags RequestNameFlags) (RequestNameReply, error)
- func (conn *Conn) Send(msg *Message, ch chan *Call) *Call
- func (conn *Conn) SendWithContext(ctx context.Context, msg *Message, ch chan *Call) *Call
- func (conn *Conn) Signal(ch chan<- *Signal)
- func (conn *Conn) SupportsUnixFDs() bool
- type ConnOption
- func WithAuth(methods ...Auth) ConnOption
- func WithContext(ctx context.Context) ConnOption
- func WithHandler(handler Handler) ConnOption
- func WithIncomingInterceptor(interceptor Interceptor) ConnOption
- func WithOutgoingInterceptor(interceptor Interceptor) ConnOption
- func WithSerialGenerator(gen SerialGenerator) ConnOption
- func WithSignalHandler(handler SignalHandler) ConnOption
- type DBusError
- type Error
- type Flags
- type FormatError
- type Handler
- type HeaderField
- type Interceptor
- type Interface
- type InvalidMessageError
- type InvalidTypeError
- type MatchOption
- func WithMatchArg(argIdx int, value string) MatchOption
- func WithMatchArg0Namespace(arg0Namespace string) MatchOption
- func WithMatchArgPath(argIdx int, path string) MatchOption
- func WithMatchDestination(destination string) MatchOption
- func WithMatchEavesdrop(eavesdrop bool) MatchOption
- func WithMatchInterface(iface string) MatchOption
- func WithMatchMember(member string) MatchOption
- func WithMatchObjectPath(path ObjectPath) MatchOption
- func WithMatchOption(key, value string) MatchOption
- func WithMatchPathNamespace(namespace ObjectPath) MatchOption
- func WithMatchSender(sender string) MatchOption
- type Message
- func (msg *Message) CountFds() (int, error)
- func (msg *Message) EncodeTo(out io.Writer, order binary.ByteOrder) (err error)
- func (msg *Message) EncodeToWithFDs(out io.Writer, order binary.ByteOrder) (fds []int, err error)
- func (msg *Message) IsValid() error
- func (msg *Message) Serial() uint32
- func (msg *Message) String() string
- type Method
- type Object
- func (o *Object) AddMatchSignal(iface, member string, options ...MatchOption) *Calldeprecated
- func (o *Object) Call(method string, flags Flags, args ...interface{}) *Call
- func (o *Object) CallWithContext(ctx context.Context, method string, flags Flags, args ...interface{}) *Call
- func (o *Object) Destination() string
- func (o *Object) GetProperty(p string) (Variant, error)
- func (o *Object) Go(method string, flags Flags, ch chan *Call, args ...interface{}) *Call
- func (o *Object) GoWithContext(ctx context.Context, method string, flags Flags, ch chan *Call, ...) *Call
- func (o *Object) Path() ObjectPath
- func (o *Object) RemoveMatchSignal(iface, member string, options ...MatchOption) *Calldeprecated
- func (o *Object) SetProperty(p string, v interface{}) error
- func (o *Object) StoreProperty(p string, value interface{}) error
- type ObjectPath
- type ReleaseNameReply
- type RequestNameFlags
- type RequestNameReply
- type Sender
- type Sequence
- type SerialGenerator
- type ServerObject
- type Signal
- type SignalHandler
- type SignalRegistrar
- type Signature
- type SignatureError
- type Terminator
- type Type
- type UnixFD
- type UnixFDIndex
- type Variant
Examples ¶
Constants ¶
This section is empty.
Variables ¶
var ( ErrMsgInvalidArg = Error{ "org.freedesktop.DBus.Error.InvalidArgs", []interface{}{"Invalid type / number of args"}, } ErrMsgNoObject = Error{ "org.freedesktop.DBus.Error.NoSuchObject", []interface{}{"No such object"}, } ErrMsgUnknownMethod = Error{ "org.freedesktop.DBus.Error.UnknownMethod", []interface{}{"Unknown / invalid method"}, } ErrMsgUnknownInterface = Error{ "org.freedesktop.DBus.Error.UnknownInterface", []interface{}{"Object does not implement the interface"}, } )
var ErrClosed = errors.New("dbus: connection closed by user")
ErrClosed is the error returned by calls on a closed connection.
Functions ¶
func EscapeBusAddressValue ¶ added in v5.1.0
EscapeBusAddressValue implements a requirement to escape the values in D-Bus server addresses, as defined by the D-Bus specification at https://dbus.freedesktop.org/doc/dbus-specification.html#addresses.
func NewDefaultHandler
deprecated
func NewDefaultHandler() *defaultHandler
NewDefaultHandler returns an instance of the default call handler. This is useful if you want to implement only one of the two handlers but not both.
Deprecated: this is the default value, don't use it, it will be unexported.
func NewDefaultSignalHandler
deprecated
func NewDefaultSignalHandler() *defaultSignalHandler
NewDefaultSignalHandler returns an instance of the default signal handler. This is useful if you want to implement only one of the two handlers but not both.
Deprecated: this is the default value, don't use it, it will be unexported.
func Store ¶
func Store(src []interface{}, dest ...interface{}) error
Store copies the values contained in src to dest, which must be a slice of pointers. It converts slices of interfaces from src to corresponding structs in dest. An error is returned if the lengths of src and dest or the types of their elements don't match.
func UnescapeBusAddressValue ¶ added in v5.1.0
UnescapeBusAddressValue unescapes values in D-Bus server addresses, as defined by the D-Bus specification at https://dbus.freedesktop.org/doc/dbus-specification.html#addresses.
Types ¶
type ArgumentDecoder ¶
type ArgumentDecoder interface { // To decode the arguments of a method the sender and message are // provided in case the semantics of the implementer provides access // to these as part of the method invocation. DecodeArguments(conn *Conn, sender string, msg *Message, args []interface{}) ([]interface{}, error) }
An Argument Decoder can decode arguments using the non-standard mechanism
If a method implements this interface then the non-standard decoder will be used.
Method arguments must be decoded from the message. The mechanism for doing this will vary based on the implementation of the method. A normal approach is provided as part of this library, but may be replaced with any other decoding scheme.
type Auth ¶
type Auth interface { // Return the name of the mechanism, the argument to the first AUTH command // and the next status. FirstData() (name, resp []byte, status AuthStatus) // Process the given DATA command, and return the argument to the DATA // command and the next status. If len(resp) == 0, no DATA command is sent. HandleData(data []byte) (resp []byte, status AuthStatus) }
Auth defines the behaviour of an authentication mechanism.
func AuthAnonymous ¶
func AuthAnonymous() Auth
AuthAnonymous returns an Auth that uses the ANONYMOUS mechanism.
func AuthCookieSha1 ¶
AuthCookieSha1 returns an Auth that authenticates as the given user with the DBUS_COOKIE_SHA1 mechanism. The home parameter should specify the home directory of the user.
func AuthExternal ¶
AuthExternal returns an Auth that authenticates as the given user with the EXTERNAL mechanism.
type AuthStatus ¶
type AuthStatus byte
AuthStatus represents the Status of an authentication mechanism.
const ( // AuthOk signals that authentication is finished; the next command // from the server should be an OK. AuthOk AuthStatus = iota // AuthContinue signals that additional data is needed; the next command // from the server should be a DATA. AuthContinue // AuthError signals an error; the server sent invalid data or some // other unexpected thing happened and the current authentication // process should be aborted. AuthError )
type BusObject ¶
type BusObject interface { Call(method string, flags Flags, args ...interface{}) *Call CallWithContext(ctx context.Context, method string, flags Flags, args ...interface{}) *Call Go(method string, flags Flags, ch chan *Call, args ...interface{}) *Call GoWithContext(ctx context.Context, method string, flags Flags, ch chan *Call, args ...interface{}) *Call AddMatchSignal(iface, member string, options ...MatchOption) *Call RemoveMatchSignal(iface, member string, options ...MatchOption) *Call GetProperty(p string) (Variant, error) StoreProperty(p string, value interface{}) error SetProperty(p string, v interface{}) error Destination() string Path() ObjectPath }
BusObject is the interface of a remote object on which methods can be invoked.
type Call ¶
type Call struct { Destination string Path ObjectPath Method string Args []interface{} // Strobes when the call is complete. Done chan *Call // After completion, the error status. If this is non-nil, it may be an // error message from the peer (with Error as its type) or some other error. Err error // Holds the response once the call is done. Body []interface{} // ResponseSequence stores the sequence number of the DBus message containing // the call response (or error). This can be compared to the sequence number // of other call responses and signals on this connection to determine their // relative ordering on the underlying DBus connection. // For errors, ResponseSequence is populated only if the error came from a // DBusMessage that was received or if there was an error receiving. In case of // failure to make the call, ResponseSequence will be NoSequence. ResponseSequence Sequence // contains filtered or unexported fields }
Call represents a pending or completed method call.
func (*Call) ContextCancel ¶
func (c *Call) ContextCancel()
type Conn ¶
type Conn struct {
// contains filtered or unexported fields
}
Conn represents a connection to a message bus (usually, the system or session bus).
Connections are either shared or private. Shared connections are shared between calls to the functions that return them. As a result, the methods Close, Auth and Hello must not be called on them.
Multiple goroutines may invoke methods on a connection simultaneously.
func Connect ¶ added in v5.0.4
func Connect(address string, opts ...ConnOption) (*Conn, error)
Connect connects to the given address.
Returned connection is ready to use and doesn't require calling Auth and Hello methods to make it usable.
func ConnectSessionBus ¶ added in v5.0.4
func ConnectSessionBus(opts ...ConnOption) (*Conn, error)
ConnectSessionBus connects to the session bus.
func ConnectSystemBus ¶ added in v5.0.4
func ConnectSystemBus(opts ...ConnOption) (*Conn, error)
ConnectSystemBus connects to the system bus.
func Dial ¶
func Dial(address string, opts ...ConnOption) (*Conn, error)
Dial establishes a new private connection to the message bus specified by address.
func DialHandler
deprecated
func DialHandler(address string, handler Handler, signalHandler SignalHandler) (*Conn, error)
DialHandler establishes a new private connection to the message bus specified by address, using the supplied handlers.
Deprecated: use Dial with options instead.
func NewConn ¶
func NewConn(conn io.ReadWriteCloser, opts ...ConnOption) (*Conn, error)
NewConn creates a new private *Conn from an already established connection.
func NewConnHandler
deprecated
func NewConnHandler(conn io.ReadWriteCloser, handler Handler, signalHandler SignalHandler) (*Conn, error)
NewConnHandler creates a new private *Conn from an already established connection, using the supplied handlers.
Deprecated: use NewConn with options instead.
func SessionBus ¶
SessionBus returns a shared connection to the session bus, connecting to it if not already done.
func SessionBusPrivate ¶
func SessionBusPrivate(opts ...ConnOption) (*Conn, error)
SessionBusPrivate returns a new private connection to the session bus.
func SessionBusPrivateHandler
deprecated
func SessionBusPrivateHandler(handler Handler, signalHandler SignalHandler) (*Conn, error)
SessionBusPrivate returns a new private connection to the session bus.
Deprecated: use SessionBusPrivate with options instead.
func SessionBusPrivateNoAutoStartup ¶ added in v5.0.6
func SessionBusPrivateNoAutoStartup(opts ...ConnOption) (*Conn, error)
SessionBusPrivate returns a new private connection to the session bus. If the session bus is not already open, do not attempt to launch it.
func SystemBus ¶
SystemBus returns a shared connection to the system bus, connecting to it if not already done.
func SystemBusPrivate ¶
func SystemBusPrivate(opts ...ConnOption) (*Conn, error)
SystemBusPrivate returns a new private connection to the system bus. Note: this connection is not ready to use. One must perform Auth and Hello on the connection before it is usable.
func SystemBusPrivateHandler
deprecated
func SystemBusPrivateHandler(handler Handler, signalHandler SignalHandler) (*Conn, error)
SystemBusPrivateHandler returns a new private connection to the system bus, using the provided handlers.
Deprecated: use SystemBusPrivate with options instead.
func (*Conn) AddMatchSignal ¶
func (conn *Conn) AddMatchSignal(options ...MatchOption) error
AddMatchSignal registers the given match rule to receive broadcast signals based on their contents.
func (*Conn) AddMatchSignalContext ¶ added in v5.0.4
func (conn *Conn) AddMatchSignalContext(ctx context.Context, options ...MatchOption) error
AddMatchSignalContext acts like AddMatchSignal but takes a context.
func (*Conn) Auth ¶
Auth authenticates the connection, trying the given list of authentication mechanisms (in that order). If nil is passed, the EXTERNAL and DBUS_COOKIE_SHA1 mechanisms are tried for the current user. For private connections, this method must be called before sending any messages to the bus. Auth must not be called on shared connections.
func (*Conn) BusObject ¶
BusObject returns the object owned by the bus daemon which handles administrative requests.
func (*Conn) Close ¶
Close closes the connection. Any blocked operations will return with errors and the channels passed to Eavesdrop and Signal are closed. This method must not be called on shared connections.
func (*Conn) Context ¶ added in v5.0.3
Context returns the context associated with the connection. The context will be cancelled when the connection is closed.
func (*Conn) Eavesdrop ¶
Eavesdrop causes conn to send all incoming messages to the given channel without further processing. Method replies, errors and signals will not be sent to the appropriate channels and method calls will not be handled. If nil is passed, the normal behaviour is restored.
The caller has to make sure that ch is sufficiently buffered; if a message arrives when a write to ch is not possible, the message is discarded.
func (*Conn) Emit ¶
func (conn *Conn) Emit(path ObjectPath, name string, values ...interface{}) error
Emit emits the given signal on the message bus. The name parameter must be formatted as "interface.member", e.g., "org.freedesktop.DBus.NameLost".
Example ¶
conn, err := ConnectSystemBus() if err != nil { panic(err) } defer conn.Close() if err := conn.Emit("/foo/bar", "foo.bar.Baz", uint32(0xDAEDBEEF)); err != nil { panic(err) }
Output:
func (*Conn) Export ¶
func (conn *Conn) Export(v interface{}, path ObjectPath, iface string) error
Export registers the given value to be exported as an object on the message bus.
If a method call on the given path and interface is received, an exported method with the same name is called with v as the receiver if the parameters match and the last return value is of type *Error. If this *Error is not nil, it is sent back to the caller as an error. Otherwise, a method reply is sent with the other return values as its body.
Any parameters with the special type Sender are set to the sender of the dbus message when the method is called. Parameters of this type do not contribute to the dbus signature of the method (i.e. the method is exposed as if the parameters of type Sender were not there).
Similarly, any parameters with the type Message are set to the raw message received on the bus. Again, parameters of this type do not contribute to the dbus signature of the method.
Every method call is executed in a new goroutine, so the method may be called in multiple goroutines at once.
Method calls on the interface org.freedesktop.DBus.Peer will be automatically handled for every object.
Passing nil as the first parameter will cause conn to cease handling calls on the given combination of path and interface.
Export returns an error if path is not a valid path name.
func (*Conn) ExportAll ¶ added in v5.0.4
func (conn *Conn) ExportAll(v interface{}, path ObjectPath, iface string) error
ExportAll registers all exported methods defined by the given object on the message bus.
Unlike Export there is no requirement to have the last parameter as type *Error. If you want to be able to return error then you can append an error type parameter to your method signature. If the error returned is not nil, it is sent back to the caller as an error. Otherwise, a method reply is sent with the other return values as its body.
func (*Conn) ExportMethodTable ¶
func (conn *Conn) ExportMethodTable(methods map[string]interface{}, path ObjectPath, iface string) error
ExportMethodTable like Export registers the given methods as an object on the message bus. Unlike Export the it uses a method table to define the object instead of a native go object.
The method table is a map from method name to function closure representing the method. This allows an object exported on the bus to not necessarily be a native go object. It can be useful for generating exposed methods on the fly.
Any non-function objects in the method table are ignored.
func (*Conn) ExportSubtree ¶
func (conn *Conn) ExportSubtree(v interface{}, path ObjectPath, iface string) error
ExportSubtree works exactly like Export but registers the given value for an entire subtree rather under the root path provided.
In order to make this useful, one parameter in each of the value's exported methods should be a Message, in which case it will contain the raw message (allowing one to get access to the path that caused the method to be called).
Note that more specific export paths take precedence over less specific. For example, a method call using the ObjectPath /foo/bar/baz will call a method exported on /foo/bar before a method exported on /foo.
func (*Conn) ExportSubtreeMethodTable ¶
func (conn *Conn) ExportSubtreeMethodTable(methods map[string]interface{}, path ObjectPath, iface string) error
Like ExportSubtree, but with the same caveats as ExportMethodTable.
func (*Conn) ExportSubtreeWithMap ¶
func (conn *Conn) ExportSubtreeWithMap(v interface{}, mapping map[string]string, path ObjectPath, iface string) error
ExportSubtreeWithMap works exactly like ExportSubtree but provides the ability to remap method names (e.g. export a lower-case method).
The keys in the map are the real method names (exported on the struct), and the values are the method names to be exported on DBus.
func (*Conn) ExportWithMap ¶
func (conn *Conn) ExportWithMap(v interface{}, mapping map[string]string, path ObjectPath, iface string) error
ExportWithMap works exactly like Export but provides the ability to remap method names (e.g. export a lower-case method).
The keys in the map are the real method names (exported on the struct), and the values are the method names to be exported on DBus.
func (*Conn) Hello ¶
Hello sends the initial org.freedesktop.DBus.Hello call. This method must be called after authentication, but before sending any other messages to the bus. Hello must not be called for shared connections.
func (*Conn) Names ¶
Names returns the list of all names that are currently owned by this connection. The slice is always at least one element long, the first element being the unique name of the connection.
func (*Conn) Object ¶
func (conn *Conn) Object(dest string, path ObjectPath) BusObject
Object returns the object identified by the given destination name and path.
func (*Conn) ReleaseName ¶
func (conn *Conn) ReleaseName(name string) (ReleaseNameReply, error)
ReleaseName calls org.freedesktop.DBus.ReleaseName and awaits a response.
func (*Conn) RemoveMatchSignal ¶
func (conn *Conn) RemoveMatchSignal(options ...MatchOption) error
RemoveMatchSignal removes the first rule that matches previously registered with AddMatchSignal.
func (*Conn) RemoveMatchSignalContext ¶ added in v5.0.4
func (conn *Conn) RemoveMatchSignalContext(ctx context.Context, options ...MatchOption) error
RemoveMatchSignalContext acts like RemoveMatchSignal but takes a context.
func (*Conn) RemoveSignal ¶
RemoveSignal removes the given channel from the list of the registered channels.
Panics if the signal handler is not a `SignalRegistrar`.
func (*Conn) RequestName ¶
func (conn *Conn) RequestName(name string, flags RequestNameFlags) (RequestNameReply, error)
RequestName calls org.freedesktop.DBus.RequestName and awaits a response.
func (*Conn) Send ¶
Send sends the given message to the message bus. You usually don't need to use this; use the higher-level equivalents (Call / Go, Emit and Export) instead. If msg is a method call and NoReplyExpected is not set, a non-nil call is returned and the same value is sent to ch (which must be buffered) once the call is complete. Otherwise, ch is ignored and a Call structure is returned of which only the Err member is valid.
func (*Conn) SendWithContext ¶
SendWithContext acts like Send but takes a context
func (*Conn) Signal ¶
Signal registers the given channel to be passed all received signal messages.
Multiple of these channels can be registered at the same time. The channel is closed if the Conn is closed; it should not be closed by the caller before RemoveSignal was called on it.
These channels are "overwritten" by Eavesdrop; i.e., if there currently is a channel for eavesdropped messages, this channel receives all signals, and none of the channels passed to Signal will receive any signals.
Panics if the signal handler is not a `SignalRegistrar`.
func (*Conn) SupportsUnixFDs ¶
SupportsUnixFDs returns whether the underlying transport supports passing of unix file descriptors. If this is false, method calls containing unix file descriptors will return an error and emitted signals containing them will not be sent.
type ConnOption ¶
ConnOption is a connection option.
func WithAuth ¶ added in v5.0.4
func WithAuth(methods ...Auth) ConnOption
WithAuth sets authentication methods for the auth conversation.
func WithContext ¶ added in v5.0.3
func WithContext(ctx context.Context) ConnOption
WithContext overrides the default context for the connection.
func WithHandler ¶
func WithHandler(handler Handler) ConnOption
WithHandler overrides the default handler.
func WithIncomingInterceptor ¶ added in v5.0.3
func WithIncomingInterceptor(interceptor Interceptor) ConnOption
WithIncomingInterceptor sets the given interceptor for incoming messages.
func WithOutgoingInterceptor ¶ added in v5.0.3
func WithOutgoingInterceptor(interceptor Interceptor) ConnOption
WithOutgoingInterceptor sets the given interceptor for outgoing messages.
func WithSerialGenerator ¶
func WithSerialGenerator(gen SerialGenerator) ConnOption
WithSerialGenerator overrides the default signals generator.
func WithSignalHandler ¶
func WithSignalHandler(handler SignalHandler) ConnOption
WithSignalHandler overrides the default signal handler.
type DBusError ¶
type DBusError interface {
DBusError() (string, []interface{})
}
A DBusError is used to convert a generic object to a D-Bus error.
Any custom error mechanism may implement this interface to provide a custom encoding of the error on D-Bus. By default if a normal error is returned, it will be encoded as the generic "org.freedesktop.DBus.Error.Failed" error. By implementing this interface as well a custom encoding may be provided.
type Error ¶
type Error struct { Name string Body []interface{} }
Error represents a D-Bus message of type Error.
func MakeFailedError ¶
func MakeNoObjectError ¶ added in v5.0.5
func MakeNoObjectError(path ObjectPath) Error
func MakeUnknownInterfaceError ¶ added in v5.0.5
func MakeUnknownMethodError ¶ added in v5.0.5
type Flags ¶
type Flags byte
Flags represents the possible flags of a D-Bus message.
const ( // FlagNoReplyExpected signals that the message is not expected to generate // a reply. If this flag is set on outgoing messages, any possible reply // will be discarded. FlagNoReplyExpected Flags = 1 << iota // FlagNoAutoStart signals that the message bus should not automatically // start an application when handling this message. FlagNoAutoStart // FlagAllowInteractiveAuthorization may be set on a method call // message to inform the receiving side that the caller is prepared // to wait for interactive authorization, which might take a // considerable time to complete. For instance, if this flag is set, // it would be appropriate to query the user for passwords or // confirmation via Polkit or a similar framework. FlagAllowInteractiveAuthorization )
type FormatError ¶
type FormatError string
A FormatError is an error in the wire format.
func (FormatError) Error ¶
func (e FormatError) Error() string
type Handler ¶
type Handler interface {
LookupObject(path ObjectPath) (ServerObject, bool)
}
Handler is the representation of a D-Bus Application.
The Handler must have a way to lookup objects given an ObjectPath. The returned object must implement the ServerObject interface.
type HeaderField ¶
type HeaderField byte
HeaderField represents the possible byte codes for the headers of a D-Bus message.
const ( FieldPath HeaderField = 1 + iota FieldInterface FieldMember FieldErrorName FieldReplySerial FieldDestination FieldSender FieldSignature FieldUnixFDs )
type Interceptor ¶ added in v5.0.3
type Interceptor func(msg *Message)
Interceptor intercepts incoming and outgoing messages.
type Interface ¶
An Interface is the representation of a D-Bus Interface.
Interfaces are a grouping of methods implemented by the Objects. Interfaces are responsible for routing method calls.
type InvalidMessageError ¶
type InvalidMessageError string
An InvalidMessageError describes the reason why a D-Bus message is regarded as invalid.
func (InvalidMessageError) Error ¶
func (e InvalidMessageError) Error() string
type InvalidTypeError ¶
An InvalidTypeError signals that a value which cannot be represented in the D-Bus wire format was passed to a function.
func (InvalidTypeError) Error ¶
func (e InvalidTypeError) Error() string
type MatchOption ¶
type MatchOption struct {
// contains filtered or unexported fields
}
MatchOption specifies option for dbus routing match rule. Options can be constructed with WithMatch* helpers. For full list of available options consult https://dbus.freedesktop.org/doc/dbus-specification.html#message-bus-routing-match-rules
func WithMatchArg ¶ added in v5.0.4
func WithMatchArg(argIdx int, value string) MatchOption
WithMatchArg sets argN match option, range of N is 0 to 63.
func WithMatchArg0Namespace ¶ added in v5.0.4
func WithMatchArg0Namespace(arg0Namespace string) MatchOption
WithMatchArg0Namespace sets arg0namespace match option.
func WithMatchArgPath ¶ added in v5.0.4
func WithMatchArgPath(argIdx int, path string) MatchOption
WithMatchArgPath sets argN path match option, range of N is 0 to 63.
func WithMatchDestination ¶
func WithMatchDestination(destination string) MatchOption
WithMatchDestination sets destination match option.
func WithMatchEavesdrop ¶ added in v5.0.4
func WithMatchEavesdrop(eavesdrop bool) MatchOption
WithMatchEavesdrop sets eavesdrop match option.
func WithMatchInterface ¶
func WithMatchInterface(iface string) MatchOption
WithMatchSender sets interface match option.
func WithMatchMember ¶
func WithMatchMember(member string) MatchOption
WithMatchMember sets member match option.
func WithMatchObjectPath ¶
func WithMatchObjectPath(path ObjectPath) MatchOption
WithMatchObjectPath creates match option that filters events based on given path
func WithMatchOption ¶
func WithMatchOption(key, value string) MatchOption
WithMatchOption creates match option with given key and value
func WithMatchPathNamespace ¶
func WithMatchPathNamespace(namespace ObjectPath) MatchOption
WithMatchPathNamespace sets path_namespace match option.
func WithMatchSender ¶
func WithMatchSender(sender string) MatchOption
WithMatchSender sets sender match option.
type Message ¶
type Message struct { Type Flags Headers map[HeaderField]Variant Body []interface{} // contains filtered or unexported fields }
Message represents a single D-Bus message.
func DecodeMessage ¶
DecodeMessage tries to decode a single message in the D-Bus wire format from the given reader. The byte order is figured out from the first byte. The possibly returned error can be an error of the underlying reader, an InvalidMessageError or a FormatError.
func DecodeMessageWithFDs ¶ added in v5.0.5
func (*Message) EncodeTo ¶
EncodeTo encodes and sends a message to the given writer. The byte order must be either binary.LittleEndian or binary.BigEndian. If the message is not valid or an error occurs when writing, an error is returned.
func (*Message) EncodeToWithFDs ¶ added in v5.0.5
func (*Message) IsValid ¶
IsValid checks whether msg is a valid message and returns an InvalidMessageError or FormatError if it is not.
type Method ¶
type Method interface { // Call requires that all arguments are decoded before being passed to it. Call(args ...interface{}) ([]interface{}, error) NumArguments() int NumReturns() int // ArgumentValue returns a representative value for the argument at position // it should be of the proper type. reflect.Zero would be a good mechanism // to use for this Value. ArgumentValue(position int) interface{} // ReturnValue returns a representative value for the return at position // it should be of the proper type. reflect.Zero would be a good mechanism // to use for this Value. ReturnValue(position int) interface{} }
A Method represents the exposed methods on D-Bus.
type Object ¶
type Object struct {
// contains filtered or unexported fields
}
Object represents a remote object on which methods can be invoked.
func (*Object) AddMatchSignal
deprecated
func (o *Object) AddMatchSignal(iface, member string, options ...MatchOption) *Call
AddMatchSignal subscribes BusObject to signals from specified interface, method (member). Additional filter rules can be added via WithMatch* option constructors. Note: To filter events by object path you have to specify this path via an option.
Deprecated: use (*Conn) AddMatchSignal instead.
func (*Object) Call ¶
Call calls a method with (*Object).Go and waits for its reply.
Example ¶
var list []string conn, err := ConnectSessionBus() if err != nil { panic(err) } defer conn.Close() err = conn.BusObject().Call("org.freedesktop.DBus.ListNames", 0).Store(&list) if err != nil { panic(err) } for _, v := range list { fmt.Println(v) }
Output:
func (*Object) CallWithContext ¶
func (o *Object) CallWithContext(ctx context.Context, method string, flags Flags, args ...interface{}) *Call
CallWithContext acts like Call but takes a context
func (*Object) Destination ¶
Destination returns the destination that calls on (o *Object) are sent to.
func (*Object) GetProperty ¶
GetProperty calls org.freedesktop.DBus.Properties.Get on the given object. The property name must be given in interface.member notation.
func (*Object) Go ¶
Go calls a method with the given arguments asynchronously. It returns a Call structure representing this method call. The passed channel will return the same value once the call is done. If ch is nil, a new channel will be allocated. Otherwise, ch has to be buffered or Go will panic.
If the flags include FlagNoReplyExpected, ch is ignored and a Call structure is returned with any error in Err and a closed channel in Done containing the returned Call as it's one entry.
If the method parameter contains a dot ('.'), the part before the last dot specifies the interface on which the method is called.
Example ¶
conn, err := ConnectSessionBus() if err != nil { panic(err) } defer conn.Close() ch := make(chan *Call, 10) conn.BusObject().Go("org.freedesktop.DBus.ListActivatableNames", 0, ch) select { case call := <-ch: if call.Err != nil { panic(err) } list := call.Body[0].([]string) for _, v := range list { fmt.Println(v) } // put some other cases here }
Output:
func (*Object) GoWithContext ¶
func (o *Object) GoWithContext(ctx context.Context, method string, flags Flags, ch chan *Call, args ...interface{}) *Call
GoWithContext acts like Go but takes a context
func (*Object) Path ¶
func (o *Object) Path() ObjectPath
Path returns the path that calls on (o *Object") are sent to.
func (*Object) RemoveMatchSignal
deprecated
func (o *Object) RemoveMatchSignal(iface, member string, options ...MatchOption) *Call
RemoveMatchSignal unsubscribes BusObject from signals from specified interface, method (member). Additional filter rules can be added via WithMatch* option constructors
Deprecated: use (*Conn) RemoveMatchSignal instead.
func (*Object) SetProperty ¶
SetProperty calls org.freedesktop.DBus.Properties.Set on the given object. The property name must be given in interface.member notation.
func (*Object) StoreProperty ¶ added in v5.0.4
StoreProperty calls org.freedesktop.DBus.Properties.Get on the given object. The property name must be given in interface.member notation. It stores the returned property into the provided value.
type ObjectPath ¶
type ObjectPath string
An ObjectPath is an object path as defined by the D-Bus spec.
func (ObjectPath) IsValid ¶
func (o ObjectPath) IsValid() bool
IsValid returns whether the object path is valid.
type ReleaseNameReply ¶
type ReleaseNameReply uint32
ReleaseNameReply is the reply to a ReleaseName call.
const ( ReleaseNameReplyReleased ReleaseNameReply = 1 + iota ReleaseNameReplyNonExistent ReleaseNameReplyNotOwner )
type RequestNameFlags ¶
type RequestNameFlags uint32
RequestNameFlags represents the possible flags for a RequestName call.
const ( NameFlagAllowReplacement RequestNameFlags = 1 << iota NameFlagReplaceExisting NameFlagDoNotQueue )
type RequestNameReply ¶
type RequestNameReply uint32
RequestNameReply is the reply to a RequestName call.
const ( RequestNameReplyPrimaryOwner RequestNameReply = 1 + iota RequestNameReplyInQueue RequestNameReplyExists RequestNameReplyAlreadyOwner )
type Sender ¶
type Sender string
Sender is a type which can be used in exported methods to receive the message sender.
type Sequence ¶ added in v5.0.4
type Sequence uint64
Sequence represents the value of a monotonically increasing counter.
const ( // NoSequence indicates the absence of a sequence value. NoSequence Sequence = 0 )
type SerialGenerator ¶
SerialGenerator is responsible for serials generation.
Different approaches for the serial generation can be used, maintaining a map guarded with a mutex (the standard way) or simply increment an atomic counter.
type ServerObject ¶
ServerObject is the representation of an D-Bus Object.
Objects are registered at a path for a given Handler. The Objects implement D-Bus interfaces. The semantics of Interface lookup is up to the implementation of the ServerObject. The ServerObject implementation may choose to implement empty string as a valid interface represeting all methods or not per the D-Bus specification.
type Signal ¶
type Signal struct { Sender string Path ObjectPath Name string Body []interface{} Sequence Sequence }
Signal represents a D-Bus message of type Signal. The name member is given in "interface.member" notation, e.g. org.freedesktop.D-Bus.NameLost.
type SignalHandler ¶
A SignalHandler is responsible for delivering a signal.
Signal delivery may be changed from the default channel based approach by Handlers implementing the SignalHandler interface.
func NewSequentialSignalHandler ¶ added in v5.0.4
func NewSequentialSignalHandler() SignalHandler
NewSequentialSignalHandler returns an instance of a new signal handler that guarantees sequential processing of signals. It is a guarantee of this signal handler that signals will be written to channels in the order they are received on the DBus connection.
type SignalRegistrar ¶
SignalRegistrar manages signal delivery channels.
This is an optional set of methods for `SignalHandler`.
type Signature ¶
type Signature struct {
// contains filtered or unexported fields
}
Signature represents a correct type signature as specified by the D-Bus specification. The zero value represents the empty signature, "".
func ParseSignature ¶
ParseSignature returns the signature represented by this string, or a SignatureError if the string is not a valid signature.
func ParseSignatureMust ¶
ParseSignatureMust behaves like ParseSignature, except that it panics if s is not valid.
func SignatureOf ¶
func SignatureOf(vs ...interface{}) Signature
SignatureOf returns the concatenation of all the signatures of the given values. It panics if one of them is not representable in D-Bus.
func SignatureOfType ¶
SignatureOfType returns the signature of the given type. It panics if the type is not representable in D-Bus.
type SignatureError ¶
A SignatureError indicates that a signature passed to a function or received on a connection is not a valid signature.
func (SignatureError) Error ¶
func (e SignatureError) Error() string
type Terminator ¶
type Terminator interface {
Terminate()
}
Terminator allows a handler to implement a shutdown mechanism that is called when the connection terminates.
type UnixFD ¶
type UnixFD int32
A UnixFD is a Unix file descriptor sent over the wire. See the package-level documentation for more information about Unix file descriptor passsing.
type UnixFDIndex ¶
type UnixFDIndex uint32
A UnixFDIndex is the representation of a Unix file descriptor in a message.
type Variant ¶
type Variant struct {
// contains filtered or unexported fields
}
Variant represents the D-Bus variant type.
func MakeVariant ¶
func MakeVariant(v interface{}) Variant
MakeVariant converts the given value to a Variant. It panics if v cannot be represented as a D-Bus type.
func MakeVariantWithSignature ¶
MakeVariantWithSignature converts the given value to a Variant.
func ParseVariant ¶
ParseVariant parses the given string as a variant as described at https://developer.gnome.org/glib/stable/gvariant-text.html. If sig is not empty, it is taken to be the expected signature for the variant.
func (Variant) Store ¶ added in v5.0.4
Store converts the variant into a native go type using the same mechanism as the "Store" function.
func (Variant) String ¶
String returns the string representation of the underlying value of v as described at https://developer.gnome.org/glib/stable/gvariant-text.html.
Source Files ¶
- auth.go
- auth_anonymous.go
- auth_external.go
- auth_sha1.go
- call.go
- conn.go
- conn_other.go
- conn_unix.go
- dbus.go
- decoder.go
- default_handler.go
- doc.go
- encoder.go
- escape.go
- export.go
- homedir.go
- match.go
- message.go
- object.go
- sequence.go
- sequential_handler.go
- server_interfaces.go
- sig.go
- transport_generic.go
- transport_nonce_tcp.go
- transport_tcp.go
- transport_unix.go
- transport_unixcred_linux.go
- variant.go
- variant_lexer.go
- variant_parser.go
Directories ¶
Path | Synopsis |
---|---|
Package introspect provides some utilities for dealing with the DBus introspection format.
|
Package introspect provides some utilities for dealing with the DBus introspection format. |
Package prop provides the Properties struct which can be used to implement org.freedesktop.DBus.Properties.
|
Package prop provides the Properties struct which can be used to implement org.freedesktop.DBus.Properties. |