MDL-9848 eventslib improvements and cleanup

This commit is contained in:
skodak 2007-05-22 10:26:29 +00:00
parent cd26d8e047
commit d46306de6a
10 changed files with 534 additions and 227 deletions

View file

@ -121,6 +121,9 @@
// Delete the capabilities that were defined by this block // Delete the capabilities that were defined by this block
capabilities_cleanup('block/'.$block->name); capabilities_cleanup('block/'.$block->name);
// remove entent handlers and dequeue pending events
events_uninstall('block/'.$block->name);
$a->block = $strblockname; $a->block = $strblockname;
$a->directory = $CFG->dirroot.'/blocks/'.$block->name; $a->directory = $CFG->dirroot.'/blocks/'.$block->name;
notice(get_string('blockdeletefiles', '', $a), 'blocks.php'); notice(get_string('blockdeletefiles', '', $a), 'blocks.php');

View file

@ -123,6 +123,9 @@
// Delete the capabilities that were defined by this module // Delete the capabilities that were defined by this module
capabilities_cleanup('mod/'.$module->name); capabilities_cleanup('mod/'.$module->name);
// remove entent handlers and dequeue pending events
events_uninstall('mod/'.$module->name);
// rebuild_course_cache(); // Because things have changed // rebuild_course_cache(); // Because things have changed
$coursesaffected = true; $coursesaffected = true;

View file

@ -123,7 +123,7 @@ if (($formdata = data_submitted()) && !empty($formdata->map)) {
$eventdata->idnumber = $idnumber; $eventdata->idnumber = $idnumber;
$eventdata->userid = $studentid; $eventdata->userid = $studentid;
$eventdata->gradevalue = $studentgrade; $eventdata->gradevalue = $studentgrade;
trigger_event('grade_added', $eventdata); events_trigger('grade_added', $eventdata);
echo "<br/>triggering event for $idnumber... student id is $studentid and grade is $studentgrade"; echo "<br/>triggering event for $idnumber... student id is $studentid and grade is $studentgrade";

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?> <?xml version="1.0" encoding="UTF-8" ?>
<XMLDB PATH="lib/db" VERSION="20070511" COMMENT="XMLDB file for core Moodle tables" <XMLDB PATH="lib/db" VERSION="20070517" COMMENT="XMLDB file for core Moodle tables"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../../lib/xmldb/xmldb.xsd" xsi:noNamespaceSchemaLocation="../../lib/xmldb/xmldb.xsd"
> >
@ -1206,12 +1206,11 @@
<INDEX NAME="eventname-handlermodule" UNIQUE="true" FIELDS="eventname, handlermodule"/> <INDEX NAME="eventname-handlermodule" UNIQUE="true" FIELDS="eventname, handlermodule"/>
</INDEXES> </INDEXES>
</TABLE> </TABLE>
<TABLE NAME="events_queue" COMMENT="This table is for storing queued events. It stores only one copy of the eventdata here, and entries from this table are being references by the event_queue_handlers_todo table." PREVIOUS="events_handlers" NEXT="events_queue_handlers"> <TABLE NAME="events_queue" COMMENT="This table is for storing queued events. It stores only one copy of the eventdata here, and entries from this table are being references by the event_queue_handlers table." PREVIOUS="events_handlers" NEXT="events_queue_handlers">
<FIELDS> <FIELDS>
<FIELD NAME="id" TYPE="int" LENGTH="10" NOTNULL="true" UNSIGNED="false" SEQUENCE="true" ENUM="false" COMMENT="id of the table, please edit me" NEXT="eventdata"/> <FIELD NAME="id" TYPE="int" LENGTH="10" NOTNULL="true" UNSIGNED="false" SEQUENCE="true" ENUM="false" COMMENT="id of the table, please edit me" NEXT="eventdata"/>
<FIELD NAME="eventdata" TYPE="text" LENGTH="big" NOTNULL="true" SEQUENCE="false" ENUM="false" COMMENT="serialized version of the data object passed to the event handler." PREVIOUS="id" NEXT="schedule"/> <FIELD NAME="eventdata" TYPE="text" LENGTH="big" NOTNULL="true" SEQUENCE="false" ENUM="false" COMMENT="serialized version of the data object passed to the event handler." PREVIOUS="id" NEXT="stackdump"/>
<FIELD NAME="schedule" TYPE="char" LENGTH="255" NOTNULL="true" SEQUENCE="false" ENUM="false" COMMENT="'cron' or 'instant'." PREVIOUS="eventdata" NEXT="stackdump"/> <FIELD NAME="stackdump" TYPE="text" LENGTH="medium" NOTNULL="false" SEQUENCE="false" ENUM="false" COMMENT="serialized debug_backtrace showing where the event was fired from" PREVIOUS="eventdata" NEXT="userid"/>
<FIELD NAME="stackdump" TYPE="text" LENGTH="medium" NOTNULL="false" SEQUENCE="false" ENUM="false" COMMENT="serialized debug_backtrace showing where the event was fired from" PREVIOUS="schedule" NEXT="userid"/>
<FIELD NAME="userid" TYPE="int" LENGTH="10" NOTNULL="false" UNSIGNED="true" SEQUENCE="false" ENUM="false" COMMENT="$USER-&amp;gt;id when the event was fired" PREVIOUS="stackdump" NEXT="timecreated"/> <FIELD NAME="userid" TYPE="int" LENGTH="10" NOTNULL="false" UNSIGNED="true" SEQUENCE="false" ENUM="false" COMMENT="$USER-&amp;gt;id when the event was fired" PREVIOUS="stackdump" NEXT="timecreated"/>
<FIELD NAME="timecreated" TYPE="int" LENGTH="10" NOTNULL="true" UNSIGNED="true" SEQUENCE="false" ENUM="false" COMMENT="time stamp of the first time this was added" PREVIOUS="userid"/> <FIELD NAME="timecreated" TYPE="int" LENGTH="10" NOTNULL="true" UNSIGNED="true" SEQUENCE="false" ENUM="false" COMMENT="time stamp of the first time this was added" PREVIOUS="userid"/>
</FIELDS> </FIELDS>

View file

@ -1292,6 +1292,16 @@ function xmldb_main_upgrade($oldversion=0) {
} }
} }
if ($result && $oldversion < 2007052200) {
/// Define field schedule to be dropped from events_queue
$table = new XMLDBTable('events_queue');
$field = new XMLDBField('schedule');
/// Launch drop field stackdump
$result = $result && drop_field($table, $field);
}
return $result; return $result;
} }

