/*
* Copyright (c) 2016 David Boissier.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.codinjutsu.tools.mongo.view.model.navigation;
import org.codinjutsu.tools.mongo.model.MongoCollection;
import org.codinjutsu.tools.mongo.model.MongoQueryOptions;
import java.util.ArrayList;
import java.util.List;
public class Navigation {
List<WayPoint> wayPoints = new ArrayList<>();
WayPoint currentWayPoint = null;
public void addNewWayPoint(MongoCollection collection, MongoQueryOptions mongoQueryOptions) {
currentWayPoint = new WayPoint(collection, mongoQueryOptions);
wayPoints.add(currentWayPoint);
}
public WayPoint getCurrentWayPoint() {
return currentWayPoint;
}
public List<WayPoint> getWayPoints() {
return wayPoints;
}
public WayPoint moveBackward() {
if (currentWayPoint != null) {
int currentWayPointIndex = wayPoints.indexOf(currentWayPoint);
if (currentWayPointIndex > 0) {
currentWayPoint = wayPoints.get(currentWayPointIndex - 1);
wayPoints.remove(currentWayPointIndex);
}
}
return currentWayPoint;
}
public WayPoint moveForward() {
if (currentWayPoint != null) {
int currentWayPointIndex = wayPoints.indexOf(currentWayPoint);
if (currentWayPointIndex < (wayPoints.size() - 1) ) {
currentWayPoint = wayPoints.get(currentWayPointIndex + 1);
}
}
return currentWayPoint;
}
public static class WayPoint {
private final MongoCollection collection;
private MongoQueryOptions queryOptions;
public WayPoint(MongoCollection collection, MongoQueryOptions queryOptions) {
this.collection = collection;
this.queryOptions = queryOptions;
}
public String getLabel() {
return collection.getDatabaseName() + "/" + collection.getName();
}
public MongoCollection getCollection() {
return collection;
}
public void setQueryOptions(MongoQueryOptions queryOptions) {
this.queryOptions = queryOptions;
}
public MongoQueryOptions getQueryOptions() {
return queryOptions;
}
}
}