blob: 4488123f4b1db8b505193967beaa0a64f1cc2c56 [file] [log] [blame]
/** @file
Queue of Events sorted by the "at_timeout" field
@section license License
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#pragma once
#include "tscore/ink_platform.h"
#include "I_Event.h"
// <5ms, 10, 20, 40, 80, 160, 320, 640, 1280, 2560, 5120
#define N_PQ_LIST 10
#define PQ_BUCKET_TIME(_i) (HRTIME_MSECONDS(5) << (_i))
class EThread;
struct PriorityEventQueue {
Que(Event, link) after[N_PQ_LIST];
ink_hrtime last_check_time;
uint32_t last_check_buckets;
void
enqueue(Event *e, ink_hrtime now)
{
ink_hrtime t = e->timeout_at - now;
int i = 0;
// equivalent but faster
if (t <= PQ_BUCKET_TIME(3)) {
if (t <= PQ_BUCKET_TIME(1)) {
if (t <= PQ_BUCKET_TIME(0)) {
i = 0;
} else {
i = 1;
}
} else {
if (t <= PQ_BUCKET_TIME(2)) {
i = 2;
} else {
i = 3;
}
}
} else {
if (t <= PQ_BUCKET_TIME(7)) {
if (t <= PQ_BUCKET_TIME(5)) {
if (t <= PQ_BUCKET_TIME(4)) {
i = 4;
} else {
i = 5;
}
} else {
if (t <= PQ_BUCKET_TIME(6)) {
i = 6;
} else {
i = 7;
}
}
} else {
if (t <= PQ_BUCKET_TIME(8)) {
i = 8;
} else {
i = 9;
}
}
}
e->in_the_priority_queue = 1;
e->in_heap = i;
after[i].enqueue(e);
}
void
remove(Event *e)
{
ink_assert(e->in_the_priority_queue);
e->in_the_priority_queue = 0;
after[e->in_heap].remove(e);
}
Event *
dequeue_ready(ink_hrtime t)
{
(void)t;
Event *e = after[0].dequeue();
if (e) {
ink_assert(e->in_the_priority_queue);
e->in_the_priority_queue = 0;
}
return e;
}
void check_ready(ink_hrtime now, EThread *t);
ink_hrtime
earliest_timeout()
{
for (int i = 0; i < N_PQ_LIST; i++) {
if (after[i].head) {
return last_check_time + (PQ_BUCKET_TIME(i) / 2);
}
}
return last_check_time + HRTIME_FOREVER;
}
PriorityEventQueue();
};