mirror of
https://github.com/nestriness/cdc-file-transfer.git
synced 2026-01-30 14:05:36 +02:00
Adds a flag to set the SSH forwarding port or port range used for 'cdc_stream start-service' and 'cdc_rsync'. If a single number is passed, e.g. --forward-port 12345, then this port is used without checking availability of local and remote ports. If the port is taken, this results in an error when trying to connect. Note that this restricts the number of connections that stream can make to one. If a range is passed, e.g. --forward-port 45000-46000, the tools search for available ports locally and remotely in that range. This is more robust, but a bit slower due to the extra overhead. Optimizes port_manager_win as it was very slow for a large port range. It's still not optimal, but the time needed to scan 30k ports is << 1 seconds now. Fixes #12
124 lines
3.6 KiB
C++
124 lines
3.6 KiB
C++
// Copyright 2022 Google LLC
|
|
//
|
|
// 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 "cdc_stream/base_command.h"
|
|
|
|
#include "absl/strings/str_format.h"
|
|
#include "absl/strings/str_split.h"
|
|
#include "absl_helper/jedec_size_flag.h"
|
|
#include "common/port_range_parser.h"
|
|
#include "lyra/lyra.hpp"
|
|
|
|
namespace cdc_ft {
|
|
|
|
BaseCommand::BaseCommand(std::string name, std::string help, int* exit_code)
|
|
: name_(name), help_(help), exit_code_(exit_code) {
|
|
assert(exit_code_);
|
|
}
|
|
|
|
BaseCommand::~BaseCommand() = default;
|
|
|
|
void BaseCommand::Register(lyra::cli& cli) {
|
|
lyra::command cmd(name_,
|
|
[this](const lyra::group& g) { this->CommandHandler(g); });
|
|
cmd.help(help_);
|
|
cmd.add_argument(lyra::help(show_help_));
|
|
|
|
RegisterCommandLineFlags(cmd);
|
|
|
|
// Detect extra positional args.
|
|
cmd.add_argument(lyra::arg(PosArgValidator(&extra_positional_arg_), ""));
|
|
|
|
// Register command with CLI.
|
|
cli.add_argument(std::move(cmd));
|
|
}
|
|
|
|
std::function<void(const std::string&)> BaseCommand::JedecParser(
|
|
const char* flag_name, uint64_t* bytes) {
|
|
return [flag_name, bytes, error = &parse_error_](const std::string& value) {
|
|
JedecSize size;
|
|
if (AbslParseFlag(value, &size, error)) {
|
|
*bytes = size.Size();
|
|
} else {
|
|
*error = absl::StrFormat("Failed to parse %s=%s: %s", flag_name, value,
|
|
*error);
|
|
}
|
|
};
|
|
}
|
|
|
|
std::function<void(const std::string&)> BaseCommand::PortRangeParser(
|
|
const char* flag_name, uint16_t* first, uint16_t* last) {
|
|
return [flag_name, first, last,
|
|
error = &parse_error_](const std::string& value) {
|
|
if (!port_range::Parse(value.c_str(), first, last)) {
|
|
*error = absl::StrFormat(
|
|
"Failed to parse %s=%s, expected <port> or <port1>-<port2>",
|
|
flag_name, value);
|
|
}
|
|
};
|
|
}
|
|
|
|
std::function<void(const std::string&)> BaseCommand::PosArgValidator(
|
|
std::string* str) {
|
|
return [str, invalid_arg = &invalid_arg_](const std::string& value) {
|
|
if (!value.empty() && value[0] == '-') {
|
|
*invalid_arg = value;
|
|
} else {
|
|
*str = value;
|
|
}
|
|
};
|
|
}
|
|
|
|
void BaseCommand::CommandHandler(const lyra::group& g) {
|
|
// Handle -h, --help.
|
|
if (show_help_) {
|
|
std::cout << g;
|
|
*exit_code_ = 0;
|
|
return;
|
|
}
|
|
|
|
// Handle invalid arguments.
|
|
if (!invalid_arg_.empty()) {
|
|
std::cerr << "Error: Unknown parameter '" << invalid_arg_
|
|
<< "'. Try -h for help." << std::endl;
|
|
*exit_code_ = 1;
|
|
return;
|
|
}
|
|
|
|
if (!parse_error_.empty()) {
|
|
std::cerr << "Error: " << parse_error_ << std::endl;
|
|
*exit_code_ = 1;
|
|
return;
|
|
}
|
|
|
|
if (!extra_positional_arg_.empty()) {
|
|
std::cerr << "Error: Extraneous positional argument '"
|
|
<< extra_positional_arg_ << "'. Try -h for help." << std::endl;
|
|
*exit_code_ = 1;
|
|
return;
|
|
}
|
|
|
|
// Run and print error.
|
|
absl::Status status = Run();
|
|
if (!status.ok()) {
|
|
std::cerr << "Error: " << status.message() << std::endl;
|
|
}
|
|
|
|
// Write status code to |exit_code_|.
|
|
static_assert(static_cast<int>(absl::StatusCode::kOk) == 0, "kOk not 0");
|
|
*exit_code_ = static_cast<int>(status.code());
|
|
}
|
|
|
|
} // namespace cdc_ft
|