-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathInstallRscript.vb
More file actions
95 lines (75 loc) · 2.83 KB
/
InstallRscript.vb
File metadata and controls
95 lines (75 loc) · 2.83 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
94
95
#Region "Microsoft.VisualBasic::2e5fc9d2aa574c9aba7871ac8c59aeb5, studio\R-terminal\InstallRscript.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: 42
' Code Lines: 25 (59.52%)
' Comment Lines: 9 (21.43%)
' - Xml Docs: 44.44%
'
' Blank Lines: 8 (19.05%)
' File Size: 1.38 KB
' Module InstallRscript
'
' Function: Install
'
' /********************************************************************************/
#End Region
Imports System.Text
Imports Microsoft.VisualBasic.My
Imports Microsoft.VisualBasic.Text
''' <summary>
''' A helper module for convert the Rscript as execute script file on linux,
''' by wrap a bash script helper
''' </summary>
Module InstallRscript
Const LinuxRoot As String = "/usr/local/bin/"
Public Function Install(rscript As String, installLinuxRoot As Boolean) As Boolean
' XXXX.R -> XXXX
'
' $ # alias of R# XXXX.R in linux bash
' $ XXXX
Dim bash$ = If(installLinuxRoot, LinuxRoot, rscript.ParentPath) & "/" & rscript.BaseName
Dim utf8 As Encoding = Encodings.UTF8WithoutBOM.CodePage
Dim dirHelper As String = UNIX.GetLocationHelper
Dim script As String = dirHelper & vbLf & "
app=""$DIR/{script}""
cli=""$@""
# the R# may in other location that without PATH environment
dotnet ""{rscript}"" ""$app"" $cli" _
.Replace("{script}", rscript.FileName) _
.Replace("{rscript}", $"{App.HOME}/R#.dll")
script = script.LineTokens.JoinBy(vbLf)
If installLinuxRoot Then
' make copy of the script file
Call rscript _
.ReadAllLines _
.FlushAllLines($"{LinuxRoot}/{rscript.FileName}")
End If
Return script.SaveTo(bash, utf8)
End Function
End Module