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 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 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
|
/*
*
* AT chat library with GLib integration
*
* Copyright (C) 2008-2011 Intel Corporation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* 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 St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <string.h>
#include <glib.h>
#include "ringbuffer.h"
#define MAX_SIZE 262144
struct ring_buffer {
unsigned char *buffer;
unsigned int size;
unsigned int mask;
unsigned int in;
unsigned int out;
};
struct ring_buffer *ring_buffer_new(unsigned int size)
{
unsigned int real_size = 1;
struct ring_buffer *buffer;
/* Find the next power of two for size */
while (real_size < size && real_size < MAX_SIZE)
real_size = real_size << 1;
if (real_size > MAX_SIZE)
return NULL;
buffer = g_slice_new(struct ring_buffer);
if (buffer == NULL)
return NULL;
buffer->buffer = g_slice_alloc(real_size);
if (buffer->buffer == NULL) {
g_free(buffer);
return NULL;
}
buffer->size = real_size;
buffer->mask = real_size - 1;
buffer->in = 0;
buffer->out = 0;
return buffer;
}
int ring_buffer_write(struct ring_buffer *buf, const void *data,
unsigned int len)
{
unsigned int end;
unsigned int offset;
const unsigned char *d = data; /* Needed to satisfy non-gcc compilers */
/* Determine how much we can actually write */
len = MIN(len, buf->size - buf->in + buf->out);
/* Determine how much to write before wrapping */
offset = buf->in & buf->mask;
end = MIN(len, buf->size - offset);
memcpy(buf->buffer+offset, d, end);
/* Now put the remainder on the beginning of the buffer */
memcpy(buf->buffer, d + end, len - end);
buf->in += len;
return len;
}
unsigned char *ring_buffer_write_ptr(struct ring_buffer *buf,
unsigned int offset)
{
return buf->buffer + ((buf->in + offset) & buf->mask);
}
int ring_buffer_avail_no_wrap(struct ring_buffer *buf)
{
unsigned int offset = buf->in & buf->mask;
unsigned int len = buf->size - buf->in + buf->out;
return MIN(len, buf->size - offset);
}
int ring_buffer_write_advance(struct ring_buffer *buf, unsigned int len)
{
len = MIN(len, buf->size - buf->in + buf->out);
buf->in += len;
return len;
}
int ring_buffer_read(struct ring_buffer *buf, void *data, unsigned int len)
{
unsigned int end;
unsigned int offset;
unsigned char *d = data;
len = MIN(len, buf->in - buf->out);
/* Grab data from buffer starting at offset until the end */
offset = buf->out & buf->mask;
end = MIN(len, buf->size - offset);
memcpy(d, buf->buffer + offset, end);
/* Now grab remainder from the beginning */
memcpy(d + end, buf->buffer, len - end);
buf->out += len;
if (buf->out == buf->in)
buf->out = buf->in = 0;
return len;
}
int ring_buffer_drain(struct ring_buffer *buf, unsigned int len)
{
len = MIN(len, buf->in - buf->out);
buf->out += len;
if (buf->out == buf->in)
buf->out = buf->in = 0;
return len;
}
int ring_buffer_len_no_wrap(struct ring_buffer *buf)
{
unsigned int offset = buf->out & buf->mask;
unsigned int len = buf->in - buf->out;
return MIN(len, buf->size - offset);
}
unsigned char *ring_buffer_read_ptr(struct ring_buffer *buf,
unsigned int offset)
{
return buf->buffer + ((buf->out + offset) & buf->mask);
}
int ring_buffer_len(struct ring_buffer *buf)
{
if (buf == NULL)
return -1;
return buf->in - buf->out;
}
void ring_buffer_reset(struct ring_buffer *buf)
{
if (buf == NULL)
return;
buf->in = 0;
buf->out = 0;
}
int ring_buffer_avail(struct ring_buffer *buf)
{
if (buf == NULL)
return -1;
return buf->size - buf->in + buf->out;
}
int ring_buffer_capacity(struct ring_buffer *buf)
{
if (buf == NULL)
return -1;
return buf->size;
}
void ring_buffer_free(struct ring_buffer *buf)
{
if (buf == NULL)
return;
g_slice_free1(buf->size, buf->buffer);
g_slice_free1(sizeof(struct ring_buffer), buf);
}
|