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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
// file : butl/fdstream.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <butl/fdstream>
#ifndef _WIN32
# include <unistd.h> // close(), read(), write()
#else
# include <io.h> // _close(), _read(), _write()
#endif
#include <system_error>
using namespace std;
namespace butl
{
fdbuf::
~fdbuf () {close ();}
void fdbuf::
open (int fd)
{
close ();
fd_ = fd;
setg (buf_, buf_, buf_);
setp (buf_, buf_ + sizeof (buf_) - 1); // Keep space for overflow's char.
}
void fdbuf::
close ()
{
if (is_open ())
{
#ifndef _WIN32
::close (fd_);
#else
_close (fd_);
#endif
fd_ = -1;
}
}
streamsize fdbuf::
showmanyc ()
{
return is_open () ? static_cast<streamsize> (egptr () - gptr ()) : -1;
}
fdbuf::int_type fdbuf::
underflow ()
{
int_type r (traits_type::eof ());
if (is_open ())
{
if (gptr () < egptr () || load ())
r = traits_type::to_int_type (*gptr ());
}
return r;
}
bool fdbuf::
load ()
{
#ifndef _WIN32
ssize_t n (::read (fd_, buf_, sizeof (buf_)));
#else
int n (_read (fd_, buf_, sizeof (buf_)));
#endif
if (n == -1)
throw system_error (errno, system_category ());
setg (buf_, buf_, buf_ + n);
return n != 0;
}
fdbuf::int_type fdbuf::
overflow (int_type c)
{
int_type r (traits_type::eof ());
if (is_open () && c != traits_type::eof ())
{
// Store last character in the space we reserved in open(). Note
// that pbump() doesn't do any checks.
//
*pptr () = traits_type::to_char_type (c);
pbump (1);
if (save ())
r = c;
}
return r;
}
int fdbuf::
sync ()
{
return is_open () && save () ? 0 : -1;
}
bool fdbuf::
save ()
{
size_t n (pptr () - pbase ());
if (n != 0)
{
#ifndef _WIN32
ssize_t m (::write (fd_, buf_, n));
#else
int m (_write (fd_, buf_, static_cast<unsigned int> (sizeof (buf_))));
#endif
if (m == -1)
throw system_error (errno, system_category ());
if (n != static_cast<size_t> (m))
return false;
setp (buf_, buf_ + sizeof (buf_) - 1);
}
return true;
}
}
|