-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
98 additions
and
0 deletions.
There are no files selected for viewing
98 changes: 98 additions & 0 deletions
98
routing-java-ortools/src/main/java/com/nextmv/example/Output.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
package com.nextmv.example; | ||
|
||
import java.util.List; | ||
import java.util.ArrayList; | ||
|
||
import com.google.gson.Gson; | ||
import com.google.gson.annotations.SerializedName; | ||
|
||
public class Output { | ||
private final class Solution { | ||
private List<Vehicle> vehicles; | ||
private double value; | ||
} | ||
|
||
private final class StatisticsRun { | ||
private double duration; | ||
} | ||
|
||
private final class StatisticsResult { | ||
private double value; | ||
private double duration; | ||
private StatisticsResultCustom custom; | ||
} | ||
|
||
private final class StatisticsResultCustom { | ||
@SerializedName(value = "activated_vehicles") | ||
private int activatedVehicles; | ||
@SerializedName(value = "max_route_distance") | ||
private int maxRouteDistance; | ||
@SerializedName(value = "min_stops_in_vehicle") | ||
private int minStopsInVehicle; | ||
@SerializedName(value = "max_stops_in_vehicle") | ||
private int maxStopsInVehicle; | ||
} | ||
|
||
private final class Statistics { | ||
private String schema = "v1"; | ||
private StatisticsRun run; | ||
private StatisticsResult result; | ||
} | ||
|
||
private final List<Solution> solutions; | ||
private final Statistics statistics; | ||
|
||
public Output( | ||
List<Vehicle> vehicles, | ||
double duration, | ||
double runDuration, | ||
double value) { | ||
this.solutions = new ArrayList<Solution>(); | ||
Solution solution = new Solution(); | ||
solution.vehicles = vehicles; | ||
solution.value = value; | ||
this.solutions.add(solution); | ||
this.statistics = new Statistics(); | ||
this.statistics.run = new StatisticsRun(); | ||
this.statistics.run.duration = runDuration; | ||
this.statistics.result = new StatisticsResult(); | ||
this.statistics.result.value = value; | ||
this.statistics.result.duration = duration; | ||
|
||
// fill custom section | ||
this.statistics.result.custom = new StatisticsResultCustom(); | ||
|
||
// a vehicle is activated if it has at least three stops. The first and last | ||
// stop are the depot, so the vehicle has at least one customer stop. | ||
this.statistics.result.custom.activatedVehicles = (int) vehicles.stream() | ||
.filter(v -> v.getStops().size() > 3).count(); | ||
|
||
// find the vehicle with the maximum route distance | ||
this.statistics.result.custom.maxRouteDistance = (int) vehicles.stream() | ||
.mapToDouble(v -> v.getDistance()-2).max().orElse(0); | ||
|
||
// find the vehicle with the maximum number of stops | ||
this.statistics.result.custom.maxStopsInVehicle = (int) vehicles.stream() | ||
.mapToDouble(v -> v.getStops().size()-2).max().orElse(0); | ||
|
||
// find the vehicle with the minimum number of stops | ||
this.statistics.result.custom.minStopsInVehicle = (int) vehicles.stream() | ||
.mapToDouble(v -> v.getStops().size()-2).min().orElse(0); | ||
} | ||
|
||
public static void write(String path, Output output) { | ||
Gson gson = new Gson(); | ||
// Write stdout if no path is provided. | ||
if (path.isEmpty()) { | ||
System.out.println(gson.toJson(output)); | ||
return; | ||
} | ||
// Write the path otherwise. | ||
try { | ||
java.nio.file.Files.writeString(java.nio.file.Paths.get(path), gson.toJson(output)); | ||
} catch (java.io.IOException e) { | ||
System.err.println("Error writing '" + path + "': " + e.getMessage()); | ||
System.exit(1); | ||
} | ||
} | ||
} |