blob: 6a3edd32df5e4a56be3e7ce31fbc1fac55187d55 (
plain) (
blame)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
//
// PipeImpl_POSIX.cpp
//
// Library: Foundation
// Package: Processes
// Module: PipeImpl
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "Poco/PipeImpl_POSIX.h"
#include "Poco/Exception.h"
#include <sys/types.h>
#include <unistd.h>
#include <errno.h>
namespace Poco {
PipeImpl::PipeImpl()
{
int fds[2];
int rc = pipe(fds);
if (rc == 0)
{
_readfd = fds[0];
_writefd = fds[1];
}
else throw CreateFileException("anonymous pipe");
}
PipeImpl::~PipeImpl()
{
closeRead();
closeWrite();
}
int PipeImpl::writeBytes(const void* buffer, int length)
{
poco_assert (_writefd != -1);
int n;
do
{
n = write(_writefd, buffer, length);
}
while (n < 0 && errno == EINTR);
if (n >= 0)
return n;
else
throw WriteFileException("anonymous pipe");
}
int PipeImpl::readBytes(void* buffer, int length)
{
poco_assert (_readfd != -1);
int n;
do
{
n = read(_readfd, buffer, length);
}
while (n < 0 && errno == EINTR);
if (n >= 0)
return n;
else
throw ReadFileException("anonymous pipe");
}
PipeImpl::Handle PipeImpl::readHandle() const
{
return _readfd;
}
PipeImpl::Handle PipeImpl::writeHandle() const
{
return _writefd;
}
void PipeImpl::closeRead()
{
if (_readfd != -1)
{
close(_readfd);
_readfd = -1;
}
}
void PipeImpl::closeWrite()
{
if (_writefd != -1)
{
close(_writefd);
_writefd = -1;
}
}
} // namespace Poco
|