123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- #include <switch.h>
- #include <test/switch_test.h>
- // #define BENCHMARK 1
- FST_MINCORE_BEGIN("./conf")
- FST_SUITE_BEGIN(switch_event)
- FST_SETUP_BEGIN()
- {
- }
- FST_SETUP_END()
- FST_TEARDOWN_BEGIN()
- {
- }
- FST_TEARDOWN_END()
- FST_TEST_BEGIN(benchmark)
- {
- switch_event_t *event = NULL;
- switch_time_t start_ts, end_ts;
- int loops = 10, x = 0;
- switch_status_t status = SWITCH_STATUS_SUCCESS;
- char **index = NULL;
- uint64_t micro_total = 0;
- double micro_per = 0;
- double rate_per_sec = 0;
- #ifdef BENCHMARK
- switch_time_t small_start_ts, small_end_ts;
- #endif
- index = calloc(loops, sizeof(char *));
- for ( x = 0; x < loops; x++) {
- index[x] = switch_mprintf("%d", x);
- }
- /* START LOOPS */
- start_ts = switch_time_now();
-
- status = switch_event_create(&event, SWITCH_EVENT_MESSAGE);
- fst_xcheck(status == SWITCH_STATUS_SUCCESS, "Failed to create event");
- #ifndef BENCHMARK
- for ( x = 0; x < loops; x++) {
- status = switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, index[x], index[x]);
- fst_xcheck(status == SWITCH_STATUS_SUCCESS, "Failed to add header to event");
- }
- #else
- small_start_ts = switch_time_now();
- for ( x = 0; x < loops; x++) {
- if ( switch_event_add_header_string(event, SWITCH_STACK_BOTTOM, index[x], index[x]) != SWITCH_STATUS_SUCCESS) {
- fst_fail("Failed to add header to event");
- }
- }
- small_end_ts = switch_time_now();
- micro_total = small_end_ts - small_start_ts;
- micro_per = micro_total / (double) loops;
- rate_per_sec = 1000000 / micro_per;
- printf("switch_event add_header: Total %" SWITCH_UINT64_T_FMT "us / %d loops, %.2f us per loop, %.0f loops per second\n",
- micro_total, loops, micro_per, rate_per_sec);
- #endif
- #ifndef BENCHMARK
- for ( x = 0; x < loops; x++) {
- fst_check_string_equals(switch_event_get_header(event, index[x]), index[x]);
- }
- #else
- small_start_ts = switch_time_now();
- for ( x = 0; x < loops; x++) {
- if ( !switch_event_get_header(event, index[x])) {
- fst_fail("Failed to lookup event header value");
- }
- }
- small_end_ts = switch_time_now();
- micro_total = small_end_ts - small_start_ts;
- micro_per = micro_total / (double) loops;
- rate_per_sec = 1000000 / micro_per;
- printf("switch_event get_header: Total %" SWITCH_UINT64_T_FMT "us / %d loops, %.2f us per loop, %.0f loops per second\n",
- micro_total, loops, micro_per, rate_per_sec);
- #endif
- switch_event_destroy(&event);
- /* END LOOPS */
-
- end_ts = switch_time_now();
- for ( x = 0; x < loops; x++) {
- free(index[x]);
- }
- free(index);
- micro_total = end_ts - start_ts;
- micro_per = micro_total / (double) loops;
- rate_per_sec = 1000000 / micro_per;
- printf("switch_event Total %" SWITCH_UINT64_T_FMT "us / %d loops, %.2f us per loop, %.0f loops per second\n",
- micro_total, loops, micro_per, rate_per_sec);
- }
- FST_TEST_END()
- FST_SUITE_END()
- FST_MINCORE_END()
|