-
Notifications
You must be signed in to change notification settings - Fork 74
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
[RFC] Add support for generic IDictionary<string,obj> query inputs - for #472 #475
Open
pkese
wants to merge
4
commits into
fsprojects:dev
Choose a base branch
from
pkese:generic-inputs2
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
8cb230d
Add support for generic IDictionary<string,obj> query inputs
pkese 8c34550
Skip populating Nullable fields with nulls
pkese bed4cc6
Hack around the case where field.ExecuteInput is null
pkese 6adcc75
Executor: allow overriding AsyncExecute
pkese 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 | ||||
---|---|---|---|---|---|---|
|
@@ -105,10 +105,35 @@ let rec internal compileByType | |||||
|
||||||
| InputObject objDef -> | ||||||
let objtype = objDef.Type | ||||||
let ctor = ReflectionHelper.matchConstructor objtype (objDef.Fields |> Array.map (fun x -> x.Name)) | ||||||
let (constructor : obj[] -> obj), (parameterInfos : Reflection.ParameterInfo[]) = | ||||||
if typeof<IDictionary<string,obj>>.IsAssignableFrom(objtype) then | ||||||
let parameterInfos = [| | ||||||
for f in objDef.Fields -> | ||||||
{ new Reflection.ParameterInfo() with | ||||||
member _.Name = f.Name | ||||||
member _.ParameterType = f.TypeDef.Type | ||||||
member _.Attributes = | ||||||
match f.TypeDef with | ||||||
| Nullable _ -> Reflection.ParameterAttributes.Optional | ||||||
| _ -> Reflection.ParameterAttributes.None | ||||||
} | ||||||
|] | ||||||
let constructor (args:obj[]) = | ||||||
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. And format according to the Fantomas settings
Suggested change
|
||||||
let o = Activator.CreateInstance(objtype) | ||||||
let dict = o :?> IDictionary<string, obj> | ||||||
for fld,arg in Seq.zip objDef.Fields args do | ||||||
match arg, fld.TypeDef with | ||||||
| null, Nullable _ -> () // skip populating Nullable fields with nulls | ||||||
pkese marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
| _, _ -> dict.Add(fld.Name, arg) | ||||||
box o | ||||||
constructor, parameterInfos | ||||||
else | ||||||
let ctor = ReflectionHelper.matchConstructor objtype (objDef.Fields |> Array.map (fun x -> x.Name)) | ||||||
ctor.Invoke, ctor.GetParameters() | ||||||
|
||||||
|
||||||
let struct (mapper, nullableMismatchParameters, missingParameters) = | ||||||
ctor.GetParameters () | ||||||
parameterInfos | ||||||
|> Array.fold | ||||||
(fun struct (all : ResizeArray<_>, areNullable : HashSet<_>, missing : HashSet<_>) param -> | ||||||
match | ||||||
|
@@ -180,6 +205,19 @@ let rec internal compileByType | |||||
| None -> | ||||||
Ok | ||||||
<| wrapOptionalNone param.ParameterType field.TypeDef.Type | ||||||
| Some input when isNull (box field.ExecuteInput) -> | ||||||
// hack around the case where field.ExecuteInput is null | ||||||
let rec extract = function | ||||||
| NullValue -> null | ||||||
| IntValue i -> box i | ||||||
| FloatValue f -> box f | ||||||
| BooleanValue b -> box b | ||||||
| StringValue s -> box s | ||||||
| EnumValue e -> box e | ||||||
| ListValue l -> box (l |> List.map extract) | ||||||
| ObjectValue o -> o |> Map.map (fun k v -> extract v) |> box | ||||||
| VariableName v -> failwithf "Todo: extract variable" | ||||||
extract input |> Ok | ||||||
| Some prop -> | ||||||
field.ExecuteInput prop variables | ||||||
|> Result.map (normalizeOptional param.ParameterType) | ||||||
|
@@ -188,7 +226,7 @@ let rec internal compileByType | |||||
|
||||||
let! args = argResults |> splitSeqErrorsList | ||||||
|
||||||
let instance = ctor.Invoke args | ||||||
let instance = constructor args | ||||||
do! | ||||||
objDef.Validator instance | ||||||
|> ValidationResult.mapErrors (fun err -> | ||||||
|
@@ -201,7 +239,6 @@ let rec internal compileByType | |||||
| true, found -> | ||||||
match found with | ||||||
| :? IReadOnlyDictionary<string, obj> as objectFields -> | ||||||
|
||||||
let argResults = | ||||||
mapper | ||||||
|> Seq.map (fun struct (field, param) -> result { | ||||||
|
@@ -217,7 +254,7 @@ let rec internal compileByType | |||||
|
||||||
let! args = argResults |> splitSeqErrorsList | ||||||
|
||||||
let instance = ctor.Invoke args | ||||||
let instance = constructor args | ||||||
do! | ||||||
objDef.Validator instance | ||||||
|> ValidationResult.mapErrors (fun err -> | ||||||
|
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.
I would also check for
IReadOnlyDictionary<string, obj>
andobj
and createImmutableDictionary<string, obj>
in that case