| /* |
| Copyright (c) 2013 250bpm s.r.o. |
| |
| Permission is hereby granted, free of charge, to any person obtaining a copy |
| of this software and associated documentation files (the "Software"), |
| to deal in the Software without restriction, including without limitation |
| the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| and/or sell copies of the Software, and to permit persons to whom |
| the Software is furnished to do so, subject to the following conditions: |
| |
| The above copyright notice and this permission notice shall be included |
| in all copies or substantial portions of the Software. |
| |
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS |
| IN THE SOFTWARE. |
| */ |
| |
| #include "ctx.h" |
| |
| #include "../utils/err.h" |
| #include "../utils/cont.h" |
| |
| void nn_ctx_task_init (struct nn_ctx_task *self, struct nn_callback *callback, |
| void *source, int type) |
| { |
| self->callback = callback; |
| self->source = source; |
| self->type = type; |
| nn_queue_item_init (&self->item); |
| } |
| |
| void nn_ctx_task_term (struct nn_ctx_task *self) |
| { |
| nn_queue_item_term (&self->item); |
| } |
| |
| void nn_ctx_init (struct nn_ctx *self, struct nn_pool *pool) |
| { |
| nn_mutex_init (&self->sync); |
| self->pool = pool; |
| nn_queue_init (&self->tasks); |
| } |
| |
| void nn_ctx_term (struct nn_ctx *self) |
| { |
| nn_queue_term (&self->tasks); |
| nn_mutex_term (&self->sync); |
| } |
| |
| void nn_ctx_enter (struct nn_ctx *self) |
| { |
| nn_mutex_lock (&self->sync); |
| } |
| |
| void nn_ctx_leave (struct nn_ctx *self) |
| { |
| struct nn_ctx_task *task; |
| |
| /* Process any queued tasks before leaving the AIO context. */ |
| while (1) { |
| task = nn_cont (nn_queue_pop (&self->tasks), struct nn_ctx_task, item); |
| if (!task) |
| break; |
| task->callback->fn (task->callback, task->source, task->type); |
| } |
| |
| nn_mutex_unlock (&self->sync); |
| } |
| |
| struct nn_worker *nn_ctx_choose_worker (struct nn_ctx *self) |
| { |
| return nn_pool_choose_worker (self->pool); |
| } |
| |
| void nn_ctx_execute (struct nn_ctx *self, struct nn_ctx_task *task) |
| { |
| nn_queue_push (&self->tasks, &task->item); |
| } |
| |