C & Libevent:将二进制数据添加到输出缓冲区
Posted
技术标签:
【中文标题】C & Libevent:将二进制数据添加到输出缓冲区【英文标题】:C & Libevent: add binary data to output buffer 【发布时间】:2011-12-06 12:12:59 【问题描述】:我有一个输出 evbuffer,我想用以下数据填充:
HTTP/1.1 200 OK
Date: Tue, 06 Dec 2011 10:35:08 GMT
Server: Apache/2.2.14 (Ubuntu)
X-Powered-By: php/5.3.2-1ubuntu4.9
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 48
Content-Type: text/html
��(�ͱ���I�O����H�����ч��
�4�@�
我使用的是evbuffer_add_printf(...)
,
我有以下 C 回调函数:
static void echo_read_cb(struct bufferevent *bev, void *ctx)
/* This callback is invoked when there is data to read on bev. */
struct evbuffer *input = bufferevent_get_input(bev);
struct evbuffer *output = bufferevent_get_output(bev);
...
char* response=NULL;
response=applyGetReq(url,data,len);
int contLen=0;
contLen=getContentLength(response);
char* binData=strstr(response,"\r\n\r\n");
binData=binData+strlen("\r\n\r\n");
fwrite(binData,sizeof(char),contLen,stdout);
printf("\n");
evbuffer_add_printf(output,"%s",binData); //I want to print binData as binary, not printf!!!
所以我有二进制数据指针(binData)和长度(contLen),我如何将它打印到输出缓冲区?
在此先感谢
【问题讨论】:
【参考方案1】:您不能使用evbuffer_add_printf
以安全的方式添加二进制数据。试试evbuffer_add
函数:
int
evbuffer_add(struct evbuffer *buf, const void *data, size_t datlen)
size_t need = buf->misalign + buf->off + datlen;
size_t oldoff = buf->off;
if (buf->totallen < need)
if (evbuffer_expand(buf, datlen) == -1)
return (-1);
memcpy(buf->buffer + buf->off, data, datlen);
buf->off += datlen;
if (datlen && buf->cb != NULL)
(*buf->cb)(buf, oldoff, buf->off, buf->cbarg);
return (0);
找不到好的文档,除了源代码我见过的最好的是:
http://transmission.sourcearchive.com/documentation/1.75/event_8h_b652a2f82d23509713258a6e44697164.html#b652a2f82d23509713258a6e44697164
int evbuffer_add ( struct evbuffer * ,
const void * ,
size_t
)
将数据附加到 evbuffer 的末尾。
参数:
buf the event buffer to be appended to
data pointer to the beginning of the data buffer
datlen the number of bytes to be copied from the data buffer
【讨论】:
这是evbuffer_add
本身的源代码,不是使用示例。阅读 libevent 的源代码比查找文档更容易。
是的,我最初以为它是一个 sn-p,但从你的链接中,看到它是源代码本身。非常感谢。
对于文档,您可以尝试 libevent.org 页面上的链接。有些人发现wangafu.net/~nickm/libevent-book 上的这本书很有用; wangafu.net/~nickm/libevent-2.0/doxygen/html也有最新的 doxygen@以上是关于C & Libevent:将二进制数据添加到输出缓冲区的主要内容,如果未能解决你的问题,请参考以下文章
ajax 调用从 php libevent 客户端获取连续/流式数据
我可以将 C++11 lambda 与 libevent 一起使用吗?