| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288 |
- //
- // System.Web.UI.WebControls.XmlDataSource
- //
- // Authors:
- // Ben Maurer ([email protected])
- //
- // (C) 2003 Ben Maurer
- //
- //
- // 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.
- //
- #if NET_2_0
- using System.Collections;
- using System.Collections.Specialized;
- using System.Text;
- using System.Xml;
- using System.Xml.Xsl;
- using System.ComponentModel;
- using System.IO;
- namespace System.Web.UI.WebControls {
- public class XmlDataSource : HierarchicalDataSourceControl, IDataSource, IListSource {
-
- event EventHandler IDataSource.DataSourceChanged {
- add { ((IHierarchicalDataSource)this).DataSourceChanged += value; }
- remove { ((IHierarchicalDataSource)this).DataSourceChanged -= value; }
- }
-
- static object EventTransforming = new object ();
- public event EventHandler Transforming {
- add { Events.AddHandler (EventTransforming, value); }
- remove { Events.RemoveHandler (EventTransforming, value); }
- }
-
- protected virtual void OnTransforming (EventArgs e)
- {
- EventHandler eh = Events [EventTransforming] as EventHandler;
- if (eh != null)
- eh (this, e);
- }
-
- XmlDataDocument xmlDataDocument;
- public XmlDataDocument GetXmlDataDocument ()
- {
- if (xmlDataDocument == null) {
- xmlDataDocument = new XmlDataDocument ();
- LoadXmlDataDocument (xmlDataDocument);
- }
- return xmlDataDocument;
- }
-
- [MonoTODO ("XSLT, schema")]
- void LoadXmlDataDocument (XmlDataDocument document)
- {
- if (Transform == "" && TransformFile == "") {
- if (DataFile != "")
- document.Load (MapPathSecure (DataFile));
- else
- document.LoadXml (Data);
- } else {
- throw new NotImplementedException ("XSLT transform not implemented");
- }
- }
- public void Save ()
- {
- if (!CanBeSaved)
- throw new InvalidOperationException ();
-
- xmlDataDocument.Save (MapPathSecure (DataFile));
- }
-
- bool CanBeSaved {
- get {
- return !ReadOnly && Transform == "" && TransformFile == "" && DataFile != "";
- }
- }
-
- [MonoTODO]
- protected override void LoadViewState (object savedState)
- {
- base.LoadViewState (savedState);
- }
-
- [MonoTODO]
- protected override object SaveViewState ()
- {
- return base.SaveViewState ();
- }
-
- [MonoTODO]
- protected override void TrackViewState ()
- {
- base.TrackViewState ();
- }
-
- protected override HierarchicalDataSourceView GetHierarchicalView (string viewPath)
- {
- XmlNode doc = this.GetXmlDataDocument ();
- XmlNodeList ret = null;
-
- if (viewPath != "") {
- XmlNode n = doc.SelectSingleNode (viewPath);
- if (n != null)
- ret = n.ChildNodes;
- } else if (XPath != "") {
- ret = doc.SelectNodes (XPath);
- } else {
- ret = doc.ChildNodes;
- }
-
- return new XmlHierarchicalDataSourceView (ret);
- }
-
- IList IListSource.GetList ()
- {
- return ListSourceHelper.GetList (this);
- }
-
- bool IListSource.ContainsListCollection {
- get { return ListSourceHelper.ContainsListCollection (this); }
- }
-
- DataSourceView IDataSource.GetView (string viewName)
- {
- if (viewName == "")
- viewName = "DefaultView";
-
- return new XmlDataSourceView (this, viewName, GetXmlDataDocument ().SelectNodes (XPath != "" ? XPath : "."));
- }
-
- ICollection IDataSource.GetViewNames ()
- {
- return new string [] { "DefaultView" };
- }
-
- public virtual bool AutoSave {
- get {
- object ret = ViewState ["AutoSave"];
- return ret != null ? (bool)ret : true;
- }
- set {
- ViewState ["AutoSave"] = value;
- }
- }
-
- // TODO: stub these apis
- //protected virtual FileDataSourceCache Cache { get; }
- //public virtual int CacheDuration { get; set; }
- //public virtual DataSourceCacheExpiry CacheExpirationPolicy { get; set; }
- //public virtual string CacheKeyDependency { get; set; }
- //public virtual bool EnableCaching { get; set; }
- public virtual string Data {
- get {
- string ret = ViewState ["Data"] as string;
- return ret != null ? ret : "";
- }
- set {
- if (Data != value) {
- ViewState ["Data"] = value;
- xmlDataDocument = null;
- OnDataSourceChanged(EventArgs.Empty);
- }
- }
- }
-
- public virtual string DataFile {
- get {
- string ret = ViewState ["DataFile"] as string;
- return ret != null ? ret : "";
- }
- set {
- if (DataFile != value) {
- ViewState ["DataFile"] = value;
- xmlDataDocument = null;
- OnDataSourceChanged(EventArgs.Empty);
- }
- }
- }
-
- public virtual bool ReadOnly {
- get {
- object ret = ViewState ["ReadOnly"];
- return ret != null ? (bool)ret : true;
- }
- set {
- ViewState ["ReadOnly"] = value;
- }
- }
-
- public virtual string Schema {
- get {
- string ret = ViewState ["Schema"] as string;
- return ret != null ? ret : "";
- }
- set {
- if (Schema != value) {
- ViewState ["Schema"] = value;
- xmlDataDocument = null;
- OnDataSourceChanged(EventArgs.Empty);
- }
- }
- }
-
- public virtual string SchemaFile {
- get {
- string ret = ViewState ["SchemaFile"] as string;
- return ret != null ? ret : "";
- }
- set {
- if (SchemaFile != value) {
- ViewState ["SchemaFile"] = value;
- xmlDataDocument = null;
- OnDataSourceChanged(EventArgs.Empty);
- }
- }
- }
-
- XsltArgumentList transformArgumentList;
- public virtual XsltArgumentList TransformArgumentList {
- get { return transformArgumentList; }
- set { transformArgumentList = value; }
- }
-
- public virtual string Transform {
- get {
- string ret = ViewState ["Transform"] as string;
- return ret != null ? ret : "";
- }
- set {
- if (Transform != value) {
- ViewState ["Transform"] = value;
- xmlDataDocument = null;
- OnDataSourceChanged(EventArgs.Empty);
- }
- }
- }
-
- public virtual string TransformFile {
- get {
- string ret = ViewState ["TransformFile"] as string;
- return ret != null ? ret : "";
- }
- set {
- if (TransformFile != value) {
- ViewState ["TransformFile"] = value;
- xmlDataDocument = null;
- OnDataSourceChanged(EventArgs.Empty);
- }
- }
- }
-
- public virtual string XPath {
- get {
- string ret = ViewState ["XPath"] as string;
- return ret != null ? ret : "";
- }
- set {
- if (XPath != value) {
- ViewState ["XPath"] = value;
- OnDataSourceChanged(EventArgs.Empty);
- }
- }
- }
- }
- }
- #endif
|