blob: 017e49524e672cf9fccdf02ab3f5e5064e16749f [file] [log] [blame]
Yabin Cui67d3abd2015-04-16 15:26:31 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <string.h>
18#include <string>
19#include <vector>
20
21#include <base/logging.h>
22
23#include "command.h"
24
25int main(int argc, char** argv) {
26 InitLogging(argv, android::base::StderrLogger);
27 std::vector<std::string> args;
28
29 if (argc == 1 || (argc == 2 && strcmp(argv[1], "--help") == 0)) {
30 args.push_back("help");
31 } else {
32 for (int i = 1; i < argc; ++i) {
33 args.push_back(argv[i]);
34 }
35 }
36
37 Command* command = Command::FindCommandByName(args[0]);
38 if (command == nullptr) {
39 LOG(ERROR) << "malformed command line: unknown command " << args[0];
40 return 1;
41 }
42 args.erase(args.begin());
43 bool result = command->Run(args);
44 if (result == true) {
45 LOG(DEBUG) << "run command " << args[0] << " successfully";
46 } else {
47 LOG(DEBUG) << "run command " << args[0] << "unsuccessfully";
48 }
49 return result ? 0 : 1;
50}