Logger.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. using System.Collections.Generic;
  2. using System.IO;
  3. using System.Text.RegularExpressions;
  4. namespace GCHR.Control
  5. {
  6. public class Logger
  7. {
  8. public static string ConfigDatei = "config\\gchr.xml";
  9. public static string LogDatei
  10. {
  11. get { return "logs\\" + Regex.Match(ConfigDatei, @"\w*\.xml$") + ".log"; }
  12. }
  13. public static string ExportLog = LogDatei;
  14. public static void Info(string message)
  15. {
  16. lock(LogDatei)
  17. {
  18. Log(message, LogDatei);
  19. }
  20. }
  21. public static void Progress(string message)
  22. {
  23. lock(ExportLog)
  24. {
  25. Log(message, ExportLog);
  26. }
  27. }
  28. private static void Log(string message, string datei)
  29. {
  30. using (var sw = new StreamWriter(datei, true))
  31. {
  32. sw.WriteLine(message);
  33. }
  34. }
  35. public static bool DateiExistiert { get { return File.Exists(LogDatei); }
  36. }
  37. public static List<string> Historie()
  38. {
  39. if (!File.Exists(LogDatei)) return new List<string>();
  40. using (var sr = new StreamReader(LogDatei, true))
  41. {
  42. var list = new List<string>();
  43. while (!sr.EndOfStream)
  44. {
  45. var line = sr.ReadLine();
  46. if (line != null && Regex.IsMatch(line, @" - \d{2}/\d{4}$"))
  47. {
  48. list.Add(line);
  49. }
  50. }
  51. return list;
  52. }
  53. }
  54. }
  55. }