2004-10-19 07:17:12 +04:00
|
|
|
/* adapter_pboolean.c - psycopg boolean type wrapper implementation
|
|
|
|
*
|
2019-02-17 04:34:52 +03:00
|
|
|
* Copyright (C) 2003-2019 Federico Di Gregorio <fog@debian.org>
|
2020-01-18 00:10:44 +03:00
|
|
|
* Copyright (C) 2020 The Psycopg Team
|
2004-10-19 07:17:12 +04:00
|
|
|
*
|
|
|
|
* This file is part of psycopg.
|
|
|
|
*
|
2010-02-13 01:34:53 +03:00
|
|
|
* psycopg2 is free software: you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU Lesser General Public License as published
|
|
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2004-10-19 07:17:12 +04:00
|
|
|
*
|
2010-02-13 01:34:53 +03:00
|
|
|
* In addition, as a special exception, the copyright holders give
|
|
|
|
* permission to link this program with the OpenSSL library (or with
|
|
|
|
* modified versions of OpenSSL that use the same license as OpenSSL),
|
|
|
|
* and distribute linked combinations including the two.
|
2004-10-19 07:17:12 +04:00
|
|
|
*
|
2010-02-13 01:34:53 +03:00
|
|
|
* You must obey the GNU Lesser General Public License in all respects for
|
|
|
|
* all of the code used other than OpenSSL.
|
|
|
|
*
|
|
|
|
* psycopg2 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 Lesser General Public
|
|
|
|
* License for more details.
|
2004-10-19 07:17:12 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define PSYCOPG_MODULE
|
|
|
|
#include "psycopg/psycopg.h"
|
2010-12-12 13:55:19 +03:00
|
|
|
|
2004-10-19 07:17:12 +04:00
|
|
|
#include "psycopg/adapter_pboolean.h"
|
2005-03-03 09:31:03 +03:00
|
|
|
#include "psycopg/microprotocols_proto.h"
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2010-12-12 13:55:19 +03:00
|
|
|
#include <string.h>
|
|
|
|
|
2004-10-19 07:17:12 +04:00
|
|
|
|
|
|
|
/** the Boolean object **/
|
|
|
|
|
|
|
|
static PyObject *
|
2010-12-25 14:03:15 +03:00
|
|
|
pboolean_getquoted(pbooleanObject *self, PyObject *args)
|
2004-10-19 07:17:12 +04:00
|
|
|
{
|
2006-04-24 09:42:02 +04:00
|
|
|
if (PyObject_IsTrue(self->wrapped)) {
|
2010-12-25 14:03:15 +03:00
|
|
|
return Bytes_FromString("true");
|
2006-04-24 09:42:02 +04:00
|
|
|
}
|
|
|
|
else {
|
2010-12-25 14:03:15 +03:00
|
|
|
return Bytes_FromString("false");
|
2006-04-24 09:42:02 +04:00
|
|
|
}
|
2004-10-19 07:17:12 +04:00
|
|
|
}
|
|
|
|
|
2008-01-13 19:05:59 +03:00
|
|
|
static PyObject *
|
2010-12-25 14:03:15 +03:00
|
|
|
pboolean_str(pbooleanObject *self)
|
2004-10-19 07:17:12 +04:00
|
|
|
{
|
2019-03-17 21:45:25 +03:00
|
|
|
return psyco_ensure_text(pboolean_getquoted(self, NULL));
|
2004-10-19 07:17:12 +04:00
|
|
|
}
|
|
|
|
|
2008-01-13 19:05:59 +03:00
|
|
|
static PyObject *
|
2005-03-03 09:39:18 +03:00
|
|
|
pboolean_conform(pbooleanObject *self, PyObject *args)
|
2004-10-19 07:17:12 +04:00
|
|
|
{
|
2005-03-03 09:31:03 +03:00
|
|
|
PyObject *res, *proto;
|
2007-04-10 10:36:18 +04:00
|
|
|
|
2005-03-03 09:31:03 +03:00
|
|
|
if (!PyArg_ParseTuple(args, "O", &proto)) return NULL;
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2005-03-03 09:31:03 +03:00
|
|
|
if (proto == (PyObject*)&isqlquoteType)
|
|
|
|
res = (PyObject*)self;
|
|
|
|
else
|
|
|
|
res = Py_None;
|
2007-04-10 10:36:18 +04:00
|
|
|
|
2005-03-03 09:31:03 +03:00
|
|
|
Py_INCREF(res);
|
|
|
|
return res;
|
2004-10-19 07:17:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/** the Boolean object */
|
|
|
|
|
|
|
|
/* object member list */
|
|
|
|
|
|
|
|
static struct PyMemberDef pbooleanObject_members[] = {
|
2010-12-12 16:36:30 +03:00
|
|
|
{"adapted", T_OBJECT, offsetof(pbooleanObject, wrapped), READONLY},
|
2004-10-19 07:17:12 +04:00
|
|
|
{NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
/* object method table */
|
|
|
|
|
|
|
|
static PyMethodDef pbooleanObject_methods[] = {
|
2010-11-09 06:18:54 +03:00
|
|
|
{"getquoted", (PyCFunction)pboolean_getquoted, METH_NOARGS,
|
2004-10-19 07:17:12 +04:00
|
|
|
"getquoted() -> wrapped object value as SQL-quoted string"},
|
2005-03-03 09:31:03 +03:00
|
|
|
{"__conform__", (PyCFunction)pboolean_conform, METH_VARARGS, NULL},
|
2004-10-19 07:17:12 +04:00
|
|
|
{NULL} /* Sentinel */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* initialization and finalization methods */
|
|
|
|
|
|
|
|
static int
|
|
|
|
pboolean_setup(pbooleanObject *self, PyObject *obj)
|
|
|
|
{
|
2007-04-10 10:36:18 +04:00
|
|
|
Dprintf("pboolean_setup: init pboolean object at %p, refcnt = "
|
|
|
|
FORMAT_CODE_PY_SSIZE_T,
|
2010-12-13 00:31:10 +03:00
|
|
|
self, Py_REFCNT(self)
|
2007-04-10 10:36:18 +04:00
|
|
|
);
|
2004-10-19 07:17:12 +04:00
|
|
|
|
2008-07-21 09:41:54 +04:00
|
|
|
Py_INCREF(obj);
|
2004-10-19 07:17:12 +04:00
|
|
|
self->wrapped = obj;
|
2007-04-10 10:36:18 +04:00
|
|
|
|
|
|
|
Dprintf("pboolean_setup: good pboolean object at %p, refcnt = "
|
|
|
|
FORMAT_CODE_PY_SSIZE_T,
|
2010-12-13 00:31:10 +03:00
|
|
|
self, Py_REFCNT(self)
|
2007-04-10 10:36:18 +04:00
|
|
|
);
|
2004-10-19 07:17:12 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pboolean_dealloc(PyObject* obj)
|
|
|
|
{
|
|
|
|
pbooleanObject *self = (pbooleanObject *)obj;
|
|
|
|
|
2008-07-21 09:41:54 +04:00
|
|
|
Py_CLEAR(self->wrapped);
|
2007-04-10 10:36:18 +04:00
|
|
|
|
|
|
|
Dprintf("pboolean_dealloc: deleted pboolean object at %p, refcnt = "
|
|
|
|
FORMAT_CODE_PY_SSIZE_T,
|
2010-12-13 00:31:10 +03:00
|
|
|
obj, Py_REFCNT(obj)
|
2007-04-10 10:36:18 +04:00
|
|
|
);
|
|
|
|
|
2010-12-13 00:31:10 +03:00
|
|
|
Py_TYPE(obj)->tp_free(obj);
|
2004-10-19 07:17:12 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
pboolean_init(PyObject *obj, PyObject *args, PyObject *kwds)
|
|
|
|
{
|
|
|
|
PyObject *o;
|
2007-04-10 10:36:18 +04:00
|
|
|
|
2004-10-19 07:17:12 +04:00
|
|
|
if (!PyArg_ParseTuple(args, "O", &o))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return pboolean_setup((pbooleanObject *)obj, o);
|
|
|
|
}
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
pboolean_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
|
2007-04-10 10:36:18 +04:00
|
|
|
{
|
2004-10-19 07:17:12 +04:00
|
|
|
return type->tp_alloc(type, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* object type */
|
|
|
|
|
|
|
|
#define pbooleanType_doc \
|
2005-10-18 05:29:47 +04:00
|
|
|
"Boolean(str) -> new Boolean adapter object"
|
2004-10-19 07:17:12 +04:00
|
|
|
|
|
|
|
PyTypeObject pbooleanType = {
|
2010-12-13 00:47:36 +03:00
|
|
|
PyVarObject_HEAD_INIT(NULL, 0)
|
2014-08-15 04:45:50 +04:00
|
|
|
"psycopg2.extensions.Boolean",
|
2013-03-20 05:34:50 +04:00
|
|
|
sizeof(pbooleanObject), 0,
|
2004-10-19 07:17:12 +04:00
|
|
|
pboolean_dealloc, /*tp_dealloc*/
|
|
|
|
0, /*tp_print*/
|
|
|
|
0, /*tp_getattr*/
|
2007-04-10 10:36:18 +04:00
|
|
|
0, /*tp_setattr*/
|
2004-10-19 07:17:12 +04:00
|
|
|
0, /*tp_compare*/
|
2014-08-15 05:06:27 +04:00
|
|
|
0, /*tp_repr*/
|
2004-10-19 07:17:12 +04:00
|
|
|
0, /*tp_as_number*/
|
|
|
|
0, /*tp_as_sequence*/
|
|
|
|
0, /*tp_as_mapping*/
|
|
|
|
0, /*tp_hash */
|
|
|
|
0, /*tp_call*/
|
|
|
|
(reprfunc)pboolean_str, /*tp_str*/
|
|
|
|
0, /*tp_getattro*/
|
|
|
|
0, /*tp_setattro*/
|
|
|
|
0, /*tp_as_buffer*/
|
2013-04-05 04:02:47 +04:00
|
|
|
Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE, /*tp_flags*/
|
2004-10-19 07:17:12 +04:00
|
|
|
pbooleanType_doc, /*tp_doc*/
|
2013-04-05 04:02:47 +04:00
|
|
|
0, /*tp_traverse*/
|
2004-10-19 07:17:12 +04:00
|
|
|
0, /*tp_clear*/
|
|
|
|
0, /*tp_richcompare*/
|
|
|
|
0, /*tp_weaklistoffset*/
|
|
|
|
0, /*tp_iter*/
|
|
|
|
0, /*tp_iternext*/
|
|
|
|
pbooleanObject_methods, /*tp_methods*/
|
|
|
|
pbooleanObject_members, /*tp_members*/
|
|
|
|
0, /*tp_getset*/
|
|
|
|
0, /*tp_base*/
|
|
|
|
0, /*tp_dict*/
|
|
|
|
0, /*tp_descr_get*/
|
|
|
|
0, /*tp_descr_set*/
|
|
|
|
0, /*tp_dictoffset*/
|
|
|
|
pboolean_init, /*tp_init*/
|
2013-03-21 02:27:10 +04:00
|
|
|
0, /*tp_alloc*/
|
2004-10-19 07:17:12 +04:00
|
|
|
pboolean_new, /*tp_new*/
|
|
|
|
};
|