-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathRfileFd.cpp
More file actions
129 lines (105 loc) · 3.14 KB
/
RfileFd.cpp
File metadata and controls
129 lines (105 loc) · 3.14 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
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
// $Id: RfileFd.cpp 1180 2019-07-08 15:46:59Z mueller $
// SPDX-License-Identifier: GPL-3.0-or-later
// Copyright 2019- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
//
// Revision History:
// Date Rev Version Comment
// 2019-07-08 1180 1.1 add Open(fnam,flags,mode,emsg)
// 2019-06-15 1163 1.0 Initial version
// ---------------------------------------------------------------------------
/*!
\brief Implemenation of class RfileFd.
*/
#include <errno.h>
#include "RfileFd.hpp"
using namespace std;
/*!
\class Retro::RfileFd
\brief FIXME_docs
*/
// all method definitions in namespace Retro
namespace Retro {
//------------------------------------------+-----------------------------------
//! FIXME_docs
RfileFd::RfileFd()
: RfileFd("RfileFd::")
{}
//------------------------------------------+-----------------------------------
//! FIXME_docs
RfileFd::RfileFd(const char* cnam)
: Rfd(cnam)
{}
//------------------------------------------+-----------------------------------
//! FIXME_docs
bool RfileFd::Open(const char* fname, int flags, RerrMsg& emsg)
{
Close();
if (!SetFd(::open(fname, flags))) {
emsg.InitErrno(fCnam+"Open()",
string("open() for '") + fname + "' failed: ", errno);
}
return IsOpen();
}
//------------------------------------------+-----------------------------------
//! FIXME_docs
bool RfileFd::Open(const char* fname, int flags, mode_t mode, RerrMsg& emsg)
{
Close();
if (!SetFd(::open(fname, flags, mode))) {
emsg.InitErrno(fCnam+"Open()",
string("open() for '") + fname + "' failed: ", errno);
}
return IsOpen();
}
//------------------------------------------+-----------------------------------
//! FIXME_docs
bool RfileFd::Stat(struct stat *sbuf, RerrMsg& emsg)
{
if (::fstat(fFd, sbuf) < 0) {
emsg.InitErrno(fCnam+"Stat()", "stat() failed: ", errno);
return false;
}
return true;
}
//------------------------------------------+-----------------------------------
//! FIXME_docs
off_t RfileFd::Seek(off_t offset, int whence, RerrMsg& emsg)
{
if (::lseek(fFd, offset, whence) < 0) {
emsg.InitErrno(fCnam+"Seek()", "seek() failed: ", errno);
return false;
}
return true;
}
//------------------------------------------+-----------------------------------
//! FIXME_docs
bool RfileFd::Truncate(off_t length, RerrMsg& emsg)
{
if (::ftruncate(fFd, length) < 0) {
emsg.InitErrno(fCnam+"Truncate()", "ftruncate() failed: ", errno);
return false;
}
return true;
}
//------------------------------------------+-----------------------------------
//! FIXME_docs
ssize_t RfileFd::Read(void *buf, size_t count, RerrMsg& emsg)
{
ssize_t irc = ::read(fFd, buf, count);
if (irc < 0) {
emsg.InitErrno(fCnam+"Read()", "read() failed: ", errno);
}
return irc;
}
//------------------------------------------+-----------------------------------
//! FIXME_docs
bool RfileFd::WriteAll(const void *buf, size_t count, RerrMsg& emsg)
{
ssize_t irc = ::write(fFd, buf, count);
if (irc < ssize_t(count)) {
emsg.InitErrno("WriteAll()", "write() failed: ", errno);
return false;
}
return true;
}
} // end namespace Retro