2012-03-30 79 views
11

如何將文本字符串(應該是F#代碼)解析爲F#代碼,將結果顯示在屏幕上?將文本字符串解析爲F#代碼

我猜這將通過.NET中的一個功能來解決,因此可以通過F#本身或C#完成。

以什麼方式可能在tryfsharp.org上解決?

+3

這可能是值得看看這[問題](http://stackoverflow.com/questions/372043/how-can-evaluate-an-expression-stored-as-a-string-in-f) – 2012-03-30 15:19:39

+2

你也可以使用[f#codedom](http://stackoverflow.com/questions/2608114/f-equivalent-to-eval) – 2012-03-30 15:27:21

回答

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的片段播放。請享用!

0

F#有一個解釋器fsi.exe可以做到你想要的。我認爲它也有一些API。

4

我猜這將通過.NET中的一個功能來解決,因此可以通過F#本身或C#完成。

沒有。 F#提供相對溫和的元編程設施。您需要將相關代碼從F#編譯器本身中提取出來。

+0

好吧,那麼我知道有一半是不可能的。那麼.NET框架中的C#部分或什麼? – 2012-03-30 19:38:06

+1

否;框架沒有知道F#存在。這個產品沒有API,儘管所有的源代碼都可用,所以你可以自己構建它。我想從長遠來看,我們希望發佈樣本,說明如何做到這一點,但我們還沒有準備好。 – Brian 2012-03-30 20:32:25