Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core/3.3/Log.cs @ 4419

Last change on this file since 4419 was 4419, checked in by swagner, 14 years ago

Enabled saving only for some specific items (#1193)

File size: 2.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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 class Log : Item, ILog, IStorableContent {
33    public string Filename { get; set; }
34
35    public override Image ItemImage {
36      get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.File; }
37    }
38
39    [Storable]
40    protected IList<string> messages;
41    public virtual IEnumerable<string> Messages {
42      get { return messages; }
43    }
44
45    public Log()
46      : base() {
47      messages = new List<string>();
48    }
49    [StorableConstructor]
50    protected Log(bool deserializing) : base(deserializing) { }
51
52    public override IDeepCloneable Clone(Cloner cloner) {
53      Log clone = (Log)base.Clone(cloner);
54      clone.messages = new List<string>(messages);
55      return clone;
56    }
57
58    public virtual void Clear() {
59      messages.Clear();
60      OnCleared();
61    }
62    public virtual void LogMessage(string message) {
63      string s = DateTime.Now.ToString() + "\t" + message;
64      messages.Add(s);
65      OnMessageAdded(s);
66    }
67    public virtual void LogException(Exception ex) {
68      string s = DateTime.Now.ToString() + "\t" + "Exception occurred:" + Environment.NewLine + ErrorHandling.BuildErrorMessage(ex);
69      messages.Add(s);
70      OnMessageAdded(s);
71    }
72
73    public event EventHandler<EventArgs<string>> MessageAdded;
74    protected virtual void OnMessageAdded(string message) {
75      EventHandler<EventArgs<string>> handler = MessageAdded;
76      if (handler != null) handler(this, new EventArgs<string>(message));
77    }
78    public event EventHandler Cleared;
79    protected virtual void OnCleared() {
80      EventHandler handler = Cleared;
81      if (handler != null) handler(this, EventArgs.Empty);
82    }
83  }
84}
Note: See TracBrowser for help on using the repository browser.