mirror of
https://github.com/apple/foundationdb.git
synced 2025-05-14 18:02:31 +08:00
* Unify flags implementation and change help text in backup.actor.cpp Description Testing * Keep LOG_GROUP unchanged Description Testing * Transfer the hyphens to underscores for internal options and user's input, EXCEPT leading hyphens Description Testing * Use a deep copy of the user's input flag to do the match Description Testing * Convert the _ to - in Option arrays of backup.actor.cpp Description Testing * Transter _ to - for files: TLSConfig.actor.h, fdbcli.actor.cpp, fdbserver.actor.cpp, FileConverter.h, FileConverter.cpp Description Testing * Change another way to unify flag: using SO_O_ICASE_HYPHEN_AND_UNDERSCORE to determine whether we do the conversion in function IsEqual Description Testing * Change the config command's name from SO_O_ICASE_HYPHEN_AND_UNDERSCORE to SO_O_HYPHEN_TO_UNDERSCORE Description Testing * Update the comment for the SO_O_HYPHEN_TO_UNDERSCORE Description Testing * Fix left underscore in SOption arrays Description Testing * Convert _ to - in several files for commands Description Testing * Make the FDBService and fdbmonitor backward compatible Description Testing * Fix bugs about pointers Description Testing * Check underscore and hyphen at the same time for --knob_, --localily_ and --test_ And fix bugs in fdbmonitor and FDBService Description Testing * Simplify the function in fdbmonitor and FDBService about retrieving arguments. And fix some documents in masterserver.actor.cpp Description Testing * Convert _ to - for knob in the setKnob functions Description Testing * Convert - to _ in the setKnob functions Description Since key in the knob related maps only contain _ Testing * Rename varialbe name in the fdbmonitor and FDBService for clarification Description Testing Co-authored-by: Chang Liu <chang.liu@snowflake.com>
83 lines
3.4 KiB
C++
83 lines
3.4 KiB
C++
/*
|
|
* FileConverter.h
|
|
*
|
|
* This source file is part of the FoundationDB open source project
|
|
*
|
|
* Copyright 2013-2019 Apple Inc. and the FoundationDB project authors
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef FDBBACKUP_FILECONVERTER_H
|
|
#define FDBBACKUP_FILECONVERTER_H
|
|
#pragma once
|
|
|
|
#include <cinttypes>
|
|
#include "flow/SimpleOpt.h"
|
|
#include "flow/TLSConfig.actor.h"
|
|
|
|
namespace file_converter {
|
|
|
|
// File format convertion constants
|
|
enum {
|
|
OPT_CONTAINER,
|
|
OPT_BEGIN_VERSION,
|
|
OPT_BLOB_CREDENTIALS,
|
|
OPT_CRASHONERROR,
|
|
OPT_END_VERSION,
|
|
OPT_TRACE,
|
|
OPT_TRACE_DIR,
|
|
OPT_TRACE_FORMAT,
|
|
OPT_TRACE_LOG_GROUP,
|
|
OPT_INPUT_FILE,
|
|
OPT_BUILD_FLAGS,
|
|
OPT_LIST_ONLY,
|
|
OPT_KEY_PREFIX,
|
|
OPT_HEX_KEY_PREFIX,
|
|
OPT_BEGIN_VERSION_FILTER,
|
|
OPT_END_VERSION_FILTER,
|
|
OPT_HELP
|
|
};
|
|
|
|
CSimpleOpt::SOption gConverterOptions[] = { { OPT_CONTAINER, "-r", SO_REQ_SEP },
|
|
{ OPT_CONTAINER, "--container", SO_REQ_SEP },
|
|
{ OPT_BEGIN_VERSION, "-b", SO_REQ_SEP },
|
|
{ OPT_BEGIN_VERSION, "--begin", SO_REQ_SEP },
|
|
{ OPT_CRASHONERROR, "--crash", SO_NONE },
|
|
{ OPT_END_VERSION, "-e", SO_REQ_SEP },
|
|
{ OPT_END_VERSION, "--end", SO_REQ_SEP },
|
|
{ OPT_TRACE, "--log", SO_NONE },
|
|
{ OPT_TRACE_DIR, "--logdir", SO_REQ_SEP },
|
|
{ OPT_TRACE_FORMAT, "--trace-format", SO_REQ_SEP },
|
|
{ OPT_TRACE_LOG_GROUP, "--loggroup", SO_REQ_SEP },
|
|
{ OPT_INPUT_FILE, "-i", SO_REQ_SEP },
|
|
{ OPT_INPUT_FILE, "--input", SO_REQ_SEP },
|
|
{ OPT_BLOB_CREDENTIALS, "--blob-credentials", SO_REQ_SEP },
|
|
#ifndef TLS_DISABLED
|
|
TLS_OPTION_FLAGS
|
|
#endif
|
|
{ OPT_BUILD_FLAGS, "--build-flags", SO_NONE },
|
|
{ OPT_LIST_ONLY, "--list-only", SO_NONE },
|
|
{ OPT_KEY_PREFIX, "-k", SO_REQ_SEP },
|
|
{ OPT_HEX_KEY_PREFIX, "--hex-prefix", SO_REQ_SEP },
|
|
{ OPT_BEGIN_VERSION_FILTER, "--begin-version-filter", SO_REQ_SEP },
|
|
{ OPT_END_VERSION_FILTER, "--end-version-filter", SO_REQ_SEP },
|
|
{ OPT_HELP, "-?", SO_NONE },
|
|
{ OPT_HELP, "-h", SO_NONE },
|
|
{ OPT_HELP, "--help", SO_NONE },
|
|
SO_END_OF_OPTIONS };
|
|
|
|
} // namespace file_converter
|
|
|
|
#endif // FDBBACKUP_FILECONVERTER_H
|