1 | /*
|
---|
2 | * Copyright (c) 2011 Martin Sucha
|
---|
3 | * Copyright (c) 2019 Vojtech Horky
|
---|
4 | * All rights reserved.
|
---|
5 | *
|
---|
6 | * Redistribution and use in source and binary forms, with or without
|
---|
7 | * modification, are permitted provided that the following conditions
|
---|
8 | * are met:
|
---|
9 | *
|
---|
10 | * - Redistributions of source code must retain the above copyright
|
---|
11 | * notice, this list of conditions and the following disclaimer.
|
---|
12 | * - Redistributions in binary form must reproduce the above copyright
|
---|
13 | * notice, this list of conditions and the following disclaimer in the
|
---|
14 | * documentation and/or other materials provided with the distribution.
|
---|
15 | * - The name of the author may not be used to endorse or promote products
|
---|
16 | * derived from this software without specific prior written permission.
|
---|
17 | *
|
---|
18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
28 | */
|
---|
29 |
|
---|
30 | /** @addtogroup hbench
|
---|
31 | * @{
|
---|
32 | */
|
---|
33 |
|
---|
34 | #include <str_error.h>
|
---|
35 | #include <stdio.h>
|
---|
36 | #include <stdlib.h>
|
---|
37 | #include "../hbench.h"
|
---|
38 |
|
---|
39 | #define BUFFER_SIZE 4096
|
---|
40 |
|
---|
41 | /*
|
---|
42 | * Note that while this benchmark tries to measure speed of file reading,
|
---|
43 | * it rather measures speed of FS cache as it is highly probable that the
|
---|
44 | * corresponding blocks would be cached after first run.
|
---|
45 | */
|
---|
46 | static bool runner(stopwatch_t *stopwatch, uint64_t size,
|
---|
47 | char *error, size_t error_size)
|
---|
48 | {
|
---|
49 | const char *path = bench_param_get("filename", "/data/web/helenos.png");
|
---|
50 |
|
---|
51 | char *buf = malloc(BUFFER_SIZE);
|
---|
52 | if (buf == NULL) {
|
---|
53 | snprintf(error, error_size, "failed to allocate %dB buffer", BUFFER_SIZE);
|
---|
54 | return false;
|
---|
55 | }
|
---|
56 |
|
---|
57 | bool ret = true;
|
---|
58 |
|
---|
59 | FILE *file = fopen(path, "r");
|
---|
60 | if (file == NULL) {
|
---|
61 | snprintf(error, error_size, "failed to open %s for reading: %s",
|
---|
62 | path, str_error(errno));
|
---|
63 | ret = false;
|
---|
64 | goto leave_free_buf;
|
---|
65 | }
|
---|
66 |
|
---|
67 | stopwatch_start(stopwatch);
|
---|
68 | for (uint64_t i = 0; i < size; i++) {
|
---|
69 | int rc = fseek(file, 0, SEEK_SET);
|
---|
70 | if (rc != 0) {
|
---|
71 | snprintf(error, error_size, "failed to rewind %s: %s",
|
---|
72 | path, str_error(errno));
|
---|
73 | ret = false;
|
---|
74 | goto leave_close;
|
---|
75 | }
|
---|
76 | while (!feof(file)) {
|
---|
77 | fread(buf, 1, BUFFER_SIZE, file);
|
---|
78 | if (ferror(file)) {
|
---|
79 | snprintf(error, error_size, "failed to read from %s: %s",
|
---|
80 | path, str_error(errno));
|
---|
81 | ret = false;
|
---|
82 | goto leave_close;
|
---|
83 | }
|
---|
84 | }
|
---|
85 | }
|
---|
86 | stopwatch_stop(stopwatch);
|
---|
87 |
|
---|
88 | leave_close:
|
---|
89 | fclose(file);
|
---|
90 |
|
---|
91 | leave_free_buf:
|
---|
92 | free(buf);
|
---|
93 |
|
---|
94 | return ret;
|
---|
95 | }
|
---|
96 |
|
---|
97 | benchmark_t bench_file_read = {
|
---|
98 | .name = "file_read",
|
---|
99 | .desc = "Sequentially read contents of a file (use 'filename' param to alter the default).",
|
---|
100 | .entry = &runner,
|
---|
101 | .setup = NULL,
|
---|
102 | .teardown = NULL
|
---|
103 | };
|
---|
104 |
|
---|
105 | /**
|
---|
106 | * @}
|
---|
107 | */
|
---|