Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / page / DOMSelection.cpp
1 /*
2  * Copyright (C) 2007, 2009 Apple Inc. All rights reserved.
3  * Copyright (C) 2012 Google Inc. All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1.  Redistributions of source code must retain the above copyright
10  *     notice, this list of conditions and the following disclaimer.
11  * 2.  Redistributions in binary form must reproduce the above copyright
12  *     notice, this list of conditions and the following disclaimer in the
13  *     documentation and/or other materials provided with the distribution.
14  * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
15  *     its contributors may be used to endorse or promote products derived
16  *     from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
19  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21  * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
22  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30
31 #include "config.h"
32 #include "core/page/DOMSelection.h"
33
34 #include "bindings/v8/ExceptionMessages.h"
35 #include "bindings/v8/ExceptionState.h"
36 #include "bindings/v8/ExceptionStatePlaceholder.h"
37 #include "core/dom/Document.h"
38 #include "core/dom/ExceptionCode.h"
39 #include "core/dom/Node.h"
40 #include "core/dom/Range.h"
41 #include "core/dom/TreeScope.h"
42 #include "core/editing/FrameSelection.h"
43 #include "core/editing/TextIterator.h"
44 #include "core/editing/htmlediting.h"
45 #include "core/frame/LocalFrame.h"
46 #include "wtf/text/WTFString.h"
47
48 namespace WebCore {
49
50 static Node* selectionShadowAncestor(LocalFrame* frame)
51 {
52     Node* node = frame->selection().selection().base().anchorNode();
53     if (!node)
54         return 0;
55
56     if (!node->isInShadowTree())
57         return 0;
58
59     return frame->document()->ancestorInThisScope(node);
60 }
61
62 DOMSelection::DOMSelection(const TreeScope* treeScope)
63     : DOMWindowProperty(treeScope->rootNode().document().frame())
64     , m_treeScope(treeScope)
65 {
66     ScriptWrappable::init(this);
67 }
68
69 void DOMSelection::clearTreeScope()
70 {
71     m_treeScope = nullptr;
72 }
73
74 const VisibleSelection& DOMSelection::visibleSelection() const
75 {
76     ASSERT(m_frame);
77     return m_frame->selection().selection();
78 }
79
80 static Position anchorPosition(const VisibleSelection& selection)
81 {
82     Position anchor = selection.isBaseFirst() ? selection.start() : selection.end();
83     return anchor.parentAnchoredEquivalent();
84 }
85
86 static Position focusPosition(const VisibleSelection& selection)
87 {
88     Position focus = selection.isBaseFirst() ? selection.end() : selection.start();
89     return focus.parentAnchoredEquivalent();
90 }
91
92 static Position basePosition(const VisibleSelection& selection)
93 {
94     return selection.base().parentAnchoredEquivalent();
95 }
96
97 static Position extentPosition(const VisibleSelection& selection)
98 {
99     return selection.extent().parentAnchoredEquivalent();
100 }
101
102 Node* DOMSelection::anchorNode() const
103 {
104     if (!m_frame)
105         return 0;
106
107     return shadowAdjustedNode(anchorPosition(visibleSelection()));
108 }
109
110 int DOMSelection::anchorOffset() const
111 {
112     if (!m_frame)
113         return 0;
114
115     return shadowAdjustedOffset(anchorPosition(visibleSelection()));
116 }
117
118 Node* DOMSelection::focusNode() const
119 {
120     if (!m_frame)
121         return 0;
122
123     return shadowAdjustedNode(focusPosition(visibleSelection()));
124 }
125
126 int DOMSelection::focusOffset() const
127 {
128     if (!m_frame)
129         return 0;
130
131     return shadowAdjustedOffset(focusPosition(visibleSelection()));
132 }
133
134 Node* DOMSelection::baseNode() const
135 {
136     if (!m_frame)
137         return 0;
138
139     return shadowAdjustedNode(basePosition(visibleSelection()));
140 }
141
142 int DOMSelection::baseOffset() const
143 {
144     if (!m_frame)
145         return 0;
146
147     return shadowAdjustedOffset(basePosition(visibleSelection()));
148 }
149
150 Node* DOMSelection::extentNode() const
151 {
152     if (!m_frame)
153         return 0;
154
155     return shadowAdjustedNode(extentPosition(visibleSelection()));
156 }
157
158 int DOMSelection::extentOffset() const
159 {
160     if (!m_frame)
161         return 0;
162
163     return shadowAdjustedOffset(extentPosition(visibleSelection()));
164 }
165
166 bool DOMSelection::isCollapsed() const
167 {
168     if (!m_frame || selectionShadowAncestor(m_frame))
169         return true;
170     return !m_frame->selection().isRange();
171 }
172
173 String DOMSelection::type() const
174 {
175     if (!m_frame)
176         return String();
177
178     FrameSelection& selection = m_frame->selection();
179
180     // This is a WebKit DOM extension, incompatible with an IE extension
181     // IE has this same attribute, but returns "none", "text" and "control"
182     // http://msdn.microsoft.com/en-us/library/ms534692(VS.85).aspx
183     if (selection.isNone())
184         return "None";
185     if (selection.isCaret())
186         return "Caret";
187     return "Range";
188 }
189
190 int DOMSelection::rangeCount() const
191 {
192     if (!m_frame)
193         return 0;
194     return m_frame->selection().isNone() ? 0 : 1;
195 }
196
197 void DOMSelection::collapse(Node* node, int offset, ExceptionState& exceptionState)
198 {
199     ASSERT(node);
200     if (!m_frame)
201         return;
202
203     if (offset < 0) {
204         exceptionState.throwDOMException(IndexSizeError, String::number(offset) + " is not a valid offset.");
205         return;
206     }
207
208     if (!isValidForPosition(node))
209         return;
210
211     // FIXME: Eliminate legacy editing positions
212     m_frame->selection().moveTo(VisiblePosition(createLegacyEditingPosition(node, offset), DOWNSTREAM));
213 }
214
215 void DOMSelection::collapse(Node* node, ExceptionState& exceptionState)
216 {
217     collapse(node, 0, exceptionState);
218 }
219
220 void DOMSelection::collapseToEnd(ExceptionState& exceptionState)
221 {
222     if (!m_frame)
223         return;
224
225     const VisibleSelection& selection = m_frame->selection().selection();
226
227     if (selection.isNone()) {
228         exceptionState.throwDOMException(InvalidStateError, "there is no selection.");
229         return;
230     }
231
232     m_frame->selection().moveTo(VisiblePosition(selection.end(), DOWNSTREAM));
233 }
234
235 void DOMSelection::collapseToStart(ExceptionState& exceptionState)
236 {
237     if (!m_frame)
238         return;
239
240     const VisibleSelection& selection = m_frame->selection().selection();
241
242     if (selection.isNone()) {
243         exceptionState.throwDOMException(InvalidStateError, "there is no selection.");
244         return;
245     }
246
247     m_frame->selection().moveTo(VisiblePosition(selection.start(), DOWNSTREAM));
248 }
249
250 void DOMSelection::empty()
251 {
252     if (!m_frame)
253         return;
254     m_frame->selection().clear();
255 }
256
257 void DOMSelection::setBaseAndExtent(Node* baseNode, int baseOffset, Node* extentNode, int extentOffset, ExceptionState& exceptionState)
258 {
259     if (!m_frame)
260         return;
261
262     if (baseOffset < 0) {
263         exceptionState.throwDOMException(IndexSizeError, String::number(baseOffset) + " is not a valid base offset.");
264         return;
265     }
266
267     if (extentOffset < 0) {
268         exceptionState.throwDOMException(IndexSizeError, String::number(extentOffset) + " is not a valid extent offset.");
269         return;
270     }
271
272     if (!isValidForPosition(baseNode) || !isValidForPosition(extentNode))
273         return;
274
275     // FIXME: Eliminate legacy editing positions
276     VisiblePosition visibleBase = VisiblePosition(createLegacyEditingPosition(baseNode, baseOffset), DOWNSTREAM);
277     VisiblePosition visibleExtent = VisiblePosition(createLegacyEditingPosition(extentNode, extentOffset), DOWNSTREAM);
278
279     m_frame->selection().moveTo(visibleBase, visibleExtent);
280 }
281
282 void DOMSelection::modify(const String& alterString, const String& directionString, const String& granularityString)
283 {
284     if (!m_frame)
285         return;
286
287     FrameSelection::EAlteration alter;
288     if (equalIgnoringCase(alterString, "extend"))
289         alter = FrameSelection::AlterationExtend;
290     else if (equalIgnoringCase(alterString, "move"))
291         alter = FrameSelection::AlterationMove;
292     else
293         return;
294
295     SelectionDirection direction;
296     if (equalIgnoringCase(directionString, "forward"))
297         direction = DirectionForward;
298     else if (equalIgnoringCase(directionString, "backward"))
299         direction = DirectionBackward;
300     else if (equalIgnoringCase(directionString, "left"))
301         direction = DirectionLeft;
302     else if (equalIgnoringCase(directionString, "right"))
303         direction = DirectionRight;
304     else
305         return;
306
307     TextGranularity granularity;
308     if (equalIgnoringCase(granularityString, "character"))
309         granularity = CharacterGranularity;
310     else if (equalIgnoringCase(granularityString, "word"))
311         granularity = WordGranularity;
312     else if (equalIgnoringCase(granularityString, "sentence"))
313         granularity = SentenceGranularity;
314     else if (equalIgnoringCase(granularityString, "line"))
315         granularity = LineGranularity;
316     else if (equalIgnoringCase(granularityString, "paragraph"))
317         granularity = ParagraphGranularity;
318     else if (equalIgnoringCase(granularityString, "lineboundary"))
319         granularity = LineBoundary;
320     else if (equalIgnoringCase(granularityString, "sentenceboundary"))
321         granularity = SentenceBoundary;
322     else if (equalIgnoringCase(granularityString, "paragraphboundary"))
323         granularity = ParagraphBoundary;
324     else if (equalIgnoringCase(granularityString, "documentboundary"))
325         granularity = DocumentBoundary;
326     else
327         return;
328
329     m_frame->selection().modify(alter, direction, granularity);
330 }
331
332 void DOMSelection::extend(Node* node, int offset, ExceptionState& exceptionState)
333 {
334     if (!m_frame)
335         return;
336
337     if (!node) {
338         exceptionState.throwDOMException(TypeMismatchError, ExceptionMessages::argumentNullOrIncorrectType(1, "Node"));
339         return;
340     }
341
342     if (offset < 0) {
343         exceptionState.throwDOMException(IndexSizeError, String::number(offset) + " is not a valid offset.");
344         return;
345     }
346     if (offset > (node->offsetInCharacters() ? caretMaxOffset(node) : (int)node->countChildren())) {
347         exceptionState.throwDOMException(IndexSizeError, String::number(offset) + " is larger than the given node's length.");
348         return;
349     }
350
351     if (!isValidForPosition(node))
352         return;
353
354     // FIXME: Eliminate legacy editing positions
355     m_frame->selection().setExtent(VisiblePosition(createLegacyEditingPosition(node, offset), DOWNSTREAM));
356 }
357
358 PassRefPtrWillBeRawPtr<Range> DOMSelection::getRangeAt(int index, ExceptionState& exceptionState)
359 {
360     if (!m_frame)
361         return nullptr;
362
363     if (index < 0 || index >= rangeCount()) {
364         exceptionState.throwDOMException(IndexSizeError, String::number(index) + " is not a valid index.");
365         return nullptr;
366     }
367
368     // If you're hitting this, you've added broken multi-range selection support
369     ASSERT(rangeCount() == 1);
370
371     if (Node* shadowAncestor = selectionShadowAncestor(m_frame)) {
372         ASSERT(!shadowAncestor->isShadowRoot());
373         ContainerNode* container = shadowAncestor->parentOrShadowHostNode();
374         int offset = shadowAncestor->nodeIndex();
375         return Range::create(shadowAncestor->document(), container, offset, container, offset);
376     }
377
378     return m_frame->selection().firstRange();
379 }
380
381 void DOMSelection::removeAllRanges()
382 {
383     if (!m_frame)
384         return;
385     m_frame->selection().clear();
386 }
387
388 void DOMSelection::addRange(Range* newRange)
389 {
390     if (!m_frame)
391         return;
392
393     // FIXME: Should we throw DOMException for error cases below?
394     if (!newRange) {
395         addConsoleError("The given range is null.");
396         return;
397     }
398
399     if (!newRange->startContainer()) {
400         addConsoleError("The given range has no container. Perhaps 'detach()' has been invoked on it?");
401         return;
402     }
403
404     FrameSelection& selection = m_frame->selection();
405
406     if (selection.isNone()) {
407         selection.setSelectedRange(newRange, VP_DEFAULT_AFFINITY);
408         return;
409     }
410
411     RefPtrWillBeRawPtr<Range> originalRange = selection.firstRange();
412
413     if (originalRange->startContainer()->document() != newRange->startContainer()->document()) {
414         addConsoleError("The given range does not belong to the current selection's document.");
415         return;
416     }
417     if (originalRange->startContainer()->treeScope() != newRange->startContainer()->treeScope()) {
418         addConsoleError("The given range and the current selection belong to two different document fragments.");
419         return;
420     }
421
422     if (originalRange->compareBoundaryPoints(Range::START_TO_END, newRange, ASSERT_NO_EXCEPTION) < 0
423         || newRange->compareBoundaryPoints(Range::START_TO_END, originalRange.get(), ASSERT_NO_EXCEPTION) < 0) {
424         addConsoleError("Discontiguous selection is not supported.");
425         return;
426     }
427
428     // FIXME: "Merge the ranges if they intersect" is Blink-specific behavior; other browsers supporting discontiguous
429     // selection (obviously) keep each Range added and return it in getRangeAt(). But it's unclear if we can really
430     // do the same, since we don't support discontiguous selection. Further discussions at
431     // <https://code.google.com/p/chromium/issues/detail?id=353069>.
432
433     Range* start = originalRange->compareBoundaryPoints(Range::START_TO_START, newRange, ASSERT_NO_EXCEPTION) < 0 ? originalRange.get() : newRange;
434     Range* end = originalRange->compareBoundaryPoints(Range::END_TO_END, newRange, ASSERT_NO_EXCEPTION) < 0 ? newRange : originalRange.get();
435     RefPtrWillBeRawPtr<Range> merged = Range::create(originalRange->startContainer()->document(), start->startContainer(), start->startOffset(), end->endContainer(), end->endOffset());
436     EAffinity affinity = selection.selection().affinity();
437     selection.setSelectedRange(merged.get(), affinity);
438 }
439
440 void DOMSelection::deleteFromDocument()
441 {
442     if (!m_frame)
443         return;
444
445     FrameSelection& selection = m_frame->selection();
446
447     if (selection.isNone())
448         return;
449
450     RefPtrWillBeRawPtr<Range> selectedRange = selection.selection().toNormalizedRange();
451     if (!selectedRange)
452         return;
453
454     selectedRange->deleteContents(ASSERT_NO_EXCEPTION);
455
456     setBaseAndExtent(selectedRange->startContainer(), selectedRange->startOffset(), selectedRange->startContainer(), selectedRange->startOffset(), ASSERT_NO_EXCEPTION);
457 }
458
459 bool DOMSelection::containsNode(const Node* n, bool allowPartial) const
460 {
461     if (!m_frame)
462         return false;
463
464     FrameSelection& selection = m_frame->selection();
465
466     if (!n || m_frame->document() != n->document() || selection.isNone())
467         return false;
468
469     unsigned nodeIndex = n->nodeIndex();
470     RefPtrWillBeRawPtr<Range> selectedRange = selection.selection().toNormalizedRange();
471
472     ContainerNode* parentNode = n->parentNode();
473     if (!parentNode)
474         return false;
475
476     TrackExceptionState exceptionState;
477     bool nodeFullySelected = Range::compareBoundaryPoints(parentNode, nodeIndex, selectedRange->startContainer(), selectedRange->startOffset(), exceptionState) >= 0 && !exceptionState.hadException()
478         && Range::compareBoundaryPoints(parentNode, nodeIndex + 1, selectedRange->endContainer(), selectedRange->endOffset(), exceptionState) <= 0 && !exceptionState.hadException();
479     if (exceptionState.hadException())
480         return false;
481     if (nodeFullySelected)
482         return true;
483
484     bool nodeFullyUnselected = (Range::compareBoundaryPoints(parentNode, nodeIndex, selectedRange->endContainer(), selectedRange->endOffset(), exceptionState) > 0 && !exceptionState.hadException())
485         || (Range::compareBoundaryPoints(parentNode, nodeIndex + 1, selectedRange->startContainer(), selectedRange->startOffset(), exceptionState) < 0 && !exceptionState.hadException());
486     ASSERT(!exceptionState.hadException());
487     if (nodeFullyUnselected)
488         return false;
489
490     return allowPartial || n->isTextNode();
491 }
492
493 void DOMSelection::selectAllChildren(Node* n, ExceptionState& exceptionState)
494 {
495     if (!n)
496         return;
497
498     // This doesn't (and shouldn't) select text node characters.
499     setBaseAndExtent(n, 0, n, n->countChildren(), exceptionState);
500 }
501
502 String DOMSelection::toString()
503 {
504     if (!m_frame)
505         return String();
506
507     return plainText(m_frame->selection().selection().toNormalizedRange().get());
508 }
509
510 Node* DOMSelection::shadowAdjustedNode(const Position& position) const
511 {
512     if (position.isNull())
513         return 0;
514
515     Node* containerNode = position.containerNode();
516     Node* adjustedNode = m_treeScope->ancestorInThisScope(containerNode);
517
518     if (!adjustedNode)
519         return 0;
520
521     if (containerNode == adjustedNode)
522         return containerNode;
523
524     ASSERT(!adjustedNode->isShadowRoot());
525     return adjustedNode->parentOrShadowHostNode();
526 }
527
528 int DOMSelection::shadowAdjustedOffset(const Position& position) const
529 {
530     if (position.isNull())
531         return 0;
532
533     Node* containerNode = position.containerNode();
534     Node* adjustedNode = m_treeScope->ancestorInThisScope(containerNode);
535
536     if (!adjustedNode)
537         return 0;
538
539     if (containerNode == adjustedNode)
540         return position.computeOffsetInContainerNode();
541
542     return adjustedNode->nodeIndex();
543 }
544
545 bool DOMSelection::isValidForPosition(Node* node) const
546 {
547     ASSERT(m_frame);
548     if (!node)
549         return true;
550     return node->document() == m_frame->document();
551 }
552
553 void DOMSelection::addConsoleError(const String& message)
554 {
555     if (m_treeScope)
556         m_treeScope->document().addConsoleMessage(JSMessageSource, ErrorMessageLevel, message);
557 }
558
559 } // namespace WebCore