mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-11-01 03:50:06 +00:00
JSON write error handling
This commit is contained in:
parent
b1e1297e0d
commit
6373728242
1 changed files with 12 additions and 4 deletions
|
|
@ -95,6 +95,13 @@ void WriteJsonFile(const std::string& path,
|
||||||
{
|
{
|
||||||
std::ofstream ofs {path};
|
std::ofstream ofs {path};
|
||||||
|
|
||||||
|
if (!ofs.is_open())
|
||||||
|
{
|
||||||
|
BOOST_LOG_TRIVIAL(warning)
|
||||||
|
<< logPrefix_ << "Cannot write JSON file: \"" << path << "\"";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
if (prettyPrint)
|
if (prettyPrint)
|
||||||
{
|
{
|
||||||
PrettyPrintJson(ofs, json);
|
PrettyPrintJson(ofs, json);
|
||||||
|
|
@ -104,6 +111,7 @@ void WriteJsonFile(const std::string& path,
|
||||||
ofs << json;
|
ofs << json;
|
||||||
}
|
}
|
||||||
ofs.close();
|
ofs.close();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void PrettyPrintJson(std::ostream& os,
|
static void PrettyPrintJson(std::ostream& os,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue