2004-10-26 00:34:03 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** 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 XForms support.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* IBM Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2004
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Brian Ryner <bryner@brianryner.com>
|
2004-11-04 23:53:01 +00:00
|
|
|
* Allan Beaufour <abeaufour@novell.com>
|
2004-10-26 00:34:03 +00:00
|
|
|
*
|
|
|
|
* 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 ***** */
|
|
|
|
|
|
|
|
#include "nsXFormsUtils.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsXFormsAtoms.h"
|
|
|
|
#include "nsIDOMElement.h"
|
2005-01-27 19:30:03 +00:00
|
|
|
#include "nsIDOMNSHTMLElement.h"
|
2004-10-26 00:34:03 +00:00
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsINameSpaceManager.h"
|
|
|
|
#include "nsINodeInfo.h"
|
|
|
|
#include "nsIDOMNodeList.h"
|
2005-01-27 23:02:27 +00:00
|
|
|
#include "nsIXFormsXPathEvaluator.h"
|
2004-10-26 00:34:03 +00:00
|
|
|
#include "nsIDOMXPathResult.h"
|
|
|
|
#include "nsIDOMXPathNSResolver.h"
|
|
|
|
#include "nsIDOMDocument.h"
|
2004-11-04 23:26:39 +00:00
|
|
|
#include "nsIDOMText.h"
|
2005-01-19 16:05:31 +00:00
|
|
|
#include "nsIModelElementPrivate.h"
|
2004-10-26 00:34:03 +00:00
|
|
|
#include "nsIXFormsModelElement.h"
|
2005-01-19 16:05:31 +00:00
|
|
|
#include "nsIXFormsControl.h"
|
2005-02-21 17:22:26 +00:00
|
|
|
#include "nsIInstanceElementPrivate.h"
|
2005-03-30 16:41:07 +00:00
|
|
|
#include "nsIDOMNSDocument.h"
|
|
|
|
#include "nsIDOMLocation.h"
|
|
|
|
#include "nsIDOMSerializer.h"
|
2004-10-26 00:34:03 +00:00
|
|
|
|
2004-11-24 20:47:23 +00:00
|
|
|
#include "nsIXFormsContextControl.h"
|
2004-11-05 02:15:01 +00:00
|
|
|
#include "nsIDOMDocumentEvent.h"
|
|
|
|
#include "nsIDOMEvent.h"
|
|
|
|
#include "nsIDOMEventTarget.h"
|
|
|
|
#include "nsDataHashtable.h"
|
|
|
|
|
2005-01-19 16:05:31 +00:00
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsXFormsXPathAnalyzer.h"
|
|
|
|
#include "nsXFormsXPathParser.h"
|
|
|
|
#include "nsXFormsXPathNode.h"
|
|
|
|
#include "nsIDOMXPathExpression.h"
|
|
|
|
#include "nsArray.h"
|
|
|
|
|
2004-12-01 23:50:29 +00:00
|
|
|
#include "nsIScriptSecurityManager.h"
|
|
|
|
#include "nsIPermissionManager.h"
|
|
|
|
#include "nsServiceManagerUtils.h"
|
2005-01-27 23:02:27 +00:00
|
|
|
#include "nsIXFormsUtilityService.h"
|
2005-02-25 21:52:59 +00:00
|
|
|
#include "nsIDOMAttr.h"
|
|
|
|
#include "nsIDOM3Node.h"
|
2005-03-30 16:41:07 +00:00
|
|
|
#include "nsIConsoleService.h"
|
|
|
|
#include "nsIStringBundle.h"
|
2005-05-03 19:39:38 +00:00
|
|
|
#include "nsIDOMNSEvent.h"
|
|
|
|
#include "nsIURI.h"
|
|
|
|
#include "nsIPrivateDOMEvent.h"
|
2004-12-01 23:50:29 +00:00
|
|
|
|
2004-11-05 02:15:01 +00:00
|
|
|
#define CANCELABLE 0x01
|
|
|
|
#define BUBBLES 0x02
|
|
|
|
|
2005-01-19 16:05:31 +00:00
|
|
|
const EventData sXFormsEventsEntries[41] = {
|
2004-11-05 02:15:01 +00:00
|
|
|
{ "xforms-model-construct", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-model-construct-done", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-ready", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-model-destruct", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-previous", PR_TRUE, PR_FALSE },
|
|
|
|
{ "xforms-next", PR_TRUE, PR_FALSE },
|
|
|
|
{ "xforms-focus", PR_TRUE, PR_FALSE },
|
|
|
|
{ "xforms-help", PR_TRUE, PR_TRUE },
|
|
|
|
{ "xforms-hint", PR_TRUE, PR_TRUE },
|
|
|
|
{ "xforms-rebuild", PR_TRUE, PR_TRUE },
|
|
|
|
{ "xforms-refresh", PR_TRUE, PR_TRUE },
|
|
|
|
{ "xforms-revalidate", PR_TRUE, PR_TRUE },
|
|
|
|
{ "xforms-recalculate", PR_TRUE, PR_TRUE },
|
|
|
|
{ "xforms-reset", PR_TRUE, PR_TRUE },
|
|
|
|
{ "xforms-submit", PR_TRUE, PR_TRUE },
|
|
|
|
{ "DOMActivate", PR_TRUE, PR_TRUE },
|
|
|
|
{ "xforms-value-changed", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-select", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-deselect", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-scroll-first", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-scroll-last", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-insert", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-delete", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-valid", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-invalid", PR_FALSE, PR_TRUE },
|
|
|
|
{ "DOMFocusIn", PR_FALSE, PR_TRUE },
|
|
|
|
{ "DOMFocusOut", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-readonly", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-readwrite", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-required", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-optional", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-enabled", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-disabled", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-in-range", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-out-of-range", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-submit-done", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-submit-error", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-binding-exception", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-link-exception", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-link-error", PR_FALSE, PR_TRUE },
|
|
|
|
{ "xforms-compute-exception", PR_FALSE, PR_TRUE }
|
|
|
|
};
|
|
|
|
|
|
|
|
static const EventData sEventDefaultsEntries[] = {
|
|
|
|
//UIEvents already in sXFormsEvents
|
|
|
|
|
|
|
|
//MouseEvent
|
|
|
|
{ "click", PR_TRUE, PR_TRUE },
|
|
|
|
{ "mousedown", PR_TRUE, PR_TRUE },
|
|
|
|
{ "mouseup", PR_TRUE, PR_TRUE },
|
|
|
|
{ "mouseover", PR_TRUE, PR_TRUE },
|
|
|
|
{ "mousemove", PR_FALSE, PR_TRUE },
|
|
|
|
{ "mouseout", PR_TRUE, PR_TRUE },
|
|
|
|
//MutationEvent
|
|
|
|
{ "DOMSubtreeModified", PR_FALSE, PR_TRUE },
|
|
|
|
{ "DOMNodeInserted", PR_FALSE, PR_TRUE },
|
|
|
|
{ "DOMNodeRemoved", PR_FALSE, PR_TRUE },
|
|
|
|
{ "DOMNodeRemovedFromDocument", PR_FALSE, PR_FALSE },
|
|
|
|
{ "DOMNodeInsertedIntoDocument", PR_FALSE, PR_FALSE },
|
|
|
|
{ "DOMAttrModified", PR_FALSE, PR_TRUE },
|
|
|
|
{ "DOMCharacterDataModified", PR_FALSE, PR_TRUE },
|
|
|
|
//HTMLEvents
|
|
|
|
{ "load", PR_FALSE, PR_FALSE },
|
|
|
|
{ "unload", PR_FALSE, PR_FALSE },
|
|
|
|
{ "abort", PR_FALSE, PR_TRUE },
|
|
|
|
{ "error", PR_FALSE, PR_TRUE },
|
|
|
|
{ "select", PR_FALSE, PR_TRUE },
|
|
|
|
{ "change", PR_FALSE, PR_TRUE },
|
|
|
|
{ "submit", PR_TRUE, PR_TRUE },
|
|
|
|
{ "reset", PR_FALSE, PR_TRUE },
|
|
|
|
{ "focus", PR_FALSE, PR_FALSE },
|
|
|
|
{ "blur", PR_FALSE, PR_FALSE },
|
|
|
|
{ "resize", PR_FALSE, PR_TRUE },
|
|
|
|
{ "scroll", PR_FALSE, PR_TRUE }
|
|
|
|
};
|
|
|
|
|
|
|
|
static nsDataHashtable<nsStringHashKey,PRUint32> sXFormsEvents;
|
|
|
|
static nsDataHashtable<nsStringHashKey,PRUint32> sEventDefaults;
|
|
|
|
|
|
|
|
/* static */ nsresult
|
|
|
|
nsXFormsUtils::Init()
|
|
|
|
{
|
|
|
|
if (!sXFormsEvents.Init())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < NS_ARRAY_LENGTH(sXFormsEventsEntries); ++i) {
|
|
|
|
PRUint32 flag = 0;
|
|
|
|
if (sXFormsEventsEntries[i].canCancel)
|
|
|
|
flag |= CANCELABLE;
|
|
|
|
if (sXFormsEventsEntries[i].canBubble)
|
|
|
|
flag |= BUBBLES;
|
|
|
|
sXFormsEvents.Put(NS_ConvertUTF8toUTF16(sXFormsEventsEntries[i].name),
|
|
|
|
flag);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!sEventDefaults.Init())
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
for (i = 0; i < NS_ARRAY_LENGTH(sEventDefaultsEntries); ++i) {
|
|
|
|
PRUint32 flag = 0;
|
|
|
|
if (sEventDefaultsEntries[i].canCancel)
|
|
|
|
flag |= CANCELABLE;
|
|
|
|
if (sEventDefaultsEntries[i].canBubble)
|
|
|
|
flag |= BUBBLES;
|
|
|
|
sEventDefaults.Put(NS_ConvertUTF8toUTF16(sEventDefaultsEntries[i].name),
|
|
|
|
flag);
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2005-01-19 16:05:31 +00:00
|
|
|
/* static */ PRBool
|
2005-01-26 12:20:21 +00:00
|
|
|
nsXFormsUtils::GetParentModel(nsIDOMElement *aBindElement,
|
|
|
|
nsIModelElementPrivate **aModel)
|
2004-10-29 19:50:31 +00:00
|
|
|
{
|
2005-01-19 16:05:31 +00:00
|
|
|
PRBool res = PR_TRUE;
|
2004-10-29 19:50:31 +00:00
|
|
|
nsCOMPtr<nsIDOMNode> modelWrapper;
|
|
|
|
|
|
|
|
// Walk up the tree looking for the containing model.
|
2005-01-19 16:05:31 +00:00
|
|
|
aBindElement->GetParentNode(getter_AddRefs(modelWrapper));
|
2004-10-29 19:50:31 +00:00
|
|
|
|
|
|
|
nsAutoString localName, namespaceURI;
|
|
|
|
nsCOMPtr<nsIDOMNode> temp;
|
|
|
|
|
|
|
|
while (modelWrapper) {
|
|
|
|
modelWrapper->GetLocalName(localName);
|
|
|
|
if (localName.EqualsLiteral("model")) {
|
|
|
|
modelWrapper->GetNamespaceURI(namespaceURI);
|
|
|
|
if (namespaceURI.EqualsLiteral(NS_NAMESPACE_XFORMS))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
temp.swap(modelWrapper);
|
|
|
|
temp->GetParentNode(getter_AddRefs(modelWrapper));
|
2005-01-19 16:05:31 +00:00
|
|
|
|
|
|
|
// Model is not the immediate parent, this is a reference to a nested
|
|
|
|
// (invalid) bind
|
|
|
|
res = PR_FALSE;
|
2004-10-29 19:50:31 +00:00
|
|
|
}
|
2004-11-24 20:47:23 +00:00
|
|
|
*aModel = nsnull;
|
2005-01-26 12:20:21 +00:00
|
|
|
nsCOMPtr<nsIModelElementPrivate> model = do_QueryInterface(modelWrapper);
|
|
|
|
model.swap(*aModel);
|
2005-01-19 16:05:31 +00:00
|
|
|
|
|
|
|
return res;
|
2004-10-29 19:50:31 +00:00
|
|
|
}
|
|
|
|
|
2004-11-24 20:47:23 +00:00
|
|
|
/**
|
|
|
|
* beaufour: Section 7.4 in the specification does a really bad job of
|
|
|
|
* explaining how to find the model, so the code below is my interpretation of
|
|
|
|
* it...
|
|
|
|
*
|
|
|
|
* @see http://bugzilla.mozilla.org/show_bug.cgi?id=265216
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* static */ nsresult
|
2005-01-26 12:20:21 +00:00
|
|
|
nsXFormsUtils::GetNodeContext(nsIDOMElement *aElement,
|
|
|
|
PRUint32 aElementFlags,
|
|
|
|
nsIModelElementPrivate **aModel,
|
|
|
|
nsIDOMElement **aBindElement,
|
|
|
|
PRBool *aOuterBind,
|
|
|
|
nsIDOMNode **aContextNode,
|
|
|
|
PRInt32 *aContextPosition,
|
|
|
|
PRInt32 *aContextSize)
|
2004-10-26 00:34:03 +00:00
|
|
|
{
|
2004-11-24 20:47:23 +00:00
|
|
|
NS_ENSURE_ARG(aElement);
|
2005-01-19 16:05:31 +00:00
|
|
|
NS_ENSURE_ARG(aOuterBind);
|
2004-11-24 20:47:23 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aContextNode);
|
2005-01-26 12:20:21 +00:00
|
|
|
NS_ENSURE_ARG_POINTER(aBindElement);
|
|
|
|
*aBindElement = nsnull;
|
2004-10-26 00:34:03 +00:00
|
|
|
|
2004-11-24 20:47:23 +00:00
|
|
|
// Find correct model element
|
2004-10-26 00:34:03 +00:00
|
|
|
nsCOMPtr<nsIDOMDocument> domDoc;
|
|
|
|
aElement->GetOwnerDocument(getter_AddRefs(domDoc));
|
2004-11-24 20:47:23 +00:00
|
|
|
NS_ENSURE_TRUE(domDoc, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsAutoString bindId;
|
2005-04-08 15:40:54 +00:00
|
|
|
NS_NAMED_LITERAL_STRING(bindStr, "bind");
|
|
|
|
aElement->GetAttribute(bindStr, bindId);
|
2004-11-24 20:47:23 +00:00
|
|
|
if (!bindId.IsEmpty()) {
|
|
|
|
// CASE 1: Use @bind
|
|
|
|
domDoc->GetElementById(bindId, aBindElement);
|
2005-04-08 15:40:54 +00:00
|
|
|
if (!IsXFormsElement(*aBindElement, bindStr)) {
|
|
|
|
const PRUnichar *strings[] = { bindId.get(), bindStr.get() };
|
|
|
|
nsXFormsUtils::ReportError(NS_LITERAL_STRING("idRefError"),
|
|
|
|
strings, 2, aElement, aElement);
|
2005-01-26 12:20:21 +00:00
|
|
|
DispatchEvent(aElement, eEvent_BindingException);
|
|
|
|
return NS_ERROR_ABORT;
|
|
|
|
}
|
2004-11-24 20:47:23 +00:00
|
|
|
|
2005-01-19 16:05:31 +00:00
|
|
|
// Context size and position are always 1
|
|
|
|
if (aContextSize)
|
|
|
|
*aContextSize = 1;
|
|
|
|
if (aContextPosition)
|
|
|
|
*aContextPosition = 1;
|
2004-11-24 20:47:23 +00:00
|
|
|
|
2005-04-28 07:17:49 +00:00
|
|
|
*aOuterBind = GetParentModel(*aBindElement, aModel);
|
|
|
|
NS_ENSURE_STATE(*aModel);
|
|
|
|
} else {
|
|
|
|
if (aElementFlags & ELEMENT_WITH_MODEL_ATTR) {
|
|
|
|
// CASE 2: Use @model
|
|
|
|
// If bind did not set model, and the element has a model attribute we use this
|
|
|
|
nsAutoString modelId;
|
|
|
|
NS_NAMED_LITERAL_STRING(modelStr, "model");
|
|
|
|
aElement->GetAttribute(modelStr, modelId);
|
2005-01-19 16:05:31 +00:00
|
|
|
|
2005-04-28 07:17:49 +00:00
|
|
|
if (!modelId.IsEmpty()) {
|
|
|
|
nsCOMPtr<nsIDOMElement> modelElement;
|
|
|
|
domDoc->GetElementById(modelId, getter_AddRefs(modelElement));
|
|
|
|
nsCOMPtr<nsIModelElementPrivate> model = do_QueryInterface(modelElement);
|
|
|
|
|
|
|
|
// No element found, or element not a \<model\> element
|
|
|
|
if (!model) {
|
|
|
|
const PRUnichar *strings[] = { modelId.get(), modelStr.get() };
|
|
|
|
nsXFormsUtils::ReportError(NS_LITERAL_STRING("idRefError"),
|
|
|
|
strings, 2, aElement, aElement);
|
|
|
|
nsXFormsUtils::DispatchEvent(aElement, eEvent_BindingException);
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ADDREF(*aModel = model);
|
2005-01-26 12:20:21 +00:00
|
|
|
}
|
2004-11-05 02:15:01 +00:00
|
|
|
}
|
2004-10-26 00:34:03 +00:00
|
|
|
|
2005-04-28 07:17:49 +00:00
|
|
|
// Search for a parent setting context for us
|
|
|
|
nsresult rv = FindParentContext(aElement,
|
|
|
|
aModel,
|
|
|
|
aContextNode,
|
|
|
|
aContextPosition,
|
|
|
|
aContextSize);
|
|
|
|
// CASE 3/4: Use parent's model / first model in document.
|
|
|
|
// If FindParentContext() does not find a parent context but |aModel| is not
|
|
|
|
// set, it sets the model to the first model in the document.
|
2005-01-19 16:05:31 +00:00
|
|
|
|
2005-04-28 07:17:49 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
// if context node is not set, it's the document element of the model's
|
|
|
|
// default instance
|
|
|
|
if (!*aContextNode) {
|
|
|
|
nsCOMPtr<nsIXFormsModelElement> modelInt = do_QueryInterface(*aModel);
|
|
|
|
NS_ENSURE_STATE(modelInt);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMDocument> instanceDoc;
|
|
|
|
modelInt->GetInstanceDocument(NS_LITERAL_STRING(""),
|
|
|
|
getter_AddRefs(instanceDoc));
|
|
|
|
NS_ENSURE_STATE(instanceDoc);
|
|
|
|
|
|
|
|
nsIDOMElement* docElement;
|
|
|
|
instanceDoc->GetDocumentElement(&docElement); // addrefs
|
|
|
|
NS_ENSURE_STATE(docElement);
|
|
|
|
*aContextNode = docElement; // addref'ed above
|
|
|
|
}
|
2004-10-26 00:34:03 +00:00
|
|
|
|
2005-01-19 16:05:31 +00:00
|
|
|
return NS_OK;
|
2004-11-24 20:47:23 +00:00
|
|
|
}
|
2004-10-29 19:50:31 +00:00
|
|
|
|
2005-01-26 12:20:21 +00:00
|
|
|
/* static */ already_AddRefed<nsIModelElementPrivate>
|
2004-11-24 20:47:23 +00:00
|
|
|
nsXFormsUtils::GetModel(nsIDOMElement *aElement,
|
|
|
|
PRUint32 aElementFlags)
|
2004-10-26 00:34:03 +00:00
|
|
|
|
2004-11-24 20:47:23 +00:00
|
|
|
{
|
2005-01-26 12:20:21 +00:00
|
|
|
nsCOMPtr<nsIModelElementPrivate> model;
|
2005-01-24 08:55:30 +00:00
|
|
|
nsCOMPtr<nsIDOMNode> contextNode;
|
2004-11-24 20:47:23 +00:00
|
|
|
nsCOMPtr<nsIDOMElement> bind;
|
2005-01-19 16:05:31 +00:00
|
|
|
PRBool outerbind;
|
2004-10-29 19:50:31 +00:00
|
|
|
|
2005-01-19 16:05:31 +00:00
|
|
|
GetNodeContext(aElement,
|
|
|
|
aElementFlags,
|
|
|
|
getter_AddRefs(model),
|
|
|
|
getter_AddRefs(bind),
|
|
|
|
&outerbind,
|
|
|
|
getter_AddRefs(contextNode));
|
|
|
|
|
|
|
|
NS_ENSURE_TRUE(model, nsnull);
|
2004-10-26 00:34:03 +00:00
|
|
|
|
2005-01-26 12:20:21 +00:00
|
|
|
nsIModelElementPrivate *result = nsnull;
|
2004-11-24 20:47:23 +00:00
|
|
|
if (model)
|
|
|
|
CallQueryInterface(model, &result); // addrefs
|
|
|
|
return result;
|
2004-10-26 00:34:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ already_AddRefed<nsIDOMXPathResult>
|
2005-02-24 14:35:27 +00:00
|
|
|
nsXFormsUtils::EvaluateXPath(const nsAString &aExpression,
|
|
|
|
nsIDOMNode *aContextNode,
|
|
|
|
nsIDOMNode *aResolverNode,
|
|
|
|
PRUint16 aResultType,
|
|
|
|
PRInt32 aContextPosition,
|
|
|
|
PRInt32 aContextSize,
|
2005-04-28 07:17:49 +00:00
|
|
|
nsCOMArray<nsIDOMNode> *aSet,
|
|
|
|
nsStringArray *aIndexesUsed)
|
2004-10-26 00:34:03 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMDocument> doc;
|
|
|
|
aContextNode->GetOwnerDocument(getter_AddRefs(doc));
|
|
|
|
NS_ENSURE_TRUE(doc, nsnull);
|
|
|
|
|
2005-01-27 23:02:27 +00:00
|
|
|
nsCOMPtr<nsIXFormsXPathEvaluator> eval =
|
|
|
|
do_CreateInstance("@mozilla.org/dom/xforms-xpath-evaluator;1");
|
2004-10-26 00:34:03 +00:00
|
|
|
NS_ENSURE_TRUE(eval, nsnull);
|
|
|
|
|
2005-01-19 16:05:31 +00:00
|
|
|
nsCOMPtr<nsIDOMXPathExpression> expression;
|
|
|
|
eval->CreateExpression(aExpression,
|
2005-01-27 23:02:27 +00:00
|
|
|
aResolverNode,
|
2005-01-19 16:05:31 +00:00
|
|
|
getter_AddRefs(expression));
|
2005-04-15 08:51:48 +00:00
|
|
|
if (!expression) {
|
|
|
|
const nsPromiseFlatString& flat = PromiseFlatString(aExpression);
|
|
|
|
const PRUnichar *strings[] = { flat.get() };
|
|
|
|
nsXFormsUtils::ReportError(NS_LITERAL_STRING("exprParseError"),
|
|
|
|
strings, 1, aContextNode, nsnull);
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2004-11-24 20:47:23 +00:00
|
|
|
///
|
|
|
|
/// @todo Evaluate() should use aContextPosition and aContextSize
|
2004-10-26 00:34:03 +00:00
|
|
|
nsCOMPtr<nsISupports> supResult;
|
2005-01-27 23:02:27 +00:00
|
|
|
nsresult rv = expression->Evaluate(aContextNode,
|
|
|
|
aResultType,
|
|
|
|
nsnull,
|
|
|
|
getter_AddRefs(supResult));
|
2004-10-26 00:34:03 +00:00
|
|
|
|
|
|
|
nsIDOMXPathResult *result = nsnull;
|
2005-01-27 23:02:27 +00:00
|
|
|
if (NS_SUCCEEDED(rv) && supResult) {
|
2005-01-19 16:05:31 +00:00
|
|
|
/// @todo beaufour: This is somewhat "hackish". Hopefully, this will
|
|
|
|
/// improve when we integrate properly with Transformiix (XXX)
|
|
|
|
/// @see http://bugzilla.mozilla.org/show_bug.cgi?id=265212
|
|
|
|
if (aSet) {
|
|
|
|
nsXFormsXPathParser parser;
|
2005-01-27 23:02:27 +00:00
|
|
|
nsXFormsXPathAnalyzer analyzer(eval, aResolverNode);
|
2005-01-19 16:05:31 +00:00
|
|
|
nsAutoPtr<nsXFormsXPathNode> xNode(parser.Parse(aExpression));
|
2005-01-27 23:02:27 +00:00
|
|
|
rv = analyzer.Analyze(aContextNode,
|
|
|
|
xNode,
|
|
|
|
expression,
|
|
|
|
&aExpression,
|
|
|
|
aSet);
|
2005-01-19 16:05:31 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, nsnull);
|
2005-04-28 07:17:49 +00:00
|
|
|
|
|
|
|
if (aIndexesUsed)
|
|
|
|
*aIndexesUsed = analyzer.IndexesUsed();
|
2005-01-19 16:05:31 +00:00
|
|
|
}
|
2004-10-26 00:34:03 +00:00
|
|
|
CallQueryInterface(supResult, &result); // addrefs
|
|
|
|
}
|
2005-04-08 15:40:54 +00:00
|
|
|
else if (rv == NS_ERROR_XFORMS_CALCUATION_EXCEPTION) {
|
2005-04-15 08:51:48 +00:00
|
|
|
const nsPromiseFlatString& flat = PromiseFlatString(aExpression);
|
|
|
|
const PRUnichar *strings[] = { flat.get() };
|
2005-04-08 15:40:54 +00:00
|
|
|
nsXFormsUtils::ReportError(NS_LITERAL_STRING("exprEvaluateError"),
|
2005-04-15 08:51:48 +00:00
|
|
|
strings, 1, aContextNode, nsnull);
|
2005-04-08 15:40:54 +00:00
|
|
|
nsCOMPtr<nsIDOMElement> resolverElement = do_QueryInterface(aResolverNode);
|
|
|
|
nsCOMPtr<nsIModelElementPrivate> modelPriv = nsXFormsUtils::GetModel(resolverElement);
|
|
|
|
nsCOMPtr<nsIDOMNode> model = do_QueryInterface(modelPriv);
|
|
|
|
DispatchEvent(model, eEvent_ComputeException);
|
2005-01-27 23:02:27 +00:00
|
|
|
}
|
2004-10-26 00:34:03 +00:00
|
|
|
|
2005-01-19 16:05:31 +00:00
|
|
|
return result;
|
2004-10-26 00:34:03 +00:00
|
|
|
}
|
|
|
|
|
2005-01-19 16:05:31 +00:00
|
|
|
/* static */ nsresult
|
2005-01-26 12:20:21 +00:00
|
|
|
nsXFormsUtils::EvaluateNodeBinding(nsIDOMElement *aElement,
|
|
|
|
PRUint32 aElementFlags,
|
|
|
|
const nsString &aBindingAttr,
|
|
|
|
const nsString &aDefaultRef,
|
|
|
|
PRUint16 aResultType,
|
|
|
|
nsIModelElementPrivate **aModel,
|
|
|
|
nsIDOMXPathResult **aResult,
|
2005-04-28 07:17:49 +00:00
|
|
|
nsCOMArray<nsIDOMNode> *aDeps,
|
|
|
|
nsStringArray *aIndexesUsed)
|
2004-10-26 00:34:03 +00:00
|
|
|
{
|
2005-01-19 16:05:31 +00:00
|
|
|
if (!aElement || !aModel || !aResult) {
|
2005-01-24 08:55:30 +00:00
|
|
|
return NS_OK;
|
2004-11-24 20:47:23 +00:00
|
|
|
}
|
2004-10-26 00:34:03 +00:00
|
|
|
|
2004-11-24 20:47:23 +00:00
|
|
|
*aModel = nsnull;
|
2005-01-19 16:05:31 +00:00
|
|
|
*aResult = nsnull;
|
2004-10-26 00:34:03 +00:00
|
|
|
|
2005-01-24 08:55:30 +00:00
|
|
|
nsCOMPtr<nsIDOMNode> contextNode;
|
2005-01-19 16:05:31 +00:00
|
|
|
nsCOMPtr<nsIDOMElement> bindElement;
|
|
|
|
PRBool outerBind;
|
2004-11-24 20:47:23 +00:00
|
|
|
PRInt32 contextPosition;
|
|
|
|
PRInt32 contextSize;
|
|
|
|
nsresult rv = GetNodeContext(aElement,
|
|
|
|
aElementFlags,
|
|
|
|
aModel,
|
2005-01-19 16:05:31 +00:00
|
|
|
getter_AddRefs(bindElement),
|
|
|
|
&outerBind,
|
2004-11-24 20:47:23 +00:00
|
|
|
getter_AddRefs(contextNode),
|
|
|
|
&contextPosition,
|
|
|
|
&contextSize);
|
|
|
|
|
2005-01-19 16:05:31 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2004-10-26 00:34:03 +00:00
|
|
|
|
2005-04-28 07:17:49 +00:00
|
|
|
if (!contextNode) {
|
|
|
|
return NS_OK; // this will happen if the doc is still loading
|
|
|
|
}
|
|
|
|
|
2004-10-26 00:34:03 +00:00
|
|
|
nsAutoString expr;
|
2005-01-19 16:05:31 +00:00
|
|
|
if (bindElement) {
|
|
|
|
if (!outerBind) {
|
|
|
|
// "When you refer to @id on a nested bind it returns an emtpy nodeset
|
|
|
|
// because it has no meaning. The XForms WG will assign meaning in the
|
|
|
|
// future."
|
|
|
|
// @see http://www.w3.org/MarkUp/Group/2004/11/f2f/2004Nov11#resolution6
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
} else {
|
|
|
|
// If there is a (outer) bind element, we retrive its nodeset.
|
|
|
|
bindElement->GetAttribute(NS_LITERAL_STRING("nodeset"), expr);
|
2004-11-24 20:47:23 +00:00
|
|
|
}
|
2005-01-19 16:05:31 +00:00
|
|
|
} else {
|
|
|
|
// If there's no bind element, we expect there to be a |aBindingAttr| attribute.
|
|
|
|
aElement->GetAttribute(aBindingAttr, expr);
|
|
|
|
|
|
|
|
if (expr.IsEmpty())
|
|
|
|
{
|
|
|
|
if (aDefaultRef.IsEmpty())
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
expr.Assign(aDefaultRef);
|
2004-11-24 20:47:23 +00:00
|
|
|
}
|
2004-10-26 00:34:03 +00:00
|
|
|
}
|
|
|
|
|
2004-11-24 20:47:23 +00:00
|
|
|
// Evaluate |expr|
|
2005-01-19 16:05:31 +00:00
|
|
|
nsCOMPtr<nsIDOMXPathResult> res = EvaluateXPath(expr,
|
|
|
|
contextNode,
|
|
|
|
aElement,
|
|
|
|
aResultType,
|
|
|
|
contextSize,
|
|
|
|
contextPosition,
|
2005-04-28 07:17:49 +00:00
|
|
|
aDeps,
|
|
|
|
aIndexesUsed);
|
2005-01-19 16:05:31 +00:00
|
|
|
|
|
|
|
res.swap(*aResult); // exchanges ref
|
|
|
|
|
|
|
|
return NS_OK;
|
2004-10-26 00:34:03 +00:00
|
|
|
}
|
|
|
|
|
2004-11-04 23:26:39 +00:00
|
|
|
/* static */ void
|
|
|
|
nsXFormsUtils::GetNodeValue(nsIDOMNode* aDataNode, nsString& aNodeValue)
|
|
|
|
{
|
|
|
|
PRUint16 nodeType;
|
|
|
|
aDataNode->GetNodeType(&nodeType);
|
|
|
|
|
|
|
|
switch(nodeType) {
|
|
|
|
case nsIDOMNode::ATTRIBUTE_NODE:
|
|
|
|
case nsIDOMNode::TEXT_NODE:
|
|
|
|
// "Returns the string-value of the node."
|
|
|
|
aDataNode->GetNodeValue(aNodeValue);
|
|
|
|
return;
|
|
|
|
|
|
|
|
case nsIDOMNode::ELEMENT_NODE:
|
|
|
|
{
|
|
|
|
// "If text child nodes are present, returns the string-value of the
|
|
|
|
// first text child node. Otherwise, returns "" (the empty string)".
|
|
|
|
|
|
|
|
// Find the first child text node.
|
|
|
|
nsCOMPtr<nsIDOMNodeList> childNodes;
|
|
|
|
aDataNode->GetChildNodes(getter_AddRefs(childNodes));
|
|
|
|
|
|
|
|
if (childNodes) {
|
|
|
|
nsCOMPtr<nsIDOMNode> child;
|
|
|
|
PRUint32 childCount;
|
|
|
|
childNodes->GetLength(&childCount);
|
|
|
|
|
|
|
|
for (PRUint32 i = 0; i < childCount; ++i) {
|
|
|
|
childNodes->Item(i, getter_AddRefs(child));
|
|
|
|
NS_ASSERTION(child, "DOMNodeList length is wrong!");
|
|
|
|
|
|
|
|
child->GetNodeType(&nodeType);
|
|
|
|
if (nodeType == nsIDOMNode::TEXT_NODE) {
|
|
|
|
child->GetNodeValue(aNodeValue);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// No child text nodes. Return an empty string.
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// namespace, processing instruction, comment, XPath root node
|
|
|
|
NS_WARNING("String value for this node type is not defined");
|
|
|
|
}
|
|
|
|
|
|
|
|
aNodeValue.Truncate(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ void
|
|
|
|
nsXFormsUtils::SetNodeValue(nsIDOMNode* aDataNode, const nsString& aNodeValue)
|
|
|
|
{
|
|
|
|
PRUint16 nodeType;
|
|
|
|
aDataNode->GetNodeType(&nodeType);
|
|
|
|
|
|
|
|
switch(nodeType) {
|
|
|
|
case nsIDOMNode::ATTRIBUTE_NODE:
|
|
|
|
// "The string-value of the attribute is replaced with a string
|
|
|
|
// corresponding to the new value."
|
|
|
|
aDataNode->SetNodeValue(aNodeValue);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case nsIDOMNode::TEXT_NODE:
|
|
|
|
// "The text node is replaced with a new one corresponding to the new
|
|
|
|
// value".
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMDocument> document;
|
|
|
|
aDataNode->GetOwnerDocument(getter_AddRefs(document));
|
|
|
|
if (!document)
|
|
|
|
break;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMText> textNode;
|
|
|
|
document->CreateTextNode(aNodeValue, getter_AddRefs(textNode));
|
|
|
|
if (!textNode)
|
|
|
|
break;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> parentNode;
|
|
|
|
aDataNode->GetParentNode(getter_AddRefs(parentNode));
|
|
|
|
if (parentNode) {
|
|
|
|
nsCOMPtr<nsIDOMNode> childReturn;
|
|
|
|
parentNode->ReplaceChild(textNode, aDataNode,
|
|
|
|
getter_AddRefs(childReturn));
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case nsIDOMNode::ELEMENT_NODE:
|
|
|
|
{
|
|
|
|
// "If the element has any child text nodes, the first text node is
|
|
|
|
// replaced with one corresponding to the new value."
|
|
|
|
|
|
|
|
// Start by creating a text node for the new value.
|
|
|
|
nsCOMPtr<nsIDOMDocument> document;
|
|
|
|
aDataNode->GetOwnerDocument(getter_AddRefs(document));
|
|
|
|
if (!document)
|
|
|
|
break;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMText> textNode;
|
|
|
|
document->CreateTextNode(aNodeValue, getter_AddRefs(textNode));
|
|
|
|
if (!textNode)
|
|
|
|
break;
|
|
|
|
|
|
|
|
// Now find the first child text node.
|
|
|
|
nsCOMPtr<nsIDOMNodeList> childNodes;
|
|
|
|
aDataNode->GetChildNodes(getter_AddRefs(childNodes));
|
|
|
|
|
|
|
|
if (!childNodes)
|
|
|
|
break;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> child, childReturn;
|
|
|
|
PRUint32 childCount;
|
|
|
|
childNodes->GetLength(&childCount);
|
|
|
|
|
|
|
|
for (PRUint32 i = 0; i < childCount; ++i) {
|
|
|
|
childNodes->Item(i, getter_AddRefs(child));
|
|
|
|
NS_ASSERTION(child, "DOMNodeList length is wrong!");
|
|
|
|
|
|
|
|
child->GetNodeType(&nodeType);
|
|
|
|
if (nodeType == nsIDOMNode::TEXT_NODE) {
|
|
|
|
// We found one, replace it with our new text node.
|
|
|
|
aDataNode->ReplaceChild(textNode, child,
|
|
|
|
getter_AddRefs(childReturn));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// "If no child text nodes are present, a text node is created,
|
|
|
|
// corresponding to the new value, and appended as the first child node."
|
|
|
|
|
|
|
|
// XXX This is a bit vague since "appended as the first child node"
|
|
|
|
// implies that there are no child nodes at all, but all we've
|
|
|
|
// established is that there are no child _text_nodes.
|
|
|
|
// Taking this to mean "inserted as the first child node" until this is
|
|
|
|
// clarified.
|
|
|
|
|
|
|
|
aDataNode->GetFirstChild(getter_AddRefs(child));
|
|
|
|
if (child)
|
|
|
|
aDataNode->InsertBefore(textNode, child, getter_AddRefs(childReturn));
|
|
|
|
else
|
|
|
|
aDataNode->AppendChild(textNode, getter_AddRefs(childReturn));
|
|
|
|
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
NS_WARNING("Trying to set node value for unsupported node type");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-01-19 16:05:31 +00:00
|
|
|
///
|
|
|
|
/// @todo Use this consistently, or delete? (XXX)
|
2004-11-05 02:15:01 +00:00
|
|
|
/* static */ PRBool
|
|
|
|
nsXFormsUtils::GetSingleNodeBindingValue(nsIDOMElement* aElement,
|
|
|
|
nsString& aValue)
|
|
|
|
{
|
|
|
|
if (!aElement)
|
|
|
|
return PR_FALSE;
|
2005-01-26 12:20:21 +00:00
|
|
|
nsCOMPtr<nsIModelElementPrivate> model;
|
2005-01-19 16:05:31 +00:00
|
|
|
nsCOMPtr<nsIDOMXPathResult> result;
|
|
|
|
|
|
|
|
nsresult rv = EvaluateNodeBinding(aElement,
|
|
|
|
nsXFormsUtils::ELEMENT_WITH_MODEL_ATTR,
|
|
|
|
NS_LITERAL_STRING("ref"),
|
|
|
|
EmptyString(),
|
|
|
|
nsIDOMXPathResult::FIRST_ORDERED_NODE_TYPE,
|
|
|
|
getter_AddRefs(model),
|
|
|
|
getter_AddRefs(result));
|
|
|
|
|
|
|
|
if (NS_FAILED(rv) || !result)
|
2004-11-05 02:15:01 +00:00
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> singleNode;
|
|
|
|
result->GetSingleNodeValue(getter_AddRefs(singleNode));
|
|
|
|
if (!singleNode)
|
|
|
|
return PR_FALSE;
|
|
|
|
|
|
|
|
nsXFormsUtils::GetNodeValue(singleNode, aValue);
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ nsresult
|
|
|
|
nsXFormsUtils::DispatchEvent(nsIDOMNode* aTarget, nsXFormsEvent aEvent)
|
|
|
|
{
|
|
|
|
if (!aTarget)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
nsCOMPtr<nsIDOMDocument> domDoc;
|
|
|
|
aTarget->GetOwnerDocument(getter_AddRefs(domDoc));
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMDocumentEvent> doc = do_QueryInterface(domDoc);
|
2005-02-09 13:19:37 +00:00
|
|
|
NS_ENSURE_STATE(doc);
|
|
|
|
|
2004-11-05 02:15:01 +00:00
|
|
|
nsCOMPtr<nsIDOMEvent> event;
|
|
|
|
doc->CreateEvent(NS_LITERAL_STRING("Events"), getter_AddRefs(event));
|
|
|
|
NS_ENSURE_TRUE(event, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
const EventData *data = &sXFormsEventsEntries[aEvent];
|
|
|
|
event->InitEvent(NS_ConvertUTF8toUTF16(data->name),
|
|
|
|
data->canBubble, data->canCancel);
|
2005-05-03 19:39:38 +00:00
|
|
|
|
2004-11-05 02:15:01 +00:00
|
|
|
nsCOMPtr<nsIDOMEventTarget> target = do_QueryInterface(aTarget);
|
2005-02-09 13:19:37 +00:00
|
|
|
NS_ENSURE_STATE(target);
|
|
|
|
|
2005-05-03 19:39:38 +00:00
|
|
|
SetEventTrusted(event, aTarget);
|
|
|
|
|
2005-03-04 02:01:54 +00:00
|
|
|
PRBool defaultActionEnabled;
|
|
|
|
return target->DispatchEvent(event, &defaultActionEnabled);
|
2004-11-05 02:15:01 +00:00
|
|
|
}
|
|
|
|
|
2005-05-03 19:39:38 +00:00
|
|
|
/* static */ nsresult
|
|
|
|
nsXFormsUtils::SetEventTrusted(nsIDOMEvent* aEvent, nsIDOMNode* aRelatedNode)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMNSEvent> event(do_QueryInterface(aEvent));
|
|
|
|
if (event) {
|
|
|
|
PRBool isTrusted = PR_FALSE;
|
|
|
|
event->GetIsTrusted(&isTrusted);
|
|
|
|
if (!isTrusted && aRelatedNode) {
|
|
|
|
nsCOMPtr<nsIDOMDocument> domDoc;
|
|
|
|
aRelatedNode->GetOwnerDocument(getter_AddRefs(domDoc));
|
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(domDoc));
|
|
|
|
if (doc) {
|
|
|
|
nsIURI* uri = doc->GetDocumentURI();
|
|
|
|
if (uri) {
|
|
|
|
PRBool isChrome = PR_FALSE;
|
|
|
|
uri->SchemeIs("chrome", &isChrome);
|
|
|
|
if (isChrome) {
|
|
|
|
nsCOMPtr<nsIPrivateDOMEvent> privateEvent(do_QueryInterface(aEvent));
|
|
|
|
NS_ENSURE_STATE(privateEvent);
|
|
|
|
privateEvent->SetTrusted(PR_TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ PRBool
|
|
|
|
nsXFormsUtils::EventHandlingAllowed(nsIDOMEvent* aEvent, nsIDOMNode* aTarget)
|
|
|
|
{
|
|
|
|
PRBool allow = PR_FALSE;
|
|
|
|
if (aEvent && aTarget) {
|
|
|
|
nsCOMPtr<nsIDOMNSEvent> related(do_QueryInterface(aEvent));
|
|
|
|
if (related) {
|
|
|
|
PRBool isTrusted = PR_FALSE;
|
|
|
|
if (NS_SUCCEEDED(related->GetIsTrusted(&isTrusted))) {
|
|
|
|
if (isTrusted) {
|
|
|
|
allow = PR_TRUE;
|
|
|
|
} else {
|
|
|
|
nsCOMPtr<nsIDOMDocument> domDoc;
|
|
|
|
aTarget->GetOwnerDocument(getter_AddRefs(domDoc));
|
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(domDoc));
|
|
|
|
if (doc) {
|
|
|
|
nsIURI* uri = doc->GetDocumentURI();
|
|
|
|
if (uri) {
|
|
|
|
PRBool isChrome = PR_FALSE;
|
|
|
|
uri->SchemeIs("chrome", &isChrome);
|
|
|
|
allow = !isChrome;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
NS_WARN_IF_FALSE(allow, "Event handling not allowed!");
|
|
|
|
return allow;
|
|
|
|
}
|
|
|
|
|
2004-11-05 02:15:01 +00:00
|
|
|
/* static */ PRBool
|
|
|
|
nsXFormsUtils::IsXFormsEvent(const nsAString& aEvent,
|
|
|
|
PRBool& aCancelable,
|
|
|
|
PRBool& aBubbles)
|
|
|
|
{
|
|
|
|
PRUint32 flag = 0;
|
|
|
|
if (!sXFormsEvents.Get(aEvent, &flag))
|
|
|
|
return PR_FALSE;
|
|
|
|
aCancelable = (flag & CANCELABLE) ? PR_TRUE : PR_FALSE;
|
|
|
|
aBubbles = (flag & BUBBLES) ? PR_TRUE : PR_FALSE;
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ void
|
|
|
|
nsXFormsUtils::GetEventDefaults(const nsAString& aEvent,
|
|
|
|
PRBool& aCancelable,
|
|
|
|
PRBool& aBubbles)
|
|
|
|
{
|
|
|
|
PRUint32 flag = 0;
|
|
|
|
if (!sEventDefaults.Get(aEvent, &flag))
|
|
|
|
return;
|
|
|
|
aCancelable = (flag & CANCELABLE) ? PR_TRUE : PR_FALSE;
|
|
|
|
aBubbles = (flag & BUBBLES) ? PR_TRUE : PR_FALSE;
|
|
|
|
}
|
2004-11-04 23:26:39 +00:00
|
|
|
|
2004-10-26 00:34:03 +00:00
|
|
|
/* static */ nsresult
|
|
|
|
nsXFormsUtils::CloneScriptingInterfaces(const nsIID *aIIDList,
|
|
|
|
unsigned int aIIDCount,
|
|
|
|
PRUint32 *aOutCount,
|
|
|
|
nsIID ***aOutArray)
|
|
|
|
{
|
|
|
|
nsIID **iids = NS_STATIC_CAST(nsIID**,
|
|
|
|
nsMemory::Alloc(aIIDCount * sizeof(nsIID*)));
|
|
|
|
if (!iids) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (PRUint32 i = 0; i < aIIDCount; ++i) {
|
|
|
|
iids[i] = NS_STATIC_CAST(nsIID*,
|
|
|
|
nsMemory::Clone(&aIIDList[i], sizeof(nsIID)));
|
|
|
|
|
|
|
|
if (!iids[i]) {
|
|
|
|
for (PRUint32 j = 0; j < i; ++j)
|
|
|
|
nsMemory::Free(iids[j]);
|
|
|
|
nsMemory::Free(iids);
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*aOutArray = iids;
|
|
|
|
*aOutCount = aIIDCount;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2004-11-24 20:47:23 +00:00
|
|
|
|
|
|
|
/* static */ nsresult
|
2005-01-26 12:20:21 +00:00
|
|
|
nsXFormsUtils::FindParentContext(nsIDOMElement *aElement,
|
|
|
|
nsIModelElementPrivate **aModel,
|
|
|
|
nsIDOMNode **aContextNode,
|
|
|
|
PRInt32 *aContextPosition,
|
|
|
|
PRInt32 *aContextSize)
|
2004-11-24 20:47:23 +00:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG(aElement);
|
|
|
|
NS_ENSURE_ARG_POINTER(aModel);
|
|
|
|
NS_ENSURE_ARG_POINTER(aContextNode);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> curNode;
|
2005-04-08 15:40:54 +00:00
|
|
|
nsresult rv = aElement->GetParentNode(getter_AddRefs(curNode));
|
2004-11-24 20:47:23 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, NS_OK);
|
|
|
|
|
|
|
|
// If a model is set, get its ID
|
|
|
|
nsAutoString childModelID;
|
|
|
|
if (*aModel) {
|
|
|
|
nsCOMPtr<nsIDOMElement> modelElement = do_QueryInterface(*aModel);
|
|
|
|
NS_ENSURE_TRUE(modelElement, NS_ERROR_FAILURE);
|
|
|
|
modelElement->GetAttribute(NS_LITERAL_STRING("id"), childModelID);
|
2005-01-26 12:20:21 +00:00
|
|
|
}
|
2004-11-24 20:47:23 +00:00
|
|
|
|
|
|
|
// Find our context:
|
|
|
|
// Iterate over all parents and find first one that implements nsIXFormsContextControl,
|
|
|
|
// and has the same model as us.
|
|
|
|
nsCOMPtr<nsIDOMNode> temp;
|
|
|
|
nsAutoString contextModelID;
|
|
|
|
while (curNode) {
|
|
|
|
nsCOMPtr<nsIXFormsContextControl> contextControl = do_QueryInterface(curNode);
|
2005-02-09 09:57:31 +00:00
|
|
|
|
|
|
|
if (contextControl) {
|
2004-11-24 20:47:23 +00:00
|
|
|
PRInt32 cSize;
|
|
|
|
PRInt32 cPosition;
|
2005-01-24 08:55:30 +00:00
|
|
|
nsCOMPtr<nsIDOMNode> tempNode;
|
2005-02-09 09:57:31 +00:00
|
|
|
rv = contextControl->GetContext(contextModelID,
|
|
|
|
getter_AddRefs(tempNode),
|
|
|
|
&cPosition,
|
|
|
|
&cSize);
|
2004-11-24 20:47:23 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
// If the call failed, it means that we _have_ a parent which sets the
|
|
|
|
// context but it is invalid, ie. the XPath expression could have
|
|
|
|
// generated an error.
|
|
|
|
|
2005-01-15 01:04:02 +00:00
|
|
|
if (tempNode && (childModelID.IsEmpty()
|
|
|
|
|| childModelID.Equals(contextModelID))) {
|
2004-11-24 20:47:23 +00:00
|
|
|
NS_ADDREF(*aContextNode = tempNode);
|
|
|
|
if (aContextSize)
|
|
|
|
*aContextSize = cSize;
|
|
|
|
if (aContextPosition)
|
|
|
|
*aContextPosition = cPosition;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Next ancestor
|
|
|
|
temp.swap(curNode);
|
|
|
|
rv = temp->GetParentNode(getter_AddRefs(curNode));
|
|
|
|
NS_ENSURE_SUCCESS(rv, NS_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Child had no model set, set it
|
|
|
|
if (!*aModel) {
|
|
|
|
nsCOMPtr<nsIDOMDocument> domDoc;
|
|
|
|
nsresult rv = aElement->GetOwnerDocument(getter_AddRefs(domDoc));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
NS_ENSURE_TRUE(domDoc, NS_ERROR_FAILURE);
|
|
|
|
|
2005-01-26 12:20:21 +00:00
|
|
|
nsCOMPtr<nsIModelElementPrivate> model;
|
2004-11-24 20:47:23 +00:00
|
|
|
if (!*aContextNode || contextModelID.IsEmpty()) {
|
|
|
|
// We have either not found a context node, or we have found one where
|
|
|
|
// the model ID is empty. That means we use the first model in document
|
|
|
|
nsCOMPtr<nsIDOMNodeList> nodes;
|
|
|
|
domDoc->GetElementsByTagNameNS(NS_LITERAL_STRING(NS_NAMESPACE_XFORMS),
|
|
|
|
NS_LITERAL_STRING("model"),
|
|
|
|
getter_AddRefs(nodes));
|
|
|
|
// No model element in document!
|
2005-01-26 12:20:21 +00:00
|
|
|
NS_ENSURE_STATE(nodes);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> modelNode;
|
|
|
|
nodes->Item(0, getter_AddRefs(modelNode));
|
|
|
|
model = do_QueryInterface(modelNode);
|
2004-11-24 20:47:23 +00:00
|
|
|
} else {
|
|
|
|
// Get the model with the correct ID
|
|
|
|
nsCOMPtr<nsIDOMElement> modelElement;
|
|
|
|
domDoc->GetElementById(contextModelID, getter_AddRefs(modelElement));
|
2005-01-26 12:20:21 +00:00
|
|
|
model = do_QueryInterface(modelElement);
|
2004-11-24 20:47:23 +00:00
|
|
|
}
|
2005-01-26 12:20:21 +00:00
|
|
|
if (!model) {
|
2005-04-08 15:40:54 +00:00
|
|
|
nsXFormsUtils::ReportError(NS_LITERAL_STRING("noModelError"), aElement);
|
2005-01-26 12:20:21 +00:00
|
|
|
DispatchEvent(aElement, eEvent_BindingException);
|
|
|
|
return NS_ERROR_ABORT;
|
|
|
|
}
|
|
|
|
NS_ADDREF(*aModel = model);
|
2004-11-24 20:47:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2004-12-01 23:50:29 +00:00
|
|
|
|
|
|
|
/* static */ PRBool
|
|
|
|
nsXFormsUtils::CheckSameOrigin(nsIURI *aBaseURI, nsIURI *aTestURI)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
// check to see if we're allowed to load this URI
|
|
|
|
nsCOMPtr<nsIScriptSecurityManager> secMan =
|
|
|
|
do_GetService(NS_SCRIPTSECURITYMANAGER_CONTRACTID);
|
|
|
|
if (secMan) {
|
|
|
|
rv = secMan->CheckSameOriginURI(aBaseURI, aTestURI);
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// else, check with the permission manager to see if this host is
|
|
|
|
// permitted to access sites from other domains.
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPermissionManager> permMgr =
|
|
|
|
do_GetService(NS_PERMISSIONMANAGER_CONTRACTID);
|
|
|
|
PRUint32 perm;
|
|
|
|
rv = permMgr->TestPermission(aBaseURI, "xforms-load", &perm);
|
|
|
|
if (NS_SUCCEEDED(rv) && perm == nsIPermissionManager::ALLOW_ACTION)
|
|
|
|
return PR_TRUE;
|
|
|
|
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
2004-12-15 02:08:53 +00:00
|
|
|
|
|
|
|
/*static*/ PRBool
|
|
|
|
nsXFormsUtils::IsXFormsElement(nsIDOMNode* aNode, const nsAString& aName)
|
|
|
|
{
|
|
|
|
if (aNode) {
|
|
|
|
PRUint16 nodeType;
|
|
|
|
aNode->GetNodeType(&nodeType);
|
|
|
|
if (nodeType == nsIDOMNode::ELEMENT_NODE) {
|
|
|
|
nsAutoString name;
|
|
|
|
aNode->GetLocalName(name);
|
|
|
|
if (name.Equals(aName)) {
|
|
|
|
nsAutoString ns;
|
|
|
|
aNode->GetNamespaceURI(ns);
|
|
|
|
if (ns.EqualsLiteral(NS_NAMESPACE_XFORMS))
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
2005-01-15 01:04:02 +00:00
|
|
|
|
|
|
|
/* static */ PRBool
|
|
|
|
nsXFormsUtils::IsLabelElement(nsIDOMNode *aElement)
|
|
|
|
{
|
|
|
|
nsAutoString value;
|
|
|
|
aElement->GetLocalName(value);
|
|
|
|
if (value.EqualsLiteral("label")) {
|
|
|
|
aElement->GetNamespaceURI(value);
|
|
|
|
return value.EqualsLiteral(NS_NAMESPACE_XFORMS);
|
|
|
|
}
|
|
|
|
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
2005-01-27 19:30:03 +00:00
|
|
|
|
|
|
|
/* static */ PRBool
|
|
|
|
nsXFormsUtils::FocusControl(nsIDOMElement *aElement)
|
|
|
|
{
|
|
|
|
PRBool ret = PR_FALSE;
|
|
|
|
nsCOMPtr<nsIDOMNSHTMLElement> element(do_QueryInterface(aElement));
|
|
|
|
if (element && NS_SUCCEEDED(element->Focus()))
|
|
|
|
ret = PR_TRUE;
|
|
|
|
return ret;
|
|
|
|
}
|
2005-02-21 17:22:26 +00:00
|
|
|
|
2005-02-24 14:35:27 +00:00
|
|
|
int
|
|
|
|
sortFunc(nsIDOMNode *aNode1, nsIDOMNode *aNode2, void *aArg)
|
|
|
|
{
|
2005-04-11 08:04:51 +00:00
|
|
|
return (void*) aNode1 > (void*) aNode2;
|
2005-02-24 14:35:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ void
|
|
|
|
nsXFormsUtils::MakeUniqueAndSort(nsCOMArray<nsIDOMNode> *aArray)
|
|
|
|
{
|
|
|
|
if (!aArray)
|
|
|
|
return;
|
|
|
|
|
|
|
|
aArray->Sort(sortFunc, nsnull);
|
|
|
|
|
|
|
|
PRInt32 pos = 0;
|
|
|
|
while (pos + 1 < aArray->Count()) {
|
|
|
|
if (aArray->ObjectAt(pos) == aArray->ObjectAt(pos + 1)) {
|
|
|
|
aArray->RemoveObjectAt(pos + 1);
|
|
|
|
} else {
|
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-02-21 17:22:26 +00:00
|
|
|
/* static */ nsresult
|
|
|
|
nsXFormsUtils::GetInstanceNodeForData(nsIDOMNode *aInstanceDataNode,
|
|
|
|
nsIModelElementPrivate *aModel,
|
|
|
|
nsIDOMNode **aInstanceNode)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG(aInstanceDataNode);
|
|
|
|
NS_ENSURE_ARG(aModel);
|
|
|
|
NS_ENSURE_ARG_POINTER(aInstanceNode);
|
|
|
|
*aInstanceNode = nsnull;
|
|
|
|
|
|
|
|
/* We want to get at the <xf:instance> that aInstanceDataNode belongs to.
|
|
|
|
We get all xf:instance nodes in the aModel, QI it to nsIInstanceElementPrivate
|
|
|
|
and compare its document to the document aInstanceDataNode lives in.
|
|
|
|
*/
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMDocument> instanceDoc;
|
|
|
|
aInstanceDataNode->GetOwnerDocument(getter_AddRefs(instanceDoc));
|
|
|
|
// owner doc is null when the data node is the document (e.g., ref="/")
|
|
|
|
if (!instanceDoc)
|
|
|
|
instanceDoc = do_QueryInterface(aInstanceDataNode);
|
|
|
|
NS_ENSURE_TRUE(instanceDoc, NS_ERROR_UNEXPECTED);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMElement> modelElem = do_QueryInterface(aModel);
|
|
|
|
NS_ENSURE_STATE(modelElem);
|
|
|
|
nsCOMPtr<nsIDOMNodeList> nodeList;
|
|
|
|
nsresult rv = modelElem->GetElementsByTagNameNS(NS_LITERAL_STRING(NS_NAMESPACE_XFORMS),
|
|
|
|
NS_LITERAL_STRING("instance"),
|
|
|
|
getter_AddRefs(nodeList));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
PRUint32 childCount = 0;
|
|
|
|
nodeList->GetLength(&childCount);
|
|
|
|
PRUint32 i;
|
|
|
|
for (i = 0; i < childCount; ++i) {
|
|
|
|
nodeList->Item(i, aInstanceNode);
|
|
|
|
nsCOMPtr<nsIInstanceElementPrivate> instPriv = do_QueryInterface(*aInstanceNode);
|
|
|
|
if (!instPriv)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMDocument> tmpDoc;
|
|
|
|
instPriv->GetDocument(getter_AddRefs(tmpDoc));
|
|
|
|
|
|
|
|
if (tmpDoc == instanceDoc)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!childCount || i == childCount)
|
|
|
|
// No instance nodes in model or instance node not found?
|
|
|
|
// Doesn't make sense!
|
|
|
|
return NS_ERROR_ABORT;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-02-22 22:11:51 +00:00
|
|
|
|
|
|
|
/* static */ nsresult
|
2005-03-30 16:41:07 +00:00
|
|
|
nsXFormsUtils::ParseTypeFromNode(nsIDOMNode *aInstanceData,
|
2005-02-22 22:11:51 +00:00
|
|
|
nsAString &aType, nsAString &aNSPrefix)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
2005-02-25 21:52:59 +00:00
|
|
|
|
|
|
|
// aInstanceData could be an instance data node or it could be an attribute
|
|
|
|
// on an instance data node (basically the node that a control is bound to).
|
|
|
|
// So first checking to see if it is a proper element node. If it isn't,
|
|
|
|
// making sure that it is at least an attribute.
|
|
|
|
//
|
|
|
|
// XXX - Once node type is set as a property on the element or attribute node,
|
|
|
|
// then we can treat elements and attributes the same. For now we are using
|
|
|
|
// an attribute on the instance data node to store the type. If we bind
|
|
|
|
// to an attribute on the instance data node there is nothing we can do but
|
|
|
|
// hope that it doesn't have a bound type until we get properties on
|
|
|
|
// attributes working. (bug 283004)
|
2005-02-22 22:11:51 +00:00
|
|
|
nsCOMPtr<nsIDOMElement> nodeElem = do_QueryInterface(aInstanceData, &rv);
|
2005-02-25 21:52:59 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
nsCOMPtr<nsIDOMAttr> attrNode = do_QueryInterface(aInstanceData, &rv);
|
|
|
|
if(NS_SUCCEEDED(rv)){
|
|
|
|
// right now we can't handle having a 'type' property on attribute nodes.
|
|
|
|
// For now we'll treat this condition as not having a 'type' property
|
|
|
|
// on the given node at all. This will allow a lot of testcases to still
|
|
|
|
// work ok as the caller will usually assign a default type of
|
|
|
|
// 'xsd:string' when we return NS_ERROR_NOT_AVAILABLE here.
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
} else {
|
|
|
|
// can't have a 'type' property on anything other than an element or an
|
|
|
|
// attribute. Return failure
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
2005-02-22 22:11:51 +00:00
|
|
|
|
|
|
|
// right now type is stored as an attribute on the instance node. In the
|
|
|
|
// future it will be a property.
|
2005-02-25 21:52:59 +00:00
|
|
|
PRBool typeExists = PR_FALSE;
|
|
|
|
NS_NAMED_LITERAL_STRING(schemaInstanceURI, NS_NAMESPACE_XML_SCHEMA_INSTANCE);
|
|
|
|
NS_NAMED_LITERAL_STRING(type, "type");
|
|
|
|
nodeElem->HasAttributeNS(schemaInstanceURI, type, &typeExists);
|
|
|
|
if (!typeExists) {
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
|
2005-02-22 22:11:51 +00:00
|
|
|
nsAutoString typeAttribute;
|
2005-02-25 21:52:59 +00:00
|
|
|
nodeElem->GetAttributeNS(schemaInstanceURI, type, typeAttribute);
|
2005-02-22 22:11:51 +00:00
|
|
|
|
|
|
|
// split type (ns:type) into namespace and type.
|
|
|
|
PRInt32 separator = typeAttribute.FindChar(':');
|
2005-03-30 16:41:07 +00:00
|
|
|
if ((PRUint32) separator == (typeAttribute.Length() - 1)) {
|
|
|
|
const PRUnichar *strings[] = { typeAttribute.get() };
|
|
|
|
// XXX: get an element from the document this came from
|
|
|
|
ReportError(NS_LITERAL_STRING("missingTypeName"), strings, 1, nsnull, nsnull);
|
2005-02-22 22:11:51 +00:00
|
|
|
return NS_ERROR_UNEXPECTED;
|
2005-03-16 18:09:40 +00:00
|
|
|
} else if (separator == kNotFound) {
|
|
|
|
// no namespace prefix, which is valid;
|
|
|
|
aNSPrefix.AssignLiteral("");
|
|
|
|
aType.Assign(typeAttribute);
|
|
|
|
} else {
|
|
|
|
aNSPrefix.Assign(Substring(typeAttribute, 0, separator));
|
|
|
|
aType.Assign(Substring(typeAttribute, ++separator, typeAttribute.Length()));
|
2005-02-22 22:11:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2005-03-30 16:41:07 +00:00
|
|
|
|
|
|
|
/* static */ void
|
|
|
|
nsXFormsUtils::ReportError(const nsString& aMessageName, const PRUnichar **aParams,
|
2005-04-13 08:06:17 +00:00
|
|
|
PRUint32 aParamLength, nsIDOMNode *aElement,
|
|
|
|
nsIDOMNode *aContext, PRUint32 aErrorFlag)
|
2005-03-30 16:41:07 +00:00
|
|
|
{
|
2005-04-13 08:06:17 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIScriptError> errorObject =
|
|
|
|
do_CreateInstance("@mozilla.org/scripterror;1");
|
|
|
|
|
2005-03-30 16:41:07 +00:00
|
|
|
nsCOMPtr<nsIConsoleService> consoleService =
|
|
|
|
do_GetService(NS_CONSOLESERVICE_CONTRACTID);
|
|
|
|
|
2005-04-27 08:29:42 +00:00
|
|
|
nsCOMPtr<nsIStringBundleService> bundleService =
|
|
|
|
do_GetService(NS_STRINGBUNDLE_CONTRACTID);
|
2005-03-30 16:41:07 +00:00
|
|
|
|
2005-04-27 08:29:42 +00:00
|
|
|
if (!(consoleService && errorObject && bundleService))
|
|
|
|
return;
|
|
|
|
|
|
|
|
nsAutoString msg, srcFile, srcLine;
|
|
|
|
|
|
|
|
// get the string from the bundle (xforms.properties)
|
|
|
|
nsCOMPtr<nsIStringBundle> bundle;
|
|
|
|
bundleService->CreateBundle("chrome://xforms/locale/xforms.properties",
|
|
|
|
getter_AddRefs(bundle));
|
|
|
|
nsXPIDLString message;
|
|
|
|
if (aParams) {
|
|
|
|
bundle->FormatStringFromName(aMessageName.get(), aParams, aParamLength,
|
|
|
|
getter_Copies(message));
|
|
|
|
msg.Append(message);
|
|
|
|
} else {
|
|
|
|
bundle->GetStringFromName(aMessageName.get(),
|
|
|
|
getter_Copies(message));
|
|
|
|
msg.Append(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (msg.IsEmpty()) {
|
|
|
|
#ifdef DEBUG
|
|
|
|
printf("nsXFormsUtils::ReportError() Failed to get message string for message id '%s'!\n",
|
|
|
|
NS_ConvertUCS2toUTF8(aMessageName).get());
|
|
|
|
#endif
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if a context was defined, we clone (not deep) it, serialize it and append
|
|
|
|
// to the message.
|
|
|
|
if (aContext) {
|
|
|
|
nsCOMPtr<nsIDOMSerializer> ds = do_GetService(NS_XMLSERIALIZER_CONTRACTID);
|
|
|
|
if (ds) {
|
|
|
|
nsAutoString contextMsg;
|
|
|
|
nsCOMPtr<nsIDOMNode> tmpNode;
|
|
|
|
// SerializeToString always does a deep serialize, so we do a non-deep
|
|
|
|
// clone so that we don't serialize any children.
|
|
|
|
aContext->CloneNode(PR_FALSE, getter_AddRefs(tmpNode));
|
|
|
|
ds->SerializeToString(tmpNode, srcLine);
|
2005-03-30 16:41:07 +00:00
|
|
|
}
|
2005-04-27 08:29:42 +00:00
|
|
|
}
|
2005-03-30 16:41:07 +00:00
|
|
|
|
2005-04-27 08:29:42 +00:00
|
|
|
// if aElement is defined, we use it to figure out the location of the file
|
|
|
|
// that caused the error.
|
|
|
|
if (aElement) {
|
|
|
|
nsCOMPtr<nsIDOMDocument> domDoc;
|
|
|
|
aElement->GetOwnerDocument(getter_AddRefs(domDoc));
|
2005-03-30 16:41:07 +00:00
|
|
|
|
2005-04-27 08:29:42 +00:00
|
|
|
if (domDoc) {
|
|
|
|
nsCOMPtr<nsIDOMNSDocument> nsDoc(do_QueryInterface(domDoc));
|
2005-03-30 16:41:07 +00:00
|
|
|
|
2005-04-27 08:29:42 +00:00
|
|
|
if (nsDoc) {
|
|
|
|
nsCOMPtr<nsIDOMLocation> domLoc;
|
|
|
|
nsDoc->GetLocation(getter_AddRefs(domLoc));
|
2005-03-30 16:41:07 +00:00
|
|
|
|
2005-04-27 08:29:42 +00:00
|
|
|
if (domLoc) {
|
|
|
|
nsAutoString location;
|
|
|
|
domLoc->GetHref(srcFile);
|
2005-03-30 16:41:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2005-04-27 08:29:42 +00:00
|
|
|
}
|
2005-03-30 16:41:07 +00:00
|
|
|
|
2005-04-27 08:29:42 +00:00
|
|
|
|
|
|
|
// Log the message to JavaScript Console
|
|
|
|
#ifdef DEBUG
|
|
|
|
printf("ERR: %s\n", NS_ConvertUCS2toUTF8(msg).get());
|
|
|
|
#endif
|
2005-04-27 09:04:07 +00:00
|
|
|
nsresult rv = errorObject->Init(msg.get(), srcFile.get(), srcLine.get(),
|
|
|
|
0, 0, aErrorFlag, "XForms");
|
2005-04-27 08:29:42 +00:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
consoleService->LogMessage(errorObject);
|
2005-03-30 16:41:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|