workqueue.c 3.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
#include <rtthread.h>
#include <rtdevice.h>

#ifdef RT_USING_HEAP
static void _workqueue_thread_entry(void* parameter)
{
	struct rt_work* work;
	struct rt_workqueue* queue;
	
	queue = (struct rt_workqueue*) parameter;
	RT_ASSERT(queue != RT_NULL);

	while (1)
	{
		if (rt_list_isempty(&(queue->work_list)))
		{
			/* no software timer exist, suspend self. */
			rt_thread_suspend(rt_thread_self());
			rt_schedule();
		}

		/* we have work to do with. */
		rt_enter_critical();
		work = rt_list_entry(queue->work_list.next, struct rt_work, list);
		rt_list_remove(&(work->list));
		rt_exit_critical();

		/* do work */
		work->work_func(work, work->work_data);
	}
}

struct rt_workqueue *rt_workqueue_create(const char* name, rt_uint16_t stack_size, rt_uint8_t priority)
{
	struct rt_workqueue *queue = RT_NULL;
36

37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
	queue = (struct rt_workqueue*)RT_KERNEL_MALLOC(sizeof(struct rt_workqueue));
	if (queue != RT_NULL)
	{
        /* initialize work list */
        rt_list_init(&(queue->work_list));
        
		/* create the work thread */
		queue->work_thread = rt_thread_create(name, _workqueue_thread_entry, queue, stack_size, priority, 10);
		if (queue->work_thread == RT_NULL)
		{
			RT_KERNEL_FREE(queue);
			return RT_NULL;
		}

		rt_thread_startup(queue->work_thread);
	}

	return queue;
}

rt_err_t rt_workqueue_destroy(struct rt_workqueue* queue)
{
	RT_ASSERT(queue != RT_NULL);

	rt_thread_delete(queue->work_thread);
	RT_KERNEL_FREE(queue);

	return RT_EOK;
}

rt_err_t rt_workqueue_dowork(struct rt_workqueue* queue, struct rt_work* work)
{
	RT_ASSERT(queue != RT_NULL);
	RT_ASSERT(work != RT_NULL);

	rt_enter_critical();
	/* NOTE: the work MUST be initialized firstly */
	rt_list_remove(&(work->list));

	rt_list_insert_after(queue->work_list.prev, &(work->list));
	if (queue->work_thread->stat != RT_THREAD_READY)
	{
		rt_exit_critical();
		/* resume work thread */
		rt_thread_resume(queue->work_thread);
		rt_schedule();
	}
	else rt_exit_critical();

	return RT_EOK;
}

89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
rt_err_t rt_workqueue_critical_work(struct rt_workqueue* queue, struct rt_work* work)
{
	RT_ASSERT(queue != RT_NULL);
	RT_ASSERT(work != RT_NULL);

	rt_enter_critical();
	/* NOTE: the work MUST be initialized firstly */
	rt_list_remove(&(work->list));

	rt_list_insert_after(queue->work_list.prev, &(work->list));
	if (queue->work_thread->stat != RT_THREAD_READY)
	{
		rt_exit_critical();
		/* resume work thread */
		rt_thread_resume(queue->work_thread);
		rt_schedule();
	}
	else rt_exit_critical();

	return RT_EOK;
}

111 112 113 114 115 116 117 118 119 120 121 122
rt_err_t rt_workqueue_cancel_work(struct rt_workqueue* queue, struct rt_work* work)
{
	RT_ASSERT(queue != RT_NULL);
	RT_ASSERT(work != RT_NULL);

	rt_enter_critical();
	rt_list_remove(&(work->list));
	rt_exit_critical();

	return RT_EOK;
}

123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
rt_err_t rt_workqueue_cancel_all_work(struct rt_workqueue* queue)
{
	struct rt_list_node *node, *next;
	RT_ASSERT(queue != RT_NULL);

	rt_enter_critical();
	for (node = queue->work_list.next; node != &(queue->work_list); node = next)
	{
		next = node->next;
		rt_list_remove(node);
	}
	rt_exit_critical();

	return RT_EOK;
}

139 140
#endif