2015-05-15 20:24:00 +00:00
|
|
|
/*
|
|
|
|
* \brief Client-side Audio_in-session
|
|
|
|
* \author Josef Soentgen
|
|
|
|
* \date 2015-05-08
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Genode Labs GmbH
|
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
|
|
* under the terms of the GNU General Public License version 2.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE__AUDIO_IN_SESSION__CLIENT_H_
|
|
|
|
#define _INCLUDE__AUDIO_IN_SESSION__CLIENT_H_
|
|
|
|
|
|
|
|
/* Genode includes */
|
|
|
|
#include <base/env.h>
|
|
|
|
#include <base/rpc_client.h>
|
|
|
|
#include <audio_in_session/audio_in_session.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace Audio_in {
|
|
|
|
struct Signal;
|
|
|
|
struct Session_client;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct Audio_in::Signal
|
|
|
|
{
|
|
|
|
Genode::Signal_receiver recv;
|
|
|
|
Genode::Signal_context context;
|
|
|
|
Genode::Signal_context_capability cap;
|
|
|
|
|
|
|
|
Signal() : cap(recv.manage(&context)) { }
|
2016-10-25 14:17:05 +00:00
|
|
|
~Signal() { recv.dissolve(&context); }
|
2015-05-15 20:24:00 +00:00
|
|
|
|
|
|
|
void wait() { recv.wait_for_signal(); }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Audio_in::Session_client : public Genode::Rpc_client<Session>
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
Signal _progress;
|
|
|
|
|
|
|
|
Genode::Signal_transmitter _data_avail;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* \param session session capability
|
|
|
|
* \param progress_signal true, install 'progress_signal' receiver
|
|
|
|
*/
|
|
|
|
Session_client(Genode::Capability<Session> session,
|
|
|
|
bool progress_signal)
|
|
|
|
:
|
|
|
|
Genode::Rpc_client<Session>(session),
|
|
|
|
_data_avail(call<Rpc_data_avail_sigh>())
|
|
|
|
{
|
|
|
|
/* ask server for stream data space and attach it */
|
|
|
|
_stream = static_cast<Stream *>(Genode::env()->rm_session()->attach(call<Rpc_dataspace>()));
|
|
|
|
|
|
|
|
if (progress_signal)
|
|
|
|
progress_sigh(_progress.cap);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*************
|
|
|
|
** Signals **
|
|
|
|
*************/
|
|
|
|
|
|
|
|
void progress_sigh(Genode::Signal_context_capability sigh) {
|
|
|
|
call<Rpc_progress_sigh>(sigh); }
|
|
|
|
|
|
|
|
void overrun_sigh(Genode::Signal_context_capability sigh) {
|
|
|
|
call<Rpc_overrun_sigh>(sigh); }
|
|
|
|
|
|
|
|
Genode::Signal_context_capability data_avail_sigh() {
|
|
|
|
return Genode::Signal_context_capability(); }
|
|
|
|
|
|
|
|
|
|
|
|
/***********************
|
|
|
|
** Session interface **
|
|
|
|
***********************/
|
|
|
|
|
|
|
|
void start()
|
|
|
|
{
|
|
|
|
call<Rpc_start>();
|
|
|
|
|
|
|
|
/* reset tail pointer */
|
|
|
|
stream()->reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void stop() { call<Rpc_stop>(); }
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************
|
|
|
|
** Session interface extensions **
|
|
|
|
**********************************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Wait for progress signal
|
|
|
|
*/
|
|
|
|
void wait_for_progress()
|
|
|
|
{
|
|
|
|
if (!_progress.cap.valid()) {
|
base: avoid use of deprecated base/printf.h
Besides adapting the components to the use of base/log.h, the patch
cleans up a few base headers, i.e., it removes unused includes from
root/component.h, specifically base/heap.h and
ram_session/ram_session.h. Hence, components that relied on the implicit
inclusion of those headers have to manually include those headers now.
While adjusting the log messages, I repeatedly stumbled over the problem
that printing char * arguments is ambiguous. It is unclear whether to
print the argument as pointer or null-terminated string. To overcome
this problem, the patch introduces a new type 'Cstring' that allows the
caller to express that the argument should be handled as null-terminated
string. As a nice side effect, with this type in place, the optional len
argument of the 'String' class could be removed. Instead of supplying a
pair of (char const *, size_t), the constructor accepts a 'Cstring'.
This, in turn, clears the way let the 'String' constructor use the new
output mechanism to assemble a string from multiple arguments (and
thereby getting rid of snprintf within Genode in the near future).
To enforce the explicit resolution of the char * ambiguity, the 'char *'
overload of the 'print' function is marked as deleted.
Issue #1987
2016-07-13 17:07:09 +00:00
|
|
|
Genode::warning("Progress signal is not installed, will not block "
|
|
|
|
"(enable in 'Audio_in::Connection')");
|
2015-05-15 20:24:00 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_progress.wait();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* _INCLUDE__AUDIO_IN_SESSION__CLIENT_H_ */
|