Timed Samplers

Timed Samplers — Using timed samplers for repetitive data snapshots

Synopsis

#include <dexter.h>

#define             DEXTER_TIMEDSAMPLER_ERROR
enum                DexterTimedSamplerError;

                    DexterTimedSampler;
enum                DexterTimedSamplerState;

DexterTimedSampler * dexter_timedsampler_new            (const DexterPluginService *service,
                                                         guint msecs_interval,
                                                         const DexterSamplerDataCallback *callbacks,
                                                         DexterChannel *channel,
                                                         GError **error);
void                dexter_timedsampler_free            (DexterTimedSampler *tsampler,
                                                         GError **error);
gboolean            dexter_timedsampler_initialize      (DexterTimedSampler *tsampler,
                                                         const gint *param,
                                                         gconstpointer input,
                                                         GError **error);
gboolean            dexter_timedsampler_start           (DexterTimedSampler *tsampler,
                                                         GError **error);
gboolean            dexter_timedsampler_stop            (DexterTimedSampler *tsampler,
                                                         GError **error);
gpointer            dexter_timedsampler_data_new        (DexterTimedSampler *tsampler,
                                                         gboolean populate);
gpointer            dexter_timedsampler_data_dup        (DexterTimedSampler *tsampler,
                                                         gconstpointer source_data);
void                dexter_timedsampler_data_xfer       (DexterTimedSampler *tsampler,
                                                         gpointer old_data,
                                                         gconstpointer new_data);
void                dexter_timedsampler_data_copy       (DexterTimedSampler *tsampler,
                                                         gpointer dest_data,
                                                         gconstpointer source_data);
void                dexter_timedsampler_data_free       (DexterTimedSampler *tsampler,
                                                         gpointer data);
gpointer            dexter_timedsampler_input_new       (DexterTimedSampler *tsampler);
void                dexter_timedsampler_input_free      (DexterTimedSampler *tsampler,
                                                         gpointer input);
gint                dexter_timedsampler_get_state       (DexterTimedSampler *tsampler);

Description

Timed samplers, like ordinary samplers, are Libdexter objects that are capable of sampling and storing data. They differ from ordinary samplers in that they operate in a timing loop and take recurrent samples at regular intervals. Any Libdexter service returned by a service broker using the DEXTER_SERVICE_SAMPLER service type may be instantiated either as an ordinary sampler or a timed sampler.

The desired timing interval is specified during sampler creation with dexter_timedsampler_new(). You then start the timed sampler with dexter_timedsampler_start() and stop it with dexter_timedsampler_stop(). It is best to use callbacks for data change notifications when using timed samplers since they will reliably notify you of data changes after each update cycle.

When running a timed sampler over the network, i.e. on a channel, the remote sampler becomes a streaming data source. After the timed sampler is started, the Libdexter server hosting it will stream its serialized data over the channel back to the local host. The data continues to stream until the local host issues a stop request to the server. As with ordinary samplers, the application manipulates local and remote timed samplers in exactly the same manner.

Details

DEXTER_TIMEDSAMPLER_ERROR

#define DEXTER_TIMEDSAMPLER_ERROR dexter_timedsampler_error_quark()

The error domain of the libdexter timed sampler subsystem.


enum DexterTimedSamplerError

typedef enum {
  DEXTER_TIMEDSAMPLER_ERROR_STARTED,
  DEXTER_TIMEDSAMPLER_ERROR_NOT_STARTED,
  DEXTER_TIMEDSAMPLER_ERROR_FAILED
} DexterTimedSamplerError;

Error codes for DexterTimedSampler operations.

DEXTER_TIMEDSAMPLER_ERROR_STARTED

operation not allowed on started timed sampler.

DEXTER_TIMEDSAMPLER_ERROR_NOT_STARTED

operation requires started timed sampler.

DEXTER_TIMEDSAMPLER_ERROR_FAILED

other failure.

DexterTimedSampler

typedef struct _DexterTimedSampler DexterTimedSampler;

Opaque type with no public members.


enum DexterTimedSamplerState

typedef enum {
  DEXTER_TIMEDSAMPLER_STATE_STARTED,
  DEXTER_TIMEDSAMPLER_STATE_STOPPED,
} DexterTimedSamplerState;

