dotnet-installer/src/dotnet/Program.cs

192 lines
6.4 KiB
C#
Raw Normal View History

// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
2015-11-02 00:21:10 +00:00
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Microsoft.DotNet.Cli.Utils;
using Microsoft.DotNet.Tools.Test;
using Microsoft.Extensions.PlatformAbstractions;
using NuGet.Frameworks;
using Microsoft.DotNet.ProjectModel.Server;
using Microsoft.DotNet.Tools.Build;
using Microsoft.DotNet.Tools.Compiler;
using Microsoft.DotNet.Tools.Compiler.Csc;
using Microsoft.DotNet.Tools.Compiler.Native;
using Microsoft.DotNet.Tools.Help;
using Microsoft.DotNet.Tools.New;
using Microsoft.DotNet.Tools.Publish;
using Microsoft.DotNet.Tools.Repl;
using Microsoft.DotNet.Tools.Resgen;
using Microsoft.DotNet.Tools.Restore;
using Microsoft.DotNet.Tools.Run;
2015-10-03 18:34:08 +00:00
namespace Microsoft.DotNet.Cli
{
public class Program
{
public static int Main(string[] args)
{
DebugHelper.HandleDebugSwitch(ref args);
2016-01-06 10:27:16 +00:00
try
{
return new Program().ProcessArgs(args, new Telemetry());
2016-01-06 10:27:16 +00:00
}
catch (CommandUnknownException e)
{
Console.WriteLine(e.Message);
return 1;
}
2016-01-06 10:27:16 +00:00
}
2016-04-05 00:33:09 +00:00
internal int ProcessArgs(string[] args, ITelemetry telemetryClient)
2016-01-06 10:27:16 +00:00
{
2015-11-02 00:21:10 +00:00
// CommandLineApplication is a bit restrictive, so we parse things ourselves here. Individual apps should use CLA.
2016-01-06 10:27:16 +00:00
bool? verbose = null;
2016-01-06 10:27:16 +00:00
var success = true;
2015-11-02 00:21:10 +00:00
var command = string.Empty;
var lastArg = 0;
for (; lastArg < args.Length; lastArg++)
2015-10-08 21:49:39 +00:00
{
2015-11-02 00:21:10 +00:00
if (IsArg(args[lastArg], "v", "verbose"))
2015-10-08 21:49:39 +00:00
{
2015-11-02 00:21:10 +00:00
verbose = true;
}
else if (IsArg(args[lastArg], "version"))
{
PrintVersion();
return 0;
}
else if (IsArg(args[lastArg], "info"))
{
PrintInfo();
return 0;
}
2015-11-17 01:39:03 +00:00
else if (IsArg(args[lastArg], "h", "help"))
{
HelpCommand.PrintHelp();
2015-11-17 01:39:03 +00:00
return 0;
}
2015-11-02 00:21:10 +00:00
else if (args[lastArg].StartsWith("-"))
{
2015-11-17 01:39:03 +00:00
Reporter.Error.WriteLine($"Unknown option: {args[lastArg]}");
success = false;
2015-10-08 21:49:39 +00:00
}
else
{
2015-11-02 00:21:10 +00:00
// It's the command, and we're done!
command = args[lastArg];
break;
2015-10-08 21:49:39 +00:00
}
}
2016-01-06 10:27:16 +00:00
if (!success)
{
HelpCommand.PrintHelp();
2015-11-17 01:39:03 +00:00
return 1;
}
2015-11-02 00:21:10 +00:00
var appArgs = (lastArg + 1) >= args.Length ? Enumerable.Empty<string>() : args.Skip(lastArg + 1).ToArray();
if (verbose.HasValue)
{
Environment.SetEnvironmentVariable(CommandContext.Variables.Verbose, verbose.ToString());
}
if (string.IsNullOrEmpty(command))
2015-10-08 21:49:39 +00:00
{
command = "help";
2015-11-02 00:21:10 +00:00
}
var builtIns = new Dictionary<string, Func<string[], int>>
{
["build"] = BuildCommand.Run,
["compile-csc"] = CompileCscCommand.Run,
["help"] = HelpCommand.Run,
["new"] = NewCommand.Run,
2016-02-01 19:49:25 +00:00
["pack"] = PackCommand.Run,
["projectmodel-server"] = ProjectModelServerCommand.Run,
["publish"] = PublishCommand.Run,
["restore"] = RestoreCommand.Run,
["run"] = RunCommand.Run,
["test"] = TestCommand.Run
};
int exitCode;
Func<string[], int> builtIn;
if (builtIns.TryGetValue(command, out builtIn))
{
2016-03-25 20:15:36 +00:00
exitCode = builtIn(appArgs.ToArray());
}
else
{
CommandResult result = Command.Create("dotnet-" + command, appArgs, FrameworkConstants.CommonFrameworks.NetStandardApp15)
.ForwardStdErr()
.ForwardStdOut()
.Execute();
exitCode = result.ExitCode;
}
telemetryClient.TrackEvent(
2016-03-25 20:15:36 +00:00
command,
null,
2016-03-25 20:15:36 +00:00
new Dictionary<string, double>
{
["ExitCode"] = exitCode
});
return exitCode;
2015-11-02 00:21:10 +00:00
}
private static void PrintVersion()
{
2016-03-25 20:15:36 +00:00
Reporter.Output.WriteLine(Product.Version);
}
private static void PrintInfo()
{
HelpCommand.PrintVersionHeader();
var commitSha = GetCommitSha() ?? "N/A";
Reporter.Output.WriteLine();
Reporter.Output.WriteLine("Product Information:");
2016-03-25 20:15:36 +00:00
Reporter.Output.WriteLine($" Version: {Product.Version}");
Reporter.Output.WriteLine($" Commit Sha: {commitSha}");
Reporter.Output.WriteLine();
var runtimeEnvironment = PlatformServices.Default.Runtime;
Reporter.Output.WriteLine("Runtime Environment:");
Reporter.Output.WriteLine($" OS Name: {runtimeEnvironment.OperatingSystem}");
Reporter.Output.WriteLine($" OS Version: {runtimeEnvironment.OperatingSystemVersion}");
Reporter.Output.WriteLine($" OS Platform: {runtimeEnvironment.OperatingSystemPlatform}");
Reporter.Output.WriteLine($" RID: {runtimeEnvironment.GetRuntimeIdentifier()}");
}
private static bool IsArg(string candidate, string longName)
{
return IsArg(candidate, shortName: null, longName: longName);
2015-10-08 21:49:39 +00:00
}
2015-11-02 00:21:10 +00:00
private static bool IsArg(string candidate, string shortName, string longName)
2015-10-08 21:49:39 +00:00
{
return (shortName != null && candidate.Equals("-" + shortName)) || (longName != null && candidate.Equals("--" + longName));
}
private static string GetCommitSha()
{
var versionFile = DotnetFiles.VersionFile;
if (File.Exists(versionFile))
{
return File.ReadLines(versionFile).FirstOrDefault()?.Substring(0, 10);
}
return null;
}
2015-10-03 18:34:08 +00:00
}
}