blob: a2d59337472feb45d56ecd67b3c4d4bf621e5876 [file] [log] [blame]
/*
* Copyright (C) 2022 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef SRC_TRACE_PROCESSOR_UTIL_SQL_MODULES_H_
#define SRC_TRACE_PROCESSOR_UTIL_SQL_MODULES_H_
#include <string>
#include "perfetto/ext/base/flat_hash_map.h"
#include "perfetto/ext/base/string_splitter.h"
#include "perfetto/ext/base/string_view.h"
namespace perfetto {
namespace trace_processor {
namespace sql_modules {
using NameToModule =
base::FlatHashMap<std::string,
std::vector<std::pair<std::string, std::string>>>;
// Map from import key to sql file. Import key is the string used in IMPORT
// function.
struct RegisteredModule {
struct ModuleFile {
std::string sql;
bool imported;
};
base::FlatHashMap<std::string, ModuleFile> import_key_to_file;
};
inline std::string ReplaceSlashWithDot(std::string str) {
size_t found = str.find('/');
while (found != std::string::npos) {
str.replace(found, 1, ".");
found = str.find('/');
}
return str;
}
inline std::string GetImportKey(std::string path) {
base::StringView path_view(path);
auto path_no_extension = path_view.substr(0, path_view.rfind('.'));
return ReplaceSlashWithDot(path_no_extension.ToStdString());
}
inline std::string GetModuleName(std::string str) {
size_t found = str.find('.');
if (found == std::string::npos) {
return str;
}
return str.substr(0, found);
}
} // namespace sql_modules
} // namespace trace_processor
} // namespace perfetto
#endif // SRC_TRACE_PROCESSOR_UTIL_SQL_MODULES_H_