/* This program is free software: you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public License
as published by the Free Software Foundation, either version 3 of
the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
package org.opentripplanner.analyst.request;
import javax.annotation.PostConstruct;
import lombok.Setter;
import org.opentripplanner.routing.core.RoutingRequest;
import org.opentripplanner.routing.services.GraphService;
import org.opentripplanner.routing.services.SPTService;
import org.opentripplanner.routing.spt.ShortestPathTree;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import com.google.common.cache.CacheBuilder;
import com.google.common.cache.CacheLoader;
import com.google.common.cache.LoadingCache;
public class SPTCache extends CacheLoader<RoutingRequest, ShortestPathTree> {
private static final Logger LOG = LoggerFactory.getLogger(SPTCache.class);
@Autowired private SPTService sptService;
@Autowired private GraphService graphService;
private LoadingCache<RoutingRequest, ShortestPathTree> sptCache;
@Setter private int size = 200;
@Setter private int concurrency = 16;
@PostConstruct
private void runAfterInjection() {
this.sptCache = CacheBuilder.newBuilder()
.concurrencyLevel(concurrency)
.maximumSize(size)
.build(this);
}
@Override /** completes the abstract CacheLoader superclass */
public ShortestPathTree load(RoutingRequest req) throws Exception {
LOG.debug("spt cache miss : {}", req);
req.setRoutingContext(graphService.getGraph());
long t0 = System.currentTimeMillis();
ShortestPathTree spt = sptService.getShortestPathTree(req);
long t1 = System.currentTimeMillis();
LOG.debug("calculated spt in {}msec", (int) (t1 - t0));
req.cleanup();
return spt;
}
public ShortestPathTree get(RoutingRequest req) throws Exception {
return req == null ? null : sptCache.get(req);
}
}