#region License Information
/* HeuristicLab
* Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Management;
using System.Net.NetworkInformation;
using HeuristicLab.Clients.Hive.SlaveCore.Properties;
namespace HeuristicLab.Clients.Hive.SlaveCore {
///
/// accesses the server and sends his data (uuid, uptimes, hardware config)
///
public class ConfigManager {
private static ConfigManager instance = null;
private const string vmwareNameString = "VMware";
private const string virtualboxNameString = "VirtualBox";
private const int macLength = 6;
private const int macLongLength = 8;
public static ConfigManager Instance {
get { return instance; }
set { instance = value; }
}
///
/// if Asleep is true, the Slave won't accept any new jobs
///
public bool Asleep { get; set; }
private TaskManager jobManager;
private Slave slave;
private PerformanceCounter cpuCounter;
private PerformanceCounter memCounter;
///
/// Constructor for the singleton, must recover Guid, Calendar, ...
///
public ConfigManager(TaskManager jobManager) {
this.jobManager = jobManager;
cpuCounter = new PerformanceCounter();
cpuCounter.CategoryName = "Processor";
cpuCounter.CounterName = "% Processor Time";
cpuCounter.InstanceName = "_Total";
memCounter = new PerformanceCounter("Memory", "Available Bytes", true);
Asleep = false;
slave = new Slave();
slave.Id = GetUniqueMachineId();
slave.Name = Environment.MachineName;
if (Settings.Default.NrOfCoresToScavenge < 1 || Settings.Default.NrOfCoresToScavenge > Environment.ProcessorCount) {
slave.Cores = Environment.ProcessorCount;
} else {
slave.Cores = Settings.Default.NrOfCoresToScavenge;
}
slave.Memory = GetPhysicalMemory();
slave.CpuArchitecture = Environment.Is64BitOperatingSystem ? CpuArchitecture.x64 : CpuArchitecture.x86;
slave.OperatingSystem = Environment.OSVersion.VersionString;
slave.CpuSpeed = GetCpuSpeed();
slave.IsDisposable = true;
UpdateSlaveInfo();
}
private void UpdateSlaveInfo() {
if (slave != null) {
slave.FreeMemory = GetFreeMemory();
slave.HbInterval = (int)Settings.Default.HeartbeatInterval.TotalSeconds;
}
}
///
/// Get all the Information about the client
///
/// the ClientInfo object
public Slave GetClientInfo() {
UpdateSlaveInfo();
return slave;
}
public int GetFreeCores() {
return slave.Cores.HasValue ? slave.Cores.Value - SlaveStatusInfo.UsedCores : 0;
}
///
/// collects and returns information that get displayed by the Client Console
///
///
public StatusCommons GetStatusForClientConsole() {
StatusCommons st = new StatusCommons();
st.ClientGuid = slave.Id;
st.Status = WcfService.Instance.ConnState;
st.ConnectedSince = WcfService.Instance.ConnectedSince;
st.TotalCores = slave.Cores.HasValue ? slave.Cores.Value : 0;
st.FreeCores = GetFreeCores();
st.Asleep = this.Asleep;
st.JobsStarted = SlaveStatusInfo.TasksStarted;
st.JobsAborted = SlaveStatusInfo.TasksAborted;
st.JobsFinished = SlaveStatusInfo.TasksFinished;
st.JobsFetched = SlaveStatusInfo.TasksFetched;
st.JobsFailed = SlaveStatusInfo.TasksFailed;
st.Jobs = jobManager.GetExecutionTimes().Select(x => new TaskStatus { TaskId = x.Key, ExecutionTime = x.Value }).ToList();
return st;
}
public Dictionary GetExecutionTimeOfAllJobs() {
Dictionary prog = new Dictionary();
try {
prog = jobManager.GetExecutionTimes();
}
catch (Exception ex) {
SlaveClientCom.Instance.LogMessage(string.Format("Exception was thrown while trying to get execution times: {0}", ex.Message));
}
return prog;
}
public static Guid GetUniqueMachineId() {
Guid id;
try {
id = GetUniqueMachineIdFromMac();
}
catch {
// fallback if something goes wrong...
id = new Guid(Environment.MachineName.GetHashCode(), 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
}
return id;
}
///
/// returns total physical memory of the machine in MB
///
private static int? GetPhysicalMemory() {
long? res = GetWMIValue("Win32_ComputerSystem", "TotalPhysicalMemory");
if (res != null)
return (int)(res / 1024 / 1024);
else
return null;
}
///
/// returns CPU frequence of the machine in Mhz
///
private static int? GetCpuSpeed() {
return (int)GetWMIValue("Win32_Processor", "MaxClockSpeed");
}
///
/// Generate a guid based on mac address of the first found nic (yes, mac addresses are not unique...)
/// and the machine name.
/// Format:
///
/// D1 D2 D3 Res. D4
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
/// |n a m e|0 0|0 0|0 0 mac address|
/// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
///
/// The mac address is saved in the last 48 bits of the Data 4 segment
/// of the guid (first 2 bytes of Data 4 are reserved).
/// D1 contains the hash of the machinename.
///
private static Guid GetUniqueMachineIdFromMac() {
//try to get a real network interface, not a virtual one
NetworkInterface validNic = NetworkInterface.GetAllNetworkInterfaces()
.FirstOrDefault(x =>
!x.Name.Contains(vmwareNameString) &&
!x.Name.Contains(virtualboxNameString) &&
(x.NetworkInterfaceType == NetworkInterfaceType.Ethernet ||
x.NetworkInterfaceType == NetworkInterfaceType.GigabitEthernet));
if (validNic == default(NetworkInterface)) {
validNic = NetworkInterface.GetAllNetworkInterfaces().First();
}
byte[] addr = validNic.GetPhysicalAddress().GetAddressBytes();
if (addr.Length < macLength || addr.Length > macLongLength) {
throw new ArgumentException(string.Format("Error generating slave UID: MAC address has to have a length between {0} and {1} bytes. Actual MAC address is: {2}",
macLength, macLongLength, addr));
}
if (addr.Length < macLongLength) {
byte[] b = new byte[8];
Array.Copy(addr, 0, b, 2, addr.Length);
addr = b;
}
// also get machine name and save it to the first 4 bytes
Guid guid = new Guid(Environment.MachineName.GetHashCode(), 0, 0, addr);
return guid;
}
private static long? GetWMIValue(string clazz, string property) {
ManagementClass mgtClass = new ManagementClass(clazz);
ManagementObjectCollection mgtCol = mgtClass.GetInstances();
foreach (ManagementObject mgtObj in mgtCol) {
foreach (var prop in mgtObj.Properties) {
if (prop.Value != null && prop.Name == property) {
try {
return long.Parse(prop.Value.ToString());
}
catch {
return null;
}
}
}
}
return null;
}
///
/// returns free memory of machine in MB
///
public int GetFreeMemory() {
int mb = 0;
try {
mb = (int)(memCounter.NextValue() / 1024 / 1024);
}
catch { }
return mb;
}
public float GetCpuUtilization() {
float cpuVal = 0.0F;
try {
return cpuCounter.NextValue();
}
catch { }
return cpuVal;
}
}
}