blob: 633481a06c12e3cda9aa8b44d591067e4e417494 [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
24/* Python.h defines _POSIX_THREADS itself (if needed) */
25#ifdef _POSIX_THREADS
26# undef _POSIX_THREADS
27#endif
28
Bram Moolenaar860cae12010-06-05 23:22:07 +020029#if defined(_WIN32) && defined(HAVE_FCNTL_H)
Bram Moolenaar071d4272004-06-13 20:20:40 +000030# undef HAVE_FCNTL_H
31#endif
32
33#ifdef _DEBUG
34# undef _DEBUG
35#endif
36
37#ifdef HAVE_STDARG_H
38# undef HAVE_STDARG_H /* Python's config.h defines it as well. */
39#endif
Bram Moolenaarbe2c9ae2009-11-11 14:06:59 +000040#ifdef _POSIX_C_SOURCE
41# undef _POSIX_C_SOURCE /* pyconfig.h defines it as well. */
42#endif
43#ifdef _XOPEN_SOURCE
44# undef _XOPEN_SOURCE /* pyconfig.h defines it as well. */
45#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000046
47#include <Python.h>
48#if defined(MACOS) && !defined(MACOS_X_UNIX)
49# include "macglue.h"
50# include <CodeFragments.h>
51#endif
52#undef main /* Defined in python.h - aargh */
53#undef HAVE_FCNTL_H /* Clash with os_win32.h */
54
Bram Moolenaare8cdcef2012-09-12 20:21:43 +020055#if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02050000
56# define PY_SSIZE_T_CLEAN
57#endif
58
Bram Moolenaardb913952012-06-29 12:54:53 +020059#define PyBytes_FromString PyString_FromString
Bram Moolenaar335e0b62013-04-24 13:47:45 +020060#define PyBytes_Check PyString_Check
Bram Moolenaardb913952012-06-29 12:54:53 +020061
Bram Moolenaar19e60942011-06-19 00:27:51 +020062/* No-op conversion functions, use with care! */
63#define PyString_AsBytes(obj) (obj)
64#define PyString_FreeBytes(obj)
65
Bram Moolenaar071d4272004-06-13 20:20:40 +000066#if !defined(FEAT_PYTHON) && defined(PROTO)
67/* Use this to be able to generate prototypes without python being used. */
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +000068# define PyObject Py_ssize_t
69# define PyThreadState Py_ssize_t
70# define PyTypeObject Py_ssize_t
71struct PyMethodDef { Py_ssize_t a; };
72# define PySequenceMethods Py_ssize_t
Bram Moolenaar071d4272004-06-13 20:20:40 +000073#endif
74
Bram Moolenaar2afa3232012-06-29 16:28:28 +020075#if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
76# define PY_USE_CAPSULE
77#endif
78
Bram Moolenaar2c45e942008-06-04 11:35:26 +000079#if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02050000
80# define PyInt Py_ssize_t
81# define PyInquiry lenfunc
82# define PyIntArgFunc ssizeargfunc
83# define PyIntIntArgFunc ssizessizeargfunc
84# define PyIntObjArgProc ssizeobjargproc
85# define PyIntIntObjArgProc ssizessizeobjargproc
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +000086# define Py_ssize_t_fmt "n"
Bram Moolenaar2c45e942008-06-04 11:35:26 +000087#else
88# define PyInt int
Bram Moolenaar4d1da492013-04-24 13:39:15 +020089# define lenfunc inquiry
Bram Moolenaar2c45e942008-06-04 11:35:26 +000090# define PyInquiry inquiry
91# define PyIntArgFunc intargfunc
92# define PyIntIntArgFunc intintargfunc
93# define PyIntObjArgProc intobjargproc
94# define PyIntIntObjArgProc intintobjargproc
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +000095# define Py_ssize_t_fmt "i"
Bram Moolenaar2c45e942008-06-04 11:35:26 +000096#endif
97
Bram Moolenaar071d4272004-06-13 20:20:40 +000098/* Parser flags */
99#define single_input 256
100#define file_input 257
101#define eval_input 258
102
103#if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x020300F0
104 /* Python 2.3: can invoke ":python" recursively. */
105# define PY_CAN_RECURSE
106#endif
107
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200108# if defined(DYNAMIC_PYTHON) || defined(PROTO)
109# ifndef DYNAMIC_PYTHON
110# define HINSTANCE long_u /* for generating prototypes */
111# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000112
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200113# ifndef WIN3264
114# include <dlfcn.h>
115# define FARPROC void*
116# define HINSTANCE void*
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100117# if defined(PY_NO_RTLD_GLOBAL) && defined(PY3_NO_RTLD_GLOBAL)
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200118# define load_dll(n) dlopen((n), RTLD_LAZY)
119# else
120# define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL)
121# endif
122# define close_dll dlclose
123# define symbol_from_dll dlsym
124# else
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200125# define load_dll vimLoadLib
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200126# define close_dll FreeLibrary
127# define symbol_from_dll GetProcAddress
128# endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200129
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000130/* This makes if_python.c compile without warnings against Python 2.5
131 * on Win32 and Win64. */
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200132# undef PyRun_SimpleString
Bram Moolenaardb913952012-06-29 12:54:53 +0200133# undef PyRun_String
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200134# undef PyArg_Parse
135# undef PyArg_ParseTuple
136# undef Py_BuildValue
137# undef Py_InitModule4
138# undef Py_InitModule4_64
Bram Moolenaardb913952012-06-29 12:54:53 +0200139# undef PyObject_CallMethod
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000140
Bram Moolenaar071d4272004-06-13 20:20:40 +0000141/*
142 * Wrapper defines
143 */
144# define PyArg_Parse dll_PyArg_Parse
145# define PyArg_ParseTuple dll_PyArg_ParseTuple
Bram Moolenaar19e60942011-06-19 00:27:51 +0200146# define PyMem_Free dll_PyMem_Free
Bram Moolenaardb913952012-06-29 12:54:53 +0200147# define PyMem_Malloc dll_PyMem_Malloc
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148# define PyDict_SetItemString dll_PyDict_SetItemString
149# define PyErr_BadArgument dll_PyErr_BadArgument
Bram Moolenaard5f729c2013-05-15 16:04:40 +0200150# define PyErr_NewException dll_PyErr_NewException
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151# define PyErr_Clear dll_PyErr_Clear
Bram Moolenaar4d369872013-02-20 16:09:43 +0100152# define PyErr_PrintEx dll_PyErr_PrintEx
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153# define PyErr_NoMemory dll_PyErr_NoMemory
154# define PyErr_Occurred dll_PyErr_Occurred
155# define PyErr_SetNone dll_PyErr_SetNone
156# define PyErr_SetString dll_PyErr_SetString
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200157# define PyErr_SetObject dll_PyErr_SetObject
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158# define PyEval_InitThreads dll_PyEval_InitThreads
159# define PyEval_RestoreThread dll_PyEval_RestoreThread
160# define PyEval_SaveThread dll_PyEval_SaveThread
161# ifdef PY_CAN_RECURSE
162# define PyGILState_Ensure dll_PyGILState_Ensure
163# define PyGILState_Release dll_PyGILState_Release
164# endif
165# define PyInt_AsLong dll_PyInt_AsLong
166# define PyInt_FromLong dll_PyInt_FromLong
Bram Moolenaardb913952012-06-29 12:54:53 +0200167# define PyLong_AsLong dll_PyLong_AsLong
168# define PyLong_FromLong dll_PyLong_FromLong
Bram Moolenaar66b79852012-09-21 14:00:35 +0200169# define PyBool_Type (*dll_PyBool_Type)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170# define PyInt_Type (*dll_PyInt_Type)
Bram Moolenaardb913952012-06-29 12:54:53 +0200171# define PyLong_Type (*dll_PyLong_Type)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172# define PyList_GetItem dll_PyList_GetItem
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000173# define PyList_Append dll_PyList_Append
Bram Moolenaar071d4272004-06-13 20:20:40 +0000174# define PyList_New dll_PyList_New
175# define PyList_SetItem dll_PyList_SetItem
176# define PyList_Size dll_PyList_Size
177# define PyList_Type (*dll_PyList_Type)
Bram Moolenaardb913952012-06-29 12:54:53 +0200178# define PySequence_Check dll_PySequence_Check
179# define PySequence_Size dll_PySequence_Size
180# define PySequence_GetItem dll_PySequence_GetItem
181# define PyTuple_Size dll_PyTuple_Size
182# define PyTuple_GetItem dll_PyTuple_GetItem
183# define PyTuple_Type (*dll_PyTuple_Type)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184# define PyImport_ImportModule dll_PyImport_ImportModule
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000185# define PyDict_New dll_PyDict_New
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186# define PyDict_GetItemString dll_PyDict_GetItemString
Bram Moolenaardb913952012-06-29 12:54:53 +0200187# define PyDict_Next dll_PyDict_Next
188# ifdef PyMapping_Items
189# define PY_NO_MAPPING_ITEMS
190# else
191# define PyMapping_Items dll_PyMapping_Items
192# endif
193# define PyObject_CallMethod dll_PyObject_CallMethod
194# define PyMapping_Check dll_PyMapping_Check
195# define PyIter_Next dll_PyIter_Next
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196# define PyModule_GetDict dll_PyModule_GetDict
197# define PyRun_SimpleString dll_PyRun_SimpleString
Bram Moolenaardb913952012-06-29 12:54:53 +0200198# define PyRun_String dll_PyRun_String
Bram Moolenaard620aa92013-05-17 16:40:06 +0200199# define PyObject_GetAttrString dll_PyObject_GetAttrString
200# define PyObject_SetAttrString dll_PyObject_SetAttrString
201# define PyObject_CallFunctionObjArgs dll_PyObject_CallFunctionObjArgs
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202# define PyString_AsString dll_PyString_AsString
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200203# define PyString_AsStringAndSize dll_PyString_AsStringAndSize
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204# define PyString_FromString dll_PyString_FromString
205# define PyString_FromStringAndSize dll_PyString_FromStringAndSize
206# define PyString_Size dll_PyString_Size
207# define PyString_Type (*dll_PyString_Type)
Bram Moolenaardb913952012-06-29 12:54:53 +0200208# define PyUnicode_Type (*dll_PyUnicode_Type)
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200209# undef PyUnicode_AsEncodedString
210# define PyUnicode_AsEncodedString py_PyUnicode_AsEncodedString
Bram Moolenaardb913952012-06-29 12:54:53 +0200211# define PyFloat_AsDouble dll_PyFloat_AsDouble
212# define PyFloat_FromDouble dll_PyFloat_FromDouble
213# define PyFloat_Type (*dll_PyFloat_Type)
214# define PyImport_AddModule (*dll_PyImport_AddModule)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215# define PySys_SetObject dll_PySys_SetObject
216# define PySys_SetArgv dll_PySys_SetArgv
217# define PyType_Type (*dll_PyType_Type)
Bram Moolenaar30fec7b2011-03-26 18:32:05 +0100218# define PyType_Ready (*dll_PyType_Ready)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219# define Py_BuildValue dll_Py_BuildValue
220# define Py_FindMethod dll_Py_FindMethod
221# define Py_InitModule4 dll_Py_InitModule4
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100222# define Py_SetPythonHome dll_Py_SetPythonHome
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223# define Py_Initialize dll_Py_Initialize
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000224# define Py_Finalize dll_Py_Finalize
225# define Py_IsInitialized dll_Py_IsInitialized
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226# define _PyObject_New dll__PyObject_New
Bram Moolenaar774267b2013-05-21 20:51:59 +0200227# define _PyObject_GC_New dll__PyObject_GC_New
228# define PyObject_GC_Del dll_PyObject_GC_Del
229# define PyObject_GC_UnTrack dll_PyObject_GC_UnTrack
Bram Moolenaare7211222012-06-30 13:21:08 +0200230# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
231# define _PyObject_NextNotImplemented (*dll__PyObject_NextNotImplemented)
232# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233# define _Py_NoneStruct (*dll__Py_NoneStruct)
Bram Moolenaar66b79852012-09-21 14:00:35 +0200234# define _Py_ZeroStruct (*dll__Py_ZeroStruct)
235# define _Py_TrueStruct (*dll__Py_TrueStruct)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236# define PyObject_Init dll__PyObject_Init
Bram Moolenaardb913952012-06-29 12:54:53 +0200237# define PyObject_GetIter dll_PyObject_GetIter
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200238# define PyObject_IsTrue dll_PyObject_IsTrue
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
240# define PyType_IsSubtype dll_PyType_IsSubtype
241# endif
242# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
243# define PyObject_Malloc dll_PyObject_Malloc
244# define PyObject_Free dll_PyObject_Free
245# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200246# ifdef PY_USE_CAPSULE
247# define PyCapsule_New dll_PyCapsule_New
248# define PyCapsule_GetPointer dll_PyCapsule_GetPointer
249# else
250# define PyCObject_FromVoidPtr dll_PyCObject_FromVoidPtr
251# define PyCObject_AsVoidPtr dll_PyCObject_AsVoidPtr
252# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253
254/*
255 * Pointers for dynamic link
256 */
257static int(*dll_PyArg_Parse)(PyObject *, char *, ...);
258static int(*dll_PyArg_ParseTuple)(PyObject *, char *, ...);
Bram Moolenaar19e60942011-06-19 00:27:51 +0200259static int(*dll_PyMem_Free)(void *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200260static void* (*dll_PyMem_Malloc)(size_t);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261static int(*dll_PyDict_SetItemString)(PyObject *dp, char *key, PyObject *item);
262static int(*dll_PyErr_BadArgument)(void);
Bram Moolenaard5f729c2013-05-15 16:04:40 +0200263static PyObject *(*dll_PyErr_NewException)(char *, PyObject *, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264static void(*dll_PyErr_Clear)(void);
Bram Moolenaar4d369872013-02-20 16:09:43 +0100265static void(*dll_PyErr_PrintEx)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266static PyObject*(*dll_PyErr_NoMemory)(void);
267static PyObject*(*dll_PyErr_Occurred)(void);
268static void(*dll_PyErr_SetNone)(PyObject *);
269static void(*dll_PyErr_SetString)(PyObject *, const char *);
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200270static void(*dll_PyErr_SetObject)(PyObject *, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271static void(*dll_PyEval_InitThreads)(void);
272static void(*dll_PyEval_RestoreThread)(PyThreadState *);
273static PyThreadState*(*dll_PyEval_SaveThread)(void);
274# ifdef PY_CAN_RECURSE
275static PyGILState_STATE (*dll_PyGILState_Ensure)(void);
276static void (*dll_PyGILState_Release)(PyGILState_STATE);
Bram Moolenaardb913952012-06-29 12:54:53 +0200277# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278static long(*dll_PyInt_AsLong)(PyObject *);
279static PyObject*(*dll_PyInt_FromLong)(long);
Bram Moolenaardb913952012-06-29 12:54:53 +0200280static long(*dll_PyLong_AsLong)(PyObject *);
281static PyObject*(*dll_PyLong_FromLong)(long);
Bram Moolenaar66b79852012-09-21 14:00:35 +0200282static PyTypeObject* dll_PyBool_Type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283static PyTypeObject* dll_PyInt_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200284static PyTypeObject* dll_PyLong_Type;
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000285static PyObject*(*dll_PyList_GetItem)(PyObject *, PyInt);
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000286static PyObject*(*dll_PyList_Append)(PyObject *, PyObject *);
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000287static PyObject*(*dll_PyList_New)(PyInt size);
288static int(*dll_PyList_SetItem)(PyObject *, PyInt, PyObject *);
289static PyInt(*dll_PyList_Size)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290static PyTypeObject* dll_PyList_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200291static int (*dll_PySequence_Check)(PyObject *);
292static PyInt(*dll_PySequence_Size)(PyObject *);
293static PyObject*(*dll_PySequence_GetItem)(PyObject *, PyInt);
294static PyInt(*dll_PyTuple_Size)(PyObject *);
295static PyObject*(*dll_PyTuple_GetItem)(PyObject *, PyInt);
296static PyTypeObject* dll_PyTuple_Type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297static PyObject*(*dll_PyImport_ImportModule)(const char *);
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000298static PyObject*(*dll_PyDict_New)(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299static PyObject*(*dll_PyDict_GetItemString)(PyObject *, const char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200300static int (*dll_PyDict_Next)(PyObject *, Py_ssize_t *, PyObject **, PyObject **);
301# ifndef PY_NO_MAPPING_ITEMS
302static PyObject* (*dll_PyMapping_Items)(PyObject *);
303# endif
304static PyObject* (*dll_PyObject_CallMethod)(PyObject *, char *, PyObject *);
305static int (*dll_PyMapping_Check)(PyObject *);
306static PyObject* (*dll_PyIter_Next)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307static PyObject*(*dll_PyModule_GetDict)(PyObject *);
308static int(*dll_PyRun_SimpleString)(char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200309static PyObject *(*dll_PyRun_String)(char *, int, PyObject *, PyObject *);
Bram Moolenaard620aa92013-05-17 16:40:06 +0200310static PyObject* (*dll_PyObject_GetAttrString)(PyObject *, const char *);
311static PyObject* (*dll_PyObject_SetAttrString)(PyObject *, const char *, PyObject *);
312static PyObject* (*dll_PyObject_CallFunctionObjArgs)(PyObject *, ...);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313static char*(*dll_PyString_AsString)(PyObject *);
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200314static int(*dll_PyString_AsStringAndSize)(PyObject *, char **, int *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315static PyObject*(*dll_PyString_FromString)(const char *);
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000316static PyObject*(*dll_PyString_FromStringAndSize)(const char *, PyInt);
317static PyInt(*dll_PyString_Size)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000318static PyTypeObject* dll_PyString_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200319static PyTypeObject* dll_PyUnicode_Type;
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200320static PyObject *(*py_PyUnicode_AsEncodedString)(PyObject *, char *, char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200321static double(*dll_PyFloat_AsDouble)(PyObject *);
322static PyObject*(*dll_PyFloat_FromDouble)(double);
323static PyTypeObject* dll_PyFloat_Type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324static int(*dll_PySys_SetObject)(char *, PyObject *);
325static int(*dll_PySys_SetArgv)(int, char **);
326static PyTypeObject* dll_PyType_Type;
Bram Moolenaar30fec7b2011-03-26 18:32:05 +0100327static int (*dll_PyType_Ready)(PyTypeObject *type);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328static PyObject*(*dll_Py_BuildValue)(char *, ...);
329static PyObject*(*dll_Py_FindMethod)(struct PyMethodDef[], PyObject *, char *);
330static PyObject*(*dll_Py_InitModule4)(char *, struct PyMethodDef *, char *, PyObject *, int);
Bram Moolenaardb913952012-06-29 12:54:53 +0200331static PyObject*(*dll_PyImport_AddModule)(char *);
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100332static void(*dll_Py_SetPythonHome)(char *home);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333static void(*dll_Py_Initialize)(void);
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000334static void(*dll_Py_Finalize)(void);
335static int(*dll_Py_IsInitialized)(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336static PyObject*(*dll__PyObject_New)(PyTypeObject *, PyObject *);
Bram Moolenaar774267b2013-05-21 20:51:59 +0200337static PyObject*(*dll__PyObject_GC_New)(PyTypeObject *);
338static void(*dll_PyObject_GC_Del)(void *);
339static void(*dll_PyObject_GC_UnTrack)(void *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340static PyObject*(*dll__PyObject_Init)(PyObject *, PyTypeObject *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200341static PyObject* (*dll_PyObject_GetIter)(PyObject *);
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200342static int (*dll_PyObject_IsTrue)(PyObject *);
Bram Moolenaare7211222012-06-30 13:21:08 +0200343# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
Bram Moolenaardb913952012-06-29 12:54:53 +0200344static iternextfunc dll__PyObject_NextNotImplemented;
Bram Moolenaare7211222012-06-30 13:21:08 +0200345# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346static PyObject* dll__Py_NoneStruct;
Bram Moolenaar66b79852012-09-21 14:00:35 +0200347static PyObject* _Py_ZeroStruct;
348static PyObject* dll__Py_TrueStruct;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
350static int (*dll_PyType_IsSubtype)(PyTypeObject *, PyTypeObject *);
351# endif
352# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
353static void* (*dll_PyObject_Malloc)(size_t);
354static void (*dll_PyObject_Free)(void*);
355# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200356# ifdef PY_USE_CAPSULE
Bram Moolenaardb913952012-06-29 12:54:53 +0200357static PyObject* (*dll_PyCapsule_New)(void *, char *, PyCapsule_Destructor);
358static void* (*dll_PyCapsule_GetPointer)(PyObject *, char *);
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200359# else
Bram Moolenaar221d6872012-06-30 13:34:34 +0200360static PyObject* (*dll_PyCObject_FromVoidPtr)(void *cobj, void (*destr)(void *));
361static void* (*dll_PyCObject_AsVoidPtr)(PyObject *);
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200362# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363
364static HINSTANCE hinstPython = 0; /* Instance of python.dll */
365
366/* Imported exception objects */
367static PyObject *imp_PyExc_AttributeError;
368static PyObject *imp_PyExc_IndexError;
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200369static PyObject *imp_PyExc_KeyError;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370static PyObject *imp_PyExc_KeyboardInterrupt;
371static PyObject *imp_PyExc_TypeError;
372static PyObject *imp_PyExc_ValueError;
Bram Moolenaar8661b172013-05-15 15:44:28 +0200373static PyObject *imp_PyExc_RuntimeError;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374
375# define PyExc_AttributeError imp_PyExc_AttributeError
376# define PyExc_IndexError imp_PyExc_IndexError
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200377# define PyExc_KeyError imp_PyExc_KeyError
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378# define PyExc_KeyboardInterrupt imp_PyExc_KeyboardInterrupt
379# define PyExc_TypeError imp_PyExc_TypeError
380# define PyExc_ValueError imp_PyExc_ValueError
Bram Moolenaar8661b172013-05-15 15:44:28 +0200381# define PyExc_RuntimeError imp_PyExc_RuntimeError
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382
383/*
384 * Table of name to function pointer of python.
385 */
386# define PYTHON_PROC FARPROC
387static struct
388{
389 char *name;
390 PYTHON_PROC *ptr;
391} python_funcname_table[] =
392{
Bram Moolenaare8cdcef2012-09-12 20:21:43 +0200393#ifndef PY_SSIZE_T_CLEAN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394 {"PyArg_Parse", (PYTHON_PROC*)&dll_PyArg_Parse},
395 {"PyArg_ParseTuple", (PYTHON_PROC*)&dll_PyArg_ParseTuple},
Bram Moolenaare8cdcef2012-09-12 20:21:43 +0200396 {"Py_BuildValue", (PYTHON_PROC*)&dll_Py_BuildValue},
397#else
398 {"_PyArg_Parse_SizeT", (PYTHON_PROC*)&dll_PyArg_Parse},
399 {"_PyArg_ParseTuple_SizeT", (PYTHON_PROC*)&dll_PyArg_ParseTuple},
400 {"_Py_BuildValue_SizeT", (PYTHON_PROC*)&dll_Py_BuildValue},
401#endif
Bram Moolenaar19e60942011-06-19 00:27:51 +0200402 {"PyMem_Free", (PYTHON_PROC*)&dll_PyMem_Free},
Bram Moolenaardb913952012-06-29 12:54:53 +0200403 {"PyMem_Malloc", (PYTHON_PROC*)&dll_PyMem_Malloc},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404 {"PyDict_SetItemString", (PYTHON_PROC*)&dll_PyDict_SetItemString},
405 {"PyErr_BadArgument", (PYTHON_PROC*)&dll_PyErr_BadArgument},
Bram Moolenaard5f729c2013-05-15 16:04:40 +0200406 {"PyErr_NewException", (PYTHON_PROC*)&dll_PyErr_NewException},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407 {"PyErr_Clear", (PYTHON_PROC*)&dll_PyErr_Clear},
Bram Moolenaar4d369872013-02-20 16:09:43 +0100408 {"PyErr_PrintEx", (PYTHON_PROC*)&dll_PyErr_PrintEx},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409 {"PyErr_NoMemory", (PYTHON_PROC*)&dll_PyErr_NoMemory},
410 {"PyErr_Occurred", (PYTHON_PROC*)&dll_PyErr_Occurred},
411 {"PyErr_SetNone", (PYTHON_PROC*)&dll_PyErr_SetNone},
412 {"PyErr_SetString", (PYTHON_PROC*)&dll_PyErr_SetString},
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200413 {"PyErr_SetObject", (PYTHON_PROC*)&dll_PyErr_SetObject},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000414 {"PyEval_InitThreads", (PYTHON_PROC*)&dll_PyEval_InitThreads},
415 {"PyEval_RestoreThread", (PYTHON_PROC*)&dll_PyEval_RestoreThread},
416 {"PyEval_SaveThread", (PYTHON_PROC*)&dll_PyEval_SaveThread},
417# ifdef PY_CAN_RECURSE
418 {"PyGILState_Ensure", (PYTHON_PROC*)&dll_PyGILState_Ensure},
419 {"PyGILState_Release", (PYTHON_PROC*)&dll_PyGILState_Release},
420# endif
421 {"PyInt_AsLong", (PYTHON_PROC*)&dll_PyInt_AsLong},
422 {"PyInt_FromLong", (PYTHON_PROC*)&dll_PyInt_FromLong},
Bram Moolenaardb913952012-06-29 12:54:53 +0200423 {"PyLong_AsLong", (PYTHON_PROC*)&dll_PyLong_AsLong},
424 {"PyLong_FromLong", (PYTHON_PROC*)&dll_PyLong_FromLong},
Bram Moolenaar66b79852012-09-21 14:00:35 +0200425 {"PyBool_Type", (PYTHON_PROC*)&dll_PyBool_Type},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000426 {"PyInt_Type", (PYTHON_PROC*)&dll_PyInt_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200427 {"PyLong_Type", (PYTHON_PROC*)&dll_PyLong_Type},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428 {"PyList_GetItem", (PYTHON_PROC*)&dll_PyList_GetItem},
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000429 {"PyList_Append", (PYTHON_PROC*)&dll_PyList_Append},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000430 {"PyList_New", (PYTHON_PROC*)&dll_PyList_New},
431 {"PyList_SetItem", (PYTHON_PROC*)&dll_PyList_SetItem},
432 {"PyList_Size", (PYTHON_PROC*)&dll_PyList_Size},
433 {"PyList_Type", (PYTHON_PROC*)&dll_PyList_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200434 {"PySequence_GetItem", (PYTHON_PROC*)&dll_PySequence_GetItem},
435 {"PySequence_Size", (PYTHON_PROC*)&dll_PySequence_Size},
436 {"PySequence_Check", (PYTHON_PROC*)&dll_PySequence_Check},
437 {"PyTuple_GetItem", (PYTHON_PROC*)&dll_PyTuple_GetItem},
438 {"PyTuple_Size", (PYTHON_PROC*)&dll_PyTuple_Size},
439 {"PyTuple_Type", (PYTHON_PROC*)&dll_PyTuple_Type},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440 {"PyImport_ImportModule", (PYTHON_PROC*)&dll_PyImport_ImportModule},
441 {"PyDict_GetItemString", (PYTHON_PROC*)&dll_PyDict_GetItemString},
Bram Moolenaardb913952012-06-29 12:54:53 +0200442 {"PyDict_Next", (PYTHON_PROC*)&dll_PyDict_Next},
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000443 {"PyDict_New", (PYTHON_PROC*)&dll_PyDict_New},
Bram Moolenaardb913952012-06-29 12:54:53 +0200444# ifndef PY_NO_MAPPING_ITEMS
445 {"PyMapping_Items", (PYTHON_PROC*)&dll_PyMapping_Items},
446# endif
447 {"PyObject_CallMethod", (PYTHON_PROC*)&dll_PyObject_CallMethod},
448 {"PyMapping_Check", (PYTHON_PROC*)&dll_PyMapping_Check},
449 {"PyIter_Next", (PYTHON_PROC*)&dll_PyIter_Next},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450 {"PyModule_GetDict", (PYTHON_PROC*)&dll_PyModule_GetDict},
451 {"PyRun_SimpleString", (PYTHON_PROC*)&dll_PyRun_SimpleString},
Bram Moolenaardb913952012-06-29 12:54:53 +0200452 {"PyRun_String", (PYTHON_PROC*)&dll_PyRun_String},
Bram Moolenaard620aa92013-05-17 16:40:06 +0200453 {"PyObject_GetAttrString", (PYTHON_PROC*)&dll_PyObject_GetAttrString},
454 {"PyObject_SetAttrString", (PYTHON_PROC*)&dll_PyObject_SetAttrString},
455 {"PyObject_CallFunctionObjArgs", (PYTHON_PROC*)&dll_PyObject_CallFunctionObjArgs},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000456 {"PyString_AsString", (PYTHON_PROC*)&dll_PyString_AsString},
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200457 {"PyString_AsStringAndSize", (PYTHON_PROC*)&dll_PyString_AsStringAndSize},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 {"PyString_FromString", (PYTHON_PROC*)&dll_PyString_FromString},
459 {"PyString_FromStringAndSize", (PYTHON_PROC*)&dll_PyString_FromStringAndSize},
460 {"PyString_Size", (PYTHON_PROC*)&dll_PyString_Size},
461 {"PyString_Type", (PYTHON_PROC*)&dll_PyString_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200462 {"PyUnicode_Type", (PYTHON_PROC*)&dll_PyUnicode_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200463 {"PyFloat_Type", (PYTHON_PROC*)&dll_PyFloat_Type},
464 {"PyFloat_AsDouble", (PYTHON_PROC*)&dll_PyFloat_AsDouble},
465 {"PyFloat_FromDouble", (PYTHON_PROC*)&dll_PyFloat_FromDouble},
466 {"PyImport_AddModule", (PYTHON_PROC*)&dll_PyImport_AddModule},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467 {"PySys_SetObject", (PYTHON_PROC*)&dll_PySys_SetObject},
468 {"PySys_SetArgv", (PYTHON_PROC*)&dll_PySys_SetArgv},
469 {"PyType_Type", (PYTHON_PROC*)&dll_PyType_Type},
Bram Moolenaar30fec7b2011-03-26 18:32:05 +0100470 {"PyType_Ready", (PYTHON_PROC*)&dll_PyType_Ready},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471 {"Py_FindMethod", (PYTHON_PROC*)&dll_Py_FindMethod},
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200472# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02050000 \
473 && SIZEOF_SIZE_T != SIZEOF_INT
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000474 {"Py_InitModule4_64", (PYTHON_PROC*)&dll_Py_InitModule4},
475# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476 {"Py_InitModule4", (PYTHON_PROC*)&dll_Py_InitModule4},
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000477# endif
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100478 {"Py_SetPythonHome", (PYTHON_PROC*)&dll_Py_SetPythonHome},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000479 {"Py_Initialize", (PYTHON_PROC*)&dll_Py_Initialize},
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000480 {"Py_Finalize", (PYTHON_PROC*)&dll_Py_Finalize},
481 {"Py_IsInitialized", (PYTHON_PROC*)&dll_Py_IsInitialized},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482 {"_PyObject_New", (PYTHON_PROC*)&dll__PyObject_New},
Bram Moolenaar774267b2013-05-21 20:51:59 +0200483 {"_PyObject_GC_New", (PYTHON_PROC*)&dll__PyObject_GC_New},
484 {"PyObject_GC_Del", (PYTHON_PROC*)&dll_PyObject_GC_Del},
485 {"PyObject_GC_UnTrack", (PYTHON_PROC*)&dll_PyObject_GC_UnTrack},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486 {"PyObject_Init", (PYTHON_PROC*)&dll__PyObject_Init},
Bram Moolenaardb913952012-06-29 12:54:53 +0200487 {"PyObject_GetIter", (PYTHON_PROC*)&dll_PyObject_GetIter},
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200488 {"PyObject_IsTrue", (PYTHON_PROC*)&dll_PyObject_IsTrue},
Bram Moolenaare7211222012-06-30 13:21:08 +0200489# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
Bram Moolenaardb913952012-06-29 12:54:53 +0200490 {"_PyObject_NextNotImplemented", (PYTHON_PROC*)&dll__PyObject_NextNotImplemented},
Bram Moolenaare7211222012-06-30 13:21:08 +0200491# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000492 {"_Py_NoneStruct", (PYTHON_PROC*)&dll__Py_NoneStruct},
Bram Moolenaar66b79852012-09-21 14:00:35 +0200493 {"_Py_ZeroStruct", (PYTHON_PROC*)&dll__Py_ZeroStruct},
494 {"_Py_TrueStruct", (PYTHON_PROC*)&dll__Py_TrueStruct},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000495# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
496 {"PyType_IsSubtype", (PYTHON_PROC*)&dll_PyType_IsSubtype},
497# endif
498# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
499 {"PyObject_Malloc", (PYTHON_PROC*)&dll_PyObject_Malloc},
500 {"PyObject_Free", (PYTHON_PROC*)&dll_PyObject_Free},
501# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200502# ifdef PY_USE_CAPSULE
Bram Moolenaardb913952012-06-29 12:54:53 +0200503 {"PyCapsule_New", (PYTHON_PROC*)&dll_PyCapsule_New},
504 {"PyCapsule_GetPointer", (PYTHON_PROC*)&dll_PyCapsule_GetPointer},
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200505# else
506 {"PyCObject_FromVoidPtr", (PYTHON_PROC*)&dll_PyCObject_FromVoidPtr},
507 {"PyCObject_AsVoidPtr", (PYTHON_PROC*)&dll_PyCObject_AsVoidPtr},
508# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509 {"", NULL},
510};
511
512/*
513 * Free python.dll
514 */
515 static void
516end_dynamic_python(void)
517{
518 if (hinstPython)
519 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200520 close_dll(hinstPython);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521 hinstPython = 0;
522 }
523}
524
525/*
526 * Load library and get all pointers.
527 * Parameter 'libname' provides name of DLL.
528 * Return OK or FAIL.
529 */
530 static int
531python_runtime_link_init(char *libname, int verbose)
532{
533 int i;
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200534 void *ucs_as_encoded_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100536#if !(defined(PY_NO_RTLD_GLOBAL) && defined(PY3_NO_RTLD_GLOBAL)) && defined(UNIX) && defined(FEAT_PYTHON3)
Bram Moolenaarb744b2f2010-08-13 16:22:57 +0200537 /* Can't have Python and Python3 loaded at the same time.
538 * It cause a crash, because RTLD_GLOBAL is needed for
539 * standard C extension libraries of one or both python versions. */
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200540 if (python3_loaded())
541 {
Bram Moolenaar9dc93ae2011-08-28 16:00:19 +0200542 if (verbose)
543 EMSG(_("E836: This Vim cannot execute :python after using :py3"));
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200544 return FAIL;
545 }
546#endif
547
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548 if (hinstPython)
549 return OK;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200550 hinstPython = load_dll(libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 if (!hinstPython)
552 {
553 if (verbose)
554 EMSG2(_(e_loadlib), libname);
555 return FAIL;
556 }
557
558 for (i = 0; python_funcname_table[i].ptr; ++i)
559 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200560 if ((*python_funcname_table[i].ptr = symbol_from_dll(hinstPython,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561 python_funcname_table[i].name)) == NULL)
562 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200563 close_dll(hinstPython);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564 hinstPython = 0;
565 if (verbose)
566 EMSG2(_(e_loadfunc), python_funcname_table[i].name);
567 return FAIL;
568 }
569 }
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200570
571 /* Load unicode functions separately as only the ucs2 or the ucs4 functions
572 * will be present in the library. */
573 ucs_as_encoded_string = symbol_from_dll(hinstPython,
574 "PyUnicodeUCS2_AsEncodedString");
575 if (ucs_as_encoded_string == NULL)
576 ucs_as_encoded_string = symbol_from_dll(hinstPython,
577 "PyUnicodeUCS4_AsEncodedString");
578 if (ucs_as_encoded_string != NULL)
579 py_PyUnicode_AsEncodedString = ucs_as_encoded_string;
580 else
581 {
582 close_dll(hinstPython);
583 hinstPython = 0;
584 if (verbose)
585 EMSG2(_(e_loadfunc), "PyUnicode_UCSX_*");
586 return FAIL;
587 }
588
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589 return OK;
590}
591
592/*
593 * If python is enabled (there is installed python on Windows system) return
594 * TRUE, else FALSE.
595 */
596 int
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000597python_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000598{
599 return python_runtime_link_init(DYNAMIC_PYTHON_DLL, verbose) == OK;
600}
601
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200602/*
603 * Load the standard Python exceptions - don't import the symbols from the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000604 * DLL, as this can cause errors (importing data symbols is not reliable).
605 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000606 static void
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200607get_exceptions(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608{
609 PyObject *exmod = PyImport_ImportModule("exceptions");
610 PyObject *exdict = PyModule_GetDict(exmod);
611 imp_PyExc_AttributeError = PyDict_GetItemString(exdict, "AttributeError");
612 imp_PyExc_IndexError = PyDict_GetItemString(exdict, "IndexError");
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200613 imp_PyExc_KeyError = PyDict_GetItemString(exdict, "KeyError");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614 imp_PyExc_KeyboardInterrupt = PyDict_GetItemString(exdict, "KeyboardInterrupt");
615 imp_PyExc_TypeError = PyDict_GetItemString(exdict, "TypeError");
616 imp_PyExc_ValueError = PyDict_GetItemString(exdict, "ValueError");
Bram Moolenaar8661b172013-05-15 15:44:28 +0200617 imp_PyExc_RuntimeError = PyDict_GetItemString(exdict, "RuntimeError");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618 Py_XINCREF(imp_PyExc_AttributeError);
619 Py_XINCREF(imp_PyExc_IndexError);
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200620 Py_XINCREF(imp_PyExc_KeyError);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000621 Py_XINCREF(imp_PyExc_KeyboardInterrupt);
622 Py_XINCREF(imp_PyExc_TypeError);
623 Py_XINCREF(imp_PyExc_ValueError);
Bram Moolenaar8661b172013-05-15 15:44:28 +0200624 Py_XINCREF(imp_PyExc_RuntimeError);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000625 Py_XDECREF(exmod);
626}
627#endif /* DYNAMIC_PYTHON */
628
Bram Moolenaardb913952012-06-29 12:54:53 +0200629static int initialised = 0;
630#define PYINITIALISED initialised
631
Bram Moolenaardb913952012-06-29 12:54:53 +0200632#define DICTKEY_GET(err) \
633 if (!PyString_Check(keyObject)) \
634 { \
635 PyErr_SetString(PyExc_TypeError, _("only string keys are allowed")); \
636 return err; \
637 } \
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200638 if (PyString_AsStringAndSize(keyObject, (char **) &key, NULL) == -1) \
639 return err;
640
Bram Moolenaardb913952012-06-29 12:54:53 +0200641#define DICTKEY_UNREF
642#define DICTKEY_DECL
643
Bram Moolenaar774267b2013-05-21 20:51:59 +0200644#define DESTRUCTOR_FINISH(self) Py_TYPE(self)->tp_free((PyObject*)self);
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200645
Bram Moolenaar971db462013-05-12 18:44:48 +0200646#define WIN_PYTHON_REF(win) win->w_python_ref
647#define BUF_PYTHON_REF(buf) buf->b_python_ref
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200648#define TAB_PYTHON_REF(tab) tab->tp_python_ref
Bram Moolenaar971db462013-05-12 18:44:48 +0200649
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200650static PyObject *OutputGetattr(PyObject *, char *);
651static PyObject *BufferGetattr(PyObject *, char *);
652static PyObject *WindowGetattr(PyObject *, char *);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200653static PyObject *TabPageGetattr(PyObject *, char *);
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200654static PyObject *RangeGetattr(PyObject *, char *);
655static PyObject *DictionaryGetattr(PyObject *, char*);
656static PyObject *ListGetattr(PyObject *, char *);
657static PyObject *FunctionGetattr(PyObject *, char *);
658
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200659/*
660 * Include the code shared with if_python3.c
661 */
662#include "if_py_both.h"
663
664
Bram Moolenaar071d4272004-06-13 20:20:40 +0000665/******************************************************
666 * Internal function prototypes.
667 */
668
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669static int PythonMod_Init(void);
670
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671
672/******************************************************
673 * 1. Python interpreter main program.
674 */
675
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676#if PYTHON_API_VERSION < 1007 /* Python 1.4 */
677typedef PyObject PyThreadState;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000678#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679
Bram Moolenaar71700b82013-05-15 17:49:05 +0200680#ifndef PY_CAN_RECURSE
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000681static PyThreadState *saved_python_thread = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682
683/*
684 * Suspend a thread of the Python interpreter, other threads are allowed to
685 * run.
686 */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000687 static void
688Python_SaveThread(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000689{
690 saved_python_thread = PyEval_SaveThread();
691}
692
693/*
694 * Restore a thread of the Python interpreter, waits for other threads to
695 * block.
696 */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000697 static void
698Python_RestoreThread(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699{
700 PyEval_RestoreThread(saved_python_thread);
701 saved_python_thread = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000702}
Bram Moolenaar71700b82013-05-15 17:49:05 +0200703#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704
Bram Moolenaar071d4272004-06-13 20:20:40 +0000705 void
706python_end()
707{
Bram Moolenaara5792f52005-11-23 21:25:05 +0000708 static int recurse = 0;
709
710 /* If a crash occurs while doing this, don't try again. */
711 if (recurse != 0)
712 return;
713
714 ++recurse;
715
Bram Moolenaar071d4272004-06-13 20:20:40 +0000716#ifdef DYNAMIC_PYTHON
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000717 if (hinstPython && Py_IsInitialized())
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000718 {
Bram Moolenaar71700b82013-05-15 17:49:05 +0200719# ifdef PY_CAN_RECURSE
720 PyGILState_Ensure();
721# else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000722 Python_RestoreThread(); /* enter python */
Bram Moolenaar71700b82013-05-15 17:49:05 +0200723# endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000724 Py_Finalize();
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000725 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726 end_dynamic_python();
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000727#else
728 if (Py_IsInitialized())
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000729 {
Bram Moolenaar71700b82013-05-15 17:49:05 +0200730# ifdef PY_CAN_RECURSE
731 PyGILState_Ensure();
732# else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000733 Python_RestoreThread(); /* enter python */
Bram Moolenaar71700b82013-05-15 17:49:05 +0200734# endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000735 Py_Finalize();
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000736 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000737#endif
Bram Moolenaara5792f52005-11-23 21:25:05 +0000738
739 --recurse;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740}
741
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200742#if (defined(DYNAMIC_PYTHON) && defined(FEAT_PYTHON3)) || defined(PROTO)
743 int
744python_loaded()
745{
746 return (hinstPython != 0);
747}
748#endif
749
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 static int
751Python_Init(void)
752{
753 if (!initialised)
754 {
755#ifdef DYNAMIC_PYTHON
756 if (!python_enabled(TRUE))
757 {
758 EMSG(_("E263: Sorry, this command is disabled, the Python library could not be loaded."));
759 goto fail;
760 }
761#endif
762
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100763#ifdef PYTHON_HOME
764 Py_SetPythonHome(PYTHON_HOME);
765#endif
766
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200767 init_structs();
768
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769#if !defined(MACOS) || defined(MACOS_X_UNIX)
770 Py_Initialize();
771#else
772 PyMac_Initialize();
773#endif
Bram Moolenaar02366252013-01-30 11:44:39 +0100774 /* Initialise threads, and below save the state using
Bram Moolenaar76d711c2013-02-13 14:17:08 +0100775 * PyEval_SaveThread. Without the call to PyEval_SaveThread, thread
Bram Moolenaar02366252013-01-30 11:44:39 +0100776 * specific state (such as the system trace hook), will be lost
777 * between invocations of Python code. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778 PyEval_InitThreads();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779#ifdef DYNAMIC_PYTHON
780 get_exceptions();
781#endif
782
Bram Moolenaar1dc28782013-05-21 19:11:01 +0200783 if (PythonIO_Init_io())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 goto fail;
785
786 if (PythonMod_Init())
787 goto fail;
788
Bram Moolenaardb913952012-06-29 12:54:53 +0200789 globals = PyModule_GetDict(PyImport_AddModule("__main__"));
790
Bram Moolenaar9774ecc2008-11-20 10:04:53 +0000791 /* Remove the element from sys.path that was added because of our
792 * argv[0] value in PythonMod_Init(). Previously we used an empty
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200793 * string, but depending on the OS we then get an empty entry or
Bram Moolenaar9774ecc2008-11-20 10:04:53 +0000794 * the current directory in sys.path. */
795 PyRun_SimpleString("import sys; sys.path = filter(lambda x: x != '/must>not&exist', sys.path)");
796
Bram Moolenaar76d711c2013-02-13 14:17:08 +0100797 /* lock is created and acquired in PyEval_InitThreads() and thread
798 * state is created in Py_Initialize()
799 * there _PyGILState_NoteThreadState() also sets gilcounter to 1
800 * (python must have threads enabled!)
801 * so the following does both: unlock GIL and save thread state in TLS
802 * without deleting thread state
803 */
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200804#ifndef PY_CAN_RECURSE
805 saved_python_thread =
806#endif
807 PyEval_SaveThread();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808
809 initialised = 1;
810 }
811
812 return 0;
813
814fail:
815 /* We call PythonIO_Flush() here to print any Python errors.
816 * This is OK, as it is possible to call this function even
Bram Moolenaar1dc28782013-05-21 19:11:01 +0200817 * if PythonIO_Init_io() has not completed successfully (it will
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818 * not do anything in this case).
819 */
820 PythonIO_Flush();
821 return -1;
822}
823
824/*
825 * External interface
826 */
827 static void
Bram Moolenaarb52f4c02013-05-21 18:19:38 +0200828DoPyCommand(const char *cmd, rangeinitializer init_range, runner run, void *arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000830#ifndef PY_CAN_RECURSE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 static int recursive = 0;
832#endif
833#if defined(MACOS) && !defined(MACOS_X_UNIX)
834 GrafPtr oldPort;
835#endif
836#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
837 char *saved_locale;
838#endif
Bram Moolenaar71700b82013-05-15 17:49:05 +0200839#ifdef PY_CAN_RECURSE
840 PyGILState_STATE pygilstate;
841#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842
843#ifndef PY_CAN_RECURSE
844 if (recursive)
845 {
846 EMSG(_("E659: Cannot invoke Python recursively"));
847 return;
848 }
849 ++recursive;
850#endif
851
852#if defined(MACOS) && !defined(MACOS_X_UNIX)
853 GetPort(&oldPort);
854 /* Check if the Python library is available */
855 if ((Ptr)PyMac_Initialize == (Ptr)kUnresolvedCFragSymbolAddress)
856 goto theend;
857#endif
858 if (Python_Init())
859 goto theend;
860
Bram Moolenaarb52f4c02013-05-21 18:19:38 +0200861 init_range(arg);
862
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863 Python_Release_Vim(); /* leave vim */
864
865#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
866 /* Python only works properly when the LC_NUMERIC locale is "C". */
867 saved_locale = setlocale(LC_NUMERIC, NULL);
868 if (saved_locale == NULL || STRCMP(saved_locale, "C") == 0)
869 saved_locale = NULL;
870 else
871 {
872 /* Need to make a copy, value may change when setting new locale. */
873 saved_locale = (char *)vim_strsave((char_u *)saved_locale);
874 (void)setlocale(LC_NUMERIC, "C");
875 }
876#endif
877
Bram Moolenaar71700b82013-05-15 17:49:05 +0200878#ifdef PY_CAN_RECURSE
879 pygilstate = PyGILState_Ensure();
880#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881 Python_RestoreThread(); /* enter python */
Bram Moolenaar71700b82013-05-15 17:49:05 +0200882#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883
Bram Moolenaarb52f4c02013-05-21 18:19:38 +0200884 run((char *) cmd, arg, &pygilstate);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000885
Bram Moolenaar71700b82013-05-15 17:49:05 +0200886#ifdef PY_CAN_RECURSE
887 PyGILState_Release(pygilstate);
888#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 Python_SaveThread(); /* leave python */
Bram Moolenaar71700b82013-05-15 17:49:05 +0200890#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891
892#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
893 if (saved_locale != NULL)
894 {
895 (void)setlocale(LC_NUMERIC, saved_locale);
896 vim_free(saved_locale);
897 }
898#endif
899
900 Python_Lock_Vim(); /* enter vim */
901 PythonIO_Flush();
902#if defined(MACOS) && !defined(MACOS_X_UNIX)
903 SetPort(oldPort);
904#endif
905
906theend:
907#ifndef PY_CAN_RECURSE
908 --recursive;
909#endif
Bram Moolenaardb913952012-06-29 12:54:53 +0200910 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000911}
912
913/*
914 * ":python"
915 */
916 void
917ex_python(exarg_T *eap)
918{
919 char_u *script;
920
921 script = script_get(eap, eap->arg);
922 if (!eap->skip)
923 {
Bram Moolenaarb52f4c02013-05-21 18:19:38 +0200924 DoPyCommand(script == NULL ? (char *) eap->arg : (char *) script,
925 (rangeinitializer) init_range_cmd,
926 (runner) run_cmd,
927 (void *) eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928 }
929 vim_free(script);
930}
931
932#define BUFFER_SIZE 1024
933
934/*
935 * ":pyfile"
936 */
937 void
938ex_pyfile(exarg_T *eap)
939{
940 static char buffer[BUFFER_SIZE];
941 const char *file = (char *)eap->arg;
942 char *p;
943
944 /* Have to do it like this. PyRun_SimpleFile requires you to pass a
945 * stdio file pointer, but Vim and the Python DLL are compiled with
946 * different options under Windows, meaning that stdio pointers aren't
947 * compatible between the two. Yuk.
948 *
949 * Put the string "execfile('file')" into buffer. But, we need to
950 * escape any backslashes or single quotes in the file name, so that
951 * Python won't mangle the file name.
952 */
953 strcpy(buffer, "execfile('");
954 p = buffer + 10; /* size of "execfile('" */
955
956 while (*file && p < buffer + (BUFFER_SIZE - 3))
957 {
958 if (*file == '\\' || *file == '\'')
959 *p++ = '\\';
960 *p++ = *file++;
961 }
962
963 /* If we didn't finish the file name, we hit a buffer overflow */
964 if (*file != '\0')
965 return;
966
967 /* Put in the terminating "')" and a null */
968 *p++ = '\'';
969 *p++ = ')';
970 *p++ = '\0';
971
972 /* Execute the file */
Bram Moolenaarb52f4c02013-05-21 18:19:38 +0200973 DoPyCommand(buffer,
974 (rangeinitializer) init_range_cmd,
975 (runner) run_cmd,
976 (void *) eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977}
978
Bram Moolenaard620aa92013-05-17 16:40:06 +0200979 void
980ex_pydo(exarg_T *eap)
981{
Bram Moolenaarb52f4c02013-05-21 18:19:38 +0200982 DoPyCommand((char *)eap->arg,
983 (rangeinitializer) init_range_cmd,
984 (runner)run_do,
985 (void *)eap);
Bram Moolenaard620aa92013-05-17 16:40:06 +0200986}
987
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988/******************************************************
989 * 2. Python output stream: writes output via [e]msg().
990 */
991
992/* Implementation functions
993 */
994
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 static PyObject *
996OutputGetattr(PyObject *self, char *name)
997{
998 if (strcmp(name, "softspace") == 0)
999 return PyInt_FromLong(((OutputObject *)(self))->softspace);
1000
1001 return Py_FindMethod(OutputMethods, self, name);
1002}
1003
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004/******************************************************
1005 * 3. Implementation of the Vim module for Python
1006 */
1007
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008/* Window type - Implementation functions
1009 * --------------------------------------
1010 */
1011
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012#define WindowType_Check(obj) ((obj)->ob_type == &WindowType)
1013
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014/* Buffer type - Implementation functions
1015 * --------------------------------------
1016 */
1017
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018#define BufferType_Check(obj) ((obj)->ob_type == &BufferType)
1019
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001020static PyInt BufferAssItem(PyObject *, PyInt, PyObject *);
1021static PyInt BufferAssSlice(PyObject *, PyInt, PyInt, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023/* Line range type - Implementation functions
1024 * --------------------------------------
1025 */
1026
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027#define RangeType_Check(obj) ((obj)->ob_type == &RangeType)
1028
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001029static PyInt RangeAssItem(PyObject *, PyInt, PyObject *);
1030static PyInt RangeAssSlice(PyObject *, PyInt, PyInt, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031
Bram Moolenaar071d4272004-06-13 20:20:40 +00001032/* Current objects type - Implementation functions
1033 * -----------------------------------------------
1034 */
1035
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036static PySequenceMethods BufferAsSeq = {
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001037 (PyInquiry) BufferLength, /* sq_length, len(x) */
Bram Moolenaar77fceb82012-09-05 18:54:48 +02001038 (binaryfunc) 0, /* BufferConcat, sq_concat, x+y */
1039 (PyIntArgFunc) 0, /* BufferRepeat, sq_repeat, x*n */
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001040 (PyIntArgFunc) BufferItem, /* sq_item, x[i] */
1041 (PyIntIntArgFunc) BufferSlice, /* sq_slice, x[i:j] */
1042 (PyIntObjArgProc) BufferAssItem, /* sq_ass_item, x[i]=v */
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001043 (PyIntIntObjArgProc) BufferAssSlice, /* sq_ass_slice, x[i:j]=v */
1044 (objobjproc) 0,
1045#if PY_MAJOR_VERSION >= 2
1046 (binaryfunc) 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 0,
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001048#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049};
1050
1051/* Buffer object - Implementation
1052 */
1053
1054 static PyObject *
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055BufferGetattr(PyObject *self, char *name)
1056{
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001057 PyObject *r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001059 if (CheckBuffer((BufferObject *)(self)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 return NULL;
1061
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001062 r = BufferAttr((BufferObject *)(self), name);
1063 if (r || PyErr_Occurred())
1064 return r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001065 else
1066 return Py_FindMethod(BufferMethods, self, name);
1067}
1068
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069/******************/
1070
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001071 static PyInt
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001072BufferAssItem(PyObject *self, PyInt n, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073{
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02001074 return RBAsItem((BufferObject *)(self), n, val, 1, -1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001075}
1076
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001077 static PyInt
1078BufferAssSlice(PyObject *self, PyInt lo, PyInt hi, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001079{
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02001080 return RBAsSlice((BufferObject *)(self), lo, hi, val, 1, -1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081}
1082
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083static PySequenceMethods RangeAsSeq = {
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001084 (PyInquiry) RangeLength, /* sq_length, len(x) */
1085 (binaryfunc) 0, /* RangeConcat, */ /* sq_concat, x+y */
1086 (PyIntArgFunc) 0, /* RangeRepeat, */ /* sq_repeat, x*n */
1087 (PyIntArgFunc) RangeItem, /* sq_item, x[i] */
1088 (PyIntIntArgFunc) RangeSlice, /* sq_slice, x[i:j] */
1089 (PyIntObjArgProc) RangeAssItem, /* sq_ass_item, x[i]=v */
1090 (PyIntIntObjArgProc) RangeAssSlice, /* sq_ass_slice, x[i:j]=v */
1091 (objobjproc) 0,
1092#if PY_MAJOR_VERSION >= 2
1093 (binaryfunc) 0,
1094 0,
1095#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096};
1097
Bram Moolenaar071d4272004-06-13 20:20:40 +00001098/* Line range object - Implementation
1099 */
1100
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101 static PyObject *
1102RangeGetattr(PyObject *self, char *name)
1103{
1104 if (strcmp(name, "start") == 0)
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001105 return Py_BuildValue(Py_ssize_t_fmt, ((RangeObject *)(self))->start - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106 else if (strcmp(name, "end") == 0)
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001107 return Py_BuildValue(Py_ssize_t_fmt, ((RangeObject *)(self))->end - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108 else
1109 return Py_FindMethod(RangeMethods, self, name);
1110}
1111
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112/****************/
1113
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001114 static PyInt
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001115RangeAssItem(PyObject *self, PyInt n, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116{
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001117 return RBAsItem(((RangeObject *)(self))->buf, n, val,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118 ((RangeObject *)(self))->start,
1119 ((RangeObject *)(self))->end,
1120 &((RangeObject *)(self))->end);
1121}
1122
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001123 static PyInt
1124RangeAssSlice(PyObject *self, PyInt lo, PyInt hi, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125{
Bram Moolenaar19e60942011-06-19 00:27:51 +02001126 return RBAsSlice(((RangeObject *)(self))->buf, lo, hi, val,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127 ((RangeObject *)(self))->start,
1128 ((RangeObject *)(self))->end,
1129 &((RangeObject *)(self))->end);
1130}
1131
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001132/* TabPage object - Implementation
1133 */
1134
1135 static PyObject *
1136TabPageGetattr(PyObject *self, char *name)
1137{
1138 PyObject *r;
1139
1140 if (CheckTabPage((TabPageObject *)(self)))
1141 return NULL;
1142
1143 r = TabPageAttr((TabPageObject *)(self), name);
1144 if (r || PyErr_Occurred())
1145 return r;
1146 else
1147 return Py_FindMethod(TabPageMethods, self, name);
1148}
1149
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150/* Window object - Implementation
1151 */
1152
1153 static PyObject *
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154WindowGetattr(PyObject *self, char *name)
1155{
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001156 PyObject *r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001158 if (CheckWindow((WindowObject *)(self)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 return NULL;
1160
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001161 r = WindowAttr((WindowObject *)(self), name);
1162 if (r || PyErr_Occurred())
1163 return r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164 else
1165 return Py_FindMethod(WindowMethods, self, name);
1166}
1167
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001168/* Tab page list object - Definitions
1169 */
1170
1171static PySequenceMethods TabListAsSeq = {
1172 (PyInquiry) TabListLength, /* sq_length, len(x) */
1173 (binaryfunc) 0, /* sq_concat, x+y */
1174 (PyIntArgFunc) 0, /* sq_repeat, x*n */
1175 (PyIntArgFunc) TabListItem, /* sq_item, x[i] */
1176 (PyIntIntArgFunc) 0, /* sq_slice, x[i:j] */
1177 (PyIntObjArgProc) 0, /* sq_ass_item, x[i]=v */
1178 (PyIntIntObjArgProc) 0, /* sq_ass_slice, x[i:j]=v */
1179 (objobjproc) 0,
1180#if PY_MAJOR_VERSION >= 2
1181 (binaryfunc) 0,
1182 0,
1183#endif
1184};
1185
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186/* Window list object - Definitions
1187 */
1188
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189static PySequenceMethods WinListAsSeq = {
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001190 (PyInquiry) WinListLength, /* sq_length, len(x) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191 (binaryfunc) 0, /* sq_concat, x+y */
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001192 (PyIntArgFunc) 0, /* sq_repeat, x*n */
1193 (PyIntArgFunc) WinListItem, /* sq_item, x[i] */
1194 (PyIntIntArgFunc) 0, /* sq_slice, x[i:j] */
1195 (PyIntObjArgProc) 0, /* sq_ass_item, x[i]=v */
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001196 (PyIntIntObjArgProc) 0, /* sq_ass_slice, x[i:j]=v */
1197 (objobjproc) 0,
1198#if PY_MAJOR_VERSION >= 2
1199 (binaryfunc) 0,
1200 0,
1201#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202};
1203
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204/* External interface
1205 */
1206
1207 void
1208python_buffer_free(buf_T *buf)
1209{
Bram Moolenaar971db462013-05-12 18:44:48 +02001210 if (BUF_PYTHON_REF(buf) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 {
Bram Moolenaar971db462013-05-12 18:44:48 +02001212 BufferObject *bp = BUF_PYTHON_REF(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 bp->buf = INVALID_BUFFER_VALUE;
Bram Moolenaar971db462013-05-12 18:44:48 +02001214 BUF_PYTHON_REF(buf) = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 }
1216}
1217
1218#if defined(FEAT_WINDOWS) || defined(PROTO)
1219 void
1220python_window_free(win_T *win)
1221{
Bram Moolenaar971db462013-05-12 18:44:48 +02001222 if (WIN_PYTHON_REF(win) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 {
Bram Moolenaar971db462013-05-12 18:44:48 +02001224 WindowObject *wp = WIN_PYTHON_REF(win);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 wp->win = INVALID_WINDOW_VALUE;
Bram Moolenaar971db462013-05-12 18:44:48 +02001226 WIN_PYTHON_REF(win) = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 }
1228}
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001229
1230 void
1231python_tabpage_free(tabpage_T *tab)
1232{
1233 if (TAB_PYTHON_REF(tab) != NULL)
1234 {
1235 TabPageObject *tp = TAB_PYTHON_REF(tab);
1236 tp->tab = INVALID_TABPAGE_VALUE;
1237 TAB_PYTHON_REF(tab) = NULL;
1238 }
1239}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240#endif
1241
Bram Moolenaar1dc28782013-05-21 19:11:01 +02001242 static int
1243add_object(PyObject *dict, const char *name, PyObject *object)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244{
Bram Moolenaar1dc28782013-05-21 19:11:01 +02001245 if (PyDict_SetItemString(dict, (char *) name, object))
1246 return -1;
1247 Py_DECREF(object);
1248 return 0;
1249}
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001250
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251 static int
1252PythonMod_Init(void)
1253{
1254 PyObject *mod;
1255 PyObject *dict;
Bram Moolenaar1dc28782013-05-21 19:11:01 +02001256
Bram Moolenaar9774ecc2008-11-20 10:04:53 +00001257 /* The special value is removed from sys.path in Python_Init(). */
1258 static char *(argv[2]) = {"/must>not&exist/foo", NULL};
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259
Bram Moolenaar1dc28782013-05-21 19:11:01 +02001260 if (init_types())
1261 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262
1263 /* Set sys.argv[] to avoid a crash in warn(). */
1264 PySys_SetArgv(1, argv);
1265
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001266 mod = Py_InitModule4("vim", VimMethods, (char *)NULL, (PyObject *)NULL, PYTHON_API_VERSION);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 dict = PyModule_GetDict(mod);
1268
Bram Moolenaar1dc28782013-05-21 19:11:01 +02001269 return populate_module(dict, add_object);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270}
1271
1272/*************************************************************************
1273 * 4. Utility functions for handling the interface between Vim and Python.
1274 */
1275
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276/* Convert a Vim line into a Python string.
1277 * All internal newlines are replaced by null characters.
1278 *
1279 * On errors, the Python exception data is set, and NULL is returned.
1280 */
1281 static PyObject *
1282LineToString(const char *str)
1283{
1284 PyObject *result;
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001285 PyInt len = strlen(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 char *p;
1287
1288 /* Allocate an Python string object, with uninitialised contents. We
1289 * must do it this way, so that we can modify the string in place
1290 * later. See the Python source, Objects/stringobject.c for details.
1291 */
1292 result = PyString_FromStringAndSize(NULL, len);
1293 if (result == NULL)
1294 return NULL;
1295
1296 p = PyString_AsString(result);
1297
1298 while (*str)
1299 {
1300 if (*str == '\n')
1301 *p = '\0';
1302 else
1303 *p = *str;
1304
1305 ++p;
1306 ++str;
1307 }
1308
1309 return result;
1310}
1311
Bram Moolenaardb913952012-06-29 12:54:53 +02001312 static PyObject *
1313DictionaryGetattr(PyObject *self, char *name)
1314{
Bram Moolenaar66b79852012-09-21 14:00:35 +02001315 DictionaryObject *this = ((DictionaryObject *) (self));
1316
1317 if (strcmp(name, "locked") == 0)
1318 return PyInt_FromLong(this->dict->dv_lock);
1319 else if (strcmp(name, "scope") == 0)
1320 return PyInt_FromLong(this->dict->dv_scope);
1321
Bram Moolenaardb913952012-06-29 12:54:53 +02001322 return Py_FindMethod(DictionaryMethods, self, name);
1323}
1324
Bram Moolenaardb913952012-06-29 12:54:53 +02001325static PySequenceMethods ListAsSeq = {
1326 (PyInquiry) ListLength,
1327 (binaryfunc) 0,
1328 (PyIntArgFunc) 0,
1329 (PyIntArgFunc) ListItem,
1330 (PyIntIntArgFunc) ListSlice,
1331 (PyIntObjArgProc) ListAssItem,
1332 (PyIntIntObjArgProc) ListAssSlice,
1333 (objobjproc) 0,
1334#if PY_MAJOR_VERSION >= 2
1335 (binaryfunc) ListConcatInPlace,
1336 0,
1337#endif
1338};
1339
Bram Moolenaardb913952012-06-29 12:54:53 +02001340 static PyObject *
1341ListGetattr(PyObject *self, char *name)
1342{
Bram Moolenaar66b79852012-09-21 14:00:35 +02001343 if (strcmp(name, "locked") == 0)
1344 return PyInt_FromLong(((ListObject *)(self))->list->lv_lock);
1345
Bram Moolenaardb913952012-06-29 12:54:53 +02001346 return Py_FindMethod(ListMethods, self, name);
1347}
1348
Bram Moolenaardb913952012-06-29 12:54:53 +02001349 static PyObject *
1350FunctionGetattr(PyObject *self, char *name)
1351{
1352 FunctionObject *this = (FunctionObject *)(self);
1353
1354 if (strcmp(name, "name") == 0)
1355 return PyString_FromString((char *)(this->name));
1356 else
1357 return Py_FindMethod(FunctionMethods, self, name);
1358}
1359
1360 void
1361do_pyeval (char_u *str, typval_T *rettv)
1362{
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02001363 DoPyCommand((char *) str,
1364 (rangeinitializer) init_range_eval,
1365 (runner) run_eval,
1366 (void *) rettv);
Bram Moolenaardb913952012-06-29 12:54:53 +02001367 switch(rettv->v_type)
1368 {
1369 case VAR_DICT: ++rettv->vval.v_dict->dv_refcount; break;
1370 case VAR_LIST: ++rettv->vval.v_list->lv_refcount; break;
1371 case VAR_FUNC: func_ref(rettv->vval.v_string); break;
Bram Moolenaar77fceb82012-09-05 18:54:48 +02001372 case VAR_UNKNOWN:
1373 rettv->v_type = VAR_NUMBER;
1374 rettv->vval.v_number = 0;
1375 break;
Bram Moolenaardb913952012-06-29 12:54:53 +02001376 }
1377}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378
1379/* Don't generate a prototype for the next function, it generates an error on
1380 * newer Python versions. */
1381#if PYTHON_API_VERSION < 1007 /* Python 1.4 */ && !defined(PROTO)
1382
1383 char *
1384Py_GetProgramName(void)
1385{
1386 return "vim";
1387}
1388#endif /* Python 1.4 */
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001389
Bram Moolenaardb913952012-06-29 12:54:53 +02001390 void
1391set_ref_in_python (int copyID)
1392{
1393 set_ref_in_py(copyID);
1394}