![]() |
![]() |
![]() |
Libdexter Reference Manual | ![]() |
---|---|---|---|---|
Top | Description |
#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
);
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.
#define DEXTER_TIMEDSAMPLER_ERROR dexter_timedsampler_error_quark()
The error domain of the libdexter timed sampler subsystem.
typedef enum { DEXTER_TIMEDSAMPLER_ERROR_STARTED, DEXTER_TIMEDSAMPLER_ERROR_NOT_STARTED, DEXTER_TIMEDSAMPLER_ERROR_FAILED } DexterTimedSamplerError;
Error codes for DexterTimedSampler operations.
typedef struct _DexterTimedSampler DexterTimedSampler;
Opaque type with no public members.
typedef enum { DEXTER_TIMEDSAMPLER_STATE_STARTED, DEXTER_TIMEDSAMPLER_STATE_STOPPED, } DexterTimedSamplerState;
All possible timed sampler states.
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()
.
|
a DexterPluginService. |
|
guint refresh interval in milliseconds. |
|
optional, null-terminated array of DexterSamplerDataCallback functions, or NULL . |
|
optional DexterChannel over which the sampler operates, or NULL . |
|
return location for optional GError. |
Returns : |
DexterTimedSampler if successful or NULL otherwise. |
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.
|
a DexterTimedSampler. |
|
return location of optional GError. |
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.
|
a DexterTimedSampler. |
|
address of an optional gint parameter, or NULL . |
|
optional gconstpointer to plugin-specific initialization data, or NULL . |
|
return location of optional GError. |
Returns : |
gboolean indicating success or failure. |
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
.
|
a DexterTimedSampler. |
|
return location of optional GError. |
Returns : |
gboolean TRUE is started successfully, FALSE otherwise. |
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.
|
a DexterTimedSampler. |
|
return location of optional GError. |
Returns : |
gboolean TRUE if stopped successfully, FALSE otherwise. |
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.
|
a DexterTimedSampler. |
|
gboolean to determine if returned memory is populated with current sampler data or zero-filled. |
Returns : |
gpointer to newly allocated sample memory. |
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()
.
|
a DexterTimedSampler. |
|
gconstpointer to timed sample data to duplicate. |
Returns : |
gpointer to newly allocated memory containing the duplicated data. |
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);
|
a DexterTimedSampler. |
|
optional gpointer to memory to receive a copy of the timed sampler's current (old) data, or NULL . |
|
optional gconstpointer to memory to replace the timed sampler's current data, or NULL . |
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
.
|
a DexterTimedSampler. |
|
gpointer to destination memory to receive the copy. |
|
gconstpointer to source memory for the copy. |
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()
.
|
a DexterTimedSampler. |
|
gpointer to timed sampler data to free. |
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.
|
a DexterTimedSampler. |
Returns : |
gpointer to newly allocated input structure. |
void dexter_timedsampler_input_free (DexterTimedSampler *tsampler
,gpointer input
);
Frees an input structure previously allocated with dexter_timedsampler_input_new()
.
|
a DexterTimedSampler. |
|
gpointer to timed sampler input to free. |
gint dexter_timedsampler_get_state (DexterTimedSampler *tsampler
);
Returns the current state of the timed sampler.
|
a DexterTimedSampler. |
Returns : |
gint from DexterTimedSamplerState indicating current state of the timed sampler. |