[381c426] | 1 | /*
|
---|
| 2 | * Copyright (c) 2023 Jiri Svoboda
|
---|
| 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | /** @addtogroup hbench
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
| 32 |
|
---|
| 33 | #include <stdio.h>
|
---|
| 34 | #include <ipc_test.h>
|
---|
| 35 | #include <async.h>
|
---|
| 36 | #include <errno.h>
|
---|
| 37 | #include <str_error.h>
|
---|
| 38 | #include "../hbench.h"
|
---|
| 39 |
|
---|
| 40 | enum {
|
---|
| 41 | rw_buf_size = 1024
|
---|
| 42 | };
|
---|
| 43 |
|
---|
| 44 | static ipc_test_t *test = NULL;
|
---|
| 45 | static uint8_t rw_buf[rw_buf_size];
|
---|
| 46 |
|
---|
| 47 | static bool setup(bench_env_t *env, bench_run_t *run)
|
---|
| 48 | {
|
---|
| 49 | errno_t rc;
|
---|
| 50 |
|
---|
| 51 | rc = ipc_test_create(&test);
|
---|
| 52 | if (rc != EOK) {
|
---|
| 53 | return bench_run_fail(run,
|
---|
| 54 | "failed contacting IPC test server (have you run /srv/test/ipc-test?): %s (%d)",
|
---|
| 55 | str_error(rc), rc);
|
---|
| 56 | }
|
---|
| 57 |
|
---|
| 58 | rc = ipc_test_set_rw_buf_size(test, rw_buf_size);
|
---|
| 59 | if (rc != EOK) {
|
---|
| 60 | return bench_run_fail(run,
|
---|
| 61 | "failed setting read/write buffer size.");
|
---|
| 62 | }
|
---|
| 63 |
|
---|
| 64 | return true;
|
---|
| 65 | }
|
---|
| 66 |
|
---|
| 67 | static bool teardown(bench_env_t *env, bench_run_t *run)
|
---|
| 68 | {
|
---|
| 69 | ipc_test_destroy(test);
|
---|
| 70 | return true;
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | static bool runner(bench_env_t *env, bench_run_t *run, uint64_t niter)
|
---|
| 74 | {
|
---|
| 75 | errno_t rc;
|
---|
| 76 |
|
---|
| 77 | bench_run_start(run);
|
---|
| 78 |
|
---|
| 79 | for (uint64_t count = 0; count < niter; count++) {
|
---|
| 80 | rc = ipc_test_read(test, rw_buf, rw_buf_size);
|
---|
| 81 |
|
---|
| 82 | if (rc != EOK) {
|
---|
| 83 | return bench_run_fail(run, "failed reading buffer: %s (%d)",
|
---|
| 84 | str_error(rc), rc);
|
---|
| 85 | }
|
---|
| 86 | }
|
---|
| 87 |
|
---|
| 88 | bench_run_stop(run);
|
---|
| 89 |
|
---|
| 90 | return true;
|
---|
| 91 | }
|
---|
| 92 |
|
---|
| 93 | benchmark_t benchmark_read1k = {
|
---|
| 94 | .name = "read1k",
|
---|
| 95 | .desc = "IPC read 1kB buffer benchmark",
|
---|
| 96 | .entry = &runner,
|
---|
| 97 | .setup = &setup,
|
---|
| 98 | .teardown = &teardown
|
---|
| 99 | };
|
---|
| 100 |
|
---|
| 101 | /** @}
|
---|
| 102 | */
|
---|