// 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 System.Linq; using UnitsNet; namespace Community.PowerToys.Run.Plugin.UnitConverter { public static class UnitHandler { private static readonly int _roundingFractionalDigits = 4; private static readonly QuantityType[] _included = new QuantityType[] { QuantityType.Acceleration, QuantityType.Angle, QuantityType.Area, QuantityType.Duration, QuantityType.Energy, QuantityType.Information, QuantityType.Length, QuantityType.Mass, QuantityType.Power, QuantityType.Pressure, QuantityType.Speed, QuantityType.Temperature, QuantityType.Volume, }; /// /// Given string representation of unit, converts it to the enum. /// /// Corresponding enum or null. private static Enum GetUnitEnum(string unit, QuantityInfo unitInfo) { UnitInfo first = Array.Find(unitInfo.UnitInfos, info => info.Name.ToLowerInvariant() == unit.ToLowerInvariant()); if (first != null) { return first.Value; } if (UnitParser.Default.TryParse(unit, unitInfo.UnitType, out Enum enum_unit)) { return enum_unit; } return null; } /// /// Given parsed ConvertModel, computes result. (E.g "1 foot in cm"). /// /// The converted value as a double. public static double ConvertInput(ConvertModel convertModel, QuantityType quantityType) { QuantityInfo unitInfo = Quantity.GetInfo(quantityType); var fromUnit = GetUnitEnum(convertModel.FromUnit, unitInfo); var toUnit = GetUnitEnum(convertModel.ToUnit, unitInfo); if (fromUnit != null && toUnit != null) { return UnitsNet.UnitConverter.Convert(convertModel.Value, fromUnit, toUnit); } return double.NaN; } /// /// Given ConvertModel returns collection of possible results. /// /// The converted value as a double. public static IEnumerable Convert(ConvertModel convertModel) { var results = new List(); foreach (QuantityType quantityType in _included) { double convertedValue = UnitHandler.ConvertInput(convertModel, quantityType); if (!double.IsNaN(convertedValue)) { UnitConversionResult result = new UnitConversionResult(Math.Round(convertedValue, _roundingFractionalDigits), convertModel.ToUnit, quantityType); results.Add(result); } } return results; } } }