Merge pull request #919 from hapifhir/fix-FilesystemBinaryStorage-interceptor
Fix filesystem binary storage interceptor
This commit is contained in:
@@ -69,7 +69,7 @@ public class AppProperties {
|
||||
|
||||
private BinaryStorageMode binary_storage_mode = BinaryStorageMode.DATABASE;
|
||||
private String binary_storage_filesystem_base_directory;
|
||||
private Integer inline_resource_storage_below_size;
|
||||
private Integer binary_storage_minimum_binary_size;
|
||||
private Boolean bulk_export_enabled = false;
|
||||
private Boolean bulk_import_enabled = false;
|
||||
private Boolean default_pretty_print = true;
|
||||
@@ -513,12 +513,12 @@ public class AppProperties {
|
||||
this.binary_storage_filesystem_base_directory = binary_storage_filesystem_base_directory;
|
||||
}
|
||||
|
||||
public Integer getInline_resource_storage_below_size() {
|
||||
return inline_resource_storage_below_size;
|
||||
public Integer getBinary_storage_minimum_binary_size() {
|
||||
return binary_storage_minimum_binary_size;
|
||||
}
|
||||
|
||||
public void setInline_resource_storage_below_size(Integer inline_resource_storage_below_size) {
|
||||
this.inline_resource_storage_below_size = inline_resource_storage_below_size;
|
||||
public void setBinary_storage_minimum_binary_size(Integer binary_storage_minimum_binary_size) {
|
||||
this.binary_storage_minimum_binary_size = binary_storage_minimum_binary_size;
|
||||
}
|
||||
|
||||
public Boolean getBulk_export_enabled() {
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
package ca.uhn.fhir.jpa.starter.common;
|
||||
|
||||
import ca.uhn.fhir.IHapiBootOrder;
|
||||
import ca.uhn.fhir.interceptor.api.IInterceptorService;
|
||||
import ca.uhn.fhir.jpa.binary.interceptor.BinaryStorageInterceptor;
|
||||
import ca.uhn.fhir.jpa.starter.AppProperties;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.context.event.ContextRefreshedEvent;
|
||||
import org.springframework.context.event.EventListener;
|
||||
import org.springframework.core.annotation.Order;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Component
|
||||
public class BinaryStorageInterceptorRegistrar {
|
||||
private static final Logger ourLog = LoggerFactory.getLogger(BinaryStorageInterceptorRegistrar.class);
|
||||
|
||||
private final IInterceptorService myInterceptorService;
|
||||
private final BinaryStorageInterceptor<?> myBinaryStorageInterceptor;
|
||||
private final AppProperties myAppProperties;
|
||||
|
||||
public BinaryStorageInterceptorRegistrar(
|
||||
IInterceptorService theInterceptorService,
|
||||
BinaryStorageInterceptor<?> theBinaryStorageInterceptor,
|
||||
AppProperties theAppProperties) {
|
||||
myInterceptorService = theInterceptorService;
|
||||
myBinaryStorageInterceptor = theBinaryStorageInterceptor;
|
||||
myAppProperties = theAppProperties;
|
||||
}
|
||||
|
||||
@EventListener(classes = {ContextRefreshedEvent.class})
|
||||
@Order(IHapiBootOrder.REGISTER_INTERCEPTORS)
|
||||
public void register() {
|
||||
if (!myAppProperties.getBinary_storage_enabled()) {
|
||||
ourLog.debug("Binary storage disabled; skipping BinaryStorageInterceptor registration");
|
||||
return;
|
||||
}
|
||||
ourLog.info("Registering BinaryStorageInterceptor with JPA interceptor service");
|
||||
myInterceptorService.registerInterceptor(myBinaryStorageInterceptor);
|
||||
}
|
||||
}
|
||||
@@ -227,11 +227,6 @@ public class FhirServerConfigCommon {
|
||||
jpaStorageSettings.setLastNEnabled(true);
|
||||
}
|
||||
|
||||
Integer inlineResourceThreshold = resolveInlineResourceThreshold(appProperties);
|
||||
if (inlineResourceThreshold != null && inlineResourceThreshold != 0) {
|
||||
jpaStorageSettings.setInlineResourceTextBelowSize(inlineResourceThreshold);
|
||||
}
|
||||
|
||||
jpaStorageSettings.setStoreResourceInHSearchIndex(appProperties.getStore_resource_in_lucene_index_enabled());
|
||||
jpaStorageSettings.setNormalizedQuantitySearchLevel(appProperties.getNormalized_quantity_search_level());
|
||||
jpaStorageSettings.setIndexOnContainedResources(appProperties.getEnable_index_contained_resource());
|
||||
@@ -403,7 +398,7 @@ public class FhirServerConfigCommon {
|
||||
}
|
||||
|
||||
private Integer resolveInlineResourceThreshold(AppProperties appProperties) {
|
||||
Integer inlineResourceThreshold = appProperties.getInline_resource_storage_below_size();
|
||||
Integer inlineResourceThreshold = appProperties.getBinary_storage_minimum_binary_size();
|
||||
if (inlineResourceThreshold == null
|
||||
&& appProperties.getBinary_storage_mode() == AppProperties.BinaryStorageMode.FILESYSTEM) {
|
||||
return DEFAULT_FILESYSTEM_INLINE_THRESHOLD;
|
||||
|
||||
@@ -15,7 +15,6 @@ import ca.uhn.fhir.jpa.api.config.JpaStorageSettings;
|
||||
import ca.uhn.fhir.jpa.api.config.ThreadPoolFactoryConfig;
|
||||
import ca.uhn.fhir.jpa.api.dao.DaoRegistry;
|
||||
import ca.uhn.fhir.jpa.api.dao.IFhirSystemDao;
|
||||
import ca.uhn.fhir.jpa.binary.interceptor.BinaryStorageInterceptor;
|
||||
import ca.uhn.fhir.jpa.binary.provider.BinaryAccessProvider;
|
||||
import ca.uhn.fhir.jpa.config.util.HapiEntityManagerFactoryUtil;
|
||||
import ca.uhn.fhir.jpa.config.util.ResourceCountCacheUtil;
|
||||
@@ -323,7 +322,6 @@ public class StarterJpaConfig {
|
||||
Optional<CorsInterceptor> corsInterceptor,
|
||||
IInterceptorBroadcaster interceptorBroadcaster,
|
||||
Optional<BinaryAccessProvider> binaryAccessProvider,
|
||||
BinaryStorageInterceptor binaryStorageInterceptor,
|
||||
IValidatorModule validatorModule,
|
||||
Optional<GraphQLProvider> graphQLProvider,
|
||||
BulkDataExportProvider bulkDataExportProvider,
|
||||
@@ -455,7 +453,6 @@ public class StarterJpaConfig {
|
||||
// Binary Storage
|
||||
if (appProperties.getBinary_storage_enabled() && binaryAccessProvider.isPresent()) {
|
||||
fhirServer.registerProvider(binaryAccessProvider.get());
|
||||
fhirServer.registerInterceptor(binaryStorageInterceptor);
|
||||
}
|
||||
|
||||
// Validation
|
||||
|
||||
Reference in New Issue
Block a user