blob: 318b170ee2c52eeac69fe4172fde0b43f560251b [file] [log] [blame]
Bram Moolenaardb913952012-06-29 12:54:53 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9/*
10 * Python extensions by Paul Moore.
11 * Changes for Unix by David Leonard.
12 *
13 * This consists of four parts:
14 * 1. Python interpreter main program
15 * 2. Python output stream: writes output via [e]msg().
16 * 3. Implementation of the Vim module for Python
17 * 4. Utility functions for handling the interface between Vim and Python.
18 */
19
20#include "vim.h"
21
Bram Moolenaar071d4272004-06-13 20:20:40 +000022#include <limits.h>
23
Bram Moolenaar0014a532013-05-29 21:33:39 +020024/* uncomment this if used with the debug version of python.
25 * Checked on 2.7.4. */
26/* #define Py_DEBUG */
27/* Note: most of time you can add -DPy_DEBUG to CFLAGS in place of uncommenting
28 */
29/* uncomment this if used with the debug version of python, but without its
30 * allocator */
31/* #define Py_DEBUG_NO_PYMALLOC */
32
Bram Moolenaar071d4272004-06-13 20:20:40 +000033/* Python.h defines _POSIX_THREADS itself (if needed) */
34#ifdef _POSIX_THREADS
35# undef _POSIX_THREADS
36#endif
37
Bram Moolenaar860cae12010-06-05 23:22:07 +020038#if defined(_WIN32) && defined(HAVE_FCNTL_H)
Bram Moolenaar071d4272004-06-13 20:20:40 +000039# undef HAVE_FCNTL_H
40#endif
41
42#ifdef _DEBUG
43# undef _DEBUG
44#endif
45
46#ifdef HAVE_STDARG_H
47# undef HAVE_STDARG_H /* Python's config.h defines it as well. */
48#endif
Bram Moolenaarbe2c9ae2009-11-11 14:06:59 +000049#ifdef _POSIX_C_SOURCE
50# undef _POSIX_C_SOURCE /* pyconfig.h defines it as well. */
51#endif
52#ifdef _XOPEN_SOURCE
53# undef _XOPEN_SOURCE /* pyconfig.h defines it as well. */
54#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000055
Bram Moolenaar0bdda372013-06-10 18:36:24 +020056#define PY_SSIZE_T_CLEAN
57
Bram Moolenaar071d4272004-06-13 20:20:40 +000058#include <Python.h>
Bram Moolenaar0bdda372013-06-10 18:36:24 +020059
60#if !defined(PY_VERSION_HEX) || PY_VERSION_HEX < 0x02050000
61# undef PY_SSIZE_T_CLEAN
62#endif
63
Bram Moolenaar071d4272004-06-13 20:20:40 +000064#if defined(MACOS) && !defined(MACOS_X_UNIX)
65# include "macglue.h"
66# include <CodeFragments.h>
67#endif
68#undef main /* Defined in python.h - aargh */
69#undef HAVE_FCNTL_H /* Clash with os_win32.h */
70
Bram Moolenaardb913952012-06-29 12:54:53 +020071#define PyBytes_FromString PyString_FromString
Bram Moolenaar335e0b62013-04-24 13:47:45 +020072#define PyBytes_Check PyString_Check
Bram Moolenaardb913952012-06-29 12:54:53 +020073
Bram Moolenaar19e60942011-06-19 00:27:51 +020074/* No-op conversion functions, use with care! */
75#define PyString_AsBytes(obj) (obj)
76#define PyString_FreeBytes(obj)
77
Bram Moolenaar071d4272004-06-13 20:20:40 +000078#if !defined(FEAT_PYTHON) && defined(PROTO)
79/* Use this to be able to generate prototypes without python being used. */
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +000080# define PyObject Py_ssize_t
81# define PyThreadState Py_ssize_t
82# define PyTypeObject Py_ssize_t
83struct PyMethodDef { Py_ssize_t a; };
84# define PySequenceMethods Py_ssize_t
Bram Moolenaar071d4272004-06-13 20:20:40 +000085#endif
86
Bram Moolenaar2afa3232012-06-29 16:28:28 +020087#if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
88# define PY_USE_CAPSULE
89#endif
90
Bram Moolenaar2c45e942008-06-04 11:35:26 +000091#if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02050000
92# define PyInt Py_ssize_t
93# define PyInquiry lenfunc
94# define PyIntArgFunc ssizeargfunc
95# define PyIntIntArgFunc ssizessizeargfunc
96# define PyIntObjArgProc ssizeobjargproc
97# define PyIntIntObjArgProc ssizessizeobjargproc
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +000098# define Py_ssize_t_fmt "n"
Bram Moolenaar2c45e942008-06-04 11:35:26 +000099#else
100# define PyInt int
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200101# define lenfunc inquiry
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000102# define PyInquiry inquiry
103# define PyIntArgFunc intargfunc
104# define PyIntIntArgFunc intintargfunc
105# define PyIntObjArgProc intobjargproc
106# define PyIntIntObjArgProc intintobjargproc
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000107# define Py_ssize_t_fmt "i"
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000108#endif
Bram Moolenaara9922d62013-05-30 13:01:18 +0200109#define Py_bytes_fmt "s"
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000110
Bram Moolenaar071d4272004-06-13 20:20:40 +0000111/* Parser flags */
112#define single_input 256
113#define file_input 257
114#define eval_input 258
115
116#if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x020300F0
117 /* Python 2.3: can invoke ":python" recursively. */
118# define PY_CAN_RECURSE
119#endif
120
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200121# if defined(DYNAMIC_PYTHON) || defined(PROTO)
122# ifndef DYNAMIC_PYTHON
123# define HINSTANCE long_u /* for generating prototypes */
124# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200126# ifndef WIN3264
127# include <dlfcn.h>
128# define FARPROC void*
129# define HINSTANCE void*
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100130# if defined(PY_NO_RTLD_GLOBAL) && defined(PY3_NO_RTLD_GLOBAL)
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200131# define load_dll(n) dlopen((n), RTLD_LAZY)
132# else
133# define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL)
134# endif
135# define close_dll dlclose
136# define symbol_from_dll dlsym
137# else
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200138# define load_dll vimLoadLib
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200139# define close_dll FreeLibrary
140# define symbol_from_dll GetProcAddress
141# endif
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200142
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000143/* This makes if_python.c compile without warnings against Python 2.5
144 * on Win32 and Win64. */
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200145# undef PyRun_SimpleString
Bram Moolenaardb913952012-06-29 12:54:53 +0200146# undef PyRun_String
Bram Moolenaarb61f95c2010-08-09 22:06:13 +0200147# undef PyArg_Parse
148# undef PyArg_ParseTuple
149# undef Py_BuildValue
150# undef Py_InitModule4
151# undef Py_InitModule4_64
Bram Moolenaardb913952012-06-29 12:54:53 +0200152# undef PyObject_CallMethod
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000153
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154/*
155 * Wrapper defines
156 */
157# define PyArg_Parse dll_PyArg_Parse
158# define PyArg_ParseTuple dll_PyArg_ParseTuple
Bram Moolenaar19e60942011-06-19 00:27:51 +0200159# define PyMem_Free dll_PyMem_Free
Bram Moolenaardb913952012-06-29 12:54:53 +0200160# define PyMem_Malloc dll_PyMem_Malloc
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161# define PyDict_SetItemString dll_PyDict_SetItemString
162# define PyErr_BadArgument dll_PyErr_BadArgument
Bram Moolenaard5f729c2013-05-15 16:04:40 +0200163# define PyErr_NewException dll_PyErr_NewException
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164# define PyErr_Clear dll_PyErr_Clear
Bram Moolenaar4d369872013-02-20 16:09:43 +0100165# define PyErr_PrintEx dll_PyErr_PrintEx
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166# define PyErr_NoMemory dll_PyErr_NoMemory
167# define PyErr_Occurred dll_PyErr_Occurred
168# define PyErr_SetNone dll_PyErr_SetNone
169# define PyErr_SetString dll_PyErr_SetString
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200170# define PyErr_SetObject dll_PyErr_SetObject
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171# define PyEval_InitThreads dll_PyEval_InitThreads
172# define PyEval_RestoreThread dll_PyEval_RestoreThread
173# define PyEval_SaveThread dll_PyEval_SaveThread
174# ifdef PY_CAN_RECURSE
175# define PyGILState_Ensure dll_PyGILState_Ensure
176# define PyGILState_Release dll_PyGILState_Release
177# endif
178# define PyInt_AsLong dll_PyInt_AsLong
179# define PyInt_FromLong dll_PyInt_FromLong
Bram Moolenaardb913952012-06-29 12:54:53 +0200180# define PyLong_AsLong dll_PyLong_AsLong
181# define PyLong_FromLong dll_PyLong_FromLong
Bram Moolenaar66b79852012-09-21 14:00:35 +0200182# define PyBool_Type (*dll_PyBool_Type)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183# define PyInt_Type (*dll_PyInt_Type)
Bram Moolenaardb913952012-06-29 12:54:53 +0200184# define PyLong_Type (*dll_PyLong_Type)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000185# define PyList_GetItem dll_PyList_GetItem
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000186# define PyList_Append dll_PyList_Append
Bram Moolenaar071d4272004-06-13 20:20:40 +0000187# define PyList_New dll_PyList_New
188# define PyList_SetItem dll_PyList_SetItem
189# define PyList_Size dll_PyList_Size
190# define PyList_Type (*dll_PyList_Type)
Bram Moolenaardb913952012-06-29 12:54:53 +0200191# define PySequence_Check dll_PySequence_Check
192# define PySequence_Size dll_PySequence_Size
193# define PySequence_GetItem dll_PySequence_GetItem
Bram Moolenaara9922d62013-05-30 13:01:18 +0200194# define PySequence_Fast dll_PySequence_Fast
Bram Moolenaardb913952012-06-29 12:54:53 +0200195# define PyTuple_Size dll_PyTuple_Size
196# define PyTuple_GetItem dll_PyTuple_GetItem
197# define PyTuple_Type (*dll_PyTuple_Type)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198# define PyImport_ImportModule dll_PyImport_ImportModule
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000199# define PyDict_New dll_PyDict_New
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200# define PyDict_GetItemString dll_PyDict_GetItemString
Bram Moolenaardb913952012-06-29 12:54:53 +0200201# define PyDict_Next dll_PyDict_Next
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200202# define PyDict_Type (*dll_PyDict_Type)
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200203# ifdef PyMapping_Keys
204# define PY_NO_MAPPING_KEYS
Bram Moolenaardb913952012-06-29 12:54:53 +0200205# else
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200206# define PyMapping_Keys dll_PyMapping_Keys
Bram Moolenaardb913952012-06-29 12:54:53 +0200207# endif
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200208# define PyObject_GetItem dll_PyObject_GetItem
Bram Moolenaardb913952012-06-29 12:54:53 +0200209# define PyObject_CallMethod dll_PyObject_CallMethod
210# define PyMapping_Check dll_PyMapping_Check
211# define PyIter_Next dll_PyIter_Next
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212# define PyModule_GetDict dll_PyModule_GetDict
213# define PyRun_SimpleString dll_PyRun_SimpleString
Bram Moolenaardb913952012-06-29 12:54:53 +0200214# define PyRun_String dll_PyRun_String
Bram Moolenaard620aa92013-05-17 16:40:06 +0200215# define PyObject_GetAttrString dll_PyObject_GetAttrString
Bram Moolenaara9922d62013-05-30 13:01:18 +0200216# define PyObject_HasAttrString dll_PyObject_HasAttrString
Bram Moolenaard620aa92013-05-17 16:40:06 +0200217# define PyObject_SetAttrString dll_PyObject_SetAttrString
218# define PyObject_CallFunctionObjArgs dll_PyObject_CallFunctionObjArgs
Bram Moolenaarf4258302013-06-02 18:20:17 +0200219# define PyObject_Call dll_PyObject_Call
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220# define PyString_AsString dll_PyString_AsString
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200221# define PyString_AsStringAndSize dll_PyString_AsStringAndSize
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222# define PyString_FromString dll_PyString_FromString
Bram Moolenaar1a3b5692013-05-30 12:40:39 +0200223# define PyString_FromFormat dll_PyString_FromFormat
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224# define PyString_FromStringAndSize dll_PyString_FromStringAndSize
225# define PyString_Size dll_PyString_Size
226# define PyString_Type (*dll_PyString_Type)
Bram Moolenaardb913952012-06-29 12:54:53 +0200227# define PyUnicode_Type (*dll_PyUnicode_Type)
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200228# undef PyUnicode_AsEncodedString
229# define PyUnicode_AsEncodedString py_PyUnicode_AsEncodedString
Bram Moolenaardb913952012-06-29 12:54:53 +0200230# define PyFloat_AsDouble dll_PyFloat_AsDouble
231# define PyFloat_FromDouble dll_PyFloat_FromDouble
232# define PyFloat_Type (*dll_PyFloat_Type)
233# define PyImport_AddModule (*dll_PyImport_AddModule)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234# define PySys_SetObject dll_PySys_SetObject
235# define PySys_SetArgv dll_PySys_SetArgv
236# define PyType_Type (*dll_PyType_Type)
Bram Moolenaar30fec7b2011-03-26 18:32:05 +0100237# define PyType_Ready (*dll_PyType_Ready)
Bram Moolenaara9922d62013-05-30 13:01:18 +0200238# define PyType_GenericAlloc dll_PyType_GenericAlloc
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239# define Py_BuildValue dll_Py_BuildValue
240# define Py_FindMethod dll_Py_FindMethod
241# define Py_InitModule4 dll_Py_InitModule4
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100242# define Py_SetPythonHome dll_Py_SetPythonHome
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243# define Py_Initialize dll_Py_Initialize
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000244# define Py_Finalize dll_Py_Finalize
245# define Py_IsInitialized dll_Py_IsInitialized
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246# define _PyObject_New dll__PyObject_New
Bram Moolenaar774267b2013-05-21 20:51:59 +0200247# define _PyObject_GC_New dll__PyObject_GC_New
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200248# ifdef PyObject_GC_Del
249# define Py_underscore_GC
250# define _PyObject_GC_Del dll__PyObject_GC_Del
251# define _PyObject_GC_UnTrack dll__PyObject_GC_UnTrack
252# else
253# define PyObject_GC_Del dll_PyObject_GC_Del
254# define PyObject_GC_UnTrack dll_PyObject_GC_UnTrack
255# endif
Bram Moolenaare7211222012-06-30 13:21:08 +0200256# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
257# define _PyObject_NextNotImplemented (*dll__PyObject_NextNotImplemented)
258# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259# define _Py_NoneStruct (*dll__Py_NoneStruct)
Bram Moolenaar66b79852012-09-21 14:00:35 +0200260# define _Py_ZeroStruct (*dll__Py_ZeroStruct)
261# define _Py_TrueStruct (*dll__Py_TrueStruct)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262# define PyObject_Init dll__PyObject_Init
Bram Moolenaardb913952012-06-29 12:54:53 +0200263# define PyObject_GetIter dll_PyObject_GetIter
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200264# define PyObject_IsTrue dll_PyObject_IsTrue
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
266# define PyType_IsSubtype dll_PyType_IsSubtype
Bram Moolenaar0014a532013-05-29 21:33:39 +0200267# ifdef Py_DEBUG
268# define _Py_NegativeRefcount dll__Py_NegativeRefcount
269# define _Py_RefTotal (*dll__Py_RefTotal)
270# define _Py_Dealloc dll__Py_Dealloc
271# endif
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200272# endif
273# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
Bram Moolenaar0014a532013-05-29 21:33:39 +0200274# if defined(Py_DEBUG) && !defined(Py_DEBUG_NO_PYMALLOC)
275# define _PyObject_DebugMalloc dll__PyObject_DebugMalloc
276# define _PyObject_DebugFree dll__PyObject_DebugFree
277# else
278# define PyObject_Malloc dll_PyObject_Malloc
279# define PyObject_Free dll_PyObject_Free
280# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000281# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200282# ifdef PY_USE_CAPSULE
283# define PyCapsule_New dll_PyCapsule_New
284# define PyCapsule_GetPointer dll_PyCapsule_GetPointer
285# else
286# define PyCObject_FromVoidPtr dll_PyCObject_FromVoidPtr
287# define PyCObject_AsVoidPtr dll_PyCObject_AsVoidPtr
288# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289
290/*
291 * Pointers for dynamic link
292 */
293static int(*dll_PyArg_Parse)(PyObject *, char *, ...);
294static int(*dll_PyArg_ParseTuple)(PyObject *, char *, ...);
Bram Moolenaar19e60942011-06-19 00:27:51 +0200295static int(*dll_PyMem_Free)(void *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200296static void* (*dll_PyMem_Malloc)(size_t);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297static int(*dll_PyDict_SetItemString)(PyObject *dp, char *key, PyObject *item);
298static int(*dll_PyErr_BadArgument)(void);
Bram Moolenaard5f729c2013-05-15 16:04:40 +0200299static PyObject *(*dll_PyErr_NewException)(char *, PyObject *, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300static void(*dll_PyErr_Clear)(void);
Bram Moolenaar4d369872013-02-20 16:09:43 +0100301static void(*dll_PyErr_PrintEx)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302static PyObject*(*dll_PyErr_NoMemory)(void);
303static PyObject*(*dll_PyErr_Occurred)(void);
304static void(*dll_PyErr_SetNone)(PyObject *);
305static void(*dll_PyErr_SetString)(PyObject *, const char *);
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200306static void(*dll_PyErr_SetObject)(PyObject *, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307static void(*dll_PyEval_InitThreads)(void);
308static void(*dll_PyEval_RestoreThread)(PyThreadState *);
309static PyThreadState*(*dll_PyEval_SaveThread)(void);
310# ifdef PY_CAN_RECURSE
311static PyGILState_STATE (*dll_PyGILState_Ensure)(void);
312static void (*dll_PyGILState_Release)(PyGILState_STATE);
Bram Moolenaardb913952012-06-29 12:54:53 +0200313# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314static long(*dll_PyInt_AsLong)(PyObject *);
315static PyObject*(*dll_PyInt_FromLong)(long);
Bram Moolenaardb913952012-06-29 12:54:53 +0200316static long(*dll_PyLong_AsLong)(PyObject *);
317static PyObject*(*dll_PyLong_FromLong)(long);
Bram Moolenaar66b79852012-09-21 14:00:35 +0200318static PyTypeObject* dll_PyBool_Type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319static PyTypeObject* dll_PyInt_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200320static PyTypeObject* dll_PyLong_Type;
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000321static PyObject*(*dll_PyList_GetItem)(PyObject *, PyInt);
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000322static PyObject*(*dll_PyList_Append)(PyObject *, PyObject *);
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000323static PyObject*(*dll_PyList_New)(PyInt size);
324static int(*dll_PyList_SetItem)(PyObject *, PyInt, PyObject *);
325static PyInt(*dll_PyList_Size)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326static PyTypeObject* dll_PyList_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200327static int (*dll_PySequence_Check)(PyObject *);
328static PyInt(*dll_PySequence_Size)(PyObject *);
329static PyObject*(*dll_PySequence_GetItem)(PyObject *, PyInt);
Bram Moolenaara9922d62013-05-30 13:01:18 +0200330static PyObject*(*dll_PySequence_Fast)(PyObject *, const char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200331static PyInt(*dll_PyTuple_Size)(PyObject *);
332static PyObject*(*dll_PyTuple_GetItem)(PyObject *, PyInt);
333static PyTypeObject* dll_PyTuple_Type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334static PyObject*(*dll_PyImport_ImportModule)(const char *);
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000335static PyObject*(*dll_PyDict_New)(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336static PyObject*(*dll_PyDict_GetItemString)(PyObject *, const char *);
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200337static int (*dll_PyDict_Next)(PyObject *, PyInt *, PyObject **, PyObject **);
338static PyTypeObject* dll_PyDict_Type;
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200339# ifndef PY_NO_MAPPING_KEYS
340static PyObject* (*dll_PyMapping_Keys)(PyObject *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200341# endif
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200342static PyObject* (*dll_PyObject_GetItem)(PyObject *, PyObject *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200343static PyObject* (*dll_PyObject_CallMethod)(PyObject *, char *, PyObject *);
344static int (*dll_PyMapping_Check)(PyObject *);
345static PyObject* (*dll_PyIter_Next)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346static PyObject*(*dll_PyModule_GetDict)(PyObject *);
347static int(*dll_PyRun_SimpleString)(char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200348static PyObject *(*dll_PyRun_String)(char *, int, PyObject *, PyObject *);
Bram Moolenaard620aa92013-05-17 16:40:06 +0200349static PyObject* (*dll_PyObject_GetAttrString)(PyObject *, const char *);
Bram Moolenaara9922d62013-05-30 13:01:18 +0200350static int (*dll_PyObject_HasAttrString)(PyObject *, const char *);
Bram Moolenaard620aa92013-05-17 16:40:06 +0200351static PyObject* (*dll_PyObject_SetAttrString)(PyObject *, const char *, PyObject *);
352static PyObject* (*dll_PyObject_CallFunctionObjArgs)(PyObject *, ...);
Bram Moolenaarf4258302013-06-02 18:20:17 +0200353static PyObject* (*dll_PyObject_Call)(PyObject *, PyObject *, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354static char*(*dll_PyString_AsString)(PyObject *);
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200355static int(*dll_PyString_AsStringAndSize)(PyObject *, char **, int *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356static PyObject*(*dll_PyString_FromString)(const char *);
Bram Moolenaar1a3b5692013-05-30 12:40:39 +0200357static PyObject*(*dll_PyString_FromFormat)(const char *, ...);
Bram Moolenaar2c45e942008-06-04 11:35:26 +0000358static PyObject*(*dll_PyString_FromStringAndSize)(const char *, PyInt);
359static PyInt(*dll_PyString_Size)(PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360static PyTypeObject* dll_PyString_Type;
Bram Moolenaardb913952012-06-29 12:54:53 +0200361static PyTypeObject* dll_PyUnicode_Type;
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200362static PyObject *(*py_PyUnicode_AsEncodedString)(PyObject *, char *, char *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200363static double(*dll_PyFloat_AsDouble)(PyObject *);
364static PyObject*(*dll_PyFloat_FromDouble)(double);
365static PyTypeObject* dll_PyFloat_Type;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366static int(*dll_PySys_SetObject)(char *, PyObject *);
367static int(*dll_PySys_SetArgv)(int, char **);
368static PyTypeObject* dll_PyType_Type;
Bram Moolenaar30fec7b2011-03-26 18:32:05 +0100369static int (*dll_PyType_Ready)(PyTypeObject *type);
Bram Moolenaara9922d62013-05-30 13:01:18 +0200370static PyObject* (*dll_PyType_GenericAlloc)(PyTypeObject *type, PyInt nitems);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371static PyObject*(*dll_Py_BuildValue)(char *, ...);
372static PyObject*(*dll_Py_FindMethod)(struct PyMethodDef[], PyObject *, char *);
373static PyObject*(*dll_Py_InitModule4)(char *, struct PyMethodDef *, char *, PyObject *, int);
Bram Moolenaardb913952012-06-29 12:54:53 +0200374static PyObject*(*dll_PyImport_AddModule)(char *);
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100375static void(*dll_Py_SetPythonHome)(char *home);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376static void(*dll_Py_Initialize)(void);
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000377static void(*dll_Py_Finalize)(void);
378static int(*dll_Py_IsInitialized)(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379static PyObject*(*dll__PyObject_New)(PyTypeObject *, PyObject *);
Bram Moolenaar774267b2013-05-21 20:51:59 +0200380static PyObject*(*dll__PyObject_GC_New)(PyTypeObject *);
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200381# ifdef Py_underscore_GC
382static void(*dll__PyObject_GC_Del)(void *);
383static void(*dll__PyObject_GC_UnTrack)(void *);
384# else
Bram Moolenaar774267b2013-05-21 20:51:59 +0200385static void(*dll_PyObject_GC_Del)(void *);
386static void(*dll_PyObject_GC_UnTrack)(void *);
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200387# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388static PyObject*(*dll__PyObject_Init)(PyObject *, PyTypeObject *);
Bram Moolenaardb913952012-06-29 12:54:53 +0200389static PyObject* (*dll_PyObject_GetIter)(PyObject *);
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200390static int (*dll_PyObject_IsTrue)(PyObject *);
Bram Moolenaare7211222012-06-30 13:21:08 +0200391# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
Bram Moolenaardb913952012-06-29 12:54:53 +0200392static iternextfunc dll__PyObject_NextNotImplemented;
Bram Moolenaare7211222012-06-30 13:21:08 +0200393# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394static PyObject* dll__Py_NoneStruct;
Bram Moolenaar66b79852012-09-21 14:00:35 +0200395static PyObject* _Py_ZeroStruct;
396static PyObject* dll__Py_TrueStruct;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
398static int (*dll_PyType_IsSubtype)(PyTypeObject *, PyTypeObject *);
Bram Moolenaar0014a532013-05-29 21:33:39 +0200399# ifdef Py_DEBUG
400static void (*dll__Py_NegativeRefcount)(const char *fname, int lineno, PyObject *op);
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200401static PyInt* dll__Py_RefTotal;
Bram Moolenaar0014a532013-05-29 21:33:39 +0200402static void (*dll__Py_Dealloc)(PyObject *obj);
403# endif
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200404# endif
405# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
Bram Moolenaar0014a532013-05-29 21:33:39 +0200406# if defined(Py_DEBUG) && !defined(Py_DEBUG_NO_PYMALLOC)
407static void (*dll__PyObject_DebugFree)(void*);
408static void* (*dll__PyObject_DebugMalloc)(size_t);
409# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410static void* (*dll_PyObject_Malloc)(size_t);
411static void (*dll_PyObject_Free)(void*);
Bram Moolenaar0014a532013-05-29 21:33:39 +0200412# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200414# ifdef PY_USE_CAPSULE
Bram Moolenaardb913952012-06-29 12:54:53 +0200415static PyObject* (*dll_PyCapsule_New)(void *, char *, PyCapsule_Destructor);
416static void* (*dll_PyCapsule_GetPointer)(PyObject *, char *);
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200417# else
Bram Moolenaar221d6872012-06-30 13:34:34 +0200418static PyObject* (*dll_PyCObject_FromVoidPtr)(void *cobj, void (*destr)(void *));
419static void* (*dll_PyCObject_AsVoidPtr)(PyObject *);
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200420# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421
422static HINSTANCE hinstPython = 0; /* Instance of python.dll */
423
424/* Imported exception objects */
425static PyObject *imp_PyExc_AttributeError;
426static PyObject *imp_PyExc_IndexError;
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200427static PyObject *imp_PyExc_KeyError;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000428static PyObject *imp_PyExc_KeyboardInterrupt;
429static PyObject *imp_PyExc_TypeError;
430static PyObject *imp_PyExc_ValueError;
Bram Moolenaar8661b172013-05-15 15:44:28 +0200431static PyObject *imp_PyExc_RuntimeError;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432
433# define PyExc_AttributeError imp_PyExc_AttributeError
434# define PyExc_IndexError imp_PyExc_IndexError
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200435# define PyExc_KeyError imp_PyExc_KeyError
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436# define PyExc_KeyboardInterrupt imp_PyExc_KeyboardInterrupt
437# define PyExc_TypeError imp_PyExc_TypeError
438# define PyExc_ValueError imp_PyExc_ValueError
Bram Moolenaar8661b172013-05-15 15:44:28 +0200439# define PyExc_RuntimeError imp_PyExc_RuntimeError
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440
441/*
442 * Table of name to function pointer of python.
443 */
444# define PYTHON_PROC FARPROC
445static struct
446{
447 char *name;
448 PYTHON_PROC *ptr;
449} python_funcname_table[] =
450{
Bram Moolenaare8cdcef2012-09-12 20:21:43 +0200451#ifndef PY_SSIZE_T_CLEAN
Bram Moolenaar071d4272004-06-13 20:20:40 +0000452 {"PyArg_Parse", (PYTHON_PROC*)&dll_PyArg_Parse},
453 {"PyArg_ParseTuple", (PYTHON_PROC*)&dll_PyArg_ParseTuple},
Bram Moolenaare8cdcef2012-09-12 20:21:43 +0200454 {"Py_BuildValue", (PYTHON_PROC*)&dll_Py_BuildValue},
455#else
456 {"_PyArg_Parse_SizeT", (PYTHON_PROC*)&dll_PyArg_Parse},
457 {"_PyArg_ParseTuple_SizeT", (PYTHON_PROC*)&dll_PyArg_ParseTuple},
458 {"_Py_BuildValue_SizeT", (PYTHON_PROC*)&dll_Py_BuildValue},
459#endif
Bram Moolenaar19e60942011-06-19 00:27:51 +0200460 {"PyMem_Free", (PYTHON_PROC*)&dll_PyMem_Free},
Bram Moolenaardb913952012-06-29 12:54:53 +0200461 {"PyMem_Malloc", (PYTHON_PROC*)&dll_PyMem_Malloc},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000462 {"PyDict_SetItemString", (PYTHON_PROC*)&dll_PyDict_SetItemString},
463 {"PyErr_BadArgument", (PYTHON_PROC*)&dll_PyErr_BadArgument},
Bram Moolenaard5f729c2013-05-15 16:04:40 +0200464 {"PyErr_NewException", (PYTHON_PROC*)&dll_PyErr_NewException},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000465 {"PyErr_Clear", (PYTHON_PROC*)&dll_PyErr_Clear},
Bram Moolenaar4d369872013-02-20 16:09:43 +0100466 {"PyErr_PrintEx", (PYTHON_PROC*)&dll_PyErr_PrintEx},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000467 {"PyErr_NoMemory", (PYTHON_PROC*)&dll_PyErr_NoMemory},
468 {"PyErr_Occurred", (PYTHON_PROC*)&dll_PyErr_Occurred},
469 {"PyErr_SetNone", (PYTHON_PROC*)&dll_PyErr_SetNone},
470 {"PyErr_SetString", (PYTHON_PROC*)&dll_PyErr_SetString},
Bram Moolenaar4d188da2013-05-15 15:35:09 +0200471 {"PyErr_SetObject", (PYTHON_PROC*)&dll_PyErr_SetObject},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472 {"PyEval_InitThreads", (PYTHON_PROC*)&dll_PyEval_InitThreads},
473 {"PyEval_RestoreThread", (PYTHON_PROC*)&dll_PyEval_RestoreThread},
474 {"PyEval_SaveThread", (PYTHON_PROC*)&dll_PyEval_SaveThread},
475# ifdef PY_CAN_RECURSE
476 {"PyGILState_Ensure", (PYTHON_PROC*)&dll_PyGILState_Ensure},
477 {"PyGILState_Release", (PYTHON_PROC*)&dll_PyGILState_Release},
478# endif
479 {"PyInt_AsLong", (PYTHON_PROC*)&dll_PyInt_AsLong},
480 {"PyInt_FromLong", (PYTHON_PROC*)&dll_PyInt_FromLong},
Bram Moolenaardb913952012-06-29 12:54:53 +0200481 {"PyLong_AsLong", (PYTHON_PROC*)&dll_PyLong_AsLong},
482 {"PyLong_FromLong", (PYTHON_PROC*)&dll_PyLong_FromLong},
Bram Moolenaar66b79852012-09-21 14:00:35 +0200483 {"PyBool_Type", (PYTHON_PROC*)&dll_PyBool_Type},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484 {"PyInt_Type", (PYTHON_PROC*)&dll_PyInt_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200485 {"PyLong_Type", (PYTHON_PROC*)&dll_PyLong_Type},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486 {"PyList_GetItem", (PYTHON_PROC*)&dll_PyList_GetItem},
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000487 {"PyList_Append", (PYTHON_PROC*)&dll_PyList_Append},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000488 {"PyList_New", (PYTHON_PROC*)&dll_PyList_New},
489 {"PyList_SetItem", (PYTHON_PROC*)&dll_PyList_SetItem},
490 {"PyList_Size", (PYTHON_PROC*)&dll_PyList_Size},
491 {"PyList_Type", (PYTHON_PROC*)&dll_PyList_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200492 {"PySequence_Size", (PYTHON_PROC*)&dll_PySequence_Size},
493 {"PySequence_Check", (PYTHON_PROC*)&dll_PySequence_Check},
Bram Moolenaara9922d62013-05-30 13:01:18 +0200494 {"PySequence_GetItem", (PYTHON_PROC*)&dll_PySequence_GetItem},
495 {"PySequence_Fast", (PYTHON_PROC*)&dll_PySequence_Fast},
Bram Moolenaardb913952012-06-29 12:54:53 +0200496 {"PyTuple_GetItem", (PYTHON_PROC*)&dll_PyTuple_GetItem},
497 {"PyTuple_Size", (PYTHON_PROC*)&dll_PyTuple_Size},
498 {"PyTuple_Type", (PYTHON_PROC*)&dll_PyTuple_Type},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000499 {"PyImport_ImportModule", (PYTHON_PROC*)&dll_PyImport_ImportModule},
500 {"PyDict_GetItemString", (PYTHON_PROC*)&dll_PyDict_GetItemString},
Bram Moolenaardb913952012-06-29 12:54:53 +0200501 {"PyDict_Next", (PYTHON_PROC*)&dll_PyDict_Next},
Bram Moolenaar0ac93792006-01-21 22:16:51 +0000502 {"PyDict_New", (PYTHON_PROC*)&dll_PyDict_New},
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200503 {"PyDict_Type", (PYTHON_PROC*)&dll_PyDict_Type},
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200504# ifndef PY_NO_MAPPING_KEYS
505 {"PyMapping_Keys", (PYTHON_PROC*)&dll_PyMapping_Keys},
Bram Moolenaardb913952012-06-29 12:54:53 +0200506# endif
Bram Moolenaarbcb40972013-05-30 13:22:13 +0200507 {"PyObject_GetItem", (PYTHON_PROC*)&dll_PyObject_GetItem},
Bram Moolenaardb913952012-06-29 12:54:53 +0200508 {"PyObject_CallMethod", (PYTHON_PROC*)&dll_PyObject_CallMethod},
509 {"PyMapping_Check", (PYTHON_PROC*)&dll_PyMapping_Check},
510 {"PyIter_Next", (PYTHON_PROC*)&dll_PyIter_Next},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511 {"PyModule_GetDict", (PYTHON_PROC*)&dll_PyModule_GetDict},
512 {"PyRun_SimpleString", (PYTHON_PROC*)&dll_PyRun_SimpleString},
Bram Moolenaardb913952012-06-29 12:54:53 +0200513 {"PyRun_String", (PYTHON_PROC*)&dll_PyRun_String},
Bram Moolenaard620aa92013-05-17 16:40:06 +0200514 {"PyObject_GetAttrString", (PYTHON_PROC*)&dll_PyObject_GetAttrString},
Bram Moolenaara9922d62013-05-30 13:01:18 +0200515 {"PyObject_HasAttrString", (PYTHON_PROC*)&dll_PyObject_HasAttrString},
Bram Moolenaard620aa92013-05-17 16:40:06 +0200516 {"PyObject_SetAttrString", (PYTHON_PROC*)&dll_PyObject_SetAttrString},
517 {"PyObject_CallFunctionObjArgs", (PYTHON_PROC*)&dll_PyObject_CallFunctionObjArgs},
Bram Moolenaarf4258302013-06-02 18:20:17 +0200518 {"PyObject_Call", (PYTHON_PROC*)&dll_PyObject_Call},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000519 {"PyString_AsString", (PYTHON_PROC*)&dll_PyString_AsString},
Bram Moolenaarcdab9052012-09-05 19:03:56 +0200520 {"PyString_AsStringAndSize", (PYTHON_PROC*)&dll_PyString_AsStringAndSize},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521 {"PyString_FromString", (PYTHON_PROC*)&dll_PyString_FromString},
Bram Moolenaar1a3b5692013-05-30 12:40:39 +0200522 {"PyString_FromFormat", (PYTHON_PROC*)&dll_PyString_FromFormat},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000523 {"PyString_FromStringAndSize", (PYTHON_PROC*)&dll_PyString_FromStringAndSize},
524 {"PyString_Size", (PYTHON_PROC*)&dll_PyString_Size},
525 {"PyString_Type", (PYTHON_PROC*)&dll_PyString_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200526 {"PyUnicode_Type", (PYTHON_PROC*)&dll_PyUnicode_Type},
Bram Moolenaardb913952012-06-29 12:54:53 +0200527 {"PyFloat_Type", (PYTHON_PROC*)&dll_PyFloat_Type},
528 {"PyFloat_AsDouble", (PYTHON_PROC*)&dll_PyFloat_AsDouble},
529 {"PyFloat_FromDouble", (PYTHON_PROC*)&dll_PyFloat_FromDouble},
530 {"PyImport_AddModule", (PYTHON_PROC*)&dll_PyImport_AddModule},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531 {"PySys_SetObject", (PYTHON_PROC*)&dll_PySys_SetObject},
532 {"PySys_SetArgv", (PYTHON_PROC*)&dll_PySys_SetArgv},
533 {"PyType_Type", (PYTHON_PROC*)&dll_PyType_Type},
Bram Moolenaar30fec7b2011-03-26 18:32:05 +0100534 {"PyType_Ready", (PYTHON_PROC*)&dll_PyType_Ready},
Bram Moolenaara9922d62013-05-30 13:01:18 +0200535 {"PyType_GenericAlloc", (PYTHON_PROC*)&dll_PyType_GenericAlloc},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536 {"Py_FindMethod", (PYTHON_PROC*)&dll_Py_FindMethod},
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100537 {"Py_SetPythonHome", (PYTHON_PROC*)&dll_Py_SetPythonHome},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538 {"Py_Initialize", (PYTHON_PROC*)&dll_Py_Initialize},
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000539 {"Py_Finalize", (PYTHON_PROC*)&dll_Py_Finalize},
540 {"Py_IsInitialized", (PYTHON_PROC*)&dll_Py_IsInitialized},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541 {"_PyObject_New", (PYTHON_PROC*)&dll__PyObject_New},
Bram Moolenaar774267b2013-05-21 20:51:59 +0200542 {"_PyObject_GC_New", (PYTHON_PROC*)&dll__PyObject_GC_New},
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200543# ifdef Py_underscore_GC
544 {"_PyObject_GC_Del", (PYTHON_PROC*)&dll__PyObject_GC_Del},
545 {"_PyObject_GC_UnTrack", (PYTHON_PROC*)&dll__PyObject_GC_UnTrack},
546# else
Bram Moolenaar774267b2013-05-21 20:51:59 +0200547 {"PyObject_GC_Del", (PYTHON_PROC*)&dll_PyObject_GC_Del},
548 {"PyObject_GC_UnTrack", (PYTHON_PROC*)&dll_PyObject_GC_UnTrack},
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200549# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550 {"PyObject_Init", (PYTHON_PROC*)&dll__PyObject_Init},
Bram Moolenaardb913952012-06-29 12:54:53 +0200551 {"PyObject_GetIter", (PYTHON_PROC*)&dll_PyObject_GetIter},
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200552 {"PyObject_IsTrue", (PYTHON_PROC*)&dll_PyObject_IsTrue},
Bram Moolenaare7211222012-06-30 13:21:08 +0200553# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02070000
Bram Moolenaardb913952012-06-29 12:54:53 +0200554 {"_PyObject_NextNotImplemented", (PYTHON_PROC*)&dll__PyObject_NextNotImplemented},
Bram Moolenaare7211222012-06-30 13:21:08 +0200555# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 {"_Py_NoneStruct", (PYTHON_PROC*)&dll__Py_NoneStruct},
Bram Moolenaar66b79852012-09-21 14:00:35 +0200557 {"_Py_ZeroStruct", (PYTHON_PROC*)&dll__Py_ZeroStruct},
558 {"_Py_TrueStruct", (PYTHON_PROC*)&dll__Py_TrueStruct},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000559# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02020000
Bram Moolenaar0014a532013-05-29 21:33:39 +0200560# ifdef Py_DEBUG
561 {"_Py_NegativeRefcount", (PYTHON_PROC*)&dll__Py_NegativeRefcount},
562 {"_Py_RefTotal", (PYTHON_PROC*)&dll__Py_RefTotal},
563 {"_Py_Dealloc", (PYTHON_PROC*)&dll__Py_Dealloc},
564# endif
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200565 {"PyType_IsSubtype", (PYTHON_PROC*)&dll_PyType_IsSubtype},
566# endif
567# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02030000
Bram Moolenaar0014a532013-05-29 21:33:39 +0200568# if defined(Py_DEBUG) && !defined(Py_DEBUG_NO_PYMALLOC)
569 {"_PyObject_DebugFree", (PYTHON_PROC*)&dll__PyObject_DebugFree},
570 {"_PyObject_DebugMalloc", (PYTHON_PROC*)&dll__PyObject_DebugMalloc},
571# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 {"PyObject_Malloc", (PYTHON_PROC*)&dll_PyObject_Malloc},
573 {"PyObject_Free", (PYTHON_PROC*)&dll_PyObject_Free},
Bram Moolenaar0014a532013-05-29 21:33:39 +0200574# endif
575# endif
576# if defined(PY_VERSION_HEX) && PY_VERSION_HEX >= 0x02050000 \
577 && SIZEOF_SIZE_T != SIZEOF_INT
578# ifdef Py_DEBUG
579 {"Py_InitModule4TraceRefs_64", (PYTHON_PROC*)&dll_Py_InitModule4},
580# else
581 {"Py_InitModule4_64", (PYTHON_PROC*)&dll_Py_InitModule4},
582# endif
583# else
584# ifdef Py_DEBUG
585 {"Py_InitModule4TraceRefs", (PYTHON_PROC*)&dll_Py_InitModule4},
586# else
587 {"Py_InitModule4", (PYTHON_PROC*)&dll_Py_InitModule4},
588# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000589# endif
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200590# ifdef PY_USE_CAPSULE
Bram Moolenaardb913952012-06-29 12:54:53 +0200591 {"PyCapsule_New", (PYTHON_PROC*)&dll_PyCapsule_New},
592 {"PyCapsule_GetPointer", (PYTHON_PROC*)&dll_PyCapsule_GetPointer},
Bram Moolenaar2afa3232012-06-29 16:28:28 +0200593# else
594 {"PyCObject_FromVoidPtr", (PYTHON_PROC*)&dll_PyCObject_FromVoidPtr},
595 {"PyCObject_AsVoidPtr", (PYTHON_PROC*)&dll_PyCObject_AsVoidPtr},
596# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000597 {"", NULL},
598};
599
600/*
601 * Free python.dll
602 */
603 static void
604end_dynamic_python(void)
605{
606 if (hinstPython)
607 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200608 close_dll(hinstPython);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000609 hinstPython = 0;
610 }
611}
612
613/*
614 * Load library and get all pointers.
615 * Parameter 'libname' provides name of DLL.
616 * Return OK or FAIL.
617 */
618 static int
619python_runtime_link_init(char *libname, int verbose)
620{
621 int i;
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200622 void *ucs_as_encoded_string;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100624#if !(defined(PY_NO_RTLD_GLOBAL) && defined(PY3_NO_RTLD_GLOBAL)) && defined(UNIX) && defined(FEAT_PYTHON3)
Bram Moolenaarb744b2f2010-08-13 16:22:57 +0200625 /* Can't have Python and Python3 loaded at the same time.
626 * It cause a crash, because RTLD_GLOBAL is needed for
627 * standard C extension libraries of one or both python versions. */
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200628 if (python3_loaded())
629 {
Bram Moolenaar9dc93ae2011-08-28 16:00:19 +0200630 if (verbose)
631 EMSG(_("E836: This Vim cannot execute :python after using :py3"));
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200632 return FAIL;
633 }
634#endif
635
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636 if (hinstPython)
637 return OK;
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200638 hinstPython = load_dll(libname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639 if (!hinstPython)
640 {
641 if (verbose)
642 EMSG2(_(e_loadlib), libname);
643 return FAIL;
644 }
645
646 for (i = 0; python_funcname_table[i].ptr; ++i)
647 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200648 if ((*python_funcname_table[i].ptr = symbol_from_dll(hinstPython,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 python_funcname_table[i].name)) == NULL)
650 {
Bram Moolenaarbd5e15f2010-07-17 21:19:38 +0200651 close_dll(hinstPython);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000652 hinstPython = 0;
653 if (verbose)
654 EMSG2(_(e_loadfunc), python_funcname_table[i].name);
655 return FAIL;
656 }
657 }
Bram Moolenaarcc3e85f2012-06-29 19:14:52 +0200658
659 /* Load unicode functions separately as only the ucs2 or the ucs4 functions
660 * will be present in the library. */
661 ucs_as_encoded_string = symbol_from_dll(hinstPython,
662 "PyUnicodeUCS2_AsEncodedString");
663 if (ucs_as_encoded_string == NULL)
664 ucs_as_encoded_string = symbol_from_dll(hinstPython,
665 "PyUnicodeUCS4_AsEncodedString");
666 if (ucs_as_encoded_string != NULL)
667 py_PyUnicode_AsEncodedString = ucs_as_encoded_string;
668 else
669 {
670 close_dll(hinstPython);
671 hinstPython = 0;
672 if (verbose)
673 EMSG2(_(e_loadfunc), "PyUnicode_UCSX_*");
674 return FAIL;
675 }
676
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677 return OK;
678}
679
680/*
681 * If python is enabled (there is installed python on Windows system) return
682 * TRUE, else FALSE.
683 */
684 int
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +0000685python_enabled(int verbose)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686{
687 return python_runtime_link_init(DYNAMIC_PYTHON_DLL, verbose) == OK;
688}
689
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200690/*
691 * Load the standard Python exceptions - don't import the symbols from the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 * DLL, as this can cause errors (importing data symbols is not reliable).
693 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694 static void
Bram Moolenaarca8a4df2010-07-31 19:54:14 +0200695get_exceptions(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696{
697 PyObject *exmod = PyImport_ImportModule("exceptions");
698 PyObject *exdict = PyModule_GetDict(exmod);
699 imp_PyExc_AttributeError = PyDict_GetItemString(exdict, "AttributeError");
700 imp_PyExc_IndexError = PyDict_GetItemString(exdict, "IndexError");
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200701 imp_PyExc_KeyError = PyDict_GetItemString(exdict, "KeyError");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 imp_PyExc_KeyboardInterrupt = PyDict_GetItemString(exdict, "KeyboardInterrupt");
703 imp_PyExc_TypeError = PyDict_GetItemString(exdict, "TypeError");
704 imp_PyExc_ValueError = PyDict_GetItemString(exdict, "ValueError");
Bram Moolenaar8661b172013-05-15 15:44:28 +0200705 imp_PyExc_RuntimeError = PyDict_GetItemString(exdict, "RuntimeError");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 Py_XINCREF(imp_PyExc_AttributeError);
707 Py_XINCREF(imp_PyExc_IndexError);
Bram Moolenaaraf6abb92013-04-24 13:04:26 +0200708 Py_XINCREF(imp_PyExc_KeyError);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709 Py_XINCREF(imp_PyExc_KeyboardInterrupt);
710 Py_XINCREF(imp_PyExc_TypeError);
711 Py_XINCREF(imp_PyExc_ValueError);
Bram Moolenaar8661b172013-05-15 15:44:28 +0200712 Py_XINCREF(imp_PyExc_RuntimeError);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713 Py_XDECREF(exmod);
714}
715#endif /* DYNAMIC_PYTHON */
716
Bram Moolenaardb913952012-06-29 12:54:53 +0200717static int initialised = 0;
718#define PYINITIALISED initialised
719
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +0200720#define DESTRUCTOR_FINISH(self) self->ob_type->tp_free((PyObject*)self);
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200721
Bram Moolenaar971db462013-05-12 18:44:48 +0200722#define WIN_PYTHON_REF(win) win->w_python_ref
723#define BUF_PYTHON_REF(buf) buf->b_python_ref
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200724#define TAB_PYTHON_REF(tab) tab->tp_python_ref
Bram Moolenaar971db462013-05-12 18:44:48 +0200725
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200726static PyObject *OutputGetattr(PyObject *, char *);
727static PyObject *BufferGetattr(PyObject *, char *);
728static PyObject *WindowGetattr(PyObject *, char *);
Bram Moolenaar5e538ec2013-05-15 15:12:29 +0200729static PyObject *TabPageGetattr(PyObject *, char *);
Bram Moolenaar4d1da492013-04-24 13:39:15 +0200730static PyObject *RangeGetattr(PyObject *, char *);
731static PyObject *DictionaryGetattr(PyObject *, char*);
732static PyObject *ListGetattr(PyObject *, char *);
733static PyObject *FunctionGetattr(PyObject *, char *);
734
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +0200735#ifndef Py_VISIT
736# define Py_VISIT(obj) visit(obj, arg)
737#endif
738#ifndef Py_CLEAR
739# define Py_CLEAR(obj) \
Bram Moolenaar3e734ea2013-05-29 22:05:55 +0200740 { \
741 Py_XDECREF(obj); \
742 obj = NULL; \
743 }
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +0200744#endif
745
Bram Moolenaarfdde8802013-05-30 15:38:24 +0200746#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
747 static void *
748py_memsave(void *p, size_t len)
749{
750 void *r;
751
752 if (!(r = PyMem_Malloc(len)))
753 return NULL;
754 mch_memmove(r, p, len);
755 return r;
756}
757
758# define PY_STRSAVE(s) ((char_u *) py_memsave(s, STRLEN(s) + 1))
759#endif
760
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200761/*
762 * Include the code shared with if_python3.c
763 */
764#include "if_py_both.h"
765
766
Bram Moolenaar071d4272004-06-13 20:20:40 +0000767/******************************************************
768 * Internal function prototypes.
769 */
770
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771static int PythonMod_Init(void);
772
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773
774/******************************************************
775 * 1. Python interpreter main program.
776 */
777
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778#if PYTHON_API_VERSION < 1007 /* Python 1.4 */
779typedef PyObject PyThreadState;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000780#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781
Bram Moolenaar71700b82013-05-15 17:49:05 +0200782#ifndef PY_CAN_RECURSE
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000783static PyThreadState *saved_python_thread = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784
785/*
786 * Suspend a thread of the Python interpreter, other threads are allowed to
787 * run.
788 */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000789 static void
790Python_SaveThread(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791{
792 saved_python_thread = PyEval_SaveThread();
793}
794
795/*
796 * Restore a thread of the Python interpreter, waits for other threads to
797 * block.
798 */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000799 static void
800Python_RestoreThread(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801{
802 PyEval_RestoreThread(saved_python_thread);
803 saved_python_thread = NULL;
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000804}
Bram Moolenaar71700b82013-05-15 17:49:05 +0200805#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807 void
808python_end()
809{
Bram Moolenaara5792f52005-11-23 21:25:05 +0000810 static int recurse = 0;
811
812 /* If a crash occurs while doing this, don't try again. */
813 if (recurse != 0)
814 return;
815
816 ++recurse;
817
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818#ifdef DYNAMIC_PYTHON
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000819 if (hinstPython && Py_IsInitialized())
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000820 {
Bram Moolenaar71700b82013-05-15 17:49:05 +0200821# ifdef PY_CAN_RECURSE
822 PyGILState_Ensure();
823# else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000824 Python_RestoreThread(); /* enter python */
Bram Moolenaar71700b82013-05-15 17:49:05 +0200825# endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000826 Py_Finalize();
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000827 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828 end_dynamic_python();
Bram Moolenaar0e21a3f2005-04-17 20:28:32 +0000829#else
830 if (Py_IsInitialized())
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000831 {
Bram Moolenaar71700b82013-05-15 17:49:05 +0200832# ifdef PY_CAN_RECURSE
833 PyGILState_Ensure();
834# else
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000835 Python_RestoreThread(); /* enter python */
Bram Moolenaar71700b82013-05-15 17:49:05 +0200836# endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000837 Py_Finalize();
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000838 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000839#endif
Bram Moolenaara5792f52005-11-23 21:25:05 +0000840
841 --recurse;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842}
843
Bram Moolenaar4c3a3262010-07-24 15:42:14 +0200844#if (defined(DYNAMIC_PYTHON) && defined(FEAT_PYTHON3)) || defined(PROTO)
845 int
846python_loaded()
847{
848 return (hinstPython != 0);
849}
850#endif
851
Bram Moolenaar071d4272004-06-13 20:20:40 +0000852 static int
853Python_Init(void)
854{
855 if (!initialised)
856 {
857#ifdef DYNAMIC_PYTHON
858 if (!python_enabled(TRUE))
859 {
860 EMSG(_("E263: Sorry, this command is disabled, the Python library could not be loaded."));
861 goto fail;
862 }
863#endif
864
Bram Moolenaar644d37b2010-11-16 19:26:02 +0100865#ifdef PYTHON_HOME
866 Py_SetPythonHome(PYTHON_HOME);
867#endif
868
Bram Moolenaar170bf1a2010-07-24 23:51:45 +0200869 init_structs();
870
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871#if !defined(MACOS) || defined(MACOS_X_UNIX)
872 Py_Initialize();
873#else
874 PyMac_Initialize();
875#endif
Bram Moolenaar02366252013-01-30 11:44:39 +0100876 /* Initialise threads, and below save the state using
Bram Moolenaar76d711c2013-02-13 14:17:08 +0100877 * PyEval_SaveThread. Without the call to PyEval_SaveThread, thread
Bram Moolenaar02366252013-01-30 11:44:39 +0100878 * specific state (such as the system trace hook), will be lost
879 * between invocations of Python code. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 PyEval_InitThreads();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881#ifdef DYNAMIC_PYTHON
882 get_exceptions();
883#endif
884
Bram Moolenaar1dc28782013-05-21 19:11:01 +0200885 if (PythonIO_Init_io())
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886 goto fail;
887
888 if (PythonMod_Init())
889 goto fail;
890
Bram Moolenaardb913952012-06-29 12:54:53 +0200891 globals = PyModule_GetDict(PyImport_AddModule("__main__"));
892
Bram Moolenaar9774ecc2008-11-20 10:04:53 +0000893 /* Remove the element from sys.path that was added because of our
894 * argv[0] value in PythonMod_Init(). Previously we used an empty
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200895 * string, but depending on the OS we then get an empty entry or
Bram Moolenaar9774ecc2008-11-20 10:04:53 +0000896 * the current directory in sys.path. */
897 PyRun_SimpleString("import sys; sys.path = filter(lambda x: x != '/must>not&exist', sys.path)");
898
Bram Moolenaar76d711c2013-02-13 14:17:08 +0100899 /* lock is created and acquired in PyEval_InitThreads() and thread
900 * state is created in Py_Initialize()
901 * there _PyGILState_NoteThreadState() also sets gilcounter to 1
902 * (python must have threads enabled!)
903 * so the following does both: unlock GIL and save thread state in TLS
904 * without deleting thread state
905 */
Bram Moolenaar03db85b2013-05-15 14:51:35 +0200906#ifndef PY_CAN_RECURSE
907 saved_python_thread =
908#endif
909 PyEval_SaveThread();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910
911 initialised = 1;
912 }
913
914 return 0;
915
916fail:
917 /* We call PythonIO_Flush() here to print any Python errors.
918 * This is OK, as it is possible to call this function even
Bram Moolenaar1dc28782013-05-21 19:11:01 +0200919 * if PythonIO_Init_io() has not completed successfully (it will
Bram Moolenaar071d4272004-06-13 20:20:40 +0000920 * not do anything in this case).
921 */
922 PythonIO_Flush();
923 return -1;
924}
925
926/*
927 * External interface
928 */
929 static void
Bram Moolenaarb52f4c02013-05-21 18:19:38 +0200930DoPyCommand(const char *cmd, rangeinitializer init_range, runner run, void *arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931{
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +0000932#ifndef PY_CAN_RECURSE
Bram Moolenaar071d4272004-06-13 20:20:40 +0000933 static int recursive = 0;
934#endif
935#if defined(MACOS) && !defined(MACOS_X_UNIX)
936 GrafPtr oldPort;
937#endif
938#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
939 char *saved_locale;
940#endif
Bram Moolenaar71700b82013-05-15 17:49:05 +0200941#ifdef PY_CAN_RECURSE
942 PyGILState_STATE pygilstate;
943#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944
945#ifndef PY_CAN_RECURSE
946 if (recursive)
947 {
948 EMSG(_("E659: Cannot invoke Python recursively"));
949 return;
950 }
951 ++recursive;
952#endif
953
954#if defined(MACOS) && !defined(MACOS_X_UNIX)
955 GetPort(&oldPort);
956 /* Check if the Python library is available */
957 if ((Ptr)PyMac_Initialize == (Ptr)kUnresolvedCFragSymbolAddress)
958 goto theend;
959#endif
960 if (Python_Init())
961 goto theend;
962
Bram Moolenaarb52f4c02013-05-21 18:19:38 +0200963 init_range(arg);
964
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965 Python_Release_Vim(); /* leave vim */
966
967#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
968 /* Python only works properly when the LC_NUMERIC locale is "C". */
969 saved_locale = setlocale(LC_NUMERIC, NULL);
970 if (saved_locale == NULL || STRCMP(saved_locale, "C") == 0)
971 saved_locale = NULL;
972 else
973 {
974 /* Need to make a copy, value may change when setting new locale. */
Bram Moolenaare9ba5162013-05-29 22:02:22 +0200975 saved_locale = (char *) PY_STRSAVE(saved_locale);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976 (void)setlocale(LC_NUMERIC, "C");
977 }
978#endif
979
Bram Moolenaar71700b82013-05-15 17:49:05 +0200980#ifdef PY_CAN_RECURSE
981 pygilstate = PyGILState_Ensure();
982#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 Python_RestoreThread(); /* enter python */
Bram Moolenaar71700b82013-05-15 17:49:05 +0200984#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985
Bram Moolenaar2a0f3d32013-05-21 22:23:56 +0200986 run((char *) cmd, arg
987#ifdef PY_CAN_RECURSE
988 , &pygilstate
989#endif
990 );
Bram Moolenaar071d4272004-06-13 20:20:40 +0000991
Bram Moolenaar71700b82013-05-15 17:49:05 +0200992#ifdef PY_CAN_RECURSE
993 PyGILState_Release(pygilstate);
994#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995 Python_SaveThread(); /* leave python */
Bram Moolenaar71700b82013-05-15 17:49:05 +0200996#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000997
998#if defined(HAVE_LOCALE_H) || defined(X_LOCALE)
999 if (saved_locale != NULL)
1000 {
1001 (void)setlocale(LC_NUMERIC, saved_locale);
Bram Moolenaare9ba5162013-05-29 22:02:22 +02001002 PyMem_Free(saved_locale);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003 }
1004#endif
1005
1006 Python_Lock_Vim(); /* enter vim */
1007 PythonIO_Flush();
1008#if defined(MACOS) && !defined(MACOS_X_UNIX)
1009 SetPort(oldPort);
1010#endif
1011
1012theend:
1013#ifndef PY_CAN_RECURSE
1014 --recursive;
1015#endif
Bram Moolenaardb913952012-06-29 12:54:53 +02001016 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017}
1018
1019/*
1020 * ":python"
1021 */
1022 void
1023ex_python(exarg_T *eap)
1024{
1025 char_u *script;
1026
1027 script = script_get(eap, eap->arg);
1028 if (!eap->skip)
1029 {
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02001030 DoPyCommand(script == NULL ? (char *) eap->arg : (char *) script,
1031 (rangeinitializer) init_range_cmd,
1032 (runner) run_cmd,
1033 (void *) eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034 }
1035 vim_free(script);
1036}
1037
1038#define BUFFER_SIZE 1024
1039
1040/*
1041 * ":pyfile"
1042 */
1043 void
1044ex_pyfile(exarg_T *eap)
1045{
1046 static char buffer[BUFFER_SIZE];
1047 const char *file = (char *)eap->arg;
1048 char *p;
1049
1050 /* Have to do it like this. PyRun_SimpleFile requires you to pass a
1051 * stdio file pointer, but Vim and the Python DLL are compiled with
1052 * different options under Windows, meaning that stdio pointers aren't
1053 * compatible between the two. Yuk.
1054 *
1055 * Put the string "execfile('file')" into buffer. But, we need to
1056 * escape any backslashes or single quotes in the file name, so that
1057 * Python won't mangle the file name.
1058 */
1059 strcpy(buffer, "execfile('");
1060 p = buffer + 10; /* size of "execfile('" */
1061
1062 while (*file && p < buffer + (BUFFER_SIZE - 3))
1063 {
1064 if (*file == '\\' || *file == '\'')
1065 *p++ = '\\';
1066 *p++ = *file++;
1067 }
1068
1069 /* If we didn't finish the file name, we hit a buffer overflow */
1070 if (*file != '\0')
1071 return;
1072
1073 /* Put in the terminating "')" and a null */
1074 *p++ = '\'';
1075 *p++ = ')';
1076 *p++ = '\0';
1077
1078 /* Execute the file */
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02001079 DoPyCommand(buffer,
1080 (rangeinitializer) init_range_cmd,
1081 (runner) run_cmd,
1082 (void *) eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083}
1084
Bram Moolenaard620aa92013-05-17 16:40:06 +02001085 void
1086ex_pydo(exarg_T *eap)
1087{
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02001088 DoPyCommand((char *)eap->arg,
1089 (rangeinitializer) init_range_cmd,
1090 (runner)run_do,
1091 (void *)eap);
Bram Moolenaard620aa92013-05-17 16:40:06 +02001092}
1093
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094/******************************************************
1095 * 2. Python output stream: writes output via [e]msg().
1096 */
1097
1098/* Implementation functions
1099 */
1100
Bram Moolenaar071d4272004-06-13 20:20:40 +00001101 static PyObject *
1102OutputGetattr(PyObject *self, char *name)
1103{
1104 if (strcmp(name, "softspace") == 0)
1105 return PyInt_FromLong(((OutputObject *)(self))->softspace);
Bram Moolenaardd8aca62013-05-29 22:36:10 +02001106 else if (strcmp(name, "__members__") == 0)
1107 return ObjectDir(NULL, OutputAttrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108
1109 return Py_FindMethod(OutputMethods, self, name);
1110}
1111
Bram Moolenaar071d4272004-06-13 20:20:40 +00001112/******************************************************
1113 * 3. Implementation of the Vim module for Python
1114 */
1115
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116/* Window type - Implementation functions
1117 * --------------------------------------
1118 */
1119
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120#define WindowType_Check(obj) ((obj)->ob_type == &WindowType)
1121
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122/* Buffer type - Implementation functions
1123 * --------------------------------------
1124 */
1125
Bram Moolenaar071d4272004-06-13 20:20:40 +00001126#define BufferType_Check(obj) ((obj)->ob_type == &BufferType)
1127
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001128static PyInt BufferAssItem(PyObject *, PyInt, PyObject *);
1129static PyInt BufferAssSlice(PyObject *, PyInt, PyInt, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001130
Bram Moolenaar071d4272004-06-13 20:20:40 +00001131/* Line range type - Implementation functions
1132 * --------------------------------------
1133 */
1134
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135#define RangeType_Check(obj) ((obj)->ob_type == &RangeType)
1136
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001137static PyInt RangeAssItem(PyObject *, PyInt, PyObject *);
1138static PyInt RangeAssSlice(PyObject *, PyInt, PyInt, PyObject *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140/* Current objects type - Implementation functions
1141 * -----------------------------------------------
1142 */
1143
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144static PySequenceMethods BufferAsSeq = {
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001145 (PyInquiry) BufferLength, /* sq_length, len(x) */
Bram Moolenaar77fceb82012-09-05 18:54:48 +02001146 (binaryfunc) 0, /* BufferConcat, sq_concat, x+y */
1147 (PyIntArgFunc) 0, /* BufferRepeat, sq_repeat, x*n */
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001148 (PyIntArgFunc) BufferItem, /* sq_item, x[i] */
1149 (PyIntIntArgFunc) BufferSlice, /* sq_slice, x[i:j] */
1150 (PyIntObjArgProc) BufferAssItem, /* sq_ass_item, x[i]=v */
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001151 (PyIntIntObjArgProc) BufferAssSlice, /* sq_ass_slice, x[i:j]=v */
1152 (objobjproc) 0,
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001153 (binaryfunc) 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155};
1156
1157/* Buffer object - Implementation
1158 */
1159
1160 static PyObject *
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161BufferGetattr(PyObject *self, char *name)
1162{
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001163 PyObject *r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164
Bram Moolenaar9e822c02013-05-29 22:15:30 +02001165 if ((r = BufferAttrValid((BufferObject *)(self), name)))
1166 return r;
1167
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001168 if (CheckBuffer((BufferObject *)(self)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169 return NULL;
1170
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001171 r = BufferAttr((BufferObject *)(self), name);
1172 if (r || PyErr_Occurred())
1173 return r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 else
1175 return Py_FindMethod(BufferMethods, self, name);
1176}
1177
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178/******************/
1179
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001180 static PyInt
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001181BufferAssItem(PyObject *self, PyInt n, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182{
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02001183 return RBAsItem((BufferObject *)(self), n, val, 1, -1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184}
1185
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001186 static PyInt
1187BufferAssSlice(PyObject *self, PyInt lo, PyInt hi, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188{
Bram Moolenaar8f1723d2013-05-12 20:36:14 +02001189 return RBAsSlice((BufferObject *)(self), lo, hi, val, 1, -1, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190}
1191
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192static PySequenceMethods RangeAsSeq = {
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001193 (PyInquiry) RangeLength, /* sq_length, len(x) */
1194 (binaryfunc) 0, /* RangeConcat, */ /* sq_concat, x+y */
1195 (PyIntArgFunc) 0, /* RangeRepeat, */ /* sq_repeat, x*n */
1196 (PyIntArgFunc) RangeItem, /* sq_item, x[i] */
1197 (PyIntIntArgFunc) RangeSlice, /* sq_slice, x[i:j] */
1198 (PyIntObjArgProc) RangeAssItem, /* sq_ass_item, x[i]=v */
1199 (PyIntIntObjArgProc) RangeAssSlice, /* sq_ass_slice, x[i:j]=v */
1200 (objobjproc) 0,
1201#if PY_MAJOR_VERSION >= 2
1202 (binaryfunc) 0,
1203 0,
1204#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205};
1206
Bram Moolenaar071d4272004-06-13 20:20:40 +00001207/* Line range object - Implementation
1208 */
1209
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210 static PyObject *
1211RangeGetattr(PyObject *self, char *name)
1212{
1213 if (strcmp(name, "start") == 0)
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001214 return Py_BuildValue(Py_ssize_t_fmt, ((RangeObject *)(self))->start - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 else if (strcmp(name, "end") == 0)
Bram Moolenaare7cb9cf2008-06-20 14:32:41 +00001216 return Py_BuildValue(Py_ssize_t_fmt, ((RangeObject *)(self))->end - 1);
Bram Moolenaardd8aca62013-05-29 22:36:10 +02001217 else if (strcmp(name, "__members__") == 0)
1218 return ObjectDir(NULL, RangeAttrs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 else
1220 return Py_FindMethod(RangeMethods, self, name);
1221}
1222
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223/****************/
1224
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001225 static PyInt
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001226RangeAssItem(PyObject *self, PyInt n, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227{
Bram Moolenaarca8a4df2010-07-31 19:54:14 +02001228 return RBAsItem(((RangeObject *)(self))->buf, n, val,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229 ((RangeObject *)(self))->start,
1230 ((RangeObject *)(self))->end,
1231 &((RangeObject *)(self))->end);
1232}
1233
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001234 static PyInt
1235RangeAssSlice(PyObject *self, PyInt lo, PyInt hi, PyObject *val)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236{
Bram Moolenaar19e60942011-06-19 00:27:51 +02001237 return RBAsSlice(((RangeObject *)(self))->buf, lo, hi, val,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 ((RangeObject *)(self))->start,
1239 ((RangeObject *)(self))->end,
1240 &((RangeObject *)(self))->end);
1241}
1242
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001243/* TabPage object - Implementation
1244 */
1245
1246 static PyObject *
1247TabPageGetattr(PyObject *self, char *name)
1248{
1249 PyObject *r;
1250
Bram Moolenaar9e822c02013-05-29 22:15:30 +02001251 if ((r = TabPageAttrValid((TabPageObject *)(self), name)))
1252 return r;
1253
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001254 if (CheckTabPage((TabPageObject *)(self)))
1255 return NULL;
1256
1257 r = TabPageAttr((TabPageObject *)(self), name);
1258 if (r || PyErr_Occurred())
1259 return r;
1260 else
1261 return Py_FindMethod(TabPageMethods, self, name);
1262}
1263
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264/* Window object - Implementation
1265 */
1266
1267 static PyObject *
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268WindowGetattr(PyObject *self, char *name)
1269{
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001270 PyObject *r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271
Bram Moolenaar9e822c02013-05-29 22:15:30 +02001272 if ((r = WindowAttrValid((WindowObject *)(self), name)))
1273 return r;
1274
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001275 if (CheckWindow((WindowObject *)(self)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276 return NULL;
1277
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001278 r = WindowAttr((WindowObject *)(self), name);
1279 if (r || PyErr_Occurred())
1280 return r;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 else
1282 return Py_FindMethod(WindowMethods, self, name);
1283}
1284
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001285/* Tab page list object - Definitions
1286 */
1287
1288static PySequenceMethods TabListAsSeq = {
1289 (PyInquiry) TabListLength, /* sq_length, len(x) */
1290 (binaryfunc) 0, /* sq_concat, x+y */
1291 (PyIntArgFunc) 0, /* sq_repeat, x*n */
1292 (PyIntArgFunc) TabListItem, /* sq_item, x[i] */
1293 (PyIntIntArgFunc) 0, /* sq_slice, x[i:j] */
1294 (PyIntObjArgProc) 0, /* sq_ass_item, x[i]=v */
1295 (PyIntIntObjArgProc) 0, /* sq_ass_slice, x[i:j]=v */
1296 (objobjproc) 0,
1297#if PY_MAJOR_VERSION >= 2
1298 (binaryfunc) 0,
1299 0,
1300#endif
1301};
1302
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303/* Window list object - Definitions
1304 */
1305
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306static PySequenceMethods WinListAsSeq = {
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001307 (PyInquiry) WinListLength, /* sq_length, len(x) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 (binaryfunc) 0, /* sq_concat, x+y */
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001309 (PyIntArgFunc) 0, /* sq_repeat, x*n */
1310 (PyIntArgFunc) WinListItem, /* sq_item, x[i] */
1311 (PyIntIntArgFunc) 0, /* sq_slice, x[i:j] */
1312 (PyIntObjArgProc) 0, /* sq_ass_item, x[i]=v */
Bram Moolenaar4d1da492013-04-24 13:39:15 +02001313 (PyIntIntObjArgProc) 0, /* sq_ass_slice, x[i:j]=v */
1314 (objobjproc) 0,
1315#if PY_MAJOR_VERSION >= 2
1316 (binaryfunc) 0,
1317 0,
1318#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319};
1320
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321/* External interface
1322 */
1323
1324 void
1325python_buffer_free(buf_T *buf)
1326{
Bram Moolenaar971db462013-05-12 18:44:48 +02001327 if (BUF_PYTHON_REF(buf) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 {
Bram Moolenaar971db462013-05-12 18:44:48 +02001329 BufferObject *bp = BUF_PYTHON_REF(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 bp->buf = INVALID_BUFFER_VALUE;
Bram Moolenaar971db462013-05-12 18:44:48 +02001331 BUF_PYTHON_REF(buf) = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 }
1333}
1334
1335#if defined(FEAT_WINDOWS) || defined(PROTO)
1336 void
1337python_window_free(win_T *win)
1338{
Bram Moolenaar971db462013-05-12 18:44:48 +02001339 if (WIN_PYTHON_REF(win) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 {
Bram Moolenaar971db462013-05-12 18:44:48 +02001341 WindowObject *wp = WIN_PYTHON_REF(win);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001342 wp->win = INVALID_WINDOW_VALUE;
Bram Moolenaar971db462013-05-12 18:44:48 +02001343 WIN_PYTHON_REF(win) = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344 }
1345}
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001346
1347 void
1348python_tabpage_free(tabpage_T *tab)
1349{
1350 if (TAB_PYTHON_REF(tab) != NULL)
1351 {
1352 TabPageObject *tp = TAB_PYTHON_REF(tab);
1353 tp->tab = INVALID_TABPAGE_VALUE;
1354 TAB_PYTHON_REF(tab) = NULL;
1355 }
1356}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357#endif
1358
Bram Moolenaar1dc28782013-05-21 19:11:01 +02001359 static int
1360add_object(PyObject *dict, const char *name, PyObject *object)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361{
Bram Moolenaar1dc28782013-05-21 19:11:01 +02001362 if (PyDict_SetItemString(dict, (char *) name, object))
1363 return -1;
1364 Py_DECREF(object);
1365 return 0;
1366}
Bram Moolenaar5e538ec2013-05-15 15:12:29 +02001367
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 static int
1369PythonMod_Init(void)
1370{
1371 PyObject *mod;
1372 PyObject *dict;
Bram Moolenaar1dc28782013-05-21 19:11:01 +02001373
Bram Moolenaar9774ecc2008-11-20 10:04:53 +00001374 /* The special value is removed from sys.path in Python_Init(). */
1375 static char *(argv[2]) = {"/must>not&exist/foo", NULL};
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376
Bram Moolenaar1dc28782013-05-21 19:11:01 +02001377 if (init_types())
1378 return -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001379
1380 /* Set sys.argv[] to avoid a crash in warn(). */
1381 PySys_SetArgv(1, argv);
1382
Bram Moolenaarf4258302013-06-02 18:20:17 +02001383 mod = Py_InitModule4("vim", VimMethods, (char *)NULL, (PyObject *)NULL,
1384 PYTHON_API_VERSION);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 dict = PyModule_GetDict(mod);
1386
Bram Moolenaarf4258302013-06-02 18:20:17 +02001387 return populate_module(dict, add_object, PyDict_GetItemString);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388}
1389
1390/*************************************************************************
1391 * 4. Utility functions for handling the interface between Vim and Python.
1392 */
1393
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394/* Convert a Vim line into a Python string.
1395 * All internal newlines are replaced by null characters.
1396 *
1397 * On errors, the Python exception data is set, and NULL is returned.
1398 */
1399 static PyObject *
1400LineToString(const char *str)
1401{
1402 PyObject *result;
Bram Moolenaar2c45e942008-06-04 11:35:26 +00001403 PyInt len = strlen(str);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 char *p;
1405
1406 /* Allocate an Python string object, with uninitialised contents. We
1407 * must do it this way, so that we can modify the string in place
1408 * later. See the Python source, Objects/stringobject.c for details.
1409 */
1410 result = PyString_FromStringAndSize(NULL, len);
1411 if (result == NULL)
1412 return NULL;
1413
1414 p = PyString_AsString(result);
1415
1416 while (*str)
1417 {
1418 if (*str == '\n')
1419 *p = '\0';
1420 else
1421 *p = *str;
1422
1423 ++p;
1424 ++str;
1425 }
1426
1427 return result;
1428}
1429
Bram Moolenaardb913952012-06-29 12:54:53 +02001430 static PyObject *
1431DictionaryGetattr(PyObject *self, char *name)
1432{
Bram Moolenaar66b79852012-09-21 14:00:35 +02001433 DictionaryObject *this = ((DictionaryObject *) (self));
1434
1435 if (strcmp(name, "locked") == 0)
1436 return PyInt_FromLong(this->dict->dv_lock);
1437 else if (strcmp(name, "scope") == 0)
1438 return PyInt_FromLong(this->dict->dv_scope);
Bram Moolenaardd8aca62013-05-29 22:36:10 +02001439 else if (strcmp(name, "__members__") == 0)
1440 return ObjectDir(NULL, DictionaryAttrs);
Bram Moolenaar66b79852012-09-21 14:00:35 +02001441
Bram Moolenaardb913952012-06-29 12:54:53 +02001442 return Py_FindMethod(DictionaryMethods, self, name);
1443}
1444
Bram Moolenaardb913952012-06-29 12:54:53 +02001445static PySequenceMethods ListAsSeq = {
1446 (PyInquiry) ListLength,
1447 (binaryfunc) 0,
1448 (PyIntArgFunc) 0,
1449 (PyIntArgFunc) ListItem,
1450 (PyIntIntArgFunc) ListSlice,
1451 (PyIntObjArgProc) ListAssItem,
1452 (PyIntIntObjArgProc) ListAssSlice,
1453 (objobjproc) 0,
1454#if PY_MAJOR_VERSION >= 2
1455 (binaryfunc) ListConcatInPlace,
1456 0,
1457#endif
1458};
1459
Bram Moolenaardb913952012-06-29 12:54:53 +02001460 static PyObject *
1461ListGetattr(PyObject *self, char *name)
1462{
Bram Moolenaar66b79852012-09-21 14:00:35 +02001463 if (strcmp(name, "locked") == 0)
1464 return PyInt_FromLong(((ListObject *)(self))->list->lv_lock);
Bram Moolenaardd8aca62013-05-29 22:36:10 +02001465 else if (strcmp(name, "__members__") == 0)
1466 return ObjectDir(NULL, ListAttrs);
Bram Moolenaar66b79852012-09-21 14:00:35 +02001467
Bram Moolenaardb913952012-06-29 12:54:53 +02001468 return Py_FindMethod(ListMethods, self, name);
1469}
1470
Bram Moolenaardb913952012-06-29 12:54:53 +02001471 static PyObject *
1472FunctionGetattr(PyObject *self, char *name)
1473{
1474 FunctionObject *this = (FunctionObject *)(self);
1475
1476 if (strcmp(name, "name") == 0)
1477 return PyString_FromString((char *)(this->name));
Bram Moolenaardd8aca62013-05-29 22:36:10 +02001478 else if (strcmp(name, "__members__") == 0)
1479 return ObjectDir(NULL, FunctionAttrs);
Bram Moolenaardb913952012-06-29 12:54:53 +02001480 else
1481 return Py_FindMethod(FunctionMethods, self, name);
1482}
1483
1484 void
1485do_pyeval (char_u *str, typval_T *rettv)
1486{
Bram Moolenaarb52f4c02013-05-21 18:19:38 +02001487 DoPyCommand((char *) str,
1488 (rangeinitializer) init_range_eval,
1489 (runner) run_eval,
1490 (void *) rettv);
Bram Moolenaardb913952012-06-29 12:54:53 +02001491 switch(rettv->v_type)
1492 {
1493 case VAR_DICT: ++rettv->vval.v_dict->dv_refcount; break;
1494 case VAR_LIST: ++rettv->vval.v_list->lv_refcount; break;
1495 case VAR_FUNC: func_ref(rettv->vval.v_string); break;
Bram Moolenaar77fceb82012-09-05 18:54:48 +02001496 case VAR_UNKNOWN:
1497 rettv->v_type = VAR_NUMBER;
1498 rettv->vval.v_number = 0;
1499 break;
Bram Moolenaardb913952012-06-29 12:54:53 +02001500 }
1501}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001502
1503/* Don't generate a prototype for the next function, it generates an error on
1504 * newer Python versions. */
1505#if PYTHON_API_VERSION < 1007 /* Python 1.4 */ && !defined(PROTO)
1506
1507 char *
1508Py_GetProgramName(void)
1509{
1510 return "vim";
1511}
1512#endif /* Python 1.4 */
Bram Moolenaar170bf1a2010-07-24 23:51:45 +02001513
Bram Moolenaardb913952012-06-29 12:54:53 +02001514 void
1515set_ref_in_python (int copyID)
1516{
1517 set_ref_in_py(copyID);
1518}