summaryrefslogtreecommitdiff
path: root/Source/Core/Common/FileUtil.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@innovatetechnologi.es>2017-08-21 12:00:25 +0200
committerLéo Lam <leo@innovatetechnologi.es>2017-08-21 18:31:46 +0200
commit6f923ffae44aa0859530781eaa53bb621dbf8d40 (patch)
treef015bf557a174bbc4a282bed94830c8ac9776e7f /Source/Core/Common/FileUtil.cpp
parent36a0c689d0b9c7482ef93866b8f3bfc7a98d8250 (diff)
FileUtil: Simplify File::Copy on non-Windows platforms
The old way of doing it is error prone and unnecessarily complex.
Diffstat (limited to 'Source/Core/Common/FileUtil.cpp')
-rw-r--r--Source/Core/Common/FileUtil.cpp62
1 files changed, 10 insertions, 52 deletions
diff --git a/Source/Core/Common/FileUtil.cpp b/Source/Core/Common/FileUtil.cpp
index 627cf9188f..725d5134c5 100644
--- a/Source/Core/Common/FileUtil.cpp
+++ b/Source/Core/Common/FileUtil.cpp
@@ -7,6 +7,7 @@
#include <cstdio>
#include <cstring>
#include <fcntl.h>
+#include <fstream>
#include <limits.h>
#include <string>
#include <sys/stat.h>
@@ -317,65 +318,22 @@ bool RenameSync(const std::string& srcFilename, const std::string& destFilename)
return true;
}
-// copies file srcFilename to destFilename, returns true on success
-bool Copy(const std::string& srcFilename, const std::string& destFilename)
+// copies file source_path to destination_path, returns true on success
+bool Copy(const std::string& source_path, const std::string& destination_path)
{
- INFO_LOG(COMMON, "Copy: %s --> %s", srcFilename.c_str(), destFilename.c_str());
+ INFO_LOG(COMMON, "Copy: %s --> %s", source_path.c_str(), destination_path.c_str());
#ifdef _WIN32
- if (CopyFile(UTF8ToTStr(srcFilename).c_str(), UTF8ToTStr(destFilename).c_str(), FALSE))
+ if (CopyFile(UTF8ToTStr(source_path).c_str(), UTF8ToTStr(destination_path).c_str(), FALSE))
return true;
- ERROR_LOG(COMMON, "Copy: failed %s --> %s: %s", srcFilename.c_str(), destFilename.c_str(),
+ ERROR_LOG(COMMON, "Copy: failed %s --> %s: %s", source_path.c_str(), destination_path.c_str(),
GetLastErrorString().c_str());
return false;
#else
-
-// buffer size
-#define BSIZE 1024
-
- char buffer[BSIZE];
-
- // Open input file
- std::ifstream input;
- OpenFStream(input, srcFilename, std::ifstream::in | std::ifstream::binary);
- if (!input.is_open())
- {
- ERROR_LOG(COMMON, "Copy: failed to open %s", srcFilename.c_str());
- return false;
- }
-
- // open output file
- File::IOFile output(destFilename, "wb");
-
- if (!output.IsOpen())
- {
- ERROR_LOG(COMMON, "Copy: output failed %s --> %s: %s", srcFilename.c_str(),
- destFilename.c_str(), LastStrerrorString().c_str());
- return false;
- }
-
- // copy loop
- while (!input.eof())
- {
- // read input
- input.read(buffer, BSIZE);
- if (!input)
- {
- ERROR_LOG(COMMON, "Copy: failed reading from source, %s --> %s", srcFilename.c_str(),
- destFilename.c_str());
- return false;
- }
-
- // write output
- if (!output.WriteBytes(buffer, BSIZE))
- {
- ERROR_LOG(COMMON, "Copy: failed writing to output, %s --> %s: %s", srcFilename.c_str(),
- destFilename.c_str(), LastStrerrorString().c_str());
- return false;
- }
- }
-
- return true;
+ std::ifstream source{source_path, std::ios::binary};
+ std::ofstream destination{destination_path, std::ios::binary};
+ destination << source.rdbuf();
+ return source.good() && destination.good();
#endif
}