diff options
Diffstat (limited to 'src/openvic-dataloader/detail/Warnings.hpp')
-rw-r--r-- | src/openvic-dataloader/detail/Warnings.hpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/openvic-dataloader/detail/Warnings.hpp b/src/openvic-dataloader/detail/Warnings.hpp new file mode 100644 index 0000000..f854fa8 --- /dev/null +++ b/src/openvic-dataloader/detail/Warnings.hpp @@ -0,0 +1,21 @@ +#pragma once + +#include "openvic-dataloader/v2script/Parser.hpp" + +namespace ovdl::v2script::warnings { + inline const v2script::Parser::Warning make_utf8_warning(const char* file_path) { + constexpr std::string_view message_suffix = "This may cause problems. Prefer Windows-1252 encoding."; + + std::string message; + if (!file_path) { + message = "Buffer is a UTF-8 encoded string. " + std::string(message_suffix); + } else { + message = "File '" + std::string(file_path) + "' is a UTF-8 encoded file. " + std::string(message_suffix); + } + + return v2script::Parser::Warning { message, 1 }; + } +} + +namespace ovdl::ovscript::warnings { +}
\ No newline at end of file |