-
Notifications
You must be signed in to change notification settings - Fork 97
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
Switch custom primitive types to a marker interface #1682
Merged
exyi
merged 2 commits into
feature/custom-primitive-types
from
feature/custom-primitive-types-interface
Aug 2, 2023
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
namespace DotVVM.Framework.ViewModel; | ||
|
||
/// <summary> | ||
/// Marker interface instructing DotVVM to treat the type as a primitive type. | ||
/// The type is required to have a static TryParse(string, [IFormatProvider,] out T) method and expected to implement ToString() method which is compatible with the TryParse method. | ||
/// Primitive types are then serialized as string in client-side view models. | ||
/// </summary> | ||
public interface IDotvvmPrimitiveType { } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ | |
using DotVVM.Framework.Compilation; | ||
using DotVVM.Framework.Routing; | ||
using DotVVM.Framework.ViewModel; | ||
using System.Diagnostics; | ||
|
||
namespace DotVVM.Framework.Utils | ||
{ | ||
|
@@ -307,7 +308,7 @@ public record TypeConvertException(object Value, Type Type, Exception InnerExcep | |
typeof (decimal) | ||
}; | ||
// mapping of server-side types to their client-side representation | ||
private static readonly ConcurrentDictionary<Type, CustomPrimitiveTypeRegistration?> CustomPrimitiveTypes = new(); | ||
private static readonly ConcurrentDictionary<Type, CustomPrimitiveTypeRegistration> CustomPrimitiveTypes = new(); | ||
|
||
public static IEnumerable<Type> GetNumericTypes() | ||
{ | ||
|
@@ -374,31 +375,30 @@ public static bool IsDotvvmNativePrimitiveType(Type type) | |
/// <summary> Returns true if the type is a custom primitive type.</summary> | ||
public static bool IsCustomPrimitiveType(Type type) | ||
{ | ||
return TryGetCustomPrimitiveTypeRegistration(type) is { }; | ||
return typeof(IDotvvmPrimitiveType).IsAssignableFrom(type); | ||
} | ||
|
||
/// <summary>Returns a custom primitive type registration for the given type, or null if the type is not a custom primitive type.</summary> | ||
public static CustomPrimitiveTypeRegistration? TryGetCustomPrimitiveTypeRegistration(Type type) | ||
{ | ||
return CustomPrimitiveTypes.GetOrAdd(type, TryDiscoverCustomPrimitiveType); | ||
if (IsCustomPrimitiveType(type)) | ||
return CustomPrimitiveTypes.GetOrAdd(type, TryDiscoverCustomPrimitiveType); | ||
else | ||
return null; | ||
} | ||
|
||
/// <summary> Returns true the type is serialized as a JavaScript primitive (not object nor array) </summary> | ||
public static bool IsPrimitiveType(Type type) | ||
{ | ||
return PrimitiveTypes.Contains(type) | ||
|| (IsNullableType(type) && IsDotvvmNativePrimitiveType(type.UnwrapNullableType())) | ||
|| (IsNullableType(type) && IsPrimitiveType(type.UnwrapNullableType())) | ||
|| type.IsEnum | ||
|| TryGetCustomPrimitiveTypeRegistration(type) is {}; | ||
|| IsCustomPrimitiveType(type); | ||
} | ||
|
||
private static CustomPrimitiveTypeRegistration? TryDiscoverCustomPrimitiveType(Type type) | ||
private static CustomPrimitiveTypeRegistration TryDiscoverCustomPrimitiveType(Type type) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove Try from the name since the method can crash |
||
{ | ||
var attribute = type.GetCustomAttribute<CustomPrimitiveTypeAttribute>(); | ||
if (attribute == null) | ||
{ | ||
return null; | ||
} | ||
Debug.Assert(typeof(IDotvvmPrimitiveType).IsAssignableFrom(type)); | ||
return new CustomPrimitiveTypeRegistration(type); | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove the class completely