// MIT License // // Copyright (c) 2022 Advanced Micro Devices, Inc. All Rights Reserved. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. #include "common.hpp" #include #include #include #include #include using settings = ::tim::settings; std::string global_delim = std::string{ "|" }; bool csv = false; bool markdown = false; bool alphabetical = false; bool available_only = false; bool all_info = false; bool force_brief = false; bool debug_msg = false; bool case_insensitive = false; bool regex_hl = false; bool expand_keys = false; bool force_config = false; int32_t max_width = 0; int32_t num_cols = 0; int32_t min_width = 40; int32_t padding = 4; str_vec_t regex_keys = {}; str_vec_t category_regex_keys = {}; str_set_t category_view = {}; std::stringstream lerr = {}; // explicit setting names to exclude std::set settings_exclude = { "OMNITRACE_ENVIRONMENT", "OMNITRACE_COMMAND_LINE", "cereal_class_version", "settings", }; //--------------------------------------------------------------------------------------// namespace { const auto& get_regex_constants() { static auto _constants = []() { auto _v = regex_const::egrep | regex_const::optimize; if(case_insensitive) _v |= regex_const::icase; return _v; }(); return _constants; } const auto& get_regex_pattern() { static auto _pattern = []() { std::array _v{}; for(const auto& itr : regex_keys) { if(itr.empty()) continue; std::string _pattern = {}; if(itr.at(0) == '~') { _pattern = itr.substr(1); _v.at(1) += "|" + _pattern; } else { _pattern = itr; _v.at(0) += "|" + _pattern; } lerr << "Adding regex key: '" << _pattern << "'...\n"; } for(auto& itr : _v) if(!itr.empty()) itr = itr.substr(1); return _v; }(); return _pattern; } auto get_regex() { static auto _rc = std::array{ std::regex(get_regex_pattern().at(0), get_regex_constants()), std::regex(get_regex_pattern().at(1), get_regex_constants()) }; return _rc; } bool regex_match(const std::string& _line) { if(get_regex_pattern().at(0).empty() && get_regex_pattern().at(1).empty()) return true; static size_t lerr_width = 0; lerr_width = std::max(lerr_width, _line.length()); std::stringstream _line_ss; _line_ss << "'" << _line << "'"; if(!get_regex_pattern().at(1).empty()) { if(std::regex_match(_line, get_regex().at(1))) { lerr << std::left << std::setw(lerr_width) << _line_ss.str() << " matched negating pattern '" << get_regex_pattern().at(1) << "'...\n"; return false; } if(std::regex_search(_line, get_regex().at(1))) { lerr << std::left << std::setw(lerr_width) << _line_ss.str() << " found negating pattern '" << get_regex_pattern().at(1) << "'...\n"; return false; } } if(!get_regex_pattern().at(0).empty()) { if(std::regex_match(_line, get_regex().at(0))) { lerr << std::left << std::setw(lerr_width) << _line_ss.str() << " matched pattern '" << get_regex_pattern().at(0) << "'...\n"; return true; } if(std::regex_search(_line, get_regex().at(0))) { lerr << std::left << std::setw(lerr_width) << _line_ss.str() << " found pattern '" << get_regex_pattern().at(0) << "'...\n"; return true; } } lerr << std::left << std::setw(lerr_width) << _line_ss.str() << " missing pattern '" << get_regex_pattern().at(0) << "'...\n"; return false; } std::string regex_replace(const std::string& _line) { #if defined(TIMEMORY_UNIX) if(get_regex_pattern().empty()) return _line; if(regex_match(_line)) return std::regex_replace(_line, get_regex().at(0), "\33[01;04;36;40m$&\33[0m"); #endif return _line; } const auto& get_category_regex_pattern() { static auto _pattern = []() { std::array _v{}; for(const auto& itr : category_regex_keys) { if(itr.empty()) continue; std::string _pattern = {}; if(itr.at(0) == '~') { _pattern = itr.substr(1); _v.at(1) += "|" + _pattern; } else { _pattern = itr; _v.at(0) += "|" + _pattern; } lerr << "Adding category regex key: '" << _pattern << "'...\n"; } for(auto& itr : _v) if(!itr.empty()) itr = itr.substr(1); return _v; }(); return _pattern; } auto get_category_regex() { static auto _rc = std::array{ std::regex(get_category_regex_pattern().at(0), get_regex_constants()), std::regex(get_category_regex_pattern().at(1), get_regex_constants()) }; return _rc; } bool category_regex_match(const std::string& _line) { if(get_category_regex_pattern().at(0).empty() && get_category_regex_pattern().at(1).empty()) return true; static size_t lerr_width = 0; lerr_width = std::max(lerr_width, _line.length()); std::stringstream _line_ss; _line_ss << "'" << _line << "'"; if(!get_category_regex_pattern().at(1).empty()) { if(std::regex_match(_line, get_category_regex().at(1))) { lerr << std::left << std::setw(lerr_width) << _line_ss.str() << " matched negating category pattern '" << get_category_regex_pattern().at(1) << "'...\n"; return false; } if(std::regex_search(_line, get_category_regex().at(1))) { lerr << std::left << std::setw(lerr_width) << _line_ss.str() << " found negating category pattern '" << get_category_regex_pattern().at(1) << "'...\n"; return false; } } if(!get_category_regex_pattern().at(0).empty()) { if(std::regex_match(_line, get_category_regex().at(0))) { lerr << std::left << std::setw(lerr_width) << _line_ss.str() << " matched category pattern '" << get_category_regex_pattern().at(0) << "'...\n"; return true; } if(std::regex_search(_line, get_category_regex().at(0))) { lerr << std::left << std::setw(lerr_width) << _line_ss.str() << " found category pattern '" << get_category_regex_pattern().at(0) << "'...\n"; return true; } } lerr << std::left << std::setw(lerr_width) << _line_ss.str() << " missing category pattern '" << get_category_regex_pattern().at(0) << "'...\n"; return false; } } // namespace //--------------------------------------------------------------------------------------// bool is_selected(const std::string& _line) { return regex_match(_line); } //--------------------------------------------------------------------------------------// bool is_category_selected(const std::string& _line) { return category_regex_match(_line); } //--------------------------------------------------------------------------------------// std::string hl_selected(const std::string& _line) { return (regex_hl) ? regex_replace(_line) : _line; } //--------------------------------------------------------------------------------------// void process_categories(parser_t& p, const str_set_t& _category_options) { category_view = p.get("categories"); std::vector> _shorthand_patches{}; for(const auto& itr : category_view) { auto _is_shorthand = [&_shorthand_patches, &_category_options, itr](const std::string& _prefix) { auto _opt = TIMEMORY_JOIN("::", _prefix, itr); if(_category_options.count(_opt) > 0) { _shorthand_patches.emplace_back([itr, _opt]() { category_view.erase(itr); category_view.emplace(_opt); }); return true; } return false; }; if(_category_options.count(itr) == 0) { if(!_is_shorthand("component") && !_is_shorthand("settings")) throw std::runtime_error( itr + " is not a valid category. Use --list-categories to view " "valid categories"); } } for(auto&& itr : _shorthand_patches) itr(); } //--------------------------------------------------------------------------------------// bool exclude_setting(const std::string& _v) { if(settings_exclude.find(_v) != settings_exclude.end()) return true; auto itr = settings::instance()->find(_v, false); if(itr == settings::instance()->end()) return true; return itr->second->get_hidden(); } //--------------------------------------------------------------------------------------// void dump_log() { if(debug_msg) { std::cerr << lerr.str() << std::flush; lerr = std::stringstream{}; } } void dump_log_abort(int _v) { fprintf(stderr, "\n[omnitrace-avail] Exiting with signal %i...\n", _v); debug_msg = true; dump_log(); } //--------------------------------------------------------------------------------------// std::string remove(std::string inp, const std::set& entries) { for(const auto& itr : entries) { auto idx = inp.find(itr); while(idx != std::string::npos) { inp.erase(idx, itr.length()); idx = inp.find(itr); } } return inp; } //--------------------------------------------------------------------------------------// bool file_exists(const std::string& _fname) { struct stat _buffer; if(stat(_fname.c_str(), &_buffer) == 0) return (S_ISREG(_buffer.st_mode) != 0 || S_ISLNK(_buffer.st_mode) != 0); return false; } //--------------------------------------------------------------------------------------//