/* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is mozilla.org code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 2001 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Joe Hewitt (original author) * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ /*************************************************************** * RDFU ----------------------------------------------- * Convenience routines for common RDF commands. * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - * REQUIRED IMPORTS: * chrome://inspector/content/jsutil/xpcom/XPCU.js ****************************************************************/ //////////// global constants //////////////////// try { var gRDF = Components.classes['@mozilla.org/rdf/rdf-service;1'].getService(); gRDF = gRDF.QueryInterface(Components.interfaces.nsIRDFService); var gRDFCU = Components.classes['@mozilla.org/rdf/container-utils;1'].getService(); gRDFCU = gRDFCU.QueryInterface(Components.interfaces.nsIRDFContainerUtils); } catch (ex) { alert("RDFU: " + ex); } /////////////////////////////////////////////////// var RDFU = { getSeqElementAt: function(aSeq, aIndex) { var ordinal = gRDFCU.IndexToOrdinalResource(aIndex+1); return aSeq.DataSource.GetTarget(aSeq.Resource, ordinal, true); }, readAttribute: function(aDS, aRes, aName) { var attr = aDS.GetTarget(aRes, gRDF.GetResource(aName), true); if (attr) attr = XPCU.QI(attr, "nsIRDFLiteral"); return attr ? attr.Value : null; }, writeAttribute: function(aDS, aRes, aName, aValue) { var attr = aDS.GetTarget(aRes, gRDF.GetResource(aName), true); if (attr) aDS.Change(aRes, gRDF.GetResource(aName), attr, gRDF.GetLiteral(aValue)); }, findSeq: function(aDS, aResName) { try { var res = gRDF.GetResource(aResName); var seq = this.makeSeq(aDS, res); } catch (ex) { alert("Unable to find sequence:" + ex); } return seq; }, makeSeq: function(aDS, aRes) { var seq = XPCU.createInstance("@mozilla.org/rdf/container;1", "nsIRDFContainer"); seq.Init(aDS, aRes); return seq; }, createSeq: function(aDS, aBaseRes, aArcRes) { var res = gRDF.GetAnonymousResource(); aDS.Assert(aBaseRes, aArcRes, res, true); var seq = gRDFCU.MakeSeq(aDS, res); return seq; }, loadDataSource: function(aURL, aListener) { var ds = gRDF.GetDataSource(aURL); var rds = XPCU.QI(ds, "nsIRDFRemoteDataSource"); var observer = new DSLoadObserver(aListener); if (rds.loaded) { observer.onEndLoad(ds); } else { var sink = XPCU.QI(ds, "nsIRDFXMLSink"); sink.addXMLSinkObserver(observer); } }, saveDataSource: function(aDS) { var ds = XPCU.QI(aDS, "nsIRDFRemoteDataSource"); ds.Flush(); } }; /////////// function DSLoadObserver(aListener) { this.mListener = aListener; } DSLoadObserver.prototype = { onBeginLoad: function(aSink) { }, onInterrupt: function(aSink) {}, onResume: function(aSink) {}, onError: function(aSink, aStatus, aErrorMsg) { this.mListener.onError(aStatus, aErrorMsg); aSink.removeXMLSinkObserver(this); }, onEndLoad: function(aSink) { var ds = XPCU.QI(aSink, "nsIRDFDataSource"); this.mListener.onDataSourceReady(ds); aSink = XPCU.QI(aSink, "nsIRDFXMLSink"); aSink.removeXMLSinkObserver(this); } };