| /** @file |
| |
| A brief file description |
| |
| @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. |
| */ |
| |
| /**************************************************************************** |
| |
| P_UnixEThread.h |
| |
| |
| |
| *****************************************************************************/ |
| #ifndef _P_UnixEThread_h_ |
| #define _P_UnixEThread_h_ |
| |
| #include "I_EThread.h" |
| #include "I_EventProcessor.h" |
| |
| const int DELAY_FOR_RETRY = HRTIME_MSECONDS(10); |
| |
| TS_INLINE Event * |
| EThread::schedule_spawn(Continuation * cont) |
| { |
| Event *e = EVENT_ALLOC(eventAllocator, this); |
| return schedule(e->init(cont, 0, 0)); |
| } |
| |
| TS_INLINE Event * |
| EThread::schedule_imm(Continuation * cont, int callback_event, void *cookie) |
| { |
| Event *e =::eventAllocator.alloc(); |
| e->callback_event = callback_event; |
| e->cookie = cookie; |
| return schedule(e->init(cont, 0, 0)); |
| } |
| |
| TS_INLINE Event * |
| EThread::schedule_imm_signal(Continuation * cont, int callback_event, void *cookie) |
| { |
| Event *e =::eventAllocator.alloc(); |
| e->callback_event = callback_event; |
| e->cookie = cookie; |
| return schedule(e->init(cont, 0, 0), true); |
| } |
| |
| TS_INLINE Event * |
| EThread::schedule_at(Continuation * cont, ink_hrtime t, int callback_event, void *cookie) |
| { |
| Event *e =::eventAllocator.alloc(); |
| e->callback_event = callback_event; |
| e->cookie = cookie; |
| return schedule(e->init(cont, t, 0)); |
| } |
| |
| TS_INLINE Event * |
| EThread::schedule_in(Continuation * cont, ink_hrtime t, int callback_event, void *cookie) |
| { |
| Event *e =::eventAllocator.alloc(); |
| e->callback_event = callback_event; |
| e->cookie = cookie; |
| return schedule(e->init(cont, ink_get_based_hrtime() + t, 0)); |
| } |
| |
| TS_INLINE Event * |
| EThread::schedule_every(Continuation * cont, ink_hrtime t, int callback_event, void *cookie) |
| { |
| Event *e =::eventAllocator.alloc(); |
| e->callback_event = callback_event; |
| e->cookie = cookie; |
| return schedule(e->init(cont, ink_get_based_hrtime() + t, t)); |
| } |
| |
| TS_INLINE Event * |
| EThread::schedule(Event * e, bool fast_signal) |
| { |
| e->ethread = this; |
| ink_assert(tt == REGULAR); |
| if (e->continuation->mutex) |
| e->mutex = e->continuation->mutex; |
| else |
| e->mutex = e->continuation->mutex = e->ethread->mutex; |
| ink_assert(e->mutex.m_ptr); |
| EventQueueExternal.enqueue(e, fast_signal); |
| return e; |
| } |
| |
| TS_INLINE Event * |
| EThread::schedule_imm_local(Continuation * cont, int callback_event, void *cookie) |
| { |
| Event *e = EVENT_ALLOC(eventAllocator, this); |
| e->callback_event = callback_event; |
| e->cookie = cookie; |
| return schedule_local(e->init(cont, 0, 0)); |
| } |
| |
| TS_INLINE Event * |
| EThread::schedule_at_local(Continuation * cont, ink_hrtime t, int callback_event, void *cookie) |
| { |
| Event *e = EVENT_ALLOC(eventAllocator, this); |
| e->callback_event = callback_event; |
| e->cookie = cookie; |
| return schedule_local(e->init(cont, t, 0)); |
| } |
| |
| TS_INLINE Event * |
| EThread::schedule_in_local(Continuation * cont, ink_hrtime t, int callback_event, void *cookie) |
| { |
| Event *e = EVENT_ALLOC(eventAllocator, this); |
| e->callback_event = callback_event; |
| e->cookie = cookie; |
| return schedule_local(e->init(cont, ink_get_based_hrtime() + t, 0)); |
| } |
| |
| TS_INLINE Event * |
| EThread::schedule_every_local(Continuation * cont, ink_hrtime t, int callback_event, void *cookie) |
| { |
| Event *e = EVENT_ALLOC(eventAllocator, this); |
| e->callback_event = callback_event; |
| e->cookie = cookie; |
| return schedule_local(e->init(cont, ink_get_based_hrtime() + t, t)); |
| } |
| |
| TS_INLINE Event * |
| EThread::schedule_local(Event * e) |
| { |
| if (tt != REGULAR) { |
| ink_assert(tt == DEDICATED); |
| return eventProcessor.schedule(e, ET_CALL); |
| } |
| if (!e->mutex.m_ptr) { |
| e->ethread = this; |
| e->mutex = e->continuation->mutex; |
| } else { |
| ink_assert(e->ethread == this); |
| } |
| e->globally_allocated = false; |
| EventQueueExternal.enqueue_local(e); |
| return e; |
| } |
| |
| TS_INLINE EThread * |
| this_ethread() |
| { |
| return (EThread *) this_thread(); |
| } |
| |
| TS_INLINE void |
| EThread::free_event(Event * e) |
| { |
| ink_assert(!e->in_the_priority_queue && !e->in_the_prot_queue); |
| e->mutex = NULL; |
| EVENT_FREE(e, eventAllocator, this); |
| } |
| |
| #endif /*_EThread_h_*/ |