blob: edbba21333cc2ef89db2888783fffe4f684f2a37 [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
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200158# define PyErr_SetObject dll_PyErr_SetObject
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159# define PyEval_InitThreads dll_PyEval_InitThreads
160# define PyEval_RestoreThread dll_PyEval_RestoreThread
161# define PyEval_SaveThread dll_PyEval_SaveThread
162# ifdef PY_CAN_RECURSE
163# define PyGILState_Ensure dll_PyGILState_Ensure
164# define PyGILState_Release dll_PyGILState_Release
165# endif
166# define PyInt_AsLong dll_PyInt_AsLong
167# define PyInt_FromLong dll_PyInt_FromLong
Bram Moolenaardb913952012-06-29 12:54:53 +0200168# define PyLong_AsLong dll_PyLong_AsLong
169# define PyLong_FromLong dll_PyLong_FromLong
Bram Moolenaar66b79852012-09-21 14:00:35 +0200170# define PyBool_Type (*dll_PyBool_Type)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171# define PyInt_Type (*dll_PyInt_Type)
Bram Moolenaardb913952012-06-29 12:54:53 +0200172# define PyLong_Type (*dll_PyLong_Type)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173# define PyList_GetItem dll_PyList_GetItem
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000174# define PyList_Append dll_PyList_Append
Bram Moolenaar071d4272004-06-13 20:20:40 +0000175# define PyList_New dll_PyList_New
176# define PyList_SetItem dll_PyList_SetItem
177# define PyList_Size dll_PyList_Size
178# define PyList_Type (*dll_PyList_Type)
Bram Moolenaardb913952012-06-29 12:54:53 +0200179# define PySequence_Check dll_PySequence_Check
180# define PySequence_Size dll_PySequence_Size
181# define PySequence_GetItem dll_PySequence_GetItem
182# define PyTuple_Size dll_PyTuple_Size
183# define PyTuple_GetItem dll_PyTuple_GetItem
184# define PyTuple_Type (*dll_PyTuple_Type)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185# define PyImport_ImportModule dll_PyImport_ImportModule
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000186# define PyDict_New dll_PyDict_New
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187# define PyDict_GetItemString dll_PyDict_GetItemString
Bram Moolenaardb913952012-06-29 12:54:53 +0200188# define PyDict_Next dll_PyDict_Next
189# ifdef PyMapping_Items
190# define PY_NO_MAPPING_ITEMS
191# else
192# define PyMapping_Items dll_PyMapping_Items
193# endif
194# define PyObject_CallMethod dll_PyObject_CallMethod
195# define PyMapping_Check dll_PyMapping_Check
196# define PyIter_Next dll_PyIter_Next
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197# define PyModule_GetDict dll_PyModule_GetDict
198# define PyRun_SimpleString dll_PyRun_SimpleString
Bram Moolenaardb913952012-06-29 12:54:53 +0200199# define PyRun_String dll_PyRun_String
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200# define PyString_AsString dll_PyString_AsString
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200201# define PyString_AsStringAndSize dll_PyString_AsStringAndSize
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202# define PyString_FromString dll_PyString_FromString
203# define PyString_FromStringAndSize dll_PyString_FromStringAndSize
204# define PyString_Size dll_PyString_Size
205# define PyString_Type (*dll_PyString_Type)
Bram Moolenaardb913952012-06-29 12:54:53 +0200206# define PyUnicode_Type (*dll_PyUnicode_Type)
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200207# undef PyUnicode_AsEncodedString
208# define PyUnicode_AsEncodedString py_PyUnicode_AsEncodedString
Bram Moolenaardb913952012-06-29 12:54:53 +0200209# define PyFloat_AsDouble dll_PyFloat_AsDouble
210# define PyFloat_FromDouble dll_PyFloat_FromDouble
211# define PyFloat_Type (*dll_PyFloat_Type)
212# define PyImport_AddModule (*dll_PyImport_AddModule)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213# define PySys_SetObject dll_PySys_SetObject
214# define PySys_SetArgv dll_PySys_SetArgv
215# define PyType_Type (*dll_PyType_Type)
Bram Moolenaar30fec7b2011-03-26 18:32:05 +0100216# define PyType_Ready (*dll_PyType_Ready)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217# define Py_BuildValue dll_Py_BuildValue
218# define Py_FindMethod dll_Py_FindMethod
219# define Py_InitModule4 dll_Py_InitModule4
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100220# define Py_SetPythonHome dll_Py_SetPythonHome
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221# define Py_Initialize dll_Py_Initialize
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000222# define Py_Finalize dll_Py_Finalize
223# define Py_IsInitialized dll_Py_IsInitialized
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224# define _PyObject_New dll__PyObject_New
Bram Moolenaare7211222012-06-30 13:21:08 +0200225# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
226# define _PyObject_NextNotImplemented (*dll__PyObject_NextNotImplemented)
227# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228# define _Py_NoneStruct (*dll__Py_NoneStruct)
Bram Moolenaar66b79852012-09-21 14:00:35 +0200229# define _Py_ZeroStruct (*dll__Py_ZeroStruct)
230# define _Py_TrueStruct (*dll__Py_TrueStruct)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231# define PyObject_Init dll__PyObject_Init
Bram Moolenaardb913952012-06-29 12:54:53 +0200232# define PyObject_GetIter dll_PyObject_GetIter
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200233# define PyObject_IsTrue dll_PyObject_IsTrue
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
235# define PyType_IsSubtype dll_PyType_IsSubtype
236# endif
237# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
238# define PyObject_Malloc dll_PyObject_Malloc
239# define PyObject_Free dll_PyObject_Free
240# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200241# ifdef PY_USE_CAPSULE
242# define PyCapsule_New dll_PyCapsule_New
243# define PyCapsule_GetPointer dll_PyCapsule_GetPointer
244# else
245# define PyCObject_FromVoidPtr dll_PyCObject_FromVoidPtr
246# define PyCObject_AsVoidPtr dll_PyCObject_AsVoidPtr
247# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248
249/*
250 * Pointers for dynamic link
251 */
252static int(*dll_PyArg_Parse)(PyObject *, char *, ...);
253static int(*dll_PyArg_ParseTuple)(PyObject *, char *, ...);
Bram Moolenaar19e60942011-06-19 00:27:51 +0200254static int(*dll_PyMem_Free)(void *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200255static void* (*dll_PyMem_Malloc)(size_t);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256static int(*dll_PyDict_SetItemString)(PyObject *dp, char *key, PyObject *item);
257static int(*dll_PyErr_BadArgument)(void);
258static void(*dll_PyErr_Clear)(void);
Bram Moolenaar4d369872013-02-20 16:09:43 +0100259static void(*dll_PyErr_PrintEx)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260static PyObject*(*dll_PyErr_NoMemory)(void);
261static PyObject*(*dll_PyErr_Occurred)(void);
262static void(*dll_PyErr_SetNone)(PyObject *);
263static void(*dll_PyErr_SetString)(PyObject *, const char *);
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200264static void(*dll_PyErr_SetObject)(PyObject *, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265static void(*dll_PyEval_InitThreads)(void);
266static void(*dll_PyEval_RestoreThread)(PyThreadState *);
267static PyThreadState*(*dll_PyEval_SaveThread)(void);
268# ifdef PY_CAN_RECURSE
269static PyGILState_STATE (*dll_PyGILState_Ensure)(void);
270static void (*dll_PyGILState_Release)(PyGILState_STATE);
Bram Moolenaardb913952012-06-29 12:54:53 +0200271# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272static long(*dll_PyInt_AsLong)(PyObject *);
273static PyObject*(*dll_PyInt_FromLong)(long);
Bram Moolenaardb913952012-06-29 12:54:53 +0200274static long(*dll_PyLong_AsLong)(PyObject *);
275static PyObject*(*dll_PyLong_FromLong)(long);
Bram Moolenaar66b79852012-09-21 14:00:35 +0200276static PyTypeObject* dll_PyBool_Type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277static PyTypeObject* dll_PyInt_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200278static PyTypeObject* dll_PyLong_Type;
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000279static PyObject*(*dll_PyList_GetItem)(PyObject *, PyInt);
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000280static PyObject*(*dll_PyList_Append)(PyObject *, PyObject *);
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000281static PyObject*(*dll_PyList_New)(PyInt size);
282static int(*dll_PyList_SetItem)(PyObject *, PyInt, PyObject *);
283static PyInt(*dll_PyList_Size)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284static PyTypeObject* dll_PyList_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200285static int (*dll_PySequence_Check)(PyObject *);
286static PyInt(*dll_PySequence_Size)(PyObject *);
287static PyObject*(*dll_PySequence_GetItem)(PyObject *, PyInt);
288static PyInt(*dll_PyTuple_Size)(PyObject *);
289static PyObject*(*dll_PyTuple_GetItem)(PyObject *, PyInt);
290static PyTypeObject* dll_PyTuple_Type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291static PyObject*(*dll_PyImport_ImportModule)(const char *);
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000292static PyObject*(*dll_PyDict_New)(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000293static PyObject*(*dll_PyDict_GetItemString)(PyObject *, const char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200294static int (*dll_PyDict_Next)(PyObject *, Py_ssize_t *, PyObject **, PyObject **);
295# ifndef PY_NO_MAPPING_ITEMS
296static PyObject* (*dll_PyMapping_Items)(PyObject *);
297# endif
298static PyObject* (*dll_PyObject_CallMethod)(PyObject *, char *, PyObject *);
299static int (*dll_PyMapping_Check)(PyObject *);
300static PyObject* (*dll_PyIter_Next)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301static PyObject*(*dll_PyModule_GetDict)(PyObject *);
302static int(*dll_PyRun_SimpleString)(char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200303static PyObject *(*dll_PyRun_String)(char *, int, PyObject *, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304static char*(*dll_PyString_AsString)(PyObject *);
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200305static int(*dll_PyString_AsStringAndSize)(PyObject *, char **, int *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306static PyObject*(*dll_PyString_FromString)(const char *);
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000307static PyObject*(*dll_PyString_FromStringAndSize)(const char *, PyInt);
308static PyInt(*dll_PyString_Size)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309static PyTypeObject* dll_PyString_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200310static PyTypeObject* dll_PyUnicode_Type;
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200311static PyObject *(*py_PyUnicode_AsEncodedString)(PyObject *, char *, char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200312static double(*dll_PyFloat_AsDouble)(PyObject *);
313static PyObject*(*dll_PyFloat_FromDouble)(double);
314static PyTypeObject* dll_PyFloat_Type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315static int(*dll_PySys_SetObject)(char *, PyObject *);
316static int(*dll_PySys_SetArgv)(int, char **);
317static PyTypeObject* dll_PyType_Type;
Bram Moolenaar30fec7b2011-03-26 18:32:05 +0100318static int (*dll_PyType_Ready)(PyTypeObject *type);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319static PyObject*(*dll_Py_BuildValue)(char *, ...);
320static PyObject*(*dll_Py_FindMethod)(struct PyMethodDef[], PyObject *, char *);
321static PyObject*(*dll_Py_InitModule4)(char *, struct PyMethodDef *, char *, PyObject *, int);
Bram Moolenaardb913952012-06-29 12:54:53 +0200322static PyObject*(*dll_PyImport_AddModule)(char *);
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100323static void(*dll_Py_SetPythonHome)(char *home);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000324static void(*dll_Py_Initialize)(void);
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000325static void(*dll_Py_Finalize)(void);
326static int(*dll_Py_IsInitialized)(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327static PyObject*(*dll__PyObject_New)(PyTypeObject *, PyObject *);
328static PyObject*(*dll__PyObject_Init)(PyObject *, PyTypeObject *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200329static PyObject* (*dll_PyObject_GetIter)(PyObject *);
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200330static int (*dll_PyObject_IsTrue)(PyObject *);
Bram Moolenaare7211222012-06-30 13:21:08 +0200331# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
Bram Moolenaardb913952012-06-29 12:54:53 +0200332static iternextfunc dll__PyObject_NextNotImplemented;
Bram Moolenaare7211222012-06-30 13:21:08 +0200333# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334static PyObject* dll__Py_NoneStruct;
Bram Moolenaar66b79852012-09-21 14:00:35 +0200335static PyObject* _Py_ZeroStruct;
336static PyObject* dll__Py_TrueStruct;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
338static int (*dll_PyType_IsSubtype)(PyTypeObject *, PyTypeObject *);
339# endif
340# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
341static void* (*dll_PyObject_Malloc)(size_t);
342static void (*dll_PyObject_Free)(void*);
343# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200344# ifdef PY_USE_CAPSULE
Bram Moolenaardb913952012-06-29 12:54:53 +0200345static PyObject* (*dll_PyCapsule_New)(void *, char *, PyCapsule_Destructor);
346static void* (*dll_PyCapsule_GetPointer)(PyObject *, char *);
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200347# else
Bram Moolenaar221d6872012-06-30 13:34:34 +0200348static PyObject* (*dll_PyCObject_FromVoidPtr)(void *cobj, void (*destr)(void *));
349static void* (*dll_PyCObject_AsVoidPtr)(PyObject *);
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200350# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351
352static HINSTANCE hinstPython = 0; /* Instance of python.dll */
353
354/* Imported exception objects */
355static PyObject *imp_PyExc_AttributeError;
356static PyObject *imp_PyExc_IndexError;
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200357static PyObject *imp_PyExc_KeyError;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358static PyObject *imp_PyExc_KeyboardInterrupt;
359static PyObject *imp_PyExc_TypeError;
360static PyObject *imp_PyExc_ValueError;
361
362# define PyExc_AttributeError imp_PyExc_AttributeError
363# define PyExc_IndexError imp_PyExc_IndexError
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200364# define PyExc_KeyError imp_PyExc_KeyError
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365# define PyExc_KeyboardInterrupt imp_PyExc_KeyboardInterrupt
366# define PyExc_TypeError imp_PyExc_TypeError
367# define PyExc_ValueError imp_PyExc_ValueError
368
369/*
370 * Table of name to function pointer of python.
371 */
372# define PYTHON_PROC FARPROC
373static struct
374{
375 char *name;
376 PYTHON_PROC *ptr;
377} python_funcname_table[] =
378{
Bram Moolenaare8cdcef2012-09-12 20:21:43 +0200379#ifndef PY_SSIZE_T_CLEAN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380 {"PyArg_Parse", (PYTHON_PROC*)&dll_PyArg_Parse},
381 {"PyArg_ParseTuple", (PYTHON_PROC*)&dll_PyArg_ParseTuple},
Bram Moolenaare8cdcef2012-09-12 20:21:43 +0200382 {"Py_BuildValue", (PYTHON_PROC*)&dll_Py_BuildValue},
383#else
384 {"_PyArg_Parse_SizeT", (PYTHON_PROC*)&dll_PyArg_Parse},
385 {"_PyArg_ParseTuple_SizeT", (PYTHON_PROC*)&dll_PyArg_ParseTuple},
386 {"_Py_BuildValue_SizeT", (PYTHON_PROC*)&dll_Py_BuildValue},
387#endif
Bram Moolenaar19e60942011-06-19 00:27:51 +0200388 {"PyMem_Free", (PYTHON_PROC*)&dll_PyMem_Free},
Bram Moolenaardb913952012-06-29 12:54:53 +0200389 {"PyMem_Malloc", (PYTHON_PROC*)&dll_PyMem_Malloc},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390 {"PyDict_SetItemString", (PYTHON_PROC*)&dll_PyDict_SetItemString},
391 {"PyErr_BadArgument", (PYTHON_PROC*)&dll_PyErr_BadArgument},
392 {"PyErr_Clear", (PYTHON_PROC*)&dll_PyErr_Clear},
Bram Moolenaar4d369872013-02-20 16:09:43 +0100393 {"PyErr_PrintEx", (PYTHON_PROC*)&dll_PyErr_PrintEx},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394 {"PyErr_NoMemory", (PYTHON_PROC*)&dll_PyErr_NoMemory},
395 {"PyErr_Occurred", (PYTHON_PROC*)&dll_PyErr_Occurred},
396 {"PyErr_SetNone", (PYTHON_PROC*)&dll_PyErr_SetNone},
397 {"PyErr_SetString", (PYTHON_PROC*)&dll_PyErr_SetString},
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200398 {"PyErr_SetObject", (PYTHON_PROC*)&dll_PyErr_SetObject},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399 {"PyEval_InitThreads", (PYTHON_PROC*)&dll_PyEval_InitThreads},
400 {"PyEval_RestoreThread", (PYTHON_PROC*)&dll_PyEval_RestoreThread},
401 {"PyEval_SaveThread", (PYTHON_PROC*)&dll_PyEval_SaveThread},
402# ifdef PY_CAN_RECURSE
403 {"PyGILState_Ensure", (PYTHON_PROC*)&dll_PyGILState_Ensure},
404 {"PyGILState_Release", (PYTHON_PROC*)&dll_PyGILState_Release},
405# endif
406 {"PyInt_AsLong", (PYTHON_PROC*)&dll_PyInt_AsLong},
407 {"PyInt_FromLong", (PYTHON_PROC*)&dll_PyInt_FromLong},
Bram Moolenaardb913952012-06-29 12:54:53 +0200408 {"PyLong_AsLong", (PYTHON_PROC*)&dll_PyLong_AsLong},
409 {"PyLong_FromLong", (PYTHON_PROC*)&dll_PyLong_FromLong},
Bram Moolenaar66b79852012-09-21 14:00:35 +0200410 {"PyBool_Type", (PYTHON_PROC*)&dll_PyBool_Type},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411 {"PyInt_Type", (PYTHON_PROC*)&dll_PyInt_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200412 {"PyLong_Type", (PYTHON_PROC*)&dll_PyLong_Type},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413 {"PyList_GetItem", (PYTHON_PROC*)&dll_PyList_GetItem},
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000414 {"PyList_Append", (PYTHON_PROC*)&dll_PyList_Append},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415 {"PyList_New", (PYTHON_PROC*)&dll_PyList_New},
416 {"PyList_SetItem", (PYTHON_PROC*)&dll_PyList_SetItem},
417 {"PyList_Size", (PYTHON_PROC*)&dll_PyList_Size},
418 {"PyList_Type", (PYTHON_PROC*)&dll_PyList_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200419 {"PySequence_GetItem", (PYTHON_PROC*)&dll_PySequence_GetItem},
420 {"PySequence_Size", (PYTHON_PROC*)&dll_PySequence_Size},
421 {"PySequence_Check", (PYTHON_PROC*)&dll_PySequence_Check},
422 {"PyTuple_GetItem", (PYTHON_PROC*)&dll_PyTuple_GetItem},
423 {"PyTuple_Size", (PYTHON_PROC*)&dll_PyTuple_Size},
424 {"PyTuple_Type", (PYTHON_PROC*)&dll_PyTuple_Type},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425 {"PyImport_ImportModule", (PYTHON_PROC*)&dll_PyImport_ImportModule},
426 {"PyDict_GetItemString", (PYTHON_PROC*)&dll_PyDict_GetItemString},
Bram Moolenaardb913952012-06-29 12:54:53 +0200427 {"PyDict_Next", (PYTHON_PROC*)&dll_PyDict_Next},
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000428 {"PyDict_New", (PYTHON_PROC*)&dll_PyDict_New},
Bram Moolenaardb913952012-06-29 12:54:53 +0200429# ifndef PY_NO_MAPPING_ITEMS
430 {"PyMapping_Items", (PYTHON_PROC*)&dll_PyMapping_Items},
431# endif
432 {"PyObject_CallMethod", (PYTHON_PROC*)&dll_PyObject_CallMethod},
433 {"PyMapping_Check", (PYTHON_PROC*)&dll_PyMapping_Check},
434 {"PyIter_Next", (PYTHON_PROC*)&dll_PyIter_Next},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000435 {"PyModule_GetDict", (PYTHON_PROC*)&dll_PyModule_GetDict},
436 {"PyRun_SimpleString", (PYTHON_PROC*)&dll_PyRun_SimpleString},
Bram Moolenaardb913952012-06-29 12:54:53 +0200437 {"PyRun_String", (PYTHON_PROC*)&dll_PyRun_String},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438 {"PyString_AsString", (PYTHON_PROC*)&dll_PyString_AsString},
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200439 {"PyString_AsStringAndSize", (PYTHON_PROC*)&dll_PyString_AsStringAndSize},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440 {"PyString_FromString", (PYTHON_PROC*)&dll_PyString_FromString},
441 {"PyString_FromStringAndSize", (PYTHON_PROC*)&dll_PyString_FromStringAndSize},
442 {"PyString_Size", (PYTHON_PROC*)&dll_PyString_Size},
443 {"PyString_Type", (PYTHON_PROC*)&dll_PyString_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200444 {"PyUnicode_Type", (PYTHON_PROC*)&dll_PyUnicode_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200445 {"PyFloat_Type", (PYTHON_PROC*)&dll_PyFloat_Type},
446 {"PyFloat_AsDouble", (PYTHON_PROC*)&dll_PyFloat_AsDouble},
447 {"PyFloat_FromDouble", (PYTHON_PROC*)&dll_PyFloat_FromDouble},
448 {"PyImport_AddModule", (PYTHON_PROC*)&dll_PyImport_AddModule},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449 {"PySys_SetObject", (PYTHON_PROC*)&dll_PySys_SetObject},
450 {"PySys_SetArgv", (PYTHON_PROC*)&dll_PySys_SetArgv},
451 {"PyType_Type", (PYTHON_PROC*)&dll_PyType_Type},
Bram Moolenaar30fec7b2011-03-26 18:32:05 +0100452 {"PyType_Ready", (PYTHON_PROC*)&dll_PyType_Ready},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000453 {"Py_FindMethod", (PYTHON_PROC*)&dll_Py_FindMethod},
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200454# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02050000 \
455 && SIZEOF_SIZE_T != SIZEOF_INT
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000456 {"Py_InitModule4_64", (PYTHON_PROC*)&dll_Py_InitModule4},
457# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 {"Py_InitModule4", (PYTHON_PROC*)&dll_Py_InitModule4},
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000459# endif
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100460 {"Py_SetPythonHome", (PYTHON_PROC*)&dll_Py_SetPythonHome},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000461 {"Py_Initialize", (PYTHON_PROC*)&dll_Py_Initialize},
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000462 {"Py_Finalize", (PYTHON_PROC*)&dll_Py_Finalize},
463 {"Py_IsInitialized", (PYTHON_PROC*)&dll_Py_IsInitialized},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000464 {"_PyObject_New", (PYTHON_PROC*)&dll__PyObject_New},
465 {"PyObject_Init", (PYTHON_PROC*)&dll__PyObject_Init},
Bram Moolenaardb913952012-06-29 12:54:53 +0200466 {"PyObject_GetIter", (PYTHON_PROC*)&dll_PyObject_GetIter},
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200467 {"PyObject_IsTrue", (PYTHON_PROC*)&dll_PyObject_IsTrue},
Bram Moolenaare7211222012-06-30 13:21:08 +0200468# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
Bram Moolenaardb913952012-06-29 12:54:53 +0200469 {"_PyObject_NextNotImplemented", (PYTHON_PROC*)&dll__PyObject_NextNotImplemented},
Bram Moolenaare7211222012-06-30 13:21:08 +0200470# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471 {"_Py_NoneStruct", (PYTHON_PROC*)&dll__Py_NoneStruct},
Bram Moolenaar66b79852012-09-21 14:00:35 +0200472 {"_Py_ZeroStruct", (PYTHON_PROC*)&dll__Py_ZeroStruct},
473 {"_Py_TrueStruct", (PYTHON_PROC*)&dll__Py_TrueStruct},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000474# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
475 {"PyType_IsSubtype", (PYTHON_PROC*)&dll_PyType_IsSubtype},
476# endif
477# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
478 {"PyObject_Malloc", (PYTHON_PROC*)&dll_PyObject_Malloc},
479 {"PyObject_Free", (PYTHON_PROC*)&dll_PyObject_Free},
480# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200481# ifdef PY_USE_CAPSULE
Bram Moolenaardb913952012-06-29 12:54:53 +0200482 {"PyCapsule_New", (PYTHON_PROC*)&dll_PyCapsule_New},
483 {"PyCapsule_GetPointer", (PYTHON_PROC*)&dll_PyCapsule_GetPointer},
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200484# else
485 {"PyCObject_FromVoidPtr", (PYTHON_PROC*)&dll_PyCObject_FromVoidPtr},
486 {"PyCObject_AsVoidPtr", (PYTHON_PROC*)&dll_PyCObject_AsVoidPtr},
487# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000488 {"", NULL},
489};
490
491/*
492 * Free python.dll
493 */
494 static void
495end_dynamic_python(void)
496{
497 if (hinstPython)
498 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200499 close_dll(hinstPython);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000500 hinstPython = 0;
501 }
502}
503
504/*
505 * Load library and get all pointers.
506 * Parameter 'libname' provides name of DLL.
507 * Return OK or FAIL.
508 */
509 static int
510python_runtime_link_init(char *libname, int verbose)
511{
512 int i;
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200513 void *ucs_as_encoded_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000514
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100515#if !(defined(PY_NO_RTLD_GLOBAL) && defined(PY3_NO_RTLD_GLOBAL)) && defined(UNIX) && defined(FEAT_PYTHON3)
Bram Moolenaarb744b2f2010-08-13 16:22:57 +0200516 /* Can't have Python and Python3 loaded at the same time.
517 * It cause a crash, because RTLD_GLOBAL is needed for
518 * standard C extension libraries of one or both python versions. */
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200519 if (python3_loaded())
520 {
Bram Moolenaar9dc93ae2011-08-28 16:00:19 +0200521 if (verbose)
522 EMSG(_("E836: This Vim cannot execute :python after using :py3"));
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200523 return FAIL;
524 }
525#endif
526
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 if (hinstPython)
528 return OK;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200529 hinstPython = load_dll(libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 if (!hinstPython)
531 {
532 if (verbose)
533 EMSG2(_(e_loadlib), libname);
534 return FAIL;
535 }
536
537 for (i = 0; python_funcname_table[i].ptr; ++i)
538 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200539 if ((*python_funcname_table[i].ptr = symbol_from_dll(hinstPython,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540 python_funcname_table[i].name)) == NULL)
541 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200542 close_dll(hinstPython);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543 hinstPython = 0;
544 if (verbose)
545 EMSG2(_(e_loadfunc), python_funcname_table[i].name);
546 return FAIL;
547 }
548 }
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200549
550 /* Load unicode functions separately as only the ucs2 or the ucs4 functions
551 * will be present in the library. */
552 ucs_as_encoded_string = symbol_from_dll(hinstPython,
553 "PyUnicodeUCS2_AsEncodedString");
554 if (ucs_as_encoded_string == NULL)
555 ucs_as_encoded_string = symbol_from_dll(hinstPython,
556 "PyUnicodeUCS4_AsEncodedString");
557 if (ucs_as_encoded_string != NULL)
558 py_PyUnicode_AsEncodedString = ucs_as_encoded_string;
559 else
560 {
561 close_dll(hinstPython);
562 hinstPython = 0;
563 if (verbose)
564 EMSG2(_(e_loadfunc), "PyUnicode_UCSX_*");
565 return FAIL;
566 }
567
Bram Moolenaar071d4272004-06-13 20:20:40 +0000568 return OK;
569}
570
571/*
572 * If python is enabled (there is installed python on Windows system) return
573 * TRUE, else FALSE.
574 */
575 int
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000576python_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577{
578 return python_runtime_link_init(DYNAMIC_PYTHON_DLL, verbose) == OK;
579}
580
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200581/*
582 * Load the standard Python exceptions - don't import the symbols from the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000583 * DLL, as this can cause errors (importing data symbols is not reliable).
584 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000585 static void
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200586get_exceptions(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587{
588 PyObject *exmod = PyImport_ImportModule("exceptions");
589 PyObject *exdict = PyModule_GetDict(exmod);
590 imp_PyExc_AttributeError = PyDict_GetItemString(exdict, "AttributeError");
591 imp_PyExc_IndexError = PyDict_GetItemString(exdict, "IndexError");
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200592 imp_PyExc_KeyError = PyDict_GetItemString(exdict, "KeyError");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 imp_PyExc_KeyboardInterrupt = PyDict_GetItemString(exdict, "KeyboardInterrupt");
594 imp_PyExc_TypeError = PyDict_GetItemString(exdict, "TypeError");
595 imp_PyExc_ValueError = PyDict_GetItemString(exdict, "ValueError");
596 Py_XINCREF(imp_PyExc_AttributeError);
597 Py_XINCREF(imp_PyExc_IndexError);
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200598 Py_XINCREF(imp_PyExc_KeyError);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000599 Py_XINCREF(imp_PyExc_KeyboardInterrupt);
600 Py_XINCREF(imp_PyExc_TypeError);
601 Py_XINCREF(imp_PyExc_ValueError);
602 Py_XDECREF(exmod);
603}
604#endif /* DYNAMIC_PYTHON */
605
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200606static PyObject *BufferNew (buf_T *);
607static PyObject *WindowNew(win_T *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200608static PyObject *DictionaryNew(dict_T *);
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200609static PyObject *LineToString(const char *);
610
Bram Moolenaardb913952012-06-29 12:54:53 +0200611static int initialised = 0;
612#define PYINITIALISED initialised
613
Bram Moolenaardb913952012-06-29 12:54:53 +0200614#define DICTKEY_GET(err) \
615 if (!PyString_Check(keyObject)) \
616 { \
617 PyErr_SetString(PyExc_TypeError, _("only string keys are allowed")); \
618 return err; \
619 } \
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200620 if (PyString_AsStringAndSize(keyObject, (char **) &key, NULL) == -1) \
621 return err;
622
Bram Moolenaardb913952012-06-29 12:54:53 +0200623#define DICTKEY_UNREF
624#define DICTKEY_DECL
625
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200626#define DESTRUCTOR_FINISH(self) Py_DECREF(self);
627
Bram Moolenaar971db462013-05-12 18:44:48 +0200628#define WIN_PYTHON_REF(win) win->w_python_ref
629#define BUF_PYTHON_REF(buf) buf->b_python_ref
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200630#define TAB_PYTHON_REF(tab) tab->tp_python_ref
Bram Moolenaar971db462013-05-12 18:44:48 +0200631
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200632static PyObject *OutputGetattr(PyObject *, char *);
633static PyObject *BufferGetattr(PyObject *, char *);
634static PyObject *WindowGetattr(PyObject *, char *);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200635static PyObject *TabPageGetattr(PyObject *, char *);
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200636static PyObject *RangeGetattr(PyObject *, char *);
637static PyObject *DictionaryGetattr(PyObject *, char*);
638static PyObject *ListGetattr(PyObject *, char *);
639static PyObject *FunctionGetattr(PyObject *, char *);
640
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200641/*
642 * Include the code shared with if_python3.c
643 */
644#include "if_py_both.h"
645
646
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647/******************************************************
648 * Internal function prototypes.
649 */
650
Bram Moolenaardb913952012-06-29 12:54:53 +0200651static PyObject *globals;
652
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653static void PythonIO_Flush(void);
654static int PythonIO_Init(void);
655static int PythonMod_Init(void);
656
657/* Utility functions for the vim/python interface
658 * ----------------------------------------------
659 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000661static int SetBufferLineList(buf_T *, PyInt, PyInt, PyObject *, PyInt *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663
664/******************************************************
665 * 1. Python interpreter main program.
666 */
667
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668#if PYTHON_API_VERSION < 1007 /* Python 1.4 */
669typedef PyObject PyThreadState;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000670#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000672#ifdef PY_CAN_RECURSE
673static PyGILState_STATE pygilstate = PyGILState_UNLOCKED;
674#else
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000675static PyThreadState *saved_python_thread = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000676#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677
678/*
679 * Suspend a thread of the Python interpreter, other threads are allowed to
680 * run.
681 */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000682 static void
683Python_SaveThread(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000685#ifdef PY_CAN_RECURSE
686 PyGILState_Release(pygilstate);
687#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688 saved_python_thread = PyEval_SaveThread();
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000689#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000690}
691
692/*
693 * Restore a thread of the Python interpreter, waits for other threads to
694 * block.
695 */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000696 static void
697Python_RestoreThread(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000698{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000699#ifdef PY_CAN_RECURSE
700 pygilstate = PyGILState_Ensure();
701#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 PyEval_RestoreThread(saved_python_thread);
703 saved_python_thread = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000704#endif
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000705}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707 void
708python_end()
709{
Bram Moolenaara5792f52005-11-23 21:25:05 +0000710 static int recurse = 0;
711
712 /* If a crash occurs while doing this, don't try again. */
713 if (recurse != 0)
714 return;
715
716 ++recurse;
717
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718#ifdef DYNAMIC_PYTHON
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000719 if (hinstPython && Py_IsInitialized())
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000720 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000721 Python_RestoreThread(); /* enter python */
722 Py_Finalize();
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000723 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 end_dynamic_python();
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000725#else
726 if (Py_IsInitialized())
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000727 {
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000728 Python_RestoreThread(); /* enter python */
729 Py_Finalize();
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000730 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000731#endif
Bram Moolenaara5792f52005-11-23 21:25:05 +0000732
733 --recurse;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734}
735
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200736#if (defined(DYNAMIC_PYTHON) && defined(FEAT_PYTHON3)) || defined(PROTO)
737 int
738python_loaded()
739{
740 return (hinstPython != 0);
741}
742#endif
743
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744 static int
745Python_Init(void)
746{
747 if (!initialised)
748 {
749#ifdef DYNAMIC_PYTHON
750 if (!python_enabled(TRUE))
751 {
752 EMSG(_("E263: Sorry, this command is disabled, the Python library could not be loaded."));
753 goto fail;
754 }
755#endif
756
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100757#ifdef PYTHON_HOME
758 Py_SetPythonHome(PYTHON_HOME);
759#endif
760
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200761 init_structs();
762
Bram Moolenaar071d4272004-06-13 20:20:40 +0000763#if !defined(MACOS) || defined(MACOS_X_UNIX)
764 Py_Initialize();
765#else
766 PyMac_Initialize();
767#endif
Bram Moolenaar02366252013-01-30 11:44:39 +0100768 /* Initialise threads, and below save the state using
Bram Moolenaar76d711c2013-02-13 14:17:08 +0100769 * PyEval_SaveThread. Without the call to PyEval_SaveThread, thread
Bram Moolenaar02366252013-01-30 11:44:39 +0100770 * specific state (such as the system trace hook), will be lost
771 * between invocations of Python code. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000772 PyEval_InitThreads();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773#ifdef DYNAMIC_PYTHON
774 get_exceptions();
775#endif
776
777 if (PythonIO_Init())
778 goto fail;
779
780 if (PythonMod_Init())
781 goto fail;
782
Bram Moolenaardb913952012-06-29 12:54:53 +0200783 globals = PyModule_GetDict(PyImport_AddModule("__main__"));
784
Bram Moolenaar9774ecc2008-11-20 10:04:53 +0000785 /* Remove the element from sys.path that was added because of our
786 * argv[0] value in PythonMod_Init(). Previously we used an empty
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200787 * string, but depending on the OS we then get an empty entry or
Bram Moolenaar9774ecc2008-11-20 10:04:53 +0000788 * the current directory in sys.path. */
789 PyRun_SimpleString("import sys; sys.path = filter(lambda x: x != '/must>not&exist', sys.path)");
790
Bram Moolenaar76d711c2013-02-13 14:17:08 +0100791 /* lock is created and acquired in PyEval_InitThreads() and thread
792 * state is created in Py_Initialize()
793 * there _PyGILState_NoteThreadState() also sets gilcounter to 1
794 * (python must have threads enabled!)
795 * so the following does both: unlock GIL and save thread state in TLS
796 * without deleting thread state
797 */
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200798#ifndef PY_CAN_RECURSE
799 saved_python_thread =
800#endif
801 PyEval_SaveThread();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802
803 initialised = 1;
804 }
805
806 return 0;
807
808fail:
809 /* We call PythonIO_Flush() here to print any Python errors.
810 * This is OK, as it is possible to call this function even
811 * if PythonIO_Init() has not completed successfully (it will
812 * not do anything in this case).
813 */
814 PythonIO_Flush();
815 return -1;
816}
817
818/*
819 * External interface
820 */
821 static void
Bram Moolenaardb913952012-06-29 12:54:53 +0200822DoPythonCommand(exarg_T *eap, const char *cmd, typval_T *rettv)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000824#ifndef PY_CAN_RECURSE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 static int recursive = 0;
826#endif
827#if defined(MACOS) && !defined(MACOS_X_UNIX)
828 GrafPtr oldPort;
829#endif
830#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
831 char *saved_locale;
832#endif
833
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 Moolenaardb913952012-06-29 12:54:53 +0200852 if (rettv == NULL)
853 {
854 RangeStart = eap->line1;
855 RangeEnd = eap->line2;
856 }
857 else
858 {
859 RangeStart = (PyInt) curwin->w_cursor.lnum;
860 RangeEnd = RangeStart;
861 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000862 Python_Release_Vim(); /* leave vim */
863
864#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
865 /* Python only works properly when the LC_NUMERIC locale is "C". */
866 saved_locale = setlocale(LC_NUMERIC, NULL);
867 if (saved_locale == NULL || STRCMP(saved_locale, "C") == 0)
868 saved_locale = NULL;
869 else
870 {
871 /* Need to make a copy, value may change when setting new locale. */
872 saved_locale = (char *)vim_strsave((char_u *)saved_locale);
873 (void)setlocale(LC_NUMERIC, "C");
874 }
875#endif
876
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 Python_RestoreThread(); /* enter python */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878
Bram Moolenaardb913952012-06-29 12:54:53 +0200879 if (rettv == NULL)
880 PyRun_SimpleString((char *)(cmd));
881 else
882 {
883 PyObject *r;
884
885 r = PyRun_String((char *)(cmd), Py_eval_input, globals, globals);
886 if (r == NULL)
Bram Moolenaar4d369872013-02-20 16:09:43 +0100887 {
888 if (PyErr_Occurred() && !msg_silent)
889 PyErr_PrintEx(0);
Bram Moolenaardb913952012-06-29 12:54:53 +0200890 EMSG(_("E858: Eval did not return a valid python object"));
Bram Moolenaar4d369872013-02-20 16:09:43 +0100891 }
Bram Moolenaardb913952012-06-29 12:54:53 +0200892 else
893 {
894 if (ConvertFromPyObject(r, rettv) == -1)
895 EMSG(_("E859: Failed to convert returned python object to vim value"));
896 Py_DECREF(r);
897 }
898 PyErr_Clear();
899 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901 Python_SaveThread(); /* leave python */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902
903#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
904 if (saved_locale != NULL)
905 {
906 (void)setlocale(LC_NUMERIC, saved_locale);
907 vim_free(saved_locale);
908 }
909#endif
910
911 Python_Lock_Vim(); /* enter vim */
912 PythonIO_Flush();
913#if defined(MACOS) && !defined(MACOS_X_UNIX)
914 SetPort(oldPort);
915#endif
916
917theend:
918#ifndef PY_CAN_RECURSE
919 --recursive;
920#endif
Bram Moolenaardb913952012-06-29 12:54:53 +0200921 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922}
923
924/*
925 * ":python"
926 */
927 void
928ex_python(exarg_T *eap)
929{
930 char_u *script;
931
932 script = script_get(eap, eap->arg);
933 if (!eap->skip)
934 {
935 if (script == NULL)
Bram Moolenaardb913952012-06-29 12:54:53 +0200936 DoPythonCommand(eap, (char *)eap->arg, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000937 else
Bram Moolenaardb913952012-06-29 12:54:53 +0200938 DoPythonCommand(eap, (char *)script, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939 }
940 vim_free(script);
941}
942
943#define BUFFER_SIZE 1024
944
945/*
946 * ":pyfile"
947 */
948 void
949ex_pyfile(exarg_T *eap)
950{
951 static char buffer[BUFFER_SIZE];
952 const char *file = (char *)eap->arg;
953 char *p;
954
955 /* Have to do it like this. PyRun_SimpleFile requires you to pass a
956 * stdio file pointer, but Vim and the Python DLL are compiled with
957 * different options under Windows, meaning that stdio pointers aren't
958 * compatible between the two. Yuk.
959 *
960 * Put the string "execfile('file')" into buffer. But, we need to
961 * escape any backslashes or single quotes in the file name, so that
962 * Python won't mangle the file name.
963 */
964 strcpy(buffer, "execfile('");
965 p = buffer + 10; /* size of "execfile('" */
966
967 while (*file && p < buffer + (BUFFER_SIZE - 3))
968 {
969 if (*file == '\\' || *file == '\'')
970 *p++ = '\\';
971 *p++ = *file++;
972 }
973
974 /* If we didn't finish the file name, we hit a buffer overflow */
975 if (*file != '\0')
976 return;
977
978 /* Put in the terminating "')" and a null */
979 *p++ = '\'';
980 *p++ = ')';
981 *p++ = '\0';
982
983 /* Execute the file */
Bram Moolenaardb913952012-06-29 12:54:53 +0200984 DoPythonCommand(eap, buffer, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985}
986
987/******************************************************
988 * 2. Python output stream: writes output via [e]msg().
989 */
990
991/* Implementation functions
992 */
993
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994 static PyObject *
995OutputGetattr(PyObject *self, char *name)
996{
997 if (strcmp(name, "softspace") == 0)
998 return PyInt_FromLong(((OutputObject *)(self))->softspace);
999
1000 return Py_FindMethod(OutputMethods, self, name);
1001}
1002
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003/***************/
1004
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005 static int
1006PythonIO_Init(void)
1007{
1008 /* Fixups... */
Bram Moolenaar21377c82011-03-26 13:56:48 +01001009 PyType_Ready(&OutputType);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001011 return PythonIO_Init_io();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012}
1013
1014/******************************************************
1015 * 3. Implementation of the Vim module for Python
1016 */
1017
Bram Moolenaardb913952012-06-29 12:54:53 +02001018static PyObject *ConvertToPyObject(typval_T *);
1019static int ConvertFromPyObject(PyObject *, typval_T *);
1020
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021/* Window type - Implementation functions
1022 * --------------------------------------
1023 */
1024
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025#define WindowType_Check(obj) ((obj)->ob_type == &WindowType)
1026
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027/* Buffer type - Implementation functions
1028 * --------------------------------------
1029 */
1030
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031#define BufferType_Check(obj) ((obj)->ob_type == &BufferType)
1032
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001033static PyInt BufferAssItem(PyObject *, PyInt, PyObject *);
1034static PyInt BufferAssSlice(PyObject *, PyInt, PyInt, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036/* Line range type - Implementation functions
1037 * --------------------------------------
1038 */
1039
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040#define RangeType_Check(obj) ((obj)->ob_type == &RangeType)
1041
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001042static PyInt RangeAssItem(PyObject *, PyInt, PyObject *);
1043static PyInt RangeAssSlice(PyObject *, PyInt, PyInt, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001044
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045/* Current objects type - Implementation functions
1046 * -----------------------------------------------
1047 */
1048
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049static PySequenceMethods BufferAsSeq = {
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001050 (PyInquiry) BufferLength, /* sq_length, len(x) */
Bram Moolenaar77fceb82012-09-05 18:54:48 +02001051 (binaryfunc) 0, /* BufferConcat, sq_concat, x+y */
1052 (PyIntArgFunc) 0, /* BufferRepeat, sq_repeat, x*n */
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001053 (PyIntArgFunc) BufferItem, /* sq_item, x[i] */
1054 (PyIntIntArgFunc) BufferSlice, /* sq_slice, x[i:j] */
1055 (PyIntObjArgProc) BufferAssItem, /* sq_ass_item, x[i]=v */
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001056 (PyIntIntObjArgProc) BufferAssSlice, /* sq_ass_slice, x[i:j]=v */
1057 (objobjproc) 0,
1058#if PY_MAJOR_VERSION >= 2
1059 (binaryfunc) 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 0,
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001061#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062};
1063
1064/* Buffer object - Implementation
1065 */
1066
1067 static PyObject *
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068BufferGetattr(PyObject *self, char *name)
1069{
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001070 PyObject *r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001071
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001072 if (CheckBuffer((BufferObject *)(self)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001073 return NULL;
1074
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001075 r = BufferAttr((BufferObject *)(self), name);
1076 if (r || PyErr_Occurred())
1077 return r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001078 else
1079 return Py_FindMethod(BufferMethods, self, name);
1080}
1081
Bram Moolenaar071d4272004-06-13 20:20:40 +00001082/******************/
1083
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001084 static PyInt
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001085BufferAssItem(PyObject *self, PyInt n, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086{
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02001087 return RBAsItem((BufferObject *)(self), n, val, 1, -1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088}
1089
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001090 static PyInt
1091BufferAssSlice(PyObject *self, PyInt lo, PyInt hi, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092{
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02001093 return RBAsSlice((BufferObject *)(self), lo, hi, val, 1, -1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094}
1095
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096static PySequenceMethods RangeAsSeq = {
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001097 (PyInquiry) RangeLength, /* sq_length, len(x) */
1098 (binaryfunc) 0, /* RangeConcat, */ /* sq_concat, x+y */
1099 (PyIntArgFunc) 0, /* RangeRepeat, */ /* sq_repeat, x*n */
1100 (PyIntArgFunc) RangeItem, /* sq_item, x[i] */
1101 (PyIntIntArgFunc) RangeSlice, /* sq_slice, x[i:j] */
1102 (PyIntObjArgProc) RangeAssItem, /* sq_ass_item, x[i]=v */
1103 (PyIntIntObjArgProc) RangeAssSlice, /* sq_ass_slice, x[i:j]=v */
1104 (objobjproc) 0,
1105#if PY_MAJOR_VERSION >= 2
1106 (binaryfunc) 0,
1107 0,
1108#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109};
1110
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111/* Line range object - Implementation
1112 */
1113
Bram Moolenaar071d4272004-06-13 20:20:40 +00001114 static PyObject *
1115RangeGetattr(PyObject *self, char *name)
1116{
1117 if (strcmp(name, "start") == 0)
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001118 return Py_BuildValue(Py_ssize_t_fmt, ((RangeObject *)(self))->start - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001119 else if (strcmp(name, "end") == 0)
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001120 return Py_BuildValue(Py_ssize_t_fmt, ((RangeObject *)(self))->end - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001121 else
1122 return Py_FindMethod(RangeMethods, self, name);
1123}
1124
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125/****************/
1126
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001127 static PyInt
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001128RangeAssItem(PyObject *self, PyInt n, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001129{
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001130 return RBAsItem(((RangeObject *)(self))->buf, n, val,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131 ((RangeObject *)(self))->start,
1132 ((RangeObject *)(self))->end,
1133 &((RangeObject *)(self))->end);
1134}
1135
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001136 static PyInt
1137RangeAssSlice(PyObject *self, PyInt lo, PyInt hi, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138{
Bram Moolenaar19e60942011-06-19 00:27:51 +02001139 return RBAsSlice(((RangeObject *)(self))->buf, lo, hi, val,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140 ((RangeObject *)(self))->start,
1141 ((RangeObject *)(self))->end,
1142 &((RangeObject *)(self))->end);
1143}
1144
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001145/* TabPage object - Implementation
1146 */
1147
1148 static PyObject *
1149TabPageGetattr(PyObject *self, char *name)
1150{
1151 PyObject *r;
1152
1153 if (CheckTabPage((TabPageObject *)(self)))
1154 return NULL;
1155
1156 r = TabPageAttr((TabPageObject *)(self), name);
1157 if (r || PyErr_Occurred())
1158 return r;
1159 else
1160 return Py_FindMethod(TabPageMethods, self, name);
1161}
1162
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163/* Window object - Implementation
1164 */
1165
1166 static PyObject *
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167WindowGetattr(PyObject *self, char *name)
1168{
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001169 PyObject *r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001171 if (CheckWindow((WindowObject *)(self)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172 return NULL;
1173
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001174 r = WindowAttr((WindowObject *)(self), name);
1175 if (r || PyErr_Occurred())
1176 return r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177 else
1178 return Py_FindMethod(WindowMethods, self, name);
1179}
1180
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001181/* Tab page list object - Definitions
1182 */
1183
1184static PySequenceMethods TabListAsSeq = {
1185 (PyInquiry) TabListLength, /* sq_length, len(x) */
1186 (binaryfunc) 0, /* sq_concat, x+y */
1187 (PyIntArgFunc) 0, /* sq_repeat, x*n */
1188 (PyIntArgFunc) TabListItem, /* sq_item, x[i] */
1189 (PyIntIntArgFunc) 0, /* sq_slice, x[i:j] */
1190 (PyIntObjArgProc) 0, /* sq_ass_item, x[i]=v */
1191 (PyIntIntObjArgProc) 0, /* sq_ass_slice, x[i:j]=v */
1192 (objobjproc) 0,
1193#if PY_MAJOR_VERSION >= 2
1194 (binaryfunc) 0,
1195 0,
1196#endif
1197};
1198
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199/* Window list object - Definitions
1200 */
1201
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202static PySequenceMethods WinListAsSeq = {
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001203 (PyInquiry) WinListLength, /* sq_length, len(x) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 (binaryfunc) 0, /* sq_concat, x+y */
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001205 (PyIntArgFunc) 0, /* sq_repeat, x*n */
1206 (PyIntArgFunc) WinListItem, /* sq_item, x[i] */
1207 (PyIntIntArgFunc) 0, /* sq_slice, x[i:j] */
1208 (PyIntObjArgProc) 0, /* sq_ass_item, x[i]=v */
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001209 (PyIntIntObjArgProc) 0, /* sq_ass_slice, x[i:j]=v */
1210 (objobjproc) 0,
1211#if PY_MAJOR_VERSION >= 2
1212 (binaryfunc) 0,
1213 0,
1214#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215};
1216
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217/* External interface
1218 */
1219
1220 void
1221python_buffer_free(buf_T *buf)
1222{
Bram Moolenaar971db462013-05-12 18:44:48 +02001223 if (BUF_PYTHON_REF(buf) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224 {
Bram Moolenaar971db462013-05-12 18:44:48 +02001225 BufferObject *bp = BUF_PYTHON_REF(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 bp->buf = INVALID_BUFFER_VALUE;
Bram Moolenaar971db462013-05-12 18:44:48 +02001227 BUF_PYTHON_REF(buf) = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 }
1229}
1230
1231#if defined(FEAT_WINDOWS) || defined(PROTO)
1232 void
1233python_window_free(win_T *win)
1234{
Bram Moolenaar971db462013-05-12 18:44:48 +02001235 if (WIN_PYTHON_REF(win) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236 {
Bram Moolenaar971db462013-05-12 18:44:48 +02001237 WindowObject *wp = WIN_PYTHON_REF(win);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 wp->win = INVALID_WINDOW_VALUE;
Bram Moolenaar971db462013-05-12 18:44:48 +02001239 WIN_PYTHON_REF(win) = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 }
1241}
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001242
1243 void
1244python_tabpage_free(tabpage_T *tab)
1245{
1246 if (TAB_PYTHON_REF(tab) != NULL)
1247 {
1248 TabPageObject *tp = TAB_PYTHON_REF(tab);
1249 tp->tab = INVALID_TABPAGE_VALUE;
1250 TAB_PYTHON_REF(tab) = NULL;
1251 }
1252}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253#endif
1254
Bram Moolenaardfa38d42013-05-15 13:38:47 +02001255static BufMapObject TheBufferMap =
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256{
Bram Moolenaardfa38d42013-05-15 13:38:47 +02001257 PyObject_HEAD_INIT(&BufMapType)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258};
1259
1260static WinListObject TheWindowList =
1261{
1262 PyObject_HEAD_INIT(&WinListType)
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001263 NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264};
1265
1266static CurrentObject TheCurrent =
1267{
1268 PyObject_HEAD_INIT(&CurrentType)
1269};
1270
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001271static TabListObject TheTabPageList =
1272{
1273 PyObject_HEAD_INIT(&TabListType)
1274};
1275
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276 static int
1277PythonMod_Init(void)
1278{
1279 PyObject *mod;
1280 PyObject *dict;
Bram Moolenaar230bb3f2013-04-24 14:07:45 +02001281 PyObject *tmp;
Bram Moolenaar9774ecc2008-11-20 10:04:53 +00001282 /* The special value is removed from sys.path in Python_Init(). */
1283 static char *(argv[2]) = {"/must>not&exist/foo", NULL};
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284
1285 /* Fixups... */
Bram Moolenaarb6c589a2013-05-15 14:39:52 +02001286 PyType_Ready(&IterType);
Bram Moolenaar21377c82011-03-26 13:56:48 +01001287 PyType_Ready(&BufferType);
1288 PyType_Ready(&RangeType);
1289 PyType_Ready(&WindowType);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001290 PyType_Ready(&TabPageType);
Bram Moolenaardfa38d42013-05-15 13:38:47 +02001291 PyType_Ready(&BufMapType);
Bram Moolenaar21377c82011-03-26 13:56:48 +01001292 PyType_Ready(&WinListType);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001293 PyType_Ready(&TabListType);
Bram Moolenaar21377c82011-03-26 13:56:48 +01001294 PyType_Ready(&CurrentType);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001295 PyType_Ready(&OptionsType);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296
1297 /* Set sys.argv[] to avoid a crash in warn(). */
1298 PySys_SetArgv(1, argv);
1299
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001300 mod = Py_InitModule4("vim", VimMethods, (char *)NULL, (PyObject *)NULL, PYTHON_API_VERSION);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301 dict = PyModule_GetDict(mod);
1302
1303 VimError = Py_BuildValue("s", "vim.error");
1304
1305 PyDict_SetItemString(dict, "error", VimError);
Bram Moolenaardfa38d42013-05-15 13:38:47 +02001306 PyDict_SetItemString(dict, "buffers", (PyObject *)(void *)&TheBufferMap);
Bram Moolenaar7df2d662005-01-25 22:18:08 +00001307 PyDict_SetItemString(dict, "current", (PyObject *)(void *)&TheCurrent);
1308 PyDict_SetItemString(dict, "windows", (PyObject *)(void *)&TheWindowList);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001309 PyDict_SetItemString(dict, "tabpages", (PyObject *)(void *)&TheTabPageList);
Bram Moolenaar230bb3f2013-04-24 14:07:45 +02001310 tmp = DictionaryNew(&globvardict);
1311 PyDict_SetItemString(dict, "vars", tmp);
1312 Py_DECREF(tmp);
1313 tmp = DictionaryNew(&vimvardict);
1314 PyDict_SetItemString(dict, "vvars", tmp);
1315 Py_DECREF(tmp);
Bram Moolenaar84e0f6c2013-05-06 03:52:55 +02001316 tmp = OptionsNew(SREQ_GLOBAL, NULL, dummy_check, NULL);
1317 PyDict_SetItemString(dict, "options", tmp);
1318 Py_DECREF(tmp);
Bram Moolenaar66b79852012-09-21 14:00:35 +02001319 PyDict_SetItemString(dict, "VAR_LOCKED", PyInt_FromLong(VAR_LOCKED));
1320 PyDict_SetItemString(dict, "VAR_FIXED", PyInt_FromLong(VAR_FIXED));
1321 PyDict_SetItemString(dict, "VAR_SCOPE", PyInt_FromLong(VAR_SCOPE));
1322 PyDict_SetItemString(dict, "VAR_DEF_SCOPE", PyInt_FromLong(VAR_DEF_SCOPE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323
1324 if (PyErr_Occurred())
1325 return -1;
1326
1327 return 0;
1328}
1329
1330/*************************************************************************
1331 * 4. Utility functions for handling the interface between Vim and Python.
1332 */
1333
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334/* Convert a Vim line into a Python string.
1335 * All internal newlines are replaced by null characters.
1336 *
1337 * On errors, the Python exception data is set, and NULL is returned.
1338 */
1339 static PyObject *
1340LineToString(const char *str)
1341{
1342 PyObject *result;
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001343 PyInt len = strlen(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344 char *p;
1345
1346 /* Allocate an Python string object, with uninitialised contents. We
1347 * must do it this way, so that we can modify the string in place
1348 * later. See the Python source, Objects/stringobject.c for details.
1349 */
1350 result = PyString_FromStringAndSize(NULL, len);
1351 if (result == NULL)
1352 return NULL;
1353
1354 p = PyString_AsString(result);
1355
1356 while (*str)
1357 {
1358 if (*str == '\n')
1359 *p = '\0';
1360 else
1361 *p = *str;
1362
1363 ++p;
1364 ++str;
1365 }
1366
1367 return result;
1368}
1369
Bram Moolenaardb913952012-06-29 12:54:53 +02001370 static PyObject *
1371DictionaryGetattr(PyObject *self, char *name)
1372{
Bram Moolenaar66b79852012-09-21 14:00:35 +02001373 DictionaryObject *this = ((DictionaryObject *) (self));
1374
1375 if (strcmp(name, "locked") == 0)
1376 return PyInt_FromLong(this->dict->dv_lock);
1377 else if (strcmp(name, "scope") == 0)
1378 return PyInt_FromLong(this->dict->dv_scope);
1379
Bram Moolenaardb913952012-06-29 12:54:53 +02001380 return Py_FindMethod(DictionaryMethods, self, name);
1381}
1382
Bram Moolenaardb913952012-06-29 12:54:53 +02001383static PySequenceMethods ListAsSeq = {
1384 (PyInquiry) ListLength,
1385 (binaryfunc) 0,
1386 (PyIntArgFunc) 0,
1387 (PyIntArgFunc) ListItem,
1388 (PyIntIntArgFunc) ListSlice,
1389 (PyIntObjArgProc) ListAssItem,
1390 (PyIntIntObjArgProc) ListAssSlice,
1391 (objobjproc) 0,
1392#if PY_MAJOR_VERSION >= 2
1393 (binaryfunc) ListConcatInPlace,
1394 0,
1395#endif
1396};
1397
Bram Moolenaardb913952012-06-29 12:54:53 +02001398 static PyObject *
1399ListGetattr(PyObject *self, char *name)
1400{
Bram Moolenaar66b79852012-09-21 14:00:35 +02001401 if (strcmp(name, "locked") == 0)
1402 return PyInt_FromLong(((ListObject *)(self))->list->lv_lock);
1403
Bram Moolenaardb913952012-06-29 12:54:53 +02001404 return Py_FindMethod(ListMethods, self, name);
1405}
1406
Bram Moolenaardb913952012-06-29 12:54:53 +02001407 static PyObject *
1408FunctionGetattr(PyObject *self, char *name)
1409{
1410 FunctionObject *this = (FunctionObject *)(self);
1411
1412 if (strcmp(name, "name") == 0)
1413 return PyString_FromString((char *)(this->name));
1414 else
1415 return Py_FindMethod(FunctionMethods, self, name);
1416}
1417
1418 void
1419do_pyeval (char_u *str, typval_T *rettv)
1420{
1421 DoPythonCommand(NULL, (char *) str, rettv);
1422 switch(rettv->v_type)
1423 {
1424 case VAR_DICT: ++rettv->vval.v_dict->dv_refcount; break;
1425 case VAR_LIST: ++rettv->vval.v_list->lv_refcount; break;
1426 case VAR_FUNC: func_ref(rettv->vval.v_string); break;
Bram Moolenaar77fceb82012-09-05 18:54:48 +02001427 case VAR_UNKNOWN:
1428 rettv->v_type = VAR_NUMBER;
1429 rettv->vval.v_number = 0;
1430 break;
Bram Moolenaardb913952012-06-29 12:54:53 +02001431 }
1432}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433
1434/* Don't generate a prototype for the next function, it generates an error on
1435 * newer Python versions. */
1436#if PYTHON_API_VERSION < 1007 /* Python 1.4 */ && !defined(PROTO)
1437
1438 char *
1439Py_GetProgramName(void)
1440{
1441 return "vim";
1442}
1443#endif /* Python 1.4 */
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001444
Bram Moolenaardb913952012-06-29 12:54:53 +02001445 void
1446set_ref_in_python (int copyID)
1447{
1448 set_ref_in_py(copyID);
1449}