forked from FreeApophis/TrueCrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipe.cpp
More file actions
65 lines (54 loc) · 1.08 KB
/
Copy pathPipe.cpp
File metadata and controls
65 lines (54 loc) · 1.08 KB
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
/*
Copyright (c) 2008 TrueCrypt Developers Association. All rights reserved.
Governed by the TrueCrypt License 3.0 the full text of which is contained in
the file License.txt included in TrueCrypt binary and source code distribution
packages.
*/
#include <unistd.h>
#include "Pipe.h"
#include "Platform/SystemException.h"
namespace TrueCrypt
{
Pipe::Pipe ()
{
int fd[2];
throw_sys_if (pipe (fd) == -1);
ReadFileDescriptor = fd[0];
WriteFileDescriptor = fd[1];
}
Pipe::~Pipe ()
{
try
{
Close();
}
catch (...) { }
}
void Pipe::Close ()
{
if (ReadFileDescriptor != -1)
close (ReadFileDescriptor);
if (WriteFileDescriptor != -1)
close (WriteFileDescriptor);
}
int Pipe::GetReadFD ()
{
assert (ReadFileDescriptor != -1);
if (WriteFileDescriptor != -1)
{
close (WriteFileDescriptor);
WriteFileDescriptor = -1;
}
return ReadFileDescriptor;
}
int Pipe::GetWriteFD ()
{
assert (WriteFileDescriptor != -1);
if (ReadFileDescriptor != -1)
{
close (ReadFileDescriptor);
ReadFileDescriptor = -1;
}
return WriteFileDescriptor;
}
}