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
|
/* -*- mode: C; c-basic-offset: 2 -*-
*
* Pycairo - Python bindings for cairo
*
* Copyright © 2017 Christoph Reiter
*
* This library is free software; you can redistribute it and/or
* modify it either under the terms of the GNU Lesser General Public
* License version 2.1 as published by the Free Software Foundation
* (the "LGPL") or, at your option, under the terms of the Mozilla
* Public License Version 1.1 (the "MPL"). If you do not alter this
* notice, a recipient may use your version of this file under either
* the MPL or the LGPL.
*
* You should have received a copy of the LGPL along with this library
* in the file COPYING-LGPL-2.1; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* You should have received a copy of the MPL along with this library
* in the file COPYING-MPL-1.1
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.1 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
* OF ANY KIND, either express or implied. See the LGPL or the MPL for
* the specific language governing rights and limitations.
*/
#define PY_SSIZE_T_CLEAN
#include <Python.h>
#include "private.h"
/* Returns 1 if the object has the correct file type for a filesystem path.
* Parsing it with Pycairo_fspath_converter() might still fail.
*/
int
Pycairo_is_fspath (PyObject *obj) {
PyObject *real = PyOS_FSPath (obj);
if (real == NULL) {
PyErr_Clear ();
return 0;
} else {
Py_DECREF (real);
return 1;
}
}
#if !defined(MS_WINDOWS)
/* Broken in PyPy: https://foss.heptapod.net/pypy/pypy/-/issues/3168 */
static int
Pycairo_PyUnicode_FSConverter(PyObject* obj, void* result) {
int res;
PyObject *real = NULL;
real = PyOS_FSPath (obj);
if (real == NULL) {
PyErr_Clear ();
return PyUnicode_FSConverter (obj, result);
} else {
res = PyUnicode_FSConverter (real, result);
Py_DECREF (real);
return res;
}
}
#endif
#if defined(MS_WINDOWS)
/* Broken in PyPy: https://foss.heptapod.net/pypy/pypy/-/issues/3168 */
static int
Pycairo_PyUnicode_FSDecoder(PyObject* obj, void* result) {
int res;
PyObject *real = NULL;
real = PyOS_FSPath (obj);
if (real == NULL) {
PyErr_Clear ();
return PyUnicode_FSDecoder (obj, result);
} else {
res = PyUnicode_FSDecoder (real, result);
Py_DECREF (real);
return res;
}
}
#endif
/* Converts a Python object to a cairo path. The result needs to be freed with
* PyMem_Free().
*/
int
Pycairo_fspath_converter (PyObject *obj, char** result) {
char *internal, *buf;
PyObject *bytes;
#if defined(MS_WINDOWS)
PyObject *uni;
if (Pycairo_PyUnicode_FSDecoder (obj, &uni) == 0)
return 0;
if (cairo_version() >= CAIRO_VERSION_ENCODE(1, 15, 10)) {
bytes = PyUnicode_AsEncodedString (uni, "utf-8", "strict");
} else {
bytes = PyUnicode_AsMBCSString (uni);
}
Py_DECREF (uni);
if (bytes == NULL)
return 0;
if (PyBytes_AsStringAndSize (bytes, &internal, NULL) == -1) {
Py_DECREF (bytes);
return 0;
}
#else
if (Pycairo_PyUnicode_FSConverter (obj, &bytes) == 0)
return 0;
if (PyBytes_AsStringAndSize (bytes, &internal, NULL) == -1) {
Py_DECREF (bytes);
return 0;
}
#endif
buf = PyMem_Malloc (strlen (internal) + 1);
if (buf == NULL) {
Py_DECREF (bytes);
PyErr_NoMemory ();
return 0;
}
strcpy (buf, internal);
Py_DECREF (bytes);
*result = buf;
return 1;
}
/* Verifies that the object has a callable write() method.
* Gives a borrowed reference.
*/
int
Pycairo_writer_converter (PyObject *obj, PyObject** file) {
PyObject *res;
/* Check that the file is opened in binary mode by writing a zero length
* bytes object to it */
res = PyObject_CallMethod (obj, "write", "(y#)", "", (Py_ssize_t) 0);
if (res == NULL)
return 0;
Py_DECREF (res);
*file = obj;
return 1;
}
int
Pycairo_reader_converter (PyObject *obj, PyObject** file) {
PyObject *res;
/* Check that the file is opened in binary mode by reading a zero length
* bytes object from it */
res = PyObject_CallMethod (obj, "read", "(i)", (int) 0);
if (res == NULL)
return 0;
if (!PyBytes_Check (res)) {
Py_DECREF (res);
PyErr_SetString (
PyExc_TypeError, "'read' does not return bytes");
return 0;
}
Py_DECREF (res);
*file = obj;
return 1;
}
int
Pycairo_fspath_none_converter (PyObject *obj, char** result) {
if (obj == Py_None) {
*result = NULL;
return 1;
}
return Pycairo_fspath_converter (obj, result);
}
PyObject*
Pycairo_richcompare (void* a, void *b, int op)
{
PyObject *res;
switch (op) {
case Py_EQ:
res = (a == b) ? Py_True : Py_False;
break;
case Py_NE:
res = (a != b) ? Py_True : Py_False;
break;
case Py_LT:
res = (a < b) ? Py_True : Py_False;
break;
case Py_LE:
res = (a <= b) ? Py_True : Py_False;
break;
case Py_GT:
res = (a > b) ? Py_True : Py_False;
break;
case Py_GE:
res = (a >= b) ? Py_True : Py_False;
break;
default:
res = Py_NotImplemented;
break;
}
Py_INCREF (res);
return res;
}
/* NULL on error */
static PyObject *
_conv_pyobject_to_pylong (PyObject *pyobj) {
if (!PyLong_Check (pyobj)) {
PyErr_SetString (PyExc_TypeError, "not of type int");
return NULL;
}
Py_INCREF (pyobj);
return pyobj;
}
/* -1 on error */
int
_conv_pyobject_to_ulong (PyObject *pyobj, unsigned long *result) {
unsigned long temp;
PyObject *pylong;
pylong = _conv_pyobject_to_pylong (pyobj);
if (pylong == NULL)
return -1;
temp = PyLong_AsUnsignedLong (pylong);
if (PyErr_Occurred ())
return -1;
*result = temp;
return 0;
}
|