1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2019 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 | using HeuristicLab.Common;
|
---|
30 |
|
---|
31 | namespace HeuristicLab.Problems.Instances.VehicleRouting {
|
---|
32 | public abstract class VRPInstanceProvider<TData> : ProblemInstanceProvider<TData>, IVRPInstanceProvider<TData> where TData : IVRPData {
|
---|
33 | protected abstract string FileName { get; }
|
---|
34 |
|
---|
35 | public override IEnumerable<IDataDescriptor> GetDataDescriptors() {
|
---|
36 | var solutions = new Dictionary<string, string>();
|
---|
37 | var solutionsArchiveName = GetResourceName(FileName + @"\.opt\.zip");
|
---|
38 | if (!String.IsNullOrEmpty(solutionsArchiveName)) {
|
---|
39 | using (var solutionsZipFile = new ZipArchive(GetType().Assembly.GetManifestResourceStream(solutionsArchiveName), ZipArchiveMode.Read)) {
|
---|
40 | foreach (var entry in solutionsZipFile.Entries)
|
---|
41 | solutions.Add(Path.GetFileNameWithoutExtension(entry.Name) + "." + FileName, entry.Name);
|
---|
42 | }
|
---|
43 | }
|
---|
44 | var instanceArchiveName = GetResourceName(FileName + @"\.zip");
|
---|
45 | if (String.IsNullOrEmpty(instanceArchiveName)) yield break;
|
---|
46 |
|
---|
47 | using (var instanceStream = new ZipArchive(GetType().Assembly.GetManifestResourceStream(instanceArchiveName), ZipArchiveMode.Read)) {
|
---|
48 | foreach (var entry in instanceStream.Entries.Select(x => x.Name).OrderBy(x => x, new NaturalStringComparer())) {
|
---|
49 | string solutionEntry = Path.GetFileNameWithoutExtension(entry) + "." + FileName;
|
---|
50 | yield return new VRPDataDescriptor(Path.GetFileNameWithoutExtension(entry), GetInstanceDescription(), entry, solutions.ContainsKey(solutionEntry) ? solutions[solutionEntry] : String.Empty);
|
---|
51 | }
|
---|
52 | }
|
---|
53 | }
|
---|
54 |
|
---|
55 | public override TData LoadData(IDataDescriptor id) {
|
---|
56 | var descriptor = (VRPDataDescriptor)id;
|
---|
57 | var instanceArchiveName = GetResourceName(FileName + @"\.zip");
|
---|
58 | using (var instancesZipFile = new ZipArchive(GetType().Assembly.GetManifestResourceStream(instanceArchiveName))) {
|
---|
59 | var entry = instancesZipFile.GetEntry(descriptor.InstanceIdentifier);
|
---|
60 | var stream = entry.Open();
|
---|
61 | var instance = LoadData(stream);
|
---|
62 | if (string.IsNullOrEmpty(instance.Name)) {
|
---|
63 | instance.Name = Path.GetFileNameWithoutExtension(entry.ToString());
|
---|
64 | }
|
---|
65 |
|
---|
66 | if (!String.IsNullOrEmpty(descriptor.SolutionIdentifier)) {
|
---|
67 | var solutionsArchiveName = GetResourceName(FileName + @"\.opt\.zip");
|
---|
68 | using (var solutionsZipFile = new ZipArchive(GetType().Assembly.GetManifestResourceStream(solutionsArchiveName))) {
|
---|
69 | entry = solutionsZipFile.GetEntry(descriptor.SolutionIdentifier);
|
---|
70 | stream = entry.Open();
|
---|
71 | LoadSolution(stream, instance);
|
---|
72 | }
|
---|
73 | }
|
---|
74 |
|
---|
75 | return instance;
|
---|
76 | }
|
---|
77 | }
|
---|
78 |
|
---|
79 | #region IVRPInstanceProvider
|
---|
80 | public TData Import(string vrpFile, string tourFile) {
|
---|
81 | var data = ImportData(vrpFile);
|
---|
82 | if (!String.IsNullOrEmpty(tourFile)) {
|
---|
83 | LoadSolution(tourFile, data);
|
---|
84 | }
|
---|
85 | return data;
|
---|
86 | }
|
---|
87 |
|
---|
88 | public void Export(TData instance, string path) {
|
---|
89 | ExportData(instance, path);
|
---|
90 | }
|
---|
91 | #endregion
|
---|
92 |
|
---|
93 | protected virtual void LoadSolution(Stream stream, TData instance) {
|
---|
94 | LoadOptFile(stream, instance);
|
---|
95 | }
|
---|
96 |
|
---|
97 | private void LoadOptFile(Stream stream, TData instance) {
|
---|
98 | List<List<int>> routes = new List<List<int>>();
|
---|
99 |
|
---|
100 | using (StreamReader reader = new StreamReader(stream)) {
|
---|
101 | String line;
|
---|
102 | while ((line = reader.ReadLine()) != null) {
|
---|
103 | if (line.StartsWith("Route")) {
|
---|
104 | string[] token = line.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries);
|
---|
105 |
|
---|
106 | List<int> route = new List<int>();
|
---|
107 |
|
---|
108 | for (int i = 2; i < token.Length; i++) {
|
---|
109 | route.Add(int.Parse(token[i]) - 1);
|
---|
110 | }
|
---|
111 |
|
---|
112 | routes.Add(route);
|
---|
113 | }
|
---|
114 |
|
---|
115 | if (line.StartsWith("Solution")) {
|
---|
116 | if (routes.Any()) {
|
---|
117 | // Skip remaining solutions since only one "best solution" is stored
|
---|
118 | break;
|
---|
119 | }
|
---|
120 | }
|
---|
121 | }
|
---|
122 | }
|
---|
123 |
|
---|
124 | instance.BestKnownTour = routes.Select(x => x.ToArray()).ToArray();
|
---|
125 | }
|
---|
126 |
|
---|
127 | public void LoadSolution(string path, TData instance) {
|
---|
128 | try {
|
---|
129 | using (var stream = new FileStream(path, FileMode.Open)) {
|
---|
130 | LoadSolution(stream, instance);
|
---|
131 | }
|
---|
132 | }
|
---|
133 | catch (Exception) {
|
---|
134 | // new stream necessary because first try already read from stream
|
---|
135 | using (var stream = new FileStream(path, FileMode.Open)) {
|
---|
136 | LoadOptFile(stream, instance); // Fallback to .opt-Format
|
---|
137 | }
|
---|
138 | }
|
---|
139 | }
|
---|
140 |
|
---|
141 | protected abstract TData LoadData(Stream stream);
|
---|
142 |
|
---|
143 | #region Helpers
|
---|
144 | protected virtual string GetResourceName(string fileName) {
|
---|
145 | return Assembly.GetExecutingAssembly().GetManifestResourceNames()
|
---|
146 | .Where(x => Regex.Match(x, @".*\.Data\." + fileName).Success).SingleOrDefault();
|
---|
147 | }
|
---|
148 |
|
---|
149 | protected virtual string GetInstanceDescription() {
|
---|
150 | return "Embedded instance of plugin version " + Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyFileVersionAttribute), true).Cast<AssemblyFileVersionAttribute>().First().Version + ".";
|
---|
151 | }
|
---|
152 | #endregion
|
---|
153 | }
|
---|
154 | }
|
---|