|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Microsoft.Xml;
using System.ServiceModel.Channels;
using System.Collections.Generic;
using System.Collections.ObjectModel;
namespace System.ServiceModel.Security
{
public class MessagePartSpecification
{
private List<XmlQualifiedName> _headerTypes;
private bool _isBodyIncluded;
private bool _isReadOnly;
private static MessagePartSpecification s_noParts;
public ICollection<XmlQualifiedName> HeaderTypes
{
get
{
if (_headerTypes == null)
{
_headerTypes = new List<XmlQualifiedName>();
}
if (_isReadOnly)
{
return new ReadOnlyCollection<XmlQualifiedName>(_headerTypes);
}
else
{
return _headerTypes;
}
}
}
internal bool HasHeaders
{
get { return _headerTypes != null && _headerTypes.Count > 0; }
}
public bool IsBodyIncluded
{
get
{
return _isBodyIncluded;
}
set
{
if (_isReadOnly)
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SRServiceModel.ObjectIsReadOnly));
_isBodyIncluded = value;
}
}
public bool IsReadOnly
{
get
{
return _isReadOnly;
}
}
static public MessagePartSpecification NoParts
{
get
{
if (s_noParts == null)
{
MessagePartSpecification parts = new MessagePartSpecification();
parts.MakeReadOnly();
s_noParts = parts;
}
return s_noParts;
}
}
public void Clear()
{
if (_isReadOnly)
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SRServiceModel.ObjectIsReadOnly));
if (_headerTypes != null)
_headerTypes.Clear();
_isBodyIncluded = false;
}
public void Union(MessagePartSpecification specification)
{
if (_isReadOnly)
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SRServiceModel.ObjectIsReadOnly));
if (specification == null)
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("specification");
_isBodyIncluded |= specification.IsBodyIncluded;
List<XmlQualifiedName> headerTypes = specification._headerTypes;
if (headerTypes != null && headerTypes.Count > 0)
{
if (_headerTypes == null)
{
_headerTypes = new List<XmlQualifiedName>(headerTypes.Count);
}
for (int i = 0; i < headerTypes.Count; i++)
{
XmlQualifiedName qname = headerTypes[i];
_headerTypes.Add(qname);
}
}
}
public void MakeReadOnly()
{
if (_isReadOnly)
return;
if (_headerTypes != null)
{
List<XmlQualifiedName> noDuplicates = new List<XmlQualifiedName>(_headerTypes.Count);
for (int i = 0; i < _headerTypes.Count; i++)
{
XmlQualifiedName qname = _headerTypes[i];
if (qname != null)
{
bool include = true;
for (int j = 0; j < noDuplicates.Count; j++)
{
XmlQualifiedName qname1 = noDuplicates[j];
if (qname.Name == qname1.Name && qname.Namespace == qname1.Namespace)
{
include = false;
break;
}
}
if (include)
noDuplicates.Add(qname);
}
}
_headerTypes = noDuplicates;
}
_isReadOnly = true;
}
public MessagePartSpecification()
{
// empty
}
public MessagePartSpecification(bool isBodyIncluded)
{
_isBodyIncluded = isBodyIncluded;
}
public MessagePartSpecification(params XmlQualifiedName[] headerTypes)
: this(false, headerTypes)
{
// empty
}
public MessagePartSpecification(bool isBodyIncluded, params XmlQualifiedName[] headerTypes)
{
_isBodyIncluded = isBodyIncluded;
if (headerTypes != null && headerTypes.Length > 0)
{
_headerTypes = new List<XmlQualifiedName>(headerTypes.Length);
for (int i = 0; i < headerTypes.Length; i++)
{
_headerTypes.Add(headerTypes[i]);
}
}
}
internal bool IsHeaderIncluded(MessageHeader header)
{
if (header == null)
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("header");
return IsHeaderIncluded(header.Name, header.Namespace);
}
internal bool IsHeaderIncluded(string name, string ns)
{
if (name == null)
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("name");
if (ns == null)
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("ns");
if (_headerTypes != null)
{
for (int i = 0; i < _headerTypes.Count; i++)
{
XmlQualifiedName qname = _headerTypes[i];
// Name is an optional attribute. If not present, compare with only the namespace.
if (String.IsNullOrEmpty(qname.Name))
{
if (qname.Namespace == ns)
{
return true;
}
}
else
{
if (qname.Name == name && qname.Namespace == ns)
{
return true;
}
}
}
}
return false;
}
internal bool IsEmpty()
{
if (_headerTypes != null && _headerTypes.Count > 0)
return false;
return !this.IsBodyIncluded;
}
}
}
|