blob: a13a5e345a77a86177552840cca988954109b630 [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 Moolenaar8a7d6542020-01-26 15:56:19 +0100788 range_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 {
1916 vim_free(di);
Bram Moolenaara9922d62013-05-30 13:01:18 +02001917 dictitem_free(di);
Bram Moolenaarc476e522013-06-23 13:46:40 +02001918 RAISE_KEY_ADD_FAIL(key);
1919 Py_XDECREF(todecref);
Bram Moolenaardb913952012-06-29 12:54:53 +02001920 return -1;
1921 }
1922 }
1923 else
1924 clear_tv(&di->di_tv);
1925
Bram Moolenaar35eacd72013-05-30 22:06:33 +02001926 Py_XDECREF(todecref);
Bram Moolenaardb913952012-06-29 12:54:53 +02001927
1928 copy_tv(&tv, &di->di_tv);
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02001929 clear_tv(&tv);
Bram Moolenaardb913952012-06-29 12:54:53 +02001930 return 0;
1931}
1932
Bram Moolenaara9922d62013-05-30 13:01:18 +02001933typedef PyObject *(*hi_to_py)(hashitem_T *);
1934
Bram Moolenaardb913952012-06-29 12:54:53 +02001935 static PyObject *
Bram Moolenaara9922d62013-05-30 13:01:18 +02001936DictionaryListObjects(DictionaryObject *self, hi_to_py hiconvert)
Bram Moolenaardb913952012-06-29 12:54:53 +02001937{
Bram Moolenaard6e39182013-05-21 18:30:34 +02001938 dict_T *dict = self->dict;
Bram Moolenaardb913952012-06-29 12:54:53 +02001939 long_u todo = dict->dv_hashtab.ht_used;
1940 Py_ssize_t i = 0;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001941 PyObject *ret;
Bram Moolenaardb913952012-06-29 12:54:53 +02001942 hashitem_T *hi;
Bram Moolenaara9922d62013-05-30 13:01:18 +02001943 PyObject *newObj;
Bram Moolenaardb913952012-06-29 12:54:53 +02001944
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001945 ret = PyList_New(todo);
Bram Moolenaardb913952012-06-29 12:54:53 +02001946 for (hi = dict->dv_hashtab.ht_array; todo > 0; ++hi)
1947 {
1948 if (!HASHITEM_EMPTY(hi))
1949 {
Bram Moolenaara9922d62013-05-30 13:01:18 +02001950 if (!(newObj = hiconvert(hi)))
1951 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001952 Py_DECREF(ret);
Bram Moolenaara9922d62013-05-30 13:01:18 +02001953 return NULL;
1954 }
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001955 PyList_SET_ITEM(ret, i, newObj);
Bram Moolenaardb913952012-06-29 12:54:53 +02001956 --todo;
1957 ++i;
1958 }
1959 }
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001960 return ret;
Bram Moolenaardb913952012-06-29 12:54:53 +02001961}
1962
Bram Moolenaara9922d62013-05-30 13:01:18 +02001963 static PyObject *
1964dict_key(hashitem_T *hi)
1965{
1966 return PyBytes_FromString((char *)(hi->hi_key));
1967}
1968
1969 static PyObject *
1970DictionaryListKeys(DictionaryObject *self)
1971{
1972 return DictionaryListObjects(self, dict_key);
1973}
1974
1975 static PyObject *
1976dict_val(hashitem_T *hi)
1977{
1978 dictitem_T *di;
1979
1980 di = dict_lookup(hi);
1981 return ConvertToPyObject(&di->di_tv);
1982}
1983
1984 static PyObject *
1985DictionaryListValues(DictionaryObject *self)
1986{
1987 return DictionaryListObjects(self, dict_val);
1988}
1989
1990 static PyObject *
1991dict_item(hashitem_T *hi)
1992{
1993 PyObject *keyObject;
1994 PyObject *valObject;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02001995 PyObject *ret;
Bram Moolenaara9922d62013-05-30 13:01:18 +02001996
1997 if (!(keyObject = dict_key(hi)))
1998 return NULL;
1999
2000 if (!(valObject = dict_val(hi)))
2001 {
2002 Py_DECREF(keyObject);
2003 return NULL;
2004 }
2005
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002006 ret = Py_BuildValue("(OO)", keyObject, valObject);
Bram Moolenaara9922d62013-05-30 13:01:18 +02002007
2008 Py_DECREF(keyObject);
2009 Py_DECREF(valObject);
2010
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002011 return ret;
Bram Moolenaara9922d62013-05-30 13:01:18 +02002012}
2013
2014 static PyObject *
2015DictionaryListItems(DictionaryObject *self)
2016{
2017 return DictionaryListObjects(self, dict_item);
2018}
2019
2020 static PyObject *
2021DictionaryUpdate(DictionaryObject *self, PyObject *args, PyObject *kwargs)
2022{
2023 dict_T *dict = self->dict;
2024
2025 if (dict->dv_lock)
2026 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02002027 RAISE_LOCKED_DICTIONARY;
Bram Moolenaara9922d62013-05-30 13:01:18 +02002028 return NULL;
2029 }
2030
2031 if (kwargs)
2032 {
2033 typval_T tv;
2034
2035 if (ConvertFromPyMapping(kwargs, &tv) == -1)
2036 return NULL;
2037
2038 VimTryStart();
2039 dict_extend(self->dict, tv.vval.v_dict, (char_u *) "force");
2040 clear_tv(&tv);
2041 if (VimTryEnd())
2042 return NULL;
2043 }
2044 else
2045 {
Bram Moolenaar2d5f38f2014-02-11 18:47:27 +01002046 PyObject *obj = NULL;
Bram Moolenaara9922d62013-05-30 13:01:18 +02002047
Bram Moolenaar2d5f38f2014-02-11 18:47:27 +01002048 if (!PyArg_ParseTuple(args, "|O", &obj))
Bram Moolenaara9922d62013-05-30 13:01:18 +02002049 return NULL;
2050
Bram Moolenaar2d5f38f2014-02-11 18:47:27 +01002051 if (obj == NULL)
2052 {
2053 Py_INCREF(Py_None);
2054 return Py_None;
2055 }
2056
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002057 if (PyObject_HasAttrString(obj, "keys"))
2058 return DictionaryUpdate(self, NULL, obj);
Bram Moolenaara9922d62013-05-30 13:01:18 +02002059 else
2060 {
2061 PyObject *iterator;
2062 PyObject *item;
2063
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002064 if (!(iterator = PyObject_GetIter(obj)))
Bram Moolenaara9922d62013-05-30 13:01:18 +02002065 return NULL;
2066
2067 while ((item = PyIter_Next(iterator)))
2068 {
2069 PyObject *fast;
2070 PyObject *keyObject;
2071 PyObject *valObject;
2072 PyObject *todecref;
2073 char_u *key;
2074 dictitem_T *di;
Bram Moolenaar9ed7d342017-11-09 22:10:33 +01002075 hashitem_T *hi;
Bram Moolenaara9922d62013-05-30 13:01:18 +02002076
2077 if (!(fast = PySequence_Fast(item, "")))
2078 {
2079 Py_DECREF(iterator);
2080 Py_DECREF(item);
2081 return NULL;
2082 }
2083
2084 Py_DECREF(item);
2085
2086 if (PySequence_Fast_GET_SIZE(fast) != 2)
2087 {
2088 Py_DECREF(iterator);
2089 Py_DECREF(fast);
Bram Moolenaarc476e522013-06-23 13:46:40 +02002090 PyErr_FORMAT(PyExc_ValueError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02002091 N_("expected sequence element of size 2, "
2092 "but got sequence of size %d"),
Bram Moolenaardee2e312013-06-23 16:35:47 +02002093 (int) PySequence_Fast_GET_SIZE(fast));
Bram Moolenaara9922d62013-05-30 13:01:18 +02002094 return NULL;
2095 }
2096
2097 keyObject = PySequence_Fast_GET_ITEM(fast, 0);
2098
2099 if (!(key = StringToChars(keyObject, &todecref)))
2100 {
2101 Py_DECREF(iterator);
2102 Py_DECREF(fast);
2103 return NULL;
2104 }
2105
2106 di = dictitem_alloc(key);
2107
2108 Py_XDECREF(todecref);
2109
2110 if (di == NULL)
2111 {
2112 Py_DECREF(fast);
2113 Py_DECREF(iterator);
2114 PyErr_NoMemory();
2115 return NULL;
2116 }
Bram Moolenaara9922d62013-05-30 13:01:18 +02002117 di->di_tv.v_type = VAR_UNKNOWN;
2118
2119 valObject = PySequence_Fast_GET_ITEM(fast, 1);
2120
2121 if (ConvertFromPyObject(valObject, &di->di_tv) == -1)
2122 {
2123 Py_DECREF(iterator);
2124 Py_DECREF(fast);
2125 dictitem_free(di);
2126 return NULL;
2127 }
2128
2129 Py_DECREF(fast);
2130
Bram Moolenaar9ed7d342017-11-09 22:10:33 +01002131 hi = hash_find(&dict->dv_hashtab, di->di_key);
2132 if (!HASHITEM_EMPTY(hi) || dict_add(dict, di) == FAIL)
Bram Moolenaara9922d62013-05-30 13:01:18 +02002133 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02002134 RAISE_KEY_ADD_FAIL(di->di_key);
Bram Moolenaara9922d62013-05-30 13:01:18 +02002135 Py_DECREF(iterator);
2136 dictitem_free(di);
Bram Moolenaara9922d62013-05-30 13:01:18 +02002137 return NULL;
2138 }
2139 }
2140
2141 Py_DECREF(iterator);
2142
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01002143 // Iterator may have finished due to an exception
Bram Moolenaara9922d62013-05-30 13:01:18 +02002144 if (PyErr_Occurred())
2145 return NULL;
2146 }
2147 }
2148 Py_INCREF(Py_None);
2149 return Py_None;
2150}
2151
2152 static PyObject *
2153DictionaryGet(DictionaryObject *self, PyObject *args)
2154{
2155 return _DictionaryItem(self, args,
2156 DICT_FLAG_HAS_DEFAULT|DICT_FLAG_NONE_DEFAULT);
2157}
2158
2159 static PyObject *
2160DictionaryPop(DictionaryObject *self, PyObject *args)
2161{
2162 return _DictionaryItem(self, args, DICT_FLAG_HAS_DEFAULT|DICT_FLAG_POP);
2163}
2164
2165 static PyObject *
Bram Moolenaarde71b562013-06-02 17:41:54 +02002166DictionaryPopItem(DictionaryObject *self)
Bram Moolenaara9922d62013-05-30 13:01:18 +02002167{
Bram Moolenaarde71b562013-06-02 17:41:54 +02002168 hashitem_T *hi;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002169 PyObject *ret;
Bram Moolenaarde71b562013-06-02 17:41:54 +02002170 PyObject *valObject;
2171 dictitem_T *di;
Bram Moolenaara9922d62013-05-30 13:01:18 +02002172
Bram Moolenaarde71b562013-06-02 17:41:54 +02002173 if (self->dict->dv_hashtab.ht_used == 0)
2174 {
2175 PyErr_SetNone(PyExc_KeyError);
2176 return NULL;
2177 }
2178
2179 hi = self->dict->dv_hashtab.ht_array;
2180 while (HASHITEM_EMPTY(hi))
2181 ++hi;
2182
2183 di = dict_lookup(hi);
2184
2185 if (!(valObject = ConvertToPyObject(&di->di_tv)))
Bram Moolenaara9922d62013-05-30 13:01:18 +02002186 return NULL;
2187
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002188 if (!(ret = Py_BuildValue("(" Py_bytes_fmt "O)", hi->hi_key, valObject)))
Bram Moolenaarde71b562013-06-02 17:41:54 +02002189 {
2190 Py_DECREF(valObject);
2191 return NULL;
2192 }
2193
2194 hash_remove(&self->dict->dv_hashtab, hi);
2195 dictitem_free(di);
2196
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002197 return ret;
Bram Moolenaara9922d62013-05-30 13:01:18 +02002198}
2199
2200 static PyObject *
Bram Moolenaar389a1792013-06-23 13:00:44 +02002201DictionaryHasKey(DictionaryObject *self, PyObject *keyObject)
Bram Moolenaara9922d62013-05-30 13:01:18 +02002202{
Bram Moolenaara9922d62013-05-30 13:01:18 +02002203 return _DictionaryItem(self, keyObject, DICT_FLAG_RETURN_BOOL);
2204}
2205
2206static PySequenceMethods DictionaryAsSeq = {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01002207 0, // sq_length
2208 0, // sq_concat
2209 0, // sq_repeat
2210 0, // sq_item
2211 0, // sq_slice
2212 0, // sq_ass_item
2213 0, // sq_ass_slice
2214 (objobjproc) DictionaryContains, // sq_contains
2215 0, // sq_inplace_concat
2216 0, // sq_inplace_repeat
Bram Moolenaara9922d62013-05-30 13:01:18 +02002217};
2218
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02002219static PyMappingMethods DictionaryAsMapping = {
2220 (lenfunc) DictionaryLength,
2221 (binaryfunc) DictionaryItem,
2222 (objobjargproc) DictionaryAssItem,
2223};
2224
Bram Moolenaardb913952012-06-29 12:54:53 +02002225static struct PyMethodDef DictionaryMethods[] = {
Bram Moolenaar182dc4f2013-05-21 19:01:55 +02002226 {"keys", (PyCFunction)DictionaryListKeys, METH_NOARGS, ""},
Bram Moolenaara9922d62013-05-30 13:01:18 +02002227 {"values", (PyCFunction)DictionaryListValues, METH_NOARGS, ""},
2228 {"items", (PyCFunction)DictionaryListItems, METH_NOARGS, ""},
2229 {"update", (PyCFunction)DictionaryUpdate, METH_VARARGS|METH_KEYWORDS, ""},
2230 {"get", (PyCFunction)DictionaryGet, METH_VARARGS, ""},
2231 {"pop", (PyCFunction)DictionaryPop, METH_VARARGS, ""},
Bram Moolenaarde71b562013-06-02 17:41:54 +02002232 {"popitem", (PyCFunction)DictionaryPopItem, METH_NOARGS, ""},
Bram Moolenaar389a1792013-06-23 13:00:44 +02002233 {"has_key", (PyCFunction)DictionaryHasKey, METH_O, ""},
Bram Moolenaardd8aca62013-05-29 22:36:10 +02002234 {"__dir__", (PyCFunction)DictionaryDir, METH_NOARGS, ""},
2235 { NULL, NULL, 0, NULL}
Bram Moolenaardb913952012-06-29 12:54:53 +02002236};
2237
2238static PyTypeObject ListType;
2239
2240typedef struct
2241{
2242 PyObject_HEAD
2243 list_T *list;
2244 pylinkedlist_T ref;
2245} ListObject;
2246
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002247#define NEW_LIST(list) ListNew(&ListType, list)
2248
Bram Moolenaardb913952012-06-29 12:54:53 +02002249 static PyObject *
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002250ListNew(PyTypeObject *subtype, list_T *list)
Bram Moolenaardb913952012-06-29 12:54:53 +02002251{
2252 ListObject *self;
2253
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002254 self = (ListObject *) subtype->tp_alloc(subtype, 0);
Bram Moolenaardb913952012-06-29 12:54:53 +02002255 if (self == NULL)
2256 return NULL;
2257 self->list = list;
2258 ++list->lv_refcount;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002259 range_list_materialize(list);
Bram Moolenaardb913952012-06-29 12:54:53 +02002260
2261 pyll_add((PyObject *)(self), &self->ref, &lastlist);
2262
2263 return (PyObject *)(self);
2264}
2265
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002266 static list_T *
Bram Moolenaarfb97f282013-07-09 17:42:46 +02002267py_list_alloc(void)
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002268{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002269 list_T *ret;
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002270
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002271 if (!(ret = list_alloc()))
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002272 {
2273 PyErr_NoMemory();
2274 return NULL;
2275 }
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002276 ++ret->lv_refcount;
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002277
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002278 return ret;
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002279}
2280
2281 static int
2282list_py_concat(list_T *l, PyObject *obj, PyObject *lookup_dict)
2283{
2284 PyObject *iterator;
2285 PyObject *item;
2286 listitem_T *li;
2287
2288 if (!(iterator = PyObject_GetIter(obj)))
2289 return -1;
2290
2291 while ((item = PyIter_Next(iterator)))
2292 {
2293 if (!(li = listitem_alloc()))
2294 {
2295 PyErr_NoMemory();
2296 Py_DECREF(item);
2297 Py_DECREF(iterator);
2298 return -1;
2299 }
2300 li->li_tv.v_lock = 0;
2301 li->li_tv.v_type = VAR_UNKNOWN;
2302
2303 if (_ConvertFromPyObject(item, &li->li_tv, lookup_dict) == -1)
2304 {
2305 Py_DECREF(item);
2306 Py_DECREF(iterator);
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002307 listitem_free(l, li);
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002308 return -1;
2309 }
2310
2311 Py_DECREF(item);
2312
2313 list_append(l, li);
2314 }
2315
2316 Py_DECREF(iterator);
2317
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01002318 // Iterator may have finished due to an exception
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002319 if (PyErr_Occurred())
2320 return -1;
2321
2322 return 0;
2323}
2324
2325 static PyObject *
2326ListConstructor(PyTypeObject *subtype, PyObject *args, PyObject *kwargs)
2327{
2328 list_T *list;
2329 PyObject *obj = NULL;
2330
2331 if (kwargs)
2332 {
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +02002333 PyErr_SET_STRING(PyExc_TypeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02002334 N_("list constructor does not accept keyword arguments"));
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02002335 return NULL;
2336 }
2337
2338 if (!PyArg_ParseTuple(args, "|O", &obj))
2339 return NULL;
2340
2341 if (!(list = py_list_alloc()))
2342 return NULL;
2343
2344 if (obj)
2345 {
2346 PyObject *lookup_dict;
2347
2348 if (!(lookup_dict = PyDict_New()))
2349 {
2350 list_unref(list);
2351 return NULL;
2352 }
2353
2354 if (list_py_concat(list, obj, lookup_dict) == -1)
2355 {
2356 Py_DECREF(lookup_dict);
2357 list_unref(list);
2358 return NULL;
2359 }
2360
2361 Py_DECREF(lookup_dict);
2362 }
2363
2364 return ListNew(subtype, list);
2365}
2366
Bram Moolenaar4d1da492013-04-24 13:39:15 +02002367 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02002368ListDestructor(ListObject *self)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02002369{
Bram Moolenaard6e39182013-05-21 18:30:34 +02002370 pyll_remove(&self->ref, &lastlist);
2371 list_unref(self->list);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02002372
2373 DESTRUCTOR_FINISH(self);
2374}
2375
Bram Moolenaardb913952012-06-29 12:54:53 +02002376 static PyInt
Bram Moolenaard6e39182013-05-21 18:30:34 +02002377ListLength(ListObject *self)
Bram Moolenaardb913952012-06-29 12:54:53 +02002378{
Bram Moolenaard6e39182013-05-21 18:30:34 +02002379 return ((PyInt) (self->list->lv_len));
Bram Moolenaardb913952012-06-29 12:54:53 +02002380}
2381
2382 static PyObject *
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002383ListIndex(ListObject *self, Py_ssize_t index)
Bram Moolenaardb913952012-06-29 12:54:53 +02002384{
2385 listitem_T *li;
2386
Bram Moolenaard6e39182013-05-21 18:30:34 +02002387 if (index >= ListLength(self))
Bram Moolenaardb913952012-06-29 12:54:53 +02002388 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02002389 PyErr_SET_STRING(PyExc_IndexError, N_("list index out of range"));
Bram Moolenaardb913952012-06-29 12:54:53 +02002390 return NULL;
2391 }
Bram Moolenaard6e39182013-05-21 18:30:34 +02002392 li = list_find(self->list, (long) index);
Bram Moolenaardb913952012-06-29 12:54:53 +02002393 if (li == NULL)
2394 {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01002395 // No more suitable format specifications in python-2.3
Bram Moolenaar86181df2020-05-11 23:14:04 +02002396 PyErr_VIM_FORMAT(N_("internal error: failed to get Vim list item %d"),
Bram Moolenaarc476e522013-06-23 13:46:40 +02002397 (int) index);
Bram Moolenaardb913952012-06-29 12:54:53 +02002398 return NULL;
2399 }
2400 return ConvertToPyObject(&li->li_tv);
2401}
2402
Bram Moolenaardb913952012-06-29 12:54:53 +02002403 static PyObject *
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002404ListSlice(ListObject *self, Py_ssize_t first, Py_ssize_t step,
2405 Py_ssize_t slicelen)
Bram Moolenaardb913952012-06-29 12:54:53 +02002406{
2407 PyInt i;
Bram Moolenaardb913952012-06-29 12:54:53 +02002408 PyObject *list;
Bram Moolenaardb913952012-06-29 12:54:53 +02002409
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002410 if (step == 0)
2411 {
2412 PyErr_SET_STRING(PyExc_ValueError, N_("slice step cannot be zero"));
2413 return NULL;
2414 }
Bram Moolenaardb913952012-06-29 12:54:53 +02002415
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002416 list = PyList_New(slicelen);
Bram Moolenaardb913952012-06-29 12:54:53 +02002417 if (list == NULL)
2418 return NULL;
2419
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002420 for (i = 0; i < slicelen; ++i)
Bram Moolenaardb913952012-06-29 12:54:53 +02002421 {
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002422 PyObject *item;
2423
2424 item = ListIndex(self, first + i*step);
Bram Moolenaardb913952012-06-29 12:54:53 +02002425 if (item == NULL)
2426 {
2427 Py_DECREF(list);
2428 return NULL;
2429 }
2430
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002431 PyList_SET_ITEM(list, i, item);
Bram Moolenaardb913952012-06-29 12:54:53 +02002432 }
2433
2434 return list;
2435}
2436
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002437 static PyObject *
2438ListItem(ListObject *self, PyObject* idx)
2439{
2440#if PY_MAJOR_VERSION < 3
2441 if (PyInt_Check(idx))
2442 {
2443 long _idx = PyInt_AsLong(idx);
2444 return ListIndex(self, _idx);
2445 }
2446 else
2447#endif
2448 if (PyLong_Check(idx))
2449 {
2450 long _idx = PyLong_AsLong(idx);
2451 return ListIndex(self, _idx);
2452 }
2453 else if (PySlice_Check(idx))
2454 {
2455 Py_ssize_t start, stop, step, slicelen;
2456
Bram Moolenaar922a4662014-03-30 16:11:43 +02002457 if (PySlice_GetIndicesEx((PySliceObject_T *)idx, ListLength(self),
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002458 &start, &stop, &step, &slicelen) < 0)
2459 return NULL;
2460 return ListSlice(self, start, step, slicelen);
2461 }
2462 else
2463 {
2464 RAISE_INVALID_INDEX_TYPE(idx);
2465 return NULL;
2466 }
2467}
2468
2469 static void
2470list_restore(Py_ssize_t numadded, Py_ssize_t numreplaced, Py_ssize_t slicelen,
2471 list_T *l, listitem_T **lis, listitem_T *lastaddedli)
2472{
2473 while (numreplaced--)
2474 {
2475 list_insert(l, lis[numreplaced], lis[slicelen + numreplaced]);
2476 listitem_remove(l, lis[slicelen + numreplaced]);
2477 }
2478 while (numadded--)
2479 {
2480 listitem_T *next;
2481
2482 next = lastaddedli->li_prev;
2483 listitem_remove(l, lastaddedli);
2484 lastaddedli = next;
2485 }
2486}
2487
2488 static int
2489ListAssSlice(ListObject *self, Py_ssize_t first,
2490 Py_ssize_t step, Py_ssize_t slicelen, PyObject *obj)
2491{
2492 PyObject *iterator;
2493 PyObject *item;
2494 listitem_T *li;
2495 listitem_T *lastaddedli = NULL;
2496 listitem_T *next;
2497 typval_T v;
2498 list_T *l = self->list;
2499 PyInt i;
2500 PyInt j;
2501 PyInt numreplaced = 0;
2502 PyInt numadded = 0;
2503 PyInt size;
Bram Moolenaar3b522612014-02-11 16:00:35 +01002504 listitem_T **lis = NULL;
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002505
2506 size = ListLength(self);
2507
2508 if (l->lv_lock)
2509 {
2510 RAISE_LOCKED_LIST;
2511 return -1;
2512 }
2513
2514 if (step == 0)
2515 {
2516 PyErr_SET_STRING(PyExc_ValueError, N_("slice step cannot be zero"));
2517 return -1;
2518 }
2519
2520 if (step != 1 && slicelen == 0)
2521 {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01002522 // Nothing to do. Only error out if obj has some items.
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002523 int ret = 0;
2524
2525 if (obj == NULL)
2526 return 0;
2527
2528 if (!(iterator = PyObject_GetIter(obj)))
2529 return -1;
2530
2531 if ((item = PyIter_Next(iterator)))
2532 {
2533 PyErr_FORMAT(PyExc_ValueError,
Bram Moolenaar4de6a212014-03-08 16:13:44 +01002534 N_("attempt to assign sequence of size greater than %d "
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002535 "to extended slice"), 0);
2536 Py_DECREF(item);
2537 ret = -1;
2538 }
2539 Py_DECREF(iterator);
2540 return ret;
2541 }
2542
2543 if (obj != NULL)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01002544 // XXX May allocate zero bytes.
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002545 if (!(lis = PyMem_New(listitem_T *, slicelen * 2)))
2546 {
2547 PyErr_NoMemory();
2548 return -1;
2549 }
2550
2551 if (first == size)
2552 li = NULL;
2553 else
2554 {
2555 li = list_find(l, (long) first);
2556 if (li == NULL)
2557 {
Bram Moolenaar86181df2020-05-11 23:14:04 +02002558 PyErr_VIM_FORMAT(N_("internal error: no Vim list item %d"),
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002559 (int)first);
2560 if (obj != NULL)
2561 PyMem_Free(lis);
2562 return -1;
2563 }
2564 i = slicelen;
2565 while (i-- && li != NULL)
2566 {
2567 j = step;
2568 next = li;
2569 if (step > 0)
2570 while (next != NULL && ((next = next->li_next) != NULL) && --j);
2571 else
2572 while (next != NULL && ((next = next->li_prev) != NULL) && ++j);
2573
2574 if (obj == NULL)
2575 listitem_remove(l, li);
2576 else
2577 lis[slicelen - i - 1] = li;
2578
2579 li = next;
2580 }
2581 if (li == NULL && i != -1)
2582 {
2583 PyErr_SET_VIM(N_("internal error: not enough list items"));
2584 if (obj != NULL)
2585 PyMem_Free(lis);
2586 return -1;
2587 }
2588 }
2589
2590 if (obj == NULL)
2591 return 0;
2592
2593 if (!(iterator = PyObject_GetIter(obj)))
2594 {
2595 PyMem_Free(lis);
2596 return -1;
2597 }
2598
2599 i = 0;
2600 while ((item = PyIter_Next(iterator)))
2601 {
2602 if (ConvertFromPyObject(item, &v) == -1)
2603 {
2604 Py_DECREF(iterator);
2605 Py_DECREF(item);
2606 PyMem_Free(lis);
2607 return -1;
2608 }
2609 Py_DECREF(item);
2610 if (list_insert_tv(l, &v, numreplaced < slicelen
2611 ? lis[numreplaced]
2612 : li) == FAIL)
2613 {
2614 clear_tv(&v);
2615 PyErr_SET_VIM(N_("internal error: failed to add item to list"));
2616 list_restore(numadded, numreplaced, slicelen, l, lis, lastaddedli);
2617 PyMem_Free(lis);
2618 return -1;
2619 }
2620 if (numreplaced < slicelen)
2621 {
2622 lis[slicelen + numreplaced] = lis[numreplaced]->li_prev;
Bram Moolenaar3ec7f4e2014-05-07 17:31:37 +02002623 vimlist_remove(l, lis[numreplaced], lis[numreplaced]);
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002624 numreplaced++;
2625 }
2626 else
2627 {
2628 if (li)
2629 lastaddedli = li->li_prev;
2630 else
Bram Moolenaar0ff6aad2020-01-29 21:27:21 +01002631 lastaddedli = l->lv_u.mat.lv_last;
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002632 numadded++;
2633 }
2634 clear_tv(&v);
2635 if (step != 1 && i >= slicelen)
2636 {
2637 Py_DECREF(iterator);
2638 PyErr_FORMAT(PyExc_ValueError,
Bram Moolenaar4de6a212014-03-08 16:13:44 +01002639 N_("attempt to assign sequence of size greater than %d "
Bram Moolenaar403b3cf2014-02-15 15:59:03 +01002640 "to extended slice"), (int) slicelen);
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002641 list_restore(numadded, numreplaced, slicelen, l, lis, lastaddedli);
2642 PyMem_Free(lis);
2643 return -1;
2644 }
2645 ++i;
2646 }
2647 Py_DECREF(iterator);
2648
2649 if (step != 1 && i != slicelen)
2650 {
2651 PyErr_FORMAT2(PyExc_ValueError,
Bram Moolenaar403b3cf2014-02-15 15:59:03 +01002652 N_("attempt to assign sequence of size %d to extended slice "
2653 "of size %d"), (int) i, (int) slicelen);
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002654 list_restore(numadded, numreplaced, slicelen, l, lis, lastaddedli);
2655 PyMem_Free(lis);
2656 return -1;
2657 }
2658
2659 if (PyErr_Occurred())
2660 {
2661 list_restore(numadded, numreplaced, slicelen, l, lis, lastaddedli);
2662 PyMem_Free(lis);
2663 return -1;
2664 }
2665
2666 for (i = 0; i < numreplaced; i++)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002667 listitem_free(l, lis[i]);
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002668 if (step == 1)
2669 for (i = numreplaced; i < slicelen; i++)
2670 listitem_remove(l, lis[i]);
2671
2672 PyMem_Free(lis);
2673
2674 return 0;
2675}
2676
2677 static int
2678ListAssIndex(ListObject *self, Py_ssize_t index, PyObject *obj)
2679{
2680 typval_T tv;
2681 list_T *l = self->list;
2682 listitem_T *li;
2683 Py_ssize_t length = ListLength(self);
2684
2685 if (l->lv_lock)
2686 {
2687 RAISE_LOCKED_LIST;
2688 return -1;
2689 }
2690 if (index > length || (index == length && obj == NULL))
2691 {
2692 PyErr_SET_STRING(PyExc_IndexError, N_("list index out of range"));
2693 return -1;
2694 }
2695
2696 if (obj == NULL)
2697 {
2698 li = list_find(l, (long) index);
Bram Moolenaar3ec7f4e2014-05-07 17:31:37 +02002699 vimlist_remove(l, li, li);
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002700 clear_tv(&li->li_tv);
2701 vim_free(li);
2702 return 0;
2703 }
2704
2705 if (ConvertFromPyObject(obj, &tv) == -1)
2706 return -1;
2707
2708 if (index == length)
2709 {
2710 if (list_append_tv(l, &tv) == FAIL)
2711 {
2712 clear_tv(&tv);
2713 PyErr_SET_VIM(N_("failed to add item to list"));
2714 return -1;
2715 }
2716 }
2717 else
2718 {
2719 li = list_find(l, (long) index);
2720 clear_tv(&li->li_tv);
2721 copy_tv(&tv, &li->li_tv);
2722 clear_tv(&tv);
2723 }
2724 return 0;
2725}
2726
2727 static Py_ssize_t
2728ListAssItem(ListObject *self, PyObject *idx, PyObject *obj)
2729{
2730#if PY_MAJOR_VERSION < 3
2731 if (PyInt_Check(idx))
2732 {
2733 long _idx = PyInt_AsLong(idx);
2734 return ListAssIndex(self, _idx, obj);
2735 }
2736 else
2737#endif
2738 if (PyLong_Check(idx))
2739 {
2740 long _idx = PyLong_AsLong(idx);
2741 return ListAssIndex(self, _idx, obj);
2742 }
2743 else if (PySlice_Check(idx))
2744 {
2745 Py_ssize_t start, stop, step, slicelen;
2746
Bram Moolenaar922a4662014-03-30 16:11:43 +02002747 if (PySlice_GetIndicesEx((PySliceObject_T *)idx, ListLength(self),
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002748 &start, &stop, &step, &slicelen) < 0)
2749 return -1;
2750 return ListAssSlice(self, start, step, slicelen,
2751 obj);
2752 }
2753 else
2754 {
2755 RAISE_INVALID_INDEX_TYPE(idx);
2756 return -1;
2757 }
2758}
2759
2760 static PyObject *
2761ListConcatInPlace(ListObject *self, PyObject *obj)
2762{
2763 list_T *l = self->list;
2764 PyObject *lookup_dict;
2765
2766 if (l->lv_lock)
2767 {
2768 RAISE_LOCKED_LIST;
2769 return NULL;
2770 }
2771
2772 if (!(lookup_dict = PyDict_New()))
2773 return NULL;
2774
2775 if (list_py_concat(l, obj, lookup_dict) == -1)
2776 {
2777 Py_DECREF(lookup_dict);
2778 return NULL;
2779 }
2780 Py_DECREF(lookup_dict);
2781
2782 Py_INCREF(self);
2783 return (PyObject *)(self);
2784}
2785
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02002786typedef struct
2787{
2788 listwatch_T lw;
2789 list_T *list;
2790} listiterinfo_T;
2791
2792 static void
2793ListIterDestruct(listiterinfo_T *lii)
2794{
2795 list_rem_watch(lii->list, &lii->lw);
2796 PyMem_Free(lii);
2797}
2798
2799 static PyObject *
2800ListIterNext(listiterinfo_T **lii)
2801{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002802 PyObject *ret;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02002803
2804 if (!((*lii)->lw.lw_item))
2805 return NULL;
2806
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002807 if (!(ret = ConvertToPyObject(&((*lii)->lw.lw_item->li_tv))))
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02002808 return NULL;
2809
2810 (*lii)->lw.lw_item = (*lii)->lw.lw_item->li_next;
2811
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002812 return ret;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02002813}
2814
2815 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02002816ListIter(ListObject *self)
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02002817{
2818 listiterinfo_T *lii;
Bram Moolenaard6e39182013-05-21 18:30:34 +02002819 list_T *l = self->list;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02002820
2821 if (!(lii = PyMem_New(listiterinfo_T, 1)))
2822 {
2823 PyErr_NoMemory();
2824 return NULL;
2825 }
2826
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002827 range_list_materialize(l);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02002828 list_add_watch(l, &lii->lw);
2829 lii->lw.lw_item = l->lv_first;
2830 lii->list = l;
2831
2832 return IterNew(lii,
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02002833 (destructorfun) ListIterDestruct, (nextfun) ListIterNext,
2834 NULL, NULL);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02002835}
2836
Bram Moolenaardd8aca62013-05-29 22:36:10 +02002837static char *ListAttrs[] = {
2838 "locked",
2839 NULL
2840};
2841
2842 static PyObject *
2843ListDir(PyObject *self)
2844{
2845 return ObjectDir(self, ListAttrs);
2846}
2847
Bram Moolenaar66b79852012-09-21 14:00:35 +02002848 static int
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002849ListSetattr(ListObject *self, char *name, PyObject *valObject)
Bram Moolenaar66b79852012-09-21 14:00:35 +02002850{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002851 if (valObject == NULL)
Bram Moolenaar66b79852012-09-21 14:00:35 +02002852 {
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +02002853 PyErr_SET_STRING(PyExc_AttributeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02002854 N_("cannot delete vim.List attributes"));
Bram Moolenaar66b79852012-09-21 14:00:35 +02002855 return -1;
2856 }
2857
2858 if (strcmp(name, "locked") == 0)
2859 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02002860 if (self->list->lv_lock == VAR_FIXED)
Bram Moolenaar66b79852012-09-21 14:00:35 +02002861 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02002862 PyErr_SET_STRING(PyExc_TypeError, N_("cannot modify fixed list"));
Bram Moolenaar66b79852012-09-21 14:00:35 +02002863 return -1;
2864 }
2865 else
2866 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02002867 int istrue = PyObject_IsTrue(valObject);
Bram Moolenaarb983f752013-05-15 16:11:50 +02002868 if (istrue == -1)
2869 return -1;
2870 else if (istrue)
Bram Moolenaard6e39182013-05-21 18:30:34 +02002871 self->list->lv_lock = VAR_LOCKED;
Bram Moolenaar66b79852012-09-21 14:00:35 +02002872 else
Bram Moolenaard6e39182013-05-21 18:30:34 +02002873 self->list->lv_lock = 0;
Bram Moolenaar66b79852012-09-21 14:00:35 +02002874 }
2875 return 0;
2876 }
2877 else
2878 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02002879 PyErr_FORMAT(PyExc_AttributeError, N_("cannot set attribute %s"), name);
Bram Moolenaar66b79852012-09-21 14:00:35 +02002880 return -1;
2881 }
2882}
2883
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002884static PySequenceMethods ListAsSeq = {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01002885 (lenfunc) ListLength, // sq_length, len(x)
2886 (binaryfunc) 0, // RangeConcat, sq_concat, x+y
2887 0, // RangeRepeat, sq_repeat, x*n
2888 (PyIntArgFunc) ListIndex, // sq_item, x[i]
2889 0, // was_sq_slice, x[i:j]
2890 (PyIntObjArgProc) ListAssIndex, // sq_as_item, x[i]=v
2891 0, // was_sq_ass_slice, x[i:j]=v
2892 0, // sq_contains
2893 (binaryfunc) ListConcatInPlace,// sq_inplace_concat
2894 0, // sq_inplace_repeat
Bram Moolenaar063a46b2014-01-14 16:36:51 +01002895};
2896
2897static PyMappingMethods ListAsMapping = {
2898 /* mp_length */ (lenfunc) ListLength,
2899 /* mp_subscript */ (binaryfunc) ListItem,
2900 /* mp_ass_subscript */ (objobjargproc) ListAssItem,
2901};
2902
Bram Moolenaardb913952012-06-29 12:54:53 +02002903static struct PyMethodDef ListMethods[] = {
Bram Moolenaardd8aca62013-05-29 22:36:10 +02002904 {"extend", (PyCFunction)ListConcatInPlace, METH_O, ""},
2905 {"__dir__", (PyCFunction)ListDir, METH_NOARGS, ""},
2906 { NULL, NULL, 0, NULL}
Bram Moolenaardb913952012-06-29 12:54:53 +02002907};
2908
2909typedef struct
2910{
2911 PyObject_HEAD
2912 char_u *name;
Bram Moolenaar8110a092016-04-14 15:56:09 +02002913 int argc;
2914 typval_T *argv;
2915 dict_T *self;
2916 pylinkedlist_T ref;
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02002917 int auto_rebind;
Bram Moolenaardb913952012-06-29 12:54:53 +02002918} FunctionObject;
2919
2920static PyTypeObject FunctionType;
2921
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02002922#define NEW_FUNCTION(name, argc, argv, self, pt_auto) \
2923 FunctionNew(&FunctionType, (name), (argc), (argv), (self), (pt_auto))
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02002924
Bram Moolenaardb913952012-06-29 12:54:53 +02002925 static PyObject *
Bram Moolenaar8110a092016-04-14 15:56:09 +02002926FunctionNew(PyTypeObject *subtype, char_u *name, int argc, typval_T *argv,
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02002927 dict_T *selfdict, int auto_rebind)
Bram Moolenaardb913952012-06-29 12:54:53 +02002928{
2929 FunctionObject *self;
2930
Bram Moolenaar9123c0b2018-12-22 18:59:06 +01002931 self = (FunctionObject *)subtype->tp_alloc(subtype, 0);
Bram Moolenaardb913952012-06-29 12:54:53 +02002932 if (self == NULL)
2933 return NULL;
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02002934
2935 if (isdigit(*name))
Bram Moolenaardb913952012-06-29 12:54:53 +02002936 {
Bram Moolenaara14bb7e2020-04-28 00:02:41 +02002937 if (!translated_function_exists(name, FALSE))
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02002938 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02002939 PyErr_FORMAT(PyExc_ValueError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02002940 N_("unnamed function %s does not exist"), name);
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02002941 return NULL;
2942 }
2943 self->name = vim_strsave(name);
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02002944 }
2945 else
Bram Moolenaar9123c0b2018-12-22 18:59:06 +01002946 {
2947 char_u *p;
2948
2949 if ((p = get_expanded_name(name,
2950 vim_strchr(name, AUTOLOAD_CHAR) == NULL)) == NULL)
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02002951 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02002952 PyErr_FORMAT(PyExc_ValueError,
2953 N_("function %s does not exist"), name);
Bram Moolenaar018acca2013-05-30 13:37:28 +02002954 return NULL;
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02002955 }
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02002956
Bram Moolenaar9123c0b2018-12-22 18:59:06 +01002957 if (p[0] == K_SPECIAL && p[1] == KS_EXTRA && p[2] == (int)KE_SNR)
2958 {
2959 char_u *np;
2960 size_t len = STRLEN(p) + 1;
2961
Bram Moolenaar51e14382019-05-25 20:21:28 +02002962 if ((np = alloc(len + 2)) == NULL)
Bram Moolenaar9123c0b2018-12-22 18:59:06 +01002963 {
2964 vim_free(p);
2965 return NULL;
2966 }
2967 mch_memmove(np, "<SNR>", 5);
2968 mch_memmove(np + 5, p + 3, len - 3);
2969 vim_free(p);
2970 self->name = np;
2971 }
2972 else
2973 self->name = p;
2974 }
2975
Bram Moolenaar2d3d60a2016-08-01 16:27:23 +02002976 func_ref(self->name);
Bram Moolenaar8110a092016-04-14 15:56:09 +02002977 self->argc = argc;
2978 self->argv = argv;
2979 self->self = selfdict;
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02002980 self->auto_rebind = selfdict == NULL ? TRUE : auto_rebind;
Bram Moolenaar8110a092016-04-14 15:56:09 +02002981
2982 if (self->argv || self->self)
2983 pyll_add((PyObject *)(self), &self->ref, &lastfunc);
2984
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02002985 return (PyObject *)(self);
2986}
2987
2988 static PyObject *
2989FunctionConstructor(PyTypeObject *subtype, PyObject *args, PyObject *kwargs)
2990{
2991 PyObject *self;
Bram Moolenaar8110a092016-04-14 15:56:09 +02002992 PyObject *selfdictObject;
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02002993 PyObject *autoRebindObject;
Bram Moolenaar8110a092016-04-14 15:56:09 +02002994 PyObject *argsObject = NULL;
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02002995 char_u *name;
Bram Moolenaar8110a092016-04-14 15:56:09 +02002996 typval_T selfdicttv;
2997 typval_T argstv;
2998 list_T *argslist = NULL;
2999 dict_T *selfdict = NULL;
3000 int argc = 0;
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02003001 int auto_rebind = TRUE;
Bram Moolenaar8110a092016-04-14 15:56:09 +02003002 typval_T *argv = NULL;
3003 typval_T *curtv;
3004 listitem_T *li;
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02003005
Bram Moolenaar8110a092016-04-14 15:56:09 +02003006 if (kwargs != NULL)
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02003007 {
Bram Moolenaar8110a092016-04-14 15:56:09 +02003008 selfdictObject = PyDict_GetItemString(kwargs, "self");
3009 if (selfdictObject != NULL)
3010 {
3011 if (ConvertFromPyMapping(selfdictObject, &selfdicttv) == -1)
3012 return NULL;
3013 selfdict = selfdicttv.vval.v_dict;
3014 }
3015 argsObject = PyDict_GetItemString(kwargs, "args");
3016 if (argsObject != NULL)
3017 {
3018 if (ConvertFromPySequence(argsObject, &argstv) == -1)
3019 {
3020 dict_unref(selfdict);
3021 return NULL;
3022 }
3023 argslist = argstv.vval.v_list;
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01003024 range_list_materialize(argslist);
Bram Moolenaar8110a092016-04-14 15:56:09 +02003025
3026 argc = argslist->lv_len;
3027 if (argc != 0)
3028 {
3029 argv = PyMem_New(typval_T, (size_t) argc);
Bram Moolenaarfe4b1862016-04-15 21:47:54 +02003030 if (argv == NULL)
3031 {
3032 PyErr_NoMemory();
3033 dict_unref(selfdict);
3034 list_unref(argslist);
3035 return NULL;
3036 }
Bram Moolenaar8110a092016-04-14 15:56:09 +02003037 curtv = argv;
Bram Moolenaaraeea7212020-04-02 18:50:46 +02003038 FOR_ALL_LIST_ITEMS(argslist, li)
Bram Moolenaar8110a092016-04-14 15:56:09 +02003039 copy_tv(&li->li_tv, curtv++);
3040 }
3041 list_unref(argslist);
3042 }
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02003043 if (selfdict != NULL)
3044 {
3045 auto_rebind = FALSE;
3046 autoRebindObject = PyDict_GetItemString(kwargs, "auto_rebind");
3047 if (autoRebindObject != NULL)
3048 {
3049 auto_rebind = PyObject_IsTrue(autoRebindObject);
3050 if (auto_rebind == -1)
3051 {
3052 dict_unref(selfdict);
3053 list_unref(argslist);
3054 return NULL;
3055 }
3056 }
3057 }
Bram Moolenaardb913952012-06-29 12:54:53 +02003058 }
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02003059
Bram Moolenaar389a1792013-06-23 13:00:44 +02003060 if (!PyArg_ParseTuple(args, "et", "ascii", &name))
Bram Moolenaar8110a092016-04-14 15:56:09 +02003061 {
3062 dict_unref(selfdict);
3063 while (argc--)
3064 clear_tv(&argv[argc]);
3065 PyMem_Free(argv);
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02003066 return NULL;
Bram Moolenaar8110a092016-04-14 15:56:09 +02003067 }
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02003068
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02003069 self = FunctionNew(subtype, name, argc, argv, selfdict, auto_rebind);
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02003070
Bram Moolenaar389a1792013-06-23 13:00:44 +02003071 PyMem_Free(name);
3072
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02003073 return self;
Bram Moolenaardb913952012-06-29 12:54:53 +02003074}
3075
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003076 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02003077FunctionDestructor(FunctionObject *self)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003078{
Bram Moolenaar8110a092016-04-14 15:56:09 +02003079 int i;
Bram Moolenaard6e39182013-05-21 18:30:34 +02003080 func_unref(self->name);
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02003081 vim_free(self->name);
Bram Moolenaar8110a092016-04-14 15:56:09 +02003082 for (i = 0; i < self->argc; ++i)
3083 clear_tv(&self->argv[i]);
3084 PyMem_Free(self->argv);
3085 dict_unref(self->self);
3086 if (self->argv || self->self)
3087 pyll_remove(&self->ref, &lastfunc);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003088
3089 DESTRUCTOR_FINISH(self);
3090}
3091
Bram Moolenaardd8aca62013-05-29 22:36:10 +02003092static char *FunctionAttrs[] = {
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02003093 "softspace", "args", "self", "auto_rebind",
Bram Moolenaardd8aca62013-05-29 22:36:10 +02003094 NULL
3095};
3096
3097 static PyObject *
3098FunctionDir(PyObject *self)
3099{
3100 return ObjectDir(self, FunctionAttrs);
3101}
3102
Bram Moolenaardb913952012-06-29 12:54:53 +02003103 static PyObject *
Bram Moolenaar8110a092016-04-14 15:56:09 +02003104FunctionAttr(FunctionObject *self, char *name)
3105{
3106 list_T *list;
3107 int i;
3108 if (strcmp(name, "name") == 0)
3109 return PyString_FromString((char *)(self->name));
3110 else if (strcmp(name, "args") == 0)
3111 {
Bram Moolenaar9f289532016-08-26 16:39:03 +02003112 if (self->argv == NULL || (list = list_alloc()) == NULL)
Bram Moolenaar8110a092016-04-14 15:56:09 +02003113 return AlwaysNone(NULL);
Bram Moolenaar9f289532016-08-26 16:39:03 +02003114
Bram Moolenaar8110a092016-04-14 15:56:09 +02003115 for (i = 0; i < self->argc; ++i)
3116 list_append_tv(list, &self->argv[i]);
3117 return NEW_LIST(list);
3118 }
3119 else if (strcmp(name, "self") == 0)
3120 return self->self == NULL
3121 ? AlwaysNone(NULL)
3122 : NEW_DICTIONARY(self->self);
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02003123 else if (strcmp(name, "auto_rebind") == 0)
3124 return self->auto_rebind
3125 ? AlwaysTrue(NULL)
3126 : AlwaysFalse(NULL);
Bram Moolenaar8110a092016-04-14 15:56:09 +02003127 else if (strcmp(name, "__members__") == 0)
3128 return ObjectDir(NULL, FunctionAttrs);
3129 return NULL;
3130}
3131
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01003132/*
3133 * Populate partial_T given function object.
Bram Moolenaar8110a092016-04-14 15:56:09 +02003134 *
3135 * "exported" should be set to true when it is needed to construct a partial
3136 * that may be stored in a variable (i.e. may be freed by Vim).
3137 */
3138 static void
3139set_partial(FunctionObject *self, partial_T *pt, int exported)
3140{
Bram Moolenaar8110a092016-04-14 15:56:09 +02003141 int i;
3142
3143 pt->pt_name = self->name;
3144 if (self->argv)
3145 {
3146 pt->pt_argc = self->argc;
3147 if (exported)
3148 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003149 pt->pt_argv = ALLOC_CLEAR_MULT(typval_T, self->argc);
Bram Moolenaar8110a092016-04-14 15:56:09 +02003150 for (i = 0; i < pt->pt_argc; ++i)
3151 copy_tv(&self->argv[i], &pt->pt_argv[i]);
3152 }
3153 else
3154 pt->pt_argv = self->argv;
3155 }
3156 else
3157 {
3158 pt->pt_argc = 0;
3159 pt->pt_argv = NULL;
3160 }
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02003161 pt->pt_auto = self->auto_rebind || !exported;
Bram Moolenaar8110a092016-04-14 15:56:09 +02003162 pt->pt_dict = self->self;
3163 if (exported && self->self)
3164 ++pt->pt_dict->dv_refcount;
3165 if (exported)
3166 pt->pt_name = vim_strsave(pt->pt_name);
3167 pt->pt_refcount = 1;
3168}
3169
3170 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003171FunctionCall(FunctionObject *self, PyObject *argsObject, PyObject *kwargs)
Bram Moolenaardb913952012-06-29 12:54:53 +02003172{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003173 char_u *name = self->name;
Bram Moolenaardb913952012-06-29 12:54:53 +02003174 typval_T args;
3175 typval_T selfdicttv;
3176 typval_T rettv;
3177 dict_T *selfdict = NULL;
3178 PyObject *selfdictObject;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003179 PyObject *ret;
Bram Moolenaardb913952012-06-29 12:54:53 +02003180 int error;
Bram Moolenaar8110a092016-04-14 15:56:09 +02003181 partial_T pt;
3182 partial_T *pt_ptr = NULL;
Bram Moolenaardb913952012-06-29 12:54:53 +02003183
Bram Moolenaar8110a092016-04-14 15:56:09 +02003184 if (ConvertFromPySequence(argsObject, &args) == -1)
Bram Moolenaardb913952012-06-29 12:54:53 +02003185 return NULL;
3186
3187 if (kwargs != NULL)
3188 {
3189 selfdictObject = PyDict_GetItemString(kwargs, "self");
3190 if (selfdictObject != NULL)
3191 {
Bram Moolenaara9922d62013-05-30 13:01:18 +02003192 if (ConvertFromPyMapping(selfdictObject, &selfdicttv) == -1)
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02003193 {
3194 clear_tv(&args);
Bram Moolenaardb913952012-06-29 12:54:53 +02003195 return NULL;
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02003196 }
Bram Moolenaardb913952012-06-29 12:54:53 +02003197 selfdict = selfdicttv.vval.v_dict;
3198 }
3199 }
3200
Bram Moolenaar8110a092016-04-14 15:56:09 +02003201 if (self->argv || self->self)
3202 {
Bram Moolenaara80faa82020-04-12 19:37:17 +02003203 CLEAR_FIELD(pt);
Bram Moolenaar8110a092016-04-14 15:56:09 +02003204 set_partial(self, &pt, FALSE);
3205 pt_ptr = &pt;
3206 }
3207
Bram Moolenaar71700b82013-05-15 17:49:05 +02003208 Py_BEGIN_ALLOW_THREADS
3209 Python_Lock_Vim();
3210
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003211 VimTryStart();
Bram Moolenaar8110a092016-04-14 15:56:09 +02003212 error = func_call(name, &args, pt_ptr, selfdict, &rettv);
Bram Moolenaar71700b82013-05-15 17:49:05 +02003213
3214 Python_Release_Vim();
3215 Py_END_ALLOW_THREADS
3216
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003217 if (VimTryEnd())
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003218 ret = NULL;
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003219 else if (error != OK)
Bram Moolenaardb913952012-06-29 12:54:53 +02003220 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003221 ret = NULL;
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02003222 PyErr_VIM_FORMAT(N_("failed to run function %s"), (char *)name);
Bram Moolenaardb913952012-06-29 12:54:53 +02003223 }
3224 else
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003225 ret = ConvertToPyObject(&rettv);
Bram Moolenaardb913952012-06-29 12:54:53 +02003226
Bram Moolenaardb913952012-06-29 12:54:53 +02003227 clear_tv(&args);
3228 clear_tv(&rettv);
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02003229 if (selfdict != NULL)
3230 clear_tv(&selfdicttv);
Bram Moolenaardb913952012-06-29 12:54:53 +02003231
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003232 return ret;
Bram Moolenaardb913952012-06-29 12:54:53 +02003233}
3234
Bram Moolenaara5b725c2013-05-30 12:43:54 +02003235 static PyObject *
3236FunctionRepr(FunctionObject *self)
3237{
Bram Moolenaar8110a092016-04-14 15:56:09 +02003238 PyObject *ret;
3239 garray_T repr_ga;
3240 int i;
3241 char_u *tofree = NULL;
3242 typval_T tv;
3243 char_u numbuf[NUMBUFLEN];
3244
3245 ga_init2(&repr_ga, (int)sizeof(char), 70);
3246 ga_concat(&repr_ga, (char_u *)"<vim.Function '");
3247 if (self->name)
3248 ga_concat(&repr_ga, self->name);
3249 else
3250 ga_concat(&repr_ga, (char_u *)"<NULL>");
3251 ga_append(&repr_ga, '\'');
3252 if (self->argv)
3253 {
3254 ga_concat(&repr_ga, (char_u *)", args=[");
3255 ++emsg_silent;
3256 for (i = 0; i < self->argc; i++)
3257 {
3258 if (i != 0)
3259 ga_concat(&repr_ga, (char_u *)", ");
3260 ga_concat(&repr_ga, tv2string(&self->argv[i], &tofree, numbuf,
3261 get_copyID()));
3262 vim_free(tofree);
3263 }
3264 --emsg_silent;
3265 ga_append(&repr_ga, ']');
3266 }
3267 if (self->self)
3268 {
3269 ga_concat(&repr_ga, (char_u *)", self=");
3270 tv.v_type = VAR_DICT;
3271 tv.vval.v_dict = self->self;
3272 ++emsg_silent;
3273 ga_concat(&repr_ga, tv2string(&tv, &tofree, numbuf, get_copyID()));
3274 --emsg_silent;
3275 vim_free(tofree);
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02003276 if (self->auto_rebind)
3277 ga_concat(&repr_ga, (char_u *)", auto_rebind=True");
Bram Moolenaar8110a092016-04-14 15:56:09 +02003278 }
3279 ga_append(&repr_ga, '>');
3280 ret = PyString_FromString((char *)repr_ga.ga_data);
3281 ga_clear(&repr_ga);
3282 return ret;
Bram Moolenaara5b725c2013-05-30 12:43:54 +02003283}
3284
Bram Moolenaardb913952012-06-29 12:54:53 +02003285static struct PyMethodDef FunctionMethods[] = {
Bram Moolenaardd8aca62013-05-29 22:36:10 +02003286 {"__dir__", (PyCFunction)FunctionDir, METH_NOARGS, ""},
3287 { NULL, NULL, 0, NULL}
Bram Moolenaardb913952012-06-29 12:54:53 +02003288};
3289
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003290/*
3291 * Options object
3292 */
3293
3294static PyTypeObject OptionsType;
3295
3296typedef int (*checkfun)(void *);
3297
3298typedef struct
3299{
3300 PyObject_HEAD
Bram Moolenaar1028f4d2014-01-14 16:55:00 +01003301 int opt_type;
3302 void *from;
3303 checkfun Check;
3304 PyObject *fromObj;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003305} OptionsObject;
3306
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02003307 static int
3308dummy_check(void *arg UNUSED)
3309{
3310 return 0;
3311}
3312
3313 static PyObject *
3314OptionsNew(int opt_type, void *from, checkfun Check, PyObject *fromObj)
3315{
3316 OptionsObject *self;
3317
Bram Moolenaar774267b2013-05-21 20:51:59 +02003318 self = PyObject_GC_New(OptionsObject, &OptionsType);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02003319 if (self == NULL)
3320 return NULL;
3321
3322 self->opt_type = opt_type;
3323 self->from = from;
3324 self->Check = Check;
3325 self->fromObj = fromObj;
3326 if (fromObj)
3327 Py_INCREF(fromObj);
3328
3329 return (PyObject *)(self);
3330}
3331
3332 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02003333OptionsDestructor(OptionsObject *self)
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02003334{
Bram Moolenaar774267b2013-05-21 20:51:59 +02003335 PyObject_GC_UnTrack((void *)(self));
3336 Py_XDECREF(self->fromObj);
3337 PyObject_GC_Del((void *)(self));
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02003338}
3339
3340 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02003341OptionsTraverse(OptionsObject *self, visitproc visit, void *arg)
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02003342{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003343 Py_VISIT(self->fromObj);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02003344 return 0;
3345}
3346
3347 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02003348OptionsClear(OptionsObject *self)
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02003349{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003350 Py_CLEAR(self->fromObj);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02003351 return 0;
3352}
3353
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003354 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003355OptionsItem(OptionsObject *self, PyObject *keyObject)
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003356{
3357 char_u *key;
3358 int flags;
3359 long numval;
3360 char_u *stringval;
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003361 PyObject *todecref;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003362
Bram Moolenaard6e39182013-05-21 18:30:34 +02003363 if (self->Check(self->from))
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003364 return NULL;
3365
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003366 if (!(key = StringToChars(keyObject, &todecref)))
3367 return NULL;
Bram Moolenaar4f2109d2013-06-02 18:07:37 +02003368
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003369 if (*key == NUL)
3370 {
3371 RAISE_NO_EMPTY_KEYS;
Bram Moolenaar4f2109d2013-06-02 18:07:37 +02003372 Py_XDECREF(todecref);
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003373 return NULL;
3374 }
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003375
3376 flags = get_option_value_strict(key, &numval, &stringval,
Bram Moolenaard6e39182013-05-21 18:30:34 +02003377 self->opt_type, self->from);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003378
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003379 Py_XDECREF(todecref);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003380
3381 if (flags == 0)
3382 {
Bram Moolenaar4d188da2013-05-15 15:35:09 +02003383 PyErr_SetObject(PyExc_KeyError, keyObject);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003384 return NULL;
3385 }
3386
3387 if (flags & SOPT_UNSET)
3388 {
3389 Py_INCREF(Py_None);
3390 return Py_None;
3391 }
3392 else if (flags & SOPT_BOOL)
3393 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003394 PyObject *ret;
3395 ret = numval ? Py_True : Py_False;
3396 Py_INCREF(ret);
3397 return ret;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003398 }
3399 else if (flags & SOPT_NUM)
3400 return PyInt_FromLong(numval);
3401 else if (flags & SOPT_STRING)
3402 {
3403 if (stringval)
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02003404 {
Bram Moolenaar41009372013-07-01 22:03:04 +02003405 PyObject *ret = PyBytes_FromString((char *)stringval);
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02003406 vim_free(stringval);
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003407 return ret;
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02003408 }
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003409 else
3410 {
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +02003411 PyErr_SET_STRING(PyExc_RuntimeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02003412 N_("unable to get option value"));
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003413 return NULL;
3414 }
3415 }
3416 else
3417 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02003418 PyErr_SET_VIM(N_("internal error: unknown option type"));
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003419 return NULL;
3420 }
3421}
3422
3423 static int
Bram Moolenaar1028f4d2014-01-14 16:55:00 +01003424OptionsContains(OptionsObject *self, PyObject *keyObject)
3425{
3426 char_u *key;
3427 PyObject *todecref;
3428
3429 if (!(key = StringToChars(keyObject, &todecref)))
3430 return -1;
3431
3432 if (*key == NUL)
3433 {
3434 Py_XDECREF(todecref);
3435 return 0;
3436 }
3437
3438 if (get_option_value_strict(key, NULL, NULL, self->opt_type, NULL))
3439 {
3440 Py_XDECREF(todecref);
3441 return 1;
3442 }
3443 else
3444 {
3445 Py_XDECREF(todecref);
3446 return 0;
3447 }
3448}
3449
3450typedef struct
3451{
3452 void *lastoption;
3453 int opt_type;
3454} optiterinfo_T;
3455
3456 static PyObject *
3457OptionsIterNext(optiterinfo_T **oii)
3458{
3459 char_u *name;
3460
3461 if ((name = option_iter_next(&((*oii)->lastoption), (*oii)->opt_type)))
3462 return PyString_FromString((char *)name);
3463
3464 return NULL;
3465}
3466
3467 static PyObject *
3468OptionsIter(OptionsObject *self)
3469{
3470 optiterinfo_T *oii;
3471
3472 if (!(oii = PyMem_New(optiterinfo_T, 1)))
3473 {
3474 PyErr_NoMemory();
3475 return NULL;
3476 }
3477
3478 oii->opt_type = self->opt_type;
3479 oii->lastoption = NULL;
3480
3481 return IterNew(oii,
3482 (destructorfun) PyMem_Free, (nextfun) OptionsIterNext,
3483 NULL, NULL);
3484}
3485
3486 static int
Bram Moolenaar5ab9d982013-06-16 14:25:57 +02003487set_option_value_err(char_u *key, int numval, char_u *stringval, int opt_flags)
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02003488{
Bram Moolenaarb1443b42019-01-13 23:51:14 +01003489 char *errmsg;
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02003490
3491 if ((errmsg = set_option_value(key, numval, stringval, opt_flags)))
3492 {
3493 if (VimTryEnd())
3494 return FAIL;
Bram Moolenaarb1443b42019-01-13 23:51:14 +01003495 PyErr_SetVim(errmsg);
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02003496 return FAIL;
3497 }
3498 return OK;
3499}
3500
3501 static int
Bram Moolenaar5ab9d982013-06-16 14:25:57 +02003502set_option_value_for(
3503 char_u *key,
3504 int numval,
3505 char_u *stringval,
3506 int opt_flags,
3507 int opt_type,
3508 void *from)
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003509{
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02003510 win_T *save_curwin = NULL;
3511 tabpage_T *save_curtab = NULL;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003512 bufref_T save_curbuf;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003513 int set_ret = 0;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003514
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003515 VimTryStart();
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003516 switch (opt_type)
3517 {
3518 case SREQ_WIN:
Bram Moolenaar105bc352013-05-17 16:03:57 +02003519 if (switch_win(&save_curwin, &save_curtab, (win_T *)from,
Bram Moolenaard6949742013-06-16 14:18:28 +02003520 win_find_tabpage((win_T *)from), FALSE) == FAIL)
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003521 {
Bram Moolenaarae38d052014-12-17 14:46:09 +01003522 restore_win(save_curwin, save_curtab, TRUE);
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003523 if (VimTryEnd())
3524 return -1;
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02003525 PyErr_SET_VIM(N_("problem while switching windows"));
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003526 return -1;
3527 }
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003528 set_ret = set_option_value_err(key, numval, stringval, opt_flags);
3529 restore_win(save_curwin, save_curtab, TRUE);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003530 break;
3531 case SREQ_BUF:
Bram Moolenaar105bc352013-05-17 16:03:57 +02003532 switch_buffer(&save_curbuf, (buf_T *)from);
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003533 set_ret = set_option_value_err(key, numval, stringval, opt_flags);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003534 restore_buffer(&save_curbuf);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003535 break;
3536 case SREQ_GLOBAL:
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003537 set_ret = set_option_value_err(key, numval, stringval, opt_flags);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003538 break;
3539 }
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003540 if (set_ret == FAIL)
3541 return -1;
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003542 return VimTryEnd();
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003543}
3544
3545 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02003546OptionsAssItem(OptionsObject *self, PyObject *keyObject, PyObject *valObject)
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003547{
3548 char_u *key;
3549 int flags;
3550 int opt_flags;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003551 int ret = 0;
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003552 PyObject *todecref;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003553
Bram Moolenaard6e39182013-05-21 18:30:34 +02003554 if (self->Check(self->from))
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003555 return -1;
3556
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003557 if (!(key = StringToChars(keyObject, &todecref)))
3558 return -1;
Bram Moolenaar4f2109d2013-06-02 18:07:37 +02003559
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003560 if (*key == NUL)
3561 {
3562 RAISE_NO_EMPTY_KEYS;
Bram Moolenaar4f2109d2013-06-02 18:07:37 +02003563 Py_XDECREF(todecref);
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003564 return -1;
3565 }
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003566
3567 flags = get_option_value_strict(key, NULL, NULL,
Bram Moolenaard6e39182013-05-21 18:30:34 +02003568 self->opt_type, self->from);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003569
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003570 if (flags == 0)
3571 {
Bram Moolenaar4d188da2013-05-15 15:35:09 +02003572 PyErr_SetObject(PyExc_KeyError, keyObject);
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003573 Py_XDECREF(todecref);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003574 return -1;
3575 }
3576
3577 if (valObject == NULL)
3578 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02003579 if (self->opt_type == SREQ_GLOBAL)
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003580 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02003581 PyErr_FORMAT(PyExc_ValueError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02003582 N_("unable to unset global option %s"), key);
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003583 Py_XDECREF(todecref);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003584 return -1;
3585 }
3586 else if (!(flags & SOPT_GLOBAL))
3587 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02003588 PyErr_FORMAT(PyExc_ValueError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02003589 N_("unable to unset option %s "
3590 "which does not have global value"), key);
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003591 Py_XDECREF(todecref);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003592 return -1;
3593 }
3594 else
3595 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02003596 unset_global_local_option(key, self->from);
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003597 Py_XDECREF(todecref);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003598 return 0;
3599 }
3600 }
3601
Bram Moolenaard6e39182013-05-21 18:30:34 +02003602 opt_flags = (self->opt_type ? OPT_LOCAL : OPT_GLOBAL);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003603
3604 if (flags & SOPT_BOOL)
3605 {
Bram Moolenaarb983f752013-05-15 16:11:50 +02003606 int istrue = PyObject_IsTrue(valObject);
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02003607
Bram Moolenaarb983f752013-05-15 16:11:50 +02003608 if (istrue == -1)
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003609 ret = -1;
Bram Moolenaar1bc24282013-05-29 21:37:35 +02003610 else
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003611 ret = set_option_value_for(key, istrue, NULL,
Bram Moolenaar1bc24282013-05-29 21:37:35 +02003612 opt_flags, self->opt_type, self->from);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003613 }
3614 else if (flags & SOPT_NUM)
3615 {
Bram Moolenaar141be8a2013-06-23 14:16:57 +02003616 long val;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003617
Bram Moolenaar141be8a2013-06-23 14:16:57 +02003618 if (NumberToLong(valObject, &val, NUMBER_INT))
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003619 {
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003620 Py_XDECREF(todecref);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003621 return -1;
3622 }
3623
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003624 ret = set_option_value_for(key, (int) val, NULL, opt_flags,
Bram Moolenaard6e39182013-05-21 18:30:34 +02003625 self->opt_type, self->from);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003626 }
3627 else
3628 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003629 char_u *val;
Bram Moolenaarc2401d62013-12-07 14:28:43 +01003630 PyObject *todecref2;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003631
Bram Moolenaarc2401d62013-12-07 14:28:43 +01003632 if ((val = StringToChars(valObject, &todecref2)))
3633 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003634 ret = set_option_value_for(key, 0, val, opt_flags,
Bram Moolenaare9ba5162013-05-29 22:02:22 +02003635 self->opt_type, self->from);
Bram Moolenaarc2401d62013-12-07 14:28:43 +01003636 Py_XDECREF(todecref2);
3637 }
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003638 else
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003639 ret = -1;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003640 }
3641
Bram Moolenaar35eacd72013-05-30 22:06:33 +02003642 Py_XDECREF(todecref);
Bram Moolenaar1bc24282013-05-29 21:37:35 +02003643
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003644 return ret;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003645}
3646
Bram Moolenaar1028f4d2014-01-14 16:55:00 +01003647static PySequenceMethods OptionsAsSeq = {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01003648 0, // sq_length
3649 0, // sq_concat
3650 0, // sq_repeat
3651 0, // sq_item
3652 0, // sq_slice
3653 0, // sq_ass_item
3654 0, // sq_ass_slice
3655 (objobjproc) OptionsContains, // sq_contains
3656 0, // sq_inplace_concat
3657 0, // sq_inplace_repeat
Bram Moolenaar1028f4d2014-01-14 16:55:00 +01003658};
3659
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003660static PyMappingMethods OptionsAsMapping = {
3661 (lenfunc) NULL,
3662 (binaryfunc) OptionsItem,
3663 (objobjargproc) OptionsAssItem,
3664};
3665
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01003666// Tabpage object
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003667
3668typedef struct
3669{
3670 PyObject_HEAD
3671 tabpage_T *tab;
3672} TabPageObject;
3673
3674static PyObject *WinListNew(TabPageObject *tabObject);
3675
3676static PyTypeObject TabPageType;
3677
3678 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02003679CheckTabPage(TabPageObject *self)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003680{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003681 if (self->tab == INVALID_TABPAGE_VALUE)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003682 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02003683 PyErr_SET_VIM(N_("attempt to refer to deleted tab page"));
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003684 return -1;
3685 }
3686
3687 return 0;
3688}
3689
3690 static PyObject *
3691TabPageNew(tabpage_T *tab)
3692{
3693 TabPageObject *self;
3694
3695 if (TAB_PYTHON_REF(tab))
3696 {
3697 self = TAB_PYTHON_REF(tab);
3698 Py_INCREF(self);
3699 }
3700 else
3701 {
3702 self = PyObject_NEW(TabPageObject, &TabPageType);
3703 if (self == NULL)
3704 return NULL;
3705 self->tab = tab;
3706 TAB_PYTHON_REF(tab) = self;
3707 }
3708
3709 return (PyObject *)(self);
3710}
3711
3712 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02003713TabPageDestructor(TabPageObject *self)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003714{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003715 if (self->tab && self->tab != INVALID_TABPAGE_VALUE)
3716 TAB_PYTHON_REF(self->tab) = NULL;
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003717
3718 DESTRUCTOR_FINISH(self);
3719}
3720
Bram Moolenaardd8aca62013-05-29 22:36:10 +02003721static char *TabPageAttrs[] = {
3722 "windows", "number", "vars", "window", "valid",
3723 NULL
3724};
3725
3726 static PyObject *
3727TabPageDir(PyObject *self)
3728{
3729 return ObjectDir(self, TabPageAttrs);
3730}
3731
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003732 static PyObject *
Bram Moolenaar9e822c02013-05-29 22:15:30 +02003733TabPageAttrValid(TabPageObject *self, char *name)
3734{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003735 PyObject *ret;
Bram Moolenaar9e822c02013-05-29 22:15:30 +02003736
3737 if (strcmp(name, "valid") != 0)
3738 return NULL;
3739
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003740 ret = ((self->tab == INVALID_TABPAGE_VALUE) ? Py_False : Py_True);
3741 Py_INCREF(ret);
3742 return ret;
Bram Moolenaar9e822c02013-05-29 22:15:30 +02003743}
3744
3745 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003746TabPageAttr(TabPageObject *self, char *name)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003747{
3748 if (strcmp(name, "windows") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02003749 return WinListNew(self);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003750 else if (strcmp(name, "number") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02003751 return PyLong_FromLong((long) get_tab_number(self->tab));
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003752 else if (strcmp(name, "vars") == 0)
Bram Moolenaara9922d62013-05-30 13:01:18 +02003753 return NEW_DICTIONARY(self->tab->tp_vars);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003754 else if (strcmp(name, "window") == 0)
3755 {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01003756 // For current tab window.c does not bother to set or update tp_curwin
Bram Moolenaard6e39182013-05-21 18:30:34 +02003757 if (self->tab == curtab)
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003758 return WindowNew(curwin, curtab);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003759 else
Bram Moolenaard6e39182013-05-21 18:30:34 +02003760 return WindowNew(self->tab->tp_curwin, self->tab);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003761 }
Bram Moolenaardd8aca62013-05-29 22:36:10 +02003762 else if (strcmp(name, "__members__") == 0)
3763 return ObjectDir(NULL, TabPageAttrs);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003764 return NULL;
3765}
3766
3767 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003768TabPageRepr(TabPageObject *self)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003769{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003770 if (self->tab == INVALID_TABPAGE_VALUE)
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02003771 return PyString_FromFormat("<tabpage object (deleted) at %p>", (self));
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003772 else
3773 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02003774 int t = get_tab_number(self->tab);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003775
3776 if (t == 0)
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02003777 return PyString_FromFormat("<tabpage object (unknown) at %p>",
3778 (self));
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003779 else
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02003780 return PyString_FromFormat("<tabpage %d>", t - 1);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003781 }
3782}
3783
3784static struct PyMethodDef TabPageMethods[] = {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01003785 // name, function, calling, documentation
Bram Moolenaardd8aca62013-05-29 22:36:10 +02003786 {"__dir__", (PyCFunction)TabPageDir, METH_NOARGS, ""},
3787 { NULL, NULL, 0, NULL}
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003788};
3789
3790/*
3791 * Window list object
3792 */
3793
3794static PyTypeObject TabListType;
3795static PySequenceMethods TabListAsSeq;
3796
3797typedef struct
3798{
3799 PyObject_HEAD
3800} TabListObject;
3801
3802 static PyInt
3803TabListLength(PyObject *self UNUSED)
3804{
3805 tabpage_T *tp = first_tabpage;
3806 PyInt n = 0;
3807
3808 while (tp != NULL)
3809 {
3810 ++n;
3811 tp = tp->tp_next;
3812 }
3813
3814 return n;
3815}
3816
3817 static PyObject *
3818TabListItem(PyObject *self UNUSED, PyInt n)
3819{
3820 tabpage_T *tp;
3821
3822 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, --n)
3823 if (n == 0)
3824 return TabPageNew(tp);
3825
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02003826 PyErr_SET_STRING(PyExc_IndexError, N_("no such tab page"));
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003827 return NULL;
3828}
3829
Bram Moolenaar6c85e7f2013-06-23 12:51:32 +02003830/*
3831 * Window object
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003832 */
3833
3834typedef struct
3835{
3836 PyObject_HEAD
3837 win_T *win;
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003838 TabPageObject *tabObject;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003839} WindowObject;
3840
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003841static PyTypeObject WindowType;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003842
3843 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02003844CheckWindow(WindowObject *self)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003845{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003846 if (self->win == INVALID_WINDOW_VALUE)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003847 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02003848 PyErr_SET_VIM(N_("attempt to refer to deleted window"));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003849 return -1;
3850 }
3851
3852 return 0;
3853}
3854
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003855 static PyObject *
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003856WindowNew(win_T *win, tabpage_T *tab)
Bram Moolenaar971db462013-05-12 18:44:48 +02003857{
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01003858 /*
3859 * We need to handle deletion of windows underneath us.
Bram Moolenaar971db462013-05-12 18:44:48 +02003860 * If we add a "w_python*_ref" field to the win_T structure,
3861 * then we can get at it in win_free() in vim. We then
3862 * need to create only ONE Python object per window - if
3863 * we try to create a second, just INCREF the existing one
3864 * and return it. The (single) Python object referring to
3865 * the window is stored in "w_python*_ref".
3866 * On a win_free() we set the Python object's win_T* field
3867 * to an invalid value. We trap all uses of a window
3868 * object, and reject them if the win_T* field is invalid.
3869 *
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003870 * Python2 and Python3 get different fields and different objects:
Bram Moolenaar971db462013-05-12 18:44:48 +02003871 * w_python_ref and w_python3_ref fields respectively.
3872 */
3873
3874 WindowObject *self;
3875
3876 if (WIN_PYTHON_REF(win))
3877 {
3878 self = WIN_PYTHON_REF(win);
3879 Py_INCREF(self);
3880 }
3881 else
3882 {
Bram Moolenaar774267b2013-05-21 20:51:59 +02003883 self = PyObject_GC_New(WindowObject, &WindowType);
Bram Moolenaar971db462013-05-12 18:44:48 +02003884 if (self == NULL)
3885 return NULL;
3886 self->win = win;
3887 WIN_PYTHON_REF(win) = self;
3888 }
3889
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003890 self->tabObject = ((TabPageObject *)(TabPageNew(tab)));
3891
Bram Moolenaar971db462013-05-12 18:44:48 +02003892 return (PyObject *)(self);
3893}
3894
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003895 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02003896WindowDestructor(WindowObject *self)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003897{
Bram Moolenaar774267b2013-05-21 20:51:59 +02003898 PyObject_GC_UnTrack((void *)(self));
Bram Moolenaard6e39182013-05-21 18:30:34 +02003899 if (self->win && self->win != INVALID_WINDOW_VALUE)
3900 WIN_PYTHON_REF(self->win) = NULL;
Bram Moolenaar774267b2013-05-21 20:51:59 +02003901 Py_XDECREF(((PyObject *)(self->tabObject)));
3902 PyObject_GC_Del((void *)(self));
3903}
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003904
Bram Moolenaar774267b2013-05-21 20:51:59 +02003905 static int
3906WindowTraverse(WindowObject *self, visitproc visit, void *arg)
3907{
3908 Py_VISIT(((PyObject *)(self->tabObject)));
3909 return 0;
3910}
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003911
Bram Moolenaar774267b2013-05-21 20:51:59 +02003912 static int
3913WindowClear(WindowObject *self)
3914{
3915 Py_CLEAR(self->tabObject);
3916 return 0;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003917}
3918
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003919 static win_T *
3920get_firstwin(TabPageObject *tabObject)
3921{
3922 if (tabObject)
3923 {
3924 if (CheckTabPage(tabObject))
3925 return NULL;
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01003926 // For current tab window.c does not bother to set or update tp_firstwin
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003927 else if (tabObject->tab == curtab)
3928 return firstwin;
3929 else
3930 return tabObject->tab->tp_firstwin;
3931 }
3932 else
3933 return firstwin;
3934}
Bram Moolenaare950f992018-06-10 13:55:55 +02003935
3936// Use the same order as in the WindowAttr() function.
Bram Moolenaardd8aca62013-05-29 22:36:10 +02003937static char *WindowAttrs[] = {
Bram Moolenaare950f992018-06-10 13:55:55 +02003938 "buffer",
3939 "cursor",
3940 "height",
3941 "row",
3942 "width",
3943 "col",
3944 "vars",
3945 "options",
3946 "number",
3947 "tabpage",
3948 "valid",
Bram Moolenaardd8aca62013-05-29 22:36:10 +02003949 NULL
3950};
3951
3952 static PyObject *
3953WindowDir(PyObject *self)
3954{
3955 return ObjectDir(self, WindowAttrs);
3956}
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003957
Bram Moolenaar971db462013-05-12 18:44:48 +02003958 static PyObject *
Bram Moolenaar9e822c02013-05-29 22:15:30 +02003959WindowAttrValid(WindowObject *self, char *name)
3960{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003961 PyObject *ret;
Bram Moolenaar9e822c02013-05-29 22:15:30 +02003962
3963 if (strcmp(name, "valid") != 0)
3964 return NULL;
3965
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02003966 ret = ((self->win == INVALID_WINDOW_VALUE) ? Py_False : Py_True);
3967 Py_INCREF(ret);
3968 return ret;
Bram Moolenaar9e822c02013-05-29 22:15:30 +02003969}
3970
3971 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003972WindowAttr(WindowObject *self, char *name)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003973{
3974 if (strcmp(name, "buffer") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02003975 return (PyObject *)BufferNew(self->win->w_buffer);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003976 else if (strcmp(name, "cursor") == 0)
3977 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02003978 pos_T *pos = &self->win->w_cursor;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003979
3980 return Py_BuildValue("(ll)", (long)(pos->lnum), (long)(pos->col));
3981 }
3982 else if (strcmp(name, "height") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02003983 return PyLong_FromLong((long)(self->win->w_height));
Bram Moolenaar4e5dfb52013-05-12 19:30:31 +02003984 else if (strcmp(name, "row") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02003985 return PyLong_FromLong((long)(self->win->w_winrow));
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003986 else if (strcmp(name, "width") == 0)
Bram Moolenaar02631462017-09-22 15:20:32 +02003987 return PyLong_FromLong((long)(self->win->w_width));
Bram Moolenaar4e5dfb52013-05-12 19:30:31 +02003988 else if (strcmp(name, "col") == 0)
Bram Moolenaar53f81742017-09-22 14:35:51 +02003989 return PyLong_FromLong((long)(self->win->w_wincol));
Bram Moolenaar230bb3f2013-04-24 14:07:45 +02003990 else if (strcmp(name, "vars") == 0)
Bram Moolenaara9922d62013-05-30 13:01:18 +02003991 return NEW_DICTIONARY(self->win->w_vars);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02003992 else if (strcmp(name, "options") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02003993 return OptionsNew(SREQ_WIN, self->win, (checkfun) CheckWindow,
3994 (PyObject *) self);
Bram Moolenaar6d216452013-05-12 19:00:41 +02003995 else if (strcmp(name, "number") == 0)
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003996 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02003997 if (CheckTabPage(self->tabObject))
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003998 return NULL;
3999 return PyLong_FromLong((long)
Bram Moolenaard6e39182013-05-21 18:30:34 +02004000 get_win_number(self->win, get_firstwin(self->tabObject)));
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02004001 }
4002 else if (strcmp(name, "tabpage") == 0)
4003 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02004004 Py_INCREF(self->tabObject);
4005 return (PyObject *)(self->tabObject);
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02004006 }
Bram Moolenaardd8aca62013-05-29 22:36:10 +02004007 else if (strcmp(name, "__members__") == 0)
4008 return ObjectDir(NULL, WindowAttrs);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004009 else
4010 return NULL;
4011}
4012
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004013 static int
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004014WindowSetattr(WindowObject *self, char *name, PyObject *valObject)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004015{
Bram Moolenaard6e39182013-05-21 18:30:34 +02004016 if (CheckWindow(self))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004017 return -1;
4018
4019 if (strcmp(name, "buffer") == 0)
4020 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004021 PyErr_SET_STRING(PyExc_TypeError, N_("readonly attribute: buffer"));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004022 return -1;
4023 }
4024 else if (strcmp(name, "cursor") == 0)
4025 {
4026 long lnum;
4027 long col;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004028
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004029 if (!PyArg_Parse(valObject, "(ll)", &lnum, &col))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004030 return -1;
4031
Bram Moolenaard6e39182013-05-21 18:30:34 +02004032 if (lnum <= 0 || lnum > self->win->w_buffer->b_ml.ml_line_count)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004033 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004034 PyErr_SET_VIM(N_("cursor position outside buffer"));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004035 return -1;
4036 }
4037
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004038 // Check for keyboard interrupts
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004039 if (VimCheckInterrupt())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004040 return -1;
4041
Bram Moolenaard6e39182013-05-21 18:30:34 +02004042 self->win->w_cursor.lnum = lnum;
4043 self->win->w_cursor.col = col;
Bram Moolenaar53901442018-07-25 22:02:36 +02004044 self->win->w_set_curswant = TRUE;
Bram Moolenaard6e39182013-05-21 18:30:34 +02004045 self->win->w_cursor.coladd = 0;
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004046 // When column is out of range silently correct it.
Bram Moolenaard6e39182013-05-21 18:30:34 +02004047 check_cursor_col_win(self->win);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004048
Bram Moolenaar03a807a2011-07-07 15:08:58 +02004049 update_screen(VALID);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004050 return 0;
4051 }
4052 else if (strcmp(name, "height") == 0)
4053 {
Bram Moolenaar141be8a2013-06-23 14:16:57 +02004054 long height;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004055 win_T *savewin;
4056
Bram Moolenaardee2e312013-06-23 16:35:47 +02004057 if (NumberToLong(valObject, &height, NUMBER_INT|NUMBER_UNSIGNED))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004058 return -1;
4059
4060#ifdef FEAT_GUI
4061 need_mouse_correct = TRUE;
4062#endif
4063 savewin = curwin;
Bram Moolenaard6e39182013-05-21 18:30:34 +02004064 curwin = self->win;
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004065
4066 VimTryStart();
Bram Moolenaar141be8a2013-06-23 14:16:57 +02004067 win_setheight((int) height);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004068 curwin = savewin;
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004069 if (VimTryEnd())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004070 return -1;
4071
4072 return 0;
4073 }
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004074 else if (strcmp(name, "width") == 0)
4075 {
Bram Moolenaar141be8a2013-06-23 14:16:57 +02004076 long width;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004077 win_T *savewin;
4078
Bram Moolenaardee2e312013-06-23 16:35:47 +02004079 if (NumberToLong(valObject, &width, NUMBER_INT|NUMBER_UNSIGNED))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004080 return -1;
4081
4082#ifdef FEAT_GUI
4083 need_mouse_correct = TRUE;
4084#endif
4085 savewin = curwin;
Bram Moolenaard6e39182013-05-21 18:30:34 +02004086 curwin = self->win;
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004087
4088 VimTryStart();
Bram Moolenaar141be8a2013-06-23 14:16:57 +02004089 win_setwidth((int) width);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004090 curwin = savewin;
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004091 if (VimTryEnd())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004092 return -1;
4093
4094 return 0;
4095 }
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004096 else
4097 {
4098 PyErr_SetString(PyExc_AttributeError, name);
4099 return -1;
4100 }
4101}
4102
4103 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02004104WindowRepr(WindowObject *self)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004105{
Bram Moolenaard6e39182013-05-21 18:30:34 +02004106 if (self->win == INVALID_WINDOW_VALUE)
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02004107 return PyString_FromFormat("<window object (deleted) at %p>", (self));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004108 else
4109 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02004110 int w = get_win_number(self->win, firstwin);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004111
Bram Moolenaar6d216452013-05-12 19:00:41 +02004112 if (w == 0)
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02004113 return PyString_FromFormat("<window object (unknown) at %p>",
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004114 (self));
4115 else
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02004116 return PyString_FromFormat("<window %d>", w - 1);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004117 }
4118}
4119
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02004120static struct PyMethodDef WindowMethods[] = {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004121 // name, function, calling, documentation
Bram Moolenaardd8aca62013-05-29 22:36:10 +02004122 {"__dir__", (PyCFunction)WindowDir, METH_NOARGS, ""},
4123 { NULL, NULL, 0, NULL}
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02004124};
4125
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004126/*
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02004127 * Window list object
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004128 */
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004129
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02004130static PyTypeObject WinListType;
4131static PySequenceMethods WinListAsSeq;
4132
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004133typedef struct
4134{
4135 PyObject_HEAD
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004136 TabPageObject *tabObject;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004137} WinListObject;
4138
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004139 static PyObject *
4140WinListNew(TabPageObject *tabObject)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004141{
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004142 WinListObject *self;
4143
4144 self = PyObject_NEW(WinListObject, &WinListType);
4145 self->tabObject = tabObject;
4146 Py_INCREF(tabObject);
4147
4148 return (PyObject *)(self);
4149}
4150
4151 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02004152WinListDestructor(WinListObject *self)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004153{
Bram Moolenaard6e39182013-05-21 18:30:34 +02004154 TabPageObject *tabObject = self->tabObject;
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004155
4156 if (tabObject)
Bram Moolenaar425154d2013-05-24 18:58:43 +02004157 {
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004158 Py_DECREF((PyObject *)(tabObject));
Bram Moolenaar425154d2013-05-24 18:58:43 +02004159 }
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004160
4161 DESTRUCTOR_FINISH(self);
4162}
4163
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004164 static PyInt
Bram Moolenaard6e39182013-05-21 18:30:34 +02004165WinListLength(WinListObject *self)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004166{
4167 win_T *w;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004168 PyInt n = 0;
4169
Bram Moolenaard6e39182013-05-21 18:30:34 +02004170 if (!(w = get_firstwin(self->tabObject)))
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004171 return -1;
4172
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004173 while (w != NULL)
4174 {
4175 ++n;
4176 w = W_NEXT(w);
4177 }
4178
4179 return n;
4180}
4181
4182 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02004183WinListItem(WinListObject *self, PyInt n)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004184{
4185 win_T *w;
4186
Bram Moolenaard6e39182013-05-21 18:30:34 +02004187 if (!(w = get_firstwin(self->tabObject)))
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004188 return NULL;
4189
4190 for (; w != NULL; w = W_NEXT(w), --n)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004191 if (n == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02004192 return WindowNew(w, self->tabObject? self->tabObject->tab: curtab);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004193
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004194 PyErr_SET_STRING(PyExc_IndexError, N_("no such window"));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004195 return NULL;
4196}
4197
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004198/*
4199 * Convert a Python string into a Vim line.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004200 *
4201 * The result is in allocated memory. All internal nulls are replaced by
4202 * newline characters. It is an error for the string to contain newline
4203 * characters.
4204 *
4205 * On errors, the Python exception data is set, and NULL is returned.
4206 */
4207 static char *
4208StringToLine(PyObject *obj)
4209{
Bram Moolenaar808c2bc2013-06-23 13:11:18 +02004210 char *str;
4211 char *save;
4212 PyObject *bytes = NULL;
Bram Moolenaardee2e312013-06-23 16:35:47 +02004213 Py_ssize_t len = 0;
Bram Moolenaar808c2bc2013-06-23 13:11:18 +02004214 PyInt i;
4215 char *p;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004216
Bram Moolenaar808c2bc2013-06-23 13:11:18 +02004217 if (PyBytes_Check(obj))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004218 {
Bram Moolenaar808c2bc2013-06-23 13:11:18 +02004219 if (PyBytes_AsStringAndSize(obj, &str, &len) == -1
4220 || str == NULL)
4221 return NULL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004222 }
Bram Moolenaar808c2bc2013-06-23 13:11:18 +02004223 else if (PyUnicode_Check(obj))
4224 {
4225 if (!(bytes = PyUnicode_AsEncodedString(obj, ENC_OPT, NULL)))
4226 return NULL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004227
Bram Moolenaardaa27022013-06-24 22:33:30 +02004228 if (PyBytes_AsStringAndSize(bytes, &str, &len) == -1
Bram Moolenaar808c2bc2013-06-23 13:11:18 +02004229 || str == NULL)
4230 {
4231 Py_DECREF(bytes);
4232 return NULL;
4233 }
4234 }
Bram Moolenaardaa27022013-06-24 22:33:30 +02004235 else
4236 {
4237#if PY_MAJOR_VERSION < 3
4238 PyErr_FORMAT(PyExc_TypeError,
4239 N_("expected str() or unicode() instance, but got %s"),
4240 Py_TYPE_NAME(obj));
4241#else
4242 PyErr_FORMAT(PyExc_TypeError,
4243 N_("expected bytes() or str() instance, but got %s"),
4244 Py_TYPE_NAME(obj));
4245#endif
4246 return NULL;
4247 }
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004248
4249 /*
4250 * Error checking: String must not contain newlines, as we
4251 * are replacing a single line, and we must replace it with
4252 * a single line.
4253 * A trailing newline is removed, so that append(f.readlines()) works.
4254 */
4255 p = memchr(str, '\n', len);
4256 if (p != NULL)
4257 {
4258 if (p == str + len - 1)
4259 --len;
4260 else
4261 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004262 PyErr_SET_VIM(N_("string cannot contain newlines"));
Bram Moolenaar841fbd22013-06-23 14:37:07 +02004263 Py_XDECREF(bytes);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004264 return NULL;
4265 }
4266 }
4267
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004268 /*
4269 * Create a copy of the string, with internal nulls replaced by
Bram Moolenaar86181df2020-05-11 23:14:04 +02004270 * newline characters, as is the Vim convention.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004271 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004272 save = alloc(len+1);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004273 if (save == NULL)
4274 {
4275 PyErr_NoMemory();
Bram Moolenaar841fbd22013-06-23 14:37:07 +02004276 Py_XDECREF(bytes);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004277 return NULL;
4278 }
4279
4280 for (i = 0; i < len; ++i)
4281 {
4282 if (str[i] == '\0')
4283 save[i] = '\n';
4284 else
4285 save[i] = str[i];
4286 }
4287
4288 save[i] = '\0';
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004289 Py_XDECREF(bytes); // Python 2 does nothing here
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004290
4291 return save;
4292}
4293
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004294/*
4295 * Get a line from the specified buffer. The line number is
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004296 * in Vim format (1-based). The line is returned as a Python
4297 * string object.
4298 */
4299 static PyObject *
4300GetBufferLine(buf_T *buf, PyInt n)
4301{
4302 return LineToString((char *)ml_get_buf(buf, (linenr_T)n, FALSE));
4303}
4304
4305
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004306/*
4307 * Get a list of lines from the specified buffer. The line numbers
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004308 * are in Vim format (1-based). The range is from lo up to, but not
4309 * including, hi. The list is returned as a Python list of string objects.
4310 */
4311 static PyObject *
4312GetBufferLineList(buf_T *buf, PyInt lo, PyInt hi)
4313{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004314 PyInt i;
4315 PyInt n = hi - lo;
4316 PyObject *list = PyList_New(n);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004317
4318 if (list == NULL)
4319 return NULL;
4320
4321 for (i = 0; i < n; ++i)
4322 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004323 PyObject *string = LineToString(
4324 (char *)ml_get_buf(buf, (linenr_T)(lo+i), FALSE));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004325
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004326 // Error check - was the Python string creation OK?
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004327 if (string == NULL)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004328 {
4329 Py_DECREF(list);
4330 return NULL;
4331 }
4332
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004333 PyList_SET_ITEM(list, i, string);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004334 }
4335
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004336 // The ownership of the Python list is passed to the caller (ie,
4337 // the caller should Py_DECREF() the object when it is finished
4338 // with it).
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004339
4340 return list;
4341}
4342
4343/*
4344 * Check if deleting lines made the cursor position invalid.
4345 * Changed the lines from "lo" to "hi" and added "extra" lines (negative if
4346 * deleted).
4347 */
4348 static void
4349py_fix_cursor(linenr_T lo, linenr_T hi, linenr_T extra)
4350{
4351 if (curwin->w_cursor.lnum >= lo)
4352 {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004353 // Adjust the cursor position if it's in/after the changed
4354 // lines.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004355 if (curwin->w_cursor.lnum >= hi)
4356 {
4357 curwin->w_cursor.lnum += extra;
4358 check_cursor_col();
4359 }
4360 else if (extra < 0)
4361 {
4362 curwin->w_cursor.lnum = lo;
4363 check_cursor();
4364 }
4365 else
4366 check_cursor_col();
4367 changed_cline_bef_curs();
4368 }
4369 invalidate_botline();
4370}
4371
Bram Moolenaar19e60942011-06-19 00:27:51 +02004372/*
4373 * Replace a line in the specified buffer. The line number is
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004374 * in Vim format (1-based). The replacement line is given as
4375 * a Python string object. The object is checked for validity
4376 * and correct format. Errors are returned as a value of FAIL.
4377 * The return value is OK on success.
4378 * If OK is returned and len_change is not NULL, *len_change
4379 * is set to the change in the buffer length.
4380 */
4381 static int
4382SetBufferLine(buf_T *buf, PyInt n, PyObject *line, PyInt *len_change)
4383{
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02004384 bufref_T save_curbuf = {NULL, 0, 0};
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004385 win_T *save_curwin = NULL;
4386 tabpage_T *save_curtab = NULL;
4387
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004388 // First of all, we check the type of the supplied Python object.
4389 // There are three cases:
4390 // 1. NULL, or None - this is a deletion.
4391 // 2. A string - this is a replacement.
4392 // 3. Anything else - this is an error.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004393 if (line == Py_None || line == NULL)
4394 {
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004395 PyErr_Clear();
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004396 switch_to_win_for_buf(buf, &save_curwin, &save_curtab, &save_curbuf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004397
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004398 VimTryStart();
4399
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004400 if (u_savedel((linenr_T)n, 1L) == FAIL)
Bram Moolenaarc476e522013-06-23 13:46:40 +02004401 RAISE_UNDO_FAIL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004402 else if (ml_delete((linenr_T)n, FALSE) == FAIL)
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004403 RAISE_DELETE_LINE_FAIL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004404 else
4405 {
Bram Moolenaar63dbfd32019-03-23 17:41:59 +01004406 if (buf == curbuf && (save_curwin != NULL
4407 || save_curbuf.br_buf == NULL))
4408 // Using an existing window for the buffer, adjust the cursor
4409 // position.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004410 py_fix_cursor((linenr_T)n, (linenr_T)n + 1, (linenr_T)-1);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004411 if (save_curbuf.br_buf == NULL)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004412 // Only adjust marks if we managed to switch to a window that
4413 // holds the buffer, otherwise line numbers will be invalid.
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004414 deleted_lines_mark((linenr_T)n, 1L);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004415 }
4416
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004417 restore_win_for_buf(save_curwin, save_curtab, &save_curbuf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004418
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004419 if (VimTryEnd())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004420 return FAIL;
4421
4422 if (len_change)
4423 *len_change = -1;
4424
4425 return OK;
4426 }
Bram Moolenaar808c2bc2013-06-23 13:11:18 +02004427 else if (PyBytes_Check(line) || PyUnicode_Check(line))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004428 {
Bram Moolenaar808c2bc2013-06-23 13:11:18 +02004429 char *save = StringToLine(line);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004430
4431 if (save == NULL)
4432 return FAIL;
4433
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004434 VimTryStart();
4435
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004436 // We do not need to free "save" if ml_replace() consumes it.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004437 PyErr_Clear();
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004438 switch_to_win_for_buf(buf, &save_curwin, &save_curtab, &save_curbuf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004439
4440 if (u_savesub((linenr_T)n) == FAIL)
4441 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02004442 RAISE_UNDO_FAIL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004443 vim_free(save);
4444 }
4445 else if (ml_replace((linenr_T)n, (char_u *)save, FALSE) == FAIL)
4446 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004447 RAISE_REPLACE_LINE_FAIL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004448 vim_free(save);
4449 }
4450 else
4451 changed_bytes((linenr_T)n, 0);
4452
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004453 restore_win_for_buf(save_curwin, save_curtab, &save_curbuf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004454
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004455 // Check that the cursor is not beyond the end of the line now.
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004456 if (buf == curbuf)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004457 check_cursor_col();
4458
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004459 if (VimTryEnd())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004460 return FAIL;
4461
4462 if (len_change)
4463 *len_change = 0;
4464
4465 return OK;
4466 }
4467 else
4468 {
4469 PyErr_BadArgument();
4470 return FAIL;
4471 }
4472}
4473
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004474/*
4475 * Replace a range of lines in the specified buffer. The line numbers are in
Bram Moolenaar19e60942011-06-19 00:27:51 +02004476 * Vim format (1-based). The range is from lo up to, but not including, hi.
4477 * The replacement lines are given as a Python list of string objects. The
4478 * list is checked for validity and correct format. Errors are returned as a
4479 * value of FAIL. The return value is OK on success.
4480 * If OK is returned and len_change is not NULL, *len_change
4481 * is set to the change in the buffer length.
4482 */
4483 static int
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004484SetBufferLineList(
4485 buf_T *buf,
4486 PyInt lo,
4487 PyInt hi,
4488 PyObject *list,
4489 PyInt *len_change)
Bram Moolenaar19e60942011-06-19 00:27:51 +02004490{
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02004491 bufref_T save_curbuf = {NULL, 0, 0};
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004492 win_T *save_curwin = NULL;
4493 tabpage_T *save_curtab = NULL;
4494
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004495 // First of all, we check the type of the supplied Python object.
4496 // There are three cases:
4497 // 1. NULL, or None - this is a deletion.
4498 // 2. A list - this is a replacement.
4499 // 3. Anything else - this is an error.
Bram Moolenaar19e60942011-06-19 00:27:51 +02004500 if (list == Py_None || list == NULL)
4501 {
4502 PyInt i;
4503 PyInt n = (int)(hi - lo);
Bram Moolenaar19e60942011-06-19 00:27:51 +02004504
4505 PyErr_Clear();
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004506 VimTryStart();
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004507 switch_to_win_for_buf(buf, &save_curwin, &save_curtab, &save_curbuf);
Bram Moolenaar19e60942011-06-19 00:27:51 +02004508
4509 if (u_savedel((linenr_T)lo, (long)n) == FAIL)
Bram Moolenaarc476e522013-06-23 13:46:40 +02004510 RAISE_UNDO_FAIL;
Bram Moolenaar19e60942011-06-19 00:27:51 +02004511 else
4512 {
4513 for (i = 0; i < n; ++i)
4514 {
4515 if (ml_delete((linenr_T)lo, FALSE) == FAIL)
4516 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004517 RAISE_DELETE_LINE_FAIL;
Bram Moolenaar19e60942011-06-19 00:27:51 +02004518 break;
4519 }
4520 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004521 if (buf == curbuf && (save_curwin != NULL
4522 || save_curbuf.br_buf == NULL))
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004523 // Using an existing window for the buffer, adjust the cursor
4524 // position.
Bram Moolenaar19e60942011-06-19 00:27:51 +02004525 py_fix_cursor((linenr_T)lo, (linenr_T)hi, (linenr_T)-n);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004526 if (save_curbuf.br_buf == NULL)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004527 // Only adjust marks if we managed to switch to a window that
4528 // holds the buffer, otherwise line numbers will be invalid.
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004529 deleted_lines_mark((linenr_T)lo, (long)i);
Bram Moolenaar19e60942011-06-19 00:27:51 +02004530 }
4531
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004532 restore_win_for_buf(save_curwin, save_curtab, &save_curbuf);
Bram Moolenaar19e60942011-06-19 00:27:51 +02004533
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004534 if (VimTryEnd())
Bram Moolenaar19e60942011-06-19 00:27:51 +02004535 return FAIL;
4536
4537 if (len_change)
4538 *len_change = -n;
4539
4540 return OK;
4541 }
4542 else if (PyList_Check(list))
4543 {
4544 PyInt i;
4545 PyInt new_len = PyList_Size(list);
4546 PyInt old_len = hi - lo;
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004547 PyInt extra = 0; // lines added to text, can be negative
Bram Moolenaar19e60942011-06-19 00:27:51 +02004548 char **array;
Bram Moolenaar19e60942011-06-19 00:27:51 +02004549
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004550 if (new_len == 0) // avoid allocating zero bytes
Bram Moolenaar19e60942011-06-19 00:27:51 +02004551 array = NULL;
4552 else
4553 {
Bram Moolenaare9ba5162013-05-29 22:02:22 +02004554 array = PyMem_New(char *, new_len);
Bram Moolenaar19e60942011-06-19 00:27:51 +02004555 if (array == NULL)
4556 {
4557 PyErr_NoMemory();
4558 return FAIL;
4559 }
4560 }
4561
4562 for (i = 0; i < new_len; ++i)
4563 {
Bram Moolenaar494ff7e2013-05-30 13:17:17 +02004564 PyObject *line;
Bram Moolenaar19e60942011-06-19 00:27:51 +02004565
Bram Moolenaar494ff7e2013-05-30 13:17:17 +02004566 if (!(line = PyList_GetItem(list, i)) ||
4567 !(array[i] = StringToLine(line)))
Bram Moolenaar19e60942011-06-19 00:27:51 +02004568 {
4569 while (i)
4570 vim_free(array[--i]);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02004571 PyMem_Free(array);
Bram Moolenaar19e60942011-06-19 00:27:51 +02004572 return FAIL;
4573 }
4574 }
4575
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004576 VimTryStart();
Bram Moolenaar19e60942011-06-19 00:27:51 +02004577 PyErr_Clear();
Bram Moolenaar105bc352013-05-17 16:03:57 +02004578
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004579 // START of region without "return". Must call restore_buffer()!
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004580 switch_to_win_for_buf(buf, &save_curwin, &save_curtab, &save_curbuf);
Bram Moolenaar19e60942011-06-19 00:27:51 +02004581
4582 if (u_save((linenr_T)(lo-1), (linenr_T)hi) == FAIL)
Bram Moolenaarc476e522013-06-23 13:46:40 +02004583 RAISE_UNDO_FAIL;
Bram Moolenaar19e60942011-06-19 00:27:51 +02004584
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004585 // If the size of the range is reducing (ie, new_len < old_len) we
4586 // need to delete some old_len. We do this at the start, by
4587 // repeatedly deleting line "lo".
Bram Moolenaar19e60942011-06-19 00:27:51 +02004588 if (!PyErr_Occurred())
4589 {
4590 for (i = 0; i < old_len - new_len; ++i)
4591 if (ml_delete((linenr_T)lo, FALSE) == FAIL)
4592 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004593 RAISE_DELETE_LINE_FAIL;
Bram Moolenaar19e60942011-06-19 00:27:51 +02004594 break;
4595 }
4596 extra -= i;
4597 }
4598
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004599 // For as long as possible, replace the existing old_len with the
4600 // new old_len. This is a more efficient operation, as it requires
4601 // less memory allocation and freeing.
Bram Moolenaar19e60942011-06-19 00:27:51 +02004602 if (!PyErr_Occurred())
4603 {
4604 for (i = 0; i < old_len && i < new_len; ++i)
4605 if (ml_replace((linenr_T)(lo+i), (char_u *)array[i], FALSE)
4606 == FAIL)
4607 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004608 RAISE_REPLACE_LINE_FAIL;
Bram Moolenaar19e60942011-06-19 00:27:51 +02004609 break;
4610 }
4611 }
4612 else
4613 i = 0;
4614
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004615 // Now we may need to insert the remaining new old_len. If we do, we
4616 // must free the strings as we finish with them (we can't pass the
Bram Moolenaar86181df2020-05-11 23:14:04 +02004617 // responsibility to Vim in this case).
Bram Moolenaar19e60942011-06-19 00:27:51 +02004618 if (!PyErr_Occurred())
4619 {
4620 while (i < new_len)
4621 {
4622 if (ml_append((linenr_T)(lo + i - 1),
4623 (char_u *)array[i], 0, FALSE) == FAIL)
4624 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004625 RAISE_INSERT_LINE_FAIL;
Bram Moolenaar19e60942011-06-19 00:27:51 +02004626 break;
4627 }
4628 vim_free(array[i]);
4629 ++i;
4630 ++extra;
4631 }
4632 }
4633
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004634 // Free any left-over old_len, as a result of an error
Bram Moolenaar19e60942011-06-19 00:27:51 +02004635 while (i < new_len)
4636 {
4637 vim_free(array[i]);
4638 ++i;
4639 }
4640
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004641 // Free the array of old_len. All of its contents have now
4642 // been dealt with (either freed, or the responsibility passed
4643 // to vim.
Bram Moolenaare9ba5162013-05-29 22:02:22 +02004644 PyMem_Free(array);
Bram Moolenaar19e60942011-06-19 00:27:51 +02004645
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004646 // Adjust marks. Invalidate any which lie in the
4647 // changed range, and move any in the remainder of the buffer.
4648 // Only adjust marks if we managed to switch to a window that holds
4649 // the buffer, otherwise line numbers will be invalid.
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004650 if (save_curbuf.br_buf == NULL)
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004651 mark_adjust((linenr_T)lo, (linenr_T)(hi - 1),
Bram Moolenaar19e60942011-06-19 00:27:51 +02004652 (long)MAXLNUM, (long)extra);
4653 changed_lines((linenr_T)lo, 0, (linenr_T)hi, (long)extra);
4654
Bram Moolenaar63dbfd32019-03-23 17:41:59 +01004655 if (buf == curbuf && (save_curwin != NULL
4656 || save_curbuf.br_buf == NULL))
4657 // Using an existing window for the buffer, adjust the cursor
4658 // position.
Bram Moolenaar19e60942011-06-19 00:27:51 +02004659 py_fix_cursor((linenr_T)lo, (linenr_T)hi, (linenr_T)extra);
4660
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004661 // END of region without "return".
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004662 restore_win_for_buf(save_curwin, save_curtab, &save_curbuf);
Bram Moolenaar19e60942011-06-19 00:27:51 +02004663
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004664 if (VimTryEnd())
Bram Moolenaar19e60942011-06-19 00:27:51 +02004665 return FAIL;
4666
4667 if (len_change)
4668 *len_change = new_len - old_len;
4669
4670 return OK;
4671 }
4672 else
4673 {
4674 PyErr_BadArgument();
4675 return FAIL;
4676 }
4677}
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004678
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004679/*
4680 * Insert a number of lines into the specified buffer after the specified line.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004681 * The line number is in Vim format (1-based). The lines to be inserted are
4682 * given as a Python list of string objects or as a single string. The lines
4683 * to be added are checked for validity and correct format. Errors are
4684 * returned as a value of FAIL. The return value is OK on success.
4685 * If OK is returned and len_change is not NULL, *len_change
4686 * is set to the change in the buffer length.
4687 */
4688 static int
4689InsertBufferLines(buf_T *buf, PyInt n, PyObject *lines, PyInt *len_change)
4690{
Bram Moolenaar45e5fd12017-06-04 14:58:02 +02004691 bufref_T save_curbuf = {NULL, 0, 0};
Bram Moolenaar95064ec2013-07-17 17:15:25 +02004692 win_T *save_curwin = NULL;
Bram Moolenaar95064ec2013-07-17 17:15:25 +02004693 tabpage_T *save_curtab = NULL;
4694
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004695 // First of all, we check the type of the supplied Python object.
4696 // It must be a string or a list, or the call is in error.
Bram Moolenaar808c2bc2013-06-23 13:11:18 +02004697 if (PyBytes_Check(lines) || PyUnicode_Check(lines))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004698 {
Bram Moolenaar95064ec2013-07-17 17:15:25 +02004699 char *str = StringToLine(lines);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004700
4701 if (str == NULL)
4702 return FAIL;
4703
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004704 PyErr_Clear();
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004705 VimTryStart();
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004706 switch_to_win_for_buf(buf, &save_curwin, &save_curtab, &save_curbuf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004707
Bram Moolenaar95064ec2013-07-17 17:15:25 +02004708 if (u_save((linenr_T)n, (linenr_T)(n + 1)) == FAIL)
Bram Moolenaarc476e522013-06-23 13:46:40 +02004709 RAISE_UNDO_FAIL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004710 else if (ml_append((linenr_T)n, (char_u *)str, 0, FALSE) == FAIL)
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004711 RAISE_INSERT_LINE_FAIL;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004712 else if (save_curbuf.br_buf == NULL)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004713 // Only adjust marks if we managed to switch to a window that
4714 // holds the buffer, otherwise line numbers will be invalid.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004715 appended_lines_mark((linenr_T)n, 1L);
4716
4717 vim_free(str);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004718 restore_win_for_buf(save_curwin, save_curtab, &save_curbuf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004719 update_screen(VALID);
4720
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004721 if (VimTryEnd())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004722 return FAIL;
4723
4724 if (len_change)
4725 *len_change = 1;
4726
4727 return OK;
4728 }
4729 else if (PyList_Check(lines))
4730 {
4731 PyInt i;
4732 PyInt size = PyList_Size(lines);
4733 char **array;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004734
Bram Moolenaare9ba5162013-05-29 22:02:22 +02004735 array = PyMem_New(char *, size);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004736 if (array == NULL)
4737 {
4738 PyErr_NoMemory();
4739 return FAIL;
4740 }
4741
4742 for (i = 0; i < size; ++i)
4743 {
Bram Moolenaar494ff7e2013-05-30 13:17:17 +02004744 PyObject *line;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004745
Bram Moolenaar494ff7e2013-05-30 13:17:17 +02004746 if (!(line = PyList_GetItem(lines, i)) ||
4747 !(array[i] = StringToLine(line)))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004748 {
4749 while (i)
4750 vim_free(array[--i]);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02004751 PyMem_Free(array);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004752 return FAIL;
4753 }
4754 }
4755
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004756 PyErr_Clear();
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004757 VimTryStart();
Bram Moolenaaraf003f62013-07-24 17:11:46 +02004758 switch_to_win_for_buf(buf, &save_curwin, &save_curtab, &save_curbuf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004759
4760 if (u_save((linenr_T)n, (linenr_T)(n + 1)) == FAIL)
Bram Moolenaarc476e522013-06-23 13:46:40 +02004761 RAISE_UNDO_FAIL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004762 else
4763 {
4764 for (i = 0; i < size; ++i)
4765 {
4766 if (ml_append((linenr_T)(n + i),
4767 (char_u *)array[i], 0, FALSE) == FAIL)
4768 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004769 RAISE_INSERT_LINE_FAIL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004770
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004771 // Free the rest of the lines
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004772 while (i < size)
4773 vim_free(array[i++]);
4774
4775 break;
4776 }
4777 vim_free(array[i]);
4778 }
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004779 if (i > 0 && save_curbuf.br_buf == NULL)
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004780 // Only adjust marks if we managed to switch to a window that
4781 // holds the buffer, otherwise line numbers will be invalid.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004782 appended_lines_mark((linenr_T)n, (long)i);
4783 }
4784
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004785 // Free the array of lines. All of its contents have now
4786 // been freed.
Bram Moolenaare9ba5162013-05-29 22:02:22 +02004787 PyMem_Free(array);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02004788 restore_win_for_buf(save_curwin, save_curtab, &save_curbuf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004789
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004790 update_screen(VALID);
4791
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02004792 if (VimTryEnd())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004793 return FAIL;
4794
4795 if (len_change)
4796 *len_change = size;
4797
4798 return OK;
4799 }
4800 else
4801 {
4802 PyErr_BadArgument();
4803 return FAIL;
4804 }
4805}
4806
4807/*
4808 * Common routines for buffers and line ranges
4809 * -------------------------------------------
4810 */
4811
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02004812typedef struct
4813{
4814 PyObject_HEAD
4815 buf_T *buf;
4816} BufferObject;
4817
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004818 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02004819CheckBuffer(BufferObject *self)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004820{
Bram Moolenaard6e39182013-05-21 18:30:34 +02004821 if (self->buf == INVALID_BUFFER_VALUE)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004822 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004823 PyErr_SET_VIM(N_("attempt to refer to deleted buffer"));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004824 return -1;
4825 }
4826
4827 return 0;
4828}
4829
4830 static PyObject *
4831RBItem(BufferObject *self, PyInt n, PyInt start, PyInt end)
4832{
4833 if (CheckBuffer(self))
4834 return NULL;
4835
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02004836 if (end == -1)
4837 end = self->buf->b_ml.ml_line_count;
4838
Bram Moolenaarbd80f352013-05-12 21:16:23 +02004839 if (n < 0)
4840 n += end - start + 1;
4841
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004842 if (n < 0 || n > end - start)
4843 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004844 PyErr_SET_STRING(PyExc_IndexError, N_("line number out of range"));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004845 return NULL;
4846 }
4847
4848 return GetBufferLine(self->buf, n+start);
4849}
4850
4851 static PyObject *
4852RBSlice(BufferObject *self, PyInt lo, PyInt hi, PyInt start, PyInt end)
4853{
4854 PyInt size;
4855
4856 if (CheckBuffer(self))
4857 return NULL;
4858
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02004859 if (end == -1)
4860 end = self->buf->b_ml.ml_line_count;
4861
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004862 size = end - start + 1;
4863
4864 if (lo < 0)
4865 lo = 0;
4866 else if (lo > size)
4867 lo = size;
4868 if (hi < 0)
4869 hi = 0;
4870 if (hi < lo)
4871 hi = lo;
4872 else if (hi > size)
4873 hi = size;
4874
4875 return GetBufferLineList(self->buf, lo+start, hi+start);
4876}
4877
4878 static PyInt
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004879RBAsItem(
4880 BufferObject *self,
4881 PyInt n,
4882 PyObject *valObject,
4883 PyInt start,
4884 PyInt end,
4885 PyInt *new_end)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004886{
4887 PyInt len_change;
4888
4889 if (CheckBuffer(self))
4890 return -1;
4891
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02004892 if (end == -1)
4893 end = self->buf->b_ml.ml_line_count;
4894
Bram Moolenaarbd80f352013-05-12 21:16:23 +02004895 if (n < 0)
4896 n += end - start + 1;
4897
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004898 if (n < 0 || n > end - start)
4899 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004900 PyErr_SET_STRING(PyExc_IndexError, N_("line number out of range"));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004901 return -1;
4902 }
4903
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004904 if (SetBufferLine(self->buf, n+start, valObject, &len_change) == FAIL)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004905 return -1;
4906
4907 if (new_end)
4908 *new_end = end + len_change;
4909
4910 return 0;
4911}
4912
Bram Moolenaar19e60942011-06-19 00:27:51 +02004913 static PyInt
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004914RBAsSlice(
4915 BufferObject *self,
4916 PyInt lo,
4917 PyInt hi,
4918 PyObject *valObject,
4919 PyInt start,
4920 PyInt end,
4921 PyInt *new_end)
Bram Moolenaar19e60942011-06-19 00:27:51 +02004922{
4923 PyInt size;
4924 PyInt len_change;
4925
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004926 // Self must be a valid buffer
Bram Moolenaar19e60942011-06-19 00:27:51 +02004927 if (CheckBuffer(self))
4928 return -1;
4929
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02004930 if (end == -1)
4931 end = self->buf->b_ml.ml_line_count;
4932
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004933 // Sort out the slice range
Bram Moolenaar19e60942011-06-19 00:27:51 +02004934 size = end - start + 1;
4935
4936 if (lo < 0)
4937 lo = 0;
4938 else if (lo > size)
4939 lo = size;
4940 if (hi < 0)
4941 hi = 0;
4942 if (hi < lo)
4943 hi = lo;
4944 else if (hi > size)
4945 hi = size;
4946
4947 if (SetBufferLineList(self->buf, lo + start, hi + start,
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004948 valObject, &len_change) == FAIL)
Bram Moolenaar19e60942011-06-19 00:27:51 +02004949 return -1;
4950
4951 if (new_end)
4952 *new_end = end + len_change;
4953
4954 return 0;
4955}
4956
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004957
4958 static PyObject *
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02004959RBAppend(
4960 BufferObject *self,
4961 PyObject *args,
4962 PyInt start,
4963 PyInt end,
4964 PyInt *new_end)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004965{
4966 PyObject *lines;
4967 PyInt len_change;
4968 PyInt max;
4969 PyInt n;
4970
4971 if (CheckBuffer(self))
4972 return NULL;
4973
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02004974 if (end == -1)
4975 end = self->buf->b_ml.ml_line_count;
4976
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004977 max = n = end - start + 1;
4978
4979 if (!PyArg_ParseTuple(args, "O|n", &lines, &n))
4980 return NULL;
4981
4982 if (n < 0 || n > max)
4983 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02004984 PyErr_SET_STRING(PyExc_IndexError, N_("line number out of range"));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004985 return NULL;
4986 }
4987
4988 if (InsertBufferLines(self->buf, n + start - 1, lines, &len_change) == FAIL)
4989 return NULL;
4990
4991 if (new_end)
4992 *new_end = end + len_change;
4993
4994 Py_INCREF(Py_None);
4995 return Py_None;
4996}
4997
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01004998// Range object
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02004999
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005000static PyTypeObject RangeType;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005001static PySequenceMethods RangeAsSeq;
5002static PyMappingMethods RangeAsMapping;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005003
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005004typedef struct
5005{
5006 PyObject_HEAD
5007 BufferObject *buf;
5008 PyInt start;
5009 PyInt end;
5010} RangeObject;
5011
5012 static PyObject *
5013RangeNew(buf_T *buf, PyInt start, PyInt end)
5014{
5015 BufferObject *bufr;
5016 RangeObject *self;
Bram Moolenaar774267b2013-05-21 20:51:59 +02005017 self = PyObject_GC_New(RangeObject, &RangeType);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005018 if (self == NULL)
5019 return NULL;
5020
5021 bufr = (BufferObject *)BufferNew(buf);
5022 if (bufr == NULL)
5023 {
5024 Py_DECREF(self);
5025 return NULL;
5026 }
5027 Py_INCREF(bufr);
5028
5029 self->buf = bufr;
5030 self->start = start;
5031 self->end = end;
5032
5033 return (PyObject *)(self);
5034}
5035
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005036 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02005037RangeDestructor(RangeObject *self)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005038{
Bram Moolenaar774267b2013-05-21 20:51:59 +02005039 PyObject_GC_UnTrack((void *)(self));
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005040 Py_XDECREF(self->buf);
Bram Moolenaar774267b2013-05-21 20:51:59 +02005041 PyObject_GC_Del((void *)(self));
5042}
5043
5044 static int
5045RangeTraverse(RangeObject *self, visitproc visit, void *arg)
5046{
5047 Py_VISIT(((PyObject *)(self->buf)));
5048 return 0;
5049}
5050
5051 static int
5052RangeClear(RangeObject *self)
5053{
5054 Py_CLEAR(self->buf);
5055 return 0;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005056}
5057
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005058 static PyInt
Bram Moolenaard6e39182013-05-21 18:30:34 +02005059RangeLength(RangeObject *self)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005060{
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005061 // HOW DO WE SIGNAL AN ERROR FROM THIS FUNCTION?
Bram Moolenaard6e39182013-05-21 18:30:34 +02005062 if (CheckBuffer(self->buf))
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005063 return -1; // ???
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005064
Bram Moolenaard6e39182013-05-21 18:30:34 +02005065 return (self->end - self->start + 1);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005066}
5067
5068 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02005069RangeItem(RangeObject *self, PyInt n)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005070{
Bram Moolenaard6e39182013-05-21 18:30:34 +02005071 return RBItem(self->buf, n, self->start, self->end);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005072}
5073
5074 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02005075RangeSlice(RangeObject *self, PyInt lo, PyInt hi)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005076{
Bram Moolenaard6e39182013-05-21 18:30:34 +02005077 return RBSlice(self->buf, lo, hi, self->start, self->end);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005078}
5079
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005080static char *RangeAttrs[] = {
5081 "start", "end",
5082 NULL
5083};
5084
5085 static PyObject *
5086RangeDir(PyObject *self)
5087{
5088 return ObjectDir(self, RangeAttrs);
5089}
5090
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005091 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02005092RangeAppend(RangeObject *self, PyObject *args)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005093{
Bram Moolenaard6e39182013-05-21 18:30:34 +02005094 return RBAppend(self->buf, args, self->start, self->end, &self->end);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005095}
5096
5097 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02005098RangeRepr(RangeObject *self)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005099{
Bram Moolenaard6e39182013-05-21 18:30:34 +02005100 if (self->buf->buf == INVALID_BUFFER_VALUE)
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02005101 return PyString_FromFormat("<range object (for deleted buffer) at %p>",
5102 (self));
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005103 else
5104 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02005105 char *name = (char *)self->buf->buf->b_fname;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005106
5107 if (name == NULL)
5108 name = "";
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005109
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02005110 return PyString_FromFormat("<range %s (%d:%d)>",
Bram Moolenaarf62d9422013-05-30 19:01:24 +02005111 name, (int)self->start, (int)self->end);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005112 }
5113}
5114
5115static struct PyMethodDef RangeMethods[] = {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005116 // name, function, calling, documentation
Bram Moolenaar182dc4f2013-05-21 19:01:55 +02005117 {"append", (PyCFunction)RangeAppend, METH_VARARGS, "Append data to the Vim range" },
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005118 {"__dir__", (PyCFunction)RangeDir, METH_NOARGS, ""},
5119 { NULL, NULL, 0, NULL}
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005120};
5121
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005122static PyTypeObject BufferType;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005123static PySequenceMethods BufferAsSeq;
5124static PyMappingMethods BufferAsMapping;
5125
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005126 static PyObject *
Bram Moolenaar971db462013-05-12 18:44:48 +02005127BufferNew(buf_T *buf)
5128{
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005129 /*
5130 * We need to handle deletion of buffers underneath us.
Bram Moolenaar971db462013-05-12 18:44:48 +02005131 * If we add a "b_python*_ref" field to the buf_T structure,
5132 * then we can get at it in buf_freeall() in vim. We then
5133 * need to create only ONE Python object per buffer - if
5134 * we try to create a second, just INCREF the existing one
5135 * and return it. The (single) Python object referring to
5136 * the buffer is stored in "b_python*_ref".
5137 * Question: what to do on a buf_freeall(). We'll probably
5138 * have to either delete the Python object (DECREF it to
5139 * zero - a bad idea, as it leaves dangling refs!) or
5140 * set the buf_T * value to an invalid value (-1?), which
5141 * means we need checks in all access functions... Bah.
5142 *
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005143 * Python2 and Python3 get different fields and different objects:
Bram Moolenaar971db462013-05-12 18:44:48 +02005144 * b_python_ref and b_python3_ref fields respectively.
5145 */
5146
5147 BufferObject *self;
5148
5149 if (BUF_PYTHON_REF(buf) != NULL)
5150 {
5151 self = BUF_PYTHON_REF(buf);
5152 Py_INCREF(self);
5153 }
5154 else
5155 {
5156 self = PyObject_NEW(BufferObject, &BufferType);
5157 if (self == NULL)
5158 return NULL;
5159 self->buf = buf;
5160 BUF_PYTHON_REF(buf) = self;
5161 }
5162
5163 return (PyObject *)(self);
5164}
5165
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005166 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02005167BufferDestructor(BufferObject *self)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005168{
Bram Moolenaard6e39182013-05-21 18:30:34 +02005169 if (self->buf && self->buf != INVALID_BUFFER_VALUE)
5170 BUF_PYTHON_REF(self->buf) = NULL;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005171
5172 DESTRUCTOR_FINISH(self);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005173}
5174
Bram Moolenaar971db462013-05-12 18:44:48 +02005175 static PyInt
Bram Moolenaard6e39182013-05-21 18:30:34 +02005176BufferLength(BufferObject *self)
Bram Moolenaar971db462013-05-12 18:44:48 +02005177{
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005178 // HOW DO WE SIGNAL AN ERROR FROM THIS FUNCTION?
Bram Moolenaard6e39182013-05-21 18:30:34 +02005179 if (CheckBuffer(self))
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005180 return -1; // ???
Bram Moolenaar971db462013-05-12 18:44:48 +02005181
Bram Moolenaard6e39182013-05-21 18:30:34 +02005182 return (PyInt)(self->buf->b_ml.ml_line_count);
Bram Moolenaar971db462013-05-12 18:44:48 +02005183}
5184
5185 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02005186BufferItem(BufferObject *self, PyInt n)
Bram Moolenaar971db462013-05-12 18:44:48 +02005187{
Bram Moolenaard6e39182013-05-21 18:30:34 +02005188 return RBItem(self, n, 1, -1);
Bram Moolenaar971db462013-05-12 18:44:48 +02005189}
5190
5191 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02005192BufferSlice(BufferObject *self, PyInt lo, PyInt hi)
Bram Moolenaar971db462013-05-12 18:44:48 +02005193{
Bram Moolenaard6e39182013-05-21 18:30:34 +02005194 return RBSlice(self, lo, hi, 1, -1);
Bram Moolenaar971db462013-05-12 18:44:48 +02005195}
5196
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005197static char *BufferAttrs[] = {
5198 "name", "number", "vars", "options", "valid",
5199 NULL
5200};
5201
5202 static PyObject *
5203BufferDir(PyObject *self)
5204{
5205 return ObjectDir(self, BufferAttrs);
5206}
5207
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005208 static PyObject *
Bram Moolenaar9e822c02013-05-29 22:15:30 +02005209BufferAttrValid(BufferObject *self, char *name)
5210{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005211 PyObject *ret;
Bram Moolenaar9e822c02013-05-29 22:15:30 +02005212
5213 if (strcmp(name, "valid") != 0)
5214 return NULL;
5215
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005216 ret = ((self->buf == INVALID_BUFFER_VALUE) ? Py_False : Py_True);
5217 Py_INCREF(ret);
5218 return ret;
Bram Moolenaar9e822c02013-05-29 22:15:30 +02005219}
5220
5221 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02005222BufferAttr(BufferObject *self, char *name)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005223{
5224 if (strcmp(name, "name") == 0)
Bram Moolenaar432b09c2013-05-29 22:26:18 +02005225 return PyString_FromString((self->buf->b_ffname == NULL
Bram Moolenaar41009372013-07-01 22:03:04 +02005226 ? "" : (char *)self->buf->b_ffname));
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005227 else if (strcmp(name, "number") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02005228 return Py_BuildValue(Py_ssize_t_fmt, self->buf->b_fnum);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005229 else if (strcmp(name, "vars") == 0)
Bram Moolenaara9922d62013-05-30 13:01:18 +02005230 return NEW_DICTIONARY(self->buf->b_vars);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005231 else if (strcmp(name, "options") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02005232 return OptionsNew(SREQ_BUF, self->buf, (checkfun) CheckBuffer,
5233 (PyObject *) self);
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005234 else if (strcmp(name, "__members__") == 0)
5235 return ObjectDir(NULL, BufferAttrs);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005236 else
5237 return NULL;
5238}
5239
Bram Moolenaare9ba5162013-05-29 22:02:22 +02005240 static int
5241BufferSetattr(BufferObject *self, char *name, PyObject *valObject)
5242{
5243 if (CheckBuffer(self))
5244 return -1;
5245
5246 if (strcmp(name, "name") == 0)
5247 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005248 char_u *val;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02005249 aco_save_T aco;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005250 int ren_ret;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02005251 PyObject *todecref;
5252
5253 if (!(val = StringToChars(valObject, &todecref)))
5254 return -1;
5255
5256 VimTryStart();
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005257 // Using aucmd_*: autocommands will be executed by rename_buffer
Bram Moolenaare9ba5162013-05-29 22:02:22 +02005258 aucmd_prepbuf(&aco, self->buf);
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005259 ren_ret = rename_buffer(val);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02005260 aucmd_restbuf(&aco);
5261 Py_XDECREF(todecref);
5262 if (VimTryEnd())
5263 return -1;
5264
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005265 if (ren_ret == FAIL)
Bram Moolenaare9ba5162013-05-29 22:02:22 +02005266 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02005267 PyErr_SET_VIM(N_("failed to rename buffer"));
Bram Moolenaare9ba5162013-05-29 22:02:22 +02005268 return -1;
5269 }
5270 return 0;
5271 }
5272 else
5273 {
5274 PyErr_SetString(PyExc_AttributeError, name);
5275 return -1;
5276 }
5277}
5278
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005279 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02005280BufferAppend(BufferObject *self, PyObject *args)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005281{
Bram Moolenaard6e39182013-05-21 18:30:34 +02005282 return RBAppend(self, args, 1, -1, NULL);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005283}
5284
5285 static PyObject *
Bram Moolenaar389a1792013-06-23 13:00:44 +02005286BufferMark(BufferObject *self, PyObject *pmarkObject)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005287{
5288 pos_T *posp;
Bram Moolenaar389a1792013-06-23 13:00:44 +02005289 char_u *pmark;
5290 char_u mark;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02005291 bufref_T savebuf;
Bram Moolenaar389a1792013-06-23 13:00:44 +02005292 PyObject *todecref;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005293
Bram Moolenaard6e39182013-05-21 18:30:34 +02005294 if (CheckBuffer(self))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005295 return NULL;
5296
Bram Moolenaar389a1792013-06-23 13:00:44 +02005297 if (!(pmark = StringToChars(pmarkObject, &todecref)))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005298 return NULL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005299
Bram Moolenaar389a1792013-06-23 13:00:44 +02005300 if (pmark[0] == '\0' || pmark[1] != '\0')
Bram Moolenaar494ff7e2013-05-30 13:17:17 +02005301 {
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +02005302 PyErr_SET_STRING(PyExc_ValueError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02005303 N_("mark name must be a single character"));
Bram Moolenaar841fbd22013-06-23 14:37:07 +02005304 Py_XDECREF(todecref);
Bram Moolenaar494ff7e2013-05-30 13:17:17 +02005305 return NULL;
5306 }
5307
5308 mark = *pmark;
Bram Moolenaar389a1792013-06-23 13:00:44 +02005309
5310 Py_XDECREF(todecref);
5311
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005312 VimTryStart();
Bram Moolenaard6e39182013-05-21 18:30:34 +02005313 switch_buffer(&savebuf, self->buf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005314 posp = getmark(mark, FALSE);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02005315 restore_buffer(&savebuf);
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005316 if (VimTryEnd())
5317 return NULL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005318
5319 if (posp == NULL)
5320 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02005321 PyErr_SET_VIM(N_("invalid mark name"));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005322 return NULL;
5323 }
5324
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005325 if (posp->lnum <= 0)
5326 {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005327 // Or raise an error?
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005328 Py_INCREF(Py_None);
5329 return Py_None;
5330 }
5331
5332 return Py_BuildValue("(ll)", (long)(posp->lnum), (long)(posp->col));
5333}
5334
5335 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02005336BufferRange(BufferObject *self, PyObject *args)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005337{
5338 PyInt start;
5339 PyInt end;
5340
Bram Moolenaard6e39182013-05-21 18:30:34 +02005341 if (CheckBuffer(self))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005342 return NULL;
5343
5344 if (!PyArg_ParseTuple(args, "nn", &start, &end))
5345 return NULL;
5346
Bram Moolenaard6e39182013-05-21 18:30:34 +02005347 return RangeNew(self->buf, start, end);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005348}
5349
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005350 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02005351BufferRepr(BufferObject *self)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005352{
Bram Moolenaard6e39182013-05-21 18:30:34 +02005353 if (self->buf == INVALID_BUFFER_VALUE)
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02005354 return PyString_FromFormat("<buffer object (deleted) at %p>", self);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005355 else
5356 {
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02005357 char *name = (char *)self->buf->b_fname;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005358
5359 if (name == NULL)
5360 name = "";
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005361
Bram Moolenaar1a3b5692013-05-30 12:40:39 +02005362 return PyString_FromFormat("<buffer %s>", name);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005363 }
5364}
5365
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005366static struct PyMethodDef BufferMethods[] = {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005367 // name, function, calling, documentation
Bram Moolenaar182dc4f2013-05-21 19:01:55 +02005368 {"append", (PyCFunction)BufferAppend, METH_VARARGS, "Append data to Vim buffer" },
Bram Moolenaar389a1792013-06-23 13:00:44 +02005369 {"mark", (PyCFunction)BufferMark, METH_O, "Return (row,col) representing position of named mark" },
Bram Moolenaar182dc4f2013-05-21 19:01:55 +02005370 {"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 +02005371 {"__dir__", (PyCFunction)BufferDir, METH_NOARGS, ""},
5372 { NULL, NULL, 0, NULL}
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005373};
5374
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005375/*
5376 * Buffer list object - Implementation
5377 */
5378
5379static PyTypeObject BufMapType;
5380
5381typedef struct
5382{
5383 PyObject_HEAD
5384} BufMapObject;
5385
5386 static PyInt
5387BufMapLength(PyObject *self UNUSED)
5388{
5389 buf_T *b = firstbuf;
5390 PyInt n = 0;
5391
5392 while (b)
5393 {
5394 ++n;
5395 b = b->b_next;
5396 }
5397
5398 return n;
5399}
5400
5401 static PyObject *
5402BufMapItem(PyObject *self UNUSED, PyObject *keyObject)
5403{
5404 buf_T *b;
Bram Moolenaar141be8a2013-06-23 14:16:57 +02005405 long bnr;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005406
Bram Moolenaar141be8a2013-06-23 14:16:57 +02005407 if (NumberToLong(keyObject, &bnr, NUMBER_INT|NUMBER_NATURAL))
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005408 return NULL;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005409
Bram Moolenaar141be8a2013-06-23 14:16:57 +02005410 b = buflist_findnr((int) bnr);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005411
5412 if (b)
5413 return BufferNew(b);
5414 else
5415 {
Bram Moolenaar4d188da2013-05-15 15:35:09 +02005416 PyErr_SetObject(PyExc_KeyError, keyObject);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005417 return NULL;
5418 }
5419}
5420
5421 static void
5422BufMapIterDestruct(PyObject *buffer)
5423{
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005424 // Iteration was stopped before all buffers were processed
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005425 if (buffer)
5426 {
5427 Py_DECREF(buffer);
5428 }
5429}
5430
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02005431 static int
5432BufMapIterTraverse(PyObject *buffer, visitproc visit, void *arg)
5433{
Bram Moolenaar774267b2013-05-21 20:51:59 +02005434 if (buffer)
5435 Py_VISIT(buffer);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02005436 return 0;
5437}
5438
5439 static int
5440BufMapIterClear(PyObject **buffer)
5441{
Bram Moolenaar774267b2013-05-21 20:51:59 +02005442 if (*buffer)
5443 Py_CLEAR(*buffer);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02005444 return 0;
5445}
5446
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005447 static PyObject *
5448BufMapIterNext(PyObject **buffer)
5449{
5450 PyObject *next;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005451 PyObject *ret;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005452
5453 if (!*buffer)
5454 return NULL;
5455
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005456 ret = *buffer;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005457
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005458 if (CheckBuffer((BufferObject *)(ret)))
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005459 {
5460 *buffer = NULL;
5461 return NULL;
5462 }
5463
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005464 if (!((BufferObject *)(ret))->buf->b_next)
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005465 next = NULL;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005466 else if (!(next = BufferNew(((BufferObject *)(ret))->buf->b_next)))
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005467 return NULL;
5468 *buffer = next;
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005469 // Do not increment reference: we no longer hold it (decref), but whoever
5470 // on other side will hold (incref). Decref+incref = nothing.
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005471 return ret;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005472}
5473
5474 static PyObject *
5475BufMapIter(PyObject *self UNUSED)
5476{
5477 PyObject *buffer;
5478
5479 buffer = BufferNew(firstbuf);
5480 return IterNew(buffer,
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02005481 (destructorfun) BufMapIterDestruct, (nextfun) BufMapIterNext,
5482 (traversefun) BufMapIterTraverse, (clearfun) BufMapIterClear);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02005483}
5484
5485static PyMappingMethods BufMapAsMapping = {
5486 (lenfunc) BufMapLength,
5487 (binaryfunc) BufMapItem,
5488 (objobjargproc) 0,
5489};
5490
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005491// Current items object
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02005492
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005493static char *CurrentAttrs[] = {
5494 "buffer", "window", "line", "range", "tabpage",
5495 NULL
5496};
5497
5498 static PyObject *
5499CurrentDir(PyObject *self)
5500{
5501 return ObjectDir(self, CurrentAttrs);
5502}
5503
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005504 static PyObject *
5505CurrentGetattr(PyObject *self UNUSED, char *name)
5506{
5507 if (strcmp(name, "buffer") == 0)
5508 return (PyObject *)BufferNew(curbuf);
5509 else if (strcmp(name, "window") == 0)
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02005510 return (PyObject *)WindowNew(curwin, curtab);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02005511 else if (strcmp(name, "tabpage") == 0)
5512 return (PyObject *)TabPageNew(curtab);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005513 else if (strcmp(name, "line") == 0)
5514 return GetBufferLine(curbuf, (PyInt)curwin->w_cursor.lnum);
5515 else if (strcmp(name, "range") == 0)
5516 return RangeNew(curbuf, RangeStart, RangeEnd);
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005517 else if (strcmp(name, "__members__") == 0)
5518 return ObjectDir(NULL, CurrentAttrs);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005519 else
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005520#if PY_MAJOR_VERSION < 3
5521 return Py_FindMethod(WindowMethods, self, name);
5522#else
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005523 return NULL;
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005524#endif
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005525}
5526
5527 static int
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005528CurrentSetattr(PyObject *self UNUSED, char *name, PyObject *valObject)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005529{
5530 if (strcmp(name, "line") == 0)
5531 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005532 if (SetBufferLine(curbuf, (PyInt)curwin->w_cursor.lnum, valObject,
5533 NULL) == FAIL)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005534 return -1;
5535
5536 return 0;
5537 }
Bram Moolenaare7614592013-05-15 15:51:08 +02005538 else if (strcmp(name, "buffer") == 0)
5539 {
5540 int count;
5541
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005542 if (valObject->ob_type != &BufferType)
Bram Moolenaare7614592013-05-15 15:51:08 +02005543 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02005544 PyErr_FORMAT(PyExc_TypeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02005545 N_("expected vim.Buffer object, but got %s"),
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005546 Py_TYPE_NAME(valObject));
Bram Moolenaare7614592013-05-15 15:51:08 +02005547 return -1;
5548 }
5549
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005550 if (CheckBuffer((BufferObject *)(valObject)))
Bram Moolenaare7614592013-05-15 15:51:08 +02005551 return -1;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005552 count = ((BufferObject *)(valObject))->buf->b_fnum;
Bram Moolenaare7614592013-05-15 15:51:08 +02005553
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005554 VimTryStart();
Bram Moolenaare7614592013-05-15 15:51:08 +02005555 if (do_buffer(DOBUF_GOTO, DOBUF_FIRST, FORWARD, count, 0) == FAIL)
5556 {
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005557 if (VimTryEnd())
5558 return -1;
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02005559 PyErr_VIM_FORMAT(N_("failed to switch to buffer %d"), count);
Bram Moolenaare7614592013-05-15 15:51:08 +02005560 return -1;
5561 }
5562
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005563 return VimTryEnd();
Bram Moolenaare7614592013-05-15 15:51:08 +02005564 }
5565 else if (strcmp(name, "window") == 0)
5566 {
5567 int count;
5568
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005569 if (valObject->ob_type != &WindowType)
Bram Moolenaare7614592013-05-15 15:51:08 +02005570 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02005571 PyErr_FORMAT(PyExc_TypeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02005572 N_("expected vim.Window object, but got %s"),
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005573 Py_TYPE_NAME(valObject));
Bram Moolenaare7614592013-05-15 15:51:08 +02005574 return -1;
5575 }
5576
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005577 if (CheckWindow((WindowObject *)(valObject)))
Bram Moolenaare7614592013-05-15 15:51:08 +02005578 return -1;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005579 count = get_win_number(((WindowObject *)(valObject))->win, firstwin);
Bram Moolenaare7614592013-05-15 15:51:08 +02005580
5581 if (!count)
5582 {
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +02005583 PyErr_SET_STRING(PyExc_ValueError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02005584 N_("failed to find window in the current tab page"));
Bram Moolenaare7614592013-05-15 15:51:08 +02005585 return -1;
5586 }
5587
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005588 VimTryStart();
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005589 win_goto(((WindowObject *)(valObject))->win);
5590 if (((WindowObject *)(valObject))->win != curwin)
Bram Moolenaare7614592013-05-15 15:51:08 +02005591 {
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005592 if (VimTryEnd())
5593 return -1;
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +02005594 PyErr_SET_STRING(PyExc_RuntimeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02005595 N_("did not switch to the specified window"));
Bram Moolenaare7614592013-05-15 15:51:08 +02005596 return -1;
5597 }
5598
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005599 return VimTryEnd();
Bram Moolenaare7614592013-05-15 15:51:08 +02005600 }
5601 else if (strcmp(name, "tabpage") == 0)
5602 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005603 if (valObject->ob_type != &TabPageType)
Bram Moolenaare7614592013-05-15 15:51:08 +02005604 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02005605 PyErr_FORMAT(PyExc_TypeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02005606 N_("expected vim.TabPage object, but got %s"),
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005607 Py_TYPE_NAME(valObject));
Bram Moolenaare7614592013-05-15 15:51:08 +02005608 return -1;
5609 }
5610
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005611 if (CheckTabPage((TabPageObject *)(valObject)))
Bram Moolenaare7614592013-05-15 15:51:08 +02005612 return -1;
5613
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005614 VimTryStart();
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005615 goto_tabpage_tp(((TabPageObject *)(valObject))->tab, TRUE, TRUE);
5616 if (((TabPageObject *)(valObject))->tab != curtab)
Bram Moolenaare7614592013-05-15 15:51:08 +02005617 {
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005618 if (VimTryEnd())
5619 return -1;
Bram Moolenaar0bd80cc2013-06-23 13:28:17 +02005620 PyErr_SET_STRING(PyExc_RuntimeError,
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02005621 N_("did not switch to the specified tab page"));
Bram Moolenaare7614592013-05-15 15:51:08 +02005622 return -1;
5623 }
5624
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02005625 return VimTryEnd();
Bram Moolenaare7614592013-05-15 15:51:08 +02005626 }
Bram Moolenaar4d1da492013-04-24 13:39:15 +02005627 else
5628 {
5629 PyErr_SetString(PyExc_AttributeError, name);
5630 return -1;
5631 }
5632}
5633
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005634static struct PyMethodDef CurrentMethods[] = {
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005635 // name, function, calling, documentation
Bram Moolenaardd8aca62013-05-29 22:36:10 +02005636 {"__dir__", (PyCFunction)CurrentDir, METH_NOARGS, ""},
5637 { NULL, NULL, 0, NULL}
5638};
5639
Bram Moolenaardb913952012-06-29 12:54:53 +02005640 static void
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005641init_range_cmd(exarg_T *eap)
5642{
5643 RangeStart = eap->line1;
5644 RangeEnd = eap->line2;
5645}
5646
5647 static void
5648init_range_eval(typval_T *rettv UNUSED)
5649{
5650 RangeStart = (PyInt) curwin->w_cursor.lnum;
5651 RangeEnd = RangeStart;
5652}
5653
5654 static void
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005655run_cmd(const char *cmd, void *arg UNUSED
5656#ifdef PY_CAN_RECURSE
5657 , PyGILState_STATE *pygilstate UNUSED
5658#endif
5659 )
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005660{
Bram Moolenaar41009372013-07-01 22:03:04 +02005661 PyObject *run_ret;
5662 run_ret = PyRun_String((char *)cmd, Py_file_input, globals, globals);
5663 if (run_ret != NULL)
5664 {
5665 Py_DECREF(run_ret);
5666 }
5667 else if (PyErr_Occurred() && PyErr_ExceptionMatches(PyExc_SystemExit))
5668 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005669 semsg(_(e_py_systemexit), "python");
Bram Moolenaar41009372013-07-01 22:03:04 +02005670 PyErr_Clear();
5671 }
5672 else
5673 PyErr_PrintEx(1);
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005674}
5675
5676static const char *code_hdr = "def " DOPY_FUNC "(line, linenr):\n ";
5677static int code_hdr_len = 30;
5678
5679 static void
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005680run_do(const char *cmd, void *arg UNUSED
5681#ifdef PY_CAN_RECURSE
5682 , PyGILState_STATE *pygilstate
5683#endif
5684 )
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005685{
5686 PyInt lnum;
5687 size_t len;
5688 char *code;
5689 int status;
5690 PyObject *pyfunc, *pymain;
Bram Moolenaar41009372013-07-01 22:03:04 +02005691 PyObject *run_ret;
Bram Moolenaara58883b2017-01-29 21:31:09 +01005692 buf_T *was_curbuf = curbuf;
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005693
Bram Moolenaar4ac66762013-05-28 22:31:46 +02005694 if (u_save((linenr_T)RangeStart - 1, (linenr_T)RangeEnd + 1) != OK)
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005695 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005696 emsg(_("cannot save undo information"));
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005697 return;
5698 }
5699
5700 len = code_hdr_len + STRLEN(cmd);
5701 code = PyMem_New(char, len + 1);
5702 memcpy(code, code_hdr, code_hdr_len);
5703 STRCPY(code + code_hdr_len, cmd);
Bram Moolenaar41009372013-07-01 22:03:04 +02005704 run_ret = PyRun_String(code, Py_file_input, globals, globals);
5705 status = -1;
5706 if (run_ret != NULL)
5707 {
5708 status = 0;
5709 Py_DECREF(run_ret);
5710 }
5711 else if (PyErr_Occurred() && PyErr_ExceptionMatches(PyExc_SystemExit))
5712 {
5713 PyMem_Free(code);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005714 semsg(_(e_py_systemexit), "python");
Bram Moolenaar41009372013-07-01 22:03:04 +02005715 PyErr_Clear();
5716 return;
5717 }
5718 else
5719 PyErr_PrintEx(1);
5720
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005721 PyMem_Free(code);
5722
5723 if (status)
5724 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005725 emsg(_("failed to run the code"));
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005726 return;
5727 }
5728
5729 status = 0;
5730 pymain = PyImport_AddModule("__main__");
5731 pyfunc = PyObject_GetAttrString(pymain, DOPY_FUNC);
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005732#ifdef PY_CAN_RECURSE
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005733 PyGILState_Release(*pygilstate);
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005734#endif
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005735
5736 for (lnum = RangeStart; lnum <= RangeEnd; ++lnum)
5737 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005738 PyObject *line;
5739 PyObject *linenr;
5740 PyObject *ret;
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005741
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005742#ifdef PY_CAN_RECURSE
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005743 *pygilstate = PyGILState_Ensure();
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005744#endif
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005745 // Check the line number, the command my have deleted lines.
Bram Moolenaara58883b2017-01-29 21:31:09 +01005746 if (lnum > curbuf->b_ml.ml_line_count
5747 || !(line = GetBufferLine(curbuf, lnum)))
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005748 goto err;
5749 if (!(linenr = PyInt_FromLong((long) lnum)))
5750 {
5751 Py_DECREF(line);
5752 goto err;
5753 }
5754 ret = PyObject_CallFunctionObjArgs(pyfunc, line, linenr, NULL);
5755 Py_DECREF(line);
5756 Py_DECREF(linenr);
5757 if (!ret)
5758 goto err;
5759
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01005760 // Check that the command didn't switch to another buffer.
Bram Moolenaara58883b2017-01-29 21:31:09 +01005761 if (curbuf != was_curbuf)
5762 {
5763 Py_XDECREF(ret);
5764 goto err;
5765 }
5766
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005767 if (ret != Py_None)
5768 if (SetBufferLine(curbuf, lnum, ret, NULL) == FAIL)
Bram Moolenaara58883b2017-01-29 21:31:09 +01005769 {
5770 Py_XDECREF(ret);
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005771 goto err;
Bram Moolenaara58883b2017-01-29 21:31:09 +01005772 }
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005773
5774 Py_XDECREF(ret);
5775 PythonIO_Flush();
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005776#ifdef PY_CAN_RECURSE
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005777 PyGILState_Release(*pygilstate);
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005778#endif
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005779 }
5780 goto out;
5781err:
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005782#ifdef PY_CAN_RECURSE
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005783 *pygilstate = PyGILState_Ensure();
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005784#endif
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005785 PyErr_PrintEx(0);
5786 PythonIO_Flush();
5787 status = 1;
5788out:
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005789#ifdef PY_CAN_RECURSE
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005790 if (!status)
5791 *pygilstate = PyGILState_Ensure();
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005792#endif
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005793 Py_DECREF(pyfunc);
5794 PyObject_SetAttrString(pymain, DOPY_FUNC, NULL);
5795 if (status)
5796 return;
5797 check_cursor();
5798 update_curbuf(NOT_VALID);
5799}
5800
5801 static void
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02005802run_eval(const char *cmd, typval_T *rettv
5803#ifdef PY_CAN_RECURSE
5804 , PyGILState_STATE *pygilstate UNUSED
5805#endif
5806 )
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005807{
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005808 PyObject *run_ret;
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005809
Bram Moolenaar41009372013-07-01 22:03:04 +02005810 run_ret = PyRun_String((char *)cmd, Py_eval_input, globals, globals);
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005811 if (run_ret == NULL)
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005812 {
Bram Moolenaar91aeaf42013-07-06 13:02:30 +02005813 if (PyErr_Occurred() && PyErr_ExceptionMatches(PyExc_SystemExit))
Bram Moolenaar41009372013-07-01 22:03:04 +02005814 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005815 semsg(_(e_py_systemexit), "python");
Bram Moolenaar41009372013-07-01 22:03:04 +02005816 PyErr_Clear();
5817 }
Bram Moolenaar91aeaf42013-07-06 13:02:30 +02005818 else
5819 {
5820 if (PyErr_Occurred() && !msg_silent)
5821 PyErr_PrintEx(0);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005822 emsg(_("E858: Eval did not return a valid python object"));
Bram Moolenaar91aeaf42013-07-06 13:02:30 +02005823 }
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005824 }
5825 else
5826 {
Bram Moolenaarde323092017-11-09 19:56:08 +01005827 if (ConvertFromPyObject(run_ret, rettv) == -1)
Bram Moolenaar86181df2020-05-11 23:14:04 +02005828 emsg(_("E859: Failed to convert returned python object to a Vim value"));
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02005829 Py_DECREF(run_ret);
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02005830 }
5831 PyErr_Clear();
5832}
5833
Bram Moolenaar2459a5e2015-02-03 12:55:18 +01005834 static int
Bram Moolenaardb913952012-06-29 12:54:53 +02005835set_ref_in_py(const int copyID)
5836{
5837 pylinkedlist_T *cur;
Bram Moolenaar7be3ab22019-06-23 01:46:15 +02005838 list_T *ll;
5839 int i;
5840 int abort = FALSE;
Bram Moolenaar8110a092016-04-14 15:56:09 +02005841 FunctionObject *func;
Bram Moolenaardb913952012-06-29 12:54:53 +02005842
5843 if (lastdict != NULL)
Bram Moolenaar2459a5e2015-02-03 12:55:18 +01005844 {
Bram Moolenaar8110a092016-04-14 15:56:09 +02005845 for (cur = lastdict ; !abort && cur != NULL ; cur = cur->pll_prev)
Bram Moolenaar7be3ab22019-06-23 01:46:15 +02005846 abort = set_ref_in_dict(((DictionaryObject *)(cur->pll_obj))->dict,
5847 copyID);
Bram Moolenaar2459a5e2015-02-03 12:55:18 +01005848 }
Bram Moolenaardb913952012-06-29 12:54:53 +02005849
5850 if (lastlist != NULL)
Bram Moolenaar2459a5e2015-02-03 12:55:18 +01005851 {
Bram Moolenaar8110a092016-04-14 15:56:09 +02005852 for (cur = lastlist ; !abort && cur != NULL ; cur = cur->pll_prev)
Bram Moolenaardb913952012-06-29 12:54:53 +02005853 {
5854 ll = ((ListObject *) (cur->pll_obj))->list;
Bram Moolenaar7be3ab22019-06-23 01:46:15 +02005855 abort = set_ref_in_list(ll, copyID);
Bram Moolenaardb913952012-06-29 12:54:53 +02005856 }
Bram Moolenaar2459a5e2015-02-03 12:55:18 +01005857 }
5858
Bram Moolenaar8110a092016-04-14 15:56:09 +02005859 if (lastfunc != NULL)
5860 {
5861 for (cur = lastfunc ; !abort && cur != NULL ; cur = cur->pll_prev)
5862 {
5863 func = (FunctionObject *) cur->pll_obj;
Bram Moolenaar7be3ab22019-06-23 01:46:15 +02005864 abort = set_ref_in_dict(func->self, copyID);
Bram Moolenaar8110a092016-04-14 15:56:09 +02005865 if (func->argc)
5866 for (i = 0; !abort && i < func->argc; ++i)
5867 abort = abort
5868 || set_ref_in_item(&func->argv[i], copyID, NULL, NULL);
5869 }
5870 }
5871
Bram Moolenaar2459a5e2015-02-03 12:55:18 +01005872 return abort;
Bram Moolenaardb913952012-06-29 12:54:53 +02005873}
5874
5875 static int
5876set_string_copy(char_u *str, typval_T *tv)
5877{
5878 tv->vval.v_string = vim_strsave(str);
5879 if (tv->vval.v_string == NULL)
5880 {
5881 PyErr_NoMemory();
5882 return -1;
5883 }
5884 return 0;
5885}
5886
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005887 static int
Bram Moolenaarb38caae2013-05-29 22:39:52 +02005888pydict_to_tv(PyObject *obj, typval_T *tv, PyObject *lookup_dict)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005889{
Bram Moolenaarb38caae2013-05-29 22:39:52 +02005890 dict_T *dict;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005891 char_u *key;
5892 dictitem_T *di;
5893 PyObject *keyObject;
5894 PyObject *valObject;
5895 Py_ssize_t iter = 0;
5896
Bram Moolenaar35eacd72013-05-30 22:06:33 +02005897 if (!(dict = py_dict_alloc()))
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005898 return -1;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005899
5900 tv->v_type = VAR_DICT;
Bram Moolenaarb38caae2013-05-29 22:39:52 +02005901 tv->vval.v_dict = dict;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005902
5903 while (PyDict_Next(obj, &iter, &keyObject, &valObject))
5904 {
Bram Moolenaarfc714b32013-05-30 14:52:37 +02005905 PyObject *todecref = NULL;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005906
Bram Moolenaara03e6312013-05-29 22:49:26 +02005907 if (keyObject == NULL || valObject == NULL)
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005908 {
5909 dict_unref(dict);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005910 return -1;
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005911 }
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005912
Bram Moolenaarfc714b32013-05-30 14:52:37 +02005913 if (!(key = StringToChars(keyObject, &todecref)))
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005914 {
5915 dict_unref(dict);
5916 return -1;
5917 }
Bram Moolenaar4f2109d2013-06-02 18:07:37 +02005918
Bram Moolenaarfc714b32013-05-30 14:52:37 +02005919 if (*key == NUL)
5920 {
5921 dict_unref(dict);
5922 Py_XDECREF(todecref);
Bram Moolenaar35eacd72013-05-30 22:06:33 +02005923 RAISE_NO_EMPTY_KEYS;
Bram Moolenaarfc714b32013-05-30 14:52:37 +02005924 return -1;
5925 }
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005926
5927 di = dictitem_alloc(key);
5928
Bram Moolenaarfc714b32013-05-30 14:52:37 +02005929 Py_XDECREF(todecref);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005930
5931 if (di == NULL)
5932 {
5933 PyErr_NoMemory();
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005934 dict_unref(dict);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005935 return -1;
5936 }
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005937
Bram Moolenaarb38caae2013-05-29 22:39:52 +02005938 if (_ConvertFromPyObject(valObject, &di->di_tv, lookup_dict) == -1)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005939 {
5940 vim_free(di);
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005941 dict_unref(dict);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005942 return -1;
5943 }
Bram Moolenaarb38caae2013-05-29 22:39:52 +02005944
5945 if (dict_add(dict, di) == FAIL)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005946 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02005947 RAISE_KEY_ADD_FAIL(di->di_key);
Bram Moolenaara03e6312013-05-29 22:49:26 +02005948 clear_tv(&di->di_tv);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005949 vim_free(di);
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005950 dict_unref(dict);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005951 return -1;
5952 }
5953 }
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005954
5955 --dict->dv_refcount;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005956 return 0;
5957}
5958
5959 static int
Bram Moolenaarb38caae2013-05-29 22:39:52 +02005960pymap_to_tv(PyObject *obj, typval_T *tv, PyObject *lookup_dict)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005961{
Bram Moolenaarb38caae2013-05-29 22:39:52 +02005962 dict_T *dict;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005963 char_u *key;
5964 dictitem_T *di;
5965 PyObject *list;
Bram Moolenaarbcb40972013-05-30 13:22:13 +02005966 PyObject *iterator;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005967 PyObject *keyObject;
5968 PyObject *valObject;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005969
Bram Moolenaar35eacd72013-05-30 22:06:33 +02005970 if (!(dict = py_dict_alloc()))
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005971 return -1;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005972
5973 tv->v_type = VAR_DICT;
Bram Moolenaarb38caae2013-05-29 22:39:52 +02005974 tv->vval.v_dict = dict;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005975
Bram Moolenaarbcb40972013-05-30 13:22:13 +02005976 if (!(list = PyMapping_Keys(obj)))
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005977 {
5978 dict_unref(dict);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005979 return -1;
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005980 }
Bram Moolenaarbcb40972013-05-30 13:22:13 +02005981
5982 if (!(iterator = PyObject_GetIter(list)))
5983 {
5984 dict_unref(dict);
5985 Py_DECREF(list);
5986 return -1;
5987 }
5988 Py_DECREF(list);
5989
5990 while ((keyObject = PyIter_Next(iterator)))
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005991 {
Bram Moolenaarfc714b32013-05-30 14:52:37 +02005992 PyObject *todecref;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02005993
Bram Moolenaarfc714b32013-05-30 14:52:37 +02005994 if (!(key = StringToChars(keyObject, &todecref)))
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005995 {
Bram Moolenaarfc714b32013-05-30 14:52:37 +02005996 Py_DECREF(keyObject);
Bram Moolenaarbcb40972013-05-30 13:22:13 +02005997 Py_DECREF(iterator);
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005998 dict_unref(dict);
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02005999 return -1;
6000 }
Bram Moolenaar4f2109d2013-06-02 18:07:37 +02006001
Bram Moolenaarfc714b32013-05-30 14:52:37 +02006002 if (*key == NUL)
6003 {
6004 Py_DECREF(keyObject);
6005 Py_DECREF(iterator);
6006 Py_XDECREF(todecref);
6007 dict_unref(dict);
Bram Moolenaar35eacd72013-05-30 22:06:33 +02006008 RAISE_NO_EMPTY_KEYS;
Bram Moolenaarfc714b32013-05-30 14:52:37 +02006009 return -1;
6010 }
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006011
Bram Moolenaarbcb40972013-05-30 13:22:13 +02006012 if (!(valObject = PyObject_GetItem(obj, keyObject)))
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006013 {
Bram Moolenaarbcb40972013-05-30 13:22:13 +02006014 Py_DECREF(keyObject);
6015 Py_DECREF(iterator);
Bram Moolenaarfc714b32013-05-30 14:52:37 +02006016 Py_XDECREF(todecref);
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02006017 dict_unref(dict);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006018 return -1;
6019 }
6020
6021 di = dictitem_alloc(key);
6022
Bram Moolenaarbcb40972013-05-30 13:22:13 +02006023 Py_DECREF(keyObject);
Bram Moolenaarfc714b32013-05-30 14:52:37 +02006024 Py_XDECREF(todecref);
Bram Moolenaarbcb40972013-05-30 13:22:13 +02006025
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006026 if (di == NULL)
6027 {
Bram Moolenaarbcb40972013-05-30 13:22:13 +02006028 Py_DECREF(iterator);
6029 Py_DECREF(valObject);
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02006030 dict_unref(dict);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006031 PyErr_NoMemory();
6032 return -1;
6033 }
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006034
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006035 if (_ConvertFromPyObject(valObject, &di->di_tv, lookup_dict) == -1)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006036 {
Bram Moolenaarbcb40972013-05-30 13:22:13 +02006037 Py_DECREF(iterator);
6038 Py_DECREF(valObject);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006039 vim_free(di);
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02006040 dict_unref(dict);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006041 return -1;
6042 }
Bram Moolenaara03e6312013-05-29 22:49:26 +02006043
Bram Moolenaarbcb40972013-05-30 13:22:13 +02006044 Py_DECREF(valObject);
6045
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006046 if (dict_add(dict, di) == FAIL)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006047 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02006048 RAISE_KEY_ADD_FAIL(di->di_key);
Bram Moolenaarbcb40972013-05-30 13:22:13 +02006049 Py_DECREF(iterator);
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02006050 dictitem_free(di);
6051 dict_unref(dict);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006052 return -1;
6053 }
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006054 }
Bram Moolenaarbcb40972013-05-30 13:22:13 +02006055 Py_DECREF(iterator);
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02006056 --dict->dv_refcount;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006057 return 0;
6058}
6059
6060 static int
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006061pyseq_to_tv(PyObject *obj, typval_T *tv, PyObject *lookup_dict)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006062{
6063 list_T *l;
6064
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02006065 if (!(l = py_list_alloc()))
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006066 return -1;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006067
6068 tv->v_type = VAR_LIST;
6069 tv->vval.v_list = l;
6070
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006071 if (list_py_concat(l, obj, lookup_dict) == -1)
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02006072 {
6073 list_unref(l);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006074 return -1;
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02006075 }
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006076
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02006077 --l->lv_refcount;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02006078 return 0;
6079}
6080
Bram Moolenaardb913952012-06-29 12:54:53 +02006081typedef int (*pytotvfunc)(PyObject *, typval_T *, PyObject *);
6082
6083 static int
6084convert_dl(PyObject *obj, typval_T *tv,
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006085 pytotvfunc py_to_tv, PyObject *lookup_dict)
Bram Moolenaardb913952012-06-29 12:54:53 +02006086{
6087 PyObject *capsule;
6088 char hexBuf[sizeof(void *) * 2 + 3];
6089
Bram Moolenaar792f0e32018-02-27 17:27:13 +01006090 sprintf(hexBuf, "%p", (void *)obj);
Bram Moolenaardb913952012-06-29 12:54:53 +02006091
Bram Moolenaarb999ba22019-02-14 13:28:45 +01006092#ifdef PY_USE_CAPSULE
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006093 capsule = PyDict_GetItemString(lookup_dict, hexBuf);
Bram Moolenaarb999ba22019-02-14 13:28:45 +01006094#else
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006095 capsule = (PyObject *)PyDict_GetItemString(lookup_dict, hexBuf);
Bram Moolenaarb999ba22019-02-14 13:28:45 +01006096#endif
Bram Moolenaar221d6872012-06-30 13:34:34 +02006097 if (capsule == NULL)
Bram Moolenaardb913952012-06-29 12:54:53 +02006098 {
Bram Moolenaarb999ba22019-02-14 13:28:45 +01006099#ifdef PY_USE_CAPSULE
Bram Moolenaardb913952012-06-29 12:54:53 +02006100 capsule = PyCapsule_New(tv, NULL, NULL);
Bram Moolenaarb999ba22019-02-14 13:28:45 +01006101#else
Bram Moolenaar221d6872012-06-30 13:34:34 +02006102 capsule = PyCObject_FromVoidPtr(tv, NULL);
Bram Moolenaarb999ba22019-02-14 13:28:45 +01006103#endif
Bram Moolenaara03e6312013-05-29 22:49:26 +02006104 if (PyDict_SetItemString(lookup_dict, hexBuf, capsule))
6105 {
6106 Py_DECREF(capsule);
6107 tv->v_type = VAR_UNKNOWN;
6108 return -1;
6109 }
Bram Moolenaar841fbd22013-06-23 14:37:07 +02006110
6111 Py_DECREF(capsule);
6112
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006113 if (py_to_tv(obj, tv, lookup_dict) == -1)
Bram Moolenaardb913952012-06-29 12:54:53 +02006114 {
6115 tv->v_type = VAR_UNKNOWN;
6116 return -1;
6117 }
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01006118 // As we are not using copy_tv which increments reference count we must
6119 // do it ourself.
Bram Moolenaar81e7a9c2016-02-06 19:57:20 +01006120 if (tv->v_type == VAR_DICT)
6121 ++tv->vval.v_dict->dv_refcount;
6122 else if (tv->v_type == VAR_LIST)
6123 ++tv->vval.v_list->lv_refcount;
Bram Moolenaardb913952012-06-29 12:54:53 +02006124 }
6125 else
6126 {
Bram Moolenaar2afa3232012-06-29 16:28:28 +02006127 typval_T *v;
6128
Bram Moolenaarb999ba22019-02-14 13:28:45 +01006129#ifdef PY_USE_CAPSULE
Bram Moolenaar2afa3232012-06-29 16:28:28 +02006130 v = PyCapsule_GetPointer(capsule, NULL);
Bram Moolenaarb999ba22019-02-14 13:28:45 +01006131#else
Bram Moolenaar221d6872012-06-30 13:34:34 +02006132 v = PyCObject_AsVoidPtr(capsule);
Bram Moolenaarb999ba22019-02-14 13:28:45 +01006133#endif
Bram Moolenaardb913952012-06-29 12:54:53 +02006134 copy_tv(v, tv);
6135 }
6136 return 0;
6137}
6138
6139 static int
Bram Moolenaara9922d62013-05-30 13:01:18 +02006140ConvertFromPyMapping(PyObject *obj, typval_T *tv)
6141{
6142 PyObject *lookup_dict;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006143 int ret;
Bram Moolenaara9922d62013-05-30 13:01:18 +02006144
6145 if (!(lookup_dict = PyDict_New()))
6146 return -1;
6147
6148 if (PyType_IsSubtype(obj->ob_type, &DictionaryType))
6149 {
6150 tv->v_type = VAR_DICT;
6151 tv->vval.v_dict = (((DictionaryObject *)(obj))->dict);
6152 ++tv->vval.v_dict->dv_refcount;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006153 ret = 0;
Bram Moolenaara9922d62013-05-30 13:01:18 +02006154 }
6155 else if (PyDict_Check(obj))
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006156 ret = convert_dl(obj, tv, pydict_to_tv, lookup_dict);
Bram Moolenaara9922d62013-05-30 13:01:18 +02006157 else if (PyMapping_Check(obj))
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006158 ret = convert_dl(obj, tv, pymap_to_tv, lookup_dict);
Bram Moolenaara9922d62013-05-30 13:01:18 +02006159 else
6160 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02006161 PyErr_FORMAT(PyExc_TypeError,
Bram Moolenaar86181df2020-05-11 23:14:04 +02006162 N_("unable to convert %s to a Vim dictionary"),
Bram Moolenaarc476e522013-06-23 13:46:40 +02006163 Py_TYPE_NAME(obj));
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006164 ret = -1;
Bram Moolenaara9922d62013-05-30 13:01:18 +02006165 }
6166 Py_DECREF(lookup_dict);
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006167 return ret;
Bram Moolenaara9922d62013-05-30 13:01:18 +02006168}
6169
6170 static int
Bram Moolenaar8110a092016-04-14 15:56:09 +02006171ConvertFromPySequence(PyObject *obj, typval_T *tv)
6172{
6173 PyObject *lookup_dict;
Bram Moolenaar66210042016-04-15 20:40:41 +02006174 int ret;
Bram Moolenaar8110a092016-04-14 15:56:09 +02006175
6176 if (!(lookup_dict = PyDict_New()))
6177 return -1;
6178
6179 if (PyType_IsSubtype(obj->ob_type, &ListType))
6180 {
6181 tv->v_type = VAR_LIST;
6182 tv->vval.v_list = (((ListObject *)(obj))->list);
6183 ++tv->vval.v_list->lv_refcount;
Bram Moolenaar66210042016-04-15 20:40:41 +02006184 ret = 0;
Bram Moolenaar8110a092016-04-14 15:56:09 +02006185 }
6186 else if (PyIter_Check(obj) || PySequence_Check(obj))
Bram Moolenaar66210042016-04-15 20:40:41 +02006187 ret = convert_dl(obj, tv, pyseq_to_tv, lookup_dict);
Bram Moolenaar8110a092016-04-14 15:56:09 +02006188 else
6189 {
6190 PyErr_FORMAT(PyExc_TypeError,
Bram Moolenaar86181df2020-05-11 23:14:04 +02006191 N_("unable to convert %s to a Vim list"),
Bram Moolenaar8110a092016-04-14 15:56:09 +02006192 Py_TYPE_NAME(obj));
6193 ret = -1;
6194 }
6195 Py_DECREF(lookup_dict);
6196 return ret;
6197}
6198
6199 static int
Bram Moolenaardb913952012-06-29 12:54:53 +02006200ConvertFromPyObject(PyObject *obj, typval_T *tv)
6201{
6202 PyObject *lookup_dict;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006203 int ret;
Bram Moolenaardb913952012-06-29 12:54:53 +02006204
Bram Moolenaar9bb77d62013-05-30 12:14:49 +02006205 if (!(lookup_dict = PyDict_New()))
6206 return -1;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006207 ret = _ConvertFromPyObject(obj, tv, lookup_dict);
Bram Moolenaardb913952012-06-29 12:54:53 +02006208 Py_DECREF(lookup_dict);
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006209 return ret;
Bram Moolenaardb913952012-06-29 12:54:53 +02006210}
6211
6212 static int
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006213_ConvertFromPyObject(PyObject *obj, typval_T *tv, PyObject *lookup_dict)
Bram Moolenaardb913952012-06-29 12:54:53 +02006214{
Bram Moolenaara9922d62013-05-30 13:01:18 +02006215 if (PyType_IsSubtype(obj->ob_type, &DictionaryType))
Bram Moolenaardb913952012-06-29 12:54:53 +02006216 {
6217 tv->v_type = VAR_DICT;
6218 tv->vval.v_dict = (((DictionaryObject *)(obj))->dict);
6219 ++tv->vval.v_dict->dv_refcount;
6220 }
Bram Moolenaar841fbd22013-06-23 14:37:07 +02006221 else if (PyType_IsSubtype(obj->ob_type, &ListType))
Bram Moolenaardb913952012-06-29 12:54:53 +02006222 {
6223 tv->v_type = VAR_LIST;
6224 tv->vval.v_list = (((ListObject *)(obj))->list);
6225 ++tv->vval.v_list->lv_refcount;
6226 }
Bram Moolenaar841fbd22013-06-23 14:37:07 +02006227 else if (PyType_IsSubtype(obj->ob_type, &FunctionType))
Bram Moolenaardb913952012-06-29 12:54:53 +02006228 {
Bram Moolenaar8110a092016-04-14 15:56:09 +02006229 FunctionObject *func = (FunctionObject *) obj;
6230 if (func->self != NULL || func->argv != NULL)
6231 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02006232 partial_T *pt = ALLOC_CLEAR_ONE(partial_T);
6233
Bram Moolenaar8110a092016-04-14 15:56:09 +02006234 set_partial(func, pt, TRUE);
6235 tv->vval.v_partial = pt;
6236 tv->v_type = VAR_PARTIAL;
6237 }
6238 else
6239 {
6240 if (set_string_copy(func->name, tv) == -1)
6241 return -1;
Bram Moolenaardb913952012-06-29 12:54:53 +02006242
Bram Moolenaar8110a092016-04-14 15:56:09 +02006243 tv->v_type = VAR_FUNC;
6244 }
6245 func_ref(func->name);
Bram Moolenaardb913952012-06-29 12:54:53 +02006246 }
Bram Moolenaardb913952012-06-29 12:54:53 +02006247 else if (PyBytes_Check(obj))
6248 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006249 char_u *str;
Bram Moolenaardb913952012-06-29 12:54:53 +02006250
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006251 if (PyBytes_AsStringAndSize(obj, (char **) &str, NULL) == -1)
Bram Moolenaarafa6b9a2012-09-05 19:09:11 +02006252 return -1;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006253 if (str == NULL)
Bram Moolenaardb913952012-06-29 12:54:53 +02006254 return -1;
6255
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006256 if (set_string_copy(str, tv) == -1)
Bram Moolenaardb913952012-06-29 12:54:53 +02006257 return -1;
6258
6259 tv->v_type = VAR_STRING;
6260 }
6261 else if (PyUnicode_Check(obj))
6262 {
6263 PyObject *bytes;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006264 char_u *str;
Bram Moolenaardb913952012-06-29 12:54:53 +02006265
Bram Moolenaar808c2bc2013-06-23 13:11:18 +02006266 bytes = PyUnicode_AsEncodedString(obj, ENC_OPT, NULL);
Bram Moolenaardb913952012-06-29 12:54:53 +02006267 if (bytes == NULL)
6268 return -1;
6269
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006270 if(PyBytes_AsStringAndSize(bytes, (char **) &str, NULL) == -1)
Bram Moolenaarafa6b9a2012-09-05 19:09:11 +02006271 return -1;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006272 if (str == NULL)
Bram Moolenaardb913952012-06-29 12:54:53 +02006273 return -1;
6274
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006275 if (set_string_copy(str, tv))
Bram Moolenaardb913952012-06-29 12:54:53 +02006276 {
6277 Py_XDECREF(bytes);
6278 return -1;
6279 }
6280 Py_XDECREF(bytes);
6281
6282 tv->v_type = VAR_STRING;
6283 }
Bram Moolenaar335e0b62013-04-24 13:47:45 +02006284#if PY_MAJOR_VERSION < 3
Bram Moolenaardb913952012-06-29 12:54:53 +02006285 else if (PyInt_Check(obj))
6286 {
6287 tv->v_type = VAR_NUMBER;
6288 tv->vval.v_number = (varnumber_T) PyInt_AsLong(obj);
Bram Moolenaar141be8a2013-06-23 14:16:57 +02006289 if (PyErr_Occurred())
6290 return -1;
Bram Moolenaardb913952012-06-29 12:54:53 +02006291 }
6292#endif
6293 else if (PyLong_Check(obj))
6294 {
6295 tv->v_type = VAR_NUMBER;
6296 tv->vval.v_number = (varnumber_T) PyLong_AsLong(obj);
Bram Moolenaar141be8a2013-06-23 14:16:57 +02006297 if (PyErr_Occurred())
6298 return -1;
Bram Moolenaardb913952012-06-29 12:54:53 +02006299 }
6300 else if (PyDict_Check(obj))
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006301 return convert_dl(obj, tv, pydict_to_tv, lookup_dict);
Bram Moolenaardb913952012-06-29 12:54:53 +02006302#ifdef FEAT_FLOAT
6303 else if (PyFloat_Check(obj))
6304 {
6305 tv->v_type = VAR_FLOAT;
6306 tv->vval.v_float = (float_T) PyFloat_AsDouble(obj);
6307 }
6308#endif
Bram Moolenaarbcb40972013-05-30 13:22:13 +02006309 else if (PyObject_HasAttrString(obj, "keys"))
6310 return convert_dl(obj, tv, pymap_to_tv, lookup_dict);
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01006311 // PyObject_GetIter can create built-in iterator for any sequence object
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02006312 else if (PyIter_Check(obj) || PySequence_Check(obj))
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006313 return convert_dl(obj, tv, pyseq_to_tv, lookup_dict);
Bram Moolenaardb913952012-06-29 12:54:53 +02006314 else if (PyMapping_Check(obj))
Bram Moolenaarb38caae2013-05-29 22:39:52 +02006315 return convert_dl(obj, tv, pymap_to_tv, lookup_dict);
Bram Moolenaar141be8a2013-06-23 14:16:57 +02006316 else if (PyNumber_Check(obj))
6317 {
6318 PyObject *num;
6319
6320 if (!(num = PyNumber_Long(obj)))
6321 return -1;
6322
6323 tv->v_type = VAR_NUMBER;
6324 tv->vval.v_number = (varnumber_T) PyLong_AsLong(num);
6325
6326 Py_DECREF(num);
6327 }
Bram Moolenaarde323092017-11-09 19:56:08 +01006328 else if (obj == Py_None)
6329 {
6330 tv->v_type = VAR_SPECIAL;
6331 tv->vval.v_number = VVAL_NONE;
6332 }
Bram Moolenaardb913952012-06-29 12:54:53 +02006333 else
6334 {
Bram Moolenaarc476e522013-06-23 13:46:40 +02006335 PyErr_FORMAT(PyExc_TypeError,
Bram Moolenaar86181df2020-05-11 23:14:04 +02006336 N_("unable to convert %s to a Vim structure"),
Bram Moolenaarc476e522013-06-23 13:46:40 +02006337 Py_TYPE_NAME(obj));
Bram Moolenaardb913952012-06-29 12:54:53 +02006338 return -1;
6339 }
6340 return 0;
6341}
6342
6343 static PyObject *
6344ConvertToPyObject(typval_T *tv)
6345{
Bram Moolenaar8110a092016-04-14 15:56:09 +02006346 typval_T *argv;
6347 int i;
Bram Moolenaardb913952012-06-29 12:54:53 +02006348 if (tv == NULL)
6349 {
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02006350 PyErr_SET_VIM(N_("internal error: NULL reference passed"));
Bram Moolenaardb913952012-06-29 12:54:53 +02006351 return NULL;
6352 }
6353 switch (tv->v_type)
6354 {
6355 case VAR_STRING:
Bram Moolenaard1f13fd2012-10-05 21:30:07 +02006356 return PyBytes_FromString(tv->vval.v_string == NULL
6357 ? "" : (char *)tv->vval.v_string);
Bram Moolenaardb913952012-06-29 12:54:53 +02006358 case VAR_NUMBER:
6359 return PyLong_FromLong((long) tv->vval.v_number);
Bram Moolenaardb913952012-06-29 12:54:53 +02006360 case VAR_FLOAT:
Bram Moolenaara5d59532020-01-26 21:42:03 +01006361#ifdef FEAT_FLOAT
Bram Moolenaardb913952012-06-29 12:54:53 +02006362 return PyFloat_FromDouble((double) tv->vval.v_float);
6363#endif
6364 case VAR_LIST:
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02006365 return NEW_LIST(tv->vval.v_list);
Bram Moolenaardb913952012-06-29 12:54:53 +02006366 case VAR_DICT:
Bram Moolenaara9922d62013-05-30 13:01:18 +02006367 return NEW_DICTIONARY(tv->vval.v_dict);
Bram Moolenaardb913952012-06-29 12:54:53 +02006368 case VAR_FUNC:
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02006369 return NEW_FUNCTION(tv->vval.v_string == NULL
Bram Moolenaar8110a092016-04-14 15:56:09 +02006370 ? (char_u *)"" : tv->vval.v_string,
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02006371 0, NULL, NULL, TRUE);
Bram Moolenaar4c908612016-03-24 21:58:12 +01006372 case VAR_PARTIAL:
Bram Moolenaar8110a092016-04-14 15:56:09 +02006373 if (tv->vval.v_partial->pt_argc)
6374 {
6375 argv = PyMem_New(typval_T, (size_t)tv->vval.v_partial->pt_argc);
6376 for (i = 0; i < tv->vval.v_partial->pt_argc; i++)
6377 copy_tv(&tv->vval.v_partial->pt_argv[i], &argv[i]);
6378 }
6379 else
6380 argv = NULL;
6381 if (tv->vval.v_partial->pt_dict != NULL)
6382 tv->vval.v_partial->pt_dict->dv_refcount++;
Bram Moolenaar4c908612016-03-24 21:58:12 +01006383 return NEW_FUNCTION(tv->vval.v_partial == NULL
Bram Moolenaar437bafe2016-08-01 15:40:54 +02006384 ? (char_u *)"" : partial_name(tv->vval.v_partial),
Bram Moolenaar8110a092016-04-14 15:56:09 +02006385 tv->vval.v_partial->pt_argc, argv,
Bram Moolenaar2177f9f2016-05-25 20:39:09 +02006386 tv->vval.v_partial->pt_dict,
6387 tv->vval.v_partial->pt_auto);
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01006388 case VAR_BLOB:
6389 return PyBytes_FromStringAndSize(
6390 (char*) tv->vval.v_blob->bv_ga.ga_data,
6391 (Py_ssize_t) tv->vval.v_blob->bv_ga.ga_len);
Bram Moolenaardb913952012-06-29 12:54:53 +02006392 case VAR_UNKNOWN:
Bram Moolenaar4c683752020-04-05 21:38:23 +02006393 case VAR_ANY:
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01006394 case VAR_VOID:
Bram Moolenaar4c908612016-03-24 21:58:12 +01006395 case VAR_CHANNEL:
6396 case VAR_JOB:
Bram Moolenaardb913952012-06-29 12:54:53 +02006397 Py_INCREF(Py_None);
6398 return Py_None;
Bram Moolenaar9b4a15d2020-01-11 16:05:23 +01006399 case VAR_BOOL:
Bram Moolenaar4c908612016-03-24 21:58:12 +01006400 case VAR_SPECIAL:
6401 switch (tv->vval.v_number)
6402 {
6403 case VVAL_FALSE: return AlwaysFalse(NULL);
6404 case VVAL_TRUE: return AlwaysTrue(NULL);
6405 case VVAL_NONE:
6406 case VVAL_NULL: return AlwaysNone(NULL);
6407 }
Bram Moolenaar6f1404f2013-06-23 16:04:08 +02006408 PyErr_SET_VIM(N_("internal error: invalid value type"));
Bram Moolenaardb913952012-06-29 12:54:53 +02006409 return NULL;
6410 }
Bram Moolenaar4c908612016-03-24 21:58:12 +01006411 return NULL;
Bram Moolenaardb913952012-06-29 12:54:53 +02006412}
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006413
6414typedef struct
6415{
6416 PyObject_HEAD
6417} CurrentObject;
6418static PyTypeObject CurrentType;
6419
6420 static void
6421init_structs(void)
6422{
Bram Moolenaara80faa82020-04-12 19:37:17 +02006423 CLEAR_FIELD(OutputType);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006424 OutputType.tp_name = "vim.message";
6425 OutputType.tp_basicsize = sizeof(OutputObject);
6426 OutputType.tp_flags = Py_TPFLAGS_DEFAULT;
6427 OutputType.tp_doc = "vim message object";
6428 OutputType.tp_methods = OutputMethods;
6429#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02006430 OutputType.tp_getattro = (getattrofunc)OutputGetattro;
6431 OutputType.tp_setattro = (setattrofunc)OutputSetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006432 OutputType.tp_alloc = call_PyType_GenericAlloc;
6433 OutputType.tp_new = call_PyType_GenericNew;
6434 OutputType.tp_free = call_PyObject_Free;
Bram Moolenaard4a8c982018-05-15 22:31:18 +02006435 OutputType.tp_base = &PyStdPrinter_Type;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006436#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02006437 OutputType.tp_getattr = (getattrfunc)OutputGetattr;
6438 OutputType.tp_setattr = (setattrfunc)OutputSetattr;
Bram Moolenaard4a8c982018-05-15 22:31:18 +02006439 // Disabled, because this causes a crash in test86
6440 // OutputType.tp_base = &PyFile_Type;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006441#endif
6442
Bram Moolenaara80faa82020-04-12 19:37:17 +02006443 CLEAR_FIELD(IterType);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02006444 IterType.tp_name = "vim.iter";
6445 IterType.tp_basicsize = sizeof(IterObject);
Bram Moolenaar07b88642013-05-29 22:58:32 +02006446 IterType.tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_GC;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02006447 IterType.tp_doc = "generic iterator object";
Bram Moolenaard6e39182013-05-21 18:30:34 +02006448 IterType.tp_iter = (getiterfunc)IterIter;
6449 IterType.tp_iternext = (iternextfunc)IterNext;
6450 IterType.tp_dealloc = (destructor)IterDestructor;
6451 IterType.tp_traverse = (traverseproc)IterTraverse;
6452 IterType.tp_clear = (inquiry)IterClear;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02006453
Bram Moolenaara80faa82020-04-12 19:37:17 +02006454 CLEAR_FIELD(BufferType);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006455 BufferType.tp_name = "vim.buffer";
6456 BufferType.tp_basicsize = sizeof(BufferType);
Bram Moolenaard6e39182013-05-21 18:30:34 +02006457 BufferType.tp_dealloc = (destructor)BufferDestructor;
6458 BufferType.tp_repr = (reprfunc)BufferRepr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006459 BufferType.tp_as_sequence = &BufferAsSeq;
6460 BufferType.tp_as_mapping = &BufferAsMapping;
6461 BufferType.tp_flags = Py_TPFLAGS_DEFAULT;
6462 BufferType.tp_doc = "vim buffer object";
6463 BufferType.tp_methods = BufferMethods;
6464#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02006465 BufferType.tp_getattro = (getattrofunc)BufferGetattro;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02006466 BufferType.tp_setattro = (setattrofunc)BufferSetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006467 BufferType.tp_alloc = call_PyType_GenericAlloc;
6468 BufferType.tp_new = call_PyType_GenericNew;
6469 BufferType.tp_free = call_PyObject_Free;
6470#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02006471 BufferType.tp_getattr = (getattrfunc)BufferGetattr;
Bram Moolenaare9ba5162013-05-29 22:02:22 +02006472 BufferType.tp_setattr = (setattrfunc)BufferSetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006473#endif
6474
Bram Moolenaara80faa82020-04-12 19:37:17 +02006475 CLEAR_FIELD(WindowType);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006476 WindowType.tp_name = "vim.window";
6477 WindowType.tp_basicsize = sizeof(WindowObject);
Bram Moolenaard6e39182013-05-21 18:30:34 +02006478 WindowType.tp_dealloc = (destructor)WindowDestructor;
6479 WindowType.tp_repr = (reprfunc)WindowRepr;
Bram Moolenaar07b88642013-05-29 22:58:32 +02006480 WindowType.tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_GC;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006481 WindowType.tp_doc = "vim Window object";
6482 WindowType.tp_methods = WindowMethods;
Bram Moolenaard6e39182013-05-21 18:30:34 +02006483 WindowType.tp_traverse = (traverseproc)WindowTraverse;
6484 WindowType.tp_clear = (inquiry)WindowClear;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006485#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02006486 WindowType.tp_getattro = (getattrofunc)WindowGetattro;
6487 WindowType.tp_setattro = (setattrofunc)WindowSetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006488 WindowType.tp_alloc = call_PyType_GenericAlloc;
6489 WindowType.tp_new = call_PyType_GenericNew;
6490 WindowType.tp_free = call_PyObject_Free;
6491#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02006492 WindowType.tp_getattr = (getattrfunc)WindowGetattr;
6493 WindowType.tp_setattr = (setattrfunc)WindowSetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006494#endif
6495
Bram Moolenaara80faa82020-04-12 19:37:17 +02006496 CLEAR_FIELD(TabPageType);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006497 TabPageType.tp_name = "vim.tabpage";
6498 TabPageType.tp_basicsize = sizeof(TabPageObject);
Bram Moolenaard6e39182013-05-21 18:30:34 +02006499 TabPageType.tp_dealloc = (destructor)TabPageDestructor;
6500 TabPageType.tp_repr = (reprfunc)TabPageRepr;
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006501 TabPageType.tp_flags = Py_TPFLAGS_DEFAULT;
6502 TabPageType.tp_doc = "vim tab page object";
6503 TabPageType.tp_methods = TabPageMethods;
6504#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02006505 TabPageType.tp_getattro = (getattrofunc)TabPageGetattro;
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006506 TabPageType.tp_alloc = call_PyType_GenericAlloc;
6507 TabPageType.tp_new = call_PyType_GenericNew;
6508 TabPageType.tp_free = call_PyObject_Free;
6509#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02006510 TabPageType.tp_getattr = (getattrfunc)TabPageGetattr;
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006511#endif
6512
Bram Moolenaara80faa82020-04-12 19:37:17 +02006513 CLEAR_FIELD(BufMapType);
Bram Moolenaardfa38d42013-05-15 13:38:47 +02006514 BufMapType.tp_name = "vim.bufferlist";
6515 BufMapType.tp_basicsize = sizeof(BufMapObject);
6516 BufMapType.tp_as_mapping = &BufMapAsMapping;
6517 BufMapType.tp_flags = Py_TPFLAGS_DEFAULT;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02006518 BufMapType.tp_iter = BufMapIter;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006519 BufferType.tp_doc = "vim buffer list";
6520
Bram Moolenaara80faa82020-04-12 19:37:17 +02006521 CLEAR_FIELD(WinListType);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006522 WinListType.tp_name = "vim.windowlist";
6523 WinListType.tp_basicsize = sizeof(WinListType);
6524 WinListType.tp_as_sequence = &WinListAsSeq;
6525 WinListType.tp_flags = Py_TPFLAGS_DEFAULT;
6526 WinListType.tp_doc = "vim window list";
Bram Moolenaard6e39182013-05-21 18:30:34 +02006527 WinListType.tp_dealloc = (destructor)WinListDestructor;
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006528
Bram Moolenaara80faa82020-04-12 19:37:17 +02006529 CLEAR_FIELD(TabListType);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02006530 TabListType.tp_name = "vim.tabpagelist";
6531 TabListType.tp_basicsize = sizeof(TabListType);
6532 TabListType.tp_as_sequence = &TabListAsSeq;
6533 TabListType.tp_flags = Py_TPFLAGS_DEFAULT;
6534 TabListType.tp_doc = "vim tab page list";
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006535
Bram Moolenaara80faa82020-04-12 19:37:17 +02006536 CLEAR_FIELD(RangeType);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006537 RangeType.tp_name = "vim.range";
6538 RangeType.tp_basicsize = sizeof(RangeObject);
Bram Moolenaard6e39182013-05-21 18:30:34 +02006539 RangeType.tp_dealloc = (destructor)RangeDestructor;
6540 RangeType.tp_repr = (reprfunc)RangeRepr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006541 RangeType.tp_as_sequence = &RangeAsSeq;
6542 RangeType.tp_as_mapping = &RangeAsMapping;
Bram Moolenaar07b88642013-05-29 22:58:32 +02006543 RangeType.tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_GC;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006544 RangeType.tp_doc = "vim Range object";
6545 RangeType.tp_methods = RangeMethods;
Bram Moolenaar774267b2013-05-21 20:51:59 +02006546 RangeType.tp_traverse = (traverseproc)RangeTraverse;
6547 RangeType.tp_clear = (inquiry)RangeClear;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006548#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02006549 RangeType.tp_getattro = (getattrofunc)RangeGetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006550 RangeType.tp_alloc = call_PyType_GenericAlloc;
6551 RangeType.tp_new = call_PyType_GenericNew;
6552 RangeType.tp_free = call_PyObject_Free;
6553#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02006554 RangeType.tp_getattr = (getattrfunc)RangeGetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006555#endif
6556
Bram Moolenaara80faa82020-04-12 19:37:17 +02006557 CLEAR_FIELD(CurrentType);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006558 CurrentType.tp_name = "vim.currentdata";
6559 CurrentType.tp_basicsize = sizeof(CurrentObject);
6560 CurrentType.tp_flags = Py_TPFLAGS_DEFAULT;
6561 CurrentType.tp_doc = "vim current object";
Bram Moolenaardd8aca62013-05-29 22:36:10 +02006562 CurrentType.tp_methods = CurrentMethods;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006563#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02006564 CurrentType.tp_getattro = (getattrofunc)CurrentGetattro;
6565 CurrentType.tp_setattro = (setattrofunc)CurrentSetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006566#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02006567 CurrentType.tp_getattr = (getattrfunc)CurrentGetattr;
6568 CurrentType.tp_setattr = (setattrfunc)CurrentSetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006569#endif
6570
Bram Moolenaara80faa82020-04-12 19:37:17 +02006571 CLEAR_FIELD(DictionaryType);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006572 DictionaryType.tp_name = "vim.dictionary";
6573 DictionaryType.tp_basicsize = sizeof(DictionaryObject);
Bram Moolenaard6e39182013-05-21 18:30:34 +02006574 DictionaryType.tp_dealloc = (destructor)DictionaryDestructor;
Bram Moolenaara9922d62013-05-30 13:01:18 +02006575 DictionaryType.tp_as_sequence = &DictionaryAsSeq;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006576 DictionaryType.tp_as_mapping = &DictionaryAsMapping;
Bram Moolenaara9922d62013-05-30 13:01:18 +02006577 DictionaryType.tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE;
Bram Moolenaar86181df2020-05-11 23:14:04 +02006578 DictionaryType.tp_doc = "dictionary pushing modifications to Vim structure";
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006579 DictionaryType.tp_methods = DictionaryMethods;
Bram Moolenaara9922d62013-05-30 13:01:18 +02006580 DictionaryType.tp_iter = (getiterfunc)DictionaryIter;
6581 DictionaryType.tp_new = (newfunc)DictionaryConstructor;
6582 DictionaryType.tp_alloc = (allocfunc)PyType_GenericAlloc;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006583#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02006584 DictionaryType.tp_getattro = (getattrofunc)DictionaryGetattro;
6585 DictionaryType.tp_setattro = (setattrofunc)DictionarySetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006586#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02006587 DictionaryType.tp_getattr = (getattrfunc)DictionaryGetattr;
6588 DictionaryType.tp_setattr = (setattrfunc)DictionarySetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006589#endif
6590
Bram Moolenaara80faa82020-04-12 19:37:17 +02006591 CLEAR_FIELD(ListType);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006592 ListType.tp_name = "vim.list";
Bram Moolenaard6e39182013-05-21 18:30:34 +02006593 ListType.tp_dealloc = (destructor)ListDestructor;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006594 ListType.tp_basicsize = sizeof(ListObject);
6595 ListType.tp_as_sequence = &ListAsSeq;
6596 ListType.tp_as_mapping = &ListAsMapping;
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02006597 ListType.tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE;
Bram Moolenaar86181df2020-05-11 23:14:04 +02006598 ListType.tp_doc = "list pushing modifications to Vim structure";
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006599 ListType.tp_methods = ListMethods;
Bram Moolenaard6e39182013-05-21 18:30:34 +02006600 ListType.tp_iter = (getiterfunc)ListIter;
Bram Moolenaar78cddbe2013-05-30 13:05:58 +02006601 ListType.tp_new = (newfunc)ListConstructor;
6602 ListType.tp_alloc = (allocfunc)PyType_GenericAlloc;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006603#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02006604 ListType.tp_getattro = (getattrofunc)ListGetattro;
6605 ListType.tp_setattro = (setattrofunc)ListSetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006606#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02006607 ListType.tp_getattr = (getattrfunc)ListGetattr;
6608 ListType.tp_setattr = (setattrfunc)ListSetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006609#endif
6610
Bram Moolenaara80faa82020-04-12 19:37:17 +02006611 CLEAR_FIELD(FunctionType);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02006612 FunctionType.tp_name = "vim.function";
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006613 FunctionType.tp_basicsize = sizeof(FunctionObject);
Bram Moolenaard6e39182013-05-21 18:30:34 +02006614 FunctionType.tp_dealloc = (destructor)FunctionDestructor;
6615 FunctionType.tp_call = (ternaryfunc)FunctionCall;
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02006616 FunctionType.tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE;
Bram Moolenaar86181df2020-05-11 23:14:04 +02006617 FunctionType.tp_doc = "object that calls Vim function";
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006618 FunctionType.tp_methods = FunctionMethods;
Bram Moolenaara5b725c2013-05-30 12:43:54 +02006619 FunctionType.tp_repr = (reprfunc)FunctionRepr;
Bram Moolenaar355fd9b2013-05-30 13:14:13 +02006620 FunctionType.tp_new = (newfunc)FunctionConstructor;
6621 FunctionType.tp_alloc = (allocfunc)PyType_GenericAlloc;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006622#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02006623 FunctionType.tp_getattro = (getattrofunc)FunctionGetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006624#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02006625 FunctionType.tp_getattr = (getattrfunc)FunctionGetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006626#endif
6627
Bram Moolenaara80faa82020-04-12 19:37:17 +02006628 CLEAR_FIELD(OptionsType);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02006629 OptionsType.tp_name = "vim.options";
6630 OptionsType.tp_basicsize = sizeof(OptionsObject);
Bram Moolenaar1028f4d2014-01-14 16:55:00 +01006631 OptionsType.tp_as_sequence = &OptionsAsSeq;
Bram Moolenaar07b88642013-05-29 22:58:32 +02006632 OptionsType.tp_flags = Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_GC;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02006633 OptionsType.tp_doc = "object for manipulating options";
Bram Moolenaar1028f4d2014-01-14 16:55:00 +01006634 OptionsType.tp_iter = (getiterfunc)OptionsIter;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02006635 OptionsType.tp_as_mapping = &OptionsAsMapping;
Bram Moolenaard6e39182013-05-21 18:30:34 +02006636 OptionsType.tp_dealloc = (destructor)OptionsDestructor;
6637 OptionsType.tp_traverse = (traverseproc)OptionsTraverse;
6638 OptionsType.tp_clear = (inquiry)OptionsClear;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02006639
Bram Moolenaar79a494d2018-07-22 04:30:21 +02006640#if PY_VERSION_HEX < 0x030700f0
Bram Moolenaara80faa82020-04-12 19:37:17 +02006641 CLEAR_FIELD(LoaderType);
Bram Moolenaar81c40c52013-06-12 14:41:04 +02006642 LoaderType.tp_name = "vim.Loader";
6643 LoaderType.tp_basicsize = sizeof(LoaderObject);
6644 LoaderType.tp_flags = Py_TPFLAGS_DEFAULT;
6645 LoaderType.tp_doc = "vim message object";
6646 LoaderType.tp_methods = LoaderMethods;
6647 LoaderType.tp_dealloc = (destructor)LoaderDestructor;
Bram Moolenaar79a494d2018-07-22 04:30:21 +02006648#endif
Bram Moolenaar81c40c52013-06-12 14:41:04 +02006649
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006650#if PY_MAJOR_VERSION >= 3
Bram Moolenaara80faa82020-04-12 19:37:17 +02006651 CLEAR_FIELD(vimmodule);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02006652 vimmodule.m_name = "vim";
6653 vimmodule.m_doc = "Vim Python interface\n";
6654 vimmodule.m_size = -1;
6655 vimmodule.m_methods = VimMethods;
6656#endif
6657}
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006658
6659#define PYTYPE_READY(type) \
6660 if (PyType_Ready(&type)) \
6661 return -1;
6662
6663 static int
Bram Moolenaarfb97f282013-07-09 17:42:46 +02006664init_types(void)
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006665{
6666 PYTYPE_READY(IterType);
6667 PYTYPE_READY(BufferType);
6668 PYTYPE_READY(RangeType);
6669 PYTYPE_READY(WindowType);
6670 PYTYPE_READY(TabPageType);
6671 PYTYPE_READY(BufMapType);
6672 PYTYPE_READY(WinListType);
6673 PYTYPE_READY(TabListType);
6674 PYTYPE_READY(CurrentType);
6675 PYTYPE_READY(DictionaryType);
6676 PYTYPE_READY(ListType);
6677 PYTYPE_READY(FunctionType);
6678 PYTYPE_READY(OptionsType);
6679 PYTYPE_READY(OutputType);
Bram Moolenaar79a494d2018-07-22 04:30:21 +02006680#if PY_VERSION_HEX < 0x030700f0
Bram Moolenaar9f3685a2013-06-12 14:20:36 +02006681 PYTYPE_READY(LoaderType);
Bram Moolenaar79a494d2018-07-22 04:30:21 +02006682#endif
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02006683 return 0;
6684}
6685
6686 static int
Bram Moolenaar5ab9d982013-06-16 14:25:57 +02006687init_sys_path(void)
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02006688{
6689 PyObject *path;
6690 PyObject *path_hook;
6691 PyObject *path_hooks;
6692
6693 if (!(path_hook = PyObject_GetAttrString(vim_module, "path_hook")))
6694 return -1;
6695
6696 if (!(path_hooks = PySys_GetObject("path_hooks")))
6697 {
6698 PyErr_Clear();
6699 path_hooks = PyList_New(1);
6700 PyList_SET_ITEM(path_hooks, 0, path_hook);
6701 if (PySys_SetObject("path_hooks", path_hooks))
6702 {
6703 Py_DECREF(path_hooks);
6704 return -1;
6705 }
6706 Py_DECREF(path_hooks);
6707 }
6708 else if (PyList_Check(path_hooks))
6709 {
6710 if (PyList_Append(path_hooks, path_hook))
6711 {
6712 Py_DECREF(path_hook);
6713 return -1;
6714 }
6715 Py_DECREF(path_hook);
6716 }
6717 else
6718 {
6719 VimTryStart();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006720 emsg(_("Failed to set path hook: sys.path_hooks is not a list\n"
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02006721 "You should now do the following:\n"
6722 "- append vim.path_hook to sys.path_hooks\n"
6723 "- append vim.VIM_SPECIAL_PATH to sys.path\n"));
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01006724 VimTryEnd(); // Discard the error
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02006725 Py_DECREF(path_hook);
6726 return 0;
6727 }
6728
6729 if (!(path = PySys_GetObject("path")))
6730 {
6731 PyErr_Clear();
6732 path = PyList_New(1);
6733 Py_INCREF(vim_special_path_object);
6734 PyList_SET_ITEM(path, 0, vim_special_path_object);
6735 if (PySys_SetObject("path", path))
6736 {
6737 Py_DECREF(path);
6738 return -1;
6739 }
6740 Py_DECREF(path);
6741 }
6742 else if (PyList_Check(path))
6743 {
6744 if (PyList_Append(path, vim_special_path_object))
6745 return -1;
6746 }
6747 else
6748 {
6749 VimTryStart();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006750 emsg(_("Failed to set path: sys.path is not a list\n"
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02006751 "You should now append vim.VIM_SPECIAL_PATH to sys.path"));
Bram Moolenaar9bf703d2019-11-30 19:44:38 +01006752 VimTryEnd(); // Discard the error
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02006753 }
6754
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006755 return 0;
6756}
6757
6758static BufMapObject TheBufferMap =
6759{
6760 PyObject_HEAD_INIT(&BufMapType)
6761};
6762
6763static WinListObject TheWindowList =
6764{
6765 PyObject_HEAD_INIT(&WinListType)
6766 NULL
6767};
6768
6769static CurrentObject TheCurrent =
6770{
6771 PyObject_HEAD_INIT(&CurrentType)
6772};
6773
6774static TabListObject TheTabPageList =
6775{
6776 PyObject_HEAD_INIT(&TabListType)
6777};
6778
6779static struct numeric_constant {
6780 char *name;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006781 int val;
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006782} numeric_constants[] = {
6783 {"VAR_LOCKED", VAR_LOCKED},
6784 {"VAR_FIXED", VAR_FIXED},
6785 {"VAR_SCOPE", VAR_SCOPE},
6786 {"VAR_DEF_SCOPE", VAR_DEF_SCOPE},
6787};
6788
6789static struct object_constant {
6790 char *name;
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006791 PyObject *valObject;
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006792} object_constants[] = {
6793 {"buffers", (PyObject *)(void *)&TheBufferMap},
6794 {"windows", (PyObject *)(void *)&TheWindowList},
6795 {"tabpages", (PyObject *)(void *)&TheTabPageList},
6796 {"current", (PyObject *)(void *)&TheCurrent},
Bram Moolenaarcac867a2013-05-21 19:50:34 +02006797
6798 {"Buffer", (PyObject *)&BufferType},
6799 {"Range", (PyObject *)&RangeType},
6800 {"Window", (PyObject *)&WindowType},
6801 {"TabPage", (PyObject *)&TabPageType},
6802 {"Dictionary", (PyObject *)&DictionaryType},
6803 {"List", (PyObject *)&ListType},
6804 {"Function", (PyObject *)&FunctionType},
6805 {"Options", (PyObject *)&OptionsType},
Bram Moolenaar79a494d2018-07-22 04:30:21 +02006806#if PY_VERSION_HEX < 0x030700f0
Bram Moolenaar81c40c52013-06-12 14:41:04 +02006807 {"_Loader", (PyObject *)&LoaderType},
Bram Moolenaar79a494d2018-07-22 04:30:21 +02006808#endif
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006809};
6810
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006811#define ADD_OBJECT(m, name, obj) \
Bram Moolenaardee2e312013-06-23 16:35:47 +02006812 if (PyModule_AddObject(m, name, obj)) \
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006813 return -1;
6814
6815#define ADD_CHECKED_OBJECT(m, name, obj) \
6816 { \
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006817 PyObject *valObject = obj; \
6818 if (!valObject) \
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006819 return -1; \
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006820 ADD_OBJECT(m, name, valObject); \
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006821 }
6822
6823 static int
Bram Moolenaardee2e312013-06-23 16:35:47 +02006824populate_module(PyObject *m)
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006825{
Bram Moolenaarc1ba10c2013-06-10 20:39:03 +02006826 int i;
6827 PyObject *other_module;
Bram Moolenaarf9c9b322013-06-10 20:47:36 +02006828 PyObject *attr;
Bram Moolenaar81c40c52013-06-12 14:41:04 +02006829 PyObject *imp;
Bram Moolenaar79a494d2018-07-22 04:30:21 +02006830#if PY_VERSION_HEX >= 0x030700f0
6831 PyObject *dict;
6832 PyObject *cls;
6833#endif
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006834
6835 for (i = 0; i < (int)(sizeof(numeric_constants)
6836 / sizeof(struct numeric_constant));
6837 ++i)
6838 ADD_CHECKED_OBJECT(m, numeric_constants[i].name,
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006839 PyInt_FromLong(numeric_constants[i].val));
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006840
6841 for (i = 0; i < (int)(sizeof(object_constants)
6842 / sizeof(struct object_constant));
6843 ++i)
6844 {
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006845 PyObject *valObject;
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006846
Bram Moolenaarc4b99e02013-06-23 14:30:47 +02006847 valObject = object_constants[i].valObject;
6848 Py_INCREF(valObject);
6849 ADD_OBJECT(m, object_constants[i].name, valObject);
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006850 }
6851
6852 if (!(VimError = PyErr_NewException("vim.error", NULL, NULL)))
6853 return -1;
6854 ADD_OBJECT(m, "error", VimError);
6855
Bram Moolenaarda6c0332019-09-01 16:01:30 +02006856 ADD_CHECKED_OBJECT(m, "vars", NEW_DICTIONARY(get_globvar_dict()));
6857 ADD_CHECKED_OBJECT(m, "vvars", NEW_DICTIONARY(get_vimvar_dict()));
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006858 ADD_CHECKED_OBJECT(m, "options",
6859 OptionsNew(SREQ_GLOBAL, NULL, dummy_check, NULL));
Bram Moolenaarf4258302013-06-02 18:20:17 +02006860
Bram Moolenaarc1ba10c2013-06-10 20:39:03 +02006861 if (!(other_module = PyImport_ImportModule("os")))
Bram Moolenaarf4258302013-06-02 18:20:17 +02006862 return -1;
Bram Moolenaarc1ba10c2013-06-10 20:39:03 +02006863 ADD_OBJECT(m, "os", other_module);
Bram Moolenaarf4258302013-06-02 18:20:17 +02006864
Bram Moolenaar22081f42016-06-01 20:38:34 +02006865#if PY_MAJOR_VERSION >= 3
Bram Moolenaarc1ba10c2013-06-10 20:39:03 +02006866 if (!(py_getcwd = PyObject_GetAttrString(other_module, "getcwd")))
Bram Moolenaarf4258302013-06-02 18:20:17 +02006867 return -1;
Bram Moolenaar22081f42016-06-01 20:38:34 +02006868#else
6869 if (!(py_getcwd = PyObject_GetAttrString(other_module, "getcwdu")))
6870 return -1;
6871#endif
Bram Moolenaarf4258302013-06-02 18:20:17 +02006872 ADD_OBJECT(m, "_getcwd", py_getcwd)
6873
Bram Moolenaarc1ba10c2013-06-10 20:39:03 +02006874 if (!(py_chdir = PyObject_GetAttrString(other_module, "chdir")))
Bram Moolenaarf4258302013-06-02 18:20:17 +02006875 return -1;
6876 ADD_OBJECT(m, "_chdir", py_chdir);
Bram Moolenaardee2e312013-06-23 16:35:47 +02006877 if (!(attr = PyObject_GetAttrString(m, "chdir")))
Bram Moolenaarf4258302013-06-02 18:20:17 +02006878 return -1;
Bram Moolenaarf9c9b322013-06-10 20:47:36 +02006879 if (PyObject_SetAttrString(other_module, "chdir", attr))
6880 {
6881 Py_DECREF(attr);
6882 return -1;
6883 }
6884 Py_DECREF(attr);
Bram Moolenaarf4258302013-06-02 18:20:17 +02006885
Bram Moolenaarc1ba10c2013-06-10 20:39:03 +02006886 if ((py_fchdir = PyObject_GetAttrString(other_module, "fchdir")))
Bram Moolenaarf4258302013-06-02 18:20:17 +02006887 {
6888 ADD_OBJECT(m, "_fchdir", py_fchdir);
Bram Moolenaardee2e312013-06-23 16:35:47 +02006889 if (!(attr = PyObject_GetAttrString(m, "fchdir")))
Bram Moolenaarf4258302013-06-02 18:20:17 +02006890 return -1;
Bram Moolenaarf9c9b322013-06-10 20:47:36 +02006891 if (PyObject_SetAttrString(other_module, "fchdir", attr))
6892 {
6893 Py_DECREF(attr);
6894 return -1;
6895 }
6896 Py_DECREF(attr);
Bram Moolenaarf4258302013-06-02 18:20:17 +02006897 }
Bram Moolenaare9056b12013-06-03 20:04:48 +02006898 else
6899 PyErr_Clear();
Bram Moolenaarf4258302013-06-02 18:20:17 +02006900
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02006901 if (!(vim_special_path_object = PyString_FromString(vim_special_path)))
6902 return -1;
6903
6904 ADD_OBJECT(m, "VIM_SPECIAL_PATH", vim_special_path_object);
6905
Bram Moolenaar79a494d2018-07-22 04:30:21 +02006906#if PY_VERSION_HEX >= 0x030700f0
6907 if (!(imp = PyImport_ImportModule("importlib.machinery")))
6908 return -1;
6909
6910 dict = PyModule_GetDict(imp);
6911
6912 if (!(cls = PyDict_GetItemString(dict, "PathFinder")))
6913 {
6914 Py_DECREF(imp);
6915 return -1;
6916 }
6917
6918 if (!(py_find_spec = PyObject_GetAttrString(cls, "find_spec")))
6919 {
6920 Py_DECREF(imp);
6921 return -1;
6922 }
6923
Bram Moolenaarb999ba22019-02-14 13:28:45 +01006924 if ((py_find_module = PyObject_GetAttrString(cls, "find_module")))
6925 {
6926 // find_module() is deprecated, this may stop working in some later
6927 // version.
6928 ADD_OBJECT(m, "_find_module", py_find_module);
6929 }
6930
Bram Moolenaar79a494d2018-07-22 04:30:21 +02006931 Py_DECREF(imp);
6932
6933 ADD_OBJECT(m, "_find_spec", py_find_spec);
6934#else
Bram Moolenaar81c40c52013-06-12 14:41:04 +02006935 if (!(imp = PyImport_ImportModule("imp")))
6936 return -1;
6937
6938 if (!(py_find_module = PyObject_GetAttrString(imp, "find_module")))
6939 {
6940 Py_DECREF(imp);
6941 return -1;
6942 }
6943
6944 if (!(py_load_module = PyObject_GetAttrString(imp, "load_module")))
6945 {
6946 Py_DECREF(py_find_module);
6947 Py_DECREF(imp);
6948 return -1;
6949 }
6950
6951 Py_DECREF(imp);
6952
Bram Moolenaar9f3685a2013-06-12 14:20:36 +02006953 ADD_OBJECT(m, "_find_module", py_find_module);
6954 ADD_OBJECT(m, "_load_module", py_load_module);
Bram Moolenaar79a494d2018-07-22 04:30:21 +02006955#endif
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02006956
Bram Moolenaar1dc28782013-05-21 19:11:01 +02006957 return 0;
6958}