00001
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef XAPIAN_INCLUDED_PROGCLIENT_H
00022 #define XAPIAN_INCLUDED_PROGCLIENT_H
00023
00024 #include <sys/types.h>
00025
00026 #include "remote-database.h"
00027
00034 class ProgClient : public RemoteDatabase {
00036 void operator=(const ProgClient &);
00037
00039 ProgClient(const ProgClient &);
00040
00041 #ifndef __WIN32__
00043 pid_t pid;
00044 #endif
00045
00059 static int run_program(const std::string &progname,
00060 const std::string &args
00061 #ifndef __WIN32__
00062 , pid_t &pid
00063 #endif
00064 );
00065
00075 static std::string get_progcontext(const std::string &progname,
00076 const std::string &args);
00077
00078 public:
00086 ProgClient(const std::string &progname,
00087 const std::string &arg,
00088 int msecs_timeout,
00089 bool writable);
00090
00092 ~ProgClient();
00093 };
00094
00095 #endif // XAPIAN_INCLUDED_PROGCLIENT_H