2014-07-26 07:12:56 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Xml.Serialization;
|
2014-08-12 13:33:13 +00:00
|
|
|
|
using RainmeterStudio.Core.Model;
|
2014-07-26 07:12:56 +00:00
|
|
|
|
|
|
|
|
|
namespace RainmeterStudio.Storage
|
|
|
|
|
{
|
|
|
|
|
public class ProjectStorage
|
|
|
|
|
{
|
|
|
|
|
public Project Load(string path)
|
|
|
|
|
{
|
|
|
|
|
// Open file
|
|
|
|
|
var file = File.OpenText(path);
|
|
|
|
|
|
|
|
|
|
// Deserialize file
|
|
|
|
|
var serializer = new XmlSerializer(typeof(Project), new XmlRootAttribute("project"));
|
|
|
|
|
Project project = serializer.Deserialize(file) as Project;
|
2014-07-27 13:21:06 +00:00
|
|
|
|
if (project != null)
|
|
|
|
|
project.Path = path;
|
|
|
|
|
|
2014-07-26 07:12:56 +00:00
|
|
|
|
// Clean up
|
|
|
|
|
file.Close();
|
|
|
|
|
return project;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Save(string path, Project project)
|
|
|
|
|
{
|
|
|
|
|
// Open file
|
|
|
|
|
var file = File.OpenWrite(path);
|
|
|
|
|
|
2014-07-27 13:21:06 +00:00
|
|
|
|
// Serialize file
|
2014-07-26 07:12:56 +00:00
|
|
|
|
var serializer = new XmlSerializer(typeof(Project), new XmlRootAttribute("project"));
|
|
|
|
|
serializer.Serialize(file, project);
|
|
|
|
|
|
|
|
|
|
// Clean up
|
|
|
|
|
file.Close();
|
2014-07-27 13:21:06 +00:00
|
|
|
|
project.Path = path;
|
2014-07-26 07:12:56 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|