mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02:00
77 lines
2.0 KiB
C#
77 lines
2.0 KiB
C#
|
|
// Copyright (c) Microsoft Corporation
|
||
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
||
|
|
// See the LICENSE file in the project root for more information.
|
||
|
|
|
||
|
|
namespace Microsoft.CommandPalette.Extensions.Toolkit;
|
||
|
|
|
||
|
|
public partial class ExtensionHost
|
||
|
|
{
|
||
|
|
public static IExtensionHost? Host { get; private set; }
|
||
|
|
|
||
|
|
public static void Initialize(IExtensionHost host) => Host = host;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Fire-and-forget a log message to the Command Palette host app. Since
|
||
|
|
/// the host is in another process, we do this in a try/catch in a
|
||
|
|
/// background thread, as to not block the calling thread, nor explode if
|
||
|
|
/// the host app is gone.
|
||
|
|
/// </summary>
|
||
|
|
/// <param name="message">The log message to send</param>
|
||
|
|
public static void LogMessage(ILogMessage message)
|
||
|
|
{
|
||
|
|
if (Host != null)
|
||
|
|
{
|
||
|
|
_ = Task.Run(async () =>
|
||
|
|
{
|
||
|
|
try
|
||
|
|
{
|
||
|
|
await Host.LogMessage(message);
|
||
|
|
}
|
||
|
|
catch (Exception)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
});
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
public static void LogMessage(string message)
|
||
|
|
{
|
||
|
|
var logMessage = new LogMessage() { Message = message };
|
||
|
|
LogMessage(logMessage);
|
||
|
|
}
|
||
|
|
|
||
|
|
public static void ShowStatus(IStatusMessage message, StatusContext context)
|
||
|
|
{
|
||
|
|
if (Host != null)
|
||
|
|
{
|
||
|
|
_ = Task.Run(async () =>
|
||
|
|
{
|
||
|
|
try
|
||
|
|
{
|
||
|
|
await Host.ShowStatus(message, context);
|
||
|
|
}
|
||
|
|
catch (Exception)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
});
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
public static void HideStatus(IStatusMessage message)
|
||
|
|
{
|
||
|
|
if (Host != null)
|
||
|
|
{
|
||
|
|
_ = Task.Run(async () =>
|
||
|
|
{
|
||
|
|
try
|
||
|
|
{
|
||
|
|
await Host.HideStatus(message);
|
||
|
|
}
|
||
|
|
catch (Exception)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
});
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|