2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2013-2022 Mnemosyne LLC.
|
2022-02-07 16:25:02 +00:00
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0-only), GPLv3 (SPDX: GPL-3.0-only),
|
2022-01-20 18:27:56 +00:00
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2014-09-21 18:08:56 +00:00
|
|
|
|
2021-09-19 20:41:35 +00:00
|
|
|
#include <algorithm>
|
2022-01-13 02:13:58 +00:00
|
|
|
#include <string_view>
|
2014-09-21 18:08:56 +00:00
|
|
|
|
|
|
|
#include "transmission.h"
|
2015-04-11 14:54:01 +00:00
|
|
|
#include "error.h"
|
2014-09-21 18:08:56 +00:00
|
|
|
#include "file.h"
|
2017-06-08 07:24:12 +00:00
|
|
|
#include "tr-assert.h"
|
2014-09-21 18:08:56 +00:00
|
|
|
|
2021-12-28 02:32:22 +00:00
|
|
|
using namespace std::literals;
|
|
|
|
|
2022-11-27 18:11:25 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
static auto constexpr NativeEol = "\r\n"sv;
|
|
|
|
#else
|
|
|
|
static auto constexpr NativeEol = "\n"sv;
|
|
|
|
#endif
|
|
|
|
|
2021-12-27 22:47:25 +00:00
|
|
|
bool tr_sys_file_write_line(tr_sys_file_t handle, std::string_view buffer, tr_error** error)
|
2014-09-21 18:08:56 +00:00
|
|
|
{
|
2017-06-08 07:24:12 +00:00
|
|
|
TR_ASSERT(handle != TR_BAD_SYS_FILE);
|
2014-09-21 18:08:56 +00:00
|
|
|
|
2021-12-27 22:47:25 +00:00
|
|
|
bool ret = tr_sys_file_write(handle, std::data(buffer), std::size(buffer), nullptr, error);
|
2014-09-21 18:08:56 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
if (ret)
|
|
|
|
{
|
2022-11-27 18:11:25 +00:00
|
|
|
ret = tr_sys_file_write(handle, std::data(NativeEol), std::size(NativeEol), nullptr, error);
|
2017-04-19 12:04:45 +00:00
|
|
|
}
|
2014-09-21 18:08:56 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
return ret;
|
2014-09-21 18:08:56 +00:00
|
|
|
}
|