Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change the underlying Value type from Double to Fraction (WIP) #1377

Open
wants to merge 4 commits into
base: release/v6
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions Build/build-pack-nano-nugets.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ function Invoke-BuildNanoNugets {
& $nuget pack "$root\UnitsNet.NanoFramework\GeneratedCode\Mass\UnitsNet.NanoFramework.Mass.nuspec" -Verbosity detailed -OutputDirectory "$nugetOutDir"
& $nuget pack "$root\UnitsNet.NanoFramework\GeneratedCode\MassConcentration\UnitsNet.NanoFramework.MassConcentration.nuspec" -Verbosity detailed -OutputDirectory "$nugetOutDir"
& $nuget pack "$root\UnitsNet.NanoFramework\GeneratedCode\Angle\UnitsNet.NanoFramework.Angle.nuspec" -Verbosity detailed -OutputDirectory "$nugetOutDir"
& $nuget pack "$root\UnitsNet.NanoFramework\GeneratedCode\MagneticField\UnitsNet.NanoFramework.MagneticField.nuspec" -Verbosity detailed -OutputDirectory "$nugetOutDir"
& $nuget pack "$root\UnitsNet.NanoFramework\GeneratedCode\Acceleration\UnitsNet.NanoFramework.Acceleration.nuspec" -Verbosity detailed -OutputDirectory "$nugetOutDir"

}

Expand Down
12 changes: 6 additions & 6 deletions CodeGen/CodeGen.csproj
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<!-- Allow compile with various nullability warnings until fixed. -->
<WarningsNotAsErrors>8600,8601,8603,8604,8618,8619,8625</WarningsNotAsErrors>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="NuGet.Protocol" Version="6.2.4" />
<PackageReference Include="Serilog" Version="2.11.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" />
<PackageReference Include="Fractions" Version="7.4.1" />
<PackageReference Include="NuGet.Protocol" Version="6.9.1" />
<PackageReference Include="Serilog" Version="3.1.1" />
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
<PackageReference Include="System.CommandLine.DragonFruit" Version="0.2.0-alpha.19174.3" />
</ItemGroup>

Expand Down
9 changes: 0 additions & 9 deletions CodeGen/Exceptions/UnitsNetCodeGenException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,11 @@
// Copyright 2013 Andreas Gullberg Larsen ([email protected]). Maintained at https://github.com/angularsen/UnitsNet.

using System;
using System.Runtime.Serialization;

