haikuwebkit/Tools/DumpRenderTree/haiku/EditingCallbacks.cpp

262 lines
9.1 KiB
C++

/*
* Copyright (C) 2010 Igalia S.L.
* Copyright (C) 2012 Samsung Electronics
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "EditingCallbacks.h"
#include "DumpRenderTree.h"
#include "EditorClientHaiku.h"
#include "WebCore/EditorInsertAction.h"
#include <WebCore/Node.h>
#include <WebCore/SimpleRange.h>
#include <WebCore/StyleProperties.h>
#include "TestRunner.h"
#include "WebCore/TextAffinity.h"
#include "WebViewConstants.h"
#include <wtf/text/CString.h>
#include <wtf/text/WTFString.h>
static std::string dumpPath(WebCore::Node* node)
{
ASSERT(node);
std::string result(node->nodeName().utf8().data());
WebCore::Node* parent = node->parentNode();
if (parent) {
result += " > " + dumpPath(parent);
}
return result;
}
static BString dumpRange(WebCore::SimpleRange* range)
{
if (!range)
return BString();
BString string;
string.SetToFormat("range from %d of %s to %d of %s",
range->startOffset(), dumpPath(&range->startContainer()).c_str(),
range->endOffset(), dumpPath(&range->endContainer()).c_str());
return string;
}
static const char* insertActionString(WebCore::EditorInsertAction action)
{
switch (action) {
case WebCore::EditorInsertAction::Typed:
return "WebViewInsertActionTyped";
case WebCore::EditorInsertAction::Pasted:
return "WebViewInsertActionPasted";
case WebCore::EditorInsertAction::Dropped:
return "WebViewInsertActionDropped";
}
ASSERT_NOT_REACHED();
return "WebViewInsertActionTyped";
}
static const char* selectionAffinityString(WebCore::Affinity affinity)
{
switch (affinity) {
case WebCore::Affinity::Upstream:
return "NSSelectionAffinityUpstream";
case WebCore::Affinity::Downstream:
return "NSSelectionAffinityDownstream";
}
ASSERT_NOT_REACHED();
return "NSSelectionAffinityUpstream";
}
static void shouldBeginEditing(WebCore::SimpleRange* range)
{
if (!done && gTestRunner->dumpEditingCallbacks()) {
printf("EDITING DELEGATE: shouldBeginEditingInDOMRange:%s\n", dumpRange(range).String());
}
}
static void shouldEndEditing(WebCore::SimpleRange* range)
{
if (!done && gTestRunner->dumpEditingCallbacks()) {
printf("EDITING DELEGATE: shouldEndEditingInDOMRange:%s\n", dumpRange(range).String());
}
}
static void shouldInsertNode(WebCore::Node* node, WebCore::SimpleRange* range,
WebCore::EditorInsertAction action)
{
if (!done && gTestRunner->dumpEditingCallbacks()) {
printf("EDITING DELEGATE: shouldInsertNode:%s replacingDOMRange:%s givenAction:%s\n",
dumpPath(node).c_str(), dumpRange(range).String(),
insertActionString(action));
}
}
static void shouldInsertText(BString text, WebCore::SimpleRange* range,
WebCore::EditorInsertAction action)
{
if (!done && gTestRunner->dumpEditingCallbacks()) {
printf("EDITING DELEGATE: shouldInsertText:%s replacingDOMRange:%s givenAction:%s\n",
text.String(), dumpRange(range).String(), insertActionString(action));
}
}
static void shouldDeleteRange(WebCore::SimpleRange* range)
{
if (!done && gTestRunner->dumpEditingCallbacks()) {
printf("EDITING DELEGATE: shouldDeleteDOMRange:%s\n", dumpRange(range).String());
}
}
static void shouldChangeSelectedRange(WebCore::SimpleRange* fromRange,
WebCore::SimpleRange* toRange,
WebCore::Affinity affinity, bool stillSelecting)
{
if (!done && gTestRunner->dumpEditingCallbacks()) {
printf("EDITING DELEGATE: shouldChangeSelectedDOMRange:%s toDOMRange:%s affinity:%s stillSelecting:%s\n",
dumpRange(fromRange).String(), dumpRange(toRange).String(),
selectionAffinityString(affinity), stillSelecting ? "TRUE" : "FALSE");
}
}
static void shouldApplyStyle(WebCore::StyleProperties* style, WebCore::SimpleRange* range)
{
if (!done && gTestRunner->dumpEditingCallbacks()) {
printf("EDITING DELEGATE: shouldApplyStyle:%s toElementsInDOMRange:%s\n",
style->asText().utf8().data(), dumpRange(range).String());
}
}
static void editingBegan()
{
if (!done && gTestRunner->dumpEditingCallbacks())
printf("EDITING DELEGATE: webViewDidBeginEditing:WebViewDidBeginEditingNotification\n");
}
static void userChangedContents()
{
if (!done && gTestRunner->dumpEditingCallbacks())
printf("EDITING DELEGATE: webViewDidChange:WebViewDidChangeNotification\n");
}
static void editingEnded()
{
if (!done && gTestRunner->dumpEditingCallbacks())
printf("EDITING DELEGATE: webViewDidEndEditing:WebViewDidEndEditingNotification\n");
}
static void selectionChanged()
{
if (!done && gTestRunner->dumpEditingCallbacks())
printf("EDITING DELEGATE: webViewDidChangeSelection:WebViewDidChangeSelectionNotification\n");
}
bool handleEditingCallback(BMessage* message)
{
switch(message->what)
{
case EDITOR_DELETE_RANGE:
{
WebCore::SimpleRange* range = NULL;
message->FindPointer("range", (void**)&range);
shouldDeleteRange(range);
return true;
}
case EDITOR_BEGIN_EDITING:
{
WebCore::SimpleRange* range = NULL;
message->FindPointer("range", (void**)&range);
shouldBeginEditing(range);
return true;
}
case EDITOR_EDITING_BEGAN:
editingBegan();
return true;
case EDITOR_EDITING_ENDED:
editingEnded();
return true;
case EDITOR_END_EDITING:
{
WebCore::SimpleRange* range = NULL;
message->FindPointer("range", (void**)&range);
shouldEndEditing(range);
return true;
}
case EDITOR_INSERT_NODE:
{
WebCore::SimpleRange* range = NULL;
WebCore::Node* node = NULL;
message->FindPointer("range", (void**)&range);
message->FindPointer("node", (void**)&node);
WebCore::EditorInsertAction action = (WebCore::EditorInsertAction)message->FindInt32("action");
shouldInsertNode(node, range, action);
return true;
}
case EDITOR_INSERT_TEXT:
{
WebCore::SimpleRange* range = NULL;
message->FindPointer("range", (void**)&range);
BString text = message->FindString("text");
WebCore::EditorInsertAction action = (WebCore::EditorInsertAction)message->FindInt32("action");
shouldInsertText(text, range, action);
return true;
}
case EDITOR_CHANGE_SELECTED_RANGE:
{
WebCore::SimpleRange* fromRange = NULL;
WebCore::SimpleRange* toRange = NULL;
message->FindPointer("from", (void**)&fromRange);
message->FindPointer("to", (void**)&toRange);
WebCore::Affinity affinity = (WebCore::Affinity)message->FindInt32("affinity");
bool stillSelecting = message->FindBool("stillSelecting");
shouldChangeSelectedRange(fromRange, toRange, affinity, stillSelecting);
return true;
}
case EDITOR_APPLY_STYLE:
{
WebCore::SimpleRange* range = NULL;
WebCore::StyleProperties* style = NULL;
message->FindPointer("range", (void**)&range);
message->FindPointer("style", (void**)&style);
shouldApplyStyle(style, range);
return true;
}
case EDITOR_SELECTION_CHANGED:
{
selectionChanged();
return true;
}
case EDITOR_CONTENTS_CHANGED:
{
userChangedContents();
return true;
}
}
return false;
}