au.csiro.pathling.terminology.caching.PersistentCachingTerminologyService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of terminology Show documentation
Show all versions of terminology Show documentation
Interact with a FHIR terminology server from Spark.
/*
* Copyright 2023 Commonwealth Scientific and Industrial Research
* Organisation (CSIRO) ABN 41 687 119 230.
*
* 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 au.csiro.pathling.terminology.caching;
import static java.util.Objects.requireNonNull;
import au.csiro.pathling.config.HttpClientCachingConfiguration;
import au.csiro.pathling.fhir.TerminologyClient;
import java.io.Closeable;
import java.nio.file.Path;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import org.infinispan.Cache;
import org.infinispan.commons.marshall.JavaSerializationMarshaller;
import org.infinispan.configuration.cache.Configuration;
import org.infinispan.configuration.cache.ConfigurationBuilder;
import org.infinispan.configuration.global.GlobalConfiguration;
import org.infinispan.configuration.global.GlobalConfigurationBuilder;
import org.infinispan.eviction.EvictionStrategy;
import org.infinispan.manager.DefaultCacheManager;
import org.infinispan.manager.EmbeddedCacheManager;
/**
* A terminology service that uses embedded Infinispan to cache results on disk. Requires
* configuration that includes a storage location, which is where cache data and indexes will be
* stored.
*
* @author John Grimes
*/
public class PersistentCachingTerminologyService extends CachingTerminologyService {
private static final String DATA_DIRECTORY = "data";
private static final String INDEX_DIRECTORY = "index";
public PersistentCachingTerminologyService(@Nonnull final TerminologyClient terminologyClient,
@Nullable final Closeable toClose,
@Nonnull final HttpClientCachingConfiguration configuration) {
super(terminologyClient, toClose, configuration);
}
@Override
protected EmbeddedCacheManager buildCacheManager() {
final GlobalConfigurationBuilder globalConfigBuilder = new GlobalConfigurationBuilder();
globalConfigBuilder.serialization()
.marshaller(new JavaSerializationMarshaller())
.allowList()
.addRegexp(".*");
final GlobalConfiguration globalConfig = globalConfigBuilder.build();
return new DefaultCacheManager(globalConfig);
}
@Override
protected Cache buildCache(@Nonnull final EmbeddedCacheManager cacheManager,
@Nonnull final String cacheName) {
final String storagePath = configuration.getStoragePath();
final String dataLocation = Path.of(requireNonNull(storagePath), DATA_DIRECTORY).toString();
final String indexLocation = Path.of(storagePath, INDEX_DIRECTORY).toString();
final Configuration cacheConfig = new ConfigurationBuilder()
.memory()
.maxCount(configuration.getMaxEntries())
.whenFull(EvictionStrategy.REMOVE)
.persistence()
.addSoftIndexFileStore()
.dataLocation(dataLocation)
.indexLocation(indexLocation)
.async()
.build();
cacheManager.defineConfiguration(cacheName, cacheConfig);
return cacheManager.getCache(cacheName);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy