00001 #ifdef CH_LANG_CC
00002
00003
00004
00005
00006
00007
00008
00009 #endif
00010
00011 #ifndef _VISITPYTHONCONNECTION_H_
00012 #define _VISITPYTHONCONNECTION_H_
00013
00014 #include <string>
00015 #include <vector>
00016 #include <sys/types.h>
00017
00018 #include "NamespaceHeader.H"
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 class VisItPythonConnection
00036 {
00037 public:
00038 VisItPythonConnection();
00039 ~VisItPythonConnection();
00040
00041
00042 bool Open(
00043 std::vector<std::string> extraargs=std::vector<std::string>());
00044
00045 bool Close();
00046
00047 bool SendCommand(const char *buff);
00048
00049 bool IsOpen();
00050
00051 std::string GetLastError();
00052
00053 protected:
00054 bool WriteString(const char *buff);
00055 bool WaitForPrompt();
00056 private:
00057 int to_cli;
00058 int from_cli;
00059
00060 int readbufferlen;
00061 char *readbuffer;
00062
00063 pid_t visitpid;
00064 std::string error;
00065 };
00066
00067 #include "NamespaceFooter.H"
00068
00069 #endif