All possible timed sampler states.

DEXTER_TIMEDSAMPLER_STATE_STARTED

timed sampler is started.

DEXTER_TIMEDSAMPLER_STATE_STOPPED

timed sampler is stopped.

dexter_timedsampler_new ()

DexterTimedSampler * dexter_timedsampler_new            (const DexterPluginService *service,
                                                         guint msecs_interval,
                                                         const DexterSamplerDataCallback *callbacks,
                                                         DexterChannel *channel,
                                                         GError **error);

Creates a DexterTimedSampler implementing the indicated DexterPluginService.

The timed sampler will begin automatic sampling at each msecs_interval after dexter_timedsampler_start() is called. It will continue to sample cyclically until dexter_timedsampler_stop() is called.

If a callback array is specified, it is duplicated and stored internally (so you may free the callbacks immediately after this function). Each callback function will be called asynchronously in a thread as the timed sampler is updated cyclically.

If a channel is indicated, the timed sampler operates transparently as a proxy to a timed sampler created on the remote machine designated during channel creation. The channel must be opened with dexter_channel_open() prior to calling this function.

If no channel is indicated, the timed sampler operates locally (in-process).

The timed sampler must be freed when done with dexter_timedsampler_free().

service :

a DexterPluginService.

msecs_interval :

guint refresh interval in milliseconds.

callbacks :

optional, null-terminated array of DexterSamplerDataCallback functions, or NULL.

channel :

optional DexterChannel over which the sampler operates, or NULL.

error :

return location for optional GError.

Returns :

DexterTimedSampler if successful or NULL otherwise.

dexter_timedsampler_free ()

void                dexter_timedsampler_free            (DexterTimedSampler *tsampler,
                                                         GError **error);

Frees a DexterTimedSampler created with dexter_timedsampler_new(). If the timed sampler is started, it will be stopped for you, although it is better form to use dexter_timedsampler_stop() before freeing the timed sampler.

If the timed sampler is operating on a channel, a message is sent to the server to free the peer. You will be notified if an error occurs during that message transmission, but the local object is always freed in any event.

tsampler :

a DexterTimedSampler.

error :

return location of optional GError.

dexter_timedsampler_initialize ()

gboolean            dexter_timedsampler_initialize      (DexterTimedSampler *tsampler,
                                                         const gint *param,
                                                         gconstpointer input,
                                                         GError **error);

Performs one-time initialization of the timed sampler created with dexter_timedsampler_new(). If the sampler requires simple integer data for initialization, indicate the address to that integer, or NULL, if no integer is required. If the timed sampler requires other, complex or structured input data for initialization, indicate the address to that input structure, or NULL, if no input is required.

The timed sampler should be initialized once after creation with dexter_timedsampler_new() and before starting with dexter_timedsampler_start().

If the timed sampler was created over a channel, the channel should be open when calling this function.

tsampler :

a DexterTimedSampler.

param :

address of an optional gint parameter, or NULL.

input :

optional gconstpointer to plugin-specific initialization data, or NULL.

error :

return location of optional GError.

Returns :

gboolean indicating success or failure.

dexter_timedsampler_start ()

gboolean            dexter_timedsampler_start           (DexterTimedSampler *tsampler,
                                                         GError **error);

Start the timed sampler and begin receiving updates every msecs_interval, as specified in dexter_timedsampler_new(). The sampler updates recurrently until dexter_timedsampler_stop() is called.

If operating over a channel and the channel closes for any reason, the sampler state will transition to DEXTER_TIMEDSAMPLER_STATE_STOPPED.

tsampler :

a DexterTimedSampler.

error :

return location of optional GError.

Returns :

gboolean TRUE is started successfully, FALSE otherwise.

dexter_timedsampler_stop ()

gboolean            dexter_timedsampler_stop            (DexterTimedSampler *tsampler,
                                                         GError **error);

Stops the timed sampler previously started with dexter_timedsampler_start(). If the timed sampler is already stopped, no error occurs and TRUE is returned.

tsampler :

a DexterTimedSampler.

error :

return location of optional GError.

Returns :

gboolean TRUE if stopped successfully, FALSE otherwise.

dexter_timedsampler_data_new ()

