将文本字符串解析为F#-code

时间:2012-03-30 14:54:37

标签: .net parsing f#

如何使用文本字符串(应该是F#-code)并将其解析为F#-code,以在屏幕上打印出结果?

我猜它可以通过.NET中的一个功能来解决,所以它可以通过F#本身或C#来完成。

这可能在tryfsharp.org上以什么方式解决?

3 个答案:

答案 0 :(得分:11)

可以使用F# CodeDom provider实现所需。下面的最小可运行代码段演示了所需的步骤。它从字符串中获取任意大概正确的F#代码,并尝试将其编译为汇编文件。如果成功,那么它从dll文件加载这个刚刚合成的程序集,并从那里调用一个已知函数,否则它会显示编译代码的问题。

open System 
open System.CodeDom.Compiler 
open Microsoft.FSharp.Compiler.CodeDom 

// Our (very simple) code string consisting of just one function: unit -> string 
let codeString =
    "module Synthetic.Code\n    let syntheticFunction() = \"I've been compiled on the fly!\""

// Assembly path to keep compiled code
let synthAssemblyPath = "synthetic.dll"

let CompileFSharpCode(codeString, synthAssemblyPath) =
        use provider = new FSharpCodeProvider() 
        let options = CompilerParameters([||], synthAssemblyPath) 
        let result = provider.CompileAssemblyFromSource( options, [|codeString|] ) 
        // If we missed anything, let compiler show us what's the problem
        if result.Errors.Count <> 0 then  
            for i = 0 to result.Errors.Count - 1 do
                printfn "%A" (result.Errors.Item(i).ErrorText)
        result.Errors.Count = 0

if CompileFSharpCode(codeString, synthAssemblyPath) then
    let synthAssembly = Reflection.Assembly.LoadFrom(synthAssemblyPath) 
    let synthMethod  = synthAssembly.GetType("Synthetic.Code").GetMethod("syntheticFunction") 
    printfn "Success: %A" (synthMethod.Invoke(null, null))
else
    failwith "Compilation failed"

激活它会产生预期的输出

Success: "I've been compiled on the fly!"

如果您要使用该代码段,则需要引用FSharp.Compiler.dllFSharp.Compiler.CodeDom.dll。享受!

答案 1 :(得分:4)

  

我猜它可以通过.NET中的一个功能来解决,所以它可以通过F#本身或C#来完成。

不。 F#提供了相对温和的元编程设施。您需要从F#编译器本身中删除相关代码。

答案 2 :(得分:0)

F#有一个解释器fsi.exe可以做你想要的。我认为它也有一些API。