Last active
August 29, 2015 14:02
-
-
Save dsevastianov/46d1a8495c4af46a9875 to your computer and use it in GitHub Desktop.
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
#r @"SampleProvider.dll" | |
type Birch = Sample.Sample<"birch"> | |
type Elm = Sample.Sample<"elm"> | |
let birch = Birch.birch() | |
let elm = Elm.elm() | |
elm.Branches <- ([|Elm.elm()|]) |
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
namespace Sample.Impl | |
open System | |
open System.Collections.Generic | |
open System.IO | |
open System.Reflection | |
open Samples.FSharp.ProvidedTypes | |
open Microsoft.FSharp.Core.CompilerServices | |
open Microsoft.FSharp.Quotations | |
[<assembly:TypeProviderAssembly()>] | |
do() | |
[<TypeProvider>] | |
type JsonSchemaTypeProvider(config: TypeProviderConfig) as this = | |
inherit TypeProviderForNamespaces() | |
let namespaceName = "Sample" | |
let thisAssembly = Assembly.GetExecutingAssembly() | |
let providerType = ProvidedTypeDefinition(thisAssembly, namespaceName, "Sample", Some typeof<obj>, HideObjectMethods = true, IsErased = false) | |
let tempAssembly = ProvidedAssembly( Path.ChangeExtension(Path.GetTempFileName(), ".dll")) | |
do | |
tempAssembly.AddTypes [providerType ] | |
providerType.DefineStaticParameters( parameters = [ ProvidedStaticParameter("treeName", typeof<string>) ], | |
instantiationFunction = (fun typeName args -> | |
let rootType = ProvidedTypeDefinition(thisAssembly, namespaceName, typeName, Some typeof<obj>, HideObjectMethods = true, IsErased = false) | |
let tempAssembly = ProvidedAssembly( Path.ChangeExtension(Path.GetTempFileName(), ".dll")) | |
tempAssembly.AddTypes [ rootType ] | |
rootType.AddMembersDelayed (fun () -> | |
let tree = ProvidedTypeDefinition(unbox args.[0], Some typeof<obj>, IsErased = false) | |
tree.AddMember <| ProvidedConstructor([], InvokeCode = fun _ -> <@@ obj () @@>) | |
let field = ProvidedField("Branches", tree.MakeArrayType()) | |
field.SetFieldAttributes(FieldAttributes.Public) | |
tree.AddMember field | |
tempAssembly.AddTypes [tree] | |
[ tree ] | |
) | |
rootType | |
) | |
) | |
this.AddNamespace(namespaceName, [ providerType ]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment