]> git.lyx.org Git - lyx.git/blob - src/support/syscall.h
export patch from Dekel
[lyx.git] / src / support / syscall.h
1 // -*- C++ -*-
2 #include <sys/types.h>
3
4 #include "LString.h"
5
6 #ifdef __GNUG__
7 #pragma interface
8 #endif
9
10 /**
11   This class can be used to start child processes.
12
13   An instance of the class represents a child process.
14   You should use this class if you need to start an external program in LyX.
15   If you wish, you can have a callback function executed when the process
16   finishes.
17   You can chose between three kinds of child processes:
18   1) System processes, which are initiated with the "system" call,
19      where the main thread waits for the system call to return.
20   2) Wait for child process, which are forked, but the main thread waits for
21      the child to end.
22   3) Don't wait, which are forked, but the main thread is not stopped.
23      The process can be considered a background process.
24      A timer will make sure that any callback function is called when
25      the child process ends.
26
27   Notice that any callback associated with a process is called whatever
28   the kind of child process.
29   */
30 class Systemcalls {
31 public:
32         ///
33         enum Starttype {
34                 System, // Uses system() which uses /bin/sh
35                 SystemDontWait, // Uses system() which uses /bin/sh
36                 Wait, // Uses fork() and execvp()
37                 DontWait // Uses fork() and execvp()
38         };
39         
40         /// Callback function gets commandline and return value from child
41         typedef void (*Callbackfct)(string cmd, int retval);
42         
43         ///
44         Systemcalls();
45         
46         /** Generate instance and start child process.
47           The string "what" contains a commandline with arguments separated 
48           by spaces.
49           When the requested program finishes, the callback-function is 
50           called with the commandline and the return value from the program.
51           The instance is automatically added to a timer check if starttype 
52           is DontWait (i.e. background execution). When a background child
53           finishes, the timer check will automatically call the callback
54           function.
55           */
56         Systemcalls(Starttype how, string const & what, Callbackfct call = 0);
57         
58         ///
59         ~Systemcalls();
60         
61         /** Start childprocess. "what" contains a command at system level.
62          * This is for reuse of the Systemcalls instance.
63          */
64         int startscript(Starttype how, string const & what, 
65                         Callbackfct call = 0);
66         
67         /** gets PID of childprocess. Used by timer */
68         pid_t getpid() { return pid; }
69         
70         /// Start callback
71         void callback() { if (cbk) cbk(command, retval); }
72
73         /** Set return value. Used by timer */
74         void setRetValue(int r) { retval = r; }
75
76         /** Kill child prematurely.
77         First, a SIGHUP is sent to the child.
78         If that does not end the child process within "tolerance"
79         seconds, the SIGKILL signal is sent to the child.
80         When the child is dead, the callback is called.
81         */
82         void kill(int tolerance = 5);
83 private:
84         /// Type of execution: system, wait for child or background
85         Starttype start;
86
87         /// Callback function
88         Callbackfct cbk;
89
90         /// Commmand line
91         string command;
92
93         /// Process ID of child
94         pid_t pid;
95
96         /// Return value from child
97         int retval;
98         
99         ///
100         int startscript();
101         
102         ///
103         pid_t fork();
104         
105         /// Wait for child process to finish. Updates returncode from child.
106         void waitForChild();
107 };