2015-02-12 23:16:25 +08:00
|
|
|
// Aseprite
|
|
|
|
// Copyright (C) 2001-2015 David Capello
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License version 2 as
|
|
|
|
// published by the Free Software Foundation.
|
2012-05-03 11:32:40 +08:00
|
|
|
|
2013-10-15 06:58:11 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "app/xml_document.h"
|
|
|
|
|
|
|
|
#include "app/xml_exception.h"
|
|
|
|
#include "base/file_handle.h"
|
2012-05-03 11:32:40 +08:00
|
|
|
|
2013-10-15 06:58:11 +08:00
|
|
|
#include "tinyxml.h"
|
2012-05-03 11:32:40 +08:00
|
|
|
|
2013-10-15 06:58:11 +08:00
|
|
|
namespace app {
|
2012-05-03 11:32:40 +08:00
|
|
|
|
2013-10-15 06:58:11 +08:00
|
|
|
using namespace base;
|
|
|
|
|
2014-04-21 06:53:27 +08:00
|
|
|
XmlDocumentRef open_xml(const std::string& filename)
|
2012-05-03 11:32:40 +08:00
|
|
|
{
|
2013-10-15 06:58:11 +08:00
|
|
|
FileHandle file(open_file(filename, "rb"));
|
|
|
|
if (!file)
|
|
|
|
throw Exception("Error loading file: " + filename);
|
2012-05-03 11:32:40 +08:00
|
|
|
|
2013-10-15 06:58:11 +08:00
|
|
|
// Try to load the XML file
|
|
|
|
XmlDocumentRef doc(new TiXmlDocument());
|
|
|
|
doc->SetValue(filename.c_str());
|
|
|
|
if (!doc->LoadFile(file))
|
|
|
|
throw XmlException(doc);
|
2012-05-03 11:32:40 +08:00
|
|
|
|
2013-10-15 06:58:11 +08:00
|
|
|
return doc;
|
|
|
|
}
|
2012-05-03 11:32:40 +08:00
|
|
|
|
2014-10-29 22:58:03 +08:00
|
|
|
void save_xml(XmlDocumentRef doc, const std::string& filename)
|
|
|
|
{
|
|
|
|
FileHandle file(open_file(filename, "wb"));
|
|
|
|
if (!file)
|
|
|
|
throw Exception("Error loading file: " + filename);
|
|
|
|
|
|
|
|
if (!doc->SaveFile(file))
|
|
|
|
throw XmlException(doc);
|
|
|
|
}
|
|
|
|
|
2013-10-15 06:58:11 +08:00
|
|
|
} // namespace app
|