genode/repos/os/src/test/nitpicker/test.cc

245 lines
5.8 KiB
C++
Raw Normal View History

2011-12-22 15:19:25 +00:00
/*
* \brief Nitpicker test program
* \author Norman Feske
* \date 2006-08-23
*/
/*
* Copyright (C) 2006-2017 Genode Labs GmbH
2011-12-22 15:19:25 +00:00
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
2011-12-22 15:19:25 +00:00
*/
#include <base/env.h>
#include <util/list.h>
#include <base/component.h>
#include <base/log.h>
2011-12-22 15:19:25 +00:00
#include <nitpicker_session/connection.h>
#include <timer_session/connection.h>
#include <input/event.h>
using namespace Genode;
class Test_view : public List<Test_view>::Element
{
private:
typedef Nitpicker::Session::View_handle View_handle;
typedef Nitpicker::Session::Command Command;
Nitpicker::Session_client &_nitpicker;
Follow practices suggested by "Effective C++" The patch adjust the code of the base, base-<kernel>, and os repository. To adapt existing components to fix violations of the best practices suggested by "Effective C++" as reported by the -Weffc++ compiler argument. The changes follow the patterns outlined below: * A class with virtual functions can no longer publicly inherit base classed without a vtable. The inherited object may either be moved to a member variable, or inherited privately. The latter would be used for classes that inherit 'List::Element' or 'Avl_node'. In order to enable the 'List' and 'Avl_tree' to access the meta data, the 'List' must become a friend. * Instead of adding a virtual destructor to abstract base classes, we inherit the new 'Interface' class, which contains a virtual destructor. This way, single-line abstract base classes can stay as compact as they are now. The 'Interface' utility resides in base/include/util/interface.h. * With the new warnings enabled, all member variables must be explicitly initialized. Basic types may be initialized with '='. All other types are initialized with braces '{ ... }' or as class initializers. If basic types and non-basic types appear in a row, it is nice to only use the brace syntax (also for basic types) and align the braces. * If a class contains pointers as members, it must now also provide a copy constructor and assignment operator. In the most cases, one would make them private, effectively disallowing the objects to be copied. Unfortunately, this warning cannot be fixed be inheriting our existing 'Noncopyable' class (the compiler fails to detect that the inheriting class cannot be copied and still gives the error). For now, we have to manually add declarations for both the copy constructor and assignment operator as private class members. Those declarations should be prepended with a comment like this: /* * Noncopyable */ Thread(Thread const &); Thread &operator = (Thread const &); In the future, we should revisit these places and try to replace the pointers with references. In the presence of at least one reference member, the compiler would no longer implicitly generate a copy constructor. So we could remove the manual declaration. Issue #465
2017-12-21 14:42:15 +00:00
View_handle _handle { };
int _x, _y, _w, _h;
const char *_title;
Test_view *_parent_view;
2011-12-22 15:19:25 +00:00
public:
Test_view(Nitpicker::Session_client *nitpicker,
2011-12-22 15:19:25 +00:00
int x, int y, int w, int h,
const char *title,
Test_view *parent_view = 0)
2011-12-22 15:19:25 +00:00
:
_nitpicker(*nitpicker),
_x(x), _y(y), _w(w), _h(h), _title(title), _parent_view(parent_view)
2011-12-22 15:19:25 +00:00
{
using namespace Nitpicker;
View_handle parent_handle;
if (_parent_view)
parent_handle = _nitpicker.view_handle(_parent_view->view_cap());
_handle = _nitpicker.create_view(parent_handle);
if (parent_handle.valid())
_nitpicker.release_view_handle(parent_handle);
Nitpicker::Rect rect(Nitpicker::Point(_x, _y), Nitpicker::Area(_w, _h));
_nitpicker.enqueue<Command::Geometry>(_handle, rect);
Follow practices suggested by "Effective C++" The patch adjust the code of the base, base-<kernel>, and os repository. To adapt existing components to fix violations of the best practices suggested by "Effective C++" as reported by the -Weffc++ compiler argument. The changes follow the patterns outlined below: * A class with virtual functions can no longer publicly inherit base classed without a vtable. The inherited object may either be moved to a member variable, or inherited privately. The latter would be used for classes that inherit 'List::Element' or 'Avl_node'. In order to enable the 'List' and 'Avl_tree' to access the meta data, the 'List' must become a friend. * Instead of adding a virtual destructor to abstract base classes, we inherit the new 'Interface' class, which contains a virtual destructor. This way, single-line abstract base classes can stay as compact as they are now. The 'Interface' utility resides in base/include/util/interface.h. * With the new warnings enabled, all member variables must be explicitly initialized. Basic types may be initialized with '='. All other types are initialized with braces '{ ... }' or as class initializers. If basic types and non-basic types appear in a row, it is nice to only use the brace syntax (also for basic types) and align the braces. * If a class contains pointers as members, it must now also provide a copy constructor and assignment operator. In the most cases, one would make them private, effectively disallowing the objects to be copied. Unfortunately, this warning cannot be fixed be inheriting our existing 'Noncopyable' class (the compiler fails to detect that the inheriting class cannot be copied and still gives the error). For now, we have to manually add declarations for both the copy constructor and assignment operator as private class members. Those declarations should be prepended with a comment like this: /* * Noncopyable */ Thread(Thread const &); Thread &operator = (Thread const &); In the future, we should revisit these places and try to replace the pointers with references. In the presence of at least one reference member, the compiler would no longer implicitly generate a copy constructor. So we could remove the manual declaration. Issue #465
2017-12-21 14:42:15 +00:00
_nitpicker.enqueue<Command::To_front>(_handle, View_handle());
_nitpicker.enqueue<Command::Title>(_handle, _title);
_nitpicker.execute();
}
Nitpicker::View_capability view_cap()
{
return _nitpicker.view_capability(_handle);
2011-12-22 15:19:25 +00:00
}
void top()
{
Follow practices suggested by "Effective C++" The patch adjust the code of the base, base-<kernel>, and os repository. To adapt existing components to fix violations of the best practices suggested by "Effective C++" as reported by the -Weffc++ compiler argument. The changes follow the patterns outlined below: * A class with virtual functions can no longer publicly inherit base classed without a vtable. The inherited object may either be moved to a member variable, or inherited privately. The latter would be used for classes that inherit 'List::Element' or 'Avl_node'. In order to enable the 'List' and 'Avl_tree' to access the meta data, the 'List' must become a friend. * Instead of adding a virtual destructor to abstract base classes, we inherit the new 'Interface' class, which contains a virtual destructor. This way, single-line abstract base classes can stay as compact as they are now. The 'Interface' utility resides in base/include/util/interface.h. * With the new warnings enabled, all member variables must be explicitly initialized. Basic types may be initialized with '='. All other types are initialized with braces '{ ... }' or as class initializers. If basic types and non-basic types appear in a row, it is nice to only use the brace syntax (also for basic types) and align the braces. * If a class contains pointers as members, it must now also provide a copy constructor and assignment operator. In the most cases, one would make them private, effectively disallowing the objects to be copied. Unfortunately, this warning cannot be fixed be inheriting our existing 'Noncopyable' class (the compiler fails to detect that the inheriting class cannot be copied and still gives the error). For now, we have to manually add declarations for both the copy constructor and assignment operator as private class members. Those declarations should be prepended with a comment like this: /* * Noncopyable */ Thread(Thread const &); Thread &operator = (Thread const &); In the future, we should revisit these places and try to replace the pointers with references. In the presence of at least one reference member, the compiler would no longer implicitly generate a copy constructor. So we could remove the manual declaration. Issue #465
2017-12-21 14:42:15 +00:00
_nitpicker.enqueue<Command::To_front>(_handle, View_handle());
_nitpicker.execute();
2011-12-22 15:19:25 +00:00
}
/**
* Move view to absolute position
*/
2011-12-22 15:19:25 +00:00
void move(int x, int y)
{
/*
* If the view uses a parent view as corrdinate origin, we need to
* transform the absolute coordinates to parent-relative
* coordinates.
*/
_x = _parent_view ? x - _parent_view->x() : x;
_y = _parent_view ? y - _parent_view->y() : y;
Nitpicker::Rect rect(Nitpicker::Point(_x, _y), Nitpicker::Area(_w, _h));
_nitpicker.enqueue<Command::Geometry>(_handle, rect);
_nitpicker.execute();
2011-12-22 15:19:25 +00:00
}
/**
* Accessors
*/
const char *title() const { return _title; }
int x() const { return _parent_view ? _parent_view->x() + _x : _x; }
int y() const { return _parent_view ? _parent_view->y() + _y : _y; }
int w() const { return _w; }
int h() const { return _h; }
2011-12-22 15:19:25 +00:00
};
class Test_view_stack : public List<Test_view>
{
private:
unsigned char *_input_mask;
unsigned _input_mask_w;
public:
Test_view_stack(unsigned char *input_mask, unsigned input_mask_w)
: _input_mask(input_mask), _input_mask_w(input_mask_w) { }
Test_view *find(int x, int y)
{
for (Test_view *tv = first(); tv; tv = tv->next()) {
2011-12-22 15:19:25 +00:00
if (x < tv->x() || x >= tv->x() + tv->w()
|| y < tv->y() || y >= tv->y() + tv->h())
continue;
if (!_input_mask)
return tv;
if (_input_mask[(y - tv->y())*_input_mask_w + (x - tv->x())])
return tv;
}
return 0;
}
void top(Test_view *tv)
{
remove(tv);
tv->top();
insert(tv);
}
};
void Component::construct(Genode::Env &env)
2011-12-22 15:19:25 +00:00
{
/*
* Init sessions to the required external services
*/
enum { CONFIG_ALPHA = false };
static Nitpicker::Connection nitpicker { env, "testnit" };
static Timer::Connection timer { env };
2011-12-22 15:19:25 +00:00
Framebuffer::Mode const mode(256, 256, Framebuffer::Mode::RGB565);
nitpicker.buffer(mode, false);
int const scr_w = mode.width(), scr_h = mode.height();
2011-12-22 15:19:25 +00:00
log("screen is ", mode);
2011-12-22 15:19:25 +00:00
if (!scr_w || !scr_h) {
error("got invalid screen - sleeping forever");
return;
2011-12-22 15:19:25 +00:00
}
/* bad-case test */
{
/* issue #3232 */
Nitpicker::Session::View_handle handle { nitpicker.create_view() };
nitpicker.destroy_view(handle);
nitpicker.destroy_view(handle);
}
Genode::Attached_dataspace fb_ds(
env.rm(), nitpicker.framebuffer()->dataspace());
short *pixels = fb_ds.local_addr<short>();
2011-12-22 15:19:25 +00:00
unsigned char *alpha = (unsigned char *)&pixels[scr_w*scr_h];
unsigned char *input_mask = CONFIG_ALPHA ? alpha + scr_w*scr_h : 0;
/*
* Paint into pixel buffer, fill alpha channel and input-mask buffer
2011-12-22 15:19:25 +00:00
*
* Input should refer to the view if the alpha value is more than 50%.
*/
for (int i = 0; i < scr_h; i++)
for (int j = 0; j < scr_w; j++) {
pixels[i*scr_w + j] = (i/8)*32*64 + (j/4)*32 + i*j/256;
if (CONFIG_ALPHA) {
alpha[i*scr_w + j] = (i*2) ^ (j*2);
input_mask[i*scr_w + j] = alpha[i*scr_w + j] > 127;
}
}
/*
* Create views to display the buffer
*/
Test_view_stack tvs(input_mask, scr_w);
{
/*
* View 'v1' is used as coordinate origin of 'v2' and 'v3'.
*/
static Test_view v1(&nitpicker, 150, 100, 230, 200, "Eins");
static Test_view v2(&nitpicker, 20, 20, 230, 210, "Zwei", &v1);
static Test_view v3(&nitpicker, 40, 40, 230, 220, "Drei", &v1);
tvs.insert(&v1);
tvs.insert(&v2);
tvs.insert(&v3);
}
2011-12-22 15:19:25 +00:00
/*
* Handle input events
*/
int mx = 0, my = 0, key_cnt = 0;
Test_view *tv = nullptr;
2011-12-22 15:19:25 +00:00
while (1) {
while (!nitpicker.input()->pending()) timer.msleep(20);
2011-12-22 15:19:25 +00:00
nitpicker.input()->for_each_event([&] (Input::Event const &ev) {
2011-12-22 15:19:25 +00:00
if (ev.press()) key_cnt++;
if (ev.release()) key_cnt--;
2011-12-22 15:19:25 +00:00
ev.handle_absolute_motion([&] (int x, int y) {
/* move selected view */
if (key_cnt > 0 && tv)
tv->move(tv->x() + x - mx, tv->y() + y - my);
2011-12-22 15:19:25 +00:00
mx = x; my = y;
});
2011-12-22 15:19:25 +00:00
/* find selected view and bring it to front */
if (ev.press() && key_cnt == 1) {
tv = tvs.find(mx, my);
2011-12-22 15:19:25 +00:00
if (tv)
tvs.top(tv);
}
});
2011-12-22 15:19:25 +00:00
}
env.parent().exit(0);
2011-12-22 15:19:25 +00:00
}