2007-03-22 10:30:00 -07: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.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of 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 ***** */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Implementation of the DOM nsIDOMRange object.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nscore.h"
|
|
|
|
#include "nsRange.h"
|
|
|
|
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsReadableUtils.h"
|
|
|
|
#include "nsIDOMNode.h"
|
|
|
|
#include "nsIDOMDocument.h"
|
|
|
|
#include "nsIDOMNSDocument.h"
|
|
|
|
#include "nsIDOMDocumentFragment.h"
|
|
|
|
#include "nsIContent.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsIDOMText.h"
|
|
|
|
#include "nsDOMError.h"
|
|
|
|
#include "nsIContentIterator.h"
|
|
|
|
#include "nsIDOMNodeList.h"
|
|
|
|
#include "nsGkAtoms.h"
|
|
|
|
#include "nsContentUtils.h"
|
2008-07-25 03:37:37 -07:00
|
|
|
#include "nsGenericDOMDataNode.h"
|
2009-09-24 14:01:48 -07:00
|
|
|
#include "nsClientRect.h"
|
|
|
|
#include "nsLayoutUtils.h"
|
|
|
|
#include "nsTextFrame.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsresult NS_NewContentIterator(nsIContentIterator** aInstancePtrResult);
|
|
|
|
nsresult NS_NewContentSubtreeIterator(nsIContentIterator** aInstancePtrResult);
|
|
|
|
|
|
|
|
/******************************************************
|
|
|
|
* stack based utilty class for managing monitor
|
|
|
|
******************************************************/
|
|
|
|
|
|
|
|
// NS_ERROR_DOM_NOT_OBJECT_ERR is not the correct one to throw, but spec doesn't say
|
|
|
|
// what is
|
|
|
|
#define VALIDATE_ACCESS(node_) \
|
|
|
|
PR_BEGIN_MACRO \
|
|
|
|
if (!node_) { \
|
|
|
|
return NS_ERROR_DOM_NOT_OBJECT_ERR; \
|
|
|
|
} \
|
|
|
|
if (!nsContentUtils::CanCallerAccess(node_)) { \
|
|
|
|
return NS_ERROR_DOM_SECURITY_ERR; \
|
|
|
|
} \
|
|
|
|
if (mIsDetached) { \
|
|
|
|
return NS_ERROR_DOM_INVALID_STATE_ERR; \
|
|
|
|
} \
|
|
|
|
PR_END_MACRO
|
|
|
|
|
|
|
|
// Utility routine to detect if a content node is completely contained in a range
|
|
|
|
// If outNodeBefore is returned true, then the node starts before the range does.
|
|
|
|
// If outNodeAfter is returned true, then the node ends after the range does.
|
|
|
|
// Note that both of the above might be true.
|
|
|
|
// If neither are true, the node is contained inside of the range.
|
|
|
|
// XXX - callers responsibility to ensure node in same doc as range!
|
|
|
|
|
|
|
|
// static
|
|
|
|
nsresult
|
2008-10-15 02:40:28 -07:00
|
|
|
nsRange::CompareNodeToRange(nsINode* aNode, nsIDOMRange* aRange,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRBool *outNodeBefore, PRBool *outNodeAfter)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIRange> range = do_QueryInterface(aRange, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return CompareNodeToRange(aNode, range, outNodeBefore, outNodeAfter);
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
nsresult
|
2008-10-15 02:40:28 -07:00
|
|
|
nsRange::CompareNodeToRange(nsINode* aNode, nsIRange* aRange,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRBool *outNodeBefore, PRBool *outNodeAfter)
|
|
|
|
{
|
2008-02-24 04:46:09 -08:00
|
|
|
NS_ENSURE_STATE(aNode);
|
2007-03-22 10:30:00 -07:00
|
|
|
// create a pair of dom points that expresses location of node:
|
|
|
|
// NODE(start), NODE(end)
|
|
|
|
// Let incoming range be:
|
|
|
|
// {RANGE(start), RANGE(end)}
|
|
|
|
// if (RANGE(start) <= NODE(start)) and (RANGE(end) => NODE(end))
|
|
|
|
// then the Node is contained (completely) by the Range.
|
|
|
|
|
2009-04-06 10:17:37 -07:00
|
|
|
if (!aRange || !aRange->IsPositioned())
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
|
|
|
|
// gather up the dom point info
|
|
|
|
PRInt32 nodeStart, nodeEnd;
|
|
|
|
nsINode* parent = aNode->GetNodeParent();
|
|
|
|
if (!parent) {
|
|
|
|
// can't make a parent/offset pair to represent start or
|
2008-10-15 02:40:28 -07:00
|
|
|
// end of the root node, because it has no parent.
|
2007-03-22 10:30:00 -07:00
|
|
|
// so instead represent it by (node,0) and (node,numChildren)
|
|
|
|
parent = aNode;
|
|
|
|
nodeStart = 0;
|
|
|
|
nodeEnd = aNode->GetChildCount();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
nodeStart = parent->IndexOf(aNode);
|
|
|
|
nodeEnd = nodeStart + 1;
|
|
|
|
}
|
|
|
|
|
2009-04-06 10:17:37 -07:00
|
|
|
nsINode* rangeStartParent = aRange->GetStartParent();
|
|
|
|
nsINode* rangeEndParent = aRange->GetEndParent();
|
|
|
|
PRInt32 rangeStartOffset = aRange->StartOffset();
|
|
|
|
PRInt32 rangeEndOffset = aRange->EndOffset();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// is RANGE(start) <= NODE(start) ?
|
2008-02-24 04:46:09 -08:00
|
|
|
PRBool disconnected = PR_FALSE;
|
2007-03-22 10:30:00 -07:00
|
|
|
*outNodeBefore = nsContentUtils::ComparePoints(rangeStartParent,
|
|
|
|
rangeStartOffset,
|
2008-02-24 04:46:09 -08:00
|
|
|
parent, nodeStart,
|
|
|
|
&disconnected) > 0;
|
|
|
|
NS_ENSURE_TRUE(!disconnected, NS_ERROR_DOM_WRONG_DOCUMENT_ERR);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// is RANGE(end) >= NODE(end) ?
|
|
|
|
*outNodeAfter = nsContentUtils::ComparePoints(rangeEndParent,
|
|
|
|
rangeEndOffset,
|
2008-02-24 04:46:09 -08:00
|
|
|
parent, nodeEnd,
|
|
|
|
&disconnected) < 0;
|
|
|
|
NS_ENSURE_TRUE(!disconnected, NS_ERROR_DOM_WRONG_DOCUMENT_ERR);
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************
|
|
|
|
* non members
|
|
|
|
******************************************************/
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
NS_NewRangeUtils(nsIRangeUtils** aResult)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aResult);
|
|
|
|
|
|
|
|
nsRangeUtils* rangeUtil = new nsRangeUtils();
|
|
|
|
if (!rangeUtil) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CallQueryInterface(rangeUtil, aResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************
|
|
|
|
* nsISupports
|
|
|
|
******************************************************/
|
|
|
|
NS_IMPL_ISUPPORTS1(nsRangeUtils, nsIRangeUtils)
|
|
|
|
|
|
|
|
/******************************************************
|
|
|
|
* nsIRangeUtils methods
|
|
|
|
******************************************************/
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(PRInt32)
|
|
|
|
nsRangeUtils::ComparePoints(nsIDOMNode* aParent1, PRInt32 aOffset1,
|
|
|
|
nsIDOMNode* aParent2, PRInt32 aOffset2)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsINode> parent1 = do_QueryInterface(aParent1);
|
|
|
|
nsCOMPtr<nsINode> parent2 = do_QueryInterface(aParent2);
|
|
|
|
|
|
|
|
NS_ENSURE_TRUE(parent1 && parent2, -1);
|
|
|
|
|
|
|
|
return nsContentUtils::ComparePoints(parent1, aOffset1, parent2, aOffset2);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRangeUtils::CompareNodeToRange(nsIContent* aNode, nsIDOMRange* aRange,
|
|
|
|
PRBool *outNodeBefore, PRBool *outNodeAfter)
|
|
|
|
{
|
|
|
|
return nsRange::CompareNodeToRange(aNode, aRange, outNodeBefore,
|
|
|
|
outNodeAfter);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************
|
|
|
|
* non members
|
|
|
|
******************************************************/
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
NS_NewRange(nsIDOMRange** aResult)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aResult);
|
|
|
|
|
|
|
|
nsRange * range = new nsRange();
|
|
|
|
if (!range) {
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CallQueryInterface(range, aResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************
|
|
|
|
* constructor/destructor
|
|
|
|
******************************************************/
|
|
|
|
|
|
|
|
nsRange::~nsRange()
|
|
|
|
{
|
|
|
|
DoSetRange(nsnull, 0, nsnull, 0, nsnull);
|
|
|
|
// we want the side effects (releases and list removals)
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************
|
|
|
|
* nsISupports
|
|
|
|
******************************************************/
|
|
|
|
|
2008-12-03 02:03:10 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(nsRange)
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(nsRange)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(nsRange)
|
|
|
|
|
2010-01-12 05:08:43 -08:00
|
|
|
DOMCI_DATA(Range, nsRange)
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// QueryInterface implementation for nsRange
|
2008-12-03 02:03:10 -08:00
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(nsRange)
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMRange)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIRange)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMNSRange)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIMutationObserver)
|
|
|
|
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIRange)
|
2010-03-17 08:09:05 -07:00
|
|
|
NS_DOM_INTERFACE_MAP_ENTRY_CLASSINFO(Range)
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
2008-12-03 02:03:10 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(nsRange)
|
|
|
|
tmp->Reset();
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(nsRange)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_NSCOMPTR(mStartParent)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_NSCOMPTR(mEndParent)
|
2008-12-03 02:14:51 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_NSCOMPTR(mRoot)
|
2008-12-03 02:03:10 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
/******************************************************
|
|
|
|
* nsIMutationObserver implementation
|
|
|
|
******************************************************/
|
|
|
|
|
|
|
|
void
|
|
|
|
nsRange::CharacterDataChanged(nsIDocument* aDocument,
|
|
|
|
nsIContent* aContent,
|
|
|
|
CharacterDataChangeInfo* aInfo)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(mIsPositioned, "shouldn't be notified if not positioned");
|
|
|
|
|
2008-02-10 05:04:19 -08:00
|
|
|
// If the changed node contains our start boundary and the change starts
|
|
|
|
// before the boundary we'll need to adjust the offset.
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aContent == mStartParent &&
|
|
|
|
aInfo->mChangeStart < (PRUint32)mStartOffset) {
|
2008-02-10 05:04:19 -08:00
|
|
|
// If boundary is inside changed text, position it before change
|
2007-03-22 10:30:00 -07:00
|
|
|
// else adjust start offset for the change in length
|
2008-02-10 05:04:19 -08:00
|
|
|
mStartOffset = (PRUint32)mStartOffset <= aInfo->mChangeEnd ?
|
2007-03-22 10:30:00 -07:00
|
|
|
aInfo->mChangeStart :
|
|
|
|
mStartOffset + aInfo->mChangeStart - aInfo->mChangeEnd +
|
|
|
|
aInfo->mReplaceLength;
|
|
|
|
}
|
|
|
|
|
2008-02-10 05:04:19 -08:00
|
|
|
// Do the same thing for the end boundary.
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aContent == mEndParent && aInfo->mChangeStart < (PRUint32)mEndOffset) {
|
2008-02-10 05:04:19 -08:00
|
|
|
mEndOffset = (PRUint32)mEndOffset <= aInfo->mChangeEnd ?
|
2007-03-22 10:30:00 -07:00
|
|
|
aInfo->mChangeStart :
|
|
|
|
mEndOffset + aInfo->mChangeStart - aInfo->mChangeEnd +
|
|
|
|
aInfo->mReplaceLength;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsRange::ContentInserted(nsIDocument* aDocument,
|
|
|
|
nsIContent* aContainer,
|
|
|
|
nsIContent* aChild,
|
|
|
|
PRInt32 aIndexInContainer)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(mIsPositioned, "shouldn't be notified if not positioned");
|
|
|
|
|
|
|
|
nsINode* container = NODE_FROM(aContainer, aDocument);
|
|
|
|
|
|
|
|
// Adjust position if a sibling was inserted.
|
|
|
|
if (container == mStartParent && aIndexInContainer < mStartOffset) {
|
|
|
|
++mStartOffset;
|
|
|
|
}
|
|
|
|
if (container == mEndParent && aIndexInContainer < mEndOffset) {
|
|
|
|
++mEndOffset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsRange::ContentRemoved(nsIDocument* aDocument,
|
|
|
|
nsIContent* aContainer,
|
|
|
|
nsIContent* aChild,
|
2010-07-21 15:05:17 -07:00
|
|
|
PRInt32 aIndexInContainer,
|
|
|
|
nsIContent* aPreviousSibling)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
NS_ASSERTION(mIsPositioned, "shouldn't be notified if not positioned");
|
|
|
|
|
|
|
|
nsINode* container = NODE_FROM(aContainer, aDocument);
|
|
|
|
|
|
|
|
// Adjust position if a sibling was removed...
|
2009-07-27 05:58:23 -07:00
|
|
|
if (container == mStartParent) {
|
|
|
|
if (aIndexInContainer < mStartOffset) {
|
|
|
|
--mStartOffset;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
// ...or gravitate if an ancestor was removed.
|
|
|
|
else if (nsContentUtils::ContentIsDescendantOf(mStartParent, aChild)) {
|
|
|
|
mStartParent = container;
|
|
|
|
mStartOffset = aIndexInContainer;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do same thing for end boundry.
|
2009-07-27 05:58:23 -07:00
|
|
|
if (container == mEndParent) {
|
|
|
|
if (aIndexInContainer < mEndOffset) {
|
|
|
|
--mEndOffset;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else if (nsContentUtils::ContentIsDescendantOf(mEndParent, aChild)) {
|
|
|
|
mEndParent = container;
|
|
|
|
mEndOffset = aIndexInContainer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-24 04:46:09 -08:00
|
|
|
void
|
|
|
|
nsRange::ParentChainChanged(nsIContent *aContent)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(mRoot == aContent, "Wrong ParentChainChanged notification?");
|
2008-03-13 03:12:51 -07:00
|
|
|
nsINode* newRoot = IsValidBoundary(mStartParent);
|
|
|
|
NS_ASSERTION(newRoot, "No valid boundary or root found!");
|
|
|
|
NS_ASSERTION(newRoot == IsValidBoundary(mEndParent),
|
|
|
|
"Start parent and end parent give different root!");
|
2010-07-21 08:33:31 -07:00
|
|
|
// This is safe without holding a strong ref to self as long as the change
|
|
|
|
// of mRoot is the last thing in DoSetRange.
|
2008-02-24 04:46:09 -08:00
|
|
|
DoSetRange(mStartParent, mStartOffset, mEndParent, mEndOffset, newRoot);
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/********************************************************
|
|
|
|
* Utilities for comparing points: API from nsIDOMNSRange
|
|
|
|
********************************************************/
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::IsPointInRange(nsIDOMNode* aParent, PRInt32 aOffset, PRBool* aResult)
|
|
|
|
{
|
|
|
|
PRInt16 compareResult = 0;
|
|
|
|
nsresult rv = ComparePoint(aParent, aOffset, &compareResult);
|
2007-11-28 00:45:44 -08:00
|
|
|
// If the node isn't in the range's document, it clearly isn't in the range.
|
|
|
|
if (rv == NS_ERROR_DOM_WRONG_DOCUMENT_ERR) {
|
|
|
|
*aResult = PR_FALSE;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
*aResult = compareResult == 0;
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
// returns -1 if point is before range, 0 if point is in range,
|
|
|
|
// 1 if point is after range.
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::ComparePoint(nsIDOMNode* aParent, PRInt32 aOffset, PRInt16* aResult)
|
|
|
|
{
|
|
|
|
if (mIsDetached)
|
|
|
|
return NS_ERROR_DOM_INVALID_STATE_ERR;
|
|
|
|
|
|
|
|
// our range is in a good state?
|
|
|
|
if (!mIsPositioned)
|
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
|
|
|
|
nsCOMPtr<nsINode> parent = do_QueryInterface(aParent);
|
|
|
|
NS_ENSURE_TRUE(parent, NS_ERROR_DOM_HIERARCHY_REQUEST_ERR);
|
|
|
|
|
|
|
|
if (!nsContentUtils::ContentIsDescendantOf(parent, mRoot)) {
|
|
|
|
return NS_ERROR_DOM_WRONG_DOCUMENT_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRInt32 cmp;
|
|
|
|
if ((cmp = nsContentUtils::ComparePoints(parent, aOffset,
|
|
|
|
mStartParent, mStartOffset)) <= 0) {
|
|
|
|
|
|
|
|
*aResult = cmp;
|
|
|
|
}
|
|
|
|
else if (nsContentUtils::ComparePoints(mEndParent, mEndOffset,
|
2008-10-19 13:41:21 -07:00
|
|
|
parent, aOffset) == -1) {
|
2007-03-22 10:30:00 -07:00
|
|
|
*aResult = 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
*aResult = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************
|
|
|
|
* Private helper routines
|
|
|
|
******************************************************/
|
|
|
|
|
|
|
|
// Get the length of aNode
|
2009-04-06 10:17:37 -07:00
|
|
|
static PRUint32 GetNodeLength(nsINode *aNode)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if(aNode->IsNodeOfType(nsINode::eDATA_NODE)) {
|
2007-07-08 00:08:04 -07:00
|
|
|
return static_cast<nsIContent*>(aNode)->TextLength();
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return aNode->GetChildCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
// It's important that all setting of the range start/end points
|
|
|
|
// go through this function, which will do all the right voodoo
|
|
|
|
// for content notification of range ownership.
|
|
|
|
// Calling DoSetRange with either parent argument null will collapse
|
|
|
|
// the range to have both endpoints point to the other node
|
|
|
|
void
|
|
|
|
nsRange::DoSetRange(nsINode* aStartN, PRInt32 aStartOffset,
|
|
|
|
nsINode* aEndN, PRInt32 aEndOffset,
|
|
|
|
nsINode* aRoot)
|
|
|
|
{
|
|
|
|
NS_PRECONDITION((aStartN && aEndN && aRoot) ||
|
|
|
|
(!aStartN && !aEndN && !aRoot),
|
|
|
|
"Set all or none");
|
|
|
|
NS_PRECONDITION(!aRoot ||
|
|
|
|
(nsContentUtils::ContentIsDescendantOf(aStartN, aRoot) &&
|
|
|
|
nsContentUtils::ContentIsDescendantOf(aEndN, aRoot) &&
|
|
|
|
aRoot == IsValidBoundary(aStartN) &&
|
|
|
|
aRoot == IsValidBoundary(aEndN)),
|
|
|
|
"Wrong root");
|
|
|
|
NS_PRECONDITION(!aRoot ||
|
|
|
|
(aStartN->IsNodeOfType(nsINode::eCONTENT) &&
|
|
|
|
aEndN->IsNodeOfType(nsINode::eCONTENT) &&
|
|
|
|
aRoot ==
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsIContent*>(aStartN)->GetBindingParent() &&
|
2007-03-22 10:30:00 -07:00
|
|
|
aRoot ==
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsIContent*>(aEndN)->GetBindingParent()) ||
|
2007-03-22 10:30:00 -07:00
|
|
|
(!aRoot->GetNodeParent() &&
|
|
|
|
(aRoot->IsNodeOfType(nsINode::eDOCUMENT) ||
|
|
|
|
aRoot->IsNodeOfType(nsINode::eATTRIBUTE) ||
|
2008-02-24 04:46:09 -08:00
|
|
|
aRoot->IsNodeOfType(nsINode::eDOCUMENT_FRAGMENT) ||
|
|
|
|
/*For backward compatibility*/
|
|
|
|
aRoot->IsNodeOfType(nsINode::eCONTENT))),
|
2007-03-22 10:30:00 -07:00
|
|
|
"Bad root");
|
|
|
|
|
|
|
|
if (mRoot != aRoot) {
|
|
|
|
if (mRoot) {
|
|
|
|
mRoot->RemoveMutationObserver(this);
|
|
|
|
}
|
|
|
|
if (aRoot) {
|
|
|
|
aRoot->AddMutationObserver(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mStartParent = aStartN;
|
|
|
|
mStartOffset = aStartOffset;
|
|
|
|
mEndParent = aEndN;
|
|
|
|
mEndOffset = aEndOffset;
|
|
|
|
mIsPositioned = !!mStartParent;
|
2010-07-21 08:33:31 -07:00
|
|
|
// This needs to be the last thing this function does. See comment
|
|
|
|
// in ParentChainChanged.
|
2007-03-22 10:30:00 -07:00
|
|
|
mRoot = aRoot;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PRInt32
|
|
|
|
IndexOf(nsIDOMNode* aChildNode)
|
|
|
|
{
|
|
|
|
// convert node to nsIContent, so that we can find the child index
|
|
|
|
|
|
|
|
nsCOMPtr<nsINode> child = do_QueryInterface(aChildNode);
|
|
|
|
if (!child) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsINode *parent = child->GetNodeParent();
|
|
|
|
|
|
|
|
// finally we get the index
|
|
|
|
return parent ? parent->IndexOf(child) : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************
|
|
|
|
* nsIRange implementation
|
|
|
|
******************************************************/
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
/* virtual */ nsINode*
|
2009-04-06 10:17:38 -07:00
|
|
|
nsRange::GetCommonAncestor() const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return mIsPositioned ?
|
|
|
|
nsContentUtils::GetCommonAncestor(mStartParent, mEndParent) :
|
|
|
|
nsnull;
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
/* virtual */ void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsRange::Reset()
|
|
|
|
{
|
|
|
|
DoSetRange(nsnull, 0, nsnull, 0, nsnull);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************
|
|
|
|
* public functionality
|
|
|
|
******************************************************/
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::GetStartContainer(nsIDOMNode** aStartParent)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (!mIsPositioned)
|
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
|
|
|
|
return CallQueryInterface(mStartParent, aStartParent);
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::GetStartOffset(PRInt32* aStartOffset)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (!mIsPositioned)
|
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
|
|
|
|
*aStartOffset = mStartOffset;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::GetEndContainer(nsIDOMNode** aEndParent)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (!mIsPositioned)
|
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
|
|
|
|
return CallQueryInterface(mEndParent, aEndParent);
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::GetEndOffset(PRInt32* aEndOffset)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (!mIsPositioned)
|
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
|
|
|
|
*aEndOffset = mEndOffset;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::GetCollapsed(PRBool* aIsCollapsed)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if(mIsDetached)
|
|
|
|
return NS_ERROR_DOM_INVALID_STATE_ERR;
|
|
|
|
if (!mIsPositioned)
|
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
|
|
|
|
*aIsCollapsed = Collapsed();
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::GetCommonAncestorContainer(nsIDOMNode** aCommonParent)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
*aCommonParent = nsnull;
|
|
|
|
if(mIsDetached)
|
|
|
|
return NS_ERROR_DOM_INVALID_STATE_ERR;
|
|
|
|
if (!mIsPositioned)
|
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
|
|
|
|
nsINode* container = nsContentUtils::GetCommonAncestor(mStartParent, mEndParent);
|
|
|
|
if (container) {
|
|
|
|
return CallQueryInterface(container, aCommonParent);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
}
|
|
|
|
|
2007-06-18 20:01:03 -07:00
|
|
|
nsINode* nsRange::IsValidBoundary(nsINode* aNode)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (!aNode) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aNode->IsNodeOfType(nsINode::eCONTENT)) {
|
2007-07-08 00:08:04 -07:00
|
|
|
nsIContent* content = static_cast<nsIContent*>(aNode);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (content->Tag() == nsGkAtoms::documentTypeNodeName) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2007-06-18 20:01:03 -07:00
|
|
|
if (!mMaySpanAnonymousSubtrees) {
|
|
|
|
// If the node has a binding parent, that should be the root.
|
|
|
|
// XXXbz maybe only for native anonymous content?
|
|
|
|
nsINode* root = content->GetBindingParent();
|
|
|
|
if (root) {
|
|
|
|
return root;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Elements etc. must be in document or in document fragment,
|
|
|
|
// text nodes in document, in document fragment or in attribute.
|
|
|
|
nsINode* root = aNode->GetCurrentDoc();
|
|
|
|
if (root) {
|
|
|
|
return root;
|
|
|
|
}
|
|
|
|
|
|
|
|
root = aNode;
|
|
|
|
while ((aNode = aNode->GetNodeParent())) {
|
|
|
|
root = aNode;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_ASSERTION(!root->IsNodeOfType(nsINode::eDOCUMENT),
|
|
|
|
"GetCurrentDoc should have returned a doc");
|
|
|
|
|
|
|
|
#ifdef DEBUG_smaug
|
2008-02-24 04:46:09 -08:00
|
|
|
NS_WARN_IF_FALSE(root->IsNodeOfType(nsINode::eDOCUMENT_FRAGMENT) ||
|
|
|
|
root->IsNodeOfType(nsINode::eATTRIBUTE),
|
|
|
|
"Creating a DOM Range using root which isn't in DOM!");
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
|
2008-02-24 04:46:09 -08:00
|
|
|
// We allow this because of backward compatibility.
|
|
|
|
return root;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::SetStart(nsIDOMNode* aParent, PRInt32 aOffset)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
VALIDATE_ACCESS(aParent);
|
|
|
|
|
|
|
|
nsCOMPtr<nsINode> parent = do_QueryInterface(aParent);
|
2009-04-06 10:17:37 -07:00
|
|
|
return SetStart(parent, aOffset);
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
/* virtual */ nsresult
|
|
|
|
nsRange::SetStart(nsINode* aParent, PRInt32 aOffset)
|
2009-04-06 10:17:37 -07:00
|
|
|
{
|
|
|
|
nsINode* newRoot = IsValidBoundary(aParent);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_TRUE(newRoot, NS_ERROR_DOM_RANGE_INVALID_NODE_TYPE_ERR);
|
|
|
|
|
2009-04-06 10:17:37 -07:00
|
|
|
PRInt32 len = GetNodeLength(aParent);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aOffset < 0 || aOffset > len)
|
|
|
|
return NS_ERROR_DOM_INDEX_SIZE_ERR;
|
|
|
|
|
|
|
|
// Collapse if not positioned yet, if positioned in another doc or
|
|
|
|
// if the new start is after end.
|
|
|
|
if (!mIsPositioned || newRoot != mRoot ||
|
2009-04-06 10:17:37 -07:00
|
|
|
nsContentUtils::ComparePoints(aParent, aOffset,
|
2007-03-22 10:30:00 -07:00
|
|
|
mEndParent, mEndOffset) == 1) {
|
2009-04-06 10:17:37 -07:00
|
|
|
DoSetRange(aParent, aOffset, aParent, aOffset, newRoot);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-04-06 10:17:37 -07:00
|
|
|
DoSetRange(aParent, aOffset, mEndParent, mEndOffset, mRoot);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::SetStartBefore(nsIDOMNode* aSibling)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
VALIDATE_ACCESS(aSibling);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> parent;
|
|
|
|
nsresult rv = aSibling->GetParentNode(getter_AddRefs(parent));
|
|
|
|
if (NS_FAILED(rv) || !parent) {
|
|
|
|
return NS_ERROR_DOM_RANGE_INVALID_NODE_TYPE_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SetStart(parent, IndexOf(aSibling));
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::SetStartAfter(nsIDOMNode* aSibling)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
VALIDATE_ACCESS(aSibling);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> nParent;
|
|
|
|
nsresult res = aSibling->GetParentNode(getter_AddRefs(nParent));
|
|
|
|
if (NS_FAILED(res) || !nParent) {
|
|
|
|
return NS_ERROR_DOM_RANGE_INVALID_NODE_TYPE_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SetStart(nParent, IndexOf(aSibling) + 1);
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::SetEnd(nsIDOMNode* aParent, PRInt32 aOffset)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
VALIDATE_ACCESS(aParent);
|
|
|
|
|
|
|
|
nsCOMPtr<nsINode> parent = do_QueryInterface(aParent);
|
2009-04-06 10:17:37 -07:00
|
|
|
return SetEnd(parent, aOffset);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
/* virtual */ nsresult
|
|
|
|
nsRange::SetEnd(nsINode* aParent, PRInt32 aOffset)
|
2009-04-06 10:17:37 -07:00
|
|
|
{
|
|
|
|
nsINode* newRoot = IsValidBoundary(aParent);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_TRUE(newRoot, NS_ERROR_DOM_RANGE_INVALID_NODE_TYPE_ERR);
|
|
|
|
|
2009-04-06 10:17:37 -07:00
|
|
|
PRInt32 len = GetNodeLength(aParent);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aOffset < 0 || aOffset > len) {
|
|
|
|
return NS_ERROR_DOM_INDEX_SIZE_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Collapse if not positioned yet, if positioned in another doc or
|
|
|
|
// if the new end is before start.
|
|
|
|
if (!mIsPositioned || newRoot != mRoot ||
|
|
|
|
nsContentUtils::ComparePoints(mStartParent, mStartOffset,
|
2009-04-06 10:17:37 -07:00
|
|
|
aParent, aOffset) == 1) {
|
|
|
|
DoSetRange(aParent, aOffset, aParent, aOffset, newRoot);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-04-06 10:17:37 -07:00
|
|
|
DoSetRange(mStartParent, mStartOffset, aParent, aOffset, mRoot);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::SetEndBefore(nsIDOMNode* aSibling)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
VALIDATE_ACCESS(aSibling);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> nParent;
|
|
|
|
nsresult rv = aSibling->GetParentNode(getter_AddRefs(nParent));
|
|
|
|
if (NS_FAILED(rv) || !nParent) {
|
|
|
|
return NS_ERROR_DOM_RANGE_INVALID_NODE_TYPE_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SetEnd(nParent, IndexOf(aSibling));
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::SetEndAfter(nsIDOMNode* aSibling)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
VALIDATE_ACCESS(aSibling);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> nParent;
|
|
|
|
nsresult res = aSibling->GetParentNode(getter_AddRefs(nParent));
|
|
|
|
if (NS_FAILED(res) || !nParent) {
|
|
|
|
return NS_ERROR_DOM_RANGE_INVALID_NODE_TYPE_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SetEnd(nParent, IndexOf(aSibling) + 1);
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::Collapse(PRBool aToStart)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if(mIsDetached)
|
|
|
|
return NS_ERROR_DOM_INVALID_STATE_ERR;
|
|
|
|
if (!mIsPositioned)
|
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
|
|
|
|
if (aToStart)
|
|
|
|
DoSetRange(mStartParent, mStartOffset, mStartParent, mStartOffset, mRoot);
|
|
|
|
else
|
|
|
|
DoSetRange(mEndParent, mEndOffset, mEndParent, mEndOffset, mRoot);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::SelectNode(nsIDOMNode* aN)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
VALIDATE_ACCESS(aN);
|
|
|
|
|
|
|
|
nsCOMPtr<nsINode> node = do_QueryInterface(aN);
|
|
|
|
NS_ENSURE_TRUE(node, NS_ERROR_DOM_RANGE_INVALID_NODE_TYPE_ERR);
|
|
|
|
|
|
|
|
nsINode* parent = node->GetNodeParent();
|
|
|
|
nsINode* newRoot = IsValidBoundary(parent);
|
|
|
|
NS_ENSURE_TRUE(newRoot, NS_ERROR_DOM_RANGE_INVALID_NODE_TYPE_ERR);
|
|
|
|
|
|
|
|
PRInt32 index = parent->IndexOf(node);
|
|
|
|
if (index < 0) {
|
|
|
|
return NS_ERROR_DOM_RANGE_INVALID_NODE_TYPE_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
DoSetRange(parent, index, parent, index + 1, newRoot);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::SelectNodeContents(nsIDOMNode* aN)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
VALIDATE_ACCESS(aN);
|
|
|
|
|
|
|
|
nsCOMPtr<nsINode> node = do_QueryInterface(aN);
|
|
|
|
nsINode* newRoot = IsValidBoundary(node);
|
|
|
|
NS_ENSURE_TRUE(newRoot, NS_ERROR_DOM_RANGE_INVALID_NODE_TYPE_ERR);
|
|
|
|
|
|
|
|
DoSetRange(node, 0, node, GetNodeLength(node), newRoot);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The Subtree Content Iterator only returns subtrees that are
|
|
|
|
// completely within a given range. It doesn't return a CharacterData
|
2008-10-11 12:46:05 -07:00
|
|
|
// node that contains either the start or end point of the range.,
|
|
|
|
// nor does it return element nodes when nothing in the element is selected.
|
2007-03-22 10:30:00 -07:00
|
|
|
// We need an iterator that will also include these start/end points
|
|
|
|
// so that our methods/algorithms aren't cluttered with special
|
|
|
|
// case code that tries to include these points while iterating.
|
|
|
|
//
|
|
|
|
// The RangeSubtreeIterator class mimics the nsIContentIterator
|
|
|
|
// methods we need, so should the Content Iterator support the
|
|
|
|
// start/end points in the future, we can switchover relatively
|
|
|
|
// easy.
|
|
|
|
|
2008-06-30 18:03:50 -07:00
|
|
|
class NS_STACK_CLASS RangeSubtreeIterator
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
enum RangeSubtreeIterState { eDone=0,
|
2008-10-11 12:46:05 -07:00
|
|
|
eUseStart,
|
2007-03-22 10:30:00 -07:00
|
|
|
eUseIterator,
|
2008-10-11 12:46:05 -07:00
|
|
|
eUseEnd };
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIContentIterator> mIter;
|
|
|
|
RangeSubtreeIterState mIterState;
|
|
|
|
|
2008-10-11 12:46:05 -07:00
|
|
|
nsCOMPtr<nsIDOMNode> mStart;
|
|
|
|
nsCOMPtr<nsIDOMNode> mEnd;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
RangeSubtreeIterator()
|
|
|
|
: mIterState(eDone)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
~RangeSubtreeIterator()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult Init(nsIDOMRange *aRange);
|
|
|
|
already_AddRefed<nsIDOMNode> GetCurrentNode();
|
|
|
|
void First();
|
|
|
|
void Last();
|
|
|
|
void Next();
|
|
|
|
void Prev();
|
|
|
|
|
|
|
|
PRBool IsDone()
|
|
|
|
{
|
|
|
|
return mIterState == eDone;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
RangeSubtreeIterator::Init(nsIDOMRange *aRange)
|
|
|
|
{
|
|
|
|
mIterState = eDone;
|
2008-10-11 12:46:05 -07:00
|
|
|
PRBool collapsed;
|
|
|
|
aRange->GetCollapsed(&collapsed);
|
|
|
|
if (collapsed) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> node;
|
|
|
|
|
|
|
|
// Grab the start point of the range and QI it to
|
|
|
|
// a CharacterData pointer. If it is CharacterData store
|
|
|
|
// a pointer to the node.
|
|
|
|
|
|
|
|
nsresult res = aRange->GetStartContainer(getter_AddRefs(node));
|
|
|
|
if (!node) return NS_ERROR_FAILURE;
|
|
|
|
|
2008-10-11 12:46:05 -07:00
|
|
|
nsCOMPtr<nsIDOMCharacterData> startData = do_QueryInterface(node);
|
|
|
|
if (startData) {
|
|
|
|
mStart = node;
|
|
|
|
} else {
|
|
|
|
PRInt32 startIndex;
|
|
|
|
aRange->GetStartOffset(&startIndex);
|
|
|
|
nsCOMPtr<nsINode> iNode = do_QueryInterface(node);
|
2010-04-30 06:12:05 -07:00
|
|
|
if (iNode->IsElement() &&
|
|
|
|
PRInt32(iNode->AsElement()->GetChildCount()) == startIndex) {
|
2008-10-11 12:46:05 -07:00
|
|
|
mStart = node;
|
|
|
|
}
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Grab the end point of the range and QI it to
|
|
|
|
// a CharacterData pointer. If it is CharacterData store
|
|
|
|
// a pointer to the node.
|
|
|
|
|
|
|
|
res = aRange->GetEndContainer(getter_AddRefs(node));
|
|
|
|
if (!node) return NS_ERROR_FAILURE;
|
|
|
|
|
2008-10-11 12:46:05 -07:00
|
|
|
nsCOMPtr<nsIDOMCharacterData> endData = do_QueryInterface(node);
|
|
|
|
if (endData) {
|
|
|
|
mEnd = node;
|
|
|
|
} else {
|
|
|
|
PRInt32 endIndex;
|
|
|
|
aRange->GetEndOffset(&endIndex);
|
|
|
|
nsCOMPtr<nsINode> iNode = do_QueryInterface(node);
|
2010-04-30 06:12:05 -07:00
|
|
|
if (iNode->IsElement() && endIndex == 0) {
|
2008-10-11 12:46:05 -07:00
|
|
|
mEnd = node;
|
|
|
|
}
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-10-11 12:46:05 -07:00
|
|
|
if (mStart && mStart == mEnd)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// The range starts and stops in the same CharacterData
|
|
|
|
// node. Null out the end pointer so we only visit the
|
|
|
|
// node once!
|
|
|
|
|
2008-10-11 12:46:05 -07:00
|
|
|
mEnd = nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Now create a Content Subtree Iterator to be used
|
|
|
|
// for the subtrees between the end points!
|
|
|
|
|
|
|
|
res = NS_NewContentSubtreeIterator(getter_AddRefs(mIter));
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
res = mIter->Init(aRange);
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
if (mIter->IsDone())
|
|
|
|
{
|
|
|
|
// The subtree iterator thinks there's nothing
|
|
|
|
// to iterate over, so just free it up so we
|
|
|
|
// don't accidentally call into it.
|
|
|
|
|
|
|
|
mIter = nsnull;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize the iterator by calling First().
|
|
|
|
// Note that we are ignoring the return value on purpose!
|
|
|
|
|
|
|
|
First();
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
already_AddRefed<nsIDOMNode>
|
|
|
|
RangeSubtreeIterator::GetCurrentNode()
|
|
|
|
{
|
|
|
|
nsIDOMNode *node = nsnull;
|
|
|
|
|
2008-10-11 12:46:05 -07:00
|
|
|
if (mIterState == eUseStart && mStart) {
|
|
|
|
NS_ADDREF(node = mStart);
|
|
|
|
} else if (mIterState == eUseEnd && mEnd)
|
|
|
|
NS_ADDREF(node = mEnd);
|
2007-03-22 10:30:00 -07:00
|
|
|
else if (mIterState == eUseIterator && mIter)
|
|
|
|
{
|
2008-10-15 02:40:28 -07:00
|
|
|
nsINode* n = mIter->GetCurrentNode();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-10-15 02:40:28 -07:00
|
|
|
if (n) {
|
|
|
|
CallQueryInterface(n, &node);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
RangeSubtreeIterator::First()
|
|
|
|
{
|
2008-10-11 12:46:05 -07:00
|
|
|
if (mStart)
|
|
|
|
mIterState = eUseStart;
|
2007-03-22 10:30:00 -07:00
|
|
|
else if (mIter)
|
|
|
|
{
|
|
|
|
mIter->First();
|
|
|
|
|
|
|
|
mIterState = eUseIterator;
|
|
|
|
}
|
2008-10-11 12:46:05 -07:00
|
|
|
else if (mEnd)
|
|
|
|
mIterState = eUseEnd;
|
2007-03-22 10:30:00 -07:00
|
|
|
else
|
|
|
|
mIterState = eDone;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
RangeSubtreeIterator::Last()
|
|
|
|
{
|
2008-10-11 12:46:05 -07:00
|
|
|
if (mEnd)
|
|
|
|
mIterState = eUseEnd;
|
2007-03-22 10:30:00 -07:00
|
|
|
else if (mIter)
|
|
|
|
{
|
|
|
|
mIter->Last();
|
|
|
|
|
|
|
|
mIterState = eUseIterator;
|
|
|
|
}
|
2008-10-11 12:46:05 -07:00
|
|
|
else if (mStart)
|
|
|
|
mIterState = eUseStart;
|
2007-03-22 10:30:00 -07:00
|
|
|
else
|
|
|
|
mIterState = eDone;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
RangeSubtreeIterator::Next()
|
|
|
|
{
|
2008-10-11 12:46:05 -07:00
|
|
|
if (mIterState == eUseStart)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (mIter)
|
|
|
|
{
|
|
|
|
mIter->First();
|
|
|
|
|
|
|
|
mIterState = eUseIterator;
|
|
|
|
}
|
2008-10-11 12:46:05 -07:00
|
|
|
else if (mEnd)
|
|
|
|
mIterState = eUseEnd;
|
2007-03-22 10:30:00 -07:00
|
|
|
else
|
|
|
|
mIterState = eDone;
|
|
|
|
}
|
|
|
|
else if (mIterState == eUseIterator)
|
|
|
|
{
|
|
|
|
mIter->Next();
|
|
|
|
|
|
|
|
if (mIter->IsDone())
|
|
|
|
{
|
2008-10-11 12:46:05 -07:00
|
|
|
if (mEnd)
|
|
|
|
mIterState = eUseEnd;
|
2007-03-22 10:30:00 -07:00
|
|
|
else
|
|
|
|
mIterState = eDone;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
mIterState = eDone;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
RangeSubtreeIterator::Prev()
|
|
|
|
{
|
2008-10-11 12:46:05 -07:00
|
|
|
if (mIterState == eUseEnd)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (mIter)
|
|
|
|
{
|
|
|
|
mIter->Last();
|
|
|
|
|
|
|
|
mIterState = eUseIterator;
|
|
|
|
}
|
2008-10-11 12:46:05 -07:00
|
|
|
else if (mStart)
|
|
|
|
mIterState = eUseStart;
|
2007-03-22 10:30:00 -07:00
|
|
|
else
|
|
|
|
mIterState = eDone;
|
|
|
|
}
|
|
|
|
else if (mIterState == eUseIterator)
|
|
|
|
{
|
|
|
|
mIter->Prev();
|
|
|
|
|
|
|
|
if (mIter->IsDone())
|
|
|
|
{
|
2008-10-11 12:46:05 -07:00
|
|
|
if (mStart)
|
|
|
|
mIterState = eUseStart;
|
2007-03-22 10:30:00 -07:00
|
|
|
else
|
|
|
|
mIterState = eDone;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
mIterState = eDone;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// CollapseRangeAfterDelete() is a utility method that is used by
|
|
|
|
// DeleteContents() and ExtractContents() to collapse the range
|
|
|
|
// in the correct place, under the range's root container (the
|
|
|
|
// range end points common container) as outlined by the Range spec:
|
|
|
|
//
|
|
|
|
// http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113/ranges.html
|
|
|
|
// The assumption made by this method is that the delete or extract
|
|
|
|
// has been done already, and left the range in a state where there is
|
|
|
|
// no content between the 2 end points.
|
|
|
|
|
|
|
|
static nsresult
|
|
|
|
CollapseRangeAfterDelete(nsIDOMRange *aRange)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aRange);
|
|
|
|
|
|
|
|
// Check if range gravity took care of collapsing the range for us!
|
|
|
|
|
|
|
|
PRBool isCollapsed = PR_FALSE;
|
|
|
|
nsresult res = aRange->GetCollapsed(&isCollapsed);
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
if (isCollapsed)
|
|
|
|
{
|
|
|
|
// aRange is collapsed so there's nothing for us to do.
|
|
|
|
//
|
|
|
|
// There are 2 possible scenarios here:
|
|
|
|
//
|
|
|
|
// 1. aRange could've been collapsed prior to the delete/extract,
|
|
|
|
// which would've resulted in nothing being removed, so aRange
|
|
|
|
// is already where it should be.
|
|
|
|
//
|
|
|
|
// 2. Prior to the delete/extract, aRange's start and end were in
|
|
|
|
// the same container which would mean everything between them
|
|
|
|
// was removed, causing range gravity to collapse the range.
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// aRange isn't collapsed so figure out the appropriate place to collapse!
|
|
|
|
// First get both end points and their common ancestor.
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> commonAncestor;
|
|
|
|
res = aRange->GetCommonAncestorContainer(getter_AddRefs(commonAncestor));
|
|
|
|
if(NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> startContainer, endContainer;
|
|
|
|
|
|
|
|
res = aRange->GetStartContainer(getter_AddRefs(startContainer));
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
res = aRange->GetEndContainer(getter_AddRefs(endContainer));
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
// Collapse to one of the end points if they are already in the
|
|
|
|
// commonAncestor. This should work ok since this method is called
|
|
|
|
// immediately after a delete or extract that leaves no content
|
|
|
|
// between the 2 end points!
|
|
|
|
|
|
|
|
if (startContainer == commonAncestor)
|
|
|
|
return aRange->Collapse(PR_TRUE);
|
|
|
|
if (endContainer == commonAncestor)
|
|
|
|
return aRange->Collapse(PR_FALSE);
|
|
|
|
|
|
|
|
// End points are at differing levels. We want to collapse to the
|
|
|
|
// point that is between the 2 subtrees that contain each point,
|
|
|
|
// under the common ancestor.
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> nodeToSelect(startContainer), parent;
|
|
|
|
|
|
|
|
while (nodeToSelect)
|
|
|
|
{
|
|
|
|
nsresult res = nodeToSelect->GetParentNode(getter_AddRefs(parent));
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
if (parent == commonAncestor)
|
|
|
|
break; // We found the nodeToSelect!
|
|
|
|
|
|
|
|
nodeToSelect = parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!nodeToSelect)
|
|
|
|
return NS_ERROR_FAILURE; // This should never happen!
|
|
|
|
|
|
|
|
res = aRange->SelectNode(nodeToSelect);
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
return aRange->Collapse(PR_FALSE);
|
|
|
|
}
|
|
|
|
|
2008-07-25 03:37:37 -07:00
|
|
|
/**
|
|
|
|
* Remove a node from the DOM entirely.
|
|
|
|
*
|
|
|
|
* @param aNode The node to remove.
|
|
|
|
*/
|
|
|
|
static nsresult
|
|
|
|
RemoveNode(nsIDOMNode* aNode)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsINode> node = do_QueryInterface(aNode);
|
|
|
|
nsCOMPtr<nsINode> parent = node->GetNodeParent();
|
|
|
|
return parent ? parent->RemoveChildAt(parent->IndexOf(node), PR_TRUE) : NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-06-28 12:48:05 -07:00
|
|
|
* Split a data node into two parts.
|
2008-07-25 03:37:37 -07:00
|
|
|
*
|
2009-06-28 12:48:05 -07:00
|
|
|
* @param aStartNode The original node we are trying to split.
|
|
|
|
* @param aStartIndex The index at which to split.
|
|
|
|
* @param aEndNode The second node.
|
2008-07-25 03:37:37 -07:00
|
|
|
* @param aCloneAfterOriginal Set PR_FALSE if the original node should be the
|
|
|
|
* latter one after split.
|
|
|
|
*/
|
|
|
|
static nsresult SplitDataNode(nsIDOMCharacterData* aStartNode,
|
|
|
|
PRUint32 aStartIndex,
|
|
|
|
nsIDOMCharacterData** aEndNode,
|
|
|
|
PRBool aCloneAfterOriginal = PR_TRUE)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsINode> node = do_QueryInterface(aStartNode);
|
|
|
|
NS_ENSURE_STATE(node && node->IsNodeOfType(nsINode::eDATA_NODE));
|
|
|
|
nsGenericDOMDataNode* dataNode = static_cast<nsGenericDOMDataNode*>(node.get());
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContent> newData;
|
|
|
|
rv = dataNode->SplitData(aStartIndex, getter_AddRefs(newData),
|
|
|
|
aCloneAfterOriginal);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2009-06-28 12:48:05 -07:00
|
|
|
return CallQueryInterface(newData, aEndNode);
|
2008-07-25 03:37:37 -07:00
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
PrependChild(nsIDOMNode* aParent, nsIDOMNode* aChild)
|
2008-10-11 12:46:05 -07:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMNode> first, tmpNode;
|
|
|
|
aParent->GetFirstChild(getter_AddRefs(first));
|
|
|
|
return aParent->InsertBefore(aChild, first, getter_AddRefs(tmpNode));
|
|
|
|
}
|
|
|
|
|
2008-07-25 03:37:37 -07:00
|
|
|
nsresult nsRange::CutContents(nsIDOMDocumentFragment** aFragment)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-09-09 02:17:35 -07:00
|
|
|
if (aFragment) {
|
|
|
|
*aFragment = nsnull;
|
|
|
|
}
|
|
|
|
|
2008-07-25 03:37:37 -07:00
|
|
|
if (IsDetached())
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_DOM_INVALID_STATE_ERR;
|
|
|
|
|
2008-07-25 03:37:37 -07:00
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocument> doc =
|
|
|
|
do_QueryInterface(mStartParent->GetOwnerDoc());
|
|
|
|
if (!doc) return NS_ERROR_UNEXPECTED;
|
|
|
|
|
2008-10-11 12:46:05 -07:00
|
|
|
nsCOMPtr<nsIDOMNode> commonAncestor;
|
|
|
|
rv = GetCommonAncestorContainer(getter_AddRefs(commonAncestor));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2008-07-25 03:37:37 -07:00
|
|
|
// If aFragment isn't null, create a temporary fragment to hold our return.
|
|
|
|
nsCOMPtr<nsIDOMDocumentFragment> retval;
|
|
|
|
if (aFragment) {
|
|
|
|
rv = NS_NewDocumentFragment(getter_AddRefs(retval),
|
|
|
|
doc->NodeInfoManager());
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
2008-10-11 12:46:05 -07:00
|
|
|
nsCOMPtr<nsIDOMNode> commonCloneAncestor(do_QueryInterface(retval));
|
2008-07-25 03:37:37 -07:00
|
|
|
|
2007-03-24 05:18:02 -07:00
|
|
|
// Batch possible DOMSubtreeModified events.
|
|
|
|
mozAutoSubtreeModified subtree(mRoot ? mRoot->GetOwnerDoc(): nsnull, nsnull);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Save the range end points locally to avoid interference
|
|
|
|
// of Range gravity during our edits!
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> startContainer = do_QueryInterface(mStartParent);
|
|
|
|
PRInt32 startOffset = mStartOffset;
|
|
|
|
nsCOMPtr<nsIDOMNode> endContainer = do_QueryInterface(mEndParent);
|
|
|
|
PRInt32 endOffset = mEndOffset;
|
|
|
|
|
|
|
|
// Create and initialize a subtree iterator that will give
|
|
|
|
// us all the subtrees within the range.
|
|
|
|
|
|
|
|
RangeSubtreeIterator iter;
|
|
|
|
|
2008-07-25 03:37:37 -07:00
|
|
|
rv = iter.Init(this);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (iter.IsDone())
|
|
|
|
{
|
|
|
|
// There's nothing for us to delete.
|
2008-09-09 02:17:35 -07:00
|
|
|
rv = CollapseRangeAfterDelete(this);
|
|
|
|
if (NS_SUCCEEDED(rv) && aFragment) {
|
|
|
|
NS_ADDREF(*aFragment = retval);
|
|
|
|
}
|
|
|
|
return rv;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// We delete backwards to avoid iterator problems!
|
|
|
|
|
|
|
|
iter.Last();
|
|
|
|
|
|
|
|
PRBool handled = PR_FALSE;
|
|
|
|
|
|
|
|
// With the exception of text nodes that contain one of the range
|
|
|
|
// end points, the subtree iterator should only give us back subtrees
|
|
|
|
// that are completely contained between the range's end points.
|
|
|
|
|
|
|
|
while (!iter.IsDone())
|
|
|
|
{
|
2008-10-11 12:46:05 -07:00
|
|
|
nsCOMPtr<nsIDOMNode> nodeToResult;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIDOMNode> node(iter.GetCurrentNode());
|
|
|
|
|
|
|
|
// Before we delete anything, advance the iterator to the
|
|
|
|
// next subtree.
|
|
|
|
|
|
|
|
iter.Prev();
|
|
|
|
|
|
|
|
handled = PR_FALSE;
|
|
|
|
|
|
|
|
// If it's CharacterData, make sure we might need to delete
|
|
|
|
// part of the data, instead of removing the whole node.
|
|
|
|
//
|
|
|
|
// XXX_kin: We need to also handle ProcessingInstruction
|
|
|
|
// XXX_kin: according to the spec.
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMCharacterData> charData(do_QueryInterface(node));
|
|
|
|
|
|
|
|
if (charData)
|
|
|
|
{
|
|
|
|
PRUint32 dataLength = 0;
|
|
|
|
|
|
|
|
if (node == startContainer)
|
|
|
|
{
|
|
|
|
if (node == endContainer)
|
|
|
|
{
|
|
|
|
// This range is completely contained within a single text node.
|
2008-07-25 03:37:37 -07:00
|
|
|
// Delete or extract the data between startOffset and endOffset.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (endOffset > startOffset)
|
|
|
|
{
|
2009-06-28 12:48:05 -07:00
|
|
|
if (retval) {
|
|
|
|
nsAutoString cutValue;
|
|
|
|
rv = charData->SubstringData(startOffset, endOffset - startOffset,
|
|
|
|
cutValue);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsCOMPtr<nsIDOMNode> clone;
|
|
|
|
rv = charData->CloneNode(PR_FALSE, getter_AddRefs(clone));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
clone->SetNodeValue(cutValue);
|
|
|
|
nodeToResult = clone;
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = charData->DeleteData(startOffset, endOffset - startOffset);
|
2008-07-25 03:37:37 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
handled = PR_TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-07-25 03:37:37 -07:00
|
|
|
// Delete or extract everything after startOffset.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-07-25 03:37:37 -07:00
|
|
|
rv = charData->GetLength(&dataLength);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-12-13 12:09:29 -08:00
|
|
|
if (dataLength >= (PRUint32)startOffset)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-07-25 03:37:37 -07:00
|
|
|
nsCOMPtr<nsIDOMCharacterData> cutNode;
|
2009-06-28 12:48:05 -07:00
|
|
|
rv = SplitDataNode(charData, startOffset, getter_AddRefs(cutNode));
|
2008-07-25 03:37:37 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2008-10-11 12:46:05 -07:00
|
|
|
nodeToResult = cutNode;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
handled = PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (node == endContainer)
|
|
|
|
{
|
2008-07-25 03:37:37 -07:00
|
|
|
// Delete or extract everything before endOffset.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-12-13 12:09:29 -08:00
|
|
|
if (endOffset >= 0)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-07-25 03:37:37 -07:00
|
|
|
nsCOMPtr<nsIDOMCharacterData> cutNode;
|
|
|
|
/* The Range spec clearly states clones get cut and original nodes
|
|
|
|
remain behind, so use PR_FALSE as the last parameter.
|
|
|
|
*/
|
2009-06-28 12:48:05 -07:00
|
|
|
rv = SplitDataNode(charData, endOffset, getter_AddRefs(cutNode),
|
|
|
|
PR_FALSE);
|
2008-07-25 03:37:37 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2008-10-11 12:46:05 -07:00
|
|
|
nodeToResult = cutNode;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
handled = PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-11 12:46:05 -07:00
|
|
|
if (!handled && (node == endContainer || node == startContainer))
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsINode> iNode = do_QueryInterface(node);
|
2010-04-30 06:12:05 -07:00
|
|
|
if (iNode && iNode->IsElement() &&
|
2008-10-11 12:46:05 -07:00
|
|
|
((node == endContainer && endOffset == 0) ||
|
|
|
|
(node == startContainer &&
|
2010-04-30 06:12:05 -07:00
|
|
|
PRInt32(iNode->AsElement()->GetChildCount()) == startOffset)))
|
2008-10-11 12:46:05 -07:00
|
|
|
{
|
|
|
|
if (retval) {
|
|
|
|
nsCOMPtr<nsIDOMNode> clone;
|
|
|
|
rv = node->CloneNode(PR_FALSE, getter_AddRefs(clone));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nodeToResult = clone;
|
|
|
|
}
|
|
|
|
handled = PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!handled)
|
|
|
|
{
|
|
|
|
// node was not handled above, so it must be completely contained
|
|
|
|
// within the range. Just remove it from the tree!
|
2008-10-11 12:46:05 -07:00
|
|
|
nodeToResult = node;
|
|
|
|
}
|
|
|
|
|
|
|
|
PRUint32 parentCount = 0;
|
|
|
|
nsCOMPtr<nsIDOMNode> tmpNode;
|
|
|
|
// Set the result to document fragment if we have 'retval'.
|
|
|
|
if (retval) {
|
|
|
|
nsCOMPtr<nsIDOMNode> oldCommonAncestor = commonAncestor;
|
|
|
|
if (!iter.IsDone()) {
|
|
|
|
// Setup the parameters for the next iteration of the loop.
|
|
|
|
nsCOMPtr<nsIDOMNode> prevNode(iter.GetCurrentNode());
|
|
|
|
NS_ENSURE_STATE(prevNode);
|
|
|
|
|
|
|
|
// Get node's and prevNode's common parent. Do this before moving
|
|
|
|
// nodes from original DOM to result fragment.
|
|
|
|
nsContentUtils::GetCommonAncestor(node, prevNode,
|
|
|
|
getter_AddRefs(commonAncestor));
|
|
|
|
NS_ENSURE_STATE(commonAncestor);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> parentCounterNode = node;
|
|
|
|
while (parentCounterNode && parentCounterNode != commonAncestor)
|
|
|
|
{
|
|
|
|
++parentCount;
|
|
|
|
tmpNode = parentCounterNode;
|
|
|
|
tmpNode->GetParentNode(getter_AddRefs(parentCounterNode));
|
|
|
|
NS_ENSURE_STATE(parentCounterNode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clone the parent hierarchy between commonAncestor and node.
|
|
|
|
nsCOMPtr<nsIDOMNode> closestAncestor, farthestAncestor;
|
|
|
|
rv = CloneParentsBetween(oldCommonAncestor, node,
|
|
|
|
getter_AddRefs(closestAncestor),
|
|
|
|
getter_AddRefs(farthestAncestor));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (farthestAncestor)
|
|
|
|
{
|
|
|
|
rv = PrependChild(commonCloneAncestor, farthestAncestor);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2008-10-11 12:46:05 -07:00
|
|
|
|
|
|
|
rv = closestAncestor ? PrependChild(closestAncestor, nodeToResult)
|
|
|
|
: PrependChild(commonCloneAncestor, nodeToResult);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
} else if (nodeToResult) {
|
|
|
|
rv = RemoveNode(nodeToResult);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!iter.IsDone() && retval) {
|
|
|
|
// Find the equivalent of commonAncestor in the cloned tree.
|
|
|
|
nsCOMPtr<nsIDOMNode> newCloneAncestor = nodeToResult;
|
|
|
|
for (PRUint32 i = parentCount; i; --i)
|
|
|
|
{
|
|
|
|
tmpNode = newCloneAncestor;
|
|
|
|
tmpNode->GetParentNode(getter_AddRefs(newCloneAncestor));
|
|
|
|
NS_ENSURE_STATE(newCloneAncestor);
|
|
|
|
}
|
|
|
|
commonCloneAncestor = newCloneAncestor;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX_kin: At this point we should be checking for the case
|
|
|
|
// XXX_kin: where we have 2 adjacent text nodes left, each
|
|
|
|
// XXX_kin: containing one of the range end points. The spec
|
|
|
|
// XXX_kin: says the 2 nodes should be merged in that case,
|
|
|
|
// XXX_kin: and to use Normalize() to do the merging, but
|
|
|
|
// XXX_kin: calling Normalize() on the common parent to accomplish
|
|
|
|
// XXX_kin: this might also normalize nodes that are outside the
|
|
|
|
// XXX_kin: range but under the common parent. Need to verify
|
|
|
|
// XXX_kin: with the range commitee members that this was the
|
|
|
|
// XXX_kin: desired behavior. For now we don't merge anything!
|
2008-07-25 03:37:37 -07:00
|
|
|
// XXX ajvincent Filed as https://bugzilla.mozilla.org/show_bug.cgi?id=401276
|
|
|
|
|
2008-09-09 02:17:35 -07:00
|
|
|
rv = CollapseRangeAfterDelete(this);
|
|
|
|
if (NS_SUCCEEDED(rv) && aFragment) {
|
2008-07-25 03:37:37 -07:00
|
|
|
NS_ADDREF(*aFragment = retval);
|
|
|
|
}
|
2008-09-09 02:17:35 -07:00
|
|
|
return rv;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::DeleteContents()
|
2008-07-25 03:37:37 -07:00
|
|
|
{
|
|
|
|
return CutContents(nsnull);
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::ExtractContents(nsIDOMDocumentFragment** aReturn)
|
2008-07-25 03:37:37 -07:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aReturn);
|
|
|
|
return CutContents(aReturn);
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::CompareBoundaryPoints(PRUint16 aHow, nsIDOMRange* aOtherRange,
|
|
|
|
PRInt16* aCmpRet)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIRange> otherRange = do_QueryInterface(aOtherRange);
|
|
|
|
NS_ENSURE_TRUE(otherRange, NS_ERROR_NULL_POINTER);
|
|
|
|
|
|
|
|
if(mIsDetached || otherRange->IsDetached())
|
|
|
|
return NS_ERROR_DOM_INVALID_STATE_ERR;
|
|
|
|
if (!mIsPositioned || !otherRange->IsPositioned())
|
|
|
|
return NS_ERROR_NOT_INITIALIZED;
|
|
|
|
|
|
|
|
nsINode *ourNode, *otherNode;
|
|
|
|
PRInt32 ourOffset, otherOffset;
|
|
|
|
|
|
|
|
switch (aHow) {
|
|
|
|
case nsIDOMRange::START_TO_START:
|
|
|
|
ourNode = mStartParent;
|
|
|
|
ourOffset = mStartOffset;
|
|
|
|
otherNode = otherRange->GetStartParent();
|
|
|
|
otherOffset = otherRange->StartOffset();
|
|
|
|
break;
|
|
|
|
case nsIDOMRange::START_TO_END:
|
|
|
|
ourNode = mEndParent;
|
|
|
|
ourOffset = mEndOffset;
|
|
|
|
otherNode = otherRange->GetStartParent();
|
|
|
|
otherOffset = otherRange->StartOffset();
|
|
|
|
break;
|
|
|
|
case nsIDOMRange::END_TO_START:
|
|
|
|
ourNode = mStartParent;
|
|
|
|
ourOffset = mStartOffset;
|
|
|
|
otherNode = otherRange->GetEndParent();
|
|
|
|
otherOffset = otherRange->EndOffset();
|
|
|
|
break;
|
|
|
|
case nsIDOMRange::END_TO_END:
|
|
|
|
ourNode = mEndParent;
|
|
|
|
ourOffset = mEndOffset;
|
|
|
|
otherNode = otherRange->GetEndParent();
|
|
|
|
otherOffset = otherRange->EndOffset();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// We were passed an illegal value
|
|
|
|
return NS_ERROR_ILLEGAL_VALUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mRoot != otherRange->GetRoot())
|
|
|
|
return NS_ERROR_DOM_WRONG_DOCUMENT_ERR;
|
|
|
|
|
|
|
|
*aCmpRet = nsContentUtils::ComparePoints(ourNode, ourOffset,
|
|
|
|
otherNode, otherOffset);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
/* static */ nsresult
|
2008-10-11 12:46:05 -07:00
|
|
|
nsRange::CloneParentsBetween(nsIDOMNode *aAncestor,
|
|
|
|
nsIDOMNode *aNode,
|
|
|
|
nsIDOMNode **aClosestAncestor,
|
|
|
|
nsIDOMNode **aFarthestAncestor)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER((aAncestor && aNode && aClosestAncestor && aFarthestAncestor));
|
|
|
|
|
|
|
|
*aClosestAncestor = nsnull;
|
|
|
|
*aFarthestAncestor = nsnull;
|
|
|
|
|
|
|
|
if (aAncestor == aNode)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> parent, firstParent, lastParent;
|
|
|
|
|
|
|
|
nsresult res = aNode->GetParentNode(getter_AddRefs(parent));
|
|
|
|
|
|
|
|
while(parent && parent != aAncestor)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMNode> clone, tmpNode;
|
|
|
|
|
|
|
|
res = parent->CloneNode(PR_FALSE, getter_AddRefs(clone));
|
|
|
|
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
if (!clone) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
if (! firstParent)
|
|
|
|
firstParent = lastParent = clone;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
res = clone->AppendChild(lastParent, getter_AddRefs(tmpNode));
|
|
|
|
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
lastParent = clone;
|
|
|
|
}
|
|
|
|
|
|
|
|
tmpNode = parent;
|
|
|
|
res = tmpNode->GetParentNode(getter_AddRefs(parent));
|
|
|
|
}
|
|
|
|
|
|
|
|
*aClosestAncestor = firstParent;
|
|
|
|
NS_IF_ADDREF(*aClosestAncestor);
|
|
|
|
|
|
|
|
*aFarthestAncestor = lastParent;
|
|
|
|
NS_IF_ADDREF(*aFarthestAncestor);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::CloneContents(nsIDOMDocumentFragment** aReturn)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (IsDetached())
|
|
|
|
return NS_ERROR_DOM_INVALID_STATE_ERR;
|
|
|
|
|
|
|
|
nsresult res;
|
|
|
|
nsCOMPtr<nsIDOMNode> commonAncestor;
|
|
|
|
res = GetCommonAncestorContainer(getter_AddRefs(commonAncestor));
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMDocument> document =
|
|
|
|
do_QueryInterface(mStartParent->GetOwnerDoc());
|
|
|
|
NS_ASSERTION(document, "CloneContents needs a document to continue.");
|
|
|
|
if (!document) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// Create a new document fragment in the context of this document,
|
|
|
|
// which might be null
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMDocumentFragment> clonedFrag;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocument> doc(do_QueryInterface(document));
|
|
|
|
|
|
|
|
res = NS_NewDocumentFragment(getter_AddRefs(clonedFrag),
|
|
|
|
doc->NodeInfoManager());
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> commonCloneAncestor(do_QueryInterface(clonedFrag));
|
|
|
|
if (!commonCloneAncestor) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// Create and initialize a subtree iterator that will give
|
|
|
|
// us all the subtrees within the range.
|
|
|
|
|
|
|
|
RangeSubtreeIterator iter;
|
|
|
|
|
|
|
|
res = iter.Init(this);
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
if (iter.IsDone())
|
|
|
|
{
|
|
|
|
// There's nothing to add to the doc frag, we must be done!
|
|
|
|
|
|
|
|
*aReturn = clonedFrag;
|
|
|
|
NS_IF_ADDREF(*aReturn);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
iter.First();
|
|
|
|
|
|
|
|
// With the exception of text nodes that contain one of the range
|
2008-10-11 12:46:05 -07:00
|
|
|
// end points and elements which don't have any content selected the subtree
|
|
|
|
// iterator should only give us back subtrees that are completely contained
|
|
|
|
// between the range's end points.
|
2007-03-22 10:30:00 -07:00
|
|
|
//
|
|
|
|
// Unfortunately these subtrees don't contain the parent hierarchy/context
|
|
|
|
// that the Range spec requires us to return. This loop clones the
|
|
|
|
// parent hierarchy, adds a cloned version of the subtree, to it, then
|
|
|
|
// correctly places this new subtree into the doc fragment.
|
|
|
|
|
|
|
|
while (!iter.IsDone())
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMNode> node(iter.GetCurrentNode());
|
|
|
|
nsCOMPtr<nsINode> iNode = do_QueryInterface(node);
|
2010-04-30 06:12:05 -07:00
|
|
|
PRBool deepClone = !iNode->IsElement() ||
|
2008-10-11 12:46:05 -07:00
|
|
|
(!(iNode == mEndParent && mEndOffset == 0) &&
|
|
|
|
!(iNode == mStartParent &&
|
2010-04-30 06:12:05 -07:00
|
|
|
mStartOffset ==
|
|
|
|
PRInt32(iNode->AsElement()->GetChildCount())));
|
2008-10-11 12:46:05 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Clone the current subtree!
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> clone;
|
2008-10-11 12:46:05 -07:00
|
|
|
res = node->CloneNode(deepClone, getter_AddRefs(clone));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
// If it's CharacterData, make sure we only clone what
|
|
|
|
// is in the range.
|
|
|
|
//
|
|
|
|
// XXX_kin: We need to also handle ProcessingInstruction
|
|
|
|
// XXX_kin: according to the spec.
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMCharacterData> charData(do_QueryInterface(clone));
|
|
|
|
|
|
|
|
if (charData)
|
|
|
|
{
|
|
|
|
if (iNode == mEndParent)
|
|
|
|
{
|
|
|
|
// We only need the data before mEndOffset, so get rid of any
|
|
|
|
// data after it.
|
|
|
|
|
|
|
|
PRUint32 dataLength = 0;
|
|
|
|
res = charData->GetLength(&dataLength);
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
if (dataLength > (PRUint32)mEndOffset)
|
|
|
|
{
|
|
|
|
res = charData->DeleteData(mEndOffset, dataLength - mEndOffset);
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (iNode == mStartParent)
|
|
|
|
{
|
|
|
|
// We don't need any data before mStartOffset, so just
|
|
|
|
// delete it!
|
|
|
|
|
|
|
|
if (mStartOffset > 0)
|
|
|
|
{
|
|
|
|
res = charData->DeleteData(0, mStartOffset);
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clone the parent hierarchy between commonAncestor and node.
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> closestAncestor, farthestAncestor;
|
|
|
|
|
|
|
|
res = CloneParentsBetween(commonAncestor, node,
|
|
|
|
getter_AddRefs(closestAncestor),
|
|
|
|
getter_AddRefs(farthestAncestor));
|
|
|
|
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
// Hook the parent hierarchy/context of the subtree into the clone tree.
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> tmpNode;
|
|
|
|
|
|
|
|
if (farthestAncestor)
|
|
|
|
{
|
|
|
|
res = commonCloneAncestor->AppendChild(farthestAncestor,
|
|
|
|
getter_AddRefs(tmpNode));
|
|
|
|
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Place the cloned subtree into the cloned doc frag tree!
|
|
|
|
|
|
|
|
if (closestAncestor)
|
|
|
|
{
|
|
|
|
// Append the subtree under closestAncestor since it is the
|
|
|
|
// immediate parent of the subtree.
|
|
|
|
|
|
|
|
res = closestAncestor->AppendChild(clone, getter_AddRefs(tmpNode));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// If we get here, there is no missing parent hierarchy between
|
|
|
|
// commonAncestor and node, so just append clone to commonCloneAncestor.
|
|
|
|
|
|
|
|
res = commonCloneAncestor->AppendChild(clone, getter_AddRefs(tmpNode));
|
|
|
|
}
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
// Get the next subtree to be processed. The idea here is to setup
|
|
|
|
// the parameters for the next iteration of the loop.
|
|
|
|
|
|
|
|
iter.Next();
|
|
|
|
|
|
|
|
if (iter.IsDone())
|
|
|
|
break; // We must be done!
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> nextNode(iter.GetCurrentNode());
|
|
|
|
if (!nextNode) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// Get node and nextNode's common parent.
|
|
|
|
nsContentUtils::GetCommonAncestor(node, nextNode, getter_AddRefs(commonAncestor));
|
|
|
|
|
|
|
|
if (!commonAncestor)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// Find the equivalent of commonAncestor in the cloned tree!
|
|
|
|
|
|
|
|
while (node && node != commonAncestor)
|
|
|
|
{
|
|
|
|
tmpNode = node;
|
|
|
|
res = tmpNode->GetParentNode(getter_AddRefs(node));
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
if (!node) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
tmpNode = clone;
|
|
|
|
res = tmpNode->GetParentNode(getter_AddRefs(clone));
|
|
|
|
if (NS_FAILED(res)) return res;
|
2008-02-24 04:46:09 -08:00
|
|
|
if (!clone) return NS_ERROR_FAILURE;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
commonCloneAncestor = clone;
|
|
|
|
}
|
|
|
|
|
|
|
|
*aReturn = clonedFrag;
|
|
|
|
NS_IF_ADDREF(*aReturn);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-04-06 10:17:38 -07:00
|
|
|
nsresult nsRange::DoCloneRange(nsIRange** aReturn) const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if(mIsDetached)
|
|
|
|
return NS_ERROR_DOM_INVALID_STATE_ERR;
|
|
|
|
|
|
|
|
if (aReturn == 0)
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
|
|
|
|
2009-04-06 10:17:37 -07:00
|
|
|
nsRefPtr<nsRange> range = new nsRange();
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_TRUE(range, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
2007-06-18 20:01:03 -07:00
|
|
|
range->SetMaySpanAnonymousSubtrees(mMaySpanAnonymousSubtrees);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
range->DoSetRange(mStartParent, mStartOffset, mEndParent, mEndOffset, mRoot);
|
|
|
|
|
2009-04-06 10:17:38 -07:00
|
|
|
*aReturn = range.forget().get();
|
2009-04-06 10:17:37 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2009-04-06 10:17:37 -07:00
|
|
|
NS_IMETHODIMP nsRange::CloneRange(nsIDOMRange** aReturn)
|
|
|
|
{
|
2009-04-06 10:17:38 -07:00
|
|
|
nsIRange* clone;
|
2009-04-06 10:17:37 -07:00
|
|
|
nsresult rv = DoCloneRange(&clone);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
*aReturn = clone;
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
/* virtual */ nsresult
|
|
|
|
nsRange::CloneRange(nsIRange** aReturn) const
|
2009-04-06 10:17:37 -07:00
|
|
|
{
|
2009-04-06 10:17:38 -07:00
|
|
|
return DoCloneRange(aReturn);
|
2009-04-06 10:17:37 -07:00
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::InsertNode(nsIDOMNode* aN)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
VALIDATE_ACCESS(aN);
|
|
|
|
|
|
|
|
nsresult res;
|
|
|
|
PRInt32 tStartOffset;
|
|
|
|
this->GetStartOffset(&tStartOffset);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> tStartContainer;
|
|
|
|
res = this->GetStartContainer(getter_AddRefs(tStartContainer));
|
|
|
|
if(NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMText> startTextNode(do_QueryInterface(tStartContainer));
|
|
|
|
if (startTextNode)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMNode> tSCParentNode;
|
|
|
|
res = tStartContainer->GetParentNode(getter_AddRefs(tSCParentNode));
|
|
|
|
if(NS_FAILED(res)) return res;
|
2008-02-24 04:46:09 -08:00
|
|
|
NS_ENSURE_STATE(tSCParentNode);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
PRInt32 tEndOffset;
|
|
|
|
GetEndOffset(&tEndOffset);
|
|
|
|
|
2009-08-18 17:18:24 -07:00
|
|
|
nsCOMPtr<nsIDOMNode> tEndContainer;
|
|
|
|
res = this->GetEndContainer(getter_AddRefs(tEndContainer));
|
|
|
|
if(NS_FAILED(res)) return res;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIDOMText> secondPart;
|
|
|
|
res = startTextNode->SplitText(tStartOffset, getter_AddRefs(secondPart));
|
|
|
|
if (NS_FAILED(res)) return res;
|
2009-08-18 17:18:24 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIDOMNode> tResultNode;
|
2009-08-18 17:18:24 -07:00
|
|
|
res = tSCParentNode->InsertBefore(aN, secondPart, getter_AddRefs(tResultNode));
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
if (tEndContainer == tStartContainer && tEndOffset != tStartOffset)
|
|
|
|
res = SetEnd(secondPart, tEndOffset - tStartOffset);
|
|
|
|
|
|
|
|
return res;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNodeList>tChildList;
|
|
|
|
res = tStartContainer->GetChildNodes(getter_AddRefs(tChildList));
|
|
|
|
if(NS_FAILED(res)) return res;
|
|
|
|
PRUint32 tChildListLength;
|
|
|
|
res = tChildList->GetLength(&tChildListLength);
|
|
|
|
if(NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
// find the insertion point in the DOM and insert the Node
|
|
|
|
nsCOMPtr<nsIDOMNode>tChildNode;
|
|
|
|
res = tChildList->Item(tStartOffset, getter_AddRefs(tChildNode));
|
|
|
|
if(NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> tResultNode;
|
|
|
|
return tStartContainer->InsertBefore(aN, tChildNode, getter_AddRefs(tResultNode));
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::SurroundContents(nsIDOMNode* aNewParent)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
VALIDATE_ACCESS(aNewParent);
|
2008-09-16 01:13:11 -07:00
|
|
|
|
|
|
|
NS_ENSURE_TRUE(mRoot, NS_ERROR_DOM_INVALID_STATE_ERR);
|
|
|
|
// BAD_BOUNDARYPOINTS_ERR: Raised if the Range partially selects a non-text
|
|
|
|
// node.
|
|
|
|
if (mStartParent != mEndParent) {
|
|
|
|
PRBool startIsText = mStartParent->IsNodeOfType(nsINode::eTEXT);
|
|
|
|
PRBool endIsText = mEndParent->IsNodeOfType(nsINode::eTEXT);
|
|
|
|
nsINode* startGrandParent = mStartParent->GetNodeParent();
|
|
|
|
nsINode* endGrandParent = mEndParent->GetNodeParent();
|
|
|
|
NS_ENSURE_TRUE((startIsText && endIsText &&
|
|
|
|
startGrandParent &&
|
|
|
|
startGrandParent == endGrandParent) ||
|
|
|
|
(startIsText &&
|
|
|
|
startGrandParent &&
|
|
|
|
startGrandParent == mEndParent) ||
|
|
|
|
(endIsText &&
|
|
|
|
endGrandParent &&
|
|
|
|
endGrandParent == mStartParent),
|
|
|
|
NS_ERROR_DOM_RANGE_BAD_BOUNDARYPOINTS_ERR);
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Extract the contents within the range.
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMDocumentFragment> docFrag;
|
|
|
|
|
|
|
|
nsresult res = ExtractContents(getter_AddRefs(docFrag));
|
|
|
|
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
if (!docFrag) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// Spec says we need to remove all of aNewParent's
|
|
|
|
// children prior to insertion.
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNodeList> children;
|
|
|
|
res = aNewParent->GetChildNodes(getter_AddRefs(children));
|
|
|
|
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
if (!children) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
PRUint32 numChildren = 0;
|
|
|
|
res = children->GetLength(&numChildren);
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMNode> tmpNode;
|
|
|
|
|
|
|
|
while (numChildren)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMNode> child;
|
|
|
|
res = children->Item(--numChildren, getter_AddRefs(child));
|
|
|
|
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
if (!child) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
res = aNewParent->RemoveChild(child, getter_AddRefs(tmpNode));
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Insert aNewParent at the range's start point.
|
|
|
|
|
|
|
|
res = InsertNode(aNewParent);
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
// Append the content we extracted under aNewParent.
|
|
|
|
|
|
|
|
res = aNewParent->AppendChild(docFrag, getter_AddRefs(tmpNode));
|
|
|
|
if (NS_FAILED(res)) return res;
|
|
|
|
|
|
|
|
// Select aNewParent, and its contents.
|
|
|
|
|
|
|
|
return SelectNode(aNewParent);
|
|
|
|
}
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::ToString(nsAString& aReturn)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if(mIsDetached)
|
|
|
|
return NS_ERROR_DOM_INVALID_STATE_ERR;
|
|
|
|
|
|
|
|
// clear the string
|
|
|
|
aReturn.Truncate();
|
|
|
|
|
|
|
|
// If we're unpositioned, return the empty string
|
|
|
|
if (!mIsPositioned) {
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG_range
|
|
|
|
printf("Range dump: -----------------------\n");
|
|
|
|
#endif /* DEBUG */
|
|
|
|
|
|
|
|
// effeciency hack for simple case
|
|
|
|
if (mStartParent == mEndParent)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMText> textNode( do_QueryInterface(mStartParent) );
|
|
|
|
|
|
|
|
if (textNode)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_range
|
|
|
|
// If debug, dump it:
|
|
|
|
nsCOMPtr<nsIContent> cN (do_QueryInterface(mStartParent));
|
|
|
|
if (cN) cN->List(stdout);
|
|
|
|
printf("End Range dump: -----------------------\n");
|
|
|
|
#endif /* DEBUG */
|
|
|
|
|
|
|
|
// grab the text
|
|
|
|
if (NS_FAILED(textNode->SubstringData(mStartOffset,mEndOffset-mStartOffset,aReturn)))
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* complex case: mStartParent != mEndParent, or mStartParent not a text node
|
|
|
|
revisit - there are potential optimizations here and also tradeoffs.
|
|
|
|
*/
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContentIterator> iter;
|
2008-10-15 02:40:28 -07:00
|
|
|
nsresult rv = NS_NewContentIterator(getter_AddRefs(iter));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2009-04-06 10:17:37 -07:00
|
|
|
rv = iter->Init(static_cast<nsIRange*>(this));
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsString tempString;
|
|
|
|
|
|
|
|
// loop through the content iterator, which returns nodes in the range in
|
|
|
|
// close tag order, and grab the text from any text node
|
|
|
|
while (!iter->IsDone())
|
|
|
|
{
|
2008-10-15 02:40:28 -07:00
|
|
|
nsINode *n = iter->GetCurrentNode();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifdef DEBUG_range
|
|
|
|
// If debug, dump it:
|
2008-10-15 02:40:28 -07:00
|
|
|
n->List(stdout);
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif /* DEBUG */
|
2008-10-15 02:40:28 -07:00
|
|
|
nsCOMPtr<nsIDOMText> textNode(do_QueryInterface(n));
|
2007-03-22 10:30:00 -07:00
|
|
|
if (textNode) // if it's a text node, get the text
|
|
|
|
{
|
2008-10-15 02:40:28 -07:00
|
|
|
if (n == mStartParent) // only include text past start offset
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
PRUint32 strLength;
|
|
|
|
textNode->GetLength(&strLength);
|
|
|
|
textNode->SubstringData(mStartOffset,strLength-mStartOffset,tempString);
|
|
|
|
aReturn += tempString;
|
|
|
|
}
|
2008-10-15 02:40:28 -07:00
|
|
|
else if (n == mEndParent) // only include text before end offset
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
textNode->SubstringData(0,mEndOffset,tempString);
|
|
|
|
aReturn += tempString;
|
|
|
|
}
|
|
|
|
else // grab the whole kit-n-kaboodle
|
|
|
|
{
|
|
|
|
textNode->GetData(tempString);
|
|
|
|
aReturn += tempString;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
iter->Next();
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG_range
|
|
|
|
printf("End Range dump: -----------------------\n");
|
|
|
|
#endif /* DEBUG */
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-07-17 09:24:50 -07:00
|
|
|
NS_IMETHODIMP
|
2007-03-22 10:30:00 -07:00
|
|
|
nsRange::Detach()
|
|
|
|
{
|
|
|
|
if(mIsDetached)
|
|
|
|
return NS_ERROR_DOM_INVALID_STATE_ERR;
|
|
|
|
|
|
|
|
mIsDetached = PR_TRUE;
|
|
|
|
|
|
|
|
DoSetRange(nsnull, 0, nsnull, 0, nsnull);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// nsIDOMNSRange interface
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::CreateContextualFragment(const nsAString& aFragment,
|
|
|
|
nsIDOMDocumentFragment** aReturn)
|
|
|
|
{
|
2008-03-06 12:14:33 -08:00
|
|
|
if (mIsPositioned) {
|
2010-04-24 03:41:02 -07:00
|
|
|
return nsContentUtils::CreateContextualFragment(mStartParent, aFragment,
|
|
|
|
PR_TRUE, aReturn);
|
2008-03-06 12:14:33 -08:00
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-09-24 14:01:48 -07:00
|
|
|
|
|
|
|
static void ExtractRectFromOffset(nsIFrame* aFrame,
|
|
|
|
const nsIFrame* aRelativeTo,
|
|
|
|
const PRInt32 aOffset, nsRect* aR, PRBool aKeepLeft)
|
|
|
|
{
|
|
|
|
nsPoint point;
|
|
|
|
aFrame->GetPointFromOffset(aOffset, &point);
|
|
|
|
|
|
|
|
point += aFrame->GetOffsetTo(aRelativeTo);
|
|
|
|
|
|
|
|
//given a point.x, extract left or right portion of rect aR
|
|
|
|
//point.x has to be within this rect
|
|
|
|
NS_ASSERTION(aR->x <= point.x && point.x <= aR->XMost(),
|
|
|
|
"point.x should not be outside of rect r");
|
|
|
|
|
|
|
|
if (aKeepLeft) {
|
|
|
|
aR->width = point.x - aR->x;
|
|
|
|
} else {
|
|
|
|
aR->width = aR->XMost() - point.x;
|
|
|
|
aR->x = point.x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-24 13:20:05 -08:00
|
|
|
static nsresult GetPartialTextRect(nsLayoutUtils::RectCallback* aCallback,
|
2009-09-24 14:01:48 -07:00
|
|
|
nsIContent* aContent, PRInt32 aStartOffset, PRInt32 aEndOffset)
|
|
|
|
{
|
2009-12-24 13:20:05 -08:00
|
|
|
nsIFrame* frame = aContent->GetPrimaryFrame();
|
2009-09-24 14:01:48 -07:00
|
|
|
if (frame && frame->GetType() == nsGkAtoms::textFrame) {
|
|
|
|
nsTextFrame* textFrame = static_cast<nsTextFrame*>(frame);
|
|
|
|
nsIFrame* relativeTo = nsLayoutUtils::GetContainingBlockForClientRect(textFrame);
|
|
|
|
for (nsTextFrame* f = textFrame; f; f = static_cast<nsTextFrame*>(f->GetNextContinuation())) {
|
|
|
|
PRInt32 fstart = f->GetContentOffset(), fend = f->GetContentEnd();
|
|
|
|
if (fend <= aStartOffset || fstart >= aEndOffset)
|
|
|
|
continue;
|
|
|
|
|
2010-04-28 10:47:23 -07:00
|
|
|
// overlapping with the offset we want
|
|
|
|
f->EnsureTextRun();
|
|
|
|
NS_ENSURE_TRUE(f->GetTextRun(), NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
PRBool rtl = f->GetTextRun()->IsRightToLeft();
|
2009-09-24 14:01:48 -07:00
|
|
|
nsRect r(f->GetOffsetTo(relativeTo), f->GetSize());
|
|
|
|
if (fstart < aStartOffset) {
|
2010-04-28 10:47:23 -07:00
|
|
|
// aStartOffset is within this frame
|
2009-09-24 14:01:48 -07:00
|
|
|
ExtractRectFromOffset(f, relativeTo, aStartOffset, &r, rtl);
|
|
|
|
}
|
|
|
|
if (fend > aEndOffset) {
|
2010-04-28 10:47:23 -07:00
|
|
|
// aEndOffset is in the middle of this frame
|
2009-09-24 14:01:48 -07:00
|
|
|
ExtractRectFromOffset(f, relativeTo, aEndOffset, &r, !rtl);
|
|
|
|
}
|
|
|
|
aCallback->AddRect(r);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void CollectClientRects(nsLayoutUtils::RectCallback* aCollector,
|
|
|
|
nsRange* aRange,
|
|
|
|
nsINode* aStartParent, PRInt32 aStartOffset,
|
|
|
|
nsINode* aEndParent, PRInt32 aEndOffset)
|
|
|
|
{
|
2009-12-24 13:20:05 -08:00
|
|
|
// Hold strong pointers across the flush
|
2009-09-24 14:01:48 -07:00
|
|
|
nsCOMPtr<nsIDOMNode> startContainer = do_QueryInterface(aStartParent);
|
|
|
|
nsCOMPtr<nsIDOMNode> endContainer = do_QueryInterface(aEndParent);
|
|
|
|
|
2009-12-24 13:20:05 -08:00
|
|
|
// Flush out layout so our frames are up to date.
|
|
|
|
if (!aStartParent->IsInDoc()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
aStartParent->GetCurrentDoc()->FlushPendingNotifications(Flush_Layout);
|
|
|
|
|
|
|
|
// Recheck whether we're still in the document
|
|
|
|
if (!aStartParent->IsInDoc()) {
|
2009-09-24 14:01:48 -07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
RangeSubtreeIterator iter;
|
|
|
|
|
|
|
|
nsresult rv = iter.Init(aRange);
|
|
|
|
if (NS_FAILED(rv)) return;
|
|
|
|
|
|
|
|
if (iter.IsDone()) {
|
|
|
|
// the range is collapsed, only continue if the cursor is in a text node
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(aStartParent);
|
2010-01-11 06:08:19 -08:00
|
|
|
if (content && content->IsNodeOfType(nsINode::eTEXT)) {
|
2009-12-24 13:20:05 -08:00
|
|
|
nsIFrame* frame = content->GetPrimaryFrame();
|
2009-09-24 14:01:48 -07:00
|
|
|
if (frame && frame->GetType() == nsGkAtoms::textFrame) {
|
|
|
|
nsTextFrame* textFrame = static_cast<nsTextFrame*>(frame);
|
|
|
|
PRInt32 outOffset;
|
|
|
|
nsIFrame* outFrame;
|
|
|
|
textFrame->GetChildFrameContainingOffset(aStartOffset, PR_FALSE,
|
|
|
|
&outOffset, &outFrame);
|
|
|
|
if (outFrame) {
|
|
|
|
nsIFrame* relativeTo =
|
|
|
|
nsLayoutUtils::GetContainingBlockForClientRect(outFrame);
|
|
|
|
nsRect r(outFrame->GetOffsetTo(relativeTo), outFrame->GetSize());
|
|
|
|
ExtractRectFromOffset(outFrame, relativeTo, aStartOffset, &r, PR_FALSE);
|
|
|
|
r.width = 0;
|
|
|
|
aCollector->AddRect(r);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
do {
|
|
|
|
nsCOMPtr<nsIDOMNode> node(iter.GetCurrentNode());
|
|
|
|
iter.Next();
|
|
|
|
nsCOMPtr<nsIContent> content = do_QueryInterface(node);
|
2010-01-11 06:08:19 -08:00
|
|
|
if (!content)
|
|
|
|
continue;
|
2009-09-24 14:01:48 -07:00
|
|
|
if (content->IsNodeOfType(nsINode::eTEXT)) {
|
|
|
|
if (node == startContainer) {
|
|
|
|
PRInt32 offset = startContainer == endContainer ?
|
|
|
|
aEndOffset : content->GetText()->GetLength();
|
2009-12-24 13:20:05 -08:00
|
|
|
GetPartialTextRect(aCollector, content, aStartOffset, offset);
|
2009-09-24 14:01:48 -07:00
|
|
|
continue;
|
|
|
|
} else if (node == endContainer) {
|
2009-12-24 13:20:05 -08:00
|
|
|
GetPartialTextRect(aCollector, content, 0, aEndOffset);
|
2010-01-11 06:08:19 -08:00
|
|
|
continue;
|
2009-09-24 14:01:48 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-24 13:20:05 -08:00
|
|
|
nsIFrame* frame = content->GetPrimaryFrame();
|
2009-09-24 14:01:48 -07:00
|
|
|
if (frame) {
|
|
|
|
nsLayoutUtils::GetAllInFlowRects(frame,
|
|
|
|
nsLayoutUtils::GetContainingBlockForClientRect(frame), aCollector);
|
|
|
|
}
|
|
|
|
} while (!iter.IsDone());
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::GetBoundingClientRect(nsIDOMClientRect** aResult)
|
|
|
|
{
|
2010-01-11 06:08:19 -08:00
|
|
|
*aResult = nsnull;
|
|
|
|
|
2009-09-24 14:01:48 -07:00
|
|
|
// Weak ref, since we addref it below
|
|
|
|
nsClientRect* rect = new nsClientRect();
|
|
|
|
if (!rect)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
NS_ADDREF(*aResult = rect);
|
|
|
|
|
2010-01-11 06:08:19 -08:00
|
|
|
if (!mStartParent)
|
|
|
|
return NS_OK;
|
|
|
|
|
2009-09-24 14:01:48 -07:00
|
|
|
nsLayoutUtils::RectAccumulator accumulator;
|
|
|
|
|
|
|
|
CollectClientRects(&accumulator, this, mStartParent, mStartOffset,
|
|
|
|
mEndParent, mEndOffset);
|
|
|
|
|
|
|
|
nsRect r = accumulator.mResultRect.IsEmpty() ? accumulator.mFirstRect :
|
|
|
|
accumulator.mResultRect;
|
|
|
|
rect->SetLayoutRect(r);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsRange::GetClientRects(nsIDOMClientRectList** aResult)
|
|
|
|
{
|
|
|
|
*aResult = nsnull;
|
|
|
|
|
2010-01-11 06:08:19 -08:00
|
|
|
if (!mStartParent)
|
|
|
|
return NS_OK;
|
|
|
|
|
2009-09-24 14:01:48 -07:00
|
|
|
nsRefPtr<nsClientRectList> rectList = new nsClientRectList();
|
|
|
|
if (!rectList)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
nsLayoutUtils::RectListBuilder builder(rectList);
|
|
|
|
|
|
|
|
CollectClientRects(&builder, this, mStartParent, mStartOffset,
|
|
|
|
mEndParent, mEndOffset);
|
|
|
|
|
|
|
|
if (NS_FAILED(builder.mRV))
|
|
|
|
return builder.mRV;
|
|
|
|
rectList.forget(aResult);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|