/** * Copyright (C) 2012 - present by OpenGamma Inc. and the OpenGamma group of companies * * Please see distribution for license. */ package com.opengamma.master.marketdatasnapshot.impl; import java.util.ArrayList; import java.util.List; import net.sf.ehcache.CacheManager; import org.joda.beans.Bean; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.threeten.bp.Instant; import com.opengamma.id.UniqueId; import com.opengamma.id.VersionCorrection; import com.opengamma.master.cache.AbstractEHCachingMaster; import com.opengamma.master.cache.EHCachingSearchCache; import com.opengamma.master.marketdatasnapshot.MarketDataSnapshotDocument; import com.opengamma.master.marketdatasnapshot.MarketDataSnapshotHistoryRequest; import com.opengamma.master.marketdatasnapshot.MarketDataSnapshotHistoryResult; import com.opengamma.master.marketdatasnapshot.MarketDataSnapshotMaster; import com.opengamma.master.marketdatasnapshot.MarketDataSnapshotSearchRequest; import com.opengamma.master.marketdatasnapshot.MarketDataSnapshotSearchResult; import com.opengamma.util.paging.Paging; import com.opengamma.util.paging.PagingRequest; import com.opengamma.util.tuple.IntObjectPair; /** * A cache decorating a {@code MarketDataSnapshotMaster}, mainly intended to reduce the frequency and repetition of queries to * the underlying master. * <p> * The cache is implemented using {@code EHCache}. */ public class EHCachingMarketDataSnapshotMaster extends AbstractEHCachingMaster<MarketDataSnapshotDocument> implements MarketDataSnapshotMaster { /** Logger. */ private static final Logger s_logger = LoggerFactory.getLogger(EHCachingMarketDataSnapshotMaster.class); /** The document search cache */ private EHCachingSearchCache _documentSearchCache; /** The history search cache */ private EHCachingSearchCache _historySearchCache; /** * Creates an instance over an underlying source specifying the cache manager. * * @param name the cache name, not null * @param underlying the underlying market data snapshot source, not null * @param cacheManager the cache manager, not null */ public EHCachingMarketDataSnapshotMaster(final String name, final MarketDataSnapshotMaster underlying, final CacheManager cacheManager) { super(name + "MarketDataSnapshot", underlying, cacheManager); // Create the document search cache and register a marketDataSnapshot master searcher _documentSearchCache = new EHCachingSearchCache(name + "MarketDataSnapshot", cacheManager, new EHCachingSearchCache.Searcher() { @Override public IntObjectPair<List<UniqueId>> search(Bean request, PagingRequest pagingRequest) { // Fetch search results from underlying master MarketDataSnapshotSearchResult result = ((MarketDataSnapshotMaster) getUnderlying()).search((MarketDataSnapshotSearchRequest) EHCachingSearchCache.withPagingRequest(request, pagingRequest)); // Cache the result documents EHCachingSearchCache.cacheDocuments(result.getDocuments(), getUidToDocumentCache()); // Return the list of result UniqueIds return IntObjectPair.of(result.getPaging().getTotalItems(), EHCachingSearchCache.extractUniqueIds(result.getDocuments())); } }); // Create the history search cache and register a marketDataSnapshot master searcher _historySearchCache = new EHCachingSearchCache(name + "MarketDataSnapshotHistory", cacheManager, new EHCachingSearchCache.Searcher() { @Override public IntObjectPair<List<UniqueId>> search(Bean request, PagingRequest pagingRequest) { // Fetch search results from underlying master MarketDataSnapshotHistoryResult result = ((MarketDataSnapshotMaster) getUnderlying()).history((MarketDataSnapshotHistoryRequest) EHCachingSearchCache.withPagingRequest(request, pagingRequest)); // Cache the result documents EHCachingSearchCache.cacheDocuments(result.getDocuments(), getUidToDocumentCache()); // Return the list of result UniqueIds return IntObjectPair.of(result.getPaging().getTotalItems(), EHCachingSearchCache.extractUniqueIds(result.getDocuments())); } }); // Prime document search cache MarketDataSnapshotSearchRequest defaultSearch = new MarketDataSnapshotSearchRequest(); _documentSearchCache.prefetch(defaultSearch, PagingRequest.FIRST_PAGE); } @Override public MarketDataSnapshotSearchResult search(MarketDataSnapshotSearchRequest request) { // Ensure that the relevant prefetch range is cached, otherwise fetch and cache any missing sub-ranges in background _documentSearchCache.prefetch(EHCachingSearchCache.withPagingRequest(request, null), request.getPagingRequest()); // Fetch the paged request range; if not entirely cached then fetch and cache it in foreground IntObjectPair<List<UniqueId>> pair = _documentSearchCache.search( EHCachingSearchCache.withPagingRequest(request, null), request.getPagingRequest(), false); // don't block until cached List<MarketDataSnapshotDocument> documents = new ArrayList<>(); for (UniqueId uniqueId : pair.getSecond()) { documents.add(get(uniqueId)); } MarketDataSnapshotSearchResult result = new MarketDataSnapshotSearchResult(documents); result.setPaging(Paging.of(request.getPagingRequest(), pair.getFirstInt())); final VersionCorrection vc = request.getVersionCorrection().withLatestFixed(Instant.now()); result.setVersionCorrection(vc); // Debug: check result against underlying if (EHCachingSearchCache.TEST_AGAINST_UNDERLYING) { MarketDataSnapshotSearchResult check = ((MarketDataSnapshotMaster) getUnderlying()).search(request); if (!result.getPaging().equals(check.getPaging())) { s_logger.error("_documentSearchCache.getCache().getName() + \" returned paging:\\n\"" + result.getPaging() + "\nbut the underlying master returned paging:\n" + check.getPaging()); } if (!result.getDocuments().equals(check.getDocuments())) { s_logger.error(_documentSearchCache.getCache().getName() + " returned documents:\n" + result.getDocuments() + "\nbut the underlying master returned documents:\n" + check.getDocuments()); } } return result; } @Override public MarketDataSnapshotHistoryResult history(MarketDataSnapshotHistoryRequest request) { // Ensure that the relevant prefetch range is cached, otherwise fetch and cache any missing sub-ranges in background _historySearchCache.prefetch(EHCachingSearchCache.withPagingRequest(request, null), request.getPagingRequest()); // Fetch the paged request range; if not entirely cached then fetch and cache it in foreground IntObjectPair<List<UniqueId>> pair = _historySearchCache.search( EHCachingSearchCache.withPagingRequest(request, null), request.getPagingRequest(), false); // don't block until cached List<MarketDataSnapshotDocument> documents = new ArrayList<>(); for (UniqueId uniqueId : pair.getSecond()) { documents.add(get(uniqueId)); } MarketDataSnapshotHistoryResult result = new MarketDataSnapshotHistoryResult(documents); result.setPaging(Paging.of(request.getPagingRequest(), pair.getFirstInt())); return result; } }