[6983] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9456] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6983] | 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;
|
---|
| 23 | using System.Runtime.Serialization;
|
---|
| 24 |
|
---|
| 25 | namespace HeuristicLab.Services.Hive.DataTransfer {
|
---|
| 26 | public enum CpuArchitecture {
|
---|
| 27 | x86, x64
|
---|
| 28 | }
|
---|
| 29 |
|
---|
| 30 | [DataContract]
|
---|
| 31 | [Serializable]
|
---|
| 32 | public class Slave : Resource {
|
---|
| 33 | [DataMember]
|
---|
| 34 | public int? Cores { get; set; }
|
---|
| 35 | [DataMember]
|
---|
| 36 | public int? FreeCores { get; set; }
|
---|
| 37 | [DataMember]
|
---|
| 38 | public int? CpuSpeed { get; set; } // MHz
|
---|
| 39 | [DataMember]
|
---|
| 40 | public CpuArchitecture CpuArchitecture { get; set; }
|
---|
| 41 | [DataMember]
|
---|
| 42 | public int? Memory { get; set; } // MB
|
---|
| 43 | [DataMember]
|
---|
| 44 | public int? FreeMemory { get; set; } // MB
|
---|
| 45 | [DataMember]
|
---|
| 46 | public string OperatingSystem { get; set; }
|
---|
| 47 | [DataMember]
|
---|
| 48 | public SlaveState SlaveState { get; set; }
|
---|
| 49 | [DataMember]
|
---|
| 50 | public bool IsAllowedToCalculate { get; set; }
|
---|
| 51 | [DataMember]
|
---|
| 52 | public DateTime? LastHeartbeat { get; set; }
|
---|
| 53 | [DataMember]
|
---|
| 54 | public double CpuUtilization { get; set; }
|
---|
[7857] | 55 | [DataMember]
|
---|
[7862] | 56 | public bool? IsDisposable { get; set; }
|
---|
[6983] | 57 |
|
---|
| 58 | public Slave() {
|
---|
| 59 | SlaveState = DataTransfer.SlaveState.Idle;
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | public override string ToString() {
|
---|
| 63 | return string.Format("Cores: {0}, FreeCores: {1}", Cores, FreeCores);
|
---|
| 64 | }
|
---|
| 65 | }
|
---|
| 66 | }
|
---|