blob: b1e57c7701ea65351509e3006f0691199e9502a9 [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 Moolenaare7211222012-06-30 13:21:08 +0200227# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
228# define _PyObject_NextNotImplemented (*dll__PyObject_NextNotImplemented)
229# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230# define _Py_NoneStruct (*dll__Py_NoneStruct)
Bram Moolenaar66b79852012-09-21 14:00:35 +0200231# define _Py_ZeroStruct (*dll__Py_ZeroStruct)
232# define _Py_TrueStruct (*dll__Py_TrueStruct)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233# define PyObject_Init dll__PyObject_Init
Bram Moolenaardb913952012-06-29 12:54:53 +0200234# define PyObject_GetIter dll_PyObject_GetIter
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200235# define PyObject_IsTrue dll_PyObject_IsTrue
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
237# define PyType_IsSubtype dll_PyType_IsSubtype
238# endif
239# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
240# define PyObject_Malloc dll_PyObject_Malloc
241# define PyObject_Free dll_PyObject_Free
242# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200243# ifdef PY_USE_CAPSULE
244# define PyCapsule_New dll_PyCapsule_New
245# define PyCapsule_GetPointer dll_PyCapsule_GetPointer
246# else
247# define PyCObject_FromVoidPtr dll_PyCObject_FromVoidPtr
248# define PyCObject_AsVoidPtr dll_PyCObject_AsVoidPtr
249# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000250
251/*
252 * Pointers for dynamic link
253 */
254static int(*dll_PyArg_Parse)(PyObject *, char *, ...);
255static int(*dll_PyArg_ParseTuple)(PyObject *, char *, ...);
Bram Moolenaar19e60942011-06-19 00:27:51 +0200256static int(*dll_PyMem_Free)(void *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200257static void* (*dll_PyMem_Malloc)(size_t);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000258static int(*dll_PyDict_SetItemString)(PyObject *dp, char *key, PyObject *item);
259static int(*dll_PyErr_BadArgument)(void);
Bram Moolenaard5f729c2013-05-15 16:04:40 +0200260static PyObject *(*dll_PyErr_NewException)(char *, PyObject *, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261static void(*dll_PyErr_Clear)(void);
Bram Moolenaar4d369872013-02-20 16:09:43 +0100262static void(*dll_PyErr_PrintEx)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263static PyObject*(*dll_PyErr_NoMemory)(void);
264static PyObject*(*dll_PyErr_Occurred)(void);
265static void(*dll_PyErr_SetNone)(PyObject *);
266static void(*dll_PyErr_SetString)(PyObject *, const char *);
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200267static void(*dll_PyErr_SetObject)(PyObject *, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000268static void(*dll_PyEval_InitThreads)(void);
269static void(*dll_PyEval_RestoreThread)(PyThreadState *);
270static PyThreadState*(*dll_PyEval_SaveThread)(void);
271# ifdef PY_CAN_RECURSE
272static PyGILState_STATE (*dll_PyGILState_Ensure)(void);
273static void (*dll_PyGILState_Release)(PyGILState_STATE);
Bram Moolenaardb913952012-06-29 12:54:53 +0200274# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275static long(*dll_PyInt_AsLong)(PyObject *);
276static PyObject*(*dll_PyInt_FromLong)(long);
Bram Moolenaardb913952012-06-29 12:54:53 +0200277static long(*dll_PyLong_AsLong)(PyObject *);
278static PyObject*(*dll_PyLong_FromLong)(long);
Bram Moolenaar66b79852012-09-21 14:00:35 +0200279static PyTypeObject* dll_PyBool_Type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280static PyTypeObject* dll_PyInt_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200281static PyTypeObject* dll_PyLong_Type;
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000282static PyObject*(*dll_PyList_GetItem)(PyObject *, PyInt);
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000283static PyObject*(*dll_PyList_Append)(PyObject *, PyObject *);
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000284static PyObject*(*dll_PyList_New)(PyInt size);
285static int(*dll_PyList_SetItem)(PyObject *, PyInt, PyObject *);
286static PyInt(*dll_PyList_Size)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000287static PyTypeObject* dll_PyList_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200288static int (*dll_PySequence_Check)(PyObject *);
289static PyInt(*dll_PySequence_Size)(PyObject *);
290static PyObject*(*dll_PySequence_GetItem)(PyObject *, PyInt);
291static PyInt(*dll_PyTuple_Size)(PyObject *);
292static PyObject*(*dll_PyTuple_GetItem)(PyObject *, PyInt);
293static PyTypeObject* dll_PyTuple_Type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294static PyObject*(*dll_PyImport_ImportModule)(const char *);
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000295static PyObject*(*dll_PyDict_New)(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296static PyObject*(*dll_PyDict_GetItemString)(PyObject *, const char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200297static int (*dll_PyDict_Next)(PyObject *, Py_ssize_t *, PyObject **, PyObject **);
298# ifndef PY_NO_MAPPING_ITEMS
299static PyObject* (*dll_PyMapping_Items)(PyObject *);
300# endif
301static PyObject* (*dll_PyObject_CallMethod)(PyObject *, char *, PyObject *);
302static int (*dll_PyMapping_Check)(PyObject *);
303static PyObject* (*dll_PyIter_Next)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304static PyObject*(*dll_PyModule_GetDict)(PyObject *);
305static int(*dll_PyRun_SimpleString)(char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200306static PyObject *(*dll_PyRun_String)(char *, int, PyObject *, PyObject *);
Bram Moolenaard620aa92013-05-17 16:40:06 +0200307static PyObject* (*dll_PyObject_GetAttrString)(PyObject *, const char *);
308static PyObject* (*dll_PyObject_SetAttrString)(PyObject *, const char *, PyObject *);
309static PyObject* (*dll_PyObject_CallFunctionObjArgs)(PyObject *, ...);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310static char*(*dll_PyString_AsString)(PyObject *);
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200311static int(*dll_PyString_AsStringAndSize)(PyObject *, char **, int *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312static PyObject*(*dll_PyString_FromString)(const char *);
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000313static PyObject*(*dll_PyString_FromStringAndSize)(const char *, PyInt);
314static PyInt(*dll_PyString_Size)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315static PyTypeObject* dll_PyString_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200316static PyTypeObject* dll_PyUnicode_Type;
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200317static PyObject *(*py_PyUnicode_AsEncodedString)(PyObject *, char *, char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200318static double(*dll_PyFloat_AsDouble)(PyObject *);
319static PyObject*(*dll_PyFloat_FromDouble)(double);
320static PyTypeObject* dll_PyFloat_Type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321static int(*dll_PySys_SetObject)(char *, PyObject *);
322static int(*dll_PySys_SetArgv)(int, char **);
323static PyTypeObject* dll_PyType_Type;
Bram Moolenaar30fec7b2011-03-26 18:32:05 +0100324static int (*dll_PyType_Ready)(PyTypeObject *type);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000325static PyObject*(*dll_Py_BuildValue)(char *, ...);
326static PyObject*(*dll_Py_FindMethod)(struct PyMethodDef[], PyObject *, char *);
327static PyObject*(*dll_Py_InitModule4)(char *, struct PyMethodDef *, char *, PyObject *, int);
Bram Moolenaardb913952012-06-29 12:54:53 +0200328static PyObject*(*dll_PyImport_AddModule)(char *);
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100329static void(*dll_Py_SetPythonHome)(char *home);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330static void(*dll_Py_Initialize)(void);
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000331static void(*dll_Py_Finalize)(void);
332static int(*dll_Py_IsInitialized)(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000333static PyObject*(*dll__PyObject_New)(PyTypeObject *, PyObject *);
334static PyObject*(*dll__PyObject_Init)(PyObject *, PyTypeObject *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200335static PyObject* (*dll_PyObject_GetIter)(PyObject *);
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200336static int (*dll_PyObject_IsTrue)(PyObject *);
Bram Moolenaare7211222012-06-30 13:21:08 +0200337# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
Bram Moolenaardb913952012-06-29 12:54:53 +0200338static iternextfunc dll__PyObject_NextNotImplemented;
Bram Moolenaare7211222012-06-30 13:21:08 +0200339# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340static PyObject* dll__Py_NoneStruct;
Bram Moolenaar66b79852012-09-21 14:00:35 +0200341static PyObject* _Py_ZeroStruct;
342static PyObject* dll__Py_TrueStruct;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
344static int (*dll_PyType_IsSubtype)(PyTypeObject *, PyTypeObject *);
345# endif
346# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
347static void* (*dll_PyObject_Malloc)(size_t);
348static void (*dll_PyObject_Free)(void*);
349# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200350# ifdef PY_USE_CAPSULE
Bram Moolenaardb913952012-06-29 12:54:53 +0200351static PyObject* (*dll_PyCapsule_New)(void *, char *, PyCapsule_Destructor);
352static void* (*dll_PyCapsule_GetPointer)(PyObject *, char *);
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200353# else
Bram Moolenaar221d6872012-06-30 13:34:34 +0200354static PyObject* (*dll_PyCObject_FromVoidPtr)(void *cobj, void (*destr)(void *));
355static void* (*dll_PyCObject_AsVoidPtr)(PyObject *);
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200356# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000357
358static HINSTANCE hinstPython = 0; /* Instance of python.dll */
359
360/* Imported exception objects */
361static PyObject *imp_PyExc_AttributeError;
362static PyObject *imp_PyExc_IndexError;
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200363static PyObject *imp_PyExc_KeyError;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364static PyObject *imp_PyExc_KeyboardInterrupt;
365static PyObject *imp_PyExc_TypeError;
366static PyObject *imp_PyExc_ValueError;
Bram Moolenaar8661b172013-05-15 15:44:28 +0200367static PyObject *imp_PyExc_RuntimeError;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368
369# define PyExc_AttributeError imp_PyExc_AttributeError
370# define PyExc_IndexError imp_PyExc_IndexError
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200371# define PyExc_KeyError imp_PyExc_KeyError
Bram Moolenaar071d4272004-06-13 20:20:40 +0000372# define PyExc_KeyboardInterrupt imp_PyExc_KeyboardInterrupt
373# define PyExc_TypeError imp_PyExc_TypeError
374# define PyExc_ValueError imp_PyExc_ValueError
Bram Moolenaar8661b172013-05-15 15:44:28 +0200375# define PyExc_RuntimeError imp_PyExc_RuntimeError
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376
377/*
378 * Table of name to function pointer of python.
379 */
380# define PYTHON_PROC FARPROC
381static struct
382{
383 char *name;
384 PYTHON_PROC *ptr;
385} python_funcname_table[] =
386{
Bram Moolenaare8cdcef2012-09-12 20:21:43 +0200387#ifndef PY_SSIZE_T_CLEAN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388 {"PyArg_Parse", (PYTHON_PROC*)&dll_PyArg_Parse},
389 {"PyArg_ParseTuple", (PYTHON_PROC*)&dll_PyArg_ParseTuple},
Bram Moolenaare8cdcef2012-09-12 20:21:43 +0200390 {"Py_BuildValue", (PYTHON_PROC*)&dll_Py_BuildValue},
391#else
392 {"_PyArg_Parse_SizeT", (PYTHON_PROC*)&dll_PyArg_Parse},
393 {"_PyArg_ParseTuple_SizeT", (PYTHON_PROC*)&dll_PyArg_ParseTuple},
394 {"_Py_BuildValue_SizeT", (PYTHON_PROC*)&dll_Py_BuildValue},
395#endif
Bram Moolenaar19e60942011-06-19 00:27:51 +0200396 {"PyMem_Free", (PYTHON_PROC*)&dll_PyMem_Free},
Bram Moolenaardb913952012-06-29 12:54:53 +0200397 {"PyMem_Malloc", (PYTHON_PROC*)&dll_PyMem_Malloc},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398 {"PyDict_SetItemString", (PYTHON_PROC*)&dll_PyDict_SetItemString},
399 {"PyErr_BadArgument", (PYTHON_PROC*)&dll_PyErr_BadArgument},
Bram Moolenaard5f729c2013-05-15 16:04:40 +0200400 {"PyErr_NewException", (PYTHON_PROC*)&dll_PyErr_NewException},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401 {"PyErr_Clear", (PYTHON_PROC*)&dll_PyErr_Clear},
Bram Moolenaar4d369872013-02-20 16:09:43 +0100402 {"PyErr_PrintEx", (PYTHON_PROC*)&dll_PyErr_PrintEx},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403 {"PyErr_NoMemory", (PYTHON_PROC*)&dll_PyErr_NoMemory},
404 {"PyErr_Occurred", (PYTHON_PROC*)&dll_PyErr_Occurred},
405 {"PyErr_SetNone", (PYTHON_PROC*)&dll_PyErr_SetNone},
406 {"PyErr_SetString", (PYTHON_PROC*)&dll_PyErr_SetString},
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200407 {"PyErr_SetObject", (PYTHON_PROC*)&dll_PyErr_SetObject},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408 {"PyEval_InitThreads", (PYTHON_PROC*)&dll_PyEval_InitThreads},
409 {"PyEval_RestoreThread", (PYTHON_PROC*)&dll_PyEval_RestoreThread},
410 {"PyEval_SaveThread", (PYTHON_PROC*)&dll_PyEval_SaveThread},
411# ifdef PY_CAN_RECURSE
412 {"PyGILState_Ensure", (PYTHON_PROC*)&dll_PyGILState_Ensure},
413 {"PyGILState_Release", (PYTHON_PROC*)&dll_PyGILState_Release},
414# endif
415 {"PyInt_AsLong", (PYTHON_PROC*)&dll_PyInt_AsLong},
416 {"PyInt_FromLong", (PYTHON_PROC*)&dll_PyInt_FromLong},
Bram Moolenaardb913952012-06-29 12:54:53 +0200417 {"PyLong_AsLong", (PYTHON_PROC*)&dll_PyLong_AsLong},
418 {"PyLong_FromLong", (PYTHON_PROC*)&dll_PyLong_FromLong},
Bram Moolenaar66b79852012-09-21 14:00:35 +0200419 {"PyBool_Type", (PYTHON_PROC*)&dll_PyBool_Type},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420 {"PyInt_Type", (PYTHON_PROC*)&dll_PyInt_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200421 {"PyLong_Type", (PYTHON_PROC*)&dll_PyLong_Type},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422 {"PyList_GetItem", (PYTHON_PROC*)&dll_PyList_GetItem},
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000423 {"PyList_Append", (PYTHON_PROC*)&dll_PyList_Append},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000424 {"PyList_New", (PYTHON_PROC*)&dll_PyList_New},
425 {"PyList_SetItem", (PYTHON_PROC*)&dll_PyList_SetItem},
426 {"PyList_Size", (PYTHON_PROC*)&dll_PyList_Size},
427 {"PyList_Type", (PYTHON_PROC*)&dll_PyList_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200428 {"PySequence_GetItem", (PYTHON_PROC*)&dll_PySequence_GetItem},
429 {"PySequence_Size", (PYTHON_PROC*)&dll_PySequence_Size},
430 {"PySequence_Check", (PYTHON_PROC*)&dll_PySequence_Check},
431 {"PyTuple_GetItem", (PYTHON_PROC*)&dll_PyTuple_GetItem},
432 {"PyTuple_Size", (PYTHON_PROC*)&dll_PyTuple_Size},
433 {"PyTuple_Type", (PYTHON_PROC*)&dll_PyTuple_Type},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434 {"PyImport_ImportModule", (PYTHON_PROC*)&dll_PyImport_ImportModule},
435 {"PyDict_GetItemString", (PYTHON_PROC*)&dll_PyDict_GetItemString},
Bram Moolenaardb913952012-06-29 12:54:53 +0200436 {"PyDict_Next", (PYTHON_PROC*)&dll_PyDict_Next},
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000437 {"PyDict_New", (PYTHON_PROC*)&dll_PyDict_New},
Bram Moolenaardb913952012-06-29 12:54:53 +0200438# ifndef PY_NO_MAPPING_ITEMS
439 {"PyMapping_Items", (PYTHON_PROC*)&dll_PyMapping_Items},
440# endif
441 {"PyObject_CallMethod", (PYTHON_PROC*)&dll_PyObject_CallMethod},
442 {"PyMapping_Check", (PYTHON_PROC*)&dll_PyMapping_Check},
443 {"PyIter_Next", (PYTHON_PROC*)&dll_PyIter_Next},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000444 {"PyModule_GetDict", (PYTHON_PROC*)&dll_PyModule_GetDict},
445 {"PyRun_SimpleString", (PYTHON_PROC*)&dll_PyRun_SimpleString},
Bram Moolenaardb913952012-06-29 12:54:53 +0200446 {"PyRun_String", (PYTHON_PROC*)&dll_PyRun_String},
Bram Moolenaard620aa92013-05-17 16:40:06 +0200447 {"PyObject_GetAttrString", (PYTHON_PROC*)&dll_PyObject_GetAttrString},
448 {"PyObject_SetAttrString", (PYTHON_PROC*)&dll_PyObject_SetAttrString},
449 {"PyObject_CallFunctionObjArgs", (PYTHON_PROC*)&dll_PyObject_CallFunctionObjArgs},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450 {"PyString_AsString", (PYTHON_PROC*)&dll_PyString_AsString},
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200451 {"PyString_AsStringAndSize", (PYTHON_PROC*)&dll_PyString_AsStringAndSize},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000452 {"PyString_FromString", (PYTHON_PROC*)&dll_PyString_FromString},
453 {"PyString_FromStringAndSize", (PYTHON_PROC*)&dll_PyString_FromStringAndSize},
454 {"PyString_Size", (PYTHON_PROC*)&dll_PyString_Size},
455 {"PyString_Type", (PYTHON_PROC*)&dll_PyString_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200456 {"PyUnicode_Type", (PYTHON_PROC*)&dll_PyUnicode_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200457 {"PyFloat_Type", (PYTHON_PROC*)&dll_PyFloat_Type},
458 {"PyFloat_AsDouble", (PYTHON_PROC*)&dll_PyFloat_AsDouble},
459 {"PyFloat_FromDouble", (PYTHON_PROC*)&dll_PyFloat_FromDouble},
460 {"PyImport_AddModule", (PYTHON_PROC*)&dll_PyImport_AddModule},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461 {"PySys_SetObject", (PYTHON_PROC*)&dll_PySys_SetObject},
462 {"PySys_SetArgv", (PYTHON_PROC*)&dll_PySys_SetArgv},
463 {"PyType_Type", (PYTHON_PROC*)&dll_PyType_Type},
Bram Moolenaar30fec7b2011-03-26 18:32:05 +0100464 {"PyType_Ready", (PYTHON_PROC*)&dll_PyType_Ready},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465 {"Py_FindMethod", (PYTHON_PROC*)&dll_Py_FindMethod},
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200466# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02050000 \
467 && SIZEOF_SIZE_T != SIZEOF_INT
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000468 {"Py_InitModule4_64", (PYTHON_PROC*)&dll_Py_InitModule4},
469# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470 {"Py_InitModule4", (PYTHON_PROC*)&dll_Py_InitModule4},
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000471# endif
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100472 {"Py_SetPythonHome", (PYTHON_PROC*)&dll_Py_SetPythonHome},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000473 {"Py_Initialize", (PYTHON_PROC*)&dll_Py_Initialize},
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000474 {"Py_Finalize", (PYTHON_PROC*)&dll_Py_Finalize},
475 {"Py_IsInitialized", (PYTHON_PROC*)&dll_Py_IsInitialized},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000476 {"_PyObject_New", (PYTHON_PROC*)&dll__PyObject_New},
477 {"PyObject_Init", (PYTHON_PROC*)&dll__PyObject_Init},
Bram Moolenaardb913952012-06-29 12:54:53 +0200478 {"PyObject_GetIter", (PYTHON_PROC*)&dll_PyObject_GetIter},
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200479 {"PyObject_IsTrue", (PYTHON_PROC*)&dll_PyObject_IsTrue},
Bram Moolenaare7211222012-06-30 13:21:08 +0200480# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
Bram Moolenaardb913952012-06-29 12:54:53 +0200481 {"_PyObject_NextNotImplemented", (PYTHON_PROC*)&dll__PyObject_NextNotImplemented},
Bram Moolenaare7211222012-06-30 13:21:08 +0200482# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483 {"_Py_NoneStruct", (PYTHON_PROC*)&dll__Py_NoneStruct},
Bram Moolenaar66b79852012-09-21 14:00:35 +0200484 {"_Py_ZeroStruct", (PYTHON_PROC*)&dll__Py_ZeroStruct},
485 {"_Py_TrueStruct", (PYTHON_PROC*)&dll__Py_TrueStruct},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
487 {"PyType_IsSubtype", (PYTHON_PROC*)&dll_PyType_IsSubtype},
488# endif
489# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
490 {"PyObject_Malloc", (PYTHON_PROC*)&dll_PyObject_Malloc},
491 {"PyObject_Free", (PYTHON_PROC*)&dll_PyObject_Free},
492# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200493# ifdef PY_USE_CAPSULE
Bram Moolenaardb913952012-06-29 12:54:53 +0200494 {"PyCapsule_New", (PYTHON_PROC*)&dll_PyCapsule_New},
495 {"PyCapsule_GetPointer", (PYTHON_PROC*)&dll_PyCapsule_GetPointer},
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200496# else
497 {"PyCObject_FromVoidPtr", (PYTHON_PROC*)&dll_PyCObject_FromVoidPtr},
498 {"PyCObject_AsVoidPtr", (PYTHON_PROC*)&dll_PyCObject_AsVoidPtr},
499# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500 {"", NULL},
501};
502
503/*
504 * Free python.dll
505 */
506 static void
507end_dynamic_python(void)
508{
509 if (hinstPython)
510 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200511 close_dll(hinstPython);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512 hinstPython = 0;
513 }
514}
515
516/*
517 * Load library and get all pointers.
518 * Parameter 'libname' provides name of DLL.
519 * Return OK or FAIL.
520 */
521 static int
522python_runtime_link_init(char *libname, int verbose)
523{
524 int i;
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200525 void *ucs_as_encoded_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100527#if !(defined(PY_NO_RTLD_GLOBAL) && defined(PY3_NO_RTLD_GLOBAL)) && defined(UNIX) && defined(FEAT_PYTHON3)
Bram Moolenaarb744b2f2010-08-13 16:22:57 +0200528 /* Can't have Python and Python3 loaded at the same time.
529 * It cause a crash, because RTLD_GLOBAL is needed for
530 * standard C extension libraries of one or both python versions. */
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200531 if (python3_loaded())
532 {
Bram Moolenaar9dc93ae2011-08-28 16:00:19 +0200533 if (verbose)
534 EMSG(_("E836: This Vim cannot execute :python after using :py3"));
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200535 return FAIL;
536 }
537#endif
538
Bram Moolenaar071d4272004-06-13 20:20:40 +0000539 if (hinstPython)
540 return OK;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200541 hinstPython = load_dll(libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000542 if (!hinstPython)
543 {
544 if (verbose)
545 EMSG2(_(e_loadlib), libname);
546 return FAIL;
547 }
548
549 for (i = 0; python_funcname_table[i].ptr; ++i)
550 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200551 if ((*python_funcname_table[i].ptr = symbol_from_dll(hinstPython,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 python_funcname_table[i].name)) == NULL)
553 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200554 close_dll(hinstPython);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000555 hinstPython = 0;
556 if (verbose)
557 EMSG2(_(e_loadfunc), python_funcname_table[i].name);
558 return FAIL;
559 }
560 }
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200561
562 /* Load unicode functions separately as only the ucs2 or the ucs4 functions
563 * will be present in the library. */
564 ucs_as_encoded_string = symbol_from_dll(hinstPython,
565 "PyUnicodeUCS2_AsEncodedString");
566 if (ucs_as_encoded_string == NULL)
567 ucs_as_encoded_string = symbol_from_dll(hinstPython,
568 "PyUnicodeUCS4_AsEncodedString");
569 if (ucs_as_encoded_string != NULL)
570 py_PyUnicode_AsEncodedString = ucs_as_encoded_string;
571 else
572 {
573 close_dll(hinstPython);
574 hinstPython = 0;
575 if (verbose)
576 EMSG2(_(e_loadfunc), "PyUnicode_UCSX_*");
577 return FAIL;
578 }
579
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580 return OK;
581}
582
583/*
584 * If python is enabled (there is installed python on Windows system) return
585 * TRUE, else FALSE.
586 */
587 int
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000588python_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589{
590 return python_runtime_link_init(DYNAMIC_PYTHON_DLL, verbose) == OK;
591}
592
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200593/*
594 * Load the standard Python exceptions - don't import the symbols from the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000595 * DLL, as this can cause errors (importing data symbols is not reliable).
596 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597 static void
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200598get_exceptions(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599{
600 PyObject *exmod = PyImport_ImportModule("exceptions");
601 PyObject *exdict = PyModule_GetDict(exmod);
602 imp_PyExc_AttributeError = PyDict_GetItemString(exdict, "AttributeError");
603 imp_PyExc_IndexError = PyDict_GetItemString(exdict, "IndexError");
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200604 imp_PyExc_KeyError = PyDict_GetItemString(exdict, "KeyError");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000605 imp_PyExc_KeyboardInterrupt = PyDict_GetItemString(exdict, "KeyboardInterrupt");
606 imp_PyExc_TypeError = PyDict_GetItemString(exdict, "TypeError");
607 imp_PyExc_ValueError = PyDict_GetItemString(exdict, "ValueError");
Bram Moolenaar8661b172013-05-15 15:44:28 +0200608 imp_PyExc_RuntimeError = PyDict_GetItemString(exdict, "RuntimeError");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609 Py_XINCREF(imp_PyExc_AttributeError);
610 Py_XINCREF(imp_PyExc_IndexError);
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200611 Py_XINCREF(imp_PyExc_KeyError);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612 Py_XINCREF(imp_PyExc_KeyboardInterrupt);
613 Py_XINCREF(imp_PyExc_TypeError);
614 Py_XINCREF(imp_PyExc_ValueError);
Bram Moolenaar8661b172013-05-15 15:44:28 +0200615 Py_XINCREF(imp_PyExc_RuntimeError);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616 Py_XDECREF(exmod);
617}
618#endif /* DYNAMIC_PYTHON */
619
Bram Moolenaardb913952012-06-29 12:54:53 +0200620static int initialised = 0;
621#define PYINITIALISED initialised
622
Bram Moolenaardb913952012-06-29 12:54:53 +0200623#define DICTKEY_GET(err) \
624 if (!PyString_Check(keyObject)) \
625 { \
626 PyErr_SetString(PyExc_TypeError, _("only string keys are allowed")); \
627 return err; \
628 } \
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200629 if (PyString_AsStringAndSize(keyObject, (char **) &key, NULL) == -1) \
630 return err;
631
Bram Moolenaardb913952012-06-29 12:54:53 +0200632#define DICTKEY_UNREF
633#define DICTKEY_DECL
634
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200635#define DESTRUCTOR_FINISH(self) Py_DECREF(self);
636
Bram Moolenaar971db462013-05-12 18:44:48 +0200637#define WIN_PYTHON_REF(win) win->w_python_ref
638#define BUF_PYTHON_REF(buf) buf->b_python_ref
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200639#define TAB_PYTHON_REF(tab) tab->tp_python_ref
Bram Moolenaar971db462013-05-12 18:44:48 +0200640
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200641static PyObject *OutputGetattr(PyObject *, char *);
642static PyObject *BufferGetattr(PyObject *, char *);
643static PyObject *WindowGetattr(PyObject *, char *);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200644static PyObject *TabPageGetattr(PyObject *, char *);
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200645static PyObject *RangeGetattr(PyObject *, char *);
646static PyObject *DictionaryGetattr(PyObject *, char*);
647static PyObject *ListGetattr(PyObject *, char *);
648static PyObject *FunctionGetattr(PyObject *, char *);
649
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200650/*
651 * Include the code shared with if_python3.c
652 */
653#include "if_py_both.h"
654
655
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656/******************************************************
657 * Internal function prototypes.
658 */
659
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660static int PythonMod_Init(void);
661
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662
663/******************************************************
664 * 1. Python interpreter main program.
665 */
666
Bram Moolenaar071d4272004-06-13 20:20:40 +0000667#if PYTHON_API_VERSION < 1007 /* Python 1.4 */
668typedef PyObject PyThreadState;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000669#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670
Bram Moolenaar71700b82013-05-15 17:49:05 +0200671#ifndef PY_CAN_RECURSE
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000672static PyThreadState *saved_python_thread = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000673
674/*
675 * Suspend a thread of the Python interpreter, other threads are allowed to
676 * run.
677 */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000678 static void
679Python_SaveThread(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000680{
681 saved_python_thread = PyEval_SaveThread();
682}
683
684/*
685 * Restore a thread of the Python interpreter, waits for other threads to
686 * block.
687 */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000688 static void
689Python_RestoreThread(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690{
691 PyEval_RestoreThread(saved_python_thread);
692 saved_python_thread = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000693}
Bram Moolenaar71700b82013-05-15 17:49:05 +0200694#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696 void
697python_end()
698{
Bram Moolenaara5792f52005-11-23 21:25:05 +0000699 static int recurse = 0;
700
701 /* If a crash occurs while doing this, don't try again. */
702 if (recurse != 0)
703 return;
704
705 ++recurse;
706
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707#ifdef DYNAMIC_PYTHON
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000708 if (hinstPython && Py_IsInitialized())
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000709 {
Bram Moolenaar71700b82013-05-15 17:49:05 +0200710# ifdef PY_CAN_RECURSE
711 PyGILState_Ensure();
712# else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000713 Python_RestoreThread(); /* enter python */
Bram Moolenaar71700b82013-05-15 17:49:05 +0200714# endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000715 Py_Finalize();
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000716 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 end_dynamic_python();
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000718#else
719 if (Py_IsInitialized())
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000720 {
Bram Moolenaar71700b82013-05-15 17:49:05 +0200721# ifdef PY_CAN_RECURSE
722 PyGILState_Ensure();
723# else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000724 Python_RestoreThread(); /* enter python */
Bram Moolenaar71700b82013-05-15 17:49:05 +0200725# endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000726 Py_Finalize();
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000727 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728#endif
Bram Moolenaara5792f52005-11-23 21:25:05 +0000729
730 --recurse;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731}
732
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200733#if (defined(DYNAMIC_PYTHON) && defined(FEAT_PYTHON3)) || defined(PROTO)
734 int
735python_loaded()
736{
737 return (hinstPython != 0);
738}
739#endif
740
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741 static int
742Python_Init(void)
743{
744 if (!initialised)
745 {
746#ifdef DYNAMIC_PYTHON
747 if (!python_enabled(TRUE))
748 {
749 EMSG(_("E263: Sorry, this command is disabled, the Python library could not be loaded."));
750 goto fail;
751 }
752#endif
753
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100754#ifdef PYTHON_HOME
755 Py_SetPythonHome(PYTHON_HOME);
756#endif
757
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200758 init_structs();
759
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760#if !defined(MACOS) || defined(MACOS_X_UNIX)
761 Py_Initialize();
762#else
763 PyMac_Initialize();
764#endif
Bram Moolenaar02366252013-01-30 11:44:39 +0100765 /* Initialise threads, and below save the state using
Bram Moolenaar76d711c2013-02-13 14:17:08 +0100766 * PyEval_SaveThread. Without the call to PyEval_SaveThread, thread
Bram Moolenaar02366252013-01-30 11:44:39 +0100767 * specific state (such as the system trace hook), will be lost
768 * between invocations of Python code. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 PyEval_InitThreads();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770#ifdef DYNAMIC_PYTHON
771 get_exceptions();
772#endif
773
Bram Moolenaar1dc28782013-05-21 19:11:01 +0200774 if (PythonIO_Init_io())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000775 goto fail;
776
777 if (PythonMod_Init())
778 goto fail;
779
Bram Moolenaardb913952012-06-29 12:54:53 +0200780 globals = PyModule_GetDict(PyImport_AddModule("__main__"));
781
Bram Moolenaar9774ecc2008-11-20 10:04:53 +0000782 /* Remove the element from sys.path that was added because of our
783 * argv[0] value in PythonMod_Init(). Previously we used an empty
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200784 * string, but depending on the OS we then get an empty entry or
Bram Moolenaar9774ecc2008-11-20 10:04:53 +0000785 * the current directory in sys.path. */
786 PyRun_SimpleString("import sys; sys.path = filter(lambda x: x != '/must>not&exist', sys.path)");
787
Bram Moolenaar76d711c2013-02-13 14:17:08 +0100788 /* lock is created and acquired in PyEval_InitThreads() and thread
789 * state is created in Py_Initialize()
790 * there _PyGILState_NoteThreadState() also sets gilcounter to 1
791 * (python must have threads enabled!)
792 * so the following does both: unlock GIL and save thread state in TLS
793 * without deleting thread state
794 */
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200795#ifndef PY_CAN_RECURSE
796 saved_python_thread =
797#endif
798 PyEval_SaveThread();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799
800 initialised = 1;
801 }
802
803 return 0;
804
805fail:
806 /* We call PythonIO_Flush() here to print any Python errors.
807 * This is OK, as it is possible to call this function even
Bram Moolenaar1dc28782013-05-21 19:11:01 +0200808 * if PythonIO_Init_io() has not completed successfully (it will
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809 * not do anything in this case).
810 */
811 PythonIO_Flush();
812 return -1;
813}
814
815/*
816 * External interface
817 */
818 static void
Bram Moolenaarb52f4c02013-05-21 18:19:38 +0200819DoPyCommand(const char *cmd, rangeinitializer init_range, runner run, void *arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000821#ifndef PY_CAN_RECURSE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 static int recursive = 0;
823#endif
824#if defined(MACOS) && !defined(MACOS_X_UNIX)
825 GrafPtr oldPort;
826#endif
827#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
828 char *saved_locale;
829#endif
Bram Moolenaar71700b82013-05-15 17:49:05 +0200830#ifdef PY_CAN_RECURSE
831 PyGILState_STATE pygilstate;
832#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833
834#ifndef PY_CAN_RECURSE
835 if (recursive)
836 {
837 EMSG(_("E659: Cannot invoke Python recursively"));
838 return;
839 }
840 ++recursive;
841#endif
842
843#if defined(MACOS) && !defined(MACOS_X_UNIX)
844 GetPort(&oldPort);
845 /* Check if the Python library is available */
846 if ((Ptr)PyMac_Initialize == (Ptr)kUnresolvedCFragSymbolAddress)
847 goto theend;
848#endif
849 if (Python_Init())
850 goto theend;
851
Bram Moolenaarb52f4c02013-05-21 18:19:38 +0200852 init_range(arg);
853
Bram Moolenaar071d4272004-06-13 20:20:40 +0000854 Python_Release_Vim(); /* leave vim */
855
856#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
857 /* Python only works properly when the LC_NUMERIC locale is "C". */
858 saved_locale = setlocale(LC_NUMERIC, NULL);
859 if (saved_locale == NULL || STRCMP(saved_locale, "C") == 0)
860 saved_locale = NULL;
861 else
862 {
863 /* Need to make a copy, value may change when setting new locale. */
864 saved_locale = (char *)vim_strsave((char_u *)saved_locale);
865 (void)setlocale(LC_NUMERIC, "C");
866 }
867#endif
868
Bram Moolenaar71700b82013-05-15 17:49:05 +0200869#ifdef PY_CAN_RECURSE
870 pygilstate = PyGILState_Ensure();
871#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872 Python_RestoreThread(); /* enter python */
Bram Moolenaar71700b82013-05-15 17:49:05 +0200873#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874
Bram Moolenaarb52f4c02013-05-21 18:19:38 +0200875 run((char *) cmd, arg, &pygilstate);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000876
Bram Moolenaar71700b82013-05-15 17:49:05 +0200877#ifdef PY_CAN_RECURSE
878 PyGILState_Release(pygilstate);
879#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 Python_SaveThread(); /* leave python */
Bram Moolenaar71700b82013-05-15 17:49:05 +0200881#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882
883#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
884 if (saved_locale != NULL)
885 {
886 (void)setlocale(LC_NUMERIC, saved_locale);
887 vim_free(saved_locale);
888 }
889#endif
890
891 Python_Lock_Vim(); /* enter vim */
892 PythonIO_Flush();
893#if defined(MACOS) && !defined(MACOS_X_UNIX)
894 SetPort(oldPort);
895#endif
896
897theend:
898#ifndef PY_CAN_RECURSE
899 --recursive;
900#endif
Bram Moolenaardb913952012-06-29 12:54:53 +0200901 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902}
903
904/*
905 * ":python"
906 */
907 void
908ex_python(exarg_T *eap)
909{
910 char_u *script;
911
912 script = script_get(eap, eap->arg);
913 if (!eap->skip)
914 {
Bram Moolenaarb52f4c02013-05-21 18:19:38 +0200915 DoPyCommand(script == NULL ? (char *) eap->arg : (char *) script,
916 (rangeinitializer) init_range_cmd,
917 (runner) run_cmd,
918 (void *) eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919 }
920 vim_free(script);
921}
922
923#define BUFFER_SIZE 1024
924
925/*
926 * ":pyfile"
927 */
928 void
929ex_pyfile(exarg_T *eap)
930{
931 static char buffer[BUFFER_SIZE];
932 const char *file = (char *)eap->arg;
933 char *p;
934
935 /* Have to do it like this. PyRun_SimpleFile requires you to pass a
936 * stdio file pointer, but Vim and the Python DLL are compiled with
937 * different options under Windows, meaning that stdio pointers aren't
938 * compatible between the two. Yuk.
939 *
940 * Put the string "execfile('file')" into buffer. But, we need to
941 * escape any backslashes or single quotes in the file name, so that
942 * Python won't mangle the file name.
943 */
944 strcpy(buffer, "execfile('");
945 p = buffer + 10; /* size of "execfile('" */
946
947 while (*file && p < buffer + (BUFFER_SIZE - 3))
948 {
949 if (*file == '\\' || *file == '\'')
950 *p++ = '\\';
951 *p++ = *file++;
952 }
953
954 /* If we didn't finish the file name, we hit a buffer overflow */
955 if (*file != '\0')
956 return;
957
958 /* Put in the terminating "')" and a null */
959 *p++ = '\'';
960 *p++ = ')';
961 *p++ = '\0';
962
963 /* Execute the file */
Bram Moolenaarb52f4c02013-05-21 18:19:38 +0200964 DoPyCommand(buffer,
965 (rangeinitializer) init_range_cmd,
966 (runner) run_cmd,
967 (void *) eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968}
969
Bram Moolenaard620aa92013-05-17 16:40:06 +0200970 void
971ex_pydo(exarg_T *eap)
972{
Bram Moolenaarb52f4c02013-05-21 18:19:38 +0200973 DoPyCommand((char *)eap->arg,
974 (rangeinitializer) init_range_cmd,
975 (runner)run_do,
976 (void *)eap);
Bram Moolenaard620aa92013-05-17 16:40:06 +0200977}
978
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979/******************************************************
980 * 2. Python output stream: writes output via [e]msg().
981 */
982
983/* Implementation functions
984 */
985
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986 static PyObject *
987OutputGetattr(PyObject *self, char *name)
988{
989 if (strcmp(name, "softspace") == 0)
990 return PyInt_FromLong(((OutputObject *)(self))->softspace);
991
992 return Py_FindMethod(OutputMethods, self, name);
993}
994
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995/******************************************************
996 * 3. Implementation of the Vim module for Python
997 */
998
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999/* Window type - Implementation functions
1000 * --------------------------------------
1001 */
1002
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003#define WindowType_Check(obj) ((obj)->ob_type == &WindowType)
1004
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005/* Buffer type - Implementation functions
1006 * --------------------------------------
1007 */
1008
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009#define BufferType_Check(obj) ((obj)->ob_type == &BufferType)
1010
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001011static PyInt BufferAssItem(PyObject *, PyInt, PyObject *);
1012static PyInt BufferAssSlice(PyObject *, PyInt, PyInt, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014/* Line range type - Implementation functions
1015 * --------------------------------------
1016 */
1017
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018#define RangeType_Check(obj) ((obj)->ob_type == &RangeType)
1019
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001020static PyInt RangeAssItem(PyObject *, PyInt, PyObject *);
1021static PyInt RangeAssSlice(PyObject *, PyInt, PyInt, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023/* Current objects type - Implementation functions
1024 * -----------------------------------------------
1025 */
1026
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027static PySequenceMethods BufferAsSeq = {
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001028 (PyInquiry) BufferLength, /* sq_length, len(x) */
Bram Moolenaar77fceb82012-09-05 18:54:48 +02001029 (binaryfunc) 0, /* BufferConcat, sq_concat, x+y */
1030 (PyIntArgFunc) 0, /* BufferRepeat, sq_repeat, x*n */
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001031 (PyIntArgFunc) BufferItem, /* sq_item, x[i] */
1032 (PyIntIntArgFunc) BufferSlice, /* sq_slice, x[i:j] */
1033 (PyIntObjArgProc) BufferAssItem, /* sq_ass_item, x[i]=v */
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001034 (PyIntIntObjArgProc) BufferAssSlice, /* sq_ass_slice, x[i:j]=v */
1035 (objobjproc) 0,
1036#if PY_MAJOR_VERSION >= 2
1037 (binaryfunc) 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038 0,
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001039#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040};
1041
1042/* Buffer object - Implementation
1043 */
1044
1045 static PyObject *
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046BufferGetattr(PyObject *self, char *name)
1047{
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001048 PyObject *r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001050 if (CheckBuffer((BufferObject *)(self)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 return NULL;
1052
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001053 r = BufferAttr((BufferObject *)(self), name);
1054 if (r || PyErr_Occurred())
1055 return r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056 else
1057 return Py_FindMethod(BufferMethods, self, name);
1058}
1059
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060/******************/
1061
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001062 static PyInt
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001063BufferAssItem(PyObject *self, PyInt n, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064{
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02001065 return RBAsItem((BufferObject *)(self), n, val, 1, -1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066}
1067
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001068 static PyInt
1069BufferAssSlice(PyObject *self, PyInt lo, PyInt hi, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001070{
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02001071 return RBAsSlice((BufferObject *)(self), lo, hi, val, 1, -1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001072}
1073
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074static PySequenceMethods RangeAsSeq = {
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001075 (PyInquiry) RangeLength, /* sq_length, len(x) */
1076 (binaryfunc) 0, /* RangeConcat, */ /* sq_concat, x+y */
1077 (PyIntArgFunc) 0, /* RangeRepeat, */ /* sq_repeat, x*n */
1078 (PyIntArgFunc) RangeItem, /* sq_item, x[i] */
1079 (PyIntIntArgFunc) RangeSlice, /* sq_slice, x[i:j] */
1080 (PyIntObjArgProc) RangeAssItem, /* sq_ass_item, x[i]=v */
1081 (PyIntIntObjArgProc) RangeAssSlice, /* sq_ass_slice, x[i:j]=v */
1082 (objobjproc) 0,
1083#if PY_MAJOR_VERSION >= 2
1084 (binaryfunc) 0,
1085 0,
1086#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087};
1088
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089/* Line range object - Implementation
1090 */
1091
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092 static PyObject *
1093RangeGetattr(PyObject *self, char *name)
1094{
1095 if (strcmp(name, "start") == 0)
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001096 return Py_BuildValue(Py_ssize_t_fmt, ((RangeObject *)(self))->start - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 else if (strcmp(name, "end") == 0)
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001098 return Py_BuildValue(Py_ssize_t_fmt, ((RangeObject *)(self))->end - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099 else
1100 return Py_FindMethod(RangeMethods, self, name);
1101}
1102
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103/****************/
1104
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001105 static PyInt
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001106RangeAssItem(PyObject *self, PyInt n, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107{
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001108 return RBAsItem(((RangeObject *)(self))->buf, n, val,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 ((RangeObject *)(self))->start,
1110 ((RangeObject *)(self))->end,
1111 &((RangeObject *)(self))->end);
1112}
1113
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001114 static PyInt
1115RangeAssSlice(PyObject *self, PyInt lo, PyInt hi, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116{
Bram Moolenaar19e60942011-06-19 00:27:51 +02001117 return RBAsSlice(((RangeObject *)(self))->buf, lo, hi, val,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001118 ((RangeObject *)(self))->start,
1119 ((RangeObject *)(self))->end,
1120 &((RangeObject *)(self))->end);
1121}
1122
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001123/* TabPage object - Implementation
1124 */
1125
1126 static PyObject *
1127TabPageGetattr(PyObject *self, char *name)
1128{
1129 PyObject *r;
1130
1131 if (CheckTabPage((TabPageObject *)(self)))
1132 return NULL;
1133
1134 r = TabPageAttr((TabPageObject *)(self), name);
1135 if (r || PyErr_Occurred())
1136 return r;
1137 else
1138 return Py_FindMethod(TabPageMethods, self, name);
1139}
1140
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141/* Window object - Implementation
1142 */
1143
1144 static PyObject *
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145WindowGetattr(PyObject *self, char *name)
1146{
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001147 PyObject *r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001149 if (CheckWindow((WindowObject *)(self)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150 return NULL;
1151
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001152 r = WindowAttr((WindowObject *)(self), name);
1153 if (r || PyErr_Occurred())
1154 return r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 else
1156 return Py_FindMethod(WindowMethods, self, name);
1157}
1158
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001159/* Tab page list object - Definitions
1160 */
1161
1162static PySequenceMethods TabListAsSeq = {
1163 (PyInquiry) TabListLength, /* sq_length, len(x) */
1164 (binaryfunc) 0, /* sq_concat, x+y */
1165 (PyIntArgFunc) 0, /* sq_repeat, x*n */
1166 (PyIntArgFunc) TabListItem, /* sq_item, x[i] */
1167 (PyIntIntArgFunc) 0, /* sq_slice, x[i:j] */
1168 (PyIntObjArgProc) 0, /* sq_ass_item, x[i]=v */
1169 (PyIntIntObjArgProc) 0, /* sq_ass_slice, x[i:j]=v */
1170 (objobjproc) 0,
1171#if PY_MAJOR_VERSION >= 2
1172 (binaryfunc) 0,
1173 0,
1174#endif
1175};
1176
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177/* Window list object - Definitions
1178 */
1179
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180static PySequenceMethods WinListAsSeq = {
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001181 (PyInquiry) WinListLength, /* sq_length, len(x) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 (binaryfunc) 0, /* sq_concat, x+y */
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001183 (PyIntArgFunc) 0, /* sq_repeat, x*n */
1184 (PyIntArgFunc) WinListItem, /* sq_item, x[i] */
1185 (PyIntIntArgFunc) 0, /* sq_slice, x[i:j] */
1186 (PyIntObjArgProc) 0, /* sq_ass_item, x[i]=v */
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001187 (PyIntIntObjArgProc) 0, /* sq_ass_slice, x[i:j]=v */
1188 (objobjproc) 0,
1189#if PY_MAJOR_VERSION >= 2
1190 (binaryfunc) 0,
1191 0,
1192#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193};
1194
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195/* External interface
1196 */
1197
1198 void
1199python_buffer_free(buf_T *buf)
1200{
Bram Moolenaar971db462013-05-12 18:44:48 +02001201 if (BUF_PYTHON_REF(buf) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202 {
Bram Moolenaar971db462013-05-12 18:44:48 +02001203 BufferObject *bp = BUF_PYTHON_REF(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 bp->buf = INVALID_BUFFER_VALUE;
Bram Moolenaar971db462013-05-12 18:44:48 +02001205 BUF_PYTHON_REF(buf) = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206 }
1207}
1208
1209#if defined(FEAT_WINDOWS) || defined(PROTO)
1210 void
1211python_window_free(win_T *win)
1212{
Bram Moolenaar971db462013-05-12 18:44:48 +02001213 if (WIN_PYTHON_REF(win) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214 {
Bram Moolenaar971db462013-05-12 18:44:48 +02001215 WindowObject *wp = WIN_PYTHON_REF(win);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216 wp->win = INVALID_WINDOW_VALUE;
Bram Moolenaar971db462013-05-12 18:44:48 +02001217 WIN_PYTHON_REF(win) = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001218 }
1219}
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001220
1221 void
1222python_tabpage_free(tabpage_T *tab)
1223{
1224 if (TAB_PYTHON_REF(tab) != NULL)
1225 {
1226 TabPageObject *tp = TAB_PYTHON_REF(tab);
1227 tp->tab = INVALID_TABPAGE_VALUE;
1228 TAB_PYTHON_REF(tab) = NULL;
1229 }
1230}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231#endif
1232
Bram Moolenaar1dc28782013-05-21 19:11:01 +02001233 static int
1234add_object(PyObject *dict, const char *name, PyObject *object)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235{
Bram Moolenaar1dc28782013-05-21 19:11:01 +02001236 if (PyDict_SetItemString(dict, (char *) name, object))
1237 return -1;
1238 Py_DECREF(object);
1239 return 0;
1240}
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001241
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242 static int
1243PythonMod_Init(void)
1244{
1245 PyObject *mod;
1246 PyObject *dict;
Bram Moolenaar1dc28782013-05-21 19:11:01 +02001247
Bram Moolenaar9774ecc2008-11-20 10:04:53 +00001248 /* The special value is removed from sys.path in Python_Init(). */
1249 static char *(argv[2]) = {"/must>not&exist/foo", NULL};
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250
Bram Moolenaar1dc28782013-05-21 19:11:01 +02001251 if (init_types())
1252 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253
1254 /* Set sys.argv[] to avoid a crash in warn(). */
1255 PySys_SetArgv(1, argv);
1256
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001257 mod = Py_InitModule4("vim", VimMethods, (char *)NULL, (PyObject *)NULL, PYTHON_API_VERSION);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258 dict = PyModule_GetDict(mod);
1259
Bram Moolenaar1dc28782013-05-21 19:11:01 +02001260 return populate_module(dict, add_object);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001261}
1262
1263/*************************************************************************
1264 * 4. Utility functions for handling the interface between Vim and Python.
1265 */
1266
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267/* Convert a Vim line into a Python string.
1268 * All internal newlines are replaced by null characters.
1269 *
1270 * On errors, the Python exception data is set, and NULL is returned.
1271 */
1272 static PyObject *
1273LineToString(const char *str)
1274{
1275 PyObject *result;
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001276 PyInt len = strlen(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277 char *p;
1278
1279 /* Allocate an Python string object, with uninitialised contents. We
1280 * must do it this way, so that we can modify the string in place
1281 * later. See the Python source, Objects/stringobject.c for details.
1282 */
1283 result = PyString_FromStringAndSize(NULL, len);
1284 if (result == NULL)
1285 return NULL;
1286
1287 p = PyString_AsString(result);
1288
1289 while (*str)
1290 {
1291 if (*str == '\n')
1292 *p = '\0';
1293 else
1294 *p = *str;
1295
1296 ++p;
1297 ++str;
1298 }
1299
1300 return result;
1301}
1302
Bram Moolenaardb913952012-06-29 12:54:53 +02001303 static PyObject *
1304DictionaryGetattr(PyObject *self, char *name)
1305{
Bram Moolenaar66b79852012-09-21 14:00:35 +02001306 DictionaryObject *this = ((DictionaryObject *) (self));
1307
1308 if (strcmp(name, "locked") == 0)
1309 return PyInt_FromLong(this->dict->dv_lock);
1310 else if (strcmp(name, "scope") == 0)
1311 return PyInt_FromLong(this->dict->dv_scope);
1312
Bram Moolenaardb913952012-06-29 12:54:53 +02001313 return Py_FindMethod(DictionaryMethods, self, name);
1314}
1315
Bram Moolenaardb913952012-06-29 12:54:53 +02001316static PySequenceMethods ListAsSeq = {
1317 (PyInquiry) ListLength,
1318 (binaryfunc) 0,
1319 (PyIntArgFunc) 0,
1320 (PyIntArgFunc) ListItem,
1321 (PyIntIntArgFunc) ListSlice,
1322 (PyIntObjArgProc) ListAssItem,
1323 (PyIntIntObjArgProc) ListAssSlice,
1324 (objobjproc) 0,
1325#if PY_MAJOR_VERSION >= 2
1326 (binaryfunc) ListConcatInPlace,
1327 0,
1328#endif
1329};
1330
Bram Moolenaardb913952012-06-29 12:54:53 +02001331 static PyObject *
1332ListGetattr(PyObject *self, char *name)
1333{
Bram Moolenaar66b79852012-09-21 14:00:35 +02001334 if (strcmp(name, "locked") == 0)
1335 return PyInt_FromLong(((ListObject *)(self))->list->lv_lock);
1336
Bram Moolenaardb913952012-06-29 12:54:53 +02001337 return Py_FindMethod(ListMethods, self, name);
1338}
1339
Bram Moolenaardb913952012-06-29 12:54:53 +02001340 static PyObject *
1341FunctionGetattr(PyObject *self, char *name)
1342{
1343 FunctionObject *this = (FunctionObject *)(self);
1344
1345 if (strcmp(name, "name") == 0)
1346 return PyString_FromString((char *)(this->name));
1347 else
1348 return Py_FindMethod(FunctionMethods, self, name);
1349}
1350
1351 void
1352do_pyeval (char_u *str, typval_T *rettv)
1353{
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02001354 DoPyCommand((char *) str,
1355 (rangeinitializer) init_range_eval,
1356 (runner) run_eval,
1357 (void *) rettv);
Bram Moolenaardb913952012-06-29 12:54:53 +02001358 switch(rettv->v_type)
1359 {
1360 case VAR_DICT: ++rettv->vval.v_dict->dv_refcount; break;
1361 case VAR_LIST: ++rettv->vval.v_list->lv_refcount; break;
1362 case VAR_FUNC: func_ref(rettv->vval.v_string); break;
Bram Moolenaar77fceb82012-09-05 18:54:48 +02001363 case VAR_UNKNOWN:
1364 rettv->v_type = VAR_NUMBER;
1365 rettv->vval.v_number = 0;
1366 break;
Bram Moolenaardb913952012-06-29 12:54:53 +02001367 }
1368}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369
1370/* Don't generate a prototype for the next function, it generates an error on
1371 * newer Python versions. */
1372#if PYTHON_API_VERSION < 1007 /* Python 1.4 */ && !defined(PROTO)
1373
1374 char *
1375Py_GetProgramName(void)
1376{
1377 return "vim";
1378}
1379#endif /* Python 1.4 */
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001380
Bram Moolenaardb913952012-06-29 12:54:53 +02001381 void
1382set_ref_in_python (int copyID)
1383{
1384 set_ref_in_py(copyID);
1385}