Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive/3.4/Administration/HiveAdministrationClient.cs @ 5602

Last change on this file since 5602 was 5602, checked in by ascheibe, 13 years ago

#1233

  • added partial classes for dtos
  • added About dialog for Slave tray icon
  • added GetAllHiveExperiments method to service
File size: 2.3 KB
Line 
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
23using System.Collections.Generic;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26
27namespace HeuristicLab.Clients.Hive.Administration {
28  [Item("Hive Administration", "Hive Administration")]
29  public class HiveAdministrationClient : Item {
30    public List<SlaveGroup> SlaveGroups;
31    public List<Slave> Slaves;
32    public List<string> Users;
33    public List<HiveExperiment> Experiments;
34
35    public HiveAdministrationClient() {
36      UpdateSlaveGroups();
37      Users = new List<string>();
38      Users.Add("Mr. White");
39      Users.Add("Mr. Pink");
40      Users.Add("Mr. Blue");
41    }
42
43    protected HiveAdministrationClient(HiveAdministrationClient original, Cloner cloner)
44      : base(original, cloner) {
45      //TODO: clone
46    }
47    public override IDeepCloneable Clone(HeuristicLab.Common.Cloner cloner) {
48      return new HiveAdministrationClient(this, cloner);
49    }
50
51    public void UpdateSlaveGroups() {
52      /*SlaveGroup sg = new SlaveGroup();
53      sg.Name = "Test" + Guid.NewGuid();
54      sg.Description = "TestGroupdesc";
55      sg.Id = Guid.NewGuid();
56      ServiceLocator.Instance.CallHiveService(service => service.AddSlaveGroup(sg));*/
57
58
59      ServiceLocator.Instance.CallHiveService(service => {
60        SlaveGroups = new List<SlaveGroup>(service.GetSlaveGroups());
61        Slaves = new List<Slave>(service.GetSlaves());
62        Experiments = new List<HiveExperiment>(service.GetAllHiveExperiments());
63      });
64    }
65  }
66}
Note: See TracBrowser for help on using the repository browser.