forked from cztomczak/cefpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathframe.pyx
More file actions
222 lines (148 loc) · 7.36 KB
/
Copy pathframe.pyx
File metadata and controls
222 lines (148 loc) · 7.36 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
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
# Copyright (c) 2012 CefPython Authors. All rights reserved.
# License: New BSD License.
# Website: http://code.google.com/p/cefpython/
include "imports.pyx"
include "utils.pyx"
include "v8utils.pyx"
include "v8context_handler.pyx"
# id: (int64 = long in python) CefFrame.GetIdentifier() - globally unique identifier.
# In Python 2 there is: int (32 bit) long (64 bit).
# In Python 3 there will be only int (64 bit).
# long has no limit in python.
cdef c_map[cef_types.int64, CefRefPtr[CefFrame]] g_cefFrames
g_pyFrames = {}
class PyFrame:
frameID = 0
def __init__(self, frameID):
self.frameID = frameID
def CallFunction(self, funcName):
# CefV8 Objects, Arrays and Functions can be created only inside V8 context,
# you need to call CefV8Context::Enter() and CefV8Context::Exit():
# http://code.google.com/p/chromiumembedded/issues/detail?id=203
# Entering context should be done for Frame::CallFunction().
# You must check current context and Enter it if not same, before calling PyValueToV8Value().
'''TODO: call Frame->GetV8Context?()->GetGlobal?() you get a window object,
now iterate through its all properties and compare to funcName, you get a real javascript
object which you can call and be able to get return value, also you can pass python callbacks this way.'''
pass
def Copy(self):
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
(<CefFrame*>(cefFrame.get())).Copy()
def Cut(self):
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
(<CefFrame*>(cefFrame.get())).Cut()
def Delete(self):
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
(<CefFrame*>(cefFrame.get())).Delete()
def ExecuteJavascript(self, jsCode, scriptURL=None, startLine=None):
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
cdef CefString cefJsCode
if bytes == str:
cefJsCode.FromASCII(<char*>jsCode) # Python 2.7
else:
bytesJsCode = jsCode.encode("utf-8") # Python 3 requires bytes when converting to char*
cefJsCode.FromASCII(<char*>bytesJsCode)
if not scriptURL:
scriptURL = ""
cdef CefString cefScriptURL
PyStringToCefString(scriptURL, cefScriptURL)
if not startLine:
startLine = -1
(<CefFrame*>(cefFrame.get())).ExecuteJavaScript(cefJsCode, cefScriptURL, <int>startLine)
def EvalJavascript(self):
# TODO: CefV8Context > Eval
pass
def GetIdentifier(self):
return self.frameID
"""
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
return <long long>((<CefFrame*>(cefFrame.get())).GetIdentifier())
"""
def GetName(self):
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
cdef CefString cefName = ((<CefFrame*>(cefFrame.get())).GetName())
return CefStringToPyString(cefName)
def GetProperty(self, name):
# GetV8Context() requires UI thread.
assert IsCurrentThread(TID_UI), "Frame.GetProperty() may only be called on the UI thread"
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
cdef CefRefPtr[CefV8Context] v8Context = (<CefFrame*>(cefFrame.get())).GetV8Context()
window = (<CefV8Context*>(v8Context.get())).GetGlobal()
cdef CefString cefPropertyName
name = str(name)
PyStringToCefString(name, cefPropertyName)
cdef CefRefPtr[CefV8Value] v8Value
v8Value = (<CefV8Value*>(window.get())).GetValue(cefPropertyName)
return V8ValueToPyValue(v8Value, v8Context)
def GetSource(self):
assert IsCurrentThread(TID_UI), "Frame.GetSource() may only be called on the UI thread"
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
cdef CefString cefSource = (<CefFrame*>(cefFrame.get())).GetSource()
return CefStringToPyString(cefSource)
def GetText(self):
assert IsCurrentThread(TID_UI), "Frame.GetText() may only be called on the UI thread"
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
cdef CefString cefSource = (<CefFrame*>(cefFrame.get())).GetText()
return CefStringToPyString(cefSource)
def Geturl(self):
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
cdef CefString cefURL = (<CefFrame*>(cefFrame.get())).GetURL()
return CefStringToPyString(cefURL)
def IsFocused(self):
assert IsCurrentThread(TID_UI), "Frame.IsFocused() may only be called on the UI thread"
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
return (<CefFrame*>(cefFrame.get())).IsFocused()
def IsMain(self):
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
return (<CefFrame*>(cefFrame.get())).IsMain()
def LoadRequest(self):
pass
def LoadString(self, value, url):
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
cdef CefString cefValue
cdef CefString cefURL
PyStringToCefString(value, cefValue)
PyStringToCefString(url, cefURL)
(<CefFrame*>(cefFrame.get())).LoadString(cefValue, cefURL)
def Loadurl(self, url):
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
cdef CefString cefURL
PyStringToCefString(url, cefURL)
(<CefFrame*>(cefFrame.get())).Loadurl(cefURL)
def Paste(self):
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
(<CefFrame*>(cefFrame.get())).Paste()
def Print(self):
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
(<CefFrame*>(cefFrame.get())).Print()
def Redo(self):
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
(<CefFrame*>(cefFrame.get())).Redo()
def SelectAll(self):
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
(<CefFrame*>(cefFrame.get())).SelectAll()
def SetProperty(self, name, value):
# GetV8Context() requires UI thread.
assert IsCurrentThread(TID_UI), "Frame.SetProperty() may only be called on the UI thread"
if not JavascriptBindings.IsValueAllowed(value):
valueType = JavascriptBindings.__IsValueAllowed(value)
raise Exception("Frame.SetProperty() failed: name=%s, not allowed type: %s (this may be a type of a nested value)" % (name, valueType))
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
cdef CefRefPtr[CefV8Context] v8Context = (<CefFrame*>(cefFrame.get())).GetV8Context()
window = (<CefV8Context*>(v8Context.get())).GetGlobal()
cdef CefString cefPropertyName
name = str(name)
PyStringToCefString(name, cefPropertyName)
cdef c_bool sameContext = (<CefV8Context*>(v8Context.get())).IsSame(cef_v8_static.GetCurrentContext())
if not sameContext:
Debug("Frame.SetProperty(): inside a different context, calling v8Context.Enter()")
assert (<CefV8Context*>(v8Context.get())).Enter(), "v8Context.Enter() failed"
(<CefV8Value*>(window.get())).SetValue(cefPropertyName, PyValueToV8Value(value, v8Context), V8_PROPERTY_ATTRIBUTE_NONE)
if not sameContext:
assert (<CefV8Context*>(v8Context.get())).Exit(), "v8Context.Exit() failed"
def Undo(self):
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
(<CefFrame*>(cefFrame.get())).Undo()
def ViewSource(self):
cdef CefRefPtr[CefFrame] cefFrame = GetCefFrameByFrameID(CheckFrameID(self.frameID))
(<CefFrame*>(cefFrame.get())).ViewSource()