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 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
|
#include "unixprocess_impl.h"
#if defined(__WXMAC__)||defined(__WXGTK__)
#include <wx/stdpaths.h>
#include <wx/filename.h>
#include <unistd.h>
#include <signal.h>
#include <sys/types.h>
#include <sys/select.h>
#include <errno.h>
#include <sys/wait.h>
#include <string.h>
#include "procutils.h"
#ifdef __WXGTK__
#ifdef __FreeBSD__
# include <sys/ioctl.h>
# include <termios.h>
# include <libutil.h>
#else
# include <pty.h>
# include <utmp.h>
#endif
#else
# include <util.h>
#endif
static char **argv = NULL;
static int argc = 0;
// ----------------------------------------------
#define ISBLANK(ch) ((ch) == ' ' || (ch) == '\t')
#define BUFF_SIZE 1024*64
/* Routines imported from standard C runtime libraries. */
#ifdef __STDC__
#include <stddef.h>
#include <string.h>
#include <stdlib.h>
#else /* !__STDC__ */
#if !defined _WIN32 || defined __GNUC__
extern char *memcpy (); /* Copy memory region */
extern int strlen (); /* Count length of string */
extern char *malloc (); /* Standard memory allocater */
extern char *realloc (); /* Standard memory reallocator */
extern void free (); /* Free malloc'd memory */
extern char *strdup (); /* Duplicate a string */
#endif
#endif /* __STDC__ */
#ifndef NULL
#define NULL 0
#endif
#ifndef EOS
#define EOS '\0'
#endif
#define INITIAL_MAXARGC 8 /* Number of args + NULL in initial argv */
static void freeargv (char **vector)
{
register char **scan;
if (vector != NULL) {
for (scan = vector; *scan != NULL; scan++) {
free (*scan);
}
free (vector);
}
}
char **
dupargv (char **argv)
{
int argc;
char **copy;
if (argv == NULL)
return NULL;
/* the vector */
for (argc = 0; argv[argc] != NULL; argc++);
copy = (char **) malloc ((argc + 1) * sizeof (char *));
if (copy == NULL)
return NULL;
/* the strings */
for (argc = 0; argv[argc] != NULL; argc++) {
int len = strlen (argv[argc]);
copy[argc] = (char*)malloc (sizeof (char *) * (len + 1));
if (copy[argc] == NULL) {
freeargv (copy);
return NULL;
}
strcpy (copy[argc], argv[argc]);
}
copy[argc] = NULL;
return copy;
}
char **buildargv (const char *input)
{
char *arg;
char *copybuf;
int squote = 0;
int dquote = 0;
int bsquote = 0;
int argc = 0;
int maxargc = 0;
char **argv = NULL;
char **nargv;
if (input != NULL) {
copybuf = (char *) alloca (strlen (input) + 1);
/* Is a do{}while to always execute the loop once. Always return an
argv, even for null strings. See NOTES above, test case below. */
do {
/* Pick off argv[argc] */
while (ISBLANK (*input)) {
input++;
}
if ((maxargc == 0) || (argc >= (maxargc - 1))) {
/* argv needs initialization, or expansion */
if (argv == NULL) {
maxargc = INITIAL_MAXARGC;
nargv = (char **) malloc (maxargc * sizeof (char *));
} else {
maxargc *= 2;
nargv = (char **) realloc (argv, maxargc * sizeof (char *));
}
if (nargv == NULL) {
if (argv != NULL) {
freeargv (argv);
argv = NULL;
}
break;
}
argv = nargv;
argv[argc] = NULL;
}
/* Begin scanning arg */
arg = copybuf;
while (*input != EOS) {
if (ISBLANK (*input) && !squote && !dquote && !bsquote) {
break;
} else {
if (bsquote) {
bsquote = 0;
*arg++ = *input;
} else if (*input == '\\') {
bsquote = 1;
} else if (squote) {
if (*input == '\'') {
squote = 0;
} else {
*arg++ = *input;
}
} else if (dquote) {
if (*input == '"') {
dquote = 0;
} else {
*arg++ = *input;
}
} else {
if (*input == '\'') {
squote = 1;
} else if (*input == '"') {
dquote = 1;
} else {
*arg++ = *input;
}
}
input++;
}
}
*arg = EOS;
argv[argc] = strdup (copybuf);
if (argv[argc] == NULL) {
freeargv (argv);
argv = NULL;
break;
}
argc++;
argv[argc] = NULL;
while (ISBLANK (*input)) {
input++;
}
} while (*input != EOS);
}
return (argv);
}
//-----------------------------------------------------
static void make_argv(const wxString &cmd)
{
if(argc) {
freeargv(argv);
argc=0;
}
argv = buildargv(cmd.mb_str(wxConvUTF8).data());
argc=0;
for (char **targs = argv; *targs != NULL; targs++) {
argc++;
}
}
#define BUFF_STATE_NORMAL 0
#define BUFF_STATE_IN_ESC 1
static void RemoveTerminalColoring(char *buffer)
{
char *saved_buff = buffer;
char tmpbuf[BUFF_SIZE+1];
memset(tmpbuf, 0, sizeof(tmpbuf));
short state = BUFF_STATE_NORMAL;
size_t i(0);
while(*buffer != 0) {
switch (state) {
case BUFF_STATE_NORMAL:
if(*buffer == 0x1B) { // found ESC char
state = BUFF_STATE_IN_ESC;
} else {
tmpbuf[i] = *buffer;
i++;
}
break;
case BUFF_STATE_IN_ESC:
if(*buffer == 'm') { // end of color sequence
state = BUFF_STATE_NORMAL;
}
break;
}
buffer++;
}
memset(saved_buff, 0, BUFF_SIZE);
memcpy(saved_buff, tmpbuf, strlen(tmpbuf));
}
UnixProcessImpl::UnixProcessImpl(wxEvtHandler *parent)
: IProcess(parent)
, m_readHandle (-1)
, m_writeHandle (-1)
, m_thr (NULL)
{
}
UnixProcessImpl::~UnixProcessImpl()
{
Cleanup();
}
void UnixProcessImpl::Cleanup()
{
close(GetReadHandle());
close(GetWriteHandle());
if ( m_thr ) {
// Stop the reader thread
m_thr->Stop();
delete m_thr;
}
m_thr = NULL;
if(GetPid() != wxNOT_FOUND) {
wxKill(GetPid(), GetHardKill() ? wxSIGKILL : wxSIGTERM, NULL, wxKILL_CHILDREN);
// The Zombie cleanup is done in app.cpp in ::ChildTerminatedSingalHandler() signal handler
int status(0);
waitpid(-1, &status, WNOHANG);
}
}
bool UnixProcessImpl::IsAlive()
{
return kill(m_pid, 0) == 0;
}
bool UnixProcessImpl::Read(wxString& buff)
{
fd_set rs;
timeval timeout;
memset(&rs, 0, sizeof(rs));
FD_SET(GetReadHandle(), &rs);
timeout.tv_sec = 0; // 0 seconds
timeout.tv_usec = 150000; // 150 ms
int errCode(0);
errno = 0;
int rc = select(GetReadHandle()+1, &rs, NULL, NULL, &timeout);
errCode = errno;
if ( rc == 0 ) {
// timeout
return true;
} else if ( rc > 0 ) {
// there is something to read
char buffer[BUFF_SIZE+1]; // our read buffer
memset(buffer, 0, sizeof(buffer));
if(read(GetReadHandle(), buffer, sizeof(buffer)) > 0) {
buff.Empty();
buffer[BUFF_SIZE] = 0; // allways place a terminator
// Remove coloring chars from the incomnig buffer
// colors are marked with ESC and terminates with lower case 'm'
RemoveTerminalColoring(buffer);
wxString convBuff = wxString(buffer, wxConvUTF8);
if(convBuff.IsEmpty()) {
convBuff = wxString::From8BitData(buffer);
}
buff.Append( convBuff );
return true;
}
return false;
} else {
if ( errCode == EINTR || errCode == EAGAIN ) {
return true;
}
// Process terminated
// the exit code will be set in the sigchld event handler
return false;
}
}
bool UnixProcessImpl::Write(const wxString& buff)
{
wxString tmpbuf = buff;
tmpbuf << wxT("\n");
int bytes = write(GetWriteHandle(), tmpbuf.mb_str(wxConvUTF8).data(), tmpbuf.Length());
return bytes == (int)tmpbuf.length();
}
IProcess* UnixProcessImpl::Execute(wxEvtHandler* parent, const wxString& cmd, IProcessCreateFlags flags, const wxString& workingDirectory, IProcessCallback *cb)
{
wxUnusedVar(flags);
make_argv(cmd);
if ( argc == 0 ) {
return NULL;
}
// fork the child process
wxString curdir = wxGetCwd();
// Prentend that we are a terminal...
int master, slave;
openpty(&master, &slave, NULL, NULL, NULL);
int rc = fork();
if ( rc == 0 ) {
login_tty(slave);
close(master); // close the un-needed master end
// at this point, slave is used as stdin/stdout/stderr
// Child process
if(workingDirectory.IsEmpty() == false) {
wxSetWorkingDirectory( workingDirectory );
}
// execute the process
execvp(argv[0], argv);
// if we got here, we failed...
exit(0);
} else if ( rc < 0 ) {
// Error
// restore the working directory
wxSetWorkingDirectory(curdir);
return NULL;
} else {
// Parent
close(slave);
freeargv(argv);
argc = 0;
// disable ECHO
struct termios termio;
tcgetattr(master, &termio);
termio.c_lflag = ICANON;
termio.c_oflag = ONOCR | ONLRET;
tcsetattr(master, TCSANOW, &termio);
// restore the working directory
wxSetWorkingDirectory(curdir);
UnixProcessImpl *proc = new UnixProcessImpl(parent);
proc->LinkCallback( cb );
proc->SetReadHandle (master);
proc->SetWriteHandler(master);
proc->SetPid( rc );
proc->StartReaderThread();
return proc;
}
}
void UnixProcessImpl::StartReaderThread()
{
// Launch the 'Reader' thread
m_thr = new ProcessReaderThread();
m_thr->SetProcess( this );
m_thr->SetNotifyWindow( m_parent );
m_thr->Start();
}
void UnixProcessImpl::Terminate()
{
wxKill(GetPid(), GetHardKill() ? wxSIGKILL : wxSIGTERM, NULL, wxKILL_CHILDREN);
int status(0);
// The real cleanup is done inside ::ChildTerminatedSingalHandler() signal handler (app.cpp)
waitpid(-1, &status, WNOHANG);
}
bool UnixProcessImpl::WriteToConsole(const wxString& buff)
{
wxString tmpbuf = buff;
tmpbuf.Trim().Trim(false);
tmpbuf << wxT("\n");
int bytes = write(GetWriteHandle(), tmpbuf.mb_str(wxConvUTF8).data(), tmpbuf.Length());
return bytes == (int)tmpbuf.length();
}
#endif //#if defined(__WXMAC )||defined(__WXGTK__)
|