namespace CodeGen.Exceptions
{
internal class UnitsNetCodeGenException : Exception
{
public UnitsNetCodeGenException()
{
}

protected UnitsNetCodeGenException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}

public UnitsNetCodeGenException(string message) : base(message)
{
}
Expand Down
4 changes: 2 additions & 2 deletions CodeGen/Generators/NanoFrameworkGen/NuspecGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ public string Generate()
<package xmlns=""http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"">
<metadata>
<id>UnitsNet.nanoFramework.{_quantity.Name}</id>
<version>6.0.0-pre002</version>
<version>6.0.0-pre006</version>
<title>Units.NET {_quantity.Name} - nanoFramework</title>
<authors>Andreas Gullberg Larsen,nanoframework</authors>
<owners>UnitsNet</owners>
<license type=""expression"">MIT</license>
<license type=""expression"">MIT-0</license>
<projectUrl>https://github.com/angularsen/UnitsNet</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Adds {_quantity.Name} units for Units.NET on .NET nanoFramework. For .NET or .NET Core, use UnitsNet instead.</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static class NumberTo{_quantityName}Extensions
continue;

Writer.WL(2, $@"
/// <inheritdoc cref=""{_quantityName}.From{unit.PluralName}(double)"" />");
/// <inheritdoc cref=""{_quantityName}.From{unit.PluralName}(QuantityValue)"" />");

Writer.WLIfText(2, GetObsoleteAttributeOrNull(unit.ObsoleteText));

Expand Down
141 changes: 75 additions & 66 deletions CodeGen/Generators/UnitsNetGen/QuantityGenerator.cs

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions CodeGen/Generators/UnitsNetGen/StaticQuantityGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public partial class Quantity
/// <param name=""quantityInfo"">The <see cref=""QuantityInfo""/> of the quantity to create.</param>
/// <param name=""value"">The value to construct the quantity with.</param>
/// <returns>The created quantity.</returns>
public static IQuantity FromQuantityInfo(QuantityInfo quantityInfo, double value)
public static IQuantity FromQuantityInfo(QuantityInfo quantityInfo, QuantityValue value)
{
return quantityInfo.Name switch
{");
Expand All @@ -72,7 +72,7 @@ public static IQuantity FromQuantityInfo(QuantityInfo quantityInfo, double value
/// <param name=""unit"">Unit enum value.</param>
/// <param name=""quantity"">The resulting quantity if successful, otherwise <c>default</c>.</param>
/// <returns><c>True</c> if successful with <paramref name=""quantity""/> assigned the value, otherwise <c>false</c>.</returns>
public static bool TryFrom(double value, Enum? unit, [NotNullWhen(true)] out IQuantity? quantity)
public static bool TryFrom(QuantityValue value, Enum? unit, [NotNullWhen(true)] out IQuantity? quantity)
{
quantity = unit switch
{");
Expand Down
22 changes: 10 additions & 12 deletions CodeGen/Generators/UnitsNetGen/UnitTestBaseClassGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public void DefaultCtor_ReturnsQuantityWithZeroValueAndBaseUnit()
Assert.Equal({_baseUnitFullName}, quantity.Unit);
}}

[Fact]
[Fact(Skip = ""https://github.com/danm-de/Fractions/issues/26"")]
public void Ctor_WithInfinityValue_DoNotThrowsArgumentException()
{{
var exception1 = Record.Exception(() => new {_quantity.Name}(double.PositiveInfinity, {_baseUnitFullName}));
Expand All @@ -170,7 +170,7 @@ public void Ctor_WithInfinityValue_DoNotThrowsArgumentException()
Assert.Null(exception2);
}}

[Fact]
[Fact(Skip = ""https://github.com/danm-de/Fractions/issues/26"")]
public void Ctor_WithNaNValue_DoNotThrowsArgumentException()
{{
var exception = Record.Exception(() => new {_quantity.Name}(double.NaN, {_baseUnitFullName}));
Expand Down Expand Up @@ -240,7 +240,7 @@ public void From_ValueAndUnit_ReturnsQuantityWithSameValueAndUnit()
Writer.WL($@"
}}

[Fact]
[Fact(Skip = ""https://github.com/danm-de/Fractions/issues/26"")]
public void From{_baseUnit.PluralName}_WithInfinityValue_DoNotThrowsArgumentException()
{{
var exception1 = Record.Exception(() => {_quantity.Name}.From{_baseUnit.PluralName}(double.PositiveInfinity));
Expand All @@ -250,7 +250,7 @@ public void From_ValueAndUnit_ReturnsQuantityWithSameValueAndUnit()
Assert.Null(exception2);
}}

[Fact]
[Fact(Skip = ""https://github.com/danm-de/Fractions/issues/26"")]
public void From{_baseUnit.PluralName}_WithNanValue_DoNotThrowsArgumentException()
{{
var exception = Record.Exception(() => {_quantity.Name}.From{_baseUnit.PluralName}(double.NaN));
Expand Down Expand Up @@ -501,13 +501,6 @@ public void CompareToThrowsOnNull()
[Theory]
[InlineData(1, {_baseUnitFullName}, 1, {_baseUnitFullName}, true)] // Same value and unit.
[InlineData(1, {_baseUnitFullName}, 2, {_baseUnitFullName}, false)] // Different value.
[InlineData(2, {_baseUnitFullName}, 1, {_otherOrBaseUnitFullName}, false)] // Different value and unit.");
if (_baseUnit != _otherOrBaseUnit)
{
Writer.WL($@"
[InlineData(1, {_baseUnitFullName}, 1, {_otherOrBaseUnitFullName}, false)] // Different unit.");
}
Writer.WL($@"
public void Equals_ReturnsTrue_IfValueAndUnitAreEqual(double valueA, {_unitEnumName} unitA, double valueB, {_unitEnumName} unitB, bool expectEqual)
{{
var a = new {_quantity.Name}(valueA, unitA);
Expand Down Expand Up @@ -816,7 +809,12 @@ public void Convert_ChangeType_InvalidType_ThrowsInvalidCastException()
public void GetHashCode_Equals()
{{
var quantity = {_quantity.Name}.From{_baseUnit.PluralName}(1.0);
Assert.Equal(new {{{_quantity.Name}.Info.Name, quantity.Value, quantity.Unit}}.GetHashCode(), quantity.GetHashCode());
#if NET7_0_OR_GREATER
var expected = HashCode.Combine({_quantity.Name}.Info.Name, quantity.{_baseUnit.PluralName});
#else
var expected = new {{{_quantity.Name}.Info.Name, valueInBaseUnit = quantity.{_baseUnit.PluralName}}}.GetHashCode();
#endif
Assert.Equal(expected, quantity.GetHashCode());
}}
");

Expand Down
14 changes: 14 additions & 0 deletions CodeGen/Helpers/ExpressionAnalyzer/ExpressionEvaluationTerm.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using Fractions;

namespace CodeGen.Helpers.ExpressionAnalyzer;

/// <summary>
/// A term of the form "P^n" where P is a term that hasn't been parsed, raised to the given power.
/// </summary>
/// <param name="Expression">The actual expression to parse</param>
/// <param name="Exponent">The exponent to use on the parsed expression (default is 1)</param>
/// <remarks>
/// Since we're tokenizing the expressions from top to bottom, the first step is parsing the exponent of the
/// expression: e.g. Math.Pow(P, 2)
/// </remarks>
public record ExpressionEvaluationTerm(string Expression, Fraction Exponent);
Loading