Struct libpulse_binding::context::Context[][src]

pub struct Context { /* fields omitted */ }

An opaque connection context to a daemon

Note: Saves a copy of active multi-use closure callbacks, which it frees on drop.

Methods

impl Context
[src]

Returns a device manager object linked to the current context, giving access to device manager routines. See ::context::ext_device_manager.

impl Context
[src]

Returns a device restore object linked to the current context, giving access to device restore routines. See ::context::ext_device_restore.

impl Context
[src]

Returns a stream restore object linked to the current context, giving access to stream restore routines. See ::context::ext_stream_restore.

impl Context
[src]

Returns an introspection object linked to the current context, giving access to introspection routines. See ::context::introspect.

impl Context
[src]

Remove a sample from the sample cache.

Returns an operation object which may be used to cancel the operation while it is running.

The callback must accept a bool, which indicates success.

Play a sample from the sample cache to the specified device.

If the specified device is None use the default sink.

Params

  • name: Name of the sample to play.
  • dev: Sink to play this sample on, or None for default.
  • volume: Volume to play this sample with. Starting with 0.9.15 you may pass here ::volume::VOLUME_INVALID which will leave the decision about the volume to the server side which is a good idea.
  • callback: Optional success callback. It must accept a bool, which indicates success.

Play a sample from the sample cache to the specified device, allowing specification of a property list for the playback stream.

If the device is None use the default sink.

Params

  • name: Name of the sample to play.
  • dev: Sink to play this sample on, or None for default.
  • volume: Volume to play this sample with. Starting with 0.9.15 you may pass here ::volume::VOLUME_INVALID which will leave the decision about the volume to the server side which is a good idea.
  • proplist: Property list for this sound. The property list of the cached entry will have this merged into it.
  • callback: Optional success callback. It must accept an u32 index value wrapper in a Result. The index is the index of the sink input object. Err is given instead on failure.

impl Context
[src]

Enable event notification. The mask parameter is used to specify which facilities you are interested in being modified about. Use set_subscribe_callback to set the actual callback that will be called when an event occurs.

The callback must accept a bool, which indicates success.

Set the context specific call back function that is called whenever a subscribed-to event occurs. Use subscribe to set the facilities you are interested in receiving notifications for, and thus to start receiving notifications with the callback set here.

The callback must take three parameters. The first two are the facility and operation components of the event type respectively (the underlying C API provides this information combined into a single integer, here we extract the two component parts for you); these are wrapped in Option wrappers should the given values ever not map to the enum variants, but it's probably safe to always just unwrap() them). The third parameter is an associated index value.

impl Context
[src]

Instantiate a new connection context with an abstract mainloop API and an application name.

It is recommended to use new_with_proplist instead and specify some initial properties.

Instantiate a new connection context with an abstract mainloop API and an application name, and specify the initial client property list.

Set a callback function that is called whenever the context status changes.

Set a callback function that is called whenever a meta/policy control event is received.

The callback is given a name which represents what event occurred. The set of defined events can be extended at any time. Also, server modules may introduce additional message types so make sure that your callback function ignores messages it doesn't know. It is also given an (owned) property list.

Returns the error number of the last failed operation

Returns true if some data is pending to be written to the connection

Returns the current context status

Connect the context to the specified server.

If server is None, connect to the default server. This routine may but will not always return synchronously on error. Use set_state_callback to be notified when the connection is established. If flags doesn't have flags::NOAUTOSPAWN set and no specific server is specified or accessible, a new daemon is spawned. If api is not None, the functions specified in the structure are used when forking a new child process.

Terminate the context connection immediately.

Drain the context. If there is nothing to drain, the function returns None.

Tell the daemon to exit.

The returned operation is unlikely to complete successfully, since the daemon probably died before returning a success notification.

The callback must accept a bool, which indicates success.

Set the name of the default sink.

The callback must accept a bool, which indicates success.

Set the name of the default source.

The callback must accept a bool, which indicates success.

Returns true when the connection is to a local daemon. Returns None on error, for instance when no connection has been made yet.

Set a different application name for context on the server.

Return the server name this context is connected to.

Return the protocol version of the library.

Return the protocol version of the connected server.

Returns None on error.

Update the property list of the client, adding new entries.

Please note that it is highly recommended to set as many properties initially via new_with_proplist as possible instead a posteriori with this function, since that information may then be used to route streams of the client to the right device.

Update the property list of the client, remove entries.

Return the client index this context is identified in the server with.

This is useful for usage with the introspection functions, such as ::introspect::Introspector::get_client_info.

Returns None on error.

Create a new timer event source for the specified time.

This is an alternative to the mainloop new_timer_event_rt method.

A reference to the mainloop object is needed, in order to associate the event object with it. The association is done to ensure the event does not outlive the mainloop.

If pointer returned by underlying C function is NULL, None will be returned, otherwise a ::mainloop::events::timer::TimeEvent object will be returned.

Example event set to fire in five seconds time:

This example is not tested
use pulse::time::{MonotonicTs, MicroSeconds, MICROS_PER_SEC};
let _t_event = context.rttime_new::<Mainloop, _>(&mainloop,
    MonotonicTs::now() + MicroSeconds(5 * MICROS_PER_SEC),
    || { println!("Timer event fired!"); });

Note: You must ensure that the returned event object lives for as long as you want its event(s) to fire, as its Drop implementation destroys the event source. I.e. if you create a new event, but then immediately drop the object returned here, no event will fire!

Return the optimal block size for passing around audio buffers.

It is recommended to allocate buffers of the size returned here when writing audio data to playback streams, if the latency constraints permit this. It is not recommended writing larger blocks than this because usually they will then be split up internally into chunks of this size. It is not recommended writing smaller blocks than this (unless required due to latency demands) because this increases CPU usage.

If ss is invalid, returns None, else returns tile size rounded down to multiple of the frame size. This is supposed to be used in a construct such as:

This example is not tested
let ss = stream.get_sample_spec().unwrap();
let size = stream.get_context().get_tile_size(ss).unwrap();

Load the authentication cookie from a file.

This function is primarily meant for PulseAudio's own tunnel modules, which need to load the cookie from a custom location. Applications don't usually need to care about the cookie at all, but if it happens that you know what the authentication cookie is and your application needs to load it from a non-standard location, feel free to use this function.

Trait Implementations

impl Drop for Context
[src]

Executes the destructor for this type. Read more

Auto Trait Implementations

impl !Send for Context

impl !Sync for Context