123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341 |
- /*
- * File : dataqueue.c
- * This file is part of RT-Thread RTOS
- * COPYRIGHT (C) 2012, RT-Thread Development Team
- *
- * 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.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- * Change Logs:
- * Date Author Notes
- * 2012-09-30 Bernard first version.
- * 2016-10-31 armink fix some resume push and pop thread bugs
- */
- #include <rtthread.h>
- #include <rtdevice.h>
- #include <rthw.h>
- struct rt_data_item
- {
- const void *data_ptr;
- rt_size_t data_size;
- };
- rt_err_t
- rt_data_queue_init(struct rt_data_queue *queue,
- rt_uint16_t size,
- rt_uint16_t lwm,
- void (*evt_notify)(struct rt_data_queue *queue, rt_uint32_t event))
- {
- RT_ASSERT(queue != RT_NULL);
- queue->evt_notify = evt_notify;
- queue->size = size;
- queue->lwm = lwm;
- queue->get_index = 0;
- queue->put_index = 0;
- rt_list_init(&(queue->suspended_push_list));
- rt_list_init(&(queue->suspended_pop_list));
- queue->queue = (struct rt_data_item *)rt_malloc(sizeof(struct rt_data_item) * size);
- if (queue->queue == RT_NULL)
- {
- return -RT_ENOMEM;
- }
- return RT_EOK;
- }
- RTM_EXPORT(rt_data_queue_init);
- rt_err_t rt_data_queue_push(struct rt_data_queue *queue,
- const void *data_ptr,
- rt_size_t data_size,
- rt_int32_t timeout)
- {
- rt_ubase_t level;
- rt_thread_t thread;
- rt_err_t result;
-
- RT_ASSERT(queue != RT_NULL);
- result = RT_EOK;
- thread = rt_thread_self();
- level = rt_hw_interrupt_disable();
- while (queue->put_index - queue->get_index == queue->size)
- {
- /* queue is full */
- if (timeout == 0)
- {
- result = -RT_ETIMEOUT;
- goto __exit;
- }
- /* current context checking */
- RT_DEBUG_NOT_IN_INTERRUPT;
- /* reset thread error number */
- thread->error = RT_EOK;
-
- /* suspend thread on the push list */
- rt_thread_suspend(thread);
- rt_list_insert_before(&(queue->suspended_push_list), &(thread->tlist));
- /* start timer */
- if (timeout > 0)
- {
- /* reset the timeout of thread timer and start it */
- rt_timer_control(&(thread->thread_timer),
- RT_TIMER_CTRL_SET_TIME,
- &timeout);
- rt_timer_start(&(thread->thread_timer));
- }
- /* enable interrupt */
- rt_hw_interrupt_enable(level);
- /* do schedule */
- rt_schedule();
- /* thread is waked up */
- result = thread->error;
- level = rt_hw_interrupt_disable();
- if (result != RT_EOK) goto __exit;
- }
- queue->queue[queue->put_index % queue->size].data_ptr = data_ptr;
- queue->queue[queue->put_index % queue->size].data_size = data_size;
- queue->put_index += 1;
- /* there is at least one thread in suspended list */
- if (!rt_list_isempty(&(queue->suspended_pop_list)))
- {
- /* get thread entry */
- thread = rt_list_entry(queue->suspended_pop_list.next,
- struct rt_thread,
- tlist);
- /* resume it */
- rt_thread_resume(thread);
- rt_hw_interrupt_enable(level);
- /* perform a schedule */
- rt_schedule();
- return result;
- }
- __exit:
- rt_hw_interrupt_enable(level);
- if ((result == RT_EOK) && queue->evt_notify != RT_NULL)
- {
- queue->evt_notify(queue, RT_DATAQUEUE_EVENT_PUSH);
- }
- return result;
- }
- RTM_EXPORT(rt_data_queue_push);
- rt_err_t rt_data_queue_pop(struct rt_data_queue *queue,
- const void** data_ptr,
- rt_size_t *size,
- rt_int32_t timeout)
- {
- rt_ubase_t level;
- rt_thread_t thread;
- rt_err_t result;
- RT_ASSERT(queue != RT_NULL);
- RT_ASSERT(data_ptr != RT_NULL);
- RT_ASSERT(size != RT_NULL);
- result = RT_EOK;
- thread = rt_thread_self();
- level = rt_hw_interrupt_disable();
- while (queue->get_index == queue->put_index)
- {
- /* queue is empty */
- if (timeout == 0)
- {
- result = -RT_ETIMEOUT;
- goto __exit;
- }
- /* current context checking */
- RT_DEBUG_NOT_IN_INTERRUPT;
- /* reset thread error number */
- thread->error = RT_EOK;
-
- /* suspend thread on the pop list */
- rt_thread_suspend(thread);
- rt_list_insert_before(&(queue->suspended_pop_list), &(thread->tlist));
- /* start timer */
- if (timeout > 0)
- {
- /* reset the timeout of thread timer and start it */
- rt_timer_control(&(thread->thread_timer),
- RT_TIMER_CTRL_SET_TIME,
- &timeout);
- rt_timer_start(&(thread->thread_timer));
- }
- /* enable interrupt */
- rt_hw_interrupt_enable(level);
- /* do schedule */
- rt_schedule();
- /* thread is waked up */
- result = thread->error;
- level = rt_hw_interrupt_disable();
- if (result != RT_EOK)
- goto __exit;
- }
- *data_ptr = queue->queue[queue->get_index % queue->size].data_ptr;
- *size = queue->queue[queue->get_index % queue->size].data_size;
- queue->get_index += 1;
- if ((queue->put_index - queue->get_index) <= queue->lwm)
- {
- /* there is at least one thread in suspended list */
- if (!rt_list_isempty(&(queue->suspended_push_list)))
- {
- /* get thread entry */
- thread = rt_list_entry(queue->suspended_push_list.next,
- struct rt_thread,
- tlist);
- /* resume it */
- rt_thread_resume(thread);
- rt_hw_interrupt_enable(level);
- /* perform a schedule */
- rt_schedule();
- }
- else
- {
- rt_hw_interrupt_enable(level);
- }
- if (queue->evt_notify != RT_NULL)
- queue->evt_notify(queue, RT_DATAQUEUE_EVENT_LWM);
- return result;
- }
- __exit:
- rt_hw_interrupt_enable(level);
- if ((result == RT_EOK) && (queue->evt_notify != RT_NULL))
- {
- queue->evt_notify(queue, RT_DATAQUEUE_EVENT_POP);
- }
- return result;
- }
- RTM_EXPORT(rt_data_queue_pop);
- rt_err_t rt_data_queue_peak(struct rt_data_queue *queue,
- const void** data_ptr,
- rt_size_t *size)
- {
- rt_ubase_t level;
- RT_ASSERT(queue != RT_NULL);
- level = rt_hw_interrupt_disable();
- if (queue->get_index == queue->put_index)
- {
- rt_hw_interrupt_enable(level);
-
- return -RT_EEMPTY;
- }
- *data_ptr = queue->queue[queue->get_index % queue->size].data_ptr;
- *size = queue->queue[queue->get_index % queue->size].data_size;
- rt_hw_interrupt_enable(level);
- return RT_EOK;
- }
- RTM_EXPORT(rt_data_queue_peak);
- void rt_data_queue_reset(struct rt_data_queue *queue)
- {
- struct rt_thread *thread;
- register rt_ubase_t temp;
- rt_enter_critical();
- /* wakeup all suspend threads */
- /* resume on pop list */
- while (!rt_list_isempty(&(queue->suspended_pop_list)))
- {
- /* disable interrupt */
- temp = rt_hw_interrupt_disable();
- /* get next suspend thread */
- thread = rt_list_entry(queue->suspended_pop_list.next,
- struct rt_thread,
- tlist);
- /* set error code to RT_ERROR */
- thread->error = -RT_ERROR;
- /*
- * resume thread
- * In rt_thread_resume function, it will remove current thread from
- * suspend list
- */
- rt_thread_resume(thread);
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- }
- /* resume on push list */
- while (!rt_list_isempty(&(queue->suspended_push_list)))
- {
- /* disable interrupt */
- temp = rt_hw_interrupt_disable();
- /* get next suspend thread */
- thread = rt_list_entry(queue->suspended_push_list.next,
- struct rt_thread,
- tlist);
- /* set error code to RT_ERROR */
- thread->error = -RT_ERROR;
- /*
- * resume thread
- * In rt_thread_resume function, it will remove current thread from
- * suspend list
- */
- rt_thread_resume(thread);
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- }
- rt_exit_critical();
- rt_schedule();
- }
- RTM_EXPORT(rt_data_queue_reset);
|