下面是我正在处理的猫鼬网络服务器 http 事件处理程序的 C 片段:
static void HttpEventHandler(struct mg_connection *nc, int ev, void *ev_data) {
if (ev == MG_EV_HTTP_REQUEST) {
struct http_message *hm = (struct http_message *) ev_data;
if (mg_vcmp(&hm->method, "POST") == 0) {
pthread_t thread_id;
int rc;
rc = pthread_create(&thread_id, NULL, thr_func, /* Here I want hm body to be passed after its malloced */);
if (rc) { /* could not create thread */
fprintf(stderr, "error: pthread_create, rc: %dn", rc);
return EXIT_FAILURE;
}
}//if POST
mg_printf(nc, "HTTP/1.1 200 OKrn");
nc->flags |= MG_F_SEND_AND_CLOSE;
}
}
HTTP POST 消息正文,使用以下语法以字符串形式访问:
"%.*s", (int) hm->body.len,hm->body.p
我希望代码示例 malloc hm->body 并将其传递给上面代码段中的线程,解释如何转换传递的 void * 也很棒。 如果很难,请 malloc ev_data 或 hm。
你可以按如下方式malloc()
它:
hm->body = malloc(sizeof *(hm->body));
hm->body.p = "string";
/* The above assigns a string literal. If you need to copy some
user-defined string then you can instead do:
hm->body = malloc(size); strcpy(hm->body.p, str);
where 'str' is the string you want copy and 'size' is the length of 'str'.
*/
hm->body.len = strlen(hm->body);
然后将其传递给:
rc = pthread_create(&thread_id, NULL, thr_func, hm->body);
在thr_func()
中,您需要将参数转换为任何类型的hm->body
,然后访问它(因为void *
不能直接取消引用(。像这样:
void *thr_func(void *arg)
{
struct mg_str *hm_body = arg;
printf("str: %s, len: %zun", hm_body->p, hm_body->len);
...
return NULL;
}
没有必要投掷任何东西来void*
.pthread_create()
API 需要void *
作为最后一个参数和任何数据指针可以直接分配给void *
。这同样适用于struct http_message *hm = (struct http_message *) ev_data;
声明。它可以只是:struct http_message *hm = ev_data;
.
根据"Web服务器"的实现方式,您可能还需要处理线程完成。
PS:如果你显示"hm"结构,解释事情会容易得多。