source: mainline/uspace/app/perf/fs/fileread.c@ 13b1b48

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 13b1b48 was 13b1b48, checked in by Vojtech Horky <vojtech.horky@…>, 6 years ago

perf: add benchmarks from bnchmark application

Probably it should be the other way around as bnchmark is in HelenOS for
quite some time but perf has better infrastructure as of now.

Note that these benchmarks are rather weak in terms of what they
benchmark (despite their name they actually benchmark FS caching).

  • Property mode set to 100644
File size: 3.2 KB
Line 
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 perf
31 * @{
32 */
33
34#include <str_error.h>
35#include <stdio.h>
36#include <stdlib.h>
37#include "../benchlist.h"
38#include "../perf.h"
39#include "../params.h"
40
41#define BUFFER_SIZE 4096
42
43/*
44 * Note that while this benchmark tries to measure speed of file reading,
45 * it rather measures speed of FS cache as it is highly probable that the
46 * corresponding blocks would be cached after first run.
47 */
48static bool runner(stopwatch_t *stopwatch, uint64_t size,
49 char *error, size_t error_size)
50{
51 const char *path = bench_param_get("filename", "/data/web/helenos.png");
52
53 char *buf = malloc(BUFFER_SIZE);
54 if (buf == NULL) {
55 snprintf(error, error_size, "failed to allocate %dB buffer", BUFFER_SIZE);
56 return false;
57 }
58
59 bool ret = true;
60
61 FILE *file = fopen(path, "r");
62 if (file == NULL) {
63 snprintf(error, error_size, "failed to open %s for reading: %s",
64 path, str_error(errno));
65 ret = false;
66 goto leave_free_buf;
67 }
68
69 stopwatch_start(stopwatch);
70 for (uint64_t i = 0; i < size; i++) {
71 int rc = fseek(file, 0, SEEK_SET);
72 if (rc != 0) {
73 snprintf(error, error_size, "failed to rewind %s: %s",
74 path, str_error(errno));
75 ret = false;
76 goto leave_close;
77 }
78 while (!feof(file)) {
79 fread(buf, 1, BUFFER_SIZE, file);
80 if (ferror(file)) {
81 snprintf(error, error_size, "failed to read from %s: %s",
82 path, str_error(errno));
83 ret = false;
84 goto leave_close;
85 }
86 }
87 }
88 stopwatch_stop(stopwatch);
89
90leave_close:
91 fclose(file);
92
93leave_free_buf:
94 free(buf);
95
96 return ret;
97}
98
99benchmark_t bench_file_read = {
100 .name = "file_read",
101 .desc = "Sequentially read contents of a file (use 'filename' param to alter the default).",
102 .entry = &runner,
103 .setup = NULL,
104 .teardown = NULL
105};
106
107/**
108 * @}
109 */
Note: See TracBrowser for help on using the repository browser.