add shell-free pipestream
[libi2ncommon] / src / pipestream.hxx
CommitLineData
0e23f538
TJ
1 /*
2The software in this package is distributed under the GNU General
3Public License version 2 (with a special exception described below).
4
5A copy of GNU General Public License (GPL) is included in this distribution,
6in the file COPYING.GPL.
7
8As a special exception, if other files instantiate templates or use macros
9or inline functions from this file, or you compile this file and link it
10with other works to produce a work based on this file, this file
11does not by itself cause the resulting work to be covered
12by the GNU General Public License.
13
14However the source code for this file must still be made available
15in accordance with section (3) of the GNU General Public License.
16
17This exception does not invalidate any other reasons why a work based
18on this file might be covered by the GNU General Public License.
19*/
e93545dd
GE
20/***************************************************************************
21 inpipestream.hxx - C++ streambuffer wrapper
22 -------------------
23 begin : Thu Dec 27 2001
24 copyright : (C) 2001 by Intra2net AG
e93545dd
GE
25 ***************************************************************************/
26
27#ifndef _PIPESTREAM
28#define _PIPESTREAM
29
be3dbe32
TJ
30#include <stdio.h>
31
e93545dd
GE
32#include <string>
33#include <streambuf>
4a56f9ac
GE
34#include <istream>
35#include <ostream>
e93545dd 36
f8f119bf
GE
37struct ExecResult
38{
39 /** if the program exited normally and returned a return code */
40 bool normal_exit;
41
42 /** the real return code of the program, only set when normal_exit true */
43 char return_code;
44
45 /** if the program was terminated by a signal */
46 bool terminated_by_signal;
47
48 /** number of the signal that terminated the program, only valid when terminated_by_signal true */
49 int signal;
50
51 /** errormessage if we have one */
52 std::string error_message;
53};
54typedef struct ExecResult ExecResult;
55
56std::string capture_exec(const std::string& command, ExecResult &rescode);
9e322fb7 57std::string capture_exec(const char *const *command, ExecResult &rescode);
f8f119bf 58
9e322fb7
PG
59inline std::string capture_exec (const std::string &command)
60{
61 ExecResult r;
62 return capture_exec(command,r);
63}
64
65inline std::string capture_exec(const char *const *command)
f8f119bf
GE
66{
67 ExecResult r;
68 return capture_exec(command,r);
69}
70
bf4c487c
CH
71/** @brief runs command and provides buffered input for it through pipe
72 *
73 * opens pipe to command using popen; exit status available after destruction
74 * (use WEXITSTATUS to get the "regular" return code (lowest byte))
75 *
76 * ATTENTION: A lot of mysterious STL bugs occured
77 * with a "real" buffer (buffer larger than 1 byte and up to 100 bytes)
78 * -> Keep it slow and working!
79 */
e93545dd
GE
80class inpipebuf : public std::streambuf
81{
20a79471
TJ
82protected:
83 char buffer;
9e322fb7 84
20a79471
TJ
85 FILE *pipe;
86
87 // "callback" variables for destructor to store exit status
88 bool *status_set;
89 int *exit_status;
90
91public:
7e606af5 92 inpipebuf(const std::string& command);
9e322fb7 93 inpipebuf(const char *const *command);
20a79471 94
7e606af5 95 ~inpipebuf();
20a79471 96
7e606af5 97 void store_exit_status(bool *_status_set, int *_exit_status);
20a79471
TJ
98
99protected:
7e606af5 100 virtual int_type underflow();
9e322fb7
PG
101
102private:
103 FILE *init_without_shell (const char *const *argv) const;
20a79471 104};
e93545dd 105
bf4c487c 106/** @brief stream around inpipebuf -- see comment there */
e93545dd
GE
107class inpipestream : public std::istream
108{
20a79471
TJ
109protected:
110 inpipebuf buf;
111
112public:
113 inpipestream(const std::string& command)
d8ffcdb0 114 : std::istream(&buf), buf(command)
20a79471 115 {}
9e322fb7
PG
116 inpipestream(const char *const command[])
117 : std::istream(&buf), buf(command)
118 {}
20a79471
TJ
119
120 void store_exit_status(bool *_status_set, int *_exit_status)
121 { buf.store_exit_status(_status_set, _exit_status); }
e93545dd
GE
122};
123
bf4c487c
CH
124/** @brief runs command and provides buffered ouptput from it through pipe
125 *
126 * opens pipe to command using popen; exit status available after destruction
127 * (use WEXITSTATUS to get the "regular" return code (lowest byte))
128 */
e93545dd
GE
129class outpipebuf : public std::streambuf
130{
20a79471
TJ
131protected:
132 FILE *pipe;
133
134 // "callback" variables for destructor to store exit status
135 bool *status_set;
136 int *exit_status;
137
138public:
7e606af5
GE
139 outpipebuf(const std::string& command);
140
141 ~outpipebuf();
20a79471 142
bf4c487c 143 /** note: exit status only available after destruction */
7e606af5 144 void store_exit_status(bool *_status_set, int *_exit_status);
20a79471
TJ
145
146protected:
7e606af5
GE
147 virtual int_type overflow(int_type c);
148
149 virtual std::streamsize xsputn(const char* s, std::streamsize num);
e93545dd
GE
150};
151
bf4c487c
CH
152
153/** @brief stream around outpipebuf -- see comment there */
e93545dd
GE
154class outpipestream : public std::ostream
155{
20a79471
TJ
156protected:
157 outpipebuf buf;
158public:
159 outpipestream(const std::string& command)
d8ffcdb0 160 : std::ostream(&buf), buf(command)
20a79471
TJ
161 {}
162
163 void store_exit_status(bool *_status_set, int *_exit_status)
164 { buf.store_exit_status(_status_set, _exit_status); }
e93545dd
GE
165};
166
167#endif