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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <filesystem>
|
|
|
|
|
|
|
|
#include "DrgnUtils.h"
|
|
|
|
#include "OICodeGen.h"
|
|
|
|
#include "OICompiler.h"
|
|
|
|
|
|
|
|
namespace ObjectIntrospection {
|
|
|
|
|
|
|
|
class OIGenerator {
|
|
|
|
public:
|
2023-01-25 14:37:16 +00:00
|
|
|
int generate(fs::path& primaryObject, SymbolService& symbols);
|
2022-12-19 14:37:51 +00:00
|
|
|
|
|
|
|
void setOutputPath(fs::path _outputPath) {
|
|
|
|
outputPath = std::move(_outputPath);
|
|
|
|
}
|
|
|
|
void setConfigFilePath(fs::path _configFilePath) {
|
|
|
|
configFilePath = std::move(_configFilePath);
|
|
|
|
}
|
|
|
|
void setSourceFileDumpPath(fs::path _sourceFileDumpPath) {
|
|
|
|
sourceFileDumpPath = std::move(_sourceFileDumpPath);
|
|
|
|
}
|
2023-01-25 15:27:33 +00:00
|
|
|
void setFailIfNothingGenerated(bool fail) {
|
|
|
|
failIfNothingGenerated = fail;
|
|
|
|
}
|
2022-12-19 14:37:51 +00:00
|
|
|
|
|
|
|
private:
|
2023-03-07 17:45:00 +00:00
|
|
|
std::filesystem::path outputPath;
|
|
|
|
std::filesystem::path configFilePath;
|
|
|
|
std::filesystem::path sourceFileDumpPath;
|
2023-01-25 15:27:33 +00:00
|
|
|
bool failIfNothingGenerated;
|
2022-12-19 14:37:51 +00:00
|
|
|
|
2023-02-02 11:15:11 +00:00
|
|
|
std::unordered_map<std::string, std::string> oilStrongToWeakSymbolsMap(
|
|
|
|
drgnplusplus::program& prog);
|
|
|
|
|
2022-12-19 14:37:51 +00:00
|
|
|
std::vector<std::tuple<drgn_qualified_type, std::string>>
|
|
|
|
findOilTypesAndNames(drgnplusplus::program& prog);
|
2023-02-02 11:15:11 +00:00
|
|
|
|
2023-03-07 17:45:00 +00:00
|
|
|
std::filesystem::path generateForType(
|
|
|
|
const OICodeGen::Config& generatorConfig,
|
2023-04-18 18:02:37 +01:00
|
|
|
const OICompiler::Config& compilerConfig,
|
|
|
|
const drgn_qualified_type& type,
|
|
|
|
const std::string& linkageName,
|
|
|
|
SymbolService& symbols);
|
2022-12-19 14:37:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ObjectIntrospection
|