-
-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathsurflock.c
222 lines (193 loc) · 6.01 KB
/
surflock.c
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
/*
pygame-ce - Python Game Library
Copyright (C) 2000-2001 Pete Shinners
Copyright (C) 2008 Marcus von Appen
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Pete Shinners
pete@shinners.org
*/
/*
* internal surface locking support for python objects
*/
#define PYGAMEAPI_SURFLOCK_INTERNAL
#include "pygame.h"
#include "pgcompat.h"
static int
pgSurface_Lock(pgSurfaceObject *);
static int
pgSurface_Unlock(pgSurfaceObject *);
static int
pgSurface_LockBy(pgSurfaceObject *, PyObject *);
static int
pgSurface_UnlockBy(pgSurfaceObject *, PyObject *);
static void
pgSurface_Prep(pgSurfaceObject *surfobj)
{
struct pgSubSurface_Data *data = ((pgSurfaceObject *)surfobj)->subsurface;
if (data != NULL) {
pgSurface_LockBy((pgSurfaceObject *)data->owner, (PyObject *)surfobj);
}
}
static void
pgSurface_Unprep(pgSurfaceObject *surfobj)
{
struct pgSubSurface_Data *data = ((pgSurfaceObject *)surfobj)->subsurface;
if (data != NULL) {
pgSurface_UnlockBy((pgSurfaceObject *)data->owner,
(PyObject *)surfobj);
}
}
static int
pgSurface_Lock(pgSurfaceObject *surfobj)
{
return pgSurface_LockBy(surfobj, (PyObject *)surfobj);
}
static int
pgSurface_Unlock(pgSurfaceObject *surfobj)
{
return pgSurface_UnlockBy(surfobj, (PyObject *)surfobj);
}
static int
pgSurface_LockBy(pgSurfaceObject *surfobj, PyObject *lockobj)
{
PyObject *ref;
pgSurfaceObject *surf = (pgSurfaceObject *)surfobj;
if (surf->locklist == NULL) {
surf->locklist = PyList_New(0);
if (surf->locklist == NULL) {
return 0;
}
}
ref = PyWeakref_NewRef(lockobj, NULL);
if (ref == NULL) {
return 0;
}
if (ref == Py_None) {
Py_DECREF(ref);
return 0;
}
if (0 != PyList_Append(surf->locklist, ref)) {
Py_DECREF(ref);
return 0; /* Exception already set. */
}
Py_DECREF(ref);
if (surf->subsurface != NULL) {
pgSurface_Prep(surfobj);
}
if (SDL_LockSurface(surf->surf) == -1) {
PyErr_SetString(PyExc_RuntimeError, "error locking surface");
return 0;
}
return 1;
}
static int
pgSurface_UnlockBy(pgSurfaceObject *surfobj, PyObject *lockobj)
{
pgSurfaceObject *surf = (pgSurfaceObject *)surfobj;
int found = 0;
int noerror = 1;
int weakref_getref_result;
if (surf->locklist != NULL) {
PyObject *item, *ref;
Py_ssize_t len = PyList_Size(surf->locklist);
while (--len >= 0 && !found) {
item = PyList_GetItem(surf->locklist, len);
weakref_getref_result = PyWeakref_GetRef(item, &ref);
if (weakref_getref_result == -1) {
noerror = 0;
}
if (weakref_getref_result == 1) {
if (ref == lockobj) {
if (PySequence_DelItem(surf->locklist, len) == -1) {
Py_DECREF(ref);
return 0;
}
else {
found = 1;
}
}
Py_DECREF(ref);
}
}
/* Clear dead references */
len = PyList_Size(surf->locklist);
while (--len >= 0) {
item = PyList_GetItem(surf->locklist, len);
weakref_getref_result = PyWeakref_GetRef(item, &ref);
if (weakref_getref_result == -1) {
noerror = 0;
}
else if (weakref_getref_result == 0) {
if (PySequence_DelItem(surf->locklist, len) == -1) {
noerror = 0;
}
else {
found++;
}
}
else if (weakref_getref_result == 1) {
Py_DECREF(ref);
}
}
}
if (!found) {
return noerror;
}
/* Release all found locks. */
while (found > 0) {
if (surf->surf != NULL) {
SDL_UnlockSurface(surf->surf);
}
if (surf->subsurface != NULL) {
pgSurface_Unprep(surfobj);
}
found--;
}
return noerror;
}
static PyMethodDef _surflock_methods[] = {{NULL, NULL, 0, NULL}};
/*DOC*/ static char _surflock_doc[] =
/*DOC*/ "Surface locking support";
MODINIT_DEFINE(surflock)
{
PyObject *module, *apiobj;
static void *c_api[PYGAMEAPI_SURFLOCK_NUMSLOTS];
static struct PyModuleDef _module = {PyModuleDef_HEAD_INIT,
"surflock",
_surflock_doc,
-1,
_surflock_methods,
NULL,
NULL,
NULL,
NULL};
/* Create the module and add the functions */
module = PyModule_Create(&_module);
if (module == NULL) {
return NULL;
}
/* export the c api */
c_api[0] = pgSurface_Prep;
c_api[1] = pgSurface_Unprep;
c_api[2] = pgSurface_Lock;
c_api[3] = pgSurface_Unlock;
c_api[4] = pgSurface_LockBy;
c_api[5] = pgSurface_UnlockBy;
apiobj = encapsulate_api(c_api, "surflock");
if (PyModule_AddObject(module, PYGAMEAPI_LOCAL_ENTRY, apiobj)) {
Py_XDECREF(apiobj);
Py_DECREF(module);
return NULL;
}
return module;
}