unsigned long offset;
int ret;
+ GNUNET_assert (mst->off <= mst->pos);
+ GNUNET_assert (mst->pos <= mst->curr_buf);
#if DEBUG_SERVER_MST
LOG (GNUNET_ERROR_TYPE_DEBUG,
"Server-mst receives %u bytes with %u bytes already in private buffer\n",
while (mst->pos > 0)
{
do_align:
+ GNUNET_assert (mst->pos >= mst->off);
if ((mst->curr_buf - mst->off < sizeof (struct GNUNET_MessageHeader)) ||
(0 != (mst->off % ALIGN_FACTOR)))
{
GNUNET_break_op (0);
return GNUNET_SYSERR;
}
- if (mst->curr_buf - mst->off < want)
+ if ( (mst->curr_buf - mst->off < want) &&
+ (mst->off > 0) )
{
- /* need more space */
+ /* can get more space by moving */
mst->pos -= mst->off;
memmove (ibuf, &ibuf[mst->off], mst->pos);
mst->off = 0;
}
- if (want > mst->curr_buf)
+ if (mst->curr_buf < want)
{
+ /* need to get more space by growing buffer */
+ GNUNET_assert (0 == mst->off);
mst->hdr = GNUNET_realloc (mst->hdr, want);
ibuf = (char *) mst->hdr;
mst->curr_buf = want;
if (mst->pos - mst->off < want)
{
delta = GNUNET_MIN (want - (mst->pos - mst->off), size);
+ GNUNET_assert (mst->pos + delta <= mst->curr_buf);
memcpy (&ibuf[mst->pos], buf, delta);
mst->pos += delta;
buf += delta;
mst->pos = 0;
}
}
+ GNUNET_assert (0 == mst->pos);
while (size > 0)
{
#if DEBUG_SERVER_MST
if (size < sizeof (struct GNUNET_MessageHeader))
break;
offset = (unsigned long) buf;
- need_align = (0 != offset % ALIGN_FACTOR) ? GNUNET_YES : GNUNET_NO;
+ need_align = (0 != (offset % ALIGN_FACTOR)) ? GNUNET_YES : GNUNET_NO;
if (GNUNET_NO == need_align)
{
/* can try to do zero-copy and process directly from original buffer */
return GNUNET_SYSERR;
}
if (size < want)
- break; /* or not, buffer incomplete, so copy to private buffer... */
+ break; /* or not: buffer incomplete, so copy to private buffer... */
if (one_shot == GNUNET_SYSERR)
{
/* cannot call callback again, but return value saying that
ibuf = (char *) mst->hdr;
mst->curr_buf = size + mst->pos;
}
- GNUNET_assert (mst->pos + size <= mst->curr_buf);
+ GNUNET_assert (size + mst->pos <= mst->curr_buf);
memcpy (&ibuf[mst->pos], buf, size);
mst->pos += size;
}
if (purge)
+ {
mst->off = 0;
+ mst->pos = 0;
+ }
#if DEBUG_SERVER_MST
LOG (GNUNET_ERROR_TYPE_DEBUG,
"Server-mst leaves %u bytes in private buffer\n",
* @author LRN
*/
#include "platform.h"
+#undef GNUNET_EXTRA_LOGGING
+#define GNUNET_EXTRA_LOGGING GNUNET_YES
+
#include "gnunet_common.h"
#include "gnunet_time_lib.h"
#include "gnunet_network_lib.h"
-#define MS200 GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS, 200)
+/**
+ * Delay introduced between operations, useful for debugging.
+ */
+#define OUTPUT_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 0)
static void
my_log (void *ctx, enum GNUNET_ErrorType kind, const char *component,
static int
expensive_func ()
{
- return GNUNET_NETWORK_socket_select (NULL, NULL, NULL, MS200);
+ return GNUNET_NETWORK_socket_select (NULL, NULL, NULL, OUTPUT_DELAY);
}
#define pr(kind,lvl) {\