mirror of
https://github.com/JakeHillion/object-introspection.git
synced 2024-11-09 21:24:14 +00:00
108 lines
3.1 KiB
C++
108 lines
3.1 KiB
C++
/*
|
|
* 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.
|
|
*/
|
|
|
|
#include <glog/logging.h>
|
|
|
|
#include <cstdlib>
|
|
#include <filesystem>
|
|
#include <iostream>
|
|
|
|
#include "oi/OICodeGen.h"
|
|
#include "oi/OIGenerator.h"
|
|
#include "oi/OIOpts.h"
|
|
|
|
namespace fs = std::filesystem;
|
|
using namespace oi::detail;
|
|
|
|
constexpr static OIOpts opts{
|
|
OIOpt{'h', "help", no_argument, nullptr, "Print this message and exit."},
|
|
OIOpt{'o', "output", required_argument, "<file>",
|
|
"Write output(s) to file(s) with this prefix."},
|
|
OIOpt{'c', "config-file", required_argument, "<oid.toml>",
|
|
"Path to OI configuration file."},
|
|
OIOpt{'d', "dump-jit", optional_argument, "<jit.cpp>",
|
|
"Write generated code to a file (for debugging)."},
|
|
OIOpt{'e', "exit-code", no_argument, nullptr,
|
|
"Return a bad exit code if nothing is generated."},
|
|
};
|
|
|
|
void usage() {
|
|
std::cerr << "usage: oilgen ARGS INPUT_OBJECT" << std::endl;
|
|
std::cerr << opts;
|
|
|
|
std::cerr << std::endl
|
|
<< "You probably shouldn't be calling this application directly. "
|
|
"It's meant to be"
|
|
<< std::endl
|
|
<< "called by a clang plugin automatically with BUCK." << std::endl;
|
|
}
|
|
|
|
int main(int argc, char* argv[]) {
|
|
google::InitGoogleLogging(argv[0]);
|
|
FLAGS_minloglevel = 0;
|
|
FLAGS_stderrthreshold = 0;
|
|
|
|
fs::path outputPath = "a.o";
|
|
fs::path configFilePath = "/usr/local/share/oi/base.oid.toml";
|
|
fs::path sourceFileDumpPath = "";
|
|
bool exitCode = false;
|
|
|
|
int c;
|
|
while ((c = getopt_long(argc, argv, opts.shortOpts(), opts.longOpts(),
|
|
nullptr)) != -1) {
|
|
switch (c) {
|
|
case 'h':
|
|
usage();
|
|
return EXIT_SUCCESS;
|
|
case 'o':
|
|
outputPath = optarg;
|
|
break;
|
|
case 'c':
|
|
configFilePath = optarg;
|
|
break;
|
|
case 'd':
|
|
sourceFileDumpPath = optarg != nullptr ? optarg : "jit.cpp";
|
|
break;
|
|
case 'e':
|
|
exitCode = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (optind >= argc) {
|
|
usage();
|
|
return EXIT_FAILURE;
|
|
}
|
|
fs::path primaryObject = argv[optind];
|
|
|
|
if ((setenv("DRGN_ENABLE_TYPE_ITERATOR", "1", 1)) < 0) {
|
|
LOG(ERROR) << "Failed to set environment variable\
|
|
DRGN_ENABLE_TYPE_ITERATOR\n";
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
OIGenerator oigen;
|
|
|
|
oigen.setOutputPath(std::move(outputPath));
|
|
oigen.setConfigFilePath(std::move(configFilePath));
|
|
oigen.setSourceFileDumpPath(sourceFileDumpPath);
|
|
oigen.setFailIfNothingGenerated(exitCode);
|
|
|
|
SymbolService symbols(primaryObject);
|
|
|
|
return oigen.generate(primaryObject, symbols);
|
|
}
|