2015-04-03 17:53:51 -03:00
|
|
|
/*[clinic input]
|
|
|
|
preserve
|
|
|
|
[clinic start generated code]*/
|
|
|
|
|
2024-05-29 07:32:00 -03:00
|
|
|
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
|
|
|
# include "pycore_runtime.h" // _Py_SINGLETON()
|
|
|
|
#endif
|
2023-10-17 09:30:31 -03:00
|
|
|
#include "pycore_modsupport.h" // _PyArg_UnpackKeywords()
|
|
|
|
|
2015-04-17 15:05:18 -03:00
|
|
|
PyDoc_STRVAR(_dbm_dbm_close__doc__,
|
|
|
|
"close($self, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Close the database.");
|
|
|
|
|
|
|
|
#define _DBM_DBM_CLOSE_METHODDEF \
|
|
|
|
{"close", (PyCFunction)_dbm_dbm_close, METH_NOARGS, _dbm_dbm_close__doc__},
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
_dbm_dbm_close_impl(dbmobject *self);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
_dbm_dbm_close(dbmobject *self, PyObject *Py_UNUSED(ignored))
|
|
|
|
{
|
|
|
|
return _dbm_dbm_close_impl(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(_dbm_dbm_keys__doc__,
|
|
|
|
"keys($self, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Return a list of all keys in the database.");
|
|
|
|
|
|
|
|
#define _DBM_DBM_KEYS_METHODDEF \
|
2022-05-03 15:25:41 -03:00
|
|
|
{"keys", _PyCFunction_CAST(_dbm_dbm_keys), METH_METHOD|METH_FASTCALL|METH_KEYWORDS, _dbm_dbm_keys__doc__},
|
2015-04-17 15:05:18 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2020-06-15 13:20:54 -03:00
|
|
|
_dbm_dbm_keys_impl(dbmobject *self, PyTypeObject *cls);
|
2015-04-17 15:05:18 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2020-06-15 13:20:54 -03:00
|
|
|
_dbm_dbm_keys(dbmobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
|
2015-04-17 15:05:18 -03:00
|
|
|
{
|
2024-02-05 16:49:17 -04:00
|
|
|
if (nargs || (kwnames && PyTuple_GET_SIZE(kwnames))) {
|
2022-04-30 07:15:02 -03:00
|
|
|
PyErr_SetString(PyExc_TypeError, "keys() takes no arguments");
|
|
|
|
return NULL;
|
2020-06-15 13:20:54 -03:00
|
|
|
}
|
2022-04-30 07:15:02 -03:00
|
|
|
return _dbm_dbm_keys_impl(self, cls);
|
2015-04-17 15:05:18 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(_dbm_dbm_get__doc__,
|
2018-04-29 06:38:06 -03:00
|
|
|
"get($self, key, default=None, /)\n"
|
2015-04-03 17:53:51 -03:00
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Return the value for key if present, otherwise default.");
|
|
|
|
|
2015-04-17 15:05:18 -03:00
|
|
|
#define _DBM_DBM_GET_METHODDEF \
|
2022-05-03 15:25:41 -03:00
|
|
|
{"get", _PyCFunction_CAST(_dbm_dbm_get), METH_METHOD|METH_FASTCALL|METH_KEYWORDS, _dbm_dbm_get__doc__},
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2020-06-15 13:20:54 -03:00
|
|
|
_dbm_dbm_get_impl(dbmobject *self, PyTypeObject *cls, const char *key,
|
2021-05-07 22:17:37 -03:00
|
|
|
Py_ssize_t key_length, PyObject *default_value);
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2020-06-15 13:20:54 -03:00
|
|
|
_dbm_dbm_get(dbmobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
|
2015-04-03 17:53:51 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
2022-08-13 07:09:40 -03:00
|
|
|
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
|
|
|
# define KWTUPLE (PyObject *)&_Py_SINGLETON(tuple_empty)
|
|
|
|
#else
|
|
|
|
# define KWTUPLE NULL
|
|
|
|
#endif
|
2022-08-11 18:25:49 -03:00
|
|
|
|
2020-06-15 13:20:54 -03:00
|
|
|
static const char * const _keywords[] = {"", "", NULL};
|
2022-08-11 18:25:49 -03:00
|
|
|
static _PyArg_Parser _parser = {
|
|
|
|
.keywords = _keywords,
|
|
|
|
.format = "s#|O:get",
|
|
|
|
.kwtuple = KWTUPLE,
|
|
|
|
};
|
|
|
|
#undef KWTUPLE
|
2015-04-03 17:53:51 -03:00
|
|
|
const char *key;
|
2021-05-07 22:17:37 -03:00
|
|
|
Py_ssize_t key_length;
|
2018-04-29 06:38:06 -03:00
|
|
|
PyObject *default_value = Py_None;
|
2015-04-03 17:53:51 -03:00
|
|
|
|
2020-06-15 13:20:54 -03:00
|
|
|
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
|
2017-06-10 01:51:48 -03:00
|
|
|
&key, &key_length, &default_value)) {
|
2017-01-16 20:35:17 -04:00
|
|
|
goto exit;
|
|
|
|
}
|
2020-06-15 13:20:54 -03:00
|
|
|
return_value = _dbm_dbm_get_impl(self, cls, key, key_length, default_value);
|
2015-04-17 15:05:18 -03:00
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
PyDoc_STRVAR(_dbm_dbm_setdefault__doc__,
|
|
|
|
"setdefault($self, key, default=b\'\', /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Return the value for key if present, otherwise default.\n"
|
|
|
|
"\n"
|
|
|
|
"If key is not in the database, it is inserted with default as the value.");
|
|
|
|
|
|
|
|
#define _DBM_DBM_SETDEFAULT_METHODDEF \
|
2022-05-03 15:25:41 -03:00
|
|
|
{"setdefault", _PyCFunction_CAST(_dbm_dbm_setdefault), METH_METHOD|METH_FASTCALL|METH_KEYWORDS, _dbm_dbm_setdefault__doc__},
|
2015-04-17 15:05:18 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2020-06-15 13:20:54 -03:00
|
|
|
_dbm_dbm_setdefault_impl(dbmobject *self, PyTypeObject *cls, const char *key,
|
2021-05-07 22:17:37 -03:00
|
|
|
Py_ssize_t key_length, PyObject *default_value);
|
2015-04-17 15:05:18 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2020-06-15 13:20:54 -03:00
|
|
|
_dbm_dbm_setdefault(dbmobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
|
2015-04-17 15:05:18 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
2022-08-13 07:09:40 -03:00
|
|
|
#if defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
|
|
|
|
# define KWTUPLE (PyObject *)&_Py_SINGLETON(tuple_empty)
|
|
|
|
#else
|
|
|
|
# define KWTUPLE NULL
|
|
|
|
#endif
|
2022-08-11 18:25:49 -03:00
|
|
|
|
2020-06-15 13:20:54 -03:00
|
|
|
static const char * const _keywords[] = {"", "", NULL};
|
2022-08-11 18:25:49 -03:00
|
|
|
static _PyArg_Parser _parser = {
|
|
|
|
.keywords = _keywords,
|
|
|
|
.format = "s#|O:setdefault",
|
|
|
|
.kwtuple = KWTUPLE,
|
|
|
|
};
|
|
|
|
#undef KWTUPLE
|
2015-04-17 15:05:18 -03:00
|
|
|
const char *key;
|
2021-05-07 22:17:37 -03:00
|
|
|
Py_ssize_t key_length;
|
2015-04-17 15:05:18 -03:00
|
|
|
PyObject *default_value = NULL;
|
|
|
|
|
2020-06-15 13:20:54 -03:00
|
|
|
if (!_PyArg_ParseStackAndKeywords(args, nargs, kwnames, &_parser,
|
2017-06-10 01:51:48 -03:00
|
|
|
&key, &key_length, &default_value)) {
|
2017-01-16 20:35:17 -04:00
|
|
|
goto exit;
|
|
|
|
}
|
2020-06-15 13:20:54 -03:00
|
|
|
return_value = _dbm_dbm_setdefault_impl(self, cls, key, key_length, default_value);
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
|
|
|
|
2023-07-23 11:26:23 -03:00
|
|
|
PyDoc_STRVAR(_dbm_dbm_clear__doc__,
|
|
|
|
"clear($self, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Remove all items from the database.");
|
|
|
|
|
|
|
|
#define _DBM_DBM_CLEAR_METHODDEF \
|
|
|
|
{"clear", _PyCFunction_CAST(_dbm_dbm_clear), METH_METHOD|METH_FASTCALL|METH_KEYWORDS, _dbm_dbm_clear__doc__},
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
_dbm_dbm_clear_impl(dbmobject *self, PyTypeObject *cls);
|
|
|
|
|
|
|
|
static PyObject *
|
|
|
|
_dbm_dbm_clear(dbmobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
|
|
|
|
{
|
2024-02-05 16:49:17 -04:00
|
|
|
if (nargs || (kwnames && PyTuple_GET_SIZE(kwnames))) {
|
2023-07-23 11:26:23 -03:00
|
|
|
PyErr_SetString(PyExc_TypeError, "clear() takes no arguments");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return _dbm_dbm_clear_impl(self, cls);
|
|
|
|
}
|
|
|
|
|
2015-04-03 17:53:51 -03:00
|
|
|
PyDoc_STRVAR(dbmopen__doc__,
|
|
|
|
"open($module, filename, flags=\'r\', mode=0o666, /)\n"
|
|
|
|
"--\n"
|
|
|
|
"\n"
|
|
|
|
"Return a database object.\n"
|
|
|
|
"\n"
|
|
|
|
" filename\n"
|
|
|
|
" The filename to open.\n"
|
|
|
|
" flags\n"
|
|
|
|
" How to open the file. \"r\" for reading, \"w\" for writing, etc.\n"
|
|
|
|
" mode\n"
|
|
|
|
" If creating a new file, the mode bits for the new file\n"
|
|
|
|
" (e.g. os.O_RDWR).");
|
|
|
|
|
|
|
|
#define DBMOPEN_METHODDEF \
|
2022-05-03 15:25:41 -03:00
|
|
|
{"open", _PyCFunction_CAST(dbmopen), METH_FASTCALL, dbmopen__doc__},
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2018-02-26 10:02:22 -04:00
|
|
|
dbmopen_impl(PyObject *module, PyObject *filename, const char *flags,
|
2015-04-14 19:07:59 -03:00
|
|
|
int mode);
|
2015-04-03 17:53:51 -03:00
|
|
|
|
|
|
|
static PyObject *
|
2017-12-15 07:11:11 -04:00
|
|
|
dbmopen(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
|
2015-04-03 17:53:51 -03:00
|
|
|
{
|
|
|
|
PyObject *return_value = NULL;
|
2018-02-26 10:02:22 -04:00
|
|
|
PyObject *filename;
|
2015-04-03 17:53:51 -03:00
|
|
|
const char *flags = "r";
|
|
|
|
int mode = 438;
|
|
|
|
|
2019-01-11 10:01:14 -04:00
|
|
|
if (!_PyArg_CheckPositional("open", nargs, 1, 3)) {
|
2017-01-16 20:35:17 -04:00
|
|
|
goto exit;
|
|
|
|
}
|
2019-01-11 10:01:14 -04:00
|
|
|
filename = args[0];
|
|
|
|
if (nargs < 2) {
|
|
|
|
goto skip_optional;
|
|
|
|
}
|
|
|
|
if (!PyUnicode_Check(args[1])) {
|
2019-08-29 11:49:08 -03:00
|
|
|
_PyArg_BadArgument("open", "argument 2", "str", args[1]);
|
2019-01-11 10:01:14 -04:00
|
|
|
goto exit;
|
|
|
|
}
|
2023-11-07 18:36:13 -04:00
|
|
|
Py_ssize_t flags_length;
|
|
|
|
flags = PyUnicode_AsUTF8AndSize(args[1], &flags_length);
|
2019-01-11 10:01:14 -04:00
|
|
|
if (flags == NULL) {
|
|
|
|
goto exit;
|
|
|
|
}
|
2023-11-07 18:36:13 -04:00
|
|
|
if (strlen(flags) != (size_t)flags_length) {
|
|
|
|
PyErr_SetString(PyExc_ValueError, "embedded null character");
|
|
|
|
goto exit;
|
|
|
|
}
|
2019-01-11 10:01:14 -04:00
|
|
|
if (nargs < 3) {
|
|
|
|
goto skip_optional;
|
|
|
|
}
|
2023-08-24 19:51:22 -03:00
|
|
|
mode = PyLong_AsInt(args[2]);
|
2019-01-11 10:01:14 -04:00
|
|
|
if (mode == -1 && PyErr_Occurred()) {
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
skip_optional:
|
2015-04-03 17:53:51 -03:00
|
|
|
return_value = dbmopen_impl(module, filename, flags, mode);
|
|
|
|
|
|
|
|
exit:
|
|
|
|
return return_value;
|
|
|
|
}
|
2024-05-29 07:32:00 -03:00
|
|
|
/*[clinic end generated code: output=f7d9a87d80a64278 input=a9049054013a1b77]*/
|