blob: 575f8220029c2b956c01995785160ba92cf6d0e9 [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 Moolenaar170bf1a2010-07-24 23:51:45 +020059static void init_structs(void);
60
Bram Moolenaardb913952012-06-29 12:54:53 +020061#define PyBytes_FromString PyString_FromString
Bram Moolenaar335e0b62013-04-24 13:47:45 +020062#define PyBytes_Check PyString_Check
Bram Moolenaardb913952012-06-29 12:54:53 +020063
Bram Moolenaar19e60942011-06-19 00:27:51 +020064/* No-op conversion functions, use with care! */
65#define PyString_AsBytes(obj) (obj)
66#define PyString_FreeBytes(obj)
67
Bram Moolenaar071d4272004-06-13 20:20:40 +000068#if !defined(FEAT_PYTHON) && defined(PROTO)
69/* Use this to be able to generate prototypes without python being used. */
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +000070# define PyObject Py_ssize_t
71# define PyThreadState Py_ssize_t
72# define PyTypeObject Py_ssize_t
73struct PyMethodDef { Py_ssize_t a; };
74# define PySequenceMethods Py_ssize_t
Bram Moolenaar071d4272004-06-13 20:20:40 +000075#endif
76
Bram Moolenaar2afa3232012-06-29 16:28:28 +020077#if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
78# define PY_USE_CAPSULE
79#endif
80
Bram Moolenaar2c45e942008-06-04 11:35:26 +000081#if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02050000
82# define PyInt Py_ssize_t
83# define PyInquiry lenfunc
84# define PyIntArgFunc ssizeargfunc
85# define PyIntIntArgFunc ssizessizeargfunc
86# define PyIntObjArgProc ssizeobjargproc
87# define PyIntIntObjArgProc ssizessizeobjargproc
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +000088# define Py_ssize_t_fmt "n"
Bram Moolenaar2c45e942008-06-04 11:35:26 +000089#else
90# define PyInt int
Bram Moolenaar4d1da492013-04-24 13:39:15 +020091# define lenfunc inquiry
Bram Moolenaar2c45e942008-06-04 11:35:26 +000092# define PyInquiry inquiry
93# define PyIntArgFunc intargfunc
94# define PyIntIntArgFunc intintargfunc
95# define PyIntObjArgProc intobjargproc
96# define PyIntIntObjArgProc intintobjargproc
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +000097# define Py_ssize_t_fmt "i"
Bram Moolenaar2c45e942008-06-04 11:35:26 +000098#endif
99
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100/* Parser flags */
101#define single_input 256
102#define file_input 257
103#define eval_input 258
104
105#if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x020300F0
106 /* Python 2.3: can invoke ":python" recursively. */
107# define PY_CAN_RECURSE
108#endif
109
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200110# if defined(DYNAMIC_PYTHON) || defined(PROTO)
111# ifndef DYNAMIC_PYTHON
112# define HINSTANCE long_u /* for generating prototypes */
113# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200115# ifndef WIN3264
116# include <dlfcn.h>
117# define FARPROC void*
118# define HINSTANCE void*
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100119# if defined(PY_NO_RTLD_GLOBAL) && defined(PY3_NO_RTLD_GLOBAL)
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200120# define load_dll(n) dlopen((n), RTLD_LAZY)
121# else
122# define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL)
123# endif
124# define close_dll dlclose
125# define symbol_from_dll dlsym
126# else
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200127# define load_dll vimLoadLib
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200128# define close_dll FreeLibrary
129# define symbol_from_dll GetProcAddress
130# endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200131
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000132/* This makes if_python.c compile without warnings against Python 2.5
133 * on Win32 and Win64. */
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200134# undef PyRun_SimpleString
Bram Moolenaardb913952012-06-29 12:54:53 +0200135# undef PyRun_String
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200136# undef PyArg_Parse
137# undef PyArg_ParseTuple
138# undef Py_BuildValue
139# undef Py_InitModule4
140# undef Py_InitModule4_64
Bram Moolenaardb913952012-06-29 12:54:53 +0200141# undef PyObject_CallMethod
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000142
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143/*
144 * Wrapper defines
145 */
146# define PyArg_Parse dll_PyArg_Parse
147# define PyArg_ParseTuple dll_PyArg_ParseTuple
Bram Moolenaar19e60942011-06-19 00:27:51 +0200148# define PyMem_Free dll_PyMem_Free
Bram Moolenaardb913952012-06-29 12:54:53 +0200149# define PyMem_Malloc dll_PyMem_Malloc
Bram Moolenaar071d4272004-06-13 20:20:40 +0000150# define PyDict_SetItemString dll_PyDict_SetItemString
151# define PyErr_BadArgument dll_PyErr_BadArgument
152# define PyErr_Clear dll_PyErr_Clear
Bram Moolenaar4d369872013-02-20 16:09:43 +0100153# define PyErr_PrintEx dll_PyErr_PrintEx
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154# define PyErr_NoMemory dll_PyErr_NoMemory
155# define PyErr_Occurred dll_PyErr_Occurred
156# define PyErr_SetNone dll_PyErr_SetNone
157# define PyErr_SetString dll_PyErr_SetString
158# 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 Moolenaar071d4272004-06-13 20:20:40 +0000199# define PyString_AsString dll_PyString_AsString
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200200# define PyString_AsStringAndSize dll_PyString_AsStringAndSize
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201# define PyString_FromString dll_PyString_FromString
202# define PyString_FromStringAndSize dll_PyString_FromStringAndSize
203# define PyString_Size dll_PyString_Size
204# define PyString_Type (*dll_PyString_Type)
Bram Moolenaardb913952012-06-29 12:54:53 +0200205# define PyUnicode_Type (*dll_PyUnicode_Type)
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200206# undef PyUnicode_AsEncodedString
207# define PyUnicode_AsEncodedString py_PyUnicode_AsEncodedString
Bram Moolenaardb913952012-06-29 12:54:53 +0200208# define PyFloat_AsDouble dll_PyFloat_AsDouble
209# define PyFloat_FromDouble dll_PyFloat_FromDouble
210# define PyFloat_Type (*dll_PyFloat_Type)
211# define PyImport_AddModule (*dll_PyImport_AddModule)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212# define PySys_SetObject dll_PySys_SetObject
213# define PySys_SetArgv dll_PySys_SetArgv
214# define PyType_Type (*dll_PyType_Type)
Bram Moolenaar30fec7b2011-03-26 18:32:05 +0100215# define PyType_Ready (*dll_PyType_Ready)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216# define Py_BuildValue dll_Py_BuildValue
217# define Py_FindMethod dll_Py_FindMethod
218# define Py_InitModule4 dll_Py_InitModule4
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100219# define Py_SetPythonHome dll_Py_SetPythonHome
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220# define Py_Initialize dll_Py_Initialize
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000221# define Py_Finalize dll_Py_Finalize
222# define Py_IsInitialized dll_Py_IsInitialized
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223# define _PyObject_New dll__PyObject_New
Bram Moolenaare7211222012-06-30 13:21:08 +0200224# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
225# define _PyObject_NextNotImplemented (*dll__PyObject_NextNotImplemented)
226# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227# define _Py_NoneStruct (*dll__Py_NoneStruct)
Bram Moolenaar66b79852012-09-21 14:00:35 +0200228# define _Py_ZeroStruct (*dll__Py_ZeroStruct)
229# define _Py_TrueStruct (*dll__Py_TrueStruct)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230# define PyObject_Init dll__PyObject_Init
Bram Moolenaardb913952012-06-29 12:54:53 +0200231# define PyObject_GetIter dll_PyObject_GetIter
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200232# define PyObject_IsTrue dll_PyObject_IsTrue
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
234# define PyType_IsSubtype dll_PyType_IsSubtype
235# endif
236# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
237# define PyObject_Malloc dll_PyObject_Malloc
238# define PyObject_Free dll_PyObject_Free
239# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200240# ifdef PY_USE_CAPSULE
241# define PyCapsule_New dll_PyCapsule_New
242# define PyCapsule_GetPointer dll_PyCapsule_GetPointer
243# else
244# define PyCObject_FromVoidPtr dll_PyCObject_FromVoidPtr
245# define PyCObject_AsVoidPtr dll_PyCObject_AsVoidPtr
246# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247
248/*
249 * Pointers for dynamic link
250 */
251static int(*dll_PyArg_Parse)(PyObject *, char *, ...);
252static int(*dll_PyArg_ParseTuple)(PyObject *, char *, ...);
Bram Moolenaar19e60942011-06-19 00:27:51 +0200253static int(*dll_PyMem_Free)(void *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200254static void* (*dll_PyMem_Malloc)(size_t);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255static int(*dll_PyDict_SetItemString)(PyObject *dp, char *key, PyObject *item);
256static int(*dll_PyErr_BadArgument)(void);
257static void(*dll_PyErr_Clear)(void);
Bram Moolenaar4d369872013-02-20 16:09:43 +0100258static void(*dll_PyErr_PrintEx)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259static PyObject*(*dll_PyErr_NoMemory)(void);
260static PyObject*(*dll_PyErr_Occurred)(void);
261static void(*dll_PyErr_SetNone)(PyObject *);
262static void(*dll_PyErr_SetString)(PyObject *, const char *);
263static void(*dll_PyEval_InitThreads)(void);
264static void(*dll_PyEval_RestoreThread)(PyThreadState *);
265static PyThreadState*(*dll_PyEval_SaveThread)(void);
266# ifdef PY_CAN_RECURSE
267static PyGILState_STATE (*dll_PyGILState_Ensure)(void);
268static void (*dll_PyGILState_Release)(PyGILState_STATE);
Bram Moolenaardb913952012-06-29 12:54:53 +0200269# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270static long(*dll_PyInt_AsLong)(PyObject *);
271static PyObject*(*dll_PyInt_FromLong)(long);
Bram Moolenaardb913952012-06-29 12:54:53 +0200272static long(*dll_PyLong_AsLong)(PyObject *);
273static PyObject*(*dll_PyLong_FromLong)(long);
Bram Moolenaar66b79852012-09-21 14:00:35 +0200274static PyTypeObject* dll_PyBool_Type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275static PyTypeObject* dll_PyInt_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200276static PyTypeObject* dll_PyLong_Type;
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000277static PyObject*(*dll_PyList_GetItem)(PyObject *, PyInt);
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000278static PyObject*(*dll_PyList_Append)(PyObject *, PyObject *);
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000279static PyObject*(*dll_PyList_New)(PyInt size);
280static int(*dll_PyList_SetItem)(PyObject *, PyInt, PyObject *);
281static PyInt(*dll_PyList_Size)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282static PyTypeObject* dll_PyList_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200283static int (*dll_PySequence_Check)(PyObject *);
284static PyInt(*dll_PySequence_Size)(PyObject *);
285static PyObject*(*dll_PySequence_GetItem)(PyObject *, PyInt);
286static PyInt(*dll_PyTuple_Size)(PyObject *);
287static PyObject*(*dll_PyTuple_GetItem)(PyObject *, PyInt);
288static PyTypeObject* dll_PyTuple_Type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289static PyObject*(*dll_PyImport_ImportModule)(const char *);
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000290static PyObject*(*dll_PyDict_New)(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291static PyObject*(*dll_PyDict_GetItemString)(PyObject *, const char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200292static int (*dll_PyDict_Next)(PyObject *, Py_ssize_t *, PyObject **, PyObject **);
293# ifndef PY_NO_MAPPING_ITEMS
294static PyObject* (*dll_PyMapping_Items)(PyObject *);
295# endif
296static PyObject* (*dll_PyObject_CallMethod)(PyObject *, char *, PyObject *);
297static int (*dll_PyMapping_Check)(PyObject *);
298static PyObject* (*dll_PyIter_Next)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299static PyObject*(*dll_PyModule_GetDict)(PyObject *);
300static int(*dll_PyRun_SimpleString)(char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200301static PyObject *(*dll_PyRun_String)(char *, int, PyObject *, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302static char*(*dll_PyString_AsString)(PyObject *);
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200303static int(*dll_PyString_AsStringAndSize)(PyObject *, char **, int *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304static PyObject*(*dll_PyString_FromString)(const char *);
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000305static PyObject*(*dll_PyString_FromStringAndSize)(const char *, PyInt);
306static PyInt(*dll_PyString_Size)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307static PyTypeObject* dll_PyString_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200308static PyTypeObject* dll_PyUnicode_Type;
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200309static PyObject *(*py_PyUnicode_AsEncodedString)(PyObject *, char *, char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200310static double(*dll_PyFloat_AsDouble)(PyObject *);
311static PyObject*(*dll_PyFloat_FromDouble)(double);
312static PyTypeObject* dll_PyFloat_Type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313static int(*dll_PySys_SetObject)(char *, PyObject *);
314static int(*dll_PySys_SetArgv)(int, char **);
315static PyTypeObject* dll_PyType_Type;
Bram Moolenaar30fec7b2011-03-26 18:32:05 +0100316static int (*dll_PyType_Ready)(PyTypeObject *type);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317static PyObject*(*dll_Py_BuildValue)(char *, ...);
318static PyObject*(*dll_Py_FindMethod)(struct PyMethodDef[], PyObject *, char *);
319static PyObject*(*dll_Py_InitModule4)(char *, struct PyMethodDef *, char *, PyObject *, int);
Bram Moolenaardb913952012-06-29 12:54:53 +0200320static PyObject*(*dll_PyImport_AddModule)(char *);
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100321static void(*dll_Py_SetPythonHome)(char *home);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322static void(*dll_Py_Initialize)(void);
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000323static void(*dll_Py_Finalize)(void);
324static int(*dll_Py_IsInitialized)(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000325static PyObject*(*dll__PyObject_New)(PyTypeObject *, PyObject *);
326static PyObject*(*dll__PyObject_Init)(PyObject *, PyTypeObject *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200327static PyObject* (*dll_PyObject_GetIter)(PyObject *);
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200328static int (*dll_PyObject_IsTrue)(PyObject *);
Bram Moolenaare7211222012-06-30 13:21:08 +0200329# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
Bram Moolenaardb913952012-06-29 12:54:53 +0200330static iternextfunc dll__PyObject_NextNotImplemented;
Bram Moolenaare7211222012-06-30 13:21:08 +0200331# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332static PyObject* dll__Py_NoneStruct;
Bram Moolenaar66b79852012-09-21 14:00:35 +0200333static PyObject* _Py_ZeroStruct;
334static PyObject* dll__Py_TrueStruct;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
336static int (*dll_PyType_IsSubtype)(PyTypeObject *, PyTypeObject *);
337# endif
338# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
339static void* (*dll_PyObject_Malloc)(size_t);
340static void (*dll_PyObject_Free)(void*);
341# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200342# ifdef PY_USE_CAPSULE
Bram Moolenaardb913952012-06-29 12:54:53 +0200343static PyObject* (*dll_PyCapsule_New)(void *, char *, PyCapsule_Destructor);
344static void* (*dll_PyCapsule_GetPointer)(PyObject *, char *);
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200345# else
Bram Moolenaar221d6872012-06-30 13:34:34 +0200346static PyObject* (*dll_PyCObject_FromVoidPtr)(void *cobj, void (*destr)(void *));
347static void* (*dll_PyCObject_AsVoidPtr)(PyObject *);
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200348# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349
350static HINSTANCE hinstPython = 0; /* Instance of python.dll */
351
352/* Imported exception objects */
353static PyObject *imp_PyExc_AttributeError;
354static PyObject *imp_PyExc_IndexError;
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200355static PyObject *imp_PyExc_KeyError;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356static PyObject *imp_PyExc_KeyboardInterrupt;
357static PyObject *imp_PyExc_TypeError;
358static PyObject *imp_PyExc_ValueError;
359
360# define PyExc_AttributeError imp_PyExc_AttributeError
361# define PyExc_IndexError imp_PyExc_IndexError
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200362# define PyExc_KeyError imp_PyExc_KeyError
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363# define PyExc_KeyboardInterrupt imp_PyExc_KeyboardInterrupt
364# define PyExc_TypeError imp_PyExc_TypeError
365# define PyExc_ValueError imp_PyExc_ValueError
366
367/*
368 * Table of name to function pointer of python.
369 */
370# define PYTHON_PROC FARPROC
371static struct
372{
373 char *name;
374 PYTHON_PROC *ptr;
375} python_funcname_table[] =
376{
Bram Moolenaare8cdcef2012-09-12 20:21:43 +0200377#ifndef PY_SSIZE_T_CLEAN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378 {"PyArg_Parse", (PYTHON_PROC*)&dll_PyArg_Parse},
379 {"PyArg_ParseTuple", (PYTHON_PROC*)&dll_PyArg_ParseTuple},
Bram Moolenaare8cdcef2012-09-12 20:21:43 +0200380 {"Py_BuildValue", (PYTHON_PROC*)&dll_Py_BuildValue},
381#else
382 {"_PyArg_Parse_SizeT", (PYTHON_PROC*)&dll_PyArg_Parse},
383 {"_PyArg_ParseTuple_SizeT", (PYTHON_PROC*)&dll_PyArg_ParseTuple},
384 {"_Py_BuildValue_SizeT", (PYTHON_PROC*)&dll_Py_BuildValue},
385#endif
Bram Moolenaar19e60942011-06-19 00:27:51 +0200386 {"PyMem_Free", (PYTHON_PROC*)&dll_PyMem_Free},
Bram Moolenaardb913952012-06-29 12:54:53 +0200387 {"PyMem_Malloc", (PYTHON_PROC*)&dll_PyMem_Malloc},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388 {"PyDict_SetItemString", (PYTHON_PROC*)&dll_PyDict_SetItemString},
389 {"PyErr_BadArgument", (PYTHON_PROC*)&dll_PyErr_BadArgument},
390 {"PyErr_Clear", (PYTHON_PROC*)&dll_PyErr_Clear},
Bram Moolenaar4d369872013-02-20 16:09:43 +0100391 {"PyErr_PrintEx", (PYTHON_PROC*)&dll_PyErr_PrintEx},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392 {"PyErr_NoMemory", (PYTHON_PROC*)&dll_PyErr_NoMemory},
393 {"PyErr_Occurred", (PYTHON_PROC*)&dll_PyErr_Occurred},
394 {"PyErr_SetNone", (PYTHON_PROC*)&dll_PyErr_SetNone},
395 {"PyErr_SetString", (PYTHON_PROC*)&dll_PyErr_SetString},
396 {"PyEval_InitThreads", (PYTHON_PROC*)&dll_PyEval_InitThreads},
397 {"PyEval_RestoreThread", (PYTHON_PROC*)&dll_PyEval_RestoreThread},
398 {"PyEval_SaveThread", (PYTHON_PROC*)&dll_PyEval_SaveThread},
399# ifdef PY_CAN_RECURSE
400 {"PyGILState_Ensure", (PYTHON_PROC*)&dll_PyGILState_Ensure},
401 {"PyGILState_Release", (PYTHON_PROC*)&dll_PyGILState_Release},
402# endif
403 {"PyInt_AsLong", (PYTHON_PROC*)&dll_PyInt_AsLong},
404 {"PyInt_FromLong", (PYTHON_PROC*)&dll_PyInt_FromLong},
Bram Moolenaardb913952012-06-29 12:54:53 +0200405 {"PyLong_AsLong", (PYTHON_PROC*)&dll_PyLong_AsLong},
406 {"PyLong_FromLong", (PYTHON_PROC*)&dll_PyLong_FromLong},
Bram Moolenaar66b79852012-09-21 14:00:35 +0200407 {"PyBool_Type", (PYTHON_PROC*)&dll_PyBool_Type},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408 {"PyInt_Type", (PYTHON_PROC*)&dll_PyInt_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200409 {"PyLong_Type", (PYTHON_PROC*)&dll_PyLong_Type},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410 {"PyList_GetItem", (PYTHON_PROC*)&dll_PyList_GetItem},
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000411 {"PyList_Append", (PYTHON_PROC*)&dll_PyList_Append},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412 {"PyList_New", (PYTHON_PROC*)&dll_PyList_New},
413 {"PyList_SetItem", (PYTHON_PROC*)&dll_PyList_SetItem},
414 {"PyList_Size", (PYTHON_PROC*)&dll_PyList_Size},
415 {"PyList_Type", (PYTHON_PROC*)&dll_PyList_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200416 {"PySequence_GetItem", (PYTHON_PROC*)&dll_PySequence_GetItem},
417 {"PySequence_Size", (PYTHON_PROC*)&dll_PySequence_Size},
418 {"PySequence_Check", (PYTHON_PROC*)&dll_PySequence_Check},
419 {"PyTuple_GetItem", (PYTHON_PROC*)&dll_PyTuple_GetItem},
420 {"PyTuple_Size", (PYTHON_PROC*)&dll_PyTuple_Size},
421 {"PyTuple_Type", (PYTHON_PROC*)&dll_PyTuple_Type},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422 {"PyImport_ImportModule", (PYTHON_PROC*)&dll_PyImport_ImportModule},
423 {"PyDict_GetItemString", (PYTHON_PROC*)&dll_PyDict_GetItemString},
Bram Moolenaardb913952012-06-29 12:54:53 +0200424 {"PyDict_Next", (PYTHON_PROC*)&dll_PyDict_Next},
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000425 {"PyDict_New", (PYTHON_PROC*)&dll_PyDict_New},
Bram Moolenaardb913952012-06-29 12:54:53 +0200426# ifndef PY_NO_MAPPING_ITEMS
427 {"PyMapping_Items", (PYTHON_PROC*)&dll_PyMapping_Items},
428# endif
429 {"PyObject_CallMethod", (PYTHON_PROC*)&dll_PyObject_CallMethod},
430 {"PyMapping_Check", (PYTHON_PROC*)&dll_PyMapping_Check},
431 {"PyIter_Next", (PYTHON_PROC*)&dll_PyIter_Next},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432 {"PyModule_GetDict", (PYTHON_PROC*)&dll_PyModule_GetDict},
433 {"PyRun_SimpleString", (PYTHON_PROC*)&dll_PyRun_SimpleString},
Bram Moolenaardb913952012-06-29 12:54:53 +0200434 {"PyRun_String", (PYTHON_PROC*)&dll_PyRun_String},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435 {"PyString_AsString", (PYTHON_PROC*)&dll_PyString_AsString},
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200436 {"PyString_AsStringAndSize", (PYTHON_PROC*)&dll_PyString_AsStringAndSize},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437 {"PyString_FromString", (PYTHON_PROC*)&dll_PyString_FromString},
438 {"PyString_FromStringAndSize", (PYTHON_PROC*)&dll_PyString_FromStringAndSize},
439 {"PyString_Size", (PYTHON_PROC*)&dll_PyString_Size},
440 {"PyString_Type", (PYTHON_PROC*)&dll_PyString_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200441 {"PyUnicode_Type", (PYTHON_PROC*)&dll_PyUnicode_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200442 {"PyFloat_Type", (PYTHON_PROC*)&dll_PyFloat_Type},
443 {"PyFloat_AsDouble", (PYTHON_PROC*)&dll_PyFloat_AsDouble},
444 {"PyFloat_FromDouble", (PYTHON_PROC*)&dll_PyFloat_FromDouble},
445 {"PyImport_AddModule", (PYTHON_PROC*)&dll_PyImport_AddModule},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000446 {"PySys_SetObject", (PYTHON_PROC*)&dll_PySys_SetObject},
447 {"PySys_SetArgv", (PYTHON_PROC*)&dll_PySys_SetArgv},
448 {"PyType_Type", (PYTHON_PROC*)&dll_PyType_Type},
Bram Moolenaar30fec7b2011-03-26 18:32:05 +0100449 {"PyType_Ready", (PYTHON_PROC*)&dll_PyType_Ready},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000450 {"Py_FindMethod", (PYTHON_PROC*)&dll_Py_FindMethod},
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200451# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02050000 \
452 && SIZEOF_SIZE_T != SIZEOF_INT
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000453 {"Py_InitModule4_64", (PYTHON_PROC*)&dll_Py_InitModule4},
454# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000455 {"Py_InitModule4", (PYTHON_PROC*)&dll_Py_InitModule4},
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000456# endif
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100457 {"Py_SetPythonHome", (PYTHON_PROC*)&dll_Py_SetPythonHome},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 {"Py_Initialize", (PYTHON_PROC*)&dll_Py_Initialize},
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000459 {"Py_Finalize", (PYTHON_PROC*)&dll_Py_Finalize},
460 {"Py_IsInitialized", (PYTHON_PROC*)&dll_Py_IsInitialized},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461 {"_PyObject_New", (PYTHON_PROC*)&dll__PyObject_New},
462 {"PyObject_Init", (PYTHON_PROC*)&dll__PyObject_Init},
Bram Moolenaardb913952012-06-29 12:54:53 +0200463 {"PyObject_GetIter", (PYTHON_PROC*)&dll_PyObject_GetIter},
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200464 {"PyObject_IsTrue", (PYTHON_PROC*)&dll_PyObject_IsTrue},
Bram Moolenaare7211222012-06-30 13:21:08 +0200465# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
Bram Moolenaardb913952012-06-29 12:54:53 +0200466 {"_PyObject_NextNotImplemented", (PYTHON_PROC*)&dll__PyObject_NextNotImplemented},
Bram Moolenaare7211222012-06-30 13:21:08 +0200467# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000468 {"_Py_NoneStruct", (PYTHON_PROC*)&dll__Py_NoneStruct},
Bram Moolenaar66b79852012-09-21 14:00:35 +0200469 {"_Py_ZeroStruct", (PYTHON_PROC*)&dll__Py_ZeroStruct},
470 {"_Py_TrueStruct", (PYTHON_PROC*)&dll__Py_TrueStruct},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
472 {"PyType_IsSubtype", (PYTHON_PROC*)&dll_PyType_IsSubtype},
473# endif
474# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
475 {"PyObject_Malloc", (PYTHON_PROC*)&dll_PyObject_Malloc},
476 {"PyObject_Free", (PYTHON_PROC*)&dll_PyObject_Free},
477# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200478# ifdef PY_USE_CAPSULE
Bram Moolenaardb913952012-06-29 12:54:53 +0200479 {"PyCapsule_New", (PYTHON_PROC*)&dll_PyCapsule_New},
480 {"PyCapsule_GetPointer", (PYTHON_PROC*)&dll_PyCapsule_GetPointer},
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200481# else
482 {"PyCObject_FromVoidPtr", (PYTHON_PROC*)&dll_PyCObject_FromVoidPtr},
483 {"PyCObject_AsVoidPtr", (PYTHON_PROC*)&dll_PyCObject_AsVoidPtr},
484# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485 {"", NULL},
486};
487
488/*
489 * Free python.dll
490 */
491 static void
492end_dynamic_python(void)
493{
494 if (hinstPython)
495 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200496 close_dll(hinstPython);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000497 hinstPython = 0;
498 }
499}
500
501/*
502 * Load library and get all pointers.
503 * Parameter 'libname' provides name of DLL.
504 * Return OK or FAIL.
505 */
506 static int
507python_runtime_link_init(char *libname, int verbose)
508{
509 int i;
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200510 void *ucs_as_encoded_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100512#if !(defined(PY_NO_RTLD_GLOBAL) && defined(PY3_NO_RTLD_GLOBAL)) && defined(UNIX) && defined(FEAT_PYTHON3)
Bram Moolenaarb744b2f2010-08-13 16:22:57 +0200513 /* Can't have Python and Python3 loaded at the same time.
514 * It cause a crash, because RTLD_GLOBAL is needed for
515 * standard C extension libraries of one or both python versions. */
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200516 if (python3_loaded())
517 {
Bram Moolenaar9dc93ae2011-08-28 16:00:19 +0200518 if (verbose)
519 EMSG(_("E836: This Vim cannot execute :python after using :py3"));
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200520 return FAIL;
521 }
522#endif
523
Bram Moolenaar071d4272004-06-13 20:20:40 +0000524 if (hinstPython)
525 return OK;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200526 hinstPython = load_dll(libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 if (!hinstPython)
528 {
529 if (verbose)
530 EMSG2(_(e_loadlib), libname);
531 return FAIL;
532 }
533
534 for (i = 0; python_funcname_table[i].ptr; ++i)
535 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200536 if ((*python_funcname_table[i].ptr = symbol_from_dll(hinstPython,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000537 python_funcname_table[i].name)) == NULL)
538 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200539 close_dll(hinstPython);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540 hinstPython = 0;
541 if (verbose)
542 EMSG2(_(e_loadfunc), python_funcname_table[i].name);
543 return FAIL;
544 }
545 }
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200546
547 /* Load unicode functions separately as only the ucs2 or the ucs4 functions
548 * will be present in the library. */
549 ucs_as_encoded_string = symbol_from_dll(hinstPython,
550 "PyUnicodeUCS2_AsEncodedString");
551 if (ucs_as_encoded_string == NULL)
552 ucs_as_encoded_string = symbol_from_dll(hinstPython,
553 "PyUnicodeUCS4_AsEncodedString");
554 if (ucs_as_encoded_string != NULL)
555 py_PyUnicode_AsEncodedString = ucs_as_encoded_string;
556 else
557 {
558 close_dll(hinstPython);
559 hinstPython = 0;
560 if (verbose)
561 EMSG2(_(e_loadfunc), "PyUnicode_UCSX_*");
562 return FAIL;
563 }
564
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565 return OK;
566}
567
568/*
569 * If python is enabled (there is installed python on Windows system) return
570 * TRUE, else FALSE.
571 */
572 int
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000573python_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000574{
575 return python_runtime_link_init(DYNAMIC_PYTHON_DLL, verbose) == OK;
576}
577
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200578/*
579 * Load the standard Python exceptions - don't import the symbols from the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580 * DLL, as this can cause errors (importing data symbols is not reliable).
581 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582 static void
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200583get_exceptions(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000584{
585 PyObject *exmod = PyImport_ImportModule("exceptions");
586 PyObject *exdict = PyModule_GetDict(exmod);
587 imp_PyExc_AttributeError = PyDict_GetItemString(exdict, "AttributeError");
588 imp_PyExc_IndexError = PyDict_GetItemString(exdict, "IndexError");
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200589 imp_PyExc_KeyError = PyDict_GetItemString(exdict, "KeyError");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590 imp_PyExc_KeyboardInterrupt = PyDict_GetItemString(exdict, "KeyboardInterrupt");
591 imp_PyExc_TypeError = PyDict_GetItemString(exdict, "TypeError");
592 imp_PyExc_ValueError = PyDict_GetItemString(exdict, "ValueError");
593 Py_XINCREF(imp_PyExc_AttributeError);
594 Py_XINCREF(imp_PyExc_IndexError);
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200595 Py_XINCREF(imp_PyExc_KeyError);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000596 Py_XINCREF(imp_PyExc_KeyboardInterrupt);
597 Py_XINCREF(imp_PyExc_TypeError);
598 Py_XINCREF(imp_PyExc_ValueError);
599 Py_XDECREF(exmod);
600}
601#endif /* DYNAMIC_PYTHON */
602
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200603static PyObject *BufferNew (buf_T *);
604static PyObject *WindowNew(win_T *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200605static PyObject *DictionaryNew(dict_T *);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200606static PyObject *LineToString(const char *);
607
Bram Moolenaardb913952012-06-29 12:54:53 +0200608static int initialised = 0;
609#define PYINITIALISED initialised
610
Bram Moolenaardb913952012-06-29 12:54:53 +0200611#define DICTKEY_GET(err) \
612 if (!PyString_Check(keyObject)) \
613 { \
614 PyErr_SetString(PyExc_TypeError, _("only string keys are allowed")); \
615 return err; \
616 } \
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200617 if (PyString_AsStringAndSize(keyObject, (char **) &key, NULL) == -1) \
618 return err;
619
Bram Moolenaardb913952012-06-29 12:54:53 +0200620#define DICTKEY_UNREF
621#define DICTKEY_DECL
622
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200623#define DESTRUCTOR_FINISH(self) Py_DECREF(self);
624
Bram Moolenaar971db462013-05-12 18:44:48 +0200625#define WIN_PYTHON_REF(win) win->w_python_ref
626#define BUF_PYTHON_REF(buf) buf->b_python_ref
627
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200628static PyObject *OutputGetattr(PyObject *, char *);
629static PyObject *BufferGetattr(PyObject *, char *);
630static PyObject *WindowGetattr(PyObject *, char *);
631static PyObject *RangeGetattr(PyObject *, char *);
632static PyObject *DictionaryGetattr(PyObject *, char*);
633static PyObject *ListGetattr(PyObject *, char *);
634static PyObject *FunctionGetattr(PyObject *, char *);
635
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200636/*
637 * Include the code shared with if_python3.c
638 */
639#include "if_py_both.h"
640
641
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642/******************************************************
643 * Internal function prototypes.
644 */
645
Bram Moolenaardb913952012-06-29 12:54:53 +0200646static PyObject *globals;
647
Bram Moolenaar071d4272004-06-13 20:20:40 +0000648static void PythonIO_Flush(void);
649static int PythonIO_Init(void);
650static int PythonMod_Init(void);
651
652/* Utility functions for the vim/python interface
653 * ----------------------------------------------
654 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000656static int SetBufferLineList(buf_T *, PyInt, PyInt, PyObject *, PyInt *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658
659/******************************************************
660 * 1. Python interpreter main program.
661 */
662
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663#if PYTHON_API_VERSION < 1007 /* Python 1.4 */
664typedef PyObject PyThreadState;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000665#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000667#ifdef PY_CAN_RECURSE
668static PyGILState_STATE pygilstate = PyGILState_UNLOCKED;
669#else
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000670static PyThreadState *saved_python_thread = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000671#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672
673/*
674 * Suspend a thread of the Python interpreter, other threads are allowed to
675 * run.
676 */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000677 static void
678Python_SaveThread(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000679{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000680#ifdef PY_CAN_RECURSE
681 PyGILState_Release(pygilstate);
682#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000683 saved_python_thread = PyEval_SaveThread();
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000684#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685}
686
687/*
688 * Restore a thread of the Python interpreter, waits for other threads to
689 * block.
690 */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000691 static void
692Python_RestoreThread(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000694#ifdef PY_CAN_RECURSE
695 pygilstate = PyGILState_Ensure();
696#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697 PyEval_RestoreThread(saved_python_thread);
698 saved_python_thread = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000700}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000701
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 void
703python_end()
704{
Bram Moolenaara5792f52005-11-23 21:25:05 +0000705 static int recurse = 0;
706
707 /* If a crash occurs while doing this, don't try again. */
708 if (recurse != 0)
709 return;
710
711 ++recurse;
712
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713#ifdef DYNAMIC_PYTHON
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000714 if (hinstPython && Py_IsInitialized())
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000715 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000716 Python_RestoreThread(); /* enter python */
717 Py_Finalize();
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000718 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000719 end_dynamic_python();
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000720#else
721 if (Py_IsInitialized())
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000722 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000723 Python_RestoreThread(); /* enter python */
724 Py_Finalize();
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000725 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726#endif
Bram Moolenaara5792f52005-11-23 21:25:05 +0000727
728 --recurse;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729}
730
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200731#if (defined(DYNAMIC_PYTHON) && defined(FEAT_PYTHON3)) || defined(PROTO)
732 int
733python_loaded()
734{
735 return (hinstPython != 0);
736}
737#endif
738
Bram Moolenaar071d4272004-06-13 20:20:40 +0000739 static int
740Python_Init(void)
741{
742 if (!initialised)
743 {
744#ifdef DYNAMIC_PYTHON
745 if (!python_enabled(TRUE))
746 {
747 EMSG(_("E263: Sorry, this command is disabled, the Python library could not be loaded."));
748 goto fail;
749 }
750#endif
751
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100752#ifdef PYTHON_HOME
753 Py_SetPythonHome(PYTHON_HOME);
754#endif
755
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200756 init_structs();
757
Bram Moolenaar071d4272004-06-13 20:20:40 +0000758#if !defined(MACOS) || defined(MACOS_X_UNIX)
759 Py_Initialize();
760#else
761 PyMac_Initialize();
762#endif
Bram Moolenaar02366252013-01-30 11:44:39 +0100763 /* Initialise threads, and below save the state using
Bram Moolenaar76d711c2013-02-13 14:17:08 +0100764 * PyEval_SaveThread. Without the call to PyEval_SaveThread, thread
Bram Moolenaar02366252013-01-30 11:44:39 +0100765 * specific state (such as the system trace hook), will be lost
766 * between invocations of Python code. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767 PyEval_InitThreads();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768#ifdef DYNAMIC_PYTHON
769 get_exceptions();
770#endif
771
772 if (PythonIO_Init())
773 goto fail;
774
775 if (PythonMod_Init())
776 goto fail;
777
Bram Moolenaardb913952012-06-29 12:54:53 +0200778 globals = PyModule_GetDict(PyImport_AddModule("__main__"));
779
Bram Moolenaar9774ecc2008-11-20 10:04:53 +0000780 /* Remove the element from sys.path that was added because of our
781 * argv[0] value in PythonMod_Init(). Previously we used an empty
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200782 * string, but depending on the OS we then get an empty entry or
Bram Moolenaar9774ecc2008-11-20 10:04:53 +0000783 * the current directory in sys.path. */
784 PyRun_SimpleString("import sys; sys.path = filter(lambda x: x != '/must>not&exist', sys.path)");
785
Bram Moolenaar76d711c2013-02-13 14:17:08 +0100786 /* lock is created and acquired in PyEval_InitThreads() and thread
787 * state is created in Py_Initialize()
788 * there _PyGILState_NoteThreadState() also sets gilcounter to 1
789 * (python must have threads enabled!)
790 * so the following does both: unlock GIL and save thread state in TLS
791 * without deleting thread state
792 */
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200793#ifndef PY_CAN_RECURSE
794 saved_python_thread =
795#endif
796 PyEval_SaveThread();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000797
798 initialised = 1;
799 }
800
801 return 0;
802
803fail:
804 /* We call PythonIO_Flush() here to print any Python errors.
805 * This is OK, as it is possible to call this function even
806 * if PythonIO_Init() has not completed successfully (it will
807 * not do anything in this case).
808 */
809 PythonIO_Flush();
810 return -1;
811}
812
813/*
814 * External interface
815 */
816 static void
Bram Moolenaardb913952012-06-29 12:54:53 +0200817DoPythonCommand(exarg_T *eap, const char *cmd, typval_T *rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000819#ifndef PY_CAN_RECURSE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 static int recursive = 0;
821#endif
822#if defined(MACOS) && !defined(MACOS_X_UNIX)
823 GrafPtr oldPort;
824#endif
825#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
826 char *saved_locale;
827#endif
828
829#ifndef PY_CAN_RECURSE
830 if (recursive)
831 {
832 EMSG(_("E659: Cannot invoke Python recursively"));
833 return;
834 }
835 ++recursive;
836#endif
837
838#if defined(MACOS) && !defined(MACOS_X_UNIX)
839 GetPort(&oldPort);
840 /* Check if the Python library is available */
841 if ((Ptr)PyMac_Initialize == (Ptr)kUnresolvedCFragSymbolAddress)
842 goto theend;
843#endif
844 if (Python_Init())
845 goto theend;
846
Bram Moolenaardb913952012-06-29 12:54:53 +0200847 if (rettv == NULL)
848 {
849 RangeStart = eap->line1;
850 RangeEnd = eap->line2;
851 }
852 else
853 {
854 RangeStart = (PyInt) curwin->w_cursor.lnum;
855 RangeEnd = RangeStart;
856 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857 Python_Release_Vim(); /* leave vim */
858
859#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
860 /* Python only works properly when the LC_NUMERIC locale is "C". */
861 saved_locale = setlocale(LC_NUMERIC, NULL);
862 if (saved_locale == NULL || STRCMP(saved_locale, "C") == 0)
863 saved_locale = NULL;
864 else
865 {
866 /* Need to make a copy, value may change when setting new locale. */
867 saved_locale = (char *)vim_strsave((char_u *)saved_locale);
868 (void)setlocale(LC_NUMERIC, "C");
869 }
870#endif
871
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872 Python_RestoreThread(); /* enter python */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873
Bram Moolenaardb913952012-06-29 12:54:53 +0200874 if (rettv == NULL)
875 PyRun_SimpleString((char *)(cmd));
876 else
877 {
878 PyObject *r;
879
880 r = PyRun_String((char *)(cmd), Py_eval_input, globals, globals);
881 if (r == NULL)
Bram Moolenaar4d369872013-02-20 16:09:43 +0100882 {
883 if (PyErr_Occurred() && !msg_silent)
884 PyErr_PrintEx(0);
Bram Moolenaardb913952012-06-29 12:54:53 +0200885 EMSG(_("E858: Eval did not return a valid python object"));
Bram Moolenaar4d369872013-02-20 16:09:43 +0100886 }
Bram Moolenaardb913952012-06-29 12:54:53 +0200887 else
888 {
889 if (ConvertFromPyObject(r, rettv) == -1)
890 EMSG(_("E859: Failed to convert returned python object to vim value"));
891 Py_DECREF(r);
892 }
893 PyErr_Clear();
894 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896 Python_SaveThread(); /* leave python */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000897
898#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
899 if (saved_locale != NULL)
900 {
901 (void)setlocale(LC_NUMERIC, saved_locale);
902 vim_free(saved_locale);
903 }
904#endif
905
906 Python_Lock_Vim(); /* enter vim */
907 PythonIO_Flush();
908#if defined(MACOS) && !defined(MACOS_X_UNIX)
909 SetPort(oldPort);
910#endif
911
912theend:
913#ifndef PY_CAN_RECURSE
914 --recursive;
915#endif
Bram Moolenaardb913952012-06-29 12:54:53 +0200916 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917}
918
919/*
920 * ":python"
921 */
922 void
923ex_python(exarg_T *eap)
924{
925 char_u *script;
926
927 script = script_get(eap, eap->arg);
928 if (!eap->skip)
929 {
930 if (script == NULL)
Bram Moolenaardb913952012-06-29 12:54:53 +0200931 DoPythonCommand(eap, (char *)eap->arg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932 else
Bram Moolenaardb913952012-06-29 12:54:53 +0200933 DoPythonCommand(eap, (char *)script, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000934 }
935 vim_free(script);
936}
937
938#define BUFFER_SIZE 1024
939
940/*
941 * ":pyfile"
942 */
943 void
944ex_pyfile(exarg_T *eap)
945{
946 static char buffer[BUFFER_SIZE];
947 const char *file = (char *)eap->arg;
948 char *p;
949
950 /* Have to do it like this. PyRun_SimpleFile requires you to pass a
951 * stdio file pointer, but Vim and the Python DLL are compiled with
952 * different options under Windows, meaning that stdio pointers aren't
953 * compatible between the two. Yuk.
954 *
955 * Put the string "execfile('file')" into buffer. But, we need to
956 * escape any backslashes or single quotes in the file name, so that
957 * Python won't mangle the file name.
958 */
959 strcpy(buffer, "execfile('");
960 p = buffer + 10; /* size of "execfile('" */
961
962 while (*file && p < buffer + (BUFFER_SIZE - 3))
963 {
964 if (*file == '\\' || *file == '\'')
965 *p++ = '\\';
966 *p++ = *file++;
967 }
968
969 /* If we didn't finish the file name, we hit a buffer overflow */
970 if (*file != '\0')
971 return;
972
973 /* Put in the terminating "')" and a null */
974 *p++ = '\'';
975 *p++ = ')';
976 *p++ = '\0';
977
978 /* Execute the file */
Bram Moolenaardb913952012-06-29 12:54:53 +0200979 DoPythonCommand(eap, buffer, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980}
981
982/******************************************************
983 * 2. Python output stream: writes output via [e]msg().
984 */
985
986/* Implementation functions
987 */
988
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 static PyObject *
990OutputGetattr(PyObject *self, char *name)
991{
992 if (strcmp(name, "softspace") == 0)
993 return PyInt_FromLong(((OutputObject *)(self))->softspace);
994
995 return Py_FindMethod(OutputMethods, self, name);
996}
997
Bram Moolenaar071d4272004-06-13 20:20:40 +0000998/***************/
999
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000 static int
1001PythonIO_Init(void)
1002{
1003 /* Fixups... */
Bram Moolenaar21377c82011-03-26 13:56:48 +01001004 PyType_Ready(&OutputType);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001006 return PythonIO_Init_io();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001007}
1008
1009/******************************************************
1010 * 3. Implementation of the Vim module for Python
1011 */
1012
Bram Moolenaardb913952012-06-29 12:54:53 +02001013static PyObject *ConvertToPyObject(typval_T *);
1014static int ConvertFromPyObject(PyObject *, typval_T *);
1015
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016/* Window type - Implementation functions
1017 * --------------------------------------
1018 */
1019
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020#define WindowType_Check(obj) ((obj)->ob_type == &WindowType)
1021
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022/* Buffer type - Implementation functions
1023 * --------------------------------------
1024 */
1025
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026#define BufferType_Check(obj) ((obj)->ob_type == &BufferType)
1027
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001028static PyInt BufferAssItem(PyObject *, PyInt, PyObject *);
1029static PyInt BufferAssSlice(PyObject *, PyInt, PyInt, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001030
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031/* Line range type - Implementation functions
1032 * --------------------------------------
1033 */
1034
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035#define RangeType_Check(obj) ((obj)->ob_type == &RangeType)
1036
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001037static PyInt RangeAssItem(PyObject *, PyInt, PyObject *);
1038static PyInt RangeAssSlice(PyObject *, PyInt, PyInt, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001039
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040/* Current objects type - Implementation functions
1041 * -----------------------------------------------
1042 */
1043
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044static PySequenceMethods BufferAsSeq = {
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001045 (PyInquiry) BufferLength, /* sq_length, len(x) */
Bram Moolenaar77fceb82012-09-05 18:54:48 +02001046 (binaryfunc) 0, /* BufferConcat, sq_concat, x+y */
1047 (PyIntArgFunc) 0, /* BufferRepeat, sq_repeat, x*n */
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001048 (PyIntArgFunc) BufferItem, /* sq_item, x[i] */
1049 (PyIntIntArgFunc) BufferSlice, /* sq_slice, x[i:j] */
1050 (PyIntObjArgProc) BufferAssItem, /* sq_ass_item, x[i]=v */
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001051 (PyIntIntObjArgProc) BufferAssSlice, /* sq_ass_slice, x[i:j]=v */
1052 (objobjproc) 0,
1053#if PY_MAJOR_VERSION >= 2
1054 (binaryfunc) 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055 0,
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001056#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057};
1058
1059/* Buffer object - Implementation
1060 */
1061
1062 static PyObject *
Bram Moolenaar071d4272004-06-13 20:20:40 +00001063BufferGetattr(PyObject *self, char *name)
1064{
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001065 PyObject *r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001066
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001067 if (CheckBuffer((BufferObject *)(self)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 return NULL;
1069
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001070 r = BufferAttr((BufferObject *)(self), name);
1071 if (r || PyErr_Occurred())
1072 return r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 else
1074 return Py_FindMethod(BufferMethods, self, name);
1075}
1076
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077/******************/
1078
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001079 static PyInt
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001080BufferAssItem(PyObject *self, PyInt n, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081{
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02001082 return RBAsItem((BufferObject *)(self), n, val, 1, -1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083}
1084
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001085 static PyInt
1086BufferAssSlice(PyObject *self, PyInt lo, PyInt hi, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087{
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02001088 return RBAsSlice((BufferObject *)(self), lo, hi, val, 1, -1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089}
1090
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091static PySequenceMethods RangeAsSeq = {
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001092 (PyInquiry) RangeLength, /* sq_length, len(x) */
1093 (binaryfunc) 0, /* RangeConcat, */ /* sq_concat, x+y */
1094 (PyIntArgFunc) 0, /* RangeRepeat, */ /* sq_repeat, x*n */
1095 (PyIntArgFunc) RangeItem, /* sq_item, x[i] */
1096 (PyIntIntArgFunc) RangeSlice, /* sq_slice, x[i:j] */
1097 (PyIntObjArgProc) RangeAssItem, /* sq_ass_item, x[i]=v */
1098 (PyIntIntObjArgProc) RangeAssSlice, /* sq_ass_slice, x[i:j]=v */
1099 (objobjproc) 0,
1100#if PY_MAJOR_VERSION >= 2
1101 (binaryfunc) 0,
1102 0,
1103#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001104};
1105
Bram Moolenaar071d4272004-06-13 20:20:40 +00001106/* Line range object - Implementation
1107 */
1108
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 static PyObject *
1110RangeGetattr(PyObject *self, char *name)
1111{
1112 if (strcmp(name, "start") == 0)
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001113 return Py_BuildValue(Py_ssize_t_fmt, ((RangeObject *)(self))->start - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 else if (strcmp(name, "end") == 0)
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001115 return Py_BuildValue(Py_ssize_t_fmt, ((RangeObject *)(self))->end - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 else
1117 return Py_FindMethod(RangeMethods, self, name);
1118}
1119
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120/****************/
1121
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001122 static PyInt
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001123RangeAssItem(PyObject *self, PyInt n, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001124{
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001125 return RBAsItem(((RangeObject *)(self))->buf, n, val,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126 ((RangeObject *)(self))->start,
1127 ((RangeObject *)(self))->end,
1128 &((RangeObject *)(self))->end);
1129}
1130
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001131 static PyInt
1132RangeAssSlice(PyObject *self, PyInt lo, PyInt hi, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133{
Bram Moolenaar19e60942011-06-19 00:27:51 +02001134 return RBAsSlice(((RangeObject *)(self))->buf, lo, hi, val,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135 ((RangeObject *)(self))->start,
1136 ((RangeObject *)(self))->end,
1137 &((RangeObject *)(self))->end);
1138}
1139
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140/* Window object - Implementation
1141 */
1142
1143 static PyObject *
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144WindowGetattr(PyObject *self, char *name)
1145{
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001146 PyObject *r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001148 if (CheckWindow((WindowObject *)(self)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001149 return NULL;
1150
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001151 r = WindowAttr((WindowObject *)(self), name);
1152 if (r || PyErr_Occurred())
1153 return r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 else
1155 return Py_FindMethod(WindowMethods, self, name);
1156}
1157
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158/* Window list object - Definitions
1159 */
1160
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161static PySequenceMethods WinListAsSeq = {
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001162 (PyInquiry) WinListLength, /* sq_length, len(x) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163 (binaryfunc) 0, /* sq_concat, x+y */
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001164 (PyIntArgFunc) 0, /* sq_repeat, x*n */
1165 (PyIntArgFunc) WinListItem, /* sq_item, x[i] */
1166 (PyIntIntArgFunc) 0, /* sq_slice, x[i:j] */
1167 (PyIntObjArgProc) 0, /* sq_ass_item, x[i]=v */
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001168 (PyIntIntObjArgProc) 0, /* sq_ass_slice, x[i:j]=v */
1169 (objobjproc) 0,
1170#if PY_MAJOR_VERSION >= 2
1171 (binaryfunc) 0,
1172 0,
1173#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174};
1175
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176/* External interface
1177 */
1178
1179 void
1180python_buffer_free(buf_T *buf)
1181{
Bram Moolenaar971db462013-05-12 18:44:48 +02001182 if (BUF_PYTHON_REF(buf) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183 {
Bram Moolenaar971db462013-05-12 18:44:48 +02001184 BufferObject *bp = BUF_PYTHON_REF(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185 bp->buf = INVALID_BUFFER_VALUE;
Bram Moolenaar971db462013-05-12 18:44:48 +02001186 BUF_PYTHON_REF(buf) = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187 }
1188}
1189
1190#if defined(FEAT_WINDOWS) || defined(PROTO)
1191 void
1192python_window_free(win_T *win)
1193{
Bram Moolenaar971db462013-05-12 18:44:48 +02001194 if (WIN_PYTHON_REF(win) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195 {
Bram Moolenaar971db462013-05-12 18:44:48 +02001196 WindowObject *wp = WIN_PYTHON_REF(win);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001197 wp->win = INVALID_WINDOW_VALUE;
Bram Moolenaar971db462013-05-12 18:44:48 +02001198 WIN_PYTHON_REF(win) = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199 }
1200}
1201#endif
1202
Bram Moolenaardfa38d42013-05-15 13:38:47 +02001203static BufMapObject TheBufferMap =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204{
Bram Moolenaardfa38d42013-05-15 13:38:47 +02001205 PyObject_HEAD_INIT(&BufMapType)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001206};
1207
1208static WinListObject TheWindowList =
1209{
1210 PyObject_HEAD_INIT(&WinListType)
1211};
1212
1213static CurrentObject TheCurrent =
1214{
1215 PyObject_HEAD_INIT(&CurrentType)
1216};
1217
1218 static int
1219PythonMod_Init(void)
1220{
1221 PyObject *mod;
1222 PyObject *dict;
Bram Moolenaar230bb3f2013-04-24 14:07:45 +02001223 PyObject *tmp;
Bram Moolenaar9774ecc2008-11-20 10:04:53 +00001224 /* The special value is removed from sys.path in Python_Init(). */
1225 static char *(argv[2]) = {"/must>not&exist/foo", NULL};
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226
1227 /* Fixups... */
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02001228 PyType_Ready(&IterType);
Bram Moolenaar21377c82011-03-26 13:56:48 +01001229 PyType_Ready(&BufferType);
1230 PyType_Ready(&RangeType);
1231 PyType_Ready(&WindowType);
Bram Moolenaardfa38d42013-05-15 13:38:47 +02001232 PyType_Ready(&BufMapType);
Bram Moolenaar21377c82011-03-26 13:56:48 +01001233 PyType_Ready(&WinListType);
1234 PyType_Ready(&CurrentType);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001235 PyType_Ready(&OptionsType);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236
1237 /* Set sys.argv[] to avoid a crash in warn(). */
1238 PySys_SetArgv(1, argv);
1239
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001240 mod = Py_InitModule4("vim", VimMethods, (char *)NULL, (PyObject *)NULL, PYTHON_API_VERSION);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241 dict = PyModule_GetDict(mod);
1242
1243 VimError = Py_BuildValue("s", "vim.error");
1244
1245 PyDict_SetItemString(dict, "error", VimError);
Bram Moolenaardfa38d42013-05-15 13:38:47 +02001246 PyDict_SetItemString(dict, "buffers", (PyObject *)(void *)&TheBufferMap);
Bram Moolenaar7df2d662005-01-25 22:18:08 +00001247 PyDict_SetItemString(dict, "current", (PyObject *)(void *)&TheCurrent);
1248 PyDict_SetItemString(dict, "windows", (PyObject *)(void *)&TheWindowList);
Bram Moolenaar230bb3f2013-04-24 14:07:45 +02001249 tmp = DictionaryNew(&globvardict);
1250 PyDict_SetItemString(dict, "vars", tmp);
1251 Py_DECREF(tmp);
1252 tmp = DictionaryNew(&vimvardict);
1253 PyDict_SetItemString(dict, "vvars", tmp);
1254 Py_DECREF(tmp);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001255 tmp = OptionsNew(SREQ_GLOBAL, NULL, dummy_check, NULL);
1256 PyDict_SetItemString(dict, "options", tmp);
1257 Py_DECREF(tmp);
Bram Moolenaar66b79852012-09-21 14:00:35 +02001258 PyDict_SetItemString(dict, "VAR_LOCKED", PyInt_FromLong(VAR_LOCKED));
1259 PyDict_SetItemString(dict, "VAR_FIXED", PyInt_FromLong(VAR_FIXED));
1260 PyDict_SetItemString(dict, "VAR_SCOPE", PyInt_FromLong(VAR_SCOPE));
1261 PyDict_SetItemString(dict, "VAR_DEF_SCOPE", PyInt_FromLong(VAR_DEF_SCOPE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262
1263 if (PyErr_Occurred())
1264 return -1;
1265
1266 return 0;
1267}
1268
1269/*************************************************************************
1270 * 4. Utility functions for handling the interface between Vim and Python.
1271 */
1272
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273/* Convert a Vim line into a Python string.
1274 * All internal newlines are replaced by null characters.
1275 *
1276 * On errors, the Python exception data is set, and NULL is returned.
1277 */
1278 static PyObject *
1279LineToString(const char *str)
1280{
1281 PyObject *result;
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001282 PyInt len = strlen(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283 char *p;
1284
1285 /* Allocate an Python string object, with uninitialised contents. We
1286 * must do it this way, so that we can modify the string in place
1287 * later. See the Python source, Objects/stringobject.c for details.
1288 */
1289 result = PyString_FromStringAndSize(NULL, len);
1290 if (result == NULL)
1291 return NULL;
1292
1293 p = PyString_AsString(result);
1294
1295 while (*str)
1296 {
1297 if (*str == '\n')
1298 *p = '\0';
1299 else
1300 *p = *str;
1301
1302 ++p;
1303 ++str;
1304 }
1305
1306 return result;
1307}
1308
Bram Moolenaardb913952012-06-29 12:54:53 +02001309 static PyObject *
1310DictionaryGetattr(PyObject *self, char *name)
1311{
Bram Moolenaar66b79852012-09-21 14:00:35 +02001312 DictionaryObject *this = ((DictionaryObject *) (self));
1313
1314 if (strcmp(name, "locked") == 0)
1315 return PyInt_FromLong(this->dict->dv_lock);
1316 else if (strcmp(name, "scope") == 0)
1317 return PyInt_FromLong(this->dict->dv_scope);
1318
Bram Moolenaardb913952012-06-29 12:54:53 +02001319 return Py_FindMethod(DictionaryMethods, self, name);
1320}
1321
Bram Moolenaardb913952012-06-29 12:54:53 +02001322static PySequenceMethods ListAsSeq = {
1323 (PyInquiry) ListLength,
1324 (binaryfunc) 0,
1325 (PyIntArgFunc) 0,
1326 (PyIntArgFunc) ListItem,
1327 (PyIntIntArgFunc) ListSlice,
1328 (PyIntObjArgProc) ListAssItem,
1329 (PyIntIntObjArgProc) ListAssSlice,
1330 (objobjproc) 0,
1331#if PY_MAJOR_VERSION >= 2
1332 (binaryfunc) ListConcatInPlace,
1333 0,
1334#endif
1335};
1336
Bram Moolenaardb913952012-06-29 12:54:53 +02001337 static PyObject *
1338ListGetattr(PyObject *self, char *name)
1339{
Bram Moolenaar66b79852012-09-21 14:00:35 +02001340 if (strcmp(name, "locked") == 0)
1341 return PyInt_FromLong(((ListObject *)(self))->list->lv_lock);
1342
Bram Moolenaardb913952012-06-29 12:54:53 +02001343 return Py_FindMethod(ListMethods, self, name);
1344}
1345
Bram Moolenaardb913952012-06-29 12:54:53 +02001346 static PyObject *
1347FunctionGetattr(PyObject *self, char *name)
1348{
1349 FunctionObject *this = (FunctionObject *)(self);
1350
1351 if (strcmp(name, "name") == 0)
1352 return PyString_FromString((char *)(this->name));
1353 else
1354 return Py_FindMethod(FunctionMethods, self, name);
1355}
1356
1357 void
1358do_pyeval (char_u *str, typval_T *rettv)
1359{
1360 DoPythonCommand(NULL, (char *) str, rettv);
1361 switch(rettv->v_type)
1362 {
1363 case VAR_DICT: ++rettv->vval.v_dict->dv_refcount; break;
1364 case VAR_LIST: ++rettv->vval.v_list->lv_refcount; break;
1365 case VAR_FUNC: func_ref(rettv->vval.v_string); break;
Bram Moolenaar77fceb82012-09-05 18:54:48 +02001366 case VAR_UNKNOWN:
1367 rettv->v_type = VAR_NUMBER;
1368 rettv->vval.v_number = 0;
1369 break;
Bram Moolenaardb913952012-06-29 12:54:53 +02001370 }
1371}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372
1373/* Don't generate a prototype for the next function, it generates an error on
1374 * newer Python versions. */
1375#if PYTHON_API_VERSION < 1007 /* Python 1.4 */ && !defined(PROTO)
1376
1377 char *
1378Py_GetProgramName(void)
1379{
1380 return "vim";
1381}
1382#endif /* Python 1.4 */
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001383
Bram Moolenaardb913952012-06-29 12:54:53 +02001384 void
1385set_ref_in_python (int copyID)
1386{
1387 set_ref_in_py(copyID);
1388}