]> git.saurik.com Git - wxWidgets.git/blame - samples/exec/exec.cpp
documented SelectAll()
[wxWidgets.git] / samples / exec / exec.cpp
CommitLineData
69c33c6c
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: exec.cpp
3// Purpose: exec sample demonstrates wxExecute and related functions
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 15.01.00
7// RCS-ID: $Id$
8// Copyright: (c) Vadim Zeitlin
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
69c33c6c
VZ
20// For compilers that support precompilation, includes "wx/wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
24 #pragma hdrstop
25#endif
26
27// for all others, include the necessary headers (this file is usually all you
be5a51fb 28// need because it includes almost all "standard" wxWidgets headers
69c33c6c
VZ
29#ifndef WX_PRECOMP
30 #include "wx/app.h"
788233da 31 #include "wx/log.h"
69c33c6c 32 #include "wx/frame.h"
92a2a7eb
VZ
33 #include "wx/panel.h"
34
35 #include "wx/timer.h"
eb671557 36
69c33c6c 37 #include "wx/utils.h"
a8f0faf3 38 #include "wx/menu.h"
eb671557 39
a8f0faf3
GRG
40 #include "wx/msgdlg.h"
41 #include "wx/textdlg.h"
8ce88dfa 42 #include "wx/filedlg.h"
50567b69 43 #include "wx/choicdlg.h"
eb671557
VZ
44
45 #include "wx/button.h"
46 #include "wx/textctrl.h"
47 #include "wx/listbox.h"
48
49 #include "wx/sizer.h"
69c33c6c
VZ
50#endif
51
d8e41d42 52#include "wx/txtstrm.h"
e4f3eb42 53#include "wx/numdlg.h"
ba59de5d 54#include "wx/textdlg.h"
1a278e7b 55#include "wx/ffile.h"
d8e41d42 56
69c33c6c
VZ
57#include "wx/process.h"
58
6ba63600
VZ
59#include "wx/mimetype.h"
60
d93c719a
VZ
61#ifdef __WINDOWS__
62 #include "wx/dde.h"
63#endif // __WINDOWS__
64
69c33c6c 65// ----------------------------------------------------------------------------
eb671557 66// the usual application and main frame classes
69c33c6c
VZ
67// ----------------------------------------------------------------------------
68
69// Define a new application type, each program should derive a class from wxApp
70class MyApp : public wxApp
71{
72public:
73 // override base class virtuals
74 // ----------------------------
75
76 // this one is called on application startup and is a good place for the app
77 // initialization (doing it here and not in the ctor allows to have an error
78 // return: if OnInit() returns false, the application terminates)
79 virtual bool OnInit();
80};
81
cd6ce4a9
VZ
82// Define an array of process pointers used by MyFrame
83class MyPipedProcess;
5a8561fc
VZ
84WX_DEFINE_ARRAY_PTR(MyPipedProcess *, MyPipedProcessesArray);
85
86class MyProcess;
87WX_DEFINE_ARRAY_PTR(MyProcess *, MyProcessesArray);
cd6ce4a9 88
69c33c6c
VZ
89// Define a new frame type: this is going to be our main frame
90class MyFrame : public wxFrame
91{
92public:
5a8561fc 93 // ctor and dtor
69c33c6c 94 MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size);
5a8561fc 95 virtual ~MyFrame();
69c33c6c
VZ
96
97 // event handlers (these functions should _not_ be virtual)
98 void OnQuit(wxCommandEvent& event);
99
50567b69
VZ
100 void OnKill(wxCommandEvent& event);
101
d8e41d42
VZ
102 void OnClear(wxCommandEvent& event);
103
c6f9dfe8
VZ
104 void OnBeginBusyCursor(wxCommandEvent& event);
105 void OnEndBusyCursor(wxCommandEvent& event);
106
69c33c6c 107 void OnSyncExec(wxCommandEvent& event);
9b6b9e0c 108 void OnSyncNoEventsExec(wxCommandEvent& event);
69c33c6c
VZ
109 void OnAsyncExec(wxCommandEvent& event);
110 void OnShell(wxCommandEvent& event);
d8e41d42 111 void OnExecWithRedirect(wxCommandEvent& event);
f6bcfd97
BP
112 void OnExecWithPipe(wxCommandEvent& event);
113
eb671557
VZ
114 void OnPOpen(wxCommandEvent& event);
115
6ba63600 116 void OnFileExec(wxCommandEvent& event);
ba59de5d 117 void OnOpenURL(wxCommandEvent& event);
6ba63600 118
69c33c6c
VZ
119 void OnAbout(wxCommandEvent& event);
120
cd6ce4a9 121 // polling output of async processes
92a2a7eb 122 void OnTimer(wxTimerEvent& event);
cd6ce4a9
VZ
123 void OnIdle(wxIdleEvent& event);
124
d8e41d42 125 // for MyPipedProcess
f6bcfd97 126 void OnProcessTerminated(MyPipedProcess *process);
d8e41d42
VZ
127 wxListBox *GetLogListBox() const { return m_lbox; }
128
5a8561fc
VZ
129 // for MyProcess
130 void OnAsyncTermination(MyProcess *process);
131
69c33c6c 132private:
f6bcfd97
BP
133 void ShowOutput(const wxString& cmd,
134 const wxArrayString& output,
135 const wxString& title);
136
6ba63600
VZ
137 void DoAsyncExec(const wxString& cmd);
138
5a8561fc 139 void AddAsyncProcess(MyProcess *process) { m_allAsync.push_back(process); }
92a2a7eb 140
5a8561fc
VZ
141 void AddPipedProcess(MyPipedProcess *process);
142 void RemovePipedProcess(MyPipedProcess *process);
92a2a7eb 143
92a2a7eb 144
50567b69 145 // the PID of the last process we launched asynchronously
aec18ff7 146 long m_pidLast;
50567b69 147
ca289436 148 // last command we executed
69c33c6c
VZ
149 wxString m_cmdLast;
150
ca289436
VZ
151#ifdef __WINDOWS__
152 void OnDDEExec(wxCommandEvent& event);
153 void OnDDERequest(wxCommandEvent& event);
154
155 bool GetDDEServer();
156
157 // last params of a DDE transaction
158 wxString m_server,
159 m_topic,
160 m_cmdDde;
161#endif // __WINDOWS__
162
d8e41d42
VZ
163 wxListBox *m_lbox;
164
5a8561fc
VZ
165 // array of running processes with redirected IO
166 MyPipedProcessesArray m_running;
167
168 // array of all asynchrously running processes
169 MyProcessesArray m_allAsync;
cd6ce4a9 170
92a2a7eb
VZ
171 // the idle event wake up timer
172 wxTimer m_timerIdleWakeUp;
173
be5a51fb 174 // any class wishing to process wxWidgets events must use this macro
69c33c6c
VZ
175 DECLARE_EVENT_TABLE()
176};
177
eb671557
VZ
178// ----------------------------------------------------------------------------
179// MyPipeFrame: allows the user to communicate with the child process
180// ----------------------------------------------------------------------------
181
182class MyPipeFrame : public wxFrame
183{
184public:
185 MyPipeFrame(wxFrame *parent,
186 const wxString& cmd,
187 wxProcess *process);
188
189protected:
a0b08655
VZ
190 void OnTextEnter(wxCommandEvent& WXUNUSED(event)) { DoSend(); }
191 void OnBtnSend(wxCommandEvent& WXUNUSED(event)) { DoSend(); }
1a278e7b 192 void OnBtnSendFile(wxCommandEvent& WXUNUSED(event));
a0b08655 193 void OnBtnGet(wxCommandEvent& WXUNUSED(event)) { DoGet(); }
1a278e7b 194 void OnBtnClose(wxCommandEvent& WXUNUSED(event)) { DoClose(); }
eb671557
VZ
195
196 void OnClose(wxCloseEvent& event);
197
7ca528cb
VZ
198 void OnProcessTerm(wxProcessEvent& event);
199
200 void DoSend()
201 {
1a278e7b
VZ
202 wxString s(m_textOut->GetValue());
203 s += _T('\n');
204 m_out.Write(s.c_str(), s.length());
205 m_textOut->Clear();
7ca528cb
VZ
206
207 DoGet();
208 }
209
eb671557 210 void DoGet();
1a278e7b 211 void DoClose();
eb671557
VZ
212
213private:
1a278e7b
VZ
214 void DoGetFromStream(wxTextCtrl *text, wxInputStream& in);
215 void DisableInput();
216 void DisableOutput();
217
218
eb671557
VZ
219 wxProcess *m_process;
220
1a278e7b
VZ
221 wxOutputStream &m_out;
222 wxInputStream &m_in,
223 &m_err;
eb671557 224
1a278e7b
VZ
225 wxTextCtrl *m_textOut,
226 *m_textIn,
227 *m_textErr;
eb671557
VZ
228
229 DECLARE_EVENT_TABLE()
230};
231
232// ----------------------------------------------------------------------------
233// wxProcess-derived classes
234// ----------------------------------------------------------------------------
235
69c33c6c
VZ
236// This is the handler for process termination events
237class MyProcess : public wxProcess
238{
239public:
d8e41d42 240 MyProcess(MyFrame *parent, const wxString& cmd)
69c33c6c
VZ
241 : wxProcess(parent), m_cmd(cmd)
242 {
243 m_parent = parent;
244 }
245
246 // instead of overriding this virtual function we might as well process the
247 // event from it in the frame class - this might be more convenient in some
248 // cases
249 virtual void OnTerminate(int pid, int status);
250
d8e41d42
VZ
251protected:
252 MyFrame *m_parent;
69c33c6c
VZ
253 wxString m_cmd;
254};
255
d8e41d42
VZ
256// A specialization of MyProcess for redirecting the output
257class MyPipedProcess : public MyProcess
258{
259public:
260 MyPipedProcess(MyFrame *parent, const wxString& cmd)
261 : MyProcess(parent, cmd)
262 {
cd6ce4a9 263 Redirect();
d8e41d42
VZ
264 }
265
266 virtual void OnTerminate(int pid, int status);
cd6ce4a9 267
f6bcfd97
BP
268 virtual bool HasInput();
269};
270
271// A version of MyPipedProcess which also sends input to the stdin of the
272// child process
273class MyPipedProcess2 : public MyPipedProcess
274{
275public:
276 MyPipedProcess2(MyFrame *parent, const wxString& cmd, const wxString& input)
277 : MyPipedProcess(parent, cmd), m_input(input)
278 {
279 }
280
281 virtual bool HasInput();
282
283private:
284 wxString m_input;
d8e41d42
VZ
285};
286
69c33c6c
VZ
287// ----------------------------------------------------------------------------
288// constants
289// ----------------------------------------------------------------------------
290
291// IDs for the controls and the menu commands
292enum
293{
294 // menu items
295 Exec_Quit = 100,
50567b69 296 Exec_Kill,
d8e41d42 297 Exec_ClearLog,
c6f9dfe8
VZ
298 Exec_BeginBusyCursor,
299 Exec_EndBusyCursor,
69c33c6c 300 Exec_SyncExec = 200,
9b6b9e0c 301 Exec_SyncNoEventsExec,
69c33c6c
VZ
302 Exec_AsyncExec,
303 Exec_Shell,
eb671557 304 Exec_POpen,
6ba63600 305 Exec_OpenFile,
ba59de5d 306 Exec_OpenURL,
d93c719a 307 Exec_DDEExec,
ca289436 308 Exec_DDERequest,
d8e41d42 309 Exec_Redirect,
f6bcfd97 310 Exec_Pipe,
eb671557
VZ
311 Exec_About = 300,
312
313 // control ids
314 Exec_Btn_Send = 1000,
1a278e7b
VZ
315 Exec_Btn_SendFile,
316 Exec_Btn_Get,
317 Exec_Btn_Close
69c33c6c
VZ
318};
319
d93c719a
VZ
320static const wxChar *DIALOG_TITLE = _T("Exec sample");
321
69c33c6c 322// ----------------------------------------------------------------------------
be5a51fb 323// event tables and other macros for wxWidgets
69c33c6c
VZ
324// ----------------------------------------------------------------------------
325
be5a51fb 326// the event tables connect the wxWidgets events with the functions (event
69c33c6c
VZ
327// handlers) which process them. It can be also done at run-time, but for the
328// simple menu events like this the static method is much simpler.
329BEGIN_EVENT_TABLE(MyFrame, wxFrame)
330 EVT_MENU(Exec_Quit, MyFrame::OnQuit)
50567b69 331 EVT_MENU(Exec_Kill, MyFrame::OnKill)
d8e41d42 332 EVT_MENU(Exec_ClearLog, MyFrame::OnClear)
c6f9dfe8
VZ
333 EVT_MENU(Exec_BeginBusyCursor, MyFrame::OnBeginBusyCursor)
334 EVT_MENU(Exec_EndBusyCursor, MyFrame::OnEndBusyCursor)
69c33c6c
VZ
335
336 EVT_MENU(Exec_SyncExec, MyFrame::OnSyncExec)
9b6b9e0c 337 EVT_MENU(Exec_SyncNoEventsExec, MyFrame::OnSyncNoEventsExec)
69c33c6c
VZ
338 EVT_MENU(Exec_AsyncExec, MyFrame::OnAsyncExec)
339 EVT_MENU(Exec_Shell, MyFrame::OnShell)
d8e41d42 340 EVT_MENU(Exec_Redirect, MyFrame::OnExecWithRedirect)
f6bcfd97
BP
341 EVT_MENU(Exec_Pipe, MyFrame::OnExecWithPipe)
342
eb671557
VZ
343 EVT_MENU(Exec_POpen, MyFrame::OnPOpen)
344
6ba63600 345 EVT_MENU(Exec_OpenFile, MyFrame::OnFileExec)
ba59de5d 346 EVT_MENU(Exec_OpenURL, MyFrame::OnOpenURL)
6ba63600 347
5af4b77f 348#ifdef __WINDOWS__
d93c719a 349 EVT_MENU(Exec_DDEExec, MyFrame::OnDDEExec)
ca289436 350 EVT_MENU(Exec_DDERequest, MyFrame::OnDDERequest)
5af4b77f 351#endif // __WINDOWS__
eb671557 352
69c33c6c 353 EVT_MENU(Exec_About, MyFrame::OnAbout)
cd6ce4a9
VZ
354
355 EVT_IDLE(MyFrame::OnIdle)
92a2a7eb 356
07850a49 357 EVT_TIMER(wxID_ANY, MyFrame::OnTimer)
69c33c6c
VZ
358END_EVENT_TABLE()
359
eb671557
VZ
360BEGIN_EVENT_TABLE(MyPipeFrame, wxFrame)
361 EVT_BUTTON(Exec_Btn_Send, MyPipeFrame::OnBtnSend)
1a278e7b 362 EVT_BUTTON(Exec_Btn_SendFile, MyPipeFrame::OnBtnSendFile)
eb671557 363 EVT_BUTTON(Exec_Btn_Get, MyPipeFrame::OnBtnGet)
1a278e7b 364 EVT_BUTTON(Exec_Btn_Close, MyPipeFrame::OnBtnClose)
eb671557 365
07850a49 366 EVT_TEXT_ENTER(wxID_ANY, MyPipeFrame::OnTextEnter)
eb671557
VZ
367
368 EVT_CLOSE(MyPipeFrame::OnClose)
7ca528cb 369
07850a49 370 EVT_END_PROCESS(wxID_ANY, MyPipeFrame::OnProcessTerm)
eb671557
VZ
371END_EVENT_TABLE()
372
be5a51fb 373// Create a new application object: this macro will allow wxWidgets to create
69c33c6c
VZ
374// the application object during program execution (it's better than using a
375// static object for many reasons) and also declares the accessor function
376// wxGetApp() which will return the reference of the right type (i.e. MyApp and
377// not wxApp)
378IMPLEMENT_APP(MyApp)
379
380// ============================================================================
381// implementation
382// ============================================================================
383
384// ----------------------------------------------------------------------------
385// the application class
386// ----------------------------------------------------------------------------
387
388// `Main program' equivalent: the program execution "starts" here
389bool MyApp::OnInit()
390{
45e6e6f8
VZ
391 if ( !wxApp::OnInit() )
392 return false;
393
69c33c6c 394 // Create the main application window
be5a51fb 395 MyFrame *frame = new MyFrame(_T("Exec wxWidgets sample"),
69c33c6c
VZ
396 wxDefaultPosition, wxSize(500, 140));
397
398 // Show it and tell the application that it's our main window
07850a49 399 frame->Show(true);
69c33c6c
VZ
400 SetTopWindow(frame);
401
402 // success: wxApp::OnRun() will be called which will enter the main message
07850a49 403 // loop and the application will run. If we returned false here, the
69c33c6c 404 // application would exit immediately.
07850a49 405 return true;
69c33c6c
VZ
406}
407
408// ----------------------------------------------------------------------------
409// main frame
410// ----------------------------------------------------------------------------
411
2b5f62a0
VZ
412#ifdef __VISUALC__
413#pragma warning(disable: 4355) // this used in base member initializer list
414#endif
415
69c33c6c
VZ
416// frame constructor
417MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
07850a49 418 : wxFrame((wxFrame *)NULL, wxID_ANY, title, pos, size),
92a2a7eb 419 m_timerIdleWakeUp(this)
69c33c6c 420{
50567b69
VZ
421 m_pidLast = 0;
422
69c33c6c
VZ
423#ifdef __WXMAC__
424 // we need this in order to allow the about menu relocation, since ABOUT is
425 // not the default id of the about menu
426 wxApp::s_macAboutMenuItemId = Exec_About;
427#endif
428
69c33c6c 429 // create a menu bar
71307412 430 wxMenu *menuFile = new wxMenu(wxEmptyString, wxMENU_TEAROFF);
50567b69
VZ
431 menuFile->Append(Exec_Kill, _T("&Kill process...\tCtrl-K"),
432 _T("Kill a process by PID"));
433 menuFile->AppendSeparator();
c6f9dfe8 434 menuFile->Append(Exec_ClearLog, _T("&Clear log\tCtrl-L"),
d8e41d42
VZ
435 _T("Clear the log window"));
436 menuFile->AppendSeparator();
c6f9dfe8
VZ
437 menuFile->Append(Exec_BeginBusyCursor, _T("Show &busy cursor\tCtrl-C"));
438 menuFile->Append(Exec_EndBusyCursor, _T("Show &normal cursor\tShift-Ctrl-C"));
439 menuFile->AppendSeparator();
69c33c6c
VZ
440 menuFile->Append(Exec_Quit, _T("E&xit\tAlt-X"), _T("Quit this program"));
441
442 wxMenu *execMenu = new wxMenu;
443 execMenu->Append(Exec_SyncExec, _T("Sync &execution...\tCtrl-E"),
444 _T("Launch a program and return when it terminates"));
9b6b9e0c
VZ
445 execMenu->Append(Exec_SyncNoEventsExec, _T("Sync execution and &block...\tCtrl-B"),
446 _T("Launch a program and block until it terminates"));
69c33c6c
VZ
447 execMenu->Append(Exec_AsyncExec, _T("&Async execution...\tCtrl-A"),
448 _T("Launch a program and return immediately"));
449 execMenu->Append(Exec_Shell, _T("Execute &shell command...\tCtrl-S"),
450 _T("Launch a shell and execute a command in it"));
f6bcfd97 451 execMenu->AppendSeparator();
d8e41d42
VZ
452 execMenu->Append(Exec_Redirect, _T("Capture command &output...\tCtrl-O"),
453 _T("Launch a program and capture its output"));
eb671557 454 execMenu->Append(Exec_Pipe, _T("&Pipe through command..."),
f6bcfd97 455 _T("Pipe a string through a filter"));
eb671557
VZ
456 execMenu->Append(Exec_POpen, _T("&Open a pipe to a command...\tCtrl-P"),
457 _T("Open a pipe to and from another program"));
69c33c6c 458
6ba63600
VZ
459 execMenu->AppendSeparator();
460 execMenu->Append(Exec_OpenFile, _T("Open &file...\tCtrl-F"),
461 _T("Launch the command to open this kind of files"));
ba59de5d
VZ
462 execMenu->Append(Exec_OpenURL, _T("Open &URL...\tCtrl-U"),
463 _T("Launch the default browser with the given URL"));
d93c719a
VZ
464#ifdef __WINDOWS__
465 execMenu->AppendSeparator();
466 execMenu->Append(Exec_DDEExec, _T("Execute command via &DDE...\tCtrl-D"));
ca289436 467 execMenu->Append(Exec_DDERequest, _T("Send DDE &request...\tCtrl-R"));
d93c719a
VZ
468#endif
469
71307412 470 wxMenu *helpMenu = new wxMenu(wxEmptyString, wxMENU_TEAROFF);
69c33c6c
VZ
471 helpMenu->Append(Exec_About, _T("&About...\tF1"), _T("Show about dialog"));
472
473 // now append the freshly created menu to the menu bar...
474 wxMenuBar *menuBar = new wxMenuBar();
475 menuBar->Append(menuFile, _T("&File"));
476 menuBar->Append(execMenu, _T("&Exec"));
477 menuBar->Append(helpMenu, _T("&Help"));
478
479 // ... and attach this menu bar to the frame
480 SetMenuBar(menuBar);
481
9121bed2 482 // create the listbox in which we will show misc messages as they come
07850a49 483 m_lbox = new wxListBox(this, wxID_ANY);
8ce88dfa
VZ
484 wxFont font(12, wxFONTFAMILY_TELETYPE, wxFONTSTYLE_NORMAL,
485 wxFONTWEIGHT_NORMAL);
486 if ( font.Ok() )
487 m_lbox->SetFont(font);
9121bed2 488
69c33c6c
VZ
489#if wxUSE_STATUSBAR
490 // create a status bar just for fun (by default with 1 pane only)
e680a378 491 CreateStatusBar();
be5a51fb 492 SetStatusText(_T("Welcome to wxWidgets exec sample!"));
69c33c6c
VZ
493#endif // wxUSE_STATUSBAR
494}
495
5a8561fc
VZ
496MyFrame::~MyFrame()
497{
498 // any processes left until now must be deleted manually: normally this is
499 // done when the associated process terminates but it must be still running
500 // if this didn't happen until now
501 for ( size_t n = 0; n < m_allAsync.size(); n++ )
502 {
503 delete m_allAsync[n];
504 }
505}
506
50567b69
VZ
507// ----------------------------------------------------------------------------
508// event handlers: file and help menu
509// ----------------------------------------------------------------------------
69c33c6c
VZ
510
511void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
512{
07850a49
WS
513 // true is to force the frame to close
514 Close(true);
69c33c6c
VZ
515}
516
d8e41d42
VZ
517void MyFrame::OnClear(wxCommandEvent& WXUNUSED(event))
518{
519 m_lbox->Clear();
520}
521
c6f9dfe8
VZ
522void MyFrame::OnBeginBusyCursor(wxCommandEvent& WXUNUSED(event))
523{
524 wxBeginBusyCursor();
525}
526
527void MyFrame::OnEndBusyCursor(wxCommandEvent& WXUNUSED(event))
528{
529 wxEndBusyCursor();
530}
531
69c33c6c
VZ
532void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
533{
749bfe9a 534 wxMessageBox(_T("Exec wxWidgets Sample\n(c) 2000-2002 Vadim Zeitlin"),
69c33c6c
VZ
535 _T("About Exec"), wxOK | wxICON_INFORMATION, this);
536}
537
50567b69
VZ
538void MyFrame::OnKill(wxCommandEvent& WXUNUSED(event))
539{
540 long pid = wxGetNumberFromUser(_T("Please specify the process to kill"),
541 _T("Enter PID:"),
542 _T("Exec question"),
543 m_pidLast,
9c05a3ca
VZ
544 // we need the full unsigned int range
545 -INT_MAX, INT_MAX,
50567b69
VZ
546 this);
547 if ( pid == -1 )
548 {
549 // cancelled
550 return;
551 }
552
553 static const wxString signalNames[] =
554 {
555 _T("Just test (SIGNONE)"),
556 _T("Hangup (SIGHUP)"),
557 _T("Interrupt (SIGINT)"),
558 _T("Quit (SIGQUIT)"),
559 _T("Illegal instruction (SIGILL)"),
560 _T("Trap (SIGTRAP)"),
561 _T("Abort (SIGABRT)"),
562 _T("Emulated trap (SIGEMT)"),
563 _T("FP exception (SIGFPE)"),
564 _T("Kill (SIGKILL)"),
565 _T("Bus (SIGBUS)"),
566 _T("Segment violation (SIGSEGV)"),
567 _T("System (SIGSYS)"),
568 _T("Broken pipe (SIGPIPE)"),
569 _T("Alarm (SIGALRM)"),
570 _T("Terminate (SIGTERM)"),
571 };
572
573 int sig = wxGetSingleChoiceIndex(_T("How to kill the process?"),
574 _T("Exec question"),
575 WXSIZEOF(signalNames), signalNames,
576 this);
577 switch ( sig )
578 {
579 default:
580 wxFAIL_MSG( _T("unexpected return value") );
581 // fall through
582
583 case -1:
584 // cancelled
585 return;
586
587 case wxSIGNONE:
588 case wxSIGHUP:
589 case wxSIGINT:
590 case wxSIGQUIT:
591 case wxSIGILL:
592 case wxSIGTRAP:
593 case wxSIGABRT:
594 case wxSIGEMT:
595 case wxSIGFPE:
596 case wxSIGKILL:
597 case wxSIGBUS:
598 case wxSIGSEGV:
599 case wxSIGSYS:
600 case wxSIGPIPE:
601 case wxSIGALRM:
602 case wxSIGTERM:
603 break;
604 }
605
606 if ( sig == 0 )
607 {
608 if ( wxProcess::Exists(pid) )
aec18ff7 609 wxLogStatus(_T("Process %ld is running."), pid);
50567b69 610 else
aec18ff7 611 wxLogStatus(_T("No process with pid = %ld."), pid);
50567b69
VZ
612 }
613 else // not SIGNONE
614 {
615 wxKillError rc = wxProcess::Kill(pid, (wxSignal)sig);
616 if ( rc == wxKILL_OK )
617 {
aec18ff7 618 wxLogStatus(_T("Process %ld killed with signal %d."), pid, sig);
50567b69
VZ
619 }
620 else
621 {
622 static const wxChar *errorText[] =
623 {
624 _T(""), // no error
625 _T("signal not supported"),
626 _T("permission denied"),
627 _T("no such process"),
628 _T("unspecified error"),
629 };
630
aec18ff7 631 wxLogStatus(_T("Failed to kill process %ld with signal %d: %s"),
50567b69
VZ
632 pid, sig, errorText[rc]);
633 }
634 }
635}
636
637// ----------------------------------------------------------------------------
638// event handlers: exec menu
639// ----------------------------------------------------------------------------
640
6ba63600
VZ
641void MyFrame::DoAsyncExec(const wxString& cmd)
642{
5a8561fc 643 MyProcess * const process = new MyProcess(this, cmd);
4c1ef422 644 m_pidLast = wxExecute(cmd, wxEXEC_ASYNC, process);
50567b69 645 if ( !m_pidLast )
6ba63600 646 {
5a8561fc 647 wxLogError(_T("Execution of '%s' failed."), cmd.c_str());
6ba63600
VZ
648
649 delete process;
650 }
651 else
652 {
5a8561fc 653 wxLogStatus(_T("Process %ld (%s) launched."), m_pidLast, cmd.c_str());
6ba63600
VZ
654
655 m_cmdLast = cmd;
5a8561fc
VZ
656
657 // the parent frame keeps track of all async processes as it needs to
658 // free them if we exit before the child process terminates
659 AddAsyncProcess(process);
6ba63600
VZ
660 }
661}
662
69c33c6c
VZ
663void MyFrame::OnSyncExec(wxCommandEvent& WXUNUSED(event))
664{
665 wxString cmd = wxGetTextFromUser(_T("Enter the command: "),
d93c719a 666 DIALOG_TITLE,
69c33c6c
VZ
667 m_cmdLast);
668
669 if ( !cmd )
670 return;
671
aec18ff7 672 wxLogStatus( _T("'%s' is running please wait..."), cmd.c_str() );
d31b7b68 673
4c1ef422 674 int code = wxExecute(cmd, wxEXEC_SYNC);
d31b7b68 675
69c33c6c 676 wxLogStatus(_T("Process '%s' terminated with exit code %d."),
aec18ff7
MB
677 cmd.c_str(), code);
678
69c33c6c
VZ
679 m_cmdLast = cmd;
680}
681
9b6b9e0c
VZ
682void MyFrame::OnSyncNoEventsExec(wxCommandEvent& WXUNUSED(event))
683{
684 wxString cmd = wxGetTextFromUser(_T("Enter the command: "),
685 DIALOG_TITLE,
686 m_cmdLast);
687
688 if ( !cmd )
689 return;
690
691 wxLogStatus( _T("'%s' is running please wait..."), cmd.c_str() );
692
693 int code = wxExecute(cmd, wxEXEC_BLOCK);
694
695 wxLogStatus(_T("Process '%s' terminated with exit code %d."),
696 cmd.c_str(), code);
697
698 m_cmdLast = cmd;
699}
700
69c33c6c
VZ
701void MyFrame::OnAsyncExec(wxCommandEvent& WXUNUSED(event))
702{
703 wxString cmd = wxGetTextFromUser(_T("Enter the command: "),
d93c719a 704 DIALOG_TITLE,
69c33c6c
VZ
705 m_cmdLast);
706
707 if ( !cmd )
708 return;
709
6ba63600 710 DoAsyncExec(cmd);
69c33c6c
VZ
711}
712
713void MyFrame::OnShell(wxCommandEvent& WXUNUSED(event))
714{
715 wxString cmd = wxGetTextFromUser(_T("Enter the command: "),
d93c719a 716 DIALOG_TITLE,
69c33c6c
VZ
717 m_cmdLast);
718
719 if ( !cmd )
720 return;
721
722 int code = wxShell(cmd);
723 wxLogStatus(_T("Shell command '%s' terminated with exit code %d."),
724 cmd.c_str(), code);
725 m_cmdLast = cmd;
726}
727
d8e41d42
VZ
728void MyFrame::OnExecWithRedirect(wxCommandEvent& WXUNUSED(event))
729{
730 wxString cmd = wxGetTextFromUser(_T("Enter the command: "),
731 DIALOG_TITLE,
732 m_cmdLast);
733
734 if ( !cmd )
735 return;
736
cd6ce4a9
VZ
737 bool sync;
738 switch ( wxMessageBox(_T("Execute it synchronously?"),
739 _T("Exec question"),
740 wxYES_NO | wxCANCEL | wxICON_QUESTION, this) )
d8e41d42 741 {
cd6ce4a9 742 case wxYES:
07850a49 743 sync = true;
cd6ce4a9 744 break;
d8e41d42 745
cd6ce4a9 746 case wxNO:
07850a49 747 sync = false;
cd6ce4a9
VZ
748 break;
749
750 default:
751 return;
d8e41d42 752 }
cd6ce4a9
VZ
753
754 if ( sync )
d8e41d42 755 {
ce0bb89d
VZ
756 wxLogStatus( _T("'%s' is running please wait..."), cmd.c_str() );
757
f6bcfd97
BP
758 wxArrayString output, errors;
759 int code = wxExecute(cmd, output, errors);
ce0bb89d
VZ
760
761 wxLogStatus(_T("Command '%s' terminated with exit code %d."),
cd6ce4a9
VZ
762 cmd.c_str(), code);
763
764 if ( code != -1 )
765 {
f6bcfd97
BP
766 ShowOutput(cmd, output, _T("Output"));
767 ShowOutput(cmd, errors, _T("Errors"));
cd6ce4a9
VZ
768 }
769 }
770 else // async exec
771 {
772 MyPipedProcess *process = new MyPipedProcess(this, cmd);
4c1ef422 773 if ( !wxExecute(cmd, wxEXEC_ASYNC, process) )
cd6ce4a9
VZ
774 {
775 wxLogError(_T("Execution of '%s' failed."), cmd.c_str());
776
777 delete process;
778 }
779 else
780 {
5a8561fc 781 AddPipedProcess(process);
cd6ce4a9 782 }
d8e41d42 783 }
cd6ce4a9
VZ
784
785 m_cmdLast = cmd;
d8e41d42
VZ
786}
787
f6bcfd97
BP
788void MyFrame::OnExecWithPipe(wxCommandEvent& WXUNUSED(event))
789{
790 if ( !m_cmdLast )
791 m_cmdLast = _T("tr [a-z] [A-Z]");
792
793 wxString cmd = wxGetTextFromUser(_T("Enter the command: "),
794 DIALOG_TITLE,
795 m_cmdLast);
796
797 if ( !cmd )
798 return;
799
800 wxString input = wxGetTextFromUser(_T("Enter the string to send to it: "),
801 DIALOG_TITLE);
802 if ( !input )
803 return;
804
805 // always execute the filter asynchronously
806 MyPipedProcess2 *process = new MyPipedProcess2(this, cmd, input);
aec18ff7 807 long pid = wxExecute(cmd, wxEXEC_ASYNC, process);
f6bcfd97
BP
808 if ( pid )
809 {
5a8561fc 810 wxLogStatus(_T("Process %ld (%s) launched."), pid, cmd.c_str());
f6bcfd97 811
5a8561fc 812 AddPipedProcess(process);
f6bcfd97
BP
813 }
814 else
815 {
816 wxLogError(_T("Execution of '%s' failed."), cmd.c_str());
817
818 delete process;
819 }
820
821 m_cmdLast = cmd;
822}
823
87728739 824void MyFrame::OnPOpen(wxCommandEvent& WXUNUSED(event))
eb671557
VZ
825{
826 wxString cmd = wxGetTextFromUser(_T("Enter the command to launch: "),
827 DIALOG_TITLE,
828 m_cmdLast);
829 if ( cmd.empty() )
830 return;
831
832 wxProcess *process = wxProcess::Open(cmd);
833 if ( !process )
834 {
835 wxLogError(_T("Failed to launch the command."));
836 return;
837 }
838
a387938f
JS
839 wxLogVerbose(_T("PID of the new process: %ld"), process->GetPid());
840
eb671557
VZ
841 wxOutputStream *out = process->GetOutputStream();
842 if ( !out )
843 {
844 wxLogError(_T("Failed to connect to child stdin"));
845 return;
846 }
847
848 wxInputStream *in = process->GetInputStream();
849 if ( !in )
850 {
851 wxLogError(_T("Failed to connect to child stdout"));
852 return;
853 }
854
855 new MyPipeFrame(this, cmd, process);
856}
857
87728739 858void MyFrame::OnFileExec(wxCommandEvent& WXUNUSED(event))
6ba63600
VZ
859{
860 static wxString s_filename;
861
71307412
WS
862 wxString filename;
863
864#if wxUSE_FILEDLG
bd0b594d 865 filename = wxLoadFileSelector(_T("any file"), wxEmptyString, s_filename, this);
ba59de5d
VZ
866#else // !wxUSE_FILEDLG
867 filename = wxGetTextFromUser(_T("Enter the file name"), _T("exec sample"),
868 s_filename, this);
869#endif // wxUSE_FILEDLG/!wxUSE_FILEDLG
71307412
WS
870
871 if ( filename.empty() )
6ba63600
VZ
872 return;
873
874 s_filename = filename;
875
876 wxString ext = filename.AfterFirst(_T('.'));
877 wxFileType *ft = wxTheMimeTypesManager->GetFileTypeFromExtension(ext);
878 if ( !ft )
879 {
880 wxLogError(_T("Impossible to determine the file type for extension '%s'"),
881 ext.c_str());
882 return;
883 }
884
885 wxString cmd;
886 bool ok = ft->GetOpenCommand(&cmd,
71307412 887 wxFileType::MessageParameters(filename));
6ba63600
VZ
888 delete ft;
889 if ( !ok )
890 {
891 wxLogError(_T("Impossible to find out how to open files of extension '%s'"),
892 ext.c_str());
893 return;
894 }
895
896 DoAsyncExec(cmd);
897}
898
ba59de5d
VZ
899void MyFrame::OnOpenURL(wxCommandEvent& WXUNUSED(event))
900{
8f6d9cb3 901 static wxString s_filename(_T("http://www.wxwidgets.org/"));
ba59de5d
VZ
902
903 wxString filename = wxGetTextFromUser
904 (
905 _T("Enter the URL"),
906 _T("exec sample"),
907 s_filename,
908 this
909 );
910
911 if ( filename.empty() )
912 return;
913
914 s_filename = filename;
915
916 if ( !wxLaunchDefaultBrowser(s_filename) )
917 wxLogError(_T("Failed to open URL \"%s\""), s_filename.c_str());
918}
919
50567b69
VZ
920// ----------------------------------------------------------------------------
921// DDE stuff
922// ----------------------------------------------------------------------------
923
d93c719a 924#ifdef __WINDOWS__
ca289436
VZ
925
926bool MyFrame::GetDDEServer()
927{
d93c719a 928 wxString server = wxGetTextFromUser(_T("Server to connect to:"),
ca289436 929 DIALOG_TITLE, m_server);
d93c719a 930 if ( !server )
07850a49 931 return false;
ca289436
VZ
932
933 m_server = server;
d93c719a 934
ca289436 935 wxString topic = wxGetTextFromUser(_T("DDE topic:"), DIALOG_TITLE, m_topic);
d93c719a 936 if ( !topic )
07850a49 937 return false;
d93c719a 938
ca289436
VZ
939 m_topic = topic;
940
941 wxString cmd = wxGetTextFromUser(_T("DDE command:"), DIALOG_TITLE, m_cmdDde);
d93c719a 942 if ( !cmd )
07850a49 943 return false;
ca289436
VZ
944
945 m_cmdDde = cmd;
946
07850a49 947 return true;
ca289436
VZ
948}
949
950void MyFrame::OnDDEExec(wxCommandEvent& WXUNUSED(event))
951{
952 if ( !GetDDEServer() )
d93c719a
VZ
953 return;
954
955 wxDDEClient client;
71307412 956 wxConnectionBase *conn = client.MakeConnection(wxEmptyString, m_server, m_topic);
d93c719a
VZ
957 if ( !conn )
958 {
959 wxLogError(_T("Failed to connect to the DDE server '%s'."),
ca289436 960 m_server.c_str());
d93c719a
VZ
961 }
962 else
963 {
ca289436 964 if ( !conn->Execute(m_cmdDde) )
d93c719a
VZ
965 {
966 wxLogError(_T("Failed to execute command '%s' via DDE."),
ca289436 967 m_cmdDde.c_str());
d93c719a
VZ
968 }
969 else
970 {
971 wxLogStatus(_T("Successfully executed DDE command"));
972 }
973 }
d93c719a
VZ
974}
975
ca289436
VZ
976void MyFrame::OnDDERequest(wxCommandEvent& WXUNUSED(event))
977{
978 if ( !GetDDEServer() )
979 return;
980
981 wxDDEClient client;
71307412 982 wxConnectionBase *conn = client.MakeConnection(wxEmptyString, m_server, m_topic);
ca289436
VZ
983 if ( !conn )
984 {
985 wxLogError(_T("Failed to connect to the DDE server '%s'."),
986 m_server.c_str());
987 }
988 else
989 {
990 if ( !conn->Request(m_cmdDde) )
991 {
992 wxLogError(_T("Failed to send request '%s' via DDE."),
993 m_cmdDde.c_str());
994 }
995 else
996 {
997 wxLogStatus(_T("Successfully sent DDE request."));
998 }
999 }
1000}
1001
1002#endif // __WINDOWS__
1003
50567b69
VZ
1004// ----------------------------------------------------------------------------
1005// various helpers
1006// ----------------------------------------------------------------------------
1007
cd6ce4a9
VZ
1008// input polling
1009void MyFrame::OnIdle(wxIdleEvent& event)
1010{
1011 size_t count = m_running.GetCount();
1012 for ( size_t n = 0; n < count; n++ )
1013 {
1014 if ( m_running[n]->HasInput() )
1015 {
1016 event.RequestMore();
1017 }
1018 }
1019}
1020
92a2a7eb
VZ
1021void MyFrame::OnTimer(wxTimerEvent& WXUNUSED(event))
1022{
1023 wxWakeUpIdle();
1024}
1025
f6bcfd97
BP
1026void MyFrame::OnProcessTerminated(MyPipedProcess *process)
1027{
5a8561fc
VZ
1028 RemovePipedProcess(process);
1029}
1030
1031void MyFrame::OnAsyncTermination(MyProcess *process)
1032{
1033 m_allAsync.Remove(process);
1034
1035 delete process;
1036}
1037
1038void MyFrame::AddPipedProcess(MyPipedProcess *process)
1039{
1040 if ( m_running.IsEmpty() )
1041 {
1042 // we want to start getting the timer events to ensure that a
1043 // steady stream of idle events comes in -- otherwise we
1044 // wouldn't be able to poll the child process input
1045 m_timerIdleWakeUp.Start(100);
1046 }
1047 //else: the timer is already running
1048
1049 m_running.Add(process);
1050 m_allAsync.Add(process);
f6bcfd97
BP
1051}
1052
5a8561fc
VZ
1053void MyFrame::RemovePipedProcess(MyPipedProcess *process)
1054{
1055 m_running.Remove(process);
1056
1057 if ( m_running.IsEmpty() )
1058 {
1059 // we don't need to get idle events all the time any more
1060 m_timerIdleWakeUp.Stop();
1061 }
1062}
f6bcfd97
BP
1063
1064void MyFrame::ShowOutput(const wxString& cmd,
1065 const wxArrayString& output,
1066 const wxString& title)
1067{
1068 size_t count = output.GetCount();
1069 if ( !count )
1070 return;
1071
1072 m_lbox->Append(wxString::Format(_T("--- %s of '%s' ---"),
1073 title.c_str(), cmd.c_str()));
1074
1075 for ( size_t n = 0; n < count; n++ )
1076 {
1077 m_lbox->Append(output[n]);
1078 }
1079
eb671557
VZ
1080 m_lbox->Append(wxString::Format(_T("--- End of %s ---"),
1081 title.Lower().c_str()));
f6bcfd97
BP
1082}
1083
69c33c6c
VZ
1084// ----------------------------------------------------------------------------
1085// MyProcess
1086// ----------------------------------------------------------------------------
1087
1088void MyProcess::OnTerminate(int pid, int status)
1089{
1090 wxLogStatus(m_parent, _T("Process %u ('%s') terminated with exit code %d."),
1091 pid, m_cmd.c_str(), status);
1092
5a8561fc 1093 m_parent->OnAsyncTermination(this);
69c33c6c 1094}
d8e41d42 1095
cd6ce4a9
VZ
1096// ----------------------------------------------------------------------------
1097// MyPipedProcess
1098// ----------------------------------------------------------------------------
1099
1100bool MyPipedProcess::HasInput()
d8e41d42 1101{
07850a49 1102 bool hasInput = false;
f6bcfd97 1103
92a2a7eb 1104 if ( IsInputAvailable() )
cd6ce4a9 1105 {
92a2a7eb 1106 wxTextInputStream tis(*GetInputStream());
cd6ce4a9
VZ
1107
1108 // this assumes that the output is always line buffered
1109 wxString msg;
f6bcfd97 1110 msg << m_cmd << _T(" (stdout): ") << tis.ReadLine();
d8e41d42 1111
cd6ce4a9
VZ
1112 m_parent->GetLogListBox()->Append(msg);
1113
07850a49 1114 hasInput = true;
cd6ce4a9 1115 }
f6bcfd97 1116
92a2a7eb 1117 if ( IsErrorAvailable() )
d8e41d42 1118 {
92a2a7eb 1119 wxTextInputStream tis(*GetErrorStream());
f6bcfd97
BP
1120
1121 // this assumes that the output is always line buffered
1122 wxString msg;
1123 msg << m_cmd << _T(" (stderr): ") << tis.ReadLine();
1124
1125 m_parent->GetLogListBox()->Append(msg);
1126
07850a49 1127 hasInput = true;
d8e41d42 1128 }
f6bcfd97
BP
1129
1130 return hasInput;
cd6ce4a9
VZ
1131}
1132
1133void MyPipedProcess::OnTerminate(int pid, int status)
1134{
1135 // show the rest of the output
1136 while ( HasInput() )
1137 ;
1138
1139 m_parent->OnProcessTerminated(this);
d8e41d42
VZ
1140
1141 MyProcess::OnTerminate(pid, status);
1142}
f6bcfd97
BP
1143
1144// ----------------------------------------------------------------------------
1145// MyPipedProcess2
1146// ----------------------------------------------------------------------------
1147
1148bool MyPipedProcess2::HasInput()
1149{
11fdee42 1150 if ( !m_input.empty() )
f6bcfd97
BP
1151 {
1152 wxTextOutputStream os(*GetOutputStream());
1153 os.WriteString(m_input);
1154
1155 CloseOutput();
1156 m_input.clear();
1157
1158 // call us once again - may be we'll have output
07850a49 1159 return true;
f6bcfd97
BP
1160 }
1161
1162 return MyPipedProcess::HasInput();
1163}
eb671557
VZ
1164
1165// ============================================================================
1166// MyPipeFrame implementation
1167// ============================================================================
1168
1169MyPipeFrame::MyPipeFrame(wxFrame *parent,
1170 const wxString& cmd,
1171 wxProcess *process)
07850a49 1172 : wxFrame(parent, wxID_ANY, cmd),
eb671557
VZ
1173 m_process(process),
1174 // in a real program we'd check that the streams are !NULL here
f6def1fa 1175 m_out(*process->GetOutputStream()),
eb671557 1176 m_in(*process->GetInputStream()),
f6def1fa 1177 m_err(*process->GetErrorStream())
eb671557 1178{
7ca528cb
VZ
1179 m_process->SetNextHandler(this);
1180
07850a49 1181 wxPanel *panel = new wxPanel(this, wxID_ANY);
7ca528cb 1182
71307412 1183 m_textOut = new wxTextCtrl(panel, wxID_ANY, wxEmptyString,
eb671557
VZ
1184 wxDefaultPosition, wxDefaultSize,
1185 wxTE_PROCESS_ENTER);
71307412 1186 m_textIn = new wxTextCtrl(panel, wxID_ANY, wxEmptyString,
1a278e7b
VZ
1187 wxDefaultPosition, wxDefaultSize,
1188 wxTE_MULTILINE | wxTE_RICH);
1189 m_textIn->SetEditable(false);
71307412 1190 m_textErr = new wxTextCtrl(panel, wxID_ANY, wxEmptyString,
1a278e7b
VZ
1191 wxDefaultPosition, wxDefaultSize,
1192 wxTE_MULTILINE | wxTE_RICH);
1193 m_textErr->SetEditable(false);
eb671557
VZ
1194
1195 wxSizer *sizerTop = new wxBoxSizer(wxVERTICAL);
1a278e7b 1196 sizerTop->Add(m_textOut, 0, wxGROW | wxALL, 5);
eb671557
VZ
1197
1198 wxSizer *sizerBtns = new wxBoxSizer(wxHORIZONTAL);
1a278e7b
VZ
1199 sizerBtns->
1200 Add(new wxButton(panel, Exec_Btn_Send, _T("&Send")), 0, wxALL, 5);
1201 sizerBtns->
1202 Add(new wxButton(panel, Exec_Btn_SendFile, _T("&File...")), 0, wxALL, 5);
1203 sizerBtns->
1204 Add(new wxButton(panel, Exec_Btn_Get, _T("&Get")), 0, wxALL, 5);
1205 sizerBtns->
1206 Add(new wxButton(panel, Exec_Btn_Close, _T("&Close")), 0, wxALL, 5);
eb671557
VZ
1207
1208 sizerTop->Add(sizerBtns, 0, wxCENTRE | wxALL, 5);
1a278e7b
VZ
1209 sizerTop->Add(m_textIn, 1, wxGROW | wxALL, 5);
1210 sizerTop->Add(m_textErr, 1, wxGROW | wxALL, 5);
eb671557 1211
7ca528cb 1212 panel->SetSizer(sizerTop);
eb671557
VZ
1213 sizerTop->Fit(this);
1214
1215 Show();
1216}
1217
1a278e7b
VZ
1218void MyPipeFrame::OnBtnSendFile(wxCommandEvent& WXUNUSED(event))
1219{
71307412 1220#if wxUSE_FILEDLG
1a278e7b
VZ
1221 wxFileDialog filedlg(this, _T("Select file to send"));
1222 if ( filedlg.ShowModal() != wxID_OK )
1223 return;
1224
1225 wxFFile file(filedlg.GetFilename(), _T("r"));
1226 wxString data;
1227 if ( !file.IsOpened() || !file.ReadAll(&data) )
1228 return;
1229
1230 // can't write the entire string at once, this risk overflowing the pipe
1231 // and we would dead lock
1232 size_t len = data.length();
1233 const wxChar *pc = data.c_str();
1234 while ( len )
1235 {
1236 const size_t CHUNK_SIZE = 4096;
42d0aa30 1237 m_out.Write(pc, len > CHUNK_SIZE ? CHUNK_SIZE : len);
1a278e7b 1238
42d0aa30
VZ
1239 // note that not all data could have been written as we don't block on
1240 // the write end of the pipe
1241 const size_t lenChunk = m_out.LastWrite();
1a278e7b
VZ
1242
1243 pc += lenChunk;
1244 len -= lenChunk;
1245
1246 DoGet();
1247 }
71307412 1248#endif // wxUSE_FILEDLG
1a278e7b
VZ
1249}
1250
eb671557
VZ
1251void MyPipeFrame::DoGet()
1252{
7ca528cb
VZ
1253 // we don't have any way to be notified when any input appears on the
1254 // stream so we have to poll it :-(
1a278e7b
VZ
1255 DoGetFromStream(m_textIn, m_in);
1256 DoGetFromStream(m_textErr, m_err);
1257}
1258
1259void MyPipeFrame::DoGetFromStream(wxTextCtrl *text, wxInputStream& in)
1260{
1261 while ( in.CanRead() )
1262 {
1263 wxChar buffer[4096];
1264 buffer[in.Read(buffer, WXSIZEOF(buffer) - 1).LastRead()] = _T('\0');
7ca528cb 1265
1a278e7b
VZ
1266 text->AppendText(buffer);
1267 }
1268}
1269
1270void MyPipeFrame::DoClose()
1271{
1272 m_process->CloseOutput();
1273
1274 DisableInput();
1275}
1276
1277void MyPipeFrame::DisableInput()
1278{
1279 m_textOut->SetEditable(false);
1280 FindWindow(Exec_Btn_Send)->Disable();
1281 FindWindow(Exec_Btn_SendFile)->Disable();
1282 FindWindow(Exec_Btn_Close)->Disable();
1283}
1284
1285void MyPipeFrame::DisableOutput()
1286{
1287 FindWindow(Exec_Btn_Get)->Disable();
eb671557
VZ
1288}
1289
1290void MyPipeFrame::OnClose(wxCloseEvent& event)
1291{
7ca528cb
VZ
1292 if ( m_process )
1293 {
1294 // we're not interested in getting the process termination notification
1295 // if we are closing it ourselves
1296 wxProcess *process = m_process;
1297 m_process = NULL;
1298 process->SetNextHandler(NULL);
1299
1300 process->CloseOutput();
1301 }
eb671557
VZ
1302
1303 event.Skip();
1304}
1305
87728739 1306void MyPipeFrame::OnProcessTerm(wxProcessEvent& WXUNUSED(event))
7ca528cb 1307{
1a278e7b
VZ
1308 DoGet();
1309
7ca528cb
VZ
1310 delete m_process;
1311 m_process = NULL;
1312
1313 wxLogWarning(_T("The other process has terminated, closing"));
1314
1a278e7b
VZ
1315 DisableInput();
1316 DisableOutput();
7ca528cb 1317}