mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 03:37:59 +01:00
* Moved Logger/Log.cs from Wox.Infrastructure to Wox.Plugin
- Installed Logger dependency in Wox.Plugin: NLog.Extensions.Logging
- Moved file Log.cs from Wox.Infrastructure/Logger/ to Wox.Plugin/Logger
- Moved file Constant.cs from Wox.Infrastructure to Wox.Plugin: This file was moved since Log.cs depends on this class
- Copied Wox.Infrastructure.Helper.NonNull to Wox.Plugin.Constant since Constant.cs depends on this method
- Replaced all "using Wox.Infrastructure.Logger" to "using Wox.Plugin.Logger" in all files as needed
- Replaced Wox.Infrastructure.Constant to Wox.Plugin.Constant in all files as needed
* Removed Nlog.Extensions.Logging from Wox.Infrastructure
* Added logging and suppressed general exceptions (CA1031: Do not catch general exception types)
* Resolved fxcop errors introduced by newly added Log.cs
- CA1307: Specify StringComparison for clarity
- CA2000: Dispose objects before losing scope
- CA1062: Validate arguments of public methods
* Replaced Wox.Infrastructure.Logger with Wox.Plugin.Logger
115 lines
3.4 KiB
C#
115 lines
3.4 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.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using Wox.Plugin;
|
|
using Wox.Plugin.Logger;
|
|
|
|
namespace Microsoft.Plugin.Calculator
|
|
{
|
|
public class Main : IPlugin, IPluginI18n, IDisposable
|
|
{
|
|
private static readonly CalculateEngine CalculateEngine = new CalculateEngine();
|
|
|
|
private PluginInitContext Context { get; set; }
|
|
|
|
private string IconPath { get; set; }
|
|
|
|
private bool _disposed;
|
|
|
|
public List<Result> Query(Query query)
|
|
{
|
|
if (query == null)
|
|
{
|
|
throw new ArgumentNullException(paramName: nameof(query));
|
|
}
|
|
|
|
if (!CalculateHelper.InputValid(query.Search))
|
|
{
|
|
return new List<Result>();
|
|
}
|
|
|
|
try
|
|
{
|
|
var result = CalculateEngine.Interpret(query.Search, CultureInfo.CurrentUICulture);
|
|
|
|
// This could happen for some incorrect queries, like pi(2)
|
|
if (result.Equals(default(CalculateResult)))
|
|
{
|
|
return new List<Result>();
|
|
}
|
|
|
|
return new List<Result>
|
|
{
|
|
ResultHelper.CreateResult(result.RoundedResult, IconPath),
|
|
};
|
|
} // We want to keep the process alive if any the mages library throws any exceptions.
|
|
#pragma warning disable CA1031 // Do not catch general exception types
|
|
catch (Exception e)
|
|
#pragma warning restore CA1031 // Do not catch general exception types
|
|
{
|
|
Log.Exception("Exception when query for <{query}>", e, GetType());
|
|
}
|
|
|
|
return new List<Result>();
|
|
}
|
|
|
|
public void Init(PluginInitContext context)
|
|
{
|
|
Context = context ?? throw new ArgumentNullException(paramName: nameof(context));
|
|
|
|
Context.API.ThemeChanged += OnThemeChanged;
|
|
UpdateIconPath(Context.API.GetCurrentTheme());
|
|
}
|
|
|
|
// Todo : Update with theme based IconPath
|
|
private void UpdateIconPath(Theme theme)
|
|
{
|
|
if (theme == Theme.Light || theme == Theme.HighContrastWhite)
|
|
{
|
|
IconPath = "Images/calculator.light.png";
|
|
}
|
|
else
|
|
{
|
|
IconPath = "Images/calculator.dark.png";
|
|
}
|
|
}
|
|
|
|
private void OnThemeChanged(Theme currentTheme, Theme newTheme)
|
|
{
|
|
UpdateIconPath(newTheme);
|
|
}
|
|
|
|
public string GetTranslatedPluginTitle()
|
|
{
|
|
return Properties.Resources.wox_plugin_calculator_plugin_name;
|
|
}
|
|
|
|
public string GetTranslatedPluginDescription()
|
|
{
|
|
return Properties.Resources.wox_plugin_calculator_plugin_description;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Dispose(disposing: true);
|
|
GC.SuppressFinalize(this);
|
|
}
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
{
|
|
if (!_disposed)
|
|
{
|
|
if (disposing)
|
|
{
|
|
Context.API.ThemeChanged -= OnThemeChanged;
|
|
_disposed = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|