-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrproc.pas
173 lines (140 loc) · 3.92 KB
/
rproc.pas
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
// **
// * Census 2, a NONMEM project manager
// *
// * Copyright 2017, Justin J Wilkins.
// *
// * This is free software; you can redistribute it and/or modify it
// * under the terms of the GNU Lesser General Public License as
// * published by the Free Software Foundation; either version 2.1 of
// * the License, or (at your option) any later version.
// *
// * This software 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
// * Lesser General Public License for more details.
// *
// * You should have received a copy of the GNU Lesser General Public
// * License along with this software; if not, write to the Free
// * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
// * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
// */
unit rproc;
{$mode delphi}
interface
uses
Classes, SysUtils, FileUtil, SynMemo, Forms, Controls, Graphics, Dialogs,
StdCtrls, ExtCtrls, Process, IniFiles;
type
{ TfrmRProc }
TfrmRProc = class(TForm)
Button2: TButton;
memR: TSynMemo;
timIdle: TIdleTimer;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure Button3Click(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure timIdleTimer(Sender: TObject);
procedure RSend(strCmd: string);
private
{ private declarations }
public
{ public declarations }
end;
const
READ_BYTES = 2048;
var
frmRProc: TfrmRProc;
rProcess: TProcess;
rCommand: String;
rOutput: TStringList;
rStream: TMemoryStream;
NumBytes: LongInt;
BytesRead: LongInt;
implementation
{$R *.lfm}
{ TfrmRProc }
procedure TfrmRProc.Button1Click(Sender: TObject);
begin
end;
procedure TfrmRProc.Button2Click(Sender: TObject);
begin
rProcess.Free;
Close;
end;
procedure TfrmRProc.RSend(strCmd: string);
var
InputStrings: string;
begin
if rProcess.Running then
begin
InputStrings := strCmd + #10;
rProcess.Input.Write(InputStrings[1], length(InputStrings));
end;
end;
procedure TfrmRProc.Button3Click(Sender: TObject);
begin
RSend('setwd()');
end;
procedure TfrmRProc.FormCreate(Sender: TObject);
var
cfgFile: string;
iniOpts: TIniFile;
begin
cfgFile := GetAppConfigFile(False);
iniOpts := TIniFile.Create(cfgFile, True);
rStream := TMemoryStream.Create;
BytesRead := 0;
rProcess := TProcess.Create(nil);
rCommand:='invalid command, please fix the IFDEFS.';
{$IFDEF Windows}
rCommand:='cmd.exe /c "dir /s c:\windows\"';
{$ENDIF Windows}
{$IFDEF Unix}
rCommand := iniOpts.ReadString('ProgramPaths','R','');
{$ENDIF Unix}
iniOpts.Free;
memR.Lines.Add('-- Going to run: ' + rCommand);
rProcess.Executable := rCommand;
rprocess.Parameters.Add('--no-save');
rProcess.Options := [poUsePipes];
memR.Lines.Add('-- External program run started');
//rProcess.Active := True;
rProcess.Execute;
timIdle.Enabled := True;
RSend('library(xpose4)');
RSend('library(ggplot2)');
end;
procedure TfrmRProc.timIdleTimer(Sender: TObject);
var
NoMoreOutput: boolean;
procedure DoStuffForProcess(Process: TProcess;
memR: TSynMemo);
var
Buffer: string;
BytesAvailable: DWord;
BytesRead:LongInt;
begin
if rProcess.Running then
begin
BytesAvailable := rProcess.Output.NumBytesAvailable;
BytesRead := 0;
while BytesAvailable>0 do
begin
SetLength(Buffer, BytesAvailable);
BytesRead := rProcess.OutPut.Read(Buffer[1], BytesAvailable);
memR.Text := memR.Text + copy(Buffer,1, BytesRead);
BytesAvailable := rProcess.Output.NumBytesAvailable;
NoMoreOutput := false;
end;
if BytesRead>0 then
memR.SelStart := Length(memR.Text);
end;
end;
begin
repeat
NoMoreOutput := true;
DoStuffForProcess(rProcess, memR);
until noMoreOutput;
end;
end.