// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) // This code is distributed under the GNU LGPL (for details please see \doc\license.txt) using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Collections.Specialized; using System.Diagnostics; using System.Globalization; using System.Linq; using ICSharpCode.AvalonEdit.Document; namespace ICSharpCode.AvalonEdit.Xml { /// /// Name-value pair in a tag /// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1711:IdentifiersShouldNotHaveIncorrectSuffix")] public class AXmlAttribute: AXmlObject { /// Name with namespace prefix - exactly as in source file public string Name { get; internal set; } /// Equals sign and surrounding whitespace public string EqualsSign { get; internal set; } /// The raw value - exactly as in source file (*probably* quoted and escaped) public string QuotedValue { get; internal set; } /// Unquoted and dereferenced value of the attribute public string Value { get; internal set; } internal override void DebugCheckConsistency(bool checkParentPointers) { DebugAssert(Name != null, "Null Name"); DebugAssert(EqualsSign != null, "Null EqualsSign"); DebugAssert(QuotedValue != null, "Null QuotedValue"); DebugAssert(Value != null, "Null Value"); base.DebugCheckConsistency(checkParentPointers); } #region Helpper methods /// The element containing this attribute /// Null if orphaned public AXmlElement ParentElement { get { AXmlTag tag = this.Parent as AXmlTag; if (tag != null) { return tag.Parent as AXmlElement; } return null; } } /// The part of name before ":" /// Empty string if not found public string Prefix { get { return GetNamespacePrefix(this.Name); } } /// The part of name after ":" /// Whole name if ":" not found public string LocalName { get { return GetLocalName(this.Name); } } /// /// Resolved namespace of the name. Empty string if not found /// From the specification: "The namespace name for an unprefixed attribute name always has no value." /// public string Namespace { get { if (string.IsNullOrEmpty(this.Prefix)) return NoNamespace; AXmlElement elem = this.ParentElement; if (elem != null) { return elem.ResolvePrefix(this.Prefix); } return NoNamespace; // Orphaned attribute } } /// Attribute is declaring namespace ("xmlns" or "xmlns:*") public bool IsNamespaceDeclaration { get { return this.Name == "xmlns" || this.Prefix == "xmlns"; } } #endregion /// public override void AcceptVisitor(IAXmlVisitor visitor) { visitor.VisitAttribute(this); } /// internal override bool UpdateDataFrom(AXmlObject source) { if (!base.UpdateDataFrom(source)) return false; AXmlAttribute src = (AXmlAttribute)source; if (this.Name != src.Name || this.EqualsSign != src.EqualsSign || this.QuotedValue != src.QuotedValue || this.Value != src.Value) { OnChanging(); this.Name = src.Name; this.EqualsSign = src.EqualsSign; this.QuotedValue = src.QuotedValue; this.Value = src.Value; OnChanged(); return true; } else { return false; } } /// public override string ToString() { return string.Format(CultureInfo.InvariantCulture, "[{0} '{1}{2}{3}']", base.ToString(), this.Name, this.EqualsSign, this.Value); } } }