Skip to content

Commit c701e88

Browse files
committedDec 13, 2020
Move createAppHighlightRangeData into AppHighlightStorage source file
https://bugs.webkit.org/show_bug.cgi?id=219834 Reviewed by Devin Rousso. The createAppHighlightRangeData function was defined statically in AppHighlightListData.cpp but was only used in AppHighlightStorage.cpp. Moved the static functions from the former into the later. Additionally added forward declarations in the AppHighlightStorage header. This allows the highlight module to compile with non-unified sources. * Modules/highlight/AppHighlightListData.cpp: (WebCore::computePathIndex): Deleted. (WebCore::createNodePathComponent): Deleted. (WebCore::makeNodePath): Deleted. (WebCore::createAppHiglightRangeData): Deleted. * Modules/highlight/AppHighlightStorage.cpp: (WebCore::computePathIndex): (WebCore::createNodePathComponent): (WebCore::makeNodePath): (WebCore::createAppHighlightRangeData): (WebCore::AppHighlightStorage::createAppHighlightListData): * Modules/highlight/AppHighlightStorage.h: Identifier: 232413@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@270750 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 20f0e48 commit c701e88

File tree

4 files changed

+74
-43
lines changed

4 files changed

+74
-43
lines changed
 

‎Source/WebCore/ChangeLog

+28
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
2020-12-13 Don Olmstead <don.olmstead@sony.com>
2+
3+
Move createAppHighlightRangeData into AppHighlightStorage source file
4+
https://bugs.webkit.org/show_bug.cgi?id=219834
5+
6+
Reviewed by Devin Rousso.
7+
8+
The createAppHighlightRangeData function was defined statically in AppHighlightListData.cpp
9+
but was only used in AppHighlightStorage.cpp. Moved the static functions from the former
10+
into the later.
11+
12+
Additionally added forward declarations in the AppHighlightStorage header.
13+
14+
This allows the highlight module to compile with non-unified sources.
15+
16+
* Modules/highlight/AppHighlightListData.cpp:
17+
(WebCore::computePathIndex): Deleted.
18+
(WebCore::createNodePathComponent): Deleted.
19+
(WebCore::makeNodePath): Deleted.
20+
(WebCore::createAppHiglightRangeData): Deleted.
21+
* Modules/highlight/AppHighlightStorage.cpp:
22+
(WebCore::computePathIndex):
23+
(WebCore::createNodePathComponent):
24+
(WebCore::makeNodePath):
25+
(WebCore::createAppHighlightRangeData):
26+
(WebCore::AppHighlightStorage::createAppHighlightListData):
27+
* Modules/highlight/AppHighlightStorage.h:
28+
129
2020-12-13 Zalan Bujtas <zalan@apple.com>
230

331
[LFC][IFC] Offset the content logical left by the word-spacing value

‎Source/WebCore/Modules/highlight/AppHighlightListData.cpp

-42
Original file line numberDiff line numberDiff line change
@@ -39,48 +39,6 @@
3939

4040
namespace WebCore {
4141

42-
static unsigned computePathIndex(const Node& node)
43-
{
44-
String nodeName = node.nodeName();
45-
unsigned index = 0;
46-
for (auto* previousSibling = node.previousSibling(); previousSibling; previousSibling = previousSibling->previousSibling()) {
47-
if (previousSibling->nodeName() == nodeName)
48-
index++;
49-
}
50-
return index;
51-
}
52-
53-
static AppHighlightRangeData::NodePathComponent createNodePathComponent(const Node& node)
54-
{
55-
return {
56-
is<Element>(node) ? downcast<Element>(node).getIdAttribute().string() : nullString(),
57-
node.nodeName(),
58-
is<CharacterData>(node) ? downcast<CharacterData>(node).data() : nullString(),
59-
computePathIndex(node)
60-
};
61-
}
62-
63-
static AppHighlightRangeData::NodePath makeNodePath(RefPtr<Node>&& node)
64-
{
65-
AppHighlightRangeData::NodePath components;
66-
auto body = node->document().body();
67-
for (auto ancestor = node; ancestor && ancestor != body; ancestor = ancestor->parentNode())
68-
components.append(createNodePathComponent(*ancestor));
69-
components.reverse();
70-
return { components };
71-
}
72-
73-
static AppHighlightRangeData createAppHiglightRangeData(const StaticRange& range)
74-
{
75-
return {
76-
plainText(range),
77-
makeNodePath(&range.startContainer()),
78-
range.startOffset(),
79-
makeNodePath(&range.endContainer()),
80-
range.endOffset()
81-
};
82-
}
83-
8442
AppHighlightListData AppHighlightListData::create(const SharedBuffer& buffer)
8543
{
8644
auto decoder = buffer.decoder();

‎Source/WebCore/Modules/highlight/AppHighlightStorage.cpp

+43-1
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,48 @@ static Optional<SimpleRange> findRange(const AppHighlightRangeData& range, Docum
160160
return findRangeBySearchingText(range, document);
161161
}
162162

163+
static unsigned computePathIndex(const Node& node)
164+
{
165+
String nodeName = node.nodeName();
166+
unsigned index = 0;
167+
for (auto* previousSibling = node.previousSibling(); previousSibling; previousSibling = previousSibling->previousSibling()) {
168+
if (previousSibling->nodeName() == nodeName)
169+
index++;
170+
}
171+
return index;
172+
}
173+
174+
static AppHighlightRangeData::NodePathComponent createNodePathComponent(const Node& node)
175+
{
176+
return {
177+
is<Element>(node) ? downcast<Element>(node).getIdAttribute().string() : nullString(),
178+
node.nodeName(),
179+
is<CharacterData>(node) ? downcast<CharacterData>(node).data() : nullString(),
180+
computePathIndex(node)
181+
};
182+
}
183+
184+
static AppHighlightRangeData::NodePath makeNodePath(RefPtr<Node>&& node)
185+
{
186+
AppHighlightRangeData::NodePath components;
187+
auto body = node->document().body();
188+
for (auto ancestor = node; ancestor && ancestor != body; ancestor = ancestor->parentNode())
189+
components.append(createNodePathComponent(*ancestor));
190+
components.reverse();
191+
return { components };
192+
}
193+
194+
static AppHighlightRangeData createAppHighlightRangeData(const StaticRange& range)
195+
{
196+
return {
197+
plainText(range),
198+
makeNodePath(&range.startContainer()),
199+
range.startOffset(),
200+
makeNodePath(&range.endContainer()),
201+
range.endOffset()
202+
};
203+
}
204+
163205
AppHighlightStorage::AppHighlightStorage(Document& document)
164206
: m_document(makeWeakPtr(document))
165207
{
@@ -175,7 +217,7 @@ AppHighlightListData AppHighlightStorage::createAppHighlightListData()
175217
if (auto appHighlightRegister = m_document->appHighlightRegisterIfExists()) {
176218
for (auto& highlight : appHighlightRegister->map()) {
177219
for (auto& rangeData : highlight.value->rangesData())
178-
data.append(createAppHiglightRangeData(rangeData->range));
220+
data.append(createAppHighlightRangeData(rangeData->range));
179221
}
180222
}
181223

‎Source/WebCore/Modules/highlight/AppHighlightStorage.h

+3
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@
3535
namespace WebCore {
3636

3737
class AppHighlightListData;
38+
class AppHighlightRangeData;
39+
class Document;
40+
class SharedBuffer;
3841

3942
class AppHighlightStorage : RefCounted<AppHighlightStorage> {
4043
WTF_MAKE_FAST_ALLOCATED;

0 commit comments

Comments
 (0)
Please sign in to comment.