This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Request that the connection be established. This will be done
asynchronously and errors will be returned by emitting
Calling this method on a Connection that is already connecting or connected is allowed, and has no effect.
The set of optional interfaces supported by this connection. Before the connection status changes to CONNECTED, this property may change at any time, but it is guaranteed that interfaces will only be added, not removed. After the connection status changes to CONNECTED, this property cannot change further.
There is no explicit change notification; reasonable behaviour for a client would be to retrieve the interfaces list once initially, and once more when it becomes CONNECTED.
In some connection managers, certain capabilities of a connection are known to be implemented for all connections (e.g. support for Presence), and some interfaces (like Presence) can even be used before connecting. Other capabilities may or may not exist, depending on server functionality; by the time the connection goes CONNECTED, the connection manager is expected to have evaluated the server's functionality and enabled any extra interfaces for the remainder of the Connection's lifetime.
The current status of the connection. Change notification is via
the
If retrieval of property succeeds and yields the value Disconnected, this indicates that the connection has not yet been established. If connection has been attempted and failed, the Connection object SHOULD be removed from the bus entirely, meaning that retrieval of this property SHOULD fail.
A reason why the status of the connection changed. Apart from Requested, the values of this enumeration only make sense as reasons why the status changed to Disconnected.
There is no reason set for this state change. Unknown status reasons SHOULD be treated like this reason.
When disconnected for this reason, the equivalent D-Bus error is
im.telepathy.v1.Error.
.
The change is in response to a user request. Changes to the Connecting or Connected status SHOULD always indicate this reason; changes to the Disconnected status SHOULD indicate this reason if and only if the disconnection was requested by the user.
When disconnected for this reason, the equivalent D-Bus error is
im.telepathy.v1.Error.Cancelled
.
There was an error sending or receiving on the network socket.
When the status changes from Connecting to Disconnected for this
reason, the equivalent D-Bus error is either
im.telepathy.v1.Error.NetworkError
,
im.telepathy.v1.Error.ConnectionRefused
,
im.telepathy.v1.Error.ConnectionFailed
or some more specific error.
When the status changes from Connected to Disconnected for this
reason, the equivalent D-Bus error is either
im.telepathy.v1.Error.NetworkError
,
im.telepathy.v1.Error.ConnectionLost
or some more specific error.
The username or password was invalid.
When disconnected for this reason, the equivalent D-Bus error is
im.telepathy.v1.Error.AuthenticationFailed
.
There was an error negotiating SSL on this connection, or encryption was unavailable and require-encryption was set when the connection was created.
When disconnected for this reason, the equivalent D-Bus error is
im.telepathy.v1.Error.EncryptionNotAvailable
if encryption was not available at all, or
im.telepathy.v1.Error.EncryptionError
if encryption failed.
In general, this reason indicates that the requested account name or other identification could not be used due to conflict with another connection. It can be divided into three cases:
im.telepathy.v1.Error.RegistrationExists
.
im.telepathy.v1.Error.AlreadyConnected
.
im.telepathy.v1.Error.ConnectionReplaced
.
The server did not provide a SSL certificate.
When disconnected for this reason, the equivalent D-Bus error is
im.telepathy.v1.Error.Cert.NotProvided
.
The server's SSL certificate is signed by an untrusted certifying authority. This error SHOULD NOT be used to represent a self-signed certificate: use the more specific Cert_Self_Signed reason for that.
When disconnected for this reason, the equivalent D-Bus error is
im.telepathy.v1.Error.Cert.Untrusted
.
The server's SSL certificate has expired.
When disconnected for this reason, the equivalent D-Bus error is
im.telepathy.v1.Error.Cert.Expired
.
The server's SSL certificate is not yet valid.
When disconnected for this reason, the equivalent D-Bus error is
im.telepathy.v1.Error.Cert.NotActivated
.
The server's SSL certificate did not match its hostname.
When disconnected for this reason, the equivalent D-Bus error is
im.telepathy.v1.Error.Cert.HostnameMismatch
.
The server's SSL certificate does not have the expected fingerprint.
When disconnected for this reason, the equivalent D-Bus error is
im.telepathy.v1.Error.Cert.FingerprintMismatch
.
The server's SSL certificate is self-signed.
When disconnected for this reason, the equivalent D-Bus error is
im.telepathy.v1.Error.Cert.SelfSigned
.
There was some other error validating the server's SSL certificate.
When disconnected for this reason, the equivalent D-Bus error is
im.telepathy.v1.Error.Cert.Invalid
.
The server's SSL certificate has been revoked.
When disconnected for this reason, the equivalent D-Bus error is
im.telepathy.v1.Error.Cert.Revoked
.
The server's SSL certificate uses an insecure algorithm, or is cryptographically weak.
When disconnected for this reason, the equivalent D-Bus error is
im.telepathy.v1.Error.Cert.Insecure
.
The length in bytes of the server certificate, or the depth of the sever certificate chain exceed the limits imposed by the crypto library.
When disconnected for this reason, the equivalent D-Bus error is
im.telepathy.v1.Error.Cert.LimitExceeded
Emitted when an error occurs that renders this connection unusable.
Whenever this signal is emitted, it MUST immediately be followed by
a
Connection managers SHOULD emit this signal on disconnection, but need not do so. Clients MUST support connection managers that emit StatusChanged(Disconnected, ...) without first emitting ConnectionError.
This signal provides additional information about the reason for disconnection. The reason for connection is always straightforward - it was requested - so it does not need further explanation. However, on errors, it can be useful to provide additional information.
The
im.telepathy.v1.Error.ConnectionRefused
for Connection_Status_Reason_Network_Error)
or a protocol-specific or connection-manager-specific error in a
suitable namespace.
Additional information about the error, which may include the following well-known keys:
The normalized contact's identifier. Not necessarily the same string
as passed to
Register a client's interest in notifications related to one or more interfaces.
Groups of notifications are identified by a token which is either a D-Bus interface name, or a string that starts with a D-Bus interface name. The meaning of each token is given by that D-Bus interface, which MUST define it in its documentation.
Initially, all interests are in entire interface, but allowing other strings allows subscription to part of an interface; for instance, an interest in ...MailNotification/count could track the number of messages without caring about their detailed content.
For each token with which this method interacts, the
Connection tracks an "interest count" (like a reference count) for
each unique bus name that has called this method. When a client
calls this method, for each token, the interest count for its
unique bus name is incremented; when
The Connection can then use these reference counts to avoid subscribing to protocol-level notifications unless at least one client has a non-zero interest count for the relevant token.
This method exists to reduce memory and network overhead when there is no active subscription.
One situation where this is useful is geoloc+notify
capability, it will be sent location
updates for all contacts. To avoid consuming resources for this,
the connection should avoid advertising that capability until
a client has expressed an interest in contacts' locations.
Another example of a protocol that benefits from this method is
the Google XMPP Mail Notification extension, which can be used
to implement
If this method is called for an interface that might require
protocol-level subscription, but the connection cannot set up
that subscription yet (for instance because the
Clients MAY ignore any errors raised by this method; it is intended to be called with the reply ignored.
The only reason it could fail is if it's unimplemented, in which case the only thing the client can usefully do is to proceed as if it had succeeded.
Interfaces or parts of interfaces in which to register an
interest, represented by either a
If the Connection does not support one of these tokens, this is not considered to be an error; the unsupported token is simply ignored.
Release an interest registered using
Clients MAY ignore any errors raised by this method; it is intended to be called with the reply ignored.
The only reasons it could fail are if it's unimplemented, or if the client's reference-counting is wrong and it has tried to remove a client interest that it did not add. In both cases, there's nothing the client could do about it.
Interfaces or parts of interfaces that were previously passed to
This models a connection to a single user account on a communication service. Its basic capability is to provide the facility to request and receive channels of differing types (such as text channels or streaming media channels) which are used to carry out further communication.
In order to allow Connection objects to be discovered by new clients,
the object path and well-known bus name MUST be of the form
/im/telepathy/v1/Connection/cmname/proto/account
and
im.telepathy.v1.Connection.cmname.proto.account
where:
account SHOULD be formed such that any valid distinct connection instance on this protocol has a distinct name. This might be formed by including the server name followed by the user name (escaped via some suitable mechanism like telepathy-glib's tp_escape_as_identifier() function to preserve uniqueness); on protocols where connecting multiple times is permissable, a per-connection identifier might be necessary to ensure uniqueness.
Clients MAY parse the object path to determine the connection manager name and the protocol, but MUST NOT attempt to parse the account part. Connection managers MAY use any unique string for this part.
As well as the methods and signatures below, arbitrary interfaces may be
provided by the Connection object to represent extra connection-wide
functionality, such as the Connection.Interface.Presence for
receiving and
reporting presence information, and Connection.Interface.Aliasing for
connections where contacts may set and change an alias for themselves.
These interfaces can be discovered using the
Contacts, rooms, and server-stored lists (such as subscribed contacts, block lists, or allow lists) on a service are all represented by immutable handles, which are unsigned non-zero integers which are valid only for the lifetime of the connection object, and are used throughout the protocol where these entities are represented, allowing simple testing of equality within clients.
Zero as a handle value is sometimes used as a "null" value to mean the absence of a contact, room, etc.
Handles have per-type uniqueness, meaning that every (handle type, handle number) tuple is guaranteed to be unique within a connection for the lifetime of the connection and that a handle alone (without its type) is meaningless or ambiguous.