aboutsummaryrefslogtreecommitdiff
path: root/lib/base/console.h
blob: e6c61766541ae49579377c0ebea5a940406a434b (plain)
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
#ifndef __LIB_BASE_CONSOLE_H__
#define __LIB_BASE_CONSOLE_H__

#include "Python.h"
#include <string>
#include <lib/base/ebase.h>
#include <lib/python/connections.h>
#include <queue>

#ifndef SWIG
struct queue_data
{
	queue_data( char *data, int len )
		:data(data), len(len), dataSent(0)
	{
	}
	char *data;
	int len;
	int dataSent;
};
#endif

class eConsoleAppContainer: public Object
{
#ifndef SWIG
	int fd[3];
	int filefd[3];
	int pid;
	int killstate;
	std::string m_cwd;
	std::queue<struct queue_data> outbuf;
	eSocketNotifier *in, *out, *err;
	void readyRead(int what);
	void readyErrRead(int what);
	void readyWrite(int what);
	void closePipes();
#endif
public:
	eConsoleAppContainer();
	int setCWD( const char *path );
	int execute( const char *str );
	int execute( const char *cmdline, const char *const argv[] );
	int execute( PyObject *cmdline, PyObject *args );
	~eConsoleAppContainer();
	int getPID() { return pid; }
	void kill();
	void sendCtrlC();
	void sendEOF();
	void write( const char *data, int len );
	void write( PyObject *data );
	void readFromFile( PyObject *py_filename );
	void dumpToFile( PyObject *py_filename );
	bool running() { return (fd[0]!=-1) && (fd[1]!=-1) && (fd[2]!=-1); }
	PSignal1<void, const char*> dataAvail;
	PSignal1<void, const char*> stdoutAvail;
	PSignal1<void, const char*> stderrAvail;
	PSignal1<void,int> dataSent;
	PSignal1<void,int> appClosed;
};

#endif // __LIB_BASE_CONSOLE_H__