gambas-source-code/main/gbx/gbx_c_timer.c

190 lines
3.7 KiB
C
Raw Normal View History

/***************************************************************************
gbx_c_timer.c
(c) 2000-2012 Benoît Minisini <gambas@users.sourceforge.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
***************************************************************************/
#define __GBX_C_TIMER_C
#include "gbx_info.h"
#ifndef GBX_INFO
#include "gb_common.h"
#include "gbx_watch.h"
#include "gbx_api.h"
#include "gbx_exec.h"
#include "gbx_event.h"
#include "gbx_c_timer.h"
DECLARE_EVENT(EVENT_Timer);
static void enable_timer(CTIMER *_object, bool on)
{
if (on != (THIS->id != 0))
HOOK_DEFAULT(timer, WATCH_timer)((GB_TIMER *)THIS, on);
if (on && (THIS->id == 0))
GB_Error("Too many active timers");
}
CTIMER *CTIMER_every(int delay, GB_TIMER_CALLBACK callback, intptr_t param)
{
CTIMER *timer;
timer = OBJECT_create_native(CLASS_Timer, NULL);
OBJECT_REF(timer);
timer->callback = callback;
timer->delay = delay;
timer->tag = param;
enable_timer(timer, TRUE);
return timer;
}
******** Merged /branches/64bits r918:1003 into /trunk [CONFIGURATION] * NEW: 64 bits port. [EXAMPLES] * BUG: Fixed the AnalogWatch example. [WIKI CGI SCRIPT] * NEW: Some little cosmetic changes. [INTERPRETER] * NEW: The extern function implementation has been redesigned and is now based on libffi, so that it works on 64 bits system. Because of a flaw in the compiler design, projects that use the Pointer datatype must be recompiled to be used on a 64 bits system. This flaw will be fixed in Gambas 3. * OPT: Put some tables into read-only memory. About 1000 bytes are saved for each running interpreter, except the first one. * BUG: Does not crash anymore if a component cannot be loaded. * NEW: Spanish translation updated. * NEW: A new interpreter API for returning a pointer. [COMPILER] * BUG: Correctly compiles LONG constants inside code. [GB.DEBUG] * BUG: Compiles and links the gb.debug components with the thread libraries. [GB.DB.SQLITE3] * BUG: Getting the primary index of a table without primary index is safe now. [GB.GTK] * BUG: Modified the GLib priority of watched descriptors, as the main loop could enter in a loop in which user interface events were not managed. * BUG: Message boxes use application title without crashing now. [GB.OPENGL] * BUG: Disable dead code. [GB.QT.EXT] * BUG: TextEdit.TextWidth and TextEdit.TextHeight were not declared as read-only properties. [GB.XML.XSLT] * BUG: XSLT class is now declared as being not creatable. git-svn-id: svn://localhost/gambas/trunk@1006 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2008-01-17 22:39:26 +01:00
void CTIMER_raise(void *_object)
{
if (THIS->callback)
{
if (!(*(THIS->callback))(THIS->tag))
return;
}
else
{
if (!GB_Raise(THIS, EVENT_Timer, 0))
return;
}
enable_timer(THIS, FALSE);
}
BEGIN_METHOD_VOID(Timer_new)
THIS->id = 0;
THIS->delay = 1000;
END_METHOD
BEGIN_METHOD_VOID(Timer_free)
if (THIS->id)
HOOK_DEFAULT(timer, WATCH_timer)((GB_TIMER *)THIS, FALSE);
END_METHOD
BEGIN_METHOD_VOID(Timer_Start)
enable_timer(THIS, TRUE);
END_METHOD
BEGIN_METHOD_VOID(Timer_Stop)
enable_timer(THIS, FALSE);
END_METHOD
BEGIN_PROPERTY(Timer_Enabled)
if (READ_PROPERTY)
GB_ReturnBoolean(THIS->id != 0);
else
enable_timer(THIS, VPROP(GB_BOOLEAN));
END_PROPERTY
BEGIN_PROPERTY(CTIMER_delay)
if (READ_PROPERTY)
GB_ReturnInteger(THIS->delay);
else
{
int delay = VPROP(GB_INTEGER);
bool enabled = THIS->id != 0;
if (delay > 0)
{
if (enabled)
HOOK_DEFAULT(timer, WATCH_timer)((GB_TIMER *)THIS, FALSE);
THIS->delay = delay;
if (enabled)
HOOK_DEFAULT(timer, WATCH_timer)((GB_TIMER *)THIS, TRUE);
}
}
END_PROPERTY
static void trigger_timer(void *_object)
{
THIS->triggered = FALSE;
GB_Raise(THIS, EVENT_Timer, 0);
OBJECT_UNREF(_object);
}
BEGIN_METHOD_VOID(Timer_Trigger)
if (THIS->triggered)
return;
THIS->triggered = TRUE;
OBJECT_REF(THIS);
EVENT_post(trigger_timer, (intptr_t)THIS);
END_METHOD
#endif
******** Merged /branches/64bits r918:1003 into /trunk [CONFIGURATION] * NEW: 64 bits port. [EXAMPLES] * BUG: Fixed the AnalogWatch example. [WIKI CGI SCRIPT] * NEW: Some little cosmetic changes. [INTERPRETER] * NEW: The extern function implementation has been redesigned and is now based on libffi, so that it works on 64 bits system. Because of a flaw in the compiler design, projects that use the Pointer datatype must be recompiled to be used on a 64 bits system. This flaw will be fixed in Gambas 3. * OPT: Put some tables into read-only memory. About 1000 bytes are saved for each running interpreter, except the first one. * BUG: Does not crash anymore if a component cannot be loaded. * NEW: Spanish translation updated. * NEW: A new interpreter API for returning a pointer. [COMPILER] * BUG: Correctly compiles LONG constants inside code. [GB.DEBUG] * BUG: Compiles and links the gb.debug components with the thread libraries. [GB.DB.SQLITE3] * BUG: Getting the primary index of a table without primary index is safe now. [GB.GTK] * BUG: Modified the GLib priority of watched descriptors, as the main loop could enter in a loop in which user interface events were not managed. * BUG: Message boxes use application title without crashing now. [GB.OPENGL] * BUG: Disable dead code. [GB.QT.EXT] * BUG: TextEdit.TextWidth and TextEdit.TextHeight were not declared as read-only properties. [GB.XML.XSLT] * BUG: XSLT class is now declared as being not creatable. git-svn-id: svn://localhost/gambas/trunk@1006 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2008-01-17 22:39:26 +01:00
GB_DESC NATIVE_Timer[] =
{
GB_DECLARE("Timer", sizeof(CTIMER)),
GB_METHOD("_new", NULL, Timer_new, NULL),
GB_METHOD("_free", NULL, Timer_free, NULL),
GB_PROPERTY("Enabled", "b", Timer_Enabled),
GB_PROPERTY("Delay", "i", CTIMER_delay),
//GB_PROPERTY_READ("Timeout", "f", Timer_Timeout),
GB_METHOD("Start", NULL, Timer_Start, NULL),
GB_METHOD("Stop", NULL, Timer_Stop, NULL),
GB_METHOD("Trigger", NULL, Timer_Trigger, NULL),
GB_CONSTANT("_IsControl", "b", TRUE),
GB_CONSTANT("_IsVirtual", "b", TRUE),
GB_CONSTANT("_Group", "s", "Special"),
GB_CONSTANT("_Properties", "s", "Enabled,Delay{Range:0;86400000;10;ms}=1000"),
GB_CONSTANT("_DefaultEvent", "s", "Timer"),
GB_EVENT("Timer", NULL, NULL, &EVENT_Timer),
GB_END_DECLARE
};