From 8563a99b0538f48877a7778a5eb10bfbc68bc321 Mon Sep 17 00:00:00 2001 From: buczekp <buczekp> Date: Fri, 19 Nov 2010 10:16:19 +0000 Subject: [PATCH] [LMS-1858] improved speed vocabulary term validation; exposed new method from properties converter (to be used by dynamic property evaluator) SVN: 18810 --- .../bo/EntityPropertiesConverter.java | 27 +++++++++++++--- .../bo/IEntityPropertiesConverter.java | 6 ++++ .../server/dataaccess/PropertyValidator.java | 32 ++----------------- .../business/bo/PropertyValidatorTest.java | 30 +++-------------- 4 files changed, 35 insertions(+), 60 deletions(-) diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/server/business/bo/EntityPropertiesConverter.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/server/business/bo/EntityPropertiesConverter.java index f3b525c6fa9..7a546cd0ba0 100644 --- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/server/business/bo/EntityPropertiesConverter.java +++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/server/business/bo/EntityPropertiesConverter.java @@ -85,8 +85,8 @@ public final class EntityPropertiesConverter implements IEntityPropertiesConvert public EntityPropertiesConverter(final EntityKind entityKind, final IDAOFactory daoFactory) { - this(entityKind, daoFactory, new PropertyValidator(daoFactory), - new DynamicPropertiesUpdateChecker(), new DynamicProperiesPlaceholderCreator()); + this(entityKind, daoFactory, new PropertyValidator(), new DynamicPropertiesUpdateChecker(), + new DynamicProperiesPlaceholderCreator()); } @Private @@ -257,9 +257,7 @@ public final class EntityPropertiesConverter implements IEntityPropertiesConvert final T entityProperty = EntityPropertyPE.createEntityProperty(entityKind); entityProperty.setRegistrator(registrator); entityProperty.setEntityTypePropertyType(entityTypePropertyType); - final VocabularyTermPE vocabularyTerm = tryGetVocabularyTerm(value, propertyType); - final MaterialPE material = tryGetMaterial(value, propertyType); - entityProperty.setUntypedValue(value, vocabularyTerm, material); + setPropertyValue(entityProperty, propertyType, value); return entityProperty; } @@ -397,6 +395,25 @@ public final class EntityPropertiesConverter implements IEntityPropertiesConvert validatedValue); } + public final <T extends EntityPropertyPE> void setPropertyValue(final T entityProperty, + final PropertyTypePE propertyType, final String validatedValue) + { + assert validatedValue != null; + final VocabularyTermPE vocabularyTerm = tryGetVocabularyTerm(validatedValue, propertyType); + final MaterialPE material = tryGetMaterial(validatedValue, propertyType); + entityProperty.setUntypedValue(validatedValue, vocabularyTerm, material); + } + + public final <T extends EntityPropertyPE> void setPropertyValue(T entityProperty, + PropertyTypePE propertyType, EntityTypePropertyTypePE entityTypPropertyType, + final PersonPE registrator, String validatedValue) + { + assert validatedValue != null; + final VocabularyTermPE vocabularyTerm = tryGetVocabularyTerm(validatedValue, propertyType); + final MaterialPE material = tryGetMaterial(validatedValue, propertyType); + entityProperty.setUntypedValue(validatedValue, vocabularyTerm, material); + } + public <T extends EntityPropertyPE> Set<T> updateProperties(Collection<T> oldProperties, EntityTypePE entityType, List<IEntityProperty> newProperties, PersonPE registrator, Set<String> dynamicProperties) diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/server/business/bo/IEntityPropertiesConverter.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/server/business/bo/IEntityPropertiesConverter.java index 0ed42020c17..130d0bfa8e6 100644 --- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/server/business/bo/IEntityPropertiesConverter.java +++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/server/business/bo/IEntityPropertiesConverter.java @@ -60,6 +60,12 @@ public interface IEntityPropertiesConverter EntityTypePropertyTypePE entityTypePropertyType, final PersonPE registrator, String validatedValue); + /** + * Modifies value of given {@link EntityPropertyPE}. Value should be already validated. + */ + public <T extends EntityPropertyPE> void setPropertyValue(final T entityProperty, + final PropertyTypePE propertyType, final String validatedValue); + /** Updates Set<T> of properties. */ public <T extends EntityPropertyPE> Set<T> updateProperties(Collection<T> oldProperties, EntityTypePE entityType, List<IEntityProperty> newProperties, PersonPE registrator, diff --git a/openbis/source/java/ch/systemsx/cisd/openbis/generic/server/dataaccess/PropertyValidator.java b/openbis/source/java/ch/systemsx/cisd/openbis/generic/server/dataaccess/PropertyValidator.java index 448ca42db02..1722c880f9d 100644 --- a/openbis/source/java/ch/systemsx/cisd/openbis/generic/server/dataaccess/PropertyValidator.java +++ b/openbis/source/java/ch/systemsx/cisd/openbis/generic/server/dataaccess/PropertyValidator.java @@ -115,20 +115,6 @@ public final class PropertyValidator implements IPropertyValueValidator return datePatterns.toArray(ArrayUtils.EMPTY_STRING_ARRAY); } - public PropertyValidator() - { - // NOTE: controlled vocabulary validator will always fail - } - - public PropertyValidator(IDAOFactory daoFactory) - { - assert daoFactory != null : "Unspecified DAO factory."; - - final IDataTypeValidator dataTypeValidator = - dataTypeValidators.get(DataTypeCode.CONTROLLEDVOCABULARY); - ((ControlledVocabularyValidator) dataTypeValidator).setDaoFactory(daoFactory); - } - // // IPropertyValidator // @@ -287,18 +273,11 @@ public final class PropertyValidator implements IPropertyValueValidator private VocabularyPE vocabulary; - private IDAOFactory daoFactory; - final void setVocabulary(final VocabularyPE vocabulary) { this.vocabulary = vocabulary; } - public void setDaoFactory(final IDAOFactory daoFactory) - { - this.daoFactory = daoFactory; - } - // // IDataTypeValidator // @@ -308,16 +287,9 @@ public final class PropertyValidator implements IPropertyValueValidator assert value != null : "Unspecified value."; assert vocabulary != null : "Unspecified vocabulary."; - if (daoFactory == null) - { - throw UserFailureException - .fromTemplate("Controlled vocabulary validator wasn't initialized."); - } - final String upperCaseValue = value.toUpperCase(); - VocabularyTermPE termOrNull = - daoFactory.getVocabularyDAO().tryFindVocabularyTermByCode(vocabulary, - upperCaseValue); + vocabulary.tryGetVocabularyTerm(upperCaseValue); + VocabularyTermPE termOrNull = vocabulary.tryGetVocabularyTerm(upperCaseValue); if (termOrNull != null) { return upperCaseValue; diff --git a/openbis/sourceTest/java/ch/systemsx/cisd/openbis/generic/server/business/bo/PropertyValidatorTest.java b/openbis/sourceTest/java/ch/systemsx/cisd/openbis/generic/server/business/bo/PropertyValidatorTest.java index 3d38557a118..eda85c2ca83 100644 --- a/openbis/sourceTest/java/ch/systemsx/cisd/openbis/generic/server/business/bo/PropertyValidatorTest.java +++ b/openbis/sourceTest/java/ch/systemsx/cisd/openbis/generic/server/business/bo/PropertyValidatorTest.java @@ -21,7 +21,6 @@ import java.util.Date; import java.util.List; import org.apache.commons.lang.time.DateFormatUtils; -import org.jmock.Expectations; import org.testng.annotations.DataProvider; import org.testng.annotations.Test; @@ -46,7 +45,7 @@ public final class PropertyValidatorTest extends AbstractBOTest { private final PropertyValidator createPropertyValidator() { - return new PropertyValidator(daoFactory); + return new PropertyValidator(); } private final static PropertyTypePE createPropertyType(final DataTypeCode entityDataType) @@ -178,9 +177,9 @@ public final class PropertyValidatorTest extends AbstractBOTest } } - // + // // XML property with schema - // + // @Test public final void testValidateXMLPropertyValue() @@ -211,8 +210,8 @@ public final class PropertyValidatorTest extends AbstractBOTest "Provided value doesn't validate against schema of property type '%s'. " + "cvc-complex-type.2.4.d: " + "Invalid content was found starting with element 'footer'. " - + "No child element is expected at this point.", propertyLabel), ex - .getMessage()); + + "No child element is expected at this point.", propertyLabel), + ex.getMessage()); } } @@ -236,17 +235,7 @@ public final class PropertyValidatorTest extends AbstractBOTest public final void testValidateControlledVocabularyPropertyValue() { final PropertyTypePE propertyType = createControlledVocabularyPropertyType(); - final VocabularyPE vocabulary = propertyType.getVocabulary(); final String value = "goodValue"; - final String code = value.toUpperCase(); - final VocabularyTermPE term = createVocabularyTerm(code); - context.checking(new Expectations() - { - { - one(vocabularyDAO).tryFindVocabularyTermByCode(vocabulary, code); - will(returnValue(term)); - } - }); final PropertyValidator propertyValidator = createPropertyValidator(); propertyValidator.validatePropertyValue(propertyType, value); } @@ -255,16 +244,7 @@ public final class PropertyValidatorTest extends AbstractBOTest public final void testValidateControlledVocabularyPropertyValueFailed() { PropertyTypePE propertyType = createControlledVocabularyPropertyType(); - final VocabularyPE vocabulary = propertyType.getVocabulary(); final String value = "wrongValue"; - final String code = value.toUpperCase(); - context.checking(new Expectations() - { - { - one(vocabularyDAO).tryFindVocabularyTermByCode(vocabulary, code); - will(returnValue(null)); - } - }); final PropertyValidator propertyValidator = createPropertyValidator(); try { -- GitLab