2022-12-19 14:37:51 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2023-04-26 16:20:53 +01:00
|
|
|
#include "oi/OIUtils.h"
|
2023-04-17 19:13:59 +01:00
|
|
|
|
2022-12-19 14:37:51 +00:00
|
|
|
#include <glog/logging.h>
|
|
|
|
|
|
|
|
#include <boost/algorithm/string/classification.hpp>
|
|
|
|
#include <boost/algorithm/string/split.hpp>
|
|
|
|
#include <boost/property_tree/ini_parser.hpp>
|
|
|
|
#include <boost/property_tree/ptree.hpp>
|
2023-01-31 16:19:45 +00:00
|
|
|
#include <filesystem>
|
2022-12-19 14:37:51 +00:00
|
|
|
|
2023-05-25 11:42:20 +01:00
|
|
|
#include "oi/support/Toml.h"
|
|
|
|
|
2023-01-31 16:19:45 +00:00
|
|
|
namespace fs = std::filesystem;
|
|
|
|
|
2022-12-19 14:37:51 +00:00
|
|
|
namespace OIUtils {
|
|
|
|
|
2023-04-17 19:13:59 +01:00
|
|
|
using namespace ObjectIntrospection;
|
2022-12-19 14:37:51 +00:00
|
|
|
using namespace std::literals;
|
|
|
|
|
2023-04-24 16:35:16 +01:00
|
|
|
std::optional<ObjectIntrospection::FeatureSet> processConfigFile(
|
2023-04-18 18:02:37 +01:00
|
|
|
const std::string& configFilePath,
|
|
|
|
std::map<Feature, bool> featureMap,
|
|
|
|
OICompiler::Config& compilerConfig,
|
|
|
|
OICodeGen::Config& generatorConfig) {
|
2023-01-31 16:19:45 +00:00
|
|
|
fs::path configDirectory = fs::path(configFilePath).remove_filename();
|
|
|
|
|
2022-12-19 14:37:51 +00:00
|
|
|
toml::table config;
|
|
|
|
try {
|
|
|
|
config = toml::parse_file(configFilePath);
|
|
|
|
} catch (const toml::parse_error& ex) {
|
|
|
|
LOG(ERROR) << "processConfigFileToml: " << configFilePath << " : "
|
|
|
|
<< ex.description();
|
2023-04-17 19:13:59 +01:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
if (toml::array* features = config["features"].as_array()) {
|
|
|
|
for (auto&& el : *features) {
|
|
|
|
auto* featureStr = el.as_string();
|
|
|
|
if (!featureStr) {
|
|
|
|
LOG(ERROR) << "enabled features must be strings";
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
|
|
|
|
if (auto f = featureFromStr(featureStr->get());
|
|
|
|
f != Feature::UnknownFeature) {
|
|
|
|
// Inserts element(s) into the container, if the container doesn't
|
|
|
|
// already contain an element with an equivalent key. Hence prefer
|
|
|
|
// command line enabling/disabling.
|
|
|
|
featureMap.insert({f, true});
|
|
|
|
} else {
|
|
|
|
LOG(ERROR) << "unrecognised feature: " << featureStr->get()
|
|
|
|
<< " specified in config";
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
}
|
2022-12-19 14:37:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (toml::table* types = config["types"].as_table()) {
|
|
|
|
if (toml::array* arr = (*types)["containers"].as_array()) {
|
|
|
|
arr->for_each([&](auto&& el) {
|
|
|
|
if constexpr (toml::is_string<decltype(el)>) {
|
2023-01-31 16:19:45 +00:00
|
|
|
/*
|
|
|
|
The / operator on std::filesystem::path will choose the right path
|
|
|
|
if the right path is absolute, else append the right path to the
|
|
|
|
left path.
|
|
|
|
*/
|
|
|
|
generatorConfig.containerConfigPaths.emplace(configDirectory /
|
|
|
|
el.get());
|
2022-12-19 14:37:51 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (toml::table* headers = config["headers"].as_table()) {
|
|
|
|
if (toml::array* arr = (*headers)["user_paths"].as_array()) {
|
|
|
|
arr->for_each([&](auto&& el) {
|
|
|
|
if constexpr (toml::is_string<decltype(el)>) {
|
2023-01-31 16:19:45 +00:00
|
|
|
/*
|
|
|
|
The / operator on std::filesystem::path will choose the right path
|
|
|
|
if the right path is absolute, else append the right path to the
|
|
|
|
left path.
|
|
|
|
*/
|
|
|
|
compilerConfig.userHeaderPaths.emplace_back(configDirectory /
|
|
|
|
el.get());
|
2022-12-19 14:37:51 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (toml::array* arr = (*headers)["system_paths"].as_array()) {
|
|
|
|
arr->for_each([&](auto&& el) {
|
|
|
|
if constexpr (toml::is_string<decltype(el)>) {
|
2023-01-31 16:19:45 +00:00
|
|
|
/*
|
|
|
|
The / operator on std::filesystem::path will choose the right path
|
|
|
|
if the right path is absolute, else append the right path to the
|
|
|
|
left path.
|
|
|
|
*/
|
|
|
|
compilerConfig.sysHeaderPaths.emplace_back(configDirectory /
|
|
|
|
el.get());
|
2022-12-19 14:37:51 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (toml::table* codegen = config["codegen"].as_table()) {
|
|
|
|
if (toml::array* arr = (*codegen)["default_headers"].as_array()) {
|
|
|
|
arr->for_each([&](auto&& el) {
|
|
|
|
if constexpr (toml::is_string<decltype(el)>) {
|
|
|
|
generatorConfig.defaultHeaders.emplace(el);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (toml::array* arr = (*codegen)["default_namespaces"].as_array()) {
|
|
|
|
arr->for_each([&](auto&& el) {
|
|
|
|
if constexpr (toml::is_string<decltype(el)>) {
|
|
|
|
generatorConfig.defaultNamespaces.emplace(el);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (toml::array* arr = (*codegen)["ignore"].as_array()) {
|
|
|
|
for (auto&& el : *arr) {
|
|
|
|
if (toml::table* ignore = el.as_table()) {
|
|
|
|
auto* type = (*ignore)["type"].as_string();
|
|
|
|
if (!type) {
|
|
|
|
LOG(ERROR) << "Config entry 'ignore' must specify a type";
|
2023-04-17 19:13:59 +01:00
|
|
|
return {};
|
2022-12-19 14:37:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
auto* members = (*ignore)["members"].as_array();
|
|
|
|
if (!members) {
|
|
|
|
generatorConfig.membersToStub.emplace_back(type->value_or(""sv),
|
|
|
|
"*"sv);
|
|
|
|
} else {
|
|
|
|
for (auto&& member : *members) {
|
|
|
|
generatorConfig.membersToStub.emplace_back(type->value_or(""sv),
|
|
|
|
member.value_or(""sv));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-24 16:35:16 +01:00
|
|
|
ObjectIntrospection::FeatureSet featuresSet;
|
2023-04-17 19:13:59 +01:00
|
|
|
for (auto [k, v] : featureMap) {
|
|
|
|
if (v) {
|
2023-04-24 16:35:16 +01:00
|
|
|
featuresSet[k] = true;
|
2023-04-17 19:13:59 +01:00
|
|
|
}
|
|
|
|
}
|
2023-04-20 18:30:59 +01:00
|
|
|
|
|
|
|
if (featuresSet[Feature::TypedDataSegment] &&
|
|
|
|
!featuresSet[Feature::TypeGraph]) {
|
2023-06-29 16:23:06 +01:00
|
|
|
if (auto search = featureMap.find(Feature::TypeGraph);
|
|
|
|
search != featureMap.end() && !search->second) {
|
|
|
|
LOG(ERROR) << "TypedDataSegment feature requires TypeGraph feature to be "
|
|
|
|
"enabled but it was explicitly disabled!";
|
|
|
|
return {};
|
|
|
|
}
|
2023-04-20 18:30:59 +01:00
|
|
|
featuresSet[Feature::TypeGraph] = true;
|
|
|
|
LOG(WARNING) << "TypedDataSegment feature requires TypeGraph feature to be "
|
|
|
|
"enabled, enabling now.";
|
|
|
|
}
|
|
|
|
|
2023-04-17 19:13:59 +01:00
|
|
|
return featuresSet;
|
2022-12-19 14:37:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace OIUtils
|