2002-06-27 00:45:49 +02:00
|
|
|
|
|
|
|
/* buffers.c */
|
|
|
|
|
|
|
|
#include "or.h"
|
|
|
|
|
2002-06-30 09:37:49 +02:00
|
|
|
int buf_new(char **buf, size_t *buflen, size_t *buf_datalen) {
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2002-06-30 09:37:49 +02:00
|
|
|
assert(buf && buflen && buf_datalen);
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2002-06-30 09:37:49 +02:00
|
|
|
*buf = (char *)malloc(MAX_BUF_SIZE);
|
|
|
|
if(!*buf)
|
2002-06-27 00:45:49 +02:00
|
|
|
return -1;
|
2002-06-30 09:37:49 +02:00
|
|
|
memset(*buf,0,MAX_BUF_SIZE);
|
|
|
|
*buflen = MAX_BUF_SIZE;
|
|
|
|
*buf_datalen = 0;
|
2002-06-27 00:45:49 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-06-30 09:37:49 +02:00
|
|
|
void buf_free(char *buf) {
|
2002-06-27 00:45:49 +02:00
|
|
|
free(buf);
|
|
|
|
}
|
|
|
|
|
2002-06-30 09:37:49 +02:00
|
|
|
int read_to_buf(int s, char **buf, size_t *buflen, size_t *buf_datalen, int *reached_eof) {
|
2002-06-27 00:45:49 +02:00
|
|
|
|
|
|
|
/* grab from s, put onto buf, return how many bytes read */
|
|
|
|
|
|
|
|
int read_result;
|
|
|
|
|
2002-06-30 09:37:49 +02:00
|
|
|
assert(buf && *buf && buflen && buf_datalen && reached_eof && (s>=0));
|
2002-06-27 00:45:49 +02:00
|
|
|
|
|
|
|
/* this is the point where you would grow the buffer, if you want to */
|
|
|
|
|
2002-06-30 09:37:49 +02:00
|
|
|
read_result = read(s, *buf+*buf_datalen, *buflen - *buf_datalen);
|
2002-06-27 00:45:49 +02:00
|
|
|
if (read_result < 0) {
|
|
|
|
if(errno!=EAGAIN) { /* it's a real error */
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
} else if (read_result == 0) {
|
|
|
|
log(LOG_DEBUG,"read_to_buf(): Encountered eof");
|
2002-06-30 09:37:49 +02:00
|
|
|
*reached_eof = 1;
|
2002-06-27 00:45:49 +02:00
|
|
|
return 0;
|
|
|
|
} else { /* we read some bytes */
|
2002-06-30 09:37:49 +02:00
|
|
|
*buf_datalen += read_result;
|
|
|
|
log(LOG_DEBUG,"read_to_buf(): Read %d bytes. %d on inbuf.",read_result, *buf_datalen);
|
2002-06-27 00:45:49 +02:00
|
|
|
return read_result;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2002-06-30 09:37:49 +02:00
|
|
|
int flush_buf(int s, char **buf, size_t *buflen, size_t *buf_datalen) {
|
2002-06-27 00:45:49 +02:00
|
|
|
|
|
|
|
/* push from buf onto s
|
|
|
|
* then memmove to front of buf
|
|
|
|
* return -1 or how many bytes remain on the buf */
|
|
|
|
|
|
|
|
int write_result;
|
|
|
|
|
2002-06-30 09:37:49 +02:00
|
|
|
assert(buf && *buf && buflen && buf_datalen && (s>=0));
|
2002-06-27 00:45:49 +02:00
|
|
|
|
2002-06-30 09:37:49 +02:00
|
|
|
if(*buf_datalen == 0) /* nothing to flush */
|
2002-06-27 00:45:49 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* this is the point where you would grow the buffer, if you want to */
|
|
|
|
|
2002-06-30 09:37:49 +02:00
|
|
|
write_result = write(s, buf, *buf_datalen);
|
2002-06-27 00:45:49 +02:00
|
|
|
if (write_result < 0) {
|
|
|
|
if(errno!=EAGAIN) { /* it's a real error */
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
log(LOG_DEBUG,"flush_buf(): write() would block, returning.");
|
|
|
|
return 0;
|
|
|
|
} else {
|
2002-06-30 09:37:49 +02:00
|
|
|
*buf_datalen -= write_result;
|
|
|
|
memmove(*buf, *buf+write_result, *buf_datalen);
|
|
|
|
log(LOG_DEBUG,"flush_buf(): flushed %d bytes, %d remain.",write_result,*buf_datalen);
|
|
|
|
return *buf_datalen;
|
2002-06-27 00:45:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int write_to_buf(char *string, size_t string_len,
|
2002-06-30 09:37:49 +02:00
|
|
|
char **buf, size_t *buflen, size_t *buf_datalen) {
|
2002-06-27 00:45:49 +02:00
|
|
|
|
|
|
|
/* append string to buf (growing as needed, return -1 if "too big")
|
|
|
|
* return total number of bytes on the buf
|
|
|
|
*/
|
|
|
|
|
2002-06-30 09:37:49 +02:00
|
|
|
assert(string && buf && *buf && buflen && buf_datalen);
|
2002-06-27 00:45:49 +02:00
|
|
|
|
|
|
|
/* this is the point where you would grow the buffer, if you want to */
|
|
|
|
|
2002-06-30 09:37:49 +02:00
|
|
|
if (string_len + *buf_datalen > *buflen) { /* we're out of luck */
|
2002-06-27 00:45:49 +02:00
|
|
|
log(LOG_DEBUG, "write_to_buf(): buflen too small. Time to implement growing dynamic bufs.");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2002-06-30 09:37:49 +02:00
|
|
|
memcpy(*buf+*buf_datalen, string, string_len);
|
|
|
|
*buf_datalen += string_len;
|
|
|
|
log(LOG_DEBUG,"write_to_buf(): added %d bytes to buf (now %d total).",string_len, *buf_datalen);
|
|
|
|
return *buf_datalen;
|
2002-06-27 00:45:49 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int fetch_from_buf(char *string, size_t string_len,
|
2002-06-30 09:37:49 +02:00
|
|
|
char **buf, size_t *buflen, size_t *buf_datalen) {
|
2002-06-27 00:45:49 +02:00
|
|
|
|
|
|
|
/* if there is string_len bytes in buf, write them onto string,
|
|
|
|
* then memmove buf back (that is, remove them from buf) */
|
|
|
|
|
2002-06-30 09:37:49 +02:00
|
|
|
assert(string && buf && *buf && buflen && buf_datalen);
|
2002-06-27 00:45:49 +02:00
|
|
|
|
|
|
|
/* this is the point where you would grow the buffer, if you want to */
|
|
|
|
|
2002-06-30 09:37:49 +02:00
|
|
|
if(string_len > *buf_datalen) /* we want too much. sorry. */
|
2002-06-27 00:45:49 +02:00
|
|
|
return -1;
|
|
|
|
|
2002-06-30 09:37:49 +02:00
|
|
|
memcpy(string,*buf,string_len);
|
|
|
|
*buf_datalen -= string_len;
|
|
|
|
memmove(*buf, *buf+string_len, *buf_datalen);
|
|
|
|
return *buf_datalen;
|
2002-06-27 00:45:49 +02:00
|
|
|
}
|
|
|
|
|