Skip to content

Commit b98ab16

Browse files
committedOct 19, 2023
basicio: use fs::path in Impl
Signed-off-by: Rosen Penev <rosenp@gmail.com>
1 parent b1225ca commit b98ab16

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed
 

‎include/exiv2/basicio.hpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ class EXIV2API BasicIo {
218218
comprehensive error messages where only a BasicIo instance is
219219
available.
220220
*/
221-
[[nodiscard]] virtual const std::string& path() const noexcept = 0;
221+
[[nodiscard]] virtual std::string path() const noexcept = 0;
222222

223223
/*!
224224
@brief Mark all the bNone blocks to bKnow. This avoids allocating memory
@@ -455,7 +455,7 @@ class EXIV2API FileIo : public BasicIo {
455455
//! Returns true if the file position has reached the end, otherwise false.
456456
[[nodiscard]] bool eof() const override;
457457
//! Returns the path of the file
458-
[[nodiscard]] const std::string& path() const noexcept override;
458+
[[nodiscard]] std::string path() const noexcept override;
459459

460460
/*!
461461
@brief Mark all the bNone blocks to bKnow. This avoids allocating memory
@@ -636,7 +636,7 @@ class EXIV2API MemIo : public BasicIo {
636636
//! Returns true if the IO position has reached the end, otherwise false.
637637
[[nodiscard]] bool eof() const override;
638638
//! Returns a dummy path, indicating that memory access is used
639-
[[nodiscard]] const std::string& path() const noexcept override;
639+
[[nodiscard]] std::string path() const noexcept override;
640640

641641
/*!
642642
@brief Mark all the bNone blocks to bKnow. This avoids allocating memory
@@ -886,7 +886,7 @@ class EXIV2API RemoteIo : public BasicIo {
886886
//! Returns true if the IO position has reached the end, otherwise false.
887887
[[nodiscard]] bool eof() const override;
888888
//! Returns the URL of the file.
889-
[[nodiscard]] const std::string& path() const noexcept override;
889+
[[nodiscard]] std::string path() const noexcept override;
890890

891891
/*!
892892
@brief Mark all the bNone blocks to bKnow. This avoids allocating memory

‎src/basicio.cpp

+8-8
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ void BasicIo::seekOrThrow(int64_t offset, Position pos, ErrorCode err) {
7777
class FileIo::Impl {
7878
public:
7979
//! Constructor
80-
explicit Impl(std::string path);
80+
explicit Impl(fs::path path);
8181
~Impl() = default;
8282
// Enumerations
8383
//! Mode of operation
8484
enum OpMode { opRead, opWrite, opSeek };
8585
// DATA
86-
std::string path_; //!< (Standard) path
86+
fs::path path_; //!< (Standard) path
8787
std::string openMode_; //!< File open mode
8888
FILE* fp_{}; //!< File stream pointer
8989
OpMode opMode_{opSeek}; //!< File open mode
@@ -118,7 +118,7 @@ class FileIo::Impl {
118118
Impl& operator=(const Impl&) = delete; //!< Assignment
119119
};
120120

121-
FileIo::Impl::Impl(std::string path) : path_(std::move(path)) {
121+
FileIo::Impl::Impl(fs::path path) : path_(std::move(path)) {
122122
}
123123

124124
int FileIo::Impl::switchMode(OpMode opMode) {
@@ -168,7 +168,7 @@ int FileIo::Impl::switchMode(OpMode opMode) {
168168
std::fclose(fp_);
169169
openMode_ = "r+b";
170170
opMode_ = opSeek;
171-
fp_ = std::fopen(path_.c_str(), openMode_.c_str());
171+
fp_ = std::fopen(path().c_str(), openMode_.c_str());
172172
if (!fp_)
173173
return 1;
174174
#ifdef _WIN32
@@ -544,8 +544,8 @@ bool FileIo::eof() const {
544544
return std::feof(p_->fp_) != 0;
545545
}
546546

547-
const std::string& FileIo::path() const noexcept {
548-
return p_->path_;
547+
std::string FileIo::path() const noexcept {
548+
return p_->path_.string();
549549
}
550550

551551
void FileIo::populateFakeData() {
@@ -844,7 +844,7 @@ bool MemIo::eof() const {
844844
return p_->eof_;
845845
}
846846

847-
const std::string& MemIo::path() const noexcept {
847+
std::string MemIo::path() const noexcept {
848848
static std::string _path{"MemIo"};
849849
return _path;
850850
}
@@ -1353,7 +1353,7 @@ bool RemoteIo::eof() const {
13531353
return p_->eof_;
13541354
}
13551355

1356-
const std::string& RemoteIo::path() const noexcept {
1356+
std::string RemoteIo::path() const noexcept {
13571357
return p_->path_;
13581358
}
13591359

0 commit comments

Comments
 (0)