Skip to content

Commit ca98bb1

Browse files
update/cleanup (#37)
Code overhaul and cleanup including Core, Numerics and Cryptography libraries.
1 parent b12ebbe commit ca98bb1

File tree

278 files changed

+8325
-10244
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

278 files changed

+8325
-10244
lines changed

.run/Build & Test.run.xml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<component name="ProjectRunConfigurationManager">
2+
<configuration default="false" name="Build &amp; Test" type="ShConfigurationType">
3+
<option name="SCRIPT_TEXT" value="dotnet build &amp;&amp; dotnet test" />
4+
<option name="INDEPENDENT_SCRIPT_PATH" value="true" />
5+
<option name="SCRIPT_PATH" value="" />
6+
<option name="SCRIPT_OPTIONS" value="" />
7+
<option name="INDEPENDENT_SCRIPT_WORKING_DIRECTORY" value="true" />
8+
<option name="SCRIPT_WORKING_DIRECTORY" value="$PROJECT_DIR$" />
9+
<option name="INDEPENDENT_INTERPRETER_PATH" value="true" />
10+
<option name="INTERPRETER_PATH" value="/bin/zsh" />
11+
<option name="INTERPRETER_OPTIONS" value="" />
12+
<option name="EXECUTE_IN_TERMINAL" value="true" />
13+
<option name="EXECUTE_SCRIPT_FILE" value="false" />
14+
<envs />
15+
<method v="2" />
16+
</configuration>
17+
</component>

.run/Run Playground.run.xml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<component name="ProjectRunConfigurationManager">
2+
<configuration default="false" name="Run Playground" type="DotNetProject" factoryName=".NET Project">
3+
<option name="EXE_PATH" value="$PROJECT_DIR$/OnixLabs.Playground/bin/Debug/net8.0/OnixLabs.Playground" />
4+
<option name="PROGRAM_PARAMETERS" value="" />
5+
<option name="WORKING_DIRECTORY" value="$PROJECT_DIR$/OnixLabs.Playground/bin/Debug/net8.0" />
6+
<option name="PASS_PARENT_ENVS" value="1" />
7+
<option name="USE_EXTERNAL_CONSOLE" value="0" />
8+
<option name="USE_MONO" value="0" />
9+
<option name="RUNTIME_ARGUMENTS" value="" />
10+
<option name="PROJECT_PATH" value="$PROJECT_DIR$/OnixLabs.Playground/OnixLabs.Playground.csproj" />
11+
<option name="PROJECT_EXE_PATH_TRACKING" value="1" />
12+
<option name="PROJECT_ARGUMENTS_TRACKING" value="1" />
13+
<option name="PROJECT_WORKING_DIRECTORY_TRACKING" value="1" />
14+
<option name="PROJECT_KIND" value="DotNetCore" />
15+
<option name="PROJECT_TFM" value="net8.0" />
16+
<method v="2">
17+
<option name="Build" />
18+
</method>
19+
</configuration>
20+
</component>

OnixLabs.Core.UnitTests.Data/Objects/Color.cs OnixLabs.Core.UnitTests.Data/Color.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
// Copyright © 2020 ONIXLabs
2-
//
1+
// Copyright 2020 ONIXLabs
2+
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
55
// You may obtain a copy of the License at
6-
//
6+
//
77
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
8+
//
99
// Unless required by applicable law or agreed to in writing, software
1010
// distributed under the License is distributed on an "AS IS" BASIS,
1111
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
namespace OnixLabs.Core.UnitTests.Data.Objects;
15+
namespace OnixLabs.Core.UnitTests.Data;
1616

1717
public sealed class Color : Enumeration<Color>
1818
{
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © 2020 ONIXLabs
1+
// Copyright 2020 ONIXLabs
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -12,15 +12,12 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
using System;
16-
using System.Text;
15+
namespace OnixLabs.Core.UnitTests.Data;
1716

18-
namespace OnixLabs.Core.Text;
19-
20-
public readonly partial struct Base58
17+
public sealed class Element(int hashCode = 0)
2118
{
22-
/// <summary>
23-
/// Gets an empty <see cref="Base58"/> value.
24-
/// </summary>
25-
public static Base58 Empty => new([]);
19+
public bool Called { get; set; }
20+
private int HashCode { get; } = hashCode;
21+
22+
public override int GetHashCode() => HashCode;
2623
}
+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// Copyright 2020 ONIXLabs
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
using System.Numerics;
16+
17+
namespace OnixLabs.Core.UnitTests.Data;
18+
19+
public sealed class Numeric<T>(T value) : IEquatable<Numeric<T>> where T : INumber<T>
20+
{
21+
public T Value { get; } = value;
22+
23+
public bool Equals(Numeric<T>? other) => other is not null && other.Value == Value;
24+
25+
public override bool Equals(object? obj) => obj is Numeric<T> other && Equals(other);
26+
27+
public override int GetHashCode() => HashCode.Combine(Value);
28+
29+
public override string ToString() => this.ToRecordString();
30+
}

OnixLabs.Core.UnitTests.Data/Objects/Numeric.cs

-47
This file was deleted.

OnixLabs.Core.UnitTests.Data/Objects/RecordLike.cs

-56
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
43
<TargetFramework>net8.0</TargetFramework>
54
<ImplicitUsings>enable</ImplicitUsings>
@@ -9,10 +8,9 @@
98

109
<LangVersion>12</LangVersion>
1110
</PropertyGroup>
12-
1311
<ItemGroup>
14-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
15-
<PackageReference Include="xunit" Version="2.6.4" />
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0"/>
13+
<PackageReference Include="xunit" Version="2.6.4"/>
1614
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
1715
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1816
<PrivateAssets>all</PrivateAssets>
@@ -22,9 +20,10 @@
2220
<PrivateAssets>all</PrivateAssets>
2321
</PackageReference>
2422
</ItemGroup>
25-
2623
<ItemGroup>
27-
<ProjectReference Include="..\OnixLabs.Core\OnixLabs.Core.csproj" />
24+
<ProjectReference Include="..\OnixLabs.Core\OnixLabs.Core.csproj"/>
25+
</ItemGroup>
26+
<ItemGroup>
27+
<Using Include="OnixLabs.Core.Preconditions" Static="True"/>
2828
</ItemGroup>
29-
3029
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright © 2020 ONIXLabs
1+
// Copyright 2020 ONIXLabs
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -12,12 +12,6 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
namespace OnixLabs.Core.Text;
15+
namespace OnixLabs.Core.UnitTests.Data;
1616

17-
public readonly partial struct Base32
18-
{
19-
/// <summary>
20-
/// Gets an empty <see cref="Base32"/> value.
21-
/// </summary>
22-
public static Base32 Empty => new([]);
23-
}
17+
public sealed record Record<T>(string Text, int Number, T Value);

OnixLabs.Core.UnitTests/ArrayExtensionTests.cs

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
// Copyright © 2020 ONIXLabs
2-
//
1+
// Copyright 2020 ONIXLabs
2+
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
55
// You may obtain a copy of the License at
6-
//
6+
//
77
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
8+
//
99
// Unless required by applicable law or agreed to in writing, software
1010
// distributed under the License is distributed on an "AS IS" BASIS,
1111
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -22,39 +22,39 @@ public sealed class ArrayExtensionTests
2222
public void CopyShouldProduceExpectedResult()
2323
{
2424
// Given
25-
int[] array = { 1, 2, 3, 4, 5 };
26-
int[] expected = { 1, 2, 3, 4, 5 };
25+
int[] array = [1, 2, 3, 4, 5];
26+
int[] expected = [1, 2, 3, 4, 5];
2727

2828
// When
2929
int[] actual = array.Copy();
3030

3131
// Then
3232
Assert.Equal(expected, actual);
33-
Assert.True(!ReferenceEquals(array, actual));
33+
Assert.False(ReferenceEquals(array, actual));
3434
}
3535

3636
[Fact(DisplayName = "Array.Copy with index and count parameters should produce a copy of an array")]
3737
public void CopyWithParametersShouldProduceExpectedResult()
3838
{
3939
// Given
40-
int[] array = { 1, 2, 3, 4, 5 };
41-
int[] expected = { 3, 4, 5 };
40+
int[] array = [1, 2, 3, 4, 5];
41+
int[] expected = [3, 4, 5];
4242

4343
// When
4444
int[] actual = array.Copy(2, 3);
4545

4646
// Then
4747
Assert.Equal(expected, actual);
48-
Assert.True(!ReferenceEquals(array, actual));
48+
Assert.False(ReferenceEquals(array, actual));
4949
}
5050

5151
[Fact(DisplayName = "Array.ConcatenateWith should produce a concatenation of two arrays")]
5252
public void ConcatenateWithShouldProduceExpectedResult()
5353
{
5454
// Given
55-
int[] left = { 1, 2, 3, 4, 5 };
56-
int[] right = { 6, 7, 8, 9, 10 };
57-
int[] expected = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
55+
int[] left = [1, 2, 3, 4, 5];
56+
int[] right = [6, 7, 8, 9, 10];
57+
int[] expected = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
5858

5959
// When
6060
int[] actual = left.ConcatenateWith(right);

0 commit comments

Comments
 (0)