gpointer            dexter_timedsampler_data_new        (DexterTimedSampler *tsampler,
                                                         gboolean populate);

Allocates memory to contain timed sampler data. The plugin implementing the timed sampler defines this structure -- it is completely opaque to the library.

If populate is TRUE, the returned memory is populated with current timed sampler data. If FALSE, it is zero-filled.

The memory must freed with dexter_timedsampler_data_free() when done, unless within a DexterSamplerDataCallback, in which case the library will free the memory for you after the callback returns.

tsampler :

a DexterTimedSampler.

populate :

gboolean to determine if returned memory is populated with current sampler data or zero-filled.

Returns :

gpointer to newly allocated sample memory.

dexter_timedsampler_data_dup ()

gpointer            dexter_timedsampler_data_dup        (DexterTimedSampler *tsampler,
                                                         gconstpointer source_data);

Allocates timed sampler data memory and copies the contents of source_data onto the new memory.

The user must free this memory with dexter_timedsampler_data_free().

tsampler :

a DexterTimedSampler.

source_data :

gconstpointer to timed sample data to duplicate.

Returns :

gpointer to newly allocated memory containing the duplicated data.

dexter_timedsampler_data_xfer ()

void                dexter_timedsampler_data_xfer       (DexterTimedSampler *tsampler,
                                                         gpointer old_data,
                                                         gconstpointer new_data);

Transfers (copies) data into and/or out of the timed sampler. If old_data is indicated, the timed sampler data is copied into that memory, before being replaced with new_data. If new_data is indicated, that data will be copied over existing internal timed sampler data, after existing data is copied out to old_data.

Note that use of the new_data parameter by users is probably never appropriate. The proper way for users to replace internal timed sampler data is to start the sampler with dexter_timedsampler_start() and let it update cyclically on its own.

This api is used internally by the library to transfer network-serialized sampler data into and out of timed samplers. Users may also find it useful to copy out existing sampler data.

/* One way to get the timed sampler's current data. */
gpointer current_data = dexter_timedsampler_data_new (tsampler, TRUE);

/* Another way  */
gpointer current_data = dexter_timedsampler_data_new (tsampler, FALSE);
dexter_timedsampler_data_xfer (tsampler, current_data, NULL);

tsampler :

a DexterTimedSampler.

old_data :

optional gpointer to memory to receive a copy of the timed sampler's current (old) data, or NULL.

new_data :

optional gconstpointer to memory to replace the timed sampler's current data, or NULL.

dexter_timedsampler_data_copy ()

void                dexter_timedsampler_data_copy       (DexterTimedSampler *tsampler,
                                                         gpointer dest_data,
                                                         gconstpointer source_data);

Copies the timed sampler data indicated by source_data to the memory indicated by dest_data.

tsampler :

a DexterTimedSampler.

dest_data :

gpointer to destination memory to receive the copy.

source_data :

gconstpointer to source memory for the copy.

dexter_timedsampler_data_free ()

void                dexter_timedsampler_data_free       (DexterTimedSampler *tsampler,
                                                         gpointer data);

Frees timed sampler data previously allocated with dexter_timedsampler_data_new() or dexter_timedsampler_data_dup().

tsampler :

a DexterTimedSampler.

data :

gpointer to timed sampler data to free.

dexter_timedsampler_input_new ()

gpointer            dexter_timedsampler_input_new       (DexterTimedSampler *tsampler);

Allocates and returns a new timed sampler input structure. The plugin implementing the timed sampler defines this structure -- it is completely opaque to the library.

The memory must be freed with dexter_timedsampler_input_free() when done.

tsampler :

a DexterTimedSampler.

Returns :

gpointer to newly allocated input structure.

dexter_timedsampler_input_free ()

void                dexter_timedsampler_input_free      (DexterTimedSampler *tsampler,
                                                         gpointer input);

Frees an input structure previously allocated with dexter_timedsampler_input_new().

tsampler :

a DexterTimedSampler.

input :

gpointer to timed sampler input to free.

dexter_timedsampler_get_state ()

gint                dexter_timedsampler_get_state       (DexterTimedSampler *tsampler);

Returns the current state of the timed sampler.

tsampler :

a DexterTimedSampler.

Returns :

gint from DexterTimedSamplerState indicating current state of the timed sampler.