/* * \brief Client-side interface for packet-stream reception * \author Norman Feske * \date 2010-03-01 */ /* * Copyright (C) 2010-2013 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__PACKET_STREAM_TX__CLIENT_H_ #define _INCLUDE__PACKET_STREAM_TX__CLIENT_H_ #include #include namespace Packet_stream_tx { template class Client; } template class Packet_stream_tx::Client : public Genode::Rpc_client { private: /* * Type shortcuts */ typedef Genode::Rpc_client Base; typedef typename Base::Rpc_dataspace Rpc_dataspace; typedef typename Base::Rpc_packet_avail Rpc_packet_avail; typedef typename Base::Rpc_ready_to_ack Rpc_ready_to_ack; typedef typename Base::Rpc_ready_to_submit Rpc_ready_to_submit; typedef typename Base::Rpc_ack_avail Rpc_ack_avail; /** * Packet-stream source */ typename CHANNEL::Source _source; public: /** * Constructor * * \param buffer_alloc allocator used for managing the * transmission buffer */ Client(Genode::Capability channel_cap, Genode::Range_allocator *buffer_alloc) : Genode::Rpc_client(channel_cap), _source(buffer_alloc, Base::template call()) { /* wire data-flow signals for the packet transmitter */ _source.register_sigh_packet_avail(Base::template call()); _source.register_sigh_ready_to_ack(Base::template call()); sigh_ready_to_submit(_source.sigh_ready_to_submit()); sigh_ack_avail(_source.sigh_ack_avail()); } void sigh_ready_to_submit(Genode::Signal_context_capability sigh) { Base::template call(sigh); } void sigh_ack_avail(Genode::Signal_context_capability sigh) { Base::template call(sigh); } typename CHANNEL::Source *source() { return &_source; } }; #endif /* _INCLUDE__PACKET_STREAM_TX__CLIENT_H_ */