我是F#的新手。我正在尝试使用命名管道与F#中的Java进行通信。下面的代码有效,但我不确定是否有更好的方法来做到这一点(我知道无限循环是一个坏主意,但这只是一个概念证明)如果有人有任何想法改进此代码请发表您的意见
提前致谢 Sudaly
open System.IO
open System.IO.Pipes
exception OuterError of string
let continueLooping = true
while continueLooping do
let pipeServer = new NamedPipeServerStream("testpipe", PipeDirection.InOut, 4)
printfn "[F#] NamedPipeServerStream thread created."
//wait for connection
printfn "[F#] Wait for a client to connect"
pipeServer.WaitForConnection()
printfn "[F#] Client connected."
try
// Stream for the request.
let sr = new StreamReader(pipeServer)
// Stream for the response.
let sw = new StreamWriter(pipeServer)
sw.AutoFlush <- true;
// Read request from the stream.
let echo = sr.ReadLine();
printfn "[F#] Request message: %s" echo
// Write response to the stream.
sw.WriteLine("[F#]: " + echo)
pipeServer.Disconnect()
with
| OuterError(str) -> printfn "[F#]ERROR: %s" str
printfn "[F#] Client Closing."
pipeServer.Close()
答案 0 :(得分:2)
好吧,它看起来不像是OuterError
,所以我会删除那个异常类型和未使用的处理。
我不确定您的经验水平或您正在寻找什么类型的“更好”。您希望阅读F# async on the server以了解有关异步和避免阻塞线程的更多信息。
答案 1 :(得分:2)
您可以在下面找到对代码的一些修改。你的问题非常模糊,所以我无法确切地告诉你希望改进代码的位置,但我的建议是使用递归而不是while循环(不要担心堆栈溢出,F#可以很好地处理递归和整个递归位将在编译时被优化为循环),利用 use 关键字(如C#的使用)并将吞下与客户端通信过程中发生的任何异常。如果发生异常,服务器将不会侦听其他连接。
open System.IO
open System.IO.Pipes
let main() =
printfn "[F#] NamedPipeServerStream thread created."
let pipeServer = new NamedPipeServerStream("testpipe", PipeDirection.InOut, 4)
let rec loop() =
//wait for connection
printfn "[F#] Wait for a client to connect"
pipeServer.WaitForConnection()
printfn "[F#] Client connected."
try
// Stream for the request.
use sr = new StreamReader(pipeServer)
// Stream for the response.
use sw = new StreamWriter(pipeServer, AutoFlush = true)
// Read request from the stream.
let echo = sr.ReadLine();
printfn "[F#] Request message: %s" echo
// Write response to the stream.
echo |> sprintf "[F#]: %s" |> sw.WriteLine
pipeServer.Disconnect()
if [A CONDITION WHICH TELLS YOU THAT YOU WANT ANOTHER CONNECTION FROM THE CLIENT] then loop()
with
| _ as e -> printfn "[F#]ERROR: %s" e.Message
loop()
printfn "[F#] Client Closing."
pipeServer.Close()
另请注意AutoFlush是如何在对构造函数的调用中设置的,以及如何使用管道操作符将回显写入管道,从而产生看起来像(在我看来)更干净的代码。