2002-02-27 09:59:52 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
|
|
|
* \file forkedcontr.h
|
|
|
|
* Copyright 2001 The LyX Team
|
|
|
|
* Read COPYING
|
|
|
|
*
|
|
|
|
* \author Asger Alstrup Nielsen
|
|
|
|
* \author Angus Leeming
|
|
|
|
*
|
|
|
|
* A class for the control of child processes launched using
|
|
|
|
* fork() and execvp().
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FORKEDCONTR_H
|
|
|
|
#define FORKEDCONTR_H
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
#include <vector>
|
|
|
|
#include "LString.h"
|
|
|
|
#include <sigc++/signal_system.h>
|
2002-02-27 12:51:20 +00:00
|
|
|
#include <sys/types.h> // needed for pid_t
|
2002-02-27 09:59:52 +00:00
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class Forkedcall;
|
|
|
|
class Timeout;
|
|
|
|
|
|
|
|
class ForkedcallsController : public SigC::Object {
|
|
|
|
public:
|
2002-03-02 22:57:10 +00:00
|
|
|
/// We need this to avoid warnings.
|
|
|
|
ForkedcallsController();
|
2002-03-01 17:12:13 +00:00
|
|
|
/** This d-tor should really be private, but making it public
|
|
|
|
* allows egcs 1.1 to compile the class.
|
|
|
|
*/
|
|
|
|
~ForkedcallsController();
|
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
/// Get hold of the only controller that can exist inside the process.
|
2002-03-21 17:09:55 +00:00
|
|
|
static ForkedcallsController & get();
|
2002-02-27 09:59:52 +00:00
|
|
|
|
|
|
|
/// Add a new child process to the list of controlled processes.
|
|
|
|
void addCall(Forkedcall const & newcall);
|
|
|
|
|
|
|
|
/** This method is connected to the timer. Every XX ms it is called
|
|
|
|
* so that we can check on the status of the children. Those that
|
|
|
|
* are found to have finished are removed from the list and their
|
|
|
|
* callback function is passed the final return state.
|
|
|
|
*/
|
|
|
|
void timer();
|
|
|
|
|
|
|
|
/// Return a vector of the pids of all the controlled processes.
|
|
|
|
std::vector<pid_t> const getPIDs() const;
|
|
|
|
|
|
|
|
/// Get the command string of the process.
|
|
|
|
string const getCommand(pid_t) const;
|
|
|
|
|
|
|
|
/** Kill this process prematurely and remove it from the list.
|
|
|
|
* The process is killed within tolerance secs.
|
|
|
|
* See forkedcall.[Ch] for details.
|
|
|
|
*/
|
|
|
|
void kill(pid_t, int tolerance = 5);
|
|
|
|
|
|
|
|
/// Signal emitted when the list of current child processes changes.
|
|
|
|
SigC::Signal0<void> childrenChanged;
|
2002-03-21 17:09:55 +00:00
|
|
|
|
2002-02-27 09:59:52 +00:00
|
|
|
private:
|
|
|
|
///
|
|
|
|
ForkedcallsController(ForkedcallsController const &);
|
|
|
|
|
|
|
|
/// The child processes
|
|
|
|
typedef std::list<Forkedcall *> ListType;
|
|
|
|
///
|
|
|
|
ListType forkedCalls;
|
|
|
|
|
|
|
|
/** The timer. Enables us to check the status of the children
|
|
|
|
* every XX ms and to invoke a callback on completion.
|
|
|
|
*/
|
2002-03-21 17:09:55 +00:00
|
|
|
Timeout * timeout_;
|
2002-02-27 09:59:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // FORKEDCONTR_H
|