@@ -77,13 +77,13 @@ void BasicIo::seekOrThrow(int64_t offset, Position pos, ErrorCode err) {
77
77
class FileIo ::Impl {
78
78
public:
79
79
// ! Constructor
80
- explicit Impl (std::string path);
80
+ explicit Impl (fs::path path);
81
81
~Impl () = default ;
82
82
// Enumerations
83
83
// ! Mode of operation
84
84
enum OpMode { opRead, opWrite, opSeek };
85
85
// DATA
86
- std::string path_; // !< (Standard) path
86
+ fs::path path_; // !< (Standard) path
87
87
std::string openMode_; // !< File open mode
88
88
FILE* fp_{}; // !< File stream pointer
89
89
OpMode opMode_{opSeek}; // !< File open mode
@@ -118,7 +118,7 @@ class FileIo::Impl {
118
118
Impl& operator =(const Impl&) = delete ; // !< Assignment
119
119
};
120
120
121
- FileIo::Impl::Impl (std::string path) : path_(std::move(path)) {
121
+ FileIo::Impl::Impl (fs::path path) : path_(std::move(path)) {
122
122
}
123
123
124
124
int FileIo::Impl::switchMode (OpMode opMode) {
@@ -168,7 +168,7 @@ int FileIo::Impl::switchMode(OpMode opMode) {
168
168
std::fclose (fp_);
169
169
openMode_ = " r+b" ;
170
170
opMode_ = opSeek;
171
- fp_ = std::fopen (path_.c_str (), openMode_.c_str ());
171
+ fp_ = std::fopen (path_.string (). c_str (), openMode_.c_str ());
172
172
if (!fp_)
173
173
return 1 ;
174
174
#ifdef _WIN32
@@ -544,8 +544,8 @@ bool FileIo::eof() const {
544
544
return std::feof (p_->fp_ ) != 0 ;
545
545
}
546
546
547
- const std::string& FileIo::path () const noexcept {
548
- return p_->path_ ;
547
+ std::string FileIo::path () const noexcept {
548
+ return p_->path_ . string () ;
549
549
}
550
550
551
551
void FileIo::populateFakeData () {
@@ -844,7 +844,7 @@ bool MemIo::eof() const {
844
844
return p_->eof_ ;
845
845
}
846
846
847
- const std::string& MemIo::path () const noexcept {
847
+ std::string MemIo::path () const noexcept {
848
848
static std::string _path{" MemIo" };
849
849
return _path;
850
850
}
@@ -1353,7 +1353,7 @@ bool RemoteIo::eof() const {
1353
1353
return p_->eof_ ;
1354
1354
}
1355
1355
1356
- const std::string& RemoteIo::path () const noexcept {
1356
+ std::string RemoteIo::path () const noexcept {
1357
1357
return p_->path_ ;
1358
1358
}
1359
1359
0 commit comments