2019-01-20 03:49:48 +00:00
|
|
|
#include "GObject.h"
|
|
|
|
#include "GEvent.h"
|
|
|
|
#include "GEventLoop.h"
|
2018-10-10 13:12:38 +00:00
|
|
|
#include <AK/Assertions.h>
|
|
|
|
|
2019-01-20 03:49:48 +00:00
|
|
|
GObject::GObject(GObject* parent)
|
2018-10-10 13:12:38 +00:00
|
|
|
: m_parent(parent)
|
|
|
|
{
|
2018-10-10 14:49:36 +00:00
|
|
|
if (m_parent)
|
2019-01-31 16:31:23 +00:00
|
|
|
m_parent->add_child(*this);
|
2018-10-10 13:12:38 +00:00
|
|
|
}
|
|
|
|
|
2019-01-20 03:49:48 +00:00
|
|
|
GObject::~GObject()
|
2018-10-10 13:12:38 +00:00
|
|
|
{
|
2019-02-05 09:31:37 +00:00
|
|
|
stop_timer();
|
2018-10-10 14:49:36 +00:00
|
|
|
if (m_parent)
|
2019-01-31 16:31:23 +00:00
|
|
|
m_parent->remove_child(*this);
|
|
|
|
auto children_to_delete = move(m_children);
|
|
|
|
for (auto* child : children_to_delete)
|
2018-10-10 14:49:36 +00:00
|
|
|
delete child;
|
2018-10-10 13:12:38 +00:00
|
|
|
}
|
|
|
|
|
2019-01-20 03:49:48 +00:00
|
|
|
void GObject::event(GEvent& event)
|
2018-10-10 13:12:38 +00:00
|
|
|
{
|
|
|
|
switch (event.type()) {
|
2019-01-20 03:49:48 +00:00
|
|
|
case GEvent::Timer:
|
2019-01-31 15:37:43 +00:00
|
|
|
return timer_event(static_cast<GTimerEvent&>(event));
|
2019-01-20 03:49:48 +00:00
|
|
|
case GEvent::DeferredDestroy:
|
2018-10-13 23:23:01 +00:00
|
|
|
delete this;
|
|
|
|
break;
|
2019-03-15 15:12:06 +00:00
|
|
|
case GEvent::ChildAdded:
|
|
|
|
case GEvent::ChildRemoved:
|
|
|
|
return child_event(static_cast<GChildEvent&>(event));
|
2019-01-20 03:49:48 +00:00
|
|
|
case GEvent::Invalid:
|
2018-10-10 13:12:38 +00:00
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2018-10-10 14:49:36 +00:00
|
|
|
|
2019-01-31 16:31:23 +00:00
|
|
|
void GObject::add_child(GObject& object)
|
2018-10-10 14:49:36 +00:00
|
|
|
{
|
|
|
|
m_children.append(&object);
|
2019-03-15 15:12:06 +00:00
|
|
|
GEventLoop::main().post_event(*this, make<GChildEvent>(GEvent::ChildAdded, object));
|
2018-10-10 14:49:36 +00:00
|
|
|
}
|
|
|
|
|
2019-01-31 16:31:23 +00:00
|
|
|
void GObject::remove_child(GObject& object)
|
2018-10-10 14:49:36 +00:00
|
|
|
{
|
2019-02-25 21:06:55 +00:00
|
|
|
for (ssize_t i = 0; i < m_children.size(); ++i) {
|
2018-10-12 23:19:25 +00:00
|
|
|
if (m_children[i] == &object) {
|
|
|
|
m_children.remove(i);
|
2019-03-15 15:12:06 +00:00
|
|
|
GEventLoop::main().post_event(*this, make<GChildEvent>(GEvent::ChildRemoved, object));
|
2018-10-12 23:19:25 +00:00
|
|
|
return;
|
|
|
|
}
|
2018-10-10 14:49:36 +00:00
|
|
|
}
|
|
|
|
}
|
2018-10-12 10:18:59 +00:00
|
|
|
|
2019-01-31 15:37:43 +00:00
|
|
|
void GObject::timer_event(GTimerEvent&)
|
2018-10-12 10:18:59 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-03-15 15:12:06 +00:00
|
|
|
void GObject::child_event(GChildEvent&)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-01-31 16:31:23 +00:00
|
|
|
void GObject::start_timer(int ms)
|
2018-10-12 10:18:59 +00:00
|
|
|
{
|
2019-01-31 16:31:23 +00:00
|
|
|
if (m_timer_id) {
|
2019-01-20 03:49:48 +00:00
|
|
|
dbgprintf("GObject{%p} already has a timer!\n", this);
|
2018-10-12 10:18:59 +00:00
|
|
|
ASSERT_NOT_REACHED();
|
|
|
|
}
|
2019-02-01 02:50:06 +00:00
|
|
|
|
|
|
|
m_timer_id = GEventLoop::main().register_timer(*this, ms, true);
|
2018-10-12 10:18:59 +00:00
|
|
|
}
|
|
|
|
|
2019-01-31 16:31:23 +00:00
|
|
|
void GObject::stop_timer()
|
2018-10-12 10:18:59 +00:00
|
|
|
{
|
2019-01-31 16:31:23 +00:00
|
|
|
if (!m_timer_id)
|
2018-10-12 10:18:59 +00:00
|
|
|
return;
|
2019-02-01 02:50:06 +00:00
|
|
|
bool success = GEventLoop::main().unregister_timer(m_timer_id);
|
|
|
|
ASSERT(success);
|
2019-01-31 16:31:23 +00:00
|
|
|
m_timer_id = 0;
|
2018-10-12 10:18:59 +00:00
|
|
|
}
|
|
|
|
|
2019-01-30 19:03:52 +00:00
|
|
|
void GObject::delete_later()
|
2018-10-13 23:23:01 +00:00
|
|
|
{
|
2019-02-25 23:51:49 +00:00
|
|
|
GEventLoop::main().post_event(*this, make<GEvent>(GEvent::DeferredDestroy));
|
2018-10-13 23:23:01 +00:00
|
|
|
}
|
|
|
|
|