blob: 44b4baffe300a93b2f6807ac3920029ab6e8a64c [file] [log] [blame]
Bram Moolenaardb913952012-06-29 12:54:53 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9/*
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +020010 * Python extensions by Paul Moore, David Leonard, Roland Puntaier, Nikolay
11 * Pavlov.
Bram Moolenaar170bf1a2010-07-24 23:51:45 +020012 *
13 * Common code for if_python.c and if_python3.c.
14 */
15
Bram Moolenaar41009372013-07-01 22:03:04 +020016static char_u e_py_systemexit[] = "E880: Can't handle SystemExit of %s exception in vim";
17
Bram Moolenaarc1a995d2012-08-08 16:05:07 +020018#if PY_VERSION_HEX < 0x02050000
Bram Moolenaar9bf703d2019-11-30 19:44:38 +010019typedef int Py_ssize_t; // Python 2.4 and earlier don't have this type.
Bram Moolenaarc1a995d2012-08-08 16:05:07 +020020#endif
21
Bram Moolenaard518f952020-01-01 15:04:17 +010022// Use values that are known to work, others may make Vim crash.
23#define ENC_OPT (enc_utf8 ? "utf-8" : enc_dbcs ? "euc-jp" : (char *)p_enc)
Bram Moolenaard620aa92013-05-17 16:40:06 +020024#define DOPY_FUNC "_vim_pydo"
Bram Moolenaar91805fc2011-06-26 04:01:44 +020025
Bram Moolenaarc09a6d62013-06-10 21:27:29 +020026static const char *vim_special_path = "_vim_path_";
27
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +020028#define PyErr_SET_STRING(exc, str) PyErr_SetString(exc, _(str))
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +020029#define PyErr_SetVim(str) PyErr_SetString(VimError, str)
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +020030#define PyErr_SET_VIM(str) PyErr_SET_STRING(VimError, str)
Bram Moolenaar063a46b2014-01-14 16:36:51 +010031#define PyErr_FORMAT(exc, str, arg) PyErr_Format(exc, _(str), arg)
32#define PyErr_FORMAT2(exc, str, arg1, arg2) PyErr_Format(exc, _(str), arg1,arg2)
33#define PyErr_VIM_FORMAT(str, arg) PyErr_FORMAT(VimError, str, arg)
Bram Moolenaarc476e522013-06-23 13:46:40 +020034
35#define Py_TYPE_NAME(obj) (obj->ob_type->tp_name == NULL \
36 ? "(NULL)" \
37 : obj->ob_type->tp_name)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +020038
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +020039#define RAISE_NO_EMPTY_KEYS PyErr_SET_STRING(PyExc_ValueError, \
Bram Moolenaar6f1404f2013-06-23 16:04:08 +020040 N_("empty keys are not allowed"))
41#define RAISE_LOCKED_DICTIONARY PyErr_SET_VIM(N_("dictionary is locked"))
42#define RAISE_LOCKED_LIST PyErr_SET_VIM(N_("list is locked"))
43#define RAISE_UNDO_FAIL PyErr_SET_VIM(N_("cannot save undo information"))
44#define RAISE_DELETE_LINE_FAIL PyErr_SET_VIM(N_("cannot delete line"))
45#define RAISE_INSERT_LINE_FAIL PyErr_SET_VIM(N_("cannot insert line"))
46#define RAISE_REPLACE_LINE_FAIL PyErr_SET_VIM(N_("cannot replace line"))
Bram Moolenaarc476e522013-06-23 13:46:40 +020047#define RAISE_KEY_ADD_FAIL(key) \
Bram Moolenaar6f1404f2013-06-23 16:04:08 +020048 PyErr_VIM_FORMAT(N_("failed to add key '%s' to dictionary"), key)
Bram Moolenaarc476e522013-06-23 13:46:40 +020049#define RAISE_INVALID_INDEX_TYPE(idx) \
Bram Moolenaar6f1404f2013-06-23 16:04:08 +020050 PyErr_FORMAT(PyExc_TypeError, N_("index must be int or slice, not %s"), \
Bram Moolenaarc476e522013-06-23 13:46:40 +020051 Py_TYPE_NAME(idx));
Bram Moolenaar35eacd72013-05-30 22:06:33 +020052
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +020053#define INVALID_BUFFER_VALUE ((buf_T *)(-1))
54#define INVALID_WINDOW_VALUE ((win_T *)(-1))
Bram Moolenaar5e538ec2013-05-15 15:12:29 +020055#define INVALID_TABPAGE_VALUE ((tabpage_T *)(-1))
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +020056
Bram Moolenaarb52f4c02013-05-21 18:19:38 +020057typedef void (*rangeinitializer)(void *);
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +020058typedef void (*runner)(const char *, void *
59#ifdef PY_CAN_RECURSE
60 , PyGILState_STATE *
61#endif
62 );
Bram Moolenaarb52f4c02013-05-21 18:19:38 +020063
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +020064static int ConvertFromPyObject(PyObject *, typval_T *);
65static int _ConvertFromPyObject(PyObject *, typval_T *, PyObject *);
Bram Moolenaara9922d62013-05-30 13:01:18 +020066static int ConvertFromPyMapping(PyObject *, typval_T *);
Bram Moolenaar8110a092016-04-14 15:56:09 +020067static int ConvertFromPySequence(PyObject *, typval_T *);
Bram Moolenaarcabf80f2013-05-17 16:18:33 +020068static PyObject *WindowNew(win_T *, tabpage_T *);
69static PyObject *BufferNew (buf_T *);
70static PyObject *LineToString(const char *);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +020071
72static PyInt RangeStart;
73static PyInt RangeEnd;
74
Bram Moolenaarb52f4c02013-05-21 18:19:38 +020075static PyObject *globals;
76
Bram Moolenaarf4258302013-06-02 18:20:17 +020077static PyObject *py_chdir;
78static PyObject *py_fchdir;
79static PyObject *py_getcwd;
Bram Moolenaarc09a6d62013-06-10 21:27:29 +020080static PyObject *vim_module;
81static PyObject *vim_special_path_object;
Bram Moolenaarf4258302013-06-02 18:20:17 +020082
Bram Moolenaar79a494d2018-07-22 04:30:21 +020083#if PY_VERSION_HEX >= 0x030700f0
84static PyObject *py_find_spec;
85#else
Bram Moolenaar81c40c52013-06-12 14:41:04 +020086static PyObject *py_load_module;
Bram Moolenaar79a494d2018-07-22 04:30:21 +020087#endif
Bram Moolenaarb999ba22019-02-14 13:28:45 +010088static PyObject *py_find_module;
Bram Moolenaar81c40c52013-06-12 14:41:04 +020089
90static PyObject *VimError;
91
Bram Moolenaar170bf1a2010-07-24 23:51:45 +020092/*
93 * obtain a lock on the Vim data structures
94 */
95 static void
96Python_Lock_Vim(void)
97{
98}
99
100/*
101 * release a lock on the Vim data structures
102 */
103 static void
104Python_Release_Vim(void)
105{
106}
107
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200108/*
109 * The "todecref" argument holds a pointer to PyObject * that must be
110 * DECREF'ed after returned char_u * is no longer needed or NULL if all what
111 * was needed to generate returned value is object.
112 *
113 * Use Py_XDECREF to decrement reference count.
114 */
115 static char_u *
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200116StringToChars(PyObject *obj, PyObject **todecref)
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200117{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200118 char_u *str;
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200119
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200120 if (PyBytes_Check(obj))
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200121 {
122
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200123 if (PyBytes_AsStringAndSize(obj, (char **) &str, NULL) == -1
124 || str == NULL)
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200125 return NULL;
126
127 *todecref = NULL;
128 }
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200129 else if (PyUnicode_Check(obj))
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200130 {
Bram Moolenaar808c2bc2013-06-23 13:11:18 +0200131 PyObject *bytes;
132
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200133 if (!(bytes = PyUnicode_AsEncodedString(obj, ENC_OPT, NULL)))
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200134 return NULL;
135
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200136 if(PyBytes_AsStringAndSize(bytes, (char **) &str, NULL) == -1
137 || str == NULL)
Bram Moolenaar808c2bc2013-06-23 13:11:18 +0200138 {
139 Py_DECREF(bytes);
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200140 return NULL;
Bram Moolenaar808c2bc2013-06-23 13:11:18 +0200141 }
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200142
143 *todecref = bytes;
144 }
145 else
146 {
Bram Moolenaarc476e522013-06-23 13:46:40 +0200147#if PY_MAJOR_VERSION < 3
Bram Moolenaarc1c3d682013-06-24 21:21:58 +0200148 PyErr_FORMAT(PyExc_TypeError,
149 N_("expected str() or unicode() instance, but got %s"),
150 Py_TYPE_NAME(obj));
Bram Moolenaarc476e522013-06-23 13:46:40 +0200151#else
Bram Moolenaarc1c3d682013-06-24 21:21:58 +0200152 PyErr_FORMAT(PyExc_TypeError,
153 N_("expected bytes() or str() instance, but got %s"),
154 Py_TYPE_NAME(obj));
Bram Moolenaarc476e522013-06-23 13:46:40 +0200155#endif
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200156 return NULL;
157 }
158
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200159 return (char_u *) str;
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200160}
161
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200162#define NUMBER_LONG 1
163#define NUMBER_INT 2
164#define NUMBER_NATURAL 4
165#define NUMBER_UNSIGNED 8
166
167 static int
168NumberToLong(PyObject *obj, long *result, int flags)
169{
170#if PY_MAJOR_VERSION < 3
171 if (PyInt_Check(obj))
172 {
173 *result = PyInt_AsLong(obj);
174 if (PyErr_Occurred())
175 return -1;
176 }
177 else
178#endif
179 if (PyLong_Check(obj))
180 {
181 *result = PyLong_AsLong(obj);
182 if (PyErr_Occurred())
183 return -1;
184 }
185 else if (PyNumber_Check(obj))
186 {
187 PyObject *num;
188
189 if (!(num = PyNumber_Long(obj)))
190 return -1;
191
192 *result = PyLong_AsLong(num);
193
194 Py_DECREF(num);
195
196 if (PyErr_Occurred())
197 return -1;
198 }
199 else
200 {
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200201#if PY_MAJOR_VERSION < 3
Bram Moolenaarc1c3d682013-06-24 21:21:58 +0200202 PyErr_FORMAT(PyExc_TypeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +0200203 N_("expected int(), long() or something supporting "
Bram Moolenaarc1c3d682013-06-24 21:21:58 +0200204 "coercing to long(), but got %s"),
205 Py_TYPE_NAME(obj));
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200206#else
Bram Moolenaarc1c3d682013-06-24 21:21:58 +0200207 PyErr_FORMAT(PyExc_TypeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +0200208 N_("expected int() or something supporting coercing to int(), "
Bram Moolenaarc1c3d682013-06-24 21:21:58 +0200209 "but got %s"),
210 Py_TYPE_NAME(obj));
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200211#endif
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200212 return -1;
213 }
214
215 if (flags & NUMBER_INT)
216 {
217 if (*result > INT_MAX)
218 {
219 PyErr_SET_STRING(PyExc_OverflowError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +0200220 N_("value is too large to fit into C int type"));
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200221 return -1;
222 }
223 else if (*result < INT_MIN)
224 {
225 PyErr_SET_STRING(PyExc_OverflowError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +0200226 N_("value is too small to fit into C int type"));
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200227 return -1;
228 }
229 }
230
231 if (flags & NUMBER_NATURAL)
232 {
233 if (*result <= 0)
234 {
235 PyErr_SET_STRING(PyExc_ValueError,
Bram Moolenaar4de6a212014-03-08 16:13:44 +0100236 N_("number must be greater than zero"));
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200237 return -1;
238 }
239 }
240 else if (flags & NUMBER_UNSIGNED)
241 {
242 if (*result < 0)
243 {
244 PyErr_SET_STRING(PyExc_ValueError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +0200245 N_("number must be greater or equal to zero"));
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200246 return -1;
247 }
248 }
249
250 return 0;
251}
252
Bram Moolenaardd8aca62013-05-29 22:36:10 +0200253 static int
254add_string(PyObject *list, char *s)
255{
256 PyObject *string;
257
258 if (!(string = PyString_FromString(s)))
259 return -1;
Bram Moolenaar808c2bc2013-06-23 13:11:18 +0200260
Bram Moolenaardd8aca62013-05-29 22:36:10 +0200261 if (PyList_Append(list, string))
262 {
263 Py_DECREF(string);
264 return -1;
265 }
266
267 Py_DECREF(string);
268 return 0;
269}
270
271 static PyObject *
272ObjectDir(PyObject *self, char **attributes)
273{
274 PyMethodDef *method;
275 char **attr;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200276 PyObject *ret;
Bram Moolenaardd8aca62013-05-29 22:36:10 +0200277
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200278 if (!(ret = PyList_New(0)))
Bram Moolenaardd8aca62013-05-29 22:36:10 +0200279 return NULL;
280
281 if (self)
282 for (method = self->ob_type->tp_methods ; method->ml_name != NULL ; ++method)
Bram Moolenaar41009372013-07-01 22:03:04 +0200283 if (add_string(ret, (char *)method->ml_name))
Bram Moolenaardd8aca62013-05-29 22:36:10 +0200284 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200285 Py_DECREF(ret);
Bram Moolenaardd8aca62013-05-29 22:36:10 +0200286 return NULL;
287 }
288
289 for (attr = attributes ; *attr ; ++attr)
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200290 if (add_string(ret, *attr))
Bram Moolenaardd8aca62013-05-29 22:36:10 +0200291 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200292 Py_DECREF(ret);
Bram Moolenaardd8aca62013-05-29 22:36:10 +0200293 return NULL;
294 }
295
296#if PY_MAJOR_VERSION < 3
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200297 if (add_string(ret, "__members__"))
Bram Moolenaardd8aca62013-05-29 22:36:10 +0200298 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200299 Py_DECREF(ret);
Bram Moolenaardd8aca62013-05-29 22:36:10 +0200300 return NULL;
301 }
302#endif
303
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200304 return ret;
Bram Moolenaardd8aca62013-05-29 22:36:10 +0200305}
306
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100307// Output buffer management
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200308
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100309// Function to write a line, points to either msg() or emsg().
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200310typedef void (*writefn)(char_u *);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +0200311
312static PyTypeObject OutputType;
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200313
314typedef struct
315{
316 PyObject_HEAD
317 long softspace;
318 long error;
319} OutputObject;
320
Bram Moolenaardd8aca62013-05-29 22:36:10 +0200321static char *OutputAttrs[] = {
322 "softspace",
323 NULL
324};
325
326 static PyObject *
327OutputDir(PyObject *self)
328{
329 return ObjectDir(self, OutputAttrs);
330}
331
Bram Moolenaar77045652012-09-21 13:46:06 +0200332 static int
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200333OutputSetattr(OutputObject *self, char *name, PyObject *valObject)
Bram Moolenaar77045652012-09-21 13:46:06 +0200334{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200335 if (valObject == NULL)
Bram Moolenaar77045652012-09-21 13:46:06 +0200336 {
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +0200337 PyErr_SET_STRING(PyExc_AttributeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +0200338 N_("can't delete OutputObject attributes"));
Bram Moolenaar77045652012-09-21 13:46:06 +0200339 return -1;
340 }
341
342 if (strcmp(name, "softspace") == 0)
343 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200344 if (NumberToLong(valObject, &(self->softspace), NUMBER_UNSIGNED))
Bram Moolenaar77045652012-09-21 13:46:06 +0200345 return -1;
Bram Moolenaar77045652012-09-21 13:46:06 +0200346 return 0;
347 }
348
Bram Moolenaar6f1404f2013-06-23 16:04:08 +0200349 PyErr_FORMAT(PyExc_AttributeError, N_("invalid attribute: %s"), name);
Bram Moolenaar77045652012-09-21 13:46:06 +0200350 return -1;
351}
352
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100353// Buffer IO, we write one whole line at a time.
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +0200354static garray_T io_ga = {0, 0, 1, 80, NULL};
355static writefn old_fn = NULL;
356
357 static void
358PythonIO_Flush(void)
359{
360 if (old_fn != NULL && io_ga.ga_len > 0)
361 {
362 ((char_u *)io_ga.ga_data)[io_ga.ga_len] = NUL;
363 old_fn((char_u *)io_ga.ga_data);
364 }
365 io_ga.ga_len = 0;
366}
367
368 static void
369writer(writefn fn, char_u *str, PyInt n)
370{
371 char_u *ptr;
372
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100373 // Flush when switching output function.
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +0200374 if (fn != old_fn)
375 PythonIO_Flush();
376 old_fn = fn;
377
Bram Moolenaarb98678a2019-10-19 15:18:44 +0200378 // Write each NL separated line. Text after the last NL is kept for
379 // writing later.
380 // For normal messages: Do not output when "got_int" was set. This avoids
381 // a loop gone crazy flooding the terminal with messages. Also for when
382 // "q" is pressed at the more-prompt.
383 while (n > 0 && (ptr = memchr(str, '\n', n)) != NULL
384 && (fn == (writefn)emsg || !got_int))
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +0200385 {
386 PyInt len = ptr - str;
387
388 if (ga_grow(&io_ga, (int)(len + 1)) == FAIL)
389 break;
390
391 mch_memmove(((char *)io_ga.ga_data) + io_ga.ga_len, str, (size_t)len);
392 ((char *)io_ga.ga_data)[io_ga.ga_len + len] = NUL;
393 fn((char_u *)io_ga.ga_data);
394 str = ptr + 1;
395 n -= len + 1;
396 io_ga.ga_len = 0;
397 }
398
Bram Moolenaarb98678a2019-10-19 15:18:44 +0200399 // Put the remaining text into io_ga for later printing.
400 if (n > 0 && (fn == (writefn)emsg || !got_int)
401 && ga_grow(&io_ga, (int)(n + 1)) == OK)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +0200402 {
403 mch_memmove(((char *)io_ga.ga_data) + io_ga.ga_len, str, (size_t)n);
404 io_ga.ga_len += (int)n;
405 }
406}
407
Bram Moolenaar6c85e7f2013-06-23 12:51:32 +0200408 static int
409write_output(OutputObject *self, PyObject *string)
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200410{
Bram Moolenaar6c85e7f2013-06-23 12:51:32 +0200411 Py_ssize_t len = 0;
412 char *str = NULL;
413 int error = self->error;
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200414
Bram Moolenaar6c85e7f2013-06-23 12:51:32 +0200415 if (!PyArg_Parse(string, "et#", ENC_OPT, &str, &len))
416 return -1;
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200417
418 Py_BEGIN_ALLOW_THREADS
419 Python_Lock_Vim();
Bram Moolenaar7f3a2842019-05-18 15:02:25 +0200420 if (error)
421 emsg_severe = TRUE;
Bram Moolenaar32526b32019-01-19 17:43:09 +0100422 writer((writefn)(error ? emsg : msg), (char_u *)str, len);
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200423 Python_Release_Vim();
424 Py_END_ALLOW_THREADS
Bram Moolenaar19e60942011-06-19 00:27:51 +0200425 PyMem_Free(str);
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200426
Bram Moolenaar6c85e7f2013-06-23 12:51:32 +0200427 return 0;
428}
429
430 static PyObject *
431OutputWrite(OutputObject *self, PyObject *string)
432{
433 if (write_output(self, string))
434 return NULL;
435
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200436 Py_INCREF(Py_None);
437 return Py_None;
438}
439
440 static PyObject *
Bram Moolenaar6c85e7f2013-06-23 12:51:32 +0200441OutputWritelines(OutputObject *self, PyObject *seq)
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200442{
Bram Moolenaar01a7a722013-05-30 12:26:58 +0200443 PyObject *iterator;
444 PyObject *item;
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200445
Bram Moolenaar01a7a722013-05-30 12:26:58 +0200446 if (!(iterator = PyObject_GetIter(seq)))
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200447 return NULL;
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200448
Bram Moolenaar01a7a722013-05-30 12:26:58 +0200449 while ((item = PyIter_Next(iterator)))
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200450 {
Bram Moolenaar6c85e7f2013-06-23 12:51:32 +0200451 if (write_output(self, item))
Bram Moolenaardb913952012-06-29 12:54:53 +0200452 {
Bram Moolenaar01a7a722013-05-30 12:26:58 +0200453 Py_DECREF(iterator);
454 Py_DECREF(item);
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200455 return NULL;
456 }
Bram Moolenaar01a7a722013-05-30 12:26:58 +0200457 Py_DECREF(item);
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200458 }
459
Bram Moolenaar01a7a722013-05-30 12:26:58 +0200460 Py_DECREF(iterator);
461
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100462 // Iterator may have finished due to an exception
Bram Moolenaar01a7a722013-05-30 12:26:58 +0200463 if (PyErr_Occurred())
464 return NULL;
465
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200466 Py_INCREF(Py_None);
467 return Py_None;
468}
469
Bram Moolenaara29a37d2011-03-22 15:47:44 +0100470 static PyObject *
Bram Moolenaard4247472015-11-02 13:28:59 +0100471AlwaysNone(PyObject *self UNUSED)
Bram Moolenaara29a37d2011-03-22 15:47:44 +0100472{
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100473 // do nothing
Bram Moolenaara29a37d2011-03-22 15:47:44 +0100474 Py_INCREF(Py_None);
475 return Py_None;
476}
477
Bram Moolenaard4247472015-11-02 13:28:59 +0100478 static PyObject *
479AlwaysFalse(PyObject *self UNUSED)
480{
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100481 // do nothing
Bram Moolenaare7427f42015-11-10 13:24:20 +0100482 PyObject *ret = Py_False;
483 Py_INCREF(ret);
484 return ret;
Bram Moolenaard4247472015-11-02 13:28:59 +0100485}
486
487 static PyObject *
488AlwaysTrue(PyObject *self UNUSED)
489{
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100490 // do nothing
Bram Moolenaare7427f42015-11-10 13:24:20 +0100491 PyObject *ret = Py_True;
492 Py_INCREF(ret);
493 return ret;
Bram Moolenaard4247472015-11-02 13:28:59 +0100494}
495
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200496/***************/
497
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +0200498static struct PyMethodDef OutputMethods[] = {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100499 // name, function, calling, doc
Bram Moolenaar6c85e7f2013-06-23 12:51:32 +0200500 {"write", (PyCFunction)OutputWrite, METH_O, ""},
501 {"writelines", (PyCFunction)OutputWritelines, METH_O, ""},
Bram Moolenaard4247472015-11-02 13:28:59 +0100502 {"flush", (PyCFunction)AlwaysNone, METH_NOARGS, ""},
503 {"close", (PyCFunction)AlwaysNone, METH_NOARGS, ""},
504 {"isatty", (PyCFunction)AlwaysFalse, METH_NOARGS, ""},
505 {"readable", (PyCFunction)AlwaysFalse, METH_NOARGS, ""},
506 {"seekable", (PyCFunction)AlwaysFalse, METH_NOARGS, ""},
507 {"writable", (PyCFunction)AlwaysTrue, METH_NOARGS, ""},
Bram Moolenaar6d4431e2016-04-21 20:00:56 +0200508 {"closed", (PyCFunction)AlwaysFalse, METH_NOARGS, ""},
Bram Moolenaardd8aca62013-05-29 22:36:10 +0200509 {"__dir__", (PyCFunction)OutputDir, METH_NOARGS, ""},
Bram Moolenaar182dc4f2013-05-21 19:01:55 +0200510 { NULL, NULL, 0, NULL}
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +0200511};
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200512
513static OutputObject Output =
514{
515 PyObject_HEAD_INIT(&OutputType)
516 0,
517 0
518};
519
520static OutputObject Error =
521{
522 PyObject_HEAD_INIT(&OutputType)
523 0,
524 1
525};
526
527 static int
528PythonIO_Init_io(void)
529{
Bram Moolenaarc1ba10c2013-06-10 20:39:03 +0200530 if (PySys_SetObject("stdout", (PyObject *)(void *)&Output))
531 return -1;
532 if (PySys_SetObject("stderr", (PyObject *)(void *)&Error))
533 return -1;
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200534
535 if (PyErr_Occurred())
536 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100537 emsg(_("E264: Python: Error initialising I/O objects"));
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200538 return -1;
539 }
540
541 return 0;
542}
543
Bram Moolenaar79a494d2018-07-22 04:30:21 +0200544#if PY_VERSION_HEX < 0x030700f0
Bram Moolenaar447bd5a2018-08-07 19:45:27 +0200545static PyObject *call_load_module(char *name, int len, PyObject *find_module_result);
546
Bram Moolenaar81c40c52013-06-12 14:41:04 +0200547typedef struct
548{
549 PyObject_HEAD
Bram Moolenaar447bd5a2018-08-07 19:45:27 +0200550 char *fullname;
551 PyObject *result;
Bram Moolenaar81c40c52013-06-12 14:41:04 +0200552} LoaderObject;
553static PyTypeObject LoaderType;
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200554
Bram Moolenaar81c40c52013-06-12 14:41:04 +0200555 static void
556LoaderDestructor(LoaderObject *self)
557{
Bram Moolenaar447bd5a2018-08-07 19:45:27 +0200558 vim_free(self->fullname);
559 Py_XDECREF(self->result);
Bram Moolenaar81c40c52013-06-12 14:41:04 +0200560 DESTRUCTOR_FINISH(self);
561}
562
563 static PyObject *
564LoaderLoadModule(LoaderObject *self, PyObject *args UNUSED)
565{
Bram Moolenaar447bd5a2018-08-07 19:45:27 +0200566 char *fullname = self->fullname;
567 PyObject *result = self->result;
568 PyObject *module;
Bram Moolenaar81c40c52013-06-12 14:41:04 +0200569
Bram Moolenaar447bd5a2018-08-07 19:45:27 +0200570 if (!fullname)
571 {
572 module = result ? result : Py_None;
573 Py_INCREF(module);
574 return module;
575 }
576
577 module = call_load_module(fullname, (int)STRLEN(fullname), result);
578
579 self->fullname = NULL;
580 self->result = module;
581
582 vim_free(fullname);
583 Py_DECREF(result);
584
585 if (!module)
586 {
587 if (PyErr_Occurred())
588 return NULL;
589
590 Py_INCREF(Py_None);
591 return Py_None;
592 }
593
594 Py_INCREF(module);
595 return module;
Bram Moolenaar81c40c52013-06-12 14:41:04 +0200596}
597
598static struct PyMethodDef LoaderMethods[] = {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100599 // name, function, calling, doc
Bram Moolenaar81c40c52013-06-12 14:41:04 +0200600 {"load_module", (PyCFunction)LoaderLoadModule, METH_VARARGS, ""},
601 { NULL, NULL, 0, NULL}
602};
Bram Moolenaar79a494d2018-07-22 04:30:21 +0200603#endif
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200604
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100605/*
606 * Check to see whether a Vim error has been reported, or a keyboard
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200607 * interrupt has been detected.
608 */
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200609 static void
610VimTryStart(void)
611{
612 ++trylevel;
613}
614
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200615 static int
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200616VimTryEnd(void)
617{
618 --trylevel;
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100619 // Without this it stops processing all subsequent Vim script commands and
620 // generates strange error messages if I e.g. try calling Test() in a cycle
Bram Moolenaar841fbd22013-06-23 14:37:07 +0200621 did_emsg = FALSE;
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100622 // Keyboard interrupt should be preferred over anything else
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200623 if (got_int)
624 {
Bram Moolenaar4315f262014-01-31 14:54:04 +0100625 if (did_throw)
Bram Moolenaard6b8a522013-11-11 01:05:48 +0100626 discard_current_exception();
Bram Moolenaard6b8a522013-11-11 01:05:48 +0100627 got_int = FALSE;
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200628 PyErr_SetNone(PyExc_KeyboardInterrupt);
Bram Moolenaar841fbd22013-06-23 14:37:07 +0200629 return -1;
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200630 }
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100631 else if (msg_list != NULL && *msg_list != NULL)
632 {
633 int should_free;
Bram Moolenaarb1443b42019-01-13 23:51:14 +0100634 char *msg;
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100635
636 msg = get_exception_string(*msg_list, ET_ERROR, NULL, &should_free);
637
638 if (msg == NULL)
639 {
640 PyErr_NoMemory();
641 return -1;
642 }
643
Bram Moolenaarb1443b42019-01-13 23:51:14 +0100644 PyErr_SetVim(msg);
Bram Moolenaar9fee7d42013-11-28 17:04:43 +0100645
646 free_global_msglist();
647
648 if (should_free)
649 vim_free(msg);
650
651 return -1;
652 }
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200653 else if (!did_throw)
Bram Moolenaar841fbd22013-06-23 14:37:07 +0200654 return (PyErr_Occurred() ? -1 : 0);
Bram Moolenaar86181df2020-05-11 23:14:04 +0200655 // Python exception is preferred over Vim one; unlikely to occur though
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200656 else if (PyErr_Occurred())
Bram Moolenaar841fbd22013-06-23 14:37:07 +0200657 {
Bram Moolenaar4315f262014-01-31 14:54:04 +0100658 discard_current_exception();
Bram Moolenaar841fbd22013-06-23 14:37:07 +0200659 return -1;
660 }
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100661 // Finally transform Vim script exception to python one
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200662 else
663 {
Bram Moolenaar41009372013-07-01 22:03:04 +0200664 PyErr_SetVim((char *)current_exception->value);
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200665 discard_current_exception();
Bram Moolenaar841fbd22013-06-23 14:37:07 +0200666 return -1;
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200667 }
668}
669
670 static int
671VimCheckInterrupt(void)
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200672{
673 if (got_int)
674 {
675 PyErr_SetNone(PyExc_KeyboardInterrupt);
676 return 1;
677 }
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200678 return 0;
679}
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200680
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100681// Vim module - Implementation
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +0200682
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200683 static PyObject *
Bram Moolenaar389a1792013-06-23 13:00:44 +0200684VimCommand(PyObject *self UNUSED, PyObject *string)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200685{
Bram Moolenaar389a1792013-06-23 13:00:44 +0200686 char_u *cmd;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200687 PyObject *ret;
Bram Moolenaar389a1792013-06-23 13:00:44 +0200688 PyObject *todecref;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200689
Bram Moolenaar389a1792013-06-23 13:00:44 +0200690 if (!(cmd = StringToChars(string, &todecref)))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200691 return NULL;
692
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200693 Py_BEGIN_ALLOW_THREADS
694 Python_Lock_Vim();
695
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200696 VimTryStart();
Bram Moolenaar389a1792013-06-23 13:00:44 +0200697 do_cmdline_cmd(cmd);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200698 update_screen(VALID);
699
700 Python_Release_Vim();
701 Py_END_ALLOW_THREADS
702
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200703 if (VimTryEnd())
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200704 ret = NULL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200705 else
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200706 ret = Py_None;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200707
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200708 Py_XINCREF(ret);
Bram Moolenaar389a1792013-06-23 13:00:44 +0200709 Py_XDECREF(todecref);
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200710 return ret;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200711}
712
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200713/*
714 * Function to translate a typval_T into a PyObject; this will recursively
715 * translate lists/dictionaries into their Python equivalents.
716 *
717 * The depth parameter is to avoid infinite recursion, set it to 1 when
718 * you call VimToPython.
719 */
720 static PyObject *
Bram Moolenaarb38caae2013-05-29 22:39:52 +0200721VimToPython(typval_T *our_tv, int depth, PyObject *lookup_dict)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200722{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200723 PyObject *ret;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200724 PyObject *newObj;
Bram Moolenaardb913952012-06-29 12:54:53 +0200725 char ptrBuf[sizeof(void *) * 2 + 3];
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200726
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100727 // Avoid infinite recursion
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200728 if (depth > 100)
729 {
730 Py_INCREF(Py_None);
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200731 ret = Py_None;
732 return ret;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200733 }
734
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100735 // Check if we run into a recursive loop. The item must be in lookup_dict
736 // then and we can use it again.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200737 if ((our_tv->v_type == VAR_LIST && our_tv->vval.v_list != NULL)
738 || (our_tv->v_type == VAR_DICT && our_tv->vval.v_dict != NULL))
739 {
Bram Moolenaardb913952012-06-29 12:54:53 +0200740 sprintf(ptrBuf, "%p",
741 our_tv->v_type == VAR_LIST ? (void *)our_tv->vval.v_list
742 : (void *)our_tv->vval.v_dict);
Bram Moolenaar21642ed2013-05-29 22:20:01 +0200743
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200744 if ((ret = PyDict_GetItemString(lookup_dict, ptrBuf)))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200745 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200746 Py_INCREF(ret);
747 return ret;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200748 }
749 }
750
751 if (our_tv->v_type == VAR_STRING)
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200752 ret = PyString_FromString(our_tv->vval.v_string == NULL
Bram Moolenaard1f13fd2012-10-05 21:30:07 +0200753 ? "" : (char *)our_tv->vval.v_string);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200754 else if (our_tv->v_type == VAR_NUMBER)
755 {
756 char buf[NUMBUFLEN];
757
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100758 // For backwards compatibility numbers are stored as strings.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200759 sprintf(buf, "%ld", (long)our_tv->vval.v_number);
Bram Moolenaar41009372013-07-01 22:03:04 +0200760 ret = PyString_FromString((char *)buf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200761 }
Bram Moolenaarb999ba22019-02-14 13:28:45 +0100762#ifdef FEAT_FLOAT
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200763 else if (our_tv->v_type == VAR_FLOAT)
764 {
765 char buf[NUMBUFLEN];
766
767 sprintf(buf, "%f", our_tv->vval.v_float);
Bram Moolenaar41009372013-07-01 22:03:04 +0200768 ret = PyString_FromString((char *)buf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200769 }
Bram Moolenaarb999ba22019-02-14 13:28:45 +0100770#endif
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200771 else if (our_tv->v_type == VAR_LIST)
772 {
773 list_T *list = our_tv->vval.v_list;
774 listitem_T *curr;
775
Bram Moolenaar21642ed2013-05-29 22:20:01 +0200776 if (list == NULL)
777 return NULL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200778
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200779 if (!(ret = PyList_New(0)))
Bram Moolenaar21642ed2013-05-29 22:20:01 +0200780 return NULL;
781
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200782 if (PyDict_SetItemString(lookup_dict, ptrBuf, ret))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200783 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200784 Py_DECREF(ret);
Bram Moolenaar21642ed2013-05-29 22:20:01 +0200785 return NULL;
786 }
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200787
Bram Moolenaar7e9f3512020-05-13 22:44:22 +0200788 CHECK_LIST_MATERIALIZE(list);
Bram Moolenaaraeea7212020-04-02 18:50:46 +0200789 FOR_ALL_LIST_ITEMS(list, curr)
Bram Moolenaar21642ed2013-05-29 22:20:01 +0200790 {
Bram Moolenaarb38caae2013-05-29 22:39:52 +0200791 if (!(newObj = VimToPython(&curr->li_tv, depth + 1, lookup_dict)))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200792 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200793 Py_DECREF(ret);
Bram Moolenaar21642ed2013-05-29 22:20:01 +0200794 return NULL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200795 }
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200796 if (PyList_Append(ret, newObj))
Bram Moolenaar21642ed2013-05-29 22:20:01 +0200797 {
798 Py_DECREF(newObj);
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200799 Py_DECREF(ret);
Bram Moolenaar21642ed2013-05-29 22:20:01 +0200800 return NULL;
801 }
802 Py_DECREF(newObj);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200803 }
804 }
805 else if (our_tv->v_type == VAR_DICT)
806 {
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200807
Bram Moolenaar24a6ff82015-02-10 18:41:58 +0100808 hashtab_T *ht;
809 long_u todo;
Bram Moolenaar21642ed2013-05-29 22:20:01 +0200810 hashitem_T *hi;
811 dictitem_T *di;
Bram Moolenaar24a6ff82015-02-10 18:41:58 +0100812
Bram Moolenaar21642ed2013-05-29 22:20:01 +0200813 if (our_tv->vval.v_dict == NULL)
814 return NULL;
Bram Moolenaar24a6ff82015-02-10 18:41:58 +0100815 ht = &our_tv->vval.v_dict->dv_hashtab;
Bram Moolenaar21642ed2013-05-29 22:20:01 +0200816
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200817 if (!(ret = PyDict_New()))
Bram Moolenaar21642ed2013-05-29 22:20:01 +0200818 return NULL;
819
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200820 if (PyDict_SetItemString(lookup_dict, ptrBuf, ret))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200821 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200822 Py_DECREF(ret);
Bram Moolenaar21642ed2013-05-29 22:20:01 +0200823 return NULL;
824 }
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200825
Bram Moolenaar24a6ff82015-02-10 18:41:58 +0100826 todo = ht->ht_used;
Bram Moolenaar21642ed2013-05-29 22:20:01 +0200827 for (hi = ht->ht_array; todo > 0; ++hi)
828 {
829 if (!HASHITEM_EMPTY(hi))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200830 {
Bram Moolenaar21642ed2013-05-29 22:20:01 +0200831 --todo;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200832
Bram Moolenaar21642ed2013-05-29 22:20:01 +0200833 di = dict_lookup(hi);
Bram Moolenaarb38caae2013-05-29 22:39:52 +0200834 if (!(newObj = VimToPython(&di->di_tv, depth + 1, lookup_dict)))
Bram Moolenaar21642ed2013-05-29 22:20:01 +0200835 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200836 Py_DECREF(ret);
Bram Moolenaar21642ed2013-05-29 22:20:01 +0200837 return NULL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200838 }
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200839 if (PyDict_SetItemString(ret, (char *)hi->hi_key, newObj))
Bram Moolenaar21642ed2013-05-29 22:20:01 +0200840 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200841 Py_DECREF(ret);
Bram Moolenaar21642ed2013-05-29 22:20:01 +0200842 Py_DECREF(newObj);
843 return NULL;
844 }
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200845 }
846 }
847 }
Bram Moolenaar9b4a15d2020-01-11 16:05:23 +0100848 else if (our_tv->v_type == VAR_BOOL)
Bram Moolenaar520e1e42016-01-23 19:46:28 +0100849 {
850 if (our_tv->vval.v_number == VVAL_FALSE)
851 {
852 ret = Py_False;
853 Py_INCREF(ret);
854 }
Bram Moolenaar9b4a15d2020-01-11 16:05:23 +0100855 else
Bram Moolenaar520e1e42016-01-23 19:46:28 +0100856 {
857 ret = Py_True;
858 Py_INCREF(ret);
859 }
Bram Moolenaar9b4a15d2020-01-11 16:05:23 +0100860 return ret;
861 }
862 else if (our_tv->v_type == VAR_SPECIAL)
863 {
864 Py_INCREF(Py_None);
865 ret = Py_None;
Bram Moolenaar520e1e42016-01-23 19:46:28 +0100866 return ret;
867 }
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +0100868 else if (our_tv->v_type == VAR_BLOB)
869 ret = PyBytes_FromStringAndSize(
870 (char*) our_tv->vval.v_blob->bv_ga.ga_data,
871 (Py_ssize_t) our_tv->vval.v_blob->bv_ga.ga_len);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200872 else
873 {
874 Py_INCREF(Py_None);
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200875 ret = Py_None;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200876 }
877
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200878 return ret;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200879}
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200880
881 static PyObject *
Bram Moolenaar774267b2013-05-21 20:51:59 +0200882VimEval(PyObject *self UNUSED, PyObject *args)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200883{
Bram Moolenaar389a1792013-06-23 13:00:44 +0200884 char_u *expr;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200885 typval_T *our_tv;
Bram Moolenaar389a1792013-06-23 13:00:44 +0200886 PyObject *string;
887 PyObject *todecref;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200888 PyObject *ret;
Bram Moolenaar389a1792013-06-23 13:00:44 +0200889 PyObject *lookup_dict;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200890
Bram Moolenaar389a1792013-06-23 13:00:44 +0200891 if (!PyArg_ParseTuple(args, "O", &string))
892 return NULL;
893
894 if (!(expr = StringToChars(string, &todecref)))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200895 return NULL;
896
897 Py_BEGIN_ALLOW_THREADS
898 Python_Lock_Vim();
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200899 VimTryStart();
Bram Moolenaar389a1792013-06-23 13:00:44 +0200900 our_tv = eval_expr(expr, NULL);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200901 Python_Release_Vim();
902 Py_END_ALLOW_THREADS
903
Bram Moolenaar389a1792013-06-23 13:00:44 +0200904 Py_XDECREF(todecref);
905
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200906 if (VimTryEnd())
907 return NULL;
908
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200909 if (our_tv == NULL)
910 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +0200911 PyErr_SET_VIM(N_("invalid expression"));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200912 return NULL;
913 }
914
Bram Moolenaar9bf703d2019-11-30 19:44:38 +0100915 // Convert the Vim type into a Python type. Create a dictionary that's
916 // used to check for recursive loops.
Bram Moolenaar9bb77d62013-05-30 12:14:49 +0200917 if (!(lookup_dict = PyDict_New()))
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200918 ret = NULL;
Bram Moolenaar9bb77d62013-05-30 12:14:49 +0200919 else
920 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200921 ret = VimToPython(our_tv, 1, lookup_dict);
Bram Moolenaar9bb77d62013-05-30 12:14:49 +0200922 Py_DECREF(lookup_dict);
923 }
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200924
925
926 Py_BEGIN_ALLOW_THREADS
927 Python_Lock_Vim();
928 free_tv(our_tv);
929 Python_Release_Vim();
930 Py_END_ALLOW_THREADS
931
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200932 return ret;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200933}
934
Bram Moolenaardb913952012-06-29 12:54:53 +0200935static PyObject *ConvertToPyObject(typval_T *);
936
937 static PyObject *
Bram Moolenaar389a1792013-06-23 13:00:44 +0200938VimEvalPy(PyObject *self UNUSED, PyObject *string)
Bram Moolenaardb913952012-06-29 12:54:53 +0200939{
Bram Moolenaardb913952012-06-29 12:54:53 +0200940 typval_T *our_tv;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200941 PyObject *ret;
Bram Moolenaar389a1792013-06-23 13:00:44 +0200942 char_u *expr;
943 PyObject *todecref;
Bram Moolenaardb913952012-06-29 12:54:53 +0200944
Bram Moolenaar389a1792013-06-23 13:00:44 +0200945 if (!(expr = StringToChars(string, &todecref)))
Bram Moolenaardb913952012-06-29 12:54:53 +0200946 return NULL;
947
948 Py_BEGIN_ALLOW_THREADS
949 Python_Lock_Vim();
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200950 VimTryStart();
Bram Moolenaar389a1792013-06-23 13:00:44 +0200951 our_tv = eval_expr(expr, NULL);
Bram Moolenaardb913952012-06-29 12:54:53 +0200952 Python_Release_Vim();
953 Py_END_ALLOW_THREADS
954
Bram Moolenaar389a1792013-06-23 13:00:44 +0200955 Py_XDECREF(todecref);
956
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200957 if (VimTryEnd())
958 return NULL;
959
Bram Moolenaardb913952012-06-29 12:54:53 +0200960 if (our_tv == NULL)
961 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +0200962 PyErr_SET_VIM(N_("invalid expression"));
Bram Moolenaardb913952012-06-29 12:54:53 +0200963 return NULL;
964 }
965
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200966 ret = ConvertToPyObject(our_tv);
Bram Moolenaardb913952012-06-29 12:54:53 +0200967 Py_BEGIN_ALLOW_THREADS
968 Python_Lock_Vim();
969 free_tv(our_tv);
970 Python_Release_Vim();
971 Py_END_ALLOW_THREADS
972
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200973 return ret;
Bram Moolenaardb913952012-06-29 12:54:53 +0200974}
975
976 static PyObject *
Bram Moolenaar389a1792013-06-23 13:00:44 +0200977VimStrwidth(PyObject *self UNUSED, PyObject *string)
Bram Moolenaardb913952012-06-29 12:54:53 +0200978{
Bram Moolenaar389a1792013-06-23 13:00:44 +0200979 char_u *str;
980 PyObject *todecref;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200981 int len;
Bram Moolenaardb913952012-06-29 12:54:53 +0200982
Bram Moolenaar389a1792013-06-23 13:00:44 +0200983 if (!(str = StringToChars(string, &todecref)))
Bram Moolenaardb913952012-06-29 12:54:53 +0200984 return NULL;
985
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200986 len = mb_string2cells(str, (int)STRLEN(str));
Bram Moolenaar389a1792013-06-23 13:00:44 +0200987
988 Py_XDECREF(todecref);
989
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200990 return PyLong_FromLong(len);
Bram Moolenaardb913952012-06-29 12:54:53 +0200991}
992
Bram Moolenaarf4258302013-06-02 18:20:17 +0200993 static PyObject *
994_VimChdir(PyObject *_chdir, PyObject *args, PyObject *kwargs)
995{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +0200996 PyObject *ret;
Bram Moolenaarf4258302013-06-02 18:20:17 +0200997 PyObject *newwd;
998 PyObject *todecref;
999 char_u *new_dir;
1000
Bram Moolenaard4209d22013-06-05 20:34:15 +02001001 if (_chdir == NULL)
1002 return NULL;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001003 if (!(ret = PyObject_Call(_chdir, args, kwargs)))
Bram Moolenaarf4258302013-06-02 18:20:17 +02001004 return NULL;
1005
1006 if (!(newwd = PyObject_CallFunctionObjArgs(py_getcwd, NULL)))
1007 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001008 Py_DECREF(ret);
Bram Moolenaarf4258302013-06-02 18:20:17 +02001009 return NULL;
1010 }
1011
1012 if (!(new_dir = StringToChars(newwd, &todecref)))
1013 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001014 Py_DECREF(ret);
Bram Moolenaarf4258302013-06-02 18:20:17 +02001015 Py_DECREF(newwd);
1016 return NULL;
1017 }
1018
1019 VimTryStart();
1020
1021 if (vim_chdir(new_dir))
1022 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001023 Py_DECREF(ret);
Bram Moolenaarf4258302013-06-02 18:20:17 +02001024 Py_DECREF(newwd);
1025 Py_XDECREF(todecref);
1026
1027 if (VimTryEnd())
1028 return NULL;
1029
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02001030 PyErr_SET_VIM(N_("failed to change directory"));
Bram Moolenaarf4258302013-06-02 18:20:17 +02001031 return NULL;
1032 }
1033
1034 Py_DECREF(newwd);
1035 Py_XDECREF(todecref);
1036
Bram Moolenaar1063f3d2019-05-07 22:06:52 +02001037 post_chdir(CDSCOPE_GLOBAL);
Bram Moolenaarf4258302013-06-02 18:20:17 +02001038
1039 if (VimTryEnd())
1040 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001041 Py_DECREF(ret);
Bram Moolenaarf4258302013-06-02 18:20:17 +02001042 return NULL;
1043 }
1044
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001045 return ret;
Bram Moolenaarf4258302013-06-02 18:20:17 +02001046}
1047
1048 static PyObject *
1049VimChdir(PyObject *self UNUSED, PyObject *args, PyObject *kwargs)
1050{
1051 return _VimChdir(py_chdir, args, kwargs);
1052}
1053
1054 static PyObject *
1055VimFchdir(PyObject *self UNUSED, PyObject *args, PyObject *kwargs)
1056{
1057 return _VimChdir(py_fchdir, args, kwargs);
1058}
1059
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001060typedef struct {
1061 PyObject *callable;
1062 PyObject *result;
1063} map_rtp_data;
1064
1065 static void
1066map_rtp_callback(char_u *path, void *_data)
1067{
1068 void **data = (void **) _data;
1069 PyObject *pathObject;
1070 map_rtp_data *mr_data = *((map_rtp_data **) data);
1071
Bram Moolenaar41009372013-07-01 22:03:04 +02001072 if (!(pathObject = PyString_FromString((char *)path)))
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001073 {
1074 *data = NULL;
1075 return;
1076 }
1077
1078 mr_data->result = PyObject_CallFunctionObjArgs(mr_data->callable,
1079 pathObject, NULL);
1080
1081 Py_DECREF(pathObject);
1082
1083 if (!mr_data->result || mr_data->result != Py_None)
1084 *data = NULL;
1085 else
1086 {
1087 Py_DECREF(mr_data->result);
1088 mr_data->result = NULL;
1089 }
1090}
1091
1092 static PyObject *
Bram Moolenaar389a1792013-06-23 13:00:44 +02001093VimForeachRTP(PyObject *self UNUSED, PyObject *callable)
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001094{
1095 map_rtp_data data;
1096
Bram Moolenaar389a1792013-06-23 13:00:44 +02001097 data.callable = callable;
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001098 data.result = NULL;
1099
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01001100 do_in_runtimepath(NULL, 0, &map_rtp_callback, &data);
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001101
1102 if (data.result == NULL)
1103 {
1104 if (PyErr_Occurred())
1105 return NULL;
1106 else
1107 {
1108 Py_INCREF(Py_None);
1109 return Py_None;
1110 }
1111 }
1112 return data.result;
1113}
1114
1115/*
1116 * _vim_runtimepath_ special path implementation.
1117 */
1118
1119 static void
1120map_finder_callback(char_u *path, void *_data)
1121{
1122 void **data = (void **) _data;
1123 PyObject *list = *((PyObject **) data);
1124 PyObject *pathObject1, *pathObject2;
1125 char *pathbuf;
1126 size_t pathlen;
1127
1128 pathlen = STRLEN(path);
1129
1130#if PY_MAJOR_VERSION < 3
1131# define PY_MAIN_DIR_STRING "python2"
1132#else
1133# define PY_MAIN_DIR_STRING "python3"
1134#endif
1135#define PY_ALTERNATE_DIR_STRING "pythonx"
1136
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01001137#define PYTHONX_STRING_LENGTH 7 // STRLEN("pythonx")
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001138 if (!(pathbuf = PyMem_New(char,
1139 pathlen + STRLEN(PATHSEPSTR) + PYTHONX_STRING_LENGTH + 1)))
1140 {
1141 PyErr_NoMemory();
1142 *data = NULL;
1143 return;
1144 }
1145
1146 mch_memmove(pathbuf, path, pathlen + 1);
1147 add_pathsep((char_u *) pathbuf);
1148
1149 pathlen = STRLEN(pathbuf);
1150 mch_memmove(pathbuf + pathlen, PY_MAIN_DIR_STRING,
1151 PYTHONX_STRING_LENGTH + 1);
1152
1153 if (!(pathObject1 = PyString_FromString(pathbuf)))
1154 {
1155 *data = NULL;
1156 PyMem_Free(pathbuf);
1157 return;
1158 }
1159
1160 mch_memmove(pathbuf + pathlen, PY_ALTERNATE_DIR_STRING,
1161 PYTHONX_STRING_LENGTH + 1);
1162
1163 if (!(pathObject2 = PyString_FromString(pathbuf)))
1164 {
1165 Py_DECREF(pathObject1);
1166 PyMem_Free(pathbuf);
1167 *data = NULL;
1168 return;
1169 }
1170
1171 PyMem_Free(pathbuf);
1172
1173 if (PyList_Append(list, pathObject1)
1174 || PyList_Append(list, pathObject2))
1175 *data = NULL;
1176
1177 Py_DECREF(pathObject1);
1178 Py_DECREF(pathObject2);
1179}
1180
1181 static PyObject *
1182Vim_GetPaths(PyObject *self UNUSED)
1183{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001184 PyObject *ret;
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001185
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001186 if (!(ret = PyList_New(0)))
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001187 return NULL;
1188
Bram Moolenaar7f8989d2016-03-12 22:11:39 +01001189 do_in_runtimepath(NULL, 0, &map_finder_callback, ret);
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001190
1191 if (PyErr_Occurred())
1192 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001193 Py_DECREF(ret);
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001194 return NULL;
1195 }
1196
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001197 return ret;
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001198}
1199
Bram Moolenaar79a494d2018-07-22 04:30:21 +02001200#if PY_VERSION_HEX >= 0x030700f0
1201 static PyObject *
1202FinderFindSpec(PyObject *self, PyObject *args)
1203{
1204 char *fullname;
1205 PyObject *paths;
1206 PyObject *target = Py_None;
1207 PyObject *spec;
1208
1209 if (!PyArg_ParseTuple(args, "s|O", &fullname, &target))
1210 return NULL;
1211
1212 if (!(paths = Vim_GetPaths(self)))
1213 return NULL;
1214
Bram Moolenaarde5b3802019-03-30 12:51:22 +01001215 spec = PyObject_CallFunction(py_find_spec, "sOO", fullname, paths, target);
Bram Moolenaar79a494d2018-07-22 04:30:21 +02001216
1217 Py_DECREF(paths);
1218
1219 if (!spec)
1220 {
1221 if (PyErr_Occurred())
1222 return NULL;
1223
1224 Py_INCREF(Py_None);
1225 return Py_None;
1226 }
1227
1228 return spec;
1229}
Bram Moolenaar0b0ad352019-05-20 21:52:45 +02001230
1231 static PyObject *
1232FinderFindModule(PyObject* self UNUSED, PyObject* args UNUSED)
1233{
1234 // Apparently returning None works.
1235 Py_INCREF(Py_None);
1236 return Py_None;
1237}
Bram Moolenaar79a494d2018-07-22 04:30:21 +02001238#else
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001239 static PyObject *
1240call_load_module(char *name, int len, PyObject *find_module_result)
1241{
1242 PyObject *fd, *pathname, *description;
1243
Bram Moolenaarc476e522013-06-23 13:46:40 +02001244 if (!PyTuple_Check(find_module_result))
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001245 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02001246 PyErr_FORMAT(PyExc_TypeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02001247 N_("expected 3-tuple as imp.find_module() result, but got %s"),
Bram Moolenaarc476e522013-06-23 13:46:40 +02001248 Py_TYPE_NAME(find_module_result));
1249 return NULL;
1250 }
1251 if (PyTuple_GET_SIZE(find_module_result) != 3)
1252 {
1253 PyErr_FORMAT(PyExc_TypeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02001254 N_("expected 3-tuple as imp.find_module() result, but got "
1255 "tuple of size %d"),
Bram Moolenaarc476e522013-06-23 13:46:40 +02001256 (int) PyTuple_GET_SIZE(find_module_result));
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001257 return NULL;
1258 }
1259
1260 if (!(fd = PyTuple_GET_ITEM(find_module_result, 0))
1261 || !(pathname = PyTuple_GET_ITEM(find_module_result, 1))
1262 || !(description = PyTuple_GET_ITEM(find_module_result, 2)))
1263 {
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +02001264 PyErr_SET_STRING(PyExc_RuntimeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02001265 N_("internal error: imp.find_module returned tuple with NULL"));
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001266 return NULL;
1267 }
1268
1269 return PyObject_CallFunction(py_load_module,
1270 "s#OOO", name, len, fd, pathname, description);
1271}
1272
1273 static PyObject *
1274find_module(char *fullname, char *tail, PyObject *new_path)
1275{
1276 PyObject *find_module_result;
1277 PyObject *module;
1278 char *dot;
1279
Bram Moolenaar41009372013-07-01 22:03:04 +02001280 if ((dot = (char *)vim_strchr((char_u *) tail, '.')))
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001281 {
1282 /*
Bram Moolenaaredb07a22013-06-12 18:13:38 +02001283 * There is a dot in the name: call find_module recursively without the
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001284 * first component
1285 */
1286 PyObject *newest_path;
1287 int partlen = (int) (dot - 1 - tail);
1288
1289 if (!(find_module_result = PyObject_CallFunction(py_find_module,
1290 "s#O", tail, partlen, new_path)))
Bram Moolenaar447bd5a2018-08-07 19:45:27 +02001291 {
1292 if (PyErr_Occurred() && PyErr_ExceptionMatches(PyExc_ImportError))
1293 PyErr_Clear();
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001294 return NULL;
Bram Moolenaar447bd5a2018-08-07 19:45:27 +02001295 }
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001296
1297 if (!(module = call_load_module(
1298 fullname,
1299 ((int) (tail - fullname)) + partlen,
1300 find_module_result)))
1301 {
1302 Py_DECREF(find_module_result);
1303 return NULL;
1304 }
1305
1306 Py_DECREF(find_module_result);
1307
1308 if (!(newest_path = PyObject_GetAttrString(module, "__path__")))
1309 {
1310 Py_DECREF(module);
1311 return NULL;
1312 }
1313
1314 Py_DECREF(module);
1315
Bram Moolenaar447bd5a2018-08-07 19:45:27 +02001316 find_module_result = find_module(fullname, dot + 1, newest_path);
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001317
1318 Py_DECREF(newest_path);
1319
Bram Moolenaar447bd5a2018-08-07 19:45:27 +02001320 return find_module_result;
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001321 }
1322 else
1323 {
1324 if (!(find_module_result = PyObject_CallFunction(py_find_module,
1325 "sO", tail, new_path)))
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001326 {
Bram Moolenaar447bd5a2018-08-07 19:45:27 +02001327 if (PyErr_Occurred() && PyErr_ExceptionMatches(PyExc_ImportError))
1328 PyErr_Clear();
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001329 return NULL;
1330 }
1331
Bram Moolenaar447bd5a2018-08-07 19:45:27 +02001332 return find_module_result;
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001333 }
1334}
1335
1336 static PyObject *
1337FinderFindModule(PyObject *self, PyObject *args)
1338{
1339 char *fullname;
Bram Moolenaar447bd5a2018-08-07 19:45:27 +02001340 PyObject *result;
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001341 PyObject *new_path;
1342 LoaderObject *loader;
1343
1344 if (!PyArg_ParseTuple(args, "s", &fullname))
1345 return NULL;
1346
1347 if (!(new_path = Vim_GetPaths(self)))
1348 return NULL;
1349
Bram Moolenaar447bd5a2018-08-07 19:45:27 +02001350 result = find_module(fullname, fullname, new_path);
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001351
1352 Py_DECREF(new_path);
1353
Bram Moolenaar447bd5a2018-08-07 19:45:27 +02001354 if (!result)
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001355 {
Bram Moolenaar7e85d3d2013-06-23 16:40:39 +02001356 if (PyErr_Occurred())
Bram Moolenaar447bd5a2018-08-07 19:45:27 +02001357 return NULL;
Bram Moolenaar7e85d3d2013-06-23 16:40:39 +02001358
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001359 Py_INCREF(Py_None);
1360 return Py_None;
1361 }
1362
Bram Moolenaar447bd5a2018-08-07 19:45:27 +02001363 if (!(fullname = (char *)vim_strsave((char_u *)fullname)))
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001364 {
Bram Moolenaar447bd5a2018-08-07 19:45:27 +02001365 Py_DECREF(result);
1366 PyErr_NoMemory();
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001367 return NULL;
1368 }
1369
Bram Moolenaar447bd5a2018-08-07 19:45:27 +02001370 if (!(loader = PyObject_NEW(LoaderObject, &LoaderType)))
1371 {
1372 vim_free(fullname);
1373 Py_DECREF(result);
1374 return NULL;
1375 }
1376
1377 loader->fullname = fullname;
1378 loader->result = result;
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001379
1380 return (PyObject *) loader;
1381}
Bram Moolenaar79a494d2018-07-22 04:30:21 +02001382#endif
Bram Moolenaar81c40c52013-06-12 14:41:04 +02001383
1384 static PyObject *
1385VimPathHook(PyObject *self UNUSED, PyObject *args)
1386{
1387 char *path;
1388
1389 if (PyArg_ParseTuple(args, "s", &path)
1390 && STRCMP(path, vim_special_path) == 0)
1391 {
1392 Py_INCREF(vim_module);
1393 return vim_module;
1394 }
1395
1396 PyErr_Clear();
1397 PyErr_SetNone(PyExc_ImportError);
1398 return NULL;
1399}
1400
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001401/*
1402 * Vim module - Definitions
1403 */
1404
1405static struct PyMethodDef VimMethods[] = {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01001406 // name, function, calling, documentation
Bram Moolenaar389a1792013-06-23 13:00:44 +02001407 {"command", VimCommand, METH_O, "Execute a Vim ex-mode command" },
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001408 {"eval", VimEval, METH_VARARGS, "Evaluate an expression using Vim evaluator" },
Bram Moolenaar86181df2020-05-11 23:14:04 +02001409 {"bindeval", VimEvalPy, METH_O, "Like eval(), but returns objects attached to Vim ones"},
Bram Moolenaar389a1792013-06-23 13:00:44 +02001410 {"strwidth", VimStrwidth, METH_O, "Screen string width, counts <Tab> as having width 1"},
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001411 {"chdir", (PyCFunction)VimChdir, METH_VARARGS|METH_KEYWORDS, "Change directory"},
1412 {"fchdir", (PyCFunction)VimFchdir, METH_VARARGS|METH_KEYWORDS, "Change directory"},
Bram Moolenaar389a1792013-06-23 13:00:44 +02001413 {"foreach_rtp", VimForeachRTP, METH_O, "Call given callable for each path in &rtp"},
Bram Moolenaar79a494d2018-07-22 04:30:21 +02001414#if PY_VERSION_HEX >= 0x030700f0
1415 {"find_spec", FinderFindSpec, METH_VARARGS, "Internal use only, returns spec object for any input it receives"},
Bram Moolenaar79a494d2018-07-22 04:30:21 +02001416#endif
Bram Moolenaar0b0ad352019-05-20 21:52:45 +02001417 {"find_module", FinderFindModule, METH_VARARGS, "Internal use only, returns loader object for any input it receives"},
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001418 {"path_hook", VimPathHook, METH_VARARGS, "Hook function to install in sys.path_hooks"},
1419 {"_get_paths", (PyCFunction)Vim_GetPaths, METH_NOARGS, "Get &rtp-based additions to sys.path"},
1420 { NULL, NULL, 0, NULL}
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001421};
1422
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001423/*
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02001424 * Generic iterator object
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001425 */
1426
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02001427static PyTypeObject IterType;
1428
1429typedef PyObject *(*nextfun)(void **);
1430typedef void (*destructorfun)(void *);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02001431typedef int (*traversefun)(void *, visitproc, void *);
1432typedef int (*clearfun)(void **);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02001433
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01001434// Main purpose of this object is removing the need for do python
1435// initialization (i.e. PyType_Ready and setting type attributes) for a big
1436// bunch of objects.
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001437typedef struct
1438{
1439 PyObject_HEAD
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02001440 void *cur;
1441 nextfun next;
1442 destructorfun destruct;
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02001443 traversefun traverse;
1444 clearfun clear;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02001445} IterObject;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001446
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02001447 static PyObject *
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02001448IterNew(void *start, destructorfun destruct, nextfun next, traversefun traverse,
1449 clearfun clear)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001450{
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02001451 IterObject *self;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001452
Bram Moolenaar774267b2013-05-21 20:51:59 +02001453 self = PyObject_GC_New(IterObject, &IterType);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02001454 self->cur = start;
1455 self->next = next;
1456 self->destruct = destruct;
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02001457 self->traverse = traverse;
1458 self->clear = clear;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001459
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02001460 return (PyObject *)(self);
1461}
1462
1463 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02001464IterDestructor(IterObject *self)
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02001465{
Bram Moolenaar774267b2013-05-21 20:51:59 +02001466 PyObject_GC_UnTrack((void *)(self));
Bram Moolenaard6e39182013-05-21 18:30:34 +02001467 self->destruct(self->cur);
Bram Moolenaar774267b2013-05-21 20:51:59 +02001468 PyObject_GC_Del((void *)(self));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001469}
1470
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02001471 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02001472IterTraverse(IterObject *self, visitproc visit, void *arg)
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02001473{
Bram Moolenaard6e39182013-05-21 18:30:34 +02001474 if (self->traverse != NULL)
1475 return self->traverse(self->cur, visit, arg);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02001476 else
1477 return 0;
1478}
1479
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01001480// Mac OSX defines clear() somewhere.
Bram Moolenaar9e74e302013-05-17 21:20:17 +02001481#ifdef clear
1482# undef clear
1483#endif
1484
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02001485 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02001486IterClear(IterObject *self)
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02001487{
Bram Moolenaard6e39182013-05-21 18:30:34 +02001488 if (self->clear != NULL)
1489 return self->clear(&self->cur);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02001490 else
1491 return 0;
1492}
1493
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001494 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02001495IterNext(IterObject *self)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001496{
Bram Moolenaard6e39182013-05-21 18:30:34 +02001497 return self->next(&self->cur);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001498}
1499
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02001500 static PyObject *
1501IterIter(PyObject *self)
1502{
Bram Moolenaar1bcabe12013-05-29 22:52:32 +02001503 Py_INCREF(self);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02001504 return self;
1505}
Bram Moolenaardfa38d42013-05-15 13:38:47 +02001506
Bram Moolenaardb913952012-06-29 12:54:53 +02001507typedef struct pylinkedlist_S {
1508 struct pylinkedlist_S *pll_next;
1509 struct pylinkedlist_S *pll_prev;
1510 PyObject *pll_obj;
1511} pylinkedlist_T;
1512
1513static pylinkedlist_T *lastdict = NULL;
1514static pylinkedlist_T *lastlist = NULL;
Bram Moolenaar8110a092016-04-14 15:56:09 +02001515static pylinkedlist_T *lastfunc = NULL;
Bram Moolenaardb913952012-06-29 12:54:53 +02001516
1517 static void
1518pyll_remove(pylinkedlist_T *ref, pylinkedlist_T **last)
1519{
1520 if (ref->pll_prev == NULL)
1521 {
1522 if (ref->pll_next == NULL)
1523 {
1524 *last = NULL;
1525 return;
1526 }
1527 }
1528 else
1529 ref->pll_prev->pll_next = ref->pll_next;
1530
1531 if (ref->pll_next == NULL)
1532 *last = ref->pll_prev;
1533 else
1534 ref->pll_next->pll_prev = ref->pll_prev;
1535}
1536
1537 static void
1538pyll_add(PyObject *self, pylinkedlist_T *ref, pylinkedlist_T **last)
1539{
1540 if (*last == NULL)
1541 ref->pll_prev = NULL;
1542 else
1543 {
1544 (*last)->pll_next = ref;
1545 ref->pll_prev = *last;
1546 }
1547 ref->pll_next = NULL;
1548 ref->pll_obj = self;
1549 *last = ref;
1550}
1551
1552static PyTypeObject DictionaryType;
1553
1554typedef struct
1555{
1556 PyObject_HEAD
1557 dict_T *dict;
1558 pylinkedlist_T ref;
1559} DictionaryObject;
1560
Bram Moolenaara9922d62013-05-30 13:01:18 +02001561static PyObject *DictionaryUpdate(DictionaryObject *, PyObject *, PyObject *);
1562
1563#define NEW_DICTIONARY(dict) DictionaryNew(&DictionaryType, dict)
1564
Bram Moolenaardb913952012-06-29 12:54:53 +02001565 static PyObject *
Bram Moolenaara9922d62013-05-30 13:01:18 +02001566DictionaryNew(PyTypeObject *subtype, dict_T *dict)
Bram Moolenaardb913952012-06-29 12:54:53 +02001567{
1568 DictionaryObject *self;
1569
Bram Moolenaara9922d62013-05-30 13:01:18 +02001570 self = (DictionaryObject *) subtype->tp_alloc(subtype, 0);
Bram Moolenaardb913952012-06-29 12:54:53 +02001571 if (self == NULL)
1572 return NULL;
1573 self->dict = dict;
1574 ++dict->dv_refcount;
1575
1576 pyll_add((PyObject *)(self), &self->ref, &lastdict);
1577
1578 return (PyObject *)(self);
1579}
1580
Bram Moolenaara9922d62013-05-30 13:01:18 +02001581 static dict_T *
Bram Moolenaar5ab9d982013-06-16 14:25:57 +02001582py_dict_alloc(void)
Bram Moolenaara9922d62013-05-30 13:01:18 +02001583{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001584 dict_T *ret;
Bram Moolenaara9922d62013-05-30 13:01:18 +02001585
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001586 if (!(ret = dict_alloc()))
Bram Moolenaara9922d62013-05-30 13:01:18 +02001587 {
1588 PyErr_NoMemory();
1589 return NULL;
1590 }
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001591 ++ret->dv_refcount;
Bram Moolenaara9922d62013-05-30 13:01:18 +02001592
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001593 return ret;
Bram Moolenaara9922d62013-05-30 13:01:18 +02001594}
1595
1596 static PyObject *
1597DictionaryConstructor(PyTypeObject *subtype, PyObject *args, PyObject *kwargs)
1598{
1599 DictionaryObject *self;
1600 dict_T *dict;
1601
1602 if (!(dict = py_dict_alloc()))
1603 return NULL;
1604
1605 self = (DictionaryObject *) DictionaryNew(subtype, dict);
1606
1607 --dict->dv_refcount;
1608
1609 if (kwargs || PyTuple_Size(args))
1610 {
1611 PyObject *tmp;
1612 if (!(tmp = DictionaryUpdate(self, args, kwargs)))
1613 {
1614 Py_DECREF(self);
1615 return NULL;
1616 }
1617
1618 Py_DECREF(tmp);
1619 }
1620
1621 return (PyObject *)(self);
1622}
1623
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001624 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02001625DictionaryDestructor(DictionaryObject *self)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001626{
Bram Moolenaard6e39182013-05-21 18:30:34 +02001627 pyll_remove(&self->ref, &lastdict);
1628 dict_unref(self->dict);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001629
1630 DESTRUCTOR_FINISH(self);
1631}
1632
Bram Moolenaardd8aca62013-05-29 22:36:10 +02001633static char *DictionaryAttrs[] = {
1634 "locked", "scope",
1635 NULL
1636};
1637
1638 static PyObject *
1639DictionaryDir(PyObject *self)
1640{
1641 return ObjectDir(self, DictionaryAttrs);
1642}
1643
Bram Moolenaardb913952012-06-29 12:54:53 +02001644 static int
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001645DictionarySetattr(DictionaryObject *self, char *name, PyObject *valObject)
Bram Moolenaar66b79852012-09-21 14:00:35 +02001646{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001647 if (valObject == NULL)
Bram Moolenaar66b79852012-09-21 14:00:35 +02001648 {
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +02001649 PyErr_SET_STRING(PyExc_AttributeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02001650 N_("cannot delete vim.Dictionary attributes"));
Bram Moolenaar66b79852012-09-21 14:00:35 +02001651 return -1;
1652 }
1653
1654 if (strcmp(name, "locked") == 0)
1655 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02001656 if (self->dict->dv_lock == VAR_FIXED)
Bram Moolenaar66b79852012-09-21 14:00:35 +02001657 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02001658 PyErr_SET_STRING(PyExc_TypeError,
1659 N_("cannot modify fixed dictionary"));
Bram Moolenaar66b79852012-09-21 14:00:35 +02001660 return -1;
1661 }
1662 else
1663 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001664 int istrue = PyObject_IsTrue(valObject);
Bram Moolenaarb983f752013-05-15 16:11:50 +02001665 if (istrue == -1)
1666 return -1;
1667 else if (istrue)
Bram Moolenaard6e39182013-05-21 18:30:34 +02001668 self->dict->dv_lock = VAR_LOCKED;
Bram Moolenaar66b79852012-09-21 14:00:35 +02001669 else
Bram Moolenaard6e39182013-05-21 18:30:34 +02001670 self->dict->dv_lock = 0;
Bram Moolenaar66b79852012-09-21 14:00:35 +02001671 }
1672 return 0;
1673 }
1674 else
1675 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02001676 PyErr_FORMAT(PyExc_AttributeError, N_("cannot set attribute %s"), name);
Bram Moolenaar66b79852012-09-21 14:00:35 +02001677 return -1;
1678 }
1679}
1680
1681 static PyInt
Bram Moolenaard6e39182013-05-21 18:30:34 +02001682DictionaryLength(DictionaryObject *self)
Bram Moolenaardb913952012-06-29 12:54:53 +02001683{
Bram Moolenaard6e39182013-05-21 18:30:34 +02001684 return ((PyInt) (self->dict->dv_hashtab.ht_used));
Bram Moolenaardb913952012-06-29 12:54:53 +02001685}
1686
Bram Moolenaara9922d62013-05-30 13:01:18 +02001687#define DICT_FLAG_HAS_DEFAULT 0x01
1688#define DICT_FLAG_POP 0x02
1689#define DICT_FLAG_NONE_DEFAULT 0x04
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01001690#define DICT_FLAG_RETURN_BOOL 0x08 // Incompatible with DICT_FLAG_POP
Bram Moolenaara9922d62013-05-30 13:01:18 +02001691#define DICT_FLAG_RETURN_PAIR 0x10
1692
Bram Moolenaardb913952012-06-29 12:54:53 +02001693 static PyObject *
Bram Moolenaara9922d62013-05-30 13:01:18 +02001694_DictionaryItem(DictionaryObject *self, PyObject *args, int flags)
Bram Moolenaardb913952012-06-29 12:54:53 +02001695{
Bram Moolenaara9922d62013-05-30 13:01:18 +02001696 PyObject *keyObject;
1697 PyObject *defObject = ((flags & DICT_FLAG_NONE_DEFAULT)? Py_None : NULL);
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001698 PyObject *ret;
Bram Moolenaardb913952012-06-29 12:54:53 +02001699 char_u *key;
Bram Moolenaar231e1a12012-09-05 18:45:28 +02001700 dictitem_T *di;
Bram Moolenaara9922d62013-05-30 13:01:18 +02001701 dict_T *dict = self->dict;
1702 hashitem_T *hi;
Bram Moolenaar35eacd72013-05-30 22:06:33 +02001703 PyObject *todecref;
Bram Moolenaardb913952012-06-29 12:54:53 +02001704
Bram Moolenaara9922d62013-05-30 13:01:18 +02001705 if (flags & DICT_FLAG_HAS_DEFAULT)
1706 {
1707 if (!PyArg_ParseTuple(args, "O|O", &keyObject, &defObject))
1708 return NULL;
1709 }
1710 else
1711 keyObject = args;
1712
1713 if (flags & DICT_FLAG_RETURN_BOOL)
1714 defObject = Py_False;
1715
Bram Moolenaar35eacd72013-05-30 22:06:33 +02001716 if (!(key = StringToChars(keyObject, &todecref)))
1717 return NULL;
1718
1719 if (*key == NUL)
1720 {
1721 RAISE_NO_EMPTY_KEYS;
Bram Moolenaar4f2109d2013-06-02 18:07:37 +02001722 Py_XDECREF(todecref);
Bram Moolenaar35eacd72013-05-30 22:06:33 +02001723 return NULL;
1724 }
Bram Moolenaardb913952012-06-29 12:54:53 +02001725
Bram Moolenaara9922d62013-05-30 13:01:18 +02001726 hi = hash_find(&dict->dv_hashtab, key);
Bram Moolenaar231e1a12012-09-05 18:45:28 +02001727
Bram Moolenaar35eacd72013-05-30 22:06:33 +02001728 Py_XDECREF(todecref);
Bram Moolenaar696c2112012-09-21 13:43:14 +02001729
Bram Moolenaara9922d62013-05-30 13:01:18 +02001730 if (HASHITEM_EMPTY(hi))
Bram Moolenaar231e1a12012-09-05 18:45:28 +02001731 {
Bram Moolenaara9922d62013-05-30 13:01:18 +02001732 if (defObject)
1733 {
1734 Py_INCREF(defObject);
1735 return defObject;
1736 }
1737 else
1738 {
1739 PyErr_SetObject(PyExc_KeyError, keyObject);
1740 return NULL;
1741 }
1742 }
1743 else if (flags & DICT_FLAG_RETURN_BOOL)
1744 {
Bram Moolenaar0e4eebd2014-02-12 22:08:49 +01001745 ret = Py_True;
1746 Py_INCREF(ret);
1747 return ret;
Bram Moolenaara9922d62013-05-30 13:01:18 +02001748 }
1749
1750 di = dict_lookup(hi);
1751
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001752 if (!(ret = ConvertToPyObject(&di->di_tv)))
Bram Moolenaara9922d62013-05-30 13:01:18 +02001753 return NULL;
1754
1755 if (flags & DICT_FLAG_POP)
1756 {
1757 if (dict->dv_lock)
1758 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02001759 RAISE_LOCKED_DICTIONARY;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001760 Py_DECREF(ret);
Bram Moolenaara9922d62013-05-30 13:01:18 +02001761 return NULL;
1762 }
1763
1764 hash_remove(&dict->dv_hashtab, hi);
1765 dictitem_free(di);
1766 }
1767
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001768 return ret;
Bram Moolenaara9922d62013-05-30 13:01:18 +02001769}
1770
1771 static PyObject *
1772DictionaryItem(DictionaryObject *self, PyObject *keyObject)
1773{
1774 return _DictionaryItem(self, keyObject, 0);
1775}
1776
1777 static int
1778DictionaryContains(DictionaryObject *self, PyObject *keyObject)
1779{
1780 PyObject *rObj = _DictionaryItem(self, keyObject, DICT_FLAG_RETURN_BOOL);
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001781 int ret;
Bram Moolenaara9922d62013-05-30 13:01:18 +02001782
Bram Moolenaarba2d7ff2013-11-04 00:34:53 +01001783 if (rObj == NULL)
1784 return -1;
1785
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001786 ret = (rObj == Py_True);
Bram Moolenaara9922d62013-05-30 13:01:18 +02001787
Bram Moolenaardee2e312013-06-23 16:35:47 +02001788 Py_DECREF(rObj);
Bram Moolenaara9922d62013-05-30 13:01:18 +02001789
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001790 return ret;
Bram Moolenaara9922d62013-05-30 13:01:18 +02001791}
1792
1793typedef struct
1794{
1795 hashitem_T *ht_array;
1796 long_u ht_used;
1797 hashtab_T *ht;
1798 hashitem_T *hi;
Bram Moolenaar99dc19d2013-05-31 20:49:31 +02001799 long_u todo;
Bram Moolenaara9922d62013-05-30 13:01:18 +02001800} dictiterinfo_T;
1801
1802 static PyObject *
1803DictionaryIterNext(dictiterinfo_T **dii)
1804{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001805 PyObject *ret;
Bram Moolenaara9922d62013-05-30 13:01:18 +02001806
1807 if (!(*dii)->todo)
1808 return NULL;
1809
1810 if ((*dii)->ht->ht_array != (*dii)->ht_array ||
1811 (*dii)->ht->ht_used != (*dii)->ht_used)
1812 {
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +02001813 PyErr_SET_STRING(PyExc_RuntimeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02001814 N_("hashtab changed during iteration"));
Bram Moolenaar231e1a12012-09-05 18:45:28 +02001815 return NULL;
1816 }
Bram Moolenaardb913952012-06-29 12:54:53 +02001817
Bram Moolenaara9922d62013-05-30 13:01:18 +02001818 while (((*dii)->todo) && HASHITEM_EMPTY((*dii)->hi))
1819 ++((*dii)->hi);
1820
1821 --((*dii)->todo);
1822
Bram Moolenaar41009372013-07-01 22:03:04 +02001823 if (!(ret = PyBytes_FromString((char *)(*dii)->hi->hi_key)))
Bram Moolenaara9922d62013-05-30 13:01:18 +02001824 return NULL;
1825
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001826 return ret;
Bram Moolenaara9922d62013-05-30 13:01:18 +02001827}
1828
1829 static PyObject *
1830DictionaryIter(DictionaryObject *self)
1831{
1832 dictiterinfo_T *dii;
1833 hashtab_T *ht;
1834
1835 if (!(dii = PyMem_New(dictiterinfo_T, 1)))
1836 {
1837 PyErr_NoMemory();
1838 return NULL;
1839 }
1840
1841 ht = &self->dict->dv_hashtab;
1842 dii->ht_array = ht->ht_array;
1843 dii->ht_used = ht->ht_used;
1844 dii->ht = ht;
1845 dii->hi = dii->ht_array;
1846 dii->todo = dii->ht_used;
1847
1848 return IterNew(dii,
1849 (destructorfun) PyMem_Free, (nextfun) DictionaryIterNext,
1850 NULL, NULL);
Bram Moolenaardb913952012-06-29 12:54:53 +02001851}
1852
1853 static PyInt
Bram Moolenaar5ab9d982013-06-16 14:25:57 +02001854DictionaryAssItem(
1855 DictionaryObject *self, PyObject *keyObject, PyObject *valObject)
Bram Moolenaardb913952012-06-29 12:54:53 +02001856{
1857 char_u *key;
1858 typval_T tv;
Bram Moolenaarb38caae2013-05-29 22:39:52 +02001859 dict_T *dict = self->dict;
Bram Moolenaardb913952012-06-29 12:54:53 +02001860 dictitem_T *di;
Bram Moolenaar35eacd72013-05-30 22:06:33 +02001861 PyObject *todecref;
Bram Moolenaardb913952012-06-29 12:54:53 +02001862
Bram Moolenaarb38caae2013-05-29 22:39:52 +02001863 if (dict->dv_lock)
Bram Moolenaardb913952012-06-29 12:54:53 +02001864 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02001865 RAISE_LOCKED_DICTIONARY;
Bram Moolenaardb913952012-06-29 12:54:53 +02001866 return -1;
1867 }
1868
Bram Moolenaar35eacd72013-05-30 22:06:33 +02001869 if (!(key = StringToChars(keyObject, &todecref)))
1870 return -1;
Bram Moolenaar4f2109d2013-06-02 18:07:37 +02001871
Bram Moolenaar35eacd72013-05-30 22:06:33 +02001872 if (*key == NUL)
1873 {
1874 RAISE_NO_EMPTY_KEYS;
Bram Moolenaar78b59572013-06-02 18:54:21 +02001875 Py_XDECREF(todecref);
Bram Moolenaar35eacd72013-05-30 22:06:33 +02001876 return -1;
1877 }
Bram Moolenaardb913952012-06-29 12:54:53 +02001878
Bram Moolenaarb38caae2013-05-29 22:39:52 +02001879 di = dict_find(dict, key, -1);
Bram Moolenaardb913952012-06-29 12:54:53 +02001880
1881 if (valObject == NULL)
1882 {
Bram Moolenaarf27839c2012-06-29 16:19:50 +02001883 hashitem_T *hi;
1884
Bram Moolenaardb913952012-06-29 12:54:53 +02001885 if (di == NULL)
1886 {
Bram Moolenaar35eacd72013-05-30 22:06:33 +02001887 Py_XDECREF(todecref);
Bram Moolenaar4d188da2013-05-15 15:35:09 +02001888 PyErr_SetObject(PyExc_KeyError, keyObject);
Bram Moolenaardb913952012-06-29 12:54:53 +02001889 return -1;
1890 }
Bram Moolenaarb38caae2013-05-29 22:39:52 +02001891 hi = hash_find(&dict->dv_hashtab, di->di_key);
1892 hash_remove(&dict->dv_hashtab, hi);
Bram Moolenaardb913952012-06-29 12:54:53 +02001893 dictitem_free(di);
Bram Moolenaar78b59572013-06-02 18:54:21 +02001894 Py_XDECREF(todecref);
Bram Moolenaardb913952012-06-29 12:54:53 +02001895 return 0;
1896 }
1897
1898 if (ConvertFromPyObject(valObject, &tv) == -1)
Bram Moolenaar78b59572013-06-02 18:54:21 +02001899 {
1900 Py_XDECREF(todecref);
Bram Moolenaardb913952012-06-29 12:54:53 +02001901 return -1;
Bram Moolenaar78b59572013-06-02 18:54:21 +02001902 }
Bram Moolenaardb913952012-06-29 12:54:53 +02001903
1904 if (di == NULL)
1905 {
Bram Moolenaara9922d62013-05-30 13:01:18 +02001906 if (!(di = dictitem_alloc(key)))
Bram Moolenaardb913952012-06-29 12:54:53 +02001907 {
Bram Moolenaar35eacd72013-05-30 22:06:33 +02001908 Py_XDECREF(todecref);
Bram Moolenaardb913952012-06-29 12:54:53 +02001909 PyErr_NoMemory();
1910 return -1;
1911 }
Bram Moolenaara9922d62013-05-30 13:01:18 +02001912 di->di_tv.v_type = VAR_UNKNOWN;
Bram Moolenaardb913952012-06-29 12:54:53 +02001913
Bram Moolenaarb38caae2013-05-29 22:39:52 +02001914 if (dict_add(dict, di) == FAIL)
Bram Moolenaardb913952012-06-29 12:54:53 +02001915 {
Bram Moolenaara9922d62013-05-30 13:01:18 +02001916 dictitem_free(di);
Bram Moolenaarc476e522013-06-23 13:46:40 +02001917 RAISE_KEY_ADD_FAIL(key);
1918 Py_XDECREF(todecref);
Bram Moolenaardb913952012-06-29 12:54:53 +02001919 return -1;
1920 }
1921 }
1922 else
1923 clear_tv(&di->di_tv);
1924
Bram Moolenaar35eacd72013-05-30 22:06:33 +02001925 Py_XDECREF(todecref);
Bram Moolenaardb913952012-06-29 12:54:53 +02001926
1927 copy_tv(&tv, &di->di_tv);
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02001928 clear_tv(&tv);
Bram Moolenaardb913952012-06-29 12:54:53 +02001929 return 0;
1930}
1931
Bram Moolenaara9922d62013-05-30 13:01:18 +02001932typedef PyObject *(*hi_to_py)(hashitem_T *);
1933
Bram Moolenaardb913952012-06-29 12:54:53 +02001934 static PyObject *
Bram Moolenaara9922d62013-05-30 13:01:18 +02001935DictionaryListObjects(DictionaryObject *self, hi_to_py hiconvert)
Bram Moolenaardb913952012-06-29 12:54:53 +02001936{
Bram Moolenaard6e39182013-05-21 18:30:34 +02001937 dict_T *dict = self->dict;
Bram Moolenaardb913952012-06-29 12:54:53 +02001938 long_u todo = dict->dv_hashtab.ht_used;
1939 Py_ssize_t i = 0;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001940 PyObject *ret;
Bram Moolenaardb913952012-06-29 12:54:53 +02001941 hashitem_T *hi;
Bram Moolenaara9922d62013-05-30 13:01:18 +02001942 PyObject *newObj;
Bram Moolenaardb913952012-06-29 12:54:53 +02001943
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001944 ret = PyList_New(todo);
Bram Moolenaardb913952012-06-29 12:54:53 +02001945 for (hi = dict->dv_hashtab.ht_array; todo > 0; ++hi)
1946 {
1947 if (!HASHITEM_EMPTY(hi))
1948 {
Bram Moolenaara9922d62013-05-30 13:01:18 +02001949 if (!(newObj = hiconvert(hi)))
1950 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001951 Py_DECREF(ret);
Bram Moolenaara9922d62013-05-30 13:01:18 +02001952 return NULL;
1953 }
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001954 PyList_SET_ITEM(ret, i, newObj);
Bram Moolenaardb913952012-06-29 12:54:53 +02001955 --todo;
1956 ++i;
1957 }
1958 }
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001959 return ret;
Bram Moolenaardb913952012-06-29 12:54:53 +02001960}
1961
Bram Moolenaara9922d62013-05-30 13:01:18 +02001962 static PyObject *
1963dict_key(hashitem_T *hi)
1964{
1965 return PyBytes_FromString((char *)(hi->hi_key));
1966}
1967
1968 static PyObject *
1969DictionaryListKeys(DictionaryObject *self)
1970{
1971 return DictionaryListObjects(self, dict_key);
1972}
1973
1974 static PyObject *
1975dict_val(hashitem_T *hi)
1976{
1977 dictitem_T *di;
1978
1979 di = dict_lookup(hi);
1980 return ConvertToPyObject(&di->di_tv);
1981}
1982
1983 static PyObject *
1984DictionaryListValues(DictionaryObject *self)
1985{
1986 return DictionaryListObjects(self, dict_val);
1987}
1988
1989 static PyObject *
1990dict_item(hashitem_T *hi)
1991{
1992 PyObject *keyObject;
1993 PyObject *valObject;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001994 PyObject *ret;
Bram Moolenaara9922d62013-05-30 13:01:18 +02001995
1996 if (!(keyObject = dict_key(hi)))
1997 return NULL;
1998
1999 if (!(valObject = dict_val(hi)))
2000 {
2001 Py_DECREF(keyObject);
2002 return NULL;
2003 }
2004
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002005 ret = Py_BuildValue("(OO)", keyObject, valObject);
Bram Moolenaara9922d62013-05-30 13:01:18 +02002006
2007 Py_DECREF(keyObject);
2008 Py_DECREF(valObject);
2009
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002010 return ret;
Bram Moolenaara9922d62013-05-30 13:01:18 +02002011}
2012
2013 static PyObject *
2014DictionaryListItems(DictionaryObject *self)
2015{
2016 return DictionaryListObjects(self, dict_item);
2017}
2018
2019 static PyObject *
2020DictionaryUpdate(DictionaryObject *self, PyObject *args, PyObject *kwargs)
2021{
2022 dict_T *dict = self->dict;
2023
2024 if (dict->dv_lock)
2025 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02002026 RAISE_LOCKED_DICTIONARY;
Bram Moolenaara9922d62013-05-30 13:01:18 +02002027 return NULL;
2028 }
2029
2030 if (kwargs)
2031 {
2032 typval_T tv;
2033
2034 if (ConvertFromPyMapping(kwargs, &tv) == -1)
2035 return NULL;
2036
2037 VimTryStart();
2038 dict_extend(self->dict, tv.vval.v_dict, (char_u *) "force");
2039 clear_tv(&tv);
2040 if (VimTryEnd())
2041 return NULL;
2042 }
2043 else
2044 {
Bram Moolenaar2d5f38f2014-02-11 18:47:27 +01002045 PyObject *obj = NULL;
Bram Moolenaara9922d62013-05-30 13:01:18 +02002046
Bram Moolenaar2d5f38f2014-02-11 18:47:27 +01002047 if (!PyArg_ParseTuple(args, "|O", &obj))
Bram Moolenaara9922d62013-05-30 13:01:18 +02002048 return NULL;
2049
Bram Moolenaar2d5f38f2014-02-11 18:47:27 +01002050 if (obj == NULL)
2051 {
2052 Py_INCREF(Py_None);
2053 return Py_None;
2054 }
2055
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002056 if (PyObject_HasAttrString(obj, "keys"))
2057 return DictionaryUpdate(self, NULL, obj);
Bram Moolenaara9922d62013-05-30 13:01:18 +02002058 else
2059 {
2060 PyObject *iterator;
2061 PyObject *item;
2062
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002063 if (!(iterator = PyObject_GetIter(obj)))
Bram Moolenaara9922d62013-05-30 13:01:18 +02002064 return NULL;
2065
2066 while ((item = PyIter_Next(iterator)))
2067 {
2068 PyObject *fast;
2069 PyObject *keyObject;
2070 PyObject *valObject;
2071 PyObject *todecref;
2072 char_u *key;
2073 dictitem_T *di;
Bram Moolenaar9ed7d342017-11-09 22:10:33 +01002074 hashitem_T *hi;
Bram Moolenaara9922d62013-05-30 13:01:18 +02002075
2076 if (!(fast = PySequence_Fast(item, "")))
2077 {
2078 Py_DECREF(iterator);
2079 Py_DECREF(item);
2080 return NULL;
2081 }
2082
2083 Py_DECREF(item);
2084
2085 if (PySequence_Fast_GET_SIZE(fast) != 2)
2086 {
2087 Py_DECREF(iterator);
2088 Py_DECREF(fast);
Bram Moolenaarc476e522013-06-23 13:46:40 +02002089 PyErr_FORMAT(PyExc_ValueError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02002090 N_("expected sequence element of size 2, "
2091 "but got sequence of size %d"),
Bram Moolenaardee2e312013-06-23 16:35:47 +02002092 (int) PySequence_Fast_GET_SIZE(fast));
Bram Moolenaara9922d62013-05-30 13:01:18 +02002093 return NULL;
2094 }
2095
2096 keyObject = PySequence_Fast_GET_ITEM(fast, 0);
2097
2098 if (!(key = StringToChars(keyObject, &todecref)))
2099 {
2100 Py_DECREF(iterator);
2101 Py_DECREF(fast);
2102 return NULL;
2103 }
2104
2105 di = dictitem_alloc(key);
2106
2107 Py_XDECREF(todecref);
2108
2109 if (di == NULL)
2110 {
2111 Py_DECREF(fast);
2112 Py_DECREF(iterator);
2113 PyErr_NoMemory();
2114 return NULL;
2115 }
Bram Moolenaara9922d62013-05-30 13:01:18 +02002116 di->di_tv.v_type = VAR_UNKNOWN;
2117
2118 valObject = PySequence_Fast_GET_ITEM(fast, 1);
2119
2120 if (ConvertFromPyObject(valObject, &di->di_tv) == -1)
2121 {
2122 Py_DECREF(iterator);
2123 Py_DECREF(fast);
2124 dictitem_free(di);
2125 return NULL;
2126 }
2127
2128 Py_DECREF(fast);
2129
Bram Moolenaar9ed7d342017-11-09 22:10:33 +01002130 hi = hash_find(&dict->dv_hashtab, di->di_key);
2131 if (!HASHITEM_EMPTY(hi) || dict_add(dict, di) == FAIL)
Bram Moolenaara9922d62013-05-30 13:01:18 +02002132 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02002133 RAISE_KEY_ADD_FAIL(di->di_key);
Bram Moolenaara9922d62013-05-30 13:01:18 +02002134 Py_DECREF(iterator);
2135 dictitem_free(di);
Bram Moolenaara9922d62013-05-30 13:01:18 +02002136 return NULL;
2137 }
2138 }
2139
2140 Py_DECREF(iterator);
2141
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01002142 // Iterator may have finished due to an exception
Bram Moolenaara9922d62013-05-30 13:01:18 +02002143 if (PyErr_Occurred())
2144 return NULL;
2145 }
2146 }
2147 Py_INCREF(Py_None);
2148 return Py_None;
2149}
2150
2151 static PyObject *
2152DictionaryGet(DictionaryObject *self, PyObject *args)
2153{
2154 return _DictionaryItem(self, args,
2155 DICT_FLAG_HAS_DEFAULT|DICT_FLAG_NONE_DEFAULT);
2156}
2157
2158 static PyObject *
2159DictionaryPop(DictionaryObject *self, PyObject *args)
2160{
2161 return _DictionaryItem(self, args, DICT_FLAG_HAS_DEFAULT|DICT_FLAG_POP);
2162}
2163
2164 static PyObject *
Bram Moolenaarde71b562013-06-02 17:41:54 +02002165DictionaryPopItem(DictionaryObject *self)
Bram Moolenaara9922d62013-05-30 13:01:18 +02002166{
Bram Moolenaarde71b562013-06-02 17:41:54 +02002167 hashitem_T *hi;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002168 PyObject *ret;
Bram Moolenaarde71b562013-06-02 17:41:54 +02002169 PyObject *valObject;
2170 dictitem_T *di;
Bram Moolenaara9922d62013-05-30 13:01:18 +02002171
Bram Moolenaarde71b562013-06-02 17:41:54 +02002172 if (self->dict->dv_hashtab.ht_used == 0)
2173 {
2174 PyErr_SetNone(PyExc_KeyError);
2175 return NULL;
2176 }
2177
2178 hi = self->dict->dv_hashtab.ht_array;
2179 while (HASHITEM_EMPTY(hi))
2180 ++hi;
2181
2182 di = dict_lookup(hi);
2183
2184 if (!(valObject = ConvertToPyObject(&di->di_tv)))
Bram Moolenaara9922d62013-05-30 13:01:18 +02002185 return NULL;
2186
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002187 if (!(ret = Py_BuildValue("(" Py_bytes_fmt "O)", hi->hi_key, valObject)))
Bram Moolenaarde71b562013-06-02 17:41:54 +02002188 {
2189 Py_DECREF(valObject);
2190 return NULL;
2191 }
2192
2193 hash_remove(&self->dict->dv_hashtab, hi);
2194 dictitem_free(di);
2195
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002196 return ret;
Bram Moolenaara9922d62013-05-30 13:01:18 +02002197}
2198
2199 static PyObject *
Bram Moolenaar389a1792013-06-23 13:00:44 +02002200DictionaryHasKey(DictionaryObject *self, PyObject *keyObject)
Bram Moolenaara9922d62013-05-30 13:01:18 +02002201{
Bram Moolenaara9922d62013-05-30 13:01:18 +02002202 return _DictionaryItem(self, keyObject, DICT_FLAG_RETURN_BOOL);
2203}
2204
2205static PySequenceMethods DictionaryAsSeq = {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01002206 0, // sq_length
2207 0, // sq_concat
2208 0, // sq_repeat
2209 0, // sq_item
2210 0, // sq_slice
2211 0, // sq_ass_item
2212 0, // sq_ass_slice
2213 (objobjproc) DictionaryContains, // sq_contains
2214 0, // sq_inplace_concat
2215 0, // sq_inplace_repeat
Bram Moolenaara9922d62013-05-30 13:01:18 +02002216};
2217
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02002218static PyMappingMethods DictionaryAsMapping = {
2219 (lenfunc) DictionaryLength,
2220 (binaryfunc) DictionaryItem,
2221 (objobjargproc) DictionaryAssItem,
2222};
2223
Bram Moolenaardb913952012-06-29 12:54:53 +02002224static struct PyMethodDef DictionaryMethods[] = {
Bram Moolenaar182dc4f2013-05-21 19:01:55 +02002225 {"keys", (PyCFunction)DictionaryListKeys, METH_NOARGS, ""},
Bram Moolenaara9922d62013-05-30 13:01:18 +02002226 {"values", (PyCFunction)DictionaryListValues, METH_NOARGS, ""},
2227 {"items", (PyCFunction)DictionaryListItems, METH_NOARGS, ""},
2228 {"update", (PyCFunction)DictionaryUpdate, METH_VARARGS|METH_KEYWORDS, ""},
2229 {"get", (PyCFunction)DictionaryGet, METH_VARARGS, ""},
2230 {"pop", (PyCFunction)DictionaryPop, METH_VARARGS, ""},
Bram Moolenaarde71b562013-06-02 17:41:54 +02002231 {"popitem", (PyCFunction)DictionaryPopItem, METH_NOARGS, ""},
Bram Moolenaar389a1792013-06-23 13:00:44 +02002232 {"has_key", (PyCFunction)DictionaryHasKey, METH_O, ""},
Bram Moolenaardd8aca62013-05-29 22:36:10 +02002233 {"__dir__", (PyCFunction)DictionaryDir, METH_NOARGS, ""},
2234 { NULL, NULL, 0, NULL}
Bram Moolenaardb913952012-06-29 12:54:53 +02002235};
2236
2237static PyTypeObject ListType;
2238
2239typedef struct
2240{
2241 PyObject_HEAD
2242 list_T *list;
2243 pylinkedlist_T ref;
2244} ListObject;
2245
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002246#define NEW_LIST(list) ListNew(&ListType, list)
2247
Bram Moolenaardb913952012-06-29 12:54:53 +02002248 static PyObject *
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002249ListNew(PyTypeObject *subtype, list_T *list)
Bram Moolenaardb913952012-06-29 12:54:53 +02002250{
2251 ListObject *self;
2252
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002253 self = (ListObject *) subtype->tp_alloc(subtype, 0);
Bram Moolenaardb913952012-06-29 12:54:53 +02002254 if (self == NULL)
2255 return NULL;
2256 self->list = list;
2257 ++list->lv_refcount;
Bram Moolenaar7e9f3512020-05-13 22:44:22 +02002258 CHECK_LIST_MATERIALIZE(list);
Bram Moolenaardb913952012-06-29 12:54:53 +02002259
2260 pyll_add((PyObject *)(self), &self->ref, &lastlist);
2261
2262 return (PyObject *)(self);
2263}
2264
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002265 static list_T *
Bram Moolenaarfb97f282013-07-09 17:42:46 +02002266py_list_alloc(void)
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002267{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002268 list_T *ret;
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002269
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002270 if (!(ret = list_alloc()))
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002271 {
2272 PyErr_NoMemory();
2273 return NULL;
2274 }
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002275 ++ret->lv_refcount;
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002276
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002277 return ret;
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002278}
2279
2280 static int
2281list_py_concat(list_T *l, PyObject *obj, PyObject *lookup_dict)
2282{
2283 PyObject *iterator;
2284 PyObject *item;
2285 listitem_T *li;
2286
2287 if (!(iterator = PyObject_GetIter(obj)))
2288 return -1;
2289
2290 while ((item = PyIter_Next(iterator)))
2291 {
2292 if (!(li = listitem_alloc()))
2293 {
2294 PyErr_NoMemory();
2295 Py_DECREF(item);
2296 Py_DECREF(iterator);
2297 return -1;
2298 }
2299 li->li_tv.v_lock = 0;
2300 li->li_tv.v_type = VAR_UNKNOWN;
2301
2302 if (_ConvertFromPyObject(item, &li->li_tv, lookup_dict) == -1)
2303 {
2304 Py_DECREF(item);
2305 Py_DECREF(iterator);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002306 listitem_free(l, li);
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002307 return -1;
2308 }
2309
2310 Py_DECREF(item);
2311
2312 list_append(l, li);
2313 }
2314
2315 Py_DECREF(iterator);
2316
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01002317 // Iterator may have finished due to an exception
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002318 if (PyErr_Occurred())
2319 return -1;
2320
2321 return 0;
2322}
2323
2324 static PyObject *
2325ListConstructor(PyTypeObject *subtype, PyObject *args, PyObject *kwargs)
2326{
2327 list_T *list;
2328 PyObject *obj = NULL;
2329
2330 if (kwargs)
2331 {
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +02002332 PyErr_SET_STRING(PyExc_TypeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02002333 N_("list constructor does not accept keyword arguments"));
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002334 return NULL;
2335 }
2336
2337 if (!PyArg_ParseTuple(args, "|O", &obj))
2338 return NULL;
2339
2340 if (!(list = py_list_alloc()))
2341 return NULL;
2342
2343 if (obj)
2344 {
2345 PyObject *lookup_dict;
2346
2347 if (!(lookup_dict = PyDict_New()))
2348 {
2349 list_unref(list);
2350 return NULL;
2351 }
2352
2353 if (list_py_concat(list, obj, lookup_dict) == -1)
2354 {
2355 Py_DECREF(lookup_dict);
2356 list_unref(list);
2357 return NULL;
2358 }
2359
2360 Py_DECREF(lookup_dict);
2361 }
2362
2363 return ListNew(subtype, list);
2364}
2365
Bram Moolenaar4d1da492013-04-24 13:39:15 +02002366 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02002367ListDestructor(ListObject *self)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02002368{
Bram Moolenaard6e39182013-05-21 18:30:34 +02002369 pyll_remove(&self->ref, &lastlist);
2370 list_unref(self->list);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02002371
2372 DESTRUCTOR_FINISH(self);
2373}
2374
Bram Moolenaardb913952012-06-29 12:54:53 +02002375 static PyInt
Bram Moolenaard6e39182013-05-21 18:30:34 +02002376ListLength(ListObject *self)
Bram Moolenaardb913952012-06-29 12:54:53 +02002377{
Bram Moolenaard6e39182013-05-21 18:30:34 +02002378 return ((PyInt) (self->list->lv_len));
Bram Moolenaardb913952012-06-29 12:54:53 +02002379}
2380
2381 static PyObject *
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002382ListIndex(ListObject *self, Py_ssize_t index)
Bram Moolenaardb913952012-06-29 12:54:53 +02002383{
2384 listitem_T *li;
2385
Bram Moolenaard6e39182013-05-21 18:30:34 +02002386 if (index >= ListLength(self))
Bram Moolenaardb913952012-06-29 12:54:53 +02002387 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02002388 PyErr_SET_STRING(PyExc_IndexError, N_("list index out of range"));
Bram Moolenaardb913952012-06-29 12:54:53 +02002389 return NULL;
2390 }
Bram Moolenaard6e39182013-05-21 18:30:34 +02002391 li = list_find(self->list, (long) index);
Bram Moolenaardb913952012-06-29 12:54:53 +02002392 if (li == NULL)
2393 {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01002394 // No more suitable format specifications in python-2.3
Bram Moolenaar86181df2020-05-11 23:14:04 +02002395 PyErr_VIM_FORMAT(N_("internal error: failed to get Vim list item %d"),
Bram Moolenaarc476e522013-06-23 13:46:40 +02002396 (int) index);
Bram Moolenaardb913952012-06-29 12:54:53 +02002397 return NULL;
2398 }
2399 return ConvertToPyObject(&li->li_tv);
2400}
2401
Bram Moolenaardb913952012-06-29 12:54:53 +02002402 static PyObject *
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002403ListSlice(ListObject *self, Py_ssize_t first, Py_ssize_t step,
2404 Py_ssize_t slicelen)
Bram Moolenaardb913952012-06-29 12:54:53 +02002405{
2406 PyInt i;
Bram Moolenaardb913952012-06-29 12:54:53 +02002407 PyObject *list;
Bram Moolenaardb913952012-06-29 12:54:53 +02002408
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002409 if (step == 0)
2410 {
2411 PyErr_SET_STRING(PyExc_ValueError, N_("slice step cannot be zero"));
2412 return NULL;
2413 }
Bram Moolenaardb913952012-06-29 12:54:53 +02002414
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002415 list = PyList_New(slicelen);
Bram Moolenaardb913952012-06-29 12:54:53 +02002416 if (list == NULL)
2417 return NULL;
2418
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002419 for (i = 0; i < slicelen; ++i)
Bram Moolenaardb913952012-06-29 12:54:53 +02002420 {
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002421 PyObject *item;
2422
2423 item = ListIndex(self, first + i*step);
Bram Moolenaardb913952012-06-29 12:54:53 +02002424 if (item == NULL)
2425 {
2426 Py_DECREF(list);
2427 return NULL;
2428 }
2429
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002430 PyList_SET_ITEM(list, i, item);
Bram Moolenaardb913952012-06-29 12:54:53 +02002431 }
2432
2433 return list;
2434}
2435
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002436 static PyObject *
2437ListItem(ListObject *self, PyObject* idx)
2438{
2439#if PY_MAJOR_VERSION < 3
2440 if (PyInt_Check(idx))
2441 {
2442 long _idx = PyInt_AsLong(idx);
2443 return ListIndex(self, _idx);
2444 }
2445 else
2446#endif
2447 if (PyLong_Check(idx))
2448 {
2449 long _idx = PyLong_AsLong(idx);
2450 return ListIndex(self, _idx);
2451 }
2452 else if (PySlice_Check(idx))
2453 {
2454 Py_ssize_t start, stop, step, slicelen;
2455
Bram Moolenaar922a4662014-03-30 16:11:43 +02002456 if (PySlice_GetIndicesEx((PySliceObject_T *)idx, ListLength(self),
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002457 &start, &stop, &step, &slicelen) < 0)
2458 return NULL;
2459 return ListSlice(self, start, step, slicelen);
2460 }
2461 else
2462 {
2463 RAISE_INVALID_INDEX_TYPE(idx);
2464 return NULL;
2465 }
2466}
2467
2468 static void
2469list_restore(Py_ssize_t numadded, Py_ssize_t numreplaced, Py_ssize_t slicelen,
2470 list_T *l, listitem_T **lis, listitem_T *lastaddedli)
2471{
2472 while (numreplaced--)
2473 {
2474 list_insert(l, lis[numreplaced], lis[slicelen + numreplaced]);
2475 listitem_remove(l, lis[slicelen + numreplaced]);
2476 }
2477 while (numadded--)
2478 {
2479 listitem_T *next;
2480
2481 next = lastaddedli->li_prev;
2482 listitem_remove(l, lastaddedli);
2483 lastaddedli = next;
2484 }
2485}
2486
2487 static int
2488ListAssSlice(ListObject *self, Py_ssize_t first,
2489 Py_ssize_t step, Py_ssize_t slicelen, PyObject *obj)
2490{
2491 PyObject *iterator;
2492 PyObject *item;
2493 listitem_T *li;
2494 listitem_T *lastaddedli = NULL;
2495 listitem_T *next;
2496 typval_T v;
2497 list_T *l = self->list;
2498 PyInt i;
2499 PyInt j;
2500 PyInt numreplaced = 0;
2501 PyInt numadded = 0;
2502 PyInt size;
Bram Moolenaar3b522612014-02-11 16:00:35 +01002503 listitem_T **lis = NULL;
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002504
2505 size = ListLength(self);
2506
2507 if (l->lv_lock)
2508 {
2509 RAISE_LOCKED_LIST;
2510 return -1;
2511 }
2512
2513 if (step == 0)
2514 {
2515 PyErr_SET_STRING(PyExc_ValueError, N_("slice step cannot be zero"));
2516 return -1;
2517 }
2518
2519 if (step != 1 && slicelen == 0)
2520 {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01002521 // Nothing to do. Only error out if obj has some items.
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002522 int ret = 0;
2523
2524 if (obj == NULL)
2525 return 0;
2526
2527 if (!(iterator = PyObject_GetIter(obj)))
2528 return -1;
2529
2530 if ((item = PyIter_Next(iterator)))
2531 {
2532 PyErr_FORMAT(PyExc_ValueError,
Bram Moolenaar4de6a212014-03-08 16:13:44 +01002533 N_("attempt to assign sequence of size greater than %d "
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002534 "to extended slice"), 0);
2535 Py_DECREF(item);
2536 ret = -1;
2537 }
2538 Py_DECREF(iterator);
2539 return ret;
2540 }
2541
2542 if (obj != NULL)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01002543 // XXX May allocate zero bytes.
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002544 if (!(lis = PyMem_New(listitem_T *, slicelen * 2)))
2545 {
2546 PyErr_NoMemory();
2547 return -1;
2548 }
2549
2550 if (first == size)
2551 li = NULL;
2552 else
2553 {
2554 li = list_find(l, (long) first);
2555 if (li == NULL)
2556 {
Bram Moolenaar86181df2020-05-11 23:14:04 +02002557 PyErr_VIM_FORMAT(N_("internal error: no Vim list item %d"),
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002558 (int)first);
2559 if (obj != NULL)
2560 PyMem_Free(lis);
2561 return -1;
2562 }
2563 i = slicelen;
2564 while (i-- && li != NULL)
2565 {
2566 j = step;
2567 next = li;
2568 if (step > 0)
2569 while (next != NULL && ((next = next->li_next) != NULL) && --j);
2570 else
2571 while (next != NULL && ((next = next->li_prev) != NULL) && ++j);
2572
2573 if (obj == NULL)
2574 listitem_remove(l, li);
2575 else
2576 lis[slicelen - i - 1] = li;
2577
2578 li = next;
2579 }
2580 if (li == NULL && i != -1)
2581 {
2582 PyErr_SET_VIM(N_("internal error: not enough list items"));
2583 if (obj != NULL)
2584 PyMem_Free(lis);
2585 return -1;
2586 }
2587 }
2588
2589 if (obj == NULL)
2590 return 0;
2591
2592 if (!(iterator = PyObject_GetIter(obj)))
2593 {
2594 PyMem_Free(lis);
2595 return -1;
2596 }
2597
2598 i = 0;
2599 while ((item = PyIter_Next(iterator)))
2600 {
2601 if (ConvertFromPyObject(item, &v) == -1)
2602 {
2603 Py_DECREF(iterator);
2604 Py_DECREF(item);
2605 PyMem_Free(lis);
2606 return -1;
2607 }
2608 Py_DECREF(item);
2609 if (list_insert_tv(l, &v, numreplaced < slicelen
2610 ? lis[numreplaced]
2611 : li) == FAIL)
2612 {
2613 clear_tv(&v);
2614 PyErr_SET_VIM(N_("internal error: failed to add item to list"));
2615 list_restore(numadded, numreplaced, slicelen, l, lis, lastaddedli);
2616 PyMem_Free(lis);
2617 return -1;
2618 }
2619 if (numreplaced < slicelen)
2620 {
2621 lis[slicelen + numreplaced] = lis[numreplaced]->li_prev;
Bram Moolenaar3ec7f4e2014-05-07 17:31:37 +02002622 vimlist_remove(l, lis[numreplaced], lis[numreplaced]);
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002623 numreplaced++;
2624 }
2625 else
2626 {
2627 if (li)
2628 lastaddedli = li->li_prev;
2629 else
Bram Moolenaar0ff6aad2020-01-29 21:27:21 +01002630 lastaddedli = l->lv_u.mat.lv_last;
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002631 numadded++;
2632 }
2633 clear_tv(&v);
2634 if (step != 1 && i >= slicelen)
2635 {
2636 Py_DECREF(iterator);
2637 PyErr_FORMAT(PyExc_ValueError,
Bram Moolenaar4de6a212014-03-08 16:13:44 +01002638 N_("attempt to assign sequence of size greater than %d "
Bram Moolenaar403b3cf2014-02-15 15:59:03 +01002639 "to extended slice"), (int) slicelen);
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002640 list_restore(numadded, numreplaced, slicelen, l, lis, lastaddedli);
2641 PyMem_Free(lis);
2642 return -1;
2643 }
2644 ++i;
2645 }
2646 Py_DECREF(iterator);
2647
2648 if (step != 1 && i != slicelen)
2649 {
2650 PyErr_FORMAT2(PyExc_ValueError,
Bram Moolenaar403b3cf2014-02-15 15:59:03 +01002651 N_("attempt to assign sequence of size %d to extended slice "
2652 "of size %d"), (int) i, (int) slicelen);
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002653 list_restore(numadded, numreplaced, slicelen, l, lis, lastaddedli);
2654 PyMem_Free(lis);
2655 return -1;
2656 }
2657
2658 if (PyErr_Occurred())
2659 {
2660 list_restore(numadded, numreplaced, slicelen, l, lis, lastaddedli);
2661 PyMem_Free(lis);
2662 return -1;
2663 }
2664
2665 for (i = 0; i < numreplaced; i++)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002666 listitem_free(l, lis[i]);
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002667 if (step == 1)
2668 for (i = numreplaced; i < slicelen; i++)
2669 listitem_remove(l, lis[i]);
2670
2671 PyMem_Free(lis);
2672
2673 return 0;
2674}
2675
2676 static int
2677ListAssIndex(ListObject *self, Py_ssize_t index, PyObject *obj)
2678{
2679 typval_T tv;
2680 list_T *l = self->list;
2681 listitem_T *li;
2682 Py_ssize_t length = ListLength(self);
2683
2684 if (l->lv_lock)
2685 {
2686 RAISE_LOCKED_LIST;
2687 return -1;
2688 }
2689 if (index > length || (index == length && obj == NULL))
2690 {
2691 PyErr_SET_STRING(PyExc_IndexError, N_("list index out of range"));
2692 return -1;
2693 }
2694
2695 if (obj == NULL)
2696 {
2697 li = list_find(l, (long) index);
Bram Moolenaar3ec7f4e2014-05-07 17:31:37 +02002698 vimlist_remove(l, li, li);
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002699 clear_tv(&li->li_tv);
2700 vim_free(li);
2701 return 0;
2702 }
2703
2704 if (ConvertFromPyObject(obj, &tv) == -1)
2705 return -1;
2706
2707 if (index == length)
2708 {
2709 if (list_append_tv(l, &tv) == FAIL)
2710 {
2711 clear_tv(&tv);
2712 PyErr_SET_VIM(N_("failed to add item to list"));
2713 return -1;
2714 }
2715 }
2716 else
2717 {
2718 li = list_find(l, (long) index);
2719 clear_tv(&li->li_tv);
2720 copy_tv(&tv, &li->li_tv);
2721 clear_tv(&tv);
2722 }
2723 return 0;
2724}
2725
2726 static Py_ssize_t
2727ListAssItem(ListObject *self, PyObject *idx, PyObject *obj)
2728{
2729#if PY_MAJOR_VERSION < 3
2730 if (PyInt_Check(idx))
2731 {
2732 long _idx = PyInt_AsLong(idx);
2733 return ListAssIndex(self, _idx, obj);
2734 }
2735 else
2736#endif
2737 if (PyLong_Check(idx))
2738 {
2739 long _idx = PyLong_AsLong(idx);
2740 return ListAssIndex(self, _idx, obj);
2741 }
2742 else if (PySlice_Check(idx))
2743 {
2744 Py_ssize_t start, stop, step, slicelen;
2745
Bram Moolenaar922a4662014-03-30 16:11:43 +02002746 if (PySlice_GetIndicesEx((PySliceObject_T *)idx, ListLength(self),
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002747 &start, &stop, &step, &slicelen) < 0)
2748 return -1;
2749 return ListAssSlice(self, start, step, slicelen,
2750 obj);
2751 }
2752 else
2753 {
2754 RAISE_INVALID_INDEX_TYPE(idx);
2755 return -1;
2756 }
2757}
2758
2759 static PyObject *
2760ListConcatInPlace(ListObject *self, PyObject *obj)
2761{
2762 list_T *l = self->list;
2763 PyObject *lookup_dict;
2764
2765 if (l->lv_lock)
2766 {
2767 RAISE_LOCKED_LIST;
2768 return NULL;
2769 }
2770
2771 if (!(lookup_dict = PyDict_New()))
2772 return NULL;
2773
2774 if (list_py_concat(l, obj, lookup_dict) == -1)
2775 {
2776 Py_DECREF(lookup_dict);
2777 return NULL;
2778 }
2779 Py_DECREF(lookup_dict);
2780
2781 Py_INCREF(self);
2782 return (PyObject *)(self);
2783}
2784
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02002785typedef struct
2786{
2787 listwatch_T lw;
2788 list_T *list;
2789} listiterinfo_T;
2790
2791 static void
2792ListIterDestruct(listiterinfo_T *lii)
2793{
2794 list_rem_watch(lii->list, &lii->lw);
2795 PyMem_Free(lii);
2796}
2797
2798 static PyObject *
2799ListIterNext(listiterinfo_T **lii)
2800{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002801 PyObject *ret;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02002802
2803 if (!((*lii)->lw.lw_item))
2804 return NULL;
2805
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002806 if (!(ret = ConvertToPyObject(&((*lii)->lw.lw_item->li_tv))))
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02002807 return NULL;
2808
2809 (*lii)->lw.lw_item = (*lii)->lw.lw_item->li_next;
2810
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002811 return ret;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02002812}
2813
2814 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02002815ListIter(ListObject *self)
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02002816{
2817 listiterinfo_T *lii;
Bram Moolenaard6e39182013-05-21 18:30:34 +02002818 list_T *l = self->list;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02002819
2820 if (!(lii = PyMem_New(listiterinfo_T, 1)))
2821 {
2822 PyErr_NoMemory();
2823 return NULL;
2824 }
2825
Bram Moolenaar7e9f3512020-05-13 22:44:22 +02002826 CHECK_LIST_MATERIALIZE(l);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02002827 list_add_watch(l, &lii->lw);
2828 lii->lw.lw_item = l->lv_first;
2829 lii->list = l;
2830
2831 return IterNew(lii,
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02002832 (destructorfun) ListIterDestruct, (nextfun) ListIterNext,
2833 NULL, NULL);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02002834}
2835
Bram Moolenaardd8aca62013-05-29 22:36:10 +02002836static char *ListAttrs[] = {
2837 "locked",
2838 NULL
2839};
2840
2841 static PyObject *
2842ListDir(PyObject *self)
2843{
2844 return ObjectDir(self, ListAttrs);
2845}
2846
Bram Moolenaar66b79852012-09-21 14:00:35 +02002847 static int
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002848ListSetattr(ListObject *self, char *name, PyObject *valObject)
Bram Moolenaar66b79852012-09-21 14:00:35 +02002849{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002850 if (valObject == NULL)
Bram Moolenaar66b79852012-09-21 14:00:35 +02002851 {
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +02002852 PyErr_SET_STRING(PyExc_AttributeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02002853 N_("cannot delete vim.List attributes"));
Bram Moolenaar66b79852012-09-21 14:00:35 +02002854 return -1;
2855 }
2856
2857 if (strcmp(name, "locked") == 0)
2858 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02002859 if (self->list->lv_lock == VAR_FIXED)
Bram Moolenaar66b79852012-09-21 14:00:35 +02002860 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02002861 PyErr_SET_STRING(PyExc_TypeError, N_("cannot modify fixed list"));
Bram Moolenaar66b79852012-09-21 14:00:35 +02002862 return -1;
2863 }
2864 else
2865 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002866 int istrue = PyObject_IsTrue(valObject);
Bram Moolenaarb983f752013-05-15 16:11:50 +02002867 if (istrue == -1)
2868 return -1;
2869 else if (istrue)
Bram Moolenaard6e39182013-05-21 18:30:34 +02002870 self->list->lv_lock = VAR_LOCKED;
Bram Moolenaar66b79852012-09-21 14:00:35 +02002871 else
Bram Moolenaard6e39182013-05-21 18:30:34 +02002872 self->list->lv_lock = 0;
Bram Moolenaar66b79852012-09-21 14:00:35 +02002873 }
2874 return 0;
2875 }
2876 else
2877 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02002878 PyErr_FORMAT(PyExc_AttributeError, N_("cannot set attribute %s"), name);
Bram Moolenaar66b79852012-09-21 14:00:35 +02002879 return -1;
2880 }
2881}
2882
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002883static PySequenceMethods ListAsSeq = {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01002884 (lenfunc) ListLength, // sq_length, len(x)
2885 (binaryfunc) 0, // RangeConcat, sq_concat, x+y
2886 0, // RangeRepeat, sq_repeat, x*n
2887 (PyIntArgFunc) ListIndex, // sq_item, x[i]
2888 0, // was_sq_slice, x[i:j]
2889 (PyIntObjArgProc) ListAssIndex, // sq_as_item, x[i]=v
2890 0, // was_sq_ass_slice, x[i:j]=v
2891 0, // sq_contains
2892 (binaryfunc) ListConcatInPlace,// sq_inplace_concat
2893 0, // sq_inplace_repeat
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002894};
2895
2896static PyMappingMethods ListAsMapping = {
2897 /* mp_length */ (lenfunc) ListLength,
2898 /* mp_subscript */ (binaryfunc) ListItem,
2899 /* mp_ass_subscript */ (objobjargproc) ListAssItem,
2900};
2901
Bram Moolenaardb913952012-06-29 12:54:53 +02002902static struct PyMethodDef ListMethods[] = {
Bram Moolenaardd8aca62013-05-29 22:36:10 +02002903 {"extend", (PyCFunction)ListConcatInPlace, METH_O, ""},
2904 {"__dir__", (PyCFunction)ListDir, METH_NOARGS, ""},
2905 { NULL, NULL, 0, NULL}
Bram Moolenaardb913952012-06-29 12:54:53 +02002906};
2907
2908typedef struct
2909{
2910 PyObject_HEAD
2911 char_u *name;
Bram Moolenaar8110a092016-04-14 15:56:09 +02002912 int argc;
2913 typval_T *argv;
2914 dict_T *self;
2915 pylinkedlist_T ref;
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02002916 int auto_rebind;
Bram Moolenaardb913952012-06-29 12:54:53 +02002917} FunctionObject;
2918
2919static PyTypeObject FunctionType;
2920
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02002921#define NEW_FUNCTION(name, argc, argv, self, pt_auto) \
2922 FunctionNew(&FunctionType, (name), (argc), (argv), (self), (pt_auto))
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02002923
Bram Moolenaardb913952012-06-29 12:54:53 +02002924 static PyObject *
Bram Moolenaar8110a092016-04-14 15:56:09 +02002925FunctionNew(PyTypeObject *subtype, char_u *name, int argc, typval_T *argv,
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02002926 dict_T *selfdict, int auto_rebind)
Bram Moolenaardb913952012-06-29 12:54:53 +02002927{
2928 FunctionObject *self;
2929
Bram Moolenaar9123c0b2018-12-22 18:59:06 +01002930 self = (FunctionObject *)subtype->tp_alloc(subtype, 0);
Bram Moolenaardb913952012-06-29 12:54:53 +02002931 if (self == NULL)
2932 return NULL;
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02002933
2934 if (isdigit(*name))
Bram Moolenaardb913952012-06-29 12:54:53 +02002935 {
Bram Moolenaara14bb7e2020-04-28 00:02:41 +02002936 if (!translated_function_exists(name, FALSE))
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02002937 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02002938 PyErr_FORMAT(PyExc_ValueError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02002939 N_("unnamed function %s does not exist"), name);
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02002940 return NULL;
2941 }
2942 self->name = vim_strsave(name);
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02002943 }
2944 else
Bram Moolenaar9123c0b2018-12-22 18:59:06 +01002945 {
2946 char_u *p;
2947
2948 if ((p = get_expanded_name(name,
2949 vim_strchr(name, AUTOLOAD_CHAR) == NULL)) == NULL)
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02002950 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02002951 PyErr_FORMAT(PyExc_ValueError,
2952 N_("function %s does not exist"), name);
Bram Moolenaar018acca2013-05-30 13:37:28 +02002953 return NULL;
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02002954 }
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02002955
Bram Moolenaar9123c0b2018-12-22 18:59:06 +01002956 if (p[0] == K_SPECIAL && p[1] == KS_EXTRA && p[2] == (int)KE_SNR)
2957 {
2958 char_u *np;
2959 size_t len = STRLEN(p) + 1;
2960
Bram Moolenaar51e14382019-05-25 20:21:28 +02002961 if ((np = alloc(len + 2)) == NULL)
Bram Moolenaar9123c0b2018-12-22 18:59:06 +01002962 {
2963 vim_free(p);
2964 return NULL;
2965 }
2966 mch_memmove(np, "<SNR>", 5);
2967 mch_memmove(np + 5, p + 3, len - 3);
2968 vim_free(p);
2969 self->name = np;
2970 }
2971 else
2972 self->name = p;
2973 }
2974
Bram Moolenaar2d3d60a2016-08-01 16:27:23 +02002975 func_ref(self->name);
Bram Moolenaar8110a092016-04-14 15:56:09 +02002976 self->argc = argc;
2977 self->argv = argv;
2978 self->self = selfdict;
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02002979 self->auto_rebind = selfdict == NULL ? TRUE : auto_rebind;
Bram Moolenaar8110a092016-04-14 15:56:09 +02002980
2981 if (self->argv || self->self)
2982 pyll_add((PyObject *)(self), &self->ref, &lastfunc);
2983
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02002984 return (PyObject *)(self);
2985}
2986
2987 static PyObject *
2988FunctionConstructor(PyTypeObject *subtype, PyObject *args, PyObject *kwargs)
2989{
2990 PyObject *self;
Bram Moolenaar8110a092016-04-14 15:56:09 +02002991 PyObject *selfdictObject;
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02002992 PyObject *autoRebindObject;
Bram Moolenaar8110a092016-04-14 15:56:09 +02002993 PyObject *argsObject = NULL;
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02002994 char_u *name;
Bram Moolenaar8110a092016-04-14 15:56:09 +02002995 typval_T selfdicttv;
2996 typval_T argstv;
2997 list_T *argslist = NULL;
2998 dict_T *selfdict = NULL;
2999 int argc = 0;
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02003000 int auto_rebind = TRUE;
Bram Moolenaar8110a092016-04-14 15:56:09 +02003001 typval_T *argv = NULL;
3002 typval_T *curtv;
3003 listitem_T *li;
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02003004
Bram Moolenaar8110a092016-04-14 15:56:09 +02003005 if (kwargs != NULL)
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02003006 {
Bram Moolenaar8110a092016-04-14 15:56:09 +02003007 selfdictObject = PyDict_GetItemString(kwargs, "self");
3008 if (selfdictObject != NULL)
3009 {
3010 if (ConvertFromPyMapping(selfdictObject, &selfdicttv) == -1)
3011 return NULL;
3012 selfdict = selfdicttv.vval.v_dict;
3013 }
3014 argsObject = PyDict_GetItemString(kwargs, "args");
3015 if (argsObject != NULL)
3016 {
3017 if (ConvertFromPySequence(argsObject, &argstv) == -1)
3018 {
3019 dict_unref(selfdict);
3020 return NULL;
3021 }
3022 argslist = argstv.vval.v_list;
Bram Moolenaar7e9f3512020-05-13 22:44:22 +02003023 CHECK_LIST_MATERIALIZE(argslist);
Bram Moolenaar8110a092016-04-14 15:56:09 +02003024
3025 argc = argslist->lv_len;
3026 if (argc != 0)
3027 {
3028 argv = PyMem_New(typval_T, (size_t) argc);
Bram Moolenaarfe4b1862016-04-15 21:47:54 +02003029 if (argv == NULL)
3030 {
3031 PyErr_NoMemory();
3032 dict_unref(selfdict);
3033 list_unref(argslist);
3034 return NULL;
3035 }
Bram Moolenaar8110a092016-04-14 15:56:09 +02003036 curtv = argv;
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003037 FOR_ALL_LIST_ITEMS(argslist, li)
Bram Moolenaar8110a092016-04-14 15:56:09 +02003038 copy_tv(&li->li_tv, curtv++);
3039 }
3040 list_unref(argslist);
3041 }
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02003042 if (selfdict != NULL)
3043 {
3044 auto_rebind = FALSE;
3045 autoRebindObject = PyDict_GetItemString(kwargs, "auto_rebind");
3046 if (autoRebindObject != NULL)
3047 {
3048 auto_rebind = PyObject_IsTrue(autoRebindObject);
3049 if (auto_rebind == -1)
3050 {
3051 dict_unref(selfdict);
3052 list_unref(argslist);
3053 return NULL;
3054 }
3055 }
3056 }
Bram Moolenaardb913952012-06-29 12:54:53 +02003057 }
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02003058
Bram Moolenaar389a1792013-06-23 13:00:44 +02003059 if (!PyArg_ParseTuple(args, "et", "ascii", &name))
Bram Moolenaar8110a092016-04-14 15:56:09 +02003060 {
3061 dict_unref(selfdict);
3062 while (argc--)
3063 clear_tv(&argv[argc]);
3064 PyMem_Free(argv);
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02003065 return NULL;
Bram Moolenaar8110a092016-04-14 15:56:09 +02003066 }
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02003067
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02003068 self = FunctionNew(subtype, name, argc, argv, selfdict, auto_rebind);
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02003069
Bram Moolenaar389a1792013-06-23 13:00:44 +02003070 PyMem_Free(name);
3071
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02003072 return self;
Bram Moolenaardb913952012-06-29 12:54:53 +02003073}
3074
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003075 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02003076FunctionDestructor(FunctionObject *self)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003077{
Bram Moolenaar8110a092016-04-14 15:56:09 +02003078 int i;
Bram Moolenaard6e39182013-05-21 18:30:34 +02003079 func_unref(self->name);
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02003080 vim_free(self->name);
Bram Moolenaar8110a092016-04-14 15:56:09 +02003081 for (i = 0; i < self->argc; ++i)
3082 clear_tv(&self->argv[i]);
3083 PyMem_Free(self->argv);
3084 dict_unref(self->self);
3085 if (self->argv || self->self)
3086 pyll_remove(&self->ref, &lastfunc);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003087
3088 DESTRUCTOR_FINISH(self);
3089}
3090
Bram Moolenaardd8aca62013-05-29 22:36:10 +02003091static char *FunctionAttrs[] = {
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02003092 "softspace", "args", "self", "auto_rebind",
Bram Moolenaardd8aca62013-05-29 22:36:10 +02003093 NULL
3094};
3095
3096 static PyObject *
3097FunctionDir(PyObject *self)
3098{
3099 return ObjectDir(self, FunctionAttrs);
3100}
3101
Bram Moolenaardb913952012-06-29 12:54:53 +02003102 static PyObject *
Bram Moolenaar8110a092016-04-14 15:56:09 +02003103FunctionAttr(FunctionObject *self, char *name)
3104{
3105 list_T *list;
3106 int i;
3107 if (strcmp(name, "name") == 0)
3108 return PyString_FromString((char *)(self->name));
3109 else if (strcmp(name, "args") == 0)
3110 {
Bram Moolenaar9f289532016-08-26 16:39:03 +02003111 if (self->argv == NULL || (list = list_alloc()) == NULL)
Bram Moolenaar8110a092016-04-14 15:56:09 +02003112 return AlwaysNone(NULL);
Bram Moolenaar9f289532016-08-26 16:39:03 +02003113
Bram Moolenaar8110a092016-04-14 15:56:09 +02003114 for (i = 0; i < self->argc; ++i)
3115 list_append_tv(list, &self->argv[i]);
3116 return NEW_LIST(list);
3117 }
3118 else if (strcmp(name, "self") == 0)
3119 return self->self == NULL
3120 ? AlwaysNone(NULL)
3121 : NEW_DICTIONARY(self->self);
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02003122 else if (strcmp(name, "auto_rebind") == 0)
3123 return self->auto_rebind
3124 ? AlwaysTrue(NULL)
3125 : AlwaysFalse(NULL);
Bram Moolenaar8110a092016-04-14 15:56:09 +02003126 else if (strcmp(name, "__members__") == 0)
3127 return ObjectDir(NULL, FunctionAttrs);
3128 return NULL;
3129}
3130
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01003131/*
3132 * Populate partial_T given function object.
Bram Moolenaar8110a092016-04-14 15:56:09 +02003133 *
3134 * "exported" should be set to true when it is needed to construct a partial
3135 * that may be stored in a variable (i.e. may be freed by Vim).
3136 */
3137 static void
3138set_partial(FunctionObject *self, partial_T *pt, int exported)
3139{
Bram Moolenaar8110a092016-04-14 15:56:09 +02003140 int i;
3141
3142 pt->pt_name = self->name;
3143 if (self->argv)
3144 {
3145 pt->pt_argc = self->argc;
3146 if (exported)
3147 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003148 pt->pt_argv = ALLOC_CLEAR_MULT(typval_T, self->argc);
Bram Moolenaar8110a092016-04-14 15:56:09 +02003149 for (i = 0; i < pt->pt_argc; ++i)
3150 copy_tv(&self->argv[i], &pt->pt_argv[i]);
3151 }
3152 else
3153 pt->pt_argv = self->argv;
3154 }
3155 else
3156 {
3157 pt->pt_argc = 0;
3158 pt->pt_argv = NULL;
3159 }
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02003160 pt->pt_auto = self->auto_rebind || !exported;
Bram Moolenaar8110a092016-04-14 15:56:09 +02003161 pt->pt_dict = self->self;
3162 if (exported && self->self)
3163 ++pt->pt_dict->dv_refcount;
3164 if (exported)
3165 pt->pt_name = vim_strsave(pt->pt_name);
3166 pt->pt_refcount = 1;
3167}
3168
3169 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003170FunctionCall(FunctionObject *self, PyObject *argsObject, PyObject *kwargs)
Bram Moolenaardb913952012-06-29 12:54:53 +02003171{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003172 char_u *name = self->name;
Bram Moolenaardb913952012-06-29 12:54:53 +02003173 typval_T args;
3174 typval_T selfdicttv;
3175 typval_T rettv;
3176 dict_T *selfdict = NULL;
3177 PyObject *selfdictObject;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003178 PyObject *ret;
Bram Moolenaardb913952012-06-29 12:54:53 +02003179 int error;
Bram Moolenaar8110a092016-04-14 15:56:09 +02003180 partial_T pt;
3181 partial_T *pt_ptr = NULL;
Bram Moolenaardb913952012-06-29 12:54:53 +02003182
Bram Moolenaar8110a092016-04-14 15:56:09 +02003183 if (ConvertFromPySequence(argsObject, &args) == -1)
Bram Moolenaardb913952012-06-29 12:54:53 +02003184 return NULL;
3185
3186 if (kwargs != NULL)
3187 {
3188 selfdictObject = PyDict_GetItemString(kwargs, "self");
3189 if (selfdictObject != NULL)
3190 {
Bram Moolenaara9922d62013-05-30 13:01:18 +02003191 if (ConvertFromPyMapping(selfdictObject, &selfdicttv) == -1)
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02003192 {
3193 clear_tv(&args);
Bram Moolenaardb913952012-06-29 12:54:53 +02003194 return NULL;
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02003195 }
Bram Moolenaardb913952012-06-29 12:54:53 +02003196 selfdict = selfdicttv.vval.v_dict;
3197 }
3198 }
3199
Bram Moolenaar8110a092016-04-14 15:56:09 +02003200 if (self->argv || self->self)
3201 {
Bram Moolenaara80faa82020-04-12 19:37:17 +02003202 CLEAR_FIELD(pt);
Bram Moolenaar8110a092016-04-14 15:56:09 +02003203 set_partial(self, &pt, FALSE);
3204 pt_ptr = &pt;
3205 }
3206
Bram Moolenaar71700b82013-05-15 17:49:05 +02003207 Py_BEGIN_ALLOW_THREADS
3208 Python_Lock_Vim();
3209
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003210 VimTryStart();
Bram Moolenaar8110a092016-04-14 15:56:09 +02003211 error = func_call(name, &args, pt_ptr, selfdict, &rettv);
Bram Moolenaar71700b82013-05-15 17:49:05 +02003212
3213 Python_Release_Vim();
3214 Py_END_ALLOW_THREADS
3215
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003216 if (VimTryEnd())
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003217 ret = NULL;
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003218 else if (error != OK)
Bram Moolenaardb913952012-06-29 12:54:53 +02003219 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003220 ret = NULL;
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02003221 PyErr_VIM_FORMAT(N_("failed to run function %s"), (char *)name);
Bram Moolenaardb913952012-06-29 12:54:53 +02003222 }
3223 else
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003224 ret = ConvertToPyObject(&rettv);
Bram Moolenaardb913952012-06-29 12:54:53 +02003225
Bram Moolenaardb913952012-06-29 12:54:53 +02003226 clear_tv(&args);
3227 clear_tv(&rettv);
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02003228 if (selfdict != NULL)
3229 clear_tv(&selfdicttv);
Bram Moolenaardb913952012-06-29 12:54:53 +02003230
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003231 return ret;
Bram Moolenaardb913952012-06-29 12:54:53 +02003232}
3233
Bram Moolenaara5b725c2013-05-30 12:43:54 +02003234 static PyObject *
3235FunctionRepr(FunctionObject *self)
3236{
Bram Moolenaar8110a092016-04-14 15:56:09 +02003237 PyObject *ret;
3238 garray_T repr_ga;
3239 int i;
3240 char_u *tofree = NULL;
3241 typval_T tv;
3242 char_u numbuf[NUMBUFLEN];
3243
3244 ga_init2(&repr_ga, (int)sizeof(char), 70);
3245 ga_concat(&repr_ga, (char_u *)"<vim.Function '");
3246 if (self->name)
3247 ga_concat(&repr_ga, self->name);
3248 else
3249 ga_concat(&repr_ga, (char_u *)"<NULL>");
3250 ga_append(&repr_ga, '\'');
3251 if (self->argv)
3252 {
3253 ga_concat(&repr_ga, (char_u *)", args=[");
3254 ++emsg_silent;
3255 for (i = 0; i < self->argc; i++)
3256 {
3257 if (i != 0)
3258 ga_concat(&repr_ga, (char_u *)", ");
3259 ga_concat(&repr_ga, tv2string(&self->argv[i], &tofree, numbuf,
3260 get_copyID()));
3261 vim_free(tofree);
3262 }
3263 --emsg_silent;
3264 ga_append(&repr_ga, ']');
3265 }
3266 if (self->self)
3267 {
3268 ga_concat(&repr_ga, (char_u *)", self=");
3269 tv.v_type = VAR_DICT;
3270 tv.vval.v_dict = self->self;
3271 ++emsg_silent;
3272 ga_concat(&repr_ga, tv2string(&tv, &tofree, numbuf, get_copyID()));
3273 --emsg_silent;
3274 vim_free(tofree);
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02003275 if (self->auto_rebind)
3276 ga_concat(&repr_ga, (char_u *)", auto_rebind=True");
Bram Moolenaar8110a092016-04-14 15:56:09 +02003277 }
3278 ga_append(&repr_ga, '>');
3279 ret = PyString_FromString((char *)repr_ga.ga_data);
3280 ga_clear(&repr_ga);
3281 return ret;
Bram Moolenaara5b725c2013-05-30 12:43:54 +02003282}
3283
Bram Moolenaardb913952012-06-29 12:54:53 +02003284static struct PyMethodDef FunctionMethods[] = {
Bram Moolenaardd8aca62013-05-29 22:36:10 +02003285 {"__dir__", (PyCFunction)FunctionDir, METH_NOARGS, ""},
3286 { NULL, NULL, 0, NULL}
Bram Moolenaardb913952012-06-29 12:54:53 +02003287};
3288
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003289/*
3290 * Options object
3291 */
3292
3293static PyTypeObject OptionsType;
3294
3295typedef int (*checkfun)(void *);
3296
3297typedef struct
3298{
3299 PyObject_HEAD
Bram Moolenaar1028f4d2014-01-14 16:55:00 +01003300 int opt_type;
3301 void *from;
3302 checkfun Check;
3303 PyObject *fromObj;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003304} OptionsObject;
3305
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02003306 static int
3307dummy_check(void *arg UNUSED)
3308{
3309 return 0;
3310}
3311
3312 static PyObject *
3313OptionsNew(int opt_type, void *from, checkfun Check, PyObject *fromObj)
3314{
3315 OptionsObject *self;
3316
Bram Moolenaar774267b2013-05-21 20:51:59 +02003317 self = PyObject_GC_New(OptionsObject, &OptionsType);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02003318 if (self == NULL)
3319 return NULL;
3320
3321 self->opt_type = opt_type;
3322 self->from = from;
3323 self->Check = Check;
3324 self->fromObj = fromObj;
3325 if (fromObj)
3326 Py_INCREF(fromObj);
3327
3328 return (PyObject *)(self);
3329}
3330
3331 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02003332OptionsDestructor(OptionsObject *self)
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02003333{
Bram Moolenaar774267b2013-05-21 20:51:59 +02003334 PyObject_GC_UnTrack((void *)(self));
3335 Py_XDECREF(self->fromObj);
3336 PyObject_GC_Del((void *)(self));
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02003337}
3338
3339 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02003340OptionsTraverse(OptionsObject *self, visitproc visit, void *arg)
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02003341{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003342 Py_VISIT(self->fromObj);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02003343 return 0;
3344}
3345
3346 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02003347OptionsClear(OptionsObject *self)
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02003348{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003349 Py_CLEAR(self->fromObj);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02003350 return 0;
3351}
3352
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003353 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003354OptionsItem(OptionsObject *self, PyObject *keyObject)
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003355{
3356 char_u *key;
3357 int flags;
3358 long numval;
3359 char_u *stringval;
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003360 PyObject *todecref;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003361
Bram Moolenaard6e39182013-05-21 18:30:34 +02003362 if (self->Check(self->from))
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003363 return NULL;
3364
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003365 if (!(key = StringToChars(keyObject, &todecref)))
3366 return NULL;
Bram Moolenaar4f2109d2013-06-02 18:07:37 +02003367
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003368 if (*key == NUL)
3369 {
3370 RAISE_NO_EMPTY_KEYS;
Bram Moolenaar4f2109d2013-06-02 18:07:37 +02003371 Py_XDECREF(todecref);
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003372 return NULL;
3373 }
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003374
3375 flags = get_option_value_strict(key, &numval, &stringval,
Bram Moolenaard6e39182013-05-21 18:30:34 +02003376 self->opt_type, self->from);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003377
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003378 Py_XDECREF(todecref);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003379
3380 if (flags == 0)
3381 {
Bram Moolenaar4d188da2013-05-15 15:35:09 +02003382 PyErr_SetObject(PyExc_KeyError, keyObject);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003383 return NULL;
3384 }
3385
3386 if (flags & SOPT_UNSET)
3387 {
3388 Py_INCREF(Py_None);
3389 return Py_None;
3390 }
3391 else if (flags & SOPT_BOOL)
3392 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003393 PyObject *ret;
3394 ret = numval ? Py_True : Py_False;
3395 Py_INCREF(ret);
3396 return ret;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003397 }
3398 else if (flags & SOPT_NUM)
3399 return PyInt_FromLong(numval);
3400 else if (flags & SOPT_STRING)
3401 {
3402 if (stringval)
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02003403 {
Bram Moolenaar41009372013-07-01 22:03:04 +02003404 PyObject *ret = PyBytes_FromString((char *)stringval);
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02003405 vim_free(stringval);
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003406 return ret;
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02003407 }
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003408 else
3409 {
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +02003410 PyErr_SET_STRING(PyExc_RuntimeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02003411 N_("unable to get option value"));
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003412 return NULL;
3413 }
3414 }
3415 else
3416 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02003417 PyErr_SET_VIM(N_("internal error: unknown option type"));
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003418 return NULL;
3419 }
3420}
3421
3422 static int
Bram Moolenaar1028f4d2014-01-14 16:55:00 +01003423OptionsContains(OptionsObject *self, PyObject *keyObject)
3424{
3425 char_u *key;
3426 PyObject *todecref;
3427
3428 if (!(key = StringToChars(keyObject, &todecref)))
3429 return -1;
3430
3431 if (*key == NUL)
3432 {
3433 Py_XDECREF(todecref);
3434 return 0;
3435 }
3436
3437 if (get_option_value_strict(key, NULL, NULL, self->opt_type, NULL))
3438 {
3439 Py_XDECREF(todecref);
3440 return 1;
3441 }
3442 else
3443 {
3444 Py_XDECREF(todecref);
3445 return 0;
3446 }
3447}
3448
3449typedef struct
3450{
3451 void *lastoption;
3452 int opt_type;
3453} optiterinfo_T;
3454
3455 static PyObject *
3456OptionsIterNext(optiterinfo_T **oii)
3457{
3458 char_u *name;
3459
3460 if ((name = option_iter_next(&((*oii)->lastoption), (*oii)->opt_type)))
3461 return PyString_FromString((char *)name);
3462
3463 return NULL;
3464}
3465
3466 static PyObject *
3467OptionsIter(OptionsObject *self)
3468{
3469 optiterinfo_T *oii;
3470
3471 if (!(oii = PyMem_New(optiterinfo_T, 1)))
3472 {
3473 PyErr_NoMemory();
3474 return NULL;
3475 }
3476
3477 oii->opt_type = self->opt_type;
3478 oii->lastoption = NULL;
3479
3480 return IterNew(oii,
3481 (destructorfun) PyMem_Free, (nextfun) OptionsIterNext,
3482 NULL, NULL);
3483}
3484
3485 static int
Bram Moolenaar5ab9d982013-06-16 14:25:57 +02003486set_option_value_err(char_u *key, int numval, char_u *stringval, int opt_flags)
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02003487{
Bram Moolenaarb1443b42019-01-13 23:51:14 +01003488 char *errmsg;
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02003489
3490 if ((errmsg = set_option_value(key, numval, stringval, opt_flags)))
3491 {
3492 if (VimTryEnd())
3493 return FAIL;
Bram Moolenaarb1443b42019-01-13 23:51:14 +01003494 PyErr_SetVim(errmsg);
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02003495 return FAIL;
3496 }
3497 return OK;
3498}
3499
3500 static int
Bram Moolenaar5ab9d982013-06-16 14:25:57 +02003501set_option_value_for(
3502 char_u *key,
3503 int numval,
3504 char_u *stringval,
3505 int opt_flags,
3506 int opt_type,
3507 void *from)
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003508{
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02003509 win_T *save_curwin = NULL;
3510 tabpage_T *save_curtab = NULL;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003511 bufref_T save_curbuf;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003512 int set_ret = 0;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003513
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003514 VimTryStart();
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003515 switch (opt_type)
3516 {
3517 case SREQ_WIN:
Bram Moolenaar105bc352013-05-17 16:03:57 +02003518 if (switch_win(&save_curwin, &save_curtab, (win_T *)from,
Bram Moolenaard6949742013-06-16 14:18:28 +02003519 win_find_tabpage((win_T *)from), FALSE) == FAIL)
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003520 {
Bram Moolenaarae38d052014-12-17 14:46:09 +01003521 restore_win(save_curwin, save_curtab, TRUE);
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003522 if (VimTryEnd())
3523 return -1;
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02003524 PyErr_SET_VIM(N_("problem while switching windows"));
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003525 return -1;
3526 }
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003527 set_ret = set_option_value_err(key, numval, stringval, opt_flags);
3528 restore_win(save_curwin, save_curtab, TRUE);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003529 break;
3530 case SREQ_BUF:
Bram Moolenaar105bc352013-05-17 16:03:57 +02003531 switch_buffer(&save_curbuf, (buf_T *)from);
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003532 set_ret = set_option_value_err(key, numval, stringval, opt_flags);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003533 restore_buffer(&save_curbuf);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003534 break;
3535 case SREQ_GLOBAL:
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003536 set_ret = set_option_value_err(key, numval, stringval, opt_flags);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003537 break;
3538 }
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003539 if (set_ret == FAIL)
3540 return -1;
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003541 return VimTryEnd();
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003542}
3543
3544 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02003545OptionsAssItem(OptionsObject *self, PyObject *keyObject, PyObject *valObject)
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003546{
3547 char_u *key;
3548 int flags;
3549 int opt_flags;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003550 int ret = 0;
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003551 PyObject *todecref;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003552
Bram Moolenaard6e39182013-05-21 18:30:34 +02003553 if (self->Check(self->from))
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003554 return -1;
3555
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003556 if (!(key = StringToChars(keyObject, &todecref)))
3557 return -1;
Bram Moolenaar4f2109d2013-06-02 18:07:37 +02003558
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003559 if (*key == NUL)
3560 {
3561 RAISE_NO_EMPTY_KEYS;
Bram Moolenaar4f2109d2013-06-02 18:07:37 +02003562 Py_XDECREF(todecref);
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003563 return -1;
3564 }
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003565
3566 flags = get_option_value_strict(key, NULL, NULL,
Bram Moolenaard6e39182013-05-21 18:30:34 +02003567 self->opt_type, self->from);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003568
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003569 if (flags == 0)
3570 {
Bram Moolenaar4d188da2013-05-15 15:35:09 +02003571 PyErr_SetObject(PyExc_KeyError, keyObject);
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003572 Py_XDECREF(todecref);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003573 return -1;
3574 }
3575
3576 if (valObject == NULL)
3577 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02003578 if (self->opt_type == SREQ_GLOBAL)
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003579 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02003580 PyErr_FORMAT(PyExc_ValueError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02003581 N_("unable to unset global option %s"), key);
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003582 Py_XDECREF(todecref);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003583 return -1;
3584 }
3585 else if (!(flags & SOPT_GLOBAL))
3586 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02003587 PyErr_FORMAT(PyExc_ValueError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02003588 N_("unable to unset option %s "
3589 "which does not have global value"), key);
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003590 Py_XDECREF(todecref);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003591 return -1;
3592 }
3593 else
3594 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02003595 unset_global_local_option(key, self->from);
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003596 Py_XDECREF(todecref);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003597 return 0;
3598 }
3599 }
3600
Bram Moolenaard6e39182013-05-21 18:30:34 +02003601 opt_flags = (self->opt_type ? OPT_LOCAL : OPT_GLOBAL);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003602
3603 if (flags & SOPT_BOOL)
3604 {
Bram Moolenaarb983f752013-05-15 16:11:50 +02003605 int istrue = PyObject_IsTrue(valObject);
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02003606
Bram Moolenaarb983f752013-05-15 16:11:50 +02003607 if (istrue == -1)
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003608 ret = -1;
Bram Moolenaar1bc24282013-05-29 21:37:35 +02003609 else
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003610 ret = set_option_value_for(key, istrue, NULL,
Bram Moolenaar1bc24282013-05-29 21:37:35 +02003611 opt_flags, self->opt_type, self->from);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003612 }
3613 else if (flags & SOPT_NUM)
3614 {
Bram Moolenaar141be8a2013-06-23 14:16:57 +02003615 long val;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003616
Bram Moolenaar141be8a2013-06-23 14:16:57 +02003617 if (NumberToLong(valObject, &val, NUMBER_INT))
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003618 {
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003619 Py_XDECREF(todecref);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003620 return -1;
3621 }
3622
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003623 ret = set_option_value_for(key, (int) val, NULL, opt_flags,
Bram Moolenaard6e39182013-05-21 18:30:34 +02003624 self->opt_type, self->from);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003625 }
3626 else
3627 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003628 char_u *val;
Bram Moolenaarc2401d62013-12-07 14:28:43 +01003629 PyObject *todecref2;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003630
Bram Moolenaarc2401d62013-12-07 14:28:43 +01003631 if ((val = StringToChars(valObject, &todecref2)))
3632 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003633 ret = set_option_value_for(key, 0, val, opt_flags,
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003634 self->opt_type, self->from);
Bram Moolenaarc2401d62013-12-07 14:28:43 +01003635 Py_XDECREF(todecref2);
3636 }
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003637 else
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003638 ret = -1;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003639 }
3640
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003641 Py_XDECREF(todecref);
Bram Moolenaar1bc24282013-05-29 21:37:35 +02003642
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003643 return ret;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003644}
3645
Bram Moolenaar1028f4d2014-01-14 16:55:00 +01003646static PySequenceMethods OptionsAsSeq = {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01003647 0, // sq_length
3648 0, // sq_concat
3649 0, // sq_repeat
3650 0, // sq_item
3651 0, // sq_slice
3652 0, // sq_ass_item
3653 0, // sq_ass_slice
3654 (objobjproc) OptionsContains, // sq_contains
3655 0, // sq_inplace_concat
3656 0, // sq_inplace_repeat
Bram Moolenaar1028f4d2014-01-14 16:55:00 +01003657};
3658
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003659static PyMappingMethods OptionsAsMapping = {
3660 (lenfunc) NULL,
3661 (binaryfunc) OptionsItem,
3662 (objobjargproc) OptionsAssItem,
3663};
3664
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01003665// Tabpage object
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003666
3667typedef struct
3668{
3669 PyObject_HEAD
3670 tabpage_T *tab;
3671} TabPageObject;
3672
3673static PyObject *WinListNew(TabPageObject *tabObject);
3674
3675static PyTypeObject TabPageType;
3676
3677 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02003678CheckTabPage(TabPageObject *self)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003679{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003680 if (self->tab == INVALID_TABPAGE_VALUE)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003681 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02003682 PyErr_SET_VIM(N_("attempt to refer to deleted tab page"));
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003683 return -1;
3684 }
3685
3686 return 0;
3687}
3688
3689 static PyObject *
3690TabPageNew(tabpage_T *tab)
3691{
3692 TabPageObject *self;
3693
3694 if (TAB_PYTHON_REF(tab))
3695 {
3696 self = TAB_PYTHON_REF(tab);
3697 Py_INCREF(self);
3698 }
3699 else
3700 {
3701 self = PyObject_NEW(TabPageObject, &TabPageType);
3702 if (self == NULL)
3703 return NULL;
3704 self->tab = tab;
3705 TAB_PYTHON_REF(tab) = self;
3706 }
3707
3708 return (PyObject *)(self);
3709}
3710
3711 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02003712TabPageDestructor(TabPageObject *self)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003713{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003714 if (self->tab && self->tab != INVALID_TABPAGE_VALUE)
3715 TAB_PYTHON_REF(self->tab) = NULL;
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003716
3717 DESTRUCTOR_FINISH(self);
3718}
3719
Bram Moolenaardd8aca62013-05-29 22:36:10 +02003720static char *TabPageAttrs[] = {
3721 "windows", "number", "vars", "window", "valid",
3722 NULL
3723};
3724
3725 static PyObject *
3726TabPageDir(PyObject *self)
3727{
3728 return ObjectDir(self, TabPageAttrs);
3729}
3730
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003731 static PyObject *
Bram Moolenaar9e822c02013-05-29 22:15:30 +02003732TabPageAttrValid(TabPageObject *self, char *name)
3733{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003734 PyObject *ret;
Bram Moolenaar9e822c02013-05-29 22:15:30 +02003735
3736 if (strcmp(name, "valid") != 0)
3737 return NULL;
3738
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003739 ret = ((self->tab == INVALID_TABPAGE_VALUE) ? Py_False : Py_True);
3740 Py_INCREF(ret);
3741 return ret;
Bram Moolenaar9e822c02013-05-29 22:15:30 +02003742}
3743
3744 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003745TabPageAttr(TabPageObject *self, char *name)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003746{
3747 if (strcmp(name, "windows") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02003748 return WinListNew(self);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003749 else if (strcmp(name, "number") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02003750 return PyLong_FromLong((long) get_tab_number(self->tab));
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003751 else if (strcmp(name, "vars") == 0)
Bram Moolenaara9922d62013-05-30 13:01:18 +02003752 return NEW_DICTIONARY(self->tab->tp_vars);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003753 else if (strcmp(name, "window") == 0)
3754 {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01003755 // For current tab window.c does not bother to set or update tp_curwin
Bram Moolenaard6e39182013-05-21 18:30:34 +02003756 if (self->tab == curtab)
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003757 return WindowNew(curwin, curtab);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003758 else
Bram Moolenaard6e39182013-05-21 18:30:34 +02003759 return WindowNew(self->tab->tp_curwin, self->tab);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003760 }
Bram Moolenaardd8aca62013-05-29 22:36:10 +02003761 else if (strcmp(name, "__members__") == 0)
3762 return ObjectDir(NULL, TabPageAttrs);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003763 return NULL;
3764}
3765
3766 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003767TabPageRepr(TabPageObject *self)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003768{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003769 if (self->tab == INVALID_TABPAGE_VALUE)
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02003770 return PyString_FromFormat("<tabpage object (deleted) at %p>", (self));
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003771 else
3772 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02003773 int t = get_tab_number(self->tab);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003774
3775 if (t == 0)
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02003776 return PyString_FromFormat("<tabpage object (unknown) at %p>",
3777 (self));
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003778 else
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02003779 return PyString_FromFormat("<tabpage %d>", t - 1);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003780 }
3781}
3782
3783static struct PyMethodDef TabPageMethods[] = {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01003784 // name, function, calling, documentation
Bram Moolenaardd8aca62013-05-29 22:36:10 +02003785 {"__dir__", (PyCFunction)TabPageDir, METH_NOARGS, ""},
3786 { NULL, NULL, 0, NULL}
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003787};
3788
3789/*
3790 * Window list object
3791 */
3792
3793static PyTypeObject TabListType;
3794static PySequenceMethods TabListAsSeq;
3795
3796typedef struct
3797{
3798 PyObject_HEAD
3799} TabListObject;
3800
3801 static PyInt
3802TabListLength(PyObject *self UNUSED)
3803{
3804 tabpage_T *tp = first_tabpage;
3805 PyInt n = 0;
3806
3807 while (tp != NULL)
3808 {
3809 ++n;
3810 tp = tp->tp_next;
3811 }
3812
3813 return n;
3814}
3815
3816 static PyObject *
3817TabListItem(PyObject *self UNUSED, PyInt n)
3818{
3819 tabpage_T *tp;
3820
3821 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, --n)
3822 if (n == 0)
3823 return TabPageNew(tp);
3824
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02003825 PyErr_SET_STRING(PyExc_IndexError, N_("no such tab page"));
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003826 return NULL;
3827}
3828
Bram Moolenaar6c85e7f2013-06-23 12:51:32 +02003829/*
3830 * Window object
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003831 */
3832
3833typedef struct
3834{
3835 PyObject_HEAD
3836 win_T *win;
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003837 TabPageObject *tabObject;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003838} WindowObject;
3839
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003840static PyTypeObject WindowType;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003841
3842 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02003843CheckWindow(WindowObject *self)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003844{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003845 if (self->win == INVALID_WINDOW_VALUE)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003846 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02003847 PyErr_SET_VIM(N_("attempt to refer to deleted window"));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003848 return -1;
3849 }
3850
3851 return 0;
3852}
3853
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003854 static PyObject *
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003855WindowNew(win_T *win, tabpage_T *tab)
Bram Moolenaar971db462013-05-12 18:44:48 +02003856{
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01003857 /*
3858 * We need to handle deletion of windows underneath us.
Bram Moolenaar971db462013-05-12 18:44:48 +02003859 * If we add a "w_python*_ref" field to the win_T structure,
3860 * then we can get at it in win_free() in vim. We then
3861 * need to create only ONE Python object per window - if
3862 * we try to create a second, just INCREF the existing one
3863 * and return it. The (single) Python object referring to
3864 * the window is stored in "w_python*_ref".
3865 * On a win_free() we set the Python object's win_T* field
3866 * to an invalid value. We trap all uses of a window
3867 * object, and reject them if the win_T* field is invalid.
3868 *
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003869 * Python2 and Python3 get different fields and different objects:
Bram Moolenaar971db462013-05-12 18:44:48 +02003870 * w_python_ref and w_python3_ref fields respectively.
3871 */
3872
3873 WindowObject *self;
3874
3875 if (WIN_PYTHON_REF(win))
3876 {
3877 self = WIN_PYTHON_REF(win);
3878 Py_INCREF(self);
3879 }
3880 else
3881 {
Bram Moolenaar774267b2013-05-21 20:51:59 +02003882 self = PyObject_GC_New(WindowObject, &WindowType);
Bram Moolenaar971db462013-05-12 18:44:48 +02003883 if (self == NULL)
3884 return NULL;
3885 self->win = win;
3886 WIN_PYTHON_REF(win) = self;
3887 }
3888
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003889 self->tabObject = ((TabPageObject *)(TabPageNew(tab)));
3890
Bram Moolenaar971db462013-05-12 18:44:48 +02003891 return (PyObject *)(self);
3892}
3893
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003894 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02003895WindowDestructor(WindowObject *self)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003896{
Bram Moolenaar774267b2013-05-21 20:51:59 +02003897 PyObject_GC_UnTrack((void *)(self));
Bram Moolenaard6e39182013-05-21 18:30:34 +02003898 if (self->win && self->win != INVALID_WINDOW_VALUE)
3899 WIN_PYTHON_REF(self->win) = NULL;
Bram Moolenaar774267b2013-05-21 20:51:59 +02003900 Py_XDECREF(((PyObject *)(self->tabObject)));
3901 PyObject_GC_Del((void *)(self));
3902}
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003903
Bram Moolenaar774267b2013-05-21 20:51:59 +02003904 static int
3905WindowTraverse(WindowObject *self, visitproc visit, void *arg)
3906{
3907 Py_VISIT(((PyObject *)(self->tabObject)));
3908 return 0;
3909}
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003910
Bram Moolenaar774267b2013-05-21 20:51:59 +02003911 static int
3912WindowClear(WindowObject *self)
3913{
3914 Py_CLEAR(self->tabObject);
3915 return 0;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003916}
3917
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003918 static win_T *
3919get_firstwin(TabPageObject *tabObject)
3920{
3921 if (tabObject)
3922 {
3923 if (CheckTabPage(tabObject))
3924 return NULL;
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01003925 // For current tab window.c does not bother to set or update tp_firstwin
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003926 else if (tabObject->tab == curtab)
3927 return firstwin;
3928 else
3929 return tabObject->tab->tp_firstwin;
3930 }
3931 else
3932 return firstwin;
3933}
Bram Moolenaare950f992018-06-10 13:55:55 +02003934
3935// Use the same order as in the WindowAttr() function.
Bram Moolenaardd8aca62013-05-29 22:36:10 +02003936static char *WindowAttrs[] = {
Bram Moolenaare950f992018-06-10 13:55:55 +02003937 "buffer",
3938 "cursor",
3939 "height",
3940 "row",
3941 "width",
3942 "col",
3943 "vars",
3944 "options",
3945 "number",
3946 "tabpage",
3947 "valid",
Bram Moolenaardd8aca62013-05-29 22:36:10 +02003948 NULL
3949};
3950
3951 static PyObject *
3952WindowDir(PyObject *self)
3953{
3954 return ObjectDir(self, WindowAttrs);
3955}
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003956
Bram Moolenaar971db462013-05-12 18:44:48 +02003957 static PyObject *
Bram Moolenaar9e822c02013-05-29 22:15:30 +02003958WindowAttrValid(WindowObject *self, char *name)
3959{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003960 PyObject *ret;
Bram Moolenaar9e822c02013-05-29 22:15:30 +02003961
3962 if (strcmp(name, "valid") != 0)
3963 return NULL;
3964
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003965 ret = ((self->win == INVALID_WINDOW_VALUE) ? Py_False : Py_True);
3966 Py_INCREF(ret);
3967 return ret;
Bram Moolenaar9e822c02013-05-29 22:15:30 +02003968}
3969
3970 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003971WindowAttr(WindowObject *self, char *name)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003972{
3973 if (strcmp(name, "buffer") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02003974 return (PyObject *)BufferNew(self->win->w_buffer);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003975 else if (strcmp(name, "cursor") == 0)
3976 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02003977 pos_T *pos = &self->win->w_cursor;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003978
3979 return Py_BuildValue("(ll)", (long)(pos->lnum), (long)(pos->col));
3980 }
3981 else if (strcmp(name, "height") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02003982 return PyLong_FromLong((long)(self->win->w_height));
Bram Moolenaar4e5dfb52013-05-12 19:30:31 +02003983 else if (strcmp(name, "row") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02003984 return PyLong_FromLong((long)(self->win->w_winrow));
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003985 else if (strcmp(name, "width") == 0)
Bram Moolenaar02631462017-09-22 15:20:32 +02003986 return PyLong_FromLong((long)(self->win->w_width));
Bram Moolenaar4e5dfb52013-05-12 19:30:31 +02003987 else if (strcmp(name, "col") == 0)
Bram Moolenaar53f81742017-09-22 14:35:51 +02003988 return PyLong_FromLong((long)(self->win->w_wincol));
Bram Moolenaar230bb3f2013-04-24 14:07:45 +02003989 else if (strcmp(name, "vars") == 0)
Bram Moolenaara9922d62013-05-30 13:01:18 +02003990 return NEW_DICTIONARY(self->win->w_vars);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003991 else if (strcmp(name, "options") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02003992 return OptionsNew(SREQ_WIN, self->win, (checkfun) CheckWindow,
3993 (PyObject *) self);
Bram Moolenaar6d216452013-05-12 19:00:41 +02003994 else if (strcmp(name, "number") == 0)
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003995 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02003996 if (CheckTabPage(self->tabObject))
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003997 return NULL;
3998 return PyLong_FromLong((long)
Bram Moolenaard6e39182013-05-21 18:30:34 +02003999 get_win_number(self->win, get_firstwin(self->tabObject)));
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02004000 }
4001 else if (strcmp(name, "tabpage") == 0)
4002 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02004003 Py_INCREF(self->tabObject);
4004 return (PyObject *)(self->tabObject);
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02004005 }
Bram Moolenaardd8aca62013-05-29 22:36:10 +02004006 else if (strcmp(name, "__members__") == 0)
4007 return ObjectDir(NULL, WindowAttrs);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004008 else
4009 return NULL;
4010}
4011
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004012 static int
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004013WindowSetattr(WindowObject *self, char *name, PyObject *valObject)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004014{
Bram Moolenaard6e39182013-05-21 18:30:34 +02004015 if (CheckWindow(self))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004016 return -1;
4017
4018 if (strcmp(name, "buffer") == 0)
4019 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004020 PyErr_SET_STRING(PyExc_TypeError, N_("readonly attribute: buffer"));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004021 return -1;
4022 }
4023 else if (strcmp(name, "cursor") == 0)
4024 {
4025 long lnum;
4026 long col;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004027
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004028 if (!PyArg_Parse(valObject, "(ll)", &lnum, &col))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004029 return -1;
4030
Bram Moolenaard6e39182013-05-21 18:30:34 +02004031 if (lnum <= 0 || lnum > self->win->w_buffer->b_ml.ml_line_count)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004032 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004033 PyErr_SET_VIM(N_("cursor position outside buffer"));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004034 return -1;
4035 }
4036
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004037 // Check for keyboard interrupts
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004038 if (VimCheckInterrupt())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004039 return -1;
4040
Bram Moolenaard6e39182013-05-21 18:30:34 +02004041 self->win->w_cursor.lnum = lnum;
4042 self->win->w_cursor.col = col;
Bram Moolenaar53901442018-07-25 22:02:36 +02004043 self->win->w_set_curswant = TRUE;
Bram Moolenaard6e39182013-05-21 18:30:34 +02004044 self->win->w_cursor.coladd = 0;
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004045 // When column is out of range silently correct it.
Bram Moolenaard6e39182013-05-21 18:30:34 +02004046 check_cursor_col_win(self->win);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004047
Bram Moolenaar03a807a2011-07-07 15:08:58 +02004048 update_screen(VALID);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004049 return 0;
4050 }
4051 else if (strcmp(name, "height") == 0)
4052 {
Bram Moolenaar141be8a2013-06-23 14:16:57 +02004053 long height;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004054 win_T *savewin;
4055
Bram Moolenaardee2e312013-06-23 16:35:47 +02004056 if (NumberToLong(valObject, &height, NUMBER_INT|NUMBER_UNSIGNED))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004057 return -1;
4058
4059#ifdef FEAT_GUI
4060 need_mouse_correct = TRUE;
4061#endif
4062 savewin = curwin;
Bram Moolenaard6e39182013-05-21 18:30:34 +02004063 curwin = self->win;
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004064
4065 VimTryStart();
Bram Moolenaar141be8a2013-06-23 14:16:57 +02004066 win_setheight((int) height);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004067 curwin = savewin;
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004068 if (VimTryEnd())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004069 return -1;
4070
4071 return 0;
4072 }
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004073 else if (strcmp(name, "width") == 0)
4074 {
Bram Moolenaar141be8a2013-06-23 14:16:57 +02004075 long width;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004076 win_T *savewin;
4077
Bram Moolenaardee2e312013-06-23 16:35:47 +02004078 if (NumberToLong(valObject, &width, NUMBER_INT|NUMBER_UNSIGNED))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004079 return -1;
4080
4081#ifdef FEAT_GUI
4082 need_mouse_correct = TRUE;
4083#endif
4084 savewin = curwin;
Bram Moolenaard6e39182013-05-21 18:30:34 +02004085 curwin = self->win;
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004086
4087 VimTryStart();
Bram Moolenaar141be8a2013-06-23 14:16:57 +02004088 win_setwidth((int) width);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004089 curwin = savewin;
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004090 if (VimTryEnd())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004091 return -1;
4092
4093 return 0;
4094 }
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004095 else
4096 {
4097 PyErr_SetString(PyExc_AttributeError, name);
4098 return -1;
4099 }
4100}
4101
4102 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02004103WindowRepr(WindowObject *self)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004104{
Bram Moolenaard6e39182013-05-21 18:30:34 +02004105 if (self->win == INVALID_WINDOW_VALUE)
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02004106 return PyString_FromFormat("<window object (deleted) at %p>", (self));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004107 else
4108 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02004109 int w = get_win_number(self->win, firstwin);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004110
Bram Moolenaar6d216452013-05-12 19:00:41 +02004111 if (w == 0)
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02004112 return PyString_FromFormat("<window object (unknown) at %p>",
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004113 (self));
4114 else
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02004115 return PyString_FromFormat("<window %d>", w - 1);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004116 }
4117}
4118
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02004119static struct PyMethodDef WindowMethods[] = {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004120 // name, function, calling, documentation
Bram Moolenaardd8aca62013-05-29 22:36:10 +02004121 {"__dir__", (PyCFunction)WindowDir, METH_NOARGS, ""},
4122 { NULL, NULL, 0, NULL}
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02004123};
4124
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004125/*
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02004126 * Window list object
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004127 */
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004128
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02004129static PyTypeObject WinListType;
4130static PySequenceMethods WinListAsSeq;
4131
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004132typedef struct
4133{
4134 PyObject_HEAD
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004135 TabPageObject *tabObject;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004136} WinListObject;
4137
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004138 static PyObject *
4139WinListNew(TabPageObject *tabObject)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004140{
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004141 WinListObject *self;
4142
4143 self = PyObject_NEW(WinListObject, &WinListType);
4144 self->tabObject = tabObject;
4145 Py_INCREF(tabObject);
4146
4147 return (PyObject *)(self);
4148}
4149
4150 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02004151WinListDestructor(WinListObject *self)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004152{
Bram Moolenaard6e39182013-05-21 18:30:34 +02004153 TabPageObject *tabObject = self->tabObject;
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004154
4155 if (tabObject)
Bram Moolenaar425154d2013-05-24 18:58:43 +02004156 {
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004157 Py_DECREF((PyObject *)(tabObject));
Bram Moolenaar425154d2013-05-24 18:58:43 +02004158 }
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004159
4160 DESTRUCTOR_FINISH(self);
4161}
4162
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004163 static PyInt
Bram Moolenaard6e39182013-05-21 18:30:34 +02004164WinListLength(WinListObject *self)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004165{
4166 win_T *w;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004167 PyInt n = 0;
4168
Bram Moolenaard6e39182013-05-21 18:30:34 +02004169 if (!(w = get_firstwin(self->tabObject)))
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004170 return -1;
4171
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004172 while (w != NULL)
4173 {
4174 ++n;
4175 w = W_NEXT(w);
4176 }
4177
4178 return n;
4179}
4180
4181 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02004182WinListItem(WinListObject *self, PyInt n)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004183{
4184 win_T *w;
4185
Bram Moolenaard6e39182013-05-21 18:30:34 +02004186 if (!(w = get_firstwin(self->tabObject)))
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004187 return NULL;
4188
4189 for (; w != NULL; w = W_NEXT(w), --n)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004190 if (n == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02004191 return WindowNew(w, self->tabObject? self->tabObject->tab: curtab);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004192
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004193 PyErr_SET_STRING(PyExc_IndexError, N_("no such window"));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004194 return NULL;
4195}
4196
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004197/*
4198 * Convert a Python string into a Vim line.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004199 *
4200 * The result is in allocated memory. All internal nulls are replaced by
4201 * newline characters. It is an error for the string to contain newline
4202 * characters.
4203 *
4204 * On errors, the Python exception data is set, and NULL is returned.
4205 */
4206 static char *
4207StringToLine(PyObject *obj)
4208{
Bram Moolenaar808c2bc2013-06-23 13:11:18 +02004209 char *str;
4210 char *save;
4211 PyObject *bytes = NULL;
Bram Moolenaardee2e312013-06-23 16:35:47 +02004212 Py_ssize_t len = 0;
Bram Moolenaar808c2bc2013-06-23 13:11:18 +02004213 PyInt i;
4214 char *p;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004215
Bram Moolenaar808c2bc2013-06-23 13:11:18 +02004216 if (PyBytes_Check(obj))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004217 {
Bram Moolenaar808c2bc2013-06-23 13:11:18 +02004218 if (PyBytes_AsStringAndSize(obj, &str, &len) == -1
4219 || str == NULL)
4220 return NULL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004221 }
Bram Moolenaar808c2bc2013-06-23 13:11:18 +02004222 else if (PyUnicode_Check(obj))
4223 {
4224 if (!(bytes = PyUnicode_AsEncodedString(obj, ENC_OPT, NULL)))
4225 return NULL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004226
Bram Moolenaardaa27022013-06-24 22:33:30 +02004227 if (PyBytes_AsStringAndSize(bytes, &str, &len) == -1
Bram Moolenaar808c2bc2013-06-23 13:11:18 +02004228 || str == NULL)
4229 {
4230 Py_DECREF(bytes);
4231 return NULL;
4232 }
4233 }
Bram Moolenaardaa27022013-06-24 22:33:30 +02004234 else
4235 {
4236#if PY_MAJOR_VERSION < 3
4237 PyErr_FORMAT(PyExc_TypeError,
4238 N_("expected str() or unicode() instance, but got %s"),
4239 Py_TYPE_NAME(obj));
4240#else
4241 PyErr_FORMAT(PyExc_TypeError,
4242 N_("expected bytes() or str() instance, but got %s"),
4243 Py_TYPE_NAME(obj));
4244#endif
4245 return NULL;
4246 }
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004247
4248 /*
4249 * Error checking: String must not contain newlines, as we
4250 * are replacing a single line, and we must replace it with
4251 * a single line.
4252 * A trailing newline is removed, so that append(f.readlines()) works.
4253 */
4254 p = memchr(str, '\n', len);
4255 if (p != NULL)
4256 {
4257 if (p == str + len - 1)
4258 --len;
4259 else
4260 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004261 PyErr_SET_VIM(N_("string cannot contain newlines"));
Bram Moolenaar841fbd22013-06-23 14:37:07 +02004262 Py_XDECREF(bytes);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004263 return NULL;
4264 }
4265 }
4266
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004267 /*
4268 * Create a copy of the string, with internal nulls replaced by
Bram Moolenaar86181df2020-05-11 23:14:04 +02004269 * newline characters, as is the Vim convention.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004270 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004271 save = alloc(len+1);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004272 if (save == NULL)
4273 {
4274 PyErr_NoMemory();
Bram Moolenaar841fbd22013-06-23 14:37:07 +02004275 Py_XDECREF(bytes);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004276 return NULL;
4277 }
4278
4279 for (i = 0; i < len; ++i)
4280 {
4281 if (str[i] == '\0')
4282 save[i] = '\n';
4283 else
4284 save[i] = str[i];
4285 }
4286
4287 save[i] = '\0';
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004288 Py_XDECREF(bytes); // Python 2 does nothing here
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004289
4290 return save;
4291}
4292
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004293/*
4294 * Get a line from the specified buffer. The line number is
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004295 * in Vim format (1-based). The line is returned as a Python
4296 * string object.
4297 */
4298 static PyObject *
4299GetBufferLine(buf_T *buf, PyInt n)
4300{
4301 return LineToString((char *)ml_get_buf(buf, (linenr_T)n, FALSE));
4302}
4303
4304
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004305/*
4306 * Get a list of lines from the specified buffer. The line numbers
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004307 * are in Vim format (1-based). The range is from lo up to, but not
4308 * including, hi. The list is returned as a Python list of string objects.
4309 */
4310 static PyObject *
4311GetBufferLineList(buf_T *buf, PyInt lo, PyInt hi)
4312{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004313 PyInt i;
4314 PyInt n = hi - lo;
4315 PyObject *list = PyList_New(n);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004316
4317 if (list == NULL)
4318 return NULL;
4319
4320 for (i = 0; i < n; ++i)
4321 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004322 PyObject *string = LineToString(
4323 (char *)ml_get_buf(buf, (linenr_T)(lo+i), FALSE));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004324
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004325 // Error check - was the Python string creation OK?
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004326 if (string == NULL)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004327 {
4328 Py_DECREF(list);
4329 return NULL;
4330 }
4331
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004332 PyList_SET_ITEM(list, i, string);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004333 }
4334
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004335 // The ownership of the Python list is passed to the caller (ie,
4336 // the caller should Py_DECREF() the object when it is finished
4337 // with it).
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004338
4339 return list;
4340}
4341
4342/*
4343 * Check if deleting lines made the cursor position invalid.
4344 * Changed the lines from "lo" to "hi" and added "extra" lines (negative if
4345 * deleted).
4346 */
4347 static void
4348py_fix_cursor(linenr_T lo, linenr_T hi, linenr_T extra)
4349{
4350 if (curwin->w_cursor.lnum >= lo)
4351 {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004352 // Adjust the cursor position if it's in/after the changed
4353 // lines.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004354 if (curwin->w_cursor.lnum >= hi)
4355 {
4356 curwin->w_cursor.lnum += extra;
4357 check_cursor_col();
4358 }
4359 else if (extra < 0)
4360 {
4361 curwin->w_cursor.lnum = lo;
4362 check_cursor();
4363 }
4364 else
4365 check_cursor_col();
4366 changed_cline_bef_curs();
4367 }
4368 invalidate_botline();
4369}
4370
Bram Moolenaar19e60942011-06-19 00:27:51 +02004371/*
4372 * Replace a line in the specified buffer. The line number is
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004373 * in Vim format (1-based). The replacement line is given as
4374 * a Python string object. The object is checked for validity
4375 * and correct format. Errors are returned as a value of FAIL.
4376 * The return value is OK on success.
4377 * If OK is returned and len_change is not NULL, *len_change
4378 * is set to the change in the buffer length.
4379 */
4380 static int
4381SetBufferLine(buf_T *buf, PyInt n, PyObject *line, PyInt *len_change)
4382{
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02004383 bufref_T save_curbuf = {NULL, 0, 0};
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004384 win_T *save_curwin = NULL;
4385 tabpage_T *save_curtab = NULL;
4386
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004387 // First of all, we check the type of the supplied Python object.
4388 // There are three cases:
4389 // 1. NULL, or None - this is a deletion.
4390 // 2. A string - this is a replacement.
4391 // 3. Anything else - this is an error.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004392 if (line == Py_None || line == NULL)
4393 {
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004394 PyErr_Clear();
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004395 switch_to_win_for_buf(buf, &save_curwin, &save_curtab, &save_curbuf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004396
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004397 VimTryStart();
4398
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004399 if (u_savedel((linenr_T)n, 1L) == FAIL)
Bram Moolenaarc476e522013-06-23 13:46:40 +02004400 RAISE_UNDO_FAIL;
Bram Moolenaarca70c072020-05-30 20:30:46 +02004401 else if (ml_delete((linenr_T)n) == FAIL)
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004402 RAISE_DELETE_LINE_FAIL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004403 else
4404 {
Bram Moolenaar63dbfd32019-03-23 17:41:59 +01004405 if (buf == curbuf && (save_curwin != NULL
4406 || save_curbuf.br_buf == NULL))
4407 // Using an existing window for the buffer, adjust the cursor
4408 // position.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004409 py_fix_cursor((linenr_T)n, (linenr_T)n + 1, (linenr_T)-1);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004410 if (save_curbuf.br_buf == NULL)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004411 // Only adjust marks if we managed to switch to a window that
4412 // holds the buffer, otherwise line numbers will be invalid.
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004413 deleted_lines_mark((linenr_T)n, 1L);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004414 }
4415
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004416 restore_win_for_buf(save_curwin, save_curtab, &save_curbuf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004417
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004418 if (VimTryEnd())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004419 return FAIL;
4420
4421 if (len_change)
4422 *len_change = -1;
4423
4424 return OK;
4425 }
Bram Moolenaar808c2bc2013-06-23 13:11:18 +02004426 else if (PyBytes_Check(line) || PyUnicode_Check(line))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004427 {
Bram Moolenaar808c2bc2013-06-23 13:11:18 +02004428 char *save = StringToLine(line);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004429
4430 if (save == NULL)
4431 return FAIL;
4432
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004433 VimTryStart();
4434
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004435 // We do not need to free "save" if ml_replace() consumes it.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004436 PyErr_Clear();
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004437 switch_to_win_for_buf(buf, &save_curwin, &save_curtab, &save_curbuf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004438
4439 if (u_savesub((linenr_T)n) == FAIL)
4440 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02004441 RAISE_UNDO_FAIL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004442 vim_free(save);
4443 }
4444 else if (ml_replace((linenr_T)n, (char_u *)save, FALSE) == FAIL)
4445 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004446 RAISE_REPLACE_LINE_FAIL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004447 vim_free(save);
4448 }
4449 else
4450 changed_bytes((linenr_T)n, 0);
4451
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004452 restore_win_for_buf(save_curwin, save_curtab, &save_curbuf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004453
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004454 // Check that the cursor is not beyond the end of the line now.
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004455 if (buf == curbuf)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004456 check_cursor_col();
4457
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004458 if (VimTryEnd())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004459 return FAIL;
4460
4461 if (len_change)
4462 *len_change = 0;
4463
4464 return OK;
4465 }
4466 else
4467 {
4468 PyErr_BadArgument();
4469 return FAIL;
4470 }
4471}
4472
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004473/*
4474 * Replace a range of lines in the specified buffer. The line numbers are in
Bram Moolenaar19e60942011-06-19 00:27:51 +02004475 * Vim format (1-based). The range is from lo up to, but not including, hi.
4476 * The replacement lines are given as a Python list of string objects. The
4477 * list is checked for validity and correct format. Errors are returned as a
4478 * value of FAIL. The return value is OK on success.
4479 * If OK is returned and len_change is not NULL, *len_change
4480 * is set to the change in the buffer length.
4481 */
4482 static int
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004483SetBufferLineList(
4484 buf_T *buf,
4485 PyInt lo,
4486 PyInt hi,
4487 PyObject *list,
4488 PyInt *len_change)
Bram Moolenaar19e60942011-06-19 00:27:51 +02004489{
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02004490 bufref_T save_curbuf = {NULL, 0, 0};
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004491 win_T *save_curwin = NULL;
4492 tabpage_T *save_curtab = NULL;
4493
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004494 // First of all, we check the type of the supplied Python object.
4495 // There are three cases:
4496 // 1. NULL, or None - this is a deletion.
4497 // 2. A list - this is a replacement.
4498 // 3. Anything else - this is an error.
Bram Moolenaar19e60942011-06-19 00:27:51 +02004499 if (list == Py_None || list == NULL)
4500 {
4501 PyInt i;
4502 PyInt n = (int)(hi - lo);
Bram Moolenaar19e60942011-06-19 00:27:51 +02004503
4504 PyErr_Clear();
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004505 VimTryStart();
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004506 switch_to_win_for_buf(buf, &save_curwin, &save_curtab, &save_curbuf);
Bram Moolenaar19e60942011-06-19 00:27:51 +02004507
4508 if (u_savedel((linenr_T)lo, (long)n) == FAIL)
Bram Moolenaarc476e522013-06-23 13:46:40 +02004509 RAISE_UNDO_FAIL;
Bram Moolenaar19e60942011-06-19 00:27:51 +02004510 else
4511 {
4512 for (i = 0; i < n; ++i)
4513 {
Bram Moolenaarca70c072020-05-30 20:30:46 +02004514 if (ml_delete((linenr_T)lo) == FAIL)
Bram Moolenaar19e60942011-06-19 00:27:51 +02004515 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004516 RAISE_DELETE_LINE_FAIL;
Bram Moolenaar19e60942011-06-19 00:27:51 +02004517 break;
4518 }
4519 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004520 if (buf == curbuf && (save_curwin != NULL
4521 || save_curbuf.br_buf == NULL))
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004522 // Using an existing window for the buffer, adjust the cursor
4523 // position.
Bram Moolenaar19e60942011-06-19 00:27:51 +02004524 py_fix_cursor((linenr_T)lo, (linenr_T)hi, (linenr_T)-n);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004525 if (save_curbuf.br_buf == NULL)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004526 // Only adjust marks if we managed to switch to a window that
4527 // holds the buffer, otherwise line numbers will be invalid.
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004528 deleted_lines_mark((linenr_T)lo, (long)i);
Bram Moolenaar19e60942011-06-19 00:27:51 +02004529 }
4530
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004531 restore_win_for_buf(save_curwin, save_curtab, &save_curbuf);
Bram Moolenaar19e60942011-06-19 00:27:51 +02004532
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004533 if (VimTryEnd())
Bram Moolenaar19e60942011-06-19 00:27:51 +02004534 return FAIL;
4535
4536 if (len_change)
4537 *len_change = -n;
4538
4539 return OK;
4540 }
4541 else if (PyList_Check(list))
4542 {
4543 PyInt i;
4544 PyInt new_len = PyList_Size(list);
4545 PyInt old_len = hi - lo;
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004546 PyInt extra = 0; // lines added to text, can be negative
Bram Moolenaar19e60942011-06-19 00:27:51 +02004547 char **array;
Bram Moolenaar19e60942011-06-19 00:27:51 +02004548
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004549 if (new_len == 0) // avoid allocating zero bytes
Bram Moolenaar19e60942011-06-19 00:27:51 +02004550 array = NULL;
4551 else
4552 {
Bram Moolenaare9ba5162013-05-29 22:02:22 +02004553 array = PyMem_New(char *, new_len);
Bram Moolenaar19e60942011-06-19 00:27:51 +02004554 if (array == NULL)
4555 {
4556 PyErr_NoMemory();
4557 return FAIL;
4558 }
4559 }
4560
4561 for (i = 0; i < new_len; ++i)
4562 {
Bram Moolenaar494ff7e2013-05-30 13:17:17 +02004563 PyObject *line;
Bram Moolenaar19e60942011-06-19 00:27:51 +02004564
Bram Moolenaar494ff7e2013-05-30 13:17:17 +02004565 if (!(line = PyList_GetItem(list, i)) ||
4566 !(array[i] = StringToLine(line)))
Bram Moolenaar19e60942011-06-19 00:27:51 +02004567 {
4568 while (i)
4569 vim_free(array[--i]);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02004570 PyMem_Free(array);
Bram Moolenaar19e60942011-06-19 00:27:51 +02004571 return FAIL;
4572 }
4573 }
4574
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004575 VimTryStart();
Bram Moolenaar19e60942011-06-19 00:27:51 +02004576 PyErr_Clear();
Bram Moolenaar105bc352013-05-17 16:03:57 +02004577
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004578 // START of region without "return". Must call restore_buffer()!
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004579 switch_to_win_for_buf(buf, &save_curwin, &save_curtab, &save_curbuf);
Bram Moolenaar19e60942011-06-19 00:27:51 +02004580
4581 if (u_save((linenr_T)(lo-1), (linenr_T)hi) == FAIL)
Bram Moolenaarc476e522013-06-23 13:46:40 +02004582 RAISE_UNDO_FAIL;
Bram Moolenaar19e60942011-06-19 00:27:51 +02004583
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004584 // If the size of the range is reducing (ie, new_len < old_len) we
4585 // need to delete some old_len. We do this at the start, by
4586 // repeatedly deleting line "lo".
Bram Moolenaar19e60942011-06-19 00:27:51 +02004587 if (!PyErr_Occurred())
4588 {
4589 for (i = 0; i < old_len - new_len; ++i)
Bram Moolenaarca70c072020-05-30 20:30:46 +02004590 if (ml_delete((linenr_T)lo) == FAIL)
Bram Moolenaar19e60942011-06-19 00:27:51 +02004591 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004592 RAISE_DELETE_LINE_FAIL;
Bram Moolenaar19e60942011-06-19 00:27:51 +02004593 break;
4594 }
4595 extra -= i;
4596 }
4597
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004598 // For as long as possible, replace the existing old_len with the
4599 // new old_len. This is a more efficient operation, as it requires
4600 // less memory allocation and freeing.
Bram Moolenaar19e60942011-06-19 00:27:51 +02004601 if (!PyErr_Occurred())
4602 {
4603 for (i = 0; i < old_len && i < new_len; ++i)
4604 if (ml_replace((linenr_T)(lo+i), (char_u *)array[i], FALSE)
4605 == FAIL)
4606 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004607 RAISE_REPLACE_LINE_FAIL;
Bram Moolenaar19e60942011-06-19 00:27:51 +02004608 break;
4609 }
4610 }
4611 else
4612 i = 0;
4613
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004614 // Now we may need to insert the remaining new old_len. If we do, we
4615 // must free the strings as we finish with them (we can't pass the
Bram Moolenaar86181df2020-05-11 23:14:04 +02004616 // responsibility to Vim in this case).
Bram Moolenaar19e60942011-06-19 00:27:51 +02004617 if (!PyErr_Occurred())
4618 {
4619 while (i < new_len)
4620 {
4621 if (ml_append((linenr_T)(lo + i - 1),
4622 (char_u *)array[i], 0, FALSE) == FAIL)
4623 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004624 RAISE_INSERT_LINE_FAIL;
Bram Moolenaar19e60942011-06-19 00:27:51 +02004625 break;
4626 }
4627 vim_free(array[i]);
4628 ++i;
4629 ++extra;
4630 }
4631 }
4632
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004633 // Free any left-over old_len, as a result of an error
Bram Moolenaar19e60942011-06-19 00:27:51 +02004634 while (i < new_len)
4635 {
4636 vim_free(array[i]);
4637 ++i;
4638 }
4639
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004640 // Free the array of old_len. All of its contents have now
4641 // been dealt with (either freed, or the responsibility passed
4642 // to vim.
Bram Moolenaare9ba5162013-05-29 22:02:22 +02004643 PyMem_Free(array);
Bram Moolenaar19e60942011-06-19 00:27:51 +02004644
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004645 // Adjust marks. Invalidate any which lie in the
4646 // changed range, and move any in the remainder of the buffer.
4647 // Only adjust marks if we managed to switch to a window that holds
4648 // the buffer, otherwise line numbers will be invalid.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004649 if (save_curbuf.br_buf == NULL)
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004650 mark_adjust((linenr_T)lo, (linenr_T)(hi - 1),
Bram Moolenaar19e60942011-06-19 00:27:51 +02004651 (long)MAXLNUM, (long)extra);
4652 changed_lines((linenr_T)lo, 0, (linenr_T)hi, (long)extra);
4653
Bram Moolenaar63dbfd32019-03-23 17:41:59 +01004654 if (buf == curbuf && (save_curwin != NULL
4655 || save_curbuf.br_buf == NULL))
4656 // Using an existing window for the buffer, adjust the cursor
4657 // position.
Bram Moolenaar19e60942011-06-19 00:27:51 +02004658 py_fix_cursor((linenr_T)lo, (linenr_T)hi, (linenr_T)extra);
4659
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004660 // END of region without "return".
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004661 restore_win_for_buf(save_curwin, save_curtab, &save_curbuf);
Bram Moolenaar19e60942011-06-19 00:27:51 +02004662
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004663 if (VimTryEnd())
Bram Moolenaar19e60942011-06-19 00:27:51 +02004664 return FAIL;
4665
4666 if (len_change)
4667 *len_change = new_len - old_len;
4668
4669 return OK;
4670 }
4671 else
4672 {
4673 PyErr_BadArgument();
4674 return FAIL;
4675 }
4676}
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004677
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004678/*
4679 * Insert a number of lines into the specified buffer after the specified line.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004680 * The line number is in Vim format (1-based). The lines to be inserted are
4681 * given as a Python list of string objects or as a single string. The lines
4682 * to be added are checked for validity and correct format. Errors are
4683 * returned as a value of FAIL. The return value is OK on success.
4684 * If OK is returned and len_change is not NULL, *len_change
4685 * is set to the change in the buffer length.
4686 */
4687 static int
4688InsertBufferLines(buf_T *buf, PyInt n, PyObject *lines, PyInt *len_change)
4689{
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02004690 bufref_T save_curbuf = {NULL, 0, 0};
Bram Moolenaar95064ec2013-07-17 17:15:25 +02004691 win_T *save_curwin = NULL;
Bram Moolenaar95064ec2013-07-17 17:15:25 +02004692 tabpage_T *save_curtab = NULL;
4693
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004694 // First of all, we check the type of the supplied Python object.
4695 // It must be a string or a list, or the call is in error.
Bram Moolenaar808c2bc2013-06-23 13:11:18 +02004696 if (PyBytes_Check(lines) || PyUnicode_Check(lines))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004697 {
Bram Moolenaar95064ec2013-07-17 17:15:25 +02004698 char *str = StringToLine(lines);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004699
4700 if (str == NULL)
4701 return FAIL;
4702
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004703 PyErr_Clear();
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004704 VimTryStart();
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004705 switch_to_win_for_buf(buf, &save_curwin, &save_curtab, &save_curbuf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004706
Bram Moolenaar95064ec2013-07-17 17:15:25 +02004707 if (u_save((linenr_T)n, (linenr_T)(n + 1)) == FAIL)
Bram Moolenaarc476e522013-06-23 13:46:40 +02004708 RAISE_UNDO_FAIL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004709 else if (ml_append((linenr_T)n, (char_u *)str, 0, FALSE) == FAIL)
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004710 RAISE_INSERT_LINE_FAIL;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004711 else if (save_curbuf.br_buf == NULL)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004712 // Only adjust marks if we managed to switch to a window that
4713 // holds the buffer, otherwise line numbers will be invalid.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004714 appended_lines_mark((linenr_T)n, 1L);
4715
4716 vim_free(str);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004717 restore_win_for_buf(save_curwin, save_curtab, &save_curbuf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004718 update_screen(VALID);
4719
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004720 if (VimTryEnd())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004721 return FAIL;
4722
4723 if (len_change)
4724 *len_change = 1;
4725
4726 return OK;
4727 }
4728 else if (PyList_Check(lines))
4729 {
4730 PyInt i;
4731 PyInt size = PyList_Size(lines);
4732 char **array;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004733
Bram Moolenaare9ba5162013-05-29 22:02:22 +02004734 array = PyMem_New(char *, size);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004735 if (array == NULL)
4736 {
4737 PyErr_NoMemory();
4738 return FAIL;
4739 }
4740
4741 for (i = 0; i < size; ++i)
4742 {
Bram Moolenaar494ff7e2013-05-30 13:17:17 +02004743 PyObject *line;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004744
Bram Moolenaar494ff7e2013-05-30 13:17:17 +02004745 if (!(line = PyList_GetItem(lines, i)) ||
4746 !(array[i] = StringToLine(line)))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004747 {
4748 while (i)
4749 vim_free(array[--i]);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02004750 PyMem_Free(array);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004751 return FAIL;
4752 }
4753 }
4754
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004755 PyErr_Clear();
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004756 VimTryStart();
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004757 switch_to_win_for_buf(buf, &save_curwin, &save_curtab, &save_curbuf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004758
4759 if (u_save((linenr_T)n, (linenr_T)(n + 1)) == FAIL)
Bram Moolenaarc476e522013-06-23 13:46:40 +02004760 RAISE_UNDO_FAIL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004761 else
4762 {
4763 for (i = 0; i < size; ++i)
4764 {
4765 if (ml_append((linenr_T)(n + i),
4766 (char_u *)array[i], 0, FALSE) == FAIL)
4767 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004768 RAISE_INSERT_LINE_FAIL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004769
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004770 // Free the rest of the lines
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004771 while (i < size)
4772 vim_free(array[i++]);
4773
4774 break;
4775 }
4776 vim_free(array[i]);
4777 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004778 if (i > 0 && save_curbuf.br_buf == NULL)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004779 // Only adjust marks if we managed to switch to a window that
4780 // holds the buffer, otherwise line numbers will be invalid.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004781 appended_lines_mark((linenr_T)n, (long)i);
4782 }
4783
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004784 // Free the array of lines. All of its contents have now
4785 // been freed.
Bram Moolenaare9ba5162013-05-29 22:02:22 +02004786 PyMem_Free(array);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004787 restore_win_for_buf(save_curwin, save_curtab, &save_curbuf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004788
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004789 update_screen(VALID);
4790
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004791 if (VimTryEnd())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004792 return FAIL;
4793
4794 if (len_change)
4795 *len_change = size;
4796
4797 return OK;
4798 }
4799 else
4800 {
4801 PyErr_BadArgument();
4802 return FAIL;
4803 }
4804}
4805
4806/*
4807 * Common routines for buffers and line ranges
4808 * -------------------------------------------
4809 */
4810
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02004811typedef struct
4812{
4813 PyObject_HEAD
4814 buf_T *buf;
4815} BufferObject;
4816
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004817 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02004818CheckBuffer(BufferObject *self)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004819{
Bram Moolenaard6e39182013-05-21 18:30:34 +02004820 if (self->buf == INVALID_BUFFER_VALUE)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004821 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004822 PyErr_SET_VIM(N_("attempt to refer to deleted buffer"));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004823 return -1;
4824 }
4825
4826 return 0;
4827}
4828
4829 static PyObject *
4830RBItem(BufferObject *self, PyInt n, PyInt start, PyInt end)
4831{
4832 if (CheckBuffer(self))
4833 return NULL;
4834
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02004835 if (end == -1)
4836 end = self->buf->b_ml.ml_line_count;
4837
Bram Moolenaarbd80f352013-05-12 21:16:23 +02004838 if (n < 0)
4839 n += end - start + 1;
4840
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004841 if (n < 0 || n > end - start)
4842 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004843 PyErr_SET_STRING(PyExc_IndexError, N_("line number out of range"));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004844 return NULL;
4845 }
4846
4847 return GetBufferLine(self->buf, n+start);
4848}
4849
4850 static PyObject *
4851RBSlice(BufferObject *self, PyInt lo, PyInt hi, PyInt start, PyInt end)
4852{
4853 PyInt size;
4854
4855 if (CheckBuffer(self))
4856 return NULL;
4857
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02004858 if (end == -1)
4859 end = self->buf->b_ml.ml_line_count;
4860
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004861 size = end - start + 1;
4862
4863 if (lo < 0)
4864 lo = 0;
4865 else if (lo > size)
4866 lo = size;
4867 if (hi < 0)
4868 hi = 0;
4869 if (hi < lo)
4870 hi = lo;
4871 else if (hi > size)
4872 hi = size;
4873
4874 return GetBufferLineList(self->buf, lo+start, hi+start);
4875}
4876
4877 static PyInt
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004878RBAsItem(
4879 BufferObject *self,
4880 PyInt n,
4881 PyObject *valObject,
4882 PyInt start,
4883 PyInt end,
4884 PyInt *new_end)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004885{
4886 PyInt len_change;
4887
4888 if (CheckBuffer(self))
4889 return -1;
4890
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02004891 if (end == -1)
4892 end = self->buf->b_ml.ml_line_count;
4893
Bram Moolenaarbd80f352013-05-12 21:16:23 +02004894 if (n < 0)
4895 n += end - start + 1;
4896
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004897 if (n < 0 || n > end - start)
4898 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004899 PyErr_SET_STRING(PyExc_IndexError, N_("line number out of range"));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004900 return -1;
4901 }
4902
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004903 if (SetBufferLine(self->buf, n+start, valObject, &len_change) == FAIL)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004904 return -1;
4905
4906 if (new_end)
4907 *new_end = end + len_change;
4908
4909 return 0;
4910}
4911
Bram Moolenaar19e60942011-06-19 00:27:51 +02004912 static PyInt
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004913RBAsSlice(
4914 BufferObject *self,
4915 PyInt lo,
4916 PyInt hi,
4917 PyObject *valObject,
4918 PyInt start,
4919 PyInt end,
4920 PyInt *new_end)
Bram Moolenaar19e60942011-06-19 00:27:51 +02004921{
4922 PyInt size;
4923 PyInt len_change;
4924
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004925 // Self must be a valid buffer
Bram Moolenaar19e60942011-06-19 00:27:51 +02004926 if (CheckBuffer(self))
4927 return -1;
4928
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02004929 if (end == -1)
4930 end = self->buf->b_ml.ml_line_count;
4931
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004932 // Sort out the slice range
Bram Moolenaar19e60942011-06-19 00:27:51 +02004933 size = end - start + 1;
4934
4935 if (lo < 0)
4936 lo = 0;
4937 else if (lo > size)
4938 lo = size;
4939 if (hi < 0)
4940 hi = 0;
4941 if (hi < lo)
4942 hi = lo;
4943 else if (hi > size)
4944 hi = size;
4945
4946 if (SetBufferLineList(self->buf, lo + start, hi + start,
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004947 valObject, &len_change) == FAIL)
Bram Moolenaar19e60942011-06-19 00:27:51 +02004948 return -1;
4949
4950 if (new_end)
4951 *new_end = end + len_change;
4952
4953 return 0;
4954}
4955
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004956
4957 static PyObject *
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004958RBAppend(
4959 BufferObject *self,
4960 PyObject *args,
4961 PyInt start,
4962 PyInt end,
4963 PyInt *new_end)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004964{
4965 PyObject *lines;
4966 PyInt len_change;
4967 PyInt max;
4968 PyInt n;
4969
4970 if (CheckBuffer(self))
4971 return NULL;
4972
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02004973 if (end == -1)
4974 end = self->buf->b_ml.ml_line_count;
4975
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004976 max = n = end - start + 1;
4977
4978 if (!PyArg_ParseTuple(args, "O|n", &lines, &n))
4979 return NULL;
4980
4981 if (n < 0 || n > max)
4982 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004983 PyErr_SET_STRING(PyExc_IndexError, N_("line number out of range"));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004984 return NULL;
4985 }
4986
4987 if (InsertBufferLines(self->buf, n + start - 1, lines, &len_change) == FAIL)
4988 return NULL;
4989
4990 if (new_end)
4991 *new_end = end + len_change;
4992
4993 Py_INCREF(Py_None);
4994 return Py_None;
4995}
4996
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004997// Range object
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004998
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004999static PyTypeObject RangeType;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005000static PySequenceMethods RangeAsSeq;
5001static PyMappingMethods RangeAsMapping;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005002
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005003typedef struct
5004{
5005 PyObject_HEAD
5006 BufferObject *buf;
5007 PyInt start;
5008 PyInt end;
5009} RangeObject;
5010
5011 static PyObject *
5012RangeNew(buf_T *buf, PyInt start, PyInt end)
5013{
5014 BufferObject *bufr;
5015 RangeObject *self;
Bram Moolenaar774267b2013-05-21 20:51:59 +02005016 self = PyObject_GC_New(RangeObject, &RangeType);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005017 if (self == NULL)
5018 return NULL;
5019
5020 bufr = (BufferObject *)BufferNew(buf);
5021 if (bufr == NULL)
5022 {
5023 Py_DECREF(self);
5024 return NULL;
5025 }
5026 Py_INCREF(bufr);
5027
5028 self->buf = bufr;
5029 self->start = start;
5030 self->end = end;
5031
5032 return (PyObject *)(self);
5033}
5034
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005035 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02005036RangeDestructor(RangeObject *self)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005037{
Bram Moolenaar774267b2013-05-21 20:51:59 +02005038 PyObject_GC_UnTrack((void *)(self));
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005039 Py_XDECREF(self->buf);
Bram Moolenaar774267b2013-05-21 20:51:59 +02005040 PyObject_GC_Del((void *)(self));
5041}
5042
5043 static int
5044RangeTraverse(RangeObject *self, visitproc visit, void *arg)
5045{
5046 Py_VISIT(((PyObject *)(self->buf)));
5047 return 0;
5048}
5049
5050 static int
5051RangeClear(RangeObject *self)
5052{
5053 Py_CLEAR(self->buf);
5054 return 0;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005055}
5056
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005057 static PyInt
Bram Moolenaard6e39182013-05-21 18:30:34 +02005058RangeLength(RangeObject *self)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005059{
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005060 // HOW DO WE SIGNAL AN ERROR FROM THIS FUNCTION?
Bram Moolenaard6e39182013-05-21 18:30:34 +02005061 if (CheckBuffer(self->buf))
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005062 return -1; // ???
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005063
Bram Moolenaard6e39182013-05-21 18:30:34 +02005064 return (self->end - self->start + 1);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005065}
5066
5067 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02005068RangeItem(RangeObject *self, PyInt n)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005069{
Bram Moolenaard6e39182013-05-21 18:30:34 +02005070 return RBItem(self->buf, n, self->start, self->end);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005071}
5072
5073 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02005074RangeSlice(RangeObject *self, PyInt lo, PyInt hi)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005075{
Bram Moolenaard6e39182013-05-21 18:30:34 +02005076 return RBSlice(self->buf, lo, hi, self->start, self->end);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005077}
5078
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005079static char *RangeAttrs[] = {
5080 "start", "end",
5081 NULL
5082};
5083
5084 static PyObject *
5085RangeDir(PyObject *self)
5086{
5087 return ObjectDir(self, RangeAttrs);
5088}
5089
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005090 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02005091RangeAppend(RangeObject *self, PyObject *args)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005092{
Bram Moolenaard6e39182013-05-21 18:30:34 +02005093 return RBAppend(self->buf, args, self->start, self->end, &self->end);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005094}
5095
5096 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02005097RangeRepr(RangeObject *self)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005098{
Bram Moolenaard6e39182013-05-21 18:30:34 +02005099 if (self->buf->buf == INVALID_BUFFER_VALUE)
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02005100 return PyString_FromFormat("<range object (for deleted buffer) at %p>",
5101 (self));
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005102 else
5103 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02005104 char *name = (char *)self->buf->buf->b_fname;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005105
5106 if (name == NULL)
5107 name = "";
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005108
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02005109 return PyString_FromFormat("<range %s (%d:%d)>",
Bram Moolenaarf62d9422013-05-30 19:01:24 +02005110 name, (int)self->start, (int)self->end);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005111 }
5112}
5113
5114static struct PyMethodDef RangeMethods[] = {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005115 // name, function, calling, documentation
Bram Moolenaar182dc4f2013-05-21 19:01:55 +02005116 {"append", (PyCFunction)RangeAppend, METH_VARARGS, "Append data to the Vim range" },
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005117 {"__dir__", (PyCFunction)RangeDir, METH_NOARGS, ""},
5118 { NULL, NULL, 0, NULL}
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005119};
5120
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005121static PyTypeObject BufferType;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005122static PySequenceMethods BufferAsSeq;
5123static PyMappingMethods BufferAsMapping;
5124
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005125 static PyObject *
Bram Moolenaar971db462013-05-12 18:44:48 +02005126BufferNew(buf_T *buf)
5127{
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005128 /*
5129 * We need to handle deletion of buffers underneath us.
Bram Moolenaar971db462013-05-12 18:44:48 +02005130 * If we add a "b_python*_ref" field to the buf_T structure,
5131 * then we can get at it in buf_freeall() in vim. We then
5132 * need to create only ONE Python object per buffer - if
5133 * we try to create a second, just INCREF the existing one
5134 * and return it. The (single) Python object referring to
5135 * the buffer is stored in "b_python*_ref".
5136 * Question: what to do on a buf_freeall(). We'll probably
5137 * have to either delete the Python object (DECREF it to
5138 * zero - a bad idea, as it leaves dangling refs!) or
5139 * set the buf_T * value to an invalid value (-1?), which
5140 * means we need checks in all access functions... Bah.
5141 *
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005142 * Python2 and Python3 get different fields and different objects:
Bram Moolenaar971db462013-05-12 18:44:48 +02005143 * b_python_ref and b_python3_ref fields respectively.
5144 */
5145
5146 BufferObject *self;
5147
5148 if (BUF_PYTHON_REF(buf) != NULL)
5149 {
5150 self = BUF_PYTHON_REF(buf);
5151 Py_INCREF(self);
5152 }
5153 else
5154 {
5155 self = PyObject_NEW(BufferObject, &BufferType);
5156 if (self == NULL)
5157 return NULL;
5158 self->buf = buf;
5159 BUF_PYTHON_REF(buf) = self;
5160 }
5161
5162 return (PyObject *)(self);
5163}
5164
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005165 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02005166BufferDestructor(BufferObject *self)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005167{
Bram Moolenaard6e39182013-05-21 18:30:34 +02005168 if (self->buf && self->buf != INVALID_BUFFER_VALUE)
5169 BUF_PYTHON_REF(self->buf) = NULL;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005170
5171 DESTRUCTOR_FINISH(self);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005172}
5173
Bram Moolenaar971db462013-05-12 18:44:48 +02005174 static PyInt
Bram Moolenaard6e39182013-05-21 18:30:34 +02005175BufferLength(BufferObject *self)
Bram Moolenaar971db462013-05-12 18:44:48 +02005176{
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005177 // HOW DO WE SIGNAL AN ERROR FROM THIS FUNCTION?
Bram Moolenaard6e39182013-05-21 18:30:34 +02005178 if (CheckBuffer(self))
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005179 return -1; // ???
Bram Moolenaar971db462013-05-12 18:44:48 +02005180
Bram Moolenaard6e39182013-05-21 18:30:34 +02005181 return (PyInt)(self->buf->b_ml.ml_line_count);
Bram Moolenaar971db462013-05-12 18:44:48 +02005182}
5183
5184 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02005185BufferItem(BufferObject *self, PyInt n)
Bram Moolenaar971db462013-05-12 18:44:48 +02005186{
Bram Moolenaard6e39182013-05-21 18:30:34 +02005187 return RBItem(self, n, 1, -1);
Bram Moolenaar971db462013-05-12 18:44:48 +02005188}
5189
5190 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02005191BufferSlice(BufferObject *self, PyInt lo, PyInt hi)
Bram Moolenaar971db462013-05-12 18:44:48 +02005192{
Bram Moolenaard6e39182013-05-21 18:30:34 +02005193 return RBSlice(self, lo, hi, 1, -1);
Bram Moolenaar971db462013-05-12 18:44:48 +02005194}
5195
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005196static char *BufferAttrs[] = {
5197 "name", "number", "vars", "options", "valid",
5198 NULL
5199};
5200
5201 static PyObject *
5202BufferDir(PyObject *self)
5203{
5204 return ObjectDir(self, BufferAttrs);
5205}
5206
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005207 static PyObject *
Bram Moolenaar9e822c02013-05-29 22:15:30 +02005208BufferAttrValid(BufferObject *self, char *name)
5209{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005210 PyObject *ret;
Bram Moolenaar9e822c02013-05-29 22:15:30 +02005211
5212 if (strcmp(name, "valid") != 0)
5213 return NULL;
5214
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005215 ret = ((self->buf == INVALID_BUFFER_VALUE) ? Py_False : Py_True);
5216 Py_INCREF(ret);
5217 return ret;
Bram Moolenaar9e822c02013-05-29 22:15:30 +02005218}
5219
5220 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02005221BufferAttr(BufferObject *self, char *name)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005222{
5223 if (strcmp(name, "name") == 0)
Bram Moolenaar432b09c2013-05-29 22:26:18 +02005224 return PyString_FromString((self->buf->b_ffname == NULL
Bram Moolenaar41009372013-07-01 22:03:04 +02005225 ? "" : (char *)self->buf->b_ffname));
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005226 else if (strcmp(name, "number") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02005227 return Py_BuildValue(Py_ssize_t_fmt, self->buf->b_fnum);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005228 else if (strcmp(name, "vars") == 0)
Bram Moolenaara9922d62013-05-30 13:01:18 +02005229 return NEW_DICTIONARY(self->buf->b_vars);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005230 else if (strcmp(name, "options") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02005231 return OptionsNew(SREQ_BUF, self->buf, (checkfun) CheckBuffer,
5232 (PyObject *) self);
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005233 else if (strcmp(name, "__members__") == 0)
5234 return ObjectDir(NULL, BufferAttrs);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005235 else
5236 return NULL;
5237}
5238
Bram Moolenaare9ba5162013-05-29 22:02:22 +02005239 static int
5240BufferSetattr(BufferObject *self, char *name, PyObject *valObject)
5241{
5242 if (CheckBuffer(self))
5243 return -1;
5244
5245 if (strcmp(name, "name") == 0)
5246 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005247 char_u *val;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02005248 aco_save_T aco;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005249 int ren_ret;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02005250 PyObject *todecref;
5251
5252 if (!(val = StringToChars(valObject, &todecref)))
5253 return -1;
5254
5255 VimTryStart();
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005256 // Using aucmd_*: autocommands will be executed by rename_buffer
Bram Moolenaare9ba5162013-05-29 22:02:22 +02005257 aucmd_prepbuf(&aco, self->buf);
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005258 ren_ret = rename_buffer(val);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02005259 aucmd_restbuf(&aco);
5260 Py_XDECREF(todecref);
5261 if (VimTryEnd())
5262 return -1;
5263
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005264 if (ren_ret == FAIL)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02005265 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02005266 PyErr_SET_VIM(N_("failed to rename buffer"));
Bram Moolenaare9ba5162013-05-29 22:02:22 +02005267 return -1;
5268 }
5269 return 0;
5270 }
5271 else
5272 {
5273 PyErr_SetString(PyExc_AttributeError, name);
5274 return -1;
5275 }
5276}
5277
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005278 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02005279BufferAppend(BufferObject *self, PyObject *args)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005280{
Bram Moolenaard6e39182013-05-21 18:30:34 +02005281 return RBAppend(self, args, 1, -1, NULL);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005282}
5283
5284 static PyObject *
Bram Moolenaar389a1792013-06-23 13:00:44 +02005285BufferMark(BufferObject *self, PyObject *pmarkObject)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005286{
5287 pos_T *posp;
Bram Moolenaar389a1792013-06-23 13:00:44 +02005288 char_u *pmark;
5289 char_u mark;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02005290 bufref_T savebuf;
Bram Moolenaar389a1792013-06-23 13:00:44 +02005291 PyObject *todecref;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005292
Bram Moolenaard6e39182013-05-21 18:30:34 +02005293 if (CheckBuffer(self))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005294 return NULL;
5295
Bram Moolenaar389a1792013-06-23 13:00:44 +02005296 if (!(pmark = StringToChars(pmarkObject, &todecref)))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005297 return NULL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005298
Bram Moolenaar389a1792013-06-23 13:00:44 +02005299 if (pmark[0] == '\0' || pmark[1] != '\0')
Bram Moolenaar494ff7e2013-05-30 13:17:17 +02005300 {
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +02005301 PyErr_SET_STRING(PyExc_ValueError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02005302 N_("mark name must be a single character"));
Bram Moolenaar841fbd22013-06-23 14:37:07 +02005303 Py_XDECREF(todecref);
Bram Moolenaar494ff7e2013-05-30 13:17:17 +02005304 return NULL;
5305 }
5306
5307 mark = *pmark;
Bram Moolenaar389a1792013-06-23 13:00:44 +02005308
5309 Py_XDECREF(todecref);
5310
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005311 VimTryStart();
Bram Moolenaard6e39182013-05-21 18:30:34 +02005312 switch_buffer(&savebuf, self->buf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005313 posp = getmark(mark, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02005314 restore_buffer(&savebuf);
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005315 if (VimTryEnd())
5316 return NULL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005317
5318 if (posp == NULL)
5319 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02005320 PyErr_SET_VIM(N_("invalid mark name"));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005321 return NULL;
5322 }
5323
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005324 if (posp->lnum <= 0)
5325 {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005326 // Or raise an error?
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005327 Py_INCREF(Py_None);
5328 return Py_None;
5329 }
5330
5331 return Py_BuildValue("(ll)", (long)(posp->lnum), (long)(posp->col));
5332}
5333
5334 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02005335BufferRange(BufferObject *self, PyObject *args)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005336{
5337 PyInt start;
5338 PyInt end;
5339
Bram Moolenaard6e39182013-05-21 18:30:34 +02005340 if (CheckBuffer(self))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005341 return NULL;
5342
5343 if (!PyArg_ParseTuple(args, "nn", &start, &end))
5344 return NULL;
5345
Bram Moolenaard6e39182013-05-21 18:30:34 +02005346 return RangeNew(self->buf, start, end);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005347}
5348
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005349 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02005350BufferRepr(BufferObject *self)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005351{
Bram Moolenaard6e39182013-05-21 18:30:34 +02005352 if (self->buf == INVALID_BUFFER_VALUE)
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02005353 return PyString_FromFormat("<buffer object (deleted) at %p>", self);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005354 else
5355 {
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02005356 char *name = (char *)self->buf->b_fname;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005357
5358 if (name == NULL)
5359 name = "";
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005360
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02005361 return PyString_FromFormat("<buffer %s>", name);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005362 }
5363}
5364
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005365static struct PyMethodDef BufferMethods[] = {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005366 // name, function, calling, documentation
Bram Moolenaar182dc4f2013-05-21 19:01:55 +02005367 {"append", (PyCFunction)BufferAppend, METH_VARARGS, "Append data to Vim buffer" },
Bram Moolenaar389a1792013-06-23 13:00:44 +02005368 {"mark", (PyCFunction)BufferMark, METH_O, "Return (row,col) representing position of named mark" },
Bram Moolenaar182dc4f2013-05-21 19:01:55 +02005369 {"range", (PyCFunction)BufferRange, METH_VARARGS, "Return a range object which represents the part of the given buffer between line numbers s and e" },
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005370 {"__dir__", (PyCFunction)BufferDir, METH_NOARGS, ""},
5371 { NULL, NULL, 0, NULL}
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005372};
5373
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005374/*
5375 * Buffer list object - Implementation
5376 */
5377
5378static PyTypeObject BufMapType;
5379
5380typedef struct
5381{
5382 PyObject_HEAD
5383} BufMapObject;
5384
5385 static PyInt
5386BufMapLength(PyObject *self UNUSED)
5387{
5388 buf_T *b = firstbuf;
5389 PyInt n = 0;
5390
5391 while (b)
5392 {
5393 ++n;
5394 b = b->b_next;
5395 }
5396
5397 return n;
5398}
5399
5400 static PyObject *
5401BufMapItem(PyObject *self UNUSED, PyObject *keyObject)
5402{
5403 buf_T *b;
Bram Moolenaar141be8a2013-06-23 14:16:57 +02005404 long bnr;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005405
Bram Moolenaar141be8a2013-06-23 14:16:57 +02005406 if (NumberToLong(keyObject, &bnr, NUMBER_INT|NUMBER_NATURAL))
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005407 return NULL;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005408
Bram Moolenaar141be8a2013-06-23 14:16:57 +02005409 b = buflist_findnr((int) bnr);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005410
5411 if (b)
5412 return BufferNew(b);
5413 else
5414 {
Bram Moolenaar4d188da2013-05-15 15:35:09 +02005415 PyErr_SetObject(PyExc_KeyError, keyObject);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005416 return NULL;
5417 }
5418}
5419
5420 static void
5421BufMapIterDestruct(PyObject *buffer)
5422{
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005423 // Iteration was stopped before all buffers were processed
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005424 if (buffer)
5425 {
5426 Py_DECREF(buffer);
5427 }
5428}
5429
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02005430 static int
5431BufMapIterTraverse(PyObject *buffer, visitproc visit, void *arg)
5432{
Bram Moolenaar774267b2013-05-21 20:51:59 +02005433 if (buffer)
5434 Py_VISIT(buffer);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02005435 return 0;
5436}
5437
5438 static int
5439BufMapIterClear(PyObject **buffer)
5440{
Bram Moolenaar774267b2013-05-21 20:51:59 +02005441 if (*buffer)
5442 Py_CLEAR(*buffer);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02005443 return 0;
5444}
5445
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005446 static PyObject *
5447BufMapIterNext(PyObject **buffer)
5448{
5449 PyObject *next;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005450 PyObject *ret;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005451
5452 if (!*buffer)
5453 return NULL;
5454
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005455 ret = *buffer;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005456
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005457 if (CheckBuffer((BufferObject *)(ret)))
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005458 {
5459 *buffer = NULL;
5460 return NULL;
5461 }
5462
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005463 if (!((BufferObject *)(ret))->buf->b_next)
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005464 next = NULL;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005465 else if (!(next = BufferNew(((BufferObject *)(ret))->buf->b_next)))
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005466 return NULL;
5467 *buffer = next;
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005468 // Do not increment reference: we no longer hold it (decref), but whoever
5469 // on other side will hold (incref). Decref+incref = nothing.
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005470 return ret;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005471}
5472
5473 static PyObject *
5474BufMapIter(PyObject *self UNUSED)
5475{
5476 PyObject *buffer;
5477
5478 buffer = BufferNew(firstbuf);
5479 return IterNew(buffer,
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02005480 (destructorfun) BufMapIterDestruct, (nextfun) BufMapIterNext,
5481 (traversefun) BufMapIterTraverse, (clearfun) BufMapIterClear);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005482}
5483
5484static PyMappingMethods BufMapAsMapping = {
5485 (lenfunc) BufMapLength,
5486 (binaryfunc) BufMapItem,
5487 (objobjargproc) 0,
5488};
5489
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005490// Current items object
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005491
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005492static char *CurrentAttrs[] = {
5493 "buffer", "window", "line", "range", "tabpage",
5494 NULL
5495};
5496
5497 static PyObject *
5498CurrentDir(PyObject *self)
5499{
5500 return ObjectDir(self, CurrentAttrs);
5501}
5502
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005503 static PyObject *
5504CurrentGetattr(PyObject *self UNUSED, char *name)
5505{
5506 if (strcmp(name, "buffer") == 0)
5507 return (PyObject *)BufferNew(curbuf);
5508 else if (strcmp(name, "window") == 0)
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02005509 return (PyObject *)WindowNew(curwin, curtab);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02005510 else if (strcmp(name, "tabpage") == 0)
5511 return (PyObject *)TabPageNew(curtab);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005512 else if (strcmp(name, "line") == 0)
5513 return GetBufferLine(curbuf, (PyInt)curwin->w_cursor.lnum);
5514 else if (strcmp(name, "range") == 0)
5515 return RangeNew(curbuf, RangeStart, RangeEnd);
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005516 else if (strcmp(name, "__members__") == 0)
5517 return ObjectDir(NULL, CurrentAttrs);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005518 else
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005519#if PY_MAJOR_VERSION < 3
5520 return Py_FindMethod(WindowMethods, self, name);
5521#else
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005522 return NULL;
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005523#endif
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005524}
5525
5526 static int
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005527CurrentSetattr(PyObject *self UNUSED, char *name, PyObject *valObject)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005528{
5529 if (strcmp(name, "line") == 0)
5530 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005531 if (SetBufferLine(curbuf, (PyInt)curwin->w_cursor.lnum, valObject,
5532 NULL) == FAIL)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005533 return -1;
5534
5535 return 0;
5536 }
Bram Moolenaare7614592013-05-15 15:51:08 +02005537 else if (strcmp(name, "buffer") == 0)
5538 {
5539 int count;
5540
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005541 if (valObject->ob_type != &BufferType)
Bram Moolenaare7614592013-05-15 15:51:08 +02005542 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02005543 PyErr_FORMAT(PyExc_TypeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02005544 N_("expected vim.Buffer object, but got %s"),
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005545 Py_TYPE_NAME(valObject));
Bram Moolenaare7614592013-05-15 15:51:08 +02005546 return -1;
5547 }
5548
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005549 if (CheckBuffer((BufferObject *)(valObject)))
Bram Moolenaare7614592013-05-15 15:51:08 +02005550 return -1;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005551 count = ((BufferObject *)(valObject))->buf->b_fnum;
Bram Moolenaare7614592013-05-15 15:51:08 +02005552
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005553 VimTryStart();
Bram Moolenaare7614592013-05-15 15:51:08 +02005554 if (do_buffer(DOBUF_GOTO, DOBUF_FIRST, FORWARD, count, 0) == FAIL)
5555 {
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005556 if (VimTryEnd())
5557 return -1;
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02005558 PyErr_VIM_FORMAT(N_("failed to switch to buffer %d"), count);
Bram Moolenaare7614592013-05-15 15:51:08 +02005559 return -1;
5560 }
5561
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005562 return VimTryEnd();
Bram Moolenaare7614592013-05-15 15:51:08 +02005563 }
5564 else if (strcmp(name, "window") == 0)
5565 {
5566 int count;
5567
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005568 if (valObject->ob_type != &WindowType)
Bram Moolenaare7614592013-05-15 15:51:08 +02005569 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02005570 PyErr_FORMAT(PyExc_TypeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02005571 N_("expected vim.Window object, but got %s"),
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005572 Py_TYPE_NAME(valObject));
Bram Moolenaare7614592013-05-15 15:51:08 +02005573 return -1;
5574 }
5575
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005576 if (CheckWindow((WindowObject *)(valObject)))
Bram Moolenaare7614592013-05-15 15:51:08 +02005577 return -1;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005578 count = get_win_number(((WindowObject *)(valObject))->win, firstwin);
Bram Moolenaare7614592013-05-15 15:51:08 +02005579
5580 if (!count)
5581 {
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +02005582 PyErr_SET_STRING(PyExc_ValueError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02005583 N_("failed to find window in the current tab page"));
Bram Moolenaare7614592013-05-15 15:51:08 +02005584 return -1;
5585 }
5586
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005587 VimTryStart();
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005588 win_goto(((WindowObject *)(valObject))->win);
5589 if (((WindowObject *)(valObject))->win != curwin)
Bram Moolenaare7614592013-05-15 15:51:08 +02005590 {
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005591 if (VimTryEnd())
5592 return -1;
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +02005593 PyErr_SET_STRING(PyExc_RuntimeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02005594 N_("did not switch to the specified window"));
Bram Moolenaare7614592013-05-15 15:51:08 +02005595 return -1;
5596 }
5597
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005598 return VimTryEnd();
Bram Moolenaare7614592013-05-15 15:51:08 +02005599 }
5600 else if (strcmp(name, "tabpage") == 0)
5601 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005602 if (valObject->ob_type != &TabPageType)
Bram Moolenaare7614592013-05-15 15:51:08 +02005603 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02005604 PyErr_FORMAT(PyExc_TypeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02005605 N_("expected vim.TabPage object, but got %s"),
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005606 Py_TYPE_NAME(valObject));
Bram Moolenaare7614592013-05-15 15:51:08 +02005607 return -1;
5608 }
5609
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005610 if (CheckTabPage((TabPageObject *)(valObject)))
Bram Moolenaare7614592013-05-15 15:51:08 +02005611 return -1;
5612
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005613 VimTryStart();
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005614 goto_tabpage_tp(((TabPageObject *)(valObject))->tab, TRUE, TRUE);
5615 if (((TabPageObject *)(valObject))->tab != curtab)
Bram Moolenaare7614592013-05-15 15:51:08 +02005616 {
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005617 if (VimTryEnd())
5618 return -1;
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +02005619 PyErr_SET_STRING(PyExc_RuntimeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02005620 N_("did not switch to the specified tab page"));
Bram Moolenaare7614592013-05-15 15:51:08 +02005621 return -1;
5622 }
5623
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005624 return VimTryEnd();
Bram Moolenaare7614592013-05-15 15:51:08 +02005625 }
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005626 else
5627 {
5628 PyErr_SetString(PyExc_AttributeError, name);
5629 return -1;
5630 }
5631}
5632
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005633static struct PyMethodDef CurrentMethods[] = {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005634 // name, function, calling, documentation
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005635 {"__dir__", (PyCFunction)CurrentDir, METH_NOARGS, ""},
5636 { NULL, NULL, 0, NULL}
5637};
5638
Bram Moolenaardb913952012-06-29 12:54:53 +02005639 static void
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005640init_range_cmd(exarg_T *eap)
5641{
5642 RangeStart = eap->line1;
5643 RangeEnd = eap->line2;
5644}
5645
5646 static void
5647init_range_eval(typval_T *rettv UNUSED)
5648{
5649 RangeStart = (PyInt) curwin->w_cursor.lnum;
5650 RangeEnd = RangeStart;
5651}
5652
5653 static void
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005654run_cmd(const char *cmd, void *arg UNUSED
5655#ifdef PY_CAN_RECURSE
5656 , PyGILState_STATE *pygilstate UNUSED
5657#endif
5658 )
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005659{
Bram Moolenaar41009372013-07-01 22:03:04 +02005660 PyObject *run_ret;
5661 run_ret = PyRun_String((char *)cmd, Py_file_input, globals, globals);
5662 if (run_ret != NULL)
5663 {
5664 Py_DECREF(run_ret);
5665 }
5666 else if (PyErr_Occurred() && PyErr_ExceptionMatches(PyExc_SystemExit))
5667 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005668 semsg(_(e_py_systemexit), "python");
Bram Moolenaar41009372013-07-01 22:03:04 +02005669 PyErr_Clear();
5670 }
5671 else
5672 PyErr_PrintEx(1);
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005673}
5674
5675static const char *code_hdr = "def " DOPY_FUNC "(line, linenr):\n ";
5676static int code_hdr_len = 30;
5677
5678 static void
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005679run_do(const char *cmd, void *arg UNUSED
5680#ifdef PY_CAN_RECURSE
5681 , PyGILState_STATE *pygilstate
5682#endif
5683 )
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005684{
5685 PyInt lnum;
5686 size_t len;
5687 char *code;
5688 int status;
5689 PyObject *pyfunc, *pymain;
Bram Moolenaar41009372013-07-01 22:03:04 +02005690 PyObject *run_ret;
Bram Moolenaara58883b2017-01-29 21:31:09 +01005691 buf_T *was_curbuf = curbuf;
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005692
Bram Moolenaar4ac66762013-05-28 22:31:46 +02005693 if (u_save((linenr_T)RangeStart - 1, (linenr_T)RangeEnd + 1) != OK)
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005694 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005695 emsg(_("cannot save undo information"));
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005696 return;
5697 }
5698
5699 len = code_hdr_len + STRLEN(cmd);
5700 code = PyMem_New(char, len + 1);
5701 memcpy(code, code_hdr, code_hdr_len);
5702 STRCPY(code + code_hdr_len, cmd);
Bram Moolenaar41009372013-07-01 22:03:04 +02005703 run_ret = PyRun_String(code, Py_file_input, globals, globals);
5704 status = -1;
5705 if (run_ret != NULL)
5706 {
5707 status = 0;
5708 Py_DECREF(run_ret);
5709 }
5710 else if (PyErr_Occurred() && PyErr_ExceptionMatches(PyExc_SystemExit))
5711 {
5712 PyMem_Free(code);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005713 semsg(_(e_py_systemexit), "python");
Bram Moolenaar41009372013-07-01 22:03:04 +02005714 PyErr_Clear();
5715 return;
5716 }
5717 else
5718 PyErr_PrintEx(1);
5719
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005720 PyMem_Free(code);
5721
5722 if (status)
5723 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005724 emsg(_("failed to run the code"));
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005725 return;
5726 }
5727
5728 status = 0;
5729 pymain = PyImport_AddModule("__main__");
5730 pyfunc = PyObject_GetAttrString(pymain, DOPY_FUNC);
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005731#ifdef PY_CAN_RECURSE
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005732 PyGILState_Release(*pygilstate);
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005733#endif
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005734
5735 for (lnum = RangeStart; lnum <= RangeEnd; ++lnum)
5736 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005737 PyObject *line;
5738 PyObject *linenr;
5739 PyObject *ret;
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005740
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005741#ifdef PY_CAN_RECURSE
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005742 *pygilstate = PyGILState_Ensure();
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005743#endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005744 // Check the line number, the command my have deleted lines.
Bram Moolenaara58883b2017-01-29 21:31:09 +01005745 if (lnum > curbuf->b_ml.ml_line_count
5746 || !(line = GetBufferLine(curbuf, lnum)))
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005747 goto err;
5748 if (!(linenr = PyInt_FromLong((long) lnum)))
5749 {
5750 Py_DECREF(line);
5751 goto err;
5752 }
5753 ret = PyObject_CallFunctionObjArgs(pyfunc, line, linenr, NULL);
5754 Py_DECREF(line);
5755 Py_DECREF(linenr);
5756 if (!ret)
5757 goto err;
5758
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005759 // Check that the command didn't switch to another buffer.
Bram Moolenaara58883b2017-01-29 21:31:09 +01005760 if (curbuf != was_curbuf)
5761 {
5762 Py_XDECREF(ret);
5763 goto err;
5764 }
5765
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005766 if (ret != Py_None)
5767 if (SetBufferLine(curbuf, lnum, ret, NULL) == FAIL)
Bram Moolenaara58883b2017-01-29 21:31:09 +01005768 {
5769 Py_XDECREF(ret);
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005770 goto err;
Bram Moolenaara58883b2017-01-29 21:31:09 +01005771 }
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005772
5773 Py_XDECREF(ret);
5774 PythonIO_Flush();
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005775#ifdef PY_CAN_RECURSE
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005776 PyGILState_Release(*pygilstate);
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005777#endif
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005778 }
5779 goto out;
5780err:
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005781#ifdef PY_CAN_RECURSE
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005782 *pygilstate = PyGILState_Ensure();
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005783#endif
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005784 PyErr_PrintEx(0);
5785 PythonIO_Flush();
5786 status = 1;
5787out:
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005788#ifdef PY_CAN_RECURSE
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005789 if (!status)
5790 *pygilstate = PyGILState_Ensure();
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005791#endif
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005792 Py_DECREF(pyfunc);
5793 PyObject_SetAttrString(pymain, DOPY_FUNC, NULL);
5794 if (status)
5795 return;
5796 check_cursor();
5797 update_curbuf(NOT_VALID);
5798}
5799
5800 static void
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005801run_eval(const char *cmd, typval_T *rettv
5802#ifdef PY_CAN_RECURSE
5803 , PyGILState_STATE *pygilstate UNUSED
5804#endif
5805 )
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005806{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005807 PyObject *run_ret;
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005808
Bram Moolenaar41009372013-07-01 22:03:04 +02005809 run_ret = PyRun_String((char *)cmd, Py_eval_input, globals, globals);
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005810 if (run_ret == NULL)
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005811 {
Bram Moolenaar91aeaf42013-07-06 13:02:30 +02005812 if (PyErr_Occurred() && PyErr_ExceptionMatches(PyExc_SystemExit))
Bram Moolenaar41009372013-07-01 22:03:04 +02005813 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005814 semsg(_(e_py_systemexit), "python");
Bram Moolenaar41009372013-07-01 22:03:04 +02005815 PyErr_Clear();
5816 }
Bram Moolenaar91aeaf42013-07-06 13:02:30 +02005817 else
5818 {
5819 if (PyErr_Occurred() && !msg_silent)
5820 PyErr_PrintEx(0);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005821 emsg(_("E858: Eval did not return a valid python object"));
Bram Moolenaar91aeaf42013-07-06 13:02:30 +02005822 }
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005823 }
5824 else
5825 {
Bram Moolenaarde323092017-11-09 19:56:08 +01005826 if (ConvertFromPyObject(run_ret, rettv) == -1)
Bram Moolenaar86181df2020-05-11 23:14:04 +02005827 emsg(_("E859: Failed to convert returned python object to a Vim value"));
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005828 Py_DECREF(run_ret);
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005829 }
5830 PyErr_Clear();
5831}
5832
Bram Moolenaar2459a5e2015-02-03 12:55:18 +01005833 static int
Bram Moolenaardb913952012-06-29 12:54:53 +02005834set_ref_in_py(const int copyID)
5835{
5836 pylinkedlist_T *cur;
Bram Moolenaar7be3ab22019-06-23 01:46:15 +02005837 list_T *ll;
5838 int i;
5839 int abort = FALSE;
Bram Moolenaar8110a092016-04-14 15:56:09 +02005840 FunctionObject *func;
Bram Moolenaardb913952012-06-29 12:54:53 +02005841
5842 if (lastdict != NULL)
Bram Moolenaar2459a5e2015-02-03 12:55:18 +01005843 {
Bram Moolenaar8110a092016-04-14 15:56:09 +02005844 for (cur = lastdict ; !abort && cur != NULL ; cur = cur->pll_prev)
Bram Moolenaar7be3ab22019-06-23 01:46:15 +02005845 abort = set_ref_in_dict(((DictionaryObject *)(cur->pll_obj))->dict,
5846 copyID);
Bram Moolenaar2459a5e2015-02-03 12:55:18 +01005847 }
Bram Moolenaardb913952012-06-29 12:54:53 +02005848
5849 if (lastlist != NULL)
Bram Moolenaar2459a5e2015-02-03 12:55:18 +01005850 {
Bram Moolenaar8110a092016-04-14 15:56:09 +02005851 for (cur = lastlist ; !abort && cur != NULL ; cur = cur->pll_prev)
Bram Moolenaardb913952012-06-29 12:54:53 +02005852 {
5853 ll = ((ListObject *) (cur->pll_obj))->list;
Bram Moolenaar7be3ab22019-06-23 01:46:15 +02005854 abort = set_ref_in_list(ll, copyID);
Bram Moolenaardb913952012-06-29 12:54:53 +02005855 }
Bram Moolenaar2459a5e2015-02-03 12:55:18 +01005856 }
5857
Bram Moolenaar8110a092016-04-14 15:56:09 +02005858 if (lastfunc != NULL)
5859 {
5860 for (cur = lastfunc ; !abort && cur != NULL ; cur = cur->pll_prev)
5861 {
5862 func = (FunctionObject *) cur->pll_obj;
Bram Moolenaar7be3ab22019-06-23 01:46:15 +02005863 abort = set_ref_in_dict(func->self, copyID);
Bram Moolenaar8110a092016-04-14 15:56:09 +02005864 if (func->argc)
5865 for (i = 0; !abort && i < func->argc; ++i)
5866 abort = abort
5867 || set_ref_in_item(&func->argv[i], copyID, NULL, NULL);
5868 }
5869 }
5870
Bram Moolenaar2459a5e2015-02-03 12:55:18 +01005871 return abort;
Bram Moolenaardb913952012-06-29 12:54:53 +02005872}
5873
5874 static int
5875set_string_copy(char_u *str, typval_T *tv)
5876{
5877 tv->vval.v_string = vim_strsave(str);
5878 if (tv->vval.v_string == NULL)
5879 {
5880 PyErr_NoMemory();
5881 return -1;
5882 }
5883 return 0;
5884}
5885
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005886 static int
Bram Moolenaarb38caae2013-05-29 22:39:52 +02005887pydict_to_tv(PyObject *obj, typval_T *tv, PyObject *lookup_dict)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005888{
Bram Moolenaarb38caae2013-05-29 22:39:52 +02005889 dict_T *dict;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005890 char_u *key;
5891 dictitem_T *di;
5892 PyObject *keyObject;
5893 PyObject *valObject;
5894 Py_ssize_t iter = 0;
5895
Bram Moolenaar35eacd72013-05-30 22:06:33 +02005896 if (!(dict = py_dict_alloc()))
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005897 return -1;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005898
5899 tv->v_type = VAR_DICT;
Bram Moolenaarb38caae2013-05-29 22:39:52 +02005900 tv->vval.v_dict = dict;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005901
5902 while (PyDict_Next(obj, &iter, &keyObject, &valObject))
5903 {
Bram Moolenaarfc714b32013-05-30 14:52:37 +02005904 PyObject *todecref = NULL;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005905
Bram Moolenaara03e6312013-05-29 22:49:26 +02005906 if (keyObject == NULL || valObject == NULL)
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005907 {
5908 dict_unref(dict);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005909 return -1;
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005910 }
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005911
Bram Moolenaarfc714b32013-05-30 14:52:37 +02005912 if (!(key = StringToChars(keyObject, &todecref)))
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005913 {
5914 dict_unref(dict);
5915 return -1;
5916 }
Bram Moolenaar4f2109d2013-06-02 18:07:37 +02005917
Bram Moolenaarfc714b32013-05-30 14:52:37 +02005918 if (*key == NUL)
5919 {
5920 dict_unref(dict);
5921 Py_XDECREF(todecref);
Bram Moolenaar35eacd72013-05-30 22:06:33 +02005922 RAISE_NO_EMPTY_KEYS;
Bram Moolenaarfc714b32013-05-30 14:52:37 +02005923 return -1;
5924 }
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005925
5926 di = dictitem_alloc(key);
5927
Bram Moolenaarfc714b32013-05-30 14:52:37 +02005928 Py_XDECREF(todecref);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005929
5930 if (di == NULL)
5931 {
5932 PyErr_NoMemory();
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005933 dict_unref(dict);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005934 return -1;
5935 }
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005936
Bram Moolenaarb38caae2013-05-29 22:39:52 +02005937 if (_ConvertFromPyObject(valObject, &di->di_tv, lookup_dict) == -1)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005938 {
5939 vim_free(di);
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005940 dict_unref(dict);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005941 return -1;
5942 }
Bram Moolenaarb38caae2013-05-29 22:39:52 +02005943
5944 if (dict_add(dict, di) == FAIL)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005945 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02005946 RAISE_KEY_ADD_FAIL(di->di_key);
Bram Moolenaara03e6312013-05-29 22:49:26 +02005947 clear_tv(&di->di_tv);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005948 vim_free(di);
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005949 dict_unref(dict);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005950 return -1;
5951 }
5952 }
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005953
5954 --dict->dv_refcount;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005955 return 0;
5956}
5957
5958 static int
Bram Moolenaarb38caae2013-05-29 22:39:52 +02005959pymap_to_tv(PyObject *obj, typval_T *tv, PyObject *lookup_dict)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005960{
Bram Moolenaarb38caae2013-05-29 22:39:52 +02005961 dict_T *dict;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005962 char_u *key;
5963 dictitem_T *di;
5964 PyObject *list;
Bram Moolenaarbcb40972013-05-30 13:22:13 +02005965 PyObject *iterator;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005966 PyObject *keyObject;
5967 PyObject *valObject;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005968
Bram Moolenaar35eacd72013-05-30 22:06:33 +02005969 if (!(dict = py_dict_alloc()))
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005970 return -1;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005971
5972 tv->v_type = VAR_DICT;
Bram Moolenaarb38caae2013-05-29 22:39:52 +02005973 tv->vval.v_dict = dict;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005974
Bram Moolenaarbcb40972013-05-30 13:22:13 +02005975 if (!(list = PyMapping_Keys(obj)))
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005976 {
5977 dict_unref(dict);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005978 return -1;
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005979 }
Bram Moolenaarbcb40972013-05-30 13:22:13 +02005980
5981 if (!(iterator = PyObject_GetIter(list)))
5982 {
5983 dict_unref(dict);
5984 Py_DECREF(list);
5985 return -1;
5986 }
5987 Py_DECREF(list);
5988
5989 while ((keyObject = PyIter_Next(iterator)))
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005990 {
Bram Moolenaarfc714b32013-05-30 14:52:37 +02005991 PyObject *todecref;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005992
Bram Moolenaarfc714b32013-05-30 14:52:37 +02005993 if (!(key = StringToChars(keyObject, &todecref)))
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005994 {
Bram Moolenaarfc714b32013-05-30 14:52:37 +02005995 Py_DECREF(keyObject);
Bram Moolenaarbcb40972013-05-30 13:22:13 +02005996 Py_DECREF(iterator);
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005997 dict_unref(dict);
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005998 return -1;
5999 }
Bram Moolenaar4f2109d2013-06-02 18:07:37 +02006000
Bram Moolenaarfc714b32013-05-30 14:52:37 +02006001 if (*key == NUL)
6002 {
6003 Py_DECREF(keyObject);
6004 Py_DECREF(iterator);
6005 Py_XDECREF(todecref);
6006 dict_unref(dict);
Bram Moolenaar35eacd72013-05-30 22:06:33 +02006007 RAISE_NO_EMPTY_KEYS;
Bram Moolenaarfc714b32013-05-30 14:52:37 +02006008 return -1;
6009 }
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006010
Bram Moolenaarbcb40972013-05-30 13:22:13 +02006011 if (!(valObject = PyObject_GetItem(obj, keyObject)))
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006012 {
Bram Moolenaarbcb40972013-05-30 13:22:13 +02006013 Py_DECREF(keyObject);
6014 Py_DECREF(iterator);
Bram Moolenaarfc714b32013-05-30 14:52:37 +02006015 Py_XDECREF(todecref);
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02006016 dict_unref(dict);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006017 return -1;
6018 }
6019
6020 di = dictitem_alloc(key);
6021
Bram Moolenaarbcb40972013-05-30 13:22:13 +02006022 Py_DECREF(keyObject);
Bram Moolenaarfc714b32013-05-30 14:52:37 +02006023 Py_XDECREF(todecref);
Bram Moolenaarbcb40972013-05-30 13:22:13 +02006024
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006025 if (di == NULL)
6026 {
Bram Moolenaarbcb40972013-05-30 13:22:13 +02006027 Py_DECREF(iterator);
6028 Py_DECREF(valObject);
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02006029 dict_unref(dict);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006030 PyErr_NoMemory();
6031 return -1;
6032 }
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006033
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006034 if (_ConvertFromPyObject(valObject, &di->di_tv, lookup_dict) == -1)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006035 {
Bram Moolenaarbcb40972013-05-30 13:22:13 +02006036 Py_DECREF(iterator);
6037 Py_DECREF(valObject);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006038 vim_free(di);
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02006039 dict_unref(dict);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006040 return -1;
6041 }
Bram Moolenaara03e6312013-05-29 22:49:26 +02006042
Bram Moolenaarbcb40972013-05-30 13:22:13 +02006043 Py_DECREF(valObject);
6044
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006045 if (dict_add(dict, di) == FAIL)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006046 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02006047 RAISE_KEY_ADD_FAIL(di->di_key);
Bram Moolenaarbcb40972013-05-30 13:22:13 +02006048 Py_DECREF(iterator);
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02006049 dictitem_free(di);
6050 dict_unref(dict);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006051 return -1;
6052 }
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006053 }
Bram Moolenaarbcb40972013-05-30 13:22:13 +02006054 Py_DECREF(iterator);
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02006055 --dict->dv_refcount;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006056 return 0;
6057}
6058
6059 static int
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006060pyseq_to_tv(PyObject *obj, typval_T *tv, PyObject *lookup_dict)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006061{
6062 list_T *l;
6063
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02006064 if (!(l = py_list_alloc()))
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006065 return -1;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006066
6067 tv->v_type = VAR_LIST;
6068 tv->vval.v_list = l;
6069
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006070 if (list_py_concat(l, obj, lookup_dict) == -1)
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02006071 {
6072 list_unref(l);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006073 return -1;
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02006074 }
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006075
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02006076 --l->lv_refcount;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006077 return 0;
6078}
6079
Bram Moolenaardb913952012-06-29 12:54:53 +02006080typedef int (*pytotvfunc)(PyObject *, typval_T *, PyObject *);
6081
6082 static int
6083convert_dl(PyObject *obj, typval_T *tv,
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006084 pytotvfunc py_to_tv, PyObject *lookup_dict)
Bram Moolenaardb913952012-06-29 12:54:53 +02006085{
6086 PyObject *capsule;
6087 char hexBuf[sizeof(void *) * 2 + 3];
6088
Bram Moolenaar792f0e32018-02-27 17:27:13 +01006089 sprintf(hexBuf, "%p", (void *)obj);
Bram Moolenaardb913952012-06-29 12:54:53 +02006090
Bram Moolenaarb999ba22019-02-14 13:28:45 +01006091#ifdef PY_USE_CAPSULE
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006092 capsule = PyDict_GetItemString(lookup_dict, hexBuf);
Bram Moolenaarb999ba22019-02-14 13:28:45 +01006093#else
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006094 capsule = (PyObject *)PyDict_GetItemString(lookup_dict, hexBuf);
Bram Moolenaarb999ba22019-02-14 13:28:45 +01006095#endif
Bram Moolenaar221d6872012-06-30 13:34:34 +02006096 if (capsule == NULL)
Bram Moolenaardb913952012-06-29 12:54:53 +02006097 {
Bram Moolenaarb999ba22019-02-14 13:28:45 +01006098#ifdef PY_USE_CAPSULE
Bram Moolenaardb913952012-06-29 12:54:53 +02006099 capsule = PyCapsule_New(tv, NULL, NULL);
Bram Moolenaarb999ba22019-02-14 13:28:45 +01006100#else
Bram Moolenaar221d6872012-06-30 13:34:34 +02006101 capsule = PyCObject_FromVoidPtr(tv, NULL);
Bram Moolenaarb999ba22019-02-14 13:28:45 +01006102#endif
Bram Moolenaara03e6312013-05-29 22:49:26 +02006103 if (PyDict_SetItemString(lookup_dict, hexBuf, capsule))
6104 {
6105 Py_DECREF(capsule);
6106 tv->v_type = VAR_UNKNOWN;
6107 return -1;
6108 }
Bram Moolenaar841fbd22013-06-23 14:37:07 +02006109
6110 Py_DECREF(capsule);
6111
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006112 if (py_to_tv(obj, tv, lookup_dict) == -1)
Bram Moolenaardb913952012-06-29 12:54:53 +02006113 {
6114 tv->v_type = VAR_UNKNOWN;
6115 return -1;
6116 }
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01006117 // As we are not using copy_tv which increments reference count we must
6118 // do it ourself.
Bram Moolenaar81e7a9c2016-02-06 19:57:20 +01006119 if (tv->v_type == VAR_DICT)
6120 ++tv->vval.v_dict->dv_refcount;
6121 else if (tv->v_type == VAR_LIST)
6122 ++tv->vval.v_list->lv_refcount;
Bram Moolenaardb913952012-06-29 12:54:53 +02006123 }
6124 else
6125 {
Bram Moolenaar2afa3232012-06-29 16:28:28 +02006126 typval_T *v;
6127
Bram Moolenaarb999ba22019-02-14 13:28:45 +01006128#ifdef PY_USE_CAPSULE
Bram Moolenaar2afa3232012-06-29 16:28:28 +02006129 v = PyCapsule_GetPointer(capsule, NULL);
Bram Moolenaarb999ba22019-02-14 13:28:45 +01006130#else
Bram Moolenaar221d6872012-06-30 13:34:34 +02006131 v = PyCObject_AsVoidPtr(capsule);
Bram Moolenaarb999ba22019-02-14 13:28:45 +01006132#endif
Bram Moolenaardb913952012-06-29 12:54:53 +02006133 copy_tv(v, tv);
6134 }
6135 return 0;
6136}
6137
6138 static int
Bram Moolenaara9922d62013-05-30 13:01:18 +02006139ConvertFromPyMapping(PyObject *obj, typval_T *tv)
6140{
6141 PyObject *lookup_dict;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006142 int ret;
Bram Moolenaara9922d62013-05-30 13:01:18 +02006143
6144 if (!(lookup_dict = PyDict_New()))
6145 return -1;
6146
6147 if (PyType_IsSubtype(obj->ob_type, &DictionaryType))
6148 {
6149 tv->v_type = VAR_DICT;
6150 tv->vval.v_dict = (((DictionaryObject *)(obj))->dict);
6151 ++tv->vval.v_dict->dv_refcount;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006152 ret = 0;
Bram Moolenaara9922d62013-05-30 13:01:18 +02006153 }
6154 else if (PyDict_Check(obj))
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006155 ret = convert_dl(obj, tv, pydict_to_tv, lookup_dict);
Bram Moolenaara9922d62013-05-30 13:01:18 +02006156 else if (PyMapping_Check(obj))
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006157 ret = convert_dl(obj, tv, pymap_to_tv, lookup_dict);
Bram Moolenaara9922d62013-05-30 13:01:18 +02006158 else
6159 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02006160 PyErr_FORMAT(PyExc_TypeError,
Bram Moolenaar86181df2020-05-11 23:14:04 +02006161 N_("unable to convert %s to a Vim dictionary"),
Bram Moolenaarc476e522013-06-23 13:46:40 +02006162 Py_TYPE_NAME(obj));
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006163 ret = -1;
Bram Moolenaara9922d62013-05-30 13:01:18 +02006164 }
6165 Py_DECREF(lookup_dict);
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006166 return ret;
Bram Moolenaara9922d62013-05-30 13:01:18 +02006167}
6168
6169 static int
Bram Moolenaar8110a092016-04-14 15:56:09 +02006170ConvertFromPySequence(PyObject *obj, typval_T *tv)
6171{
6172 PyObject *lookup_dict;
Bram Moolenaar66210042016-04-15 20:40:41 +02006173 int ret;
Bram Moolenaar8110a092016-04-14 15:56:09 +02006174
6175 if (!(lookup_dict = PyDict_New()))
6176 return -1;
6177
6178 if (PyType_IsSubtype(obj->ob_type, &ListType))
6179 {
6180 tv->v_type = VAR_LIST;
6181 tv->vval.v_list = (((ListObject *)(obj))->list);
6182 ++tv->vval.v_list->lv_refcount;
Bram Moolenaar66210042016-04-15 20:40:41 +02006183 ret = 0;
Bram Moolenaar8110a092016-04-14 15:56:09 +02006184 }
6185 else if (PyIter_Check(obj) || PySequence_Check(obj))
Bram Moolenaar66210042016-04-15 20:40:41 +02006186 ret = convert_dl(obj, tv, pyseq_to_tv, lookup_dict);
Bram Moolenaar8110a092016-04-14 15:56:09 +02006187 else
6188 {
6189 PyErr_FORMAT(PyExc_TypeError,
Bram Moolenaar86181df2020-05-11 23:14:04 +02006190 N_("unable to convert %s to a Vim list"),
Bram Moolenaar8110a092016-04-14 15:56:09 +02006191 Py_TYPE_NAME(obj));
6192 ret = -1;
6193 }
6194 Py_DECREF(lookup_dict);
6195 return ret;
6196}
6197
6198 static int
Bram Moolenaardb913952012-06-29 12:54:53 +02006199ConvertFromPyObject(PyObject *obj, typval_T *tv)
6200{
6201 PyObject *lookup_dict;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006202 int ret;
Bram Moolenaardb913952012-06-29 12:54:53 +02006203
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02006204 if (!(lookup_dict = PyDict_New()))
6205 return -1;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006206 ret = _ConvertFromPyObject(obj, tv, lookup_dict);
Bram Moolenaardb913952012-06-29 12:54:53 +02006207 Py_DECREF(lookup_dict);
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006208 return ret;
Bram Moolenaardb913952012-06-29 12:54:53 +02006209}
6210
6211 static int
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006212_ConvertFromPyObject(PyObject *obj, typval_T *tv, PyObject *lookup_dict)
Bram Moolenaardb913952012-06-29 12:54:53 +02006213{
Bram Moolenaara9922d62013-05-30 13:01:18 +02006214 if (PyType_IsSubtype(obj->ob_type, &DictionaryType))
Bram Moolenaardb913952012-06-29 12:54:53 +02006215 {
6216 tv->v_type = VAR_DICT;
6217 tv->vval.v_dict = (((DictionaryObject *)(obj))->dict);
6218 ++tv->vval.v_dict->dv_refcount;
6219 }
Bram Moolenaar841fbd22013-06-23 14:37:07 +02006220 else if (PyType_IsSubtype(obj->ob_type, &ListType))
Bram Moolenaardb913952012-06-29 12:54:53 +02006221 {
6222 tv->v_type = VAR_LIST;
6223 tv->vval.v_list = (((ListObject *)(obj))->list);
6224 ++tv->vval.v_list->lv_refcount;
6225 }
Bram Moolenaar841fbd22013-06-23 14:37:07 +02006226 else if (PyType_IsSubtype(obj->ob_type, &FunctionType))
Bram Moolenaardb913952012-06-29 12:54:53 +02006227 {
Bram Moolenaar8110a092016-04-14 15:56:09 +02006228 FunctionObject *func = (FunctionObject *) obj;
6229 if (func->self != NULL || func->argv != NULL)
6230 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02006231 partial_T *pt = ALLOC_CLEAR_ONE(partial_T);
6232
Bram Moolenaar8110a092016-04-14 15:56:09 +02006233 set_partial(func, pt, TRUE);
6234 tv->vval.v_partial = pt;
6235 tv->v_type = VAR_PARTIAL;
6236 }
6237 else
6238 {
6239 if (set_string_copy(func->name, tv) == -1)
6240 return -1;
Bram Moolenaardb913952012-06-29 12:54:53 +02006241
Bram Moolenaar8110a092016-04-14 15:56:09 +02006242 tv->v_type = VAR_FUNC;
6243 }
6244 func_ref(func->name);
Bram Moolenaardb913952012-06-29 12:54:53 +02006245 }
Bram Moolenaardb913952012-06-29 12:54:53 +02006246 else if (PyBytes_Check(obj))
6247 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006248 char_u *str;
Bram Moolenaardb913952012-06-29 12:54:53 +02006249
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006250 if (PyBytes_AsStringAndSize(obj, (char **) &str, NULL) == -1)
Bram Moolenaarafa6b9a2012-09-05 19:09:11 +02006251 return -1;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006252 if (str == NULL)
Bram Moolenaardb913952012-06-29 12:54:53 +02006253 return -1;
6254
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006255 if (set_string_copy(str, tv) == -1)
Bram Moolenaardb913952012-06-29 12:54:53 +02006256 return -1;
6257
6258 tv->v_type = VAR_STRING;
6259 }
6260 else if (PyUnicode_Check(obj))
6261 {
6262 PyObject *bytes;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006263 char_u *str;
Bram Moolenaardb913952012-06-29 12:54:53 +02006264
Bram Moolenaar808c2bc2013-06-23 13:11:18 +02006265 bytes = PyUnicode_AsEncodedString(obj, ENC_OPT, NULL);
Bram Moolenaardb913952012-06-29 12:54:53 +02006266 if (bytes == NULL)
6267 return -1;
6268
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006269 if(PyBytes_AsStringAndSize(bytes, (char **) &str, NULL) == -1)
Bram Moolenaarafa6b9a2012-09-05 19:09:11 +02006270 return -1;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006271 if (str == NULL)
Bram Moolenaardb913952012-06-29 12:54:53 +02006272 return -1;
6273
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006274 if (set_string_copy(str, tv))
Bram Moolenaardb913952012-06-29 12:54:53 +02006275 {
6276 Py_XDECREF(bytes);
6277 return -1;
6278 }
6279 Py_XDECREF(bytes);
6280
6281 tv->v_type = VAR_STRING;
6282 }
Bram Moolenaar335e0b62013-04-24 13:47:45 +02006283#if PY_MAJOR_VERSION < 3
Bram Moolenaardb913952012-06-29 12:54:53 +02006284 else if (PyInt_Check(obj))
6285 {
6286 tv->v_type = VAR_NUMBER;
6287 tv->vval.v_number = (varnumber_T) PyInt_AsLong(obj);
Bram Moolenaar141be8a2013-06-23 14:16:57 +02006288 if (PyErr_Occurred())
6289 return -1;
Bram Moolenaardb913952012-06-29 12:54:53 +02006290 }
6291#endif
6292 else if (PyLong_Check(obj))
6293 {
6294 tv->v_type = VAR_NUMBER;
6295 tv->vval.v_number = (varnumber_T) PyLong_AsLong(obj);
Bram Moolenaar141be8a2013-06-23 14:16:57 +02006296 if (PyErr_Occurred())
6297 return -1;
Bram Moolenaardb913952012-06-29 12:54:53 +02006298 }
6299 else if (PyDict_Check(obj))
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006300 return convert_dl(obj, tv, pydict_to_tv, lookup_dict);
Bram Moolenaardb913952012-06-29 12:54:53 +02006301#ifdef FEAT_FLOAT
6302 else if (PyFloat_Check(obj))
6303 {
6304 tv->v_type = VAR_FLOAT;
6305 tv->vval.v_float = (float_T) PyFloat_AsDouble(obj);
6306 }
6307#endif
Bram Moolenaarbcb40972013-05-30 13:22:13 +02006308 else if (PyObject_HasAttrString(obj, "keys"))
6309 return convert_dl(obj, tv, pymap_to_tv, lookup_dict);
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01006310 // PyObject_GetIter can create built-in iterator for any sequence object
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02006311 else if (PyIter_Check(obj) || PySequence_Check(obj))
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006312 return convert_dl(obj, tv, pyseq_to_tv, lookup_dict);
Bram Moolenaardb913952012-06-29 12:54:53 +02006313 else if (PyMapping_Check(obj))
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006314 return convert_dl(obj, tv, pymap_to_tv, lookup_dict);
Bram Moolenaar141be8a2013-06-23 14:16:57 +02006315 else if (PyNumber_Check(obj))
6316 {
6317 PyObject *num;
6318
6319 if (!(num = PyNumber_Long(obj)))
6320 return -1;
6321
6322 tv->v_type = VAR_NUMBER;
6323 tv->vval.v_number = (varnumber_T) PyLong_AsLong(num);
6324
6325 Py_DECREF(num);
6326 }
Bram Moolenaarde323092017-11-09 19:56:08 +01006327 else if (obj == Py_None)
6328 {
6329 tv->v_type = VAR_SPECIAL;
6330 tv->vval.v_number = VVAL_NONE;
6331 }
Bram Moolenaardb913952012-06-29 12:54:53 +02006332 else
6333 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02006334 PyErr_FORMAT(PyExc_TypeError,
Bram Moolenaar86181df2020-05-11 23:14:04 +02006335 N_("unable to convert %s to a Vim structure"),
Bram Moolenaarc476e522013-06-23 13:46:40 +02006336 Py_TYPE_NAME(obj));
Bram Moolenaardb913952012-06-29 12:54:53 +02006337 return -1;
6338 }
6339 return 0;
6340}
6341
6342 static PyObject *
6343ConvertToPyObject(typval_T *tv)
6344{
Bram Moolenaar8110a092016-04-14 15:56:09 +02006345 typval_T *argv;
6346 int i;
Bram Moolenaardb913952012-06-29 12:54:53 +02006347 if (tv == NULL)
6348 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02006349 PyErr_SET_VIM(N_("internal error: NULL reference passed"));
Bram Moolenaardb913952012-06-29 12:54:53 +02006350 return NULL;
6351 }
6352 switch (tv->v_type)
6353 {
6354 case VAR_STRING:
Bram Moolenaard1f13fd2012-10-05 21:30:07 +02006355 return PyBytes_FromString(tv->vval.v_string == NULL
6356 ? "" : (char *)tv->vval.v_string);
Bram Moolenaardb913952012-06-29 12:54:53 +02006357 case VAR_NUMBER:
6358 return PyLong_FromLong((long) tv->vval.v_number);
Bram Moolenaardb913952012-06-29 12:54:53 +02006359 case VAR_FLOAT:
Bram Moolenaara5d59532020-01-26 21:42:03 +01006360#ifdef FEAT_FLOAT
Bram Moolenaardb913952012-06-29 12:54:53 +02006361 return PyFloat_FromDouble((double) tv->vval.v_float);
6362#endif
6363 case VAR_LIST:
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02006364 return NEW_LIST(tv->vval.v_list);
Bram Moolenaardb913952012-06-29 12:54:53 +02006365 case VAR_DICT:
Bram Moolenaara9922d62013-05-30 13:01:18 +02006366 return NEW_DICTIONARY(tv->vval.v_dict);
Bram Moolenaardb913952012-06-29 12:54:53 +02006367 case VAR_FUNC:
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02006368 return NEW_FUNCTION(tv->vval.v_string == NULL
Bram Moolenaar8110a092016-04-14 15:56:09 +02006369 ? (char_u *)"" : tv->vval.v_string,
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02006370 0, NULL, NULL, TRUE);
Bram Moolenaar4c908612016-03-24 21:58:12 +01006371 case VAR_PARTIAL:
Bram Moolenaar8110a092016-04-14 15:56:09 +02006372 if (tv->vval.v_partial->pt_argc)
6373 {
6374 argv = PyMem_New(typval_T, (size_t)tv->vval.v_partial->pt_argc);
6375 for (i = 0; i < tv->vval.v_partial->pt_argc; i++)
6376 copy_tv(&tv->vval.v_partial->pt_argv[i], &argv[i]);
6377 }
6378 else
6379 argv = NULL;
6380 if (tv->vval.v_partial->pt_dict != NULL)
6381 tv->vval.v_partial->pt_dict->dv_refcount++;
Bram Moolenaar4c908612016-03-24 21:58:12 +01006382 return NEW_FUNCTION(tv->vval.v_partial == NULL
Bram Moolenaar437bafe2016-08-01 15:40:54 +02006383 ? (char_u *)"" : partial_name(tv->vval.v_partial),
Bram Moolenaar8110a092016-04-14 15:56:09 +02006384 tv->vval.v_partial->pt_argc, argv,
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02006385 tv->vval.v_partial->pt_dict,
6386 tv->vval.v_partial->pt_auto);
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01006387 case VAR_BLOB:
6388 return PyBytes_FromStringAndSize(
6389 (char*) tv->vval.v_blob->bv_ga.ga_data,
6390 (Py_ssize_t) tv->vval.v_blob->bv_ga.ga_len);
Bram Moolenaardb913952012-06-29 12:54:53 +02006391 case VAR_UNKNOWN:
Bram Moolenaar4c683752020-04-05 21:38:23 +02006392 case VAR_ANY:
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01006393 case VAR_VOID:
Bram Moolenaar4c908612016-03-24 21:58:12 +01006394 case VAR_CHANNEL:
6395 case VAR_JOB:
Bram Moolenaardb913952012-06-29 12:54:53 +02006396 Py_INCREF(Py_None);
6397 return Py_None;
Bram Moolenaar9b4a15d2020-01-11 16:05:23 +01006398 case VAR_BOOL:
Bram Moolenaar4c908612016-03-24 21:58:12 +01006399 case VAR_SPECIAL:
6400 switch (tv->vval.v_number)
6401 {
6402 case VVAL_FALSE: return AlwaysFalse(NULL);
6403 case VVAL_TRUE: return AlwaysTrue(NULL);
6404 case VVAL_NONE:
6405 case VVAL_NULL: return AlwaysNone(NULL);
6406 }
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02006407 PyErr_SET_VIM(N_("internal error: invalid value type"));
Bram Moolenaardb913952012-06-29 12:54:53 +02006408 return NULL;
6409 }
Bram Moolenaar4c908612016-03-24 21:58:12 +01006410 return NULL;
Bram Moolenaardb913952012-06-29 12:54:53 +02006411}
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006412
6413typedef struct
6414{
6415 PyObject_HEAD
6416} CurrentObject;
6417static PyTypeObject CurrentType;
6418
6419 static void
6420init_structs(void)
6421{
Bram Moolenaara80faa82020-04-12 19:37:17 +02006422 CLEAR_FIELD(OutputType);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006423 OutputType.tp_name = "vim.message";
6424 OutputType.tp_basicsize = sizeof(OutputObject);
6425 OutputType.tp_flags = Py_TPFLAGS_DEFAULT;
6426 OutputType.tp_doc = "vim message object";
6427 OutputType.tp_methods = OutputMethods;
6428#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02006429 OutputType.tp_getattro = (getattrofunc)OutputGetattro;
6430 OutputType.tp_setattro = (setattrofunc)OutputSetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006431 OutputType.tp_alloc = call_PyType_GenericAlloc;
6432 OutputType.tp_new = call_PyType_GenericNew;
6433 OutputType.tp_free = call_PyObject_Free;
Bram Moolenaard4a8c982018-05-15 22:31:18 +02006434 OutputType.tp_base = &PyStdPrinter_Type;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006435#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02006436 OutputType.tp_getattr = (getattrfunc)OutputGetattr;
6437 OutputType.tp_setattr = (setattrfunc)OutputSetattr;
Bram Moolenaard4a8c982018-05-15 22:31:18 +02006438 // Disabled, because this causes a crash in test86
6439 // OutputType.tp_base = &PyFile_Type;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006440#endif
6441
Bram Moolenaara80faa82020-04-12 19:37:17 +02006442 CLEAR_FIELD(IterType);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02006443 IterType.tp_name = "vim.iter";
6444 IterType.tp_basicsize = sizeof(IterObject);
Bram Moolenaar07b88642013-05-29 22:58:32 +02006445 IterType.tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_GC;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02006446 IterType.tp_doc = "generic iterator object";
Bram Moolenaard6e39182013-05-21 18:30:34 +02006447 IterType.tp_iter = (getiterfunc)IterIter;
6448 IterType.tp_iternext = (iternextfunc)IterNext;
6449 IterType.tp_dealloc = (destructor)IterDestructor;
6450 IterType.tp_traverse = (traverseproc)IterTraverse;
6451 IterType.tp_clear = (inquiry)IterClear;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02006452
Bram Moolenaara80faa82020-04-12 19:37:17 +02006453 CLEAR_FIELD(BufferType);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006454 BufferType.tp_name = "vim.buffer";
6455 BufferType.tp_basicsize = sizeof(BufferType);
Bram Moolenaard6e39182013-05-21 18:30:34 +02006456 BufferType.tp_dealloc = (destructor)BufferDestructor;
6457 BufferType.tp_repr = (reprfunc)BufferRepr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006458 BufferType.tp_as_sequence = &BufferAsSeq;
6459 BufferType.tp_as_mapping = &BufferAsMapping;
6460 BufferType.tp_flags = Py_TPFLAGS_DEFAULT;
6461 BufferType.tp_doc = "vim buffer object";
6462 BufferType.tp_methods = BufferMethods;
6463#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02006464 BufferType.tp_getattro = (getattrofunc)BufferGetattro;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02006465 BufferType.tp_setattro = (setattrofunc)BufferSetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006466 BufferType.tp_alloc = call_PyType_GenericAlloc;
6467 BufferType.tp_new = call_PyType_GenericNew;
6468 BufferType.tp_free = call_PyObject_Free;
6469#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02006470 BufferType.tp_getattr = (getattrfunc)BufferGetattr;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02006471 BufferType.tp_setattr = (setattrfunc)BufferSetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006472#endif
6473
Bram Moolenaara80faa82020-04-12 19:37:17 +02006474 CLEAR_FIELD(WindowType);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006475 WindowType.tp_name = "vim.window";
6476 WindowType.tp_basicsize = sizeof(WindowObject);
Bram Moolenaard6e39182013-05-21 18:30:34 +02006477 WindowType.tp_dealloc = (destructor)WindowDestructor;
6478 WindowType.tp_repr = (reprfunc)WindowRepr;
Bram Moolenaar07b88642013-05-29 22:58:32 +02006479 WindowType.tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_GC;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006480 WindowType.tp_doc = "vim Window object";
6481 WindowType.tp_methods = WindowMethods;
Bram Moolenaard6e39182013-05-21 18:30:34 +02006482 WindowType.tp_traverse = (traverseproc)WindowTraverse;
6483 WindowType.tp_clear = (inquiry)WindowClear;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006484#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02006485 WindowType.tp_getattro = (getattrofunc)WindowGetattro;
6486 WindowType.tp_setattro = (setattrofunc)WindowSetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006487 WindowType.tp_alloc = call_PyType_GenericAlloc;
6488 WindowType.tp_new = call_PyType_GenericNew;
6489 WindowType.tp_free = call_PyObject_Free;
6490#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02006491 WindowType.tp_getattr = (getattrfunc)WindowGetattr;
6492 WindowType.tp_setattr = (setattrfunc)WindowSetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006493#endif
6494
Bram Moolenaara80faa82020-04-12 19:37:17 +02006495 CLEAR_FIELD(TabPageType);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006496 TabPageType.tp_name = "vim.tabpage";
6497 TabPageType.tp_basicsize = sizeof(TabPageObject);
Bram Moolenaard6e39182013-05-21 18:30:34 +02006498 TabPageType.tp_dealloc = (destructor)TabPageDestructor;
6499 TabPageType.tp_repr = (reprfunc)TabPageRepr;
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006500 TabPageType.tp_flags = Py_TPFLAGS_DEFAULT;
6501 TabPageType.tp_doc = "vim tab page object";
6502 TabPageType.tp_methods = TabPageMethods;
6503#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02006504 TabPageType.tp_getattro = (getattrofunc)TabPageGetattro;
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006505 TabPageType.tp_alloc = call_PyType_GenericAlloc;
6506 TabPageType.tp_new = call_PyType_GenericNew;
6507 TabPageType.tp_free = call_PyObject_Free;
6508#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02006509 TabPageType.tp_getattr = (getattrfunc)TabPageGetattr;
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006510#endif
6511
Bram Moolenaara80faa82020-04-12 19:37:17 +02006512 CLEAR_FIELD(BufMapType);
Bram Moolenaardfa38d42013-05-15 13:38:47 +02006513 BufMapType.tp_name = "vim.bufferlist";
6514 BufMapType.tp_basicsize = sizeof(BufMapObject);
6515 BufMapType.tp_as_mapping = &BufMapAsMapping;
6516 BufMapType.tp_flags = Py_TPFLAGS_DEFAULT;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02006517 BufMapType.tp_iter = BufMapIter;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006518 BufferType.tp_doc = "vim buffer list";
6519
Bram Moolenaara80faa82020-04-12 19:37:17 +02006520 CLEAR_FIELD(WinListType);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006521 WinListType.tp_name = "vim.windowlist";
6522 WinListType.tp_basicsize = sizeof(WinListType);
6523 WinListType.tp_as_sequence = &WinListAsSeq;
6524 WinListType.tp_flags = Py_TPFLAGS_DEFAULT;
6525 WinListType.tp_doc = "vim window list";
Bram Moolenaard6e39182013-05-21 18:30:34 +02006526 WinListType.tp_dealloc = (destructor)WinListDestructor;
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006527
Bram Moolenaara80faa82020-04-12 19:37:17 +02006528 CLEAR_FIELD(TabListType);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006529 TabListType.tp_name = "vim.tabpagelist";
6530 TabListType.tp_basicsize = sizeof(TabListType);
6531 TabListType.tp_as_sequence = &TabListAsSeq;
6532 TabListType.tp_flags = Py_TPFLAGS_DEFAULT;
6533 TabListType.tp_doc = "vim tab page list";
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006534
Bram Moolenaara80faa82020-04-12 19:37:17 +02006535 CLEAR_FIELD(RangeType);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006536 RangeType.tp_name = "vim.range";
6537 RangeType.tp_basicsize = sizeof(RangeObject);
Bram Moolenaard6e39182013-05-21 18:30:34 +02006538 RangeType.tp_dealloc = (destructor)RangeDestructor;
6539 RangeType.tp_repr = (reprfunc)RangeRepr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006540 RangeType.tp_as_sequence = &RangeAsSeq;
6541 RangeType.tp_as_mapping = &RangeAsMapping;
Bram Moolenaar07b88642013-05-29 22:58:32 +02006542 RangeType.tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_GC;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006543 RangeType.tp_doc = "vim Range object";
6544 RangeType.tp_methods = RangeMethods;
Bram Moolenaar774267b2013-05-21 20:51:59 +02006545 RangeType.tp_traverse = (traverseproc)RangeTraverse;
6546 RangeType.tp_clear = (inquiry)RangeClear;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006547#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02006548 RangeType.tp_getattro = (getattrofunc)RangeGetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006549 RangeType.tp_alloc = call_PyType_GenericAlloc;
6550 RangeType.tp_new = call_PyType_GenericNew;
6551 RangeType.tp_free = call_PyObject_Free;
6552#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02006553 RangeType.tp_getattr = (getattrfunc)RangeGetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006554#endif
6555
Bram Moolenaara80faa82020-04-12 19:37:17 +02006556 CLEAR_FIELD(CurrentType);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006557 CurrentType.tp_name = "vim.currentdata";
6558 CurrentType.tp_basicsize = sizeof(CurrentObject);
6559 CurrentType.tp_flags = Py_TPFLAGS_DEFAULT;
6560 CurrentType.tp_doc = "vim current object";
Bram Moolenaardd8aca62013-05-29 22:36:10 +02006561 CurrentType.tp_methods = CurrentMethods;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006562#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02006563 CurrentType.tp_getattro = (getattrofunc)CurrentGetattro;
6564 CurrentType.tp_setattro = (setattrofunc)CurrentSetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006565#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02006566 CurrentType.tp_getattr = (getattrfunc)CurrentGetattr;
6567 CurrentType.tp_setattr = (setattrfunc)CurrentSetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006568#endif
6569
Bram Moolenaara80faa82020-04-12 19:37:17 +02006570 CLEAR_FIELD(DictionaryType);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006571 DictionaryType.tp_name = "vim.dictionary";
6572 DictionaryType.tp_basicsize = sizeof(DictionaryObject);
Bram Moolenaard6e39182013-05-21 18:30:34 +02006573 DictionaryType.tp_dealloc = (destructor)DictionaryDestructor;
Bram Moolenaara9922d62013-05-30 13:01:18 +02006574 DictionaryType.tp_as_sequence = &DictionaryAsSeq;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006575 DictionaryType.tp_as_mapping = &DictionaryAsMapping;
Bram Moolenaara9922d62013-05-30 13:01:18 +02006576 DictionaryType.tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE;
Bram Moolenaar86181df2020-05-11 23:14:04 +02006577 DictionaryType.tp_doc = "dictionary pushing modifications to Vim structure";
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006578 DictionaryType.tp_methods = DictionaryMethods;
Bram Moolenaara9922d62013-05-30 13:01:18 +02006579 DictionaryType.tp_iter = (getiterfunc)DictionaryIter;
6580 DictionaryType.tp_new = (newfunc)DictionaryConstructor;
6581 DictionaryType.tp_alloc = (allocfunc)PyType_GenericAlloc;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006582#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02006583 DictionaryType.tp_getattro = (getattrofunc)DictionaryGetattro;
6584 DictionaryType.tp_setattro = (setattrofunc)DictionarySetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006585#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02006586 DictionaryType.tp_getattr = (getattrfunc)DictionaryGetattr;
6587 DictionaryType.tp_setattr = (setattrfunc)DictionarySetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006588#endif
6589
Bram Moolenaara80faa82020-04-12 19:37:17 +02006590 CLEAR_FIELD(ListType);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006591 ListType.tp_name = "vim.list";
Bram Moolenaard6e39182013-05-21 18:30:34 +02006592 ListType.tp_dealloc = (destructor)ListDestructor;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006593 ListType.tp_basicsize = sizeof(ListObject);
6594 ListType.tp_as_sequence = &ListAsSeq;
6595 ListType.tp_as_mapping = &ListAsMapping;
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02006596 ListType.tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE;
Bram Moolenaar86181df2020-05-11 23:14:04 +02006597 ListType.tp_doc = "list pushing modifications to Vim structure";
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006598 ListType.tp_methods = ListMethods;
Bram Moolenaard6e39182013-05-21 18:30:34 +02006599 ListType.tp_iter = (getiterfunc)ListIter;
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02006600 ListType.tp_new = (newfunc)ListConstructor;
6601 ListType.tp_alloc = (allocfunc)PyType_GenericAlloc;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006602#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02006603 ListType.tp_getattro = (getattrofunc)ListGetattro;
6604 ListType.tp_setattro = (setattrofunc)ListSetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006605#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02006606 ListType.tp_getattr = (getattrfunc)ListGetattr;
6607 ListType.tp_setattr = (setattrfunc)ListSetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006608#endif
6609
Bram Moolenaara80faa82020-04-12 19:37:17 +02006610 CLEAR_FIELD(FunctionType);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02006611 FunctionType.tp_name = "vim.function";
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006612 FunctionType.tp_basicsize = sizeof(FunctionObject);
Bram Moolenaard6e39182013-05-21 18:30:34 +02006613 FunctionType.tp_dealloc = (destructor)FunctionDestructor;
6614 FunctionType.tp_call = (ternaryfunc)FunctionCall;
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02006615 FunctionType.tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE;
Bram Moolenaar86181df2020-05-11 23:14:04 +02006616 FunctionType.tp_doc = "object that calls Vim function";
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006617 FunctionType.tp_methods = FunctionMethods;
Bram Moolenaara5b725c2013-05-30 12:43:54 +02006618 FunctionType.tp_repr = (reprfunc)FunctionRepr;
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02006619 FunctionType.tp_new = (newfunc)FunctionConstructor;
6620 FunctionType.tp_alloc = (allocfunc)PyType_GenericAlloc;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006621#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02006622 FunctionType.tp_getattro = (getattrofunc)FunctionGetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006623#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02006624 FunctionType.tp_getattr = (getattrfunc)FunctionGetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006625#endif
6626
Bram Moolenaara80faa82020-04-12 19:37:17 +02006627 CLEAR_FIELD(OptionsType);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02006628 OptionsType.tp_name = "vim.options";
6629 OptionsType.tp_basicsize = sizeof(OptionsObject);
Bram Moolenaar1028f4d2014-01-14 16:55:00 +01006630 OptionsType.tp_as_sequence = &OptionsAsSeq;
Bram Moolenaar07b88642013-05-29 22:58:32 +02006631 OptionsType.tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_GC;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02006632 OptionsType.tp_doc = "object for manipulating options";
Bram Moolenaar1028f4d2014-01-14 16:55:00 +01006633 OptionsType.tp_iter = (getiterfunc)OptionsIter;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02006634 OptionsType.tp_as_mapping = &OptionsAsMapping;
Bram Moolenaard6e39182013-05-21 18:30:34 +02006635 OptionsType.tp_dealloc = (destructor)OptionsDestructor;
6636 OptionsType.tp_traverse = (traverseproc)OptionsTraverse;
6637 OptionsType.tp_clear = (inquiry)OptionsClear;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02006638
Bram Moolenaar79a494d2018-07-22 04:30:21 +02006639#if PY_VERSION_HEX < 0x030700f0
Bram Moolenaara80faa82020-04-12 19:37:17 +02006640 CLEAR_FIELD(LoaderType);
Bram Moolenaar81c40c52013-06-12 14:41:04 +02006641 LoaderType.tp_name = "vim.Loader";
6642 LoaderType.tp_basicsize = sizeof(LoaderObject);
6643 LoaderType.tp_flags = Py_TPFLAGS_DEFAULT;
6644 LoaderType.tp_doc = "vim message object";
6645 LoaderType.tp_methods = LoaderMethods;
6646 LoaderType.tp_dealloc = (destructor)LoaderDestructor;
Bram Moolenaar79a494d2018-07-22 04:30:21 +02006647#endif
Bram Moolenaar81c40c52013-06-12 14:41:04 +02006648
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006649#if PY_MAJOR_VERSION >= 3
Bram Moolenaara80faa82020-04-12 19:37:17 +02006650 CLEAR_FIELD(vimmodule);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006651 vimmodule.m_name = "vim";
6652 vimmodule.m_doc = "Vim Python interface\n";
6653 vimmodule.m_size = -1;
6654 vimmodule.m_methods = VimMethods;
6655#endif
6656}
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006657
6658#define PYTYPE_READY(type) \
6659 if (PyType_Ready(&type)) \
6660 return -1;
6661
6662 static int
Bram Moolenaarfb97f282013-07-09 17:42:46 +02006663init_types(void)
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006664{
6665 PYTYPE_READY(IterType);
6666 PYTYPE_READY(BufferType);
6667 PYTYPE_READY(RangeType);
6668 PYTYPE_READY(WindowType);
6669 PYTYPE_READY(TabPageType);
6670 PYTYPE_READY(BufMapType);
6671 PYTYPE_READY(WinListType);
6672 PYTYPE_READY(TabListType);
6673 PYTYPE_READY(CurrentType);
6674 PYTYPE_READY(DictionaryType);
6675 PYTYPE_READY(ListType);
6676 PYTYPE_READY(FunctionType);
6677 PYTYPE_READY(OptionsType);
6678 PYTYPE_READY(OutputType);
Bram Moolenaar79a494d2018-07-22 04:30:21 +02006679#if PY_VERSION_HEX < 0x030700f0
Bram Moolenaar9f3685a2013-06-12 14:20:36 +02006680 PYTYPE_READY(LoaderType);
Bram Moolenaar79a494d2018-07-22 04:30:21 +02006681#endif
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02006682 return 0;
6683}
6684
6685 static int
Bram Moolenaar5ab9d982013-06-16 14:25:57 +02006686init_sys_path(void)
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02006687{
6688 PyObject *path;
6689 PyObject *path_hook;
6690 PyObject *path_hooks;
6691
6692 if (!(path_hook = PyObject_GetAttrString(vim_module, "path_hook")))
6693 return -1;
6694
6695 if (!(path_hooks = PySys_GetObject("path_hooks")))
6696 {
6697 PyErr_Clear();
6698 path_hooks = PyList_New(1);
6699 PyList_SET_ITEM(path_hooks, 0, path_hook);
6700 if (PySys_SetObject("path_hooks", path_hooks))
6701 {
6702 Py_DECREF(path_hooks);
6703 return -1;
6704 }
6705 Py_DECREF(path_hooks);
6706 }
6707 else if (PyList_Check(path_hooks))
6708 {
6709 if (PyList_Append(path_hooks, path_hook))
6710 {
6711 Py_DECREF(path_hook);
6712 return -1;
6713 }
6714 Py_DECREF(path_hook);
6715 }
6716 else
6717 {
6718 VimTryStart();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006719 emsg(_("Failed to set path hook: sys.path_hooks is not a list\n"
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02006720 "You should now do the following:\n"
6721 "- append vim.path_hook to sys.path_hooks\n"
6722 "- append vim.VIM_SPECIAL_PATH to sys.path\n"));
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01006723 VimTryEnd(); // Discard the error
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02006724 Py_DECREF(path_hook);
6725 return 0;
6726 }
6727
6728 if (!(path = PySys_GetObject("path")))
6729 {
6730 PyErr_Clear();
6731 path = PyList_New(1);
6732 Py_INCREF(vim_special_path_object);
6733 PyList_SET_ITEM(path, 0, vim_special_path_object);
6734 if (PySys_SetObject("path", path))
6735 {
6736 Py_DECREF(path);
6737 return -1;
6738 }
6739 Py_DECREF(path);
6740 }
6741 else if (PyList_Check(path))
6742 {
6743 if (PyList_Append(path, vim_special_path_object))
6744 return -1;
6745 }
6746 else
6747 {
6748 VimTryStart();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006749 emsg(_("Failed to set path: sys.path is not a list\n"
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02006750 "You should now append vim.VIM_SPECIAL_PATH to sys.path"));
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01006751 VimTryEnd(); // Discard the error
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02006752 }
6753
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006754 return 0;
6755}
6756
6757static BufMapObject TheBufferMap =
6758{
6759 PyObject_HEAD_INIT(&BufMapType)
6760};
6761
6762static WinListObject TheWindowList =
6763{
6764 PyObject_HEAD_INIT(&WinListType)
6765 NULL
6766};
6767
6768static CurrentObject TheCurrent =
6769{
6770 PyObject_HEAD_INIT(&CurrentType)
6771};
6772
6773static TabListObject TheTabPageList =
6774{
6775 PyObject_HEAD_INIT(&TabListType)
6776};
6777
6778static struct numeric_constant {
6779 char *name;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006780 int val;
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006781} numeric_constants[] = {
6782 {"VAR_LOCKED", VAR_LOCKED},
6783 {"VAR_FIXED", VAR_FIXED},
6784 {"VAR_SCOPE", VAR_SCOPE},
6785 {"VAR_DEF_SCOPE", VAR_DEF_SCOPE},
6786};
6787
6788static struct object_constant {
6789 char *name;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006790 PyObject *valObject;
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006791} object_constants[] = {
6792 {"buffers", (PyObject *)(void *)&TheBufferMap},
6793 {"windows", (PyObject *)(void *)&TheWindowList},
6794 {"tabpages", (PyObject *)(void *)&TheTabPageList},
6795 {"current", (PyObject *)(void *)&TheCurrent},
Bram Moolenaarcac867a2013-05-21 19:50:34 +02006796
6797 {"Buffer", (PyObject *)&BufferType},
6798 {"Range", (PyObject *)&RangeType},
6799 {"Window", (PyObject *)&WindowType},
6800 {"TabPage", (PyObject *)&TabPageType},
6801 {"Dictionary", (PyObject *)&DictionaryType},
6802 {"List", (PyObject *)&ListType},
6803 {"Function", (PyObject *)&FunctionType},
6804 {"Options", (PyObject *)&OptionsType},
Bram Moolenaar79a494d2018-07-22 04:30:21 +02006805#if PY_VERSION_HEX < 0x030700f0
Bram Moolenaar81c40c52013-06-12 14:41:04 +02006806 {"_Loader", (PyObject *)&LoaderType},
Bram Moolenaar79a494d2018-07-22 04:30:21 +02006807#endif
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006808};
6809
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006810#define ADD_OBJECT(m, name, obj) \
Bram Moolenaardee2e312013-06-23 16:35:47 +02006811 if (PyModule_AddObject(m, name, obj)) \
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006812 return -1;
6813
6814#define ADD_CHECKED_OBJECT(m, name, obj) \
6815 { \
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006816 PyObject *valObject = obj; \
6817 if (!valObject) \
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006818 return -1; \
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006819 ADD_OBJECT(m, name, valObject); \
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006820 }
6821
6822 static int
Bram Moolenaardee2e312013-06-23 16:35:47 +02006823populate_module(PyObject *m)
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006824{
Bram Moolenaarc1ba10c2013-06-10 20:39:03 +02006825 int i;
6826 PyObject *other_module;
Bram Moolenaarf9c9b322013-06-10 20:47:36 +02006827 PyObject *attr;
Bram Moolenaar81c40c52013-06-12 14:41:04 +02006828 PyObject *imp;
Bram Moolenaar79a494d2018-07-22 04:30:21 +02006829#if PY_VERSION_HEX >= 0x030700f0
6830 PyObject *dict;
6831 PyObject *cls;
6832#endif
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006833
6834 for (i = 0; i < (int)(sizeof(numeric_constants)
6835 / sizeof(struct numeric_constant));
6836 ++i)
6837 ADD_CHECKED_OBJECT(m, numeric_constants[i].name,
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006838 PyInt_FromLong(numeric_constants[i].val));
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006839
6840 for (i = 0; i < (int)(sizeof(object_constants)
6841 / sizeof(struct object_constant));
6842 ++i)
6843 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006844 PyObject *valObject;
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006845
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006846 valObject = object_constants[i].valObject;
6847 Py_INCREF(valObject);
6848 ADD_OBJECT(m, object_constants[i].name, valObject);
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006849 }
6850
6851 if (!(VimError = PyErr_NewException("vim.error", NULL, NULL)))
6852 return -1;
6853 ADD_OBJECT(m, "error", VimError);
6854
Bram Moolenaarda6c0332019-09-01 16:01:30 +02006855 ADD_CHECKED_OBJECT(m, "vars", NEW_DICTIONARY(get_globvar_dict()));
6856 ADD_CHECKED_OBJECT(m, "vvars", NEW_DICTIONARY(get_vimvar_dict()));
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006857 ADD_CHECKED_OBJECT(m, "options",
6858 OptionsNew(SREQ_GLOBAL, NULL, dummy_check, NULL));
Bram Moolenaarf4258302013-06-02 18:20:17 +02006859
Bram Moolenaarc1ba10c2013-06-10 20:39:03 +02006860 if (!(other_module = PyImport_ImportModule("os")))
Bram Moolenaarf4258302013-06-02 18:20:17 +02006861 return -1;
Bram Moolenaarc1ba10c2013-06-10 20:39:03 +02006862 ADD_OBJECT(m, "os", other_module);
Bram Moolenaarf4258302013-06-02 18:20:17 +02006863
Bram Moolenaar22081f42016-06-01 20:38:34 +02006864#if PY_MAJOR_VERSION >= 3
Bram Moolenaarc1ba10c2013-06-10 20:39:03 +02006865 if (!(py_getcwd = PyObject_GetAttrString(other_module, "getcwd")))
Bram Moolenaarf4258302013-06-02 18:20:17 +02006866 return -1;
Bram Moolenaar22081f42016-06-01 20:38:34 +02006867#else
6868 if (!(py_getcwd = PyObject_GetAttrString(other_module, "getcwdu")))
6869 return -1;
6870#endif
Bram Moolenaarf4258302013-06-02 18:20:17 +02006871 ADD_OBJECT(m, "_getcwd", py_getcwd)
6872
Bram Moolenaarc1ba10c2013-06-10 20:39:03 +02006873 if (!(py_chdir = PyObject_GetAttrString(other_module, "chdir")))
Bram Moolenaarf4258302013-06-02 18:20:17 +02006874 return -1;
6875 ADD_OBJECT(m, "_chdir", py_chdir);
Bram Moolenaardee2e312013-06-23 16:35:47 +02006876 if (!(attr = PyObject_GetAttrString(m, "chdir")))
Bram Moolenaarf4258302013-06-02 18:20:17 +02006877 return -1;
Bram Moolenaarf9c9b322013-06-10 20:47:36 +02006878 if (PyObject_SetAttrString(other_module, "chdir", attr))
6879 {
6880 Py_DECREF(attr);
6881 return -1;
6882 }
6883 Py_DECREF(attr);
Bram Moolenaarf4258302013-06-02 18:20:17 +02006884
Bram Moolenaarc1ba10c2013-06-10 20:39:03 +02006885 if ((py_fchdir = PyObject_GetAttrString(other_module, "fchdir")))
Bram Moolenaarf4258302013-06-02 18:20:17 +02006886 {
6887 ADD_OBJECT(m, "_fchdir", py_fchdir);
Bram Moolenaardee2e312013-06-23 16:35:47 +02006888 if (!(attr = PyObject_GetAttrString(m, "fchdir")))
Bram Moolenaarf4258302013-06-02 18:20:17 +02006889 return -1;
Bram Moolenaarf9c9b322013-06-10 20:47:36 +02006890 if (PyObject_SetAttrString(other_module, "fchdir", attr))
6891 {
6892 Py_DECREF(attr);
6893 return -1;
6894 }
6895 Py_DECREF(attr);
Bram Moolenaarf4258302013-06-02 18:20:17 +02006896 }
Bram Moolenaare9056b12013-06-03 20:04:48 +02006897 else
6898 PyErr_Clear();
Bram Moolenaarf4258302013-06-02 18:20:17 +02006899
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02006900 if (!(vim_special_path_object = PyString_FromString(vim_special_path)))
6901 return -1;
6902
6903 ADD_OBJECT(m, "VIM_SPECIAL_PATH", vim_special_path_object);
6904
Bram Moolenaar79a494d2018-07-22 04:30:21 +02006905#if PY_VERSION_HEX >= 0x030700f0
6906 if (!(imp = PyImport_ImportModule("importlib.machinery")))
6907 return -1;
6908
6909 dict = PyModule_GetDict(imp);
6910
6911 if (!(cls = PyDict_GetItemString(dict, "PathFinder")))
6912 {
6913 Py_DECREF(imp);
6914 return -1;
6915 }
6916
6917 if (!(py_find_spec = PyObject_GetAttrString(cls, "find_spec")))
6918 {
6919 Py_DECREF(imp);
6920 return -1;
6921 }
6922
Bram Moolenaarb999ba22019-02-14 13:28:45 +01006923 if ((py_find_module = PyObject_GetAttrString(cls, "find_module")))
6924 {
6925 // find_module() is deprecated, this may stop working in some later
6926 // version.
6927 ADD_OBJECT(m, "_find_module", py_find_module);
6928 }
6929
Bram Moolenaar79a494d2018-07-22 04:30:21 +02006930 Py_DECREF(imp);
6931
6932 ADD_OBJECT(m, "_find_spec", py_find_spec);
6933#else
Bram Moolenaar81c40c52013-06-12 14:41:04 +02006934 if (!(imp = PyImport_ImportModule("imp")))
6935 return -1;
6936
6937 if (!(py_find_module = PyObject_GetAttrString(imp, "find_module")))
6938 {
6939 Py_DECREF(imp);
6940 return -1;
6941 }
6942
6943 if (!(py_load_module = PyObject_GetAttrString(imp, "load_module")))
6944 {
6945 Py_DECREF(py_find_module);
6946 Py_DECREF(imp);
6947 return -1;
6948 }
6949
6950 Py_DECREF(imp);
6951
Bram Moolenaar9f3685a2013-06-12 14:20:36 +02006952 ADD_OBJECT(m, "_find_module", py_find_module);
6953 ADD_OBJECT(m, "_load_module", py_load_module);
Bram Moolenaar79a494d2018-07-22 04:30:21 +02006954#endif
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02006955
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006956 return 0;
6957}