2011-12-22 15:19:25 +00:00
|
|
|
/*
|
|
|
|
* \brief Client-side Terminal session interface
|
|
|
|
* \author Norman Feske
|
|
|
|
* \date 2011-08-11
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-01-17 14:45:54 +00:00
|
|
|
* Copyright (C) 2011-2017 Genode Labs GmbH
|
2011-12-22 15:19:25 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
2017-02-20 12:23:52 +00:00
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
2011-12-22 15:19:25 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE__TERMINAL_SESSION__CLIENT_H_
|
|
|
|
#define _INCLUDE__TERMINAL_SESSION__CLIENT_H_
|
|
|
|
|
|
|
|
/* Genode includes */
|
|
|
|
#include <util/misc_math.h>
|
|
|
|
#include <util/string.h>
|
|
|
|
#include <base/lock.h>
|
|
|
|
#include <base/rpc_client.h>
|
2017-01-30 10:35:12 +00:00
|
|
|
#include <base/attached_dataspace.h>
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
#include <terminal_session/terminal_session.h>
|
|
|
|
|
2014-01-10 23:09:13 +00:00
|
|
|
namespace Terminal { class Session_client; }
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
|
2014-01-10 23:09:13 +00:00
|
|
|
class Terminal::Session_client : public Genode::Rpc_client<Session>
|
|
|
|
{
|
|
|
|
private:
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2014-01-10 23:09:13 +00:00
|
|
|
Genode::Lock _lock;
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2014-01-10 23:09:13 +00:00
|
|
|
/**
|
|
|
|
* Shared-memory buffer used for carrying the payload
|
|
|
|
* of read/write operations
|
|
|
|
*/
|
|
|
|
Genode::Attached_dataspace _io_buffer;
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2014-01-10 23:09:13 +00:00
|
|
|
public:
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2017-01-09 14:18:49 +00:00
|
|
|
Session_client(Genode::Region_map &local_rm, Genode::Capability<Session> cap)
|
2014-01-10 23:09:13 +00:00
|
|
|
:
|
|
|
|
Genode::Rpc_client<Session>(cap),
|
2017-01-09 14:18:49 +00:00
|
|
|
_io_buffer(local_rm, call<Rpc_dataspace>())
|
|
|
|
{ }
|
|
|
|
|
|
|
|
Session_client(Genode::Capability<Session> cap) __attribute__((deprecated))
|
|
|
|
:
|
|
|
|
Genode::Rpc_client<Session>(cap),
|
|
|
|
_io_buffer(*Genode::env_deprecated()->rm_session(), call<Rpc_dataspace>())
|
2014-01-10 23:09:13 +00:00
|
|
|
{ }
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2014-01-10 23:09:13 +00:00
|
|
|
Size size() { return call<Rpc_size>(); }
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2014-01-10 23:09:13 +00:00
|
|
|
bool avail() { return call<Rpc_avail>(); }
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2014-01-10 23:09:13 +00:00
|
|
|
Genode::size_t read(void *buf, Genode::size_t buf_size)
|
|
|
|
{
|
|
|
|
Genode::Lock::Guard _guard(_lock);
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2014-01-10 23:09:13 +00:00
|
|
|
/* instruct server to fill the I/O buffer */
|
|
|
|
Genode::size_t num_bytes = call<Rpc_read>(buf_size);
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2014-01-10 23:09:13 +00:00
|
|
|
/* copy-out I/O buffer */
|
|
|
|
num_bytes = Genode::min(num_bytes, buf_size);
|
|
|
|
Genode::memcpy(buf, _io_buffer.local_addr<char>(), num_bytes);
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2014-01-10 23:09:13 +00:00
|
|
|
return num_bytes;
|
|
|
|
}
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2014-01-10 23:09:13 +00:00
|
|
|
Genode::size_t write(void const *buf, Genode::size_t num_bytes)
|
|
|
|
{
|
|
|
|
Genode::Lock::Guard _guard(_lock);
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2014-01-10 23:09:13 +00:00
|
|
|
Genode::size_t written_bytes = 0;
|
|
|
|
char const * const src = (char const *)buf;
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2014-01-10 23:09:13 +00:00
|
|
|
while (written_bytes < num_bytes) {
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2014-01-10 23:09:13 +00:00
|
|
|
/* copy payload to I/O buffer */
|
2017-01-17 14:45:54 +00:00
|
|
|
Genode::size_t payload_bytes = Genode::min(num_bytes - written_bytes,
|
|
|
|
_io_buffer.size());
|
2014-01-10 23:09:13 +00:00
|
|
|
Genode::memcpy(_io_buffer.local_addr<char>(),
|
2017-01-17 14:45:54 +00:00
|
|
|
src + written_bytes, payload_bytes);
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2014-01-10 23:09:13 +00:00
|
|
|
/* tell server to pick up new I/O buffer content */
|
2017-01-17 14:45:54 +00:00
|
|
|
Genode::size_t written_payload_bytes = call<Rpc_write>(payload_bytes);
|
|
|
|
|
|
|
|
written_bytes += written_payload_bytes;
|
|
|
|
|
|
|
|
if (written_payload_bytes != payload_bytes)
|
|
|
|
return written_bytes;
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
}
|
2017-01-17 14:45:54 +00:00
|
|
|
return written_bytes;
|
2014-01-10 23:09:13 +00:00
|
|
|
}
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2014-01-10 23:09:13 +00:00
|
|
|
void connected_sigh(Genode::Signal_context_capability cap)
|
|
|
|
{
|
|
|
|
call<Rpc_connected_sigh>(cap);
|
|
|
|
}
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2014-01-10 23:09:13 +00:00
|
|
|
void read_avail_sigh(Genode::Signal_context_capability cap)
|
|
|
|
{
|
|
|
|
call<Rpc_read_avail_sigh>(cap);
|
|
|
|
}
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2014-01-10 23:09:13 +00:00
|
|
|
Genode::size_t io_buffer_size() const { return _io_buffer.size(); }
|
|
|
|
};
|
2011-12-22 15:19:25 +00:00
|
|
|
|
|
|
|
#endif /* _INCLUDE__TERMINAL_SESSION__CLIENT_H_ */
|