16cf5b8dee097695ac4d222fd1eb738ded589522
[mesa.git] / src / vulkan / overlay-layer / overlay_params.c
1 /*
2 * Copyright © 2019 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #include <stdio.h>
25 #include <string.h>
26 #include <stdlib.h>
27
28 #include "overlay_params.h"
29
30 static enum overlay_param_position
31 parse_position(const char *str)
32 {
33 if (!str || !strcmp(str, "top-left"))
34 return LAYER_POSITION_TOP_LEFT;
35 if (!strcmp(str, "top-right"))
36 return LAYER_POSITION_TOP_RIGHT;
37 if (!strcmp(str, "bottom-left"))
38 return LAYER_POSITION_BOTTOM_LEFT;
39 if (!strcmp(str, "bottom-right"))
40 return LAYER_POSITION_BOTTOM_RIGHT;
41 return LAYER_POSITION_TOP_LEFT;
42 }
43
44 static FILE *
45 parse_output_file(const char *str)
46 {
47 return fopen(str, "w+");
48 }
49
50 static uint32_t
51 parse_fps_sampling_period(const char *str)
52 {
53 return strtol(str, NULL, 0) * 1000;
54 }
55
56 static bool
57 parse_no_display(const char *str)
58 {
59 return strtol(str, NULL, 0) != 0;
60 }
61
62 static bool
63 parse_help(const char *str)
64 {
65 fprintf(stderr, "Layer params using VK_LAYER_MESA_OVERLAY_CONFIG=\n");
66 #define OVERLAY_PARAM_BOOL(name) \
67 fprintf(stderr, "\t%s=0|1\n", #name);
68 #define OVERLAY_PARAM_CUSTOM(name)
69 OVERLAY_PARAMS
70 #undef OVERLAY_PARAM_BOOL
71 #undef OVERLAY_PARAM_CUSTOM
72 fprintf(stderr, "\tposition=top-left|top-right|bottom-left|bottom-right\n");
73 fprintf(stderr, "\tfps_sampling_period=number-of-milliseconds\n");
74 fprintf(stderr, "\tno_display=0|1\n");
75
76 return true;
77 }
78
79 static bool is_delimiter(char c)
80 {
81 return c == 0 || c == ',' || c == ':' || c == ';' || c == '=';
82 }
83
84 static int
85 parse_string(const char *s, char *out_param, char *out_value)
86 {
87 int i = 0;
88
89 for (; !is_delimiter(*s); s++, out_param++, i++)
90 *out_param = *s;
91
92 *out_param = 0;
93
94 if (*s == '=') {
95 s++;
96 i++;
97 for (; !is_delimiter(*s); s++, out_value++, i++)
98 *out_value = *s;
99 } else
100 *(out_value++) = '1';
101 *out_value = 0;
102
103 if (*s && is_delimiter(*s)) {
104 s++;
105 i++;
106 }
107
108 if (*s && !i) {
109 fprintf(stderr, "mesa-overlay: syntax error: unexpected '%c' (%i) while "
110 "parsing a string\n", *s, *s);
111 fflush(stderr);
112 }
113
114 return i;
115 }
116
117 const char *overlay_param_names[] = {
118 #define OVERLAY_PARAM_BOOL(name) #name,
119 #define OVERLAY_PARAM_CUSTOM(name)
120 OVERLAY_PARAMS
121 #undef OVERLAY_PARAM_BOOL
122 #undef OVERLAY_PARAM_CUSTOM
123 };
124
125 void
126 parse_overlay_env(struct overlay_params *params,
127 const char *env)
128 {
129 uint32_t num;
130 char key[256], value[256];
131
132 memset(params, 0, sizeof(*params));
133
134 /* Visible by default */
135 params->enabled[OVERLAY_PARAM_ENABLED_fps] = true;
136 params->enabled[OVERLAY_PARAM_ENABLED_frame_timing] = true;
137 params->fps_sampling_period = 500000; /* 500ms */
138
139 if (!env)
140 return;
141
142 while ((num = parse_string(env, key, value)) != 0) {
143 env += num;
144
145 #define OVERLAY_PARAM_BOOL(name) \
146 if (!strcmp(#name, key)) { \
147 params->enabled[OVERLAY_PARAM_ENABLED_##name] = \
148 strtol(value, NULL, 0); \
149 continue; \
150 }
151 #define OVERLAY_PARAM_CUSTOM(name) \
152 if (!strcmp(#name, key)) { \
153 params->name = parse_##name(value); \
154 continue; \
155 }
156 OVERLAY_PARAMS
157 #undef OVERLAY_PARAM_BOOL
158 #undef OVERLAY_PARAM_CUSTOM
159 fprintf(stderr, "Unknown option '%s'\n", key);
160 }
161 }