// // XslElement.cs // // Authors: // Ben Maurer (bmaurer@users.sourceforge.net) // Atsushi Enomoto (ginga@kit.hi-ho.ne.jp) // // (C) 2003 Ben Maurer // (C) 2003 Atsushi Enomoto // // // 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; using System.Xml.Xsl; using QName = System.Xml.XmlQualifiedName; namespace Mono.Xml.Xsl.Operations { internal class XslElement : XslCompiledElement { XslAvt name, ns; string calcName, calcNs, calcPrefix; XmlNamespaceManager nsm; bool isEmptyElement; XslOperation value; XmlQualifiedName [] useAttributeSets; XPathNavigator nav; public XslElement (Compiler c) : base (c) {} protected override void Compile (Compiler c) { nav = c.Input.Clone (); name = c.ParseAvtAttribute ("name"); ns = c.ParseAvtAttribute ("namespace"); calcName = XslAvt.AttemptPreCalc (ref name); if (calcName != null) { int colonAt = calcName.IndexOf (':'); calcPrefix = colonAt < 0 ? String.Empty : calcName.Substring (0, colonAt); calcName = colonAt < 0 ? calcName : calcName.Substring (colonAt + 1, calcName.Length - colonAt - 1); if (ns == null) calcNs = c.Input.GetNamespace (calcPrefix); try { XmlConvert.VerifyNCName (calcName); if (calcPrefix != String.Empty) XmlConvert.VerifyNCName (calcPrefix); } catch (XmlException ex) { throw new XsltCompileException ("Invalid attribute name.", ex, c.Input); } } else if (ns != null) calcNs = XslAvt.AttemptPreCalc (ref ns); if (ns == null && calcNs == null) nsm = c.GetNsm (); useAttributeSets = c.ParseQNameListAttribute ("use-attribute-sets"); isEmptyElement = c.Input.IsEmptyElement; if (c.Input.MoveToFirstChild ()) { value = c.CompileTemplateContent (XPathNodeType.Element); c.Input.MoveToParent (); } } public override void Evaluate (XslTransformProcessor p) { string nm, nmsp, localName, prefix; localName = nm = calcName != null ? calcName : name.Evaluate (p); nmsp = calcNs != null ? calcNs : ns != null ? ns.Evaluate (p) : null; if (nmsp == null) { QName q = XslNameUtil.FromString (nm, nsm); localName = q.Name; nmsp = q.Namespace; int colonAt = nm.IndexOf (':'); if (colonAt > 0) calcPrefix = nm.Substring (0, colonAt); } prefix = calcPrefix != null ? calcPrefix : String.Empty; #if false if (calcPrefix == String.Empty) { if (nav.MoveToFirstNamespace (XPathNamespaceScope.ExcludeXml)) { do { if (nav.Value == nmsp) { // prefix = nav.Name; break; } } while (nav.MoveToNextNamespace (XPathNamespaceScope.ExcludeXml)); nav.MoveToParent (); } } #endif XmlConvert.VerifyName (nm); bool isCData = p.InsideCDataElement; p.PushElementState (localName, nmsp, false); p.Out.WriteStartElement (prefix, localName, nmsp); p.TryStylesheetNamespaceOutput (null); if (useAttributeSets != null) foreach (XmlQualifiedName s in useAttributeSets) p.ResolveAttributeSet (s).Evaluate (p); if (value != null) value.Evaluate (p); if (isEmptyElement && useAttributeSets == null) p.Out.WriteEndElement (); else p.Out.WriteFullEndElement (); p.PopCDataState (isCData); } } }