2017-12-06 21:43:47 +08:00
|
|
|
#include "../../core_include/api.h"
|
|
|
|
#include "../../core_include/msg.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <semaphore.h>
|
|
|
|
|
2018-12-11 14:30:09 +08:00
|
|
|
c_fifo::c_fifo()
|
2017-12-06 21:43:47 +08:00
|
|
|
{
|
|
|
|
m_head = m_tail = 0;
|
|
|
|
m_read_sem = malloc(sizeof(sem_t));
|
|
|
|
m_write_mutex = malloc(sizeof(pthread_mutex_t));
|
|
|
|
|
2017-12-15 22:49:45 +08:00
|
|
|
sem_init((sem_t*)m_read_sem, 0, 0);
|
|
|
|
pthread_mutex_init((pthread_mutex_t*)m_write_mutex, NULL);
|
2017-12-06 21:43:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int c_fifo::read(void* buf, int len)
|
|
|
|
{
|
|
|
|
unsigned char* pbuf = (unsigned char*)buf;
|
|
|
|
int i = 0;
|
|
|
|
while(i < len)
|
|
|
|
{
|
|
|
|
if (m_tail == m_head)
|
|
|
|
{//empty
|
2017-12-15 22:49:45 +08:00
|
|
|
sem_wait((sem_t*)m_read_sem);
|
2017-12-06 21:43:47 +08:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
*pbuf++ = m_buf[m_head];
|
|
|
|
m_head = (m_head + 1) % FIFO_BUFFER_LEN;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
if(i != len)
|
|
|
|
{
|
|
|
|
ASSERT(FALSE);
|
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
int c_fifo::write(void* buf, int len)
|
|
|
|
{
|
|
|
|
unsigned char* pbuf = (unsigned char*)buf;
|
|
|
|
int i = 0;
|
|
|
|
int tail = m_tail;
|
|
|
|
|
2017-12-15 22:49:45 +08:00
|
|
|
pthread_mutex_lock((pthread_mutex_t*)m_write_mutex);
|
2017-12-06 21:43:47 +08:00
|
|
|
while(i < len)
|
|
|
|
{
|
|
|
|
if ((m_tail + 1) % FIFO_BUFFER_LEN == m_head)
|
|
|
|
{//full, clear data has been written;
|
|
|
|
m_tail = tail;
|
2018-12-11 14:30:09 +08:00
|
|
|
log_out("Warning: fifo full\n");
|
2017-12-15 22:49:45 +08:00
|
|
|
pthread_mutex_unlock((pthread_mutex_t*)m_write_mutex);
|
2017-12-06 21:43:47 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
m_buf[m_tail] = *pbuf++;
|
|
|
|
m_tail = (m_tail + 1) % FIFO_BUFFER_LEN;
|
|
|
|
i++;
|
|
|
|
}
|
2017-12-15 22:49:45 +08:00
|
|
|
pthread_mutex_unlock((pthread_mutex_t*)m_write_mutex);
|
2017-12-06 21:43:47 +08:00
|
|
|
|
|
|
|
if(i != len)
|
|
|
|
{
|
|
|
|
ASSERT(FALSE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-12-15 22:49:45 +08:00
|
|
|
sem_post((sem_t*)m_read_sem);
|
2017-12-06 21:43:47 +08:00
|
|
|
}
|
|
|
|
return i;
|
|
|
|
}
|