mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-02 11:57:43 +08:00
9697f95b8f
This reverts commit 15d999759e
.
123 lines
2.9 KiB
C++
123 lines
2.9 KiB
C++
#include "lib_acl.h"
|
|
#include "cJSON.h"
|
|
|
|
#if 1
|
|
static const char* default_data = \
|
|
"{ \"menu name\": {\r\n"
|
|
" \"id file\": \"file\",\r\n"
|
|
" \"value\": \"File\",\r\n"
|
|
" \"popup\": {\r\n"
|
|
" \"menuitem1\": [\r\n"
|
|
" {\"value\": \"New\", \"onclick\": \"CreateNewDoc()\"},\r\n"
|
|
" {\"value\": \"Open\", \"onclick\": \"OpenDoc()\"},\r\n"
|
|
" {\"value\": \"Close\", \"onclick\": \"CloseDoc()\"}\r\n"
|
|
" ],\r\n"
|
|
" \"menuname\": \"hello world\",\r\n"
|
|
" \"inner\": { \"value\" : \"new \", \"value\" : \"open\" },\r\n"
|
|
" \"menuitem2\": [\r\n"
|
|
" {\"value\": \"New\", \"onclick\": \"CreateNewDoc()\"},\r\n"
|
|
" {\"value\": \"Open\", \"onclick\": \"OpenDoc()\"},\r\n"
|
|
" {\"value\": \"Close\", \"onclick\": \"CloseDoc()\"},\r\n"
|
|
" {\"value\": \"Help\", \"onclick\": \"Help()\"}"
|
|
" ]\r\n"
|
|
" }\r\n"
|
|
" },\r\n"
|
|
" \"help\": \"hello world!\",\r\n"
|
|
" \"menuitem2\": [\r\n"
|
|
" {\"value\": \"New\", \"onclick\": \"CreateNewDoc()\"},\r\n"
|
|
" {\"value\": \"Open\", \"onclick\": \"OpenDoc()\"},\r\n"
|
|
" {\"value\": \"Close\", \"onclick\": \"CloseDoc()\"},\r\n"
|
|
" [{\"value\": \"Save\", \"onclick\": \"SaveDoc()\"}]"
|
|
" ]\r\n"
|
|
"}\r\n";
|
|
#else
|
|
static const char* default_data = \
|
|
"{ \"menu name\": \"hello\"}\r\n";
|
|
#endif
|
|
|
|
static void test_json_benchmark(int max)
|
|
{
|
|
cJSON *json;
|
|
|
|
ACL_METER_TIME("-------------bat begin--------------");
|
|
|
|
for (int i = 0; i < max; i++)
|
|
{
|
|
const char* ptr = default_data;
|
|
json = cJSON_Parse(ptr);
|
|
if (json == NULL)
|
|
{
|
|
printf("parse error: %s\r\n", ptr);
|
|
break;
|
|
}
|
|
cJSON_Delete(json);
|
|
}
|
|
|
|
ACL_METER_TIME("-------------bat end--------------");
|
|
}
|
|
|
|
static int benchmark_max = 100;
|
|
|
|
static void *thread_func(void *ctx acl_unused)
|
|
{
|
|
test_json_benchmark(benchmark_max);
|
|
return NULL;
|
|
}
|
|
|
|
static void usage(const char* program)
|
|
{
|
|
printf("usage: %s -h[help]\r\n"
|
|
" -c max_threads\r\n"
|
|
" -m benchmark_max\r\n", program);
|
|
}
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
int ch, i;
|
|
int max_threads = 1;
|
|
acl_pthread_attr_t attr;
|
|
acl_pthread_t tid;
|
|
acl_pthread_t* ids;
|
|
|
|
acl_pthread_attr_init(&attr);
|
|
|
|
while ((ch = getopt(argc, argv, "hm:c:")) > 0)
|
|
{
|
|
switch (ch)
|
|
{
|
|
case 'h':
|
|
usage(argv[0]);
|
|
return (0);
|
|
break;
|
|
case 'm':
|
|
benchmark_max = atoi(optarg);
|
|
break;
|
|
case 'c':
|
|
max_threads = atoi(optarg);
|
|
if (max_threads <= 0)
|
|
max_threads = 1;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
ids = (acl_pthread_t*) acl_mymalloc(max_threads * sizeof(acl_pthread_t));
|
|
|
|
for (i = 0; i < max_threads; i++) {
|
|
acl_pthread_create(&tid, &attr, thread_func, NULL);
|
|
ids[i] = tid;
|
|
}
|
|
|
|
for (i = 0; i < max_threads; i++)
|
|
acl_pthread_join(ids[i], NULL);
|
|
|
|
acl_myfree(ids);
|
|
|
|
#ifdef WIN32
|
|
getchar();
|
|
#endif
|
|
|
|
return (0);
|
|
}
|