ConfigIO.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. using System;
  2. using System.IO;
  3. using System.Windows;
  4. using System.Xml.Serialization;
  5. namespace GCHR.Control.IO
  6. {
  7. abstract class ConfigIO
  8. {
  9. protected ConfigIO(string datei, Type type)
  10. {
  11. _datei = datei;
  12. _type = type;
  13. }
  14. private readonly string _datei;
  15. private readonly Type _type;
  16. private string BackupDatei { get { return string.Format("{0}.bak", _datei); } }
  17. public abstract object Laden();
  18. protected object DateiLaden()
  19. {
  20. if (!File.Exists(_datei)) return null;
  21. var serializer = new XmlSerializer(_type);
  22. using (var stream = File.OpenText(_datei))
  23. {
  24. var gcsConfig = serializer.Deserialize(stream);
  25. stream.Close();
  26. return gcsConfig;
  27. }
  28. }
  29. public void Speichern(object config)
  30. {
  31. var serializer = new XmlSerializer(_type);
  32. try
  33. {
  34. using (var stream = File.CreateText(BackupDatei))
  35. {
  36. serializer.Serialize(stream, config);
  37. stream.Close();
  38. }
  39. File.Delete(_datei);
  40. File.Move(BackupDatei, _datei);
  41. }
  42. catch (Exception)
  43. {
  44. MessageBox.Show(
  45. string.Format("Es ist ein Fehler aufgetreten. Die Datei '{0}' konnte nicht gespeichert werden.",
  46. _datei));
  47. }
  48. }
  49. }
  50. }