Service Brokers

Service Brokers — Using service brokers to request available services

Synopsis

#include <dexter.h>

#define             DEXTER_SERVICE_BROKER_ERROR
enum                DexterServiceBrokerError;

                    DexterServiceBroker;
enum                DexterServiceType;

DexterServiceBroker * dexter_service_broker_new         (DexterChannel *channel);
DexterPluginServiceGroup * dexter_service_broker_get_services
                                                        (DexterServiceBroker *service_broker,
                                                         gint service_type,
                                                         GError **error);
void                dexter_service_broker_free          (DexterServiceBroker *service_broker);

Description

Service brokers are Libdexter objects used to fetch available service information and return it in the form of a collection known as a service group. If a channel is specified during dexter_service_broker_new(), the service broker retrieves the service group from the remote host over the channel, otherwise it operates locally (in-process).

Service brokers must be freed with dexter_service_broker_free() when done.

Details

DEXTER_SERVICE_BROKER_ERROR

#define DEXTER_SERVICE_BROKER_ERROR dexter_service_broker_error_quark()

The error domain of the libdexter service broker subsystem.


enum DexterServiceBrokerError

typedef enum {
  DEXTER_SERVICE_BROKER_ERROR_FAILED
} DexterServiceBrokerError;

Error codes for DexterServiceBroker operations.

DEXTER_SERVICE_BROKER_ERROR_FAILED

generic failure.

DexterServiceBroker

typedef struct _DexterServiceBroker DexterServiceBroker;

Opaque type with no public members.


enum DexterServiceType

typedef enum {
  DEXTER_SERVICE_SAMPLER = 1<<0
} DexterServiceType;

Or-able flags used in service_type parameter of the dexter_service_broker_get_services() api.

(At present only one service type is implemented).

DEXTER_SERVICE_SAMPLER

flag for requesting sampler services.

dexter_service_broker_new ()

DexterServiceBroker * dexter_service_broker_new         (DexterChannel *channel);

Creates a DexterServiceBroker over the specified DexterChannel, if indicated.

If no DexterChannel is indicated, the service broker operates locally (in-process).

The service broker must be freed when done with dexter_service_broker_free().

channel :

DexterChannel over which to create the service broker, or NULL for local operation.

Returns :

pointer to newly allocated DexterServiceBroker.

dexter_service_broker_get_services ()

DexterPluginServiceGroup * dexter_service_broker_get_services
                                                        (DexterServiceBroker *service_broker,
                                                         gint service_type,
                                                         GError **error);

Requests and delivers a service group, either for the local process, or for the remote host if created on a DexterChannel.

The service group must be freed with dexterplugin_service_group_free() when done.

service_broker :

a DexterServiceBroker.

service_type :

boolean OR of service type flags from DexterServiceType.

error :

return location for optional GError.

Returns :

DexterPluginServiceGroup service group.

dexter_service_broker_free ()

void                dexter_service_broker_free          (DexterServiceBroker *service_broker);

Frees the DexterServiceBroker previously created with dexter_service_broker_new().

service_broker :

a DexterServiceBroker.