| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- // System.Xml.Xsl.XsltArgumentList
- //
- // Author: Tim Coleman <[email protected]>
- // (C) Copyright 2002 Tim Coleman
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System;
- using System.Collections;
- using System.Xml;
- using System.Xml.XPath;
- namespace System.Xml.Xsl
- {
- public sealed class XsltArgumentList
- {
- #region Fields
- internal Hashtable extensionObjects;
- internal Hashtable parameters;
- #endregion
- #region Constructors
- public XsltArgumentList ()
- {
- extensionObjects = new Hashtable ();
- parameters = new Hashtable ();
- }
- #endregion
- #region Methods
- public void AddExtensionObject (string namespaceUri, object extension)
- {
- if (namespaceUri == null)
- throw new ArgumentException ("The namespaceUri is a null reference.");
- if (namespaceUri == "http://www.w3.org/1999/XSL/Transform")
- throw new ArgumentException ("The namespaceUri is http://www.w3.org/1999/XSL/Transform.");
- if (extensionObjects.Contains (namespaceUri))
- throw new ArgumentException ("The namespaceUri already has an extension object associated with it.");
- extensionObjects [namespaceUri] = extension;
- }
- public void AddParam (string name, string namespaceUri, object parameter)
- {
- if (namespaceUri == null)
- throw new ArgumentException ("The namespaceUri is a null reference.");
- if (namespaceUri == "http://www.w3.org/1999/XSL/Transform")
- throw new ArgumentException ("The namespaceUri is http://www.w3.org/1999/XSL/Transform.");
- if (name == null)
- throw new ArgumentException ("The parameter name is a null reference.");
- // TODO:
- // verify that the name is a valid name according to
- // the W3C XML specification
- XmlQualifiedName qName = new XmlQualifiedName (name, namespaceUri);
- if (parameters.Contains (qName))
- throw new ArgumentException ("The namespaceUri already has a parameter associated with it.");
- parameter = ValidateParam (parameter);
- parameters [qName] = parameter;
- }
- public void Clear ()
- {
- extensionObjects.Clear ();
- parameters.Clear ();
- }
- public object GetExtensionObject (string namespaceUri)
- {
- return extensionObjects [namespaceUri];
- }
- public object GetParam (string name, string namespaceUri)
- {
- if (name == null)
- throw (new ArgumentException ("The parameter name is a null reference."));
- XmlQualifiedName qName = new XmlQualifiedName (name, namespaceUri);
- return parameters [qName];
- }
- public object RemoveExtensionObject (string namespaceUri)
- {
- object extensionObject = this.GetExtensionObject (namespaceUri);
- extensionObjects.Remove (namespaceUri);
- return extensionObject;
- }
- public object RemoveParam (string name, string namespaceUri)
- {
- XmlQualifiedName qName = new XmlQualifiedName (name, namespaceUri);
- object parameter = this.GetParam (name, namespaceUri);
- parameters.Remove (qName);
- return parameter;
- }
- private object ValidateParam (object parameter)
- {
- if (parameter is string) return parameter;
- if (parameter is bool) return parameter;
- if (parameter is double) return parameter;
- if (parameter is XPathNavigator) return parameter;
- if (parameter is XPathNodeIterator) return parameter;
- if (parameter is Int16) return (double) (Int16) parameter;
- if (parameter is UInt16) return (double) (UInt16) parameter;
- if (parameter is Int32) return (double) (Int32) parameter;
- if (parameter is Int64) return (double) (Int64) parameter;
- if (parameter is UInt64) return (double) (UInt64) parameter;
- if (parameter is Single) return (double) (Single) parameter;
- if (parameter is decimal) return (double) (decimal) parameter;
- return parameter.ToString ();
- }
- #endregion
- }
- }
|