-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathRunScript.vb
More file actions
93 lines (73 loc) · 2.66 KB
/
RunScript.vb
File metadata and controls
93 lines (73 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#Region "Microsoft.VisualBasic::b87a6557588fb5d93940ec0ab218ff5b, studio\R-terminal\RunScript.vb"
' Author:
'
' asuka (amethyst.asuka@gcmodeller.org)
' xie (genetics@smrucc.org)
' xieguigang (xie.guigang@live.com)
'
' Copyright (c) 2018 GPL3 Licensed
'
'
' GNU GENERAL PUBLIC LICENSE (GPL3)
'
'
' This program is free software: you can redistribute it and/or modify
' it under the terms of the GNU General Public License as published by
' the Free Software Foundation, either version 3 of the License, or
' (at your option) any later version.
'
' This program is distributed in the hope that it will be useful,
' but WITHOUT ANY WARRANTY; without even the implied warranty of
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
' GNU General Public License for more details.
'
' You should have received a copy of the GNU General Public License
' along with this program. If not, see <http://www.gnu.org/licenses/>.
' /********************************************************************************/
' Summaries:
' Code Statistics:
' Total Lines: 40
' Code Lines: 27 (67.50%)
' Comment Lines: 5 (12.50%)
' - Xml Docs: 100.00%
'
' Blank Lines: 8 (20.00%)
' File Size: 1.20 KB
' Class RunScript
'
' Constructor: (+1 Overloads) Sub New
'
' /********************************************************************************/
#End Region
Imports System.Threading
Imports SMRUCC.Rsharp.Interpreter
Imports REnv = SMRUCC.Rsharp.Runtime
Imports RProgram = SMRUCC.Rsharp.Interpreter.Program
Friend Class RunScript
ReadOnly script As String
ReadOnly R As RInterpreter
Sub New(R As RInterpreter, script As String)
Me.R = R
Me.script = script
End Sub
''' <summary>
''' do run script expression and await the evaluation finish
''' </summary>
''' <param name="ct"></param>
''' <returns></returns>
Public Async Function doRunScript(ct As CancellationToken) As Task(Of Integer)
Dim error$ = Nothing
Dim program As RProgram = RProgram.BuildProgram(script, [error]:=[error])
Dim result As Object
Await Task.Delay(1)
If Not [error].StringEmpty Then
result = REnv.Internal.debug.stop([error], R.globalEnvir)
Else
result = REnv.TryCatch(
runScript:=Function() R.SetTaskCancelHook(Rsession.cts).Run(program),
debug:=R.debug
)
End If
Return Rscript.handleResult(result, R.globalEnvir, program)
End Function
End Class