1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2018 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.IO;
|
---|
25 | using System.IO.Compression;
|
---|
26 | using System.Linq;
|
---|
27 | using System.Reflection;
|
---|
28 | using System.Text.RegularExpressions;
|
---|
29 |
|
---|
30 | namespace HeuristicLab.Problems.Instances.PermutationProblems.LinearOrdering {
|
---|
31 | public class LOPSPECInstanceProvider : ProblemInstanceProvider<LOPData> {
|
---|
32 |
|
---|
33 | public override string Name
|
---|
34 | {
|
---|
35 | get { return "SPEC"; }
|
---|
36 | }
|
---|
37 |
|
---|
38 | public override string Description
|
---|
39 | {
|
---|
40 | get { return "Linear Ordering Problems SPEC test instances"; }
|
---|
41 | }
|
---|
42 |
|
---|
43 | public override Uri WebLink
|
---|
44 | {
|
---|
45 | get { return new Uri("http://www.optsicom.es/lolib/lop/Spec.zip"); }
|
---|
46 | }
|
---|
47 |
|
---|
48 | public override string ReferencePublication
|
---|
49 | {
|
---|
50 | get { return "Martí, R., & Reinelt, G. (2011). The Linear Ordering Problem. Applied Mathematical Sciences. Springer Berlin Heidelberg. https://doi.org/10.1007/978-3-642-16729-4"; }
|
---|
51 | }
|
---|
52 |
|
---|
53 | public override IEnumerable<IDataDescriptor> GetDataDescriptors() {
|
---|
54 | var instanceArchiveName = GetResourceName("SPEC.zip");
|
---|
55 | if (String.IsNullOrEmpty(instanceArchiveName)) yield break;
|
---|
56 |
|
---|
57 | using (var instanceStream = new ZipArchive(GetType().Assembly.GetManifestResourceStream(instanceArchiveName), ZipArchiveMode.Read)) {
|
---|
58 | foreach (var entry in instanceStream.Entries.Select(x => x.Name).OrderBy(x => x)) {
|
---|
59 | yield return new LOPDataDescriptor(Path.GetFileNameWithoutExtension(entry), GetDescription(), entry, null);
|
---|
60 | }
|
---|
61 | }
|
---|
62 | }
|
---|
63 |
|
---|
64 | public override LOPData LoadData(IDataDescriptor id) {
|
---|
65 | var descriptor = (LOPDataDescriptor)id;
|
---|
66 | var instanceArchiveName = GetResourceName("SPEC.zip");
|
---|
67 | using (var instancesZipFile = new ZipArchive(GetType().Assembly.GetManifestResourceStream(instanceArchiveName), ZipArchiveMode.Read)) {
|
---|
68 | var entry = instancesZipFile.GetEntry(descriptor.InstanceIdentifier);
|
---|
69 |
|
---|
70 | using (var stream = entry.Open()) {
|
---|
71 | var parser = new LOPParser();
|
---|
72 | parser.Parse(stream);
|
---|
73 | return Load(parser);
|
---|
74 | }
|
---|
75 | }
|
---|
76 | }
|
---|
77 |
|
---|
78 | public override bool CanImportData
|
---|
79 | {
|
---|
80 | get { return true; }
|
---|
81 | }
|
---|
82 | public override LOPData ImportData(string path) {
|
---|
83 | var parser = new LOPParser();
|
---|
84 | parser.Parse(path);
|
---|
85 | return Load(parser);
|
---|
86 | }
|
---|
87 |
|
---|
88 | private LOPData Load(LOPParser parser) {
|
---|
89 | var instance = new LOPData {
|
---|
90 | Name = parser.Name,
|
---|
91 | Description = parser.Description,
|
---|
92 | Dimension = parser.Dimension,
|
---|
93 | Matrix = parser.Matrix,
|
---|
94 | BestKnownPermutation = parser.BestKnownPermutation,
|
---|
95 | BestKnownQuality = parser.BestKnownQuality
|
---|
96 | };
|
---|
97 | return instance;
|
---|
98 | }
|
---|
99 |
|
---|
100 | public override bool CanExportData
|
---|
101 | {
|
---|
102 | get { return false; }
|
---|
103 | }
|
---|
104 |
|
---|
105 | private string GetDescription() {
|
---|
106 | return "Embedded instance of plugin version " + Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyFileVersionAttribute), true).Cast<AssemblyFileVersionAttribute>().First().Version + ".";
|
---|
107 | }
|
---|
108 |
|
---|
109 | protected virtual string GetResourceName(string fileName) {
|
---|
110 | return Assembly.GetExecutingAssembly().GetManifestResourceNames()
|
---|
111 | .SingleOrDefault(x => Regex.Match(x, @".*\.Data\." + fileName).Success);
|
---|
112 | }
|
---|
113 | }
|
---|
114 | }
|
---|