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

Modernization #149

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Modernization #149

wants to merge 2 commits into from

Conversation

kingcean
Copy link
Contributor

@kingcean kingcean commented Feb 6, 2025

This PR is a significant change of core library DiffPlex.

  1. Add ReadOnlySpan<char> supports to differ and its accessories. At the same time, update the TFM to enable this feature on the available targets. This type is always used for some high performance scenarios to decrease unnecessary memory costs.
  2. Refactor the builder models to remove the write-accessor of their properties since they are originally designed as data view of result. This breaking change ensures it comes to what to expect now. The incidental changes include updating their constructors to pass parameters instead of properties assignment.
  3. Add full JSON serialization supports of builder models by implementing their bi-converters. But this also mean to add related package references like System.Text.Json for older TFM platforms, e.g. on .NET Frameworks. And please note this feature is disabled on .NET Strandard 1.0 because of not supported.
  4. Suggest increase the major version (to v2.0) and please approach this PR with caution since the modification is wide-ranging. And of course, there is no change of the key logic and the overall mode. Additionally, the WPF components project and Windows App SDK (WinUI 3) components project are updated to adapt the new design.

…ation supports; and (c) models member protection optimization.
@kingcean
Copy link
Contributor Author

kingcean commented Feb 6, 2025

Sounds it can also fix #119 and #128 (but still keep the legacy frameworks).

@mmanela
Copy link
Owner

mmanela commented Feb 16, 2025

I will review soon. Thanks for the contribution

Copy link
Owner

@mmanela mmanela left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I did an initial pass. @kingcean It looks great so far but a few comments

#if !NET_TOO_OLD_VER
public IReadOnlyList<string> Chunk(ReadOnlySpan<char> text)
{
// MemoryExtensions.Split(text, lineSeparators, StringSplitOptions.None);
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is this commented out code for?

@@ -10,8 +10,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.13.12" />
<PackageReference Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.13.12" />
<PackageReference Include="BenchmarkDotNet" />
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kingcean Can you run benchmarks before before and after the changes and add the results to the PR description? I want to see if we have a measurable impact with this change. We may need to make this benchmark more interesting though

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would be also good to use this to analyze what else we can improve.

<AssemblyVersion>1.5.0.0</AssemblyVersion>
<FileVersion>1.5.0.0</FileVersion>
<AssemblyVersion>1.6.0.0</AssemblyVersion>
<FileVersion>1.6.0.0</FileVersion>
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we move all versions to 2.0?

@@ -17,8 +17,11 @@
<NoWarn>$(NoWarn);1591</NoWarn>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard1.0' OR '$(TargetFramework)' == 'net45' OR '$(TargetFramework)' == 'net40' OR '$(TargetFramework)' == 'net35'">
<DefineConstants>NET_TOO_OLD_VER</DefineConstants>
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you update the github actions test run to ensure we test both an older and a newer version? Not sure how hard this is, but would be nice to ensure things functions properly with and without the ifdef being true.

@mmanela
Copy link
Owner

mmanela commented Mar 22, 2025

@kingcean are you still interested in moving this forward?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants