forked from WebKit/WebKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWKModelView.mm
More file actions
175 lines (143 loc) · 5.6 KB
/
WKModelView.mm
File metadata and controls
175 lines (143 loc) · 5.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*
* Copyright (C) 2021 Apple Inc. All rights reserved.
*
* 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.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``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 INC. OR
* 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.
*/
#import "config.h"
#import "WKModelView.h"
#if ENABLE(ARKIT_INLINE_PREVIEW_IOS)
#import "Logging.h"
#import "RemoteLayerTreeViews.h"
#import "WKModelInteractionGestureRecognizer.h"
#import "WebsiteDataStore.h"
#import <WebCore/Model.h>
#import <pal/spi/cocoa/QuartzCoreSPI.h>
#import <pal/spi/ios/SystemPreviewSPI.h>
#import <wtf/Assertions.h>
#import <wtf/FileSystem.h>
#import <wtf/RetainPtr.h>
#import <wtf/SoftLinking.h>
#import <wtf/UUID.h>
SOFT_LINK_PRIVATE_FRAMEWORK(AssetViewer);
SOFT_LINK_CLASS(AssetViewer, ASVInlinePreview);
@implementation WKModelView {
RetainPtr<ASVInlinePreview> _preview;
RetainPtr<WKModelInteractionGestureRecognizer> _modelInteractionGestureRecognizer;
String _filePath;
CGRect _lastBounds;
}
- (ASVInlinePreview *)preview
{
return _preview.get();
}
- (instancetype)initWithFrame:(CGRect)frame
{
return nil;
}
- (instancetype)initWithCoder:(NSCoder *)coder
{
return nil;
}
- (instancetype)initWithModel:(WebCore::Model&)model
{
self = [super initWithFrame:CGRectZero];
if (!self)
return nil;
if (![self createFileForModel:model])
return self;
_preview = adoptNS([allocASVInlinePreviewInstance() initWithFrame:self.bounds]);
[self.layer addSublayer:[_preview layer]];
auto url = adoptNS([[NSURL alloc] initFileURLWithPath:_filePath]);
[_preview setupRemoteConnectionWithCompletionHandler:^(NSError *contextError) {
if (contextError) {
LOG(ModelElement, "Unable to create remote connection, error: %@", [contextError localizedDescription]);
return;
}
[_preview preparePreviewOfFileAtURL:url.get() completionHandler:^(NSError *loadError) {
if (loadError) {
LOG(ModelElement, "Unable to load file, error: %@", [loadError localizedDescription]);
return;
}
LOG(ModelElement, "File loaded successfully.");
[self updateBounds];
}];
}];
_modelInteractionGestureRecognizer = adoptNS([[WKModelInteractionGestureRecognizer alloc] init]);
[self addGestureRecognizer:_modelInteractionGestureRecognizer.get()];
return self;
}
- (BOOL)createFileForModel:(WebCore::Model&)model
{
auto pathToDirectory = WebKit::WebsiteDataStore::defaultModelElementCacheDirectory();
if (pathToDirectory.isEmpty())
return NO;
auto directoryExists = FileSystem::fileExists(pathToDirectory);
if (directoryExists && FileSystem::fileTypeFollowingSymlinks(pathToDirectory) != FileSystem::FileType::Directory) {
ASSERT_NOT_REACHED();
return NO;
}
if (!directoryExists && !FileSystem::makeAllDirectories(pathToDirectory)) {
ASSERT_NOT_REACHED();
return NO;
}
auto fileName = FileSystem::encodeForFileName(createCanonicalUUIDString()) + ".usdz";
auto filePath = FileSystem::pathByAppendingComponent(pathToDirectory, fileName);
auto file = FileSystem::openFile(filePath, FileSystem::FileOpenMode::Write);
if (file <= 0)
return NO;
auto byteCount = static_cast<std::size_t>(FileSystem::writeToFile(file, model.data()->data(), model.data()->size()));
ASSERT_UNUSED(byteCount, byteCount == model.data()->size());
FileSystem::closeFile(file);
_filePath = filePath;
return YES;
}
- (void)layoutSubviews
{
[super layoutSubviews];
if (!CGRectEqualToRect(_lastBounds, CGRectZero))
[self updateBounds];
}
- (void)updateBounds
{
auto bounds = self.bounds;
if (CGRectEqualToRect(_lastBounds, bounds))
return;
_lastBounds = bounds;
[_preview updateFrame:bounds completionHandler:^(CAFenceHandle *fenceHandle, NSError *error) {
if (error) {
LOG(ModelElement, "Unable to update frame, error: %@", [error localizedDescription]);
[fenceHandle invalidate];
return;
}
[self.layer.context addFence:fenceHandle];
[fenceHandle invalidate];
}];
}
- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event
{
// The layer of this view is empty and the sublayer is rendered remotely, so the basic implementation
// of hitTest:withEvent: will return nil due to ignoring empty subviews. So we can simply check whether
// the hit-testing point is within bounds.
return [self pointInside:point withEvent:event] ? self : nil;
}
@end
#endif