1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/at_exit.h"
6 #include "base/command_line.h"
7 #include "base/strings/utf_string_conversions.h"
8 #include "tools/gn/commands.h"
9 #include "tools/gn/err.h"
10 #include "tools/gn/location.h"
11 #include "tools/gn/standard_out.h"
13 // Only the GN-generated build makes this header for now.
14 // TODO(brettw) consider adding this if we need it in GYP.
16 #include "tools/gn/last_commit_position.h"
18 #define LAST_COMMIT_POSITION "UNKNOWN"
23 std::vector
<std::string
> GetArgs(const CommandLine
& cmdline
) {
24 CommandLine::StringVector in_args
= cmdline
.GetArgs();
26 std::vector
<std::string
> out_args
;
27 for (const auto& arg
: in_args
)
28 out_args
.push_back(base::WideToUTF8(arg
));
37 int main(int argc
, char** argv
) {
38 base::AtExitManager at_exit
;
40 CommandLine::set_slash_is_not_a_switch();
42 CommandLine::Init(argc
, argv
);
44 const CommandLine
& cmdline
= *CommandLine::ForCurrentProcess();
45 std::vector
<std::string
> args
= GetArgs(cmdline
);
48 if (cmdline
.HasSwitch("help") || cmdline
.HasSwitch("h")) {
49 // Make "-h" and "--help" default to help command.
50 command
= commands::kHelp
;
51 } else if (cmdline
.HasSwitch("version")) {
52 // Make "--version" print the version and exit.
53 OutputString(std::string(LAST_COMMIT_POSITION
) + "\n");
55 } else if (args
.empty()) {
56 // No command, print error and exit.
57 Err(Location(), "No command specified.",
58 "Most commonly you want \"gn gen <out_dir>\" to make a build dir.\n"
59 "Or try \"gn help\" for more commands.").PrintToStdout();
63 args
.erase(args
.begin());
66 const commands::CommandInfoMap
& command_map
= commands::GetCommands();
67 commands::CommandInfoMap::const_iterator found_command
=
68 command_map
.find(command
);
71 if (found_command
!= command_map
.end()) {
72 retval
= found_command
->second
.runner(args
);
75 "Command \"" + command
+ "\" unknown.").PrintToStdout();
76 commands::RunHelp(std::vector
<std::string
>());
80 exit(retval
); // Don't free memory, it can be really slow!