Commit 395a0167 authored by msvensson@shellback's avatar msvensson@shellback

Reorganize the wait for event to be scheduled loop

Only use "set_timespec" when there is a need to use it
parent 468a954e
...@@ -699,10 +699,7 @@ static const char *queue_wait_msg= "Waiting for next activation"; ...@@ -699,10 +699,7 @@ static const char *queue_wait_msg= "Waiting for next activation";
RETURN VALUE RETURN VALUE
FALSE No error. If *job_data==NULL then top not elligible for execution. FALSE No error. If *job_data==NULL then top not elligible for execution.
Could be that there is no top. If abstime->tv_sec is set to value Could be that there is no top.
greater than zero then use abstime with pthread_cond_timedwait().
If abstime->tv_sec is zero then sleep with pthread_cond_wait().
abstime->tv_nsec is always zero.
TRUE Error TRUE Error
*/ */
...@@ -712,7 +709,6 @@ Event_queue::get_top_for_execution_if_time(THD *thd, Event_job_data **job_data) ...@@ -712,7 +709,6 @@ Event_queue::get_top_for_execution_if_time(THD *thd, Event_job_data **job_data)
{ {
bool ret= FALSE; bool ret= FALSE;
struct timespec top_time; struct timespec top_time;
struct timespec *abstime;
Event_queue_element *top= NULL; Event_queue_element *top= NULL;
bool to_free= FALSE; bool to_free= FALSE;
bool to_drop= FALSE; bool to_drop= FALSE;
...@@ -724,43 +720,40 @@ Event_queue::get_top_for_execution_if_time(THD *thd, Event_job_data **job_data) ...@@ -724,43 +720,40 @@ Event_queue::get_top_for_execution_if_time(THD *thd, Event_job_data **job_data)
{ {
int res; int res;
thd->end_time(); /* Break loop if thd has been killed */
time_t now= thd->query_start(); if (thd->killed)
abstime= NULL;
if (queue.elements)
{ {
top= ((Event_queue_element*) queue_element(&queue, 0)); DBUG_PRINT("info", ("thd->killed=%d", thd->killed));
set_timespec(top_time, sec_since_epoch_TIME(&top->execute_at)); goto end;
abstime= &top_time;
} }
if (!abstime || get_timespec_sec(*abstime) > now) if (!queue.elements)
{
const char *msg;
if (abstime)
{
next_activation_at= top->execute_at;
msg= queue_wait_msg;
}
else
{ {
/* There are no events in the queue */
set_zero_time(&next_activation_at, MYSQL_TIMESTAMP_DATETIME); set_zero_time(&next_activation_at, MYSQL_TIMESTAMP_DATETIME);
msg= queue_wait_msg;
/* Wait on condition until signaled. Release LOCK_queue while waiting. */
cond_wait(thd, NULL, queue_empty_msg, SCHED_FUNC, __LINE__);
continue;
} }
cond_wait(thd, abstime, msg, SCHED_FUNC, __LINE__); top= ((Event_queue_element*) queue_element(&queue, 0));
if (thd->killed)
thd->end_time(); /* Get current time */
time_t seconds_to_next_event=
sec_since_epoch_TIME(&top->execute_at) - thd->query_start();
next_activation_at= top->execute_at;
if (seconds_to_next_event > 0)
{ {
DBUG_PRINT("info", ("thd->killed=%d", thd->killed));
goto end;
}
/* /*
The queue could have been emptied. Therefore it's safe to start from Not yet time for top event, wait on condition with
the beginning. Moreover, this way we will get also the new top, if time or until signaled. Release LOCK_queue while waiting.
the element at the top has been changed.
*/ */
set_timespec(top_time, seconds_to_next_event);
cond_wait(thd, &top_time, queue_wait_msg, SCHED_FUNC, __LINE__);
continue; continue;
} }
...@@ -802,7 +795,7 @@ Event_queue::get_top_for_execution_if_time(THD *thd, Event_job_data **job_data) ...@@ -802,7 +795,7 @@ Event_queue::get_top_for_execution_if_time(THD *thd, Event_job_data **job_data)
else else
queue_replaced(&queue); queue_replaced(&queue);
dbug_dump_queue(now); dbug_dump_queue(thd->query_start());
break; break;
} }
end: end:
...@@ -815,8 +808,7 @@ Event_queue::get_top_for_execution_if_time(THD *thd, Event_job_data **job_data) ...@@ -815,8 +808,7 @@ Event_queue::get_top_for_execution_if_time(THD *thd, Event_job_data **job_data)
if (to_free) if (to_free)
delete top; delete top;
DBUG_PRINT("info", ("returning %d et_new: 0x%lx get_timespec_sec(abstime): %ld ", DBUG_PRINT("info", ("returning %d et_new: 0x%lx ", ret, (long) *job_data));
ret, (long) *job_data, abstime ? get_timespec_sec(*abstime) : 0));
if (*job_data) if (*job_data)
DBUG_PRINT("info", ("db: %s name: %s definer=%s", (*job_data)->dbname.str, DBUG_PRINT("info", ("db: %s name: %s definer=%s", (*job_data)->dbname.str,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment