blob: efcab1078d4e43a94840e268f0a324fd657ea32e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "InPipe.h"
#include "Output.h"
#include "gettext.h"
InPipe::InPipe() : Handle(pipe(p, 0)), hooked(0) {
}
InPipe::InPipe(const InPipe & i) : Handle(i), hooked(i.hooked) {
p[0] = GetHandle();
p[1] = dup(i.p[1]);
}
InPipe::~InPipe() {
if (hooked) {
::close(1);
dup(Stdout.GetHandle());
}
}
void InPipe::Hook() {
if (!hooked) {
hooked = 1;
::close(1);
dup(p[1]);
::close(p[1]);
}
}
bool InPipe::CanWrite() {
return false;
}
bool InPipe::CanRead() {
return true;
}
String InPipe::GetName() {
return (String(_("Input pipe from stdout (")) + (hooked ? "" : _("not ")) + _("hooked)"));
}
|