|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Imports System.IO |
|
|
Imports System.Threading |
|
|
Imports System.Threading.Tasks |
|
|
Imports DWSIM |
|
|
Imports System.Reflection |
|
|
Imports System.Runtime.Serialization.Formatters.Binary |
|
|
|
|
|
Module TCPServer |
|
|
|
|
|
Private server As TcpComm.Server |
|
|
Private lat As TcpComm.Utilities.LargeArrayTransferHelper |
|
|
|
|
|
Private solutions As Dictionary(Of String, Byte()) |
|
|
|
|
|
Dim ts As CancellationTokenSource |
|
|
|
|
|
Sub Main() |
|
|
|
|
|
solutions = New Dictionary(Of String, Byte()) |
|
|
|
|
|
Console.WriteLine() |
|
|
Console.WriteLine("DWSIM - Open Source Process Simulator") |
|
|
Console.WriteLine("Network TCP/IP Solver Server") |
|
|
Console.WriteLine(My.Application.Info.Copyright) |
|
|
Dim dt As DateTime = CType("01/01/2000", DateTime).AddDays(My.Application.Info.Version.Build).AddSeconds(My.Application.Info.Version.Revision * 2) |
|
|
Console.WriteLine("Version " & My.Application.Info.Version.Major & "." & My.Application.Info.Version.Minor & _ |
|
|
", Build " & My.Application.Info.Version.Build & " (" & Format(dt, "dd/MM/yyyy HH:mm") & ")") |
|
|
If Type.GetType("Mono.Runtime") Is Nothing Then |
|
|
Console.WriteLine("Microsoft .NET Framework Runtime Version " & System.Runtime.InteropServices.RuntimeEnvironment.GetSystemVersion.ToString()) |
|
|
Else |
|
|
Dim displayName As MethodInfo = Type.GetType("Mono.Runtime").GetMethod("GetDisplayName", BindingFlags.NonPublic Or BindingFlags.[Static]) |
|
|
If displayName IsNot Nothing Then |
|
|
Console.WriteLine("Mono " + displayName.Invoke(Nothing, Nothing) + " / " + System.Runtime.InteropServices.RuntimeEnvironment.GetSystemVersion.ToString()) |
|
|
Else |
|
|
Console.WriteLine(System.Runtime.InteropServices.RuntimeEnvironment.GetSystemVersion.ToString()) |
|
|
End If |
|
|
End If |
|
|
Console.WriteLine() |
|
|
|
|
|
server = New TcpComm.Server(AddressOf Process) |
|
|
lat = New TcpComm.Utilities.LargeArrayTransferHelper(server) |
|
|
|
|
|
Dim port As Integer |
|
|
|
|
|
If My.Application.CommandLineArgs.Count > 0 Then |
|
|
port = My.Application.CommandLineArgs(0) |
|
|
Else |
|
|
Console.Write("Please enter the TCP Port Number to listen to: ") |
|
|
port = Console.ReadLine() |
|
|
End If |
|
|
|
|
|
server.Start(port) |
|
|
|
|
|
Console.WriteLine("[" & Date.Now.ToString & "] " & "Server IP Addresses:") |
|
|
For Each adr In System.Net.Dns.GetHostEntry(System.Net.Dns.GetHostName()).AddressList() |
|
|
Console.WriteLine(adr.ToString) |
|
|
Next |
|
|
Console.WriteLine() |
|
|
Console.WriteLine("[" & Date.Now.ToString & "] " & "Server is running and listening to incoming data on port " & port & "...") |
|
|
|
|
|
Dim icounter As Integer = 100 |
|
|
|
|
|
While server.IsRunning |
|
|
|
|
|
Threading.Thread.Sleep(1000) |
|
|
|
|
|
icounter += 1 |
|
|
|
|
|
If Math.IEEERemainder(icounter, 100) = 0 Then |
|
|
|
|
|
Dim binFormatter = New BinaryFormatter() |
|
|
Dim mStream = New MemoryStream() |
|
|
binFormatter.Serialize(mStream, solutions) |
|
|
|
|
|
If mStream.Length > 100 * 1024 * 1024 Then |
|
|
solutions.Clear() |
|
|
End If |
|
|
|
|
|
End If |
|
|
|
|
|
End While |
|
|
|
|
|
End Sub |
|
|
|
|
|
Public Sub Process(ByVal bytes() As Byte, ByVal sessionID As Int32, ByVal dataChannel As Byte) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
If lat.HandleIncomingBytes(bytes, 100, sessionID) Then Return |
|
|
|
|
|
If ts Is Nothing Then ts = New CancellationTokenSource |
|
|
|
|
|
If dataChannel = 100 Then |
|
|
|
|
|
Dim ct As CancellationToken = ts.Token |
|
|
|
|
|
Dim errmsg As String = "" |
|
|
|
|
|
Console.WriteLine("[" & Date.Now.ToString & "] " & "Data received from " & server.GetSession(sessionID).machineId & ", flowsheet solving started!") |
|
|
If Not server.SendText("Data received from " & server.GetSession(sessionID).machineId & ", flowsheet solving started!", 2, sessionID, errmsg) Then |
|
|
Console.WriteLine(errmsg) |
|
|
End If |
|
|
|
|
|
Task.Factory.StartNew(Sub() |
|
|
ProcessData(bytes, sessionID, dataChannel) |
|
|
End Sub, ct, TaskCreationOptions.LongRunning).ContinueWith(Sub(t) |
|
|
If Not t.Exception Is Nothing Then |
|
|
Console.WriteLine("[" & Date.Now.ToString & "] " & "Error solving flowsheet: " & t.Exception.ToString) |
|
|
errmsg = "" |
|
|
If Not server.SendText("Error solving flowsheet: " & t.Exception.ToString, 3, sessionID, errmsg) Then |
|
|
Console.WriteLine(errmsg) |
|
|
End If |
|
|
ElseIf t.IsCanceled Then |
|
|
Console.WriteLine("[" & Date.Now.ToString & "] " & "Calculation aborted.") |
|
|
errmsg = "" |
|
|
If Not server.SendText("Calculation aborted.", 2, sessionID, errmsg) Then |
|
|
Console.WriteLine(errmsg) |
|
|
End If |
|
|
End If |
|
|
End Sub, |
|
|
TaskContinuationOptions.OnlyOnFaulted).ContinueWith(Sub() |
|
|
Console.WriteLine("[" & Date.Now.ToString & "] " & "Closing current session with " & server.GetSession(sessionID).machineId & ".") |
|
|
errmsg = "" |
|
|
If Not server.SendText("Closing current session with " & server.GetSession(sessionID).machineId & ".", 2, sessionID, errmsg) Then |
|
|
Console.WriteLine(errmsg) |
|
|
End If |
|
|
ts.Dispose() |
|
|
ts = Nothing |
|
|
server.GetSession(sessionID).Close() |
|
|
End Sub) |
|
|
|
|
|
ElseIf dataChannel = 3 Then |
|
|
|
|
|
If Not ts Is Nothing Then ts.Cancel() |
|
|
|
|
|
ElseIf dataChannel = 255 Then |
|
|
|
|
|
Dim tmp = "" |
|
|
Dim msg As String = TcpComm.Utilities.BytesToString(bytes) |
|
|
|
|
|
If msg.Length > 3 Then tmp = msg.Substring(0, 3) |
|
|
If tmp = "UBS" Then |
|
|
|
|
|
End If |
|
|
|
|
|
End If |
|
|
|
|
|
End Sub |
|
|
|
|
|
Sub ProcessData(bytes As Byte(), sessionid As Integer, datachannel As Byte) |
|
|
Dim errmsg As String = "" |
|
|
Using bytestream As New MemoryStream(bytes) |
|
|
Using form As FormFlowsheet = DWSIM.UnitOperations.UnitOperations.Flowsheet.InitializeFlowsheet(bytestream, New FormFlowsheet) |
|
|
If Not solutions.ContainsKey(form.Options.Key) Then |
|
|
DWSIM.FlowsheetSolver.FlowsheetSolver.SolveFlowsheet(form, 1, ts) |
|
|
Dim retbytes As MemoryStream = DWSIM.UnitOperations.UnitOperations.Flowsheet.ReturnProcessData(form) |
|
|
Using retbytes |
|
|
Dim uncompressedbytes As Byte() = retbytes.ToArray |
|
|
Using compressedstream As New MemoryStream() |
|
|
Using gzs As New BufferedStream(New Compression.GZipStream(compressedstream, Compression.CompressionMode.Compress, True), 64 * 1024) |
|
|
gzs.Write(uncompressedbytes, 0, uncompressedbytes.Length) |
|
|
gzs.Close() |
|
|
solutions.Add(form.Options.Key, compressedstream.ToArray) |
|
|
End Using |
|
|
End Using |
|
|
End Using |
|
|
End If |
|
|
lat.SendArray(solutions(form.Options.Key), 100, sessionid, errmsg) |
|
|
Console.WriteLine("[" & Date.Now.ToString & "] " & "Byte array length: " & solutions(form.Options.Key).Length) |
|
|
End Using |
|
|
End Using |
|
|
End Sub |
|
|
|
|
|
|
|
|
End Module |
|
|
|