View file

@ -23,6 +23,9 @@ function events_load_def($component) {
if ($component == 'moodle') { if ($component == 'moodle') {
$defpath = $CFG->libdir.'/db/events.php'; $defpath = $CFG->libdir.'/db/events.php';
} else if ($component == 'unittest') {
$defpath = $CFG->libdir.'/simpletest/fixtures/events.php';
} else { } else {
$compparts = explode('/', $component); $compparts = explode('/', $component);
@ -41,7 +44,7 @@ function events_load_def($component) {
} }
} }
$events = array(); $events = array(); // TODO: $handlers might be better here ;-)
if (file_exists($defpath)) { if (file_exists($defpath)) {
require($defpath); require($defpath);
@ -58,93 +61,97 @@ function events_load_def($component) {
* *
* INTERNAL - to be used from eventslib only * INTERNAL - to be used from eventslib only
*/ */
function get_cached_events($component) { function events_get_cached($component) {
$cachedevents = array(); $cachedhandlers = array();
if ($storedevents = get_records('events_handlers', 'handlermodule', $component)) { if ($storedhandlers = get_records('events_handlers', 'handlermodule', $component)) {
foreach ($storedevents as $event) { foreach ($storedhandlers as $handler) {
$cachedevents[$event->eventname] = array ( $cachedhandlers[$handler->eventname] = array (
'id' => $event->id, 'id' => $handler->id,
'handlerfile' => $event->handlerfile, 'handlerfile' => $handler->handlerfile,
'handlerfunction' => $event->handlerfunction, 'handlerfunction' => $handler->handlerfunction,
'schedule' => $event->schedule); 'schedule' => $handler->schedule);
} }
} }
return $cachedevents; return $cachedhandlers;
} }
/** /**
* We can not removed all event handlers in table, then add them again * We can not removed all event handlers in table, then add them again
* because event handlers could be referenced by queued items * because event handlers could be referenced by queued items
* *
* Updates the capabilities table with the component capability definitions.
* If no parameters are given, the function updates the core moodle
* capabilities.
*
* Note that the absence of the db/events.php event definition file * Note that the absence of the db/events.php event definition file
* will cause any stored events for the component to be removed from * will cause any queued events for the component to be removed from
* the database. * the database.
* *
* @param $component - examples: 'moodle', 'mod/forum', 'block/quiz_results' * @param $component - examples: 'moodle', 'mod/forum', 'block/quiz_results'
* @return boolean * @return boolean
*/ */
function events_update_definition($component='moodle') { function events_update_definition($component='moodle') {
// load event definition from events.php // load event definition from events.php
$fileevents = events_load_def($component); $filehandlers = events_load_def($component);
// load event definitions from db tables // load event definitions from db tables
// if we detect an event being already stored, we discard from this array later // if we detect an event being already stored, we discard from this array later
// the remaining needs to be removed // the remaining needs to be removed
$cachedevents = get_cached_events($component); $cachedhandlers = events_get_cached($component);
foreach ($fileevents as $eventname => $fileevent) { foreach ($filehandlers as $eventname => $filehandler) {
if (!empty($cachedevents[$eventname])) { if (!empty($cachedhandlers[$eventname])) {
if ($cachedevents[$eventname]['handlerfile'] == $fileevent['handlerfile'] && if ($cachedhandlers[$eventname]['handlerfile'] == $filehandler['handlerfile'] &&
$cachedevents[$eventname]['handlerfunction'] == $fileevent['handlerfunction'] && $cachedhandlers[$eventname]['handlerfunction'] == serialize($filehandler['handlerfunction']) &&
$cachedevents[$eventname]['schedule'] == $fileevent['schedule']) { $cachedhandlers[$eventname]['schedule'] == $filehandler['schedule']) {
// exact same event handler already present in db, ignore this entry // exact same event handler already present in db, ignore this entry
unset($cachedevents[$eventname]); unset($cachedhandlers[$eventname]);
continue; continue;
} else { } else {
// same event name matches, this event has been updated, update the datebase // same event name matches, this event has been updated, update the datebase
$event = new object(); $handler = new object();
$event->id = $cachedevents[$eventname]['id']; $handler->id = $cachedhandlers[$eventname]['id'];
$event->handlerfile = $fileevent['handlerfile']; $handler->handlerfile = $filehandler['handlerfile'];
$event->handlerfunction = $fileevent['handlerfunction']; $handler->handlerfunction = serialize($filehandler['handlerfunction']); // static class methods stored as array
$event->schedule = $fileevent['schedule']; $handler->schedule = $filehandler['schedule'];
update_record('events_handlers', $event); update_record('events_handlers', $handler);
unset($cachedevents[$eventname]); unset($cachedhandlers[$eventname]);
continue; continue;
} }
} else { } else {
// if we are here, this event handler is not present in db (new) // if we are here, this event handler is not present in db (new)
// add it // add it
$event = new object(); $handler = new object();
$event->eventname = $eventname; $handler->eventname = $eventname;
$event->handlermodule = $component; $handler->handlermodule = $component;
$event->handlerfile = $fileevent['handlerfile']; $handler->handlerfile = $filehandler['handlerfile'];
$event->handlerfunction = $fileevent['handlerfunction']; $handler->handlerfunction = serialize($filehandler['handlerfunction']); // static class methods stored as array
$event->schedule = $fileevent['schedule']; $handler->schedule = $filehandler['schedule'];
insert_record('events_handlers', $event); insert_record('events_handlers', $handler);
} }
} }
// clean up the left overs, the entries in cachedevents array at this points are deprecated event handlers // clean up the left overs, the entries in cachedevents array at this points are deprecated event handlers
// and should be removed, delete from db // and should be removed, delete from db
events_cleanup($component, $cachedevents); events_cleanup($component, $cachedhandlers);
return true; return true;
} }
/**
* Remove all event handlers and queued events
* @param $component - examples: 'moodle', 'mod/forum', 'block/quiz_results'
*/
function events_uninstall($component) {
$cachedhandlers = events_get_cached($component);
events_cleanup($component, $cachedhandlers);
}
/** /**
* Deletes cached events that are no longer needed by the component. * Deletes cached events that are no longer needed by the component.
* @param $component - examples: 'moodle', 'mod/forum', 'block/quiz_results' * @param $component - examples: 'moodle', 'mod/forum', 'block/quiz_results'
@ -153,9 +160,15 @@ function events_update_definition($component='moodle') {
* *
* INTERNAL - to be used from eventslib only * INTERNAL - to be used from eventslib only
*/ */
function events_cleanup($component, $cachedevents) { function events_cleanup($component, $cachedhandlers) {
$deletecount = 0; $deletecount = 0;
foreach ($cachedevents as $eventname => $cachedevent) { foreach ($cachedhandlers as $eventname => $cachedhandler) {
if ($qhandlers = get_records('events_queue_handlers', 'handlerid', $cachedhandler['id'])) {
debugging("Removing pending events from queue before deleting of event handler: $component - $eventname");
foreach ($qhandlers as $qhandler) {
events_dequeue($qhandler);
}
}
if (delete_records('events_handlers', 'eventname', $eventname, 'handlermodule', $component)) { if (delete_records('events_handlers', 'eventname', $eventname, 'handlermodule', $component)) {
$deletecount++; $deletecount++;
} }
@ -169,162 +182,293 @@ function events_cleanup($component, $cachedevents) {
* puts a handler on queue * puts a handler on queue
* @param object handler - event handler object from db * @param object handler - event handler object from db
* @param object eventdata - event data object * @param object eventdata - event data object
* @param bool failed - whether this handler is queued because of a failed event trigger * @return id number of new queue handler
* @return *
* INTERNAL - to be used from eventslib only
*/ */
function queue_handler($handler, $eventid) { function events_queue_handler($handler, $event, $errormessage) {
global $USER;
// check if this event handler is already queued if ($qhandler = get_record('events_queue_handlers', 'queuedeventid', $event->id, 'handlerid', $handler->id)) {
if (!$qh = get_record('events_queue_handlers', 'queuedeventid', $eventid, 'handlerid', $handler->id)) { debugging("Please check code: Event id $event->id is already queued in handler id $qhandler->id");
// make a new one return $qhandler->id;
$qh = new object; }
$qh->queuedeventid = $eventid;
$qh->handlerid = $handler->id; // make a new queue handler
$qh->status = 0; $qhandler = new object();
$qh->errormessage = ''; $qhandler->queuedeventid = $event->id;
$qh->timemodified = time(); $qhandler->handlerid = $handler->id;
return insert_record('events_queue_handlers', $qh); $qhandler->errormessage = addslashes($errormessage);
$qhandler->timemodified = time();
if ($handler->schedule == 'instant' and $handler->status == 1) {
$qhandler->status = 1; //already one failed attempt to dispatch this event
} else { } else {
// update existing one, failed again $qhandler->status = 0;
$qh->states++;
$qh->timemodified = time();
update_record('events_queue_handlers', $qh);
return -1; // failed
} }
}
/** return insert_record('events_queue_handlers', $qhandler);
* function to call all eventhandlers when triggering an event
* @param eventname - name of the event
* @param eventdata - event data object
* @return number of failed events
*/
function trigger_event($eventname, $eventdata) {
$failedevent = 0; // number of failed events.
$eventid = 0;
// pull out all registered event handlers
if ($handlers = get_records('events_handlers', 'eventname', $eventname)) {
foreach ($handlers as $handler) {
// either excute it now
// if event type is
if ($handler->schedule == 'instant') {
if (dispatch_event($handler, $eventdata)) {
continue;
} else {
// update the failed flag
$failedevent ++;
}
}
// if even type is not instant, or trigger failed, queue it
$queuedevent++;
// make and queue the event object here
if (!$eventid) {
$eq = new object;
$eq->userid = $USER->id;
$eq->schedule = $eventdata->schedule;
$eq->eventdata = serialize($eventdata);
$eq->stackdump = '';
$eq->timecreated = time();
$eventid = insert_record('events_queue', $eq);
}
queue_handler($handler, $eventid);
}
}
return $failedevent;
} }
/** /**
* trigger a single event with a specified handler * trigger a single event with a specified handler
* @param handler - hander object from db * @param handler - hander object from db
* @param eventdata - event dataobject * @param eventdata - event dataobject
* @param errormessage - error message indicating problem
* @return bool - success or fail * @return bool - success or fail
*
* INTERNAL - to be used from eventslib only
*/ */
function dispatch_event($handler, $eventdata) { function events_dispatch($handler, $eventdata, &$errormessage) {
global $CFG; global $CFG;
$function = unserialize($handler->handlerfunction);
if (is_callable($function)) {
// oki, no need for includes
} else if (file_exists($CFG->dirroot.$handler->handlerfile)) {
include_once($CFG->dirroot.$handler->handlerfile);
} else {
$errormessage = "Handler file of component $handler->handlermodule: $handler->handlerfile can not be found!";
return false;
}
// checks for handler validity // checks for handler validity
if (is_callable($function)) {
return call_user_func($function, $eventdata);
// check if the same handler is queued already, if so, return false so we can queue it } else {
// TODO $errormessage = "Handler function of component $handler->handlermodule: $handler->handlerfunction not callable function or class method!";
return false;
include_once($CFG->dirroot.$handler->handlerfile); }
return call_user_func($handler->handlerfunction, $eventdata);
} }
/** /**
* given a queued handler, call the respective event handler to process the event * given a queued handler, call the respective event handler to process the event
* @param object handler- events_queued_handler object from db * @param object qhandler - events_queued_handler object from db
* @return fail or custom function value * @return boolean meaning success, or NULL on fatal failure
*
* INTERNAL - to be used from eventslib only
*/ */
function events_process_queued_handler($handler) { function events_process_queued_handler($qhandler) {
// checks for handler validity
global $CFG; global $CFG;
// get handler // get handler
if (!$eventhandler = get_record('events_handlers', 'id', $handler->handlerid)) { if (!$handler = get_record('events_handlers', 'id', $qhandler->handlerid)) {
// can't proceed with no handler debugging("Error processing queue handler $qhandler->id, missing handler id: $qhandler->handlerid");
return false; //irrecoverable error, remove broken queue handler
events_dequeue($qhandler);
return NULL;
} }
// get event object // get event object
if (!$eventobject = get_record('events_queue', 'id', $handler->queuedeventid)) { if (!$event = get_record('events_queue', 'id', $qhandler->queuedeventid)) {
// can't proceed with no event object // can't proceed with no event object - might happen when two crons running at the same time
return false; debugging("Error processing queue handler $qhandler->id, missing event id: $qhandler->queuedeventid");
//irrecoverable error, remove broken queue handler
events_dequeue($qhandler);
return NULL;
} }
// call the function sepcified by the handler
return dispatch_event($eventhandler, unserialize($eventobject->eventdata)); // call the function specified by the handler
} $errormessage = 'Unknown error';
if (events_dispatch($handler, unserialize($event->eventdata), $errormessage)) {
//everything ok
events_dequeue($qhandler);
return true;
/** } else {
* Events cron will try to empty the events queue by processing all the queued events handlers //dispatching failed
*/ $qh = new object();
function events_cron() { $qh->id = $qhandler->id;
$qh->errormessage = addslashes($errormessage);
global $CFG; $qh->timemodified = time();
$qh->status = $qhandler->status + 1;
if ($handlers = get_records_select('events_queue_handlers', '', 'timemodified')) { update_record('events_queue_handlers', $qh);
foreach ($handlers as $handler) { return false;
if (events_process_queued_handler($handler)) {
// dequeue();
events_dequeue($handler);
} else {
// failed again, put back on queue
$handler->timemodified = time();
$handler->status++;
update_record('events_queue_handlers', $handler);
}
}
} }
} }
/** /**
* removes this queued handler from the events_queued_handler table * removes this queued handler from the events_queued_handler table
* removes events_queue record from events_queue if no more references to this event object exists * removes events_queue record from events_queue if no more references to this event object exists
* @input object handler - events_queued_handler object from db * @param object qhandler - events_queued_handler object from db
*
* INTERNAL - to be used from eventslib only
*/ */
function events_dequeue($handler) { function events_dequeue($qhandler) {
// first delete the queue handler
delete_records('events_queue_handlers', 'id', $qhandler->id);
if (delete_records('events_queue_handlers', 'id', $handler->id)) { // if no more queued handler is pointing to the same event - delete the event too
// if no more queued handler is pointing to the same event if (!record_exists('events_queue_handlers', 'queuedeventid', $qhandler->queuedeventid)) {
if (!record_exists('events_queue_handlers', 'queuedeventid', $handler->queuedeventid)) { delete_records('events_queue', 'id', $qhandler->queuedeventid);
delete_records('events_queue', 'id', $handler->queuedeventid);
}
return true;
} else {
return false;
} }
} }
/****** Public events API starts here, do not use functions above in 3rd party code ******/
/**
* Events cron will try to empty the events queue by processing all the queued events handlers
* @param string eventname - empty means all
* @return number of dispatched+removed broken events
*
* PUBLIC
*/
function events_cron($eventname='') {
global $CFG;
$failed = array();
$processed = 0;
if ($eventname) {
$sql = "SELECT qh.* FROM {$CFG->prefix}events_queue_handlers qh, {$CFG->prefix}events_handlers h
WHERE qh.handlerid = h.id AND h.eventname='$eventname'
ORDER BY qh.id";
} else {
$sql = "SELECT * FROM {$CFG->prefix}events_queue_handlers
ORDER BY id";
}
if ($rs = get_recordset_sql($sql)) {
if ($rs->RecordCount() > 0) {
while ($qhandler = rs_fetch_next_record($rs)) {
if (in_array($qhandler->handlerid, $failed)) {
// do not try to dispatch any later events when one already failed
continue;
}
$status = events_process_queued_handler($qhandler);
if ($status === false) {
$failed[] = $qhandler->handlerid;
} else {
$processed++;
}
}
}
rs_close($rs);
}
return $processed;
}
/**
* Function to call all eventhandlers when triggering an event
* @param eventname - name of the event
* @param eventdata - event data object
* @return number of failed events
*
* PUBLIC
*/
function events_trigger($eventname, $eventdata) {
global $CFG, $USER;
$failedcount = 0; // number of failed events.
$event = false;
// pull out all registered event handlers
if ($handlers = get_records('events_handlers', 'eventname', $eventname)) {
foreach ($handlers as $handler) {
$errormessage = '';
if ($handler->schedule == 'instant') {
if ($handler->status) {
//check if previous pending events processed
if (!record_exists('events_queue_handlers', 'handlerid', $handler->id)) {
// ok, queue is empty, lets reset the status back to 0 == ok
$handler->status = 0;
set_field('events_handlers', 'status', 0, 'id', $handler->id);
}
}
// dispatch the event only if instant schedule and status ok
if (!$handler->status) {
$errormessage = 'Unknown error';;
if (events_dispatch($handler, $eventdata, $errormessage)) {
continue;
}
// set error count to 1 == send next instant into cron queue
set_field('events_handlers', 'status', 1, 'id', $handler->id);
} else {
// increment the error status counter
$handler->status++;
set_field('events_handlers', 'status', $handler->status, 'id', $handler->id);
}
// update the failed counter
$failedcount ++;
} else if ($handler->schedule == 'cron') {
//ok - use queuing of events only
} else {
// unknown schedule - fallback to cron type
debugging("Unknown handler schedule type: $handler->schedule");
}
// if even type is not instant, or dispatch failed, queue it
if ($event === false) {
$event = new object();
$event->userid = $USER->id;
$event->eventdata = serialize($eventdata);
$event->timecreated = time();
if (debugging()) {
$dump = '';
$callers = debug_backtrace();
foreach ($callers as $caller) {
$dump .= 'line ' . $caller['line'] . ' of ' . substr($caller['file'], strlen($CFG->dirroot) + 1);
if (isset($caller['function'])) {
$dump .= ': call to ';
if (isset($caller['class'])) {
$dump .= $caller['class'] . $caller['type'];
}
$dump .= $caller['function'] . '()';
}
$dump .= "\n";
}
$event->stackdump = addslashes($dump);
} else {
$event->stackdump = '';
}
$event->id = insert_record('events_queue', $event);
}
events_queue_handler($handler, $event, $errormessage);
}
} else {
debugging("No handler found for event: $eventname");
}
return $failedcount;
}
/** /**
* checks if an event is registered for this component * checks if an event is registered for this component
* @param string eventname - name of the event
* @param string component - component name, can be mod/data or moodle * @param string component - component name, can be mod/data or moodle
* @return bool * @return bool
*
* PUBLIC
*/ */
function event_is_registered($component, $eventname) { function events_is_registered($eventname, $component) {
return record_exists('events_handlers', 'handlermodule', $component, 'eventname', $eventname); return record_exists('events_handlers', 'handlermodule', $component, 'eventname', $eventname);
} }
/**
* checks if an event is queued for processing - either cron handlers attached or failed instant handlers
* @param string eventname - name of the event
* @return int number of queued events
*
* PUBLIC
*/
function events_pending_count($eventname) {
global $CFG;
$sql = "SELECT COUNT(*) FROM {$CFG->prefix}events_queue_handlers qh, {$CFG->prefix}events_handlers h
WHERE qh.handlerid = h.id AND h.eventname='$eventname'";
return count_records_sql($sql);
}
?> ?>

View file

@ -165,7 +165,7 @@ function grade_update_final_grades($courseid=NULL, $gradeitemid=NULL) {
* For backward compatibility with old third-party modules, this function is called * For backward compatibility with old third-party modules, this function is called
* via to admin/cron.php to search all mod/xxx/lib.php files for functions named xxx_grades(), * via to admin/cron.php to search all mod/xxx/lib.php files for functions named xxx_grades(),
* if the current modules does not have grade events registered with the grade book. * if the current modules does not have grade events registered with the grade book.
* Once the data is extracted, the event_trigger() function can be called to initiate * Once the data is extracted, the events_trigger() function can be called to initiate
* an event as usual and copy/ *upgrade the data in the gradebook tables. * an event as usual and copy/ *upgrade the data in the gradebook tables.
*/ */
function grades_grab_grades() { function grades_grab_grades() {
@ -192,7 +192,7 @@ function grades_grab_grades() {
$gradefunc = $mod.'_grades'; $gradefunc = $mod.'_grades';
// if this mod has grades, but grade_added event is not registered // if this mod has grades, but grade_added event is not registered
// then we need to pull grades into the new gradebook // then we need to pull grades into the new gradebook
if (function_exists($gradefunc) && !event_is_registered($mod, $gradefunc)) { if (function_exists($gradefunc) && !events_is_registered($gradefunc, $mod)) {//TODO: the use of $gradefunct as eventname here does not seem to be correct
// get all instance of the mod // get all instance of the mod
$module = get_record('modules', 'name', $mod); $module = get_record('modules', 'name', $mod);
if ($module && $modinstances = get_records_select('course_modules cm, '.$CFG->prefix.$mod.' m', 'cm.module = '.$module->id.' AND m.id = cm.instance')) { if ($module && $modinstances = get_records_select('course_modules cm, '.$CFG->prefix.$mod.' m', 'cm.module = '.$module->id.' AND m.id = cm.instance')) {
@ -202,8 +202,8 @@ function grades_grab_grades() {
foreach ($grades->grades as $userid=>$usergrade) { foreach ($grades->grades as $userid=>$usergrade) {
// make the grade_added eventdata // make the grade_added eventdata
// missing grade event trigger // missing grade event trigger
// trigger_event('grade_added', $eventdata); // events_trigger('grade_added', $eventdata);
unset($eventdata); $eventdata = new object();
$eventdata->courseid = $modinstance->course; $eventdata->courseid = $modinstance->course;
$eventdata->itemmodule = $mod; $eventdata->itemmodule = $mod;
$eventdata->iteminstance = $modinstance->instance; $eventdata->iteminstance = $modinstance->instance;
@ -211,7 +211,7 @@ function grades_grab_grades() {
$eventdata->userid = $userid; $eventdata->userid = $userid;
$eventdata->gradevalue = $usergrade; $eventdata->gradevalue = $usergrade;
$eventdata->itemname = $modinstance->name; $eventdata->itemname = $modinstance->name;
trigger_event('grade_added', $eventdata); events_trigger('grade_added', $eventdata);
} }
} }

View file

@ -0,0 +1,41 @@
<?php // $Id$
///////////////////////////////////////////////////////////////////////////
// //
// NOTICE OF COPYRIGHT //
// //
// Moodle - Modular Object-Oriented Dynamic Learning Environment //
// http://moodle.org //
// //
// Copyright (C) 1999-2007 Martin Dougiamas http://dougiamas.com //
// //
// 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 of the License, 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: //
// //
// http://www.gnu.org/copyleft/gpl.html //
// //
///////////////////////////////////////////////////////////////////////////
$events = array (
'test_instant' => array (
'handlerfile' => '/lib/simpletest/testeventslib.php',
'handlerfunction' => 'sample_function_handler',
'schedule' => 'instant'
),
'test_cron' => array (
'handlerfile' => '/lib/simpletest/testeventslib.php',
'handlerfunction' => array('sample_handler_class', 'static_method'),
'schedule' => 'cron'
)
);
?>

View file

@ -1,24 +1,84 @@
<?php <?php
/** $Id */ /* $Id$ */
require_once(dirname(__FILE__) . '/../../config.php');
if (!defined('MOODLE_INTERNAL')) {
die('Direct access to this script is forbidden.'); /// It must be included from a Moodle page
}
global $CFG; global $CFG;
require_once($CFG->libdir . '/simpletestlib.php'); require_once($CFG->libdir . '/simpletestlib.php');
require_once($CFG->libdir . '/eventslib.php');
require_once($CFG->libdir . '/dmllib.php');
// dummy test function // test handler function
function plusone($eventdata) { function sample_function_handler($eventdata) {
static $called = 0;
static $ignorefail = false;
return $eventdata+1; if ($eventdata == 'status') {
return $called;
} else if ($eventdata == 'reset') {
$called = 0;
$ignorefail = false;
return;
} else if ($eventdata == 'fail') {
if ($ignorefail) {
$called++;
return true;
} else {
return false;
}
} else if ($eventdata == 'ignorefail') {
$ignorefail = true;
return;
} else if ($eventdata == 'ok') {
$called++;
return true;
}
error('Incorrect eventadata submitted: '.$eventdata);
}
// test handler class with static method
class sample_handler_class {
function static_method($eventdata) {
static $called = 0;
static $ignorefail = false;
if ($eventdata == 'status') {
return $called;
} else if ($eventdata == 'reset') {
$called = 0;
$ignorefail = false;
return;
} else if ($eventdata == 'fail') {
if ($ignorefail) {
$called++;
return true;
} else {
return false;
}
} else if ($eventdata == 'ignorefail') {
$ignorefail = true;
return;
} else if ($eventdata == 'ok') {
$called++;
return true;
}
error('Incorrect eventadata submitted: '.$eventdata);
}
} }
class eventslib_test extends UnitTestCase { class eventslib_test extends UnitTestCase {
var $handlerid;
var $handler;
var $storedhandler;
/** /**
* Create temporary entries in the database for these tests. * Create temporary entries in the database for these tests.
* These tests have to work no matter the data currently in the database * These tests have to work no matter the data currently in the database
@ -26,71 +86,118 @@ class eventslib_test extends UnitTestCase {
* data have to be artificially inseminated (:-) in the DB. * data have to be artificially inseminated (:-) in the DB.
*/ */
function setUp() { function setUp() {
events_uninstall('unittest');
global $CFG; sample_function_handler('reset');
sample_handler_class::static_method('reset');
// make a dummy event events_update_definition('unittest');
$eventhandler -> eventname = 'testevent';
$eventhandler -> handlermodule = 'unittest';
$eventhandler -> handlerfile = '/lib/simpletest/testeventslib.php';
$eventhandler -> handlerfunction = 'plusone';
$eventhandler -> schedule = 'instant';
$this -> handler = $eventhandler;
$this -> handlerid = insert_record('events_handlers', $eventhandler);
$this -> handler->id = $this->handlerid;
} }
/** /**
* Delete temporary entries from the database * Delete temporary entries from the database
*/ */
function tearDown() function tearDown() {
{ events_uninstall('unittest');
delete_records('events_handlers', 'id', $this->handlerid);
} }
/** /**
* tests queue_handler() and events_process_queued_handler() and trigger_event() * Tests the installation of event handlers from file
*/ */
function test_events_process_queued_handler_handler() { function test__events_update_definition__install() {
global $CFG;
$eventdata = new object; $dbcount = count_records('events_handlers', 'handlermodule', 'unittest');
$eventdata->eventdata = serialize(1); $events = array();
$eventdata->schedule = 'instant'; require($CFG->libdir.'/simpletest/fixtures/events.php');
$filecount = count($events);
$eventid = insert_record('events_queue', $eventdata); $this->assertEqual($dbcount, $filecount, 'Equal number of handlers in file and db: %s');
$id = queue_handler($this->handler, $eventid);
$storedhandler = get_record('events_queue_handlers', 'id', $id);
$retval = events_process_queued_handler($storedhandler);
$this->assertEqual(2, $retval);
$this->storedhandler = $storedhandler;
} }
/** /**
* tests events_dequeue() * Tests the uninstallation of event handlers from file
*/ */
function test_events_dequeue() { function test__events_update_definition__uninstall() {
$this->assertTrue(events_dequeue($this->storedhandler)); events_uninstall('unittest');
$this->assertEqual(0, count_records('events_handlers', 'handlermodule', 'unittest'), 'All handlers should be uninstalled: %s');
} }
/** /**
* tests trigger_event funtion() * Tests the update of event handlers from file
*/ */
function test_trigger_event() { function test__events_update_definition__update() {
$eventdata = 2; // first modify directly existing handler
$this->assertEqual(0, trigger_event('testevent', $eventdata)); $handler = get_record('events_handlers', 'handlermodule', 'unittest', 'eventname', 'test_instant');
$original = $handler->handlerfunction;
// change handler in db
set_field('events_handlers', 'handlerfunction', serialize('some_other_function_handler'), 'id', $handler->id);
// update the definition, it should revert the handler back
events_update_definition('unittest');
$handler = get_record('events_handlers', 'handlermodule', 'unittest', 'eventname', 'test_instant');
$this->assertEqual($handler->handlerfunction, $original, 'update should sync db with file definition: %s');
} }
/** /**
* tests trigger_event_is_registered funtion() * tests events_trigger_is_registered funtion()
*/ */
function test_event_is_registered() { function test__events_is_registered() {
$this->assertTrue(event_is_registered('unittest', 'testevent')); $this->assertTrue(events_is_registered('test_instant', 'unittest'));
} }
/**
* tests events_trigger funtion()
*/
function test__events_trigger__instant() {
$this->assertEqual(0, events_trigger('test_instant', 'ok'));
$this->assertEqual(0, events_trigger('test_instant', 'ok'));
$this->assertEqual(2, sample_function_handler('status'));
}
/**
* tests events_trigger funtion()
*/
function test__events_trigger__cron() {
$this->assertEqual(0, events_trigger('test_cron', 'ok'));
$this->assertEqual(0, sample_handler_class::static_method('status'));
events_cron();
$this->assertEqual(1, sample_handler_class::static_method('status'));
}
/**
* tests events_pending_count()
*/
function test__events_pending_count() {
events_trigger('test_cron', 'ok');
events_trigger('test_cron', 'ok');
$this->assertEqual(2, events_pending_count('test_cron'), 'two events should in queue: %s');
events_cron('test_cron');
$this->assertEqual(0, events_pending_count('test_cron'), 'all messages should be already dequeued: %s');
}
/**
* tests events_trigger funtion() when instant handler fails
*/
function test__events_trigger__failed_instant() {
$this->assertEqual(1, events_trigger('test_instant', 'fail'), 'fail first event: %s');
$this->assertEqual(1, events_trigger('test_instant', 'ok'), 'this one should fail too: %s');
$this->assertEqual(0, events_cron('test_instant'), 'all events should stay in queue: %s');
$this->assertEqual(2, events_pending_count('test_instant'), 'two events should in queue: %s');
$this->assertEqual(0, sample_function_handler('status'), 'verify no event dispatched yet: %s');
sample_function_handler('ignorefail'); //ignore "fail" eventdata from now on
$this->assertEqual(1, events_trigger('test_instant', 'ok'), 'this one should go to queue directly: %s');
$this->assertEqual(3, events_pending_count('test_instant'), 'three events should in queue: %s');
$this->assertEqual(0, sample_function_handler('status'), 'verify previous event was not dispatched: %s');
$this->assertEqual(3, events_cron('test_instant'), 'all events should be dispatched: %s');
$this->assertEqual(3, sample_function_handler('status'), 'verify three events were dispatched: %s');
$this->assertEqual(0, events_pending_count('test_instant'), 'no events should in queue: %s');
$this->assertEqual(0, events_trigger('test_instant', 'ok'), 'this event should be dispatched immediately: %s');
$this->assertEqual(4, sample_function_handler('status'), 'verify event was dispatched: %s');
$this->assertEqual(0, events_pending_count('test_instant'), 'no events should in queue: %s');
}
} }
?> ?>

View file

@ -6,7 +6,7 @@
// This is compared against the values stored in the database to determine // This is compared against the values stored in the database to determine
// whether upgrades should be performed (see lib/db/*.php) // whether upgrades should be performed (see lib/db/*.php)
$version = 2007051801; // YYYYMMDD = date $version = 2007052200; // YYYYMMDD = date
// XY = increments within a single day // XY = increments within a single day
$release = '1.9 dev'; // Human-friendly version name $release = '1.9 dev'; // Human-friendly version name