blob: 5ecc239611fcd374f87b4e5bf4cad6bac6e25618 [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 Moolenaarc1a995d2012-08-08 16:05:07 +020016#if PY_VERSION_HEX < 0x02050000
17typedef int Py_ssize_t; /* Python 2.4 and earlier don't have this type. */
18#endif
19
Bram Moolenaar91805fc2011-06-26 04:01:44 +020020#ifdef FEAT_MBYTE
21# define ENC_OPT p_enc
22#else
23# define ENC_OPT "latin1"
24#endif
Bram Moolenaard620aa92013-05-17 16:40:06 +020025#define DOPY_FUNC "_vim_pydo"
Bram Moolenaar91805fc2011-06-26 04:01:44 +020026
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +020027#define PyErr_SetVim(str) PyErr_SetString(VimError, str)
28
29#define INVALID_BUFFER_VALUE ((buf_T *)(-1))
30#define INVALID_WINDOW_VALUE ((win_T *)(-1))
Bram Moolenaar5e538ec2013-05-15 15:12:29 +020031#define INVALID_TABPAGE_VALUE ((tabpage_T *)(-1))
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +020032
Bram Moolenaarb52f4c02013-05-21 18:19:38 +020033typedef void (*rangeinitializer)(void *);
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +020034typedef void (*runner)(const char *, void *
35#ifdef PY_CAN_RECURSE
36 , PyGILState_STATE *
37#endif
38 );
Bram Moolenaarb52f4c02013-05-21 18:19:38 +020039
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +020040static int ConvertFromPyObject(PyObject *, typval_T *);
41static int _ConvertFromPyObject(PyObject *, typval_T *, PyObject *);
Bram Moolenaarcabf80f2013-05-17 16:18:33 +020042static PyObject *WindowNew(win_T *, tabpage_T *);
43static PyObject *BufferNew (buf_T *);
44static PyObject *LineToString(const char *);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +020045
46static PyInt RangeStart;
47static PyInt RangeEnd;
48
Bram Moolenaarb52f4c02013-05-21 18:19:38 +020049static PyObject *globals;
50
Bram Moolenaar170bf1a2010-07-24 23:51:45 +020051/*
52 * obtain a lock on the Vim data structures
53 */
54 static void
55Python_Lock_Vim(void)
56{
57}
58
59/*
60 * release a lock on the Vim data structures
61 */
62 static void
63Python_Release_Vim(void)
64{
65}
66
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +020067/* Output buffer management
Bram Moolenaar170bf1a2010-07-24 23:51:45 +020068 */
69
Bram Moolenaar2eea1982010-09-21 16:49:37 +020070/* Function to write a line, points to either msg() or emsg(). */
Bram Moolenaar170bf1a2010-07-24 23:51:45 +020071typedef void (*writefn)(char_u *);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +020072
73static PyTypeObject OutputType;
Bram Moolenaar170bf1a2010-07-24 23:51:45 +020074
75typedef struct
76{
77 PyObject_HEAD
78 long softspace;
79 long error;
80} OutputObject;
81
Bram Moolenaar77045652012-09-21 13:46:06 +020082 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +020083OutputSetattr(OutputObject *self, char *name, PyObject *val)
Bram Moolenaar77045652012-09-21 13:46:06 +020084{
85 if (val == NULL)
86 {
Bram Moolenaar8661b172013-05-15 15:44:28 +020087 PyErr_SetString(PyExc_AttributeError,
88 _("can't delete OutputObject attributes"));
Bram Moolenaar77045652012-09-21 13:46:06 +020089 return -1;
90 }
91
92 if (strcmp(name, "softspace") == 0)
93 {
94 if (!PyInt_Check(val))
95 {
96 PyErr_SetString(PyExc_TypeError, _("softspace must be an integer"));
97 return -1;
98 }
99
Bram Moolenaard6e39182013-05-21 18:30:34 +0200100 self->softspace = PyInt_AsLong(val);
Bram Moolenaar77045652012-09-21 13:46:06 +0200101 return 0;
102 }
103
104 PyErr_SetString(PyExc_AttributeError, _("invalid attribute"));
105 return -1;
106}
107
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +0200108/* Buffer IO, we write one whole line at a time. */
109static garray_T io_ga = {0, 0, 1, 80, NULL};
110static writefn old_fn = NULL;
111
112 static void
113PythonIO_Flush(void)
114{
115 if (old_fn != NULL && io_ga.ga_len > 0)
116 {
117 ((char_u *)io_ga.ga_data)[io_ga.ga_len] = NUL;
118 old_fn((char_u *)io_ga.ga_data);
119 }
120 io_ga.ga_len = 0;
121}
122
123 static void
124writer(writefn fn, char_u *str, PyInt n)
125{
126 char_u *ptr;
127
128 /* Flush when switching output function. */
129 if (fn != old_fn)
130 PythonIO_Flush();
131 old_fn = fn;
132
133 /* Write each NL separated line. Text after the last NL is kept for
134 * writing later. */
135 while (n > 0 && (ptr = memchr(str, '\n', n)) != NULL)
136 {
137 PyInt len = ptr - str;
138
139 if (ga_grow(&io_ga, (int)(len + 1)) == FAIL)
140 break;
141
142 mch_memmove(((char *)io_ga.ga_data) + io_ga.ga_len, str, (size_t)len);
143 ((char *)io_ga.ga_data)[io_ga.ga_len + len] = NUL;
144 fn((char_u *)io_ga.ga_data);
145 str = ptr + 1;
146 n -= len + 1;
147 io_ga.ga_len = 0;
148 }
149
150 /* Put the remaining text into io_ga for later printing. */
151 if (n > 0 && ga_grow(&io_ga, (int)(n + 1)) == OK)
152 {
153 mch_memmove(((char *)io_ga.ga_data) + io_ga.ga_len, str, (size_t)n);
154 io_ga.ga_len += (int)n;
155 }
156}
157
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200158 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +0200159OutputWrite(OutputObject *self, PyObject *args)
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200160{
Bram Moolenaare8cdcef2012-09-12 20:21:43 +0200161 Py_ssize_t len = 0;
Bram Moolenaar19e60942011-06-19 00:27:51 +0200162 char *str = NULL;
Bram Moolenaard6e39182013-05-21 18:30:34 +0200163 int error = self->error;
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200164
Bram Moolenaar27564802011-09-07 19:30:21 +0200165 if (!PyArg_ParseTuple(args, "et#", ENC_OPT, &str, &len))
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200166 return NULL;
167
168 Py_BEGIN_ALLOW_THREADS
169 Python_Lock_Vim();
170 writer((writefn)(error ? emsg : msg), (char_u *)str, len);
171 Python_Release_Vim();
172 Py_END_ALLOW_THREADS
Bram Moolenaar19e60942011-06-19 00:27:51 +0200173 PyMem_Free(str);
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200174
175 Py_INCREF(Py_None);
176 return Py_None;
177}
178
179 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +0200180OutputWritelines(OutputObject *self, PyObject *args)
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200181{
182 PyInt n;
183 PyInt i;
184 PyObject *list;
Bram Moolenaard6e39182013-05-21 18:30:34 +0200185 int error = self->error;
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200186
187 if (!PyArg_ParseTuple(args, "O", &list))
188 return NULL;
189 Py_INCREF(list);
190
Bram Moolenaardb913952012-06-29 12:54:53 +0200191 if (!PyList_Check(list))
192 {
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200193 PyErr_SetString(PyExc_TypeError, _("writelines() requires list of strings"));
194 Py_DECREF(list);
195 return NULL;
196 }
197
198 n = PyList_Size(list);
199
200 for (i = 0; i < n; ++i)
201 {
202 PyObject *line = PyList_GetItem(list, i);
Bram Moolenaar19e60942011-06-19 00:27:51 +0200203 char *str = NULL;
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200204 PyInt len;
205
Bram Moolenaardb913952012-06-29 12:54:53 +0200206 if (!PyArg_Parse(line, "et#", ENC_OPT, &str, &len))
207 {
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200208 PyErr_SetString(PyExc_TypeError, _("writelines() requires list of strings"));
209 Py_DECREF(list);
210 return NULL;
211 }
212
213 Py_BEGIN_ALLOW_THREADS
214 Python_Lock_Vim();
215 writer((writefn)(error ? emsg : msg), (char_u *)str, len);
216 Python_Release_Vim();
217 Py_END_ALLOW_THREADS
Bram Moolenaar19e60942011-06-19 00:27:51 +0200218 PyMem_Free(str);
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200219 }
220
221 Py_DECREF(list);
222 Py_INCREF(Py_None);
223 return Py_None;
224}
225
Bram Moolenaara29a37d2011-03-22 15:47:44 +0100226 static PyObject *
Bram Moolenaar182dc4f2013-05-21 19:01:55 +0200227OutputFlush(PyObject *self UNUSED)
Bram Moolenaara29a37d2011-03-22 15:47:44 +0100228{
229 /* do nothing */
230 Py_INCREF(Py_None);
231 return Py_None;
232}
233
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200234/***************/
235
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +0200236static struct PyMethodDef OutputMethods[] = {
Bram Moolenaar182dc4f2013-05-21 19:01:55 +0200237 /* name, function, calling, doc */
238 {"write", (PyCFunction)OutputWrite, METH_VARARGS, ""},
239 {"writelines", (PyCFunction)OutputWritelines, METH_VARARGS, ""},
240 {"flush", (PyCFunction)OutputFlush, METH_NOARGS, ""},
241 { NULL, NULL, 0, NULL}
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +0200242};
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200243
244static OutputObject Output =
245{
246 PyObject_HEAD_INIT(&OutputType)
247 0,
248 0
249};
250
251static OutputObject Error =
252{
253 PyObject_HEAD_INIT(&OutputType)
254 0,
255 1
256};
257
258 static int
259PythonIO_Init_io(void)
260{
261 PySys_SetObject("stdout", (PyObject *)(void *)&Output);
262 PySys_SetObject("stderr", (PyObject *)(void *)&Error);
263
264 if (PyErr_Occurred())
265 {
266 EMSG(_("E264: Python: Error initialising I/O objects"));
267 return -1;
268 }
269
270 return 0;
271}
272
273
274static PyObject *VimError;
275
276/* Check to see whether a Vim error has been reported, or a keyboard
277 * interrupt has been detected.
278 */
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200279
280 static void
281VimTryStart(void)
282{
283 ++trylevel;
284}
285
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200286 static int
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200287VimTryEnd(void)
288{
289 --trylevel;
290 if (got_int)
291 {
292 PyErr_SetNone(PyExc_KeyboardInterrupt);
293 return 1;
294 }
295 else if (!did_throw)
296 return 0;
297 else if (PyErr_Occurred())
298 return 1;
299 else
300 {
301 PyErr_SetVim((char *) current_exception->value);
302 discard_current_exception();
303 return 1;
304 }
305}
306
307 static int
308VimCheckInterrupt(void)
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200309{
310 if (got_int)
311 {
312 PyErr_SetNone(PyExc_KeyboardInterrupt);
313 return 1;
314 }
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200315 return 0;
316}
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200317
318/* Vim module - Implementation
319 */
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +0200320
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200321 static PyObject *
322VimCommand(PyObject *self UNUSED, PyObject *args)
323{
324 char *cmd;
325 PyObject *result;
326
327 if (!PyArg_ParseTuple(args, "s", &cmd))
328 return NULL;
329
330 PyErr_Clear();
331
332 Py_BEGIN_ALLOW_THREADS
333 Python_Lock_Vim();
334
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200335 VimTryStart();
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200336 do_cmdline_cmd((char_u *)cmd);
337 update_screen(VALID);
338
339 Python_Release_Vim();
340 Py_END_ALLOW_THREADS
341
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200342 if (VimTryEnd())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200343 result = NULL;
344 else
345 result = Py_None;
346
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200347
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200348 Py_XINCREF(result);
349 return result;
350}
351
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200352/*
353 * Function to translate a typval_T into a PyObject; this will recursively
354 * translate lists/dictionaries into their Python equivalents.
355 *
356 * The depth parameter is to avoid infinite recursion, set it to 1 when
357 * you call VimToPython.
358 */
359 static PyObject *
360VimToPython(typval_T *our_tv, int depth, PyObject *lookupDict)
361{
362 PyObject *result;
363 PyObject *newObj;
Bram Moolenaardb913952012-06-29 12:54:53 +0200364 char ptrBuf[sizeof(void *) * 2 + 3];
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200365
366 /* Avoid infinite recursion */
367 if (depth > 100)
368 {
369 Py_INCREF(Py_None);
370 result = Py_None;
371 return result;
372 }
373
374 /* Check if we run into a recursive loop. The item must be in lookupDict
375 * then and we can use it again. */
376 if ((our_tv->v_type == VAR_LIST && our_tv->vval.v_list != NULL)
377 || (our_tv->v_type == VAR_DICT && our_tv->vval.v_dict != NULL))
378 {
Bram Moolenaardb913952012-06-29 12:54:53 +0200379 sprintf(ptrBuf, "%p",
380 our_tv->v_type == VAR_LIST ? (void *)our_tv->vval.v_list
381 : (void *)our_tv->vval.v_dict);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200382 result = PyDict_GetItemString(lookupDict, ptrBuf);
383 if (result != NULL)
384 {
385 Py_INCREF(result);
386 return result;
387 }
388 }
389
390 if (our_tv->v_type == VAR_STRING)
391 {
Bram Moolenaard1f13fd2012-10-05 21:30:07 +0200392 result = Py_BuildValue("s", our_tv->vval.v_string == NULL
393 ? "" : (char *)our_tv->vval.v_string);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200394 }
395 else if (our_tv->v_type == VAR_NUMBER)
396 {
397 char buf[NUMBUFLEN];
398
399 /* For backwards compatibility numbers are stored as strings. */
400 sprintf(buf, "%ld", (long)our_tv->vval.v_number);
401 result = Py_BuildValue("s", buf);
402 }
403# ifdef FEAT_FLOAT
404 else if (our_tv->v_type == VAR_FLOAT)
405 {
406 char buf[NUMBUFLEN];
407
408 sprintf(buf, "%f", our_tv->vval.v_float);
409 result = Py_BuildValue("s", buf);
410 }
411# endif
412 else if (our_tv->v_type == VAR_LIST)
413 {
414 list_T *list = our_tv->vval.v_list;
415 listitem_T *curr;
416
417 result = PyList_New(0);
418
419 if (list != NULL)
420 {
421 PyDict_SetItemString(lookupDict, ptrBuf, result);
422
423 for (curr = list->lv_first; curr != NULL; curr = curr->li_next)
424 {
425 newObj = VimToPython(&curr->li_tv, depth + 1, lookupDict);
426 PyList_Append(result, newObj);
427 Py_DECREF(newObj);
428 }
429 }
430 }
431 else if (our_tv->v_type == VAR_DICT)
432 {
433 result = PyDict_New();
434
435 if (our_tv->vval.v_dict != NULL)
436 {
437 hashtab_T *ht = &our_tv->vval.v_dict->dv_hashtab;
438 long_u todo = ht->ht_used;
439 hashitem_T *hi;
440 dictitem_T *di;
441
442 PyDict_SetItemString(lookupDict, ptrBuf, result);
443
444 for (hi = ht->ht_array; todo > 0; ++hi)
445 {
446 if (!HASHITEM_EMPTY(hi))
447 {
448 --todo;
449
450 di = dict_lookup(hi);
451 newObj = VimToPython(&di->di_tv, depth + 1, lookupDict);
452 PyDict_SetItemString(result, (char *)hi->hi_key, newObj);
453 Py_DECREF(newObj);
454 }
455 }
456 }
457 }
458 else
459 {
460 Py_INCREF(Py_None);
461 result = Py_None;
462 }
463
464 return result;
465}
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200466
467 static PyObject *
Bram Moolenaar774267b2013-05-21 20:51:59 +0200468VimEval(PyObject *self UNUSED, PyObject *args)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200469{
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200470 char *expr;
471 typval_T *our_tv;
472 PyObject *result;
473 PyObject *lookup_dict;
474
475 if (!PyArg_ParseTuple(args, "s", &expr))
476 return NULL;
477
478 Py_BEGIN_ALLOW_THREADS
479 Python_Lock_Vim();
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200480 VimTryStart();
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200481 our_tv = eval_expr((char_u *)expr, NULL);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200482 Python_Release_Vim();
483 Py_END_ALLOW_THREADS
484
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200485 if (VimTryEnd())
486 return NULL;
487
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200488 if (our_tv == NULL)
489 {
490 PyErr_SetVim(_("invalid expression"));
491 return NULL;
492 }
493
494 /* Convert the Vim type into a Python type. Create a dictionary that's
495 * used to check for recursive loops. */
496 lookup_dict = PyDict_New();
497 result = VimToPython(our_tv, 1, lookup_dict);
498 Py_DECREF(lookup_dict);
499
500
501 Py_BEGIN_ALLOW_THREADS
502 Python_Lock_Vim();
503 free_tv(our_tv);
504 Python_Release_Vim();
505 Py_END_ALLOW_THREADS
506
507 return result;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200508}
509
Bram Moolenaardb913952012-06-29 12:54:53 +0200510static PyObject *ConvertToPyObject(typval_T *);
511
512 static PyObject *
Bram Moolenaar9e74e302013-05-17 21:20:17 +0200513VimEvalPy(PyObject *self UNUSED, PyObject *args)
Bram Moolenaardb913952012-06-29 12:54:53 +0200514{
Bram Moolenaardb913952012-06-29 12:54:53 +0200515 char *expr;
516 typval_T *our_tv;
517 PyObject *result;
518
519 if (!PyArg_ParseTuple(args, "s", &expr))
520 return NULL;
521
522 Py_BEGIN_ALLOW_THREADS
523 Python_Lock_Vim();
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200524 VimTryStart();
Bram Moolenaardb913952012-06-29 12:54:53 +0200525 our_tv = eval_expr((char_u *)expr, NULL);
Bram Moolenaardb913952012-06-29 12:54:53 +0200526 Python_Release_Vim();
527 Py_END_ALLOW_THREADS
528
Bram Moolenaara7b64ce2013-05-21 20:40:40 +0200529 if (VimTryEnd())
530 return NULL;
531
Bram Moolenaardb913952012-06-29 12:54:53 +0200532 if (our_tv == NULL)
533 {
534 PyErr_SetVim(_("invalid expression"));
535 return NULL;
536 }
537
538 result = ConvertToPyObject(our_tv);
539 Py_BEGIN_ALLOW_THREADS
540 Python_Lock_Vim();
541 free_tv(our_tv);
542 Python_Release_Vim();
543 Py_END_ALLOW_THREADS
544
545 return result;
Bram Moolenaardb913952012-06-29 12:54:53 +0200546}
547
548 static PyObject *
549VimStrwidth(PyObject *self UNUSED, PyObject *args)
550{
551 char *expr;
552
553 if (!PyArg_ParseTuple(args, "s", &expr))
554 return NULL;
555
Bram Moolenaara54bf402012-12-05 16:30:07 +0100556 return PyLong_FromLong(
557#ifdef FEAT_MBYTE
558 mb_string2cells((char_u *)expr, (int)STRLEN(expr))
559#else
560 STRLEN(expr)
561#endif
562 );
Bram Moolenaardb913952012-06-29 12:54:53 +0200563}
564
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200565/*
566 * Vim module - Definitions
567 */
568
569static struct PyMethodDef VimMethods[] = {
Bram Moolenaar182dc4f2013-05-21 19:01:55 +0200570 /* name, function, calling, documentation */
571 {"command", VimCommand, METH_VARARGS, "Execute a Vim ex-mode command" },
572 {"eval", VimEval, METH_VARARGS, "Evaluate an expression using Vim evaluator" },
573 {"bindeval", VimEvalPy, METH_VARARGS, "Like eval(), but returns objects attached to vim ones"},
574 {"strwidth", VimStrwidth, METH_VARARGS, "Screen string width, counts <Tab> as having width 1"},
575 { NULL, NULL, 0, NULL }
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200576};
577
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200578/*
Bram Moolenaarb6c589a2013-05-15 14:39:52 +0200579 * Generic iterator object
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200580 */
581
Bram Moolenaarb6c589a2013-05-15 14:39:52 +0200582static PyTypeObject IterType;
583
584typedef PyObject *(*nextfun)(void **);
585typedef void (*destructorfun)(void *);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +0200586typedef int (*traversefun)(void *, visitproc, void *);
587typedef int (*clearfun)(void **);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +0200588
Bram Moolenaar9e74e302013-05-17 21:20:17 +0200589/* Main purpose of this object is removing the need for do python
590 * initialization (i.e. PyType_Ready and setting type attributes) for a big
591 * bunch of objects. */
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +0200592
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200593typedef struct
594{
595 PyObject_HEAD
Bram Moolenaarb6c589a2013-05-15 14:39:52 +0200596 void *cur;
597 nextfun next;
598 destructorfun destruct;
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +0200599 traversefun traverse;
600 clearfun clear;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +0200601} IterObject;
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200602
Bram Moolenaarb6c589a2013-05-15 14:39:52 +0200603 static PyObject *
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +0200604IterNew(void *start, destructorfun destruct, nextfun next, traversefun traverse,
605 clearfun clear)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200606{
Bram Moolenaarb6c589a2013-05-15 14:39:52 +0200607 IterObject *self;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200608
Bram Moolenaar774267b2013-05-21 20:51:59 +0200609 self = PyObject_GC_New(IterObject, &IterType);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +0200610 self->cur = start;
611 self->next = next;
612 self->destruct = destruct;
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +0200613 self->traverse = traverse;
614 self->clear = clear;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200615
Bram Moolenaarb6c589a2013-05-15 14:39:52 +0200616 return (PyObject *)(self);
617}
618
619 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +0200620IterDestructor(IterObject *self)
Bram Moolenaarb6c589a2013-05-15 14:39:52 +0200621{
Bram Moolenaar774267b2013-05-21 20:51:59 +0200622 PyObject_GC_UnTrack((void *)(self));
Bram Moolenaard6e39182013-05-21 18:30:34 +0200623 self->destruct(self->cur);
Bram Moolenaar774267b2013-05-21 20:51:59 +0200624 PyObject_GC_Del((void *)(self));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200625}
626
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +0200627 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +0200628IterTraverse(IterObject *self, visitproc visit, void *arg)
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +0200629{
Bram Moolenaard6e39182013-05-21 18:30:34 +0200630 if (self->traverse != NULL)
631 return self->traverse(self->cur, visit, arg);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +0200632 else
633 return 0;
634}
635
Bram Moolenaar9e74e302013-05-17 21:20:17 +0200636/* Mac OSX defines clear() somewhere. */
637#ifdef clear
638# undef clear
639#endif
640
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +0200641 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +0200642IterClear(IterObject *self)
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +0200643{
Bram Moolenaard6e39182013-05-21 18:30:34 +0200644 if (self->clear != NULL)
645 return self->clear(&self->cur);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +0200646 else
647 return 0;
648}
649
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200650 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +0200651IterNext(IterObject *self)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200652{
Bram Moolenaard6e39182013-05-21 18:30:34 +0200653 return self->next(&self->cur);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200654}
655
Bram Moolenaarb6c589a2013-05-15 14:39:52 +0200656 static PyObject *
657IterIter(PyObject *self)
658{
659 return self;
660}
Bram Moolenaardfa38d42013-05-15 13:38:47 +0200661
Bram Moolenaardb913952012-06-29 12:54:53 +0200662typedef struct pylinkedlist_S {
663 struct pylinkedlist_S *pll_next;
664 struct pylinkedlist_S *pll_prev;
665 PyObject *pll_obj;
666} pylinkedlist_T;
667
668static pylinkedlist_T *lastdict = NULL;
669static pylinkedlist_T *lastlist = NULL;
670
671 static void
672pyll_remove(pylinkedlist_T *ref, pylinkedlist_T **last)
673{
674 if (ref->pll_prev == NULL)
675 {
676 if (ref->pll_next == NULL)
677 {
678 *last = NULL;
679 return;
680 }
681 }
682 else
683 ref->pll_prev->pll_next = ref->pll_next;
684
685 if (ref->pll_next == NULL)
686 *last = ref->pll_prev;
687 else
688 ref->pll_next->pll_prev = ref->pll_prev;
689}
690
691 static void
692pyll_add(PyObject *self, pylinkedlist_T *ref, pylinkedlist_T **last)
693{
694 if (*last == NULL)
695 ref->pll_prev = NULL;
696 else
697 {
698 (*last)->pll_next = ref;
699 ref->pll_prev = *last;
700 }
701 ref->pll_next = NULL;
702 ref->pll_obj = self;
703 *last = ref;
704}
705
706static PyTypeObject DictionaryType;
707
Bram Moolenaar231e1a12012-09-05 18:45:28 +0200708#define DICTKEY_GET_NOTEMPTY(err) \
709 DICTKEY_GET(err) \
710 if (*key == NUL) \
711 { \
712 PyErr_SetString(PyExc_ValueError, _("empty keys are not allowed")); \
713 return err; \
714 }
715
Bram Moolenaardb913952012-06-29 12:54:53 +0200716typedef struct
717{
718 PyObject_HEAD
719 dict_T *dict;
720 pylinkedlist_T ref;
721} DictionaryObject;
722
723 static PyObject *
724DictionaryNew(dict_T *dict)
725{
726 DictionaryObject *self;
727
728 self = PyObject_NEW(DictionaryObject, &DictionaryType);
729 if (self == NULL)
730 return NULL;
731 self->dict = dict;
732 ++dict->dv_refcount;
733
734 pyll_add((PyObject *)(self), &self->ref, &lastdict);
735
736 return (PyObject *)(self);
737}
738
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200739 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +0200740DictionaryDestructor(DictionaryObject *self)
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200741{
Bram Moolenaard6e39182013-05-21 18:30:34 +0200742 pyll_remove(&self->ref, &lastdict);
743 dict_unref(self->dict);
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200744
745 DESTRUCTOR_FINISH(self);
746}
747
Bram Moolenaardb913952012-06-29 12:54:53 +0200748 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +0200749DictionarySetattr(DictionaryObject *self, char *name, PyObject *val)
Bram Moolenaar66b79852012-09-21 14:00:35 +0200750{
751 if (val == NULL)
752 {
753 PyErr_SetString(PyExc_AttributeError, _("Cannot delete DictionaryObject attributes"));
754 return -1;
755 }
756
757 if (strcmp(name, "locked") == 0)
758 {
Bram Moolenaard6e39182013-05-21 18:30:34 +0200759 if (self->dict->dv_lock == VAR_FIXED)
Bram Moolenaar66b79852012-09-21 14:00:35 +0200760 {
761 PyErr_SetString(PyExc_TypeError, _("Cannot modify fixed dictionary"));
762 return -1;
763 }
764 else
765 {
Bram Moolenaarb983f752013-05-15 16:11:50 +0200766 int istrue = PyObject_IsTrue(val);
767 if (istrue == -1)
768 return -1;
769 else if (istrue)
Bram Moolenaard6e39182013-05-21 18:30:34 +0200770 self->dict->dv_lock = VAR_LOCKED;
Bram Moolenaar66b79852012-09-21 14:00:35 +0200771 else
Bram Moolenaard6e39182013-05-21 18:30:34 +0200772 self->dict->dv_lock = 0;
Bram Moolenaar66b79852012-09-21 14:00:35 +0200773 }
774 return 0;
775 }
776 else
777 {
778 PyErr_SetString(PyExc_AttributeError, _("Cannot set this attribute"));
779 return -1;
780 }
781}
782
783 static PyInt
Bram Moolenaard6e39182013-05-21 18:30:34 +0200784DictionaryLength(DictionaryObject *self)
Bram Moolenaardb913952012-06-29 12:54:53 +0200785{
Bram Moolenaard6e39182013-05-21 18:30:34 +0200786 return ((PyInt) (self->dict->dv_hashtab.ht_used));
Bram Moolenaardb913952012-06-29 12:54:53 +0200787}
788
789 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +0200790DictionaryItem(DictionaryObject *self, PyObject *keyObject)
Bram Moolenaardb913952012-06-29 12:54:53 +0200791{
792 char_u *key;
Bram Moolenaar231e1a12012-09-05 18:45:28 +0200793 dictitem_T *di;
Bram Moolenaardb913952012-06-29 12:54:53 +0200794 DICTKEY_DECL
795
Bram Moolenaar231e1a12012-09-05 18:45:28 +0200796 DICTKEY_GET_NOTEMPTY(NULL)
Bram Moolenaardb913952012-06-29 12:54:53 +0200797
Bram Moolenaard6e39182013-05-21 18:30:34 +0200798 di = dict_find(self->dict, key, -1);
Bram Moolenaar231e1a12012-09-05 18:45:28 +0200799
Bram Moolenaar696c2112012-09-21 13:43:14 +0200800 DICTKEY_UNREF
801
Bram Moolenaar231e1a12012-09-05 18:45:28 +0200802 if (di == NULL)
803 {
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200804 PyErr_SetObject(PyExc_KeyError, keyObject);
Bram Moolenaar231e1a12012-09-05 18:45:28 +0200805 return NULL;
806 }
Bram Moolenaardb913952012-06-29 12:54:53 +0200807
Bram Moolenaar231e1a12012-09-05 18:45:28 +0200808 return ConvertToPyObject(&di->di_tv);
Bram Moolenaardb913952012-06-29 12:54:53 +0200809}
810
811 static PyInt
Bram Moolenaard6e39182013-05-21 18:30:34 +0200812DictionaryAssItem(DictionaryObject *self, PyObject *keyObject, PyObject *valObject)
Bram Moolenaardb913952012-06-29 12:54:53 +0200813{
814 char_u *key;
815 typval_T tv;
Bram Moolenaard6e39182013-05-21 18:30:34 +0200816 dict_T *d = self->dict;
Bram Moolenaardb913952012-06-29 12:54:53 +0200817 dictitem_T *di;
818 DICTKEY_DECL
819
820 if (d->dv_lock)
821 {
822 PyErr_SetVim(_("dict is locked"));
823 return -1;
824 }
825
Bram Moolenaar231e1a12012-09-05 18:45:28 +0200826 DICTKEY_GET_NOTEMPTY(-1)
Bram Moolenaardb913952012-06-29 12:54:53 +0200827
828 di = dict_find(d, key, -1);
829
830 if (valObject == NULL)
831 {
Bram Moolenaarf27839c2012-06-29 16:19:50 +0200832 hashitem_T *hi;
833
Bram Moolenaardb913952012-06-29 12:54:53 +0200834 if (di == NULL)
835 {
Bram Moolenaar696c2112012-09-21 13:43:14 +0200836 DICTKEY_UNREF
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200837 PyErr_SetObject(PyExc_KeyError, keyObject);
Bram Moolenaardb913952012-06-29 12:54:53 +0200838 return -1;
839 }
Bram Moolenaarf27839c2012-06-29 16:19:50 +0200840 hi = hash_find(&d->dv_hashtab, di->di_key);
Bram Moolenaardb913952012-06-29 12:54:53 +0200841 hash_remove(&d->dv_hashtab, hi);
842 dictitem_free(di);
843 return 0;
844 }
845
846 if (ConvertFromPyObject(valObject, &tv) == -1)
Bram Moolenaardb913952012-06-29 12:54:53 +0200847 return -1;
Bram Moolenaardb913952012-06-29 12:54:53 +0200848
849 if (di == NULL)
850 {
851 di = dictitem_alloc(key);
852 if (di == NULL)
853 {
854 PyErr_NoMemory();
855 return -1;
856 }
857 di->di_tv.v_lock = 0;
858
859 if (dict_add(d, di) == FAIL)
860 {
Bram Moolenaar696c2112012-09-21 13:43:14 +0200861 DICTKEY_UNREF
Bram Moolenaardb913952012-06-29 12:54:53 +0200862 vim_free(di);
863 PyErr_SetVim(_("failed to add key to dictionary"));
864 return -1;
865 }
866 }
867 else
868 clear_tv(&di->di_tv);
869
870 DICTKEY_UNREF
871
872 copy_tv(&tv, &di->di_tv);
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +0200873 clear_tv(&tv);
Bram Moolenaardb913952012-06-29 12:54:53 +0200874 return 0;
875}
876
877 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +0200878DictionaryListKeys(DictionaryObject *self)
Bram Moolenaardb913952012-06-29 12:54:53 +0200879{
Bram Moolenaard6e39182013-05-21 18:30:34 +0200880 dict_T *dict = self->dict;
Bram Moolenaardb913952012-06-29 12:54:53 +0200881 long_u todo = dict->dv_hashtab.ht_used;
882 Py_ssize_t i = 0;
883 PyObject *r;
884 hashitem_T *hi;
885
886 r = PyList_New(todo);
887 for (hi = dict->dv_hashtab.ht_array; todo > 0; ++hi)
888 {
889 if (!HASHITEM_EMPTY(hi))
890 {
891 PyList_SetItem(r, i, PyBytes_FromString((char *)(hi->hi_key)));
892 --todo;
893 ++i;
894 }
895 }
896 return r;
897}
898
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +0200899static PyMappingMethods DictionaryAsMapping = {
900 (lenfunc) DictionaryLength,
901 (binaryfunc) DictionaryItem,
902 (objobjargproc) DictionaryAssItem,
903};
904
Bram Moolenaardb913952012-06-29 12:54:53 +0200905static struct PyMethodDef DictionaryMethods[] = {
Bram Moolenaar182dc4f2013-05-21 19:01:55 +0200906 {"keys", (PyCFunction)DictionaryListKeys, METH_NOARGS, ""},
907 { NULL, NULL, 0, NULL }
Bram Moolenaardb913952012-06-29 12:54:53 +0200908};
909
910static PyTypeObject ListType;
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200911static PySequenceMethods ListAsSeq;
912static PyMappingMethods ListAsMapping;
Bram Moolenaardb913952012-06-29 12:54:53 +0200913
914typedef struct
915{
916 PyObject_HEAD
917 list_T *list;
918 pylinkedlist_T ref;
919} ListObject;
920
921 static PyObject *
922ListNew(list_T *list)
923{
924 ListObject *self;
925
926 self = PyObject_NEW(ListObject, &ListType);
927 if (self == NULL)
928 return NULL;
929 self->list = list;
930 ++list->lv_refcount;
931
932 pyll_add((PyObject *)(self), &self->ref, &lastlist);
933
934 return (PyObject *)(self);
935}
936
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200937 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +0200938ListDestructor(ListObject *self)
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200939{
Bram Moolenaard6e39182013-05-21 18:30:34 +0200940 pyll_remove(&self->ref, &lastlist);
941 list_unref(self->list);
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200942
943 DESTRUCTOR_FINISH(self);
944}
945
Bram Moolenaardb913952012-06-29 12:54:53 +0200946 static int
947list_py_concat(list_T *l, PyObject *obj, PyObject *lookupDict)
948{
949 Py_ssize_t i;
950 Py_ssize_t lsize = PySequence_Size(obj);
951 PyObject *litem;
952 listitem_T *li;
953
954 for(i=0; i<lsize; i++)
955 {
956 li = listitem_alloc();
957 if (li == NULL)
958 {
959 PyErr_NoMemory();
960 return -1;
961 }
962 li->li_tv.v_lock = 0;
963
964 litem = PySequence_GetItem(obj, i);
965 if (litem == NULL)
966 return -1;
967 if (_ConvertFromPyObject(litem, &li->li_tv, lookupDict) == -1)
968 return -1;
969
970 list_append(l, li);
971 }
972 return 0;
973}
974
Bram Moolenaardb913952012-06-29 12:54:53 +0200975 static PyInt
Bram Moolenaard6e39182013-05-21 18:30:34 +0200976ListLength(ListObject *self)
Bram Moolenaardb913952012-06-29 12:54:53 +0200977{
Bram Moolenaard6e39182013-05-21 18:30:34 +0200978 return ((PyInt) (self->list->lv_len));
Bram Moolenaardb913952012-06-29 12:54:53 +0200979}
980
981 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +0200982ListItem(ListObject *self, Py_ssize_t index)
Bram Moolenaardb913952012-06-29 12:54:53 +0200983{
984 listitem_T *li;
985
Bram Moolenaard6e39182013-05-21 18:30:34 +0200986 if (index >= ListLength(self))
Bram Moolenaardb913952012-06-29 12:54:53 +0200987 {
Bram Moolenaar8661b172013-05-15 15:44:28 +0200988 PyErr_SetString(PyExc_IndexError, _("list index out of range"));
Bram Moolenaardb913952012-06-29 12:54:53 +0200989 return NULL;
990 }
Bram Moolenaard6e39182013-05-21 18:30:34 +0200991 li = list_find(self->list, (long) index);
Bram Moolenaardb913952012-06-29 12:54:53 +0200992 if (li == NULL)
993 {
994 PyErr_SetVim(_("internal error: failed to get vim list item"));
995 return NULL;
996 }
997 return ConvertToPyObject(&li->li_tv);
998}
999
1000#define PROC_RANGE \
1001 if (last < 0) {\
1002 if (last < -size) \
1003 last = 0; \
1004 else \
1005 last += size; \
1006 } \
1007 if (first < 0) \
1008 first = 0; \
1009 if (first > size) \
1010 first = size; \
1011 if (last > size) \
1012 last = size;
1013
1014 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02001015ListSlice(ListObject *self, Py_ssize_t first, Py_ssize_t last)
Bram Moolenaardb913952012-06-29 12:54:53 +02001016{
1017 PyInt i;
1018 PyInt size = ListLength(self);
1019 PyInt n;
1020 PyObject *list;
1021 int reversed = 0;
1022
1023 PROC_RANGE
1024 if (first >= last)
1025 first = last;
1026
1027 n = last-first;
1028 list = PyList_New(n);
1029 if (list == NULL)
1030 return NULL;
1031
1032 for (i = 0; i < n; ++i)
1033 {
Bram Moolenaar24b11fb2013-04-05 19:32:36 +02001034 PyObject *item = ListItem(self, first + i);
Bram Moolenaardb913952012-06-29 12:54:53 +02001035 if (item == NULL)
1036 {
1037 Py_DECREF(list);
1038 return NULL;
1039 }
1040
1041 if ((PyList_SetItem(list, ((reversed)?(n-i-1):(i)), item)))
1042 {
1043 Py_DECREF(item);
1044 Py_DECREF(list);
1045 return NULL;
1046 }
1047 }
1048
1049 return list;
1050}
1051
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02001052typedef struct
1053{
1054 listwatch_T lw;
1055 list_T *list;
1056} listiterinfo_T;
1057
1058 static void
1059ListIterDestruct(listiterinfo_T *lii)
1060{
1061 list_rem_watch(lii->list, &lii->lw);
1062 PyMem_Free(lii);
1063}
1064
1065 static PyObject *
1066ListIterNext(listiterinfo_T **lii)
1067{
1068 PyObject *r;
1069
1070 if (!((*lii)->lw.lw_item))
1071 return NULL;
1072
1073 if (!(r = ConvertToPyObject(&((*lii)->lw.lw_item->li_tv))))
1074 return NULL;
1075
1076 (*lii)->lw.lw_item = (*lii)->lw.lw_item->li_next;
1077
1078 return r;
1079}
1080
1081 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02001082ListIter(ListObject *self)
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02001083{
1084 listiterinfo_T *lii;
Bram Moolenaard6e39182013-05-21 18:30:34 +02001085 list_T *l = self->list;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02001086
1087 if (!(lii = PyMem_New(listiterinfo_T, 1)))
1088 {
1089 PyErr_NoMemory();
1090 return NULL;
1091 }
1092
1093 list_add_watch(l, &lii->lw);
1094 lii->lw.lw_item = l->lv_first;
1095 lii->list = l;
1096
1097 return IterNew(lii,
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02001098 (destructorfun) ListIterDestruct, (nextfun) ListIterNext,
1099 NULL, NULL);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02001100}
1101
Bram Moolenaardb913952012-06-29 12:54:53 +02001102 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02001103ListAssItem(ListObject *self, Py_ssize_t index, PyObject *obj)
Bram Moolenaardb913952012-06-29 12:54:53 +02001104{
1105 typval_T tv;
Bram Moolenaard6e39182013-05-21 18:30:34 +02001106 list_T *l = self->list;
Bram Moolenaardb913952012-06-29 12:54:53 +02001107 listitem_T *li;
1108 Py_ssize_t length = ListLength(self);
1109
1110 if (l->lv_lock)
1111 {
1112 PyErr_SetVim(_("list is locked"));
1113 return -1;
1114 }
1115 if (index>length || (index==length && obj==NULL))
1116 {
Bram Moolenaar8661b172013-05-15 15:44:28 +02001117 PyErr_SetString(PyExc_IndexError, _("list index out of range"));
Bram Moolenaardb913952012-06-29 12:54:53 +02001118 return -1;
1119 }
1120
1121 if (obj == NULL)
1122 {
1123 li = list_find(l, (long) index);
1124 list_remove(l, li, li);
1125 clear_tv(&li->li_tv);
1126 vim_free(li);
1127 return 0;
1128 }
1129
1130 if (ConvertFromPyObject(obj, &tv) == -1)
1131 return -1;
1132
1133 if (index == length)
1134 {
1135 if (list_append_tv(l, &tv) == FAIL)
1136 {
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02001137 clear_tv(&tv);
Bram Moolenaardb913952012-06-29 12:54:53 +02001138 PyErr_SetVim(_("Failed to add item to list"));
1139 return -1;
1140 }
1141 }
1142 else
1143 {
1144 li = list_find(l, (long) index);
1145 clear_tv(&li->li_tv);
1146 copy_tv(&tv, &li->li_tv);
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02001147 clear_tv(&tv);
Bram Moolenaardb913952012-06-29 12:54:53 +02001148 }
1149 return 0;
1150}
1151
1152 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02001153ListAssSlice(ListObject *self, Py_ssize_t first, Py_ssize_t last, PyObject *obj)
Bram Moolenaardb913952012-06-29 12:54:53 +02001154{
1155 PyInt size = ListLength(self);
1156 Py_ssize_t i;
1157 Py_ssize_t lsize;
1158 PyObject *litem;
1159 listitem_T *li;
1160 listitem_T *next;
1161 typval_T v;
Bram Moolenaard6e39182013-05-21 18:30:34 +02001162 list_T *l = self->list;
Bram Moolenaardb913952012-06-29 12:54:53 +02001163
1164 if (l->lv_lock)
1165 {
1166 PyErr_SetVim(_("list is locked"));
1167 return -1;
1168 }
1169
1170 PROC_RANGE
1171
1172 if (first == size)
1173 li = NULL;
1174 else
1175 {
1176 li = list_find(l, (long) first);
1177 if (li == NULL)
1178 {
1179 PyErr_SetVim(_("internal error: no vim list item"));
1180 return -1;
1181 }
1182 if (last > first)
1183 {
1184 i = last - first;
1185 while (i-- && li != NULL)
1186 {
1187 next = li->li_next;
1188 listitem_remove(l, li);
1189 li = next;
1190 }
1191 }
1192 }
1193
1194 if (obj == NULL)
1195 return 0;
1196
1197 if (!PyList_Check(obj))
1198 {
1199 PyErr_SetString(PyExc_TypeError, _("can only assign lists to slice"));
1200 return -1;
1201 }
1202
1203 lsize = PyList_Size(obj);
1204
1205 for(i=0; i<lsize; i++)
1206 {
1207 litem = PyList_GetItem(obj, i);
1208 if (litem == NULL)
1209 return -1;
1210 if (ConvertFromPyObject(litem, &v) == -1)
1211 return -1;
1212 if (list_insert_tv(l, &v, li) == FAIL)
1213 {
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02001214 clear_tv(&v);
Bram Moolenaardb913952012-06-29 12:54:53 +02001215 PyErr_SetVim(_("internal error: failed to add item to list"));
1216 return -1;
1217 }
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02001218 clear_tv(&v);
Bram Moolenaardb913952012-06-29 12:54:53 +02001219 }
1220 return 0;
1221}
1222
1223 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02001224ListConcatInPlace(ListObject *self, PyObject *obj)
Bram Moolenaardb913952012-06-29 12:54:53 +02001225{
Bram Moolenaard6e39182013-05-21 18:30:34 +02001226 list_T *l = self->list;
Bram Moolenaardb913952012-06-29 12:54:53 +02001227 PyObject *lookup_dict;
1228
1229 if (l->lv_lock)
1230 {
1231 PyErr_SetVim(_("list is locked"));
1232 return NULL;
1233 }
1234
1235 if (!PySequence_Check(obj))
1236 {
1237 PyErr_SetString(PyExc_TypeError, _("can only concatenate with lists"));
1238 return NULL;
1239 }
1240
1241 lookup_dict = PyDict_New();
1242 if (list_py_concat(l, obj, lookup_dict) == -1)
1243 {
1244 Py_DECREF(lookup_dict);
1245 return NULL;
1246 }
1247 Py_DECREF(lookup_dict);
1248
1249 Py_INCREF(self);
Bram Moolenaard6e39182013-05-21 18:30:34 +02001250 return (PyObject *)(self);
Bram Moolenaardb913952012-06-29 12:54:53 +02001251}
1252
Bram Moolenaar66b79852012-09-21 14:00:35 +02001253 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02001254ListSetattr(ListObject *self, char *name, PyObject *val)
Bram Moolenaar66b79852012-09-21 14:00:35 +02001255{
1256 if (val == NULL)
1257 {
Bram Moolenaar8661b172013-05-15 15:44:28 +02001258 PyErr_SetString(PyExc_AttributeError,
1259 _("cannot delete vim.dictionary attributes"));
Bram Moolenaar66b79852012-09-21 14:00:35 +02001260 return -1;
1261 }
1262
1263 if (strcmp(name, "locked") == 0)
1264 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02001265 if (self->list->lv_lock == VAR_FIXED)
Bram Moolenaar66b79852012-09-21 14:00:35 +02001266 {
Bram Moolenaar8661b172013-05-15 15:44:28 +02001267 PyErr_SetString(PyExc_TypeError, _("cannot modify fixed list"));
Bram Moolenaar66b79852012-09-21 14:00:35 +02001268 return -1;
1269 }
1270 else
1271 {
Bram Moolenaarb983f752013-05-15 16:11:50 +02001272 int istrue = PyObject_IsTrue(val);
1273 if (istrue == -1)
1274 return -1;
1275 else if (istrue)
Bram Moolenaard6e39182013-05-21 18:30:34 +02001276 self->list->lv_lock = VAR_LOCKED;
Bram Moolenaar66b79852012-09-21 14:00:35 +02001277 else
Bram Moolenaard6e39182013-05-21 18:30:34 +02001278 self->list->lv_lock = 0;
Bram Moolenaar66b79852012-09-21 14:00:35 +02001279 }
1280 return 0;
1281 }
1282 else
1283 {
Bram Moolenaar8661b172013-05-15 15:44:28 +02001284 PyErr_SetString(PyExc_AttributeError, _("cannot set this attribute"));
Bram Moolenaar66b79852012-09-21 14:00:35 +02001285 return -1;
1286 }
1287}
1288
Bram Moolenaardb913952012-06-29 12:54:53 +02001289static struct PyMethodDef ListMethods[] = {
Bram Moolenaar182dc4f2013-05-21 19:01:55 +02001290 {"extend", (PyCFunction)ListConcatInPlace, METH_O, ""},
1291 { NULL, NULL, 0, NULL }
Bram Moolenaardb913952012-06-29 12:54:53 +02001292};
1293
1294typedef struct
1295{
1296 PyObject_HEAD
1297 char_u *name;
1298} FunctionObject;
1299
1300static PyTypeObject FunctionType;
1301
1302 static PyObject *
1303FunctionNew(char_u *name)
1304{
1305 FunctionObject *self;
1306
1307 self = PyObject_NEW(FunctionObject, &FunctionType);
1308 if (self == NULL)
1309 return NULL;
1310 self->name = PyMem_New(char_u, STRLEN(name) + 1);
1311 if (self->name == NULL)
1312 {
1313 PyErr_NoMemory();
1314 return NULL;
1315 }
1316 STRCPY(self->name, name);
1317 func_ref(name);
1318 return (PyObject *)(self);
1319}
1320
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001321 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02001322FunctionDestructor(FunctionObject *self)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001323{
Bram Moolenaard6e39182013-05-21 18:30:34 +02001324 func_unref(self->name);
1325 PyMem_Free(self->name);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001326
1327 DESTRUCTOR_FINISH(self);
1328}
1329
Bram Moolenaardb913952012-06-29 12:54:53 +02001330 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02001331FunctionCall(FunctionObject *self, PyObject *argsObject, PyObject *kwargs)
Bram Moolenaardb913952012-06-29 12:54:53 +02001332{
Bram Moolenaard6e39182013-05-21 18:30:34 +02001333 char_u *name = self->name;
Bram Moolenaardb913952012-06-29 12:54:53 +02001334 typval_T args;
1335 typval_T selfdicttv;
1336 typval_T rettv;
1337 dict_T *selfdict = NULL;
1338 PyObject *selfdictObject;
1339 PyObject *result;
1340 int error;
1341
1342 if (ConvertFromPyObject(argsObject, &args) == -1)
1343 return NULL;
1344
1345 if (kwargs != NULL)
1346 {
1347 selfdictObject = PyDict_GetItemString(kwargs, "self");
1348 if (selfdictObject != NULL)
1349 {
Bram Moolenaar9581b5f2012-07-25 15:36:04 +02001350 if (!PyMapping_Check(selfdictObject))
Bram Moolenaardb913952012-06-29 12:54:53 +02001351 {
Bram Moolenaar9581b5f2012-07-25 15:36:04 +02001352 PyErr_SetString(PyExc_TypeError,
1353 _("'self' argument must be a dictionary"));
Bram Moolenaardb913952012-06-29 12:54:53 +02001354 clear_tv(&args);
1355 return NULL;
1356 }
1357 if (ConvertFromPyObject(selfdictObject, &selfdicttv) == -1)
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02001358 {
1359 clear_tv(&args);
Bram Moolenaardb913952012-06-29 12:54:53 +02001360 return NULL;
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02001361 }
Bram Moolenaardb913952012-06-29 12:54:53 +02001362 selfdict = selfdicttv.vval.v_dict;
1363 }
1364 }
1365
Bram Moolenaar71700b82013-05-15 17:49:05 +02001366 Py_BEGIN_ALLOW_THREADS
1367 Python_Lock_Vim();
1368
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02001369 VimTryStart();
Bram Moolenaardb913952012-06-29 12:54:53 +02001370 error = func_call(name, &args, selfdict, &rettv);
Bram Moolenaar71700b82013-05-15 17:49:05 +02001371
1372 Python_Release_Vim();
1373 Py_END_ALLOW_THREADS
1374
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02001375 if (VimTryEnd())
1376 result = NULL;
1377 else if (error != OK)
Bram Moolenaardb913952012-06-29 12:54:53 +02001378 {
1379 result = NULL;
1380 PyErr_SetVim(_("failed to run function"));
1381 }
1382 else
1383 result = ConvertToPyObject(&rettv);
1384
Bram Moolenaardb913952012-06-29 12:54:53 +02001385 clear_tv(&args);
1386 clear_tv(&rettv);
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02001387 if (selfdict != NULL)
1388 clear_tv(&selfdicttv);
Bram Moolenaardb913952012-06-29 12:54:53 +02001389
1390 return result;
1391}
1392
1393static struct PyMethodDef FunctionMethods[] = {
Bram Moolenaar182dc4f2013-05-21 19:01:55 +02001394 {"__call__", (PyCFunction)FunctionCall, METH_VARARGS|METH_KEYWORDS, ""},
1395 { NULL, NULL, 0, NULL}
Bram Moolenaardb913952012-06-29 12:54:53 +02001396};
1397
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001398/*
1399 * Options object
1400 */
1401
1402static PyTypeObject OptionsType;
1403
1404typedef int (*checkfun)(void *);
1405
1406typedef struct
1407{
1408 PyObject_HEAD
1409 int opt_type;
1410 void *from;
1411 checkfun Check;
1412 PyObject *fromObj;
1413} OptionsObject;
1414
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02001415 static int
1416dummy_check(void *arg UNUSED)
1417{
1418 return 0;
1419}
1420
1421 static PyObject *
1422OptionsNew(int opt_type, void *from, checkfun Check, PyObject *fromObj)
1423{
1424 OptionsObject *self;
1425
Bram Moolenaar774267b2013-05-21 20:51:59 +02001426 self = PyObject_GC_New(OptionsObject, &OptionsType);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02001427 if (self == NULL)
1428 return NULL;
1429
1430 self->opt_type = opt_type;
1431 self->from = from;
1432 self->Check = Check;
1433 self->fromObj = fromObj;
1434 if (fromObj)
1435 Py_INCREF(fromObj);
1436
1437 return (PyObject *)(self);
1438}
1439
1440 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02001441OptionsDestructor(OptionsObject *self)
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02001442{
Bram Moolenaar774267b2013-05-21 20:51:59 +02001443 PyObject_GC_UnTrack((void *)(self));
1444 Py_XDECREF(self->fromObj);
1445 PyObject_GC_Del((void *)(self));
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02001446}
1447
1448 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02001449OptionsTraverse(OptionsObject *self, visitproc visit, void *arg)
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02001450{
Bram Moolenaard6e39182013-05-21 18:30:34 +02001451 Py_VISIT(self->fromObj);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02001452 return 0;
1453}
1454
1455 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02001456OptionsClear(OptionsObject *self)
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02001457{
Bram Moolenaard6e39182013-05-21 18:30:34 +02001458 Py_CLEAR(self->fromObj);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02001459 return 0;
1460}
1461
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001462 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02001463OptionsItem(OptionsObject *self, PyObject *keyObject)
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001464{
1465 char_u *key;
1466 int flags;
1467 long numval;
1468 char_u *stringval;
Bram Moolenaar161fb5e2013-05-06 06:26:15 +02001469 DICTKEY_DECL
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001470
Bram Moolenaard6e39182013-05-21 18:30:34 +02001471 if (self->Check(self->from))
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001472 return NULL;
1473
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001474 DICTKEY_GET_NOTEMPTY(NULL)
1475
1476 flags = get_option_value_strict(key, &numval, &stringval,
Bram Moolenaard6e39182013-05-21 18:30:34 +02001477 self->opt_type, self->from);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001478
1479 DICTKEY_UNREF
1480
1481 if (flags == 0)
1482 {
Bram Moolenaar4d188da2013-05-15 15:35:09 +02001483 PyErr_SetObject(PyExc_KeyError, keyObject);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001484 return NULL;
1485 }
1486
1487 if (flags & SOPT_UNSET)
1488 {
1489 Py_INCREF(Py_None);
1490 return Py_None;
1491 }
1492 else if (flags & SOPT_BOOL)
1493 {
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02001494 PyObject *r;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001495 r = numval ? Py_True : Py_False;
1496 Py_INCREF(r);
1497 return r;
1498 }
1499 else if (flags & SOPT_NUM)
1500 return PyInt_FromLong(numval);
1501 else if (flags & SOPT_STRING)
1502 {
1503 if (stringval)
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02001504 {
1505 PyObject *r = PyBytes_FromString((char *) stringval);
1506 vim_free(stringval);
1507 return r;
1508 }
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001509 else
1510 {
Bram Moolenaar8661b172013-05-15 15:44:28 +02001511 PyErr_SetString(PyExc_RuntimeError,
1512 _("unable to get option value"));
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001513 return NULL;
1514 }
1515 }
1516 else
1517 {
1518 PyErr_SetVim("Internal error: unknown option type. Should not happen");
1519 return NULL;
1520 }
1521}
1522
1523 static int
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02001524set_option_value_err(key, numval, stringval, opt_flags)
1525 char_u *key;
1526 int numval;
1527 char_u *stringval;
1528 int opt_flags;
1529{
1530 char_u *errmsg;
1531
1532 if ((errmsg = set_option_value(key, numval, stringval, opt_flags)))
1533 {
1534 if (VimTryEnd())
1535 return FAIL;
1536 PyErr_SetVim((char *)errmsg);
1537 return FAIL;
1538 }
1539 return OK;
1540}
1541
1542 static int
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001543set_option_value_for(key, numval, stringval, opt_flags, opt_type, from)
1544 char_u *key;
1545 int numval;
1546 char_u *stringval;
1547 int opt_flags;
1548 int opt_type;
1549 void *from;
1550{
Bram Moolenaar0b9aecc2013-05-21 22:13:41 +02001551 win_T *save_curwin = NULL;
1552 tabpage_T *save_curtab = NULL;
1553 buf_T *save_curbuf = NULL;
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02001554 int r = 0;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001555
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02001556 VimTryStart();
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001557 switch (opt_type)
1558 {
1559 case SREQ_WIN:
Bram Moolenaar105bc352013-05-17 16:03:57 +02001560 if (switch_win(&save_curwin, &save_curtab, (win_T *)from,
1561 win_find_tabpage((win_T *)from)) == FAIL)
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001562 {
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02001563 if (VimTryEnd())
1564 return -1;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001565 PyErr_SetVim("Problem while switching windows.");
1566 return -1;
1567 }
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02001568 r = set_option_value_err(key, numval, stringval, opt_flags);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001569 restore_win(save_curwin, save_curtab);
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02001570 if (r == FAIL)
1571 return -1;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001572 break;
1573 case SREQ_BUF:
Bram Moolenaar105bc352013-05-17 16:03:57 +02001574 switch_buffer(&save_curbuf, (buf_T *)from);
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02001575 r = set_option_value_err(key, numval, stringval, opt_flags);
Bram Moolenaar105bc352013-05-17 16:03:57 +02001576 restore_buffer(save_curbuf);
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02001577 if (r == FAIL)
1578 return -1;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001579 break;
1580 case SREQ_GLOBAL:
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02001581 r = set_option_value_err(key, numval, stringval, opt_flags);
1582 if (r == FAIL)
1583 return -1;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001584 break;
1585 }
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02001586 return VimTryEnd();
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001587}
1588
1589 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02001590OptionsAssItem(OptionsObject *self, PyObject *keyObject, PyObject *valObject)
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001591{
1592 char_u *key;
1593 int flags;
1594 int opt_flags;
1595 int r = 0;
Bram Moolenaar161fb5e2013-05-06 06:26:15 +02001596 DICTKEY_DECL
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001597
Bram Moolenaard6e39182013-05-21 18:30:34 +02001598 if (self->Check(self->from))
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001599 return -1;
1600
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001601 DICTKEY_GET_NOTEMPTY(-1)
1602
1603 flags = get_option_value_strict(key, NULL, NULL,
Bram Moolenaard6e39182013-05-21 18:30:34 +02001604 self->opt_type, self->from);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001605
1606 DICTKEY_UNREF
1607
1608 if (flags == 0)
1609 {
Bram Moolenaar4d188da2013-05-15 15:35:09 +02001610 PyErr_SetObject(PyExc_KeyError, keyObject);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001611 return -1;
1612 }
1613
1614 if (valObject == NULL)
1615 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02001616 if (self->opt_type == SREQ_GLOBAL)
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001617 {
Bram Moolenaar8661b172013-05-15 15:44:28 +02001618 PyErr_SetString(PyExc_ValueError,
1619 _("unable to unset global option"));
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001620 return -1;
1621 }
1622 else if (!(flags & SOPT_GLOBAL))
1623 {
Bram Moolenaar8661b172013-05-15 15:44:28 +02001624 PyErr_SetString(PyExc_ValueError, _("unable to unset option "
1625 "without global value"));
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001626 return -1;
1627 }
1628 else
1629 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02001630 unset_global_local_option(key, self->from);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001631 return 0;
1632 }
1633 }
1634
Bram Moolenaard6e39182013-05-21 18:30:34 +02001635 opt_flags = (self->opt_type ? OPT_LOCAL : OPT_GLOBAL);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001636
1637 if (flags & SOPT_BOOL)
1638 {
Bram Moolenaarb983f752013-05-15 16:11:50 +02001639 int istrue = PyObject_IsTrue(valObject);
Bram Moolenaarc96ebe72013-05-21 22:38:18 +02001640
Bram Moolenaarb983f752013-05-15 16:11:50 +02001641 if (istrue == -1)
1642 return -1;
1643 r = set_option_value_for(key, istrue, NULL,
Bram Moolenaard6e39182013-05-21 18:30:34 +02001644 opt_flags, self->opt_type, self->from);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001645 }
1646 else if (flags & SOPT_NUM)
1647 {
1648 int val;
1649
1650#if PY_MAJOR_VERSION < 3
1651 if (PyInt_Check(valObject))
1652 val = PyInt_AsLong(valObject);
1653 else
1654#endif
1655 if (PyLong_Check(valObject))
1656 val = PyLong_AsLong(valObject);
1657 else
1658 {
Bram Moolenaar8661b172013-05-15 15:44:28 +02001659 PyErr_SetString(PyExc_TypeError, _("object must be integer"));
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001660 return -1;
1661 }
1662
1663 r = set_option_value_for(key, val, NULL, opt_flags,
Bram Moolenaard6e39182013-05-21 18:30:34 +02001664 self->opt_type, self->from);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001665 }
1666 else
1667 {
1668 char_u *val;
1669 if (PyBytes_Check(valObject))
1670 {
1671
1672 if (PyString_AsStringAndSize(valObject, (char **) &val, NULL) == -1)
1673 return -1;
1674 if (val == NULL)
1675 return -1;
1676
1677 val = vim_strsave(val);
1678 }
1679 else if (PyUnicode_Check(valObject))
1680 {
1681 PyObject *bytes;
1682
1683 bytes = PyUnicode_AsEncodedString(valObject, (char *)ENC_OPT, NULL);
1684 if (bytes == NULL)
1685 return -1;
1686
1687 if(PyString_AsStringAndSize(bytes, (char **) &val, NULL) == -1)
1688 return -1;
1689 if (val == NULL)
1690 return -1;
1691
1692 val = vim_strsave(val);
1693 Py_XDECREF(bytes);
1694 }
1695 else
1696 {
Bram Moolenaar8661b172013-05-15 15:44:28 +02001697 PyErr_SetString(PyExc_TypeError, _("object must be string"));
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001698 return -1;
1699 }
1700
1701 r = set_option_value_for(key, 0, val, opt_flags,
Bram Moolenaard6e39182013-05-21 18:30:34 +02001702 self->opt_type, self->from);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001703 vim_free(val);
1704 }
1705
1706 return r;
1707}
1708
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001709static PyMappingMethods OptionsAsMapping = {
1710 (lenfunc) NULL,
1711 (binaryfunc) OptionsItem,
1712 (objobjargproc) OptionsAssItem,
1713};
1714
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001715/* Tabpage object
1716 */
1717
1718typedef struct
1719{
1720 PyObject_HEAD
1721 tabpage_T *tab;
1722} TabPageObject;
1723
1724static PyObject *WinListNew(TabPageObject *tabObject);
1725
1726static PyTypeObject TabPageType;
1727
1728 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02001729CheckTabPage(TabPageObject *self)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001730{
Bram Moolenaard6e39182013-05-21 18:30:34 +02001731 if (self->tab == INVALID_TABPAGE_VALUE)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001732 {
1733 PyErr_SetVim(_("attempt to refer to deleted tab page"));
1734 return -1;
1735 }
1736
1737 return 0;
1738}
1739
1740 static PyObject *
1741TabPageNew(tabpage_T *tab)
1742{
1743 TabPageObject *self;
1744
1745 if (TAB_PYTHON_REF(tab))
1746 {
1747 self = TAB_PYTHON_REF(tab);
1748 Py_INCREF(self);
1749 }
1750 else
1751 {
1752 self = PyObject_NEW(TabPageObject, &TabPageType);
1753 if (self == NULL)
1754 return NULL;
1755 self->tab = tab;
1756 TAB_PYTHON_REF(tab) = self;
1757 }
1758
1759 return (PyObject *)(self);
1760}
1761
1762 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02001763TabPageDestructor(TabPageObject *self)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001764{
Bram Moolenaard6e39182013-05-21 18:30:34 +02001765 if (self->tab && self->tab != INVALID_TABPAGE_VALUE)
1766 TAB_PYTHON_REF(self->tab) = NULL;
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001767
1768 DESTRUCTOR_FINISH(self);
1769}
1770
1771 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02001772TabPageAttr(TabPageObject *self, char *name)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001773{
1774 if (strcmp(name, "windows") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02001775 return WinListNew(self);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001776 else if (strcmp(name, "number") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02001777 return PyLong_FromLong((long) get_tab_number(self->tab));
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001778 else if (strcmp(name, "vars") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02001779 return DictionaryNew(self->tab->tp_vars);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001780 else if (strcmp(name, "window") == 0)
1781 {
1782 /* For current tab window.c does not bother to set or update tp_curwin
1783 */
Bram Moolenaard6e39182013-05-21 18:30:34 +02001784 if (self->tab == curtab)
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02001785 return WindowNew(curwin, curtab);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001786 else
Bram Moolenaard6e39182013-05-21 18:30:34 +02001787 return WindowNew(self->tab->tp_curwin, self->tab);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001788 }
1789 return NULL;
1790}
1791
1792 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02001793TabPageRepr(TabPageObject *self)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001794{
1795 static char repr[100];
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001796
Bram Moolenaard6e39182013-05-21 18:30:34 +02001797 if (self->tab == INVALID_TABPAGE_VALUE)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001798 {
1799 vim_snprintf(repr, 100, _("<tabpage object (deleted) at %p>"), (self));
1800 return PyString_FromString(repr);
1801 }
1802 else
1803 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02001804 int t = get_tab_number(self->tab);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001805
1806 if (t == 0)
1807 vim_snprintf(repr, 100, _("<tabpage object (unknown) at %p>"),
1808 (self));
1809 else
1810 vim_snprintf(repr, 100, _("<tabpage %d>"), t - 1);
1811
1812 return PyString_FromString(repr);
1813 }
1814}
1815
1816static struct PyMethodDef TabPageMethods[] = {
1817 /* name, function, calling, documentation */
1818 { NULL, NULL, 0, NULL }
1819};
1820
1821/*
1822 * Window list object
1823 */
1824
1825static PyTypeObject TabListType;
1826static PySequenceMethods TabListAsSeq;
1827
1828typedef struct
1829{
1830 PyObject_HEAD
1831} TabListObject;
1832
1833 static PyInt
1834TabListLength(PyObject *self UNUSED)
1835{
1836 tabpage_T *tp = first_tabpage;
1837 PyInt n = 0;
1838
1839 while (tp != NULL)
1840 {
1841 ++n;
1842 tp = tp->tp_next;
1843 }
1844
1845 return n;
1846}
1847
1848 static PyObject *
1849TabListItem(PyObject *self UNUSED, PyInt n)
1850{
1851 tabpage_T *tp;
1852
1853 for (tp = first_tabpage; tp != NULL; tp = tp->tp_next, --n)
1854 if (n == 0)
1855 return TabPageNew(tp);
1856
1857 PyErr_SetString(PyExc_IndexError, _("no such tab page"));
1858 return NULL;
1859}
1860
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02001861/* Window object
1862 */
1863
1864typedef struct
1865{
1866 PyObject_HEAD
1867 win_T *win;
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02001868 TabPageObject *tabObject;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02001869} WindowObject;
1870
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02001871static PyTypeObject WindowType;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001872
1873 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02001874CheckWindow(WindowObject *self)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001875{
Bram Moolenaard6e39182013-05-21 18:30:34 +02001876 if (self->win == INVALID_WINDOW_VALUE)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001877 {
1878 PyErr_SetVim(_("attempt to refer to deleted window"));
1879 return -1;
1880 }
1881
1882 return 0;
1883}
1884
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001885 static PyObject *
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02001886WindowNew(win_T *win, tabpage_T *tab)
Bram Moolenaar971db462013-05-12 18:44:48 +02001887{
1888 /* We need to handle deletion of windows underneath us.
1889 * If we add a "w_python*_ref" field to the win_T structure,
1890 * then we can get at it in win_free() in vim. We then
1891 * need to create only ONE Python object per window - if
1892 * we try to create a second, just INCREF the existing one
1893 * and return it. The (single) Python object referring to
1894 * the window is stored in "w_python*_ref".
1895 * On a win_free() we set the Python object's win_T* field
1896 * to an invalid value. We trap all uses of a window
1897 * object, and reject them if the win_T* field is invalid.
1898 *
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02001899 * Python2 and Python3 get different fields and different objects:
Bram Moolenaar971db462013-05-12 18:44:48 +02001900 * w_python_ref and w_python3_ref fields respectively.
1901 */
1902
1903 WindowObject *self;
1904
1905 if (WIN_PYTHON_REF(win))
1906 {
1907 self = WIN_PYTHON_REF(win);
1908 Py_INCREF(self);
1909 }
1910 else
1911 {
Bram Moolenaar774267b2013-05-21 20:51:59 +02001912 self = PyObject_GC_New(WindowObject, &WindowType);
Bram Moolenaar971db462013-05-12 18:44:48 +02001913 if (self == NULL)
1914 return NULL;
1915 self->win = win;
1916 WIN_PYTHON_REF(win) = self;
1917 }
1918
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02001919 self->tabObject = ((TabPageObject *)(TabPageNew(tab)));
1920
Bram Moolenaar971db462013-05-12 18:44:48 +02001921 return (PyObject *)(self);
1922}
1923
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02001924 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02001925WindowDestructor(WindowObject *self)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02001926{
Bram Moolenaar774267b2013-05-21 20:51:59 +02001927 PyObject_GC_UnTrack((void *)(self));
Bram Moolenaard6e39182013-05-21 18:30:34 +02001928 if (self->win && self->win != INVALID_WINDOW_VALUE)
1929 WIN_PYTHON_REF(self->win) = NULL;
Bram Moolenaar774267b2013-05-21 20:51:59 +02001930 Py_XDECREF(((PyObject *)(self->tabObject)));
1931 PyObject_GC_Del((void *)(self));
1932}
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02001933
Bram Moolenaar774267b2013-05-21 20:51:59 +02001934 static int
1935WindowTraverse(WindowObject *self, visitproc visit, void *arg)
1936{
1937 Py_VISIT(((PyObject *)(self->tabObject)));
1938 return 0;
1939}
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02001940
Bram Moolenaar774267b2013-05-21 20:51:59 +02001941 static int
1942WindowClear(WindowObject *self)
1943{
1944 Py_CLEAR(self->tabObject);
1945 return 0;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02001946}
1947
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02001948 static win_T *
1949get_firstwin(TabPageObject *tabObject)
1950{
1951 if (tabObject)
1952 {
1953 if (CheckTabPage(tabObject))
1954 return NULL;
1955 /* For current tab window.c does not bother to set or update tp_firstwin
1956 */
1957 else if (tabObject->tab == curtab)
1958 return firstwin;
1959 else
1960 return tabObject->tab->tp_firstwin;
1961 }
1962 else
1963 return firstwin;
1964}
1965
Bram Moolenaar971db462013-05-12 18:44:48 +02001966 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02001967WindowAttr(WindowObject *self, char *name)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001968{
1969 if (strcmp(name, "buffer") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02001970 return (PyObject *)BufferNew(self->win->w_buffer);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001971 else if (strcmp(name, "cursor") == 0)
1972 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02001973 pos_T *pos = &self->win->w_cursor;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001974
1975 return Py_BuildValue("(ll)", (long)(pos->lnum), (long)(pos->col));
1976 }
1977 else if (strcmp(name, "height") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02001978 return PyLong_FromLong((long)(self->win->w_height));
Bram Moolenaar4e5dfb52013-05-12 19:30:31 +02001979#ifdef FEAT_WINDOWS
1980 else if (strcmp(name, "row") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02001981 return PyLong_FromLong((long)(self->win->w_winrow));
Bram Moolenaar4e5dfb52013-05-12 19:30:31 +02001982#endif
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001983#ifdef FEAT_VERTSPLIT
1984 else if (strcmp(name, "width") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02001985 return PyLong_FromLong((long)(W_WIDTH(self->win)));
Bram Moolenaar4e5dfb52013-05-12 19:30:31 +02001986 else if (strcmp(name, "col") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02001987 return PyLong_FromLong((long)(W_WINCOL(self->win)));
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001988#endif
Bram Moolenaar230bb3f2013-04-24 14:07:45 +02001989 else if (strcmp(name, "vars") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02001990 return DictionaryNew(self->win->w_vars);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001991 else if (strcmp(name, "options") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02001992 return OptionsNew(SREQ_WIN, self->win, (checkfun) CheckWindow,
1993 (PyObject *) self);
Bram Moolenaar6d216452013-05-12 19:00:41 +02001994 else if (strcmp(name, "number") == 0)
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02001995 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02001996 if (CheckTabPage(self->tabObject))
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02001997 return NULL;
1998 return PyLong_FromLong((long)
Bram Moolenaard6e39182013-05-21 18:30:34 +02001999 get_win_number(self->win, get_firstwin(self->tabObject)));
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02002000 }
2001 else if (strcmp(name, "tabpage") == 0)
2002 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02002003 Py_INCREF(self->tabObject);
2004 return (PyObject *)(self->tabObject);
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02002005 }
Bram Moolenaar4d1da492013-04-24 13:39:15 +02002006 else if (strcmp(name,"__members__") == 0)
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02002007 return Py_BuildValue("[sssssssss]", "buffer", "cursor", "height",
2008 "vars", "options", "number", "row", "col", "tabpage");
Bram Moolenaar4d1da492013-04-24 13:39:15 +02002009 else
2010 return NULL;
2011}
2012
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002013 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02002014WindowSetattr(WindowObject *self, char *name, PyObject *val)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002015{
Bram Moolenaard6e39182013-05-21 18:30:34 +02002016 if (CheckWindow(self))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002017 return -1;
2018
2019 if (strcmp(name, "buffer") == 0)
2020 {
2021 PyErr_SetString(PyExc_TypeError, _("readonly attribute"));
2022 return -1;
2023 }
2024 else if (strcmp(name, "cursor") == 0)
2025 {
2026 long lnum;
2027 long col;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002028
2029 if (!PyArg_Parse(val, "(ll)", &lnum, &col))
2030 return -1;
2031
Bram Moolenaard6e39182013-05-21 18:30:34 +02002032 if (lnum <= 0 || lnum > self->win->w_buffer->b_ml.ml_line_count)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002033 {
2034 PyErr_SetVim(_("cursor position outside buffer"));
2035 return -1;
2036 }
2037
2038 /* Check for keyboard interrupts */
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02002039 if (VimCheckInterrupt())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002040 return -1;
2041
Bram Moolenaard6e39182013-05-21 18:30:34 +02002042 self->win->w_cursor.lnum = lnum;
2043 self->win->w_cursor.col = col;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002044#ifdef FEAT_VIRTUALEDIT
Bram Moolenaard6e39182013-05-21 18:30:34 +02002045 self->win->w_cursor.coladd = 0;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002046#endif
Bram Moolenaar03a807a2011-07-07 15:08:58 +02002047 /* When column is out of range silently correct it. */
Bram Moolenaard6e39182013-05-21 18:30:34 +02002048 check_cursor_col_win(self->win);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002049
Bram Moolenaar03a807a2011-07-07 15:08:58 +02002050 update_screen(VALID);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002051 return 0;
2052 }
2053 else if (strcmp(name, "height") == 0)
2054 {
2055 int height;
2056 win_T *savewin;
2057
2058 if (!PyArg_Parse(val, "i", &height))
2059 return -1;
2060
2061#ifdef FEAT_GUI
2062 need_mouse_correct = TRUE;
2063#endif
2064 savewin = curwin;
Bram Moolenaard6e39182013-05-21 18:30:34 +02002065 curwin = self->win;
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02002066
2067 VimTryStart();
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002068 win_setheight(height);
2069 curwin = savewin;
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02002070 if (VimTryEnd())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002071 return -1;
2072
2073 return 0;
2074 }
2075#ifdef FEAT_VERTSPLIT
2076 else if (strcmp(name, "width") == 0)
2077 {
2078 int width;
2079 win_T *savewin;
2080
2081 if (!PyArg_Parse(val, "i", &width))
2082 return -1;
2083
2084#ifdef FEAT_GUI
2085 need_mouse_correct = TRUE;
2086#endif
2087 savewin = curwin;
Bram Moolenaard6e39182013-05-21 18:30:34 +02002088 curwin = self->win;
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02002089
2090 VimTryStart();
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002091 win_setwidth(width);
2092 curwin = savewin;
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02002093 if (VimTryEnd())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002094 return -1;
2095
2096 return 0;
2097 }
2098#endif
2099 else
2100 {
2101 PyErr_SetString(PyExc_AttributeError, name);
2102 return -1;
2103 }
2104}
2105
2106 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02002107WindowRepr(WindowObject *self)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002108{
2109 static char repr[100];
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002110
Bram Moolenaard6e39182013-05-21 18:30:34 +02002111 if (self->win == INVALID_WINDOW_VALUE)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002112 {
2113 vim_snprintf(repr, 100, _("<window object (deleted) at %p>"), (self));
2114 return PyString_FromString(repr);
2115 }
2116 else
2117 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02002118 int w = get_win_number(self->win, firstwin);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002119
Bram Moolenaar6d216452013-05-12 19:00:41 +02002120 if (w == 0)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002121 vim_snprintf(repr, 100, _("<window object (unknown) at %p>"),
2122 (self));
2123 else
Bram Moolenaar6d216452013-05-12 19:00:41 +02002124 vim_snprintf(repr, 100, _("<window %d>"), w - 1);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002125
2126 return PyString_FromString(repr);
2127 }
2128}
2129
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02002130static struct PyMethodDef WindowMethods[] = {
2131 /* name, function, calling, documentation */
2132 { NULL, NULL, 0, NULL }
2133};
2134
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002135/*
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02002136 * Window list object
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002137 */
Bram Moolenaar4d1da492013-04-24 13:39:15 +02002138
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02002139static PyTypeObject WinListType;
2140static PySequenceMethods WinListAsSeq;
2141
Bram Moolenaar4d1da492013-04-24 13:39:15 +02002142typedef struct
2143{
2144 PyObject_HEAD
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02002145 TabPageObject *tabObject;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02002146} WinListObject;
2147
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02002148 static PyObject *
2149WinListNew(TabPageObject *tabObject)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002150{
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02002151 WinListObject *self;
2152
2153 self = PyObject_NEW(WinListObject, &WinListType);
2154 self->tabObject = tabObject;
2155 Py_INCREF(tabObject);
2156
2157 return (PyObject *)(self);
2158}
2159
2160 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02002161WinListDestructor(WinListObject *self)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02002162{
Bram Moolenaard6e39182013-05-21 18:30:34 +02002163 TabPageObject *tabObject = self->tabObject;
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02002164
2165 if (tabObject)
Bram Moolenaar425154d2013-05-24 18:58:43 +02002166 {
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02002167 Py_DECREF((PyObject *)(tabObject));
Bram Moolenaar425154d2013-05-24 18:58:43 +02002168 }
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02002169
2170 DESTRUCTOR_FINISH(self);
2171}
2172
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02002173 static PyInt
Bram Moolenaard6e39182013-05-21 18:30:34 +02002174WinListLength(WinListObject *self)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02002175{
2176 win_T *w;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002177 PyInt n = 0;
2178
Bram Moolenaard6e39182013-05-21 18:30:34 +02002179 if (!(w = get_firstwin(self->tabObject)))
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02002180 return -1;
2181
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002182 while (w != NULL)
2183 {
2184 ++n;
2185 w = W_NEXT(w);
2186 }
2187
2188 return n;
2189}
2190
2191 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02002192WinListItem(WinListObject *self, PyInt n)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002193{
2194 win_T *w;
2195
Bram Moolenaard6e39182013-05-21 18:30:34 +02002196 if (!(w = get_firstwin(self->tabObject)))
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02002197 return NULL;
2198
2199 for (; w != NULL; w = W_NEXT(w), --n)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002200 if (n == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02002201 return WindowNew(w, self->tabObject? self->tabObject->tab: curtab);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002202
2203 PyErr_SetString(PyExc_IndexError, _("no such window"));
2204 return NULL;
2205}
2206
2207/* Convert a Python string into a Vim line.
2208 *
2209 * The result is in allocated memory. All internal nulls are replaced by
2210 * newline characters. It is an error for the string to contain newline
2211 * characters.
2212 *
2213 * On errors, the Python exception data is set, and NULL is returned.
2214 */
2215 static char *
2216StringToLine(PyObject *obj)
2217{
2218 const char *str;
2219 char *save;
Bram Moolenaar19e60942011-06-19 00:27:51 +02002220 PyObject *bytes;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002221 PyInt len;
2222 PyInt i;
2223 char *p;
2224
2225 if (obj == NULL || !PyString_Check(obj))
2226 {
2227 PyErr_BadArgument();
2228 return NULL;
2229 }
2230
Bram Moolenaar19e60942011-06-19 00:27:51 +02002231 bytes = PyString_AsBytes(obj); /* for Python 2 this does nothing */
2232 str = PyString_AsString(bytes);
2233 len = PyString_Size(bytes);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002234
2235 /*
2236 * Error checking: String must not contain newlines, as we
2237 * are replacing a single line, and we must replace it with
2238 * a single line.
2239 * A trailing newline is removed, so that append(f.readlines()) works.
2240 */
2241 p = memchr(str, '\n', len);
2242 if (p != NULL)
2243 {
2244 if (p == str + len - 1)
2245 --len;
2246 else
2247 {
2248 PyErr_SetVim(_("string cannot contain newlines"));
2249 return NULL;
2250 }
2251 }
2252
2253 /* Create a copy of the string, with internal nulls replaced by
2254 * newline characters, as is the vim convention.
2255 */
2256 save = (char *)alloc((unsigned)(len+1));
2257 if (save == NULL)
2258 {
2259 PyErr_NoMemory();
2260 return NULL;
2261 }
2262
2263 for (i = 0; i < len; ++i)
2264 {
2265 if (str[i] == '\0')
2266 save[i] = '\n';
2267 else
2268 save[i] = str[i];
2269 }
2270
2271 save[i] = '\0';
Bram Moolenaar19e60942011-06-19 00:27:51 +02002272 PyString_FreeBytes(bytes); /* Python 2 does nothing here */
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002273
2274 return save;
2275}
2276
2277/* Get a line from the specified buffer. The line number is
2278 * in Vim format (1-based). The line is returned as a Python
2279 * string object.
2280 */
2281 static PyObject *
2282GetBufferLine(buf_T *buf, PyInt n)
2283{
2284 return LineToString((char *)ml_get_buf(buf, (linenr_T)n, FALSE));
2285}
2286
2287
2288/* Get a list of lines from the specified buffer. The line numbers
2289 * are in Vim format (1-based). The range is from lo up to, but not
2290 * including, hi. The list is returned as a Python list of string objects.
2291 */
2292 static PyObject *
2293GetBufferLineList(buf_T *buf, PyInt lo, PyInt hi)
2294{
2295 PyInt i;
2296 PyInt n = hi - lo;
2297 PyObject *list = PyList_New(n);
2298
2299 if (list == NULL)
2300 return NULL;
2301
2302 for (i = 0; i < n; ++i)
2303 {
2304 PyObject *str = LineToString((char *)ml_get_buf(buf, (linenr_T)(lo+i), FALSE));
2305
2306 /* Error check - was the Python string creation OK? */
2307 if (str == NULL)
2308 {
2309 Py_DECREF(list);
2310 return NULL;
2311 }
2312
2313 /* Set the list item */
2314 if (PyList_SetItem(list, i, str))
2315 {
2316 Py_DECREF(str);
2317 Py_DECREF(list);
2318 return NULL;
2319 }
2320 }
2321
2322 /* The ownership of the Python list is passed to the caller (ie,
2323 * the caller should Py_DECREF() the object when it is finished
2324 * with it).
2325 */
2326
2327 return list;
2328}
2329
2330/*
2331 * Check if deleting lines made the cursor position invalid.
2332 * Changed the lines from "lo" to "hi" and added "extra" lines (negative if
2333 * deleted).
2334 */
2335 static void
2336py_fix_cursor(linenr_T lo, linenr_T hi, linenr_T extra)
2337{
2338 if (curwin->w_cursor.lnum >= lo)
2339 {
2340 /* Adjust the cursor position if it's in/after the changed
2341 * lines. */
2342 if (curwin->w_cursor.lnum >= hi)
2343 {
2344 curwin->w_cursor.lnum += extra;
2345 check_cursor_col();
2346 }
2347 else if (extra < 0)
2348 {
2349 curwin->w_cursor.lnum = lo;
2350 check_cursor();
2351 }
2352 else
2353 check_cursor_col();
2354 changed_cline_bef_curs();
2355 }
2356 invalidate_botline();
2357}
2358
Bram Moolenaar19e60942011-06-19 00:27:51 +02002359/*
2360 * Replace a line in the specified buffer. The line number is
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002361 * in Vim format (1-based). The replacement line is given as
2362 * a Python string object. The object is checked for validity
2363 * and correct format. Errors are returned as a value of FAIL.
2364 * The return value is OK on success.
2365 * If OK is returned and len_change is not NULL, *len_change
2366 * is set to the change in the buffer length.
2367 */
2368 static int
2369SetBufferLine(buf_T *buf, PyInt n, PyObject *line, PyInt *len_change)
2370{
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002371 /* First of all, we check the type of the supplied Python object.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002372 * There are three cases:
2373 * 1. NULL, or None - this is a deletion.
2374 * 2. A string - this is a replacement.
2375 * 3. Anything else - this is an error.
2376 */
2377 if (line == Py_None || line == NULL)
2378 {
Bram Moolenaar105bc352013-05-17 16:03:57 +02002379 buf_T *savebuf;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002380
2381 PyErr_Clear();
Bram Moolenaar105bc352013-05-17 16:03:57 +02002382 switch_buffer(&savebuf, buf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002383
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02002384 VimTryStart();
2385
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002386 if (u_savedel((linenr_T)n, 1L) == FAIL)
2387 PyErr_SetVim(_("cannot save undo information"));
2388 else if (ml_delete((linenr_T)n, FALSE) == FAIL)
2389 PyErr_SetVim(_("cannot delete line"));
2390 else
2391 {
Bram Moolenaar105bc352013-05-17 16:03:57 +02002392 if (buf == savebuf)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002393 py_fix_cursor((linenr_T)n, (linenr_T)n + 1, (linenr_T)-1);
2394 deleted_lines_mark((linenr_T)n, 1L);
2395 }
2396
Bram Moolenaar105bc352013-05-17 16:03:57 +02002397 restore_buffer(savebuf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002398
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02002399 if (VimTryEnd())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002400 return FAIL;
2401
2402 if (len_change)
2403 *len_change = -1;
2404
2405 return OK;
2406 }
2407 else if (PyString_Check(line))
2408 {
2409 char *save = StringToLine(line);
Bram Moolenaar105bc352013-05-17 16:03:57 +02002410 buf_T *savebuf;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002411
2412 if (save == NULL)
2413 return FAIL;
2414
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02002415 VimTryStart();
2416
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002417 /* We do not need to free "save" if ml_replace() consumes it. */
2418 PyErr_Clear();
Bram Moolenaar105bc352013-05-17 16:03:57 +02002419 switch_buffer(&savebuf, buf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002420
2421 if (u_savesub((linenr_T)n) == FAIL)
2422 {
2423 PyErr_SetVim(_("cannot save undo information"));
2424 vim_free(save);
2425 }
2426 else if (ml_replace((linenr_T)n, (char_u *)save, FALSE) == FAIL)
2427 {
2428 PyErr_SetVim(_("cannot replace line"));
2429 vim_free(save);
2430 }
2431 else
2432 changed_bytes((linenr_T)n, 0);
2433
Bram Moolenaar105bc352013-05-17 16:03:57 +02002434 restore_buffer(savebuf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002435
2436 /* Check that the cursor is not beyond the end of the line now. */
Bram Moolenaar105bc352013-05-17 16:03:57 +02002437 if (buf == savebuf)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002438 check_cursor_col();
2439
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02002440 if (VimTryEnd())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002441 return FAIL;
2442
2443 if (len_change)
2444 *len_change = 0;
2445
2446 return OK;
2447 }
2448 else
2449 {
2450 PyErr_BadArgument();
2451 return FAIL;
2452 }
2453}
2454
Bram Moolenaar19e60942011-06-19 00:27:51 +02002455/* Replace a range of lines in the specified buffer. The line numbers are in
2456 * Vim format (1-based). The range is from lo up to, but not including, hi.
2457 * The replacement lines are given as a Python list of string objects. The
2458 * list is checked for validity and correct format. Errors are returned as a
2459 * value of FAIL. The return value is OK on success.
2460 * If OK is returned and len_change is not NULL, *len_change
2461 * is set to the change in the buffer length.
2462 */
2463 static int
2464SetBufferLineList(buf_T *buf, PyInt lo, PyInt hi, PyObject *list, PyInt *len_change)
2465{
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002466 /* First of all, we check the type of the supplied Python object.
Bram Moolenaar19e60942011-06-19 00:27:51 +02002467 * There are three cases:
2468 * 1. NULL, or None - this is a deletion.
2469 * 2. A list - this is a replacement.
2470 * 3. Anything else - this is an error.
2471 */
2472 if (list == Py_None || list == NULL)
2473 {
2474 PyInt i;
2475 PyInt n = (int)(hi - lo);
Bram Moolenaar105bc352013-05-17 16:03:57 +02002476 buf_T *savebuf;
Bram Moolenaar19e60942011-06-19 00:27:51 +02002477
2478 PyErr_Clear();
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02002479 VimTryStart();
Bram Moolenaar105bc352013-05-17 16:03:57 +02002480 switch_buffer(&savebuf, buf);
Bram Moolenaar19e60942011-06-19 00:27:51 +02002481
2482 if (u_savedel((linenr_T)lo, (long)n) == FAIL)
2483 PyErr_SetVim(_("cannot save undo information"));
2484 else
2485 {
2486 for (i = 0; i < n; ++i)
2487 {
2488 if (ml_delete((linenr_T)lo, FALSE) == FAIL)
2489 {
2490 PyErr_SetVim(_("cannot delete line"));
2491 break;
2492 }
2493 }
Bram Moolenaar105bc352013-05-17 16:03:57 +02002494 if (buf == savebuf)
Bram Moolenaar19e60942011-06-19 00:27:51 +02002495 py_fix_cursor((linenr_T)lo, (linenr_T)hi, (linenr_T)-n);
2496 deleted_lines_mark((linenr_T)lo, (long)i);
2497 }
2498
Bram Moolenaar105bc352013-05-17 16:03:57 +02002499 restore_buffer(savebuf);
Bram Moolenaar19e60942011-06-19 00:27:51 +02002500
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02002501 if (VimTryEnd())
Bram Moolenaar19e60942011-06-19 00:27:51 +02002502 return FAIL;
2503
2504 if (len_change)
2505 *len_change = -n;
2506
2507 return OK;
2508 }
2509 else if (PyList_Check(list))
2510 {
2511 PyInt i;
2512 PyInt new_len = PyList_Size(list);
2513 PyInt old_len = hi - lo;
2514 PyInt extra = 0; /* lines added to text, can be negative */
2515 char **array;
2516 buf_T *savebuf;
2517
2518 if (new_len == 0) /* avoid allocating zero bytes */
2519 array = NULL;
2520 else
2521 {
2522 array = (char **)alloc((unsigned)(new_len * sizeof(char *)));
2523 if (array == NULL)
2524 {
2525 PyErr_NoMemory();
2526 return FAIL;
2527 }
2528 }
2529
2530 for (i = 0; i < new_len; ++i)
2531 {
2532 PyObject *line = PyList_GetItem(list, i);
2533
2534 array[i] = StringToLine(line);
2535 if (array[i] == NULL)
2536 {
2537 while (i)
2538 vim_free(array[--i]);
2539 vim_free(array);
2540 return FAIL;
2541 }
2542 }
2543
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02002544 VimTryStart();
Bram Moolenaar19e60942011-06-19 00:27:51 +02002545 PyErr_Clear();
Bram Moolenaar105bc352013-05-17 16:03:57 +02002546
2547 // START of region without "return". Must call restore_buffer()!
2548 switch_buffer(&savebuf, buf);
Bram Moolenaar19e60942011-06-19 00:27:51 +02002549
2550 if (u_save((linenr_T)(lo-1), (linenr_T)hi) == FAIL)
2551 PyErr_SetVim(_("cannot save undo information"));
2552
2553 /* If the size of the range is reducing (ie, new_len < old_len) we
2554 * need to delete some old_len. We do this at the start, by
2555 * repeatedly deleting line "lo".
2556 */
2557 if (!PyErr_Occurred())
2558 {
2559 for (i = 0; i < old_len - new_len; ++i)
2560 if (ml_delete((linenr_T)lo, FALSE) == FAIL)
2561 {
2562 PyErr_SetVim(_("cannot delete line"));
2563 break;
2564 }
2565 extra -= i;
2566 }
2567
2568 /* For as long as possible, replace the existing old_len with the
2569 * new old_len. This is a more efficient operation, as it requires
2570 * less memory allocation and freeing.
2571 */
2572 if (!PyErr_Occurred())
2573 {
2574 for (i = 0; i < old_len && i < new_len; ++i)
2575 if (ml_replace((linenr_T)(lo+i), (char_u *)array[i], FALSE)
2576 == FAIL)
2577 {
2578 PyErr_SetVim(_("cannot replace line"));
2579 break;
2580 }
2581 }
2582 else
2583 i = 0;
2584
2585 /* Now we may need to insert the remaining new old_len. If we do, we
2586 * must free the strings as we finish with them (we can't pass the
2587 * responsibility to vim in this case).
2588 */
2589 if (!PyErr_Occurred())
2590 {
2591 while (i < new_len)
2592 {
2593 if (ml_append((linenr_T)(lo + i - 1),
2594 (char_u *)array[i], 0, FALSE) == FAIL)
2595 {
2596 PyErr_SetVim(_("cannot insert line"));
2597 break;
2598 }
2599 vim_free(array[i]);
2600 ++i;
2601 ++extra;
2602 }
2603 }
2604
2605 /* Free any left-over old_len, as a result of an error */
2606 while (i < new_len)
2607 {
2608 vim_free(array[i]);
2609 ++i;
2610 }
2611
2612 /* Free the array of old_len. All of its contents have now
2613 * been dealt with (either freed, or the responsibility passed
2614 * to vim.
2615 */
2616 vim_free(array);
2617
2618 /* Adjust marks. Invalidate any which lie in the
2619 * changed range, and move any in the remainder of the buffer.
2620 */
2621 mark_adjust((linenr_T)lo, (linenr_T)(hi - 1),
2622 (long)MAXLNUM, (long)extra);
2623 changed_lines((linenr_T)lo, 0, (linenr_T)hi, (long)extra);
2624
Bram Moolenaar105bc352013-05-17 16:03:57 +02002625 if (buf == savebuf)
Bram Moolenaar19e60942011-06-19 00:27:51 +02002626 py_fix_cursor((linenr_T)lo, (linenr_T)hi, (linenr_T)extra);
2627
Bram Moolenaar105bc352013-05-17 16:03:57 +02002628 // END of region without "return".
2629 restore_buffer(savebuf);
Bram Moolenaar19e60942011-06-19 00:27:51 +02002630
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02002631 if (VimTryEnd())
Bram Moolenaar19e60942011-06-19 00:27:51 +02002632 return FAIL;
2633
2634 if (len_change)
2635 *len_change = new_len - old_len;
2636
2637 return OK;
2638 }
2639 else
2640 {
2641 PyErr_BadArgument();
2642 return FAIL;
2643 }
2644}
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002645
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02002646/* Insert a number of lines into the specified buffer after the specified line.
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002647 * The line number is in Vim format (1-based). The lines to be inserted are
2648 * given as a Python list of string objects or as a single string. The lines
2649 * to be added are checked for validity and correct format. Errors are
2650 * returned as a value of FAIL. The return value is OK on success.
2651 * If OK is returned and len_change is not NULL, *len_change
2652 * is set to the change in the buffer length.
2653 */
2654 static int
2655InsertBufferLines(buf_T *buf, PyInt n, PyObject *lines, PyInt *len_change)
2656{
2657 /* First of all, we check the type of the supplied Python object.
2658 * It must be a string or a list, or the call is in error.
2659 */
2660 if (PyString_Check(lines))
2661 {
2662 char *str = StringToLine(lines);
2663 buf_T *savebuf;
2664
2665 if (str == NULL)
2666 return FAIL;
2667
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002668 PyErr_Clear();
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02002669 VimTryStart();
Bram Moolenaar105bc352013-05-17 16:03:57 +02002670 switch_buffer(&savebuf, buf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002671
2672 if (u_save((linenr_T)n, (linenr_T)(n+1)) == FAIL)
2673 PyErr_SetVim(_("cannot save undo information"));
2674 else if (ml_append((linenr_T)n, (char_u *)str, 0, FALSE) == FAIL)
2675 PyErr_SetVim(_("cannot insert line"));
2676 else
2677 appended_lines_mark((linenr_T)n, 1L);
2678
2679 vim_free(str);
Bram Moolenaar105bc352013-05-17 16:03:57 +02002680 restore_buffer(savebuf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002681 update_screen(VALID);
2682
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02002683 if (VimTryEnd())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002684 return FAIL;
2685
2686 if (len_change)
2687 *len_change = 1;
2688
2689 return OK;
2690 }
2691 else if (PyList_Check(lines))
2692 {
2693 PyInt i;
2694 PyInt size = PyList_Size(lines);
2695 char **array;
2696 buf_T *savebuf;
2697
2698 array = (char **)alloc((unsigned)(size * sizeof(char *)));
2699 if (array == NULL)
2700 {
2701 PyErr_NoMemory();
2702 return FAIL;
2703 }
2704
2705 for (i = 0; i < size; ++i)
2706 {
2707 PyObject *line = PyList_GetItem(lines, i);
2708 array[i] = StringToLine(line);
2709
2710 if (array[i] == NULL)
2711 {
2712 while (i)
2713 vim_free(array[--i]);
2714 vim_free(array);
2715 return FAIL;
2716 }
2717 }
2718
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002719 PyErr_Clear();
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02002720 VimTryStart();
Bram Moolenaar105bc352013-05-17 16:03:57 +02002721 switch_buffer(&savebuf, buf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002722
2723 if (u_save((linenr_T)n, (linenr_T)(n + 1)) == FAIL)
2724 PyErr_SetVim(_("cannot save undo information"));
2725 else
2726 {
2727 for (i = 0; i < size; ++i)
2728 {
2729 if (ml_append((linenr_T)(n + i),
2730 (char_u *)array[i], 0, FALSE) == FAIL)
2731 {
2732 PyErr_SetVim(_("cannot insert line"));
2733
2734 /* Free the rest of the lines */
2735 while (i < size)
2736 vim_free(array[i++]);
2737
2738 break;
2739 }
2740 vim_free(array[i]);
2741 }
2742 if (i > 0)
2743 appended_lines_mark((linenr_T)n, (long)i);
2744 }
2745
2746 /* Free the array of lines. All of its contents have now
2747 * been freed.
2748 */
2749 vim_free(array);
2750
Bram Moolenaar105bc352013-05-17 16:03:57 +02002751 restore_buffer(savebuf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002752 update_screen(VALID);
2753
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02002754 if (VimTryEnd())
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002755 return FAIL;
2756
2757 if (len_change)
2758 *len_change = size;
2759
2760 return OK;
2761 }
2762 else
2763 {
2764 PyErr_BadArgument();
2765 return FAIL;
2766 }
2767}
2768
2769/*
2770 * Common routines for buffers and line ranges
2771 * -------------------------------------------
2772 */
2773
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02002774typedef struct
2775{
2776 PyObject_HEAD
2777 buf_T *buf;
2778} BufferObject;
2779
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002780 static int
Bram Moolenaard6e39182013-05-21 18:30:34 +02002781CheckBuffer(BufferObject *self)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002782{
Bram Moolenaard6e39182013-05-21 18:30:34 +02002783 if (self->buf == INVALID_BUFFER_VALUE)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002784 {
2785 PyErr_SetVim(_("attempt to refer to deleted buffer"));
2786 return -1;
2787 }
2788
2789 return 0;
2790}
2791
2792 static PyObject *
2793RBItem(BufferObject *self, PyInt n, PyInt start, PyInt end)
2794{
2795 if (CheckBuffer(self))
2796 return NULL;
2797
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02002798 if (end == -1)
2799 end = self->buf->b_ml.ml_line_count;
2800
Bram Moolenaarbd80f352013-05-12 21:16:23 +02002801 if (n < 0)
2802 n += end - start + 1;
2803
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002804 if (n < 0 || n > end - start)
2805 {
2806 PyErr_SetString(PyExc_IndexError, _("line number out of range"));
2807 return NULL;
2808 }
2809
2810 return GetBufferLine(self->buf, n+start);
2811}
2812
2813 static PyObject *
2814RBSlice(BufferObject *self, PyInt lo, PyInt hi, PyInt start, PyInt end)
2815{
2816 PyInt size;
2817
2818 if (CheckBuffer(self))
2819 return NULL;
2820
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02002821 if (end == -1)
2822 end = self->buf->b_ml.ml_line_count;
2823
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002824 size = end - start + 1;
2825
2826 if (lo < 0)
2827 lo = 0;
2828 else if (lo > size)
2829 lo = size;
2830 if (hi < 0)
2831 hi = 0;
2832 if (hi < lo)
2833 hi = lo;
2834 else if (hi > size)
2835 hi = size;
2836
2837 return GetBufferLineList(self->buf, lo+start, hi+start);
2838}
2839
2840 static PyInt
2841RBAsItem(BufferObject *self, PyInt n, PyObject *val, PyInt start, PyInt end, PyInt *new_end)
2842{
2843 PyInt len_change;
2844
2845 if (CheckBuffer(self))
2846 return -1;
2847
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02002848 if (end == -1)
2849 end = self->buf->b_ml.ml_line_count;
2850
Bram Moolenaarbd80f352013-05-12 21:16:23 +02002851 if (n < 0)
2852 n += end - start + 1;
2853
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002854 if (n < 0 || n > end - start)
2855 {
2856 PyErr_SetString(PyExc_IndexError, _("line number out of range"));
2857 return -1;
2858 }
2859
2860 if (SetBufferLine(self->buf, n+start, val, &len_change) == FAIL)
2861 return -1;
2862
2863 if (new_end)
2864 *new_end = end + len_change;
2865
2866 return 0;
2867}
2868
Bram Moolenaar19e60942011-06-19 00:27:51 +02002869 static PyInt
2870RBAsSlice(BufferObject *self, PyInt lo, PyInt hi, PyObject *val, PyInt start, PyInt end, PyInt *new_end)
2871{
2872 PyInt size;
2873 PyInt len_change;
2874
2875 /* Self must be a valid buffer */
2876 if (CheckBuffer(self))
2877 return -1;
2878
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02002879 if (end == -1)
2880 end = self->buf->b_ml.ml_line_count;
2881
Bram Moolenaar19e60942011-06-19 00:27:51 +02002882 /* Sort out the slice range */
2883 size = end - start + 1;
2884
2885 if (lo < 0)
2886 lo = 0;
2887 else if (lo > size)
2888 lo = size;
2889 if (hi < 0)
2890 hi = 0;
2891 if (hi < lo)
2892 hi = lo;
2893 else if (hi > size)
2894 hi = size;
2895
2896 if (SetBufferLineList(self->buf, lo + start, hi + start,
2897 val, &len_change) == FAIL)
2898 return -1;
2899
2900 if (new_end)
2901 *new_end = end + len_change;
2902
2903 return 0;
2904}
2905
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002906
2907 static PyObject *
2908RBAppend(BufferObject *self, PyObject *args, PyInt start, PyInt end, PyInt *new_end)
2909{
2910 PyObject *lines;
2911 PyInt len_change;
2912 PyInt max;
2913 PyInt n;
2914
2915 if (CheckBuffer(self))
2916 return NULL;
2917
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02002918 if (end == -1)
2919 end = self->buf->b_ml.ml_line_count;
2920
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002921 max = n = end - start + 1;
2922
2923 if (!PyArg_ParseTuple(args, "O|n", &lines, &n))
2924 return NULL;
2925
2926 if (n < 0 || n > max)
2927 {
Bram Moolenaar8661b172013-05-15 15:44:28 +02002928 PyErr_SetString(PyExc_IndexError, _("line number out of range"));
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002929 return NULL;
2930 }
2931
2932 if (InsertBufferLines(self->buf, n + start - 1, lines, &len_change) == FAIL)
2933 return NULL;
2934
2935 if (new_end)
2936 *new_end = end + len_change;
2937
2938 Py_INCREF(Py_None);
2939 return Py_None;
2940}
2941
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02002942/* Range object
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002943 */
2944
Bram Moolenaar4d1da492013-04-24 13:39:15 +02002945static PyTypeObject RangeType;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02002946static PySequenceMethods RangeAsSeq;
2947static PyMappingMethods RangeAsMapping;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02002948
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002949typedef struct
2950{
2951 PyObject_HEAD
2952 BufferObject *buf;
2953 PyInt start;
2954 PyInt end;
2955} RangeObject;
2956
2957 static PyObject *
2958RangeNew(buf_T *buf, PyInt start, PyInt end)
2959{
2960 BufferObject *bufr;
2961 RangeObject *self;
Bram Moolenaar774267b2013-05-21 20:51:59 +02002962 self = PyObject_GC_New(RangeObject, &RangeType);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02002963 if (self == NULL)
2964 return NULL;
2965
2966 bufr = (BufferObject *)BufferNew(buf);
2967 if (bufr == NULL)
2968 {
2969 Py_DECREF(self);
2970 return NULL;
2971 }
2972 Py_INCREF(bufr);
2973
2974 self->buf = bufr;
2975 self->start = start;
2976 self->end = end;
2977
2978 return (PyObject *)(self);
2979}
2980
Bram Moolenaar4d1da492013-04-24 13:39:15 +02002981 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02002982RangeDestructor(RangeObject *self)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02002983{
Bram Moolenaar774267b2013-05-21 20:51:59 +02002984 PyObject_GC_UnTrack((void *)(self));
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02002985 Py_XDECREF(self->buf);
Bram Moolenaar774267b2013-05-21 20:51:59 +02002986 PyObject_GC_Del((void *)(self));
2987}
2988
2989 static int
2990RangeTraverse(RangeObject *self, visitproc visit, void *arg)
2991{
2992 Py_VISIT(((PyObject *)(self->buf)));
2993 return 0;
2994}
2995
2996 static int
2997RangeClear(RangeObject *self)
2998{
2999 Py_CLEAR(self->buf);
3000 return 0;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003001}
3002
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003003 static PyInt
Bram Moolenaard6e39182013-05-21 18:30:34 +02003004RangeLength(RangeObject *self)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003005{
3006 /* HOW DO WE SIGNAL AN ERROR FROM THIS FUNCTION? */
Bram Moolenaard6e39182013-05-21 18:30:34 +02003007 if (CheckBuffer(self->buf))
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003008 return -1; /* ??? */
3009
Bram Moolenaard6e39182013-05-21 18:30:34 +02003010 return (self->end - self->start + 1);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003011}
3012
3013 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003014RangeItem(RangeObject *self, PyInt n)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003015{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003016 return RBItem(self->buf, n, self->start, self->end);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003017}
3018
3019 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003020RangeSlice(RangeObject *self, PyInt lo, PyInt hi)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003021{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003022 return RBSlice(self->buf, lo, hi, self->start, self->end);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003023}
3024
3025 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003026RangeAppend(RangeObject *self, PyObject *args)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003027{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003028 return RBAppend(self->buf, args, self->start, self->end, &self->end);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003029}
3030
3031 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003032RangeRepr(RangeObject *self)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003033{
3034 static char repr[100];
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003035
Bram Moolenaard6e39182013-05-21 18:30:34 +02003036 if (self->buf->buf == INVALID_BUFFER_VALUE)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003037 {
3038 vim_snprintf(repr, 100, "<range object (for deleted buffer) at %p>",
3039 (self));
3040 return PyString_FromString(repr);
3041 }
3042 else
3043 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02003044 char *name = (char *)self->buf->buf->b_fname;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003045 int len;
3046
3047 if (name == NULL)
3048 name = "";
3049 len = (int)strlen(name);
3050
3051 if (len > 45)
3052 name = name + (45 - len);
3053
3054 vim_snprintf(repr, 100, "<range %s%s (%d:%d)>",
3055 len > 45 ? "..." : "", name,
Bram Moolenaard6e39182013-05-21 18:30:34 +02003056 self->start, self->end);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003057
3058 return PyString_FromString(repr);
3059 }
3060}
3061
3062static struct PyMethodDef RangeMethods[] = {
Bram Moolenaar182dc4f2013-05-21 19:01:55 +02003063 /* name, function, calling, documentation */
3064 {"append", (PyCFunction)RangeAppend, METH_VARARGS, "Append data to the Vim range" },
3065 { NULL, NULL, 0, NULL }
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003066};
3067
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003068static PyTypeObject BufferType;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003069static PySequenceMethods BufferAsSeq;
3070static PyMappingMethods BufferAsMapping;
3071
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003072 static PyObject *
Bram Moolenaar971db462013-05-12 18:44:48 +02003073BufferNew(buf_T *buf)
3074{
3075 /* We need to handle deletion of buffers underneath us.
3076 * If we add a "b_python*_ref" field to the buf_T structure,
3077 * then we can get at it in buf_freeall() in vim. We then
3078 * need to create only ONE Python object per buffer - if
3079 * we try to create a second, just INCREF the existing one
3080 * and return it. The (single) Python object referring to
3081 * the buffer is stored in "b_python*_ref".
3082 * Question: what to do on a buf_freeall(). We'll probably
3083 * have to either delete the Python object (DECREF it to
3084 * zero - a bad idea, as it leaves dangling refs!) or
3085 * set the buf_T * value to an invalid value (-1?), which
3086 * means we need checks in all access functions... Bah.
3087 *
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003088 * Python2 and Python3 get different fields and different objects:
Bram Moolenaar971db462013-05-12 18:44:48 +02003089 * b_python_ref and b_python3_ref fields respectively.
3090 */
3091
3092 BufferObject *self;
3093
3094 if (BUF_PYTHON_REF(buf) != NULL)
3095 {
3096 self = BUF_PYTHON_REF(buf);
3097 Py_INCREF(self);
3098 }
3099 else
3100 {
3101 self = PyObject_NEW(BufferObject, &BufferType);
3102 if (self == NULL)
3103 return NULL;
3104 self->buf = buf;
3105 BUF_PYTHON_REF(buf) = self;
3106 }
3107
3108 return (PyObject *)(self);
3109}
3110
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003111 static void
Bram Moolenaard6e39182013-05-21 18:30:34 +02003112BufferDestructor(BufferObject *self)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003113{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003114 if (self->buf && self->buf != INVALID_BUFFER_VALUE)
3115 BUF_PYTHON_REF(self->buf) = NULL;
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003116
3117 DESTRUCTOR_FINISH(self);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003118}
3119
Bram Moolenaar971db462013-05-12 18:44:48 +02003120 static PyInt
Bram Moolenaard6e39182013-05-21 18:30:34 +02003121BufferLength(BufferObject *self)
Bram Moolenaar971db462013-05-12 18:44:48 +02003122{
3123 /* HOW DO WE SIGNAL AN ERROR FROM THIS FUNCTION? */
Bram Moolenaard6e39182013-05-21 18:30:34 +02003124 if (CheckBuffer(self))
Bram Moolenaar971db462013-05-12 18:44:48 +02003125 return -1; /* ??? */
3126
Bram Moolenaard6e39182013-05-21 18:30:34 +02003127 return (PyInt)(self->buf->b_ml.ml_line_count);
Bram Moolenaar971db462013-05-12 18:44:48 +02003128}
3129
3130 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003131BufferItem(BufferObject *self, PyInt n)
Bram Moolenaar971db462013-05-12 18:44:48 +02003132{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003133 return RBItem(self, n, 1, -1);
Bram Moolenaar971db462013-05-12 18:44:48 +02003134}
3135
3136 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003137BufferSlice(BufferObject *self, PyInt lo, PyInt hi)
Bram Moolenaar971db462013-05-12 18:44:48 +02003138{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003139 return RBSlice(self, lo, hi, 1, -1);
Bram Moolenaar971db462013-05-12 18:44:48 +02003140}
3141
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003142 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003143BufferAttr(BufferObject *self, char *name)
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003144{
3145 if (strcmp(name, "name") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02003146 return Py_BuildValue("s", self->buf->b_ffname);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003147 else if (strcmp(name, "number") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02003148 return Py_BuildValue(Py_ssize_t_fmt, self->buf->b_fnum);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003149 else if (strcmp(name, "vars") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02003150 return DictionaryNew(self->buf->b_vars);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003151 else if (strcmp(name, "options") == 0)
Bram Moolenaard6e39182013-05-21 18:30:34 +02003152 return OptionsNew(SREQ_BUF, self->buf, (checkfun) CheckBuffer,
3153 (PyObject *) self);
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003154 else if (strcmp(name,"__members__") == 0)
3155 return Py_BuildValue("[ssss]", "name", "number", "vars", "options");
3156 else
3157 return NULL;
3158}
3159
3160 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003161BufferAppend(BufferObject *self, PyObject *args)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003162{
Bram Moolenaard6e39182013-05-21 18:30:34 +02003163 return RBAppend(self, args, 1, -1, NULL);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003164}
3165
3166 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003167BufferMark(BufferObject *self, PyObject *args)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003168{
3169 pos_T *posp;
3170 char *pmark;
3171 char mark;
Bram Moolenaar105bc352013-05-17 16:03:57 +02003172 buf_T *savebuf;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003173
Bram Moolenaard6e39182013-05-21 18:30:34 +02003174 if (CheckBuffer(self))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003175 return NULL;
3176
3177 if (!PyArg_ParseTuple(args, "s", &pmark))
3178 return NULL;
3179 mark = *pmark;
3180
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003181 VimTryStart();
Bram Moolenaard6e39182013-05-21 18:30:34 +02003182 switch_buffer(&savebuf, self->buf);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003183 posp = getmark(mark, FALSE);
Bram Moolenaar105bc352013-05-17 16:03:57 +02003184 restore_buffer(savebuf);
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003185 if (VimTryEnd())
3186 return NULL;
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003187
3188 if (posp == NULL)
3189 {
3190 PyErr_SetVim(_("invalid mark name"));
3191 return NULL;
3192 }
3193
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003194 if (posp->lnum <= 0)
3195 {
3196 /* Or raise an error? */
3197 Py_INCREF(Py_None);
3198 return Py_None;
3199 }
3200
3201 return Py_BuildValue("(ll)", (long)(posp->lnum), (long)(posp->col));
3202}
3203
3204 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003205BufferRange(BufferObject *self, PyObject *args)
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003206{
3207 PyInt start;
3208 PyInt end;
3209
Bram Moolenaard6e39182013-05-21 18:30:34 +02003210 if (CheckBuffer(self))
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003211 return NULL;
3212
3213 if (!PyArg_ParseTuple(args, "nn", &start, &end))
3214 return NULL;
3215
Bram Moolenaard6e39182013-05-21 18:30:34 +02003216 return RangeNew(self->buf, start, end);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003217}
3218
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003219 static PyObject *
Bram Moolenaard6e39182013-05-21 18:30:34 +02003220BufferRepr(BufferObject *self)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003221{
3222 static char repr[100];
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003223
Bram Moolenaard6e39182013-05-21 18:30:34 +02003224 if (self->buf == INVALID_BUFFER_VALUE)
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003225 {
3226 vim_snprintf(repr, 100, _("<buffer object (deleted) at %p>"), (self));
3227 return PyString_FromString(repr);
3228 }
3229 else
3230 {
Bram Moolenaard6e39182013-05-21 18:30:34 +02003231 char *name = (char *)self->buf->b_fname;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003232 PyInt len;
3233
3234 if (name == NULL)
3235 name = "";
3236 len = strlen(name);
3237
3238 if (len > 35)
3239 name = name + (35 - len);
3240
3241 vim_snprintf(repr, 100, "<buffer %s%s>", len > 35 ? "..." : "", name);
3242
3243 return PyString_FromString(repr);
3244 }
3245}
3246
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003247static struct PyMethodDef BufferMethods[] = {
Bram Moolenaar182dc4f2013-05-21 19:01:55 +02003248 /* name, function, calling, documentation */
3249 {"append", (PyCFunction)BufferAppend, METH_VARARGS, "Append data to Vim buffer" },
3250 {"mark", (PyCFunction)BufferMark, METH_VARARGS, "Return (row,col) representing position of named mark" },
3251 {"range", (PyCFunction)BufferRange, METH_VARARGS, "Return a range object which represents the part of the given buffer between line numbers s and e" },
Bram Moolenaar7f85d292012-02-04 20:17:26 +01003252#if PY_VERSION_HEX >= 0x03000000
Bram Moolenaar182dc4f2013-05-21 19:01:55 +02003253 {"__dir__", (PyCFunction)BufferDir, METH_NOARGS, "List buffer attributes" },
Bram Moolenaar7f85d292012-02-04 20:17:26 +01003254#endif
Bram Moolenaar182dc4f2013-05-21 19:01:55 +02003255 { NULL, NULL, 0, NULL }
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003256};
3257
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02003258/*
3259 * Buffer list object - Implementation
3260 */
3261
3262static PyTypeObject BufMapType;
3263
3264typedef struct
3265{
3266 PyObject_HEAD
3267} BufMapObject;
3268
3269 static PyInt
3270BufMapLength(PyObject *self UNUSED)
3271{
3272 buf_T *b = firstbuf;
3273 PyInt n = 0;
3274
3275 while (b)
3276 {
3277 ++n;
3278 b = b->b_next;
3279 }
3280
3281 return n;
3282}
3283
3284 static PyObject *
3285BufMapItem(PyObject *self UNUSED, PyObject *keyObject)
3286{
3287 buf_T *b;
3288 int bnr;
3289
3290#if PY_MAJOR_VERSION < 3
3291 if (PyInt_Check(keyObject))
3292 bnr = PyInt_AsLong(keyObject);
3293 else
3294#endif
3295 if (PyLong_Check(keyObject))
3296 bnr = PyLong_AsLong(keyObject);
3297 else
3298 {
Bram Moolenaar8661b172013-05-15 15:44:28 +02003299 PyErr_SetString(PyExc_TypeError, _("key must be integer"));
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02003300 return NULL;
3301 }
3302
3303 b = buflist_findnr(bnr);
3304
3305 if (b)
3306 return BufferNew(b);
3307 else
3308 {
Bram Moolenaar4d188da2013-05-15 15:35:09 +02003309 PyErr_SetObject(PyExc_KeyError, keyObject);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02003310 return NULL;
3311 }
3312}
3313
3314 static void
3315BufMapIterDestruct(PyObject *buffer)
3316{
3317 /* Iteration was stopped before all buffers were processed */
3318 if (buffer)
3319 {
3320 Py_DECREF(buffer);
3321 }
3322}
3323
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02003324 static int
3325BufMapIterTraverse(PyObject *buffer, visitproc visit, void *arg)
3326{
Bram Moolenaar774267b2013-05-21 20:51:59 +02003327 if (buffer)
3328 Py_VISIT(buffer);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02003329 return 0;
3330}
3331
3332 static int
3333BufMapIterClear(PyObject **buffer)
3334{
Bram Moolenaar774267b2013-05-21 20:51:59 +02003335 if (*buffer)
3336 Py_CLEAR(*buffer);
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02003337 return 0;
3338}
3339
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02003340 static PyObject *
3341BufMapIterNext(PyObject **buffer)
3342{
3343 PyObject *next;
3344 PyObject *r;
3345
3346 if (!*buffer)
3347 return NULL;
3348
3349 r = *buffer;
3350
3351 if (CheckBuffer((BufferObject *)(r)))
3352 {
3353 *buffer = NULL;
3354 return NULL;
3355 }
3356
3357 if (!((BufferObject *)(r))->buf->b_next)
3358 next = NULL;
3359 else if (!(next = BufferNew(((BufferObject *)(r))->buf->b_next)))
3360 return NULL;
3361 *buffer = next;
Bram Moolenaar9e74e302013-05-17 21:20:17 +02003362 /* Do not increment reference: we no longer hold it (decref), but whoever
3363 * on other side will hold (incref). Decref+incref = nothing. */
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02003364 return r;
3365}
3366
3367 static PyObject *
3368BufMapIter(PyObject *self UNUSED)
3369{
3370 PyObject *buffer;
3371
3372 buffer = BufferNew(firstbuf);
3373 return IterNew(buffer,
Bram Moolenaarcfef5ff2013-05-17 16:24:32 +02003374 (destructorfun) BufMapIterDestruct, (nextfun) BufMapIterNext,
3375 (traversefun) BufMapIterTraverse, (clearfun) BufMapIterClear);
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02003376}
3377
3378static PyMappingMethods BufMapAsMapping = {
3379 (lenfunc) BufMapLength,
3380 (binaryfunc) BufMapItem,
3381 (objobjargproc) 0,
3382};
3383
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003384/* Current items object
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02003385 */
3386
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003387 static PyObject *
3388CurrentGetattr(PyObject *self UNUSED, char *name)
3389{
3390 if (strcmp(name, "buffer") == 0)
3391 return (PyObject *)BufferNew(curbuf);
3392 else if (strcmp(name, "window") == 0)
Bram Moolenaarcabf80f2013-05-17 16:18:33 +02003393 return (PyObject *)WindowNew(curwin, curtab);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003394 else if (strcmp(name, "tabpage") == 0)
3395 return (PyObject *)TabPageNew(curtab);
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003396 else if (strcmp(name, "line") == 0)
3397 return GetBufferLine(curbuf, (PyInt)curwin->w_cursor.lnum);
3398 else if (strcmp(name, "range") == 0)
3399 return RangeNew(curbuf, RangeStart, RangeEnd);
3400 else if (strcmp(name,"__members__") == 0)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02003401 return Py_BuildValue("[sssss]", "buffer", "window", "line", "range",
3402 "tabpage");
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003403 else
3404 {
3405 PyErr_SetString(PyExc_AttributeError, name);
3406 return NULL;
3407 }
3408}
3409
3410 static int
3411CurrentSetattr(PyObject *self UNUSED, char *name, PyObject *value)
3412{
3413 if (strcmp(name, "line") == 0)
3414 {
3415 if (SetBufferLine(curbuf, (PyInt)curwin->w_cursor.lnum, value, NULL) == FAIL)
3416 return -1;
3417
3418 return 0;
3419 }
Bram Moolenaare7614592013-05-15 15:51:08 +02003420 else if (strcmp(name, "buffer") == 0)
3421 {
3422 int count;
3423
3424 if (value->ob_type != &BufferType)
3425 {
3426 PyErr_SetString(PyExc_TypeError, _("expected vim.buffer object"));
3427 return -1;
3428 }
3429
3430 if (CheckBuffer((BufferObject *)(value)))
3431 return -1;
3432 count = ((BufferObject *)(value))->buf->b_fnum;
3433
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003434 VimTryStart();
Bram Moolenaare7614592013-05-15 15:51:08 +02003435 if (do_buffer(DOBUF_GOTO, DOBUF_FIRST, FORWARD, count, 0) == FAIL)
3436 {
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003437 if (VimTryEnd())
3438 return -1;
Bram Moolenaare7614592013-05-15 15:51:08 +02003439 PyErr_SetVim(_("failed to switch to given buffer"));
3440 return -1;
3441 }
3442
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003443 return VimTryEnd();
Bram Moolenaare7614592013-05-15 15:51:08 +02003444 }
3445 else if (strcmp(name, "window") == 0)
3446 {
3447 int count;
3448
3449 if (value->ob_type != &WindowType)
3450 {
3451 PyErr_SetString(PyExc_TypeError, _("expected vim.window object"));
3452 return -1;
3453 }
3454
3455 if (CheckWindow((WindowObject *)(value)))
3456 return -1;
3457 count = get_win_number(((WindowObject *)(value))->win, firstwin);
3458
3459 if (!count)
3460 {
3461 PyErr_SetString(PyExc_ValueError,
3462 _("failed to find window in the current tab page"));
3463 return -1;
3464 }
3465
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003466 VimTryStart();
Bram Moolenaare7614592013-05-15 15:51:08 +02003467 win_goto(((WindowObject *)(value))->win);
3468 if (((WindowObject *)(value))->win != curwin)
3469 {
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003470 if (VimTryEnd())
3471 return -1;
Bram Moolenaare7614592013-05-15 15:51:08 +02003472 PyErr_SetString(PyExc_RuntimeError,
3473 _("did not switch to the specified window"));
3474 return -1;
3475 }
3476
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003477 return VimTryEnd();
Bram Moolenaare7614592013-05-15 15:51:08 +02003478 }
3479 else if (strcmp(name, "tabpage") == 0)
3480 {
3481 if (value->ob_type != &TabPageType)
3482 {
3483 PyErr_SetString(PyExc_TypeError, _("expected vim.tabpage object"));
3484 return -1;
3485 }
3486
3487 if (CheckTabPage((TabPageObject *)(value)))
3488 return -1;
3489
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003490 VimTryStart();
Bram Moolenaare7614592013-05-15 15:51:08 +02003491 goto_tabpage_tp(((TabPageObject *)(value))->tab, TRUE, TRUE);
3492 if (((TabPageObject *)(value))->tab != curtab)
3493 {
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003494 if (VimTryEnd())
3495 return -1;
Bram Moolenaare7614592013-05-15 15:51:08 +02003496 PyErr_SetString(PyExc_RuntimeError,
3497 _("did not switch to the specified tab page"));
3498 return -1;
3499 }
3500
Bram Moolenaara7b64ce2013-05-21 20:40:40 +02003501 return VimTryEnd();
Bram Moolenaare7614592013-05-15 15:51:08 +02003502 }
Bram Moolenaar4d1da492013-04-24 13:39:15 +02003503 else
3504 {
3505 PyErr_SetString(PyExc_AttributeError, name);
3506 return -1;
3507 }
3508}
3509
Bram Moolenaardb913952012-06-29 12:54:53 +02003510 static void
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02003511init_range_cmd(exarg_T *eap)
3512{
3513 RangeStart = eap->line1;
3514 RangeEnd = eap->line2;
3515}
3516
3517 static void
3518init_range_eval(typval_T *rettv UNUSED)
3519{
3520 RangeStart = (PyInt) curwin->w_cursor.lnum;
3521 RangeEnd = RangeStart;
3522}
3523
3524 static void
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02003525run_cmd(const char *cmd, void *arg UNUSED
3526#ifdef PY_CAN_RECURSE
3527 , PyGILState_STATE *pygilstate UNUSED
3528#endif
3529 )
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02003530{
3531 PyRun_SimpleString((char *) cmd);
3532}
3533
3534static const char *code_hdr = "def " DOPY_FUNC "(line, linenr):\n ";
3535static int code_hdr_len = 30;
3536
3537 static void
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02003538run_do(const char *cmd, void *arg UNUSED
3539#ifdef PY_CAN_RECURSE
3540 , PyGILState_STATE *pygilstate
3541#endif
3542 )
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02003543{
3544 PyInt lnum;
3545 size_t len;
3546 char *code;
3547 int status;
3548 PyObject *pyfunc, *pymain;
3549
3550 if (u_save(RangeStart - 1, RangeEnd + 1) != OK)
3551 {
3552 EMSG(_("cannot save undo information"));
3553 return;
3554 }
3555
3556 len = code_hdr_len + STRLEN(cmd);
3557 code = PyMem_New(char, len + 1);
3558 memcpy(code, code_hdr, code_hdr_len);
3559 STRCPY(code + code_hdr_len, cmd);
3560 status = PyRun_SimpleString(code);
3561 PyMem_Free(code);
3562
3563 if (status)
3564 {
3565 EMSG(_("failed to run the code"));
3566 return;
3567 }
3568
3569 status = 0;
3570 pymain = PyImport_AddModule("__main__");
3571 pyfunc = PyObject_GetAttrString(pymain, DOPY_FUNC);
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02003572#ifdef PY_CAN_RECURSE
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02003573 PyGILState_Release(*pygilstate);
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02003574#endif
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02003575
3576 for (lnum = RangeStart; lnum <= RangeEnd; ++lnum)
3577 {
3578 PyObject *line, *linenr, *ret;
3579
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02003580#ifdef PY_CAN_RECURSE
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02003581 *pygilstate = PyGILState_Ensure();
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02003582#endif
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02003583 if (!(line = GetBufferLine(curbuf, lnum)))
3584 goto err;
3585 if (!(linenr = PyInt_FromLong((long) lnum)))
3586 {
3587 Py_DECREF(line);
3588 goto err;
3589 }
3590 ret = PyObject_CallFunctionObjArgs(pyfunc, line, linenr, NULL);
3591 Py_DECREF(line);
3592 Py_DECREF(linenr);
3593 if (!ret)
3594 goto err;
3595
3596 if (ret != Py_None)
3597 if (SetBufferLine(curbuf, lnum, ret, NULL) == FAIL)
3598 goto err;
3599
3600 Py_XDECREF(ret);
3601 PythonIO_Flush();
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02003602#ifdef PY_CAN_RECURSE
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02003603 PyGILState_Release(*pygilstate);
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02003604#endif
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02003605 }
3606 goto out;
3607err:
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02003608#ifdef PY_CAN_RECURSE
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02003609 *pygilstate = PyGILState_Ensure();
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02003610#endif
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02003611 PyErr_PrintEx(0);
3612 PythonIO_Flush();
3613 status = 1;
3614out:
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02003615#ifdef PY_CAN_RECURSE
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02003616 if (!status)
3617 *pygilstate = PyGILState_Ensure();
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02003618#endif
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02003619 Py_DECREF(pyfunc);
3620 PyObject_SetAttrString(pymain, DOPY_FUNC, NULL);
3621 if (status)
3622 return;
3623 check_cursor();
3624 update_curbuf(NOT_VALID);
3625}
3626
3627 static void
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02003628run_eval(const char *cmd, typval_T *rettv
3629#ifdef PY_CAN_RECURSE
3630 , PyGILState_STATE *pygilstate UNUSED
3631#endif
3632 )
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02003633{
3634 PyObject *r;
3635
3636 r = PyRun_String((char *) cmd, Py_eval_input, globals, globals);
3637 if (r == NULL)
3638 {
3639 if (PyErr_Occurred() && !msg_silent)
3640 PyErr_PrintEx(0);
3641 EMSG(_("E858: Eval did not return a valid python object"));
3642 }
3643 else
3644 {
3645 if (ConvertFromPyObject(r, rettv) == -1)
3646 EMSG(_("E859: Failed to convert returned python object to vim value"));
3647 Py_DECREF(r);
3648 }
3649 PyErr_Clear();
3650}
3651
3652 static void
Bram Moolenaardb913952012-06-29 12:54:53 +02003653set_ref_in_py(const int copyID)
3654{
3655 pylinkedlist_T *cur;
3656 dict_T *dd;
3657 list_T *ll;
3658
3659 if (lastdict != NULL)
3660 for(cur = lastdict ; cur != NULL ; cur = cur->pll_prev)
3661 {
3662 dd = ((DictionaryObject *) (cur->pll_obj))->dict;
3663 if (dd->dv_copyID != copyID)
3664 {
3665 dd->dv_copyID = copyID;
3666 set_ref_in_ht(&dd->dv_hashtab, copyID);
3667 }
3668 }
3669
3670 if (lastlist != NULL)
3671 for(cur = lastlist ; cur != NULL ; cur = cur->pll_prev)
3672 {
3673 ll = ((ListObject *) (cur->pll_obj))->list;
3674 if (ll->lv_copyID != copyID)
3675 {
3676 ll->lv_copyID = copyID;
3677 set_ref_in_list(ll, copyID);
3678 }
3679 }
3680}
3681
3682 static int
3683set_string_copy(char_u *str, typval_T *tv)
3684{
3685 tv->vval.v_string = vim_strsave(str);
3686 if (tv->vval.v_string == NULL)
3687 {
3688 PyErr_NoMemory();
3689 return -1;
3690 }
3691 return 0;
3692}
3693
Bram Moolenaar3d0c52d2013-05-12 19:45:35 +02003694 static int
3695pydict_to_tv(PyObject *obj, typval_T *tv, PyObject *lookupDict)
3696{
3697 dict_T *d;
3698 char_u *key;
3699 dictitem_T *di;
3700 PyObject *keyObject;
3701 PyObject *valObject;
3702 Py_ssize_t iter = 0;
3703
3704 d = dict_alloc();
3705 if (d == NULL)
3706 {
3707 PyErr_NoMemory();
3708 return -1;
3709 }
3710
3711 tv->v_type = VAR_DICT;
3712 tv->vval.v_dict = d;
3713
3714 while (PyDict_Next(obj, &iter, &keyObject, &valObject))
3715 {
3716 DICTKEY_DECL
3717
3718 if (keyObject == NULL)
3719 return -1;
3720 if (valObject == NULL)
3721 return -1;
3722
3723 DICTKEY_GET_NOTEMPTY(-1)
3724
3725 di = dictitem_alloc(key);
3726
3727 DICTKEY_UNREF
3728
3729 if (di == NULL)
3730 {
3731 PyErr_NoMemory();
3732 return -1;
3733 }
3734 di->di_tv.v_lock = 0;
3735
3736 if (_ConvertFromPyObject(valObject, &di->di_tv, lookupDict) == -1)
3737 {
3738 vim_free(di);
3739 return -1;
3740 }
3741 if (dict_add(d, di) == FAIL)
3742 {
3743 vim_free(di);
3744 PyErr_SetVim(_("failed to add key to dictionary"));
3745 return -1;
3746 }
3747 }
3748 return 0;
3749}
3750
3751 static int
3752pymap_to_tv(PyObject *obj, typval_T *tv, PyObject *lookupDict)
3753{
3754 dict_T *d;
3755 char_u *key;
3756 dictitem_T *di;
3757 PyObject *list;
3758 PyObject *litem;
3759 PyObject *keyObject;
3760 PyObject *valObject;
3761 Py_ssize_t lsize;
3762
3763 d = dict_alloc();
3764 if (d == NULL)
3765 {
3766 PyErr_NoMemory();
3767 return -1;
3768 }
3769
3770 tv->v_type = VAR_DICT;
3771 tv->vval.v_dict = d;
3772
3773 list = PyMapping_Items(obj);
3774 if (list == NULL)
3775 return -1;
3776 lsize = PyList_Size(list);
3777 while (lsize--)
3778 {
3779 DICTKEY_DECL
3780
3781 litem = PyList_GetItem(list, lsize);
3782 if (litem == NULL)
3783 {
3784 Py_DECREF(list);
3785 return -1;
3786 }
3787
3788 keyObject = PyTuple_GetItem(litem, 0);
3789 if (keyObject == NULL)
3790 {
3791 Py_DECREF(list);
3792 Py_DECREF(litem);
3793 return -1;
3794 }
3795
3796 DICTKEY_GET_NOTEMPTY(-1)
3797
3798 valObject = PyTuple_GetItem(litem, 1);
3799 if (valObject == NULL)
3800 {
3801 Py_DECREF(list);
3802 Py_DECREF(litem);
3803 return -1;
3804 }
3805
3806 di = dictitem_alloc(key);
3807
3808 DICTKEY_UNREF
3809
3810 if (di == NULL)
3811 {
3812 Py_DECREF(list);
3813 Py_DECREF(litem);
3814 PyErr_NoMemory();
3815 return -1;
3816 }
3817 di->di_tv.v_lock = 0;
3818
3819 if (_ConvertFromPyObject(valObject, &di->di_tv, lookupDict) == -1)
3820 {
3821 vim_free(di);
3822 Py_DECREF(list);
3823 Py_DECREF(litem);
3824 return -1;
3825 }
3826 if (dict_add(d, di) == FAIL)
3827 {
3828 vim_free(di);
3829 Py_DECREF(list);
3830 Py_DECREF(litem);
3831 PyErr_SetVim(_("failed to add key to dictionary"));
3832 return -1;
3833 }
3834 Py_DECREF(litem);
3835 }
3836 Py_DECREF(list);
3837 return 0;
3838}
3839
3840 static int
3841pyseq_to_tv(PyObject *obj, typval_T *tv, PyObject *lookupDict)
3842{
3843 list_T *l;
3844
3845 l = list_alloc();
3846 if (l == NULL)
3847 {
3848 PyErr_NoMemory();
3849 return -1;
3850 }
3851
3852 tv->v_type = VAR_LIST;
3853 tv->vval.v_list = l;
3854
3855 if (list_py_concat(l, obj, lookupDict) == -1)
3856 return -1;
3857
3858 return 0;
3859}
3860
3861 static int
3862pyiter_to_tv(PyObject *obj, typval_T *tv, PyObject *lookupDict)
3863{
3864 PyObject *iterator = PyObject_GetIter(obj);
3865 PyObject *item;
3866 list_T *l;
3867 listitem_T *li;
3868
3869 l = list_alloc();
3870
3871 if (l == NULL)
3872 {
3873 PyErr_NoMemory();
3874 return -1;
3875 }
3876
3877 tv->vval.v_list = l;
3878 tv->v_type = VAR_LIST;
3879
3880
3881 if (iterator == NULL)
3882 return -1;
3883
3884 while ((item = PyIter_Next(obj)))
3885 {
3886 li = listitem_alloc();
3887 if (li == NULL)
3888 {
3889 PyErr_NoMemory();
3890 return -1;
3891 }
3892 li->li_tv.v_lock = 0;
3893
3894 if (_ConvertFromPyObject(item, &li->li_tv, lookupDict) == -1)
3895 return -1;
3896
3897 list_append(l, li);
3898
3899 Py_DECREF(item);
3900 }
3901
3902 Py_DECREF(iterator);
3903 return 0;
3904}
3905
Bram Moolenaardb913952012-06-29 12:54:53 +02003906typedef int (*pytotvfunc)(PyObject *, typval_T *, PyObject *);
3907
3908 static int
3909convert_dl(PyObject *obj, typval_T *tv,
3910 pytotvfunc py_to_tv, PyObject *lookupDict)
3911{
3912 PyObject *capsule;
3913 char hexBuf[sizeof(void *) * 2 + 3];
3914
3915 sprintf(hexBuf, "%p", obj);
3916
Bram Moolenaar2afa3232012-06-29 16:28:28 +02003917# ifdef PY_USE_CAPSULE
Bram Moolenaardb913952012-06-29 12:54:53 +02003918 capsule = PyDict_GetItemString(lookupDict, hexBuf);
Bram Moolenaar2afa3232012-06-29 16:28:28 +02003919# else
Bram Moolenaar221d6872012-06-30 13:34:34 +02003920 capsule = (PyObject *)PyDict_GetItemString(lookupDict, hexBuf);
Bram Moolenaar2afa3232012-06-29 16:28:28 +02003921# endif
Bram Moolenaar221d6872012-06-30 13:34:34 +02003922 if (capsule == NULL)
Bram Moolenaardb913952012-06-29 12:54:53 +02003923 {
Bram Moolenaar2afa3232012-06-29 16:28:28 +02003924# ifdef PY_USE_CAPSULE
Bram Moolenaardb913952012-06-29 12:54:53 +02003925 capsule = PyCapsule_New(tv, NULL, NULL);
Bram Moolenaar221d6872012-06-30 13:34:34 +02003926# else
3927 capsule = PyCObject_FromVoidPtr(tv, NULL);
3928# endif
Bram Moolenaardb913952012-06-29 12:54:53 +02003929 PyDict_SetItemString(lookupDict, hexBuf, capsule);
3930 Py_DECREF(capsule);
3931 if (py_to_tv(obj, tv, lookupDict) == -1)
3932 {
3933 tv->v_type = VAR_UNKNOWN;
3934 return -1;
3935 }
3936 /* As we are not using copy_tv which increments reference count we must
3937 * do it ourself. */
3938 switch(tv->v_type)
3939 {
3940 case VAR_DICT: ++tv->vval.v_dict->dv_refcount; break;
3941 case VAR_LIST: ++tv->vval.v_list->lv_refcount; break;
3942 }
3943 }
3944 else
3945 {
Bram Moolenaar2afa3232012-06-29 16:28:28 +02003946 typval_T *v;
3947
3948# ifdef PY_USE_CAPSULE
3949 v = PyCapsule_GetPointer(capsule, NULL);
3950# else
Bram Moolenaar221d6872012-06-30 13:34:34 +02003951 v = PyCObject_AsVoidPtr(capsule);
Bram Moolenaar2afa3232012-06-29 16:28:28 +02003952# endif
Bram Moolenaardb913952012-06-29 12:54:53 +02003953 copy_tv(v, tv);
3954 }
3955 return 0;
3956}
3957
3958 static int
3959ConvertFromPyObject(PyObject *obj, typval_T *tv)
3960{
3961 PyObject *lookup_dict;
3962 int r;
3963
3964 lookup_dict = PyDict_New();
3965 r = _ConvertFromPyObject(obj, tv, lookup_dict);
3966 Py_DECREF(lookup_dict);
3967 return r;
3968}
3969
3970 static int
3971_ConvertFromPyObject(PyObject *obj, typval_T *tv, PyObject *lookupDict)
3972{
3973 if (obj->ob_type == &DictionaryType)
3974 {
3975 tv->v_type = VAR_DICT;
3976 tv->vval.v_dict = (((DictionaryObject *)(obj))->dict);
3977 ++tv->vval.v_dict->dv_refcount;
3978 }
3979 else if (obj->ob_type == &ListType)
3980 {
3981 tv->v_type = VAR_LIST;
3982 tv->vval.v_list = (((ListObject *)(obj))->list);
3983 ++tv->vval.v_list->lv_refcount;
3984 }
3985 else if (obj->ob_type == &FunctionType)
3986 {
3987 if (set_string_copy(((FunctionObject *) (obj))->name, tv) == -1)
3988 return -1;
3989
3990 tv->v_type = VAR_FUNC;
3991 func_ref(tv->vval.v_string);
3992 }
Bram Moolenaardb913952012-06-29 12:54:53 +02003993 else if (PyBytes_Check(obj))
3994 {
Bram Moolenaarafa6b9a2012-09-05 19:09:11 +02003995 char_u *result;
Bram Moolenaardb913952012-06-29 12:54:53 +02003996
Bram Moolenaarafa6b9a2012-09-05 19:09:11 +02003997 if (PyString_AsStringAndSize(obj, (char **) &result, NULL) == -1)
3998 return -1;
Bram Moolenaardb913952012-06-29 12:54:53 +02003999 if (result == NULL)
4000 return -1;
4001
4002 if (set_string_copy(result, tv) == -1)
4003 return -1;
4004
4005 tv->v_type = VAR_STRING;
4006 }
4007 else if (PyUnicode_Check(obj))
4008 {
4009 PyObject *bytes;
4010 char_u *result;
4011
Bram Moolenaardb913952012-06-29 12:54:53 +02004012 bytes = PyUnicode_AsEncodedString(obj, (char *)ENC_OPT, NULL);
4013 if (bytes == NULL)
4014 return -1;
4015
Bram Moolenaarafa6b9a2012-09-05 19:09:11 +02004016 if(PyString_AsStringAndSize(bytes, (char **) &result, NULL) == -1)
4017 return -1;
Bram Moolenaardb913952012-06-29 12:54:53 +02004018 if (result == NULL)
4019 return -1;
4020
4021 if (set_string_copy(result, tv) == -1)
4022 {
4023 Py_XDECREF(bytes);
4024 return -1;
4025 }
4026 Py_XDECREF(bytes);
4027
4028 tv->v_type = VAR_STRING;
4029 }
Bram Moolenaar335e0b62013-04-24 13:47:45 +02004030#if PY_MAJOR_VERSION < 3
Bram Moolenaardb913952012-06-29 12:54:53 +02004031 else if (PyInt_Check(obj))
4032 {
4033 tv->v_type = VAR_NUMBER;
4034 tv->vval.v_number = (varnumber_T) PyInt_AsLong(obj);
4035 }
4036#endif
4037 else if (PyLong_Check(obj))
4038 {
4039 tv->v_type = VAR_NUMBER;
4040 tv->vval.v_number = (varnumber_T) PyLong_AsLong(obj);
4041 }
4042 else if (PyDict_Check(obj))
4043 return convert_dl(obj, tv, pydict_to_tv, lookupDict);
4044#ifdef FEAT_FLOAT
4045 else if (PyFloat_Check(obj))
4046 {
4047 tv->v_type = VAR_FLOAT;
4048 tv->vval.v_float = (float_T) PyFloat_AsDouble(obj);
4049 }
4050#endif
4051 else if (PyIter_Check(obj))
4052 return convert_dl(obj, tv, pyiter_to_tv, lookupDict);
4053 else if (PySequence_Check(obj))
4054 return convert_dl(obj, tv, pyseq_to_tv, lookupDict);
4055 else if (PyMapping_Check(obj))
4056 return convert_dl(obj, tv, pymap_to_tv, lookupDict);
4057 else
4058 {
Bram Moolenaar8661b172013-05-15 15:44:28 +02004059 PyErr_SetString(PyExc_TypeError,
4060 _("unable to convert to vim structure"));
Bram Moolenaardb913952012-06-29 12:54:53 +02004061 return -1;
4062 }
4063 return 0;
4064}
4065
4066 static PyObject *
4067ConvertToPyObject(typval_T *tv)
4068{
4069 if (tv == NULL)
4070 {
4071 PyErr_SetVim(_("NULL reference passed"));
4072 return NULL;
4073 }
4074 switch (tv->v_type)
4075 {
4076 case VAR_STRING:
Bram Moolenaard1f13fd2012-10-05 21:30:07 +02004077 return PyBytes_FromString(tv->vval.v_string == NULL
4078 ? "" : (char *)tv->vval.v_string);
Bram Moolenaardb913952012-06-29 12:54:53 +02004079 case VAR_NUMBER:
4080 return PyLong_FromLong((long) tv->vval.v_number);
4081#ifdef FEAT_FLOAT
4082 case VAR_FLOAT:
4083 return PyFloat_FromDouble((double) tv->vval.v_float);
4084#endif
4085 case VAR_LIST:
4086 return ListNew(tv->vval.v_list);
4087 case VAR_DICT:
4088 return DictionaryNew(tv->vval.v_dict);
4089 case VAR_FUNC:
Bram Moolenaard1f13fd2012-10-05 21:30:07 +02004090 return FunctionNew(tv->vval.v_string == NULL
4091 ? (char_u *)"" : tv->vval.v_string);
Bram Moolenaardb913952012-06-29 12:54:53 +02004092 case VAR_UNKNOWN:
4093 Py_INCREF(Py_None);
4094 return Py_None;
4095 default:
4096 PyErr_SetVim(_("internal error: invalid value type"));
4097 return NULL;
4098 }
4099}
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004100
4101typedef struct
4102{
4103 PyObject_HEAD
4104} CurrentObject;
4105static PyTypeObject CurrentType;
4106
4107 static void
4108init_structs(void)
4109{
4110 vim_memset(&OutputType, 0, sizeof(OutputType));
4111 OutputType.tp_name = "vim.message";
4112 OutputType.tp_basicsize = sizeof(OutputObject);
4113 OutputType.tp_flags = Py_TPFLAGS_DEFAULT;
4114 OutputType.tp_doc = "vim message object";
4115 OutputType.tp_methods = OutputMethods;
4116#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02004117 OutputType.tp_getattro = (getattrofunc)OutputGetattro;
4118 OutputType.tp_setattro = (setattrofunc)OutputSetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004119 OutputType.tp_alloc = call_PyType_GenericAlloc;
4120 OutputType.tp_new = call_PyType_GenericNew;
4121 OutputType.tp_free = call_PyObject_Free;
4122#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02004123 OutputType.tp_getattr = (getattrfunc)OutputGetattr;
4124 OutputType.tp_setattr = (setattrfunc)OutputSetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004125#endif
4126
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02004127 vim_memset(&IterType, 0, sizeof(IterType));
4128 IterType.tp_name = "vim.iter";
4129 IterType.tp_basicsize = sizeof(IterObject);
4130 IterType.tp_flags = Py_TPFLAGS_DEFAULT;
4131 IterType.tp_doc = "generic iterator object";
Bram Moolenaard6e39182013-05-21 18:30:34 +02004132 IterType.tp_iter = (getiterfunc)IterIter;
4133 IterType.tp_iternext = (iternextfunc)IterNext;
4134 IterType.tp_dealloc = (destructor)IterDestructor;
4135 IterType.tp_traverse = (traverseproc)IterTraverse;
4136 IterType.tp_clear = (inquiry)IterClear;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02004137
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004138 vim_memset(&BufferType, 0, sizeof(BufferType));
4139 BufferType.tp_name = "vim.buffer";
4140 BufferType.tp_basicsize = sizeof(BufferType);
Bram Moolenaard6e39182013-05-21 18:30:34 +02004141 BufferType.tp_dealloc = (destructor)BufferDestructor;
4142 BufferType.tp_repr = (reprfunc)BufferRepr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004143 BufferType.tp_as_sequence = &BufferAsSeq;
4144 BufferType.tp_as_mapping = &BufferAsMapping;
4145 BufferType.tp_flags = Py_TPFLAGS_DEFAULT;
4146 BufferType.tp_doc = "vim buffer object";
4147 BufferType.tp_methods = BufferMethods;
4148#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02004149 BufferType.tp_getattro = (getattrofunc)BufferGetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004150 BufferType.tp_alloc = call_PyType_GenericAlloc;
4151 BufferType.tp_new = call_PyType_GenericNew;
4152 BufferType.tp_free = call_PyObject_Free;
4153#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02004154 BufferType.tp_getattr = (getattrfunc)BufferGetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004155#endif
4156
4157 vim_memset(&WindowType, 0, sizeof(WindowType));
4158 WindowType.tp_name = "vim.window";
4159 WindowType.tp_basicsize = sizeof(WindowObject);
Bram Moolenaard6e39182013-05-21 18:30:34 +02004160 WindowType.tp_dealloc = (destructor)WindowDestructor;
4161 WindowType.tp_repr = (reprfunc)WindowRepr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004162 WindowType.tp_flags = Py_TPFLAGS_DEFAULT;
4163 WindowType.tp_doc = "vim Window object";
4164 WindowType.tp_methods = WindowMethods;
Bram Moolenaard6e39182013-05-21 18:30:34 +02004165 WindowType.tp_traverse = (traverseproc)WindowTraverse;
4166 WindowType.tp_clear = (inquiry)WindowClear;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004167#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02004168 WindowType.tp_getattro = (getattrofunc)WindowGetattro;
4169 WindowType.tp_setattro = (setattrofunc)WindowSetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004170 WindowType.tp_alloc = call_PyType_GenericAlloc;
4171 WindowType.tp_new = call_PyType_GenericNew;
4172 WindowType.tp_free = call_PyObject_Free;
4173#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02004174 WindowType.tp_getattr = (getattrfunc)WindowGetattr;
4175 WindowType.tp_setattr = (setattrfunc)WindowSetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004176#endif
4177
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004178 vim_memset(&TabPageType, 0, sizeof(TabPageType));
4179 TabPageType.tp_name = "vim.tabpage";
4180 TabPageType.tp_basicsize = sizeof(TabPageObject);
Bram Moolenaard6e39182013-05-21 18:30:34 +02004181 TabPageType.tp_dealloc = (destructor)TabPageDestructor;
4182 TabPageType.tp_repr = (reprfunc)TabPageRepr;
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004183 TabPageType.tp_flags = Py_TPFLAGS_DEFAULT;
4184 TabPageType.tp_doc = "vim tab page object";
4185 TabPageType.tp_methods = TabPageMethods;
4186#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02004187 TabPageType.tp_getattro = (getattrofunc)TabPageGetattro;
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004188 TabPageType.tp_alloc = call_PyType_GenericAlloc;
4189 TabPageType.tp_new = call_PyType_GenericNew;
4190 TabPageType.tp_free = call_PyObject_Free;
4191#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02004192 TabPageType.tp_getattr = (getattrfunc)TabPageGetattr;
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004193#endif
4194
Bram Moolenaardfa38d42013-05-15 13:38:47 +02004195 vim_memset(&BufMapType, 0, sizeof(BufMapType));
4196 BufMapType.tp_name = "vim.bufferlist";
4197 BufMapType.tp_basicsize = sizeof(BufMapObject);
4198 BufMapType.tp_as_mapping = &BufMapAsMapping;
4199 BufMapType.tp_flags = Py_TPFLAGS_DEFAULT;
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02004200 BufMapType.tp_iter = BufMapIter;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004201 BufferType.tp_doc = "vim buffer list";
4202
4203 vim_memset(&WinListType, 0, sizeof(WinListType));
4204 WinListType.tp_name = "vim.windowlist";
4205 WinListType.tp_basicsize = sizeof(WinListType);
4206 WinListType.tp_as_sequence = &WinListAsSeq;
4207 WinListType.tp_flags = Py_TPFLAGS_DEFAULT;
4208 WinListType.tp_doc = "vim window list";
Bram Moolenaard6e39182013-05-21 18:30:34 +02004209 WinListType.tp_dealloc = (destructor)WinListDestructor;
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02004210
4211 vim_memset(&TabListType, 0, sizeof(TabListType));
4212 TabListType.tp_name = "vim.tabpagelist";
4213 TabListType.tp_basicsize = sizeof(TabListType);
4214 TabListType.tp_as_sequence = &TabListAsSeq;
4215 TabListType.tp_flags = Py_TPFLAGS_DEFAULT;
4216 TabListType.tp_doc = "vim tab page list";
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004217
4218 vim_memset(&RangeType, 0, sizeof(RangeType));
4219 RangeType.tp_name = "vim.range";
4220 RangeType.tp_basicsize = sizeof(RangeObject);
Bram Moolenaard6e39182013-05-21 18:30:34 +02004221 RangeType.tp_dealloc = (destructor)RangeDestructor;
4222 RangeType.tp_repr = (reprfunc)RangeRepr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004223 RangeType.tp_as_sequence = &RangeAsSeq;
4224 RangeType.tp_as_mapping = &RangeAsMapping;
4225 RangeType.tp_flags = Py_TPFLAGS_DEFAULT;
4226 RangeType.tp_doc = "vim Range object";
4227 RangeType.tp_methods = RangeMethods;
Bram Moolenaar774267b2013-05-21 20:51:59 +02004228 RangeType.tp_traverse = (traverseproc)RangeTraverse;
4229 RangeType.tp_clear = (inquiry)RangeClear;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004230#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02004231 RangeType.tp_getattro = (getattrofunc)RangeGetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004232 RangeType.tp_alloc = call_PyType_GenericAlloc;
4233 RangeType.tp_new = call_PyType_GenericNew;
4234 RangeType.tp_free = call_PyObject_Free;
4235#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02004236 RangeType.tp_getattr = (getattrfunc)RangeGetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004237#endif
4238
4239 vim_memset(&CurrentType, 0, sizeof(CurrentType));
4240 CurrentType.tp_name = "vim.currentdata";
4241 CurrentType.tp_basicsize = sizeof(CurrentObject);
4242 CurrentType.tp_flags = Py_TPFLAGS_DEFAULT;
4243 CurrentType.tp_doc = "vim current object";
4244#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02004245 CurrentType.tp_getattro = (getattrofunc)CurrentGetattro;
4246 CurrentType.tp_setattro = (setattrofunc)CurrentSetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004247#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02004248 CurrentType.tp_getattr = (getattrfunc)CurrentGetattr;
4249 CurrentType.tp_setattr = (setattrfunc)CurrentSetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004250#endif
4251
4252 vim_memset(&DictionaryType, 0, sizeof(DictionaryType));
4253 DictionaryType.tp_name = "vim.dictionary";
4254 DictionaryType.tp_basicsize = sizeof(DictionaryObject);
Bram Moolenaard6e39182013-05-21 18:30:34 +02004255 DictionaryType.tp_dealloc = (destructor)DictionaryDestructor;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004256 DictionaryType.tp_as_mapping = &DictionaryAsMapping;
4257 DictionaryType.tp_flags = Py_TPFLAGS_DEFAULT;
4258 DictionaryType.tp_doc = "dictionary pushing modifications to vim structure";
4259 DictionaryType.tp_methods = DictionaryMethods;
4260#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02004261 DictionaryType.tp_getattro = (getattrofunc)DictionaryGetattro;
4262 DictionaryType.tp_setattro = (setattrofunc)DictionarySetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004263#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02004264 DictionaryType.tp_getattr = (getattrfunc)DictionaryGetattr;
4265 DictionaryType.tp_setattr = (setattrfunc)DictionarySetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004266#endif
4267
4268 vim_memset(&ListType, 0, sizeof(ListType));
4269 ListType.tp_name = "vim.list";
Bram Moolenaard6e39182013-05-21 18:30:34 +02004270 ListType.tp_dealloc = (destructor)ListDestructor;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004271 ListType.tp_basicsize = sizeof(ListObject);
4272 ListType.tp_as_sequence = &ListAsSeq;
4273 ListType.tp_as_mapping = &ListAsMapping;
4274 ListType.tp_flags = Py_TPFLAGS_DEFAULT;
4275 ListType.tp_doc = "list pushing modifications to vim structure";
4276 ListType.tp_methods = ListMethods;
Bram Moolenaard6e39182013-05-21 18:30:34 +02004277 ListType.tp_iter = (getiterfunc)ListIter;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004278#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02004279 ListType.tp_getattro = (getattrofunc)ListGetattro;
4280 ListType.tp_setattro = (setattrofunc)ListSetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004281#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02004282 ListType.tp_getattr = (getattrfunc)ListGetattr;
4283 ListType.tp_setattr = (setattrfunc)ListSetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004284#endif
4285
4286 vim_memset(&FunctionType, 0, sizeof(FunctionType));
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02004287 FunctionType.tp_name = "vim.function";
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004288 FunctionType.tp_basicsize = sizeof(FunctionObject);
Bram Moolenaard6e39182013-05-21 18:30:34 +02004289 FunctionType.tp_dealloc = (destructor)FunctionDestructor;
4290 FunctionType.tp_call = (ternaryfunc)FunctionCall;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004291 FunctionType.tp_flags = Py_TPFLAGS_DEFAULT;
4292 FunctionType.tp_doc = "object that calls vim function";
4293 FunctionType.tp_methods = FunctionMethods;
4294#if PY_MAJOR_VERSION >= 3
Bram Moolenaard6e39182013-05-21 18:30:34 +02004295 FunctionType.tp_getattro = (getattrofunc)FunctionGetattro;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004296#else
Bram Moolenaard6e39182013-05-21 18:30:34 +02004297 FunctionType.tp_getattr = (getattrfunc)FunctionGetattr;
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004298#endif
4299
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02004300 vim_memset(&OptionsType, 0, sizeof(OptionsType));
4301 OptionsType.tp_name = "vim.options";
4302 OptionsType.tp_basicsize = sizeof(OptionsObject);
4303 OptionsType.tp_flags = Py_TPFLAGS_DEFAULT;
4304 OptionsType.tp_doc = "object for manipulating options";
4305 OptionsType.tp_as_mapping = &OptionsAsMapping;
Bram Moolenaard6e39182013-05-21 18:30:34 +02004306 OptionsType.tp_dealloc = (destructor)OptionsDestructor;
4307 OptionsType.tp_traverse = (traverseproc)OptionsTraverse;
4308 OptionsType.tp_clear = (inquiry)OptionsClear;
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02004309
Bram Moolenaar4d1da492013-04-24 13:39:15 +02004310#if PY_MAJOR_VERSION >= 3
4311 vim_memset(&vimmodule, 0, sizeof(vimmodule));
4312 vimmodule.m_name = "vim";
4313 vimmodule.m_doc = "Vim Python interface\n";
4314 vimmodule.m_size = -1;
4315 vimmodule.m_methods = VimMethods;
4316#endif
4317}
Bram Moolenaar1dc28782013-05-21 19:11:01 +02004318
4319#define PYTYPE_READY(type) \
4320 if (PyType_Ready(&type)) \
4321 return -1;
4322
4323 static int
4324init_types()
4325{
4326 PYTYPE_READY(IterType);
4327 PYTYPE_READY(BufferType);
4328 PYTYPE_READY(RangeType);
4329 PYTYPE_READY(WindowType);
4330 PYTYPE_READY(TabPageType);
4331 PYTYPE_READY(BufMapType);
4332 PYTYPE_READY(WinListType);
4333 PYTYPE_READY(TabListType);
4334 PYTYPE_READY(CurrentType);
4335 PYTYPE_READY(DictionaryType);
4336 PYTYPE_READY(ListType);
4337 PYTYPE_READY(FunctionType);
4338 PYTYPE_READY(OptionsType);
4339 PYTYPE_READY(OutputType);
4340 return 0;
4341}
4342
4343static BufMapObject TheBufferMap =
4344{
4345 PyObject_HEAD_INIT(&BufMapType)
4346};
4347
4348static WinListObject TheWindowList =
4349{
4350 PyObject_HEAD_INIT(&WinListType)
4351 NULL
4352};
4353
4354static CurrentObject TheCurrent =
4355{
4356 PyObject_HEAD_INIT(&CurrentType)
4357};
4358
4359static TabListObject TheTabPageList =
4360{
4361 PyObject_HEAD_INIT(&TabListType)
4362};
4363
4364static struct numeric_constant {
4365 char *name;
4366 int value;
4367} numeric_constants[] = {
4368 {"VAR_LOCKED", VAR_LOCKED},
4369 {"VAR_FIXED", VAR_FIXED},
4370 {"VAR_SCOPE", VAR_SCOPE},
4371 {"VAR_DEF_SCOPE", VAR_DEF_SCOPE},
4372};
4373
4374static struct object_constant {
4375 char *name;
4376 PyObject *value;
4377} object_constants[] = {
4378 {"buffers", (PyObject *)(void *)&TheBufferMap},
4379 {"windows", (PyObject *)(void *)&TheWindowList},
4380 {"tabpages", (PyObject *)(void *)&TheTabPageList},
4381 {"current", (PyObject *)(void *)&TheCurrent},
Bram Moolenaarcac867a2013-05-21 19:50:34 +02004382
4383 {"Buffer", (PyObject *)&BufferType},
4384 {"Range", (PyObject *)&RangeType},
4385 {"Window", (PyObject *)&WindowType},
4386 {"TabPage", (PyObject *)&TabPageType},
4387 {"Dictionary", (PyObject *)&DictionaryType},
4388 {"List", (PyObject *)&ListType},
4389 {"Function", (PyObject *)&FunctionType},
4390 {"Options", (PyObject *)&OptionsType},
Bram Moolenaar1dc28782013-05-21 19:11:01 +02004391};
4392
4393typedef int (*object_adder)(PyObject *, const char *, PyObject *);
4394
4395#define ADD_OBJECT(m, name, obj) \
4396 if (add_object(m, name, obj)) \
4397 return -1;
4398
4399#define ADD_CHECKED_OBJECT(m, name, obj) \
4400 { \
4401 PyObject *value = obj; \
4402 if (!value) \
4403 return -1; \
4404 ADD_OBJECT(m, name, value); \
4405 }
4406
4407 static int
4408populate_module(PyObject *m, object_adder add_object)
4409{
4410 int i;
4411
4412 for (i = 0; i < (int)(sizeof(numeric_constants)
4413 / sizeof(struct numeric_constant));
4414 ++i)
4415 ADD_CHECKED_OBJECT(m, numeric_constants[i].name,
4416 PyInt_FromLong(numeric_constants[i].value));
4417
4418 for (i = 0; i < (int)(sizeof(object_constants)
4419 / sizeof(struct object_constant));
4420 ++i)
4421 {
4422 PyObject *value;
4423
4424 value = object_constants[i].value;
4425 Py_INCREF(value);
4426 ADD_OBJECT(m, object_constants[i].name, value);
4427 }
4428
4429 if (!(VimError = PyErr_NewException("vim.error", NULL, NULL)))
4430 return -1;
4431 ADD_OBJECT(m, "error", VimError);
4432
4433 ADD_CHECKED_OBJECT(m, "vars", DictionaryNew(&globvardict));
4434 ADD_CHECKED_OBJECT(m, "vvars", DictionaryNew(&vimvardict));
4435 ADD_CHECKED_OBJECT(m, "options",
4436 OptionsNew(SREQ_GLOBAL, NULL, dummy_check, NULL));
4437 return 0;
4438}