Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
The contents of this file are subject to the Mozilla Public License Version 1.1
(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.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
specific language governing rights and limitations under the License.
The Original Code is "ValidationContextImpl.java". Description:
"A default implementation of ValidationContext."
The Initial Developer of the Original Code is University Health Network. Copyright (C)
2004. All Rights Reserved.
Contributor(s): ______________________________________.
Alternatively, the contents of this file may be used under the terms of the
GNU General Public License (the �GPL�), in which case the provisions of the GPL are
applicable instead of those above. If you wish to allow use of your version of this
file only under the terms of the GPL and not to allow others to use your version
of this file under the MPL, indicate your decision by deleting the provisions above
and replace them with the notice and other provisions required by the GPL License.
If you do not delete the provisions above, a recipient may use your version of
this file under either the MPL or the GPL.
*/
package ca.uhn.hl7v2.validation.impl;
import java.io.Serializable;
import java.util.*;
import ca.uhn.hl7v2.model.Primitive;
import ca.uhn.hl7v2.validation.EncodingRule;
import ca.uhn.hl7v2.validation.MessageRule;
import ca.uhn.hl7v2.validation.PrimitiveTypeRule;
import ca.uhn.hl7v2.validation.Rule;
import ca.uhn.hl7v2.validation.ValidationContext;
import ca.uhn.hl7v2.validation.builder.ValidationRuleBuilder;
/**
* A default implementation of ValidationContext.
*
* @author Bryan Tripp
* @author Christian Ohr
*/
@SuppressWarnings("serial")
public class ValidationContextImpl implements ValidationContext, Serializable {
private List> myPrimitiveRuleBindings;
private List> myMessageRuleBindings;
private List> myEncodingRuleBindings;
protected Map> primitiveRuleCache;
protected Map> messageRuleCache;
protected Map> encodingRuleCache;
public ValidationContextImpl() {
myPrimitiveRuleBindings = new ArrayList>();
myMessageRuleBindings = new ArrayList>();
myEncodingRuleBindings = new ArrayList>();
initCaches();
}
ValidationContextImpl(ValidationRuleBuilder builder) {
this();
for (RuleBinding extends Rule>> ruleBinding : builder.initialize()) {
if (ruleBinding instanceof MessageRuleBinding)
myMessageRuleBindings.add((MessageRuleBinding)ruleBinding);
else if (ruleBinding instanceof EncodingRuleBinding)
myEncodingRuleBindings.add((EncodingRuleBinding)ruleBinding);
else if (ruleBinding instanceof PrimitiveTypeRuleBinding)
myPrimitiveRuleBindings.add((PrimitiveTypeRuleBinding)ruleBinding);
}
}
/**
* Initializes caches for the three rule types. Used to accelerate the identification
* of the rules that apply to a message or primitive.
*
* @see #newRuleCache(int)
* @see #primitiveRuleCache
* @see #messageRuleCache
* @see #encodingRuleCache
*/
protected void initCaches() {
primitiveRuleCache = newRuleCache(100);
messageRuleCache = newRuleCache(100);
encodingRuleCache = newRuleCache(10);
}
/**
* @see ValidationContext#getPrimitiveRules(String, String, Primitive)
* @param theType ignored
*/
public Collection getPrimitiveRules(String theVersion, String theTypeName, Primitive theType) {
Collection rules = primitiveRuleCache.get(theVersion + theTypeName);
if (rules == null) {
rules = getRules(myPrimitiveRuleBindings, theVersion, theTypeName);
primitiveRuleCache.put(theVersion + theTypeName, rules);
}
return rules;
}
/**
* @return a List of RuleBindings for
* PrimitiveTypeRules.
*/
public List> getPrimitiveRuleBindings() {
return myPrimitiveRuleBindings;
}
/**
* @see ValidationContext#getMessageRules(java.lang.String, java.lang.String, java.lang.String)
*/
public Collection getMessageRules(String theVersion, String theMessageType, String theTriggerEvent) {
Collection rules = messageRuleCache.get(theVersion + theMessageType + theTriggerEvent);
if (rules == null) {
rules = getRules(myMessageRuleBindings, theVersion, theMessageType + "^" + theTriggerEvent);
messageRuleCache.put(theVersion + theMessageType + theTriggerEvent, rules);
}
return rules;
}
/**
* @return a List of RuleBindings for MessageRules.
*/
public List> getMessageRuleBindings() {
return myMessageRuleBindings;
}
/**
* @see ca.uhn.hl7v2.validation.ValidationContext#getEncodingRules(java.lang.String,
* java.lang.String)
*/
public Collection getEncodingRules(String theVersion, String theEncoding) {
Collection rules = encodingRuleCache.get(theVersion + theEncoding);
if (rules == null) {
rules = getRules(myEncodingRuleBindings, theVersion, theEncoding);
encodingRuleCache.put(theVersion + theEncoding, rules);
}
return rules;
}
/**
* @return a List of RuleBindings for EncodingRules.
*/
public List> getEncodingRuleBindings() {
return myEncodingRuleBindings;
}
private > Collection getRules(List> bindings, String version, String scope) {
List active = new ArrayList(bindings.size());
for (RuleBinding binding : bindings) {
if (applies(binding, version, scope))
active.add(binding.getRule());
}
return active;
}
private boolean applies(RuleBinding> binding, String version, String scope) {
return (binding.getActive() && binding.appliesToVersion(version) && binding.appliesToScope(scope));
}
/**
* Simple cache implementation that keeps at most {@link #size} elements around
*
* @param
*/
private static class RuleCache> extends LinkedHashMap> {
private final int size;
private RuleCache(int size) {
super(size);
this.size = size;
}
@Override
protected boolean removeEldestEntry(Map.Entry> eldest) {
return size() > size;
}
}
protected static > Map> newRuleCache(int size) {
Map> cache = new RuleCache(size);
return Collections.synchronizedMap(cache);
}
}