Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server.Core/3.2/ServerConsoleFacade.cs @ 1627

Last change on this file since 1627 was 1627, checked in by msteinbi, 15 years ago

Implemented method GetAllJobResults in jobManager (#596)

File size: 3.4 KB
RevLine 
[907]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;
[800]23using System.Collections.Generic;
24using System.Linq;
25using System.Text;
26using HeuristicLab.Hive.Contracts.Interfaces;
27using HeuristicLab.Hive.Contracts.BusinessObjects;
[902]28using HeuristicLab.Hive.Contracts;
[800]29
30namespace HeuristicLab.Hive.Server.Core {
31  public class ServerConsoleFacade: IServerConsoleFacade {
[1099]32    private IClientManager clientManager =
33      ServiceLocator.GetClientManager();
[1084]34
[1099]35    private IJobManager jobManager =
36      ServiceLocator.GetJobManager();
37
[1084]38    private String loginName = null;
39
40    #region IServerConsoleFacade Members
41
[1086]42    public Response Login(string username, string password) {
43      Response resp = new Response();
44
[1084]45      loginName = username;
46
[1086]47      resp.Success = true;
48      resp.StatusMessage =
49        ApplicationConstants.RESPONSE_SERVERCONSOLE_LOGIN_SUCCESS;
50
51      return resp;
[1084]52    }
53
54    #endregion
55
[800]56    #region IClientManager Members
57
[902]58    public ResponseList<ClientInfo> GetAllClients() {
[800]59      return clientManager.GetAllClients();
60    }
61
[902]62    public ResponseList<ClientGroup> GetAllClientGroups() {
[800]63      return clientManager.GetAllClientGroups();
64    }
65
[902]66    public ResponseList<UpTimeStatistics> GetAllUpTimeStatistics() {
[800]67      return clientManager.GetAllUpTimeStatistics();
68    }
69
[934]70    public Response AddClientGroup(ClientGroup clientGroup) {
71      return clientManager.AddClientGroup(clientGroup);
72    }
73
[1449]74    public Response AddResourceToGroup(Guid clientGroupId, Resource resource) {
[934]75      return clientManager.AddResourceToGroup(clientGroupId, resource);
76    }
77
[1449]78    public Response DeleteResourceFromGroup(Guid clientGroupId, Guid resourceId) {
[934]79      return clientManager.DeleteResourceFromGroup(clientGroupId, resourceId);
80    }
81
[800]82    #endregion
83
84    #region IJobManager Members
85
[902]86    public ResponseList<HeuristicLab.Hive.Contracts.BusinessObjects.Job> GetAllJobs() {
[821]87      return jobManager.GetAllJobs();
[800]88    }
[967]89    public ResponseObject<Job> AddNewJob(Job job) {
[1012]90      return jobManager.AddNewJob(job);
[967]91    }
[800]92
[1509]93    public ResponseObject<JobResult> GetLastJobResultOf(Guid jobId, bool requested) {
94      return jobManager.GetLastJobResultOf(jobId, requested);
[1171]95    }
96
[1449]97    public Response RemoveJob(Guid jobId) {
[1012]98      return jobManager.RemoveJob(jobId);
[967]99    }
100
[1509]101    public Response RequestSnapshot(Guid jobId) {
102      return jobManager.RequestSnapshot(jobId);
103    }
104
105    public Response AbortJob(Guid jobId) {
106      return jobManager.AbortJob(jobId);
107    }
108
[1627]109    public ResponseObject<List<JobResult>> GetAllJobResults(Guid jobId) {
110      throw new NotImplementedException();
111    }
112
[800]113    #endregion
114  }
115}
Note: See TracBrowser for help on using the repository browser.