2023-02-03 12:31:39 -06:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
Copyright (c) 2015-2016 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.
|
|
|
|
|
*/
|
|
|
|
|
#ifndef TESTS_FEATURETESTS_PROFILER_UTILS_CSV_PARSER_H_
|
|
|
|
|
#define TESTS_FEATURETESTS_PROFILER_UTILS_CSV_PARSER_H_
|
|
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
2023-08-21 15:08:31 +00:00
|
|
|
#include <cstdint>
|
2023-02-03 12:31:39 -06:00
|
|
|
#include <cstring>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <map>
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------*/
|
|
|
|
|
/**
|
|
|
|
|
* @Synopsis Implementation of a CSV Parser class for Profiler output
|
|
|
|
|
* when running to collect counters.Subsequent counter collection tests
|
|
|
|
|
* can use this to parse different applications.
|
|
|
|
|
*/
|
|
|
|
|
/* --------------------------------------------------------------------------*/
|
2023-05-30 19:21:14 +00:00
|
|
|
namespace rocprofiler {
|
2023-02-03 12:31:39 -06:00
|
|
|
namespace tests {
|
|
|
|
|
namespace utility {
|
|
|
|
|
using countermap = std::map<uint32_t, std::map<uint32_t, std::string>>;
|
|
|
|
|
|
|
|
|
|
class CSVParser {
|
|
|
|
|
public:
|
|
|
|
|
CSVParser() {}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Parses CSV file and saves result in a map
|
|
|
|
|
*
|
|
|
|
|
* Stores csv data as a 2-D array in row-column format
|
|
|
|
|
* Skips first line of input csv as it only contains field names
|
|
|
|
|
*
|
|
|
|
|
* @param[in] path Pointer to the csv path.
|
|
|
|
|
*
|
|
|
|
|
* @return Returns 0 on success and -1 on error.
|
|
|
|
|
*/
|
2023-07-13 19:48:38 +00:00
|
|
|
void ParseCSV(const char* path);
|
2023-02-03 12:31:39 -06:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Parses profiler output buffer and saves result in a map
|
|
|
|
|
*
|
|
|
|
|
* Stores csv data as a 2-D array in row-column format
|
|
|
|
|
* Skips first line of input csv as it only contains field names
|
|
|
|
|
*
|
|
|
|
|
* @param[in] path Pointer to the csv path.
|
|
|
|
|
*
|
|
|
|
|
* @return Returns 0 on success and -1 on error.
|
|
|
|
|
*/
|
|
|
|
|
void ParseCSV(std::string buffer);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Read counter value based on row-column
|
|
|
|
|
*
|
|
|
|
|
* @param[in] row row number to be read in csv.
|
|
|
|
|
*
|
|
|
|
|
* @param[in] col column to be read in csv.(i.e: counter value)
|
|
|
|
|
*
|
|
|
|
|
* @return If found, returns counter value as a string pointer, nullptr
|
|
|
|
|
* otherwise.
|
|
|
|
|
*/
|
2023-07-13 19:48:38 +00:00
|
|
|
std::string* ReadCounter(uint32_t row, uint32_t col);
|
2023-02-03 12:31:39 -06:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Tokenize a comma separated string and saves result in vector
|
|
|
|
|
*
|
|
|
|
|
* @param[in] str input string to be tokenized
|
|
|
|
|
*
|
|
|
|
|
* @param[in] csvtable vector to store tokenized values
|
|
|
|
|
*
|
|
|
|
|
* @param[in] delim delimitre used for tokenizing
|
|
|
|
|
*
|
|
|
|
|
* @return returns vector size of delimitd values
|
|
|
|
|
*/
|
2023-07-13 19:48:38 +00:00
|
|
|
int GetTockenizedString(std::string str, std::vector<std::string>& csvtable, char delim = ',');
|
2023-02-03 12:31:39 -06:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* A getter for a map of collected counters
|
|
|
|
|
* *
|
|
|
|
|
* @return Returns a map of collected counters.
|
|
|
|
|
*/
|
2023-07-13 19:48:38 +00:00
|
|
|
countermap& GetCounterMap();
|
2023-02-03 12:31:39 -06:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
// map for counter collection
|
|
|
|
|
countermap counter_map_;
|
|
|
|
|
};
|
|
|
|
|
} // namespace utility
|
|
|
|
|
} // namespace tests
|
2023-05-30 19:21:14 +00:00
|
|
|
} // namespace rocprofiler
|
2023-02-03 12:31:39 -06:00
|
|
|
|
2023-05-30 19:21:14 +00:00
|
|
|
using rocprofiler::tests::utility::countermap;
|
|
|
|
|
using rocprofiler::tests::utility::CSVParser;
|
2023-02-03 12:31:39 -06:00
|
|
|
#endif // TESTS_FEATURETESTS_PROFILER_UTILS_CSV_PARSER_H_
|