mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-17 17:23:48 -05:00
66 lines
2.3 KiB
C#
66 lines
2.3 KiB
C#
//
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
using System;
|
|
using System.Diagnostics;
|
|
using Microsoft.SqlTools.Credentials.Utility;
|
|
using Microsoft.SqlTools.Hosting.Utility;
|
|
using Microsoft.SqlTools.ServiceLayer.SqlContext;
|
|
using Microsoft.SqlTools.Utility;
|
|
|
|
namespace Microsoft.SqlTools.Credentials
|
|
{
|
|
/// <summary>
|
|
/// Main application class for Credentials Service Host executable
|
|
/// </summary>
|
|
internal class Program
|
|
{
|
|
private const string ServiceName = "MicrosoftSqlToolsCredentials.exe";
|
|
|
|
/// <summary>
|
|
/// Main entry point into the Credentials Service Host
|
|
/// </summary>
|
|
internal static void Main(string[] args)
|
|
{
|
|
try
|
|
{
|
|
// read command-line arguments
|
|
CommandOptions commandOptions = new CommandOptions(args, ServiceName);
|
|
if (commandOptions.ShouldExit)
|
|
{
|
|
return;
|
|
}
|
|
|
|
string logFilePath = commandOptions.LogFilePath;
|
|
if (string.IsNullOrWhiteSpace(logFilePath))
|
|
{
|
|
logFilePath = Logger.GenerateLogFilePath("credentials");
|
|
}
|
|
|
|
Logger.Initialize(tracingLevel: commandOptions.TracingLevel, logFilePath: logFilePath, traceSource: "credentials", commandOptions.AutoFlushLog);
|
|
|
|
// set up the host details and profile paths
|
|
var hostDetails = new HostDetails(
|
|
name: "SqlTools Credentials Provider",
|
|
profileId: "Microsoft.SqlTools.Credentials",
|
|
version: new Version(1, 0));
|
|
|
|
SqlToolsContext sqlToolsContext = new SqlToolsContext(hostDetails);
|
|
UtilityServiceHost serviceHost = HostLoader.CreateAndStartServiceHost(sqlToolsContext);
|
|
|
|
serviceHost.WaitForExit();
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Logger.WriteWithCallstack(TraceEventType.Critical, $"An unhandled exception occurred: {e}");
|
|
Environment.Exit(1);
|
|
}
|
|
finally
|
|
{
|
|
Logger.Close();
|
|
}
|
|
}
|
|
}
|
|
}
|