Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebJobManager/HeuristicLab.Core/3.3/Log.cs @ 15024

Last change on this file since 15024 was 13656, checked in by ascheibe, 8 years ago

#2582 created branch for Hive Web Job Manager

File size: 3.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
23using System.Collections.Generic;
24using System.Drawing;
25using HeuristicLab.Common;
26using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
27using HeuristicLab.PluginInfrastructure;
28
29namespace HeuristicLab.Core {
30  [Item("Log", "A log for logging string messages.")]
31  [StorableClass]
32  public sealed class Log : Item, ILog, IStorableContent {
33    public string Filename { get; set; }
34
35    public static new Image StaticItemImage
36    {
37      get { return new Bitmap(25, 25); }
38    }
39
40    [Storable]
41    private IList<string> messages;
42    public IEnumerable<string> Messages
43    {
44      get { return messages; }
45    }
46
47    [Storable]
48    private long maxMessageCount;
49    public long MaxMessageCount
50    {
51      get { return maxMessageCount; }
52    }
53
54    [StorableConstructor]
55    private Log(bool deserializing) : base(deserializing) { }
56    private Log(Log original, Cloner cloner)
57      : base(original, cloner) {
58      this.messages = new List<string>(original.messages);
59      this.maxMessageCount = original.maxMessageCount;
60    }
61    public Log(long maxMessageCount = -1)
62      : base() {
63      this.messages = new List<string>();
64      this.maxMessageCount = maxMessageCount;
65    }
66
67    public override IDeepCloneable Clone(Cloner cloner) {
68      return new Log(this, cloner);
69    }
70
71    public void Clear() {
72      messages.Clear();
73      OnCleared();
74    }
75    public void LogMessage(string message) {
76      string s = FormatLogMessage(message);
77      messages.Add(s);
78      CapMessages();
79      OnMessageAdded(s);
80    }
81    public void LogException(Exception ex) {
82      string s = FormatException(ex);
83      messages.Add(s);
84      CapMessages();
85      OnMessageAdded(s);
86    }
87    private void CapMessages() {
88      while (maxMessageCount >= 0 && messages.Count > maxMessageCount) {
89        messages.RemoveAt(0);
90      }
91    }
92    public static string FormatLogMessage(string message) {
93      return DateTime.Now.ToString() + "\t" + message;
94    }
95    public static string FormatException(Exception ex) {
96      return DateTime.Now.ToString() + "\t" + "Exception occurred:" + Environment.NewLine + ErrorHandling.BuildErrorMessage(ex);
97    }
98
99    public event EventHandler<EventArgs<string>> MessageAdded;
100    private void OnMessageAdded(string message) {
101      EventHandler<EventArgs<string>> handler = MessageAdded;
102      if (handler != null) handler(this, new EventArgs<string>(message));
103    }
104    public event EventHandler Cleared;
105    private void OnCleared() {
106      EventHandler handler = Cleared;
107      if (handler != null) handler(this, EventArgs.Empty);
108    }
109  }
110}
Note: See TracBrowser for help on using the repository browser.