-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CefFrameWrapper.cpp
429 lines (351 loc) · 9.23 KB
/
CefFrameWrapper.cpp
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
// Copyright © 2015 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
#include "Stdafx.h"
#include <msclr/lock.h>
#include "UrlRequest.h"
#include "Request.h"
#include "Internals\CefBrowserWrapper.h"
#include "Internals\CefFrameWrapper.h"
#include "Internals\CefStringVisitorAdapter.h"
#include "Internals\ClientAdapter.h"
#include "Internals\Serialization\Primitives.h"
#include "Internals\Messaging\Messages.h"
#include "Internals\CefURLRequestClientAdapter.h"
using namespace CefSharp::Core;
using namespace CefSharp::Internals::Messaging;
using namespace CefSharp::Internals::Serialization;
///
// True if this object is currently attached to a valid frame.
///
/*--cef()--*/
bool CefFrameWrapper::IsValid::get()
{
ThrowIfDisposed();
return _frame->IsValid();
}
///
// Execute undo in this frame.
///
/*--cef()--*/
void CefFrameWrapper::Undo()
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
_frame->Undo();
}
///
// Execute redo in this frame.
///
/*--cef()--*/
void CefFrameWrapper::Redo()
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
_frame->Redo();
}
///
// Execute cut in this frame.
///
/*--cef()--*/
void CefFrameWrapper::Cut()
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
_frame->Cut();
}
///
// Execute copy in this frame.
///
/*--cef()--*/
void CefFrameWrapper::Copy()
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
_frame->Copy();
}
///
// Execute paste in this frame.
///
/*--cef()--*/
void CefFrameWrapper::Paste()
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
_frame->Paste();
}
///
// Execute delete in this frame.
///
/*--cef(capi_name=del)--*/
void CefFrameWrapper::Delete()
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
_frame->Delete();
}
///
// Execute select all in this frame.
///
/*--cef()--*/
void CefFrameWrapper::SelectAll()
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
_frame->SelectAll();
}
///
// Save this frame's HTML source to a temporary file and open it in the
// default text viewing application. This method can only be called from the
// browser process.
///
/*--cef()--*/
void CefFrameWrapper::ViewSource()
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
_frame->ViewSource();
}
///
// Retrieve this frame's HTML source as a string sent to the specified
// visitor.
///
/*--cef()--*/
Task<String^>^ CefFrameWrapper::GetSourceAsync()
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
auto taskStringVisitor = gcnew TaskStringVisitor();
_frame->GetSource(new CefStringVisitorAdapter(taskStringVisitor));
return taskStringVisitor->Task;
}
///
// Retrieve this frame's HTML source as a string sent to the specified
// visitor.
///
/*--cef()--*/
void CefFrameWrapper::GetSource(IStringVisitor^ visitor)
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
_frame->GetSource(new CefStringVisitorAdapter(visitor));
}
///
// Retrieve this frame's display text as a string sent to the specified
// visitor.
///
/*--cef()--*/
Task<String^>^ CefFrameWrapper::GetTextAsync()
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
auto taskStringVisitor = gcnew TaskStringVisitor();
_frame->GetText(new CefStringVisitorAdapter(taskStringVisitor));
return taskStringVisitor->Task;
}
///
// Retrieve this frame's display text as a string sent to the specified
// visitor.
///
/*--cef()--*/
void CefFrameWrapper::GetText(IStringVisitor^ visitor)
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
_frame->GetText(new CefStringVisitorAdapter(visitor));
}
///
// Load the request represented by the |request| object.
///
/*--cef()--*/
void CefFrameWrapper::LoadRequest(IRequest^ request)
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
auto requestWrapper = (Request^)request->UnWrap();
_frame->LoadRequest(requestWrapper);
}
///
// Load the specified |url|.
///
/*--cef()--*/
void CefFrameWrapper::LoadUrl(String^ url)
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
_frame->LoadURL(StringUtils::ToNative(url));
}
///
// Execute a string of JavaScript code in this frame. The |script_url|
// parameter is the URL where the script in question can be found, if any.
// The renderer may request this URL to show the developer the source of the
// error. The |start_line| parameter is the base line number to use for error
// reporting.
///
/*--cef(optional_param=script_url)--*/
void CefFrameWrapper::ExecuteJavaScriptAsync(String^ code, String^ scriptUrl, int startLine)
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
_frame->ExecuteJavaScript(StringUtils::ToNative(code), StringUtils::ToNative(scriptUrl), startLine);
}
Task<JavascriptResponse^>^ CefFrameWrapper::EvaluateScriptAsync(String^ script, String^ scriptUrl, int startLine, Nullable<TimeSpan> timeout, bool useImmediatelyInvokedFuncExpression)
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
auto browser = _frame->GetBrowser();
auto host = browser->GetHost();
//If we're unable to get the underlying browser/browserhost then return null
if (!browser.get() || !host.get())
{
return nullptr;
}
auto client = static_cast<ClientAdapter*>(host->GetClient().get());
auto pendingTaskRepository = client->GetPendingTaskRepository();
//create a new taskcompletionsource
auto idAndComplectionSource = pendingTaskRepository->CreatePendingTask(timeout);
if (useImmediatelyInvokedFuncExpression)
{
script = "(function() { let cefSharpInternalCallbackId = " + idAndComplectionSource.Key + "; " + script + " })();";
}
auto message = CefProcessMessage::Create(kEvaluateJavascriptRequest);
auto argList = message->GetArgumentList();
SetInt64(argList, 0, idAndComplectionSource.Key);
argList->SetString(1, StringUtils::ToNative(script));
argList->SetString(2, StringUtils::ToNative(scriptUrl));
argList->SetInt(3, startLine);
_frame->SendProcessMessage(CefProcessId::PID_RENDERER, message);
return idAndComplectionSource.Value->Task;
}
///
// Returns true if this is the main (top-level) frame.
///
/*--cef()--*/
bool CefFrameWrapper::IsMain::get()
{
ThrowIfDisposed();
return _frame->IsMain();
}
///
// Returns true if this is the focused frame.
///
/*--cef()--*/
bool CefFrameWrapper::IsFocused::get()
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
return _frame->IsFocused();
}
///
// Returns the name for this frame. If the frame has an assigned name (for
// example, set via the iframe "name" attribute) then that value will be
// returned. Otherwise a unique name will be constructed based on the frame
// parent hierarchy. The main (top-level) frame will always have an empty name
// value.
///
/*--cef()--*/
String^ CefFrameWrapper::Name::get()
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
return StringUtils::ToClr(_frame->GetName());
}
///
// Returns the globally unique identifier for this frame.
///
/*--cef()--*/
String^ CefFrameWrapper::Identifier::get()
{
ThrowIfDisposed();
return StringUtils::ToClr(_frame->GetIdentifier());
}
///
// Returns the parent of this frame or NULL if this is the main (top-level)
// frame.
///
/*--cef()--*/
IFrame^ CefFrameWrapper::Parent::get()
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
if (_parentFrame != nullptr)
{
return _parentFrame;
}
// Be paranoid about creating the cached IFrame.
msclr::lock sync(_syncRoot);
if (_parentFrame != nullptr)
{
return _parentFrame;
}
auto parent = _frame->GetParent();
if (parent == nullptr)
{
return nullptr;
}
_parentFrame = gcnew CefFrameWrapper(parent);
return _parentFrame;
}
///
// Returns the URL currently loaded in this frame.
///
/*--cef()--*/
String^ CefFrameWrapper::Url::get()
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
return StringUtils::ToClr(_frame->GetURL());
}
///
// Returns the browser that this frame belongs to.
///
/*--cef()--*/
IBrowser^ CefFrameWrapper::Browser::get()
{
ThrowIfDisposed();
ThrowIfFrameInvalid();
if (_owningBrowser != nullptr)
{
return _owningBrowser;
}
// Be paranoid about creating the cached IBrowser.
msclr::lock sync(_syncRoot);
if (_owningBrowser != nullptr)
{
return _owningBrowser;
}
_owningBrowser = gcnew CefBrowserWrapper(_frame->GetBrowser());
return _owningBrowser;
}
IRequest^ CefFrameWrapper::CreateRequest(bool initializePostData)
{
auto request = CefRequest::Create();
if (initializePostData)
{
request->SetPostData(CefPostData::Create());
}
return gcnew Request(request);
}
IUrlRequest^ CefFrameWrapper::CreateUrlRequest(IRequest^ request, IUrlRequestClient^ client)
{
ThrowIfDisposed();
if (request == nullptr)
{
throw gcnew ArgumentNullException("request");
}
if (client == nullptr)
{
throw gcnew ArgumentNullException("client");
}
auto urlRequest = _frame->CreateURLRequest(
(Request^)request->UnWrap(),
new CefUrlRequestClientAdapter(client));
return gcnew UrlRequest(urlRequest);
}
void CefFrameWrapper::ThrowIfFrameInvalid()
{
if (_frame->IsValid() == false)
{
throw gcnew Exception(L"The underlying frame is no longer valid - please check the IsValid property before calling!");
}
}