/* Copyright (C) 2003 Simon Mourier All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ using System; using System.Collections; namespace HtmlAgilityPack { /// /// Represents an HTML attribute. /// public class HtmlAttribute: IComparable { internal int _line = 0; internal int _lineposition = 0; internal int _streamposition = 0; internal int _namestartindex = 0; internal int _namelength = 0; internal int _valuestartindex = 0; internal int _valuelength = 0; internal HtmlDocument _ownerdocument; // attribute can exists without a node internal HtmlNode _ownernode; internal string _name; internal string _value; internal HtmlAttribute(HtmlDocument ownerdocument) { _ownerdocument = ownerdocument; } /// /// Creates a duplicate of this attribute. /// /// The cloned attribute. public HtmlAttribute Clone() { HtmlAttribute att = new HtmlAttribute(_ownerdocument); att.Name = Name; att.Value = Value; return att; } /// /// Compares the current instance with another attribute. Comparison is based on attributes' name. /// /// An attribute to compare with this instance. /// A 32-bit signed integer that indicates the relative order of the names comparison. public int CompareTo(object obj) { HtmlAttribute att = obj as HtmlAttribute; if (att == null) { throw new ArgumentException("obj"); } return Name.CompareTo(att.Name); } internal string XmlName { get { return GetXmlName(Name); } } /// /// Gets a valid XML name. /// /// Any text. /// A string that is a valid XML name. internal static string GetXmlName(string name) { string xmlname = string.Empty; bool nameisok = true; for(int i=0;i='a') && (name[i]<='z')) || ((name[i]>='0') && (name[i]<='9')) || // (name[i]==':') || (name[i]=='_') || (name[i]=='-') || (name[i]=='.')) // these are bads in fact (name[i]=='_') || (name[i]=='-') || (name[i]=='.')) { xmlname += name[i]; } else { nameisok = false; byte[] bytes = System.Text.Encoding.UTF8.GetBytes(new char[]{name[i]}); for(int j=0;j /// Gets the qualified name of the attribute. /// public string Name { get { if (_name == null) { _name = _ownerdocument._text.Substring(_namestartindex, _namelength).ToLower(); } return _name; } set { if (value == null) { throw new ArgumentNullException("value"); } _name = value.ToLower(); if (_ownernode != null) { _ownernode._innerchanged = true; _ownernode._outerchanged = true; } } } /// /// Gets or sets the value of the attribute. /// public string Value { get { if (_value == null) { _value = _ownerdocument._text.Substring(_valuestartindex, _valuelength); } return _value; } set { _value = value; if (_ownernode != null) { _ownernode._innerchanged = true; _ownernode._outerchanged = true; } } } /// /// Gets the line number of this attribute in the document. /// public int Line { get { return _line; } } /// /// Gets the column number of this attribute in the document. /// public int LinePosition { get { return _lineposition; } } /// /// Gets the stream position of this attribute in the document, relative to the start of the document. /// public int StreamPosition { get { return _streamposition; } } /// /// Gets the HTML node to which this attribute belongs. /// public HtmlNode OwnerNode { get { return _ownernode; } } /// /// Gets the HTML document to which this attribute belongs. /// public HtmlDocument OwnerDocument { get { return _ownerdocument; } } } /// /// Represents a combined list and collection of HTML nodes. /// public class HtmlAttributeCollection: IEnumerable { internal Hashtable _hashitems = new Hashtable(); private ArrayList _items = new ArrayList(); private HtmlNode _ownernode; internal HtmlAttributeCollection(HtmlNode ownernode) { _ownernode = ownernode; } /// /// Inserts the specified attribute as the last attribute in the collection. /// /// The attribute to insert. May not be null. /// The appended attribute. public HtmlAttribute Append(HtmlAttribute newAttribute) { if (newAttribute == null) { throw new ArgumentNullException("newAttribute"); } _hashitems[newAttribute.Name] = newAttribute; newAttribute._ownernode = _ownernode; _items.Add(newAttribute); _ownernode._innerchanged = true; _ownernode._outerchanged = true; return newAttribute; } /// /// Creates and inserts a new attribute as the last attribute in the collection. /// /// The name of the attribute to insert. /// The appended attribute. public HtmlAttribute Append(string name) { HtmlAttribute att = _ownernode._ownerdocument.CreateAttribute(name); return Append(att); } /// /// Creates and inserts a new attribute as the last attribute in the collection. /// /// The name of the attribute to insert. /// The value of the attribute to insert. /// The appended attribute. public HtmlAttribute Append(string name, string value) { HtmlAttribute att = _ownernode._ownerdocument.CreateAttribute(name, value); return Append(att); } /// /// Inserts the specified attribute as the first node in the collection. /// /// The attribute to insert. May not be null. /// The prepended attribute. public HtmlAttribute Prepend(HtmlAttribute newAttribute) { if (newAttribute == null) { throw new ArgumentNullException("newAttribute"); } _hashitems[newAttribute.Name] = newAttribute; newAttribute._ownernode = _ownernode; _items.Insert(0, newAttribute); _ownernode._innerchanged = true; _ownernode._outerchanged = true; return newAttribute; } /// /// Removes the attribute at the specified index. /// /// The index of the attribute to remove. public void RemoveAt(int index) { HtmlAttribute att = (HtmlAttribute)_items[index]; _hashitems.Remove(att.Name); _items.RemoveAt(index); _ownernode._innerchanged = true; _ownernode._outerchanged = true; } /// /// Removes a given attribute from the list. /// /// The attribute to remove. May not be null. public void Remove(HtmlAttribute attribute) { if (attribute == null) { throw new ArgumentNullException("attribute"); } int index = GetAttributeIndex(attribute); if (index == -1) { throw new IndexOutOfRangeException(); } RemoveAt(index); } /// /// Removes an attribute from the list, using its name. If there are more than one attributes with this name, they will all be removed. /// /// The attribute's name. May not be null. public void Remove(string name) { if (name == null) { throw new ArgumentNullException("name"); } string lname = name.ToLower(); for(int i=0;i<_items.Count;i++) { HtmlAttribute att = (HtmlAttribute)_items[i]; if (att.Name == lname) { RemoveAt(i); } } } /// /// Remove all attributes in the list. /// public void RemoveAll() { _hashitems.Clear(); _items.Clear(); _ownernode._innerchanged = true; _ownernode._outerchanged = true; } /// /// Gets the number of elements actually contained in the list. /// public int Count { get { return _items.Count; } } internal int GetAttributeIndex(HtmlAttribute attribute) { if (attribute == null) { throw new ArgumentNullException("attribute"); } for(int i=0;i<_items.Count;i++) { if (((HtmlAttribute)_items[i])==attribute) return i; } return -1; } internal int GetAttributeIndex(string name) { if (name == null) { throw new ArgumentNullException("name"); } string lname = name.ToLower(); for(int i=0;i<_items.Count;i++) { if (((HtmlAttribute)_items[i]).Name==lname) return i; } return -1; } /// /// Gets a given attribute from the list using its name. /// public HtmlAttribute this[string name] { get { if (name == null) { throw new ArgumentNullException("name"); } return _hashitems[name.ToLower()] as HtmlAttribute; } } /// /// Gets the attribute at the specified index. /// public HtmlAttribute this[int index] { get { return _items[index] as HtmlAttribute; } } internal void Clear() { _hashitems.Clear(); _items.Clear(); } /// /// Returns an enumerator that can iterate through the list. /// /// An IEnumerator for the entire list. public HtmlAttributeEnumerator GetEnumerator() { return new HtmlAttributeEnumerator(_items); } IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); } /// /// Represents an enumerator that can iterate through the list. /// public class HtmlAttributeEnumerator: IEnumerator { int _index; ArrayList _items; internal HtmlAttributeEnumerator(ArrayList items) { _items = items; _index = -1; } /// /// Sets the enumerator to its initial position, which is before the first element in the collection. /// public void Reset() { _index = -1; } /// /// Advances the enumerator to the next element of the collection. /// /// true if the enumerator was successfully advanced to the next element, false if the enumerator has passed the end of the collection. public bool MoveNext() { _index++; return (_index<_items.Count); } /// /// Gets the current element in the collection. /// public HtmlAttribute Current { get { return (HtmlAttribute)(_items[_index]); } } /// /// Gets the current element in the collection. /// object IEnumerator.Current { get { return (Current); } } } } }