Exemple #1
0
        private bool CopyToHl7Message(Hl7Message hl7Message, Hl7Comparator sourceComparator)
        {
            bool messagePopulated = true;

            // Check if both templates have been initialized correctly
            if ((this.Template == null) ||
                (sourceComparator.Template == null))
            {
                return(false);
            }

            // Iterate over this comparator
            foreach (Hl7ComparisonTag thisComparisonTag in this.Template.ComparisonTags)
            {
                // try to get the equivalent tag in the sourceComparator
                Hl7ComparisonTag sourceComparisonTag = sourceComparator.Template.ComparisonTags.Find(thisComparisonTag.Tag);
                if (sourceComparisonTag != null)
                {
                    System.String stringValue = sourceComparisonTag.DataFormat.ToHl7Format();
                    if (hl7Message != null)
                    {
                        // add the value
                        hl7Message.AddValue(sourceComparisonTag.Tag.Segment,
                                            sourceComparisonTag.Tag.FieldIndex,
                                            stringValue);
                    }
                }
            }

            return(messagePopulated);
        }
Exemple #2
0
        /// <summary>
        /// Try to find a comparison tag in the collection with the same tag as the given one.
        /// </summary>
        /// <param name="tag">Tag to try to find in the collection.</param>
        /// <returns>Hl7ComparisonTag - null if no match found</returns>
        public Hl7ComparisonTag Find(Hl7Tag tag)
        {
            Hl7ComparisonTag Hl7ComparisonTag = null;
            Hl7Tag           nullTag          = new Hl7Tag(Hl7SegmentEnum.Unknown, -1);

            if (tag != nullTag)
            {
                foreach (Hl7ComparisonTag lHl7ComparisonTag in this)
                {
                    if (lHl7ComparisonTag.Tag == tag)
                    {
                        Hl7ComparisonTag = lHl7ComparisonTag;
                        break;
                    }
                }
            }

            return(Hl7ComparisonTag);
        }
Exemple #3
0
 /// <summary>
 /// Determines whether the <see cref="Hl7ComparisonTagCollection"/> contains a specific element.
 /// </summary>
 /// <param name="value">The <see cref="Hl7ComparisonTag"/> to locate in the <see cref="Hl7ComparisonTagCollection"/>.</param>
 /// <returns>
 /// <c>true</c> if the <see cref="Hl7ComparisonTagCollection"/> contains the specified value;
 /// otherwise, <c>false</c>.
 /// </returns>
 public bool Contains(Hl7ComparisonTag value)
 {
     // If value is not of type Code, this will return false.
     return(List.Contains(value));
 }
Exemple #4
0
 /// <summary>
 /// Removes the first occurrence of a specific <see cref="Hl7ComparisonTag"/> from the <see cref="Hl7ComparisonTagCollection"/>.
 /// </summary>
 /// <param name="value">The <see cref="Hl7ComparisonTag"/> to remove from the <see cref="Hl7ComparisonTagCollection"/>.</param>
 public void Remove(Hl7ComparisonTag value)
 {
     List.Remove(value);
 }
Exemple #5
0
 /// <summary>
 /// Inserts an <see cref="Hl7ComparisonTag"/> element into the <see cref="Hl7ComparisonTag"/> at the specified index.
 /// </summary>
 /// <param name="index">The zero-based index at which value should be inserted.</param>
 /// <param name="value">The <see cref="Hl7ComparisonTagCollection"/> to insert.</param>
 public void Insert(int index, Hl7ComparisonTag value)
 {
     List.Insert(index, value);
 }
Exemple #6
0
 /// <summary>
 /// Searches for the specified <see cref="Hl7ComparisonTag"/> and
 /// returns the zero-based index of the first occurrence within the entire <see cref="Hl7ComparisonTagCollection"/>.
 /// </summary>
 /// <param name="value">The <see cref="Hl7ComparisonTag"/> to locate in the <see cref="Hl7ComparisonTagCollection"/>.</param>
 /// <returns>
 /// The zero-based index of the first occurrence of value within the entire <see cref="Hl7ComparisonTagCollection"/>,
 /// if found; otherwise, -1.
 /// </returns>
 public int IndexOf(Hl7ComparisonTag value)
 {
     return(List.IndexOf(value));
 }
Exemple #7
0
 /// <summary>
 /// Adds an object to the end of the <see cref="Hl7ComparisonTagCollection"/>.
 /// </summary>
 /// <param name="value">The <see cref="Hl7ComparisonTag"/> to be added to the end of the <see cref="Hl7ComparisonTagCollection"/>.</param>
 /// <returns>The <see cref="Hl7ComparisonTagCollection"/> index at which the value has been added.</returns>
 public int Add(Hl7ComparisonTag value)
 {
     return(List.Add(value));
 }
