blob: 06c46bc37bdc8bee38c203d7784b9e453309b8b0 [file] [log] [blame]
Bram Moolenaardb913952012-06-29 12:54:53 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
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/*
10 * Python extensions by Paul Moore.
11 * Changes for Unix by David Leonard.
12 *
13 * This consists of four parts:
14 * 1. Python interpreter main program
15 * 2. Python output stream: writes output via [e]msg().
16 * 3. Implementation of the Vim module for Python
17 * 4. Utility functions for handling the interface between Vim and Python.
18 */
19
20#include "vim.h"
21
Bram Moolenaar071d4272004-06-13 20:20:40 +000022#include <limits.h>
23
Bram Moolenaar0014a532013-05-29 21:33:39 +020024/* uncomment this if used with the debug version of python.
25 * Checked on 2.7.4. */
26/* #define Py_DEBUG */
Bram Moolenaarc09a6d62013-06-10 21:27:29 +020027/* Note: most of time you can add -DPy_DEBUG to CFLAGS in place of uncommenting
Bram Moolenaar0014a532013-05-29 21:33:39 +020028 */
Bram Moolenaarc09a6d62013-06-10 21:27:29 +020029/* uncomment this if used with the debug version of python, but without its
Bram Moolenaar0014a532013-05-29 21:33:39 +020030 * allocator */
31/* #define Py_DEBUG_NO_PYMALLOC */
32
Bram Moolenaar071d4272004-06-13 20:20:40 +000033/* Python.h defines _POSIX_THREADS itself (if needed) */
34#ifdef _POSIX_THREADS
35# undef _POSIX_THREADS
36#endif
37
Bram Moolenaar4f974752019-02-17 17:44:42 +010038#if defined(MSWIN) && defined(HAVE_FCNTL_H)
Bram Moolenaar071d4272004-06-13 20:20:40 +000039# undef HAVE_FCNTL_H
40#endif
41
42#ifdef _DEBUG
43# undef _DEBUG
44#endif
45
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +010046#ifdef HAVE_STRFTIME
47# undef HAVE_STRFTIME
48#endif
49#ifdef HAVE_STRING_H
50# undef HAVE_STRING_H
51#endif
52#ifdef HAVE_PUTENV
53# undef HAVE_PUTENV
54#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000055#ifdef HAVE_STDARG_H
56# undef HAVE_STDARG_H /* Python's config.h defines it as well. */
57#endif
Bram Moolenaarbe2c9ae2009-11-11 14:06:59 +000058#ifdef _POSIX_C_SOURCE
59# undef _POSIX_C_SOURCE /* pyconfig.h defines it as well. */
60#endif
61#ifdef _XOPEN_SOURCE
62# undef _XOPEN_SOURCE /* pyconfig.h defines it as well. */
63#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000064
Bram Moolenaar0bdda372013-06-10 18:36:24 +020065#define PY_SSIZE_T_CLEAN
66
Bram Moolenaar071d4272004-06-13 20:20:40 +000067#include <Python.h>
Bram Moolenaar0bdda372013-06-10 18:36:24 +020068
69#if !defined(PY_VERSION_HEX) || PY_VERSION_HEX < 0x02050000
70# undef PY_SSIZE_T_CLEAN
71#endif
72
Bram Moolenaar071d4272004-06-13 20:20:40 +000073#undef main /* Defined in python.h - aargh */
74#undef HAVE_FCNTL_H /* Clash with os_win32.h */
75
Bram Moolenaar65951252019-02-01 22:10:16 +010076// Perhaps leave this out for Python 2.6, which supports bytes?
Bram Moolenaar808c2bc2013-06-23 13:11:18 +020077#define PyBytes_FromString PyString_FromString
Bram Moolenaar792f0e32018-02-27 17:27:13 +010078#define PyBytes_Check PyString_Check
Bram Moolenaar808c2bc2013-06-23 13:11:18 +020079#define PyBytes_AsStringAndSize PyString_AsStringAndSize
Bram Moolenaar65951252019-02-01 22:10:16 +010080#define PyBytes_FromStringAndSize PyString_FromStringAndSize
Bram Moolenaar19e60942011-06-19 00:27:51 +020081
Bram Moolenaar071d4272004-06-13 20:20:40 +000082#if !defined(FEAT_PYTHON) && defined(PROTO)
83/* Use this to be able to generate prototypes without python being used. */
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +000084# define PyObject Py_ssize_t
85# define PyThreadState Py_ssize_t
86# define PyTypeObject Py_ssize_t
87struct PyMethodDef { Py_ssize_t a; };
88# define PySequenceMethods Py_ssize_t
Bram Moolenaar071d4272004-06-13 20:20:40 +000089#endif
90
Bram Moolenaar2afa3232012-06-29 16:28:28 +020091#if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
92# define PY_USE_CAPSULE
93#endif
94
Bram Moolenaar2c45e942008-06-04 11:35:26 +000095#if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02050000
96# define PyInt Py_ssize_t
97# define PyInquiry lenfunc
98# define PyIntArgFunc ssizeargfunc
99# define PyIntIntArgFunc ssizessizeargfunc
100# define PyIntObjArgProc ssizeobjargproc
101# define PyIntIntObjArgProc ssizessizeobjargproc
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000102# define Py_ssize_t_fmt "n"
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000103#else
104# define PyInt int
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200105# define lenfunc inquiry
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000106# define PyInquiry inquiry
107# define PyIntArgFunc intargfunc
108# define PyIntIntArgFunc intintargfunc
109# define PyIntObjArgProc intobjargproc
110# define PyIntIntObjArgProc intintobjargproc
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000111# define Py_ssize_t_fmt "i"
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000112#endif
Bram Moolenaara9922d62013-05-30 13:01:18 +0200113#define Py_bytes_fmt "s"
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000114
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115/* Parser flags */
116#define single_input 256
117#define file_input 257
118#define eval_input 258
119
120#if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x020300F0
121 /* Python 2.3: can invoke ":python" recursively. */
122# define PY_CAN_RECURSE
123#endif
124
Bram Moolenaar65951252019-02-01 22:10:16 +0100125#if defined(DYNAMIC_PYTHON) || defined(PROTO)
126# ifndef DYNAMIC_PYTHON
127# define HINSTANCE long_u /* for generating prototypes */
128# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000129
Bram Moolenaar4f974752019-02-17 17:44:42 +0100130# ifndef MSWIN
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200131# include <dlfcn.h>
132# define FARPROC void*
133# define HINSTANCE void*
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100134# if defined(PY_NO_RTLD_GLOBAL) && defined(PY3_NO_RTLD_GLOBAL)
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200135# define load_dll(n) dlopen((n), RTLD_LAZY)
136# else
137# define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL)
138# endif
139# define close_dll dlclose
140# define symbol_from_dll dlsym
141# else
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200142# define load_dll vimLoadLib
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200143# define close_dll FreeLibrary
144# define symbol_from_dll GetProcAddress
145# endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200146
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000147/* This makes if_python.c compile without warnings against Python 2.5
148 * on Win32 and Win64. */
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200149# undef PyRun_SimpleString
Bram Moolenaardb913952012-06-29 12:54:53 +0200150# undef PyRun_String
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200151# undef PyArg_Parse
152# undef PyArg_ParseTuple
153# undef Py_BuildValue
154# undef Py_InitModule4
155# undef Py_InitModule4_64
Bram Moolenaardb913952012-06-29 12:54:53 +0200156# undef PyObject_CallMethod
Bram Moolenaar9f3685a2013-06-12 14:20:36 +0200157# undef PyObject_CallFunction
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000158
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159/*
160 * Wrapper defines
161 */
162# define PyArg_Parse dll_PyArg_Parse
163# define PyArg_ParseTuple dll_PyArg_ParseTuple
Bram Moolenaar19e60942011-06-19 00:27:51 +0200164# define PyMem_Free dll_PyMem_Free
Bram Moolenaardb913952012-06-29 12:54:53 +0200165# define PyMem_Malloc dll_PyMem_Malloc
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166# define PyDict_SetItemString dll_PyDict_SetItemString
167# define PyErr_BadArgument dll_PyErr_BadArgument
Bram Moolenaard5f729c2013-05-15 16:04:40 +0200168# define PyErr_NewException dll_PyErr_NewException
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169# define PyErr_Clear dll_PyErr_Clear
Bram Moolenaarc476e522013-06-23 13:46:40 +0200170# define PyErr_Format dll_PyErr_Format
Bram Moolenaar4d369872013-02-20 16:09:43 +0100171# define PyErr_PrintEx dll_PyErr_PrintEx
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172# define PyErr_NoMemory dll_PyErr_NoMemory
173# define PyErr_Occurred dll_PyErr_Occurred
174# define PyErr_SetNone dll_PyErr_SetNone
175# define PyErr_SetString dll_PyErr_SetString
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200176# define PyErr_SetObject dll_PyErr_SetObject
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200177# define PyErr_ExceptionMatches dll_PyErr_ExceptionMatches
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178# define PyEval_InitThreads dll_PyEval_InitThreads
179# define PyEval_RestoreThread dll_PyEval_RestoreThread
180# define PyEval_SaveThread dll_PyEval_SaveThread
181# ifdef PY_CAN_RECURSE
182# define PyGILState_Ensure dll_PyGILState_Ensure
183# define PyGILState_Release dll_PyGILState_Release
184# endif
185# define PyInt_AsLong dll_PyInt_AsLong
186# define PyInt_FromLong dll_PyInt_FromLong
Bram Moolenaardb913952012-06-29 12:54:53 +0200187# define PyLong_AsLong dll_PyLong_AsLong
188# define PyLong_FromLong dll_PyLong_FromLong
Bram Moolenaar66b79852012-09-21 14:00:35 +0200189# define PyBool_Type (*dll_PyBool_Type)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000190# define PyInt_Type (*dll_PyInt_Type)
Bram Moolenaardb913952012-06-29 12:54:53 +0200191# define PyLong_Type (*dll_PyLong_Type)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192# define PyList_GetItem dll_PyList_GetItem
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000193# define PyList_Append dll_PyList_Append
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200194# define PyList_Insert dll_PyList_Insert
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195# define PyList_New dll_PyList_New
196# define PyList_SetItem dll_PyList_SetItem
197# define PyList_Size dll_PyList_Size
198# define PyList_Type (*dll_PyList_Type)
Bram Moolenaardb913952012-06-29 12:54:53 +0200199# define PySequence_Check dll_PySequence_Check
200# define PySequence_Size dll_PySequence_Size
201# define PySequence_GetItem dll_PySequence_GetItem
Bram Moolenaara9922d62013-05-30 13:01:18 +0200202# define PySequence_Fast dll_PySequence_Fast
Bram Moolenaardb913952012-06-29 12:54:53 +0200203# define PyTuple_Size dll_PyTuple_Size
204# define PyTuple_GetItem dll_PyTuple_GetItem
205# define PyTuple_Type (*dll_PyTuple_Type)
Bram Moolenaar063a46b2014-01-14 16:36:51 +0100206# define PySlice_GetIndicesEx dll_PySlice_GetIndicesEx
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207# define PyImport_ImportModule dll_PyImport_ImportModule
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000208# define PyDict_New dll_PyDict_New
Bram Moolenaar071d4272004-06-13 20:20:40 +0000209# define PyDict_GetItemString dll_PyDict_GetItemString
Bram Moolenaardb913952012-06-29 12:54:53 +0200210# define PyDict_Next dll_PyDict_Next
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200211# define PyDict_Type (*dll_PyDict_Type)
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200212# ifdef PyMapping_Keys
213# define PY_NO_MAPPING_KEYS
Bram Moolenaardb913952012-06-29 12:54:53 +0200214# else
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200215# define PyMapping_Keys dll_PyMapping_Keys
Bram Moolenaardb913952012-06-29 12:54:53 +0200216# endif
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200217# define PyObject_GetItem dll_PyObject_GetItem
Bram Moolenaardb913952012-06-29 12:54:53 +0200218# define PyObject_CallMethod dll_PyObject_CallMethod
219# define PyMapping_Check dll_PyMapping_Check
220# define PyIter_Next dll_PyIter_Next
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221# define PyModule_GetDict dll_PyModule_GetDict
Bram Moolenaarf9c9b322013-06-10 20:47:36 +0200222# define PyModule_AddObject dll_PyModule_AddObject
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223# define PyRun_SimpleString dll_PyRun_SimpleString
Bram Moolenaardb913952012-06-29 12:54:53 +0200224# define PyRun_String dll_PyRun_String
Bram Moolenaard620aa92013-05-17 16:40:06 +0200225# define PyObject_GetAttrString dll_PyObject_GetAttrString
Bram Moolenaara9922d62013-05-30 13:01:18 +0200226# define PyObject_HasAttrString dll_PyObject_HasAttrString
Bram Moolenaard620aa92013-05-17 16:40:06 +0200227# define PyObject_SetAttrString dll_PyObject_SetAttrString
228# define PyObject_CallFunctionObjArgs dll_PyObject_CallFunctionObjArgs
Bram Moolenaar9f3685a2013-06-12 14:20:36 +0200229# define PyObject_CallFunction dll_PyObject_CallFunction
Bram Moolenaarf4258302013-06-02 18:20:17 +0200230# define PyObject_Call dll_PyObject_Call
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200231# define PyObject_Repr dll_PyObject_Repr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232# define PyString_AsString dll_PyString_AsString
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200233# define PyString_AsStringAndSize dll_PyString_AsStringAndSize
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234# define PyString_FromString dll_PyString_FromString
Bram Moolenaar1a3b5692013-05-30 12:40:39 +0200235# define PyString_FromFormat dll_PyString_FromFormat
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236# define PyString_FromStringAndSize dll_PyString_FromStringAndSize
237# define PyString_Size dll_PyString_Size
238# define PyString_Type (*dll_PyString_Type)
Bram Moolenaardb913952012-06-29 12:54:53 +0200239# define PyUnicode_Type (*dll_PyUnicode_Type)
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200240# undef PyUnicode_AsEncodedString
241# define PyUnicode_AsEncodedString py_PyUnicode_AsEncodedString
Bram Moolenaardb913952012-06-29 12:54:53 +0200242# define PyFloat_AsDouble dll_PyFloat_AsDouble
243# define PyFloat_FromDouble dll_PyFloat_FromDouble
244# define PyFloat_Type (*dll_PyFloat_Type)
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200245# define PyNumber_Check dll_PyNumber_Check
246# define PyNumber_Long dll_PyNumber_Long
Bram Moolenaardb913952012-06-29 12:54:53 +0200247# define PyImport_AddModule (*dll_PyImport_AddModule)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248# define PySys_SetObject dll_PySys_SetObject
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200249# define PySys_GetObject dll_PySys_GetObject
Bram Moolenaar071d4272004-06-13 20:20:40 +0000250# define PySys_SetArgv dll_PySys_SetArgv
251# define PyType_Type (*dll_PyType_Type)
Bram Moolenaard4a8c982018-05-15 22:31:18 +0200252# define PyFile_Type (*dll_PyFile_Type)
Bram Moolenaar063a46b2014-01-14 16:36:51 +0100253# define PySlice_Type (*dll_PySlice_Type)
Bram Moolenaar30fec7b2011-03-26 18:32:05 +0100254# define PyType_Ready (*dll_PyType_Ready)
Bram Moolenaara9922d62013-05-30 13:01:18 +0200255# define PyType_GenericAlloc dll_PyType_GenericAlloc
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256# define Py_BuildValue dll_Py_BuildValue
257# define Py_FindMethod dll_Py_FindMethod
258# define Py_InitModule4 dll_Py_InitModule4
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100259# define Py_SetPythonHome dll_Py_SetPythonHome
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260# define Py_Initialize dll_Py_Initialize
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000261# define Py_Finalize dll_Py_Finalize
262# define Py_IsInitialized dll_Py_IsInitialized
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263# define _PyObject_New dll__PyObject_New
Bram Moolenaar774267b2013-05-21 20:51:59 +0200264# define _PyObject_GC_New dll__PyObject_GC_New
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200265# ifdef PyObject_GC_Del
266# define Py_underscore_GC
267# define _PyObject_GC_Del dll__PyObject_GC_Del
268# define _PyObject_GC_UnTrack dll__PyObject_GC_UnTrack
269# else
270# define PyObject_GC_Del dll_PyObject_GC_Del
271# define PyObject_GC_UnTrack dll_PyObject_GC_UnTrack
272# endif
Bram Moolenaare7211222012-06-30 13:21:08 +0200273# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
274# define _PyObject_NextNotImplemented (*dll__PyObject_NextNotImplemented)
275# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276# define _Py_NoneStruct (*dll__Py_NoneStruct)
Bram Moolenaar66b79852012-09-21 14:00:35 +0200277# define _Py_ZeroStruct (*dll__Py_ZeroStruct)
278# define _Py_TrueStruct (*dll__Py_TrueStruct)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279# define PyObject_Init dll__PyObject_Init
Bram Moolenaardb913952012-06-29 12:54:53 +0200280# define PyObject_GetIter dll_PyObject_GetIter
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200281# define PyObject_IsTrue dll_PyObject_IsTrue
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
283# define PyType_IsSubtype dll_PyType_IsSubtype
Bram Moolenaar0014a532013-05-29 21:33:39 +0200284# ifdef Py_DEBUG
285# define _Py_NegativeRefcount dll__Py_NegativeRefcount
286# define _Py_RefTotal (*dll__Py_RefTotal)
287# define _Py_Dealloc dll__Py_Dealloc
288# endif
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200289# endif
290# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
Bram Moolenaar0014a532013-05-29 21:33:39 +0200291# if defined(Py_DEBUG) && !defined(Py_DEBUG_NO_PYMALLOC)
292# define _PyObject_DebugMalloc dll__PyObject_DebugMalloc
293# define _PyObject_DebugFree dll__PyObject_DebugFree
294# else
295# define PyObject_Malloc dll_PyObject_Malloc
296# define PyObject_Free dll_PyObject_Free
297# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200299# ifdef PY_USE_CAPSULE
300# define PyCapsule_New dll_PyCapsule_New
301# define PyCapsule_GetPointer dll_PyCapsule_GetPointer
302# else
303# define PyCObject_FromVoidPtr dll_PyCObject_FromVoidPtr
304# define PyCObject_AsVoidPtr dll_PyCObject_AsVoidPtr
305# endif
Bram Moolenaar12a28d42014-07-23 16:57:00 +0200306# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
307# define Py_NoSiteFlag (*dll_Py_NoSiteFlag)
308# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309
310/*
311 * Pointers for dynamic link
312 */
313static int(*dll_PyArg_Parse)(PyObject *, char *, ...);
314static int(*dll_PyArg_ParseTuple)(PyObject *, char *, ...);
Bram Moolenaar19e60942011-06-19 00:27:51 +0200315static int(*dll_PyMem_Free)(void *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200316static void* (*dll_PyMem_Malloc)(size_t);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317static int(*dll_PyDict_SetItemString)(PyObject *dp, char *key, PyObject *item);
318static int(*dll_PyErr_BadArgument)(void);
Bram Moolenaard5f729c2013-05-15 16:04:40 +0200319static PyObject *(*dll_PyErr_NewException)(char *, PyObject *, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320static void(*dll_PyErr_Clear)(void);
Bram Moolenaarc476e522013-06-23 13:46:40 +0200321static PyObject*(*dll_PyErr_Format)(PyObject *, const char *, ...);
Bram Moolenaar4d369872013-02-20 16:09:43 +0100322static void(*dll_PyErr_PrintEx)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323static PyObject*(*dll_PyErr_NoMemory)(void);
324static PyObject*(*dll_PyErr_Occurred)(void);
325static void(*dll_PyErr_SetNone)(PyObject *);
326static void(*dll_PyErr_SetString)(PyObject *, const char *);
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200327static void(*dll_PyErr_SetObject)(PyObject *, PyObject *);
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200328static int(*dll_PyErr_ExceptionMatches)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329static void(*dll_PyEval_InitThreads)(void);
330static void(*dll_PyEval_RestoreThread)(PyThreadState *);
331static PyThreadState*(*dll_PyEval_SaveThread)(void);
332# ifdef PY_CAN_RECURSE
333static PyGILState_STATE (*dll_PyGILState_Ensure)(void);
334static void (*dll_PyGILState_Release)(PyGILState_STATE);
Bram Moolenaardb913952012-06-29 12:54:53 +0200335# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336static long(*dll_PyInt_AsLong)(PyObject *);
337static PyObject*(*dll_PyInt_FromLong)(long);
Bram Moolenaardb913952012-06-29 12:54:53 +0200338static long(*dll_PyLong_AsLong)(PyObject *);
339static PyObject*(*dll_PyLong_FromLong)(long);
Bram Moolenaar66b79852012-09-21 14:00:35 +0200340static PyTypeObject* dll_PyBool_Type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341static PyTypeObject* dll_PyInt_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200342static PyTypeObject* dll_PyLong_Type;
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000343static PyObject*(*dll_PyList_GetItem)(PyObject *, PyInt);
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200344static int(*dll_PyList_Append)(PyObject *, PyObject *);
Bram Moolenaard5e376e2013-06-24 20:32:57 +0200345static int(*dll_PyList_Insert)(PyObject *, PyInt, PyObject *);
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000346static PyObject*(*dll_PyList_New)(PyInt size);
347static int(*dll_PyList_SetItem)(PyObject *, PyInt, PyObject *);
348static PyInt(*dll_PyList_Size)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349static PyTypeObject* dll_PyList_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200350static int (*dll_PySequence_Check)(PyObject *);
351static PyInt(*dll_PySequence_Size)(PyObject *);
352static PyObject*(*dll_PySequence_GetItem)(PyObject *, PyInt);
Bram Moolenaara9922d62013-05-30 13:01:18 +0200353static PyObject*(*dll_PySequence_Fast)(PyObject *, const char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200354static PyInt(*dll_PyTuple_Size)(PyObject *);
355static PyObject*(*dll_PyTuple_GetItem)(PyObject *, PyInt);
356static PyTypeObject* dll_PyTuple_Type;
Bram Moolenaar5395e7a2014-01-14 19:35:56 +0100357static int (*dll_PySlice_GetIndicesEx)(PySliceObject *r, PyInt length,
Bram Moolenaar063a46b2014-01-14 16:36:51 +0100358 PyInt *start, PyInt *stop, PyInt *step,
359 PyInt *slicelen);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360static PyObject*(*dll_PyImport_ImportModule)(const char *);
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000361static PyObject*(*dll_PyDict_New)(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362static PyObject*(*dll_PyDict_GetItemString)(PyObject *, const char *);
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200363static int (*dll_PyDict_Next)(PyObject *, PyInt *, PyObject **, PyObject **);
364static PyTypeObject* dll_PyDict_Type;
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200365# ifndef PY_NO_MAPPING_KEYS
366static PyObject* (*dll_PyMapping_Keys)(PyObject *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200367# endif
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200368static PyObject* (*dll_PyObject_GetItem)(PyObject *, PyObject *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200369static PyObject* (*dll_PyObject_CallMethod)(PyObject *, char *, PyObject *);
370static int (*dll_PyMapping_Check)(PyObject *);
371static PyObject* (*dll_PyIter_Next)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372static PyObject*(*dll_PyModule_GetDict)(PyObject *);
Bram Moolenaarf9c9b322013-06-10 20:47:36 +0200373static int(*dll_PyModule_AddObject)(PyObject *, const char *, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374static int(*dll_PyRun_SimpleString)(char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200375static PyObject *(*dll_PyRun_String)(char *, int, PyObject *, PyObject *);
Bram Moolenaard620aa92013-05-17 16:40:06 +0200376static PyObject* (*dll_PyObject_GetAttrString)(PyObject *, const char *);
Bram Moolenaara9922d62013-05-30 13:01:18 +0200377static int (*dll_PyObject_HasAttrString)(PyObject *, const char *);
Bram Moolenaar0b400082013-11-03 00:28:25 +0100378static int (*dll_PyObject_SetAttrString)(PyObject *, const char *, PyObject *);
Bram Moolenaard620aa92013-05-17 16:40:06 +0200379static PyObject* (*dll_PyObject_CallFunctionObjArgs)(PyObject *, ...);
Bram Moolenaar9f3685a2013-06-12 14:20:36 +0200380static PyObject* (*dll_PyObject_CallFunction)(PyObject *, char *, ...);
Bram Moolenaarf4258302013-06-02 18:20:17 +0200381static PyObject* (*dll_PyObject_Call)(PyObject *, PyObject *, PyObject *);
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200382static PyObject* (*dll_PyObject_Repr)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383static char*(*dll_PyString_AsString)(PyObject *);
Bram Moolenaard5e376e2013-06-24 20:32:57 +0200384static int(*dll_PyString_AsStringAndSize)(PyObject *, char **, PyInt *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385static PyObject*(*dll_PyString_FromString)(const char *);
Bram Moolenaar1a3b5692013-05-30 12:40:39 +0200386static PyObject*(*dll_PyString_FromFormat)(const char *, ...);
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000387static PyObject*(*dll_PyString_FromStringAndSize)(const char *, PyInt);
388static PyInt(*dll_PyString_Size)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389static PyTypeObject* dll_PyString_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200390static PyTypeObject* dll_PyUnicode_Type;
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200391static PyObject *(*py_PyUnicode_AsEncodedString)(PyObject *, char *, char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200392static double(*dll_PyFloat_AsDouble)(PyObject *);
393static PyObject*(*dll_PyFloat_FromDouble)(double);
394static PyTypeObject* dll_PyFloat_Type;
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200395static int(*dll_PyNumber_Check)(PyObject *);
396static PyObject*(*dll_PyNumber_Long)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397static int(*dll_PySys_SetObject)(char *, PyObject *);
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200398static PyObject *(*dll_PySys_GetObject)(char *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399static int(*dll_PySys_SetArgv)(int, char **);
400static PyTypeObject* dll_PyType_Type;
Bram Moolenaard4a8c982018-05-15 22:31:18 +0200401static PyTypeObject* dll_PyFile_Type;
Bram Moolenaar063a46b2014-01-14 16:36:51 +0100402static PyTypeObject* dll_PySlice_Type;
Bram Moolenaar30fec7b2011-03-26 18:32:05 +0100403static int (*dll_PyType_Ready)(PyTypeObject *type);
Bram Moolenaara9922d62013-05-30 13:01:18 +0200404static PyObject* (*dll_PyType_GenericAlloc)(PyTypeObject *type, PyInt nitems);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405static PyObject*(*dll_Py_BuildValue)(char *, ...);
406static PyObject*(*dll_Py_FindMethod)(struct PyMethodDef[], PyObject *, char *);
407static PyObject*(*dll_Py_InitModule4)(char *, struct PyMethodDef *, char *, PyObject *, int);
Bram Moolenaardb913952012-06-29 12:54:53 +0200408static PyObject*(*dll_PyImport_AddModule)(char *);
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100409static void(*dll_Py_SetPythonHome)(char *home);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410static void(*dll_Py_Initialize)(void);
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000411static void(*dll_Py_Finalize)(void);
412static int(*dll_Py_IsInitialized)(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413static PyObject*(*dll__PyObject_New)(PyTypeObject *, PyObject *);
Bram Moolenaar774267b2013-05-21 20:51:59 +0200414static PyObject*(*dll__PyObject_GC_New)(PyTypeObject *);
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200415# ifdef Py_underscore_GC
416static void(*dll__PyObject_GC_Del)(void *);
417static void(*dll__PyObject_GC_UnTrack)(void *);
418# else
Bram Moolenaar774267b2013-05-21 20:51:59 +0200419static void(*dll_PyObject_GC_Del)(void *);
420static void(*dll_PyObject_GC_UnTrack)(void *);
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200421# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422static PyObject*(*dll__PyObject_Init)(PyObject *, PyTypeObject *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200423static PyObject* (*dll_PyObject_GetIter)(PyObject *);
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200424static int (*dll_PyObject_IsTrue)(PyObject *);
Bram Moolenaare7211222012-06-30 13:21:08 +0200425# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
Bram Moolenaardb913952012-06-29 12:54:53 +0200426static iternextfunc dll__PyObject_NextNotImplemented;
Bram Moolenaare7211222012-06-30 13:21:08 +0200427# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428static PyObject* dll__Py_NoneStruct;
Bram Moolenaar66b79852012-09-21 14:00:35 +0200429static PyObject* _Py_ZeroStruct;
430static PyObject* dll__Py_TrueStruct;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
432static int (*dll_PyType_IsSubtype)(PyTypeObject *, PyTypeObject *);
Bram Moolenaar0014a532013-05-29 21:33:39 +0200433# ifdef Py_DEBUG
434static void (*dll__Py_NegativeRefcount)(const char *fname, int lineno, PyObject *op);
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200435static PyInt* dll__Py_RefTotal;
Bram Moolenaar0014a532013-05-29 21:33:39 +0200436static void (*dll__Py_Dealloc)(PyObject *obj);
437# endif
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200438# endif
439# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
Bram Moolenaar0014a532013-05-29 21:33:39 +0200440# if defined(Py_DEBUG) && !defined(Py_DEBUG_NO_PYMALLOC)
441static void (*dll__PyObject_DebugFree)(void*);
442static void* (*dll__PyObject_DebugMalloc)(size_t);
443# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444static void* (*dll_PyObject_Malloc)(size_t);
445static void (*dll_PyObject_Free)(void*);
Bram Moolenaar0014a532013-05-29 21:33:39 +0200446# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000447# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200448# ifdef PY_USE_CAPSULE
Bram Moolenaardb913952012-06-29 12:54:53 +0200449static PyObject* (*dll_PyCapsule_New)(void *, char *, PyCapsule_Destructor);
450static void* (*dll_PyCapsule_GetPointer)(PyObject *, char *);
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200451# else
Bram Moolenaar221d6872012-06-30 13:34:34 +0200452static PyObject* (*dll_PyCObject_FromVoidPtr)(void *cobj, void (*destr)(void *));
453static void* (*dll_PyCObject_AsVoidPtr)(PyObject *);
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200454# endif
Bram Moolenaar12a28d42014-07-23 16:57:00 +0200455# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
456static int* dll_Py_NoSiteFlag;
457# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458
459static HINSTANCE hinstPython = 0; /* Instance of python.dll */
460
461/* Imported exception objects */
462static PyObject *imp_PyExc_AttributeError;
463static PyObject *imp_PyExc_IndexError;
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200464static PyObject *imp_PyExc_KeyError;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465static PyObject *imp_PyExc_KeyboardInterrupt;
466static PyObject *imp_PyExc_TypeError;
467static PyObject *imp_PyExc_ValueError;
Bram Moolenaar41009372013-07-01 22:03:04 +0200468static PyObject *imp_PyExc_SystemExit;
Bram Moolenaar8661b172013-05-15 15:44:28 +0200469static PyObject *imp_PyExc_RuntimeError;
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200470static PyObject *imp_PyExc_ImportError;
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200471static PyObject *imp_PyExc_OverflowError;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472
473# define PyExc_AttributeError imp_PyExc_AttributeError
474# define PyExc_IndexError imp_PyExc_IndexError
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200475# define PyExc_KeyError imp_PyExc_KeyError
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476# define PyExc_KeyboardInterrupt imp_PyExc_KeyboardInterrupt
477# define PyExc_TypeError imp_PyExc_TypeError
478# define PyExc_ValueError imp_PyExc_ValueError
Bram Moolenaar41009372013-07-01 22:03:04 +0200479# define PyExc_SystemExit imp_PyExc_SystemExit
Bram Moolenaar8661b172013-05-15 15:44:28 +0200480# define PyExc_RuntimeError imp_PyExc_RuntimeError
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200481# define PyExc_ImportError imp_PyExc_ImportError
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200482# define PyExc_OverflowError imp_PyExc_OverflowError
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483
484/*
485 * Table of name to function pointer of python.
486 */
487# define PYTHON_PROC FARPROC
488static struct
489{
490 char *name;
491 PYTHON_PROC *ptr;
492} python_funcname_table[] =
493{
Bram Moolenaar65951252019-02-01 22:10:16 +0100494# ifndef PY_SSIZE_T_CLEAN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495 {"PyArg_Parse", (PYTHON_PROC*)&dll_PyArg_Parse},
496 {"PyArg_ParseTuple", (PYTHON_PROC*)&dll_PyArg_ParseTuple},
Bram Moolenaare8cdcef2012-09-12 20:21:43 +0200497 {"Py_BuildValue", (PYTHON_PROC*)&dll_Py_BuildValue},
Bram Moolenaar65951252019-02-01 22:10:16 +0100498# else
Bram Moolenaare8cdcef2012-09-12 20:21:43 +0200499 {"_PyArg_Parse_SizeT", (PYTHON_PROC*)&dll_PyArg_Parse},
500 {"_PyArg_ParseTuple_SizeT", (PYTHON_PROC*)&dll_PyArg_ParseTuple},
501 {"_Py_BuildValue_SizeT", (PYTHON_PROC*)&dll_Py_BuildValue},
Bram Moolenaar65951252019-02-01 22:10:16 +0100502# endif
Bram Moolenaar19e60942011-06-19 00:27:51 +0200503 {"PyMem_Free", (PYTHON_PROC*)&dll_PyMem_Free},
Bram Moolenaardb913952012-06-29 12:54:53 +0200504 {"PyMem_Malloc", (PYTHON_PROC*)&dll_PyMem_Malloc},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000505 {"PyDict_SetItemString", (PYTHON_PROC*)&dll_PyDict_SetItemString},
506 {"PyErr_BadArgument", (PYTHON_PROC*)&dll_PyErr_BadArgument},
Bram Moolenaard5f729c2013-05-15 16:04:40 +0200507 {"PyErr_NewException", (PYTHON_PROC*)&dll_PyErr_NewException},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508 {"PyErr_Clear", (PYTHON_PROC*)&dll_PyErr_Clear},
Bram Moolenaarc476e522013-06-23 13:46:40 +0200509 {"PyErr_Format", (PYTHON_PROC*)&dll_PyErr_Format},
Bram Moolenaar4d369872013-02-20 16:09:43 +0100510 {"PyErr_PrintEx", (PYTHON_PROC*)&dll_PyErr_PrintEx},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511 {"PyErr_NoMemory", (PYTHON_PROC*)&dll_PyErr_NoMemory},
512 {"PyErr_Occurred", (PYTHON_PROC*)&dll_PyErr_Occurred},
513 {"PyErr_SetNone", (PYTHON_PROC*)&dll_PyErr_SetNone},
514 {"PyErr_SetString", (PYTHON_PROC*)&dll_PyErr_SetString},
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200515 {"PyErr_SetObject", (PYTHON_PROC*)&dll_PyErr_SetObject},
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200516 {"PyErr_ExceptionMatches", (PYTHON_PROC*)&dll_PyErr_ExceptionMatches},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000517 {"PyEval_InitThreads", (PYTHON_PROC*)&dll_PyEval_InitThreads},
518 {"PyEval_RestoreThread", (PYTHON_PROC*)&dll_PyEval_RestoreThread},
519 {"PyEval_SaveThread", (PYTHON_PROC*)&dll_PyEval_SaveThread},
520# ifdef PY_CAN_RECURSE
521 {"PyGILState_Ensure", (PYTHON_PROC*)&dll_PyGILState_Ensure},
522 {"PyGILState_Release", (PYTHON_PROC*)&dll_PyGILState_Release},
523# endif
524 {"PyInt_AsLong", (PYTHON_PROC*)&dll_PyInt_AsLong},
525 {"PyInt_FromLong", (PYTHON_PROC*)&dll_PyInt_FromLong},
Bram Moolenaardb913952012-06-29 12:54:53 +0200526 {"PyLong_AsLong", (PYTHON_PROC*)&dll_PyLong_AsLong},
527 {"PyLong_FromLong", (PYTHON_PROC*)&dll_PyLong_FromLong},
Bram Moolenaar66b79852012-09-21 14:00:35 +0200528 {"PyBool_Type", (PYTHON_PROC*)&dll_PyBool_Type},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529 {"PyInt_Type", (PYTHON_PROC*)&dll_PyInt_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200530 {"PyLong_Type", (PYTHON_PROC*)&dll_PyLong_Type},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531 {"PyList_GetItem", (PYTHON_PROC*)&dll_PyList_GetItem},
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000532 {"PyList_Append", (PYTHON_PROC*)&dll_PyList_Append},
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200533 {"PyList_Insert", (PYTHON_PROC*)&dll_PyList_Insert},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534 {"PyList_New", (PYTHON_PROC*)&dll_PyList_New},
535 {"PyList_SetItem", (PYTHON_PROC*)&dll_PyList_SetItem},
536 {"PyList_Size", (PYTHON_PROC*)&dll_PyList_Size},
537 {"PyList_Type", (PYTHON_PROC*)&dll_PyList_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200538 {"PySequence_Size", (PYTHON_PROC*)&dll_PySequence_Size},
539 {"PySequence_Check", (PYTHON_PROC*)&dll_PySequence_Check},
Bram Moolenaara9922d62013-05-30 13:01:18 +0200540 {"PySequence_GetItem", (PYTHON_PROC*)&dll_PySequence_GetItem},
541 {"PySequence_Fast", (PYTHON_PROC*)&dll_PySequence_Fast},
Bram Moolenaardb913952012-06-29 12:54:53 +0200542 {"PyTuple_GetItem", (PYTHON_PROC*)&dll_PyTuple_GetItem},
543 {"PyTuple_Size", (PYTHON_PROC*)&dll_PyTuple_Size},
544 {"PyTuple_Type", (PYTHON_PROC*)&dll_PyTuple_Type},
Bram Moolenaar063a46b2014-01-14 16:36:51 +0100545 {"PySlice_GetIndicesEx", (PYTHON_PROC*)&dll_PySlice_GetIndicesEx},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546 {"PyImport_ImportModule", (PYTHON_PROC*)&dll_PyImport_ImportModule},
547 {"PyDict_GetItemString", (PYTHON_PROC*)&dll_PyDict_GetItemString},
Bram Moolenaardb913952012-06-29 12:54:53 +0200548 {"PyDict_Next", (PYTHON_PROC*)&dll_PyDict_Next},
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000549 {"PyDict_New", (PYTHON_PROC*)&dll_PyDict_New},
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200550 {"PyDict_Type", (PYTHON_PROC*)&dll_PyDict_Type},
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200551# ifndef PY_NO_MAPPING_KEYS
552 {"PyMapping_Keys", (PYTHON_PROC*)&dll_PyMapping_Keys},
Bram Moolenaardb913952012-06-29 12:54:53 +0200553# endif
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200554 {"PyObject_GetItem", (PYTHON_PROC*)&dll_PyObject_GetItem},
Bram Moolenaardb913952012-06-29 12:54:53 +0200555 {"PyObject_CallMethod", (PYTHON_PROC*)&dll_PyObject_CallMethod},
556 {"PyMapping_Check", (PYTHON_PROC*)&dll_PyMapping_Check},
557 {"PyIter_Next", (PYTHON_PROC*)&dll_PyIter_Next},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558 {"PyModule_GetDict", (PYTHON_PROC*)&dll_PyModule_GetDict},
Bram Moolenaarf9c9b322013-06-10 20:47:36 +0200559 {"PyModule_AddObject", (PYTHON_PROC*)&dll_PyModule_AddObject},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000560 {"PyRun_SimpleString", (PYTHON_PROC*)&dll_PyRun_SimpleString},
Bram Moolenaardb913952012-06-29 12:54:53 +0200561 {"PyRun_String", (PYTHON_PROC*)&dll_PyRun_String},
Bram Moolenaard620aa92013-05-17 16:40:06 +0200562 {"PyObject_GetAttrString", (PYTHON_PROC*)&dll_PyObject_GetAttrString},
Bram Moolenaara9922d62013-05-30 13:01:18 +0200563 {"PyObject_HasAttrString", (PYTHON_PROC*)&dll_PyObject_HasAttrString},
Bram Moolenaard620aa92013-05-17 16:40:06 +0200564 {"PyObject_SetAttrString", (PYTHON_PROC*)&dll_PyObject_SetAttrString},
565 {"PyObject_CallFunctionObjArgs", (PYTHON_PROC*)&dll_PyObject_CallFunctionObjArgs},
Bram Moolenaar9f3685a2013-06-12 14:20:36 +0200566 {"PyObject_CallFunction", (PYTHON_PROC*)&dll_PyObject_CallFunction},
Bram Moolenaarf4258302013-06-02 18:20:17 +0200567 {"PyObject_Call", (PYTHON_PROC*)&dll_PyObject_Call},
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200568 {"PyObject_Repr", (PYTHON_PROC*)&dll_PyObject_Repr},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 {"PyString_AsString", (PYTHON_PROC*)&dll_PyString_AsString},
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200570 {"PyString_AsStringAndSize", (PYTHON_PROC*)&dll_PyString_AsStringAndSize},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571 {"PyString_FromString", (PYTHON_PROC*)&dll_PyString_FromString},
Bram Moolenaar1a3b5692013-05-30 12:40:39 +0200572 {"PyString_FromFormat", (PYTHON_PROC*)&dll_PyString_FromFormat},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573 {"PyString_FromStringAndSize", (PYTHON_PROC*)&dll_PyString_FromStringAndSize},
574 {"PyString_Size", (PYTHON_PROC*)&dll_PyString_Size},
575 {"PyString_Type", (PYTHON_PROC*)&dll_PyString_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200576 {"PyUnicode_Type", (PYTHON_PROC*)&dll_PyUnicode_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200577 {"PyFloat_Type", (PYTHON_PROC*)&dll_PyFloat_Type},
578 {"PyFloat_AsDouble", (PYTHON_PROC*)&dll_PyFloat_AsDouble},
579 {"PyFloat_FromDouble", (PYTHON_PROC*)&dll_PyFloat_FromDouble},
580 {"PyImport_AddModule", (PYTHON_PROC*)&dll_PyImport_AddModule},
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200581 {"PyNumber_Check", (PYTHON_PROC*)&dll_PyNumber_Check},
582 {"PyNumber_Long", (PYTHON_PROC*)&dll_PyNumber_Long},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000583 {"PySys_SetObject", (PYTHON_PROC*)&dll_PySys_SetObject},
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200584 {"PySys_GetObject", (PYTHON_PROC*)&dll_PySys_GetObject},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585 {"PySys_SetArgv", (PYTHON_PROC*)&dll_PySys_SetArgv},
586 {"PyType_Type", (PYTHON_PROC*)&dll_PyType_Type},
Bram Moolenaard4a8c982018-05-15 22:31:18 +0200587 {"PyFile_Type", (PYTHON_PROC*)&dll_PyFile_Type},
Bram Moolenaar063a46b2014-01-14 16:36:51 +0100588 {"PySlice_Type", (PYTHON_PROC*)&dll_PySlice_Type},
Bram Moolenaar30fec7b2011-03-26 18:32:05 +0100589 {"PyType_Ready", (PYTHON_PROC*)&dll_PyType_Ready},
Bram Moolenaara9922d62013-05-30 13:01:18 +0200590 {"PyType_GenericAlloc", (PYTHON_PROC*)&dll_PyType_GenericAlloc},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000591 {"Py_FindMethod", (PYTHON_PROC*)&dll_Py_FindMethod},
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100592 {"Py_SetPythonHome", (PYTHON_PROC*)&dll_Py_SetPythonHome},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 {"Py_Initialize", (PYTHON_PROC*)&dll_Py_Initialize},
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000594 {"Py_Finalize", (PYTHON_PROC*)&dll_Py_Finalize},
595 {"Py_IsInitialized", (PYTHON_PROC*)&dll_Py_IsInitialized},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000596 {"_PyObject_New", (PYTHON_PROC*)&dll__PyObject_New},
Bram Moolenaar774267b2013-05-21 20:51:59 +0200597 {"_PyObject_GC_New", (PYTHON_PROC*)&dll__PyObject_GC_New},
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200598# ifdef Py_underscore_GC
599 {"_PyObject_GC_Del", (PYTHON_PROC*)&dll__PyObject_GC_Del},
600 {"_PyObject_GC_UnTrack", (PYTHON_PROC*)&dll__PyObject_GC_UnTrack},
601# else
Bram Moolenaar774267b2013-05-21 20:51:59 +0200602 {"PyObject_GC_Del", (PYTHON_PROC*)&dll_PyObject_GC_Del},
603 {"PyObject_GC_UnTrack", (PYTHON_PROC*)&dll_PyObject_GC_UnTrack},
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200604# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605 {"PyObject_Init", (PYTHON_PROC*)&dll__PyObject_Init},
Bram Moolenaardb913952012-06-29 12:54:53 +0200606 {"PyObject_GetIter", (PYTHON_PROC*)&dll_PyObject_GetIter},
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200607 {"PyObject_IsTrue", (PYTHON_PROC*)&dll_PyObject_IsTrue},
Bram Moolenaare7211222012-06-30 13:21:08 +0200608# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
Bram Moolenaardb913952012-06-29 12:54:53 +0200609 {"_PyObject_NextNotImplemented", (PYTHON_PROC*)&dll__PyObject_NextNotImplemented},
Bram Moolenaare7211222012-06-30 13:21:08 +0200610# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611 {"_Py_NoneStruct", (PYTHON_PROC*)&dll__Py_NoneStruct},
Bram Moolenaar66b79852012-09-21 14:00:35 +0200612 {"_Py_ZeroStruct", (PYTHON_PROC*)&dll__Py_ZeroStruct},
613 {"_Py_TrueStruct", (PYTHON_PROC*)&dll__Py_TrueStruct},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
Bram Moolenaar0014a532013-05-29 21:33:39 +0200615# ifdef Py_DEBUG
616 {"_Py_NegativeRefcount", (PYTHON_PROC*)&dll__Py_NegativeRefcount},
617 {"_Py_RefTotal", (PYTHON_PROC*)&dll__Py_RefTotal},
618 {"_Py_Dealloc", (PYTHON_PROC*)&dll__Py_Dealloc},
619# endif
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200620 {"PyType_IsSubtype", (PYTHON_PROC*)&dll_PyType_IsSubtype},
621# endif
622# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
Bram Moolenaar0014a532013-05-29 21:33:39 +0200623# if defined(Py_DEBUG) && !defined(Py_DEBUG_NO_PYMALLOC)
624 {"_PyObject_DebugFree", (PYTHON_PROC*)&dll__PyObject_DebugFree},
625 {"_PyObject_DebugMalloc", (PYTHON_PROC*)&dll__PyObject_DebugMalloc},
626# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627 {"PyObject_Malloc", (PYTHON_PROC*)&dll_PyObject_Malloc},
628 {"PyObject_Free", (PYTHON_PROC*)&dll_PyObject_Free},
Bram Moolenaar0014a532013-05-29 21:33:39 +0200629# endif
630# endif
631# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02050000 \
Bram Moolenaara2aa31a2014-02-23 22:52:40 +0100632 && SIZEOF_SIZE_T != VIM_SIZEOF_INT
Bram Moolenaar0014a532013-05-29 21:33:39 +0200633# ifdef Py_DEBUG
634 {"Py_InitModule4TraceRefs_64", (PYTHON_PROC*)&dll_Py_InitModule4},
635# else
636 {"Py_InitModule4_64", (PYTHON_PROC*)&dll_Py_InitModule4},
637# endif
638# else
639# ifdef Py_DEBUG
640 {"Py_InitModule4TraceRefs", (PYTHON_PROC*)&dll_Py_InitModule4},
641# else
642 {"Py_InitModule4", (PYTHON_PROC*)&dll_Py_InitModule4},
643# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200645# ifdef PY_USE_CAPSULE
Bram Moolenaardb913952012-06-29 12:54:53 +0200646 {"PyCapsule_New", (PYTHON_PROC*)&dll_PyCapsule_New},
647 {"PyCapsule_GetPointer", (PYTHON_PROC*)&dll_PyCapsule_GetPointer},
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200648# else
649 {"PyCObject_FromVoidPtr", (PYTHON_PROC*)&dll_PyCObject_FromVoidPtr},
650 {"PyCObject_AsVoidPtr", (PYTHON_PROC*)&dll_PyCObject_AsVoidPtr},
651# endif
Bram Moolenaar12a28d42014-07-23 16:57:00 +0200652# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
653 {"Py_NoSiteFlag", (PYTHON_PROC*)&dll_Py_NoSiteFlag},
654# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655 {"", NULL},
656};
657
658/*
659 * Free python.dll
660 */
661 static void
662end_dynamic_python(void)
663{
664 if (hinstPython)
665 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200666 close_dll(hinstPython);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667 hinstPython = 0;
668 }
669}
670
671/*
672 * Load library and get all pointers.
673 * Parameter 'libname' provides name of DLL.
674 * Return OK or FAIL.
675 */
676 static int
677python_runtime_link_init(char *libname, int verbose)
678{
679 int i;
Bram Moolenaar7b24ce02018-03-29 18:15:26 +0200680 PYTHON_PROC *ucs_as_encoded_string =
681 (PYTHON_PROC*)&py_PyUnicode_AsEncodedString;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682
Bram Moolenaar65951252019-02-01 22:10:16 +0100683# if !(defined(PY_NO_RTLD_GLOBAL) && defined(PY3_NO_RTLD_GLOBAL)) && defined(UNIX) && defined(FEAT_PYTHON3)
Bram Moolenaarb744b2f2010-08-13 16:22:57 +0200684 /* Can't have Python and Python3 loaded at the same time.
685 * It cause a crash, because RTLD_GLOBAL is needed for
686 * standard C extension libraries of one or both python versions. */
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200687 if (python3_loaded())
688 {
Bram Moolenaar9dc93ae2011-08-28 16:00:19 +0200689 if (verbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100690 emsg(_("E836: This Vim cannot execute :python after using :py3"));
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200691 return FAIL;
692 }
Bram Moolenaar65951252019-02-01 22:10:16 +0100693# endif
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200694
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695 if (hinstPython)
696 return OK;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200697 hinstPython = load_dll(libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698 if (!hinstPython)
699 {
700 if (verbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100701 semsg(_(e_loadlib), libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 return FAIL;
703 }
704
705 for (i = 0; python_funcname_table[i].ptr; ++i)
706 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200707 if ((*python_funcname_table[i].ptr = symbol_from_dll(hinstPython,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 python_funcname_table[i].name)) == NULL)
709 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200710 close_dll(hinstPython);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711 hinstPython = 0;
712 if (verbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100713 semsg(_(e_loadfunc), python_funcname_table[i].name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714 return FAIL;
715 }
716 }
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200717
718 /* Load unicode functions separately as only the ucs2 or the ucs4 functions
719 * will be present in the library. */
Bram Moolenaar7b24ce02018-03-29 18:15:26 +0200720 *ucs_as_encoded_string = symbol_from_dll(hinstPython,
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200721 "PyUnicodeUCS2_AsEncodedString");
Bram Moolenaar7b24ce02018-03-29 18:15:26 +0200722 if (*ucs_as_encoded_string == NULL)
723 *ucs_as_encoded_string = symbol_from_dll(hinstPython,
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200724 "PyUnicodeUCS4_AsEncodedString");
Bram Moolenaar7b24ce02018-03-29 18:15:26 +0200725 if (*ucs_as_encoded_string == NULL)
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200726 {
727 close_dll(hinstPython);
728 hinstPython = 0;
729 if (verbose)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100730 semsg(_(e_loadfunc), "PyUnicode_UCSX_*");
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200731 return FAIL;
732 }
733
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 return OK;
735}
736
737/*
738 * If python is enabled (there is installed python on Windows system) return
739 * TRUE, else FALSE.
740 */
741 int
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000742python_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743{
Bram Moolenaar25e4fcd2016-01-09 14:57:47 +0100744 return python_runtime_link_init((char *)p_pydll, verbose) == OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745}
746
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200747/*
748 * Load the standard Python exceptions - don't import the symbols from the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 * DLL, as this can cause errors (importing data symbols is not reliable).
750 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751 static void
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200752get_exceptions(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753{
754 PyObject *exmod = PyImport_ImportModule("exceptions");
755 PyObject *exdict = PyModule_GetDict(exmod);
756 imp_PyExc_AttributeError = PyDict_GetItemString(exdict, "AttributeError");
757 imp_PyExc_IndexError = PyDict_GetItemString(exdict, "IndexError");
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200758 imp_PyExc_KeyError = PyDict_GetItemString(exdict, "KeyError");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759 imp_PyExc_KeyboardInterrupt = PyDict_GetItemString(exdict, "KeyboardInterrupt");
760 imp_PyExc_TypeError = PyDict_GetItemString(exdict, "TypeError");
761 imp_PyExc_ValueError = PyDict_GetItemString(exdict, "ValueError");
Bram Moolenaar41009372013-07-01 22:03:04 +0200762 imp_PyExc_SystemExit = PyDict_GetItemString(exdict, "SystemExit");
Bram Moolenaar8661b172013-05-15 15:44:28 +0200763 imp_PyExc_RuntimeError = PyDict_GetItemString(exdict, "RuntimeError");
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200764 imp_PyExc_ImportError = PyDict_GetItemString(exdict, "ImportError");
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200765 imp_PyExc_OverflowError = PyDict_GetItemString(exdict, "OverflowError");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 Py_XINCREF(imp_PyExc_AttributeError);
767 Py_XINCREF(imp_PyExc_IndexError);
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200768 Py_XINCREF(imp_PyExc_KeyError);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 Py_XINCREF(imp_PyExc_KeyboardInterrupt);
770 Py_XINCREF(imp_PyExc_TypeError);
771 Py_XINCREF(imp_PyExc_ValueError);
Bram Moolenaar41009372013-07-01 22:03:04 +0200772 Py_XINCREF(imp_PyExc_SystemExit);
Bram Moolenaar8661b172013-05-15 15:44:28 +0200773 Py_XINCREF(imp_PyExc_RuntimeError);
Bram Moolenaarc09a6d62013-06-10 21:27:29 +0200774 Py_XINCREF(imp_PyExc_ImportError);
Bram Moolenaar141be8a2013-06-23 14:16:57 +0200775 Py_XINCREF(imp_PyExc_OverflowError);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776 Py_XDECREF(exmod);
777}
778#endif /* DYNAMIC_PYTHON */
779
Bram Moolenaardb913952012-06-29 12:54:53 +0200780static int initialised = 0;
781#define PYINITIALISED initialised
Bram Moolenaarc4f83382017-07-07 14:50:44 +0200782static int python_end_called = FALSE;
Bram Moolenaardb913952012-06-29 12:54:53 +0200783
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +0200784#define DESTRUCTOR_FINISH(self) self->ob_type->tp_free((PyObject*)self);
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200785
Bram Moolenaar971db462013-05-12 18:44:48 +0200786#define WIN_PYTHON_REF(win) win->w_python_ref
787#define BUF_PYTHON_REF(buf) buf->b_python_ref
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200788#define TAB_PYTHON_REF(tab) tab->tp_python_ref
Bram Moolenaar971db462013-05-12 18:44:48 +0200789
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200790static PyObject *OutputGetattr(PyObject *, char *);
791static PyObject *BufferGetattr(PyObject *, char *);
792static PyObject *WindowGetattr(PyObject *, char *);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200793static PyObject *TabPageGetattr(PyObject *, char *);
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200794static PyObject *RangeGetattr(PyObject *, char *);
795static PyObject *DictionaryGetattr(PyObject *, char*);
796static PyObject *ListGetattr(PyObject *, char *);
797static PyObject *FunctionGetattr(PyObject *, char *);
798
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +0200799#ifndef Py_VISIT
800# define Py_VISIT(obj) visit(obj, arg)
801#endif
802#ifndef Py_CLEAR
803# define Py_CLEAR(obj) \
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200804 { \
805 Py_XDECREF(obj); \
806 obj = NULL; \
807 }
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +0200808#endif
809
Bram Moolenaarfdde8802013-05-30 15:38:24 +0200810#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
811 static void *
812py_memsave(void *p, size_t len)
813{
814 void *r;
815
816 if (!(r = PyMem_Malloc(len)))
817 return NULL;
818 mch_memmove(r, p, len);
819 return r;
820}
821
822# define PY_STRSAVE(s) ((char_u *) py_memsave(s, STRLEN(s) + 1))
823#endif
824
Bram Moolenaar922a4662014-03-30 16:11:43 +0200825typedef PySliceObject PySliceObject_T;
826
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200827/*
828 * Include the code shared with if_python3.c
829 */
830#include "if_py_both.h"
831
832
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833/******************************************************
834 * Internal function prototypes.
835 */
836
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837static int PythonMod_Init(void);
838
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839
840/******************************************************
841 * 1. Python interpreter main program.
842 */
843
Bram Moolenaar071d4272004-06-13 20:20:40 +0000844#if PYTHON_API_VERSION < 1007 /* Python 1.4 */
845typedef PyObject PyThreadState;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000846#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847
Bram Moolenaar71700b82013-05-15 17:49:05 +0200848#ifndef PY_CAN_RECURSE
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000849static PyThreadState *saved_python_thread = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850
851/*
852 * Suspend a thread of the Python interpreter, other threads are allowed to
853 * run.
854 */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000855 static void
856Python_SaveThread(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857{
858 saved_python_thread = PyEval_SaveThread();
859}
860
861/*
862 * Restore a thread of the Python interpreter, waits for other threads to
863 * block.
864 */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000865 static void
866Python_RestoreThread(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867{
868 PyEval_RestoreThread(saved_python_thread);
869 saved_python_thread = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000870}
Bram Moolenaar71700b82013-05-15 17:49:05 +0200871#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 void
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100874python_end(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875{
Bram Moolenaara5792f52005-11-23 21:25:05 +0000876 static int recurse = 0;
877
878 /* If a crash occurs while doing this, don't try again. */
879 if (recurse != 0)
880 return;
881
Bram Moolenaarc4f83382017-07-07 14:50:44 +0200882 python_end_called = TRUE;
Bram Moolenaara5792f52005-11-23 21:25:05 +0000883 ++recurse;
884
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885#ifdef DYNAMIC_PYTHON
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000886 if (hinstPython && Py_IsInitialized())
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000887 {
Bram Moolenaar71700b82013-05-15 17:49:05 +0200888# ifdef PY_CAN_RECURSE
889 PyGILState_Ensure();
890# else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000891 Python_RestoreThread(); /* enter python */
Bram Moolenaar71700b82013-05-15 17:49:05 +0200892# endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000893 Py_Finalize();
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000894 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895 end_dynamic_python();
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000896#else
897 if (Py_IsInitialized())
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000898 {
Bram Moolenaar71700b82013-05-15 17:49:05 +0200899# ifdef PY_CAN_RECURSE
900 PyGILState_Ensure();
901# else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000902 Python_RestoreThread(); /* enter python */
Bram Moolenaar71700b82013-05-15 17:49:05 +0200903# endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000904 Py_Finalize();
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000905 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906#endif
Bram Moolenaara5792f52005-11-23 21:25:05 +0000907
908 --recurse;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909}
910
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200911#if (defined(DYNAMIC_PYTHON) && defined(FEAT_PYTHON3)) || defined(PROTO)
912 int
Bram Moolenaar68c2f632016-01-30 17:24:07 +0100913python_loaded(void)
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200914{
915 return (hinstPython != 0);
916}
917#endif
918
Bram Moolenaar94073162018-01-31 21:49:05 +0100919static char *py_home_buf = NULL;
920
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921 static int
922Python_Init(void)
923{
924 if (!initialised)
925 {
Bram Moolenaar12a28d42014-07-23 16:57:00 +0200926#if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
927 PyObject *site;
928#endif
929
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930#ifdef DYNAMIC_PYTHON
931 if (!python_enabled(TRUE))
932 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100933 emsg(_("E263: Sorry, this command is disabled, the Python library could not be loaded."));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934 goto fail;
935 }
936#endif
937
Bram Moolenaar94073162018-01-31 21:49:05 +0100938 if (*p_pyhome != NUL)
939 {
940 /* The string must not change later, make a copy in static memory. */
941 py_home_buf = (char *)vim_strsave(p_pyhome);
942 if (py_home_buf != NULL)
943 Py_SetPythonHome(py_home_buf);
944 }
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100945#ifdef PYTHON_HOME
Bram Moolenaar94073162018-01-31 21:49:05 +0100946 else if (mch_getenv((char_u *)"PYTHONHOME") == NULL)
Bram Moolenaar10005652015-12-31 21:03:23 +0100947 Py_SetPythonHome(PYTHON_HOME);
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100948#endif
949
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200950 init_structs();
951
Bram Moolenaar12a28d42014-07-23 16:57:00 +0200952#if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
953 /* Disable implicit 'import site', because it may cause Vim to exit
954 * when it can't be found. */
955 Py_NoSiteFlag++;
956#endif
957
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958 Py_Initialize();
Bram Moolenaar12a28d42014-07-23 16:57:00 +0200959
960#if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
961 /* 'import site' explicitly. */
962 site = PyImport_ImportModule("site");
963 if (site == NULL)
964 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100965 emsg(_("E887: Sorry, this command is disabled, the Python's site module could not be loaded."));
Bram Moolenaar12a28d42014-07-23 16:57:00 +0200966 goto fail;
967 }
968 Py_DECREF(site);
969#endif
970
Bram Moolenaar02366252013-01-30 11:44:39 +0100971 /* Initialise threads, and below save the state using
Bram Moolenaar76d711c2013-02-13 14:17:08 +0100972 * PyEval_SaveThread. Without the call to PyEval_SaveThread, thread
Bram Moolenaar02366252013-01-30 11:44:39 +0100973 * specific state (such as the system trace hook), will be lost
974 * between invocations of Python code. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 PyEval_InitThreads();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976#ifdef DYNAMIC_PYTHON
977 get_exceptions();
978#endif
979
Bram Moolenaar1dc28782013-05-21 19:11:01 +0200980 if (PythonIO_Init_io())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 goto fail;
982
983 if (PythonMod_Init())
984 goto fail;
985
Bram Moolenaardb913952012-06-29 12:54:53 +0200986 globals = PyModule_GetDict(PyImport_AddModule("__main__"));
987
Bram Moolenaar9774ecc2008-11-20 10:04:53 +0000988 /* Remove the element from sys.path that was added because of our
989 * argv[0] value in PythonMod_Init(). Previously we used an empty
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200990 * string, but depending on the OS we then get an empty entry or
Bram Moolenaar9774ecc2008-11-20 10:04:53 +0000991 * the current directory in sys.path. */
992 PyRun_SimpleString("import sys; sys.path = filter(lambda x: x != '/must>not&exist', sys.path)");
993
Bram Moolenaar76d711c2013-02-13 14:17:08 +0100994 /* lock is created and acquired in PyEval_InitThreads() and thread
995 * state is created in Py_Initialize()
996 * there _PyGILState_NoteThreadState() also sets gilcounter to 1
997 * (python must have threads enabled!)
998 * so the following does both: unlock GIL and save thread state in TLS
999 * without deleting thread state
1000 */
Bram Moolenaar03db85b2013-05-15 14:51:35 +02001001#ifndef PY_CAN_RECURSE
1002 saved_python_thread =
1003#endif
1004 PyEval_SaveThread();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005
1006 initialised = 1;
1007 }
1008
1009 return 0;
1010
1011fail:
1012 /* We call PythonIO_Flush() here to print any Python errors.
1013 * This is OK, as it is possible to call this function even
Bram Moolenaar1dc28782013-05-21 19:11:01 +02001014 * if PythonIO_Init_io() has not completed successfully (it will
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015 * not do anything in this case).
1016 */
1017 PythonIO_Flush();
1018 return -1;
1019}
1020
1021/*
1022 * External interface
1023 */
1024 static void
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02001025DoPyCommand(const char *cmd, rangeinitializer init_range, runner run, void *arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +00001027#ifndef PY_CAN_RECURSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028 static int recursive = 0;
1029#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1031 char *saved_locale;
1032#endif
Bram Moolenaar71700b82013-05-15 17:49:05 +02001033#ifdef PY_CAN_RECURSE
1034 PyGILState_STATE pygilstate;
1035#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036
1037#ifndef PY_CAN_RECURSE
1038 if (recursive)
1039 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001040 emsg(_("E659: Cannot invoke Python recursively"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001041 return;
1042 }
1043 ++recursive;
1044#endif
Bram Moolenaarc4f83382017-07-07 14:50:44 +02001045 if (python_end_called)
1046 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 if (Python_Init())
1049 goto theend;
1050
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02001051 init_range(arg);
1052
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053 Python_Release_Vim(); /* leave vim */
1054
1055#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1056 /* Python only works properly when the LC_NUMERIC locale is "C". */
1057 saved_locale = setlocale(LC_NUMERIC, NULL);
1058 if (saved_locale == NULL || STRCMP(saved_locale, "C") == 0)
1059 saved_locale = NULL;
1060 else
1061 {
1062 /* Need to make a copy, value may change when setting new locale. */
Bram Moolenaare9ba5162013-05-29 22:02:22 +02001063 saved_locale = (char *) PY_STRSAVE(saved_locale);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064 (void)setlocale(LC_NUMERIC, "C");
1065 }
1066#endif
1067
Bram Moolenaar71700b82013-05-15 17:49:05 +02001068#ifdef PY_CAN_RECURSE
1069 pygilstate = PyGILState_Ensure();
1070#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001071 Python_RestoreThread(); /* enter python */
Bram Moolenaar71700b82013-05-15 17:49:05 +02001072#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +02001074 run((char *) cmd, arg
1075#ifdef PY_CAN_RECURSE
1076 , &pygilstate
1077#endif
1078 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079
Bram Moolenaar71700b82013-05-15 17:49:05 +02001080#ifdef PY_CAN_RECURSE
1081 PyGILState_Release(pygilstate);
1082#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083 Python_SaveThread(); /* leave python */
Bram Moolenaar71700b82013-05-15 17:49:05 +02001084#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085
1086#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
1087 if (saved_locale != NULL)
1088 {
1089 (void)setlocale(LC_NUMERIC, saved_locale);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02001090 PyMem_Free(saved_locale);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091 }
1092#endif
1093
1094 Python_Lock_Vim(); /* enter vim */
1095 PythonIO_Flush();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096
1097theend:
1098#ifndef PY_CAN_RECURSE
1099 --recursive;
1100#endif
Bram Moolenaardb913952012-06-29 12:54:53 +02001101 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001102}
1103
1104/*
1105 * ":python"
1106 */
1107 void
1108ex_python(exarg_T *eap)
1109{
1110 char_u *script;
1111
Bram Moolenaarf42dd3c2017-01-28 16:06:38 +01001112 if (p_pyx == 0)
1113 p_pyx = 2;
1114
Bram Moolenaar071d4272004-06-13 20:20:40 +00001115 script = script_get(eap, eap->arg);
1116 if (!eap->skip)
1117 {
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02001118 DoPyCommand(script == NULL ? (char *) eap->arg : (char *) script,
1119 (rangeinitializer) init_range_cmd,
1120 (runner) run_cmd,
1121 (void *) eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122 }
1123 vim_free(script);
1124}
1125
1126#define BUFFER_SIZE 1024
1127
1128/*
1129 * ":pyfile"
1130 */
1131 void
1132ex_pyfile(exarg_T *eap)
1133{
1134 static char buffer[BUFFER_SIZE];
1135 const char *file = (char *)eap->arg;
1136 char *p;
1137
Bram Moolenaarf42dd3c2017-01-28 16:06:38 +01001138 if (p_pyx == 0)
1139 p_pyx = 2;
1140
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141 /* Have to do it like this. PyRun_SimpleFile requires you to pass a
1142 * stdio file pointer, but Vim and the Python DLL are compiled with
1143 * different options under Windows, meaning that stdio pointers aren't
1144 * compatible between the two. Yuk.
1145 *
1146 * Put the string "execfile('file')" into buffer. But, we need to
1147 * escape any backslashes or single quotes in the file name, so that
1148 * Python won't mangle the file name.
1149 */
1150 strcpy(buffer, "execfile('");
1151 p = buffer + 10; /* size of "execfile('" */
1152
1153 while (*file && p < buffer + (BUFFER_SIZE - 3))
1154 {
1155 if (*file == '\\' || *file == '\'')
1156 *p++ = '\\';
1157 *p++ = *file++;
1158 }
1159
1160 /* If we didn't finish the file name, we hit a buffer overflow */
1161 if (*file != '\0')
1162 return;
1163
1164 /* Put in the terminating "')" and a null */
1165 *p++ = '\'';
1166 *p++ = ')';
1167 *p++ = '\0';
1168
1169 /* Execute the file */
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02001170 DoPyCommand(buffer,
1171 (rangeinitializer) init_range_cmd,
1172 (runner) run_cmd,
1173 (void *) eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174}
1175
Bram Moolenaard620aa92013-05-17 16:40:06 +02001176 void
1177ex_pydo(exarg_T *eap)
1178{
Bram Moolenaarf42dd3c2017-01-28 16:06:38 +01001179 if (p_pyx == 0)
1180 p_pyx = 2;
1181
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02001182 DoPyCommand((char *)eap->arg,
1183 (rangeinitializer) init_range_cmd,
1184 (runner)run_do,
1185 (void *)eap);
Bram Moolenaard620aa92013-05-17 16:40:06 +02001186}
1187
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188/******************************************************
1189 * 2. Python output stream: writes output via [e]msg().
1190 */
1191
1192/* Implementation functions
1193 */
1194
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195 static PyObject *
1196OutputGetattr(PyObject *self, char *name)
1197{
1198 if (strcmp(name, "softspace") == 0)
1199 return PyInt_FromLong(((OutputObject *)(self))->softspace);
Bram Moolenaardd8aca62013-05-29 22:36:10 +02001200 else if (strcmp(name, "__members__") == 0)
1201 return ObjectDir(NULL, OutputAttrs);
Bram Moolenaar6d4431e2016-04-21 20:00:56 +02001202 else if (strcmp(name, "errors") == 0)
1203 return PyString_FromString("strict");
1204 else if (strcmp(name, "encoding") == 0)
1205 return PyString_FromString(ENC_OPT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 return Py_FindMethod(OutputMethods, self, name);
1207}
1208
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209/******************************************************
1210 * 3. Implementation of the Vim module for Python
1211 */
1212
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213/* Window type - Implementation functions
1214 * --------------------------------------
1215 */
1216
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217#define WindowType_Check(obj) ((obj)->ob_type == &WindowType)
1218
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219/* Buffer type - Implementation functions
1220 * --------------------------------------
1221 */
1222
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223#define BufferType_Check(obj) ((obj)->ob_type == &BufferType)
1224
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001225static PyInt BufferAssItem(PyObject *, PyInt, PyObject *);
1226static PyInt BufferAssSlice(PyObject *, PyInt, PyInt, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228/* Line range type - Implementation functions
1229 * --------------------------------------
1230 */
1231
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232#define RangeType_Check(obj) ((obj)->ob_type == &RangeType)
1233
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001234static PyInt RangeAssItem(PyObject *, PyInt, PyObject *);
1235static PyInt RangeAssSlice(PyObject *, PyInt, PyInt, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237/* Current objects type - Implementation functions
1238 * -----------------------------------------------
1239 */
1240
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241static PySequenceMethods BufferAsSeq = {
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001242 (PyInquiry) BufferLength, /* sq_length, len(x) */
Bram Moolenaar77fceb82012-09-05 18:54:48 +02001243 (binaryfunc) 0, /* BufferConcat, sq_concat, x+y */
1244 (PyIntArgFunc) 0, /* BufferRepeat, sq_repeat, x*n */
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001245 (PyIntArgFunc) BufferItem, /* sq_item, x[i] */
1246 (PyIntIntArgFunc) BufferSlice, /* sq_slice, x[i:j] */
1247 (PyIntObjArgProc) BufferAssItem, /* sq_ass_item, x[i]=v */
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001248 (PyIntIntObjArgProc) BufferAssSlice, /* sq_ass_slice, x[i:j]=v */
1249 (objobjproc) 0,
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001250 (binaryfunc) 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252};
1253
1254/* Buffer object - Implementation
1255 */
1256
1257 static PyObject *
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258BufferGetattr(PyObject *self, char *name)
1259{
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001260 PyObject *r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261
Bram Moolenaar9e822c02013-05-29 22:15:30 +02001262 if ((r = BufferAttrValid((BufferObject *)(self), name)))
1263 return r;
1264
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001265 if (CheckBuffer((BufferObject *)(self)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 return NULL;
1267
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001268 r = BufferAttr((BufferObject *)(self), name);
1269 if (r || PyErr_Occurred())
1270 return r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 else
1272 return Py_FindMethod(BufferMethods, self, name);
1273}
1274
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275/******************/
1276
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001277 static PyInt
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001278BufferAssItem(PyObject *self, PyInt n, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279{
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02001280 return RBAsItem((BufferObject *)(self), n, val, 1, -1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281}
1282
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001283 static PyInt
1284BufferAssSlice(PyObject *self, PyInt lo, PyInt hi, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285{
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02001286 return RBAsSlice((BufferObject *)(self), lo, hi, val, 1, -1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287}
1288
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289static PySequenceMethods RangeAsSeq = {
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001290 (PyInquiry) RangeLength, /* sq_length, len(x) */
1291 (binaryfunc) 0, /* RangeConcat, */ /* sq_concat, x+y */
1292 (PyIntArgFunc) 0, /* RangeRepeat, */ /* sq_repeat, x*n */
1293 (PyIntArgFunc) RangeItem, /* sq_item, x[i] */
1294 (PyIntIntArgFunc) RangeSlice, /* sq_slice, x[i:j] */
1295 (PyIntObjArgProc) RangeAssItem, /* sq_ass_item, x[i]=v */
1296 (PyIntIntObjArgProc) RangeAssSlice, /* sq_ass_slice, x[i:j]=v */
1297 (objobjproc) 0,
1298#if PY_MAJOR_VERSION >= 2
1299 (binaryfunc) 0,
1300 0,
1301#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302};
1303
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304/* Line range object - Implementation
1305 */
1306
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 static PyObject *
1308RangeGetattr(PyObject *self, char *name)
1309{
1310 if (strcmp(name, "start") == 0)
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001311 return Py_BuildValue(Py_ssize_t_fmt, ((RangeObject *)(self))->start - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 else if (strcmp(name, "end") == 0)
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001313 return Py_BuildValue(Py_ssize_t_fmt, ((RangeObject *)(self))->end - 1);
Bram Moolenaardd8aca62013-05-29 22:36:10 +02001314 else if (strcmp(name, "__members__") == 0)
1315 return ObjectDir(NULL, RangeAttrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001316 else
1317 return Py_FindMethod(RangeMethods, self, name);
1318}
1319
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320/****************/
1321
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001322 static PyInt
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001323RangeAssItem(PyObject *self, PyInt n, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324{
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001325 return RBAsItem(((RangeObject *)(self))->buf, n, val,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 ((RangeObject *)(self))->start,
1327 ((RangeObject *)(self))->end,
1328 &((RangeObject *)(self))->end);
1329}
1330
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001331 static PyInt
1332RangeAssSlice(PyObject *self, PyInt lo, PyInt hi, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333{
Bram Moolenaar19e60942011-06-19 00:27:51 +02001334 return RBAsSlice(((RangeObject *)(self))->buf, lo, hi, val,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001335 ((RangeObject *)(self))->start,
1336 ((RangeObject *)(self))->end,
1337 &((RangeObject *)(self))->end);
1338}
1339
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001340/* TabPage object - Implementation
1341 */
1342
1343 static PyObject *
1344TabPageGetattr(PyObject *self, char *name)
1345{
1346 PyObject *r;
1347
Bram Moolenaar9e822c02013-05-29 22:15:30 +02001348 if ((r = TabPageAttrValid((TabPageObject *)(self), name)))
1349 return r;
1350
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001351 if (CheckTabPage((TabPageObject *)(self)))
1352 return NULL;
1353
1354 r = TabPageAttr((TabPageObject *)(self), name);
1355 if (r || PyErr_Occurred())
1356 return r;
1357 else
1358 return Py_FindMethod(TabPageMethods, self, name);
1359}
1360
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361/* Window object - Implementation
1362 */
1363
1364 static PyObject *
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365WindowGetattr(PyObject *self, char *name)
1366{
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001367 PyObject *r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368
Bram Moolenaar9e822c02013-05-29 22:15:30 +02001369 if ((r = WindowAttrValid((WindowObject *)(self), name)))
1370 return r;
1371
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001372 if (CheckWindow((WindowObject *)(self)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 return NULL;
1374
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001375 r = WindowAttr((WindowObject *)(self), name);
1376 if (r || PyErr_Occurred())
1377 return r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 else
1379 return Py_FindMethod(WindowMethods, self, name);
1380}
1381
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001382/* Tab page list object - Definitions
1383 */
1384
1385static PySequenceMethods TabListAsSeq = {
1386 (PyInquiry) TabListLength, /* sq_length, len(x) */
1387 (binaryfunc) 0, /* sq_concat, x+y */
1388 (PyIntArgFunc) 0, /* sq_repeat, x*n */
1389 (PyIntArgFunc) TabListItem, /* sq_item, x[i] */
1390 (PyIntIntArgFunc) 0, /* sq_slice, x[i:j] */
1391 (PyIntObjArgProc) 0, /* sq_ass_item, x[i]=v */
1392 (PyIntIntObjArgProc) 0, /* sq_ass_slice, x[i:j]=v */
1393 (objobjproc) 0,
1394#if PY_MAJOR_VERSION >= 2
1395 (binaryfunc) 0,
1396 0,
1397#endif
1398};
1399
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400/* Window list object - Definitions
1401 */
1402
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403static PySequenceMethods WinListAsSeq = {
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001404 (PyInquiry) WinListLength, /* sq_length, len(x) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 (binaryfunc) 0, /* sq_concat, x+y */
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001406 (PyIntArgFunc) 0, /* sq_repeat, x*n */
1407 (PyIntArgFunc) WinListItem, /* sq_item, x[i] */
1408 (PyIntIntArgFunc) 0, /* sq_slice, x[i:j] */
1409 (PyIntObjArgProc) 0, /* sq_ass_item, x[i]=v */
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001410 (PyIntIntObjArgProc) 0, /* sq_ass_slice, x[i:j]=v */
1411 (objobjproc) 0,
1412#if PY_MAJOR_VERSION >= 2
1413 (binaryfunc) 0,
1414 0,
1415#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416};
1417
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418/* External interface
1419 */
1420
1421 void
1422python_buffer_free(buf_T *buf)
1423{
Bram Moolenaar971db462013-05-12 18:44:48 +02001424 if (BUF_PYTHON_REF(buf) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 {
Bram Moolenaar971db462013-05-12 18:44:48 +02001426 BufferObject *bp = BUF_PYTHON_REF(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427 bp->buf = INVALID_BUFFER_VALUE;
Bram Moolenaar971db462013-05-12 18:44:48 +02001428 BUF_PYTHON_REF(buf) = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429 }
1430}
1431
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432 void
1433python_window_free(win_T *win)
1434{
Bram Moolenaar971db462013-05-12 18:44:48 +02001435 if (WIN_PYTHON_REF(win) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001436 {
Bram Moolenaar971db462013-05-12 18:44:48 +02001437 WindowObject *wp = WIN_PYTHON_REF(win);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001438 wp->win = INVALID_WINDOW_VALUE;
Bram Moolenaar971db462013-05-12 18:44:48 +02001439 WIN_PYTHON_REF(win) = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001440 }
1441}
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001442
1443 void
1444python_tabpage_free(tabpage_T *tab)
1445{
1446 if (TAB_PYTHON_REF(tab) != NULL)
1447 {
1448 TabPageObject *tp = TAB_PYTHON_REF(tab);
1449 tp->tab = INVALID_TABPAGE_VALUE;
1450 TAB_PYTHON_REF(tab) = NULL;
1451 }
1452}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001453
Bram Moolenaar1dc28782013-05-21 19:11:01 +02001454 static int
Bram Moolenaar071d4272004-06-13 20:20:40 +00001455PythonMod_Init(void)
1456{
Bram Moolenaar9774ecc2008-11-20 10:04:53 +00001457 /* The special value is removed from sys.path in Python_Init(). */
Bram Moolenaar9f3685a2013-06-12 14:20:36 +02001458 static char *(argv[2]) = {"/must>not&exist/foo", NULL};
Bram Moolenaar071d4272004-06-13 20:20:40 +00001459
Bram Moolenaar1dc28782013-05-21 19:11:01 +02001460 if (init_types())
1461 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001462
1463 /* Set sys.argv[] to avoid a crash in warn(). */
1464 PySys_SetArgv(1, argv);
1465
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001466 vim_module = Py_InitModule4("vim", VimMethods, (char *)NULL,
1467 (PyObject *)NULL, PYTHON_API_VERSION);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468
Bram Moolenaardee2e312013-06-23 16:35:47 +02001469 if (populate_module(vim_module))
Bram Moolenaarc09a6d62013-06-10 21:27:29 +02001470 return -1;
1471
1472 if (init_sys_path())
1473 return -1;
1474
1475 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001476}
1477
1478/*************************************************************************
1479 * 4. Utility functions for handling the interface between Vim and Python.
1480 */
1481
Bram Moolenaar071d4272004-06-13 20:20:40 +00001482/* Convert a Vim line into a Python string.
1483 * All internal newlines are replaced by null characters.
1484 *
1485 * On errors, the Python exception data is set, and NULL is returned.
1486 */
1487 static PyObject *
1488LineToString(const char *str)
1489{
1490 PyObject *result;
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001491 PyInt len = strlen(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 char *p;
1493
1494 /* Allocate an Python string object, with uninitialised contents. We
1495 * must do it this way, so that we can modify the string in place
1496 * later. See the Python source, Objects/stringobject.c for details.
1497 */
1498 result = PyString_FromStringAndSize(NULL, len);
1499 if (result == NULL)
1500 return NULL;
1501
1502 p = PyString_AsString(result);
1503
1504 while (*str)
1505 {
1506 if (*str == '\n')
1507 *p = '\0';
1508 else
1509 *p = *str;
1510
1511 ++p;
1512 ++str;
1513 }
1514
1515 return result;
1516}
1517
Bram Moolenaardb913952012-06-29 12:54:53 +02001518 static PyObject *
1519DictionaryGetattr(PyObject *self, char *name)
1520{
Bram Moolenaar66b79852012-09-21 14:00:35 +02001521 DictionaryObject *this = ((DictionaryObject *) (self));
1522
1523 if (strcmp(name, "locked") == 0)
1524 return PyInt_FromLong(this->dict->dv_lock);
1525 else if (strcmp(name, "scope") == 0)
1526 return PyInt_FromLong(this->dict->dv_scope);
Bram Moolenaardd8aca62013-05-29 22:36:10 +02001527 else if (strcmp(name, "__members__") == 0)
1528 return ObjectDir(NULL, DictionaryAttrs);
Bram Moolenaar66b79852012-09-21 14:00:35 +02001529
Bram Moolenaardb913952012-06-29 12:54:53 +02001530 return Py_FindMethod(DictionaryMethods, self, name);
1531}
1532
Bram Moolenaardb913952012-06-29 12:54:53 +02001533 static PyObject *
1534ListGetattr(PyObject *self, char *name)
1535{
Bram Moolenaar66b79852012-09-21 14:00:35 +02001536 if (strcmp(name, "locked") == 0)
1537 return PyInt_FromLong(((ListObject *)(self))->list->lv_lock);
Bram Moolenaardd8aca62013-05-29 22:36:10 +02001538 else if (strcmp(name, "__members__") == 0)
1539 return ObjectDir(NULL, ListAttrs);
Bram Moolenaar66b79852012-09-21 14:00:35 +02001540
Bram Moolenaardb913952012-06-29 12:54:53 +02001541 return Py_FindMethod(ListMethods, self, name);
1542}
1543
Bram Moolenaardb913952012-06-29 12:54:53 +02001544 static PyObject *
1545FunctionGetattr(PyObject *self, char *name)
1546{
Bram Moolenaar8110a092016-04-14 15:56:09 +02001547 PyObject *r;
Bram Moolenaardb913952012-06-29 12:54:53 +02001548
Bram Moolenaar8110a092016-04-14 15:56:09 +02001549 r = FunctionAttr((FunctionObject *)(self), name);
1550
1551 if (r || PyErr_Occurred())
1552 return r;
Bram Moolenaardb913952012-06-29 12:54:53 +02001553 else
1554 return Py_FindMethod(FunctionMethods, self, name);
1555}
1556
1557 void
1558do_pyeval (char_u *str, typval_T *rettv)
1559{
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02001560 DoPyCommand((char *) str,
1561 (rangeinitializer) init_range_eval,
1562 (runner) run_eval,
1563 (void *) rettv);
Bram Moolenaarc4f83382017-07-07 14:50:44 +02001564 switch (rettv->v_type)
Bram Moolenaardb913952012-06-29 12:54:53 +02001565 {
1566 case VAR_DICT: ++rettv->vval.v_dict->dv_refcount; break;
1567 case VAR_LIST: ++rettv->vval.v_list->lv_refcount; break;
1568 case VAR_FUNC: func_ref(rettv->vval.v_string); break;
Bram Moolenaar1735bc92016-03-14 23:05:14 +01001569 case VAR_PARTIAL: ++rettv->vval.v_partial->pt_refcount; break;
Bram Moolenaar77fceb82012-09-05 18:54:48 +02001570 case VAR_UNKNOWN:
1571 rettv->v_type = VAR_NUMBER;
1572 rettv->vval.v_number = 0;
1573 break;
Bram Moolenaar81e7a9c2016-02-06 19:57:20 +01001574 case VAR_NUMBER:
1575 case VAR_STRING:
1576 case VAR_FLOAT:
Bram Moolenaar81e7a9c2016-02-06 19:57:20 +01001577 case VAR_SPECIAL:
Bram Moolenaareba6d8c2016-02-07 19:25:51 +01001578 case VAR_JOB:
Bram Moolenaar77073442016-02-13 23:23:53 +01001579 case VAR_CHANNEL:
Bram Moolenaar6e5ea8d2019-01-12 22:47:31 +01001580 case VAR_BLOB:
Bram Moolenaar81e7a9c2016-02-06 19:57:20 +01001581 break;
Bram Moolenaardb913952012-06-29 12:54:53 +02001582 }
1583}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584
1585/* Don't generate a prototype for the next function, it generates an error on
1586 * newer Python versions. */
1587#if PYTHON_API_VERSION < 1007 /* Python 1.4 */ && !defined(PROTO)
1588
1589 char *
1590Py_GetProgramName(void)
1591{
1592 return "vim";
1593}
1594#endif /* Python 1.4 */
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001595
Bram Moolenaar2459a5e2015-02-03 12:55:18 +01001596 int
Bram Moolenaardb913952012-06-29 12:54:53 +02001597set_ref_in_python (int copyID)
1598{
Bram Moolenaar2459a5e2015-02-03 12:55:18 +01001599 return set_ref_in_py(copyID);
Bram Moolenaardb913952012-06-29 12:54:53 +02001600}