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
|
#include "write.hpp"
#include <gtest/gtest.h>
#include <fcntl.h>
#include <unistd.h>
#include "../strings/fstring.hpp"
#include "../strings/mstring.hpp"
#include "../strings/xstring.hpp"
static
int pipew(int& rfd)
{
int pfd[2];
if (-1 == pipe2(pfd, O_NONBLOCK))
{
rfd = -1;
return -1;
}
rfd = pfd[0];
return pfd[1];
}
class PipeWriter
{
private:
int rfd;
public:
io::WriteFile wf;
public:
PipeWriter(bool lb)
: wf(pipew(rfd), lb)
{}
~PipeWriter()
{
close(rfd);
}
FString slurp()
{
MString tmp;
char buf[4096];
while (true)
{
ssize_t rv = read(rfd, buf, sizeof(buf));
if (rv == -1)
{
if (errno != EAGAIN)
return {"Error, read failed :("};
rv = 0;
}
if (rv == 0)
break;
tmp += XString(buf + 0, buf + rv, nullptr);
}
return FString(tmp);
}
};
TEST(io, write1)
{
PipeWriter pw(false);
io::WriteFile& wf = pw.wf;
wf.really_put("Hello, ", 7);
EXPECT_EQ("", pw.slurp());
wf.put_line("World!\n");
EXPECT_EQ("", pw.slurp());
EXPECT_TRUE(wf.close());
EXPECT_EQ("Hello, World!\n", pw.slurp());
}
TEST(io, write2)
{
PipeWriter pw(true);
io::WriteFile& wf = pw.wf;
wf.really_put("Hello, ", 7);
EXPECT_EQ("", std::string(pw.slurp().c_str()));
wf.put_line("World!");
wf.really_put("XXX", 3);
EXPECT_EQ("Hello, World!\n", std::string(pw.slurp().c_str()));
EXPECT_TRUE(wf.close());
EXPECT_EQ("XXX", std::string(pw.slurp().c_str()));
}
|