Sebastiaan van Stijn 664c0d3201 vendor: github.com/godbus/dbus/v5 v5.1.0 2 years ago
..
CONTRIBUTING.md e5d28115ee vendor: regenerate 3 years ago
LICENSE 9a82a9a8ea vendor containerd, BuildKit, protobuf, grpc, and golang.org/x 5 years ago
MAINTAINERS e5d28115ee vendor: regenerate 3 years ago
README.md b79dec8138 vendor: github.com/opencontainers/runc v1.1.0 3 years ago
auth.go 664c0d3201 vendor: github.com/godbus/dbus/v5 v5.1.0 2 years ago
auth_anonymous.go 9a82a9a8ea vendor containerd, BuildKit, protobuf, grpc, and golang.org/x 5 years ago
auth_external.go 9a82a9a8ea vendor containerd, BuildKit, protobuf, grpc, and golang.org/x 5 years ago
auth_sha1.go 9a82a9a8ea vendor containerd, BuildKit, protobuf, grpc, and golang.org/x 5 years ago
call.go 3987dc264b vendor: github.com/godbus/dbus/v5 v5.0.4 4 years ago
conn.go 664c0d3201 vendor: github.com/godbus/dbus/v5 v5.1.0 2 years ago
conn_darwin.go 9a82a9a8ea vendor containerd, BuildKit, protobuf, grpc, and golang.org/x 5 years ago
conn_other.go 664c0d3201 vendor: github.com/godbus/dbus/v5 v5.1.0 2 years ago
conn_unix.go 9a82a9a8ea vendor containerd, BuildKit, protobuf, grpc, and golang.org/x 5 years ago
conn_windows.go 9a82a9a8ea vendor containerd, BuildKit, protobuf, grpc, and golang.org/x 5 years ago
dbus.go 664c0d3201 vendor: github.com/godbus/dbus/v5 v5.1.0 2 years ago
decoder.go b79dec8138 vendor: github.com/opencontainers/runc v1.1.0 3 years ago
default_handler.go 3987dc264b vendor: github.com/godbus/dbus/v5 v5.0.4 4 years ago
doc.go 664c0d3201 vendor: github.com/godbus/dbus/v5 v5.1.0 2 years ago
encoder.go b79dec8138 vendor: github.com/opencontainers/runc v1.1.0 3 years ago
escape.go 664c0d3201 vendor: github.com/godbus/dbus/v5 v5.1.0 2 years ago
export.go 664c0d3201 vendor: github.com/godbus/dbus/v5 v5.1.0 2 years ago
homedir.go 664c0d3201 vendor: github.com/godbus/dbus/v5 v5.1.0 2 years ago
match.go 3987dc264b vendor: github.com/godbus/dbus/v5 v5.0.4 4 years ago
message.go 664c0d3201 vendor: github.com/godbus/dbus/v5 v5.1.0 2 years ago
object.go 3987dc264b vendor: github.com/godbus/dbus/v5 v5.0.4 4 years ago
sequence.go 3987dc264b vendor: github.com/godbus/dbus/v5 v5.0.4 4 years ago
sequential_handler.go 3987dc264b vendor: github.com/godbus/dbus/v5 v5.0.4 4 years ago
server_interfaces.go 664c0d3201 vendor: github.com/godbus/dbus/v5 v5.1.0 2 years ago
sig.go 664c0d3201 vendor: github.com/godbus/dbus/v5 v5.1.0 2 years ago
transport_darwin.go 9a82a9a8ea vendor containerd, BuildKit, protobuf, grpc, and golang.org/x 5 years ago
transport_generic.go b79dec8138 vendor: github.com/opencontainers/runc v1.1.0 3 years ago
transport_nonce_tcp.go 9a82a9a8ea vendor containerd, BuildKit, protobuf, grpc, and golang.org/x 5 years ago
transport_tcp.go 9a82a9a8ea vendor containerd, BuildKit, protobuf, grpc, and golang.org/x 5 years ago
transport_unix.go 664c0d3201 vendor: github.com/godbus/dbus/v5 v5.1.0 2 years ago
transport_unixcred_dragonfly.go 9a82a9a8ea vendor containerd, BuildKit, protobuf, grpc, and golang.org/x 5 years ago
transport_unixcred_freebsd.go 3987dc264b vendor: github.com/godbus/dbus/v5 v5.0.4 4 years ago
transport_unixcred_linux.go 9a82a9a8ea vendor containerd, BuildKit, protobuf, grpc, and golang.org/x 5 years ago
transport_unixcred_netbsd.go b79dec8138 vendor: github.com/opencontainers/runc v1.1.0 3 years ago
transport_unixcred_openbsd.go 9a82a9a8ea vendor containerd, BuildKit, protobuf, grpc, and golang.org/x 5 years ago
transport_zos.go 664c0d3201 vendor: github.com/godbus/dbus/v5 v5.1.0 2 years ago
variant.go 664c0d3201 vendor: github.com/godbus/dbus/v5 v5.1.0 2 years ago
variant_lexer.go 9a82a9a8ea vendor containerd, BuildKit, protobuf, grpc, and golang.org/x 5 years ago
variant_parser.go 9a82a9a8ea vendor containerd, BuildKit, protobuf, grpc, and golang.org/x 5 years ago

README.md

Build Status

dbus

dbus is a simple library that implements native Go client bindings for the D-Bus message bus system.

Features

  • Complete native implementation of the D-Bus message protocol
  • Go-like API (channels for signals / asynchronous method calls, Goroutine-safe connections)
  • Subpackages that help with the introspection / property interfaces

Installation

This packages requires Go 1.12 or later. It can be installed by running the command below:

go get github.com/godbus/dbus/v5

Usage

The complete package documentation and some simple examples are available at godoc.org. Also, the _examples directory gives a short overview over the basic usage.

Projects using godbus

  • fyne a cross platform GUI in Go inspired by Material Design.
  • fynedesk a full desktop environment for Linux/Unix using Fyne.
  • go-bluetooth provides a bluetooth client over bluez dbus API.
  • iwd go bindings for the internet wireless daemon "iwd".
  • notify provides desktop notifications over dbus into a library.
  • playerbm a bookmark utility for media players.

Please note that the API is considered unstable for now and may change without further notice.

License

go.dbus is available under the Simplified BSD License; see LICENSE for the full text.

Nearly all of the credit for this library goes to github.com/guelfey/go.dbus.