| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- // XslCompiledTransform_Mobile.cs
- //
- // Author:
- // Atsushi Enomoto <[email protected]>
- //
- // Copyright (C) 2015 Xamarin Inc. http://www.xamarin.com
- //
- //
- // 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.CodeDom.Compiler;
- using System.Collections;
- using System.IO;
- using System.Text;
- using System.Runtime.InteropServices;
- using System.Security;
- using System.Security.Policy;
- using System.Xml.XPath;
- using System.Xml.XmlConfiguration;
- namespace System.Xml.Xsl
- {
- public sealed class XslCompiledTransform
- {
- readonly bool enable_debug;
- object debugger;
- XmlWriterSettings output_settings = new XmlWriterSettings ();
- XslTransform impl = new XslTransform ();
-
- public XslCompiledTransform ()
- : this (false)
- {
- }
- public XslCompiledTransform (bool enableDebug)
- {
- enable_debug = enableDebug;
- if (enable_debug)
- debugger = new NoOperationDebugger ();
- output_settings.ConformanceLevel = ConformanceLevel.Fragment;
- }
- [MonoTODO]
- public XmlWriterSettings OutputSettings {
- get { return output_settings; }
- }
- #region Transform
- public void Transform (string inputUri, string resultsFile)
- {
- using (Stream outStream = File.Create (resultsFile)) {
- Transform (new XPathDocument (inputUri, XmlSpace.Preserve), null, outStream);
- }
- }
- public void Transform (string inputUri, XmlWriter results)
- {
- Transform (inputUri, null, results);
- }
- public void Transform (string inputUri, XsltArgumentList arguments, Stream results)
- {
- Transform (new XPathDocument (inputUri, XmlSpace.Preserve), arguments, results);
- }
- public void Transform (string inputUri, XsltArgumentList arguments, TextWriter results)
- {
- Transform (new XPathDocument (inputUri, XmlSpace.Preserve), arguments, results);
- }
- public void Transform (string inputUri, XsltArgumentList arguments, XmlWriter results)
- {
- Transform (new XPathDocument (inputUri, XmlSpace.Preserve), arguments, results);
- }
- public void Transform (XmlReader input, XmlWriter results)
- {
- Transform (input, null, results);
- }
- public void Transform (XmlReader input, XsltArgumentList arguments, Stream results)
- {
- Transform (new XPathDocument (input, XmlSpace.Preserve), arguments, results);
- }
- public void Transform (XmlReader input, XsltArgumentList arguments, TextWriter results)
- {
- Transform (new XPathDocument (input, XmlSpace.Preserve), arguments, results);
- }
- public void Transform (XmlReader input, XsltArgumentList arguments, XmlWriter results)
- {
- Transform (input, arguments, results, null);
- }
- public void Transform (IXPathNavigable input, XsltArgumentList arguments, TextWriter results)
- {
- Transform (input.CreateNavigator (), arguments, results);
- }
- public void Transform (IXPathNavigable input, XsltArgumentList arguments, Stream results)
- {
- using (var sw = new StreamWriter (results)) {
- Transform (input.CreateNavigator (), arguments, sw);
- }
- }
- public void Transform (IXPathNavigable input, XmlWriter results)
- {
- Transform (input, null, results);
- }
- public void Transform (IXPathNavigable input, XsltArgumentList arguments, XmlWriter results)
- {
- Transform (input.CreateNavigator (), arguments, results, null);
- }
- public void Transform (XmlReader input, XsltArgumentList arguments, XmlWriter results, XmlResolver documentResolver)
- {
- Transform (new XPathDocument (input, XmlSpace.Preserve).CreateNavigator (), arguments, results, documentResolver);
- }
- void Transform (XPathNavigator input, XsltArgumentList args, XmlWriter output, XmlResolver resolver)
- {
- impl.Transform (input, args, output, resolver);
- }
- void Transform (XPathNavigator input, XsltArgumentList args, TextWriter output)
- {
- impl.Transform (input, args, output);
- }
- #endregion
- #region Load
- private XmlReader GetXmlReader (string url)
- {
- XmlResolver res = new XmlUrlResolver ();
- Uri uri = res.ResolveUri (null, url);
- Stream s = res.GetEntity (uri, null, typeof (Stream)) as Stream;
- XmlTextReader xtr = new XmlTextReader (uri.ToString (), s);
- xtr.XmlResolver = res;
- XmlValidatingReader xvr = new XmlValidatingReader (xtr);
- xvr.XmlResolver = res;
- xvr.ValidationType = ValidationType.None;
- return xvr;
- }
- public void Load (string stylesheetUri)
- {
- using (XmlReader r = GetXmlReader (stylesheetUri))
- Load (r);
- }
- public void Load (XmlReader stylesheet)
- {
- Load (stylesheet, XsltSettings.Default, XsltConfigSection.CreateDefaultResolver());
- }
- public void Load (IXPathNavigable stylesheet)
- {
- Load (stylesheet.CreateNavigator(), XsltSettings.Default, XsltConfigSection.CreateDefaultResolver());
- }
- public void Load (IXPathNavigable stylesheet, XsltSettings settings, XmlResolver stylesheetResolver)
- {
- // if (!settings.EnableDocumentFunction)
- // throw new NotSupportedException ("'document' function cannot be disabled on this framework because it just runs XslTransform which does not support XsltSettings");
- if (settings.EnableScript)
- throw new NotSupportedException ("'msxsl:script' element is not supported on this framework because it does not support run-time code generation");
- impl.Load (stylesheet, stylesheetResolver);
- }
- public void Load (XmlReader stylesheet, XsltSettings settings, XmlResolver stylesheetResolver)
- {
- Load (new XPathDocument (stylesheet, XmlSpace.Preserve), settings, stylesheetResolver);
- }
- public void Load (string stylesheetUri, XsltSettings settings, XmlResolver stylesheetResolver)
- {
- Load (new XPathDocument (stylesheetUri, XmlSpace.Preserve).CreateNavigator (), settings, stylesheetResolver);
- }
- #endregion
- }
- class NoOperationDebugger
- {
- protected void OnCompile (XPathNavigator input)
- {
- }
- protected void OnExecute (XPathNodeIterator currentNodeset, XPathNavigator style, XsltContext context)
- {
- //ShowLocationInTrace (style);
- }
- /*
- string ShowLocationInTrace (XPathNavigator style)
- {
- IXmlLineInfo li = style as IXmlLineInfo;
- return li != null ? String.Format ("at {0} ({1},{2})", style.BaseURI, li.LineNumber, li.LinePosition) : "(no debug info available)";
- }
- */
- }
- }
|