Exemple #8
0
        /// <summary>
        /// Compare the two messages.
        /// </summary>
        /// <param name="tagValueFilterCollection">Tag Value Filter.</param>
        /// <param name="resultsReporter">Results reporter.</param>
        /// <param name="thatBaseComparator">Reference comparator.</param>
        /// <returns>bool - true = messages compared, false messages not compared</returns>
        public override bool Compare(TagValueCollection tagValueFilterCollection, ResultsReporter resultsReporter, BaseComparator thatBaseComparator)
        {
            bool compared = false;

            if (thatBaseComparator is Hl7Comparator)
            {
                Hl7Comparator thatHl7Comparator = (Hl7Comparator)thatBaseComparator;

                // Check if both templates have been initialized correctly
                if ((this.Template == null) ||
                    (thatHl7Comparator.Template == null))
                {
                    return(false);
                }

                // Check for comparator equality
                if (this == thatHl7Comparator)
                {
                    return(true);
                }

                // filter out comparators for the same message types
                if ((this.Template.MessageType == thatHl7Comparator.Template.MessageType) &&
                    (this.Template.MessageSubType == thatHl7Comparator.Template.MessageSubType))
                {
                    return(false);
                }

                // generate a local Tag Value collection from this
                // - this collection will include any tag value pair from the original collection and
                // the tag value pairs of any tags only (in the original collection) that match from this
                // comparator - that is the values are taken from this comparator.
                TagValueCollection lTagValueFilterCollection = GenerateTagValueCollection(tagValueFilterCollection);

                // check to see if the comparision filters match - without Univeral Matching
                // - now try to match this local filter collection against thatDicomComparator
                // - comparators that match will have the same tag value pairs (including the value) as
                // each other.
                if ((tagValueFilterCollection.Count == lTagValueFilterCollection.Count) &&
                    (thatHl7Comparator.UseComparator(lTagValueFilterCollection, false) == true))
                {
                    MessageComparisonResults messageComparisonResults
                        = new MessageComparisonResults(this.Name,
                                                       thatHl7Comparator.Name,
                                                       this.Template.MessageType,
                                                       thatHl7Comparator.Template.MessageType,
                                                       this.Template.MessageSubType,
                                                       thatHl7Comparator.Template.MessageSubType);

                    // Iterate over this comparator
                    foreach (Hl7ComparisonTag thisComparisonTag in this.Template.ComparisonTags)
                    {
                        // try to get the equivalent tag in thatHl7Comparator
                        Hl7ComparisonTag thatComparisonTag = thatHl7Comparator.Template.ComparisonTags.Find(thisComparisonTag.Tag);
                        if (thatComparisonTag != null)
                        {
                            AttributeComparisonResults attributeComparisonResults
                                = new AttributeComparisonResults(SegmentNames.Name(thisComparisonTag.Tag.Segment),
                                                                 thisComparisonTag.Tag.FieldIndex,
                                                                 thisComparisonTag.DataFormat.ToHl7Format(),
                                                                 thatComparisonTag.DataFormat.ToHl7Format());
                            attributeComparisonResults.Name = DicomHl7TagMapTemplate.Hl7NameFromHl7Tag(thisComparisonTag.Tag);
                            if (thisComparisonTag.DataFormat.Equals(thatComparisonTag.DataFormat) == false)
                            {
                                DvtkData.Validation.ValidationMessage validationMessage = new DvtkData.Validation.ValidationMessage();
                                validationMessage.Type    = DvtkData.Validation.MessageType.Error;
                                validationMessage.Message = "Attribute values do not match.";

                                attributeComparisonResults.Messages.Add(validationMessage);
                            }
                            messageComparisonResults.Add(attributeComparisonResults);
                        }
                    }

                    resultsReporter.WriteMessageComparisonResults(messageComparisonResults);

                    compared = true;
                }
            }
            else if (thatBaseComparator is DicomComparator)
            {
                DicomComparator thatDicomComparator = (DicomComparator)thatBaseComparator;

                // Check if both templates have been initialized correctly
                if ((this.Template == null) ||
                    (thatDicomComparator.Template == null))
                {
                    return(false);
                }

                // generate a local Tag Value collection from this
                // - this collection will include any tag value pair from the original collection and
                // the tag value pairs of any tags only (in the original collection) that match from this
                // comparator - that is the values are taken from this comparator.
                TagValueCollection lTagValueFilterCollection = GenerateTagValueCollection(tagValueFilterCollection);

                // check to see if the comparision filters match - without Univeral Matching
                // - now try to match this local filter collection against thatDicomComparator
                // - comparators that match will have the same tag value pairs (including the value) as
                // each other.
                if ((tagValueFilterCollection.Count == lTagValueFilterCollection.Count) &&
                    (thatDicomComparator.UseComparator(lTagValueFilterCollection, false) == true))
                {
                    MessageComparisonResults messageComparisonResults
                        = new MessageComparisonResults(this.Name,
                                                       thatDicomComparator.Name,
                                                       this.Template.MessageType,
                                                       thatDicomComparator.Template.Command,
                                                       this.Template.MessageSubType,
                                                       thatDicomComparator.Template.SopClassUid);

                    // Iterate over this comparator
                    foreach (Hl7ComparisonTag thisComparisonTag in this.Template.ComparisonTags)
                    {
                        // try to get the equivalent tag in thatDicomComparator
                        DicomComparisonTag thatComparisonTag = thatDicomComparator.Template.ComparisonTags.Find(DicomHl7TagMapTemplate.Hl7ToDicomTag(thisComparisonTag.Tag));
                        if (thatComparisonTag != null)
                        {
                            AttributeComparisonResults attributeComparisonResults
                                = new AttributeComparisonResults(thatComparisonTag.Tag,
                                                                 SegmentNames.Name(thisComparisonTag.Tag.Segment),
                                                                 thisComparisonTag.Tag.FieldIndex,
                                                                 thisComparisonTag.DataFormat.ToHl7Format(),
                                                                 thatComparisonTag.DataFormat.ToDicomFormat());

                            if (thisComparisonTag.DataFormat.Equals(thatComparisonTag.DataFormat) == false)
                            {
                                DvtkData.Validation.ValidationMessage validationMessage = new DvtkData.Validation.ValidationMessage();
                                validationMessage.Type    = DvtkData.Validation.MessageType.Error;
                                validationMessage.Message = "Attribute values do not match.";

                                attributeComparisonResults.Messages.Add(validationMessage);
                            }
                            messageComparisonResults.Add(attributeComparisonResults);
                        }
                    }

                    resultsReporter.WriteMessageComparisonResults(messageComparisonResults);

                    compared = true;
                }
            }

            return(compared);
        }
 /// <summary>
 /// Copies the elements of the <see cref="ICollection"/> to a strong-typed <c>Hl7ComparisonTag[]</c>, 
 /// starting at a particular <c>Hl7ComparisonTag[]</c> index.
 /// </summary>
 /// <param name="array">
 /// The one-dimensional <c>Hl7ComparisonTag[]</c> that is the destination of the elements 
 /// copied from <see cref="ICollection"/>.
 /// The <c>Hl7ComparisonTag[]</c> must have zero-based indexing. 
 /// </param>
 /// <param name="index">
 /// The zero-based index in array at which copying begins.
 /// </param>
 /// <remarks>
 /// Provides the strongly typed member for <see cref="ICollection"/>.
 /// </remarks>
 public void CopyTo(Hl7ComparisonTag[] array, int index)
 {
     ((ICollection)this).CopyTo(array, index);
 }
 /// <summary>
 /// Determines whether the <see cref="Hl7ComparisonTagCollection"/> contains a specific element.
 /// </summary>
 /// <param name="value">The <see cref="Hl7ComparisonTag"/> to locate in the <see cref="Hl7ComparisonTagCollection"/>.</param>
 /// <returns>
 /// <c>true</c> if the <see cref="Hl7ComparisonTagCollection"/> contains the specified value; 
 /// otherwise, <c>false</c>.
 /// </returns>
 public bool Contains(Hl7ComparisonTag value)
 {
     // If value is not of type Code, this will return false.
     return (List.Contains(value));
 }
 /// <summary>
 /// Adds an object to the end of the <see cref="Hl7ComparisonTagCollection"/>.
 /// </summary>
 /// <param name="value">The <see cref="Hl7ComparisonTag"/> to be added to the end of the <see cref="Hl7ComparisonTagCollection"/>.</param>
 /// <returns>The <see cref="Hl7ComparisonTagCollection"/> index at which the value has been added.</returns>
 public int Add(Hl7ComparisonTag value)
 {
     return (List.Add(value));
 }
 /// <summary>
 /// Removes the first occurrence of a specific <see cref="Hl7ComparisonTag"/> from the <see cref="Hl7ComparisonTagCollection"/>.
 /// </summary>
 /// <param name="value">The <see cref="Hl7ComparisonTag"/> to remove from the <see cref="Hl7ComparisonTagCollection"/>.</param>
 public void Remove(Hl7ComparisonTag value)
 {
     List.Remove(value);
 }
 /// <summary>
 /// Inserts an <see cref="Hl7ComparisonTag"/> element into the <see cref="Hl7ComparisonTag"/> at the specified index.
 /// </summary>
 /// <param name="index">The zero-based index at which value should be inserted.</param>
 /// <param name="value">The <see cref="Hl7ComparisonTagCollection"/> to insert.</param>
 public void Insert(int index, Hl7ComparisonTag value)
 {
     List.Insert(index, value);
 }
 /// <summary>
 /// Searches for the specified <see cref="Hl7ComparisonTag"/> and 
 /// returns the zero-based index of the first occurrence within the entire <see cref="Hl7ComparisonTagCollection"/>.
 /// </summary>
 /// <param name="value">The <see cref="Hl7ComparisonTag"/> to locate in the <see cref="Hl7ComparisonTagCollection"/>.</param>
 /// <returns>
 /// The zero-based index of the first occurrence of value within the entire <see cref="Hl7ComparisonTagCollection"/>, 
 /// if found; otherwise, -1.
 /// </returns>
 public int IndexOf(Hl7ComparisonTag value)
 {
     return (List.IndexOf(value));
 }