[4593] | 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Runtime.Serialization;
|
---|
| 24 |
|
---|
| 25 | namespace HeuristicLab.Services.Hive.Common.DataTransfer {
|
---|
[5404] | 26 | public enum CpuArchitecture {
|
---|
| 27 | x86, x64
|
---|
| 28 | }
|
---|
| 29 |
|
---|
[4593] | 30 | [DataContract]
|
---|
| 31 | [Serializable]
|
---|
| 32 | public class Slave : Resource {
|
---|
| 33 | [DataMember]
|
---|
[4629] | 34 | public int? Cores { get; set; }
|
---|
[4593] | 35 | [DataMember]
|
---|
[4629] | 36 | public int? FreeCores { get; set; }
|
---|
[4593] | 37 | [DataMember]
|
---|
[5106] | 38 | public int? CpuSpeed { get; set; } // MHz
|
---|
[4593] | 39 | [DataMember]
|
---|
[5404] | 40 | public CpuArchitecture CpuArchitecture { get; set; }
|
---|
| 41 | [DataMember]
|
---|
[5106] | 42 | public int? Memory { get; set; } // MB
|
---|
[4593] | 43 | [DataMember]
|
---|
[5106] | 44 | public int? FreeMemory { get; set; } // MB
|
---|
[4593] | 45 | [DataMember]
|
---|
[5404] | 46 | public string OperatingSystem { get; set; }
|
---|
| 47 | [DataMember]
|
---|
[4649] | 48 | public SlaveState SlaveState { get; set; }
|
---|
[4593] | 49 | [DataMember]
|
---|
| 50 | public bool IsAllowedToCalculate { get; set; }
|
---|
[5405] | 51 | [DataMember]
|
---|
| 52 | public DateTime? LastHeartbeat { get; set; }
|
---|
[4593] | 53 |
|
---|
[4649] | 54 | public Slave() {
|
---|
| 55 | SlaveState = DataTransfer.SlaveState.Idle;
|
---|
| 56 | }
|
---|
| 57 |
|
---|
[4593] | 58 | public override string ToString() {
|
---|
[4796] | 59 | return string.Format("Cores: {0}, FreeCores: {1}", Cores, FreeCores);
|
---|
[4593] | 60 | }
|
---|
| 61 | }
|
---|
| 62 | }
|
---|