2009-05-19 20:57:50 +00:00
|
|
|
/*
|
|
|
|
* uhub - A tiny ADC p2p connection hub
|
2012-09-28 07:20:33 +00:00
|
|
|
* Copyright (C) 2007-2012, Jan Vidar Krey
|
2009-05-19 20:57:50 +00:00
|
|
|
*
|
|
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "uhub.h"
|
|
|
|
|
2009-07-25 01:23:06 +00:00
|
|
|
#ifdef DEBUG_SENDQ
|
|
|
|
static void debug_msg(const char* prefix, struct adc_message* msg)
|
|
|
|
{
|
|
|
|
size_t n;
|
|
|
|
char* buf = strdup(msg->cache);
|
|
|
|
for (n = 0; n < msg->length; n++)
|
|
|
|
{
|
|
|
|
if (buf[n] == '\r' || buf[n] == '\n')
|
|
|
|
buf[n] = '_';
|
|
|
|
}
|
2009-07-25 23:38:38 +00:00
|
|
|
LOG_TRACE("%s: [%s] (%d bytes)", prefix, buf, (int) msg->length);
|
2009-07-25 01:23:06 +00:00
|
|
|
free(buf);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-09-28 07:20:33 +00:00
|
|
|
struct ioq_recv* ioq_recv_create()
|
2009-05-19 20:57:50 +00:00
|
|
|
{
|
2012-09-28 07:20:33 +00:00
|
|
|
struct ioq_recv* q = hub_malloc_zero(sizeof(struct ioq_recv));
|
2009-05-26 17:46:51 +00:00
|
|
|
return q;
|
|
|
|
}
|
|
|
|
|
2012-09-28 07:20:33 +00:00
|
|
|
void ioq_recv_destroy(struct ioq_recv* q)
|
2009-05-26 17:46:51 +00:00
|
|
|
{
|
|
|
|
if (q)
|
2009-05-19 20:57:50 +00:00
|
|
|
{
|
2009-05-26 17:46:51 +00:00
|
|
|
hub_free(q->buf);
|
|
|
|
hub_free(q);
|
2009-05-19 20:57:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-28 07:20:33 +00:00
|
|
|
size_t ioq_recv_get(struct ioq_recv* q, void* buf, size_t bufsize)
|
2009-05-19 20:57:50 +00:00
|
|
|
{
|
2012-05-02 19:06:46 +00:00
|
|
|
uhub_assert(bufsize >= q->size);
|
2009-05-26 17:46:51 +00:00
|
|
|
if (q->size)
|
2009-05-19 20:57:50 +00:00
|
|
|
{
|
2009-05-26 17:46:51 +00:00
|
|
|
size_t n = q->size;
|
|
|
|
memcpy(buf, q->buf, n);
|
|
|
|
hub_free(q->buf);
|
|
|
|
q->buf = 0;
|
|
|
|
q->size = 0;
|
|
|
|
return n;
|
2009-05-19 20:57:50 +00:00
|
|
|
}
|
2009-05-26 17:46:51 +00:00
|
|
|
return 0;
|
2009-05-19 20:57:50 +00:00
|
|
|
}
|
|
|
|
|
2012-09-28 07:20:33 +00:00
|
|
|
size_t ioq_recv_set(struct ioq_recv* q, void* buf, size_t bufsize)
|
2009-05-19 20:57:50 +00:00
|
|
|
{
|
2009-05-26 17:46:51 +00:00
|
|
|
if (q->buf)
|
2009-05-19 20:57:50 +00:00
|
|
|
{
|
2009-05-26 17:46:51 +00:00
|
|
|
hub_free(q->buf);
|
|
|
|
q->buf = 0;
|
|
|
|
q->size = 0;
|
2009-05-19 20:57:50 +00:00
|
|
|
}
|
2009-05-26 19:05:06 +00:00
|
|
|
|
|
|
|
if (!bufsize)
|
2009-05-31 23:52:57 +00:00
|
|
|
{
|
2009-05-26 19:05:06 +00:00
|
|
|
return 0;
|
2009-05-31 23:52:57 +00:00
|
|
|
}
|
2009-05-26 17:46:51 +00:00
|
|
|
|
|
|
|
q->buf = hub_malloc(bufsize);
|
|
|
|
if (!q->buf)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
q->size = bufsize;
|
|
|
|
memcpy(q->buf, buf, bufsize);
|
|
|
|
return bufsize;
|
2009-05-19 20:57:50 +00:00
|
|
|
}
|
|
|
|
|
2009-05-26 17:46:51 +00:00
|
|
|
|
2012-09-28 07:20:33 +00:00
|
|
|
struct ioq_send* ioq_send_create()
|
2009-05-19 20:57:50 +00:00
|
|
|
{
|
2012-09-28 07:20:33 +00:00
|
|
|
struct ioq_send* q = hub_malloc_zero(sizeof(struct ioq_send));
|
2009-05-26 17:46:51 +00:00
|
|
|
if (!q)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
q->queue = list_create();
|
|
|
|
if (!q->queue)
|
2009-05-19 20:57:50 +00:00
|
|
|
{
|
2009-05-26 17:46:51 +00:00
|
|
|
hub_free(q);
|
|
|
|
return 0;
|
2009-05-19 20:57:50 +00:00
|
|
|
}
|
2009-05-26 17:46:51 +00:00
|
|
|
|
|
|
|
return q;
|
2009-05-19 20:57:50 +00:00
|
|
|
}
|
|
|
|
|
2009-05-26 17:46:51 +00:00
|
|
|
static void clear_send_queue_callback(void* ptr)
|
2009-05-19 20:57:50 +00:00
|
|
|
{
|
2009-05-26 17:46:51 +00:00
|
|
|
adc_msg_free((struct adc_message*) ptr);
|
|
|
|
}
|
2009-05-19 20:57:50 +00:00
|
|
|
|
2012-09-28 07:20:33 +00:00
|
|
|
void ioq_send_destroy(struct ioq_send* q)
|
2009-05-26 17:46:51 +00:00
|
|
|
{
|
|
|
|
if (q)
|
2009-05-19 20:57:50 +00:00
|
|
|
{
|
2009-05-26 17:46:51 +00:00
|
|
|
list_clear(q->queue, &clear_send_queue_callback);
|
|
|
|
list_destroy(q->queue);
|
|
|
|
hub_free(q);
|
2009-05-19 20:57:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-28 07:20:33 +00:00
|
|
|
void ioq_send_add(struct ioq_send* q, struct adc_message* msg_)
|
2009-05-19 20:57:50 +00:00
|
|
|
{
|
2009-05-26 17:46:51 +00:00
|
|
|
struct adc_message* msg = adc_msg_incref(msg_);
|
2009-07-25 01:23:06 +00:00
|
|
|
#ifdef DEBUG_SENDQ
|
2012-09-28 07:20:33 +00:00
|
|
|
debug_msg("ioq_send_add", msg);
|
2009-07-25 01:23:06 +00:00
|
|
|
#endif
|
2012-05-02 19:06:46 +00:00
|
|
|
uhub_assert(msg->cache && *msg->cache);
|
2009-05-26 17:46:51 +00:00
|
|
|
list_append(q->queue, msg);
|
|
|
|
q->size += msg->length;
|
|
|
|
}
|
2009-05-19 20:57:50 +00:00
|
|
|
|
2012-09-28 07:20:33 +00:00
|
|
|
void ioq_send_remove(struct ioq_send* q, struct adc_message* msg)
|
2009-05-26 17:46:51 +00:00
|
|
|
{
|
2009-07-25 01:23:06 +00:00
|
|
|
#ifdef DEBUG_SENDQ
|
2012-09-28 07:20:33 +00:00
|
|
|
debug_msg("ioq_send_remove", msg);
|
2009-07-25 01:23:06 +00:00
|
|
|
#endif
|
2009-05-26 17:46:51 +00:00
|
|
|
list_remove(q->queue, msg);
|
|
|
|
q->size -= msg->length;
|
2009-05-27 23:47:48 +00:00
|
|
|
adc_msg_free(msg);
|
2009-05-26 17:46:51 +00:00
|
|
|
q->offset = 0;
|
|
|
|
}
|
2009-05-19 20:57:50 +00:00
|
|
|
|
2012-09-28 07:20:33 +00:00
|
|
|
int ioq_send_send(struct ioq_send* q, struct hub_user* user)
|
2009-05-26 17:46:51 +00:00
|
|
|
{
|
2010-01-28 00:06:41 +00:00
|
|
|
int ret;
|
2009-05-27 23:47:48 +00:00
|
|
|
struct adc_message* msg = list_get_first(q->queue);
|
2009-10-07 15:37:31 +00:00
|
|
|
if (!msg) return 0;
|
2012-05-02 19:06:46 +00:00
|
|
|
uhub_assert(msg->cache && *msg->cache);
|
2010-01-28 00:06:41 +00:00
|
|
|
ret = net_con_send(user->connection, msg->cache + q->offset, msg->length - q->offset);
|
2009-06-22 23:56:37 +00:00
|
|
|
|
2009-05-27 23:47:48 +00:00
|
|
|
if (ret > 0)
|
|
|
|
{
|
2009-10-07 15:37:31 +00:00
|
|
|
q->offset += ret;
|
|
|
|
if (msg->length - q->offset > 0)
|
|
|
|
return 0;
|
2009-06-22 23:56:37 +00:00
|
|
|
|
2012-09-28 07:20:33 +00:00
|
|
|
ioq_send_remove(q, msg);
|
2009-10-07 15:37:31 +00:00
|
|
|
return 1;
|
2009-05-27 23:47:48 +00:00
|
|
|
}
|
|
|
|
return ret;
|
2009-05-26 17:46:51 +00:00
|
|
|
}
|
|
|
|
|
2012-09-28 07:20:33 +00:00
|
|
|
int ioq_send_is_empty(struct ioq_send* q)
|
2009-05-26 17:46:51 +00:00
|
|
|
{
|
2009-07-25 01:23:06 +00:00
|
|
|
return (q->size - q->offset) == 0;
|
2009-05-26 17:46:51 +00:00
|
|
|
}
|
|
|
|
|
2012-09-28 07:20:33 +00:00
|
|
|
size_t ioq_send_get_bytes(struct ioq_send* q)
|
2009-05-26 17:46:51 +00:00
|
|
|
{
|
|
|
|
return q->size - q->offset;
|
2009-05-19 20:57:50 +00:00
|
|
|
}
|