Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.Instances.VehicleRouting/3.4/VRPInstanceProvider.cs @ 11429

Last change on this file since 11429 was 11428, checked in by pfleck, 10 years ago

#2229

  • The IVRPData now specifies an optional BestKnownTourVehicleAssignment property. This can be used for solutions where a specific assignment for tours to vehicles is necessary.
  • The VRPInterpreter interpret the new BestKnownTourVehicleAssignment directly as VehicleAssignment in the created PotvinEncoding.
  • Minor refactoring in (I)VRPInstanceProvider.
File size: 5.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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;
23using System.Collections.Generic;
24using System.IO;
25using System.Linq;
26using System.Reflection;
27using System.Text.RegularExpressions;
28using ICSharpCode.SharpZipLib.Zip;
29
30namespace HeuristicLab.Problems.Instances.VehicleRouting {
31  public abstract class VRPInstanceProvider<TData> : ProblemInstanceProvider<TData>, IVRPInstanceProvider<TData> where TData : IVRPData {
32    protected abstract string FileName { get; }
33
34    public override IEnumerable<IDataDescriptor> GetDataDescriptors() {
35      var solutions = new Dictionary<string, string>();
36      var solutionsArchiveName = GetResourceName(FileName + @"\.opt\.zip");
37      if (!String.IsNullOrEmpty(solutionsArchiveName)) {
38        using (var solutionsZipFile = new ZipInputStream(GetType().Assembly.GetManifestResourceStream(solutionsArchiveName))) {
39          foreach (var entry in GetZipContents(solutionsZipFile))
40            solutions.Add(Path.GetFileNameWithoutExtension(entry) + "." + FileName, entry);
41        }
42      }
43      var instanceArchiveName = GetResourceName(FileName + @"\.zip");
44      if (String.IsNullOrEmpty(instanceArchiveName)) yield break;
45
46      using (var instanceStream = new ZipInputStream(GetType().Assembly.GetManifestResourceStream(instanceArchiveName))) {
47        foreach (var entry in GetZipContents(instanceStream).OrderBy(x => x)) {
48          string solutionEntry = Path.GetFileNameWithoutExtension(entry) + "." + FileName;
49          yield return new VRPDataDescriptor(Path.GetFileNameWithoutExtension(entry), GetInstanceDescription(), entry, solutions.ContainsKey(solutionEntry) ? solutions[solutionEntry] : String.Empty);
50        }
51      }
52    }
53
54    public override TData LoadData(IDataDescriptor id) {
55      var descriptor = (VRPDataDescriptor)id;
56      var instanceArchiveName = GetResourceName(FileName + @"\.zip");
57      using (var instancesZipFile = new ZipFile(GetType().Assembly.GetManifestResourceStream(instanceArchiveName))) {
58        var entry = instancesZipFile.GetEntry(descriptor.InstanceIdentifier);
59        var stream = instancesZipFile.GetInputStream(entry);
60        var instance = LoadData(stream);
61        if (string.IsNullOrEmpty(instance.Name)) {
62          instance.Name = Path.GetFileNameWithoutExtension(entry.ToString());
63        }
64
65        if (!String.IsNullOrEmpty(descriptor.SolutionIdentifier)) {
66          var solutionsArchiveName = GetResourceName(FileName + @"\.opt\.zip");
67          using (var solutionsZipFile = new ZipFile(GetType().Assembly.GetManifestResourceStream(solutionsArchiveName))) {
68            entry = solutionsZipFile.GetEntry(descriptor.SolutionIdentifier);
69            stream = solutionsZipFile.GetInputStream(entry);
70            LoadSolution(stream, instance);
71          }
72        }
73
74        return instance;
75      }
76    }
77
78    #region IVRPInstanceProvider
79    public TData Import(string vrpFile, string tourFile) {
80      var data = ImportData(vrpFile);
81      if (!String.IsNullOrEmpty(tourFile)) {
82        LoadSolution(tourFile, data);
83      }
84      return data;
85    }
86
87    public void Export(TData instance, string path) {
88      ExportData(instance, path);
89    }
90    #endregion
91
92    protected virtual void LoadSolution(Stream stream, TData instance) {
93      List<List<int>> routes = new List<List<int>>();
94
95      using (StreamReader reader = new StreamReader(stream)) {
96        String line;
97        while ((line = reader.ReadLine()) != null) {
98          if (line.StartsWith("Route")) {
99            string[] token = line.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries);
100
101            List<int> route = new List<int>();
102
103            for (int i = 2; i < token.Length; i++) {
104              route.Add(int.Parse(token[i]) - 1);
105            }
106
107            routes.Add(route);
108          }
109
110          if (line.StartsWith("Solution")) {
111            if (routes.Any()) {
112              // Skip remaining solutions since only one "best solution" is stored
113              break;
114            }
115          }
116        }
117      }
118
119      instance.BestKnownTour = routes.Select(x => x.ToArray()).ToArray();
120    }
121
122    public void LoadSolution(string path, TData instance) {
123      using (FileStream stream = new FileStream(path, FileMode.Open)) {
124        LoadSolution(stream, instance);
125      }
126    }
127
128    protected abstract TData LoadData(Stream stream);
129
130    #region Helpers
131    protected virtual string GetResourceName(string fileName) {
132      return Assembly.GetExecutingAssembly().GetManifestResourceNames()
133              .Where(x => Regex.Match(x, @".*\.Data\." + fileName).Success).SingleOrDefault();
134    }
135
136    protected virtual string GetInstanceDescription() {
137      return "Embedded instance of plugin version " + Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyFileVersionAttribute), true).Cast<AssemblyFileVersionAttribute>().First().Version + ".";
138    }
139
140    protected IEnumerable<string> GetZipContents(ZipInputStream zipFile) {
141      ZipEntry entry;
142      while ((entry = zipFile.GetNextEntry()) != null) {
143        yield return entry.Name;
144      }
145    }
146    #endregion
147  }
148}
Note: See TracBrowser for help on using the repository browser.