Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

84 lines
2.4 KiB
C++
Raw Permalink Normal View History

//===-- source/Host/common/OptionParser.cpp -------------------------------===//
2013-09-05 16:42:23 +00:00
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
2013-09-05 16:42:23 +00:00
//
//===----------------------------------------------------------------------===//
#include "lldb/Host/OptionParser.h"
#include "lldb/Host/HostGetOpt.h"
#include "lldb/lldb-private-types.h"
#include <vector>
2013-09-05 16:42:23 +00:00
using namespace lldb_private;
void OptionParser::Prepare(std::unique_lock<std::mutex> &lock) {
static std::mutex g_mutex;
lock = std::unique_lock<std::mutex>(g_mutex);
2013-09-05 16:42:23 +00:00
#ifdef __GLIBC__
optind = 0;
#else
optreset = 1;
optind = 1;
#endif
}
void OptionParser::EnableError(bool error) { opterr = error ? 1 : 0; }
2019-07-10 17:09:47 +00:00
int OptionParser::Parse(llvm::MutableArrayRef<char *> argv,
llvm::StringRef optstring, const Option *longopts,
int *longindex) {
2013-09-05 16:42:23 +00:00
std::vector<option> opts;
while (longopts->definition != nullptr) {
option opt;
opt.flag = longopts->flag;
2013-09-05 16:42:23 +00:00
opt.val = longopts->val;
opt.name = longopts->definition->long_option;
opt.has_arg = longopts->definition->option_has_arg;
opts.push_back(opt);
++longopts;
}
opts.push_back(option());
std::string opt_cstr = std::string(optstring);
2019-07-10 17:09:47 +00:00
return getopt_long_only(argv.size() - 1, argv.data(), opt_cstr.c_str(),
&opts[0], longindex);
2013-09-05 16:42:23 +00:00
}
char *OptionParser::GetOptionArgument() { return optarg; }
2013-09-05 16:42:23 +00:00
2013-11-23 01:58:15 +00:00
int OptionParser::GetOptionIndex() { return optind; }
2013-09-05 16:42:23 +00:00
2013-11-23 01:58:15 +00:00
int OptionParser::GetOptionErrorCause() { return optopt; }
2013-09-05 16:42:23 +00:00
2013-11-23 01:58:15 +00:00
std::string OptionParser::GetShortOptionString(struct option *long_options) {
std::string s;
int i = 0;
2013-11-23 01:58:15 +00:00
bool done = false;
2013-09-05 16:42:23 +00:00
while (!done) {
if (long_options[i].name == nullptr && long_options[i].has_arg == 0 &&
long_options[i].flag == nullptr && long_options[i].val == 0) {
2013-11-23 01:58:15 +00:00
done = true;
} else {
if (long_options[i].flag == nullptr && isalpha(long_options[i].val)) {
2013-11-23 01:58:15 +00:00
s.append(1, (char)long_options[i].val);
switch (long_options[i].has_arg) {
default:
2013-11-23 01:58:15 +00:00
case no_argument:
2013-09-05 16:42:23 +00:00
break;
2013-11-23 01:58:15 +00:00
case optional_argument:
s.append(2, ':');
break;
case required_argument:
s.append(1, ':');
break;
}
}
++i;
2013-11-23 01:58:15 +00:00
}
}
2013-11-23 01:58:15 +00:00
return s;
}