Jon Ashburn | be58264 | 2014-12-22 12:04:40 -0700 | [diff] [blame] | 1 | /************************************************************************** |
| 2 | * |
Jon Ashburn | e922f71 | 2015-11-03 13:41:23 -0700 | [diff] [blame] | 3 | * Copyright 2014 Valve Software |
Michael Lentine | 695f2c2 | 2015-09-09 12:39:13 -0700 | [diff] [blame] | 4 | * Copyright 2015 Google Inc. |
Jon Ashburn | be58264 | 2014-12-22 12:04:40 -0700 | [diff] [blame] | 5 | * All Rights Reserved. |
| 6 | * |
| 7 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 8 | * of this software and associated documentation files (the "Software"), to deal |
| 9 | * in the Software without restriction, including without limitation the rights |
| 10 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 11 | * copies of the Software, and to permit persons to whom the Software is |
| 12 | * furnished to do so, subject to the following conditions: |
| 13 | * |
| 14 | * The above copyright notice and this permission notice shall be included in |
| 15 | * all copies or substantial portions of the Software. |
| 16 | * |
| 17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 18 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 19 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 20 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 21 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 22 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 23 | * THE SOFTWARE. |
| 24 | * |
Jon Ashburn | e922f71 | 2015-11-03 13:41:23 -0700 | [diff] [blame] | 25 | * Author: Jon Ashburn <jon@lunarg.com> |
| 26 | * Author: Courtney Goeltzenleuchter <courtney@LunarG.com> |
| 27 | * Author: Tobin Ehlis <tobin@lunarg.com> |
Jon Ashburn | be58264 | 2014-12-22 12:04:40 -0700 | [diff] [blame] | 28 | **************************************************************************/ |
| 29 | #include <fstream> |
| 30 | #include <string> |
| 31 | #include <map> |
| 32 | #include <string.h> |
David Pinedo | 9316d3b | 2015-11-06 12:54:48 -0700 | [diff] [blame] | 33 | #include <vulkan/vk_layer.h> |
Tobin Ehlis | b1df55e | 2015-09-15 09:55:54 -0600 | [diff] [blame] | 34 | #include <iostream> |
Tobin Ehlis | a0cb02e | 2015-07-03 10:15:26 -0600 | [diff] [blame] | 35 | #include "vk_layer_config.h" |
David Pinedo | 9316d3b | 2015-11-06 12:54:48 -0700 | [diff] [blame] | 36 | #include "vulkan/vk_sdk_platform.h" |
Jon Ashburn | be58264 | 2014-12-22 12:04:40 -0700 | [diff] [blame] | 37 | |
| 38 | #define MAX_CHARS_PER_LINE 4096 |
| 39 | |
| 40 | class ConfigFile |
| 41 | { |
| 42 | public: |
| 43 | ConfigFile(); |
| 44 | ~ConfigFile(); |
| 45 | |
| 46 | const char *getOption(const std::string &_option); |
Jon Ashburn | dec6051 | 2015-01-13 17:24:01 -0700 | [diff] [blame] | 47 | void setOption(const std::string &_option, const std::string &_val); |
| 48 | |
Jon Ashburn | be58264 | 2014-12-22 12:04:40 -0700 | [diff] [blame] | 49 | private: |
| 50 | bool m_fileIsParsed; |
| 51 | std::map<std::string, std::string> m_valueMap; |
| 52 | |
| 53 | void parseFile(const char *filename); |
| 54 | }; |
| 55 | |
| 56 | static ConfigFile g_configFileObj; |
Jon Ashburn | dec6051 | 2015-01-13 17:24:01 -0700 | [diff] [blame] | 57 | |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 58 | static VkLayerDbgAction stringToDbgAction(const char *_enum) |
Jon Ashburn | dec6051 | 2015-01-13 17:24:01 -0700 | [diff] [blame] | 59 | { |
| 60 | // only handles single enum values |
Courtney Goeltzenleuchter | d8e229c | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 61 | if (!strcmp(_enum, "VK_DBG_LAYER_ACTION_IGNORE")) |
| 62 | return VK_DBG_LAYER_ACTION_IGNORE; |
Courtney Goeltzenleuchter | d8e229c | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 63 | else if (!strcmp(_enum, "VK_DBG_LAYER_ACTION_LOG_MSG")) |
| 64 | return VK_DBG_LAYER_ACTION_LOG_MSG; |
Courtney Goeltzenleuchter | 5907ac4 | 2015-10-05 14:41:34 -0600 | [diff] [blame] | 65 | #ifdef WIN32 |
| 66 | else if (!strcmp(_enum, "VK_DBG_LAYER_ACTION_DEBUG_OUTPUT")) |
| 67 | return VK_DBG_LAYER_ACTION_DEBUG_OUTPUT; |
| 68 | #endif |
Courtney Goeltzenleuchter | d8e229c | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 69 | else if (!strcmp(_enum, "VK_DBG_LAYER_ACTION_BREAK")) |
| 70 | return VK_DBG_LAYER_ACTION_BREAK; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 71 | return (VkLayerDbgAction) 0; |
Jon Ashburn | dec6051 | 2015-01-13 17:24:01 -0700 | [diff] [blame] | 72 | } |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 73 | |
| 74 | static VkFlags stringToDbgReportFlags(const char *_enum) |
| 75 | { |
| 76 | // only handles single enum values |
Courtney Goeltzenleuchter | fd4830c | 2015-11-25 10:30:56 -0700 | [diff] [blame] | 77 | if (!strcmp(_enum, "VK_DEBUG_REPORT_INFO")) |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 78 | return VK_DEBUG_REPORT_INFO_BIT_EXT; |
Courtney Goeltzenleuchter | fd4830c | 2015-11-25 10:30:56 -0700 | [diff] [blame] | 79 | else if (!strcmp(_enum, "VK_DEBUG_REPORT_WARN")) |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 80 | return VK_DEBUG_REPORT_WARN_BIT_EXT; |
Courtney Goeltzenleuchter | fd4830c | 2015-11-25 10:30:56 -0700 | [diff] [blame] | 81 | else if (!strcmp(_enum, "VK_DEBUG_REPORT_PERF_WARN")) |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 82 | return VK_DEBUG_REPORT_PERF_WARN_BIT_EXT; |
Courtney Goeltzenleuchter | fd4830c | 2015-11-25 10:30:56 -0700 | [diff] [blame] | 83 | else if (!strcmp(_enum, "VK_DEBUG_REPORT_ERROR")) |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 84 | return VK_DEBUG_REPORT_ERROR_BIT_EXT; |
Courtney Goeltzenleuchter | fd4830c | 2015-11-25 10:30:56 -0700 | [diff] [blame] | 85 | else if (!strcmp(_enum, "VK_DEBUG_REPORT_DEBUG")) |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 86 | return VK_DEBUG_REPORT_DEBUG_BIT_EXT; |
Courtney Goeltzenleuchter | f579fa6 | 2015-06-10 17:39:03 -0600 | [diff] [blame] | 87 | return (VkFlags) 0; |
| 88 | } |
| 89 | |
| 90 | static unsigned int convertStringEnumVal(const char *_enum) |
| 91 | { |
| 92 | unsigned int ret; |
| 93 | |
| 94 | ret = stringToDbgAction(_enum); |
| 95 | if (ret) |
| 96 | return ret; |
| 97 | |
| 98 | return stringToDbgReportFlags(_enum); |
| 99 | } |
| 100 | |
Jon Ashburn | be58264 | 2014-12-22 12:04:40 -0700 | [diff] [blame] | 101 | const char *getLayerOption(const char *_option) |
| 102 | { |
Jon Ashburn | be58264 | 2014-12-22 12:04:40 -0700 | [diff] [blame] | 103 | return g_configFileObj.getOption(_option); |
| 104 | } |
| 105 | |
Tobin Ehlis | b1df55e | 2015-09-15 09:55:54 -0600 | [diff] [blame] | 106 | // If option is NULL or stdout, return stdout, otherwise try to open option |
| 107 | // as a filename. If successful, return file handle, otherwise stdout |
| 108 | FILE* getLayerLogOutput(const char *_option, const char *layerName) |
| 109 | { |
| 110 | FILE* log_output = NULL; |
| 111 | if (!_option || !strcmp("stdout", _option)) |
| 112 | log_output = stdout; |
| 113 | else { |
| 114 | log_output = fopen(_option, "w"); |
| 115 | if (log_output == NULL) { |
| 116 | if (_option) |
| 117 | std::cout << std::endl << layerName << " ERROR: Bad output filename specified: " << _option << ". Writing to STDOUT instead" << std::endl << std::endl; |
| 118 | log_output = stdout; |
| 119 | } |
| 120 | } |
Cody Northrop | e3e39ef | 2015-09-16 08:35:29 -0600 | [diff] [blame] | 121 | return log_output; |
Tobin Ehlis | b1df55e | 2015-09-15 09:55:54 -0600 | [diff] [blame] | 122 | } |
| 123 | |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 124 | VkDebugReportFlagsEXT getLayerOptionFlags(const char *_option, uint32_t optionDefault) |
Courtney Goeltzenleuchter | b874b8c | 2015-06-14 11:34:49 -0600 | [diff] [blame] | 125 | { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 126 | VkDebugReportFlagsEXT flags = optionDefault; |
Courtney Goeltzenleuchter | b874b8c | 2015-06-14 11:34:49 -0600 | [diff] [blame] | 127 | const char *option = (g_configFileObj.getOption(_option)); |
| 128 | |
| 129 | /* parse comma-separated options */ |
| 130 | while (option) { |
| 131 | const char *p = strchr(option, ','); |
| 132 | size_t len; |
| 133 | |
| 134 | if (p) |
| 135 | len = p - option; |
| 136 | else |
| 137 | len = strlen(option); |
| 138 | |
| 139 | if (len > 0) { |
| 140 | if (strncmp(option, "warn", len) == 0) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 141 | flags |= VK_DEBUG_REPORT_WARN_BIT_EXT; |
Courtney Goeltzenleuchter | b874b8c | 2015-06-14 11:34:49 -0600 | [diff] [blame] | 142 | } else if (strncmp(option, "info", len) == 0) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 143 | flags |= VK_DEBUG_REPORT_INFO_BIT_EXT; |
Courtney Goeltzenleuchter | b874b8c | 2015-06-14 11:34:49 -0600 | [diff] [blame] | 144 | } else if (strncmp(option, "perf", len) == 0) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 145 | flags |= VK_DEBUG_REPORT_PERF_WARN_BIT_EXT; |
Courtney Goeltzenleuchter | b874b8c | 2015-06-14 11:34:49 -0600 | [diff] [blame] | 146 | } else if (strncmp(option, "error", len) == 0) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 147 | flags |= VK_DEBUG_REPORT_ERROR_BIT_EXT; |
Courtney Goeltzenleuchter | b874b8c | 2015-06-14 11:34:49 -0600 | [diff] [blame] | 148 | } else if (strncmp(option, "debug", len) == 0) { |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 149 | flags |= VK_DEBUG_REPORT_DEBUG_BIT_EXT; |
Courtney Goeltzenleuchter | b874b8c | 2015-06-14 11:34:49 -0600 | [diff] [blame] | 150 | } |
| 151 | } |
| 152 | |
| 153 | if (!p) |
| 154 | break; |
| 155 | |
| 156 | option = p + 1; |
| 157 | } |
| 158 | return flags; |
| 159 | } |
| 160 | |
Jon Ashburn | a8aa837 | 2015-03-03 15:07:15 -0700 | [diff] [blame] | 161 | bool getLayerOptionEnum(const char *_option, uint32_t *optionDefault) |
Mark Lobodzinski | 8a2b75b | 2015-02-25 12:23:20 -0600 | [diff] [blame] | 162 | { |
Jon Ashburn | a8aa837 | 2015-03-03 15:07:15 -0700 | [diff] [blame] | 163 | bool res; |
Mark Lobodzinski | 8a2b75b | 2015-02-25 12:23:20 -0600 | [diff] [blame] | 164 | const char *option = (g_configFileObj.getOption(_option)); |
| 165 | if (option != NULL) { |
Jon Ashburn | a8aa837 | 2015-03-03 15:07:15 -0700 | [diff] [blame] | 166 | *optionDefault = convertStringEnumVal(option); |
| 167 | res = false; |
Mark Lobodzinski | 0d6e66d | 2015-02-25 15:14:06 -0600 | [diff] [blame] | 168 | } else { |
Jon Ashburn | a8aa837 | 2015-03-03 15:07:15 -0700 | [diff] [blame] | 169 | res = true; |
Mark Lobodzinski | 8a2b75b | 2015-02-25 12:23:20 -0600 | [diff] [blame] | 170 | } |
Jon Ashburn | a8aa837 | 2015-03-03 15:07:15 -0700 | [diff] [blame] | 171 | return res; |
Mark Lobodzinski | 8a2b75b | 2015-02-25 12:23:20 -0600 | [diff] [blame] | 172 | } |
| 173 | |
Jon Ashburn | dec6051 | 2015-01-13 17:24:01 -0700 | [diff] [blame] | 174 | void setLayerOptionEnum(const char *_option, const char *_valEnum) |
| 175 | { |
| 176 | unsigned int val = convertStringEnumVal(_valEnum); |
| 177 | char strVal[24]; |
| 178 | snprintf(strVal, 24, "%u", val); |
| 179 | g_configFileObj.setOption(_option, strVal); |
| 180 | } |
| 181 | |
| 182 | void setLayerOption(const char *_option, const char *_val) |
| 183 | { |
| 184 | g_configFileObj.setOption(_option, _val); |
| 185 | } |
| 186 | |
Jon Ashburn | be58264 | 2014-12-22 12:04:40 -0700 | [diff] [blame] | 187 | ConfigFile::ConfigFile() : m_fileIsParsed(false) |
| 188 | { |
| 189 | } |
| 190 | |
| 191 | ConfigFile::~ConfigFile() |
| 192 | { |
| 193 | } |
| 194 | |
| 195 | const char *ConfigFile::getOption(const std::string &_option) |
| 196 | { |
| 197 | std::map<std::string, std::string>::const_iterator it; |
| 198 | if (!m_fileIsParsed) |
| 199 | { |
Courtney Goeltzenleuchter | d8e229c | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 200 | parseFile("vk_layer_settings.txt"); |
Jon Ashburn | be58264 | 2014-12-22 12:04:40 -0700 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | if ((it = m_valueMap.find(_option)) == m_valueMap.end()) |
| 204 | return NULL; |
| 205 | else |
| 206 | return it->second.c_str(); |
| 207 | } |
| 208 | |
Jon Ashburn | dec6051 | 2015-01-13 17:24:01 -0700 | [diff] [blame] | 209 | void ConfigFile::setOption(const std::string &_option, const std::string &_val) |
| 210 | { |
| 211 | if (!m_fileIsParsed) |
| 212 | { |
Courtney Goeltzenleuchter | d8e229c | 2015-04-08 15:36:08 -0600 | [diff] [blame] | 213 | parseFile("vk_layer_settings.txt"); |
Jon Ashburn | dec6051 | 2015-01-13 17:24:01 -0700 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | m_valueMap[_option] = _val; |
| 217 | } |
| 218 | |
Jon Ashburn | be58264 | 2014-12-22 12:04:40 -0700 | [diff] [blame] | 219 | void ConfigFile::parseFile(const char *filename) |
| 220 | { |
| 221 | std::ifstream file; |
| 222 | char buf[MAX_CHARS_PER_LINE]; |
| 223 | |
| 224 | m_fileIsParsed = true; |
| 225 | m_valueMap.clear(); |
| 226 | |
| 227 | file.open(filename); |
| 228 | if (!file.good()) |
| 229 | return; |
| 230 | |
| 231 | // read tokens from the file and form option, value pairs |
| 232 | file.getline(buf, MAX_CHARS_PER_LINE); |
| 233 | while (!file.eof()) |
| 234 | { |
| 235 | char option[512]; |
| 236 | char value[512]; |
| 237 | |
| 238 | char *pComment; |
| 239 | |
| 240 | //discard any comments delimited by '#' in the line |
| 241 | pComment = strchr(buf, '#'); |
| 242 | if (pComment) |
| 243 | *pComment = '\0'; |
| 244 | |
| 245 | if (sscanf(buf, " %511[^\n\t =] = %511[^\n \t]", option, value) == 2) |
| 246 | { |
| 247 | std::string optStr(option); |
| 248 | std::string valStr(value); |
| 249 | m_valueMap[optStr] = valStr; |
| 250 | } |
| 251 | file.getline(buf, MAX_CHARS_PER_LINE); |
| 252 | } |
| 253 | } |
| 254 | |
Courtney Goeltzenleuchter | f85e361 | 2015-06-14 11:33:06 -0600 | [diff] [blame] | 255 | void print_msg_flags(VkFlags msgFlags, char *msg_flags) |
| 256 | { |
| 257 | bool separator = false; |
| 258 | |
| 259 | msg_flags[0] = 0; |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 260 | if (msgFlags & VK_DEBUG_REPORT_DEBUG_BIT_EXT) { |
Courtney Goeltzenleuchter | f85e361 | 2015-06-14 11:33:06 -0600 | [diff] [blame] | 261 | strcat(msg_flags, "DEBUG"); |
| 262 | separator = true; |
| 263 | } |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 264 | if (msgFlags & VK_DEBUG_REPORT_INFO_BIT_EXT) { |
Courtney Goeltzenleuchter | f85e361 | 2015-06-14 11:33:06 -0600 | [diff] [blame] | 265 | if (separator) strcat(msg_flags, ","); |
| 266 | strcat(msg_flags, "INFO"); |
| 267 | separator = true; |
| 268 | } |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 269 | if (msgFlags & VK_DEBUG_REPORT_WARN_BIT_EXT) { |
Courtney Goeltzenleuchter | f85e361 | 2015-06-14 11:33:06 -0600 | [diff] [blame] | 270 | if (separator) strcat(msg_flags, ","); |
| 271 | strcat(msg_flags, "WARN"); |
| 272 | separator = true; |
| 273 | } |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 274 | if (msgFlags & VK_DEBUG_REPORT_PERF_WARN_BIT_EXT) { |
Courtney Goeltzenleuchter | f85e361 | 2015-06-14 11:33:06 -0600 | [diff] [blame] | 275 | if (separator) strcat(msg_flags, ","); |
| 276 | strcat(msg_flags, "PERF"); |
| 277 | separator = true; |
| 278 | } |
Courtney Goeltzenleuchter | 7415d5a | 2015-12-09 15:48:16 -0700 | [diff] [blame] | 279 | if (msgFlags & VK_DEBUG_REPORT_ERROR_BIT_EXT) { |
Courtney Goeltzenleuchter | f85e361 | 2015-06-14 11:33:06 -0600 | [diff] [blame] | 280 | if (separator) strcat(msg_flags, ","); |
| 281 | strcat(msg_flags, "ERROR"); |
| 282 | } |
| 283 | } |
| 284 | |