aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/function/gpg/GpgFileOpera.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/function/gpg/GpgFileOpera.cpp')
-rw-r--r--src/core/function/gpg/GpgFileOpera.cpp91
1 files changed, 77 insertions, 14 deletions
diff --git a/src/core/function/gpg/GpgFileOpera.cpp b/src/core/function/gpg/GpgFileOpera.cpp
index 7044353b..25357288 100644
--- a/src/core/function/gpg/GpgFileOpera.cpp
+++ b/src/core/function/gpg/GpgFileOpera.cpp
@@ -38,17 +38,26 @@ GpgFrontend::GpgError GpgFrontend::GpgFileOpera::EncryptFile(
KeyListPtr keys, const std::string& in_path, const std::string& out_path,
GpgEncrResult& result, int _channel) {
+#ifdef WINDOWS
+ auto in_path_std = std::filesystem::path(QString::fromStdString(in_path).toStdU16String());
+ auto out_path_std = std::filesystem::path(QString::fromStdString(out_path).toStdU16String());
+#else
+ auto in_path_std = std::filesystem::path(in_path);
+ auto out_path_std = std::filesystem::path(out_path);
+#endif
+
std::string in_buffer;
- if(!FileOperator::ReadFileStd(in_path, in_buffer)) {
+ if(!FileOperator::ReadFileStd(in_path_std, in_buffer)) {
throw std::runtime_error("read file error");
}
+
std::unique_ptr<std::string> out_buffer = nullptr;
auto err = GpgBasicOperator::GetInstance(_channel).Encrypt(
std::move(keys), in_buffer, out_buffer, result);
if (check_gpg_error_2_err_code(err) == GPG_ERR_NO_ERROR)
- if (!FileOperator::WriteFileStd(out_path, *out_buffer)) {
+ if (!FileOperator::WriteFileStd(out_path_std, *out_buffer)) {
throw std::runtime_error("write_buffer_to_file error");
};
@@ -58,8 +67,17 @@ GpgFrontend::GpgError GpgFrontend::GpgFileOpera::EncryptFile(
GpgFrontend::GpgError GpgFrontend::GpgFileOpera::DecryptFile(
const std::string& in_path, const std::string& out_path,
GpgDecrResult& result) {
+
+#ifdef WINDOWS
+ auto in_path_std = std::filesystem::path(QString::fromStdString(in_path).toStdU16String());
+ auto out_path_std = std::filesystem::path(QString::fromStdString(out_path).toStdU16String());
+#else
+ auto in_path_std = std::filesystem::path(in_path);
+ auto out_path_std = std::filesystem::path(out_path);
+#endif
+
std::string in_buffer;
- if(!FileOperator::ReadFileStd(in_path, in_buffer)) {
+ if(!FileOperator::ReadFileStd(in_path_std, in_buffer)) {
throw std::runtime_error("read file error");
}
std::unique_ptr<std::string> out_buffer;
@@ -70,7 +88,7 @@ GpgFrontend::GpgError GpgFrontend::GpgFileOpera::DecryptFile(
assert(check_gpg_error_2_err_code(err) == GPG_ERR_NO_ERROR);
if (check_gpg_error_2_err_code(err) == GPG_ERR_NO_ERROR)
- if (!FileOperator::WriteFileStd(out_path, *out_buffer)) {
+ if (!FileOperator::WriteFileStd(out_path_std, *out_buffer)) {
throw std::runtime_error("write_buffer_to_file error");
};
@@ -82,8 +100,17 @@ gpgme_error_t GpgFrontend::GpgFileOpera::SignFile(KeyListPtr keys,
const std::string& out_path,
GpgSignResult& result,
int _channel) {
+
+#ifdef WINDOWS
+ auto in_path_std = std::filesystem::path(QString::fromStdString(in_path).toStdU16String());
+ auto out_path_std = std::filesystem::path(QString::fromStdString(out_path).toStdU16String());
+#else
+ auto in_path_std = std::filesystem::path(in_path);
+ auto out_path_std = std::filesystem::path(out_path);
+#endif
+
std::string in_buffer;
- if(!FileOperator::ReadFileStd(in_path, in_buffer)) {
+ if(!FileOperator::ReadFileStd(in_path_std, in_buffer)) {
throw std::runtime_error("read file error");
}
std::unique_ptr<std::string> out_buffer;
@@ -92,7 +119,7 @@ gpgme_error_t GpgFrontend::GpgFileOpera::SignFile(KeyListPtr keys,
std::move(keys), in_buffer, out_buffer, GPGME_SIG_MODE_DETACH, result);
if (check_gpg_error_2_err_code(err) == GPG_ERR_NO_ERROR)
- if (!FileOperator::WriteFileStd(out_path, *out_buffer)) {
+ if (!FileOperator::WriteFileStd(out_path_std, *out_buffer)) {
throw std::runtime_error("write_buffer_to_file error");
};
@@ -102,14 +129,23 @@ gpgme_error_t GpgFrontend::GpgFileOpera::SignFile(KeyListPtr keys,
gpgme_error_t GpgFrontend::GpgFileOpera::VerifyFile(
const std::string& data_path, const std::string& sign_path,
GpgVerifyResult& result, int _channel) {
+
+#ifdef WINDOWS
+ auto data_path_std = std::filesystem::path(QString::fromStdString(data_path).toStdU16String());
+ auto sign_path_std = std::filesystem::path(QString::fromStdString(sign_path).toStdU16String());
+#else
+ auto data_path_std = std::filesystem::path(data_path);
+ auto sign_path_std = std::filesystem::path(sign_path);
+#endif
+
std::string in_buffer;
- if(!FileOperator::ReadFileStd(data_path, in_buffer)) {
+ if(!FileOperator::ReadFileStd(data_path_std, in_buffer)) {
throw std::runtime_error("read file error");
}
std::unique_ptr<std::string> sign_buffer = nullptr;
if (!sign_path.empty()) {
std::string sign_buffer_str;
- if (!FileOperator::ReadFileStd(sign_path, sign_buffer_str)) {
+ if (!FileOperator::ReadFileStd(sign_path_std, sign_buffer_str)) {
throw std::runtime_error("read file error");
}
sign_buffer =
@@ -124,8 +160,17 @@ gpg_error_t GpgFrontend::GpgFileOpera::EncryptSignFile(
KeyListPtr keys, KeyListPtr signer_keys, const std::string& in_path,
const std::string& out_path, GpgEncrResult& encr_res,
GpgSignResult& sign_res, int _channel) {
+
+#ifdef WINDOWS
+ auto in_path_std = std::filesystem::path(QString::fromStdString(in_path).toStdU16String());
+ auto out_path_std = std::filesystem::path(QString::fromStdString(out_path).toStdU16String());
+#else
+ auto in_path_std = std::filesystem::path(in_path);
+ auto out_path_std = std::filesystem::path(out_path);
+#endif
+
std::string in_buffer;
- if(!FileOperator::ReadFileStd(in_path, in_buffer)) {
+ if(!FileOperator::ReadFileStd(in_path_std, in_buffer)) {
throw std::runtime_error("read file error");
}
std::unique_ptr<std::string> out_buffer = nullptr;
@@ -135,7 +180,7 @@ gpg_error_t GpgFrontend::GpgFileOpera::EncryptSignFile(
sign_res);
if (check_gpg_error_2_err_code(err) == GPG_ERR_NO_ERROR)
- if (!FileOperator::WriteFileStd(out_path, *out_buffer)) {
+ if (!FileOperator::WriteFileStd(out_path_std, *out_buffer)) {
throw std::runtime_error("write_buffer_to_file error");
};
@@ -145,8 +190,17 @@ gpg_error_t GpgFrontend::GpgFileOpera::EncryptSignFile(
gpg_error_t GpgFrontend::GpgFileOpera::DecryptVerifyFile(
const std::string& in_path, const std::string& out_path,
GpgDecrResult& decr_res, GpgVerifyResult& verify_res) {
+
+#ifdef WINDOWS
+ auto in_path_std = std::filesystem::path(QString::fromStdString(in_path).toStdU16String());
+ auto out_path_std = std::filesystem::path(QString::fromStdString(out_path).toStdU16String());
+#else
+ auto in_path_std = std::filesystem::path(in_path);
+ auto out_path_std = std::filesystem::path(out_path);
+#endif
+
std::string in_buffer;
- if(!FileOperator::ReadFileStd(in_path, in_buffer)) {
+ if(!FileOperator::ReadFileStd(in_path_std, in_buffer)) {
throw std::runtime_error("read file error");
}
@@ -155,7 +209,7 @@ gpg_error_t GpgFrontend::GpgFileOpera::DecryptVerifyFile(
decr_res, verify_res);
if (check_gpg_error_2_err_code(err) == GPG_ERR_NO_ERROR)
- if (!FileOperator::WriteFileStd(out_path, *out_buffer)) {
+ if (!FileOperator::WriteFileStd(out_path_std, *out_buffer)) {
throw std::runtime_error("write file error");
};
@@ -164,8 +218,17 @@ gpg_error_t GpgFrontend::GpgFileOpera::DecryptVerifyFile(
unsigned int GpgFrontend::GpgFileOpera::EncryptFileSymmetric(
const std::string& in_path, const std::string& out_path,
GpgFrontend::GpgEncrResult& result, int _channel) {
+
+#ifdef WINDOWS
+ auto in_path_std = std::filesystem::path(QString::fromStdString(in_path).toStdU16String());
+ auto out_path_std = std::filesystem::path(QString::fromStdString(out_path).toStdU16String());
+#else
+ auto in_path_std = std::filesystem::path(in_path);
+ auto out_path_std = std::filesystem::path(out_path);
+#endif
+
std::string in_buffer;
- if(!FileOperator::ReadFileStd(in_path, in_buffer)) {
+ if(!FileOperator::ReadFileStd(in_path_std, in_buffer)) {
throw std::runtime_error("read file error");
}
@@ -174,7 +237,7 @@ unsigned int GpgFrontend::GpgFileOpera::EncryptFileSymmetric(
in_buffer, out_buffer, result);
if (check_gpg_error_2_err_code(err) == GPG_ERR_NO_ERROR)
- if (!FileOperator::WriteFileStd(out_path, *out_buffer)) {
+ if (!FileOperator::WriteFileStd(out_path_std, *out_buffer)) {
throw std::runtime_error("write_buffer_to_file error");
};