-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathextras.jl
More file actions
132 lines (117 loc) · 4.12 KB
/
Copy pathextras.jl
File metadata and controls
132 lines (117 loc) · 4.12 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
asptr(x) = Base.unsafe_convert(PyPtr, x)
Py_Type(x) = Base.GC.@preserve x PyPtr(UnsafePtr(asptr(x)).type[!])
PyObject_Type(x) = Base.GC.@preserve x (t = Py_Type(asptr(x)); Py_IncRef(t); t)
Py_TypeCheck(o, t) = Base.GC.@preserve o t PyType_IsSubtype(Py_Type(asptr(o)), asptr(t))
Py_TypeCheckFast(o, f::Integer) = Base.GC.@preserve o PyType_IsSubtypeFast(Py_Type(asptr(o)), f)
PyType_IsSubtypeFast(t, f::Integer) =
Base.GC.@preserve t Cint(!iszero(UnsafePtr{PyTypeObject}(asptr(t)).flags[] & f))
PyMemoryView_GET_BUFFER(m) = Base.GC.@preserve m Ptr{Py_buffer}(UnsafePtr{PyMemoryViewObject}(asptr(m)).view)
PyType_CheckBuffer(t) = Base.GC.@preserve t begin
p = UnsafePtr{PyTypeObject}(asptr(t)).as_buffer[]
return p != C_NULL && p.get[!] != C_NULL
end
PyObject_CheckBuffer(o) = Base.GC.@preserve o PyType_CheckBuffer(Py_Type(asptr(o)))
PyObject_GetBuffer(_o, b, flags) = Base.GC.@preserve _o begin
o = asptr(_o)
p = UnsafePtr{PyTypeObject}(Py_Type(o)).as_buffer[]
if p == C_NULL || p.get[!] == C_NULL
PyErr_SetString(
POINTERS.PyExc_TypeError,
"a bytes-like object is required, not '$(String(UnsafePtr{PyTypeObject}(Py_Type(o)).name[]))'",
)
return Cint(-1)
end
return ccall(p.get[!], Cint, (PyPtr, Ptr{Py_buffer}, Cint), o, b, flags)
end
PyBuffer_Release(_b) = begin
b = UnsafePtr(Base.unsafe_convert(Ptr{Py_buffer}, _b))
o = b.obj[]
o == C_NULL && return
p = UnsafePtr{PyTypeObject}(Py_Type(o)).as_buffer[]
if (p != C_NULL && p.release[!] != C_NULL)
ccall(p.release[!], Cvoid, (PyPtr, Ptr{Py_buffer}), o, b)
end
b.obj[] = C_NULL
Py_DecRef(o)
return
end
function PyOS_SetInputHook(hook::Ptr{Cvoid})
Base.unsafe_store!(POINTERS.PyOS_InputHookPtr, hook)
return
end
function PyOS_GetInputHook()
return Base.unsafe_load(POINTERS.PyOS_InputHookPtr)
end
function PyOS_RunInputHook()
hook = PyOS_GetInputHook()
if hook == C_NULL
return false
else
ccall(hook, Cint, ())
return true
end
end
function PySimpleObject_GetValue(::Type{T}, o) where {T}
Base.GC.@preserve o UnsafePtr{PySimpleObject{T}}(asptr(o)).value[!]
end
# FAST REFCOUNTING
#
# _Py_IncRef(o) = ccall(POINTERS.Py_IncRef, Cvoid, (PyPtr,), o)
# _Py_DecRef(o) = ccall(POINTERS.Py_DecRef, Cvoid, (PyPtr,), o)
# const FAST_INCREF = true
# const FAST_DECREF = true
# if FAST_INCREF
# # This avoids calling the C-API Py_IncRef().
# # It just needs to increase the reference count.
# # Assumes Python is not built for debugging reference counts.
# # Speed up from 2.5ns to 1.3ns.
# Py_INCREF(o) = GC.@preserve o begin
# p = UnsafePtr(Base.unsafe_convert(PyPtr, o))
# p.refcnt[] += 1
# nothing
# end
# Py_IncRef(o) = GC.@preserve o begin
# p = UnsafePtr(Base.unsafe_convert(PyPtr, o))
# if p != C_NULL
# p.refcnt[] += 1
# end
# nothing
# end
# else
# Py_INCREF(o) = _Py_IncRef(o)
# Py_IncRef(o) = _Py_IncRef(o)
# end
# if FAST_DECREF
# # This avoids calling the C-API Py_IncRef() unless the object is about to be deallocated.
# # It just needs to decrement the reference count.
# # Assumes Python is not built for debugging reference counts.
# # Speed up from 2.5ns to 1.8ns in non-deallocating case.
# Py_DECREF(o) = GC.@preserve o begin
# p = UnsafePtr(Base.unsafe_convert(PyPtr, o))
# c = p.refcnt[]
# if c > 1
# p.refcnt[] = c - 1
# else
# _Py_DecRef(o)
# end
# nothing
# end
# Py_DecRef(o) = GC.@preserve o begin
# p = UnsafePtr(Base.unsafe_convert(PyPtr, o))
# if p != C_NULL
# c = p.refcnt[]
# if c > 1
# p.refcnt[] = c - 1
# else
# _Py_DecRef(o)
# end
# end
# nothing
# end
# else
# Py_DECREF(o) = _Py_DecRef(o)
# Py_DecRef(o) = _Py_DecRef(o)
# end
# Py_RefCnt(o) = GC.@preserve o UnsafePtr(Base.unsafe_convert(PyPtr, o)).refcnt[]
# Py_DecRef(f::Function, o::Ptr, dflt = PYERR()) =
# isnull(o) ? dflt : (r = f(o); Py_DecRef(o); r)