2012-11-22 16:43:40 +08:00
|
|
|
/*
|
|
|
|
* File : ringbuffer.c
|
|
|
|
* This file is part of RT-Thread RTOS
|
|
|
|
* COPYRIGHT (C) 2012, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* The license and distribution terms for this file may be
|
|
|
|
* found in the file LICENSE in this distribution or at
|
|
|
|
* http://www.rt-thread.org/license/LICENSE
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2012-09-30 Bernard first version.
|
2013-05-08 15:54:30 +08:00
|
|
|
* 2013-05-08 Grissiom reimplement
|
2012-11-22 16:43:40 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <rtthread.h>
|
|
|
|
#include <rtdevice.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
void rt_ringbuffer_init(struct rt_ringbuffer *rb,
|
|
|
|
rt_uint8_t *pool,
|
2013-05-08 15:45:31 +08:00
|
|
|
rt_int16_t size)
|
2012-11-22 16:43:40 +08:00
|
|
|
{
|
|
|
|
RT_ASSERT(rb != RT_NULL);
|
2013-05-08 15:45:31 +08:00
|
|
|
RT_ASSERT(size > 0)
|
2012-11-22 16:43:40 +08:00
|
|
|
|
|
|
|
/* initialize read and write index */
|
2013-05-08 15:45:31 +08:00
|
|
|
rb->read_mirror = rb->read_index = 0;
|
|
|
|
rb->write_mirror = rb->write_index = 0;
|
2012-11-22 16:43:40 +08:00
|
|
|
|
|
|
|
/* set buffer pool and size */
|
|
|
|
rb->buffer_ptr = pool;
|
|
|
|
rb->buffer_size = RT_ALIGN_DOWN(size, RT_ALIGN_SIZE);
|
|
|
|
}
|
|
|
|
RTM_EXPORT(rt_ringbuffer_init);
|
|
|
|
|
|
|
|
rt_size_t rt_ringbuffer_put(struct rt_ringbuffer *rb,
|
|
|
|
const rt_uint8_t *ptr,
|
|
|
|
rt_uint16_t length)
|
|
|
|
{
|
|
|
|
rt_uint16_t size;
|
2012-12-26 08:29:42 +08:00
|
|
|
|
2012-11-22 16:43:40 +08:00
|
|
|
RT_ASSERT(rb != RT_NULL);
|
|
|
|
|
|
|
|
/* whether has enough space */
|
2013-05-08 15:45:31 +08:00
|
|
|
size = RT_RINGBUFFER_EMPTY(rb);
|
2012-11-22 16:43:40 +08:00
|
|
|
|
|
|
|
/* no space */
|
|
|
|
if (size == 0)
|
|
|
|
return 0;
|
2013-05-08 15:45:31 +08:00
|
|
|
|
2012-11-22 16:43:40 +08:00
|
|
|
/* drop some data */
|
|
|
|
if (size < length)
|
|
|
|
length = size;
|
|
|
|
|
2013-05-08 15:45:31 +08:00
|
|
|
if (rb->buffer_size - rb->write_index > length)
|
2012-11-22 16:43:40 +08:00
|
|
|
{
|
|
|
|
/* read_index - write_index = empty space */
|
2013-05-08 15:45:31 +08:00
|
|
|
memcpy(&rb->buffer_ptr[rb->write_index], ptr, length);
|
|
|
|
/* this should not cause overflow because there is enough space for
|
|
|
|
* length of data in current mirror */
|
|
|
|
rb->write_index += length;
|
|
|
|
return length;
|
2012-11-22 16:43:40 +08:00
|
|
|
}
|
2013-05-08 15:45:31 +08:00
|
|
|
|
|
|
|
memcpy(&rb->buffer_ptr[rb->write_index],
|
|
|
|
&ptr[0],
|
|
|
|
rb->buffer_size - rb->write_index);
|
|
|
|
memcpy(&rb->buffer_ptr[0],
|
|
|
|
&ptr[rb->buffer_size - rb->write_index],
|
|
|
|
length - (rb->buffer_size - rb->write_index));
|
|
|
|
|
|
|
|
/* we are going into the other side of the mirror */
|
|
|
|
rb->write_mirror = ~rb->write_mirror;
|
|
|
|
rb->write_index = length - (rb->buffer_size - rb->write_index);
|
2012-11-22 16:43:40 +08:00
|
|
|
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
RTM_EXPORT(rt_ringbuffer_put);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get data from ring buffer
|
|
|
|
*/
|
|
|
|
rt_size_t rt_ringbuffer_get(struct rt_ringbuffer *rb,
|
|
|
|
rt_uint8_t *ptr,
|
|
|
|
rt_uint16_t length)
|
|
|
|
{
|
|
|
|
rt_size_t size;
|
|
|
|
|
|
|
|
RT_ASSERT(rb != RT_NULL);
|
2013-05-08 15:45:31 +08:00
|
|
|
|
2012-11-22 16:43:40 +08:00
|
|
|
/* whether has enough data */
|
2013-05-08 15:45:31 +08:00
|
|
|
size = RT_RINGBUFFER_SIZE(rb);
|
2012-11-22 16:43:40 +08:00
|
|
|
|
|
|
|
/* no data */
|
|
|
|
if (size == 0)
|
|
|
|
return 0;
|
2013-05-08 15:45:31 +08:00
|
|
|
|
2012-11-22 16:43:40 +08:00
|
|
|
/* less data */
|
|
|
|
if (size < length)
|
|
|
|
length = size;
|
|
|
|
|
2013-05-08 15:45:31 +08:00
|
|
|
if (rb->buffer_size - rb->read_index > length)
|
2012-11-22 16:43:40 +08:00
|
|
|
{
|
|
|
|
/* copy all of data */
|
2013-05-08 15:45:31 +08:00
|
|
|
memcpy(ptr, &rb->buffer_ptr[rb->read_index], length);
|
|
|
|
/* this should not cause overflow because there is enough space for
|
|
|
|
* length of data in current mirror */
|
|
|
|
rb->read_index += length;
|
|
|
|
return length;
|
2012-11-22 16:43:40 +08:00
|
|
|
}
|
2013-05-08 15:45:31 +08:00
|
|
|
|
|
|
|
memcpy(&ptr[0],
|
|
|
|
&rb->buffer_ptr[rb->read_index],
|
|
|
|
rb->buffer_size - rb->read_index);
|
|
|
|
memcpy(&ptr[rb->buffer_size - rb->read_index],
|
|
|
|
&rb->buffer_ptr[0],
|
|
|
|
length - (rb->buffer_size - rb->read_index));
|
|
|
|
|
|
|
|
/* we are going into the other side of the mirror */
|
|
|
|
rb->read_mirror = ~rb->read_mirror;
|
|
|
|
rb->read_index = length - (rb->buffer_size - rb->read_index);
|
2012-11-22 16:43:40 +08:00
|
|
|
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
RTM_EXPORT(rt_ringbuffer_get);
|
|
|
|
|
2013-05-08 15:54:30 +08:00
|
|
|
/**
|
|
|
|
* put a character into ring buffer
|
|
|
|
*/
|
|
|
|
rt_size_t rt_ringbuffer_putchar(struct rt_ringbuffer *rb, const rt_uint8_t ch)
|
|
|
|
{
|
|
|
|
RT_ASSERT(rb != RT_NULL);
|
|
|
|
|
|
|
|
/* whether has enough space */
|
|
|
|
if (!RT_RINGBUFFER_EMPTY(rb))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
rb->buffer_ptr[rb->write_index] = ch;
|
|
|
|
|
|
|
|
/* flip mirror */
|
|
|
|
if (rb->write_index == rb->buffer_size-1)
|
|
|
|
{
|
|
|
|
rb->write_mirror = ~rb->write_mirror;
|
|
|
|
rb->write_index = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rb->write_index++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
RTM_EXPORT(rt_ringbuffer_putchar);
|
|
|
|
|
2012-11-22 16:43:40 +08:00
|
|
|
/**
|
|
|
|
* get a character from a ringbuffer
|
|
|
|
*/
|
|
|
|
rt_size_t rt_ringbuffer_getchar(struct rt_ringbuffer *rb, rt_uint8_t *ch)
|
|
|
|
{
|
|
|
|
RT_ASSERT(rb != RT_NULL);
|
2013-05-08 15:45:31 +08:00
|
|
|
|
2012-11-22 16:43:40 +08:00
|
|
|
/* ringbuffer is empty */
|
2013-05-08 15:45:31 +08:00
|
|
|
if (!RT_RINGBUFFER_SIZE(rb))
|
2012-11-22 16:43:40 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* put character */
|
2013-05-08 15:45:31 +08:00
|
|
|
*ch = rb->buffer_ptr[rb->read_index];
|
|
|
|
|
|
|
|
if (rb->read_index == rb->buffer_size-1)
|
|
|
|
{
|
|
|
|
rb->read_mirror = ~rb->read_mirror;
|
|
|
|
rb->read_index = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rb->read_index++;
|
|
|
|
}
|
2012-11-22 16:43:40 +08:00
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
RTM_EXPORT(rt_ringbuffer_getchar);
|
2013-05-08 15:54:30 +08:00
|
|
|
|