mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 09:46:04 -05:00
bd3e77cc16
This is much nicer than grabbing directly at 'current' inside a read().
38 lines
935 B
C++
38 lines
935 B
C++
#include "GUIEventDevice.h"
|
|
#include <Kernel/Process.h>
|
|
#include <AK/Lock.h>
|
|
#include <LibC/errno_numbers.h>
|
|
|
|
//#define GUIEVENTDEVICE_DEBUG
|
|
|
|
GUIEventDevice::GUIEventDevice()
|
|
: CharacterDevice(66, 1)
|
|
{
|
|
}
|
|
|
|
GUIEventDevice::~GUIEventDevice()
|
|
{
|
|
}
|
|
|
|
bool GUIEventDevice::can_read(Process& process) const
|
|
{
|
|
return !process.gui_events().is_empty();
|
|
}
|
|
|
|
ssize_t GUIEventDevice::read(Process& process, byte* buffer, size_t size)
|
|
{
|
|
#ifdef GUIEVENTDEVICE_DEBUG
|
|
dbgprintf("GUIEventDevice::read(): %s<%u>, size=%u, sizeof(GUI_Event)=%u\n", process.name().characters(), process.pid(), size, sizeof(GUI_Event));
|
|
#endif
|
|
if (process.gui_events().is_empty())
|
|
return 0;
|
|
LOCKER(process.gui_events_lock());
|
|
ASSERT(size == sizeof(GUI_Event));
|
|
*reinterpret_cast<GUI_Event*>(buffer) = process.gui_events().take_first();
|
|
return size;
|
|
}
|
|
|
|
ssize_t GUIEventDevice::write(Process&, const byte*, size_t)
|
|
{
|
|
return -EINVAL;
|
|
}
|