mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-16 09:35:36 -05:00
63 lines
2.1 KiB
C#
63 lines
2.1 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 Microsoft.SqlTools.ServiceLayer.Hosting;
|
|
using Microsoft.SqlTools.ServiceLayer.SqlContext;
|
|
using Microsoft.SqlTools.ServiceLayer.Utility;
|
|
using Microsoft.SqlTools.Utility;
|
|
using System.IO;
|
|
using System.Diagnostics;
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer
|
|
{
|
|
/// <summary>
|
|
/// Main application class for SQL Tools API Service Host executable
|
|
/// </summary>
|
|
internal class Program
|
|
{
|
|
/// <summary>
|
|
/// Main entry point into the SQL Tools API Service Layer
|
|
/// </summary>
|
|
internal static void Main(string[] args)
|
|
{
|
|
try
|
|
{
|
|
// read command-line arguments
|
|
ServiceLayerCommandOptions commandOptions = new ServiceLayerCommandOptions(args);
|
|
if (commandOptions.ShouldExit)
|
|
{
|
|
return;
|
|
}
|
|
|
|
string logFilePath = commandOptions.LogFilePath;
|
|
if (string.IsNullOrWhiteSpace(logFilePath))
|
|
{
|
|
logFilePath = Logger.GenerateLogFilePath("sqltools");
|
|
}
|
|
|
|
Logger.AutoFlush = commandOptions.AutoFlushLog;
|
|
|
|
Logger.Initialize(tracingLevel: commandOptions.TracingLevel, logFilePath: logFilePath, traceSource: "sqltools");
|
|
|
|
// set up the host details and profile paths
|
|
var hostDetails = new HostDetails(version: new Version(1, 0));
|
|
|
|
SqlToolsContext sqlToolsContext = new SqlToolsContext(hostDetails);
|
|
ServiceHost serviceHost = HostLoader.CreateAndStartServiceHost(sqlToolsContext);
|
|
|
|
serviceHost.WaitForExit();
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
Logger.WriteWithCallstack(TraceEventType.Critical, $"An unhandled exception occurred: {e}");
|
|
Environment.Exit(1);
|
|
}
|
|
finally
|
|
{
|
|
Logger.Close();
|
|
}
|
|
}
|
|
}
|
|
}
|