Changeset 735
- Timestamp:
- 11/11/08 18:15:55 (16 years ago)
- Location:
- trunk/sources
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Client.Common/CommonPlugin.cs
r716 r735 1 using System; 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; 2 23 using System.Collections.Generic; 3 24 using System.Linq; -
trunk/sources/HeuristicLab.Hive.Client.Common/Logging.cs
r729 r735 1 using System; 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; 2 23 using System.Collections.Generic; 3 24 using System.Linq; … … 6 27 7 28 namespace HeuristicLab.Hive.Client.Common { 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> 8 34 public class Logging { 9 35 private static Logging instance = null; 10 36 private EventLog eventLogger = null; 11 37 38 /// <summary> 39 /// This is an implementation of the singleton design pattern. 40 /// </summary> 41 /// <returns>the instance of the logger</returns> 12 42 public static Logging getInstance() { 13 43 if (instance == null) … … 17 47 18 48 private Logging() { 19 eventLogger = new EventLog("Hive Client Core");49 eventLogger = new EventLog("Hive Client"); 20 50 } 21 51 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> 22 57 public void Info(String source, String message) { 23 58 eventLogger.Source = source; … … 26 61 } 27 62 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> 28 68 public void Error(String source, String message) { 29 69 eventLogger.Source = source; … … 32 72 } 33 73 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> 34 80 public void Error(String source, String message, Exception e) { 35 81 eventLogger.Source = source; -
trunk/sources/HeuristicLab.Hive.Client.Common/MessageContainer.cs
r734 r735 1 using System; 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; 2 23 using System.Collections.Generic; 3 24 using System.Linq; … … 5 26 6 27 namespace HeuristicLab.Hive.Client.Common { 28 /// <summary> 29 /// The MessageContainer is a container class for Messages. Its two parts are: 30 /// the actual message itself and the JobId, refered by the message 31 /// </summary> 7 32 public class MessageContainer { 8 33 public MessageQueue.MessageType Message { get; set; } -
trunk/sources/HeuristicLab.Hive.Client.Core/Core.cs
r714 r735 1 using System; 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; 2 23 using System.Collections.Generic; 3 24 using System.Linq; 4 25 using System.Text; 26 using HeuristicLab.Hive.Client.Common; 5 27 6 28 namespace HeuristicLab.Hive.Client.Core { 7 29 public class Core { 30 public void Start() { 31 //Logging.getInstance().Info(this.Name, "Info Message"); 32 //Logging.getInstance().Error(this.Name, "Error Message"); 33 //Logging.getInstance().Error(this.Name, "Exception Message", new Exception("Exception")); 34 35 Heartbeat beat = new Heartbeat(); 36 beat.Interval = 1000; 37 beat.StartHeartbeat(); 38 MessageQueue queue = MessageQueue.GetInstance(); 39 40 while (true) { 41 MessageContainer container = queue.GetMessage(); 42 Console.WriteLine(container.Message.ToString()); 43 } 44 } 8 45 } 9 46 } -
trunk/sources/HeuristicLab.Hive.Client.Core/CoreApplication.cs
r734 r735 1 using System; 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; 2 23 using System.Collections.Generic; 3 24 using System.Linq; … … 13 34 public class CoreApplication: ApplicationBase { 14 35 public override void Run() { 15 16 //Logging.getInstance().Info(this.Name, "Info Message"); 17 //Logging.getInstance().Error(this.Name, "Error Message"); 18 //Logging.getInstance().Error(this.Name, "Exception Message", new Exception("Exception")); 19 20 Heartbeat beat = new Heartbeat(); 21 beat.Interval = 1000; 22 beat.StartHeartbeat(); 23 MessageQueue queue = MessageQueue.GetInstance(); 24 25 while (true) { 26 MessageContainer container = queue.GetMessage(); 27 Console.WriteLine(container.Message.ToString()); 28 } 29 30 36 Core core = new Core(); 37 core.Start(); 31 38 } 32 39 } -
trunk/sources/HeuristicLab.Hive.Client.Core/CorePlugin.cs
r714 r735 1 using System; 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; 2 23 using System.Collections.Generic; 3 24 using System.Linq; -
trunk/sources/HeuristicLab.Hive.Client.Core/Heartbeat.cs
r734 r735 1 using System; 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; 2 23 using System.Collections.Generic; 3 24 using System.Linq; … … 7 28 8 29 namespace HeuristicLab.Hive.Client.Core { 30 /// <summary> 31 /// Heartbeat class. It sends every x ms a heartbeat to the server and receives a Message 32 /// </summary> 9 33 public class Heartbeat { 10 public double Interval { get; set; } 11 34 public double Interval { get; set; } 12 35 private Timer heartbeatTimer = null; 13 36 … … 20 43 } 21 44 45 /// <summary> 46 /// Starts the Heartbeat signal. 47 /// </summary> 22 48 public void StartHeartbeat() { 23 49 heartbeatTimer = new System.Timers.Timer(); … … 28 54 } 29 55 56 /// <summary> 57 /// This Method is called every time the timer ticks 58 /// </summary> 59 /// <param name="sender"></param> 60 /// <param name="e"></param> 30 61 void heartbeatTimer_Elapsed(object sender, ElapsedEventArgs e) { 31 62 Console.WriteLine("tick");
Note: See TracChangeset
for help on using the changeset viewer.