developtools_hiperf/include/subcommand_help.h
wenlong12 e356db195a fix codecheck issues
Signed-off-by: wenlong12 <wenlong12@huawei.com>

Signed-off-by: wenlong12 <wwx1097114@DESKTOP-2021EGU.localdomain>
2022-03-25 11:49:41 +08:00

46 lines
1.6 KiB
C++

/*
* Copyright (c) 2022 Huawei Device Co., Ltd.
* 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 HIPERF_SUBCOMMAND_HELP_H_
#define HIPERF_SUBCOMMAND_HELP_H_
#include "option.h"
#include "subcommand.h"
namespace OHOS {
namespace Developtools {
namespace HiPerf {
class SubCommandHelp : public SubCommand {
public:
SubCommandHelp()
// clang-format off
: SubCommand("help", "Show more help information for hiperf",
"Usage: hiperf help [subcommand]\n"
" By default, all options help information and subcommand brief information are output.\n"
" If you provide a subcommand, only the help information for this command will be output.\n\n"
)
// clang-format on
{
Option::RegisterMainOption("--help", "show help", OnHelp);
Option::RegisterMainOption("-h", "show help", OnHelp);
}
bool OnSubCommand(std::vector<std::string> &args) override;
static void RegisterSubCommandHelp(void);
static bool OnHelp(std::vector<std::string> &args);
};
} // namespace HiPerf
} // namespace Developtools
} // namespace OHOS
#endif // HIPERF_SUBCOMMAND_HELP_H_