[735] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 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 |
|
---|
| 22 | using System;
|
---|
[718] | 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using System.Text;
|
---|
| 26 | using System.Diagnostics;
|
---|
| 27 |
|
---|
| 28 | namespace HeuristicLab.Hive.Client.Common {
|
---|
[735] | 29 | /// <summary>
|
---|
| 30 | /// The Logging class uses the Windows Event logging mechanism. It writes the logs to a custom log
|
---|
| 31 | /// called "Hive Client". For the creation of the Hive Client Log the program must be executed with
|
---|
| 32 | /// Administrator privileges
|
---|
| 33 | /// </summary>
|
---|
[718] | 34 | public class Logging {
|
---|
[729] | 35 | private static Logging instance = null;
|
---|
| 36 | private EventLog eventLogger = null;
|
---|
| 37 |
|
---|
[735] | 38 | /// <summary>
|
---|
| 39 | /// This is an implementation of the singleton design pattern.
|
---|
| 40 | /// </summary>
|
---|
| 41 | /// <returns>the instance of the logger</returns>
|
---|
[782] | 42 | public static Logging GetInstance() {
|
---|
[729] | 43 | if (instance == null)
|
---|
| 44 | instance = new Logging();
|
---|
| 45 | return instance;
|
---|
[718] | 46 | }
|
---|
| 47 |
|
---|
[739] | 48 | private Logging() {
|
---|
| 49 | eventLogger = new EventLog("Hive Client");
|
---|
[718] | 50 | }
|
---|
| 51 |
|
---|
[735] | 52 | /// <summary>
|
---|
| 53 | /// Writes an Info Log-Entry
|
---|
| 54 | /// </summary>
|
---|
| 55 | /// <param name="source">string representation of the caller</param>
|
---|
| 56 | /// <param name="message">the message</param>
|
---|
[729] | 57 | public void Info(String source, String message) {
|
---|
| 58 | eventLogger.Source = source;
|
---|
| 59 | eventLogger.WriteEntry(message);
|
---|
| 60 | eventLogger.Close();
|
---|
[718] | 61 | }
|
---|
[729] | 62 |
|
---|
[735] | 63 | /// <summary>
|
---|
| 64 | /// Writes an Error Log-Entry
|
---|
| 65 | /// </summary>
|
---|
| 66 | /// <param name="source">string representation of the caller</param>
|
---|
| 67 | /// <param name="message">the message</param>
|
---|
[729] | 68 | public void Error(String source, String message) {
|
---|
| 69 | eventLogger.Source = source;
|
---|
| 70 | eventLogger.WriteEntry(message, EventLogEntryType.Error);
|
---|
| 71 | eventLogger.Close();
|
---|
| 72 | }
|
---|
| 73 |
|
---|
[735] | 74 | /// <summary>
|
---|
| 75 | /// Writes an Error Log-Entry
|
---|
| 76 | /// </summary>
|
---|
| 77 | /// <param name="source">string representation of the caller</param>
|
---|
| 78 | /// <param name="message">the message</param>
|
---|
| 79 | /// <param name="e">the exception</param>
|
---|
[729] | 80 | public void Error(String source, String message, Exception e) {
|
---|
| 81 | eventLogger.Source = source;
|
---|
| 82 | eventLogger.WriteEntry(message +"\n" + e.ToString(), EventLogEntryType.Error);
|
---|
| 83 | eventLogger.Close();
|
---|
| 84 | }
|
---|
[718] | 85 | }
|
---|
| 86 | }
|
---|