2011-12-22 16:19:25 +01:00
|
|
|
/*
|
|
|
|
* \brief Framebuffer-to-Nitpicker adapter
|
|
|
|
* \author Norman Feske
|
|
|
|
* \date 2010-09-09
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2012-01-03 15:35:05 +01:00
|
|
|
* Copyright (C) 2010-2012 Genode Labs GmbH
|
2011-12-22 16:19:25 +01:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
|
|
* under the terms of the GNU General Public License version 2.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Genode includes */
|
|
|
|
#include <base/sleep.h>
|
|
|
|
#include <base/rpc_server.h>
|
|
|
|
#include <nitpicker_view/client.h>
|
|
|
|
#include <cap_session/connection.h>
|
|
|
|
#include <nitpicker_session/connection.h>
|
|
|
|
#include <dataspace/client.h>
|
|
|
|
#include <input_session/input_session.h>
|
|
|
|
#include <input/event.h>
|
|
|
|
#include <root/root.h>
|
|
|
|
#include <os/config.h>
|
|
|
|
#include <timer_session/connection.h>
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Root interface that hands out a statically created session
|
|
|
|
*/
|
|
|
|
template <typename SESSION_TYPE>
|
|
|
|
class Static_root : public Genode::Rpc_object<Genode::Typed_root<SESSION_TYPE> >
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
typedef Genode::Capability<SESSION_TYPE> Session_capability;
|
|
|
|
|
|
|
|
Session_capability _session;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* \param session session to be provided to the client
|
|
|
|
*/
|
|
|
|
Static_root(Session_capability session) : _session(session) { }
|
|
|
|
|
|
|
|
|
|
|
|
/********************
|
|
|
|
** Root interface **
|
|
|
|
********************/
|
|
|
|
|
|
|
|
Genode::Session_capability session(Genode::Root::Session_args const &args) { return _session; }
|
|
|
|
void upgrade(Genode::Session_capability, Genode::Root::Upgrade_args const &) { }
|
|
|
|
void close(Genode::Session_capability) { }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
namespace Input {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Input session applying a position offset to absolute motion events
|
|
|
|
*/
|
|
|
|
class Session_component : public Genode::Rpc_object<Session>
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Offset to be applied to absolute motion events
|
|
|
|
*/
|
|
|
|
int _dx, _dy;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Input session, from which we fetch events
|
|
|
|
*/
|
|
|
|
Input::Session *_from_input;
|
|
|
|
Genode::Dataspace_capability _from_input_ds;
|
|
|
|
Genode::size_t _from_ev_buf_size;
|
|
|
|
Input::Event *_from_ev_buf;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Input session, to which to provide events
|
|
|
|
*/
|
|
|
|
Genode::Dataspace_capability _to_input_ds;
|
|
|
|
Input::Event *_to_ev_buf;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shortcut for mapping an event buffer locally
|
|
|
|
*/
|
|
|
|
Input::Event *_map_ev_buf(Genode::Dataspace_capability ds_cap) {
|
|
|
|
return Genode::env()->rm_session()->attach(ds_cap); }
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* \param dx, dy offset to be added to absolute motion events
|
|
|
|
* \param from_input input session from where to get input events
|
|
|
|
*/
|
|
|
|
Session_component(int dx, int dy, Input::Session *from_input)
|
|
|
|
:
|
|
|
|
_dx(dx), _dy(dy),
|
|
|
|
_from_input(from_input),
|
|
|
|
_from_input_ds(from_input->dataspace()),
|
|
|
|
_from_ev_buf_size(Genode::Dataspace_client(_from_input_ds).size()),
|
|
|
|
_from_ev_buf(_map_ev_buf(_from_input_ds)),
|
|
|
|
_to_input_ds(Genode::env()->ram_session()->alloc(_from_ev_buf_size)),
|
|
|
|
_to_ev_buf(_map_ev_buf(_to_input_ds))
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************
|
|
|
|
** Input session interface **
|
|
|
|
*****************************/
|
|
|
|
|
|
|
|
Genode::Dataspace_capability dataspace() { return _to_input_ds; }
|
|
|
|
|
|
|
|
bool is_pending() { return _from_input->is_pending(); }
|
|
|
|
|
|
|
|
int flush()
|
|
|
|
{
|
|
|
|
/* flush events at input session */
|
|
|
|
int num_events = _from_input->flush();
|
|
|
|
|
|
|
|
/* copy events from input buffer to client buffer */
|
|
|
|
for (int i = 0; i < num_events; i++) {
|
|
|
|
Input::Event e = _from_ev_buf[i];
|
|
|
|
|
|
|
|
/* apply view offset to absolute motion events */
|
|
|
|
if (e.is_absolute_motion())
|
|
|
|
e = Event(e.type(), e.keycode(),
|
|
|
|
e.ax() + _dx, e.ay() + _dy, 0, 0);
|
|
|
|
_to_ev_buf[i] = e;
|
|
|
|
}
|
|
|
|
return num_events;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read integer value from config attribute
|
|
|
|
*/
|
|
|
|
long config_arg(const char *attr, long default_value)
|
|
|
|
{
|
|
|
|
long res = default_value;
|
|
|
|
try { Genode::config()->xml_node().attribute(attr).value(&res); }
|
|
|
|
catch (...) { }
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
using namespace Genode;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read arguments from config
|
|
|
|
*/
|
|
|
|
long view_x = config_arg("xpos", 0), view_y = config_arg("ypos", 0),
|
|
|
|
view_w = config_arg("width", 0), view_h = config_arg("height", 0),
|
|
|
|
refresh_rate = config_arg("refresh_rate", 0);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Open Nitpicker session
|
|
|
|
*/
|
|
|
|
static Nitpicker::Connection nitpicker(view_w, view_h);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If no config was provided, use screen size of Nitpicker
|
|
|
|
*/
|
|
|
|
if (view_w == 0 || view_h == 0) {
|
|
|
|
Framebuffer::Session_client nit_fb(nitpicker.framebuffer_session());
|
|
|
|
int w = 0, h = 0;
|
|
|
|
Framebuffer::Session::Mode mode;
|
|
|
|
nit_fb.info(&w, &h, &mode);
|
|
|
|
view_w = w, view_h = h;
|
|
|
|
}
|
|
|
|
|
|
|
|
PINF("using xywh=(%ld,%ld,%ld,%ld) refresh_rate=%ld",
|
|
|
|
view_x, view_y, view_w, view_h, refresh_rate);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create Nitpicker view and bring it to front
|
|
|
|
*/
|
|
|
|
Nitpicker::View_client view(nitpicker.create_view());
|
|
|
|
view.viewport(view_x, view_y, view_w, view_h, 0, 0, false);
|
|
|
|
view.stack(Nitpicker::View_capability(), true, true);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize server entry point
|
|
|
|
*/
|
|
|
|
enum { STACK_SIZE = 4096 };
|
|
|
|
static Cap_connection cap;
|
|
|
|
static Rpc_entrypoint ep(&cap, STACK_SIZE, "nitfb_ep");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Let the entry point serve the framebuffer and input root interfaces
|
|
|
|
*/
|
|
|
|
static Static_root<Framebuffer::Session> fb_root(nitpicker.framebuffer_session());
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Pre-initialize single client input session
|
|
|
|
*/
|
|
|
|
static Input::Session_client nit_input(nitpicker.input_session());
|
|
|
|
static Input::Session_component input_session(-view_x, -view_y, &nit_input);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Attach input root interface to the entry point
|
|
|
|
*/
|
|
|
|
static Static_root<Input::Session> input_root(ep.manage(&input_session));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Announce services
|
|
|
|
*/
|
|
|
|
env()->parent()->announce(ep.manage(&fb_root));
|
|
|
|
env()->parent()->announce(ep.manage(&input_root));
|
|
|
|
|
|
|
|
if (!refresh_rate)
|
|
|
|
sleep_forever();
|
|
|
|
|
|
|
|
static Timer::Connection timer;
|
|
|
|
static Framebuffer::Session_client nit_fb(nitpicker.framebuffer_session());
|
|
|
|
while (true) {
|
|
|
|
timer.msleep(refresh_rate);
|
|
|
|
nit_fb.refresh(0, 0, view_w, view_h);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|