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 |
|
---|
22 | using System;
|
---|
23 | using System.Collections.Generic;
|
---|
24 | using System.Linq;
|
---|
25 | using System.Text;
|
---|
26 | using HeuristicLab.Hive.Server.Core.InternalInterfaces.DataAccess;
|
---|
27 | using HeuristicLab.Hive.Contracts.BusinessObjects;
|
---|
28 |
|
---|
29 | namespace HeuristicLab.Hive.Server.ADODataAccess {
|
---|
30 | class ResourceAdapter: IResourceAdapter {
|
---|
31 | #region IResourceAdapter Members
|
---|
32 | private dsHiveServerTableAdapters.ResourceTableAdapter adapter =
|
---|
33 | new dsHiveServerTableAdapters.ResourceTableAdapter();
|
---|
34 |
|
---|
35 | public void UpdateResource(Resource resource) {
|
---|
36 | if (resource != null) {
|
---|
37 | dsHiveServer.ResourceDataTable data =
|
---|
38 | adapter.GetDataById(resource.ResourceId);
|
---|
39 |
|
---|
40 | dsHiveServer.ResourceRow row;
|
---|
41 | if (data.Count == 0) {
|
---|
42 | row = data.NewResourceRow();
|
---|
43 | data.AddResourceRow(row);
|
---|
44 | } else {
|
---|
45 | row = data[0];
|
---|
46 | }
|
---|
47 |
|
---|
48 | //missing
|
---|
49 | row.Name = "test";
|
---|
50 |
|
---|
51 | adapter.Update(data);
|
---|
52 |
|
---|
53 | resource.ResourceId = row.ResourceId;
|
---|
54 | }
|
---|
55 | }
|
---|
56 |
|
---|
57 | public ClientInfo GetResourceById(long resourceId) {
|
---|
58 | throw new NotImplementedException();
|
---|
59 | }
|
---|
60 |
|
---|
61 | public ICollection<Resource> GetAllResources() {
|
---|
62 | throw new NotImplementedException();
|
---|
63 | }
|
---|
64 |
|
---|
65 | public bool DeleteResource(Resource resource) {
|
---|
66 | dsHiveServer.ResourceDataTable data =
|
---|
67 | adapter.GetDataById(resource.ResourceId);
|
---|
68 |
|
---|
69 | if (data.Count == 1) {
|
---|
70 | dsHiveServer.ResourceRow row = data[0];
|
---|
71 |
|
---|
72 | row.Delete();
|
---|
73 | return adapter.Update(data) > 0;
|
---|
74 | } else {
|
---|
75 | return false;
|
---|
76 | }
|
---|
77 | }
|
---|
78 |
|
---|
79 | #endregion
|
---|
80 | }
|
---|
81 | }
|
---|