Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Core/ConfigurationManager.cs @ 841

Last change on this file since 841 was 841, checked in by kgrading, 16 years ago

implemented (#400)

File size: 2.3 KB
RevLine 
[770]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
22using System;
[740]23using System.Collections.Generic;
24using System.Linq;
25using System.Text;
[841]26using HeuristicLab.Hive.Contracts.BusinessObjects;
[740]27
28namespace HeuristicLab.Hive.Client.Core {
29  /// <summary>
30  /// accesses the Server and sends his data (uuid, uptimes, hardware config)
31  /// </summary>
32  public class ConfigurationManager {
33    private static ConfigurationManager instance = null;
[841]34
35    private ClientInfo clientInfo;
[740]36    private Guid guid;
37
38    public static ConfigurationManager GetInstance() {
39      if (instance == null) {
40        instance = new ConfigurationManager();
41      }
42      return instance;
43    }
44
45    /// <summary>
46    /// Constructor for the singleton, must recover Guid, Calendar, ...
47    /// </summary>
48    private ConfigurationManager() {
49      //retrive GUID from XML file, or burn in hell. as in hell. not heaven.
50      //this won't work this way. We need a plugin for XML Handling.
[742]51      guid = Guid.NewGuid();
[841]52      clientInfo = new ClientInfo();
53      clientInfo.ClientId = Guid.NewGuid();
54      clientInfo.NrOfCores = Environment.ProcessorCount;
55      clientInfo.Memory = 1024;
56      clientInfo.Name = Environment.MachineName;
[740]57    }
58
[841]59    public ClientInfo GetClientInfo() {
60      return clientInfo;         
61    }
62
63    public void Loggedin() {
64      if (clientInfo == null) {
65        clientInfo = new ClientInfo();
66      }
67      clientInfo.Login = DateTime.Now;
68    }
69
[740]70    public void Connect(Guid guid) {
71    }
72
73  }
74}
Note: See TracBrowser for help on using the repository browser.