/TRUNK/OpenEhr/src/OpenEhr/Validation/ValidationUtility.cs

# · C# · 198 lines · 160 code · 37 blank · 1 comment · 48 complexity · 5ad3ecc763023431e4d59ced86006c8e MD5 · raw file

  1. using System;
  2. using OpenEhr.AM.Archetype.ConstraintModel;
  3. using OpenEhr.Futures.OperationalTemplate;
  4. using OpenEhr.DesignByContract;
  5. using OpenEhr.RM.DataTypes.Text;
  6. using OpenEhr.RM.Support.Terminology;
  7. using OpenEhr.RM.Support.Terminology.Impl;
  8. using OpenEhr.AM.Archetype.Assertion;
  9. using OpenEhr.AM.Archetype.ConstraintModel.Primitive;
  10. using Microsoft.Practices.EnterpriseLibrary.Common.Configuration;
  11. namespace OpenEhr.Validation
  12. {
  13. public static class ValidationUtility
  14. {
  15. internal static string GetNameConstraint(CComplexObject cComplexObject)
  16. {
  17. string name = string.Empty;
  18. if (cComplexObject.Attributes != null)
  19. {
  20. foreach (CAttribute attribute in cComplexObject.Attributes)
  21. {
  22. if (attribute.RmAttributeName == "name" && attribute.Children.Count > 0)
  23. {
  24. CPrimitiveObject primativeObject = attribute.Children[0] as CPrimitiveObject;
  25. if (primativeObject != null)
  26. {
  27. CString cString = primativeObject.Item as CString;
  28. if (cString != null && cString.List.Count > 0)
  29. {
  30. name = cString.List[0];
  31. break;
  32. }
  33. }
  34. }
  35. }
  36. }
  37. return name;
  38. }
  39. private static string language = "en";
  40. internal static string Language
  41. {
  42. set
  43. {
  44. Check.Require(!string.IsNullOrEmpty(value), "languange must not be null or empty");
  45. language = value;
  46. }
  47. }
  48. internal static string AssertionRegExPattern(Assertion assertion)
  49. {
  50. Check.Require(assertion != null, "assertion must not be null.");
  51. string assertionRegex = string.Empty;
  52. ExprBinaryOperator expression = assertion.Expression as ExprBinaryOperator;
  53. if (expression != null)
  54. {
  55. ExprLeaf rightExpression = expression.RightOperand as ExprLeaf;
  56. if (rightExpression != null)
  57. {
  58. CString stringConstraint = rightExpression.Item as CString;
  59. Check.Assert(stringConstraint != null);
  60. Check.Assert(!string.IsNullOrEmpty(stringConstraint.Pattern));
  61. Check.Assert(!(stringConstraint.Pattern.StartsWith("/") &&
  62. stringConstraint.Pattern.EndsWith("/")), "Regex is enclosed in forward slashes, as with the C_STRING produced by old version of the ADL Parser.");
  63. // Cleanse regex of fullstops which are not either preceded by a backslash (\.) or followed by a star (.*)
  64. assertionRegex = stringConstraint.Pattern
  65. .Replace(".*", " * ")
  66. .Replace(@"\.", @" \ ")
  67. .Replace(".", @"\.")
  68. .Replace(@" \ ", @"\.")
  69. .Replace(" * ", ".*");
  70. }
  71. }
  72. return assertionRegex;
  73. }
  74. internal static bool ValidValueTermDef(DvCodedText dvCodedText, CAttribute cAttribute, IConfigurationSource configSource)
  75. {
  76. string value = string.Empty;
  77. if (dvCodedText.DefiningCode.TerminologyId.Value == OpenEhrTerminologyIdentifiers.TerminologyIdOpenehr)
  78. value = OpenEhrTermDefTerm(dvCodedText.DefiningCode.CodeString, configSource);
  79. else if (dvCodedText.DefiningCode.TerminologyId.Value == "local")
  80. value = LocalTermDefText(dvCodedText.DefiningCode.CodeString, cAttribute);
  81. if (!string.IsNullOrEmpty(value)
  82. && !string.IsNullOrEmpty(dvCodedText.Value)
  83. && value != dvCodedText.Value)
  84. {
  85. return false;
  86. }
  87. if (!string.IsNullOrEmpty(value) && string.IsNullOrEmpty(dvCodedText.Value))
  88. dvCodedText.Value = value;
  89. return true;
  90. }
  91. internal static string OpenEhrTermDefTerm(string codeString, IConfigurationSource configSource)
  92. {
  93. Check.Require(!string.IsNullOrEmpty(codeString), "codeString must not be null or Empty.");
  94. string termDefText = TerminologyServiceFactory.Create(configSource)
  95. .Terminology(OpenEhrTerminologyIdentifiers.TerminologyIdOpenehr)
  96. .RubricForCode(codeString, language);
  97. Check.Ensure(!string.IsNullOrEmpty(termDefText));
  98. return termDefText;
  99. }
  100. internal static string LocalTermDefText(string codeString, CAttribute cAttribute)
  101. {
  102. Check.Require(!string.IsNullOrEmpty(codeString), "codeString must not be null or empty.");
  103. Check.Require(cAttribute != null, "cAttribute must not be null");
  104. CComplexObject parent = cAttribute.parent;
  105. return LocalTermDefText(codeString, parent);
  106. }
  107. internal static void PopulateLocatableAttributes(CComplexObject cComplexObject, OpenEhr.RM.Common.Archetyped.Impl.Locatable locatable)
  108. {
  109. Check.Require(locatable != null, "locatable must not be null.");
  110. Check.Require(cComplexObject != null, "cComplexObject must not be null.");
  111. string codeString = null;
  112. if (string.IsNullOrEmpty(locatable.ArchetypeNodeId))
  113. {
  114. CArchetypeRoot archetypeRoot = cComplexObject as CArchetypeRoot;
  115. if (archetypeRoot != null)
  116. {
  117. locatable.ArchetypeNodeId = archetypeRoot.ArchetypeId.Value;
  118. codeString = cComplexObject.NodeId;
  119. }
  120. else
  121. {
  122. locatable.ArchetypeNodeId = cComplexObject.NodeId;
  123. codeString = cComplexObject.NodeId;
  124. }
  125. }
  126. if (locatable.Name == null || string.IsNullOrEmpty(locatable.Name.Value))
  127. {
  128. if (string.IsNullOrEmpty(codeString))
  129. codeString = cComplexObject.NodeId;
  130. locatable.Name = new DvText(LocalTermDefText(codeString, cComplexObject));
  131. }
  132. Check.Ensure(!string.IsNullOrEmpty(locatable.ArchetypeNodeId), "ArchetypeId must not be null or empty.");
  133. Check.Ensure(locatable.Name != null && !string.IsNullOrEmpty(locatable.Name.Value), "name must not be null.");
  134. }
  135. public static string LocalTermDefText(string codeString, CObject cObject)
  136. {
  137. Check.Require(!string.IsNullOrEmpty(codeString), "codeString must not be null or empty.");
  138. Check.Require(cObject != null, "cObject must not be null");
  139. CArchetypeRoot cArchetypeRoot = GetCArchetypeRoot(cObject);
  140. Check.Assert(cArchetypeRoot.TermDefinitions.HasKey(codeString));
  141. string termDefText = cArchetypeRoot.TermDefinitions.Item(codeString).Items.Item("text");
  142. Check.Ensure(!string.IsNullOrEmpty(termDefText));
  143. return termDefText;
  144. }
  145. internal static CArchetypeRoot GetCArchetypeRoot(CObject cObject)
  146. {
  147. Check.Require(cObject != null, "cObject must not be null");
  148. CObject parentObject = cObject;
  149. CArchetypeRoot cArchetypeRoot = null;
  150. while (parentObject != null && (cArchetypeRoot = parentObject as CArchetypeRoot) == null)
  151. {
  152. CAttribute cattribute = parentObject.Parent;
  153. Check.Assert(cattribute != null, "cattribute must not be null");
  154. parentObject = cattribute.parent;
  155. }
  156. if (cArchetypeRoot == null)
  157. throw new ApplicationException("Operational template must contain CArchetypeRoot");
  158. return cArchetypeRoot;
  159. }
  160. }
  161. }